xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [PATCH] xen/x86: add extra pages to unpopulated-alloc if available
@ 2024-04-29 15:50  7% Roger Pau Monne
  0 siblings, 0 replies; 200+ results
From: Roger Pau Monne @ 2024-04-29 15:50 UTC (permalink / raw)
  To: Juergen Gross, Roger Pau Monne, xen-devel, linux-kernel
  Cc: Boris Ostrovsky, Thomas Gleixner, Ingo Molnar, Borislav Petkov,
	Dave Hansen, x86, H. Peter Anvin

Commit 262fc47ac174 ('xen/balloon: don't use PV mode extra memory for zone
device allocations') removed the addition of the extra memory ranges to the
unpopulated range allocator, using those only for the balloon driver.

This forces the unpopulated allocator to attach hotplug ranges even when spare
memory (as part of the extra memory ranges) is available.  Furthermore, on PVH
domains it defeats the purpose of commit 38620fc4e893 ('x86/xen: attempt to
inflate the memory balloon on PVH'), as extra memory ranges would only be
used to map foreign memory if the kernel is built without XEN_UNPOPULATED_ALLOC
support.

Fix this by adding a helpers that adds the extra memory ranges to the list of
unpopulated pages, and zeroes the ranges so they are not also consumed by the
balloon driver.

This should have been part of 38620fc4e893, hence the fixes tag.

Note the current logic relies on unpopulated_init() (and hence
arch_xen_unpopulated_init()) always being called ahead of balloon_init(), so
that the extra memory regions are consumed by arch_xen_unpopulated_init().

Fixes: 38620fc4e893 ('x86/xen: attempt to inflate the memory balloon on PVH')
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
---
There's a lot of duplication between the unpopulated allocator and the balloon
driver.  I feel like the balloon driver should request any extra memory it
needs to the unpopulated allocator, so that the current helpers provided by the
XEN_BALLOON_MEMORY_HOTPLUG option could be replaced with wrappers around the
unpopulated handlers.

However this is much more work than strictly required here, and won't be
suitable for backport IMO.  Hence the more contained fix presented in this
patch.
---
 arch/x86/xen/enlighten.c | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
index a01ca255b0c6..b88722dfc4f8 100644
--- a/arch/x86/xen/enlighten.c
+++ b/arch/x86/xen/enlighten.c
@@ -382,3 +382,36 @@ void __init xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns)
 
 	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
 }
+
+#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
+int __init arch_xen_unpopulated_init(struct resource **res)
+{
+	unsigned int i;
+
+	if (!xen_domain())
+		return -ENODEV;
+
+	/* Must be set strictly before calling xen_free_unpopulated_pages(). */
+	*res = &iomem_resource;
+
+	/*
+	 * Initialize with pages from the extra memory regions (see
+	 * arch/x86/xen/setup.c).
+	 */
+	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
+		unsigned int j;
+
+		for (j = 0; j < xen_extra_mem[i].n_pfns; j++) {
+			struct page *pg =
+				pfn_to_page(xen_extra_mem[i].start_pfn + j);
+
+			xen_free_unpopulated_pages(1, &pg);
+		}
+
+		/* Zero so region is not also added to the balloon driver. */
+		xen_extra_mem[i].n_pfns = 0;
+	}
+
+	return 0;
+}
+#endif
-- 
2.44.0



^ permalink raw reply related	[relevance 7%]

* [PATCH AUTOSEL 6.1 11/15] x86/xen: attempt to inflate the memory balloon on PVH
       [not found]     <20240403171909.345570-1-sashal@kernel.org>
@ 2024-04-03 17:18 11% ` Sasha Levin
  0 siblings, 0 replies; 200+ results
From: Sasha Levin @ 2024-04-03 17:18 UTC (permalink / raw)
  To: linux-kernel, stable
  Cc: Roger Pau Monne, Juergen Gross, Sasha Levin, tglx, mingo, bp,
	dave.hansen, x86, sstabellini, xen-devel

From: Roger Pau Monne <roger.pau@citrix.com>

[ Upstream commit 38620fc4e8934f1801c7811ef39a041914ac4c1d ]

When running as PVH or HVM Linux will use holes in the memory map as scratch
space to map grants, foreign domain pages and possibly miscellaneous other
stuff.  However the usage of such memory map holes for Xen purposes can be
problematic.  The request of holesby Xen happen quite early in the kernel boot
process (grant table setup already uses scratch map space), and it's possible
that by then not all devices have reclaimed their MMIO space.  It's not
unlikely for chunks of Xen scratch map space to end up using PCI bridge MMIO
window memory, which (as expected) causes quite a lot of issues in the system.

At least for PVH dom0 we have the possibility of using regions marked as
UNUSABLE in the e820 memory map.  Either if the region is UNUSABLE in the
native memory map, or it has been converted into UNUSABLE in order to hide RAM
regions from dom0, the second stage translation page-tables can populate those
areas without issues.

PV already has this kind of logic, where the balloon driver is inflated at
boot.  Re-use the current logic in order to also inflate it when running as
PVH.  onvert UNUSABLE regions up to the ratio specified in EXTRA_MEM_RATIO to
RAM, while reserving them using xen_add_extra_mem() (which is also moved so
it's no longer tied to CONFIG_PV).

[jgross: fixed build for CONFIG_PVH without CONFIG_XEN_PVH]

Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/20240220174341.56131-1-roger.pau@citrix.com
Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/x86/include/asm/xen/hypervisor.h |  5 ++
 arch/x86/platform/pvh/enlighten.c     |  3 ++
 arch/x86/xen/enlighten.c              | 32 +++++++++++++
 arch/x86/xen/enlighten_pvh.c          | 68 +++++++++++++++++++++++++++
 arch/x86/xen/setup.c                  | 44 -----------------
 arch/x86/xen/xen-ops.h                | 14 ++++++
 drivers/xen/balloon.c                 |  2 -
 7 files changed, 122 insertions(+), 46 deletions(-)

diff --git a/arch/x86/include/asm/xen/hypervisor.h b/arch/x86/include/asm/xen/hypervisor.h
index 16f548a661cf6..b3bfefdb7793a 100644
--- a/arch/x86/include/asm/xen/hypervisor.h
+++ b/arch/x86/include/asm/xen/hypervisor.h
@@ -59,6 +59,11 @@ void xen_arch_unregister_cpu(int num);
 #ifdef CONFIG_PVH
 void __init xen_pvh_init(struct boot_params *boot_params);
 void __init mem_map_via_hcall(struct boot_params *boot_params_p);
+#ifdef CONFIG_XEN_PVH
+void __init xen_reserve_extra_memory(struct boot_params *bootp);
+#else
+static inline void xen_reserve_extra_memory(struct boot_params *bootp) { }
+#endif
 #endif
 
 #endif /* _ASM_X86_XEN_HYPERVISOR_H */
diff --git a/arch/x86/platform/pvh/enlighten.c b/arch/x86/platform/pvh/enlighten.c
index ed0442e354344..f15dc1e3ad7dd 100644
--- a/arch/x86/platform/pvh/enlighten.c
+++ b/arch/x86/platform/pvh/enlighten.c
@@ -74,6 +74,9 @@ static void __init init_pvh_bootparams(bool xen_guest)
 	} else
 		xen_raw_printk("Warning: Can fit ISA range into e820\n");
 
+	if (xen_guest)
+		xen_reserve_extra_memory(&pvh_bootparams);
+
 	pvh_bootparams.hdr.cmd_line_ptr =
 		pvh_start_info.cmdline_paddr;
 
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
index 3c61bb98c10e2..a01ca255b0c64 100644
--- a/arch/x86/xen/enlighten.c
+++ b/arch/x86/xen/enlighten.c
@@ -6,6 +6,7 @@
 #include <linux/console.h>
 #include <linux/cpu.h>
 #include <linux/kexec.h>
+#include <linux/memblock.h>
 #include <linux/slab.h>
 #include <linux/panic_notifier.h>
 
@@ -350,3 +351,34 @@ void xen_arch_unregister_cpu(int num)
 }
 EXPORT_SYMBOL(xen_arch_unregister_cpu);
 #endif
+
+/* Amount of extra memory space we add to the e820 ranges */
+struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
+
+void __init xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns)
+{
+	unsigned int i;
+
+	/*
+	 * No need to check for zero size, should happen rarely and will only
+	 * write a new entry regarded to be unused due to zero size.
+	 */
+	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
+		/* Add new region. */
+		if (xen_extra_mem[i].n_pfns == 0) {
+			xen_extra_mem[i].start_pfn = start_pfn;
+			xen_extra_mem[i].n_pfns = n_pfns;
+			break;
+		}
+		/* Append to existing region. */
+		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
+		    start_pfn) {
+			xen_extra_mem[i].n_pfns += n_pfns;
+			break;
+		}
+	}
+	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
+		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
+
+	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
+}
diff --git a/arch/x86/xen/enlighten_pvh.c b/arch/x86/xen/enlighten_pvh.c
index ada3868c02c23..c28f073c1df52 100644
--- a/arch/x86/xen/enlighten_pvh.c
+++ b/arch/x86/xen/enlighten_pvh.c
@@ -1,6 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0
 #include <linux/acpi.h>
 #include <linux/export.h>
+#include <linux/mm.h>
 
 #include <xen/hvc-console.h>
 
@@ -72,3 +73,70 @@ void __init mem_map_via_hcall(struct boot_params *boot_params_p)
 	}
 	boot_params_p->e820_entries = memmap.nr_entries;
 }
+
+/*
+ * Reserve e820 UNUSABLE regions to inflate the memory balloon.
+ *
+ * On PVH dom0 the host memory map is used, RAM regions available to dom0 are
+ * located as the same place as in the native memory map, but since dom0 gets
+ * less memory than the total amount of host RAM the ranges that can't be
+ * populated are converted from RAM -> UNUSABLE.  Use such regions (up to the
+ * ratio signaled in EXTRA_MEM_RATIO) in order to inflate the balloon driver at
+ * boot.  Doing so prevents the guest (even if just temporary) from using holes
+ * in the memory map in order to map grants or foreign addresses, and
+ * hopefully limits the risk of a clash with a device MMIO region.  Ideally the
+ * hypervisor should notify us which memory ranges are suitable for creating
+ * foreign mappings, but that's not yet implemented.
+ */
+void __init xen_reserve_extra_memory(struct boot_params *bootp)
+{
+	unsigned int i, ram_pages = 0, extra_pages;
+
+	for (i = 0; i < bootp->e820_entries; i++) {
+		struct boot_e820_entry *e = &bootp->e820_table[i];
+
+		if (e->type != E820_TYPE_RAM)
+			continue;
+		ram_pages += PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr);
+	}
+
+	/* Max amount of extra memory. */
+	extra_pages = EXTRA_MEM_RATIO * ram_pages;
+
+	/*
+	 * Convert UNUSABLE ranges to RAM and reserve them for foreign mapping
+	 * purposes.
+	 */
+	for (i = 0; i < bootp->e820_entries && extra_pages; i++) {
+		struct boot_e820_entry *e = &bootp->e820_table[i];
+		unsigned long pages;
+
+		if (e->type != E820_TYPE_UNUSABLE)
+			continue;
+
+		pages = min(extra_pages,
+			PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr));
+
+		if (pages != (PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr))) {
+			struct boot_e820_entry *next;
+
+			if (bootp->e820_entries ==
+			    ARRAY_SIZE(bootp->e820_table))
+				/* No space left to split - skip region. */
+				continue;
+
+			/* Split entry. */
+			next = e + 1;
+			memmove(next, e,
+				(bootp->e820_entries - i) * sizeof(*e));
+			bootp->e820_entries++;
+			next->addr = PAGE_ALIGN(e->addr) + PFN_PHYS(pages);
+			e->size = next->addr - e->addr;
+			next->size -= e->size;
+		}
+		e->type = E820_TYPE_RAM;
+		extra_pages -= pages;
+
+		xen_add_extra_mem(PFN_UP(e->addr), pages);
+	}
+}
diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c
index 8db26f10fb1d9..72ab4a2f029bb 100644
--- a/arch/x86/xen/setup.c
+++ b/arch/x86/xen/setup.c
@@ -37,9 +37,6 @@
 
 #define GB(x) ((uint64_t)(x) * 1024 * 1024 * 1024)
 
-/* Amount of extra memory space we add to the e820 ranges */
-struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
-
 /* Number of pages released from the initial allocation. */
 unsigned long xen_released_pages;
 
@@ -60,18 +57,6 @@ static struct {
 } xen_remap_buf __initdata __aligned(PAGE_SIZE);
 static unsigned long xen_remap_mfn __initdata = INVALID_P2M_ENTRY;
 
-/*
- * The maximum amount of extra memory compared to the base size.  The
- * main scaling factor is the size of struct page.  At extreme ratios
- * of base:extra, all the base memory can be filled with page
- * structures for the extra memory, leaving no space for anything
- * else.
- *
- * 10x seems like a reasonable balance between scaling flexibility and
- * leaving a practically usable system.
- */
-#define EXTRA_MEM_RATIO		(10)
-
 static bool xen_512gb_limit __initdata = IS_ENABLED(CONFIG_XEN_512GB);
 
 static void __init xen_parse_512gb(void)
@@ -92,35 +77,6 @@ static void __init xen_parse_512gb(void)
 	xen_512gb_limit = val;
 }
 
-static void __init xen_add_extra_mem(unsigned long start_pfn,
-				     unsigned long n_pfns)
-{
-	int i;
-
-	/*
-	 * No need to check for zero size, should happen rarely and will only
-	 * write a new entry regarded to be unused due to zero size.
-	 */
-	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
-		/* Add new region. */
-		if (xen_extra_mem[i].n_pfns == 0) {
-			xen_extra_mem[i].start_pfn = start_pfn;
-			xen_extra_mem[i].n_pfns = n_pfns;
-			break;
-		}
-		/* Append to existing region. */
-		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
-		    start_pfn) {
-			xen_extra_mem[i].n_pfns += n_pfns;
-			break;
-		}
-	}
-	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
-		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
-
-	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
-}
-
 static void __init xen_del_extra_mem(unsigned long start_pfn,
 				     unsigned long n_pfns)
 {
diff --git a/arch/x86/xen/xen-ops.h b/arch/x86/xen/xen-ops.h
index b2b2f4315b78d..8c715a4f06c02 100644
--- a/arch/x86/xen/xen-ops.h
+++ b/arch/x86/xen/xen-ops.h
@@ -162,4 +162,18 @@ void xen_hvm_post_suspend(int suspend_cancelled);
 static inline void xen_hvm_post_suspend(int suspend_cancelled) {}
 #endif
 
+/*
+ * The maximum amount of extra memory compared to the base size.  The
+ * main scaling factor is the size of struct page.  At extreme ratios
+ * of base:extra, all the base memory can be filled with page
+ * structures for the extra memory, leaving no space for anything
+ * else.
+ *
+ * 10x seems like a reasonable balance between scaling flexibility and
+ * leaving a practically usable system.
+ */
+#define EXTRA_MEM_RATIO		(10)
+
+void xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns);
+
 #endif /* XEN_OPS_H */
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 617a7f4f07a80..4e23b398e2882 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -691,7 +691,6 @@ EXPORT_SYMBOL(xen_free_ballooned_pages);
 
 static void __init balloon_add_regions(void)
 {
-#if defined(CONFIG_XEN_PV)
 	unsigned long start_pfn, pages;
 	unsigned long pfn, extra_pfn_end;
 	unsigned int i;
@@ -715,7 +714,6 @@ static void __init balloon_add_regions(void)
 
 		balloon_stats.total_pages += extra_pfn_end - start_pfn;
 	}
-#endif
 }
 
 static int __init balloon_init(void)
-- 
2.43.0



^ permalink raw reply related	[relevance 11%]

* [PATCH AUTOSEL 6.6 13/20] x86/xen: attempt to inflate the memory balloon on PVH
       [not found]     <20240403171815.342668-1-sashal@kernel.org>
@ 2024-04-03 17:17 11% ` Sasha Levin
  0 siblings, 0 replies; 200+ results
From: Sasha Levin @ 2024-04-03 17:17 UTC (permalink / raw)
  To: linux-kernel, stable
  Cc: Roger Pau Monne, Juergen Gross, Sasha Levin, tglx, mingo, bp,
	dave.hansen, x86, sstabellini, xen-devel

From: Roger Pau Monne <roger.pau@citrix.com>

[ Upstream commit 38620fc4e8934f1801c7811ef39a041914ac4c1d ]

When running as PVH or HVM Linux will use holes in the memory map as scratch
space to map grants, foreign domain pages and possibly miscellaneous other
stuff.  However the usage of such memory map holes for Xen purposes can be
problematic.  The request of holesby Xen happen quite early in the kernel boot
process (grant table setup already uses scratch map space), and it's possible
that by then not all devices have reclaimed their MMIO space.  It's not
unlikely for chunks of Xen scratch map space to end up using PCI bridge MMIO
window memory, which (as expected) causes quite a lot of issues in the system.

At least for PVH dom0 we have the possibility of using regions marked as
UNUSABLE in the e820 memory map.  Either if the region is UNUSABLE in the
native memory map, or it has been converted into UNUSABLE in order to hide RAM
regions from dom0, the second stage translation page-tables can populate those
areas without issues.

PV already has this kind of logic, where the balloon driver is inflated at
boot.  Re-use the current logic in order to also inflate it when running as
PVH.  onvert UNUSABLE regions up to the ratio specified in EXTRA_MEM_RATIO to
RAM, while reserving them using xen_add_extra_mem() (which is also moved so
it's no longer tied to CONFIG_PV).

[jgross: fixed build for CONFIG_PVH without CONFIG_XEN_PVH]

Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/20240220174341.56131-1-roger.pau@citrix.com
Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/x86/include/asm/xen/hypervisor.h |  5 ++
 arch/x86/platform/pvh/enlighten.c     |  3 ++
 arch/x86/xen/enlighten.c              | 32 +++++++++++++
 arch/x86/xen/enlighten_pvh.c          | 68 +++++++++++++++++++++++++++
 arch/x86/xen/setup.c                  | 44 -----------------
 arch/x86/xen/xen-ops.h                | 14 ++++++
 drivers/xen/balloon.c                 |  2 -
 7 files changed, 122 insertions(+), 46 deletions(-)

diff --git a/arch/x86/include/asm/xen/hypervisor.h b/arch/x86/include/asm/xen/hypervisor.h
index a9088250770f2..64fbd2dbc5b76 100644
--- a/arch/x86/include/asm/xen/hypervisor.h
+++ b/arch/x86/include/asm/xen/hypervisor.h
@@ -62,6 +62,11 @@ void xen_arch_unregister_cpu(int num);
 #ifdef CONFIG_PVH
 void __init xen_pvh_init(struct boot_params *boot_params);
 void __init mem_map_via_hcall(struct boot_params *boot_params_p);
+#ifdef CONFIG_XEN_PVH
+void __init xen_reserve_extra_memory(struct boot_params *bootp);
+#else
+static inline void xen_reserve_extra_memory(struct boot_params *bootp) { }
+#endif
 #endif
 
 /* Lazy mode for batching updates / context switch */
diff --git a/arch/x86/platform/pvh/enlighten.c b/arch/x86/platform/pvh/enlighten.c
index 00a92cb2c8147..a12117f3d4de7 100644
--- a/arch/x86/platform/pvh/enlighten.c
+++ b/arch/x86/platform/pvh/enlighten.c
@@ -74,6 +74,9 @@ static void __init init_pvh_bootparams(bool xen_guest)
 	} else
 		xen_raw_printk("Warning: Can fit ISA range into e820\n");
 
+	if (xen_guest)
+		xen_reserve_extra_memory(&pvh_bootparams);
+
 	pvh_bootparams.hdr.cmd_line_ptr =
 		pvh_start_info.cmdline_paddr;
 
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
index 3c61bb98c10e2..a01ca255b0c64 100644
--- a/arch/x86/xen/enlighten.c
+++ b/arch/x86/xen/enlighten.c
@@ -6,6 +6,7 @@
 #include <linux/console.h>
 #include <linux/cpu.h>
 #include <linux/kexec.h>
+#include <linux/memblock.h>
 #include <linux/slab.h>
 #include <linux/panic_notifier.h>
 
@@ -350,3 +351,34 @@ void xen_arch_unregister_cpu(int num)
 }
 EXPORT_SYMBOL(xen_arch_unregister_cpu);
 #endif
+
+/* Amount of extra memory space we add to the e820 ranges */
+struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
+
+void __init xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns)
+{
+	unsigned int i;
+
+	/*
+	 * No need to check for zero size, should happen rarely and will only
+	 * write a new entry regarded to be unused due to zero size.
+	 */
+	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
+		/* Add new region. */
+		if (xen_extra_mem[i].n_pfns == 0) {
+			xen_extra_mem[i].start_pfn = start_pfn;
+			xen_extra_mem[i].n_pfns = n_pfns;
+			break;
+		}
+		/* Append to existing region. */
+		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
+		    start_pfn) {
+			xen_extra_mem[i].n_pfns += n_pfns;
+			break;
+		}
+	}
+	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
+		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
+
+	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
+}
diff --git a/arch/x86/xen/enlighten_pvh.c b/arch/x86/xen/enlighten_pvh.c
index ada3868c02c23..c28f073c1df52 100644
--- a/arch/x86/xen/enlighten_pvh.c
+++ b/arch/x86/xen/enlighten_pvh.c
@@ -1,6 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0
 #include <linux/acpi.h>
 #include <linux/export.h>
+#include <linux/mm.h>
 
 #include <xen/hvc-console.h>
 
@@ -72,3 +73,70 @@ void __init mem_map_via_hcall(struct boot_params *boot_params_p)
 	}
 	boot_params_p->e820_entries = memmap.nr_entries;
 }
+
+/*
+ * Reserve e820 UNUSABLE regions to inflate the memory balloon.
+ *
+ * On PVH dom0 the host memory map is used, RAM regions available to dom0 are
+ * located as the same place as in the native memory map, but since dom0 gets
+ * less memory than the total amount of host RAM the ranges that can't be
+ * populated are converted from RAM -> UNUSABLE.  Use such regions (up to the
+ * ratio signaled in EXTRA_MEM_RATIO) in order to inflate the balloon driver at
+ * boot.  Doing so prevents the guest (even if just temporary) from using holes
+ * in the memory map in order to map grants or foreign addresses, and
+ * hopefully limits the risk of a clash with a device MMIO region.  Ideally the
+ * hypervisor should notify us which memory ranges are suitable for creating
+ * foreign mappings, but that's not yet implemented.
+ */
+void __init xen_reserve_extra_memory(struct boot_params *bootp)
+{
+	unsigned int i, ram_pages = 0, extra_pages;
+
+	for (i = 0; i < bootp->e820_entries; i++) {
+		struct boot_e820_entry *e = &bootp->e820_table[i];
+
+		if (e->type != E820_TYPE_RAM)
+			continue;
+		ram_pages += PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr);
+	}
+
+	/* Max amount of extra memory. */
+	extra_pages = EXTRA_MEM_RATIO * ram_pages;
+
+	/*
+	 * Convert UNUSABLE ranges to RAM and reserve them for foreign mapping
+	 * purposes.
+	 */
+	for (i = 0; i < bootp->e820_entries && extra_pages; i++) {
+		struct boot_e820_entry *e = &bootp->e820_table[i];
+		unsigned long pages;
+
+		if (e->type != E820_TYPE_UNUSABLE)
+			continue;
+
+		pages = min(extra_pages,
+			PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr));
+
+		if (pages != (PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr))) {
+			struct boot_e820_entry *next;
+
+			if (bootp->e820_entries ==
+			    ARRAY_SIZE(bootp->e820_table))
+				/* No space left to split - skip region. */
+				continue;
+
+			/* Split entry. */
+			next = e + 1;
+			memmove(next, e,
+				(bootp->e820_entries - i) * sizeof(*e));
+			bootp->e820_entries++;
+			next->addr = PAGE_ALIGN(e->addr) + PFN_PHYS(pages);
+			e->size = next->addr - e->addr;
+			next->size -= e->size;
+		}
+		e->type = E820_TYPE_RAM;
+		extra_pages -= pages;
+
+		xen_add_extra_mem(PFN_UP(e->addr), pages);
+	}
+}
diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c
index b3e37961065a2..380591028cb8f 100644
--- a/arch/x86/xen/setup.c
+++ b/arch/x86/xen/setup.c
@@ -38,9 +38,6 @@
 
 #define GB(x) ((uint64_t)(x) * 1024 * 1024 * 1024)
 
-/* Amount of extra memory space we add to the e820 ranges */
-struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
-
 /* Number of pages released from the initial allocation. */
 unsigned long xen_released_pages;
 
@@ -64,18 +61,6 @@ static struct {
 } xen_remap_buf __initdata __aligned(PAGE_SIZE);
 static unsigned long xen_remap_mfn __initdata = INVALID_P2M_ENTRY;
 
-/*
- * The maximum amount of extra memory compared to the base size.  The
- * main scaling factor is the size of struct page.  At extreme ratios
- * of base:extra, all the base memory can be filled with page
- * structures for the extra memory, leaving no space for anything
- * else.
- *
- * 10x seems like a reasonable balance between scaling flexibility and
- * leaving a practically usable system.
- */
-#define EXTRA_MEM_RATIO		(10)
-
 static bool xen_512gb_limit __initdata = IS_ENABLED(CONFIG_XEN_512GB);
 
 static void __init xen_parse_512gb(void)
@@ -96,35 +81,6 @@ static void __init xen_parse_512gb(void)
 	xen_512gb_limit = val;
 }
 
-static void __init xen_add_extra_mem(unsigned long start_pfn,
-				     unsigned long n_pfns)
-{
-	int i;
-
-	/*
-	 * No need to check for zero size, should happen rarely and will only
-	 * write a new entry regarded to be unused due to zero size.
-	 */
-	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
-		/* Add new region. */
-		if (xen_extra_mem[i].n_pfns == 0) {
-			xen_extra_mem[i].start_pfn = start_pfn;
-			xen_extra_mem[i].n_pfns = n_pfns;
-			break;
-		}
-		/* Append to existing region. */
-		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
-		    start_pfn) {
-			xen_extra_mem[i].n_pfns += n_pfns;
-			break;
-		}
-	}
-	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
-		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
-
-	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
-}
-
 static void __init xen_del_extra_mem(unsigned long start_pfn,
 				     unsigned long n_pfns)
 {
diff --git a/arch/x86/xen/xen-ops.h b/arch/x86/xen/xen-ops.h
index a87ab36889e76..79cf93f2c92f1 100644
--- a/arch/x86/xen/xen-ops.h
+++ b/arch/x86/xen/xen-ops.h
@@ -163,4 +163,18 @@ void xen_hvm_post_suspend(int suspend_cancelled);
 static inline void xen_hvm_post_suspend(int suspend_cancelled) {}
 #endif
 
+/*
+ * The maximum amount of extra memory compared to the base size.  The
+ * main scaling factor is the size of struct page.  At extreme ratios
+ * of base:extra, all the base memory can be filled with page
+ * structures for the extra memory, leaving no space for anything
+ * else.
+ *
+ * 10x seems like a reasonable balance between scaling flexibility and
+ * leaving a practically usable system.
+ */
+#define EXTRA_MEM_RATIO		(10)
+
+void xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns);
+
 #endif /* XEN_OPS_H */
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 586a1673459eb..db61bcb3aab17 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -673,7 +673,6 @@ EXPORT_SYMBOL(xen_free_ballooned_pages);
 
 static void __init balloon_add_regions(void)
 {
-#if defined(CONFIG_XEN_PV)
 	unsigned long start_pfn, pages;
 	unsigned long pfn, extra_pfn_end;
 	unsigned int i;
@@ -697,7 +696,6 @@ static void __init balloon_add_regions(void)
 
 		balloon_stats.total_pages += extra_pfn_end - start_pfn;
 	}
-#endif
 }
 
 static int __init balloon_init(void)
-- 
2.43.0



^ permalink raw reply related	[relevance 11%]

* [PATCH AUTOSEL 6.8 18/28] x86/xen: attempt to inflate the memory balloon on PVH
       [not found]     <20240403171656.335224-1-sashal@kernel.org>
@ 2024-04-03 17:16 11% ` Sasha Levin
  0 siblings, 0 replies; 200+ results
From: Sasha Levin @ 2024-04-03 17:16 UTC (permalink / raw)
  To: linux-kernel, stable
  Cc: Roger Pau Monne, Juergen Gross, Sasha Levin, tglx, mingo, bp,
	dave.hansen, x86, sstabellini, xen-devel

From: Roger Pau Monne <roger.pau@citrix.com>

[ Upstream commit 38620fc4e8934f1801c7811ef39a041914ac4c1d ]

When running as PVH or HVM Linux will use holes in the memory map as scratch
space to map grants, foreign domain pages and possibly miscellaneous other
stuff.  However the usage of such memory map holes for Xen purposes can be
problematic.  The request of holesby Xen happen quite early in the kernel boot
process (grant table setup already uses scratch map space), and it's possible
that by then not all devices have reclaimed their MMIO space.  It's not
unlikely for chunks of Xen scratch map space to end up using PCI bridge MMIO
window memory, which (as expected) causes quite a lot of issues in the system.

At least for PVH dom0 we have the possibility of using regions marked as
UNUSABLE in the e820 memory map.  Either if the region is UNUSABLE in the
native memory map, or it has been converted into UNUSABLE in order to hide RAM
regions from dom0, the second stage translation page-tables can populate those
areas without issues.

PV already has this kind of logic, where the balloon driver is inflated at
boot.  Re-use the current logic in order to also inflate it when running as
PVH.  onvert UNUSABLE regions up to the ratio specified in EXTRA_MEM_RATIO to
RAM, while reserving them using xen_add_extra_mem() (which is also moved so
it's no longer tied to CONFIG_PV).

[jgross: fixed build for CONFIG_PVH without CONFIG_XEN_PVH]

Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/20240220174341.56131-1-roger.pau@citrix.com
Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/x86/include/asm/xen/hypervisor.h |  5 ++
 arch/x86/platform/pvh/enlighten.c     |  3 ++
 arch/x86/xen/enlighten.c              | 32 +++++++++++++
 arch/x86/xen/enlighten_pvh.c          | 68 +++++++++++++++++++++++++++
 arch/x86/xen/setup.c                  | 44 -----------------
 arch/x86/xen/xen-ops.h                | 14 ++++++
 drivers/xen/balloon.c                 |  2 -
 7 files changed, 122 insertions(+), 46 deletions(-)

diff --git a/arch/x86/include/asm/xen/hypervisor.h b/arch/x86/include/asm/xen/hypervisor.h
index a9088250770f2..64fbd2dbc5b76 100644
--- a/arch/x86/include/asm/xen/hypervisor.h
+++ b/arch/x86/include/asm/xen/hypervisor.h
@@ -62,6 +62,11 @@ void xen_arch_unregister_cpu(int num);
 #ifdef CONFIG_PVH
 void __init xen_pvh_init(struct boot_params *boot_params);
 void __init mem_map_via_hcall(struct boot_params *boot_params_p);
+#ifdef CONFIG_XEN_PVH
+void __init xen_reserve_extra_memory(struct boot_params *bootp);
+#else
+static inline void xen_reserve_extra_memory(struct boot_params *bootp) { }
+#endif
 #endif
 
 /* Lazy mode for batching updates / context switch */
diff --git a/arch/x86/platform/pvh/enlighten.c b/arch/x86/platform/pvh/enlighten.c
index 00a92cb2c8147..a12117f3d4de7 100644
--- a/arch/x86/platform/pvh/enlighten.c
+++ b/arch/x86/platform/pvh/enlighten.c
@@ -74,6 +74,9 @@ static void __init init_pvh_bootparams(bool xen_guest)
 	} else
 		xen_raw_printk("Warning: Can fit ISA range into e820\n");
 
+	if (xen_guest)
+		xen_reserve_extra_memory(&pvh_bootparams);
+
 	pvh_bootparams.hdr.cmd_line_ptr =
 		pvh_start_info.cmdline_paddr;
 
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
index 3c61bb98c10e2..a01ca255b0c64 100644
--- a/arch/x86/xen/enlighten.c
+++ b/arch/x86/xen/enlighten.c
@@ -6,6 +6,7 @@
 #include <linux/console.h>
 #include <linux/cpu.h>
 #include <linux/kexec.h>
+#include <linux/memblock.h>
 #include <linux/slab.h>
 #include <linux/panic_notifier.h>
 
@@ -350,3 +351,34 @@ void xen_arch_unregister_cpu(int num)
 }
 EXPORT_SYMBOL(xen_arch_unregister_cpu);
 #endif
+
+/* Amount of extra memory space we add to the e820 ranges */
+struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
+
+void __init xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns)
+{
+	unsigned int i;
+
+	/*
+	 * No need to check for zero size, should happen rarely and will only
+	 * write a new entry regarded to be unused due to zero size.
+	 */
+	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
+		/* Add new region. */
+		if (xen_extra_mem[i].n_pfns == 0) {
+			xen_extra_mem[i].start_pfn = start_pfn;
+			xen_extra_mem[i].n_pfns = n_pfns;
+			break;
+		}
+		/* Append to existing region. */
+		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
+		    start_pfn) {
+			xen_extra_mem[i].n_pfns += n_pfns;
+			break;
+		}
+	}
+	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
+		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
+
+	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
+}
diff --git a/arch/x86/xen/enlighten_pvh.c b/arch/x86/xen/enlighten_pvh.c
index ada3868c02c23..c28f073c1df52 100644
--- a/arch/x86/xen/enlighten_pvh.c
+++ b/arch/x86/xen/enlighten_pvh.c
@@ -1,6 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0
 #include <linux/acpi.h>
 #include <linux/export.h>
+#include <linux/mm.h>
 
 #include <xen/hvc-console.h>
 
@@ -72,3 +73,70 @@ void __init mem_map_via_hcall(struct boot_params *boot_params_p)
 	}
 	boot_params_p->e820_entries = memmap.nr_entries;
 }
+
+/*
+ * Reserve e820 UNUSABLE regions to inflate the memory balloon.
+ *
+ * On PVH dom0 the host memory map is used, RAM regions available to dom0 are
+ * located as the same place as in the native memory map, but since dom0 gets
+ * less memory than the total amount of host RAM the ranges that can't be
+ * populated are converted from RAM -> UNUSABLE.  Use such regions (up to the
+ * ratio signaled in EXTRA_MEM_RATIO) in order to inflate the balloon driver at
+ * boot.  Doing so prevents the guest (even if just temporary) from using holes
+ * in the memory map in order to map grants or foreign addresses, and
+ * hopefully limits the risk of a clash with a device MMIO region.  Ideally the
+ * hypervisor should notify us which memory ranges are suitable for creating
+ * foreign mappings, but that's not yet implemented.
+ */
+void __init xen_reserve_extra_memory(struct boot_params *bootp)
+{
+	unsigned int i, ram_pages = 0, extra_pages;
+
+	for (i = 0; i < bootp->e820_entries; i++) {
+		struct boot_e820_entry *e = &bootp->e820_table[i];
+
+		if (e->type != E820_TYPE_RAM)
+			continue;
+		ram_pages += PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr);
+	}
+
+	/* Max amount of extra memory. */
+	extra_pages = EXTRA_MEM_RATIO * ram_pages;
+
+	/*
+	 * Convert UNUSABLE ranges to RAM and reserve them for foreign mapping
+	 * purposes.
+	 */
+	for (i = 0; i < bootp->e820_entries && extra_pages; i++) {
+		struct boot_e820_entry *e = &bootp->e820_table[i];
+		unsigned long pages;
+
+		if (e->type != E820_TYPE_UNUSABLE)
+			continue;
+
+		pages = min(extra_pages,
+			PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr));
+
+		if (pages != (PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr))) {
+			struct boot_e820_entry *next;
+
+			if (bootp->e820_entries ==
+			    ARRAY_SIZE(bootp->e820_table))
+				/* No space left to split - skip region. */
+				continue;
+
+			/* Split entry. */
+			next = e + 1;
+			memmove(next, e,
+				(bootp->e820_entries - i) * sizeof(*e));
+			bootp->e820_entries++;
+			next->addr = PAGE_ALIGN(e->addr) + PFN_PHYS(pages);
+			e->size = next->addr - e->addr;
+			next->size -= e->size;
+		}
+		e->type = E820_TYPE_RAM;
+		extra_pages -= pages;
+
+		xen_add_extra_mem(PFN_UP(e->addr), pages);
+	}
+}
diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c
index b3e37961065a2..380591028cb8f 100644
--- a/arch/x86/xen/setup.c
+++ b/arch/x86/xen/setup.c
@@ -38,9 +38,6 @@
 
 #define GB(x) ((uint64_t)(x) * 1024 * 1024 * 1024)
 
-/* Amount of extra memory space we add to the e820 ranges */
-struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
-
 /* Number of pages released from the initial allocation. */
 unsigned long xen_released_pages;
 
@@ -64,18 +61,6 @@ static struct {
 } xen_remap_buf __initdata __aligned(PAGE_SIZE);
 static unsigned long xen_remap_mfn __initdata = INVALID_P2M_ENTRY;
 
-/*
- * The maximum amount of extra memory compared to the base size.  The
- * main scaling factor is the size of struct page.  At extreme ratios
- * of base:extra, all the base memory can be filled with page
- * structures for the extra memory, leaving no space for anything
- * else.
- *
- * 10x seems like a reasonable balance between scaling flexibility and
- * leaving a practically usable system.
- */
-#define EXTRA_MEM_RATIO		(10)
-
 static bool xen_512gb_limit __initdata = IS_ENABLED(CONFIG_XEN_512GB);
 
 static void __init xen_parse_512gb(void)
@@ -96,35 +81,6 @@ static void __init xen_parse_512gb(void)
 	xen_512gb_limit = val;
 }
 
-static void __init xen_add_extra_mem(unsigned long start_pfn,
-				     unsigned long n_pfns)
-{
-	int i;
-
-	/*
-	 * No need to check for zero size, should happen rarely and will only
-	 * write a new entry regarded to be unused due to zero size.
-	 */
-	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
-		/* Add new region. */
-		if (xen_extra_mem[i].n_pfns == 0) {
-			xen_extra_mem[i].start_pfn = start_pfn;
-			xen_extra_mem[i].n_pfns = n_pfns;
-			break;
-		}
-		/* Append to existing region. */
-		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
-		    start_pfn) {
-			xen_extra_mem[i].n_pfns += n_pfns;
-			break;
-		}
-	}
-	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
-		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
-
-	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
-}
-
 static void __init xen_del_extra_mem(unsigned long start_pfn,
 				     unsigned long n_pfns)
 {
diff --git a/arch/x86/xen/xen-ops.h b/arch/x86/xen/xen-ops.h
index a87ab36889e76..79cf93f2c92f1 100644
--- a/arch/x86/xen/xen-ops.h
+++ b/arch/x86/xen/xen-ops.h
@@ -163,4 +163,18 @@ void xen_hvm_post_suspend(int suspend_cancelled);
 static inline void xen_hvm_post_suspend(int suspend_cancelled) {}
 #endif
 
+/*
+ * The maximum amount of extra memory compared to the base size.  The
+ * main scaling factor is the size of struct page.  At extreme ratios
+ * of base:extra, all the base memory can be filled with page
+ * structures for the extra memory, leaving no space for anything
+ * else.
+ *
+ * 10x seems like a reasonable balance between scaling flexibility and
+ * leaving a practically usable system.
+ */
+#define EXTRA_MEM_RATIO		(10)
+
+void xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns);
+
 #endif /* XEN_OPS_H */
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 976c6cdf9ee67..aaf2514fcfa46 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -672,7 +672,6 @@ EXPORT_SYMBOL(xen_free_ballooned_pages);
 
 static void __init balloon_add_regions(void)
 {
-#if defined(CONFIG_XEN_PV)
 	unsigned long start_pfn, pages;
 	unsigned long pfn, extra_pfn_end;
 	unsigned int i;
@@ -696,7 +695,6 @@ static void __init balloon_add_regions(void)
 
 		balloon_stats.total_pages += extra_pfn_end - start_pfn;
 	}
-#endif
 }
 
 static int __init balloon_init(void)
-- 
2.43.0



^ permalink raw reply related	[relevance 11%]

* [GIT PULL] xen: branch for v6.9-rc1
@ 2024-03-19  7:10  6% Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2024-03-19  7:10 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, xen-devel, sstabellini

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-6.9-rc1-tag

xen: branch for v6.9-rc1

It contains the following patches:

- 2 patches for Xen event channel handling fixing a regression wit a
  rare kernel config and adding some hardening.

- A patch for better support of running Xen dom0 in PVH mode.

- A cleanup patch for the xen grant-dma-iommu driver.


Thanks.

Juergen

 arch/x86/include/asm/xen/hypervisor.h |  5 +++
 arch/x86/platform/pvh/enlighten.c     |  3 ++
 arch/x86/xen/enlighten.c              | 32 +++++++++++++++++
 arch/x86/xen/enlighten_pvh.c          | 68 +++++++++++++++++++++++++++++++++++
 arch/x86/xen/setup.c                  | 44 -----------------------
 arch/x86/xen/xen-ops.h                | 14 ++++++++
 drivers/xen/balloon.c                 |  2 --
 drivers/xen/events/events_base.c      | 22 +++++++-----
 drivers/xen/evtchn.c                  |  6 ++++
 drivers/xen/grant-dma-iommu.c         |  6 ++--
 10 files changed, 143 insertions(+), 59 deletions(-)

Juergen Gross (2):
      xen/evtchn: avoid WARN() when unbinding an event channel
      xen/events: increment refcnt only if event channel is refcounted

Roger Pau Monne (1):
      x86/xen: attempt to inflate the memory balloon on PVH

Uwe Kleine-König (1):
      xen/grant-dma-iommu: Convert to platform remove callback returning void


^ permalink raw reply	[relevance 6%]

* Re: [PATCH RFC] x86/xen: attempt to inflate the memory balloon on PVH
  2024-03-05 15:50  0%   ` Roger Pau Monné
@ 2024-03-07  1:50  0%     ` Stefano Stabellini
  0 siblings, 0 replies; 200+ results
From: Stefano Stabellini @ 2024-03-07  1:50 UTC (permalink / raw)
  To: Roger Pau Monné
  Cc: Stefano Stabellini, xen-devel, Juergen Gross, Boris Ostrovsky,
	Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
	H. Peter Anvin, Oleksandr Tyshchenko, linux-kernel, Jan Beulich,
	Andrew Cooper

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

On Tue, 5 Mar 2024, Roger Pau Monné wrote:
> On Thu, Feb 22, 2024 at 05:16:09PM -0800, Stefano Stabellini wrote:
> > On Tue, 20 Feb 2024, Roger Pau Monne wrote:
> > > When running as PVH or HVM Linux will use holes in the memory map as scratch
> > > space to map grants, foreign domain pages and possibly miscellaneous other
> > > stuff.  However the usage of such memory map holes for Xen purposes can be
> > > problematic.  The request of holesby Xen happen quite early in the kernel boot
> > > process (grant table setup already uses scratch map space), and it's possible
> > > that by then not all devices have reclaimed their MMIO space.  It's not
> > > unlikely for chunks of Xen scratch map space to end up using PCI bridge MMIO
> > > window memory, which (as expected) causes quite a lot of issues in the system.
> > 
> > Am I understanding correctly that XEN_BALLOON_MEMORY_HOTPLUG doesn't
> > help because it becomes available too late in the PVH boot sequence? 
> 
> No, not really, the hoptplug mechanism is available as early as the
> balloon driver requires, the issue is that when Linux starts making
> use of such unpopulated ranges (for example in order to map the shared
> info page) many drivers have not yet reserved their MMIO regions, and so it's
> not uncommon for the balloon driver to end up using address ranges that
> would otherwise be used by device BARs for example.
> 
> This causes havoc, Linux starts to reposition device BARs, sometimes
> it can manage to re-position them, otherwise some devices are not
> usable.

OK this is bad


> > > At least for PVH dom0 we have the possibility of using regions marked as
> > > UNUSABLE in the e820 memory map.  Either if the region is UNUSABLE in the
> > > native memory map, or it has been converted into UNUSABLE in order to hide RAM
> > > regions from dom0, the second stage translation page-tables can populate those
> > > areas without issues.
> > > 
> > > PV already has this kind of logic, where the balloon driver is inflated at
> > > boot.  Re-use the current logic in order to also inflate it when running as
> > > PVH.  onvert UNUSABLE regions up to the ratio specified in EXTRA_MEM_RATIO to
> > > RAM, while reserving them using xen_add_extra_mem() (which is also moved so
> > > it's no longer tied to CONFIG_PV).
> > > 
> > > Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
> > > ---
> > > RFC reasons:
> > > 
> > >  * Note that it would be preferred for the hypervisor to provide an explicit
> > >    range to be used as scratch mapping space, but that requires changes to Xen,
> > >    and it's not fully clear whether Xen can figure out the position of all MMIO
> > >    regions at boot in order to suggest a scratch mapping region for dom0.
> > > 
> > >  * Should the whole set of xen_{add,del,chk,inv}_extra_mem() functions be moved
> > >    to a different file?  For the purposes of PVH only xen_add_extra_mem() is
> > >    moved and the chk and inv ones are PV specific and might not want moving to
> > >    a separate file just to guard them with CONFIG_PV.
> > > ---
> > >  arch/x86/include/asm/xen/hypervisor.h |  1 +
> > >  arch/x86/platform/pvh/enlighten.c     |  3 ++
> > >  arch/x86/xen/enlighten.c              | 32 +++++++++++++
> > >  arch/x86/xen/enlighten_pvh.c          | 68 +++++++++++++++++++++++++++
> > >  arch/x86/xen/setup.c                  | 44 -----------------
> > >  arch/x86/xen/xen-ops.h                | 14 ++++++
> > >  drivers/xen/balloon.c                 |  2 -
> > >  7 files changed, 118 insertions(+), 46 deletions(-)
> > > 
> > > diff --git a/arch/x86/include/asm/xen/hypervisor.h b/arch/x86/include/asm/xen/hypervisor.h
> > > index a9088250770f..31e2bf8d5db7 100644
> > > --- a/arch/x86/include/asm/xen/hypervisor.h
> > > +++ b/arch/x86/include/asm/xen/hypervisor.h
> > > @@ -62,6 +62,7 @@ void xen_arch_unregister_cpu(int num);
> > >  #ifdef CONFIG_PVH
> > >  void __init xen_pvh_init(struct boot_params *boot_params);
> > >  void __init mem_map_via_hcall(struct boot_params *boot_params_p);
> > > +void __init xen_reserve_extra_memory(struct boot_params *bootp);
> > >  #endif
> > >  
> > >  /* Lazy mode for batching updates / context switch */
> > > diff --git a/arch/x86/platform/pvh/enlighten.c b/arch/x86/platform/pvh/enlighten.c
> > > index 00a92cb2c814..a12117f3d4de 100644
> > > --- a/arch/x86/platform/pvh/enlighten.c
> > > +++ b/arch/x86/platform/pvh/enlighten.c
> > > @@ -74,6 +74,9 @@ static void __init init_pvh_bootparams(bool xen_guest)
> > >  	} else
> > >  		xen_raw_printk("Warning: Can fit ISA range into e820\n");
> > >  
> > > +	if (xen_guest)
> > > +		xen_reserve_extra_memory(&pvh_bootparams);
> > > +
> > >  	pvh_bootparams.hdr.cmd_line_ptr =
> > >  		pvh_start_info.cmdline_paddr;
> > >  
> > > diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
> > > index 3c61bb98c10e..a01ca255b0c6 100644
> > > --- a/arch/x86/xen/enlighten.c
> > > +++ b/arch/x86/xen/enlighten.c
> > > @@ -6,6 +6,7 @@
> > >  #include <linux/console.h>
> > >  #include <linux/cpu.h>
> > >  #include <linux/kexec.h>
> > > +#include <linux/memblock.h>
> > >  #include <linux/slab.h>
> > >  #include <linux/panic_notifier.h>
> > >  
> > > @@ -350,3 +351,34 @@ void xen_arch_unregister_cpu(int num)
> > >  }
> > >  EXPORT_SYMBOL(xen_arch_unregister_cpu);
> > >  #endif
> > > +
> > > +/* Amount of extra memory space we add to the e820 ranges */
> > > +struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
> > > +
> > > +void __init xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns)
> > > +{
> > > +	unsigned int i;
> > > +
> > > +	/*
> > > +	 * No need to check for zero size, should happen rarely and will only
> > > +	 * write a new entry regarded to be unused due to zero size.
> > > +	 */
> > > +	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
> > > +		/* Add new region. */
> > > +		if (xen_extra_mem[i].n_pfns == 0) {
> > > +			xen_extra_mem[i].start_pfn = start_pfn;
> > > +			xen_extra_mem[i].n_pfns = n_pfns;
> > > +			break;
> > > +		}
> > > +		/* Append to existing region. */
> > > +		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
> > > +		    start_pfn) {
> > > +			xen_extra_mem[i].n_pfns += n_pfns;
> > > +			break;
> > > +		}
> > > +	}
> > > +	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
> > > +		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
> > > +
> > > +	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
> > > +}
> > > diff --git a/arch/x86/xen/enlighten_pvh.c b/arch/x86/xen/enlighten_pvh.c
> > > index ada3868c02c2..c28f073c1df5 100644
> > > --- a/arch/x86/xen/enlighten_pvh.c
> > > +++ b/arch/x86/xen/enlighten_pvh.c
> > > @@ -1,6 +1,7 @@
> > >  // SPDX-License-Identifier: GPL-2.0
> > >  #include <linux/acpi.h>
> > >  #include <linux/export.h>
> > > +#include <linux/mm.h>
> > >  
> > >  #include <xen/hvc-console.h>
> > >  
> > > @@ -72,3 +73,70 @@ void __init mem_map_via_hcall(struct boot_params *boot_params_p)
> > >  	}
> > >  	boot_params_p->e820_entries = memmap.nr_entries;
> > >  }
> > > +
> > > +/*
> > > + * Reserve e820 UNUSABLE regions to inflate the memory balloon.
> > > + *
> > > + * On PVH dom0 the host memory map is used, RAM regions available to dom0 are
> > > + * located as the same place as in the native memory map, but since dom0 gets
> > > + * less memory than the total amount of host RAM the ranges that can't be
> > > + * populated are converted from RAM -> UNUSABLE.  Use such regions (up to the
> > > + * ratio signaled in EXTRA_MEM_RATIO) in order to inflate the balloon driver at
> > > + * boot.  Doing so prevents the guest (even if just temporary) from using holes
> > > + * in the memory map in order to map grants or foreign addresses, and
> > > + * hopefully limits the risk of a clash with a device MMIO region.  Ideally the
> > > + * hypervisor should notify us which memory ranges are suitable for creating
> > > + * foreign mappings, but that's not yet implemented.
> > > + */
> > > +void __init xen_reserve_extra_memory(struct boot_params *bootp)
> > > +{
> > > +	unsigned int i, ram_pages = 0, extra_pages;
> > > +
> > > +	for (i = 0; i < bootp->e820_entries; i++) {
> > > +		struct boot_e820_entry *e = &bootp->e820_table[i];
> > > +
> > > +		if (e->type != E820_TYPE_RAM)
> > > +			continue;
> > > +		ram_pages += PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr);
> > > +	}
> > > +
> > > +	/* Max amount of extra memory. */
> > > +	extra_pages = EXTRA_MEM_RATIO * ram_pages;
> > > +
> > > +	/*
> > > +	 * Convert UNUSABLE ranges to RAM and reserve them for foreign mapping
> > > +	 * purposes.
> > > +	 */
> > > +	for (i = 0; i < bootp->e820_entries && extra_pages; i++) {
> > > +		struct boot_e820_entry *e = &bootp->e820_table[i];
> > > +		unsigned long pages;
> > > +
> > > +		if (e->type != E820_TYPE_UNUSABLE)
> > > +			continue;
> > > +
> > > +		pages = min(extra_pages,
> > > +			PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr));
> > > +
> > > +		if (pages != (PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr))) {
> > > +			struct boot_e820_entry *next;
> > > +
> > > +			if (bootp->e820_entries ==
> > > +			    ARRAY_SIZE(bootp->e820_table))
> > > +				/* No space left to split - skip region. */
> > > +				continue;
> > > +
> > > +			/* Split entry. */
> > > +			next = e + 1;
> > > +			memmove(next, e,
> > > +				(bootp->e820_entries - i) * sizeof(*e));
> > > +			bootp->e820_entries++;
> > > +			next->addr = PAGE_ALIGN(e->addr) + PFN_PHYS(pages);
> > > +			e->size = next->addr - e->addr;
> > > +			next->size -= e->size;
> > 
> > Is this really worth doing? Can we just skip this range and continue or
> > simply break out and call it a day? Or even add the whole range instead?
> > 
> > The reason I am asking is that I am expecting E820_TYPE_UNUSABLE regions
> > not to be huge. Splitting one just to cover the few remaining pages out
> > of extra_pages doesn't seem worth it?
> 
> No, they are usually quite huge on PVH dom0, because when building a
> PVH dom0 the E820_TYPE_RAM ranges that are not made available to dom0
> because of a dom0_mem option end up being reported as
> E820_TYPE_UNUSABLE in the e820 provided to dom0.
> 
> That's mostly the motivation of the change, to be able to reuse those
> ranges as scratch space for foreign mappings.
> 
> Ideally the hypervisor should somehow report suitable ranges in the
> address space for domains to create foreign mappings, but this does
> require an amount of extra work I don't have time to do ATM, hence
> this stopgap proposal.

I see. We have gained this feature on ARM not long ago for Dom0 and
Dom0less guests.

All right, I have no reservations. The patch looks OK to me. Juergen?

^ permalink raw reply	[relevance 0%]

* Re: [PATCH RFC] x86/xen: attempt to inflate the memory balloon on PVH
  2024-02-23  1:16  0% ` Stefano Stabellini
@ 2024-03-05 15:50  0%   ` Roger Pau Monné
  2024-03-07  1:50  0%     ` Stefano Stabellini
  0 siblings, 1 reply; 200+ results
From: Roger Pau Monné @ 2024-03-05 15:50 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: xen-devel, Juergen Gross, Boris Ostrovsky, Thomas Gleixner,
	Ingo Molnar, Borislav Petkov, Dave Hansen, x86, H. Peter Anvin,
	Oleksandr Tyshchenko, linux-kernel, Jan Beulich, Andrew Cooper

On Thu, Feb 22, 2024 at 05:16:09PM -0800, Stefano Stabellini wrote:
> On Tue, 20 Feb 2024, Roger Pau Monne wrote:
> > When running as PVH or HVM Linux will use holes in the memory map as scratch
> > space to map grants, foreign domain pages and possibly miscellaneous other
> > stuff.  However the usage of such memory map holes for Xen purposes can be
> > problematic.  The request of holesby Xen happen quite early in the kernel boot
> > process (grant table setup already uses scratch map space), and it's possible
> > that by then not all devices have reclaimed their MMIO space.  It's not
> > unlikely for chunks of Xen scratch map space to end up using PCI bridge MMIO
> > window memory, which (as expected) causes quite a lot of issues in the system.
> 
> Am I understanding correctly that XEN_BALLOON_MEMORY_HOTPLUG doesn't
> help because it becomes available too late in the PVH boot sequence? 

No, not really, the hoptplug mechanism is available as early as the
balloon driver requires, the issue is that when Linux starts making
use of such unpopulated ranges (for example in order to map the shared
info page) many drivers have not yet reserved their MMIO regions, and so it's
not uncommon for the balloon driver to end up using address ranges that
would otherwise be used by device BARs for example.

This causes havoc, Linux starts to reposition device BARs, sometimes
it can manage to re-position them, otherwise some devices are not
usable.

> > At least for PVH dom0 we have the possibility of using regions marked as
> > UNUSABLE in the e820 memory map.  Either if the region is UNUSABLE in the
> > native memory map, or it has been converted into UNUSABLE in order to hide RAM
> > regions from dom0, the second stage translation page-tables can populate those
> > areas without issues.
> > 
> > PV already has this kind of logic, where the balloon driver is inflated at
> > boot.  Re-use the current logic in order to also inflate it when running as
> > PVH.  onvert UNUSABLE regions up to the ratio specified in EXTRA_MEM_RATIO to
> > RAM, while reserving them using xen_add_extra_mem() (which is also moved so
> > it's no longer tied to CONFIG_PV).
> > 
> > Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
> > ---
> > RFC reasons:
> > 
> >  * Note that it would be preferred for the hypervisor to provide an explicit
> >    range to be used as scratch mapping space, but that requires changes to Xen,
> >    and it's not fully clear whether Xen can figure out the position of all MMIO
> >    regions at boot in order to suggest a scratch mapping region for dom0.
> > 
> >  * Should the whole set of xen_{add,del,chk,inv}_extra_mem() functions be moved
> >    to a different file?  For the purposes of PVH only xen_add_extra_mem() is
> >    moved and the chk and inv ones are PV specific and might not want moving to
> >    a separate file just to guard them with CONFIG_PV.
> > ---
> >  arch/x86/include/asm/xen/hypervisor.h |  1 +
> >  arch/x86/platform/pvh/enlighten.c     |  3 ++
> >  arch/x86/xen/enlighten.c              | 32 +++++++++++++
> >  arch/x86/xen/enlighten_pvh.c          | 68 +++++++++++++++++++++++++++
> >  arch/x86/xen/setup.c                  | 44 -----------------
> >  arch/x86/xen/xen-ops.h                | 14 ++++++
> >  drivers/xen/balloon.c                 |  2 -
> >  7 files changed, 118 insertions(+), 46 deletions(-)
> > 
> > diff --git a/arch/x86/include/asm/xen/hypervisor.h b/arch/x86/include/asm/xen/hypervisor.h
> > index a9088250770f..31e2bf8d5db7 100644
> > --- a/arch/x86/include/asm/xen/hypervisor.h
> > +++ b/arch/x86/include/asm/xen/hypervisor.h
> > @@ -62,6 +62,7 @@ void xen_arch_unregister_cpu(int num);
> >  #ifdef CONFIG_PVH
> >  void __init xen_pvh_init(struct boot_params *boot_params);
> >  void __init mem_map_via_hcall(struct boot_params *boot_params_p);
> > +void __init xen_reserve_extra_memory(struct boot_params *bootp);
> >  #endif
> >  
> >  /* Lazy mode for batching updates / context switch */
> > diff --git a/arch/x86/platform/pvh/enlighten.c b/arch/x86/platform/pvh/enlighten.c
> > index 00a92cb2c814..a12117f3d4de 100644
> > --- a/arch/x86/platform/pvh/enlighten.c
> > +++ b/arch/x86/platform/pvh/enlighten.c
> > @@ -74,6 +74,9 @@ static void __init init_pvh_bootparams(bool xen_guest)
> >  	} else
> >  		xen_raw_printk("Warning: Can fit ISA range into e820\n");
> >  
> > +	if (xen_guest)
> > +		xen_reserve_extra_memory(&pvh_bootparams);
> > +
> >  	pvh_bootparams.hdr.cmd_line_ptr =
> >  		pvh_start_info.cmdline_paddr;
> >  
> > diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
> > index 3c61bb98c10e..a01ca255b0c6 100644
> > --- a/arch/x86/xen/enlighten.c
> > +++ b/arch/x86/xen/enlighten.c
> > @@ -6,6 +6,7 @@
> >  #include <linux/console.h>
> >  #include <linux/cpu.h>
> >  #include <linux/kexec.h>
> > +#include <linux/memblock.h>
> >  #include <linux/slab.h>
> >  #include <linux/panic_notifier.h>
> >  
> > @@ -350,3 +351,34 @@ void xen_arch_unregister_cpu(int num)
> >  }
> >  EXPORT_SYMBOL(xen_arch_unregister_cpu);
> >  #endif
> > +
> > +/* Amount of extra memory space we add to the e820 ranges */
> > +struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
> > +
> > +void __init xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns)
> > +{
> > +	unsigned int i;
> > +
> > +	/*
> > +	 * No need to check for zero size, should happen rarely and will only
> > +	 * write a new entry regarded to be unused due to zero size.
> > +	 */
> > +	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
> > +		/* Add new region. */
> > +		if (xen_extra_mem[i].n_pfns == 0) {
> > +			xen_extra_mem[i].start_pfn = start_pfn;
> > +			xen_extra_mem[i].n_pfns = n_pfns;
> > +			break;
> > +		}
> > +		/* Append to existing region. */
> > +		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
> > +		    start_pfn) {
> > +			xen_extra_mem[i].n_pfns += n_pfns;
> > +			break;
> > +		}
> > +	}
> > +	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
> > +		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
> > +
> > +	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
> > +}
> > diff --git a/arch/x86/xen/enlighten_pvh.c b/arch/x86/xen/enlighten_pvh.c
> > index ada3868c02c2..c28f073c1df5 100644
> > --- a/arch/x86/xen/enlighten_pvh.c
> > +++ b/arch/x86/xen/enlighten_pvh.c
> > @@ -1,6 +1,7 @@
> >  // SPDX-License-Identifier: GPL-2.0
> >  #include <linux/acpi.h>
> >  #include <linux/export.h>
> > +#include <linux/mm.h>
> >  
> >  #include <xen/hvc-console.h>
> >  
> > @@ -72,3 +73,70 @@ void __init mem_map_via_hcall(struct boot_params *boot_params_p)
> >  	}
> >  	boot_params_p->e820_entries = memmap.nr_entries;
> >  }
> > +
> > +/*
> > + * Reserve e820 UNUSABLE regions to inflate the memory balloon.
> > + *
> > + * On PVH dom0 the host memory map is used, RAM regions available to dom0 are
> > + * located as the same place as in the native memory map, but since dom0 gets
> > + * less memory than the total amount of host RAM the ranges that can't be
> > + * populated are converted from RAM -> UNUSABLE.  Use such regions (up to the
> > + * ratio signaled in EXTRA_MEM_RATIO) in order to inflate the balloon driver at
> > + * boot.  Doing so prevents the guest (even if just temporary) from using holes
> > + * in the memory map in order to map grants or foreign addresses, and
> > + * hopefully limits the risk of a clash with a device MMIO region.  Ideally the
> > + * hypervisor should notify us which memory ranges are suitable for creating
> > + * foreign mappings, but that's not yet implemented.
> > + */
> > +void __init xen_reserve_extra_memory(struct boot_params *bootp)
> > +{
> > +	unsigned int i, ram_pages = 0, extra_pages;
> > +
> > +	for (i = 0; i < bootp->e820_entries; i++) {
> > +		struct boot_e820_entry *e = &bootp->e820_table[i];
> > +
> > +		if (e->type != E820_TYPE_RAM)
> > +			continue;
> > +		ram_pages += PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr);
> > +	}
> > +
> > +	/* Max amount of extra memory. */
> > +	extra_pages = EXTRA_MEM_RATIO * ram_pages;
> > +
> > +	/*
> > +	 * Convert UNUSABLE ranges to RAM and reserve them for foreign mapping
> > +	 * purposes.
> > +	 */
> > +	for (i = 0; i < bootp->e820_entries && extra_pages; i++) {
> > +		struct boot_e820_entry *e = &bootp->e820_table[i];
> > +		unsigned long pages;
> > +
> > +		if (e->type != E820_TYPE_UNUSABLE)
> > +			continue;
> > +
> > +		pages = min(extra_pages,
> > +			PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr));
> > +
> > +		if (pages != (PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr))) {
> > +			struct boot_e820_entry *next;
> > +
> > +			if (bootp->e820_entries ==
> > +			    ARRAY_SIZE(bootp->e820_table))
> > +				/* No space left to split - skip region. */
> > +				continue;
> > +
> > +			/* Split entry. */
> > +			next = e + 1;
> > +			memmove(next, e,
> > +				(bootp->e820_entries - i) * sizeof(*e));
> > +			bootp->e820_entries++;
> > +			next->addr = PAGE_ALIGN(e->addr) + PFN_PHYS(pages);
> > +			e->size = next->addr - e->addr;
> > +			next->size -= e->size;
> 
> Is this really worth doing? Can we just skip this range and continue or
> simply break out and call it a day? Or even add the whole range instead?
> 
> The reason I am asking is that I am expecting E820_TYPE_UNUSABLE regions
> not to be huge. Splitting one just to cover the few remaining pages out
> of extra_pages doesn't seem worth it?

No, they are usually quite huge on PVH dom0, because when building a
PVH dom0 the E820_TYPE_RAM ranges that are not made available to dom0
because of a dom0_mem option end up being reported as
E820_TYPE_UNUSABLE in the e820 provided to dom0.

That's mostly the motivation of the change, to be able to reuse those
ranges as scratch space for foreign mappings.

Ideally the hypervisor should somehow report suitable ranges in the
address space for domains to create foreign mappings, but this does
require an amount of extra work I don't have time to do ATM, hence
this stopgap proposal.

> Everything else looks OK to me.

Thanks, Roger.


^ permalink raw reply	[relevance 0%]

* Re: [PATCH RFC] x86/xen: attempt to inflate the memory balloon on PVH
  2024-02-20 17:43 11% [PATCH RFC] x86/xen: attempt to inflate the memory balloon on PVH Roger Pau Monne
@ 2024-02-23  1:16  0% ` Stefano Stabellini
  2024-03-05 15:50  0%   ` Roger Pau Monné
  0 siblings, 1 reply; 200+ results
From: Stefano Stabellini @ 2024-02-23  1:16 UTC (permalink / raw)
  To: Roger Pau Monne
  Cc: xen-devel, Juergen Gross, Boris Ostrovsky, Thomas Gleixner,
	Ingo Molnar, Borislav Petkov, Dave Hansen, x86, H. Peter Anvin,
	Stefano Stabellini, Oleksandr Tyshchenko, linux-kernel,
	Jan Beulich, Andrew Cooper

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

On Tue, 20 Feb 2024, Roger Pau Monne wrote:
> When running as PVH or HVM Linux will use holes in the memory map as scratch
> space to map grants, foreign domain pages and possibly miscellaneous other
> stuff.  However the usage of such memory map holes for Xen purposes can be
> problematic.  The request of holesby Xen happen quite early in the kernel boot
> process (grant table setup already uses scratch map space), and it's possible
> that by then not all devices have reclaimed their MMIO space.  It's not
> unlikely for chunks of Xen scratch map space to end up using PCI bridge MMIO
> window memory, which (as expected) causes quite a lot of issues in the system.

Am I understanding correctly that XEN_BALLOON_MEMORY_HOTPLUG doesn't
help because it becomes available too late in the PVH boot sequence? 



> At least for PVH dom0 we have the possibility of using regions marked as
> UNUSABLE in the e820 memory map.  Either if the region is UNUSABLE in the
> native memory map, or it has been converted into UNUSABLE in order to hide RAM
> regions from dom0, the second stage translation page-tables can populate those
> areas without issues.
> 
> PV already has this kind of logic, where the balloon driver is inflated at
> boot.  Re-use the current logic in order to also inflate it when running as
> PVH.  onvert UNUSABLE regions up to the ratio specified in EXTRA_MEM_RATIO to
> RAM, while reserving them using xen_add_extra_mem() (which is also moved so
> it's no longer tied to CONFIG_PV).
> 
> Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
> ---
> RFC reasons:
> 
>  * Note that it would be preferred for the hypervisor to provide an explicit
>    range to be used as scratch mapping space, but that requires changes to Xen,
>    and it's not fully clear whether Xen can figure out the position of all MMIO
>    regions at boot in order to suggest a scratch mapping region for dom0.
> 
>  * Should the whole set of xen_{add,del,chk,inv}_extra_mem() functions be moved
>    to a different file?  For the purposes of PVH only xen_add_extra_mem() is
>    moved and the chk and inv ones are PV specific and might not want moving to
>    a separate file just to guard them with CONFIG_PV.
> ---
>  arch/x86/include/asm/xen/hypervisor.h |  1 +
>  arch/x86/platform/pvh/enlighten.c     |  3 ++
>  arch/x86/xen/enlighten.c              | 32 +++++++++++++
>  arch/x86/xen/enlighten_pvh.c          | 68 +++++++++++++++++++++++++++
>  arch/x86/xen/setup.c                  | 44 -----------------
>  arch/x86/xen/xen-ops.h                | 14 ++++++
>  drivers/xen/balloon.c                 |  2 -
>  7 files changed, 118 insertions(+), 46 deletions(-)
> 
> diff --git a/arch/x86/include/asm/xen/hypervisor.h b/arch/x86/include/asm/xen/hypervisor.h
> index a9088250770f..31e2bf8d5db7 100644
> --- a/arch/x86/include/asm/xen/hypervisor.h
> +++ b/arch/x86/include/asm/xen/hypervisor.h
> @@ -62,6 +62,7 @@ void xen_arch_unregister_cpu(int num);
>  #ifdef CONFIG_PVH
>  void __init xen_pvh_init(struct boot_params *boot_params);
>  void __init mem_map_via_hcall(struct boot_params *boot_params_p);
> +void __init xen_reserve_extra_memory(struct boot_params *bootp);
>  #endif
>  
>  /* Lazy mode for batching updates / context switch */
> diff --git a/arch/x86/platform/pvh/enlighten.c b/arch/x86/platform/pvh/enlighten.c
> index 00a92cb2c814..a12117f3d4de 100644
> --- a/arch/x86/platform/pvh/enlighten.c
> +++ b/arch/x86/platform/pvh/enlighten.c
> @@ -74,6 +74,9 @@ static void __init init_pvh_bootparams(bool xen_guest)
>  	} else
>  		xen_raw_printk("Warning: Can fit ISA range into e820\n");
>  
> +	if (xen_guest)
> +		xen_reserve_extra_memory(&pvh_bootparams);
> +
>  	pvh_bootparams.hdr.cmd_line_ptr =
>  		pvh_start_info.cmdline_paddr;
>  
> diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
> index 3c61bb98c10e..a01ca255b0c6 100644
> --- a/arch/x86/xen/enlighten.c
> +++ b/arch/x86/xen/enlighten.c
> @@ -6,6 +6,7 @@
>  #include <linux/console.h>
>  #include <linux/cpu.h>
>  #include <linux/kexec.h>
> +#include <linux/memblock.h>
>  #include <linux/slab.h>
>  #include <linux/panic_notifier.h>
>  
> @@ -350,3 +351,34 @@ void xen_arch_unregister_cpu(int num)
>  }
>  EXPORT_SYMBOL(xen_arch_unregister_cpu);
>  #endif
> +
> +/* Amount of extra memory space we add to the e820 ranges */
> +struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
> +
> +void __init xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns)
> +{
> +	unsigned int i;
> +
> +	/*
> +	 * No need to check for zero size, should happen rarely and will only
> +	 * write a new entry regarded to be unused due to zero size.
> +	 */
> +	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
> +		/* Add new region. */
> +		if (xen_extra_mem[i].n_pfns == 0) {
> +			xen_extra_mem[i].start_pfn = start_pfn;
> +			xen_extra_mem[i].n_pfns = n_pfns;
> +			break;
> +		}
> +		/* Append to existing region. */
> +		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
> +		    start_pfn) {
> +			xen_extra_mem[i].n_pfns += n_pfns;
> +			break;
> +		}
> +	}
> +	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
> +		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
> +
> +	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
> +}
> diff --git a/arch/x86/xen/enlighten_pvh.c b/arch/x86/xen/enlighten_pvh.c
> index ada3868c02c2..c28f073c1df5 100644
> --- a/arch/x86/xen/enlighten_pvh.c
> +++ b/arch/x86/xen/enlighten_pvh.c
> @@ -1,6 +1,7 @@
>  // SPDX-License-Identifier: GPL-2.0
>  #include <linux/acpi.h>
>  #include <linux/export.h>
> +#include <linux/mm.h>
>  
>  #include <xen/hvc-console.h>
>  
> @@ -72,3 +73,70 @@ void __init mem_map_via_hcall(struct boot_params *boot_params_p)
>  	}
>  	boot_params_p->e820_entries = memmap.nr_entries;
>  }
> +
> +/*
> + * Reserve e820 UNUSABLE regions to inflate the memory balloon.
> + *
> + * On PVH dom0 the host memory map is used, RAM regions available to dom0 are
> + * located as the same place as in the native memory map, but since dom0 gets
> + * less memory than the total amount of host RAM the ranges that can't be
> + * populated are converted from RAM -> UNUSABLE.  Use such regions (up to the
> + * ratio signaled in EXTRA_MEM_RATIO) in order to inflate the balloon driver at
> + * boot.  Doing so prevents the guest (even if just temporary) from using holes
> + * in the memory map in order to map grants or foreign addresses, and
> + * hopefully limits the risk of a clash with a device MMIO region.  Ideally the
> + * hypervisor should notify us which memory ranges are suitable for creating
> + * foreign mappings, but that's not yet implemented.
> + */
> +void __init xen_reserve_extra_memory(struct boot_params *bootp)
> +{
> +	unsigned int i, ram_pages = 0, extra_pages;
> +
> +	for (i = 0; i < bootp->e820_entries; i++) {
> +		struct boot_e820_entry *e = &bootp->e820_table[i];
> +
> +		if (e->type != E820_TYPE_RAM)
> +			continue;
> +		ram_pages += PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr);
> +	}
> +
> +	/* Max amount of extra memory. */
> +	extra_pages = EXTRA_MEM_RATIO * ram_pages;
> +
> +	/*
> +	 * Convert UNUSABLE ranges to RAM and reserve them for foreign mapping
> +	 * purposes.
> +	 */
> +	for (i = 0; i < bootp->e820_entries && extra_pages; i++) {
> +		struct boot_e820_entry *e = &bootp->e820_table[i];
> +		unsigned long pages;
> +
> +		if (e->type != E820_TYPE_UNUSABLE)
> +			continue;
> +
> +		pages = min(extra_pages,
> +			PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr));
> +
> +		if (pages != (PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr))) {
> +			struct boot_e820_entry *next;
> +
> +			if (bootp->e820_entries ==
> +			    ARRAY_SIZE(bootp->e820_table))
> +				/* No space left to split - skip region. */
> +				continue;
> +
> +			/* Split entry. */
> +			next = e + 1;
> +			memmove(next, e,
> +				(bootp->e820_entries - i) * sizeof(*e));
> +			bootp->e820_entries++;
> +			next->addr = PAGE_ALIGN(e->addr) + PFN_PHYS(pages);
> +			e->size = next->addr - e->addr;
> +			next->size -= e->size;

Is this really worth doing? Can we just skip this range and continue or
simply break out and call it a day? Or even add the whole range instead?

The reason I am asking is that I am expecting E820_TYPE_UNUSABLE regions
not to be huge. Splitting one just to cover the few remaining pages out
of extra_pages doesn't seem worth it?

Everything else looks OK to me.


> +		}
> +		e->type = E820_TYPE_RAM;
> +		extra_pages -= pages;
> +
> +		xen_add_extra_mem(PFN_UP(e->addr), pages);
> +	}
> +}
> diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c
> index b3e37961065a..380591028cb8 100644
> --- a/arch/x86/xen/setup.c
> +++ b/arch/x86/xen/setup.c
> @@ -38,9 +38,6 @@
>  
>  #define GB(x) ((uint64_t)(x) * 1024 * 1024 * 1024)
>  
> -/* Amount of extra memory space we add to the e820 ranges */
> -struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
> -
>  /* Number of pages released from the initial allocation. */
>  unsigned long xen_released_pages;
>  
> @@ -64,18 +61,6 @@ static struct {
>  } xen_remap_buf __initdata __aligned(PAGE_SIZE);
>  static unsigned long xen_remap_mfn __initdata = INVALID_P2M_ENTRY;
>  
> -/*
> - * The maximum amount of extra memory compared to the base size.  The
> - * main scaling factor is the size of struct page.  At extreme ratios
> - * of base:extra, all the base memory can be filled with page
> - * structures for the extra memory, leaving no space for anything
> - * else.
> - *
> - * 10x seems like a reasonable balance between scaling flexibility and
> - * leaving a practically usable system.
> - */
> -#define EXTRA_MEM_RATIO		(10)
> -
>  static bool xen_512gb_limit __initdata = IS_ENABLED(CONFIG_XEN_512GB);
>  
>  static void __init xen_parse_512gb(void)
> @@ -96,35 +81,6 @@ static void __init xen_parse_512gb(void)
>  	xen_512gb_limit = val;
>  }
>  
> -static void __init xen_add_extra_mem(unsigned long start_pfn,
> -				     unsigned long n_pfns)
> -{
> -	int i;
> -
> -	/*
> -	 * No need to check for zero size, should happen rarely and will only
> -	 * write a new entry regarded to be unused due to zero size.
> -	 */
> -	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
> -		/* Add new region. */
> -		if (xen_extra_mem[i].n_pfns == 0) {
> -			xen_extra_mem[i].start_pfn = start_pfn;
> -			xen_extra_mem[i].n_pfns = n_pfns;
> -			break;
> -		}
> -		/* Append to existing region. */
> -		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
> -		    start_pfn) {
> -			xen_extra_mem[i].n_pfns += n_pfns;
> -			break;
> -		}
> -	}
> -	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
> -		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
> -
> -	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
> -}
> -
>  static void __init xen_del_extra_mem(unsigned long start_pfn,
>  				     unsigned long n_pfns)
>  {
> diff --git a/arch/x86/xen/xen-ops.h b/arch/x86/xen/xen-ops.h
> index a87ab36889e7..79cf93f2c92f 100644
> --- a/arch/x86/xen/xen-ops.h
> +++ b/arch/x86/xen/xen-ops.h
> @@ -163,4 +163,18 @@ void xen_hvm_post_suspend(int suspend_cancelled);
>  static inline void xen_hvm_post_suspend(int suspend_cancelled) {}
>  #endif
>  
> +/*
> + * The maximum amount of extra memory compared to the base size.  The
> + * main scaling factor is the size of struct page.  At extreme ratios
> + * of base:extra, all the base memory can be filled with page
> + * structures for the extra memory, leaving no space for anything
> + * else.
> + *
> + * 10x seems like a reasonable balance between scaling flexibility and
> + * leaving a practically usable system.
> + */
> +#define EXTRA_MEM_RATIO		(10)
> +
> +void xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns);
> +
>  #endif /* XEN_OPS_H */
> diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
> index 976c6cdf9ee6..aaf2514fcfa4 100644
> --- a/drivers/xen/balloon.c
> +++ b/drivers/xen/balloon.c
> @@ -672,7 +672,6 @@ EXPORT_SYMBOL(xen_free_ballooned_pages);
>  
>  static void __init balloon_add_regions(void)
>  {
> -#if defined(CONFIG_XEN_PV)
>  	unsigned long start_pfn, pages;
>  	unsigned long pfn, extra_pfn_end;
>  	unsigned int i;
> @@ -696,7 +695,6 @@ static void __init balloon_add_regions(void)
>  
>  		balloon_stats.total_pages += extra_pfn_end - start_pfn;
>  	}
> -#endif
>  }
>  
>  static int __init balloon_init(void)
> -- 
> 2.43.0
> 

^ permalink raw reply	[relevance 0%]

* [PATCH RFC] x86/xen: attempt to inflate the memory balloon on PVH
@ 2024-02-20 17:43 11% Roger Pau Monne
  2024-02-23  1:16  0% ` Stefano Stabellini
  0 siblings, 1 reply; 200+ results
From: Roger Pau Monne @ 2024-02-20 17:43 UTC (permalink / raw)
  To: xen-devel
  Cc: Roger Pau Monne, Juergen Gross, Boris Ostrovsky, Thomas Gleixner,
	Ingo Molnar, Borislav Petkov, Dave Hansen, x86, H. Peter Anvin,
	Stefano Stabellini, Oleksandr Tyshchenko, linux-kernel,
	Jan Beulich, Andrew Cooper

When running as PVH or HVM Linux will use holes in the memory map as scratch
space to map grants, foreign domain pages and possibly miscellaneous other
stuff.  However the usage of such memory map holes for Xen purposes can be
problematic.  The request of holesby Xen happen quite early in the kernel boot
process (grant table setup already uses scratch map space), and it's possible
that by then not all devices have reclaimed their MMIO space.  It's not
unlikely for chunks of Xen scratch map space to end up using PCI bridge MMIO
window memory, which (as expected) causes quite a lot of issues in the system.

At least for PVH dom0 we have the possibility of using regions marked as
UNUSABLE in the e820 memory map.  Either if the region is UNUSABLE in the
native memory map, or it has been converted into UNUSABLE in order to hide RAM
regions from dom0, the second stage translation page-tables can populate those
areas without issues.

PV already has this kind of logic, where the balloon driver is inflated at
boot.  Re-use the current logic in order to also inflate it when running as
PVH.  onvert UNUSABLE regions up to the ratio specified in EXTRA_MEM_RATIO to
RAM, while reserving them using xen_add_extra_mem() (which is also moved so
it's no longer tied to CONFIG_PV).

Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
---
RFC reasons:

 * Note that it would be preferred for the hypervisor to provide an explicit
   range to be used as scratch mapping space, but that requires changes to Xen,
   and it's not fully clear whether Xen can figure out the position of all MMIO
   regions at boot in order to suggest a scratch mapping region for dom0.

 * Should the whole set of xen_{add,del,chk,inv}_extra_mem() functions be moved
   to a different file?  For the purposes of PVH only xen_add_extra_mem() is
   moved and the chk and inv ones are PV specific and might not want moving to
   a separate file just to guard them with CONFIG_PV.
---
 arch/x86/include/asm/xen/hypervisor.h |  1 +
 arch/x86/platform/pvh/enlighten.c     |  3 ++
 arch/x86/xen/enlighten.c              | 32 +++++++++++++
 arch/x86/xen/enlighten_pvh.c          | 68 +++++++++++++++++++++++++++
 arch/x86/xen/setup.c                  | 44 -----------------
 arch/x86/xen/xen-ops.h                | 14 ++++++
 drivers/xen/balloon.c                 |  2 -
 7 files changed, 118 insertions(+), 46 deletions(-)

diff --git a/arch/x86/include/asm/xen/hypervisor.h b/arch/x86/include/asm/xen/hypervisor.h
index a9088250770f..31e2bf8d5db7 100644
--- a/arch/x86/include/asm/xen/hypervisor.h
+++ b/arch/x86/include/asm/xen/hypervisor.h
@@ -62,6 +62,7 @@ void xen_arch_unregister_cpu(int num);
 #ifdef CONFIG_PVH
 void __init xen_pvh_init(struct boot_params *boot_params);
 void __init mem_map_via_hcall(struct boot_params *boot_params_p);
+void __init xen_reserve_extra_memory(struct boot_params *bootp);
 #endif
 
 /* Lazy mode for batching updates / context switch */
diff --git a/arch/x86/platform/pvh/enlighten.c b/arch/x86/platform/pvh/enlighten.c
index 00a92cb2c814..a12117f3d4de 100644
--- a/arch/x86/platform/pvh/enlighten.c
+++ b/arch/x86/platform/pvh/enlighten.c
@@ -74,6 +74,9 @@ static void __init init_pvh_bootparams(bool xen_guest)
 	} else
 		xen_raw_printk("Warning: Can fit ISA range into e820\n");
 
+	if (xen_guest)
+		xen_reserve_extra_memory(&pvh_bootparams);
+
 	pvh_bootparams.hdr.cmd_line_ptr =
 		pvh_start_info.cmdline_paddr;
 
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
index 3c61bb98c10e..a01ca255b0c6 100644
--- a/arch/x86/xen/enlighten.c
+++ b/arch/x86/xen/enlighten.c
@@ -6,6 +6,7 @@
 #include <linux/console.h>
 #include <linux/cpu.h>
 #include <linux/kexec.h>
+#include <linux/memblock.h>
 #include <linux/slab.h>
 #include <linux/panic_notifier.h>
 
@@ -350,3 +351,34 @@ void xen_arch_unregister_cpu(int num)
 }
 EXPORT_SYMBOL(xen_arch_unregister_cpu);
 #endif
+
+/* Amount of extra memory space we add to the e820 ranges */
+struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
+
+void __init xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns)
+{
+	unsigned int i;
+
+	/*
+	 * No need to check for zero size, should happen rarely and will only
+	 * write a new entry regarded to be unused due to zero size.
+	 */
+	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
+		/* Add new region. */
+		if (xen_extra_mem[i].n_pfns == 0) {
+			xen_extra_mem[i].start_pfn = start_pfn;
+			xen_extra_mem[i].n_pfns = n_pfns;
+			break;
+		}
+		/* Append to existing region. */
+		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
+		    start_pfn) {
+			xen_extra_mem[i].n_pfns += n_pfns;
+			break;
+		}
+	}
+	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
+		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
+
+	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
+}
diff --git a/arch/x86/xen/enlighten_pvh.c b/arch/x86/xen/enlighten_pvh.c
index ada3868c02c2..c28f073c1df5 100644
--- a/arch/x86/xen/enlighten_pvh.c
+++ b/arch/x86/xen/enlighten_pvh.c
@@ -1,6 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0
 #include <linux/acpi.h>
 #include <linux/export.h>
+#include <linux/mm.h>
 
 #include <xen/hvc-console.h>
 
@@ -72,3 +73,70 @@ void __init mem_map_via_hcall(struct boot_params *boot_params_p)
 	}
 	boot_params_p->e820_entries = memmap.nr_entries;
 }
+
+/*
+ * Reserve e820 UNUSABLE regions to inflate the memory balloon.
+ *
+ * On PVH dom0 the host memory map is used, RAM regions available to dom0 are
+ * located as the same place as in the native memory map, but since dom0 gets
+ * less memory than the total amount of host RAM the ranges that can't be
+ * populated are converted from RAM -> UNUSABLE.  Use such regions (up to the
+ * ratio signaled in EXTRA_MEM_RATIO) in order to inflate the balloon driver at
+ * boot.  Doing so prevents the guest (even if just temporary) from using holes
+ * in the memory map in order to map grants or foreign addresses, and
+ * hopefully limits the risk of a clash with a device MMIO region.  Ideally the
+ * hypervisor should notify us which memory ranges are suitable for creating
+ * foreign mappings, but that's not yet implemented.
+ */
+void __init xen_reserve_extra_memory(struct boot_params *bootp)
+{
+	unsigned int i, ram_pages = 0, extra_pages;
+
+	for (i = 0; i < bootp->e820_entries; i++) {
+		struct boot_e820_entry *e = &bootp->e820_table[i];
+
+		if (e->type != E820_TYPE_RAM)
+			continue;
+		ram_pages += PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr);
+	}
+
+	/* Max amount of extra memory. */
+	extra_pages = EXTRA_MEM_RATIO * ram_pages;
+
+	/*
+	 * Convert UNUSABLE ranges to RAM and reserve them for foreign mapping
+	 * purposes.
+	 */
+	for (i = 0; i < bootp->e820_entries && extra_pages; i++) {
+		struct boot_e820_entry *e = &bootp->e820_table[i];
+		unsigned long pages;
+
+		if (e->type != E820_TYPE_UNUSABLE)
+			continue;
+
+		pages = min(extra_pages,
+			PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr));
+
+		if (pages != (PFN_DOWN(e->addr + e->size) - PFN_UP(e->addr))) {
+			struct boot_e820_entry *next;
+
+			if (bootp->e820_entries ==
+			    ARRAY_SIZE(bootp->e820_table))
+				/* No space left to split - skip region. */
+				continue;
+
+			/* Split entry. */
+			next = e + 1;
+			memmove(next, e,
+				(bootp->e820_entries - i) * sizeof(*e));
+			bootp->e820_entries++;
+			next->addr = PAGE_ALIGN(e->addr) + PFN_PHYS(pages);
+			e->size = next->addr - e->addr;
+			next->size -= e->size;
+		}
+		e->type = E820_TYPE_RAM;
+		extra_pages -= pages;
+
+		xen_add_extra_mem(PFN_UP(e->addr), pages);
+	}
+}
diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c
index b3e37961065a..380591028cb8 100644
--- a/arch/x86/xen/setup.c
+++ b/arch/x86/xen/setup.c
@@ -38,9 +38,6 @@
 
 #define GB(x) ((uint64_t)(x) * 1024 * 1024 * 1024)
 
-/* Amount of extra memory space we add to the e820 ranges */
-struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
-
 /* Number of pages released from the initial allocation. */
 unsigned long xen_released_pages;
 
@@ -64,18 +61,6 @@ static struct {
 } xen_remap_buf __initdata __aligned(PAGE_SIZE);
 static unsigned long xen_remap_mfn __initdata = INVALID_P2M_ENTRY;
 
-/*
- * The maximum amount of extra memory compared to the base size.  The
- * main scaling factor is the size of struct page.  At extreme ratios
- * of base:extra, all the base memory can be filled with page
- * structures for the extra memory, leaving no space for anything
- * else.
- *
- * 10x seems like a reasonable balance between scaling flexibility and
- * leaving a practically usable system.
- */
-#define EXTRA_MEM_RATIO		(10)
-
 static bool xen_512gb_limit __initdata = IS_ENABLED(CONFIG_XEN_512GB);
 
 static void __init xen_parse_512gb(void)
@@ -96,35 +81,6 @@ static void __init xen_parse_512gb(void)
 	xen_512gb_limit = val;
 }
 
-static void __init xen_add_extra_mem(unsigned long start_pfn,
-				     unsigned long n_pfns)
-{
-	int i;
-
-	/*
-	 * No need to check for zero size, should happen rarely and will only
-	 * write a new entry regarded to be unused due to zero size.
-	 */
-	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
-		/* Add new region. */
-		if (xen_extra_mem[i].n_pfns == 0) {
-			xen_extra_mem[i].start_pfn = start_pfn;
-			xen_extra_mem[i].n_pfns = n_pfns;
-			break;
-		}
-		/* Append to existing region. */
-		if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns ==
-		    start_pfn) {
-			xen_extra_mem[i].n_pfns += n_pfns;
-			break;
-		}
-	}
-	if (i == XEN_EXTRA_MEM_MAX_REGIONS)
-		printk(KERN_WARNING "Warning: not enough extra memory regions\n");
-
-	memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns));
-}
-
 static void __init xen_del_extra_mem(unsigned long start_pfn,
 				     unsigned long n_pfns)
 {
diff --git a/arch/x86/xen/xen-ops.h b/arch/x86/xen/xen-ops.h
index a87ab36889e7..79cf93f2c92f 100644
--- a/arch/x86/xen/xen-ops.h
+++ b/arch/x86/xen/xen-ops.h
@@ -163,4 +163,18 @@ void xen_hvm_post_suspend(int suspend_cancelled);
 static inline void xen_hvm_post_suspend(int suspend_cancelled) {}
 #endif
 
+/*
+ * The maximum amount of extra memory compared to the base size.  The
+ * main scaling factor is the size of struct page.  At extreme ratios
+ * of base:extra, all the base memory can be filled with page
+ * structures for the extra memory, leaving no space for anything
+ * else.
+ *
+ * 10x seems like a reasonable balance between scaling flexibility and
+ * leaving a practically usable system.
+ */
+#define EXTRA_MEM_RATIO		(10)
+
+void xen_add_extra_mem(unsigned long start_pfn, unsigned long n_pfns);
+
 #endif /* XEN_OPS_H */
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 976c6cdf9ee6..aaf2514fcfa4 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -672,7 +672,6 @@ EXPORT_SYMBOL(xen_free_ballooned_pages);
 
 static void __init balloon_add_regions(void)
 {
-#if defined(CONFIG_XEN_PV)
 	unsigned long start_pfn, pages;
 	unsigned long pfn, extra_pfn_end;
 	unsigned int i;
@@ -696,7 +695,6 @@ static void __init balloon_add_regions(void)
 
 		balloon_stats.total_pages += extra_pfn_end - start_pfn;
 	}
-#endif
 }
 
 static int __init balloon_init(void)
-- 
2.43.0



^ permalink raw reply related	[relevance 11%]

* [GIT PULL] xen: branch for v6.8-rc5
@ 2024-02-15 15:24  6% Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2024-02-15 15:24 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, xen-devel, sstabellini

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-6.8a-rc5-tag

xen: branch for v6.8-rc5

It contains the following fixes and simple cleanups:

- A fix using a proper flexible array instead of a one-element array in order to
  avoid array-bounds sanitizer errors.

- A fix adding NULL pointer checks after allocating memory.

- A cleanup using memdup_array_user() instead of open-coding it.

- A fix for a rare race condition in Xen event channel allocation code.

- A small series making struct bus_type instances const.

- A fix of kerneldoc inline comments to match reality.


Thanks.

Juergen

 arch/x86/xen/smp.c                 | 12 ++++++++++++
 drivers/xen/events/events_base.c   |  8 ++++++--
 drivers/xen/gntalloc.c             |  2 +-
 drivers/xen/pcpu.c                 |  2 +-
 drivers/xen/privcmd.c              | 15 +++++----------
 drivers/xen/xen-balloon.c          |  2 +-
 drivers/xen/xenbus/xenbus_client.c | 15 +++++++++------
 include/uapi/xen/gntalloc.h        |  5 ++++-
 8 files changed, 39 insertions(+), 22 deletions(-)

Kees Cook (1):
      xen/gntalloc: Replace UAPI 1-element array

Kunwu Chan (1):
      x86/xen: Add some null pointer checking to smp.c

Markus Elfring (1):
      xen/privcmd: Use memdup_array_user() in alloc_ioreq()

Maximilian Heyne (1):
      xen/events: close evtchn after mapping cleanup

Ricardo B. Marliere (2):
      xen: pcpu: make xen_pcpu_subsys const
      xen: balloon: make balloon_subsys const

SeongJae Park (1):
      xen/xenbus: document will_handle argument for xenbus_watch_path()


^ permalink raw reply	[relevance 6%]

* [PATCH 2/2] xen: balloon: make balloon_subsys const
  2024-02-03 18:53  6% [PATCH 0/2] drivers: xen: struct bus_type cleanup Ricardo B. Marliere
@ 2024-02-03 18:53 18% ` Ricardo B. Marliere
  0 siblings, 0 replies; 200+ results
From: Ricardo B. Marliere @ 2024-02-03 18:53 UTC (permalink / raw)
  To: Juergen Gross, Stefano Stabellini, Oleksandr Tyshchenko
  Cc: xen-devel, linux-kernel, Greg Kroah-Hartman, Ricardo B. Marliere

Now that the driver core can properly handle constant struct bus_type,
move the balloon_subsys variable to be a constant structure as well,
placing it into read-only memory which can not be modified at runtime.

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Ricardo B. Marliere <ricardo@marliere.net>
---
 drivers/xen/xen-balloon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/xen/xen-balloon.c b/drivers/xen/xen-balloon.c
index 8cd583db20b1..b293d7652f15 100644
--- a/drivers/xen/xen-balloon.c
+++ b/drivers/xen/xen-balloon.c
@@ -237,7 +237,7 @@ static const struct attribute_group *balloon_groups[] = {
 	NULL
 };
 
-static struct bus_type balloon_subsys = {
+static const struct bus_type balloon_subsys = {
 	.name = BALLOON_CLASS_NAME,
 	.dev_name = BALLOON_CLASS_NAME,
 };

-- 
2.43.0



^ permalink raw reply related	[relevance 18%]

* [PATCH 0/2] drivers: xen: struct bus_type cleanup
@ 2024-02-03 18:53  6% Ricardo B. Marliere
  2024-02-03 18:53 18% ` [PATCH 2/2] xen: balloon: make balloon_subsys const Ricardo B. Marliere
  0 siblings, 1 reply; 200+ results
From: Ricardo B. Marliere @ 2024-02-03 18:53 UTC (permalink / raw)
  To: Juergen Gross, Stefano Stabellini, Oleksandr Tyshchenko
  Cc: xen-devel, linux-kernel, Greg Kroah-Hartman, Ricardo B. Marliere

This series is part of an effort to cleanup the users of the driver
core, as can be seen in many recent patches authored by Greg across the
tree (e.g. [1]). Specifically, this series is part of the task of
splitting one of his TODOs [2].

---
[1]: https://lore.kernel.org/lkml/?q=f%3Agregkh%40linuxfoundation.org+s%3A%22make%22+and+s%3A%22const%22
[2]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git/commit/?h=bus_cleanup&id=26105f537f0c60eacfeb430abd2e05d7ddcdd8aa

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Ricardo B. Marliere <ricardo@marliere.net>

---
Ricardo B. Marliere (2):
      xen: pcpu: make xen_pcpu_subsys const
      xen: balloon: make balloon_subsys const

 drivers/xen/pcpu.c        | 2 +-
 drivers/xen/xen-balloon.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
base-commit: 2d2db7d40254d5fb53b11ebd703cd1ed0c5de7a1
change-id: 20240203-bus_cleanup-xen-da95a6226a35

Best regards,
-- 
Ricardo B. Marliere <ricardo@marliere.net>



^ permalink raw reply	[relevance 6%]

* Re: ACPI VFCT table too short on PVH dom0 (was: Re: E820 memory allocation issue on Threadripper platforms)
  2024-01-21  1:33  0%                         ` Patrick Plenefisch
@ 2024-01-24  1:27  0%                           ` Patrick Plenefisch
  0 siblings, 0 replies; 200+ results
From: Patrick Plenefisch @ 2024-01-24  1:27 UTC (permalink / raw)
  To: Roger Pau Monné
  Cc: Jan Beulich, xen-devel, Juergen Gross, Huang Rui, Jiqian Chen

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

On Sat, Jan 20, 2024 at 8:33 PM Patrick Plenefisch <simonpatp@gmail.com>
wrote:

>
>
> On Fri, Jan 19, 2024 at 6:06 AM Roger Pau Monné <roger.pau@citrix.com>
> wrote:
>
>> On Fri, Jan 19, 2024 at 02:44:35AM -0500, Patrick Plenefisch wrote:
>> > On Thu, Jan 18, 2024 at 7:41 AM Roger Pau Monné <roger.pau@citrix.com>
>> > wrote:
>> >
>> > >
>> > > From that environment (PVH dom0) can you see if you can dump the
>> > > contents of the VFCT table?  I don't have a system with that table, so
>> > > not sure if this will work (because iasl is unlikely to know how to
>> > > decode it):
>> > >
>> > > # acpidump -n VFCT -o table.dump
>> > > # acpixtract -a table.dump
>> > > # iasl -d vfct.dat
>> > > # cat vfct.dsl
>> > >
>> > > Would be good if you can compare the output from what you get on a PV
>> > > dom0 or when running native Linux.
>> > >
>> > > I'm also adding some AMD folks, as IIRC they did some fixes to Linux
>> > > in order to get some AMD graphics cards running on a PVH dom0, maybe
>> > > they can provide some additional input.
>> > >
>> > >
>> > Well, this is pretty weird. I'll go into more details because it may be
>> > relevant.
>>
>> Wow, you have certainly gone out of the beaten path here.
>>
>
> Yeah, I wasn't expecting this many issues for being an early adopter of
> Threaderipper 7000!
>
>
>>
>> > I had been working with ASRock support ever since I got my brand
>> > new motherboard because I couldn't see the BIOS/UEFI screens. I could
>> boot
>> > up, and once native linux took control amdgpu got the screens/gpu
>> working
>> > fine. I finally managed to be able to see the UEFI/BIOS setup screens by
>> > patching my VBIOS: I extracted the VBIOS image of a cheap R5 430 OEM,
>> ran
>> > GOPupd to update the VBIOS UEFI component (GOP) from version 1.60 to
>> 1.67.
>> > That allowed the UEFI to actually initialize and use a screen. However,
>> I
>> > later realized that only 1 monitor was lighting up in the bios: my
>> monitor
>> > plugged into the Radeon RX 480 that was still on VBIOS GOP 1.60. It
>> appears
>> > the GOP was initializing the RX 480 too, despite not being flashed with
>> the
>> > latest itself. I am working on an email to asrock support about that.
>> Once
>> > I get into linux (native or PV), both monitors light up as expected.
>> Also,
>> > If I boot linux PVH from grub, they also work.
>>
>> OK, that's good, so that would be UEFI -> grub -> Xen -> Linux PVH?
>>
>
> Correct. Inserting grub into the chain "fixes" the acpi tables and things
> work correctly.
>

Ok, I am not sure what I did the other day to get it to work, but I can't
replicate *any* PVH success today. One driver (radeon or amdgpu) always
complains the VFCT table is wrong, and leads to the symptoms previously
reported.

I'm definitely able to help provide access to this machine in order to
debug this


>
>
>>
>> > Those usage scenarios have
>> > acpidump output as identical. Booting linux PVH directly from UEFI (no
>> > grub), the monitors go to sleep on the RX 480, and amdgpu errors out
>> about
>> > VFCT, but the R5 430 OEM does still have output. Interestingly, there
>> is a
>> > different screen mode booting UEFI+PVH, the characters are basically
>> > squares, with more vertical lines than "default", maybe close to native
>> > screen resolution, but horizontally it's still "default". Booting from
>> grub
>> > gives everything in the "default" resolution.
>>
>> Hm, maybe we are not passing the correct video information to Linux
>> dom0 when booted from UEFI.  I'm afraid I don't have such setup
>> myself, so it's going to be hard to test.
>>
>> To clarify, the output from Xen is fine, is the video output from
>> Linux dom0 in PVH mode that's corrupt?
>>
>
> Xen output in EFI+PV/GRUB+PV/GRUB+PVH: Rectangular letters (expected/good)
> Linux output in EFI+PV/GRUB+PV/GRUB+PVH: Rectangular letters -> kms fb ->
> X11 (using this mode as I type this email right now)
> Xen output in EFI+PVH: Squashed square letters (unexpected)
> Linux output in EFI+PVH: No output on RX 480, but R5 430 shows a (static?)
> login console on hvc0 that I can't interact with.
>
>
>>
>> >
>> > So what is in the VFCT Table? VFCT contains the non-GOP VIOS image of my
>> > Radeon RX 480 GPU. You can compare it to the VBIOS hosted at
>> > https://www.techpowerup.com/vgabios/185789/msi-rx480-4096-160720
>> (Compare
>> > the end at E667 in the VFCT table to E5ff in that vbios link). I find
>> this
>> > extra suspicious due to the above.
>> >
>> > Now for the extra horrible things:
>> >
>> > UEFI-booted PVH Linux doesn't support keyboard getty input, and at least
>> > some of the USB devices are not in lsusb. It also decided to vanish one
>> of
>> > my HDD's. The `reboot` command hangs. The Power button doesn't do
>> anything.
>>
>> Yes, it does seem Lunux has issues reserving some BARs:
>>
>> [    6.520615] ahci 0000:07:00.1: version 3.0
>> [    6.520701] ahci 0000:07:00.1: BAR 5: can't reserve [mem
>> 0xf0e00000-0xf0e007ff]
>> ...
>> [   17.130099] ccp 0000:06:00.5: enabling device (0000 -> 0002)
>> [   17.137025] ccp 0000:06:00.5: BAR 2: can't reserve [mem
>> 0xf0b00000-0xf0bfffff]
>> [   17.145210] ccp 0000:06:00.5: pcim_iomap_regions failed (-16)
>> [   17.151868] ccp 0000:06:00.5: initialization failed
>> [   17.157615] ccp: probe of 0000:06:00.5 failed with error -16
>> ...
>> [   17.993532] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
>> [   18.001207] snd_hda_intel 0000:01:00.1: Force to non-snoop mode
>> [   18.007997] snd_hda_intel 0000:01:00.1: BAR 0: can't reserve [mem
>> 0xf0f60000-0xf0f63fff 64bit]
>> [   18.018053] snd_hda_intel 0000:06:00.7: enabling device (0000 -> 0002)
>> [   18.025723] snd_hda_intel 0000:06:00.7: BAR 0: can't reserve [mem
>> 0xf0d00000-0xf0d07fff]
>> [   18.033679] snd_hda_intel 0000:41:00.1: enabling device (0000 -> 0002)
>> [   18.043165] snd_hda_intel 0000:41:00.1: Force to non-snoop mode
>>
>> I bet this because Xen balloon driver has started picking up those
>> regions in order to map foreign pages.
>>
>> > There are several stack traces in dmesg. But Alt-SysRq-B does reboot!
>> > Luckily I could ssh in and capture the ACPI tables. They are much
>> smaller,
>> > and VFCT is empty.  Booting back to one of the working scenarios (direct
>> > linux, Grub PV, Grub PVH, UEFI PV), all of this is normal.
>> >
>> > I've attached:
>> >
>> > xenboot.log which is the serial log of xen+linux booting in UEFI PVH
>> > (kernel is debian's config, but patched to start at 2MiB)
>> > dmesg.txt which is the linux dmesg that contains some nice stack traces
>> > (kernel is debian's config, but patched to start at 2MiB)
>> > efipvh-tables.dump is ALL acpi tables from UEFI+PVH mode (acpidump -o
>> > efipvh-tables.dump)
>> > working-tables.dump is ALL acpi tables from the other modes (acpidump -o
>> > working-tables.dump)
>> > efipvh-vfct.dump is attached in spirit, as it is 0 bytes long (acpidump
>> -n
>> > VFCT -o efipvh-vfct.dump)
>> >
>> > I ran iasl, but it just said **** Unknown ACPI table signature [VFCT]
>> and
>> > spat out the raw data table, nothing interesting
>> >
>> > Something I can try, but have been nervous to try due to GOPupd
>> warnings is
>> > to also flash the 1.67 GOP to the VBIOS on the RX 480. The R5 430 OEM
>> had
>> > no such warnings.
>> >
>> > Patrick
>>
>> > [    0.000000] Linux version 6.1.69 (root@pollux) (gcc (Debian
>> 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #10 SMP
>> PREEMPT_DYNAMIC Wed Jan 17 23:44:31 EST 2024
>> > [    0.000000] Command line:
>> root=UUID=922b10f2-a826-47fb-ab38-836f9b397ff7 ro rootflags=subvol=@rootfs
>> earlyprintk=xen console=hvc0
>> > [    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-0x0000000003ffffff]
>> usable
>> > [    0.000000] BIOS-e820: [mem 0x0000000004000000-0x0000000004045fff]
>> ACPI NVS
>> > [    0.000000] BIOS-e820: [mem 0x0000000004046000-0x0000000009afefff]
>> usable
>> > [    0.000000] BIOS-e820: [mem 0x0000000009aff000-0x0000000009ffffff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000affffff]
>> usable
>> > [    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b020fff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x000000000b021000-0x00000000a04e8fff]
>> usable
>> > [    0.000000] BIOS-e820: [mem 0x00000000a04e9000-0x00000000a64e8fff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000a64e9000-0x00000000a747efff]
>> ACPI data
>> > [    0.000000] BIOS-e820: [mem 0x00000000a747f000-0x00000000a947efff]
>> ACPI NVS
>> > [    0.000000] BIOS-e820: [mem 0x00000000a947f000-0x00000000addfefff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000addff000-0x00000000afffab9b]
>> usable
>> > [    0.000000] BIOS-e820: [mem 0x00000000afffab9c-0x00000000afffaf17]
>> ACPI data
>> > [    0.000000] BIOS-e820: [mem 0x00000000afffb000-0x00000000bfffffff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000df200000-0x00000000df2fffff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000feafffff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff]
>> reserved
>> > [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000025dee2fff]
>> usable
>> > [    0.000000] BIOS-e820: [mem 0x000000025dee3000-0x000000403dbbffff]
>> unusable
>> > [    0.000000] BIOS-e820: [mem 0x000000403dbc0000-0x000000403fffffff]
>> reserved
>> > [    0.000000] printk: bootconsole [xenboot0] enabled
>> > [    0.000000] NX (Execute Disable) protection: active
>> > [    0.000000] efi: EFI v2.90 by American Megatrends
>> > [    0.000000] efi: ACPI=0xa9463000 ACPI 2.0=0xa9463014
>> SMBIOS=0xad9f4000 SMBIOS 3.0=0xad9f3000 MEMATTR=0x99e26698 ESRT=0xa7466018
>> > [    0.000000] secureboot: Secure boot disabled
>> > [    0.000000] SMBIOS 3.6.0 present.
>> > [    0.000000] DMI: To Be Filled By O.E.M. TRX50 WS/TRX50 WS, BIOS 7.08
>> 01/16/2024
>> > [    0.000000] Hypervisor detected: Xen HVM
>> > [    0.000000] Xen version 4.17.
>> > [    0.000003] HVMOP_pagetable_dying not supported
>> > [    0.043916] tsc: Fast TSC calibration failed
>> > [    0.048843] tsc: Detected 4199.960 MHz processor
>> > [    0.054365] e820: update [mem 0x00000000-0x00000fff] usable ==>
>> reserved
>> > [    0.054368] e820: remove [mem 0x000a0000-0x000fffff] usable
>> > [    0.054375] last_pfn = 0x25dee3 max_arch_pfn = 0x400000000
>> > [    0.062033] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP
>> UC- WT
>> > [    0.070417] CPU MTRRs all blank - virtualized system.
>> > [    0.076209] last_pfn = 0xafffa max_arch_pfn = 0x400000000
>> > [    0.085594] Using GB pages for direct mapping
>> > [    0.091184] RAMDISK: [mem 0x04046000-0x068cdfff]
>> > [    0.096533] ACPI: Early table checksum verification disabled
>> > [    0.103248] ACPI: RSDP 0x00000000AFFFAB9C 000024 (v02 AMD   )
>> > [    0.109716] ACPI: XSDT 0x00000000AFFFABC0 0000C4 (v01 AMD    A M I
>>   00000001 AMI  01000013)
>> > [    0.119663] ACPI: APIC 0x00000000AFFFAC84 00037C (v04 AMD    A M I
>>   00000001 AMI  00010013)
>> > [    0.129538] ACPI: FACP 0x00000000A747C000 000114 (v06 AMD    A M I
>>   00000001 AMI  00010013)
>> > [    0.139250] ACPI: DSDT 0x00000000A746E000 00D2F6 (v02 AMD    A M I
>>   00000001 INTL 20230331)
>> > [    0.148717] ACPI: FACS 0x00000000A945A000 000040
>> > [    0.153805] ACPI: SSDT 0x00000000A747E000 0009CC (v02 AMD
>> BOULDERG 00000002 MSFT 04000000)
>> > [    0.163309] ACPI: SSDT 0x00000000A747D000 000067 (v02 AMD    CPMDSM
>>  00000001 INTL 20230331)
>> > [    0.172813] ACPI: MCFG 0x00000000A746C000 00003C (v01 AMD    A M I
>>   00000001 MSFT 00010013)
>> > [    0.182351] ACPI: SSDT 0x00000000A746B000 0005C5 (v02 AMD
>> CPUSSDT  00000001 AMI  00000001)
>> > [    0.191806] ACPI: SSDT 0x00000000A7468000 001B53 (v02 AMD    CPMRAS
>>  00000001 INTL 20230331)
>> > [    0.201308] ACPI: FPDT 0x00000000A7465000 000044 (v01 AMD    A M I
>>   01072009 AMI  01000013)
>> > [    0.210819] ACPI: SSDT 0x00000000A7462000 002448 (v02 AMD
>> GPP_PME_ 00000001 INTL 20230331)
>> > [    0.220343] ACPI: SSDT 0x00000000A745F000 002448 (v02 AMD
>> GPP_PME_ 00000001 INTL 20230331)
>> > [    0.229884] ACPI: SSDT 0x00000000A745C000 002448 (v02 AMD
>> GPP_PME_ 00000001 INTL 20230331)
>> > [    0.239351] ACPI: SSDT 0x00000000A7459000 002448 (v02 AMD
>> GPP_PME_ 00000001 INTL 20230331)
>> > [    0.248780] ACPI: SSDT 0x00000000A743E000 00A40E (v02 AMD    AMD
>> CPU  00000001 AMD  00000001)
>> > [    0.258288] ACPI: SSDT 0x00000000A684C000 0006D4 (v02 AMD
>> CPMWLRC  00000001 INTL 20230331)
>> > [    0.267815] ACPI: SSDT 0x00000000A6842000 00982F (v02 AMD    CPMCMN
>>  00000001 INTL 20230331)
>> > [    0.277339] ACPI: SSDT 0x00000000A683C000 002387 (v02 AMD    AOD
>>   00000001 INTL 20230331)
>> > [    0.286840] ACPI: SSDT 0x00000000A683B000 000500 (v02 AMD
>> MEMTOOL0 00000002 INTL 20230331)
>> > [    0.296283] ACPI: SSDT 0x00000000A683A000 00096A (v02 AMD
>> CPMMSOSC 00000001 INTL 20230331)
>> > [    0.305841] ACPI: SSDT 0x00000000A6839000 000B72 (v02 AMD
>> CPMACPV6 00000001 INTL 20230331)
>> > [    0.315288] ACPI: SSDT 0x00000000A6838000 00044E (v02 AMD
>> AmdTable 00000001 INTL 20230331)
>> > [    0.324802] ACPI: Reserving APIC table memory at [mem
>> 0xafffac84-0xafffafff]
>> > [    0.332592] ACPI: Reserving FACP table memory at [mem
>> 0xa747c000-0xa747c113]
>> > [    0.340419] ACPI: Reserving DSDT table memory at [mem
>> 0xa746e000-0xa747b2f5]
>> > [    0.348189] ACPI: Reserving FACS table memory at [mem
>> 0xa945a000-0xa945a03f]
>> > [    0.356058] ACPI: Reserving SSDT table memory at [mem
>> 0xa747e000-0xa747e9cb]
>> > [    0.363906] ACPI: Reserving SSDT table memory at [mem
>> 0xa747d000-0xa747d066]
>> > [    0.371757] ACPI: Reserving MCFG table memory at [mem
>> 0xa746c000-0xa746c03b]
>> > [    0.379576] ACPI: Reserving SSDT table memory at [mem
>> 0xa746b000-0xa746b5c4]
>> > [    0.387437] ACPI: Reserving SSDT table memory at [mem
>> 0xa7468000-0xa7469b52]
>> > [    0.395337] ACPI: Reserving FPDT table memory at [mem
>> 0xa7465000-0xa7465043]
>> > [    0.403153] ACPI: Reserving SSDT table memory at [mem
>> 0xa7462000-0xa7464447]
>> > [    0.410989] ACPI: Reserving SSDT table memory at [mem
>> 0xa745f000-0xa7461447]
>> > [    0.418802] ACPI: Reserving SSDT table memory at [mem
>> 0xa745c000-0xa745e447]
>> > [    0.426642] ACPI: Reserving SSDT table memory at [mem
>> 0xa7459000-0xa745b447]
>> > [    0.434529] ACPI: Reserving SSDT table memory at [mem
>> 0xa743e000-0xa744840d]
>> > [    0.442393] ACPI: Reserving SSDT table memory at [mem
>> 0xa684c000-0xa684c6d3]
>> > [    0.450203] ACPI: Reserving SSDT table memory at [mem
>> 0xa6842000-0xa684b82e]
>> > [    0.458038] ACPI: Reserving SSDT table memory at [mem
>> 0xa683c000-0xa683e386]
>> > [    0.465853] ACPI: Reserving SSDT table memory at [mem
>> 0xa683b000-0xa683b4ff]
>> > [    0.473805] ACPI: Reserving SSDT table memory at [mem
>> 0xa683a000-0xa683a969]
>> > [    0.481626] ACPI: Reserving SSDT table memory at [mem
>> 0xa6839000-0xa6839b71]
>> > [    0.489475] ACPI: Reserving SSDT table memory at [mem
>> 0xa6838000-0xa683844d]
>>
>> Weird, there's no VFCT listed here.
>>
>> Thanks, Roger.
>>
>

[-- Attachment #2: Type: text/html, Size: 18921 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: ACPI VFCT table too short on PVH dom0 (was: Re: E820 memory allocation issue on Threadripper platforms)
  2024-01-19 11:06  5%                       ` Roger Pau Monné
@ 2024-01-21  1:33  0%                         ` Patrick Plenefisch
  2024-01-24  1:27  0%                           ` Patrick Plenefisch
  0 siblings, 1 reply; 200+ results
From: Patrick Plenefisch @ 2024-01-21  1:33 UTC (permalink / raw)
  To: Roger Pau Monné
  Cc: Jan Beulich, xen-devel, Juergen Gross, Huang Rui, Jiqian Chen

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

On Fri, Jan 19, 2024 at 6:06 AM Roger Pau Monné <roger.pau@citrix.com>
wrote:

> On Fri, Jan 19, 2024 at 02:44:35AM -0500, Patrick Plenefisch wrote:
> > On Thu, Jan 18, 2024 at 7:41 AM Roger Pau Monné <roger.pau@citrix.com>
> > wrote:
> >
> > >
> > > From that environment (PVH dom0) can you see if you can dump the
> > > contents of the VFCT table?  I don't have a system with that table, so
> > > not sure if this will work (because iasl is unlikely to know how to
> > > decode it):
> > >
> > > # acpidump -n VFCT -o table.dump
> > > # acpixtract -a table.dump
> > > # iasl -d vfct.dat
> > > # cat vfct.dsl
> > >
> > > Would be good if you can compare the output from what you get on a PV
> > > dom0 or when running native Linux.
> > >
> > > I'm also adding some AMD folks, as IIRC they did some fixes to Linux
> > > in order to get some AMD graphics cards running on a PVH dom0, maybe
> > > they can provide some additional input.
> > >
> > >
> > Well, this is pretty weird. I'll go into more details because it may be
> > relevant.
>
> Wow, you have certainly gone out of the beaten path here.
>

Yeah, I wasn't expecting this many issues for being an early adopter of
Threaderipper 7000!


>
> > I had been working with ASRock support ever since I got my brand
> > new motherboard because I couldn't see the BIOS/UEFI screens. I could
> boot
> > up, and once native linux took control amdgpu got the screens/gpu working
> > fine. I finally managed to be able to see the UEFI/BIOS setup screens by
> > patching my VBIOS: I extracted the VBIOS image of a cheap R5 430 OEM, ran
> > GOPupd to update the VBIOS UEFI component (GOP) from version 1.60 to
> 1.67.
> > That allowed the UEFI to actually initialize and use a screen. However, I
> > later realized that only 1 monitor was lighting up in the bios: my
> monitor
> > plugged into the Radeon RX 480 that was still on VBIOS GOP 1.60. It
> appears
> > the GOP was initializing the RX 480 too, despite not being flashed with
> the
> > latest itself. I am working on an email to asrock support about that.
> Once
> > I get into linux (native or PV), both monitors light up as expected.
> Also,
> > If I boot linux PVH from grub, they also work.
>
> OK, that's good, so that would be UEFI -> grub -> Xen -> Linux PVH?
>

Correct. Inserting grub into the chain "fixes" the acpi tables and things
work correctly.


>
> > Those usage scenarios have
> > acpidump output as identical. Booting linux PVH directly from UEFI (no
> > grub), the monitors go to sleep on the RX 480, and amdgpu errors out
> about
> > VFCT, but the R5 430 OEM does still have output. Interestingly, there is
> a
> > different screen mode booting UEFI+PVH, the characters are basically
> > squares, with more vertical lines than "default", maybe close to native
> > screen resolution, but horizontally it's still "default". Booting from
> grub
> > gives everything in the "default" resolution.
>
> Hm, maybe we are not passing the correct video information to Linux
> dom0 when booted from UEFI.  I'm afraid I don't have such setup
> myself, so it's going to be hard to test.
>
> To clarify, the output from Xen is fine, is the video output from
> Linux dom0 in PVH mode that's corrupt?
>

Xen output in EFI+PV/GRUB+PV/GRUB+PVH: Rectangular letters (expected/good)
Linux output in EFI+PV/GRUB+PV/GRUB+PVH: Rectangular letters -> kms fb ->
X11 (using this mode as I type this email right now)
Xen output in EFI+PVH: Squashed square letters (unexpected)
Linux output in EFI+PVH: No output on RX 480, but R5 430 shows a (static?)
login console on hvc0 that I can't interact with.


>
> >
> > So what is in the VFCT Table? VFCT contains the non-GOP VIOS image of my
> > Radeon RX 480 GPU. You can compare it to the VBIOS hosted at
> > https://www.techpowerup.com/vgabios/185789/msi-rx480-4096-160720
> (Compare
> > the end at E667 in the VFCT table to E5ff in that vbios link). I find
> this
> > extra suspicious due to the above.
> >
> > Now for the extra horrible things:
> >
> > UEFI-booted PVH Linux doesn't support keyboard getty input, and at least
> > some of the USB devices are not in lsusb. It also decided to vanish one
> of
> > my HDD's. The `reboot` command hangs. The Power button doesn't do
> anything.
>
> Yes, it does seem Lunux has issues reserving some BARs:
>
> [    6.520615] ahci 0000:07:00.1: version 3.0
> [    6.520701] ahci 0000:07:00.1: BAR 5: can't reserve [mem
> 0xf0e00000-0xf0e007ff]
> ...
> [   17.130099] ccp 0000:06:00.5: enabling device (0000 -> 0002)
> [   17.137025] ccp 0000:06:00.5: BAR 2: can't reserve [mem
> 0xf0b00000-0xf0bfffff]
> [   17.145210] ccp 0000:06:00.5: pcim_iomap_regions failed (-16)
> [   17.151868] ccp 0000:06:00.5: initialization failed
> [   17.157615] ccp: probe of 0000:06:00.5 failed with error -16
> ...
> [   17.993532] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
> [   18.001207] snd_hda_intel 0000:01:00.1: Force to non-snoop mode
> [   18.007997] snd_hda_intel 0000:01:00.1: BAR 0: can't reserve [mem
> 0xf0f60000-0xf0f63fff 64bit]
> [   18.018053] snd_hda_intel 0000:06:00.7: enabling device (0000 -> 0002)
> [   18.025723] snd_hda_intel 0000:06:00.7: BAR 0: can't reserve [mem
> 0xf0d00000-0xf0d07fff]
> [   18.033679] snd_hda_intel 0000:41:00.1: enabling device (0000 -> 0002)
> [   18.043165] snd_hda_intel 0000:41:00.1: Force to non-snoop mode
>
> I bet this because Xen balloon driver has started picking up those
> regions in order to map foreign pages.
>
> > There are several stack traces in dmesg. But Alt-SysRq-B does reboot!
> > Luckily I could ssh in and capture the ACPI tables. They are much
> smaller,
> > and VFCT is empty.  Booting back to one of the working scenarios (direct
> > linux, Grub PV, Grub PVH, UEFI PV), all of this is normal.
> >
> > I've attached:
> >
> > xenboot.log which is the serial log of xen+linux booting in UEFI PVH
> > (kernel is debian's config, but patched to start at 2MiB)
> > dmesg.txt which is the linux dmesg that contains some nice stack traces
> > (kernel is debian's config, but patched to start at 2MiB)
> > efipvh-tables.dump is ALL acpi tables from UEFI+PVH mode (acpidump -o
> > efipvh-tables.dump)
> > working-tables.dump is ALL acpi tables from the other modes (acpidump -o
> > working-tables.dump)
> > efipvh-vfct.dump is attached in spirit, as it is 0 bytes long (acpidump
> -n
> > VFCT -o efipvh-vfct.dump)
> >
> > I ran iasl, but it just said **** Unknown ACPI table signature [VFCT] and
> > spat out the raw data table, nothing interesting
> >
> > Something I can try, but have been nervous to try due to GOPupd warnings
> is
> > to also flash the 1.67 GOP to the VBIOS on the RX 480. The R5 430 OEM had
> > no such warnings.
> >
> > Patrick
>
> > [    0.000000] Linux version 6.1.69 (root@pollux) (gcc (Debian
> 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #10 SMP
> PREEMPT_DYNAMIC Wed Jan 17 23:44:31 EST 2024
> > [    0.000000] Command line:
> root=UUID=922b10f2-a826-47fb-ab38-836f9b397ff7 ro rootflags=subvol=@rootfs
> earlyprintk=xen console=hvc0
> > [    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-0x0000000003ffffff]
> usable
> > [    0.000000] BIOS-e820: [mem 0x0000000004000000-0x0000000004045fff]
> ACPI NVS
> > [    0.000000] BIOS-e820: [mem 0x0000000004046000-0x0000000009afefff]
> usable
> > [    0.000000] BIOS-e820: [mem 0x0000000009aff000-0x0000000009ffffff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000affffff]
> usable
> > [    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b020fff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x000000000b021000-0x00000000a04e8fff]
> usable
> > [    0.000000] BIOS-e820: [mem 0x00000000a04e9000-0x00000000a64e8fff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000a64e9000-0x00000000a747efff]
> ACPI data
> > [    0.000000] BIOS-e820: [mem 0x00000000a747f000-0x00000000a947efff]
> ACPI NVS
> > [    0.000000] BIOS-e820: [mem 0x00000000a947f000-0x00000000addfefff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000addff000-0x00000000afffab9b]
> usable
> > [    0.000000] BIOS-e820: [mem 0x00000000afffab9c-0x00000000afffaf17]
> ACPI data
> > [    0.000000] BIOS-e820: [mem 0x00000000afffb000-0x00000000bfffffff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000df200000-0x00000000df2fffff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000feafffff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff]
> reserved
> > [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000025dee2fff]
> usable
> > [    0.000000] BIOS-e820: [mem 0x000000025dee3000-0x000000403dbbffff]
> unusable
> > [    0.000000] BIOS-e820: [mem 0x000000403dbc0000-0x000000403fffffff]
> reserved
> > [    0.000000] printk: bootconsole [xenboot0] enabled
> > [    0.000000] NX (Execute Disable) protection: active
> > [    0.000000] efi: EFI v2.90 by American Megatrends
> > [    0.000000] efi: ACPI=0xa9463000 ACPI 2.0=0xa9463014
> SMBIOS=0xad9f4000 SMBIOS 3.0=0xad9f3000 MEMATTR=0x99e26698 ESRT=0xa7466018
> > [    0.000000] secureboot: Secure boot disabled
> > [    0.000000] SMBIOS 3.6.0 present.
> > [    0.000000] DMI: To Be Filled By O.E.M. TRX50 WS/TRX50 WS, BIOS 7.08
> 01/16/2024
> > [    0.000000] Hypervisor detected: Xen HVM
> > [    0.000000] Xen version 4.17.
> > [    0.000003] HVMOP_pagetable_dying not supported
> > [    0.043916] tsc: Fast TSC calibration failed
> > [    0.048843] tsc: Detected 4199.960 MHz processor
> > [    0.054365] e820: update [mem 0x00000000-0x00000fff] usable ==>
> reserved
> > [    0.054368] e820: remove [mem 0x000a0000-0x000fffff] usable
> > [    0.054375] last_pfn = 0x25dee3 max_arch_pfn = 0x400000000
> > [    0.062033] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC-
> WT
> > [    0.070417] CPU MTRRs all blank - virtualized system.
> > [    0.076209] last_pfn = 0xafffa max_arch_pfn = 0x400000000
> > [    0.085594] Using GB pages for direct mapping
> > [    0.091184] RAMDISK: [mem 0x04046000-0x068cdfff]
> > [    0.096533] ACPI: Early table checksum verification disabled
> > [    0.103248] ACPI: RSDP 0x00000000AFFFAB9C 000024 (v02 AMD   )
> > [    0.109716] ACPI: XSDT 0x00000000AFFFABC0 0000C4 (v01 AMD    A M I
> 00000001 AMI  01000013)
> > [    0.119663] ACPI: APIC 0x00000000AFFFAC84 00037C (v04 AMD    A M I
> 00000001 AMI  00010013)
> > [    0.129538] ACPI: FACP 0x00000000A747C000 000114 (v06 AMD    A M I
> 00000001 AMI  00010013)
> > [    0.139250] ACPI: DSDT 0x00000000A746E000 00D2F6 (v02 AMD    A M I
> 00000001 INTL 20230331)
> > [    0.148717] ACPI: FACS 0x00000000A945A000 000040
> > [    0.153805] ACPI: SSDT 0x00000000A747E000 0009CC (v02 AMD    BOULDERG
> 00000002 MSFT 04000000)
> > [    0.163309] ACPI: SSDT 0x00000000A747D000 000067 (v02 AMD    CPMDSM
>  00000001 INTL 20230331)
> > [    0.172813] ACPI: MCFG 0x00000000A746C000 00003C (v01 AMD    A M I
> 00000001 MSFT 00010013)
> > [    0.182351] ACPI: SSDT 0x00000000A746B000 0005C5 (v02 AMD    CPUSSDT
> 00000001 AMI  00000001)
> > [    0.191806] ACPI: SSDT 0x00000000A7468000 001B53 (v02 AMD    CPMRAS
>  00000001 INTL 20230331)
> > [    0.201308] ACPI: FPDT 0x00000000A7465000 000044 (v01 AMD    A M I
> 01072009 AMI  01000013)
> > [    0.210819] ACPI: SSDT 0x00000000A7462000 002448 (v02 AMD    GPP_PME_
> 00000001 INTL 20230331)
> > [    0.220343] ACPI: SSDT 0x00000000A745F000 002448 (v02 AMD    GPP_PME_
> 00000001 INTL 20230331)
> > [    0.229884] ACPI: SSDT 0x00000000A745C000 002448 (v02 AMD    GPP_PME_
> 00000001 INTL 20230331)
> > [    0.239351] ACPI: SSDT 0x00000000A7459000 002448 (v02 AMD    GPP_PME_
> 00000001 INTL 20230331)
> > [    0.248780] ACPI: SSDT 0x00000000A743E000 00A40E (v02 AMD    AMD CPU
> 00000001 AMD  00000001)
> > [    0.258288] ACPI: SSDT 0x00000000A684C000 0006D4 (v02 AMD    CPMWLRC
> 00000001 INTL 20230331)
> > [    0.267815] ACPI: SSDT 0x00000000A6842000 00982F (v02 AMD    CPMCMN
>  00000001 INTL 20230331)
> > [    0.277339] ACPI: SSDT 0x00000000A683C000 002387 (v02 AMD    AOD
> 00000001 INTL 20230331)
> > [    0.286840] ACPI: SSDT 0x00000000A683B000 000500 (v02 AMD    MEMTOOL0
> 00000002 INTL 20230331)
> > [    0.296283] ACPI: SSDT 0x00000000A683A000 00096A (v02 AMD    CPMMSOSC
> 00000001 INTL 20230331)
> > [    0.305841] ACPI: SSDT 0x00000000A6839000 000B72 (v02 AMD    CPMACPV6
> 00000001 INTL 20230331)
> > [    0.315288] ACPI: SSDT 0x00000000A6838000 00044E (v02 AMD    AmdTable
> 00000001 INTL 20230331)
> > [    0.324802] ACPI: Reserving APIC table memory at [mem
> 0xafffac84-0xafffafff]
> > [    0.332592] ACPI: Reserving FACP table memory at [mem
> 0xa747c000-0xa747c113]
> > [    0.340419] ACPI: Reserving DSDT table memory at [mem
> 0xa746e000-0xa747b2f5]
> > [    0.348189] ACPI: Reserving FACS table memory at [mem
> 0xa945a000-0xa945a03f]
> > [    0.356058] ACPI: Reserving SSDT table memory at [mem
> 0xa747e000-0xa747e9cb]
> > [    0.363906] ACPI: Reserving SSDT table memory at [mem
> 0xa747d000-0xa747d066]
> > [    0.371757] ACPI: Reserving MCFG table memory at [mem
> 0xa746c000-0xa746c03b]
> > [    0.379576] ACPI: Reserving SSDT table memory at [mem
> 0xa746b000-0xa746b5c4]
> > [    0.387437] ACPI: Reserving SSDT table memory at [mem
> 0xa7468000-0xa7469b52]
> > [    0.395337] ACPI: Reserving FPDT table memory at [mem
> 0xa7465000-0xa7465043]
> > [    0.403153] ACPI: Reserving SSDT table memory at [mem
> 0xa7462000-0xa7464447]
> > [    0.410989] ACPI: Reserving SSDT table memory at [mem
> 0xa745f000-0xa7461447]
> > [    0.418802] ACPI: Reserving SSDT table memory at [mem
> 0xa745c000-0xa745e447]
> > [    0.426642] ACPI: Reserving SSDT table memory at [mem
> 0xa7459000-0xa745b447]
> > [    0.434529] ACPI: Reserving SSDT table memory at [mem
> 0xa743e000-0xa744840d]
> > [    0.442393] ACPI: Reserving SSDT table memory at [mem
> 0xa684c000-0xa684c6d3]
> > [    0.450203] ACPI: Reserving SSDT table memory at [mem
> 0xa6842000-0xa684b82e]
> > [    0.458038] ACPI: Reserving SSDT table memory at [mem
> 0xa683c000-0xa683e386]
> > [    0.465853] ACPI: Reserving SSDT table memory at [mem
> 0xa683b000-0xa683b4ff]
> > [    0.473805] ACPI: Reserving SSDT table memory at [mem
> 0xa683a000-0xa683a969]
> > [    0.481626] ACPI: Reserving SSDT table memory at [mem
> 0xa6839000-0xa6839b71]
> > [    0.489475] ACPI: Reserving SSDT table memory at [mem
> 0xa6838000-0xa683844d]
>
> Weird, there's no VFCT listed here.
>
> Thanks, Roger.
>

[-- Attachment #2: Type: text/html, Size: 17930 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: ACPI VFCT table too short on PVH dom0 (was: Re: E820 memory allocation issue on Threadripper platforms)
  @ 2024-01-19  7:44  1%                     ` Patrick Plenefisch
  2024-01-19 11:06  5%                       ` Roger Pau Monné
  0 siblings, 1 reply; 200+ results
From: Patrick Plenefisch @ 2024-01-19  7:44 UTC (permalink / raw)
  To: Roger Pau Monné
  Cc: Jan Beulich, xen-devel, Juergen Gross, Huang Rui, Jiqian Chen


[-- Attachment #1.1: Type: text/plain, Size: 4039 bytes --]

On Thu, Jan 18, 2024 at 7:41 AM Roger Pau Monné <roger.pau@citrix.com>
wrote:

>
> From that environment (PVH dom0) can you see if you can dump the
> contents of the VFCT table?  I don't have a system with that table, so
> not sure if this will work (because iasl is unlikely to know how to
> decode it):
>
> # acpidump -n VFCT -o table.dump
> # acpixtract -a table.dump
> # iasl -d vfct.dat
> # cat vfct.dsl
>
> Would be good if you can compare the output from what you get on a PV
> dom0 or when running native Linux.
>
> I'm also adding some AMD folks, as IIRC they did some fixes to Linux
> in order to get some AMD graphics cards running on a PVH dom0, maybe
> they can provide some additional input.
>
>
Well, this is pretty weird. I'll go into more details because it may be
relevant. I had been working with ASRock support ever since I got my brand
new motherboard because I couldn't see the BIOS/UEFI screens. I could boot
up, and once native linux took control amdgpu got the screens/gpu working
fine. I finally managed to be able to see the UEFI/BIOS setup screens by
patching my VBIOS: I extracted the VBIOS image of a cheap R5 430 OEM, ran
GOPupd to update the VBIOS UEFI component (GOP) from version 1.60 to 1.67.
That allowed the UEFI to actually initialize and use a screen. However, I
later realized that only 1 monitor was lighting up in the bios: my monitor
plugged into the Radeon RX 480 that was still on VBIOS GOP 1.60. It appears
the GOP was initializing the RX 480 too, despite not being flashed with the
latest itself. I am working on an email to asrock support about that. Once
I get into linux (native or PV), both monitors light up as expected. Also,
If I boot linux PVH from grub, they also work. Those usage scenarios have
acpidump output as identical. Booting linux PVH directly from UEFI (no
grub), the monitors go to sleep on the RX 480, and amdgpu errors out about
VFCT, but the R5 430 OEM does still have output. Interestingly, there is a
different screen mode booting UEFI+PVH, the characters are basically
squares, with more vertical lines than "default", maybe close to native
screen resolution, but horizontally it's still "default". Booting from grub
gives everything in the "default" resolution.

So what is in the VFCT Table? VFCT contains the non-GOP VIOS image of my
Radeon RX 480 GPU. You can compare it to the VBIOS hosted at
https://www.techpowerup.com/vgabios/185789/msi-rx480-4096-160720 (Compare
the end at E667 in the VFCT table to E5ff in that vbios link). I find this
extra suspicious due to the above.

Now for the extra horrible things:

UEFI-booted PVH Linux doesn't support keyboard getty input, and at least
some of the USB devices are not in lsusb. It also decided to vanish one of
my HDD's. The `reboot` command hangs. The Power button doesn't do anything.
There are several stack traces in dmesg. But Alt-SysRq-B does reboot!
Luckily I could ssh in and capture the ACPI tables. They are much smaller,
and VFCT is empty.  Booting back to one of the working scenarios (direct
linux, Grub PV, Grub PVH, UEFI PV), all of this is normal.

I've attached:

xenboot.log which is the serial log of xen+linux booting in UEFI PVH
(kernel is debian's config, but patched to start at 2MiB)
dmesg.txt which is the linux dmesg that contains some nice stack traces
(kernel is debian's config, but patched to start at 2MiB)
efipvh-tables.dump is ALL acpi tables from UEFI+PVH mode (acpidump -o
efipvh-tables.dump)
working-tables.dump is ALL acpi tables from the other modes (acpidump -o
working-tables.dump)
efipvh-vfct.dump is attached in spirit, as it is 0 bytes long (acpidump -n
VFCT -o efipvh-vfct.dump)

I ran iasl, but it just said **** Unknown ACPI table signature [VFCT] and
spat out the raw data table, nothing interesting

Something I can try, but have been nervous to try due to GOPupd warnings is
to also flash the 1.67 GOP to the VBIOS on the RX 480. The R5 430 OEM had
no such warnings.

Patrick

[-- Attachment #1.2: Type: text/html, Size: 4607 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: dmesg.txt --]
[-- Type: text/plain; charset="US-ASCII"; name="dmesg.txt", Size: 152602 bytes --]

[    0.000000] Linux version 6.1.69 (root@pollux) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #10 SMP PREEMPT_DYNAMIC Wed Jan 17 23:44:31 EST 2024
[    0.000000] Command line: root=UUID=922b10f2-a826-47fb-ab38-836f9b397ff7 ro rootflags=subvol=@rootfs  earlyprintk=xen console=hvc0
[    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-0x0000000003ffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000004000000-0x0000000004045fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000004046000-0x0000000009afefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009aff000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b020fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b021000-0x00000000a04e8fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000a04e9000-0x00000000a64e8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000a64e9000-0x00000000a747efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000a747f000-0x00000000a947efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000a947f000-0x00000000addfefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000addff000-0x00000000afffab9b] usable
[    0.000000] BIOS-e820: [mem 0x00000000afffab9c-0x00000000afffaf17] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000afffb000-0x00000000bfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000df200000-0x00000000df2fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000feafffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000025dee2fff] usable
[    0.000000] BIOS-e820: [mem 0x000000025dee3000-0x000000403dbbffff] unusable
[    0.000000] BIOS-e820: [mem 0x000000403dbc0000-0x000000403fffffff] reserved
[    0.000000] printk: bootconsole [xenboot0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.90 by American Megatrends
[    0.000000] efi: ACPI=0xa9463000 ACPI 2.0=0xa9463014 SMBIOS=0xad9f4000 SMBIOS 3.0=0xad9f3000 MEMATTR=0x99e26698 ESRT=0xa7466018 
[    0.000000] secureboot: Secure boot disabled
[    0.000000] SMBIOS 3.6.0 present.
[    0.000000] DMI: To Be Filled By O.E.M. TRX50 WS/TRX50 WS, BIOS 7.08 01/16/2024
[    0.000000] Hypervisor detected: Xen HVM
[    0.000000] Xen version 4.17.
[    0.000003] HVMOP_pagetable_dying not supported
[    0.043916] tsc: Fast TSC calibration failed
[    0.048843] tsc: Detected 4199.960 MHz processor
[    0.054365] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.054368] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.054375] last_pfn = 0x25dee3 max_arch_pfn = 0x400000000
[    0.062033] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.070417] CPU MTRRs all blank - virtualized system.
[    0.076209] last_pfn = 0xafffa max_arch_pfn = 0x400000000
[    0.085594] Using GB pages for direct mapping
[    0.091184] RAMDISK: [mem 0x04046000-0x068cdfff]
[    0.096533] ACPI: Early table checksum verification disabled
[    0.103248] ACPI: RSDP 0x00000000AFFFAB9C 000024 (v02 AMD   )
[    0.109716] ACPI: XSDT 0x00000000AFFFABC0 0000C4 (v01 AMD    A M I    00000001 AMI  01000013)
[    0.119663] ACPI: APIC 0x00000000AFFFAC84 00037C (v04 AMD    A M I    00000001 AMI  00010013)
[    0.129538] ACPI: FACP 0x00000000A747C000 000114 (v06 AMD    A M I    00000001 AMI  00010013)
[    0.139250] ACPI: DSDT 0x00000000A746E000 00D2F6 (v02 AMD    A M I    00000001 INTL 20230331)
[    0.148717] ACPI: FACS 0x00000000A945A000 000040
[    0.153805] ACPI: SSDT 0x00000000A747E000 0009CC (v02 AMD    BOULDERG 00000002 MSFT 04000000)
[    0.163309] ACPI: SSDT 0x00000000A747D000 000067 (v02 AMD    CPMDSM   00000001 INTL 20230331)
[    0.172813] ACPI: MCFG 0x00000000A746C000 00003C (v01 AMD    A M I    00000001 MSFT 00010013)
[    0.182351] ACPI: SSDT 0x00000000A746B000 0005C5 (v02 AMD    CPUSSDT  00000001 AMI  00000001)
[    0.191806] ACPI: SSDT 0x00000000A7468000 001B53 (v02 AMD    CPMRAS   00000001 INTL 20230331)
[    0.201308] ACPI: FPDT 0x00000000A7465000 000044 (v01 AMD    A M I    01072009 AMI  01000013)
[    0.210819] ACPI: SSDT 0x00000000A7462000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)
[    0.220343] ACPI: SSDT 0x00000000A745F000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)
[    0.229884] ACPI: SSDT 0x00000000A745C000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)
[    0.239351] ACPI: SSDT 0x00000000A7459000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)
[    0.248780] ACPI: SSDT 0x00000000A743E000 00A40E (v02 AMD    AMD CPU  00000001 AMD  00000001)
[    0.258288] ACPI: SSDT 0x00000000A684C000 0006D4 (v02 AMD    CPMWLRC  00000001 INTL 20230331)
[    0.267815] ACPI: SSDT 0x00000000A6842000 00982F (v02 AMD    CPMCMN   00000001 INTL 20230331)
[    0.277339] ACPI: SSDT 0x00000000A683C000 002387 (v02 AMD    AOD      00000001 INTL 20230331)
[    0.286840] ACPI: SSDT 0x00000000A683B000 000500 (v02 AMD    MEMTOOL0 00000002 INTL 20230331)
[    0.296283] ACPI: SSDT 0x00000000A683A000 00096A (v02 AMD    CPMMSOSC 00000001 INTL 20230331)
[    0.305841] ACPI: SSDT 0x00000000A6839000 000B72 (v02 AMD    CPMACPV6 00000001 INTL 20230331)
[    0.315288] ACPI: SSDT 0x00000000A6838000 00044E (v02 AMD    AmdTable 00000001 INTL 20230331)
[    0.324802] ACPI: Reserving APIC table memory at [mem 0xafffac84-0xafffafff]
[    0.332592] ACPI: Reserving FACP table memory at [mem 0xa747c000-0xa747c113]
[    0.340419] ACPI: Reserving DSDT table memory at [mem 0xa746e000-0xa747b2f5]
[    0.348189] ACPI: Reserving FACS table memory at [mem 0xa945a000-0xa945a03f]
[    0.356058] ACPI: Reserving SSDT table memory at [mem 0xa747e000-0xa747e9cb]
[    0.363906] ACPI: Reserving SSDT table memory at [mem 0xa747d000-0xa747d066]
[    0.371757] ACPI: Reserving MCFG table memory at [mem 0xa746c000-0xa746c03b]
[    0.379576] ACPI: Reserving SSDT table memory at [mem 0xa746b000-0xa746b5c4]
[    0.387437] ACPI: Reserving SSDT table memory at [mem 0xa7468000-0xa7469b52]
[    0.395337] ACPI: Reserving FPDT table memory at [mem 0xa7465000-0xa7465043]
[    0.403153] ACPI: Reserving SSDT table memory at [mem 0xa7462000-0xa7464447]
[    0.410989] ACPI: Reserving SSDT table memory at [mem 0xa745f000-0xa7461447]
[    0.418802] ACPI: Reserving SSDT table memory at [mem 0xa745c000-0xa745e447]
[    0.426642] ACPI: Reserving SSDT table memory at [mem 0xa7459000-0xa745b447]
[    0.434529] ACPI: Reserving SSDT table memory at [mem 0xa743e000-0xa744840d]
[    0.442393] ACPI: Reserving SSDT table memory at [mem 0xa684c000-0xa684c6d3]
[    0.450203] ACPI: Reserving SSDT table memory at [mem 0xa6842000-0xa684b82e]
[    0.458038] ACPI: Reserving SSDT table memory at [mem 0xa683c000-0xa683e386]
[    0.465853] ACPI: Reserving SSDT table memory at [mem 0xa683b000-0xa683b4ff]
[    0.473805] ACPI: Reserving SSDT table memory at [mem 0xa683a000-0xa683a969]
[    0.481626] ACPI: Reserving SSDT table memory at [mem 0xa6839000-0xa6839b71]
[    0.489475] ACPI: Reserving SSDT table memory at [mem 0xa6838000-0xa683844d]
[    0.497416] No NUMA configuration found
[    0.501623] Faking a node at [mem 0x0000000000000000-0x000000025dee2fff]
[    0.509060] NODE_DATA(0) allocated [mem 0x25deb8000-0x25dee2fff]
[    0.515875] Zone ranges:
[    0.518674]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.525817]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.533002]   Normal   [mem 0x0000000100000000-0x000000025dee2fff]
[    0.540062]   Device   empty
[    0.543336] Movable zone start for each node
[    0.548322] Early memory node ranges
[    0.552552]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.559942]   node   0: [mem 0x0000000000100000-0x0000000003ffffff]
[    0.567180]   node   0: [mem 0x0000000004046000-0x0000000009afefff]
[    0.574205]   node   0: [mem 0x000000000a000000-0x000000000affffff]
[    0.581580]   node   0: [mem 0x000000000b021000-0x00000000a04e8fff]
[    0.588905]   node   0: [mem 0x00000000addff000-0x00000000afff9fff]
[    0.596247]   node   0: [mem 0x0000000100000000-0x000000025dee2fff]
[    0.603589] Initmem setup node 0 [mem 0x0000000000001000-0x000000025dee2fff]
[    0.611687] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.611704] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.618672] On node 0, zone DMA32: 70 pages in unavailable ranges
[    0.625489] On node 0, zone DMA32: 1281 pages in unavailable ranges
[    0.635023] On node 0, zone DMA32: 33 pages in unavailable ranges
[    0.642474] On node 0, zone DMA32: 55574 pages in unavailable ranges
[    0.649459] On node 0, zone Normal: 6 pages in unavailable ranges
[    0.656857] On node 0, zone Normal: 8477 pages in unavailable ranges
[    0.664536] ACPI: PM-Timer IO Port: 0x808
[    0.676319] IOAPIC[0]: apic_id 128, version 17, address 0xfec00000, GSI 0-23
[    0.684604] IOAPIC[1]: apic_id 129, version 17, address 0xdf180000, GSI 120-151
[    0.692797] IOAPIC[2]: apic_id 130, version 17, address 0xd3180000, GSI 88-119
[    0.701297] IOAPIC[3]: apic_id 131, version 17, address 0xf7180000, GSI 24-55
[    0.709460] IOAPIC[4]: apic_id 132, version 17, address 0xc9180000, GSI 56-87
[    0.717765] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.724920] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.732579] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.739918] smpboot: Allowing 48 CPUs, 0 hotplug CPUs
[    0.745633] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.754504] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.763079] PM: hibernation: Registered nosave memory: [mem 0x04000000-0x04045fff]
[    0.771691] PM: hibernation: Registered nosave memory: [mem 0x09aff000-0x09ffffff]
[    0.780245] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b020fff]
[    0.788644] PM: hibernation: Registered nosave memory: [mem 0xa04e9000-0xa64e8fff]
[    0.797644] PM: hibernation: Registered nosave memory: [mem 0xa64e9000-0xa747efff]
[    0.806583] PM: hibernation: Registered nosave memory: [mem 0xa747f000-0xa947efff]
[    0.815428] PM: hibernation: Registered nosave memory: [mem 0xa947f000-0xaddfefff]
[    0.824334] PM: hibernation: Registered nosave memory: [mem 0xafffa000-0xafffafff]
[    0.833290] PM: hibernation: Registered nosave memory: [mem 0xafffa000-0xafffafff]
[    0.842307] PM: hibernation: Registered nosave memory: [mem 0xafffb000-0xbfffffff]
[    0.851351] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xdf1fffff]
[    0.860360] PM: hibernation: Registered nosave memory: [mem 0xdf200000-0xdf2fffff]
[    0.869382] PM: hibernation: Registered nosave memory: [mem 0xdf300000-0xdfffffff]
[    0.878019] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.886825] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfe9fffff]
[    0.895790] PM: hibernation: Registered nosave memory: [mem 0xfea00000-0xfeafffff]
[    0.904730] PM: hibernation: Registered nosave memory: [mem 0xfeb00000-0xfebfffff]
[    0.913389] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.922054] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
[    0.931099] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.939744] PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[    0.948727] PM: hibernation: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[    0.957559] PM: hibernation: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[    0.966252] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.975243] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[    0.983826] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[    0.992871] PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[    1.001864] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[    1.010440] PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfeffffff]
[    1.019340] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    1.028115] [mem 0xc0000000-0xdf1fffff] available for PCI devices
[    1.035130] Booting kernel on Xen PVH
[    1.039288] Xen version: 4.17.3-pre
[    1.043396] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.058217] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:1
[    1.067800] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144
[    1.075420] pcpu-alloc: s212992 r8192 d28672 u262144 alloc=1*2097152
[    1.075422] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    1.075427] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 
[    1.075432] pcpu-alloc: [0] 32 33 34 35 36 37 38 39 [0] 40 41 42 43 44 45 46 47 
[    1.075461] xen: PV spinlocks enabled
[    1.075463] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    1.084140] Fallback order for Node 0: 0 
[    1.084143] Built 1 zonelists, mobility grouping on.  Total pages: 2060637
[    1.097063] Policy zone: Normal
[    1.100805] Kernel command line: root=UUID=922b10f2-a826-47fb-ab38-836f9b397ff7 ro rootflags=subvol=@rootfs  earlyprintk=xen console=hvc0
[    1.115489] random: crng init done
[    1.119277] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    1.127451] printk: log_buf_len total cpu_extra contributions: 192512 bytes
[    1.135580] printk: log_buf_len min size: 131072 bytes
[    1.141668] printk: log_buf_len: 524288 bytes
[    1.146742] printk: early log buf free: 117504(89%)
[    1.152777] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    1.161994] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    1.170834] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    1.178737] software IO TLB: area num 64.
[    1.190139] Memory: 2625164K/8388600K available (14342K kernel code, 2331K rwdata, 9052K rodata, 2792K init, 17416K bss, 323508K reserved, 0K cma-reserved)
[    1.206261] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=1
[    1.217541] ftrace: allocating 40159 entries in 157 pages
[    1.230055] ftrace: allocated 157 pages with 5 groups
[    1.236338] Dynamic Preempt: voluntary
[    1.240466] rcu: Preemptible hierarchical RCU implementation.
[    1.247046] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=48.
[    1.255041] 	Trampoline variant of Tasks RCU enabled.
[    1.260903] 	Rude variant of Tasks RCU enabled.
[    1.266310] 	Tracing variant of Tasks RCU enabled.
[    1.271931] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.280724] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=48
[    1.290978] Using NULL legacy PIC
[    1.294801] NR_IRQS: 524544, nr_irqs: 2984, preallocated irqs: 0
[    1.301970] xen:events: Using FIFO-based ABI
[    1.309953] xen:events: Xen HVM callback vector for event delivery is enabled
[    1.318386] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.326425] Console: colour dummy device 80x25
[    1.331580] printk: console [tty0] enabled
[    1.336382] printk: console [hvc0] enabled
[    1.345840] printk: bootconsole [xenboot0] disabled
[    1.357459] ACPI: Core revision 20220331
[    1.388339] Failed to register legacy timer interrupt
[    1.394384] APIC: Switch to symmetric I/O mode setup
[    1.401266] x2apic enabled
[    1.405495] Switched APIC routing to physical x2apic.
[    1.411510] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3c8a3bbe440, max_idle_ns: 440795298187 ns
[    1.423803] Calibrating delay loop (skipped), value calculated using timer frequency.. 8399.92 BogoMIPS (lpj=16799840)
[    1.427798] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    1.427798] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.427798] Last level dTLB entries: 4KB 3072, 2MB 3072, 4MB 1536, 1GB 0
[    1.427798] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.427798] Spectre V2 : Mitigation: Retpolines
[    1.427798] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    1.427798] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    1.427798] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    1.427798] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.427798] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    1.427798] Speculative Return Stack Overflow: Mitigation: safe RET
[    1.427798] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.427798] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.427798] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.427798] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    1.427798] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    1.427798] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    1.427798] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    1.427798] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.427798] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    1.427798] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    1.427798] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    1.427798] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    1.427798] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[    1.427798] Freeing SMP alternatives memory: 36K
[    1.427798] pid_max: default: 49152 minimum: 384
[    1.427798] LSM: Security Framework initializing
[    1.427798] landlock: Up and running.
[    1.427798] Yama: disabled by default; enable with sysctl kernel.yama.*
[    1.427798] AppArmor: AppArmor initialized
[    1.427798] TOMOYO Linux initialized
[    1.427798] LSM support for eBPF active
[    1.427798] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.427798] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.427798] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    1.427798] Xen: using vcpuop timer interface
[    1.427798] installing Xen timer for CPU 0
[    1.427798] smpboot: CPU0: AMD Ryzen Threadripper 7960X 24-Cores (family: 0x19, model: 0x18, stepping: 0x1)
[    1.427815] cpu 0 spinlock event irq 28
[    1.431854] cblist_init_generic: Setting adjustable number of callback queues.
[    1.435801] cblist_init_generic: Setting shift to 6 and lim to 1.
[    1.439808] cblist_init_generic: Setting adjustable number of callback queues.
[    1.443800] cblist_init_generic: Setting shift to 6 and lim to 1.
[    1.447807] cblist_init_generic: Setting adjustable number of callback queues.
[    1.451801] cblist_init_generic: Setting shift to 6 and lim to 1.
[    1.455807] Performance Events: PMU not available due to virtualization, using software events only.
[    1.459807] signal: max sigframe size: 3376
[    1.463807] rcu: Hierarchical SRCU implementation.
[    1.467800] rcu: 	Max phase no-delay instances is 1000.
[    1.471914] NMI watchdog: Perf NMI watchdog permanently disabled
[    1.475974] smp: Bringing up secondary CPUs ...
[    1.482850] installing Xen timer for CPU 1
[    1.483826] x86: Booting SMP configuration:
[    1.487801] .... node  #0, CPUs:        #1
[    1.491497] cpu 1 spinlock event irq 33
[    1.502874] installing Xen timer for CPU 2
[    1.503843]   #2
[    1.506347] cpu 2 spinlock event irq 38
[    1.515802] installing Xen timer for CPU 3
[    1.519844]   #3
[    1.522327] cpu 3 spinlock event irq 43
[    1.531802] installing Xen timer for CPU 4
[    1.535839]   #4
[    1.538282] cpu 4 spinlock event irq 48
[    1.547801] installing Xen timer for CPU 5
[    1.551832]   #5
[    1.554294] cpu 5 spinlock event irq 53
[    1.562683] installing Xen timer for CPU 6
[    1.563833]   #6
[    1.566214] cpu 6 spinlock event irq 58
[    1.575802] installing Xen timer for CPU 7
[    1.579843]   #7
[    1.582249] cpu 7 spinlock event irq 63
[    1.591802] installing Xen timer for CPU 8
[    1.595849]   #8
[    1.598227] cpu 8 spinlock event irq 68
[    1.606730] installing Xen timer for CPU 9
[    1.607842]   #9
[    1.610293] cpu 9 spinlock event irq 73
[    1.619802] installing Xen timer for CPU 10
[    1.623842]  #10
[    1.626296] cpu 10 spinlock event irq 78
[    1.635801] installing Xen timer for CPU 11
[    1.639837]  #11
[    1.642216] cpu 11 spinlock event irq 83
[    1.651802] installing Xen timer for CPU 12
[    1.655847]  #12
[    1.658226] cpu 12 spinlock event irq 88
[    1.667802] installing Xen timer for CPU 13
[    1.671843]  #13
[    1.674283] cpu 13 spinlock event irq 93
[    1.683802] installing Xen timer for CPU 14
[    1.687847]  #14
[    1.690206] cpu 14 spinlock event irq 98
[    1.699802] installing Xen timer for CPU 15
[    1.703844]  #15
[    1.706280] cpu 15 spinlock event irq 103
[    1.715802] installing Xen timer for CPU 16
[    1.719844]  #16
[    1.722314] cpu 16 spinlock event irq 108
[    1.731802] installing Xen timer for CPU 17
[    1.735838]  #17
[    1.738202] cpu 17 spinlock event irq 113
[    1.747802] installing Xen timer for CPU 18
[    1.751843]  #18
[    1.754290] cpu 18 spinlock event irq 118
[    1.763802] installing Xen timer for CPU 19
[    1.767847]  #19
[    1.770290] cpu 19 spinlock event irq 123
[    1.779801] installing Xen timer for CPU 20
[    1.783839]  #20
[    1.786214] cpu 20 spinlock event irq 128
[    1.795802] installing Xen timer for CPU 21
[    1.799849]  #21
[    1.802308] cpu 21 spinlock event irq 133
[    1.811802] installing Xen timer for CPU 22
[    1.815847]  #22
[    1.818250] cpu 22 spinlock event irq 138
[    1.827802] installing Xen timer for CPU 23
[    1.831845]  #23
[    1.834206] cpu 23 spinlock event irq 143
[    1.843802] installing Xen timer for CPU 24
[    1.847848]  #24
[    1.850327] cpu 24 spinlock event irq 148
[    1.859801] installing Xen timer for CPU 25
[    1.863851]  #25
[    1.866303] cpu 25 spinlock event irq 153
[    1.875801] installing Xen timer for CPU 26
[    1.879844]  #26
[    1.882244] cpu 26 spinlock event irq 158
[    1.891801] installing Xen timer for CPU 27
[    1.895850]  #27
[    1.898294] cpu 27 spinlock event irq 163
[    1.907802] installing Xen timer for CPU 28
[    1.911847]  #28
[    1.914317] cpu 28 spinlock event irq 168
[    1.923802] installing Xen timer for CPU 29
[    1.927849]  #29
[    1.930230] cpu 29 spinlock event irq 173
[    1.939802] installing Xen timer for CPU 30
[    1.943849]  #30
[    1.946305] cpu 30 spinlock event irq 178
[    1.955801] installing Xen timer for CPU 31
[    1.959848]  #31
[    1.962305] cpu 31 spinlock event irq 183
[    1.971802] installing Xen timer for CPU 32
[    1.975848]  #32
[    2.059856] cpu 32 spinlock event irq 188
[    2.067801] installing Xen timer for CPU 33
[    2.071846]  #33
[    2.074882] cpu 33 spinlock event irq 193
[    2.083802] installing Xen timer for CPU 34
[    2.087839]  #34
[    2.090167] cpu 34 spinlock event irq 198
[    2.099802] installing Xen timer for CPU 35
[    2.103841]  #35
[    2.106238] cpu 35 spinlock event irq 203
[    2.115802] installing Xen timer for CPU 36
[    2.119851]  #36
[    2.122322] cpu 36 spinlock event irq 208
[    2.131802] installing Xen timer for CPU 37
[    2.135851]  #37
[    2.138225] cpu 37 spinlock event irq 213
[    2.147802] installing Xen timer for CPU 38
[    2.151854]  #38
[    2.154247] cpu 38 spinlock event irq 218
[    2.163802] installing Xen timer for CPU 39
[    2.167852]  #39
[    2.170320] cpu 39 spinlock event irq 223
[    2.179801] installing Xen timer for CPU 40
[    2.183844]  #40
[    2.186324] cpu 40 spinlock event irq 228
[    2.195801] installing Xen timer for CPU 41
[    2.199850]  #41
[    2.202290] cpu 41 spinlock event irq 233
[    2.211801] installing Xen timer for CPU 42
[    2.215849]  #42
[    2.218276] cpu 42 spinlock event irq 238
[    2.227801] installing Xen timer for CPU 43
[    2.231855]  #43
[    2.234255] cpu 43 spinlock event irq 243
[    2.243801] installing Xen timer for CPU 44
[    2.247854]  #44
[    2.250287] cpu 44 spinlock event irq 248
[    2.259801] installing Xen timer for CPU 45
[    2.263848]  #45
[    2.266214] cpu 45 spinlock event irq 253
[    2.275801] installing Xen timer for CPU 46
[    2.279853]  #46
[    2.282346] cpu 46 spinlock event irq 258
[    2.291801] installing Xen timer for CPU 47
[    2.295852]  #47
[    2.298326] cpu 47 spinlock event irq 263
[    2.304198] smp: Brought up 1 node, 48 CPUs
[    2.307804] smpboot: Max logical packages: 2
[    2.311803] smpboot: Total of 48 processors activated (403310.40 BogoMIPS)
[    2.321469] node 0 deferred pages initialised in 0ms
[    2.328317] devtmpfs: initialized
[    2.331847] x86/mm: Memory block size: 128MB
[    2.336660] clipped [mem 0x09aff000-0x09ffffff] to [mem 0x0a000000-0x09ffffff] for e820 entry [mem 0x09aff000-0x09ffffff]
[    2.339803] clipped [mem 0x0b000000-0x0b020fff] to [mem 0x0b021000-0x0b020fff] for e820 entry [mem 0x0b000000-0x0b020fff]
[    2.343803] clipped [mem 0xa04e9000-0xa64e8fff] to [mem 0xa64e9000-0xa64e8fff] for e820 entry [mem 0xa04e9000-0xa64e8fff]
[    2.347803] clipped [mem 0xa947f000-0xaddfefff] to [mem 0xaddff000-0xaddfefff] for e820 entry [mem 0xa947f000-0xaddfefff]
[    2.351803] clipped [mem 0xafffaf18-0xffdfffff] to [mem 0xc0000000-0xffdfffff] for e820 entry [mem 0xafffb000-0xbfffffff]
[    2.355803] clipped [mem 0xc0000000-0xffdfffff] to [mem 0xdf300000-0xffdfffff] for e820 entry [mem 0xdf200000-0xdf2fffff]
[    2.359802] clipped [mem 0xdf300000-0xffdfffff] to [mem 0xf0000000-0xffdfffff] for e820 entry [mem 0xe0000000-0xefffffff]
[    2.363803] clipped [mem 0xf0000000-0xffdfffff] to [mem 0xf0000000-0xfe9fffff] for e820 entry [mem 0xfea00000-0xfeafffff]
[    2.368117] memmap_init_zone_device initialised 32768 pages in 0ms
[    2.371837] ACPI: PM: Registering ACPI NVS region [mem 0x04000000-0x04045fff] (286720 bytes)
[    2.375809] ACPI: PM: Registering ACPI NVS region [mem 0xa747f000-0xa947efff] (33554432 bytes)
[    2.380120] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.383836] futex hash table entries: 16384 (order: 8, 1048576 bytes, linear)
[    2.387869] pinctrl core: initialized pinctrl subsystem
[    2.393098] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    2.395818] xen:grant_table: Grant tables using version 1 layout
[    2.399831] Grant table initialized
[    2.404280] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    2.407831] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.411831] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    2.415807] audit: initializing netlink subsys (disabled)
[    2.419828] audit: type=2000 audit(1705646318.531:1): state=initialized audit_enabled=0 res=1
[    2.419871] thermal_sys: Registered thermal governor 'fair_share'
[    2.423810] thermal_sys: Registered thermal governor 'bang_bang'
[    2.427802] thermal_sys: Registered thermal governor 'step_wise'
[    2.431801] thermal_sys: Registered thermal governor 'user_space'
[    2.435802] thermal_sys: Registered thermal governor 'power_allocator'
[    2.439825] cpuidle: using governor ladder
[    2.451819] cpuidle: using governor menu
[    2.455853] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.460185] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    2.463805] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    2.467822] PCI: Using configuration type 1 for base access
[    2.473054] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    2.475825] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    2.479802] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    2.483804] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    2.487802] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    2.491867] ACPI: Added _OSI(Module Device)
[    2.495807] ACPI: Added _OSI(Processor Device)
[    2.499804] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.503802] ACPI: Added _OSI(Processor Aggregator Device)
[    2.534347] ACPI: 17 ACPI AML tables successfully acquired and loaded
[    2.538780] ACPI: Interpreter enabled
[    2.539819] ACPI: PM: (supports S0 S3 S4 S5)
[    2.543803] ACPI: Using IOAPIC for interrupt routing
[    2.548124] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.551803] PCI: Ignoring E820 reservations for host bridge windows
[    2.556164] ACPI: Enabled 4 GPEs in block 00 to 1F
[    2.577431] ACPI: PM: Power Resource [PRWL]
[    2.579819] ACPI: PM: Power Resource [PRWB]
[    2.584384] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus c0-ff])
[    2.587805] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    2.591930] acpi PNP0A08:00: _OSC: platform does not support [AER LTR]
[    2.596025] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    2.600114] PCI host bridge to bus 0000:c0
[    2.603802] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]
[    2.607802] pci_bus 0000:c0: root bus resource [mem 0xd4000000-0xd5ffffff window]
[    2.611802] pci_bus 0000:c0: root bus resource [mem 0x10020400000-0x159b33fffff window]
[    2.615803] pci_bus 0000:c0: root bus resource [bus c0-ff]
[    2.619827] pci 0000:c0:00.0: [1022:14a4] type 00 class 0x060000
[    2.627536] pci 0000:c0:00.2: [1022:149e] type 00 class 0x080600
[    2.631375] pci 0000:c0:00.3: [1022:14a6] type 00 class 0x080700
[    2.631880] pci 0000:c0:00.3: enabling Extended Tags
[    2.639573] pci 0000:c0:01.0: [1022:149f] type 00 class 0x060000
[    2.643437] pci 0000:c0:02.0: [1022:149f] type 00 class 0x060000
[    2.647379] pci 0000:c0:03.0: [1022:149f] type 00 class 0x060000
[    2.651430] pci 0000:c0:04.0: [1022:149f] type 00 class 0x060000
[    2.655403] pci 0000:c0:05.0: [1022:149f] type 00 class 0x060000
[    2.659409] pci 0000:c0:07.0: [1022:149f] type 00 class 0x060000
[    2.663344] pci 0000:c0:07.1: [1022:14a7] type 01 class 0x060400
[    2.663879] pci 0000:c0:07.1: enabling Extended Tags
[    2.667926] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold
[    2.675677] pci 0000:c1:00.0: [1022:14ac] type 00 class 0x130000
[    2.675867] pci 0000:c1:00.0: enabling Extended Tags
[    2.683578] pci 0000:c1:00.4: [1022:14c9] type 00 class 0x0c0330
[    2.686248] pci 0000:c1:00.4: reg 0x10: [mem 0xd5f00000-0xd5ffffff 64bit]
[    2.698338] pci 0000:c1:00.4: enabling Extended Tags
[    2.699889] pci 0000:c1:00.4: PME# supported from D0 D3hot D3cold
[    2.707391] pci 0000:c0:07.1: PCI bridge to [bus c1]
[    2.707809] pci 0000:c0:07.1:   bridge window [mem 0xd5f00000-0xd5ffffff]
[    2.712340] ACPI: PCI Root Bridge [PCI2] (domain 0000 [bus 80-bf])
[    2.715803] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    2.719932] acpi PNP0A08:01: _OSC: platform does not support [AER LTR]
[    2.723997] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    2.728074] PCI host bridge to bus 0000:80
[    2.731801] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]
[    2.735800] pci_bus 0000:80: root bus resource [mem 0xca000000-0xcaffffff window]
[    2.739801] pci_bus 0000:80: root bus resource [mem 0x2c020400000-0x319b33fffff window]
[    2.743801] pci_bus 0000:80: root bus resource [bus 80-bf]
[    2.747818] pci 0000:80:00.0: [1022:14a4] type 00 class 0x060000
[    2.755410] pci 0000:80:00.2: [1022:149e] type 00 class 0x080600
[    2.759454] pci 0000:80:00.3: [1022:14a6] type 00 class 0x080700
[    2.759863] pci 0000:80:00.3: enabling Extended Tags
[    2.767536] pci 0000:80:01.0: [1022:149f] type 00 class 0x060000
[    2.771424] pci 0000:80:01.2: [1022:14ab] type 01 class 0x060400
[    2.772030] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold
[    2.779725] pci 0000:80:01.3: [1022:14ab] type 01 class 0x060400
[    2.779865] pci 0000:80:01.3: enabling Extended Tags
[    2.783963] pci 0000:80:01.3: PME# supported from D0 D3hot D3cold
[    2.791723] pci 0000:80:02.0: [1022:149f] type 00 class 0x060000
[    2.795440] pci 0000:80:03.0: [1022:149f] type 00 class 0x060000
[    2.799377] pci 0000:80:03.1: [1022:14a5] type 01 class 0x060400
[    2.800004] pci 0000:80:03.1: PME# supported from D0 D3hot D3cold
[    2.807588] pci 0000:80:03.2: [1022:14a5] type 01 class 0x060400
[    2.807861] pci 0000:80:03.2: enabling Extended Tags
[    2.811945] pci 0000:80:03.2: PME# supported from D0 D3hot D3cold
[    2.819566] pci 0000:80:04.0: [1022:149f] type 00 class 0x060000
[    2.823352] pci 0000:80:05.0: [1022:149f] type 00 class 0x060000
[    2.827448] pci 0000:80:07.0: [1022:149f] type 00 class 0x060000
[    2.831271] pci 0000:80:07.1: [1022:14a7] type 01 class 0x060400
[    2.831857] pci 0000:80:07.1: enabling Extended Tags
[    2.835895] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold
[    2.843552] pci 0000:81:00.0: [144d:a80c] type 00 class 0x010802
[    2.843860] pci 0000:81:00.0: reg 0x10: [mem 0xcaf00000-0xcaf03fff 64bit]
[    2.851810] pci 0000:80:01.2: PCI bridge to [bus 81]
[    2.855811] pci 0000:80:01.2:   bridge window [mem 0xcaf00000-0xcaffffff]
[    2.859898] pci 0000:82:00.0: [1b73:1100] type 00 class 0x0c0330
[    2.863987] pci 0000:82:00.0: reg 0x10: [mem 0xcae00000-0xcae0ffff 64bit]
[    2.867978] pci 0000:82:00.0: reg 0x18: [mem 0xcae11000-0xcae11fff 64bit]
[    2.871978] pci 0000:82:00.0: reg 0x20: [mem 0xcae10000-0xcae10fff 64bit]
[    2.876049] pci 0000:82:00.0: supports D1
[    2.879801] pci 0000:82:00.0: PME# supported from D0 D1 D3hot
[    2.887331] pci 0000:80:01.3: PCI bridge to [bus 82]
[    2.887808] pci 0000:80:01.3:   bridge window [mem 0xcae00000-0xcaefffff]
[    2.891897] pci 0000:83:00.0: [1b21:3242] type 00 class 0x0c0330
[    2.895968] pci 0000:83:00.0: reg 0x10: [mem 0xcad00000-0xcad07fff 64bit]
[    2.900586] pci 0000:83:00.0: PME# supported from D0 D3hot D3cold
[    2.907572] pci 0000:80:03.1: PCI bridge to [bus 83]
[    2.907809] pci 0000:80:03.1:   bridge window [mem 0xcad00000-0xcadfffff]
[    2.911908] pci 0000:84:00.0: [1b21:1182] type 01 class 0x060400
[    2.915877] pci 0000:84:00.0: enabling Extended Tags
[    2.919897] pci 0000:84:00.0: PME# supported from D0 D3hot D3cold
[    2.927488] pci 0000:80:03.2: PCI bridge to [bus 84-87]
[    2.927806] pci 0000:80:03.2:   bridge window [io  0x8000-0x9fff]
[    2.931803] pci 0000:80:03.2:   bridge window [mem 0xcab00000-0xcacfffff]
[    2.935806] pci 0000:80:03.2:   bridge window [mem 0x319b3200000-0x319b33fffff 64bit pref]
[    2.939869] pci 0000:85:03.0: [1b21:1182] type 01 class 0x060400
[    2.943880] pci 0000:85:03.0: enabling Extended Tags
[    2.947890] pci 0000:85:03.0: PME# supported from D0 D3hot D3cold
[    2.955456] pci 0000:85:07.0: [1b21:1182] type 01 class 0x060400
[    2.955879] pci 0000:85:07.0: enabling Extended Tags
[    2.959889] pci 0000:85:07.0: PME# supported from D0 D3hot D3cold
[    2.967500] pci 0000:84:00.0: PCI bridge to [bus 85-87]
[    2.967808] pci 0000:84:00.0:   bridge window [io  0x8000-0x9fff]
[    2.971804] pci 0000:84:00.0:   bridge window [mem 0xcab00000-0xcacfffff]
[    2.975807] pci 0000:84:00.0:   bridge window [mem 0x319b3200000-0x319b33fffff 64bit pref]
[    2.979875] pci 0000:86:00.0: [10ec:8168] type 00 class 0x020000
[    2.983827] pci 0000:86:00.0: reg 0x10: [io  0x9000-0x90ff]
[    2.987834] pci 0000:86:00.0: reg 0x18: [mem 0xcac00000-0xcac00fff 64bit]
[    2.991822] pci 0000:86:00.0: reg 0x20: [mem 0x319b3300000-0x319b3303fff 64bit pref]
[    2.995966] pci 0000:86:00.0: supports D1 D2
[    2.999801] pci 0000:86:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.007540] pci 0000:85:03.0: PCI bridge to [bus 86]
[    3.007807] pci 0000:85:03.0:   bridge window [io  0x9000-0x9fff]
[    3.011804] pci 0000:85:03.0:   bridge window [mem 0xcac00000-0xcacfffff]
[    3.015808] pci 0000:85:03.0:   bridge window [mem 0x319b3300000-0x319b33fffff 64bit pref]
[    3.019876] pci 0000:87:00.0: [10ec:8168] type 00 class 0x020000
[    3.023827] pci 0000:87:00.0: reg 0x10: [io  0x8000-0x80ff]
[    3.027834] pci 0000:87:00.0: reg 0x18: [mem 0xcab00000-0xcab00fff 64bit]
[    3.031823] pci 0000:87:00.0: reg 0x20: [mem 0x319b3200000-0x319b3203fff 64bit pref]
[    3.035974] pci 0000:87:00.0: supports D1 D2
[    3.039800] pci 0000:87:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.047512] pci 0000:85:07.0: PCI bridge to [bus 87]
[    3.047807] pci 0000:85:07.0:   bridge window [io  0x8000-0x8fff]
[    3.051805] pci 0000:85:07.0:   bridge window [mem 0xcab00000-0xcabfffff]
[    3.055808] pci 0000:85:07.0:   bridge window [mem 0x319b3200000-0x319b32fffff 64bit pref]
[    3.059913] pci 0000:88:00.0: [1022:14ac] type 00 class 0x130000
[    3.063854] pci 0000:88:00.0: enabling Extended Tags
[    3.071538] pci 0000:80:07.1: PCI bridge to [bus 88]
[    3.072230] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
[    3.075803] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    3.079909] acpi PNP0A08:02: _OSC: platform does not support [AER LTR]
[    3.084003] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    3.088203] PCI host bridge to bus 0000:00
[    3.091801] pci_bus 0000:00: root bus resource [io  0x0000-0x02e7 window]
[    3.095802] pci_bus 0000:00: root bus resource [io  0x0300-0x03af window]
[    3.099801] pci_bus 0000:00: root bus resource [io  0x0400-0x0cf7 window]
[    3.103801] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    3.107801] pci_bus 0000:00: root bus resource [io  0x1000-0x3fff window]
[    3.111801] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    3.115801] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xf0ffffff window]
[    3.119801] pci_bus 0000:00: root bus resource [mem 0x48020400000-0x4d9b33fffff window]
[    3.123800] pci_bus 0000:00: root bus resource [bus 00-3f]
[    3.127820] pci 0000:00:00.0: [1022:14a4] type 00 class 0x060000
[    3.135479] pci 0000:00:00.2: [1022:149e] type 00 class 0x080600
[    3.139249] pci 0000:00:00.3: [1022:14a6] type 00 class 0x080700
[    3.139870] pci 0000:00:00.3: enabling Extended Tags
[    3.147402] pci 0000:00:01.0: [1022:149f] type 00 class 0x060000
[    3.151421] pci 0000:00:01.1: [1022:14ab] type 01 class 0x060400
[    3.152046] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    3.159678] pci 0000:00:02.0: [1022:149f] type 00 class 0x060000
[    3.163477] pci 0000:00:03.0: [1022:149f] type 00 class 0x060000
[    3.167228] pci 0000:00:04.0: [1022:149f] type 00 class 0x060000
[    3.171470] pci 0000:00:05.0: [1022:149f] type 00 class 0x060000
[    3.175296] pci 0000:00:05.1: [1022:14aa] type 01 class 0x060400
[    3.175907] pci 0000:00:05.1: enabling Extended Tags
[    3.180003] pci 0000:00:05.1: PME# supported from D0 D3hot D3cold
[    3.187651] pci 0000:00:05.2: [1022:14aa] type 01 class 0x060400
[    3.187906] pci 0000:00:05.2: enabling Extended Tags
[    3.191999] pci 0000:00:05.2: PME# supported from D0 D3hot D3cold
[    3.199746] pci 0000:00:05.3: [1022:14aa] type 01 class 0x060400
[    3.199904] pci 0000:00:05.3: enabling Extended Tags
[    3.203997] pci 0000:00:05.3: PME# supported from D0 D3hot D3cold
[    3.211545] pci 0000:00:05.4: [1022:14aa] type 01 class 0x060400
[    3.211901] pci 0000:00:05.4: enabling Extended Tags
[    3.215998] pci 0000:00:05.4: PME# supported from D0 D3hot D3cold
[    3.223674] pci 0000:00:07.0: [1022:149f] type 00 class 0x060000
[    3.227301] pci 0000:00:07.1: [1022:14a7] type 01 class 0x060400
[    3.227861] pci 0000:00:07.1: enabling Extended Tags
[    3.231907] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    3.239572] pci 0000:00:07.2: [1022:14a7] type 01 class 0x060400
[    3.239861] pci 0000:00:07.2: enabling Extended Tags
[    3.243906] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
[    3.251494] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    3.255307] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    3.259362] pci 0000:00:18.0: [1022:14ad] type 00 class 0x060000
[    3.263397] pci 0000:00:18.1: [1022:14ae] type 00 class 0x060000
[    3.267325] pci 0000:00:18.2: [1022:14af] type 00 class 0x060000
[    3.271311] pci 0000:00:18.3: [1022:14b0] type 00 class 0x060000
[    3.275393] pci 0000:00:18.4: [1022:14b1] type 00 class 0x060000
[    3.279239] pci 0000:00:18.5: [1022:14b2] type 00 class 0x060000
[    3.283420] pci 0000:00:18.6: [1022:14b3] type 00 class 0x060000
[    3.287455] pci 0000:00:18.7: [1022:14b4] type 00 class 0x060000
[    3.291385] pci 0000:01:00.0: [1002:67df] type 00 class 0x030000
[    3.297637] pci 0000:01:00.0: reg 0x10: [mem 0x4d800000000-0x4d8ffffffff 64bit pref]
[    3.306462] pci 0000:01:00.0: reg 0x18: [mem 0x4d900000000-0x4d9001fffff 64bit pref]
[    3.313357] pci 0000:01:00.0: reg 0x20: [io  0x3000-0x30ff]
[    3.321851] pci 0000:01:00.0: reg 0x24: [mem 0xf0f00000-0xf0f3ffff]
[    3.329612] pci 0000:01:00.0: reg 0x30: [mem 0xf0f40000-0xf0f5ffff pref]
[    3.331999] pci 0000:01:00.0: supports D1 D2
[    3.335801] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
[    3.343475] pci 0000:01:00.1: [1002:aaf0] type 00 class 0x040300
[    3.343825] pci 0000:01:00.1: reg 0x10: [mem 0xf0f60000-0xf0f63fff 64bit]
[    3.347945] pci 0000:01:00.1: supports D1 D2
[    3.355566] pci 0000:00:01.1: PCI bridge to [bus 01]
[    3.355807] pci 0000:00:01.1:   bridge window [io  0x3000-0x3fff]
[    3.359803] pci 0000:00:01.1:   bridge window [mem 0xf0f00000-0xf0ffffff]
[    3.363806] pci 0000:00:01.1:   bridge window [mem 0x4d800000000-0x4d9001fffff 64bit pref]
[    3.367914] pci 0000:00:05.1: PCI bridge to [bus 02]
[    3.371931] pci 0000:00:05.2: PCI bridge to [bus 03]
[    3.375930] pci 0000:00:05.3: PCI bridge to [bus 04]
[    3.379931] pci 0000:00:05.4: PCI bridge to [bus 05]
[    3.383933] pci 0000:06:00.0: [1022:14ac] type 00 class 0x130000
[    3.387857] pci 0000:06:00.0: enabling Extended Tags
[    3.395520] pci 0000:06:00.4: [1022:14c9] type 00 class 0x0c0330
[    3.398125] pci 0000:06:00.4: reg 0x10: [mem 0xf0c00000-0xf0cfffff 64bit]
[    3.410133] pci 0000:06:00.4: enabling Extended Tags
[    3.411872] pci 0000:06:00.4: PME# supported from D0 D3hot D3cold
[    3.419471] pci 0000:06:00.5: [1022:14ca] type 00 class 0x108000
[    3.419827] pci 0000:06:00.5: reg 0x18: [mem 0xf0b00000-0xf0bfffff]
[    3.423819] pci 0000:06:00.5: reg 0x24: [mem 0xf0d08000-0xf0d09fff]
[    3.427815] pci 0000:06:00.5: enabling Extended Tags
[    3.435382] pci 0000:06:00.7: [1022:14cc] type 00 class 0x040300
[    3.435815] pci 0000:06:00.7: reg 0x10: [mem 0xf0d00000-0xf0d07fff]
[    3.439852] pci 0000:06:00.7: enabling Extended Tags
[    3.443871] pci 0000:06:00.7: PME# supported from D0 D3hot D3cold
[    3.451422] pci 0000:00:07.1: PCI bridge to [bus 06]
[    3.451810] pci 0000:00:07.1:   bridge window [mem 0xf0b00000-0xf0dfffff]
[    3.455900] pci 0000:07:00.0: [1022:14ac] type 00 class 0x130000
[    3.459856] pci 0000:07:00.0: enabling Extended Tags
[    3.467508] pci 0000:07:00.1: [1022:7901] type 00 class 0x010601
[    3.467945] pci 0000:07:00.1: reg 0x24: [mem 0xf0e00000-0xf0e007ff]
[    3.471834] pci 0000:07:00.1: enabling Extended Tags
[    3.475865] pci 0000:07:00.1: PME# supported from D3hot D3cold
[    3.483335] pci 0000:00:07.2: PCI bridge to [bus 07]
[    3.483809] pci 0000:00:07.2:   bridge window [mem 0xf0e00000-0xf0efffff]
[    3.488804] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 40-7f])
[    3.491802] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    3.495903] acpi PNP0A08:03: _OSC: platform does not support [AER LTR]
[    3.499987] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]
[    3.504067] PCI host bridge to bus 0000:40
[    3.507801] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]
[    3.511801] pci_bus 0000:40: root bus resource [mem 0xc0000000-0xc0ffffff window]
[    3.515801] pci_bus 0000:40: root bus resource [mem 0x64020400000-0x699b33fffff window]
[    3.519801] pci_bus 0000:40: root bus resource [bus 40-7f]
[    3.523821] pci 0000:40:00.0: [1022:14a4] type 00 class 0x060000
[    3.531452] pci 0000:40:00.2: [1022:149e] type 00 class 0x080600
[    3.535428] pci 0000:40:00.3: [1022:14a6] type 00 class 0x080700
[    3.535866] pci 0000:40:00.3: enabling Extended Tags
[    3.543399] pci 0000:40:01.0: [1022:149f] type 00 class 0x060000
[    3.547449] pci 0000:40:01.1: [1022:14ab] type 01 class 0x060400
[    3.548039] pci 0000:40:01.1: PME# supported from D0 D3hot D3cold
[    3.555622] pci 0000:40:02.0: [1022:149f] type 00 class 0x060000
[    3.559363] pci 0000:40:03.0: [1022:149f] type 00 class 0x060000
[    3.563468] pci 0000:40:03.1: [1022:14a5] type 01 class 0x060400
[    3.564010] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold
[    3.571594] pci 0000:40:03.2: [1022:14a5] type 01 class 0x060400
[    3.571865] pci 0000:40:03.2: enabling Extended Tags
[    3.575955] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    3.583654] pci 0000:40:03.3: [1022:14a5] type 01 class 0x060400
[    3.583865] pci 0000:40:03.3: enabling Extended Tags
[    3.587948] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold
[    3.595629] pci 0000:40:04.0: [1022:149f] type 00 class 0x060000
[    3.599377] pci 0000:40:05.0: [1022:149f] type 00 class 0x060000
[    3.603283] pci 0000:40:07.0: [1022:149f] type 00 class 0x060000
[    3.607387] pci 0000:40:07.1: [1022:14a7] type 01 class 0x060400
[    3.607858] pci 0000:40:07.1: enabling Extended Tags
[    3.611897] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    3.619641] pci 0000:41:00.0: [1002:6611] type 00 class 0x030000
[    3.619822] pci 0000:41:00.0: reg 0x10: [mem 0x69940000000-0x6997fffffff 64bit pref]
[    3.623814] pci 0000:41:00.0: reg 0x18: [mem 0xc0c00000-0xc0c3ffff 64bit]
[    3.627807] pci 0000:41:00.0: reg 0x20: [io  0x6000-0x60ff]
[    3.631815] pci 0000:41:00.0: reg 0x30: [mem 0xc0c40000-0xc0c5ffff pref]
[    3.635909] pci 0000:41:00.0: supports D1 D2
[    3.639801] pci 0000:41:00.0: PME# supported from D1 D2 D3hot
[    3.647466] pci 0000:41:00.1: [1002:aab0] type 00 class 0x040300
[    3.647822] pci 0000:41:00.1: reg 0x10: [mem 0xc0c60000-0xc0c63fff 64bit]
[    3.651914] pci 0000:41:00.1: supports D1 D2
[    3.659482] pci 0000:40:01.1: PCI bridge to [bus 41]
[    3.659806] pci 0000:40:01.1:   bridge window [io  0x6000-0x6fff]
[    3.663803] pci 0000:40:01.1:   bridge window [mem 0xc0c00000-0xc0cfffff]
[    3.667807] pci 0000:40:01.1:   bridge window [mem 0x69940000000-0x6997fffffff 64bit pref]
[    3.671895] pci 0000:42:00.0: [1d6a:04c0] type 00 class 0x020000
[    3.675822] pci 0000:42:00.0: reg 0x10: [mem 0xc0400000-0xc047ffff 64bit]
[    3.679814] pci 0000:42:00.0: reg 0x18: [mem 0xc04a0000-0xc04a0fff 64bit]
[    3.683814] pci 0000:42:00.0: reg 0x20: [mem 0xc0000000-0xc03fffff 64bit]
[    3.687808] pci 0000:42:00.0: reg 0x30: [mem 0xc0480000-0xc049ffff pref]
[    3.691951] pci 0000:42:00.0: supports D1 D2
[    3.695800] pci 0000:42:00.0: PME# supported from D0 D1 D3hot D3cold
[    3.703642] pci 0000:40:03.1: PCI bridge to [bus 42]
[    3.703809] pci 0000:40:03.1:   bridge window [mem 0xc0000000-0xc04fffff]
[    3.707905] pci 0000:43:00.0: [144d:a808] type 00 class 0x010802
[    3.711923] pci 0000:43:00.0: reg 0x10: [mem 0xc0b00000-0xc0b03fff 64bit]
[    3.719862] pci 0000:40:03.2: PCI bridge to [bus 43]
[    3.723810] pci 0000:40:03.2:   bridge window [mem 0xc0b00000-0xc0bfffff]
[    3.727906] pci 0000:44:00.0: [1022:43f4] type 01 class 0x060400
[    3.731875] pci 0000:44:00.0: enabling Extended Tags
[    3.735918] pci 0000:44:00.0: PME# supported from D0 D3hot D3cold
[    3.743672] pci 0000:40:03.3: PCI bridge to [bus 44-4a]
[    3.743807] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    3.747803] pci 0000:40:03.3:   bridge window [mem 0xc0600000-0xc0afffff]
[    3.751806] pci 0000:40:03.3:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]
[    3.755893] pci 0000:45:00.0: [1022:43f5] type 01 class 0x060400
[    3.759876] pci 0000:45:00.0: enabling Extended Tags
[    3.763918] pci 0000:45:00.0: PME# supported from D0 D3hot D3cold
[    3.771525] pci 0000:45:02.0: [1022:43f5] type 01 class 0x060400
[    3.771875] pci 0000:45:02.0: enabling Extended Tags
[    3.775915] pci 0000:45:02.0: PME# supported from D0 D3hot D3cold
[    3.783408] pci 0000:45:08.0: [1022:43f5] type 01 class 0x060400
[    3.783874] pci 0000:45:08.0: enabling Extended Tags
[    3.787914] pci 0000:45:08.0: PME# supported from D0 D3hot D3cold
[    3.795444] pci 0000:45:0c.0: [1022:43f5] type 01 class 0x060400
[    3.795874] pci 0000:45:0c.0: enabling Extended Tags
[    3.799870] pci 0000:45:0c.0: PME# supported from D0 D3hot D3cold
[    3.807299] pci 0000:45:0d.0: [1022:43f5] type 01 class 0x060400
[    3.807874] pci 0000:45:0d.0: enabling Extended Tags
[    3.811870] pci 0000:45:0d.0: PME# supported from D0 D3hot D3cold
[    3.819371] pci 0000:44:00.0: PCI bridge to [bus 45-4a]
[    3.819807] pci 0000:44:00.0:   bridge window [io  0x5000-0x5fff]
[    3.823804] pci 0000:44:00.0:   bridge window [mem 0xc0600000-0xc0afffff]
[    3.827807] pci 0000:44:00.0:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]
[    3.831922] pci 0000:46:00.0: [14c3:0616] type 00 class 0x028000
[    3.835887] pci 0000:46:00.0: reg 0x10: [mem 0x69980000000-0x699800fffff 64bit pref]
[    3.839870] pci 0000:46:00.0: reg 0x18: [mem 0xc0a00000-0xc0a07fff 64bit]
[    3.843903] pci 0000:46:00.0: enabling Extended Tags
[    3.848004] pci 0000:46:00.0: PME# supported from D0 D3hot D3cold
[    3.855742] pci 0000:45:00.0: PCI bridge to [bus 46]
[    3.855810] pci 0000:45:00.0:   bridge window [mem 0xc0a00000-0xc0afffff]
[    3.859807] pci 0000:45:00.0:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]
[    3.863873] pci 0000:47:00.0: [10ec:8125] type 00 class 0x020000
[    3.867826] pci 0000:47:00.0: reg 0x10: [io  0x5000-0x50ff]
[    3.871834] pci 0000:47:00.0: reg 0x18: [mem 0xc0900000-0xc090ffff 64bit]
[    3.875822] pci 0000:47:00.0: reg 0x20: [mem 0xc0910000-0xc0913fff 64bit]
[    3.880000] pci 0000:47:00.0: supports D1 D2
[    3.883801] pci 0000:47:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.891717] pci 0000:45:02.0: PCI bridge to [bus 47]
[    3.891807] pci 0000:45:02.0:   bridge window [io  0x5000-0x5fff]
[    3.895804] pci 0000:45:02.0:   bridge window [mem 0xc0900000-0xc09fffff]
[    3.899921] pci 0000:48:00.0: [144d:a80c] type 00 class 0x010802
[    3.903906] pci 0000:48:00.0: reg 0x10: [mem 0xc0800000-0xc0803fff 64bit]
[    3.908262] pci 0000:48:00.0: enabling Extended Tags
[    3.915857] pci 0000:45:08.0: PCI bridge to [bus 48]
[    3.919812] pci 0000:45:08.0:   bridge window [mem 0xc0800000-0xc08fffff]
[    3.923892] pci 0000:49:00.0: [1022:43f7] type 00 class 0x0c0330
[    3.927901] pci 0000:49:00.0: reg 0x10: [mem 0xc0700000-0xc0707fff 64bit]
[    3.932189] pci 0000:49:00.0: enabling Extended Tags
[    3.935882] pci 0000:49:00.0: PME# supported from D0 D3hot D3cold
[    3.943548] pci 0000:45:0c.0: PCI bridge to [bus 49]
[    3.943807] pci 0000:45:0c.0:   bridge window [mem 0xc0700000-0xc07fffff]
[    3.947877] pci 0000:4a:00.0: [1022:43f6] type 00 class 0x010601
[    3.951953] pci 0000:4a:00.0: reg 0x24: [mem 0xc0680000-0xc06803ff]
[    3.955828] pci 0000:4a:00.0: reg 0x30: [mem 0xc0600000-0xc067ffff pref]
[    3.959810] pci 0000:4a:00.0: enabling Extended Tags
[    3.963864] pci 0000:4a:00.0: PME# supported from D0 D3hot D3cold
[    3.971407] pci 0000:45:0d.0: PCI bridge to [bus 4a]
[    3.971807] pci 0000:45:0d.0:   bridge window [mem 0xc0600000-0xc06fffff]
[    3.975935] pci 0000:4b:00.0: [1022:14ac] type 00 class 0x130000
[    3.979854] pci 0000:4b:00.0: enabling Extended Tags
[    3.987393] pci 0000:40:07.1: PCI bridge to [bus 4b]
[    3.988108] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    3.991841] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    3.995834] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    3.999843] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    4.003842] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    4.007832] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    4.011833] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    4.015833] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    4.021299] xen:balloon: Initialising balloon driver
[    4.023850] iommu: Default domain type: Translated 
[    4.027802] iommu: DMA domain TLB invalidation policy: lazy mode 
[    4.034609] i2c_designware AMDI0010:00: Unknown Synopsys component type: 0xffffffff
[    4.035829] pps_core: LinuxPPS API ver. 1 registered
[    4.039805] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    4.043805] PTP clock support registered
[    4.047806] EDAC MC: Ver: 3.0.0
[    4.051821] Registered efivars operations
[    4.055896] NetLabel: Initializing
[    4.059801] NetLabel:  domain hash size = 128
[    4.063801] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.067806] NetLabel:  unlabeled traffic allowed by default
[    4.071802] PCI: Using ACPI for IRQ routing
[    4.084761] PCI: pci_cache_line_size set to 64 bytes
[    4.085144] e820: reserve RAM buffer [mem 0x09aff000-0x0bffffff]
[    4.085145] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    4.085146] e820: reserve RAM buffer [mem 0xa04e9000-0xa3ffffff]
[    4.085146] e820: reserve RAM buffer [mem 0xafffab9c-0xafffffff]
[    4.085147] e820: reserve RAM buffer [mem 0x25dee3000-0x25fffffff]
[    4.085159] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[    4.087798] pci 0000:01:00.0: vgaarb: bridge control possible
[    4.087798] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    4.087805] pci 0000:41:00.0: vgaarb: bridge control possible
[    4.091798] pci 0000:41:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    4.091801] vgaarb: loaded
[    4.095193] clocksource: Switched to clocksource tsc-early
[    4.099075] VFS: Disk quotas dquot_6.6.0
[    4.103626] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    4.111645] AppArmor: AppArmor Filesystem Enabled
[    4.117165] pnp: PnP ACPI init
[    4.121198] unchecked MSR access error: RDMSR from 0xc0010058 at rIP: 0xffffffff80277613 (native_read_msr+0x3/0x30)
[    4.133350] Call Trace:
[    4.136184]  <TASK>
[    4.138729]  ? ex_handler_msr.cold+0x5b/0x6a
[    4.143666]  ? fixup_exception+0x81/0x300
[    4.148213]  ? exc_general_protection+0x13c/0x4a0
[    4.153563]  ? asm_exc_general_protection+0x22/0x30
[    4.159060]  ? native_read_msr+0x3/0x30
[    4.163395]  amd_get_mmconfig_range+0x2b/0x80
[    4.168289]  quirk_amd_mmconfig_area+0x36/0xb0
[    4.173299]  pnp_fixup_device+0x39/0x50
[    4.177658]  __pnp_add_device+0x1e/0x1b0
[    4.182328]  pnp_add_device+0x50/0x120
[    4.186728]  pnpacpi_add_device_handler+0x1fa/0x228
[    4.192268]  acpi_ns_get_device_callback+0x11e/0x1d0
[    4.197863]  ? _raw_spin_unlock_irqrestore+0xa/0x40
[    4.203364]  ? down_timeout+0x3a/0x60
[    4.207524]  acpi_ns_walk_namespace+0x1d0/0x260
[    4.212681]  ? _raw_spin_unlock_irqrestore+0xa/0x40
[    4.218228]  ? acpi_get_devices+0xc0/0xc0
[    4.222737]  acpi_get_devices+0xa4/0xc0
[    4.227155]  ? pnpacpi_setup+0x33/0x33
[    4.231396]  ? ispnpidacpi+0x91/0x91
[    4.235436]  pnpacpi_init+0x4b/0x6e
[    4.239421]  do_one_initcall+0x59/0x220
[    4.243812]  kernel_init_freeable+0x221/0x286
[    4.248896]  ? rest_init+0xd0/0xd0
[    4.253013]  kernel_init+0x16/0x130
[    4.257224]  ret_from_fork+0x22/0x30
[    4.261547]  </TASK>
[    4.264100] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[    4.272553] system 00:02: [io  0x0290-0x029f] has been reserved
[    4.279352] system 00:02: [io  0x02a0-0x02af] has been reserved
[    4.286375] system 00:02: [io  0x0290-0x029f] has been reserved
[    4.293385] system 00:02: [io  0x02a0-0x02af] has been reserved
[    4.300361] pnp 00:03: [dma 0 disabled]
[    4.300580] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    4.307649] system 00:04: [io  0x040b] has been reserved
[    4.313994] system 00:04: [io  0x04d6] has been reserved
[    4.320350] system 00:04: [io  0x0c00-0x0c01] has been reserved
[    4.327034] system 00:04: [io  0x0c14] has been reserved
[    4.333042] system 00:04: [io  0x0c50-0x0c51] has been reserved
[    4.339674] system 00:04: [io  0x0c52] has been reserved
[    4.345763] system 00:04: [io  0x0c6c] has been reserved
[    4.351782] system 00:04: [io  0x0c6f] has been reserved
[    4.357770] system 00:04: [io  0x0cd8-0x0cdf] has been reserved
[    4.364466] system 00:04: [io  0x0800-0x089f] has been reserved
[    4.371219] system 00:04: [io  0x0b00-0x0b0f] has been reserved
[    4.377913] system 00:04: [io  0x0b20-0x0b3f] has been reserved
[    4.384684] system 00:04: [io  0x0900-0x090f] has been reserved
[    4.391655] system 00:04: [io  0x0910-0x091f] has been reserved
[    4.398723] system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved
[    4.407078] system 00:04: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    4.414951] system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved
[    4.422782] system 00:04: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    4.431128] system 00:04: [mem 0xfec10000-0xfec10fff] has been reserved
[    4.438693] system 00:04: [mem 0xff000000-0xffffffff] has been reserved
[    4.447563] pnp: PnP ACPI: found 6 devices
[    4.458231] PM-Timer failed consistency check  (0xffffff) - aborting.
[    4.465882] NET: Registered PF_INET protocol family
[    4.471649] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    4.481194] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    4.491042] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    4.500373] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    4.509926] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    4.518654] TCP: Hash tables configured (established 65536 bind 65536)
[    4.526531] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    4.535438] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    4.543564] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    4.552228] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    4.559048] NET: Registered PF_XDP protocol family
[    4.564724] pci 0000:c0:07.1: PCI bridge to [bus c1]
[    4.570575] pci 0000:c0:07.1:   bridge window [mem 0xd5f00000-0xd5ffffff]
[    4.578499] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]
[    4.585678] pci_bus 0000:c0: resource 5 [mem 0xd4000000-0xd5ffffff window]
[    4.593867] pci_bus 0000:c0: resource 6 [mem 0x10020400000-0x159b33fffff window]
[    4.602409] pci_bus 0000:c1: resource 1 [mem 0xd5f00000-0xd5ffffff]
[    4.610020] pci 0000:80:01.2: PCI bridge to [bus 81]
[    4.616023] pci 0000:80:01.2:   bridge window [mem 0xcaf00000-0xcaffffff]
[    4.624129] pci 0000:80:01.3: PCI bridge to [bus 82]
[    4.630125] pci 0000:80:01.3:   bridge window [mem 0xcae00000-0xcaefffff]
[    4.638101] pci 0000:80:03.1: PCI bridge to [bus 83]
[    4.643941] pci 0000:80:03.1:   bridge window [mem 0xcad00000-0xcadfffff]
[    4.652168] pci 0000:85:03.0: PCI bridge to [bus 86]
[    4.658171] pci 0000:85:03.0:   bridge window [io  0x9000-0x9fff]
[    4.665320] pci 0000:85:03.0:   bridge window [mem 0xcac00000-0xcacfffff]
[    4.672977] pci 0000:85:03.0:   bridge window [mem 0x319b3300000-0x319b33fffff 64bit pref]
[    4.682927] pci 0000:85:07.0: PCI bridge to [bus 87]
[    4.688931] pci 0000:85:07.0:   bridge window [io  0x8000-0x8fff]
[    4.696108] pci 0000:85:07.0:   bridge window [mem 0xcab00000-0xcabfffff]
[    4.704179] pci 0000:85:07.0:   bridge window [mem 0x319b3200000-0x319b32fffff 64bit pref]
[    4.713953] pci 0000:84:00.0: PCI bridge to [bus 85-87]
[    4.720095] pci 0000:84:00.0:   bridge window [io  0x8000-0x9fff]
[    4.727300] pci 0000:84:00.0:   bridge window [mem 0xcab00000-0xcacfffff]
[    4.735451] pci 0000:84:00.0:   bridge window [mem 0x319b3200000-0x319b33fffff 64bit pref]
[    4.745164] pci 0000:80:03.2: PCI bridge to [bus 84-87]
[    4.751436] pci 0000:80:03.2:   bridge window [io  0x8000-0x9fff]
[    4.758787] pci 0000:80:03.2:   bridge window [mem 0xcab00000-0xcacfffff]
[    4.766860] pci 0000:80:03.2:   bridge window [mem 0x319b3200000-0x319b33fffff 64bit pref]
[    4.776580] pci 0000:80:07.1: PCI bridge to [bus 88]
[    4.782531] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]
[    4.789683] pci_bus 0000:80: resource 5 [mem 0xca000000-0xcaffffff window]
[    4.797939] pci_bus 0000:80: resource 6 [mem 0x2c020400000-0x319b33fffff window]
[    4.806844] pci_bus 0000:81: resource 1 [mem 0xcaf00000-0xcaffffff]
[    4.814251] pci_bus 0000:82: resource 1 [mem 0xcae00000-0xcaefffff]
[    4.821476] pci_bus 0000:83: resource 1 [mem 0xcad00000-0xcadfffff]
[    4.828847] pci_bus 0000:84: resource 0 [io  0x8000-0x9fff]
[    4.835352] pci_bus 0000:84: resource 1 [mem 0xcab00000-0xcacfffff]
[    4.842802] pci_bus 0000:84: resource 2 [mem 0x319b3200000-0x319b33fffff 64bit pref]
[    4.851925] pci_bus 0000:85: resource 0 [io  0x8000-0x9fff]
[    4.858507] pci_bus 0000:85: resource 1 [mem 0xcab00000-0xcacfffff]
[    4.865991] pci_bus 0000:85: resource 2 [mem 0x319b3200000-0x319b33fffff 64bit pref]
[    4.875209] pci_bus 0000:86: resource 0 [io  0x9000-0x9fff]
[    4.881840] pci_bus 0000:86: resource 1 [mem 0xcac00000-0xcacfffff]
[    4.889237] pci_bus 0000:86: resource 2 [mem 0x319b3300000-0x319b33fffff 64bit pref]
[    4.898308] pci_bus 0000:87: resource 0 [io  0x8000-0x8fff]
[    4.904869] pci_bus 0000:87: resource 1 [mem 0xcab00000-0xcabfffff]
[    4.912328] pci_bus 0000:87: resource 2 [mem 0x319b3200000-0x319b32fffff 64bit pref]
[    4.921484] pci 0000:00:01.1: PCI bridge to [bus 01]
[    4.927158] pci 0000:00:01.1:   bridge window [io  0x3000-0x3fff]
[    4.934039] pci 0000:00:01.1:   bridge window [mem 0xf0f00000-0xf0ffffff]
[    4.941993] pci 0000:00:01.1:   bridge window [mem 0x4d800000000-0x4d9001fffff 64bit pref]
[    4.951825] pci 0000:00:05.1: PCI bridge to [bus 02]
[    4.957832] pci 0000:00:05.2: PCI bridge to [bus 03]
[    4.963780] pci 0000:00:05.3: PCI bridge to [bus 04]
[    4.969514] pci 0000:00:05.4: PCI bridge to [bus 05]
[    4.975491] pci 0000:00:07.1: PCI bridge to [bus 06]
[    4.981392] pci 0000:00:07.1:   bridge window [mem 0xf0b00000-0xf0dfffff]
[    4.989493] pci 0000:00:07.2: PCI bridge to [bus 07]
[    4.995433] pci 0000:00:07.2:   bridge window [mem 0xf0e00000-0xf0efffff]
[    5.003502] pci_bus 0000:00: resource 4 [io  0x0000-0x02e7 window]
[    5.010801] pci_bus 0000:00: resource 5 [io  0x0300-0x03af window]
[    5.017995] pci_bus 0000:00: resource 6 [io  0x0400-0x0cf7 window]
[    5.025411] pci_bus 0000:00: resource 7 [io  0x03b0-0x03df window]
[    5.032895] pci_bus 0000:00: resource 8 [io  0x1000-0x3fff window]
[    5.039929] pci_bus 0000:00: resource 9 [mem 0x000a0000-0x000dffff window]
[    5.048247] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xf0ffffff window]
[    5.056210] pci_bus 0000:00: resource 11 [mem 0x48020400000-0x4d9b33fffff window]
[    5.064970] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    5.071609] pci_bus 0000:01: resource 1 [mem 0xf0f00000-0xf0ffffff]
[    5.078850] pci_bus 0000:01: resource 2 [mem 0x4d800000000-0x4d9001fffff 64bit pref]
[    5.088104] pci_bus 0000:06: resource 1 [mem 0xf0b00000-0xf0dfffff]
[    5.095223] pci_bus 0000:07: resource 1 [mem 0xf0e00000-0xf0efffff]
[    5.102336] pci 0000:40:01.1: PCI bridge to [bus 41]
[    5.108314] pci 0000:40:01.1:   bridge window [io  0x6000-0x6fff]
[    5.115645] pci 0000:40:01.1:   bridge window [mem 0xc0c00000-0xc0cfffff]
[    5.123716] pci 0000:40:01.1:   bridge window [mem 0x69940000000-0x6997fffffff 64bit pref]
[    5.133423] pci 0000:40:03.1: PCI bridge to [bus 42]
[    5.139379] pci 0000:40:03.1:   bridge window [mem 0xc0000000-0xc04fffff]
[    5.147328] pci 0000:40:03.2: PCI bridge to [bus 43]
[    5.153127] pci 0000:40:03.2:   bridge window [mem 0xc0b00000-0xc0bfffff]
[    5.161116] pci 0000:45:00.0: PCI bridge to [bus 46]
[    5.167109] pci 0000:45:00.0:   bridge window [mem 0xc0a00000-0xc0afffff]
[    5.175120] pci 0000:45:00.0:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]
[    5.185037] pci 0000:45:02.0: PCI bridge to [bus 47]
[    5.190958] pci 0000:45:02.0:   bridge window [io  0x5000-0x5fff]
[    5.198310] pci 0000:45:02.0:   bridge window [mem 0xc0900000-0xc09fffff]
[    5.206375] pci 0000:45:08.0: PCI bridge to [bus 48]
[    5.212223] pci 0000:45:08.0:   bridge window [mem 0xc0800000-0xc08fffff]
[    5.220396] pci 0000:45:0c.0: PCI bridge to [bus 49]
[    5.226282] pci 0000:45:0c.0:   bridge window [mem 0xc0700000-0xc07fffff]
[    5.234256] pci 0000:45:0d.0: PCI bridge to [bus 4a]
[    5.240142] pci 0000:45:0d.0:   bridge window [mem 0xc0600000-0xc06fffff]
[    5.248228] pci 0000:44:00.0: PCI bridge to [bus 45-4a]
[    5.254523] pci 0000:44:00.0:   bridge window [io  0x5000-0x5fff]
[    5.261504] pci 0000:44:00.0:   bridge window [mem 0xc0600000-0xc0afffff]
[    5.269551] pci 0000:44:00.0:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]
[    5.279283] pci 0000:40:03.3: PCI bridge to [bus 44-4a]
[    5.285583] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]
[    5.292712] pci 0000:40:03.3:   bridge window [mem 0xc0600000-0xc0afffff]
[    5.300819] pci 0000:40:03.3:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]
[    5.310118] pci 0000:40:07.1: PCI bridge to [bus 4b]
[    5.316065] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]
[    5.323399] pci_bus 0000:40: resource 5 [mem 0xc0000000-0xc0ffffff window]
[    5.331605] pci_bus 0000:40: resource 6 [mem 0x64020400000-0x699b33fffff window]
[    5.340326] pci_bus 0000:41: resource 0 [io  0x6000-0x6fff]
[    5.346602] pci_bus 0000:41: resource 1 [mem 0xc0c00000-0xc0cfffff]
[    5.353657] pci_bus 0000:41: resource 2 [mem 0x69940000000-0x6997fffffff 64bit pref]
[    5.362656] pci_bus 0000:42: resource 1 [mem 0xc0000000-0xc04fffff]
[    5.370070] pci_bus 0000:43: resource 1 [mem 0xc0b00000-0xc0bfffff]
[    5.377419] pci_bus 0000:44: resource 0 [io  0x5000-0x5fff]
[    5.383902] pci_bus 0000:44: resource 1 [mem 0xc0600000-0xc0afffff]
[    5.390938] pci_bus 0000:44: resource 2 [mem 0x69980000000-0x699800fffff 64bit pref]
[    5.399640] pci_bus 0000:45: resource 0 [io  0x5000-0x5fff]
[    5.405933] pci_bus 0000:45: resource 1 [mem 0xc0600000-0xc0afffff]
[    5.413047] pci_bus 0000:45: resource 2 [mem 0x69980000000-0x699800fffff 64bit pref]
[    5.422360] pci_bus 0000:46: resource 1 [mem 0xc0a00000-0xc0afffff]
[    5.429853] pci_bus 0000:46: resource 2 [mem 0x69980000000-0x699800fffff 64bit pref]
[    5.439051] pci_bus 0000:47: resource 0 [io  0x5000-0x5fff]
[    5.445331] pci_bus 0000:47: resource 1 [mem 0xc0900000-0xc09fffff]
[    5.452643] pci_bus 0000:48: resource 1 [mem 0xc0800000-0xc08fffff]
[    5.459771] pci_bus 0000:49: resource 1 [mem 0xc0700000-0xc07fffff]
[    5.467221] pci_bus 0000:4a: resource 1 [mem 0xc0600000-0xc06fffff]
[    5.475068] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    5.482420] pci 0000:41:00.1: D0 power state depends on 0000:41:00.0
[    5.489750] PCI: CLS 64 bytes, default 64
[    5.494305] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    5.494347] Trying to unpack rootfs image as initramfs...
[    5.501628] software IO TLB: mapped [mem 0x000000009c4e9000-0x00000000a04e9000] (64MB)
[    5.501650] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3c8a3bbe440, max_idle_ns: 440795298187 ns
[    5.528378] clocksource: Switched to clocksource tsc
[    5.535117] Initialise system trusted keyrings
[    5.540069] Key type blacklist registered
[    5.544718] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    5.552622] zbud: loaded
[    5.556556] integrity: Platform Keyring initialized
[    5.562022] integrity: Machine keyring initialized
[    5.567469] Key type asymmetric registered
[    5.572107] Asymmetric key parser 'x509' registered
[    5.622406] Freeing initrd memory: 41504K
[    5.631840] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[    5.638288] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    5.646646] io scheduler mq-deadline registered
[    5.654018] amd_gpio AMDI0030:00: error -EINVAL: IRQ index 0 not found
[    5.661471] amd_gpio: probe of AMDI0030:00 failed with error -22
[    5.668467] pcieport 0000:c0:00.3: PME: Signaling with IRQ 270
[    5.675151] pcieport 0000:c0:07.1: PME: Signaling with IRQ 271
[    5.681925] pcieport 0000:80:00.3: PME: Signaling with IRQ 273
[    5.688773] pcieport 0000:80:01.2: PME: Signaling with IRQ 274
[    5.695546] pcieport 0000:80:01.3: PME: Signaling with IRQ 275
[    5.702290] pcieport 0000:80:03.1: PME: Signaling with IRQ 276
[    5.709045] pcieport 0000:80:03.2: PME: Signaling with IRQ 277
[    5.715884] pcieport 0000:80:07.1: PME: Signaling with IRQ 279
[    5.723158] pcieport 0000:00:00.3: PME: Signaling with IRQ 284
[    5.730001] pcieport 0000:00:01.1: PME: Signaling with IRQ 285
[    5.736902] pcieport 0000:00:05.1: PME: Signaling with IRQ 286
[    5.743843] pcieport 0000:00:05.2: PME: Signaling with IRQ 287
[    5.750681] pcieport 0000:00:05.3: PME: Signaling with IRQ 288
[    5.757587] pcieport 0000:00:05.4: PME: Signaling with IRQ 289
[    5.764379] pcieport 0000:00:07.1: PME: Signaling with IRQ 290
[    5.771075] pcieport 0000:00:07.2: PME: Signaling with IRQ 291
[    5.777873] pcieport 0000:40:00.3: PME: Signaling with IRQ 293
[    5.784569] pcieport 0000:40:01.1: PME: Signaling with IRQ 294
[    5.791420] pcieport 0000:40:03.1: PME: Signaling with IRQ 295
[    5.798184] pcieport 0000:40:03.2: PME: Signaling with IRQ 296
[    5.804919] pcieport 0000:40:03.3: PME: Signaling with IRQ 297
[    5.811698] pcieport 0000:40:07.1: PME: Signaling with IRQ 299
[    5.819258] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    5.828091] xen_mcelog: Failed to get CPU numbers
[    5.833807] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    5.843510] serial8250: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    5.852389] hpet_acpi_add: no address or irqs in _CRS
[    5.858065] Linux agpgart interface v0.103
[    5.863598] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
[    5.877200] i8042: PNP: No PS/2 controller found.
[    5.882562] mousedev: PS/2 mouse device common for all mice
[    5.889320] rtc_cmos 00:01: RTC can wake from S4
[    5.894551] rtc_cmos 00:01: registered as rtc0
[    5.899528] rtc_cmos 00:01: setting system clock to 2024-01-19T06:38:44 UTC (1705646324)
[    5.908629] rtc_cmos 00:01: no alarms, y3k, 114 bytes nvram
[    5.916663] ledtrig-cpu: registered to indicate activity on CPUs
[    5.928670] NET: Registered PF_INET6 protocol family
[    5.937738] Segment Routing with IPv6
[    5.941798] In-situ OAM (IOAM) with IPv6
[    5.946250] mip6: Mobile IPv6
[    5.949665] NET: Registered PF_PACKET protocol family
[    5.955522] mpls_gso: MPLS GSO support
[    5.962482] IPI shorthand broadcast: enabled
[    5.967308] sched_clock: Marking stable (5869880176, 97403768)->(8256363102, -2289079158)
[    5.977429] registered taskstats version 1
[    5.982002] Loading compiled-in X.509 certificates
[    5.997053] Loaded X.509 cert 'Build time autogenerated kernel key: 8d2e891db2f3d12bc81f66f637de2fd13dec7170'
[    6.009583] zswap: loaded using pool lzo/zbud
[    6.015068] Key type .fscrypt registered
[    6.019501] Key type fscrypt-provisioning registered
[    6.027963] Key type encrypted registered
[    6.032484] AppArmor: AppArmor sha1 policy hashing enabled
[    6.038858] ima: No TPM chip found, activating TPM-bypass!
[    6.045020] ima: Allocated hash algorithm: sha256
[    6.050443] ima: No architecture policies found
[    6.055701] evm: Initialising EVM extended attributes:
[    6.061691] evm: security.selinux
[    6.065559] evm: security.SMACK64 (disabled)
[    6.070542] evm: security.SMACK64EXEC (disabled)
[    6.075829] evm: security.SMACK64TRANSMUTE (disabled)
[    6.081532] evm: security.SMACK64MMAP (disabled)
[    6.086745] evm: security.apparmor
[    6.090711] evm: security.ima
[    6.094086] evm: security.capability
[    6.098276] evm: HMAC attrs: 0x1
[    6.148054] Freeing unused decrypted memory: 2036K
[    6.154111] Freeing unused kernel image (initmem) memory: 2792K
[    6.189489] Write protecting the kernel read-only data: 26624k
[    6.197121] Freeing unused kernel image (text/rodata gap) memory: 2040K
[    6.205111] Freeing unused kernel image (rodata/data gap) memory: 1188K
[    6.232430] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    6.239799] Run /init as init process
[    6.243969]   with arguments:
[    6.243970]     /init
[    6.243970]   with environment:
[    6.243971]     HOME=/
[    6.243971]     TERM=linux
[    6.321366] gpio_generic: module verification failed: signature and/or required key missing - tainting kernel
[    6.341632] MACsec IEEE 802.1AE
[    6.341805] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    6.353936] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    6.362750] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[    6.374615] SCSI subsystem initialized
[    6.382785] ACPI: bus type USB registered
[    6.387498] usbcore: registered new interface driver usbfs
[    6.393912] usbcore: registered new interface driver hub
[    6.400241] usbcore: registered new device driver usb
[    6.410069] atlantic 0000:42:00.0: enabling device (0000 -> 0002)
[    6.443766] libata version 3.00 loaded.
[    6.461005] atlantic: Detect ATL2FW 1030022
[    6.487089] r8169 0000:86:00.0: enabling device (0000 -> 0003)
[    6.494846] xhci_hcd 0000:c1:00.4: xHCI Host Controller
[    6.501048] xhci_hcd 0000:c1:00.4: new USB bus registered, assigned bus number 1
[    6.510072] xhci_hcd 0000:c1:00.4: hcc params 0x0118ffc5 hci version 0x120 quirks 0x0000000200000410
[    6.520615] ahci 0000:07:00.1: version 3.0
[    6.520701] ahci 0000:07:00.1: BAR 5: can't reserve [mem 0xf0e00000-0xf0e007ff]
[    6.521144] xhci_hcd 0000:c1:00.4: xHCI Host Controller
[    6.529204] ahci: probe of 0000:07:00.1 failed with error -16
[    6.535409] xhci_hcd 0000:c1:00.4: new USB bus registered, assigned bus number 2
[    6.542262] ahci 0000:4a:00.0: SSS flag set, parallel bus scan disabled
[    6.550746] xhci_hcd 0000:c1:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    6.558545] ahci 0000:4a:00.0: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0xf impl SATA mode
[    6.566771] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[    6.575823] ahci 0000:4a:00.0: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
[    6.585658] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.598332] scsi host0: ahci
[    6.606539] usb usb1: Product: xHCI Host Controller
[    6.606540] usb usb1: Manufacturer: Linux 6.1.69 xhci-hcd
[    6.606540] usb usb1: SerialNumber: 0000:c1:00.4
[    6.606638] hub 1-0:1.0: USB hub found
[    6.610227] scsi host1: ahci
[    6.615854] hub 1-0:1.0: 2 ports detected
[    6.622363] scsi host2: ahci
[    6.627716] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    6.632232] scsi host3: ahci
[    6.635319] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[    6.640065] scsi host4: ahci
[    6.643212] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.643214] usb usb2: Product: xHCI Host Controller
[    6.643214] usb usb2: Manufacturer: Linux 6.1.69 xhci-hcd
[    6.643214] usb usb2: SerialNumber: 0000:c1:00.4
[    6.643302] hub 2-0:1.0: USB hub found
[    6.652849] scsi host5: ahci
[    6.656184] hub 2-0:1.0: 2 ports detected
[    6.665462] ata1: SATA max UDMA/133 abar m1024@0xc0680000 port 0xc0680100 irq 328
[    6.668979] xhci_hcd 0000:82:00.0: xHCI Host Controller
[    6.677504] ata2: SATA max UDMA/133 abar m1024@0xc0680000 port 0xc0680180 irq 328
[    6.683310] xhci_hcd 0000:82:00.0: new USB bus registered, assigned bus number 3
[    6.689734] ata3: SATA max UDMA/133 abar m1024@0xc0680000 port 0xc0680200 irq 328
[    6.695208] xhci_hcd 0000:82:00.0: hcc params 0x200071e1 hci version 0x100 quirks 0x0000000000000410
[    6.699598] ata4: SATA max UDMA/133 abar m1024@0xc0680000 port 0xc0680280 irq 328
[    6.703564] xhci_hcd 0000:82:00.0: xHCI Host Controller
[    6.707743] ata5: DUMMY
[    6.716697] xhci_hcd 0000:82:00.0: new USB bus registered, assigned bus number 4
[    6.722599] ata6: DUMMY
[    6.725478] atlantic 0000:42:00.0 enp66s0: renamed from eth0
[    6.731131] xhci_hcd 0000:82:00.0: Host supports USB 3.0 SuperSpeed
[    6.801689] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[    6.810979] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.819291] usb usb3: Product: xHCI Host Controller
[    6.824912] usb usb3: Manufacturer: Linux 6.1.69 xhci-hcd
[    6.831012] usb usb3: SerialNumber: 0000:82:00.0
[    6.836488] hub 3-0:1.0: USB hub found
[    6.840774] hub 3-0:1.0: 4 ports detected
[    6.845510] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    6.854629] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[    6.863952] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.872133] usb usb4: Product: xHCI Host Controller
[    6.877729] usb usb4: Manufacturer: Linux 6.1.69 xhci-hcd
[    6.883857] usb usb4: SerialNumber: 0000:82:00.0
[    6.889366] hub 4-0:1.0: USB hub found
[    6.893642] hub 4-0:1.0: 4 ports detected
[    6.898344] xhci_hcd 0000:83:00.0: xHCI Host Controller
[    6.904314] xhci_hcd 0000:83:00.0: new USB bus registered, assigned bus number 5
[    6.921764] r8169 0000:86:00.0 eth0: RTL8168evl/8111evl, 00:13:3b:12:71:a0, XID 2c9, IRQ 317
[    6.931618] r8169 0000:86:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    6.941368] r8169 0000:87:00.0: enabling device (0000 -> 0003)
[    6.951386] r8169 0000:87:00.0 eth1: RTL8168evl/8111evl, 00:13:3b:12:71:a1, XID 2c9, IRQ 339
[    6.961023] r8169 0000:87:00.0 eth1: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    6.968441] xhci_hcd 0000:83:00.0: hcc params 0x0200ef80 hci version 0x110 quirks 0x0000000000800010
[    6.970962] r8169 0000:47:00.0: enabling device (0000 -> 0003)
[    6.981940] xhci_hcd 0000:83:00.0: xHCI Host Controller
[    6.994030] xhci_hcd 0000:83:00.0: new USB bus registered, assigned bus number 6
[    7.002444] xhci_hcd 0000:83:00.0: Host supports USB 3.2 Enhanced SuperSpeed
[    7.003229] r8169 0000:47:00.0 eth2: RTL8125B, 9c:6b:00:3d:11:99, XID 641, IRQ 348
[    7.010466] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[    7.019357] r8169 0000:47:00.0 eth2: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    7.038393] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.046691] usb usb5: Product: xHCI Host Controller
[    7.052293] usb usb5: Manufacturer: Linux 6.1.69 xhci-hcd
[    7.058373] usb usb5: SerialNumber: 0000:83:00.0
[    7.063751] hub 5-0:1.0: USB hub found
[    7.067999] hub 5-0:1.0: 1 port detected
[    7.072620] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    7.081712] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[    7.091129] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.099394] usb usb6: Product: xHCI Host Controller
[    7.104959] usb usb6: Manufacturer: Linux 6.1.69 xhci-hcd
[    7.111067] usb usb6: SerialNumber: 0000:83:00.0
[    7.116504] hub 6-0:1.0: USB hub found
[    7.120675] hub 6-0:1.0: 1 port detected
[    7.125230] xhci_hcd 0000:06:00.4: init 0000:06:00.4 fail, -16
[    7.131778] usb 3-2: new high-speed USB device number 2 using xhci_hcd
[    7.137437] xhci_hcd: probe of 0000:06:00.4 failed with error -16
[    7.146166] xhci_hcd 0000:49:00.0: xHCI Host Controller
[    7.151996] xhci_hcd 0000:49:00.0: new USB bus registered, assigned bus number 7
[    7.197458] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    7.205549] ata1.00: ATA-9: ST3000DM008-2DM166, CC26, max UDMA/133
[    7.213056] ata1.00: 5860533168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    7.216391] xhci_hcd 0000:49:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[    7.222212] ata1.00: configured for UDMA/133
[    7.232051] xhci_hcd 0000:49:00.0: xHCI Host Controller
[    7.236462] scsi 0:0:0:0: Direct-Access     ATA      ST3000DM008-2DM1 CC26 PQ: 0 ANSI: 5
[    7.242237] xhci_hcd 0000:49:00.0: new USB bus registered, assigned bus number 8
[    7.242238] xhci_hcd 0000:49:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    7.242270] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[    7.277190] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.285569] usb usb7: Product: xHCI Host Controller
[    7.291191] usb usb7: Manufacturer: Linux 6.1.69 xhci-hcd
[    7.293250] usb 3-2: New USB device found, idVendor=2109, idProduct=2822, bcdDevice= 7.34
[    7.297338] usb usb7: SerialNumber: 0000:49:00.0
[    7.297451] hub 7-0:1.0: USB hub found
[    7.306617] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.311914] hub 7-0:1.0: 12 ports detected
[    7.316213] usb 3-2: Product: USB2.0 Hub             
[    7.329913] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
[    7.334735] usb 3-2: Manufacturer: VIA Labs, Inc.         
[    7.343794] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[    7.350070] usb 3-2: SerialNumber: 000000001
[    7.359498] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.365219] hub 3-2:1.0: USB hub found
[    7.372526] usb usb8: Product: xHCI Host Controller
[    7.377043] hub 3-2:1.0: 4 ports detected
[    7.382297] usb usb8: Manufacturer: Linux 6.1.69 xhci-hcd
[    7.382297] usb usb8: SerialNumber: 0000:49:00.0
[    7.382421] hub 8-0:1.0: USB hub found
[    7.402603] hub 8-0:1.0: 6 ports detected
[    7.409441] usb: port power management may be unreliable
[    7.449153] usb 4-2: new SuperSpeed USB device number 2 using xhci_hcd
[    7.681431] usb 7-5: new high-speed USB device number 2 using xhci_hcd
[    7.725443] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    7.733430] ata2.00: ATA-8: ST1500DL003-9VT16L, CC32, max UDMA/133
[    7.740799] ata2.00: 2930277168 sectors, multi 16: LBA48 NCQ (depth 32)
[    7.749175] ata2.00: configured for UDMA/133
[    7.754384] scsi 1:0:0:0: Direct-Access     ATA      ST1500DL003-9VT1 CC32 PQ: 0 ANSI: 5
[    7.853975] usb 4-2: New USB device found, idVendor=2109, idProduct=0822, bcdDevice= 7.34
[    7.863200] usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.871373] usb 4-2: Product: USB3.1 Hub             
[    7.877110] usb 4-2: Manufacturer: VIA Labs, Inc.         
[    7.883349] usb 4-2: SerialNumber: 000000001
[    7.888838] hub 4-2:1.0: USB hub found
[    7.893323] hub 4-2:1.0: 4 ports detected
[    7.925795] usb 7-5: New USB device found, idVendor=0451, idProduct=8043, bcdDevice= 1.00
[    7.934944] usb 7-5: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[    7.943127] usb 7-5: SerialNumber: 18050079BFB9
[    7.955976] hub 7-5:1.0: USB hub found
[    7.962785] hub 7-5:1.0: 4 ports detected
[    8.042094] usb 8-5: new SuperSpeed USB device number 2 using xhci_hcd
[    8.071034] usb 8-5: New USB device found, idVendor=0451, idProduct=8041, bcdDevice= 1.00
[    8.080137] usb 8-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.095601] hub 8-5:1.0: USB hub found
[    8.099854] hub 8-5:1.0: 4 ports detected
[    8.125517] usb 4-3: new SuperSpeed USB device number 3 using xhci_hcd
[    8.150469] usb 4-3: New USB device found, idVendor=1058, idProduct=0820, bcdDevice=10.12
[    8.159597] usb 4-3: New USB device strings: Mfr=1, Product=2, SerialNumber=5
[    8.167699] usb 4-3: Product: My Passport 0820
[    8.172759] usb 4-3: Manufacturer: Western Digital
[    8.178187] usb 4-3: SerialNumber: 575853314543344A32543543
[    8.237450] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    8.245266] ata3.00: ATA-9: ST3000DM008-2DM166, CC26, max UDMA/133
[    8.252601] ata3.00: 5860533168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    8.261808] ata3.00: configured for UDMA/133
[    8.265420] usb 7-7: new high-speed USB device number 3 using xhci_hcd
[    8.266998] scsi 2:0:0:0: Direct-Access     ATA      ST3000DM008-2DM1 CC26 PQ: 0 ANSI: 5
[    8.309495] usb 4-4: new SuperSpeed USB device number 4 using xhci_hcd
[    8.334304] usb 4-4: New USB device found, idVendor=0bc2, idProduct=ac25, bcdDevice= 1.00
[    8.343377] usb 4-4: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[    8.351580] usb 4-4: Product: BUP Portable
[    8.356193] usb 4-4: Manufacturer: Seagate
[    8.360914] usb 4-4: SerialNumber: 00000000NAB9K4GM
[    8.461445] usb 3-2.2: new low-speed USB device number 3 using xhci_hcd
[    8.506803] usb 7-7: New USB device found, idVendor=067b, idProduct=2586, bcdDevice= 0.00
[    8.516057] usb 7-7: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[    8.524120] usb 7-7: Product: USB 2.0 Hub            
[    8.529867] usb 7-7: Manufacturer: USB Device  
[    8.543976] hub 7-7:1.0: USB hub found
[    8.550795] hub 7-7:1.0: 4 ports detected
[    8.622035] usb 3-2.2: New USB device found, idVendor=1bcf, idProduct=0005, bcdDevice= 0.14
[    8.631360] usb 3-2.2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    8.639629] usb 3-2.2: Product: USB Optical Mouse
[    8.757451] ata4: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    8.761421] usb 7-8: new high-speed USB device number 4 using xhci_hcd
[    8.775894] ata4.00: ATA-8: OCZ-VERTEX3 MI, 2.25, max UDMA/133
[    8.777419] usb 3-2.3: new full-speed USB device number 4 using xhci_hcd
[    8.782646] ata4.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    8.806296] ata4.00: configured for UDMA/133
[    8.811604] scsi 3:0:0:0: Direct-Access     ATA      OCZ-VERTEX3 MI   2.25 PQ: 0 ANSI: 5
[    8.823983] nvme nvme0: pci function 0000:81:00.0
[    8.829638] nvme nvme1: pci function 0000:43:00.0
[    8.833860] nvme nvme0: Shutdown timeout set to 10 seconds
[    8.835062] nvme nvme2: pci function 0000:48:00.0
[    8.841593] sd 1:0:0:0: [sda] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB)
[    8.841644] sd 3:0:0:0: [sdb] 468862128 512-byte logical blocks: (240 GB/224 GiB)
[    8.841666] sd 0:0:0:0: [sdd] 5860533168 512-byte logical blocks: (3.00 TB/2.73 TiB)
[    8.841671] sd 0:0:0:0: [sdd] 4096-byte physical blocks
[    8.841672] sd 3:0:0:0: [sdb] Write Protect is off
[    8.841675] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    8.841680] sd 0:0:0:0: [sdd] Write Protect is off
[    8.841681] sd 2:0:0:0: [sdc] 5860533168 512-byte logical blocks: (3.00 TB/2.73 TiB)
[    8.841681] sd 0:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[    8.841684] sd 2:0:0:0: [sdc] 4096-byte physical blocks
[    8.841697] sd 0:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    8.841711] sd 2:0:0:0: [sdc] Write Protect is off
[    8.841713] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    8.841715] sd 0:0:0:0: [sdd] Preferred minimum I/O size 4096 bytes
[    8.841720] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    8.841783] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    8.841798] sd 3:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
[    8.841846] sd 2:0:0:0: [sdc] Preferred minimum I/O size 4096 bytes
[    8.842293] nvme nvme1: missing or invalid SUBNQN field.
[    8.842305] nvme nvme1: Shutdown timeout set to 8 seconds
[    8.843302]  sdb: sdb1
[    8.843375] sd 3:0:0:0: [sdb] Attached SCSI disk
[    8.852354] nvme nvme2: Shutdown timeout set to 10 seconds
[    8.852442] nvme nvme0: 16/0/0 default/read/poll queues
[    8.854515]  nvme0n1: p1 p2
[    8.855766] sd 1:0:0:0: [sda] Write Protect is off
[    8.869164] nvme nvme2: 16/0/0 default/read/poll queues
[    8.873755] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    8.875603] nvme nvme1: 32/0/0 default/read/poll queues
[    8.879547]  nvme1n1: p1 p2 p3
[    8.881984]  nvme2n1: p1 p2
[    8.885499] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    8.891680]  sdc: sdc1 sdc2 sdc3
[    8.899989] sd 1:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    8.906280] sd 2:0:0:0: [sdc] Attached SCSI disk
[    8.924937]  sdd: sdd1 sdd2 sdd3
[    8.940115] usb-storage 4-3:1.0: USB Mass Storage device detected
[    8.941995] usb 3-2.3: New USB device found, idVendor=1a7c, idProduct=0192, bcdDevice= 1.13
[    8.941997] usb 3-2.3: New USB device strings: Mfr=1, Product=6, SerialNumber=0
[    8.941999] usb 3-2.3: Product: Evoluent VerticalMouse 4 Left
[    8.941999] usb 3-2.3: Manufacturer: Kingsis Peripherals
[    8.950848] sd 0:0:0:0: [sdd] Attached SCSI disk
[    8.952808]  sda: sda1 sda2 sda3
[    8.952901] sd 1:0:0:0: [sda] Attached SCSI disk
[    8.958100] scsi host6: usb-storage 4-3:1.0
[    8.977566] r8169 0000:86:00.0 enp134s0: renamed from eth0
[    8.977852] usbcore: registered new interface driver usb-storage
[    8.992650] hid: raw HID events driver (C) Jiri Kosina
[    9.014778] usb 7-8: New USB device found, idVendor=067b, idProduct=2586, bcdDevice= 0.00
[    9.049658] scsi host7: uas
[    9.052788] usb 7-8: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[    9.056654] usbcore: registered new interface driver uas
[    9.057025] scsi 7:0:0:0: Direct-Access     Seagate  BUP Portable     0004 PQ: 0 ANSI: 6
[    9.058176] sd 7:0:0:0: [sde] 7814037167 512-byte logical blocks: (4.00 TB/3.64 TiB)
[    9.058177] sd 7:0:0:0: [sde] 4096-byte physical blocks
[    9.058255] sd 7:0:0:0: [sde] Write Protect is off
[    9.058256] sd 7:0:0:0: [sde] Mode Sense: 4f 00 00 00
[    9.058414] sd 7:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    9.058573] sd 7:0:0:0: [sde] Preferred minimum I/O size 4096 bytes
[    9.058574] sd 7:0:0:0: [sde] Optimal transfer size 33553920 bytes not a multiple of preferred minimum block size (4096 bytes)
[    9.063563] usb 7-8: Product: USB 2.0 Hub            
[    9.117929] usbcore: registered new interface driver usbhid
[    9.119979] usb 7-8: Manufacturer: USB Device  
[    9.126743] usbhid: USB HID core driver
[    9.155007] hub 7-8:1.0: USB hub found
[    9.165516] r8169 0000:87:00.0 enp135s0: renamed from eth1
[    9.170778] hub 7-8:1.0: 4 ports detected
[    9.308011] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    9.309453] r8169 0000:47:00.0 enp71s0: renamed from eth2
[    9.313451] usb 7-7.1: new full-speed USB device number 5 using xhci_hcd
[    9.322288] device-mapper: uevent: version 1.0.3
[    9.341599] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[    9.354999]  sde: sde3 sde9
[    9.358403] sd 7:0:0:0: [sde] Attached SCSI disk
[    9.366005] input: USB Optical Mouse as /devices/pci0000:80/0000:80:01.3/0000:82:00.0/usb3/3-2/3-2.2/3-2.2:1.0/0003:1BCF:0005.0001/input/input0
[    9.380739] hid-generic 0003:1BCF:0005.0001: input,hidraw0: USB HID v1.10 Mouse [USB Optical Mouse] on usb-0000:82:00.0-2.2/input0
[    9.394206] input: Kingsis Peripherals Evoluent VerticalMouse 4 Left as /devices/pci0000:80/0000:80:01.3/0000:82:00.0/usb3/3-2/3-2.3/3-2.3:1.0/0003:1A7C:0192.0002/input/input1
[    9.412381] hid-generic 0003:1A7C:0192.0002: input,hidraw1: USB HID v1.11 Mouse [Kingsis Peripherals Evoluent VerticalMouse 4 Left] on usb-0000:82:00.0-2.3/input0
[    9.497490] raid6: avx512x4 gen() 63860 MB/s
[    9.569449] raid6: avx512x2 gen() 66038 MB/s
[    9.636800] usb 7-7.1: New USB device found, idVendor=051d, idProduct=0002, bcdDevice= 0.90
[    9.641519] raid6: avx512x1 gen() 65217 MB/s
[    9.646089] usb 7-7.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    9.659151] usb 7-7.1: Product: Back-UPS XS 1000M FW:945.d9 .D USB FW:d9     
[    9.667176] usb 7-7.1: Manufacturer: American Power Conversion
[    9.673733] usb 7-7.1: SerialNumber: 3B1831X26513  
[    9.717420] raid6: avx2x4   gen() 65395 MB/s
[    9.737505] usb 7-9: new full-speed USB device number 6 using xhci_hcd
[    9.745217] hid-generic 0003:051D:0002.0003: hiddev0,hidraw2: USB HID v1.00 Device [American Power Conversion Back-UPS XS 1000M FW:945.d9 .D USB FW:d9     ] on usb-0000:49:00.0-7.1/input0
[    9.789492] raid6: avx2x2   gen() 65294 MB/s
[    9.861421] raid6: avx2x1   gen() 55991 MB/s
[    9.866336] raid6: using algorithm avx512x2 gen() 66038 MB/s
[    9.937465] raid6: .... xor() 43377 MB/s, rmw enabled
[    9.943189] raid6: using avx512x2 recovery algorithm
[    9.951061] xor: automatically using best checksumming function   avx       
[    9.975038] async_tx: api initialized (async)
[    9.993709] device-mapper: raid: Loading target version 1.15.1
[   10.001897] scsi 6:0:0:0: Direct-Access     WD       My Passport 0820 1012 PQ: 0 ANSI: 6
[   10.011929] scsi 6:0:0:1: Enclosure         WD       SES Device       1012 PQ: 0 ANSI: 6
[   10.023781] sd 6:0:0:0: [sdf] 3906963456 512-byte logical blocks: (2.00 TB/1.82 TiB)
[   10.033302] sd 6:0:0:0: [sdf] Write Protect is off
[   10.038799] sd 6:0:0:0: [sdf] Mode Sense: 47 00 10 08
[   10.039237] sd 6:0:0:0: [sdf] No Caching mode page found
[   10.045414] sd 6:0:0:0: [sdf] Assuming drive cache: write through
[   10.056982]  sdf: sdf1 sdf2 sdf3
[   10.060957] sd 6:0:0:0: [sdf] Attached SCSI disk
[   10.078581] usb 7-9: New USB device found, idVendor=26ce, idProduct=01a2, bcdDevice= 0.00
[   10.081216] scsi 6:0:0:1: Wrong diagnostic page; asked for 1 got 8
[   10.088232] usb 7-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   10.095369] scsi 6:0:0:1: Failed to get diagnostic page 0x1
[   10.095370] scsi 6:0:0:1: Failed to bind enclosure -19
[   10.095388] ses 6:0:0:1: Attached Enclosure device
[   10.121405] usb 7-9: Product: LED Controller
[   10.126280] usb 7-9: Manufacturer: ASRock
[   10.130816] usb 7-9: SerialNumber: A02019100900
[   10.136179] usb 7-8.1: new full-speed USB device number 7 using xhci_hcd
[   10.148017] md/raid1:mdX: active with 2 out of 2 mirrors
[   10.201418] input: ASRock LED Controller as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-9/7-9:1.0/0003:26CE:01A2.0004/input/input2
[   10.240517] md/raid1:mdX: active with 2 out of 2 mirrors
[   10.277578] hid-generic 0003:26CE:01A2.0004: input,hidraw3: USB HID v1.10 Device [ASRock LED Controller] on usb-0000:49:00.0-9/input0
[   10.447814] usb 7-8.1: New USB device found, idVendor=b58c, idProduct=9e84, bcdDevice= 1.00
[   10.457652] usb 7-8.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   10.466193] usb 7-8.1: Product: Yeti Stereo Microphone
[   10.472193] usb 7-8.1: Manufacturer: Blue Microphones
[   10.478323] usb 7-8.1: SerialNumber: REV8
[   10.525003] input: Blue Microphones Yeti Stereo Microphone Consumer Control as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.1/7-8.1:1.3/0003:B58C:9E84.0005/input/input3
[   10.605448] usb 7-7.3: new high-speed USB device number 8 using xhci_hcd
[   10.613432] hid-generic 0003:B58C:9E84.0005: input,hiddev1,hidraw4: USB HID v1.00 Device [Blue Microphones Yeti Stereo Microphone] on usb-0000:49:00.0-8.1/input3
[   10.786817] usb 7-7.3: New USB device found, idVendor=045e, idProduct=075d, bcdDevice= 1.07
[   10.796657] usb 7-7.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   10.805247] usb 7-7.3: Product: Microsoft® LifeCam Cinema(TM)
[   10.812186] usb 7-7.3: Manufacturer: Microsoft
[   10.945434] usb 7-10: new high-speed USB device number 9 using xhci_hcd
[   11.198833] usb 7-10: New USB device found, idVendor=0e8d, idProduct=0616, bcdDevice= 1.00
[   11.208527] usb 7-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7
[   11.217240] usb 7-10: Product: Wireless_Device
[   11.222435] usb 7-10: Manufacturer: MediaTek Inc.
[   11.227848] usb 7-10: SerialNumber: 000000000
[   11.293444] usb 7-8.2: new full-speed USB device number 10 using xhci_hcd
[   11.653831] usb 7-8.2: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.05
[   11.663559] usb 7-8.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   11.672241] usb 7-8.2: Product: USB Receiver
[   11.677396] usb 7-8.2: Manufacturer: Logitech
[   11.697417] usb 7-12: new high-speed USB device number 11 using xhci_hcd
[   11.753038] input: Logitech USB Receiver as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.0/0003:046D:C52B.0006/input/input5
[   11.829614] hid-generic 0003:046D:C52B.0006: input,hidraw5: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:49:00.0-8.2/input0
[   11.890072] input: Logitech USB Receiver Mouse as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.1/0003:046D:C52B.0007/input/input6
[   11.909014] input: Logitech USB Receiver Consumer Control as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.1/0003:046D:C52B.0007/input/input7
[   11.973841] usb 7-12: New USB device found, idVendor=13fe, idProduct=1f23, bcdDevice= 1.10
[   11.983501] usb 7-12: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.992101] usb 7-12: Product: STORE N GO
[   11.996935] usb 7-12: Manufacturer: Verbatim
[   12.002036] usb 7-12: SerialNumber: 07890C890F49
[   12.007249] input: Logitech USB Receiver System Control as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.1/0003:046D:C52B.0007/input/input8
[   12.027376] hid-generic 0003:046D:C52B.0007: input,hiddev2,hidraw6: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:49:00.0-8.2/input1
[   12.060039] usb-storage 7-12:1.0: USB Mass Storage device detected
[   12.067418] scsi host8: usb-storage 7-12:1.0
[   12.086171] hid-generic 0003:046D:C52B.0008: hiddev3,hidraw7: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:49:00.0-8.2/input2
[   12.185435] usb 7-8.3: new full-speed USB device number 12 using xhci_hcd
[   12.512842] usb 7-8.3: New USB device found, idVendor=1050, idProduct=0407, bcdDevice= 4.37
[   12.522739] usb 7-8.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   12.531416] usb 7-8.3: Product: Yubikey 4 OTP+U2F+CCID
[   12.537387] usb 7-8.3: Manufacturer: Yubico
[   12.601139] input: Yubico Yubikey 4 OTP+U2F+CCID as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.3/7-8.3:1.0/0003:1050:0407.0009/input/input10
[   12.677615] hid-generic 0003:1050:0407.0009: input,hidraw8: USB HID v1.10 Keyboard [Yubico Yubikey 4 OTP+U2F+CCID] on usb-0000:49:00.0-8.3/input0
[   12.693358] hid-generic 0003:1050:0407.000A: hiddev4,hidraw9: USB HID v1.10 Device [Yubico Yubikey 4 OTP+U2F+CCID] on usb-0000:49:00.0-8.3/input1
[   12.785443] usb 7-8.4: new low-speed USB device number 13 using xhci_hcd
[   12.978940] usb 7-8.4: New USB device found, idVendor=0b39, idProduct=0001, bcdDevice= 3.10
[   12.988684] usb 7-8.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   12.997509] usb 7-8.4: Product: USB to PS2 Adaptor  V3.10
[   13.003858] usb 7-8.4: Manufacturer: Composite USB PS2 Converter
[   13.038734] input: Composite USB PS2 Converter USB to PS2 Adaptor  V3.10 as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.4/7-8.4:1.0/0003:0B39:0001.000B/input/input11
[   13.077823] scsi 8:0:0:0: Direct-Access     Verbatim STORE N GO       5.00 PQ: 0 ANSI: 0 CCS
[   13.088027] sd 8:0:0:0: [sdg] 31318016 512-byte logical blocks: (16.0 GB/14.9 GiB)
[   13.097098] sd 8:0:0:0: [sdg] Write Protect is off
[   13.102745] sd 8:0:0:0: [sdg] Mode Sense: 23 00 00 00
[   13.102894] sd 8:0:0:0: [sdg] No Caching mode page found
[   13.109116] sd 8:0:0:0: [sdg] Assuming drive cache: write through
[   13.117554] hid-generic 0003:0B39:0001.000B: input,hidraw10: USB HID v1.10 Keyboard [Composite USB PS2 Converter USB to PS2 Adaptor  V3.10] on usb-0000:49:00.0-8.4/input0
[   13.117909]  sdg: sdg1 sdg2
[   13.138873] sd 8:0:0:0: [sdg] Attached SCSI removable disk
[   13.139045] input: Composite USB PS2 Converter USB to PS2 Adaptor  V3.10 Mouse as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.4/7-8.4:1.1/0003:0B39:0001.000C/input/input12
[   13.167444] input: Composite USB PS2 Converter USB to PS2 Adaptor  V3.10 System Control as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.4/7-8.4:1.1/0003:0B39:0001.000C/input/input13
[   13.249489] input: Composite USB PS2 Converter USB to PS2 Adaptor  V3.10 Consumer Control as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.4/7-8.4:1.1/0003:0B39:0001.000C/input/input14
[   13.272500] hid-generic 0003:0B39:0001.000C: input,hidraw11: USB HID v1.10 Mouse [Composite USB PS2 Converter USB to PS2 Adaptor  V3.10] on usb-0000:49:00.0-8.4/input1
[   13.482061] logitech-djreceiver 0003:046D:C52B.0008: hiddev2,hidraw5: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:49:00.0-8.2/input2
[   13.615530] input: Logitech Wireless Device PID:4011 Keyboard as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:4011.000D/input/input15
[   13.637300] input: Logitech Wireless Device PID:4011 Mouse as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:4011.000D/input/input16
[   13.658914] hid-generic 0003:046D:4011.000D: input,hidraw6: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4011] on usb-0000:49:00.0-8.2/input2:1
[   13.674173] input: Logitech Wireless Device PID:4024 Keyboard as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:4024.000E/input/input20
[   13.695976] input: Logitech Wireless Device PID:4024 Mouse as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:4024.000E/input/input21
[   13.717285] hid-generic 0003:046D:4024.000E: input,hidraw7: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4024] on usb-0000:49:00.0-8.2/input2:2
[   13.739373] input: Logitech K400 Plus as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:404D.000F/input/input25
[   13.758652] logitech-hidpp-device 0003:046D:404D.000F: input,hidraw12: USB HID v1.11 Keyboard [Logitech K400 Plus] on usb-0000:49:00.0-8.2/input2:3
[   13.915324] logitech-hidpp-device 0003:046D:4011.000D: hidraw6: USB HID v1.11 Keyboard [Logitech Wireless Touch] on usb-0000:49:00.0-8.2/input2:1
[   14.083382] input: Logitech K400 as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:4024.000E/input/input26
[   14.102254] logitech-hidpp-device 0003:046D:4024.000E: input,hidraw7: USB HID v1.11 Keyboard [Logitech K400] on usb-0000:49:00.0-8.2/input2:2
[   14.346497] Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=yes
[   15.113673] BTRFS: device label ButterRoot devid 2 transid 157 /dev/mapper/testos-polluxRoot2 scanned by btrfs (748)
[   15.125829] BTRFS: device label ButterRoot devid 1 transid 157 /dev/mapper/testos-polluxRoot scanned by btrfs (748)
[   15.137804] BTRFS: device label ButterBall devid 1 transid 7454102 /dev/sdb1 scanned by btrfs (748)
[   15.148061] BTRFS: device label LowSec devid 2 transid 11997 /dev/mapper/testos-finance2 scanned by btrfs (748)
[   15.159431] BTRFS: device label LowSec devid 1 transid 11997 /dev/mapper/testos-finance scanned by btrfs (748)
[   15.171086] BTRFS: device label HeptMigf devid 1 transid 227766 /dev/sdf3 scanned by btrfs (748)
[   15.180970] BTRFS: device label testosRoot devid 1 transid 1300 /dev/mapper/testos-testosRoot scanned by btrfs (748)
[   15.193289] BTRFS: device label testosRoot devid 2 transid 1300 /dev/mapper/testos-testosRoot2 scanned by btrfs (748)
[   15.253553] BTRFS info (device dm-0): first mount of filesystem 922b10f2-a826-47fb-ab38-836f9b397ff7
[   15.264265] BTRFS info (device dm-0): using crc32c (crc32c-intel) checksum algorithm
[   15.273323] BTRFS info (device dm-0): using free space tree
[   15.282537] BTRFS info (device dm-0): enabling ssd optimizations
[   15.320324] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[   15.361220] systemd[1]: Inserted module 'autofs4'
[   15.381302] systemd[1]: systemd 252.19-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[   15.418750] systemd[1]: Detected virtualization xen.
[   15.424579] systemd[1]: Detected architecture x86-64.
[   15.437140] systemd[1]: Hostname set to <testos>.
[   15.514280] systemd[1]: Queued start job for default target graphical.target.
[   15.546432] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[   15.564158] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[   15.583221] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[   15.603159] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[   15.623107] systemd[1]: Created slice user.slice - User and Session Slice.
[   15.640119] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[   15.662712] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[   15.684643] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[   15.708963] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[   15.727764] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[   15.747897] systemd[1]: Reached target paths.target - Path Units.
[   15.762788] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[   15.780825] systemd[1]: Reached target slices.target - Slice Units.
[   15.795861] systemd[1]: Reached target swap.target - Swaps.
[   15.809692] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[   15.829470] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[   15.848649] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[   15.867587] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[   15.887853] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[   15.908032] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[   15.927491] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[   15.947612] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[   15.965222] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[   15.984292] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[   16.021553] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[   16.038910] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[   16.057105] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[   16.075009] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[   16.092482] systemd[1]: Finished blk-availability.service - Availability of block devices.
[   16.112280] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[   16.131057] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[   16.150469] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   16.173753] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[   16.192281] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[   16.210640] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[   16.227985] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[   16.246981] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[   16.264859] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[   16.287623] pstore: Using crash dump compression: deflate
[   16.287792] ACPI: bus type drm_connector registered
[   16.295158] pstore: Registered efi as persistent store backend
[   16.309265] loop: module loaded
[   16.319135] fuse: init (API version 7.37)
[   16.319603] systemd[1]: Starting systemd-journald.service - Journal Service...
[   16.341225] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[   16.359583] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[   16.379512] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[   16.398841] systemd[1]: Started systemd-journald.service - Journal Service.
[   16.621333] systemd-journald[837]: Received client request to flush runtime journal.
[   16.852718] BTRFS info: devid 2 device path /dev/mapper/testos-testosRoot2 changed to /dev/dm-1 scanned by (udev-worker) (877)
[   16.869737] BTRFS info: devid 1 device path /dev/mapper/testos-testosRoot changed to /dev/dm-0 scanned by (udev-worker) (879)
[   16.887383] BTRFS info: devid 1 device path /dev/dm-0 changed to /dev/mapper/testos-testosRoot scanned by (udev-worker) (879)
[   16.900762] BTRFS info: devid 2 device path /dev/dm-1 changed to /dev/mapper/testos-testosRoot2 scanned by (udev-worker) (877)
[   16.934819] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input27
[   16.944745] ACPI: button: Power Button [PWRB]
[   16.944781] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input28
[   16.966568] ACPI: button: Power Button [PWRF]
[   16.989230] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   17.004671] sd 1:0:0:0: Attached scsi generic sg1 type 0
[   17.020536] sd 2:0:0:0: Attached scsi generic sg2 type 0
[   17.032309] sd 3:0:0:0: Attached scsi generic sg3 type 0
[   17.052531] sd 7:0:0:0: Attached scsi generic sg4 type 0
[   17.063530] sd 6:0:0:0: Attached scsi generic sg5 type 0
[   17.069648] ses 6:0:0:1: Attached scsi generic sg6 type 13
[   17.075891] sd 8:0:0:0: Attached scsi generic sg7 type 0
[   17.130099] ccp 0000:06:00.5: enabling device (0000 -> 0002)
[   17.137025] ccp 0000:06:00.5: BAR 2: can't reserve [mem 0xf0b00000-0xf0bfffff]
[   17.145210] ccp 0000:06:00.5: pcim_iomap_regions failed (-16)
[   17.151868] ccp 0000:06:00.5: initialization failed
[   17.157615] ccp: probe of 0000:06:00.5 failed with error -16
[   17.216253] cryptd: max_cpu_qlen set to 1000
[   17.223065] input: PC Speaker as /devices/platform/pcspkr/input/input29
[   17.236220] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[   17.242835] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[   17.250898] sp5100-tco sp5100-tco: Watchdog hardware is disabled
[   17.260493] mc: Linux media interface: v0.10
[   17.505032] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   17.513925] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
[   17.524593] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[   17.535812] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   17.543925] platform regulatory.0: firmware: direct-loading firmware regulatory.db
[   17.552440] platform regulatory.0: firmware: direct-loading firmware regulatory.db.p7s
[   17.564948] alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
[   17.689057] AVX2 version of gcm_enc/dec engaged.
[   17.696919] videodev: Linux video capture interface: v2.00
[   17.703417] AES CTR mode by8 optimization enabled
[   17.713779] EXT4-fs (nvme1n1p3): mounted filesystem with ordered data mode. Quota mode: none.
[   17.993532] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[   18.001207] snd_hda_intel 0000:01:00.1: Force to non-snoop mode
[   18.007997] snd_hda_intel 0000:01:00.1: BAR 0: can't reserve [mem 0xf0f60000-0xf0f63fff 64bit]
[   18.018053] snd_hda_intel 0000:06:00.7: enabling device (0000 -> 0002)
[   18.025723] snd_hda_intel 0000:06:00.7: BAR 0: can't reserve [mem 0xf0d00000-0xf0d07fff]
[   18.033679] snd_hda_intel 0000:41:00.1: enabling device (0000 -> 0002)
[   18.043165] snd_hda_intel 0000:41:00.1: Force to non-snoop mode
[   18.055286] BTRFS info: devid 1 device path /dev/mapper/testos-testosRoot changed to /dev/dm-0 scanned by (udev-worker) (869)
[   18.068721] BTRFS info: devid 2 device path /dev/mapper/testos-testosRoot2 changed to /dev/dm-1 scanned by (udev-worker) (870)
[   18.082560] BTRFS info: devid 1 device path /dev/dm-0 changed to /dev/mapper/testos-testosRoot scanned by (udev-worker) (869)
[   18.096075] BTRFS info: devid 2 device path /dev/dm-1 changed to /dev/mapper/testos-testosRoot2 scanned by (udev-worker) (870)
[   18.120564] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:40/0000:40:01.1/0000:41:00.1/sound/card3/input30
[   18.141262] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:40/0000:40:01.1/0000:41:00.1/sound/card3/input31
[   18.142891] audit: type=1400 audit(1705646336.739:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=1199 comm="apparmor_parser"
[   18.161482] usbcore: registered new interface driver snd-usb-audio
[   18.162165] usb 7-7.3: Found UVC 1.00 device Microsoft® LifeCam Cinema(TM) (045e:075d)
[   18.168327] input: Microsoft® LifeCam Cinema(TM): as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-7/7-7.3/7-7.3:1.0/input/input32
[   18.168423] usbcore: registered new interface driver uvcvideo
[   18.178300] audit: type=1400 audit(1705646336.739:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=1200 comm="apparmor_parser"
[   18.236303] audit: type=1400 audit(1705646336.739:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=1200 comm="apparmor_parser"
[   18.236305] audit: type=1400 audit(1705646336.739:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=1202 comm="apparmor_parser"
[   18.236307] audit: type=1400 audit(1705646336.739:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=1202 comm="apparmor_parser"
[   18.236308] audit: type=1400 audit(1705646336.739:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=1202 comm="apparmor_parser"
[   18.236309] audit: type=1400 audit(1705646336.743:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1201 comm="apparmor_parser"
[   18.236311] audit: type=1400 audit(1705646336.743:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=1201 comm="apparmor_parser"
[   18.236312] audit: type=1400 audit(1705646336.743:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1201 comm="apparmor_parser"
[   18.236313] audit: type=1400 audit(1705646336.743:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=1201 comm="apparmor_parser"
[   18.450893] [drm] radeon kernel modesetting enabled.
[   18.456994] radeon 0000:41:00.0: enabling device (0000 -> 0003)
[   18.473114] [drm] initializing kernel modesetting (OLAND 0x1002:0x6611 0x1028:0x1001 0x87).
[   18.482448] r8169 0000:86:00.0: firmware: direct-loading firmware rtl_nic/rtl8168e-3.fw
[   18.501089] RTL8211E Gigabit Ethernet r8169-0-8600:00: attached PHY driver (mii_bus:phy_addr=r8169-0-8600:00, irq=MAC)
[   18.530429] Bluetooth: Core ver 2.22
[   18.530429] mt7921e 0000:46:00.0: enabling device (0000 -> 0002)
[   18.530453] NET: Registered PF_BLUETOOTH protocol family
[   18.547548] Bluetooth: HCI device and connection manager initialized
[   18.547552] Bluetooth: HCI socket layer initialized
[   18.547553] Bluetooth: L2CAP socket layer initialized
[   18.547556] Bluetooth: SCO socket layer initialized
[   18.553526] mt7921e 0000:46:00.0: ASIC revision: 79220010
[   18.669315] mt7921e 0000:46:00.0: firmware: direct-loading firmware mediatek/WIFI_MT7922_patch_mcu_1_1_hdr.bin
[   18.681012] mt7921e 0000:46:00.0: HW/SW Version: 0x8a108a10, Build Time: 20221227123154a

[   18.706884] mt7921e 0000:46:00.0: firmware: direct-loading firmware mediatek/WIFI_RAM_CODE_MT7922_1.bin
[   18.717725] mt7921e 0000:46:00.0: WM Firmware Version: ____000000, Build Time: 20221227123243
[   18.729866] ATOM BIOS: C86901
[   18.733364] [drm] GPU not posted. posting now...
[   18.745312] [drm] Changing default dispclk from 480Mhz to 600Mhz
[   18.757507] radeon 0000:41:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[   18.767776] radeon 0000:41:00.0: GTT: 2048M 0x0000000040000000 - 0x00000000BFFFFFFF
[   18.767787] [drm] Detected VRAM RAM=1024M, BAR=1024M
[   18.767788] [drm] RAM width 64bits DDR
[   18.767811] [drm] radeon: 1024M of VRAM memory ready
[   18.767812] [drm] radeon: 2048M of GTT memory ready.
[   18.767818] [drm] Loading oland Microcode
[   18.768512] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_pfp.bin
[   18.774214] mt7921e 0000:46:00.0: firmware: direct-loading firmware mediatek/WIFI_RAM_CODE_MT7922_1.bin
[   18.833324] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_me.bin
[   18.835559] r8169 0000:86:00.0 enp134s0: Link is Down
[   18.842959] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_ce.bin
[   18.855512] RTL8211E Gigabit Ethernet r8169-0-8700:00: attached PHY driver (mii_bus:phy_addr=r8169-0-8700:00, irq=MAC)
[   18.858131] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_rlc.bin
[   18.880379] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_mc.bin
[   18.889990] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_smc.bin
[   18.899380] [drm] Internal thermal controller with fan control
[   18.910969] [drm] radeon: dpm initialized
[   18.916062] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/TAHITI_uvd.bin
[   18.925399] [drm] GART: num cpu pages 524288, num gpu pages 524288
[   18.937980] [drm] PCIE GART of 2048M enabled (table at 0x0000000000165000).
[   18.946272] radeon 0000:41:00.0: WB enabled
[   18.951249] radeon 0000:41:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00
[   18.960425] radeon 0000:41:00.0: fence driver on ring 1 use gpu addr 0x0000000040000c04
[   18.969791] radeon 0000:41:00.0: fence driver on ring 2 use gpu addr 0x0000000040000c08
[   18.979037] radeon 0000:41:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c
[   18.988476] radeon 0000:41:00.0: fence driver on ring 4 use gpu addr 0x0000000040000c10
[   18.998161] radeon 0000:41:00.0: fence driver on ring 5 use gpu addr 0x0000000000075a18
[   19.007496] radeon 0000:41:00.0: radeon: MSI limited to 32-bit
[   19.014459] radeon 0000:41:00.0: radeon: using MSI.
[   19.020300] [drm] radeon: irq initialized.
[   19.182522] [drm] ring test on 0 succeeded in 1 usecs
[   19.188423] [drm] ring test on 1 succeeded in 1 usecs
[   19.194344] [drm] ring test on 2 succeeded in 1 usecs
[   19.200414] [drm] ring test on 3 succeeded in 3 usecs
[   19.206461] [drm] ring test on 4 succeeded in 3 usecs
[   19.381657] r8169 0000:87:00.0 enp135s0: Link is Down
[   19.388487] [drm] ring test on 5 succeeded in 2 usecs
[   19.394295] [drm] UVD initialized successfully.
[   19.399645] [drm] ib test on ring 0 succeeded in 0 usecs
[   19.405831] [drm] ib test on ring 1 succeeded in 0 usecs
[   19.411995] [drm] ib test on ring 2 succeeded in 0 usecs
[   19.418420] [drm] ib test on ring 3 succeeded in 0 usecs
[   19.424493] [drm] ib test on ring 4 succeeded in 0 usecs
[   19.467381] usbcore: registered new interface driver btusb
[   19.468173] [drm] amdgpu kernel modesetting enabled.
[   19.476471] bluetooth hci0: firmware: direct-loading firmware mediatek/BT_RAM_CODE_MT7922_1_1_hdr.bin
[   19.479590] amdgpu: CRAT table not found
[   19.494909] amdgpu: Virtual CRAT table created for CPU
[   19.494917] amdgpu: Topology: Add CPU node
[   19.495315] amdgpu 0000:01:00.0: enabling device (0006 -> 0007)
[   19.522796] [drm] initializing kernel modesetting (POLARIS10 0x1002:0x67DF 0x1462:0x3413 0xC7).
[   19.542351] [drm] register mmio base: 0xF0F00000
[   19.556836] [drm] register mmio size: 262144
[   19.556926] [drm] add ip block number 0 <vi_common>
[   19.575235] [drm] add ip block number 1 <gmc_v8_0>
[   19.575236] [drm] add ip block number 2 <tonga_ih>
[   19.575237] [drm] add ip block number 3 <gfx_v8_0>
[   19.575237] [drm] add ip block number 4 <sdma_v3_0>
[   19.575238] [drm] add ip block number 5 <powerplay>
[   19.575238] [drm] add ip block number 6 <dm>
[   19.575239] [drm] add ip block number 7 <uvd_v6_0>
[   19.575239] [drm] add ip block number 8 <vce_v3_0>
[   19.644947] Bluetooth: hci0: Device setup in 173350 usecs
[   19.653989] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[   19.928550] amdgpu 0000:01:00.0: amdgpu: Fetched VBIOS from ROM BAR
[   19.935904] amdgpu: ATOM BIOS: 113-V34111-F1
[   19.948393] [drm] UVD is enabled in VM mode
[   19.953264] [drm] UVD ENC is enabled in VM mode
[   19.953267] [drm] VCE enabled in VM mode
[   19.953268] amdgpu 0000:01:00.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
[   19.953310] [drm] vm size is 64 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
[   19.991370] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_mc.bin
[   19.997559] mt7921e 0000:46:00.0 wlp70s0: renamed from wlan0
[   20.009519] amdgpu 0000:01:00.0: amdgpu: VRAM: 4096M 0x000000F400000000 - 0x000000F4FFFFFFFF (4096M used)
[   20.027313] amdgpu 0000:01:00.0: amdgpu: GART: 256M 0x000000FF00000000 - 0x000000FF0FFFFFFF
[   20.027320] [drm] Detected VRAM RAM=4096M, BAR=4096M
[   20.027321] [drm] RAM width 256bits GDDR5
[   20.027340] [drm] amdgpu: 4096M of VRAM memory ready
[   20.062031] [drm] amdgpu: 3962M of GTT memory ready.
[   20.067918] [drm] GART: num cpu pages 65536, num gpu pages 65536
[   20.075450] xen:xen_evtchn: Event-channel device installed
[   20.076245] [drm] PCIE GART of 256M enabled (table at 0x000000F400380000).
[   20.081541] [drm] ib test on ring 5 succeeded
[   20.081873] [drm] Radeon Display Connectors
[   20.090407] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_pfp_2.bin
[   20.094969] [drm] Connector 0:
[   20.094970] [drm]   DP-1
[   20.094970] [drm]   HPD1
[   20.094970] [drm]   DDC: 0x6540 0x6540 0x6544 0x6544 0x6548 0x6548 0x654c 0x654c
[   20.094971] [drm]   Encoders:
[   20.094971] [drm]     DFP1: INTERNAL_UNIPHY
[   20.094972] [drm] Connector 1:
[   20.094972] [drm]   VGA-1
[   20.094972] [drm]   DDC: 0x6530 0x6530 0x6534 0x6534 0x6538 0x6538 0x653c 0x653c
[   20.094972] [drm]   Encoders:
[   20.094973] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[   20.161287] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_me_2.bin
[   20.171425] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_ce_2.bin
[   20.178326] [drm] fb mappable at 0x69940571000
[   20.181407] [drm] Chained IB support enabled!
[   20.186627] [drm] vram apper at 0x69940000000
[   20.186628] [drm] size 9437184
[   20.186629] [drm] fb depth is 24
[   20.186629] [drm]    pitch is 8192
[   20.208766] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_rlc.bin
[   20.209274] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_mec_2.bin
[   20.209617] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_mec2_2.bin
[   20.209782] NET: Registered PF_QIPCRTR protocol family
[   20.210149] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_sdma.bin
[   20.210298] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_sdma1.bin
[   20.210314] amdgpu: hwmgr_sw_init smu backed is polaris10_smu
[   20.210722] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_uvd.bin
[   20.210725] [drm] Found UVD firmware Version: 1.130 Family ID: 16
[   20.211442] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_vce.bin
[   20.211444] [drm] Found VCE firmware Version: 53.26 Binary ID: 3
[   20.211943] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_smc.bin
[   20.213223] xen_acpi_processor: Uploading Xen processor PM info
[   20.255393] Console: switching to colour frame buffer device 256x72
[   20.274637] [drm] Display Core initialized with v3.2.207!
[   20.277411] radeon 0000:41:00.0: [drm] fb0: radeondrmfb frame buffer device
[   20.423269] [drm] Initialized radeon 2.50.0 20080528 for 0000:41:00.0 on minor 0
[   20.576155] [drm] UVD and UVD ENC initialized successfully.
[   20.682087] [drm] VCE initialized successfully.
[   20.690766] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[   20.697803] amdgpu: sdma_bitmap: f
[   20.701785] amdgpu: SRAT table not found
[   20.706390] amdgpu: Virtual CRAT table created for GPU
[   20.712535] amdgpu: Topology: Add dGPU node [0x67df:0x1002]
[   20.719052] kfd kfd: amdgpu: added device 1002:67df
[   20.724845] amdgpu 0000:01:00.0: amdgpu: SE 4, SH per SE 1, CU per SH 9, active_cu_number 36
[   20.748971] amdgpu 0000:01:00.0: amdgpu: Using BACO for runtime pm
[   20.756692] [drm] Initialized amdgpu 3.49.0 20150101 for 0000:01:00.0 on minor 1
[   21.297443] [drm] Fence fallback timer expired on ring uvd
[   21.713462] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   21.841634] r8169 0000:86:00.0 enp134s0: Link is Up - 1Gbps/Full - flow control off
[   21.850280] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0: link becomes ready
[   22.160472] r8169 0000:87:00.0 enp135s0: Link is Up - 1Gbps/Full - flow control rx/tx
[   22.169288] IPv6: ADDRCONF(NETDEV_CHANGE): enp135s0: link becomes ready
[   22.321456] amdgpu 0000:01:00.0: [drm:amdgpu_ib_ring_tests [amdgpu]] *ERROR* IB test failed on uvd (-110).
[   23.345539] amdgpu 0000:01:00.0: [drm:amdgpu_ib_ring_tests [amdgpu]] *ERROR* IB test failed on uvd_enc0 (-110).
[   24.369453] amdgpu 0000:01:00.0: [drm:amdgpu_ib_ring_tests [amdgpu]] *ERROR* IB test failed on uvd_enc1 (-110).
[   24.480415] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.521445] amdgpu 0000:01:00.0: [drm:amdgpu_ib_ring_tests [amdgpu]] *ERROR* IB test failed on vce0 (-110).
[   25.532694] [drm:process_one_work] *ERROR* ib ring test failed (-110).
[   25.582938] fbcon: amdgpudrmfb (fb1) is primary device
[   25.582942] fbcon: Remapping primary device, fb1, to tty 1-63
[   25.584093] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.584100] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.584105] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.584108] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.584112] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.584116] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.584120] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.584198] ------------[ cut here ]------------
[   25.584199] WARNING: CPU: 37 PID: 949 at drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dce100/dce_clk_mgr.c:139 dce_get_dp_ref_freq_khz+0x104/0x120 [amdgpu]
[   25.584661] Modules linked in: xen_acpi_processor(E) xen_gntdev(E) qrtr(E) xen_evtchn(E) xenfs(E) xen_privcmd(E) btusb(E) btrtl(E) btbcm(E) btintel(E) btmtk(E) intel_rapl_msr(E) amdgpu(E+) binfmt_misc(E) mt7921e(E) intel_rapl_common(E) bluetooth(E) gpu_sched(E) mt7921_common(E) snd_hda_codec_hdmi(E) radeon(E) nls_ascii(E) mt76_connac_lib(E) drm_buddy(E) nls_cp437(E) uvcvideo(E) ghash_clmulni_intel(E) video(E) jitterentropy_rng(E) mt76(E) snd_hda_intel(E) vfat(E) fat(E) videobuf2_vmalloc(E) snd_intel_dspcfg(E) sha256_ssse3(E) snd_usb_audio(E) sha512_ssse3(E) snd_intel_sdw_acpi(E) videobuf2_memops(E) sha512_generic(E) drm_display_helper(E) videobuf2_v4l2(E) mac80211(E) sha1_ssse3(E) snd_usbmidi_lib(E) ctr(E) snd_hda_codec(E) cec(E) videobuf2_common(E) drbg(E) libarc4(E) snd_rawmidi(E) ansi_cprng(E) videodev(E) snd_seq_device(E) rc_core(E) snd_hda_core(E) aesni_intel(E) ecdh_generic(E) ext4(E) cfg80211(E) drm_ttm_helper(E) snd_hwdep(E) ecc(E) crypto_simd(E) sp5100_tco(E) snd_pcm(E)
[   25.584710]  wmi_bmof(E) mbcache(E) cryptd(E) crc16(E) mc(E) pcspkr(E) snd_timer(E) ttm(E) rfkill(E) snd(E) drm_kms_helper(E) k10temp(E) ccp(E) watchdog(E) i2c_algo_bit(E) soundcore(E) jbd2(E) button(E) evdev(E) joydev(E) sg(E) msr(E) fuse(E) loop(E) efi_pstore(E) drm(E) configfs(E) efivarfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) zstd_compress(E) dm_cache(E) dm_bio_prison(E) dm_persistent_data(E) hid_logitech_hidpp(E) hid_logitech_dj(E) raid1(E) ses(E) dm_integrity(E) enclosure(E) scsi_transport_sas(E) dm_bufio(E) dm_raid(E) raid456(E) async_raid6_recov(E) async_memcpy(E) async_pq(E) async_xor(E) async_tx(E) md_mod(E) xor(E) raid6_pq(E) libcrc32c(E) crc32c_generic(E) hid_generic(E) dm_mod(E) usbhid(E) uas(E) hid(E) usb_storage(E) sd_mod(E) nvme(E) nvme_core(E) t10_pi(E) ahci(E) crc64_rocksoft(E) xhci_pci(E) libahci(E) crc64(E) r8169(E) xhci_hcd(E) crc_t10dif(E) realtek(E) libata(E) atlantic(E) crct10dif_generic(E) mdio_devres(E) usbcore(E) gpio_amdpt(E)
[   25.584765]  crc32_pclmul(E) scsi_mod(E) crct10dif_pclmul(E) crc32c_intel(E) libphy(E) crct10dif_common(E) macsec(E) scsi_common(E) i2c_piix4(E) usb_common(E) wmi(E) gpio_generic(E)
[   25.584774] CPU: 37 PID: 949 Comm: (udev-worker) Tainted: G            E      6.1.69 #10 
[   25.584778] Hardware name: To Be Filled By O.E.M. TRX50 WS/TRX50 WS, BIOS 7.08 01/16/2024
[   25.584780] RIP: 0010:dce_get_dp_ref_freq_khz+0x104/0x120 [amdgpu]
[   25.585121] Code: fe ff ff 48 8b 54 24 08 65 48 2b 14 25 28 00 00 00 75 2c 48 83 c4 10 5b e9 89 f4 f3 be b9 00 02 00 00 eb b7 8d 4c 09 c0 eb b1 <0f> 0b e9 56 ff ff ff 69 c9 08 01 00 00 81 e9 f8 80 00 00 eb 9c e8
[   25.585124] RSP: 0018:ffffc90000e9f240 EFLAGS: 00010202
[   25.585127] RAX: 0000000000000007 RBX: ffff8881045c1e00 RCX: 0000000000000000
[   25.585128] RDX: 0000000000000000 RSI: 00000000000067df RDI: ffff888106aa0000
[   25.585130] RBP: ffff8881502401e8 R08: ffffc90000e9f244 R09: 00000000ffffffff
[   25.585131] R10: 000000000000b6b9 R11: 0000000000000000 R12: ffff888150240000
[   25.585132] R13: ffff888103b60000 R14: 0000000000000000 R15: ffff888103b60000
[   25.585137] FS:  00007f7c469938c0(0000) GS:ffff888255740000(0000) knlGS:0000000000000000
[   25.585139] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[   25.585140] CR2: 0000560c2b365878 CR3: 000000010bc36006 CR4: 0000000000770ee0
[   25.585145] PKRU: 55555554
[   25.585146] Call Trace:
[   25.585150]  <TASK>
[   25.585152]  ? __warn+0x7d/0xc0
[   25.585157]  ? dce_get_dp_ref_freq_khz+0x104/0x120 [amdgpu]
[   25.585465]  ? report_bug+0xe2/0x150
[   25.585472]  ? handle_bug+0x41/0x70
[   25.585478]  ? exc_invalid_op+0x13/0x60
[   25.585481]  ? asm_exc_invalid_op+0x16/0x20
[   25.585487]  ? dce_get_dp_ref_freq_khz+0x104/0x120 [amdgpu]
[   25.585732]  build_audio_output+0xbe/0x120 [amdgpu]
[   25.586054]  dce110_setup_audio_dto+0x202/0x280 [amdgpu]
[   25.586301]  ? amdgpu_atom_execute_table+0x58/0x70 [amdgpu]
[   25.586600]  dce110_apply_ctx_to_hw+0x1ac/0x720 [amdgpu]
[   25.586867]  ? _raw_spin_unlock_irqrestore+0xa/0x40
[   25.586871]  ? __free_pages_ok+0x298/0x500
[   25.586876]  dc_commit_state_no_check+0x397/0xcd0 [amdgpu]
[   25.587129]  dc_commit_state+0x107/0x120 [amdgpu]
[   25.587363]  amdgpu_dm_atomic_commit_tail+0x630/0x3790 [amdgpu]
[   25.587671]  ? free_unref_page_commit+0x7c/0x170
[   25.587675]  ? _raw_spin_unlock+0xa/0x30
[   25.587679]  ? free_unref_page+0x15f/0x1d0
[   25.587683]  ? update_load_avg+0x7e/0x780
[   25.587689]  ? psi_group_change+0x145/0x360
[   25.587692]  ? psi_task_switch+0xd2/0x230
[   25.587696]  ? _raw_spin_unlock+0xa/0x30
[   25.587699]  ? finish_task_switch.isra.0+0x90/0x2d0
[   25.587703]  ? __schedule+0x355/0x9e0
[   25.587705]  ? schedule+0x5a/0xd0
[   25.587707]  ? schedule_timeout+0x118/0x150
[   25.587711]  ? _raw_spin_unlock_irqrestore+0xa/0x40
[   25.587714]  ? dma_fence_default_wait+0x8f/0x260
[   25.587722]  commit_tail+0x94/0x130 [drm_kms_helper]
[   25.587745]  drm_atomic_helper_commit+0x112/0x140 [drm_kms_helper]
[   25.587764]  drm_atomic_commit+0x96/0xc0 [drm]
[   25.587809]  ? drm_plane_get_damage_clips.cold+0x1c/0x1c [drm]
[   25.587851]  drm_client_modeset_commit_atomic+0x206/0x250 [drm]
[   25.587893]  drm_client_modeset_commit_locked+0x56/0x160 [drm]
[   25.587929]  drm_client_modeset_commit+0x21/0x40 [drm]
[   25.587964]  drm_fb_helper_set_par+0x9e/0xe0 [drm_kms_helper]
[   25.587984]  set_con2fb_map+0x18f/0x3f0
[   25.587989]  fbcon_fb_registered+0x9b/0x140
[   25.587992]  register_framebuffer+0x1c9/0x300
[   25.587998]  __drm_fb_helper_initial_config_and_unlock+0x388/0x510 [drm_kms_helper]
[   25.588018]  drm_fbdev_client_hotplug+0x186/0x220 [drm_kms_helper]
[   25.588036]  drm_client_register+0x75/0xb0 [drm]
[   25.588074]  amdgpu_pci_probe+0x3db/0x400 [amdgpu]
[   25.588360]  local_pci_probe+0x41/0x80
[   25.588366]  pci_device_probe+0xc3/0x240
[   25.588371]  really_probe+0xde/0x380
[   25.588376]  ? pm_runtime_barrier+0x50/0x90
[   25.588380]  __driver_probe_device+0x78/0x120
[   25.588384]  driver_probe_device+0x1f/0x90
[   25.588387]  __driver_attach+0xce/0x1c0
[   25.588391]  ? __device_attach_driver+0x110/0x110
[   25.588394]  bus_for_each_dev+0x87/0xd0
[   25.588398]  bus_add_driver+0x1ae/0x200
[   25.588401]  driver_register+0x89/0xe0
[   25.588405]  ? 0xffffffffc26aa000
[   25.588407]  do_one_initcall+0x59/0x220
[   25.588413]  do_init_module+0x4a/0x1f0
[   25.588418]  __do_sys_finit_module+0xac/0x120
[   25.588424]  do_syscall_64+0x5b/0xc0
[   25.588429]  ? syscall_exit_to_user_mode+0x27/0x40
[   25.588432]  ? do_syscall_64+0x67/0xc0
[   25.588435]  ? syscall_exit_to_user_mode+0x27/0x40
[   25.588438]  ? do_syscall_64+0x67/0xc0
[   25.588441]  ? exit_to_user_mode_prepare+0x40/0x1e0
[   25.588445]  ? syscall_exit_to_user_mode+0x27/0x40
[   25.588447]  ? do_syscall_64+0x67/0xc0
[   25.588451]  entry_SYSCALL_64_after_hwframe+0x64/0xce
[   25.588455] RIP: 0033:0x7f7c46c1e559
[   25.588458] Code: 08 89 e8 5b 5d c3 66 2e 0f 1f 84 00 00 00 00 00 90 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 77 08 0d 00 f7 d8 64 89 01 48
[   25.588460] RSP: 002b:00007fff3af2d608 EFLAGS: 00000246 ORIG_RAX: 0000000000000139
[   25.588463] RAX: ffffffffffffffda RBX: 0000560c2b34b4e0 RCX: 00007f7c46c1e559
[   25.588464] RDX: 0000000000000000 RSI: 00007f7c46db1efd RDI: 0000000000000017
[   25.588466] RBP: 00007f7c46db1efd R08: 0000000000000000 R09: 0000560c2b253370
[   25.588467] R10: 0000000000000017 R11: 0000000000000246 R12: 0000000000020000
[   25.588469] R13: 0000000000000000 R14: 0000560c2b3124d0 R15: 0000560c2a8c6ec1
[   25.588472]  </TASK>
[   25.588473] ---[ end trace 0000000000000000 ]---
[   25.588596] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.588601] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.588605] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.588609] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.588613] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.588617] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   25.588621] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   26.415042] [drm] perform_link_training_with_retries: Link(0) training attempt 1 of 4 failed @ rate(10) x lane(4) : fail reason:(1)
[   46.437412] [drm:atom_op_jump [amdgpu]] *ERROR* atombios stuck in loop for more than 20secs aborting
[   46.437531] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D706 (len 824, WS 0, PS 0) @ 0xD886
[   46.437617] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D5C0 (len 326, WS 0, PS 0) @ 0xD6B0
[   46.437696] [drm:dce110_link_encoder_disable_output [amdgpu]] *ERROR* dce110_link_encoder_disable_output: Failed to execute VBIOS command table!
[   47.316419] [drm] perform_link_training_with_retries: Link(0) training attempt 2 of 4 failed @ rate(10) x lane(4) : fail reason:(1)
[   67.708624] [drm:atom_op_jump [amdgpu]] *ERROR* atombios stuck in loop for more than 20secs aborting
[   67.708742] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D706 (len 824, WS 0, PS 0) @ 0xD886
[   67.708828] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D5C0 (len 326, WS 0, PS 0) @ 0xD6B0
[   67.708908] [drm:dce110_link_encoder_disable_output [amdgpu]] *ERROR* dce110_link_encoder_disable_output: Failed to execute VBIOS command table!
[   68.641121] [drm] perform_link_training_with_retries: Link(0) training attempt 3 of 4 failed @ rate(10) x lane(4) : fail reason:(1)
[   87.238658] Buffer I/O error on dev dm-35, logical block 78643167, async page read
[   88.688963] [drm:atom_op_jump [amdgpu]] *ERROR* atombios stuck in loop for more than 20secs aborting
[   88.689076] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D706 (len 824, WS 0, PS 0) @ 0xD886
[   88.689161] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D5C0 (len 326, WS 0, PS 0) @ 0xD6B0
[   88.689240] [drm:dce110_link_encoder_disable_output [amdgpu]] *ERROR* dce110_link_encoder_disable_output: Failed to execute VBIOS command table!
[   89.668521] [drm] enabling link 0 failed: 15
[   89.689119] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   89.689128] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   89.689134] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   89.689140] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   89.689146] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   89.689152] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   89.689158] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[   90.519338] [drm] perform_link_training_with_retries: Link(1) training attempt 1 of 4 failed @ rate(10) x lane(4) : fail reason:(1)
[  110.537241] [drm:atom_op_jump [amdgpu]] *ERROR* atombios stuck in loop for more than 20secs aborting
[  110.537360] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D706 (len 824, WS 0, PS 0) @ 0xD886
[  110.537446] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D5C0 (len 326, WS 0, PS 0) @ 0xD6B0
[  110.537526] [drm:dce110_link_encoder_disable_output [amdgpu]] *ERROR* dce110_link_encoder_disable_output: Failed to execute VBIOS command table!
[  111.416539] [drm] perform_link_training_with_retries: Link(1) training attempt 2 of 4 failed @ rate(10) x lane(4) : fail reason:(1)
[  117.640908] Buffer I/O error on dev dm-35, logical block 78643167, async page read
[  117.641061] Buffer I/O error on dev dm-35, logical block 16, async page read
[  131.435654] [drm:atom_op_jump [amdgpu]] *ERROR* atombios stuck in loop for more than 20secs aborting
[  131.435767] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D706 (len 824, WS 0, PS 0) @ 0xD886
[  131.435851] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D5C0 (len 326, WS 0, PS 0) @ 0xD6B0
[  131.435930] [drm:dce110_link_encoder_disable_output [amdgpu]] *ERROR* dce110_link_encoder_disable_output: Failed to execute VBIOS command table!
[  132.367210] [drm] perform_link_training_with_retries: Link(1) training attempt 3 of 4 failed @ rate(10) x lane(4) : fail reason:(1)
[  152.390441] [drm:atom_op_jump [amdgpu]] *ERROR* atombios stuck in loop for more than 20secs aborting
[  152.390551] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D706 (len 824, WS 0, PS 0) @ 0xD886
[  152.390635] [drm:amdgpu_atom_execute_table_locked [amdgpu]] *ERROR* atombios stuck executing D5C0 (len 326, WS 0, PS 0) @ 0xD6B0
[  152.390714] [drm:dce110_link_encoder_disable_output [amdgpu]] *ERROR* dce110_link_encoder_disable_output: Failed to execute VBIOS command table!
[  153.369905] [drm] enabling link 1 failed: 15
[  153.390348] [drm:wait_for_reset_trigger_to_occur.constprop.0.isra.0 [amdgpu]] *ERROR* TG counter is not moving!
[  153.390789] [drm:dce110_enable_timing_synchronization [amdgpu]] *ERROR* GSL: Timeout on reset trigger!
[  153.581637] ------------[ cut here ]------------
[  153.581639] WARNING: CPU: 38 PID: 949 at drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:1252 dc_commit_state_no_check+0xc25/0xcd0 [amdgpu]
[  153.581735] Modules linked in: raid0(E) xen_acpi_processor(E) xen_gntdev(E) qrtr(E) xen_evtchn(E) xenfs(E) xen_privcmd(E) btusb(E) btrtl(E) btbcm(E) btintel(E) btmtk(E) intel_rapl_msr(E) amdgpu(E+) binfmt_misc(E) mt7921e(E) intel_rapl_common(E) bluetooth(E) gpu_sched(E) mt7921_common(E) snd_hda_codec_hdmi(E) radeon(E) nls_ascii(E) mt76_connac_lib(E) drm_buddy(E) nls_cp437(E) uvcvideo(E) ghash_clmulni_intel(E) video(E) jitterentropy_rng(E) mt76(E) snd_hda_intel(E) vfat(E) fat(E) videobuf2_vmalloc(E) snd_intel_dspcfg(E) sha256_ssse3(E) snd_usb_audio(E) sha512_ssse3(E) snd_intel_sdw_acpi(E) videobuf2_memops(E) sha512_generic(E) drm_display_helper(E) videobuf2_v4l2(E) mac80211(E) sha1_ssse3(E) snd_usbmidi_lib(E) ctr(E) snd_hda_codec(E) cec(E) videobuf2_common(E) drbg(E) libarc4(E) snd_rawmidi(E) ansi_cprng(E) videodev(E) snd_seq_device(E) rc_core(E) snd_hda_core(E) aesni_intel(E) ecdh_generic(E) ext4(E) cfg80211(E) drm_ttm_helper(E) snd_hwdep(E) ecc(E) crypto_simd(E) sp5100_tco(E)
[  153.581759]  snd_pcm(E) wmi_bmof(E) mbcache(E) cryptd(E) crc16(E) mc(E) pcspkr(E) snd_timer(E) ttm(E) rfkill(E) snd(E) drm_kms_helper(E) k10temp(E) ccp(E) watchdog(E) i2c_algo_bit(E) soundcore(E) jbd2(E) button(E) evdev(E) joydev(E) sg(E) msr(E) fuse(E) loop(E) efi_pstore(E) drm(E) configfs(E) efivarfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) zstd_compress(E) dm_cache(E) dm_bio_prison(E) dm_persistent_data(E) hid_logitech_hidpp(E) hid_logitech_dj(E) raid1(E) ses(E) dm_integrity(E) enclosure(E) scsi_transport_sas(E) dm_bufio(E) dm_raid(E) raid456(E) async_raid6_recov(E) async_memcpy(E) async_pq(E) async_xor(E) async_tx(E) md_mod(E) xor(E) raid6_pq(E) libcrc32c(E) crc32c_generic(E) hid_generic(E) dm_mod(E) usbhid(E) uas(E) hid(E) usb_storage(E) sd_mod(E) nvme(E) nvme_core(E) t10_pi(E) ahci(E) crc64_rocksoft(E) xhci_pci(E) libahci(E) crc64(E) r8169(E) xhci_hcd(E) crc_t10dif(E) realtek(E) libata(E) atlantic(E) crct10dif_generic(E) mdio_devres(E) usbcore(E)
[  153.581785]  gpio_amdpt(E) crc32_pclmul(E) scsi_mod(E) crct10dif_pclmul(E) crc32c_intel(E) libphy(E) crct10dif_common(E) macsec(E) scsi_common(E) i2c_piix4(E) usb_common(E) wmi(E) gpio_generic(E)
[  153.581790] CPU: 38 PID: 949 Comm: (udev-worker) Tainted: G        W   E      6.1.69 #10 
[  153.581792] Hardware name: To Be Filled By O.E.M. TRX50 WS/TRX50 WS, BIOS 7.08 01/16/2024
[  153.581792] RIP: 0010:dc_commit_state_no_check+0xc25/0xcd0 [amdgpu]
[  153.581868] Code: d9 56 be e9 b2 f6 ff ff 4c 89 e7 e8 45 f3 00 00 4c 89 e7 e8 fd 53 2e be e9 39 ff ff ff 80 b8 80 03 00 00 00 0f 84 f6 fd ff ff <0f> 0b e9 ef fd ff ff 65 8b 05 ed d9 e5 3d 89 c0 48 0f a3 05 a3 e3
[  153.581868] RSP: 0018:ffffc90000e9f3e8 EFLAGS: 00010202
[  153.581869] RAX: ffff88813be44800 RBX: ffff888150240000 RCX: 0000000000000026
[  153.581870] RDX: 00000000000010e6 RSI: 0000000000000026 RDI: 0000009ebdf9fc58
[  153.581870] RBP: ffff888103b60000 R08: 0000000000000026 R09: 000000000000104a
[  153.581871] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8881502401e8
[  153.581871] R13: 0000000000000000 R14: 0000000000000001 R15: ffff888150243608
[  153.581873] FS:  00007f7c469938c0(0000) GS:ffff888255780000(0000) knlGS:0000000000000000
[  153.581874] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  153.581875] CR2: 00007fc9dccd0700 CR3: 000000010bc36004 CR4: 0000000000770ee0
[  153.581876] PKRU: 55555554
[  153.581877] Call Trace:
[  153.581879]  <TASK>
[  153.581881]  ? __warn+0x7d/0xc0
[  153.581884]  ? dc_commit_state_no_check+0xc25/0xcd0 [amdgpu]
[  153.581958]  ? report_bug+0xe2/0x150
[  153.581961]  ? handle_bug+0x41/0x70
[  153.581963]  ? exc_invalid_op+0x13/0x60
[  153.581964]  ? asm_exc_invalid_op+0x16/0x20
[  153.581967]  ? dc_commit_state_no_check+0xc25/0xcd0 [amdgpu]
[  153.582039]  ? dc_commit_state_no_check+0x9ea/0xcd0 [amdgpu]
[  153.582111]  dc_commit_state+0x107/0x120 [amdgpu]
[  153.582184]  amdgpu_dm_atomic_commit_tail+0x630/0x3790 [amdgpu]
[  153.582284]  ? free_unref_page_commit+0x7c/0x170
[  153.582287]  ? _raw_spin_unlock+0xa/0x30
[  153.582288]  ? free_unref_page+0x15f/0x1d0
[  153.582289]  ? update_load_avg+0x7e/0x780
[  153.582292]  ? psi_group_change+0x145/0x360
[  153.582293]  ? psi_task_switch+0xd2/0x230
[  153.582294]  ? _raw_spin_unlock+0xa/0x30
[  153.582295]  ? finish_task_switch.isra.0+0x90/0x2d0
[  153.582297]  ? __schedule+0x355/0x9e0
[  153.582297]  ? schedule+0x5a/0xd0
[  153.582298]  ? schedule_timeout+0x118/0x150
[  153.582299]  ? _raw_spin_unlock_irqrestore+0xa/0x40
[  153.582300]  ? dma_fence_default_wait+0x8f/0x260
[  153.582303]  commit_tail+0x94/0x130 [drm_kms_helper]
[  153.582312]  drm_atomic_helper_commit+0x112/0x140 [drm_kms_helper]
[  153.582318]  drm_atomic_commit+0x96/0xc0 [drm]
[  153.582333]  ? drm_plane_get_damage_clips.cold+0x1c/0x1c [drm]
[  153.582346]  drm_client_modeset_commit_atomic+0x206/0x250 [drm]
[  153.582377]  drm_client_modeset_commit_locked+0x56/0x160 [drm]
[  153.582388]  drm_client_modeset_commit+0x21/0x40 [drm]
[  153.582400]  drm_fb_helper_set_par+0x9e/0xe0 [drm_kms_helper]
[  153.582407]  set_con2fb_map+0x18f/0x3f0
[  153.582410]  fbcon_fb_registered+0x9b/0x140
[  153.582412]  register_framebuffer+0x1c9/0x300
[  153.582414]  __drm_fb_helper_initial_config_and_unlock+0x388/0x510 [drm_kms_helper]
[  153.582420]  drm_fbdev_client_hotplug+0x186/0x220 [drm_kms_helper]
[  153.582426]  drm_client_register+0x75/0xb0 [drm]
[  153.582438]  amdgpu_pci_probe+0x3db/0x400 [amdgpu]
[  153.582530]  local_pci_probe+0x41/0x80
[  153.582532]  pci_device_probe+0xc3/0x240
[  153.582534]  really_probe+0xde/0x380
[  153.582536]  ? pm_runtime_barrier+0x50/0x90
[  153.582538]  __driver_probe_device+0x78/0x120
[  153.582539]  driver_probe_device+0x1f/0x90
[  153.582540]  __driver_attach+0xce/0x1c0
[  153.582542]  ? __device_attach_driver+0x110/0x110
[  153.582543]  bus_for_each_dev+0x87/0xd0
[  153.582544]  bus_add_driver+0x1ae/0x200
[  153.582545]  driver_register+0x89/0xe0
[  153.582547]  ? 0xffffffffc26aa000
[  153.582547]  do_one_initcall+0x59/0x220
[  153.582550]  do_init_module+0x4a/0x1f0
[  153.582553]  __do_sys_finit_module+0xac/0x120
[  153.582555]  do_syscall_64+0x5b/0xc0
[  153.582556]  ? syscall_exit_to_user_mode+0x27/0x40
[  153.582558]  ? do_syscall_64+0x67/0xc0
[  153.582559]  ? syscall_exit_to_user_mode+0x27/0x40
[  153.582559]  ? do_syscall_64+0x67/0xc0
[  153.582560]  ? exit_to_user_mode_prepare+0x40/0x1e0
[  153.582562]  ? syscall_exit_to_user_mode+0x27/0x40
[  153.582563]  ? do_syscall_64+0x67/0xc0
[  153.582565]  entry_SYSCALL_64_after_hwframe+0x64/0xce
[  153.582566] RIP: 0033:0x7f7c46c1e559
[  153.582567] Code: 08 89 e8 5b 5d c3 66 2e 0f 1f 84 00 00 00 00 00 90 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 77 08 0d 00 f7 d8 64 89 01 48
[  153.582568] RSP: 002b:00007fff3af2d608 EFLAGS: 00000246 ORIG_RAX: 0000000000000139
[  153.582569] RAX: ffffffffffffffda RBX: 0000560c2b34b4e0 RCX: 00007f7c46c1e559
[  153.582570] RDX: 0000000000000000 RSI: 00007f7c46db1efd RDI: 0000000000000017
[  153.582570] RBP: 00007f7c46db1efd R08: 0000000000000000 R09: 0000560c2b253370
[  153.582570] R10: 0000000000000017 R11: 0000000000000246 R12: 0000000000020000
[  153.582571] R13: 0000000000000000 R14: 0000560c2b3124d0 R15: 0000560c2a8c6ec1
[  153.582572]  </TASK>
[  153.582572] ---[ end trace 0000000000000000 ]---
[  153.770883] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[  153.770895] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[  153.770902] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[  153.770907] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[  153.770913] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[  153.770920] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535
[  153.770926] amdgpu 0000:01:00.0: amdgpu: 
               last message was failed ret is 65535

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: xenboot.log --]
[-- Type: text/x-log; charset="US-ASCII"; name="xenboot.log", Size: 168871 bytes --]

(XEN) Xen version 4.17.3-pre (Debian 4.17.2+76-ge1f9cb16e2-1~deb12u1) (pkg-xen-devel@lists.alioth.debian.org) (x86_64-linux-gnu-gcc (Debian 12.2.0-14) 12.2.0) debug=n Sat Dec  2 16:58:08 UTC 2023\r(XEN) build-id: 5f0ae91eb6bd09cd636e8b73c6e69fee\r(XEN) Console output is synchronous.\r(XEN) Bootloader: EFI\r(XEN) Command line: dom0_mem=8G,max:8G loglvl=all e820-verbose=true console_to_ring sync_console guest_loglvl=all com1=115200,8n1 console=com1,vga dom0=pvh\r(XEN) Xen image load base address: 0x94c00000\r(XEN) Video information:\r(XEN)  VGA is graphics mode 800x600, 32 bpp\r(XEN)  VBE/DDC methods: none; EDID transfer time: 0 seconds\r(XEN) Disc information:\r(XEN)  Found 0 MBR signatures\r(XEN)  Found 6 EDD information structures\r(XEN) CPU Vendor: AMD, Family 25 (0x19), Model 24 (0x18), Stepping 1 (raw 00a10f81)\r(XEN) Enabling Supervisor Shadow Stacks\r(XEN) Initial EFI RAM map:\r(XEN)  [0000000000000000, 000000000009ffff] (usable)\r(XEN)  [0000000000100000, 0000000003ffffff] (usable)\r(XEN)  [0000000004000000, 0000000004045fff] (ACPI NVS)\r(XEN)  [0000000004046000, 0000000009afefff] (usable)\r(XEN)  [0000000009aff000, 0000000009ffffff] (reserved)\r(XEN)  [000000000a000000, 000000000affffff] (usable)\r(XEN)  [000000000b000000, 000000000b020fff] (reserved)\r(XEN)  [000000000b021000, 00000000a04e8fff] (usable)\r(XEN)  [00000000a04e9000, 00000000a64e8fff] (reserved)\r(XEN)  [00000000a64e9000, 00000000a747efff] (ACPI data)\r(XEN)  [00000000a747f000, 00000000a947efff] (ACPI NVS)\r(XEN)  [00000000a947f000, 00000000addfefff] (reserved)\r(XEN)  [00000000addff000, 00000000afffafff] (usable)\r(XEN)  [00000000afffb000, 00000000afffffff] (reserved)\r(XEN)  [0000000100000000, 000000403dbbffff] (usable)\r(XEN)  [00000000000a0000, 00000000000fffff] (reserved)\r(XEN)  [00000000b0000000, 00000000bfffffff] (reserved)\r(XEN)  [00000000df200000, 00000000df2fffff] (reserved)\r(XEN)  [00000000e0000000, 00000000efffffff] (reserved)\r(XEN)  [00000000fea00000, 00000000feafffff] (reserved)\r(XEN)  [00000000fec00000, 00000000fec00fff] (reserved)\r(XEN)  [00000000fec10000, 00000000fec10fff] (reserved)\r(XEN)  [00000000fec30000, 00000000fec30fff] (reserved)\r(XEN)  [00000000fed00000, 00000000fed00fff] (reserved)\r(XEN)  [00000000fed40000, 00000000fed44fff] (reserved)\r(XEN)  [00000000fed80000, 00000000fed8ffff] (reserved)\r(XEN)  [00000000ff000000, 00000000ffffffff] (reserved)\r(XEN)  [000000403dbc0000, 000000403fffffff] (reserved)\r(XEN) EFI RAM map:\r(XEN)  [0000000000000000, 000000000009ffff] (usable)\r(XEN)  [00000000000a0000, 00000000000fffff] (reserved)\r(XEN)  [0000000000100000, 0000000003ffffff] (usable)\r(XEN)  [0000000004000000, 0000000004045fff] (ACPI NVS)\r(XEN)  [0000000004046000, 0000000009afefff] (usable)\r(XEN)  [0000000009aff000, 0000000009ffffff] (reserved)\r(XEN)  [000000000a000000, 000000000affffff] (usable)\r(XEN)  [000000000b000000, 000000000b020fff] (reserved)\r(XEN)  [000000000b021000, 00000000a04e8fff] (usable)\r(XEN)  [00000000a04e9000, 00000000a64e8fff] (reserved)\r(XEN)  [00000000a64e9000, 00000000a747efff] (ACPI data)\r(XEN)  [00000000a747f000, 00000000a947efff] (ACPI NVS)\r(XEN)  [00000000a947f000, 00000000addfefff] (reserved)\r(XEN)  [00000000addff000, 00000000afffafff] (usable)\r(XEN)  [00000000afffb000, 00000000bfffffff] (reserved)\r(XEN)  [00000000df200000, 00000000df2fffff] (reserved)\r(XEN)  [00000000e0000000, 00000000efffffff] (reserved)\r(XEN)  [00000000fea00000, 00000000feafffff] (reserved)\r(XEN)  [00000000fec00000, 00000000fec00fff] (reserved)\r(XEN)  [00000000fec10000, 00000000fec10fff] (reserved)\r(XEN)  [00000000fec30000, 00000000fec30fff] (reserved)\r(XEN)  [00000000fed00000, 00000000fed00fff] (reserved)\r(XEN)  [00000000fed40000, 00000000fed44fff] (reserved)\r(XEN)  [00000000fed80000, 00000000fed8ffff] (reserved)\r(XEN)  [00000000ff000000, 00000000ffffffff] (reserved)\r(XEN)  [0000000100000000, 000000403dbbffff] (usable)\r(XEN)  [000000403dbc0000, 000000403fffffff] (reserved)\r(XEN) ACPI: RSDP A9463014, 0024 (r2 AMD   )\r(XEN) ACPI: XSDT A9462728, 011C (r1 AMD      A M I         1 AMI   1000013)\r(XEN) ACPI: FACP A747C000, 0114 (r6 AMD      A M I         1 AMI     10013)\r(XEN) ACPI: DSDT A746E000, D2F6 (r2 AMD      A M I         1 INTL 20230331)\r(XEN) ACPI: FACS A945A000, 0040\r(XEN) ACPI: SSDT A747E000, 09CC (r2    AMD BOULDERG        2 MSFT  4000000)\r(XEN) ACPI: SSDT A747D000, 0067 (r2    AMD   CPMDSM        1 INTL 20230331)\r(XEN) ACPI: FIDT A746D000, 009C (r1    AMD    A M I        1 AMI     10013)\r(XEN) ACPI: MCFG A746C000, 003C (r1    AMD    A M I        1 MSFT    10013)\r(XEN) ACPI: SSDT A746B000, 05C5 (r2    AMD  CPUSSDT        1 AMI         1)\r(XEN) ACPI: HPET A746A000, 0038 (r1    AMD    A M I        1 AMI         5)\r(XEN) ACPI: SSDT A7468000, 1B53 (r2    AMD   CPMRAS        1 INTL 20230331)\r(XEN) ACPI: BERT A7467000, 0030 (r1 AMD    AMD BERT        1 AMD         1)\r(XEN) ACPI: FPDT A7465000, 0044 (r1 AMD      A M I   1072009 AMI   1000013)\r(XEN) ACPI: SSDT A7462000, 2448 (r2    AMD GPP_PME_        1 INTL 20230331)\r(XEN) ACPI: SSDT A745F000, 2448 (r2    AMD GPP_PME_        1 INTL 20230331)\r(XEN) ACPI: SSDT A745C000, 2448 (r2    AMD GPP_PME_        1 INTL 20230331)\r(XEN) ACPI: SSDT A7459000, 2448 (r2    AMD GPP_PME_        1 INTL 20230331)\r(XEN) ACPI: VFCT A744A000, E684 (r1 AMD      A M I         1  AMD 31504F47)\r(XEN) ACPI: BGRT A7449000, 0038 (r1 AMD      A M I         1 AMI     10013)\r(XEN) ACPI: SSDT A743E000, A40E (r2    AMD  AMD CPU        1 AMD         1)\r(XEN) ACPI: HMAT A743D000, 00A4 (r2    AMD AmdTable        1 AMD         1)\r(XEN) ACPI: WPBT A684E000, 0036 (r1    AMD    A M I        1 MSFT    10013)\r(XEN) ACPI: IVRS A684D000, 01E8 (r2  AMD   AmdTable        1 AMD         1)\r(XEN) ACPI: SSDT A684C000, 06D4 (r2    AMD  CPMWLRC        1 INTL 20230331)\r(XEN) ACPI: SSDT A6842000, 982F (r2    AMD   CPMCMN        1 INTL 20230331)\r(XEN) ACPI: WSMT A6841000, 0028 (r1 AMD      A M I         1 AMI     10013)\r(XEN) ACPI: APIC A683F000, 1088 (r6 AMD      A M I         1 AMI     10013)\r(XEN) ACPI: SSDT A683C000, 2387 (r2    AMD AOD             1 INTL 20230331)\r(XEN) ACPI: SSDT A683B000, 0500 (r2    AMD MEMTOOL0        2 INTL 20230331)\r(XEN) ACPI: SSDT A683A000, 096A (r2    AMD CPMMSOSC        1 INTL 20230331)\r(XEN) ACPI: SSDT A6839000, 0B72 (r2    AMD CPMACPV6        1 INTL 20230331)\r(XEN) ACPI: SSDT A6838000, 044E (r2    AMD AmdTable        1 INTL 20230331)\r(XEN) ACPI: ERST A6837000, 0230 (r1  AMIER AMI.ERST        0 AMI.        0)\r(XEN) ACPI: HEST A6806000, 30A14 (r1 AMD    AMD HEST        1 AMD         1)\r(XEN) System RAM: 261628MB (267907956kB)\r(XEN) No NUMA configuration found\r(XEN) Faking a node at 0000000000000000-000000403dbc0000\r(XEN) Domain heap initialised\r(XEN) vesafb: framebuffer at 0x000004d800000000, mapped to 0xffff82c000201000, using 1984k, total 1984k\r(XEN) vesafb: mode is 800x600x32, linelength=3328, font 8x8\r(XEN) vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0\r(XEN) SMBIOS 3.6 present.\r(XEN) x2APIC mode is already enabled by BIOS.\r(XEN) Using APIC driver x2apic_cluster\r(XEN) ACPI: PM-Timer IO Port: 0x808 (32 bits)\r(XEN) ACPI: v5 SLEEP INFO: control[0:0], status[0:0]\r(XEN) ACPI: SLEEP INFO: pm1x_cnt[1:804,1:0], pm1x_evt[1:800,1:0]\r(XEN) ACPI: 32/64X FACS address mismatch in FADT - a945a000/0000000000000000, using 32\r(XEN) ACPI:             wakeup_vec[a945a00c], vec_size[20]\r(XEN) ACPI: Local APIC address 0xfee00000\r(XEN) ACPI: IOAPIC (id[0x80] address[0xfec00000] gsi_base[0])\r(XEN) IOAPIC[0]: apic_id 128, version 33, address 0xfec00000, GSI 0-23\r(XEN) ACPI: IOAPIC (id[0x81] address[0xdf180000] gsi_base[120])\r(XEN) IOAPIC[1]: apic_id 129, version 33, address 0xdf180000, GSI 120-151\r(XEN) ACPI: IOAPIC (id[0x82] address[0xd3180000] gsi_base[88])\r(XEN) IOAPIC[2]: apic_id 130, version 33, address 0xd3180000, GSI 88-119\r(XEN) ACPI: IOAPIC (id[0x83] address[0xf7180000] gsi_base[24])\r(XEN) IOAPIC[3]: apic_id 131, version 33, address 0xf7180000, GSI 24-55\r(XEN) ACPI: IOAPIC (id[0x84] address[0xc9180000] gsi_base[56])\r(XEN) IOAPIC[4]: apic_id 132, version 33, address 0xc9180000, GSI 56-87\r(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)\r(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)\r(XEN) ACPI: IRQ0 used by override.\r(XEN) ACPI: IRQ2 used by override.\r(XEN) ACPI: IRQ9 used by override.\r(XEN) ACPI: HPET id: 0x10228201 base: 0xfed00000\r(XEN) PCI: MCFG configuration 0: base e0000000 segment 0000 buses 00 - ff\r(XEN) PCI: MCFG area at e0000000 reserved in E820\r(XEN) PCI: Using MCFG for segment 0000 bus 00-ff\r(XEN) Xen ERST support is initialized.\r(XEN) HEST: Table parsing has been initialized\r(XEN) ACPI: BGRT: invalidating v1 image at 0x9b0d0018\r(XEN) Using ACPI (MADT) for SMP configuration information\r(XEN) SMP: Allowing 48 CPUs (0 hotplug CPUs)\r(XEN) IRQ limits: 152 GSI, 9832 MSI/MSI-X\r(XEN) AMD-Vi: IOMMU Extended Features:\r(XEN) - Peripheral Page Service Request\r(XEN) - x2APIC\r(XEN) - NX bit\r(XEN) - Guest APIC Physical Processor Interrupt\r(XEN) - Invalidate All Command\r(XEN) - Guest APIC\r(XEN) - Performance Counters\r(XEN) - Host Address Translation Size: 0x2\r(XEN) - Guest Address Translation Size: 0x1\r(XEN) - Guest CR3 Root Table Level: 0x1\r(XEN) - Maximum PASID: 0xf\r(XEN) - SMI Filter Register: 0x1\r(XEN) - SMI Filter Register Count: 0x2\r(XEN) - Guest Virtual APIC Modes: 0x1\r(XEN) - Dual PPR Log: 0x2\r(XEN) - Dual Event Log: 0x2\r(XEN) - Secure ATS\r(XEN) - User / Supervisor Page Protection\r(XEN) - Device Table Segmentation: 0\r(XEN) - PPR Log Overflow Early Warning\r(XEN) - PPR Automatic Response\r(XEN) - Memory Access Routing and Control: 0\r(XEN) - Block StopMark Message\r(XEN) - Performance Optimization\r(XEN) - MSI Capability MMIO Access\r(XEN) - Guest I/O Protection\r(XEN) - Host Access\r(XEN) - Enhanced PPR Handling\r(XEN) - Attribute Forward\r(XEN) - Host Dirty\r(XEN) - Virtualized IOMMU\r(XEN) - VMGuard I/O Support\r(XEN) - VM Table Size: 0x2\r(XEN) - Guest Access Bit Update Disable\r(XEN) AMD-Vi: Disabled HAP memory map sharing with IOMMU\r(XEN) AMD-Vi: IOMMU 0 Enabled.\r(XEN) AMD-Vi: IOMMU 1 Enabled.\r(XEN) AMD-Vi: IOMMU 2 Enabled.\r(XEN) AMD-Vi: IOMMU 3 Enabled.\r(XEN) CPU0: 1500 ... 4200 MHz\r(XEN) xstate: size: 0x988 and states: 0x2e7\r(XEN) CPU0: AMD Fam19h machine check reporting enabled\r(XEN) Speculative mitigation facilities:\r(XEN)   Hardware hints: STIBP_ALWAYS IBRS_FAST IBRS_SAME_MODE BTC_NO IBPB_RET\r(XEN)   Hardware features: IBPB IBRS STIBP SSBD PSFD L1D_FLUSH\r(XEN)   Compiled-in support: INDIRECT_THUNK SHADOW_PAGING\r(XEN)   Xen settings: BTI-Thunk JMP, SPEC_CTRL: IBRS+ STIBP+ SSBD- PSFD-, Other: BRANCH_HARDEN\r(XEN)   Support for HVM VMs: MSR_SPEC_CTRL MSR_VIRT_SPEC_CTRL RSB IBPB-entry\r(XEN)   Support for PV VMs: IBPB-entry\r(XEN)   XPTI (64-bit PV only): Dom0 disabled, DomU disabled (with PCID)\r(XEN)   PV L1TF shadowing: Dom0 disabled, DomU disabled\r(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)\r(XEN) Initializing Credit2 scheduler\r(XEN)  load_precision_shift: 18\r(XEN)  load_window_shift: 30\r(XEN)  underload_balance_tolerance: 0\r(XEN)  overload_balance_tolerance: -3\r(XEN)  runqueues arrangement: socket\r(XEN)  cap enforcement granularity: 10ms\r(XEN) load tracking window length 1073741824 ns\r(XEN) Platform timer is 14.318MHz HPET\r(XEN) Detected 4199.960 MHz processor.\r(XEN) EFI memory map:\r(XEN)  0000000000000-000000009cfff type=7 attr=000000000000000f\r(XEN)  000000009d000-000000009efff type=2 attr=000000000000000f\r(XEN)  000000009f000-000000009ffff type=4 attr=000000000000000f\r(XEN)  0000000100000-0000003ffffff type=7 attr=000000000000000f\r(XEN)  0000004000000-0000004045fff type=10 attr=000000000000000f\r(XEN)  0000004046000-0000009afefff type=7 attr=000000000000000f\r(XEN)  0000009aff000-0000009ffffff type=0 attr=000000000000000f\r(XEN)  000000a000000-000000a2fffff type=4 attr=000000000000000f\r(XEN)  000000a300000-000000affffff type=7 attr=000000000000000f\r(XEN)  000000b000000-000000b020fff type=0 attr=000000000000000f\r(XEN)  000000b021000-0000091bb0fff type=7 attr=000000000000000f\r(XEN)  0000091bb1000-0000094bfffff type=2 attr=000000000000000f\r(XEN)  0000094c00000-0000095bfffff type=1 attr=000000000000000f\r(XEN)  0000095c00000-0000095d0cfff type=7 attr=000000000000000f\r(XEN)  0000095d0d000-00000974e8fff type=4 attr=000000000000000f\r(XEN)  00000974e9000-0000097ea2fff type=7 attr=000000000000000f\r(XEN)  0000097ea3000-0000097ea4fff type=4 attr=000000000000000f\r(XEN)  0000097ea5000-0000097f77fff type=7 attr=000000000000000f\r(XEN)  0000097f78000-000009b1dbfff type=4 attr=000000000000000f\r(XEN)  000009b1dc000-000009b1defff type=7 attr=000000000000000f\r(XEN)  000009b1df000-000009e4e8fff type=4 attr=000000000000000f\r(XEN)  000009e4e9000-000009fd76fff type=7 attr=000000000000000f\r(XEN)  000009fd77000-00000a04e8fff type=3 attr=000000000000000f\r(XEN)  00000a04e9000-00000a64e8fff type=0 attr=000000000000000f\r(XEN)  00000a64e9000-00000a747efff type=9 attr=000000000000000f\r(XEN)  00000a747f000-00000a947efff type=10 attr=000000000000000f\r(XEN)  00000a947f000-00000adc7efff type=6 attr=800000000000000f\r(XEN)  00000adc7f000-00000addfefff type=5 attr=800000000000000f\r(XEN)  00000addff000-00000adffffff type=4 attr=000000000000000f\r(XEN)  00000ae000000-00000ae13afff type=7 attr=000000000000000f\r(XEN)  00000ae13b000-00000ae23afff type=4 attr=000000000000000f\r(XEN)  00000ae23b000-00000ae25bfff type=3 attr=000000000000000f\r(XEN)  00000ae25c000-00000af765fff type=4 attr=000000000000000f\r(XEN)  00000af766000-00000af782fff type=3 attr=000000000000000f\r(XEN)  00000af783000-00000af79bfff type=4 attr=000000000000000f\r(XEN)  00000af79c000-00000af79ffff type=3 attr=000000000000000f\r(XEN)  00000af7a0000-00000af7b3fff type=4 attr=000000000000000f\r(XEN)  00000af7b4000-00000af7dcfff type=3 attr=000000000000000f\r(XEN)  00000af7dd000-00000afff3fff type=4 attr=000000000000000f\r(XEN)  00000afff4000-00000afffafff type=3 attr=000000000000000f\r(XEN)  00000afffb000-00000afffffff type=6 attr=800000000000000f\r(XEN)  0000100000000-000403dbbffff type=7 attr=000000000000000f\r(XEN)  00000000a0000-00000000fffff type=0 attr=000000000000000f\r(XEN)  00000b0000000-00000bfffffff type=0 attr=000000000000000f\r(XEN)  00000df200000-00000df2fffff type=11 attr=8000000000000001\r(XEN)  00000e0000000-00000efffffff type=11 attr=800000000000100d\r(XEN)  00000fea00000-00000feafffff type=11 attr=8000000000000001\r(XEN)  00000fec00000-00000fec00fff type=11 attr=8000000000000001\r(XEN)  00000fec10000-00000fec10fff type=11 attr=8000000000000001\r(XEN)  00000fec30000-00000fec30fff type=11 attr=8000000000000001\r(XEN)  00000fed00000-00000fed00fff type=11 attr=8000000000000001\r(XEN)  00000fed40000-00000fed44fff type=11 attr=8000000000000001\r(XEN)  00000fed80000-00000fed8ffff type=11 attr=8000000000000001\r(XEN)  00000ff000000-00000ffffffff type=11 attr=8000000000000001\r(XEN)  000403dbc0000-000403fffffff type=0 attr=000000000000000f\r(XEN) alt table ffff82d0406931d0 -> ffff82d04069f1fc\r(XEN) I/O virtualisation enabled\r(XEN)  - Dom0 mode: Relaxed\r(XEN) Interrupt remapping enabled\r(XEN) nr_sockets: 1\r(XEN) Enabled directed EOI with ioapic_ack_old on!\r(XEN) Enabling APIC mode:  Clustered.  Using 5 I/O APICs\r(XEN) ENABLING IO-APIC IRQs\r(XEN)  -> Using old ACK method\r(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1\r(XEN) Defaulting to alternative key handling; send 'A' to switch to normal mode.\r(XEN) Allocated console ring of 512 KiB.\r(XEN) mwait-idle: does not run on family 25 model 24\r(XEN) HVM: ASIDs enabled.\r(XEN) SVM: Supported advanced features:\r(XEN)  - Nested Page Tables (NPT)\r(XEN)  - Last Branch Record (LBR) Virtualisation\r(XEN)  - Next-RIP Saved on #VMEXIT\r(XEN)  - VMCB Clean Bits\r(XEN)  - DecodeAssists\r(XEN)  - Virtual VMLOAD/VMSAVE\r(XEN)  - Virtual GIF\r(XEN)  - Pause-Intercept Filter\r(XEN)  - Pause-Intercept Filter Threshold\r(XEN)  - TSC Rate MSR\r(XEN)  - NPT Supervisor Shadow Stack\r(XEN)  - MSR_SPEC_CTRL virtualisation\r(XEN) HVM: SVM enabled\r(XEN) HVM: Hardware Assisted Paging (HAP) detected\r(XEN) HVM: HAP page sizes: 4kB, 2MB, 1GB\r(XEN) alt table ffff82d0406931d0 -> ffff82d04069f1fc\r(XEN) Brought up 48 CPUs\r(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource\r(XEN) Initializing Credit2 scheduler\r(XEN)  load_precision_shift: 18\r(XEN)  load_window_shift: 30\r(XEN)  underload_balance_tolerance: 0\r(XEN)  overload_balance_tolerance: -3\r(XEN)  runqueues arrangement: socket\r(XEN)  cap enforcement granularity: 10ms\r(XEN) load tracking window length 1073741824 ns\r(XEN) Adding cpu 0 to runqueue 0\r(XEN)  First cpu on runqueue, activating\r(XEN) Adding cpu 1 to runqueue 0\r(XEN) Adding cpu 2 to runqueue 0\r(XEN) Adding cpu 3 to runqueue 0\r(XEN) Adding cpu 4 to runqueue 0\r(XEN) Adding cpu 5 to runqueue 0\r(XEN) Adding cpu 6 to runqueue 0\r(XEN) Adding cpu 7 to runqueue 0\r(XEN) Adding cpu 8 to runqueue 0\r(XEN) Adding cpu 9 to runqueue 0\r(XEN) Adding cpu 10 to runqueue 0\r(XEN) Adding cpu 11 to runqueue 0\r(XEN) Adding cpu 12 to runqueue 0\r(XEN) Adding cpu 13 to runqueue 0\r(XEN) Adding cpu 14 to runqueue 0\r(XEN) Adding cpu 15 to runqueue 0\r(XEN) Adding cpu 16 to runqueue 1\r(XEN)  First cpu on runqueue, activating\r(XEN) Adding cpu 17 to runqueue 1\r(XEN) Adding cpu 18 to runqueue 1\r(XEN) Adding cpu 19 to runqueue 1\r(XEN) Adding cpu 20 to runqueue 1\r(XEN) Adding cpu 21 to runqueue 1\r(XEN) Adding cpu 22 to runqueue 1\r(XEN) Adding cpu 23 to runqueue 1\r(XEN) Adding cpu 24 to runqueue 1\r(XEN) Adding cpu 25 to runqueue 1\r(XEN) Adding cpu 26 to runqueue 1\r(XEN) Adding cpu 27 to runqueue 1\r(XEN) Adding cpu 28 to runqueue 1\r(XEN) Adding cpu 29 to runqueue 1\r(XEN) Adding cpu 30 to runqueue 1\r(XEN) Adding cpu 31 to runqueue 1\r(XEN) Adding cpu 32 to runqueue 2\r(XEN)  First cpu on runqueue, activating\r(XEN) Adding cpu 33 to runqueue 2\r(XEN) Adding cpu 34 to runqueue 2\r(XEN) Adding cpu 35 to runqueue 2\r(XEN) Adding cpu 36 to runqueue 2\r(XEN) Adding cpu 37 to runqueue 2\r(XEN) Adding cpu 38 to runqueue 2\r(XEN) Adding cpu 39 to runqueue 2\r(XEN) Adding cpu 40 to runqueue 2\r(XEN) Adding cpu 41 to runqueue 2\r(XEN) Adding cpu 42 to runqueue 2\r(XEN) Adding cpu 43 to runqueue 2\r(XEN) Adding cpu 44 to runqueue 2\r(XEN) Adding cpu 45 to runqueue 2\r(XEN) Adding cpu 46 to runqueue 2\r(XEN) Adding cpu 47 to runqueue 2\r(XEN) mcheck_poll: Machine check polling timer started.\r(XEN) xenoprof: Initialization failed. AMD processor family 25 is not supported\r(XEN) NX (Execute Disable) protection active\r(XEN) Dom0 has maximum 1400 PIRQs\r(XEN) *** Building a PVH Dom0 ***\r(XEN) WARNING: PVH is an experimental mode with limited functionality\r(XEN) Initial low memory virq threshold set at 0x4000 pages.\r(XEN) Scrubbing Free RAM in background\r(XEN) Std. Loglevel: All\r(XEN) Guest Loglevel: All\r(XEN) ***************************************************\r(XEN) WARNING: CONSOLE OUTPUT IS SYNCHRONOUS\r(XEN) This option is intended to aid debugging of Xen by ensuring\r(XEN) that all output is synchronously delivered on the serial line.\r(XEN) However it can introduce SIGNIFICANT latencies and affect\r(XEN) timekeeping. It is NOT recommended for production use!\r(XEN) ***************************************************\r(XEN) 3... 2... 1... \r(XEN) Xen is relinquishing VGA console.\r(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)\r(XEN) Freed 2048kB init memory\r[    0.000000] Linux version 6.1.69 (root@pollux) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #10 SMP PREEMPT_DYNAMIC Wed Jan 17 23:44:31 EST 2024\r[    0.000000] Command line: root=UUID=922b10f2-a826-47fb-ab38-836f9b397ff7 ro rootflags=subvol=@rootfs  earlyprintk=xen console=hvc0\r[    0.000000] [Firmware Bug]: TSC doesn't count with P0 frequency!\r[    0.000000] BIOS-provided physical RAM map:\r[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable\r[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved\r[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000003ffffff] usable\r[    0.000000] BIOS-e820: [mem 0x0000000004000000-0x0000000004045fff] ACPI NVS\r[    0.000000] BIOS-e820: [mem 0x0000000004046000-0x0000000009afefff] usable\r[    0.000000] BIOS-e820: [mem 0x0000000009aff000-0x0000000009ffffff] reserved\r[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000affffff] usable\r[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b020fff] reserved\r[    0.000000] BIOS-e820: [mem 0x000000000b021000-0x00000000a04e8fff] usable\r[    0.000000] BIOS-e820: [mem 0x00000000a04e9000-0x00000000a64e8fff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000a64e9000-0x00000000a747efff] ACPI data\r[    0.000000] BIOS-e820: [mem 0x00000000a747f000-0x00000000a947efff] ACPI NVS\r[    0.000000] BIOS-e820: [mem 0x00000000a947f000-0x00000000addfefff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000addff000-0x00000000afffab9b] usable\r[    0.000000] BIOS-e820: [mem 0x00000000afffab9c-0x00000000afffaf17] ACPI data\r[    0.000000] BIOS-e820: [mem 0x00000000afffb000-0x00000000bfffffff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000df200000-0x00000000df2fffff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000feafffff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved\r[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved\r[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000025dee2fff] usable\r[    0.000000] BIOS-e820: [mem 0x000000025dee3000-0x000000403dbbffff] unusable\r[    0.000000] BIOS-e820: [mem 0x000000403dbc0000-0x000000403fffffff] reserved\r[    0.000000] printk: bootconsole [xenboot0] enabled\r[    0.000000] NX (Execute Disable) protection: active\r[    0.000000] efi: EFI v2.90 by American Megatrends\r[    0.000000] efi: ACPI=0xa9463000 ACPI 2.0=0xa9463014 SMBIOS=0xad9f4000 SMBIOS 3.0=0xad9f3000 MEMATTR=0x99e26698 ESRT=0xa7466018 \r[    0.000000] secureboot: Secure boot disabled\r[    0.000000] SMBIOS 3.6.0 present.\r[    0.000000] DMI: To Be Filled By O.E.M. TRX50 WS/TRX50 WS, BIOS 7.08 01/16/2024\r[    0.000000] Hypervisor detected: Xen HVM\r[    0.000000] Xen version 4.17.\r[    0.043916] tsc: Fast TSC calibration failed\r[    0.048843] tsc: Detected 4199.960 MHz processor\r[    0.054375] last_pfn = 0x25dee3 max_arch_pfn = 0x400000000\r[    0.062033] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  \r[    0.070417] CPU MTRRs all blank - virtualized system.\r[    0.076209] last_pfn = 0xafffa max_arch_pfn = 0x400000000\r[    0.085594] Using GB pages for direct mapping\r[    0.091184] RAMDISK: [mem 0x04046000-0x068cdfff]\r[    0.096533] ACPI: Early table checksum verification disabled\r[    0.103248] ACPI: RSDP 0x00000000AFFFAB9C 000024 (v02 AMD   )\r[    0.109716] ACPI: XSDT 0x00000000AFFFABC0 0000C4 (v01 AMD    A M I    00000001 AMI  01000013)\r[    0.119663] ACPI: APIC 0x00000000AFFFAC84 00037C (v04 AMD    A M I    00000001 AMI  00010013)\r[    0.129538] ACPI: FACP 0x00000000A747C000 000114 (v06 AMD    A M I    00000001 AMI  00010013)\r[    0.139250] ACPI: DSDT 0x00000000A746E000 00D2F6 (v02 AMD    A M I    00000001 INTL 20230331)\r[    0.148717] ACPI: FACS 0x00000000A945A000 000040\r[    0.153805] ACPI: SSDT 0x00000000A747E000 0009CC (v02 AMD    BOULDERG 00000002 MSFT 04000000)\r[    0.163309] ACPI: SSDT 0x00000000A747D000 000067 (v02 AMD    CPMDSM   00000001 INTL 20230331)\r[    0.172813] ACPI: MCFG 0x00000000A746C000 00003C (v01 AMD    A M I    00000001 MSFT 00010013)\r[    0.182351] ACPI: SSDT 0x00000000A746B000 0005C5 (v02 AMD    CPUSSDT  00000001 AMI  00000001)\r[    0.191806] ACPI: SSDT 0x00000000A7468000 001B53 (v02 AMD    CPMRAS   00000001 INTL 20230331)\r[    0.201308] ACPI: FPDT 0x00000000A7465000 000044 (v01 AMD    A M I    01072009 AMI  01000013)\r[    0.210819] ACPI: SSDT 0x00000000A7462000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)\r[    0.220343] ACPI: SSDT 0x00000000A745F000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)\r[    0.229884] ACPI: SSDT 0x00000000A745C000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)\r[    0.239351] ACPI: SSDT 0x00000000A7459000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)\r[    0.248780] ACPI: SSDT 0x00000000A743E000 00A40E (v02 AMD    AMD CPU  00000001 AMD  00000001)\r[    0.258288] ACPI: SSDT 0x00000000A684C000 0006D4 (v02 AMD    CPMWLRC  00000001 INTL 20230331)\r[    0.267815] ACPI: SSDT 0x00000000A6842000 00982F (v02 AMD    CPMCMN   00000001 INTL 20230331)\r[    0.277339] ACPI: SSDT 0x00000000A683C000 002387 (v02 AMD    AOD      00000001 INTL 20230331)\r[    0.286840] ACPI: SSDT 0x00000000A683B000 000500 (v02 AMD    MEMTOOL0 00000002 INTL 20230331)\r[    0.296283] ACPI: SSDT 0x00000000A683A000 00096A (v02 AMD    CPMMSOSC 00000001 INTL 20230331)\r[    0.305841] ACPI: SSDT 0x00000000A6839000 000B72 (v02 AMD    CPMACPV6 00000001 INTL 20230331)\r[    0.315288] ACPI: SSDT 0x00000000A6838000 00044E (v02 AMD    AmdTable 00000001 INTL 20230331)\r[    0.324802] ACPI: Reserving APIC table memory at [mem 0xafffac84-0xafffafff]\r[    0.332592] ACPI: Reserving FACP table memory at [mem 0xa747c000-0xa747c113]\r[    0.340419] ACPI: Reserving DSDT table memory at [mem 0xa746e000-0xa747b2f5]\r[    0.348189] ACPI: Reserving FACS table memory at [mem 0xa945a000-0xa945a03f]\r[    0.356058] ACPI: Reserving SSDT table memory at [mem 0xa747e000-0xa747e9cb]\r[    0.363906] ACPI: Reserving SSDT table memory at [mem 0xa747d000-0xa747d066]\r[    0.371757] ACPI: Reserving MCFG table memory at [mem 0xa746c000-0xa746c03b]\r[    0.379576] ACPI: Reserving SSDT table memory at [mem 0xa746b000-0xa746b5c4]\r[    0.387437] ACPI: Reserving SSDT table memory at [mem 0xa7468000-0xa7469b52]\r[    0.395337] ACPI: Reserving FPDT table memory at [mem 0xa7465000-0xa7465043]\r[    0.403153] ACPI: Reserving SSDT table memory at [mem 0xa7462000-0xa7464447]\r[    0.410989] ACPI: Reserving SSDT table memory at [mem 0xa745f000-0xa7461447]\r[    0.418802] ACPI: Reserving SSDT table memory at [mem 0xa745c000-0xa745e447]\r[    0.426642] ACPI: Reserving SSDT table memory at [mem 0xa7459000-0xa745b447]\r[    0.434529] ACPI: Reserving SSDT table memory at [mem 0xa743e000-0xa744840d]\r[    0.442393] ACPI: Reserving SSDT table memory at [mem 0xa684c000-0xa684c6d3]\r[    0.450203] ACPI: Reserving SSDT table memory at [mem 0xa6842000-0xa684b82e]\r[    0.458038] ACPI: Reserving SSDT table memory at [mem 0xa683c000-0xa683e386]\r[    0.465853] ACPI: Reserving SSDT table memory at [mem 0xa683b000-0xa683b4ff]\r[    0.473805] ACPI: Reserving SSDT table memory at [mem 0xa683a000-0xa683a969]\r[    0.481626] ACPI: Reserving SSDT table memory at [mem 0xa6839000-0xa6839b71]\r[    0.489475] ACPI: Reserving SSDT table memory at [mem 0xa6838000-0xa683844d]\r[    0.497416] No NUMA configuration found\r[    0.501623] Faking a node at [mem 0x0000000000000000-0x000000025dee2fff]\r[    0.509060] NODE_DATA(0) allocated [mem 0x25deb8000-0x25dee2fff]\r[    0.515875] Zone ranges:\r[    0.518674]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]\r[    0.525817]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]\r[    0.533002]   Normal   [mem 0x0000000100000000-0x000000025dee2fff]\r[    0.540062]   Device   empty\r[    0.543336] Movable zone start for each node\r[    0.548322] Early memory node ranges\r[    0.552552]   node   0: [mem 0x0000000000001000-0x000000000009ffff]\r[    0.559942]   node   0: [mem 0x0000000000100000-0x0000000003ffffff]\r[    0.567180]   node   0: [mem 0x0000000004046000-0x0000000009afefff]\r[    0.574205]   node   0: [mem 0x000000000a000000-0x000000000affffff]\r[    0.581580]   node   0: [mem 0x000000000b021000-0x00000000a04e8fff]\r[    0.588905]   node   0: [mem 0x00000000addff000-0x00000000afff9fff]\r[    0.596247]   node   0: [mem 0x0000000100000000-0x000000025dee2fff]\r[    0.603589] Initmem setup node 0 [mem 0x0000000000001000-0x000000025dee2fff]\r[    0.611687] On node 0, zone DMA: 1 pages in unavailable ranges\r[    0.611704] On node 0, zone DMA: 96 pages in unavailable ranges\r[    0.618672] On node 0, zone DMA32: 70 pages in unavailable ranges\r[    0.625489] On node 0, zone DMA32: 1281 pages in unavailable ranges\r[    0.635023] On node 0, zone DMA32: 33 pages in unavailable ranges\r[    0.642474] On node 0, zone DMA32: 55574 pages in unavailable ranges\r[    0.649459] On node 0, zone Normal: 6 pages in unavailable ranges\r[    0.656857] On node 0, zone Normal: 8477 pages in unavailable ranges\r[    0.664536] ACPI: PM-Timer IO Port: 0x808\r[    0.676319] IOAPIC[0]: apic_id 128, version 17, address 0xfec00000, GSI 0-23\r[    0.684604] IOAPIC[1]: apic_id 129, version 17, address 0xdf180000, GSI 120-151\r[    0.692797] IOAPIC[2]: apic_id 130, version 17, address 0xd3180000, GSI 88-119\r[    0.701297] IOAPIC[3]: apic_id 131, version 17, address 0xf7180000, GSI 24-55\r[    0.709460] IOAPIC[4]: apic_id 132, version 17, address 0xc9180000, GSI 56-87\r[    0.717765] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)\r[    0.724920] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)\r[    0.732579] ACPI: Using ACPI (MADT) for SMP configuration information\r[    0.739918] smpboot: Allowing 48 CPUs, 0 hotplug CPUs\r[    0.745633] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]\r[    0.754504] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]\r[    0.763079] PM: hibernation: Registered nosave memory: [mem 0x04000000-0x04045fff]\r[    0.771691] PM: hibernation: Registered nosave memory: [mem 0x09aff000-0x09ffffff]\r[    0.780245] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b020fff]\r[    0.788644] PM: hibernation: Registered nosave memory: [mem 0xa04e9000-0xa64e8fff]\r[    0.797644] PM: hibernation: Registered nosave memory: [mem 0xa64e9000-0xa747efff]\r[    0.806583] PM: hibernation: Registered nosave memory: [mem 0xa747f000-0xa947efff]\r[    0.815428] PM: hibernation: Registered nosave memory: [mem 0xa947f000-0xaddfefff]\r[    0.824334] PM: hibernation: Registered nosave memory: [mem 0xafffa000-0xafffafff]\r[    0.833290] PM: hibernation: Registered nosave memory: [mem 0xafffa000-0xafffafff]\r[    0.842307] PM: hibernation: Registered nosave memory: [mem 0xafffb000-0xbfffffff]\r[    0.851351] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xdf1fffff]\r[    0.860360] PM: hibernation: Registered nosave memory: [mem 0xdf200000-0xdf2fffff]\r[    0.869382] PM: hibernation: Registered nosave memory: [mem 0xdf300000-0xdfffffff]\r[    0.878019] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]\r[    0.886825] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfe9fffff]\r[    0.895790] PM: hibernation: Registered nosave memory: [mem 0xfea00000-0xfeafffff]\r[    0.904730] PM: hibernation: Registered nosave memory: [mem 0xfeb00000-0xfebfffff]\r[    0.913389] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]\r[    0.922054] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]\r[    0.931099] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]\r[    0.939744] PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]\r[    0.948727] PM: hibernation: Registered nosave memory: [mem 0xfec30000-0xfec30fff]\r[    0.957559] PM: hibernation: Registered nosave memory: [mem 0xfec31000-0xfecfffff]\r[    0.966252] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]\r[    0.975243] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]\r[    0.983826] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff]\r[    0.992871] PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]\r[    1.001864] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]\r[    1.010440] PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfeffffff]\r[    1.019340] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]\r[    1.028115] [mem 0xc0000000-0xdf1fffff] available for PCI devices\r[    1.035130] Booting kernel on Xen PVH\r[    1.039288] Xen version: 4.17.3-pre\r[    1.043396] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns\r[    1.058217] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:1\r[    1.067800] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144\r[    1.075463] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)\r[    1.084140] Fallback order for Node 0: 0 \r[    1.084143] Built 1 zonelists, mobility grouping on.  Total pages: 2060637\r[    1.097063] Policy zone: Normal\r[    1.100805] Kernel command line: root=UUID=922b10f2-a826-47fb-ab38-836f9b397ff7 ro rootflags=subvol=@rootfs  earlyprintk=xen console=hvc0\r[    1.115489] random: crng init done\r[    1.119277] printk: log_buf_len individual max cpu contribution: 4096 bytes\r[    1.127451] printk: log_buf_len total cpu_extra contributions: 192512 bytes\r[    1.135580] printk: log_buf_len min size: 131072 bytes\r[    1.141668] printk: log_buf_len: 524288 bytes\r[    1.146742] printk: early log buf free: 117504(89%)\r[    1.152777] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)\r[    1.161994] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)\r[    1.170834] mem auto-init: stack:all(zero), heap alloc:on, heap free:off\r[    1.178737] software IO TLB: area num 64.\r[    1.190139] Memory: 2625164K/8388600K available (14342K kernel code, 2331K rwdata, 9052K rodata, 2792K init, 17416K bss, 323508K reserved, 0K cma-reserved)\r[    1.206261] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=1\rPoking KASLR using RDRAND RDTSC...\r[    1.217541] ftrace: allocating 40159 entries in 157 pages\r[    1.230055] ftrace: allocated 157 pages with 5 groups\r[    1.236338] Dynamic Preempt: voluntary\r[    1.240466] rcu: Preemptible hierarchical RCU implementation.\r[    1.247046] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=48.\r[    1.255041] 	Trampoline variant of Tasks RCU enabled.\r[    1.260903] 	Rude variant of Tasks RCU enabled.\r[    1.266310] 	Tracing variant of Tasks RCU enabled.\r[    1.271931] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.\r[    1.280724] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=48\r[    1.290978] Using NULL legacy PIC\r[    1.294801] NR_IRQS: 524544, nr_irqs: 2984, preallocated irqs: 0\r[    1.301970] xen:events: Using FIFO-based ABI\r(XEN) d0v0: upcall vector f3\r[    1.309953] xen:events: Xen HVM callback vector for event delivery is enabled\r[    1.318386] rcu: srcu_init: Setting srcu_struct sizes based on contention.\r[    1.326425] Console: colour dummy device 80x25\r[    1.331580] printk: console [tty0] enabled\r[    1.336382] printk: console [hvc0] enabled\r\r[    1.336382] printk: console [hvc0] enabled\r[    1.345840] printk: bootconsole [xenboot0] disabled\r\r[    1.345840] printk: bootconsole [xenboot0] disabled\r[    1.357459] ACPI: Core revision 20220331\r\r[    1.388339] Failed to register legacy timer interrupt\r\r[    1.394384] APIC: Switch to symmetric I/O mode setup\r\r[    1.401266] x2apic enabled\r\r[    1.405495] Switched APIC routing to physical x2apic.\r\r[    1.411510] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3c8a3bbe440, max_idle_ns: 440795298187 ns\r\r[    1.423803] Calibrating delay loop (skipped), value calculated using timer frequency.. 8399.92 BogoMIPS (lpj=16799840)\r\r[    1.427798] x86/cpu: User Mode Instruction Prevention (UMIP) activated\r\r[    1.427798] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256\r\r[    1.427798] Last level dTLB entries: 4KB 3072, 2MB 3072, 4MB 1536, 1GB 0\r\r[    1.427798] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization\r\r[    1.427798] Spectre V2 : Mitigation: Retpolines\r\r[    1.427798] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch\r\r[    1.427798] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT\r\r[    1.427798] Spectre V2 : Enabling Restricted Speculation for firmware calls\r\r[    1.427798] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier\r\r[    1.427798] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl\r\r[    1.427798] Speculative Return Stack Overflow: Mitigation: safe RET\r\r[    1.427798] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'\r\r[    1.427798] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'\r\r[    1.427798] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'\r\r[    1.427798] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'\r\r[    1.427798] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'\r\r[    1.427798] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'\r\r[    1.427798] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'\r\r[    1.427798] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256\r\r[    1.427798] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64\r\r[    1.427798] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512\r\r[    1.427798] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024\r\r[    1.427798] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8\r\r[    1.427798] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.\r\r[    1.427798] Freeing SMP alternatives memory: 36K\r\r[    1.427798] pid_max: default: 49152 minimum: 384\r\r[    1.427798] LSM: Security Framework initializing\r\r[    1.427798] landlock: Up and running.\r\r[    1.427798] Yama: disabled by default; enable with sysctl kernel.yama.*\r\r[    1.427798] AppArmor: AppArmor initialized\r\r[    1.427798] TOMOYO Linux initialized\r\r[    1.427798] LSM support for eBPF active\r\r[    1.427798] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)\r\r[    1.427798] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)\r\r[    1.427798] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\r\r[    1.427798] installing Xen timer for CPU 0\r\r[    1.427798] smpboot: CPU0: AMD Ryzen Threadripper 7960X 24-Cores (family: 0x19, model: 0x18, stepping: 0x1)\r\r[    1.427815] cpu 0 spinlock event irq 28\r\r[    1.431854] cblist_init_generic: Setting adjustable number of callback queues.\r\r[    1.435801] cblist_init_generic: Setting shift to 6 and lim to 1.\r\r[    1.439808] cblist_init_generic: Setting adjustable number of callback queues.\r\r[    1.443800] cblist_init_generic: Setting shift to 6 and lim to 1.\r\r[    1.447807] cblist_init_generic: Setting adjustable number of callback queues.\r\r[    1.451801] cblist_init_generic: Setting shift to 6 and lim to 1.\r\r[    1.455807] Performance Events: PMU not available due to virtualization, using software events only.\r\r[    1.459807] signal: max sigframe size: 3376\r\r[    1.463807] rcu: Hierarchical SRCU implementation.\r\r[    1.467800] rcu: 	Max phase no-delay instances is 1000.\r\r[    1.471914] NMI watchdog: Perf NMI watchdog permanently disabled\r\r[    1.475974] smp: Bringing up secondary CPUs ...\r\r(XEN) d0v1: upcall vector f3\r[    1.482850] installing Xen timer for CPU 1\r\r[    1.483826] x86: Booting SMP configuration:\r\r[    1.487801] .... node  #0, CPUs:        #1\r\r[    1.491497] cpu 1 spinlock event irq 33\r\r(XEN) d0v2: upcall vector f3\r[    1.502874] installing Xen timer for CPU 2\r\r[    1.503843]   #2\r\r[    1.506347] cpu 2 spinlock event irq 38\r\r(XEN) d0v3: upcall vector f3\r[    1.515802] installing Xen timer for CPU 3\r\r[    1.519844]   #3\r\r[    1.522327] cpu 3 spinlock event irq 43\r\r(XEN) d0v4: upcall vector f3\r[    1.531802] installing Xen timer for CPU 4\r\r[    1.535839]   #4\r\r[    1.538282] cpu 4 spinlock event irq 48\r\r(XEN) d0v5: upcall vector f3\r[    1.547801] installing Xen timer for CPU 5\r\r[    1.551832]   #5\r\r[    1.554294] cpu 5 spinlock event irq 53\r\r(XEN) d0v6: upcall vector f3\r[    1.562683] installing Xen timer for CPU 6\r\r[    1.563833]   #6\r\r[    1.566214] cpu 6 spinlock event irq 58\r\r(XEN) d0v7: upcall vector f3\r[    1.575802] installing Xen timer for CPU 7\r\r[    1.579843]   #7\r\r[    1.582249] cpu 7 spinlock event irq 63\r\r(XEN) d0v8: upcall vector f3\r[    1.591802] installing Xen timer for CPU 8\r\r[    1.595849]   #8\r\r[    1.598227] cpu 8 spinlock event irq 68\r\r(XEN) d0v9: upcall vector f3\r[    1.606730] installing Xen timer for CPU 9\r\r[    1.607842]   #9\r\r[    1.610293] cpu 9 spinlock event irq 73\r\r(XEN) d0v10: upcall vector f3\r[    1.619802] installing Xen timer for CPU 10\r\r[    1.623842]  #10\r\r[    1.626296] cpu 10 spinlock event irq 78\r\r(XEN) d0v11: upcall vector f3\r[    1.635801] installing Xen timer for CPU 11\r\r[    1.639837]  #11\r\r[    1.642216] cpu 11 spinlock event irq 83\r\r(XEN) d0v12: upcall vector f3\r[    1.651802] installing Xen timer for CPU 12\r\r[    1.655847]  #12\r\r[    1.658226] cpu 12 spinlock event irq 88\r\r(XEN) d0v13: upcall vector f3\r[    1.667802] installing Xen timer for CPU 13\r\r[    1.671843]  #13\r\r[    1.674283] cpu 13 spinlock event irq 93\r\r(XEN) d0v14: upcall vector f3\r[    1.683802] installing Xen timer for CPU 14\r\r[    1.687847]  #14\r\r[    1.690206] cpu 14 spinlock event irq 98\r\r(XEN) d0v15: upcall vector f3\r[    1.699802] installing Xen timer for CPU 15\r\r[    1.703844]  #15\r\r[    1.706280] cpu 15 spinlock event irq 103\r\r(XEN) d0v16: upcall vector f3\r[    1.715802] installing Xen timer for CPU 16\r\r[    1.719844]  #16\r\r[    1.722314] cpu 16 spinlock event irq 108\r\r(XEN) d0v17: upcall vector f3\r[    1.731802] installing Xen timer for CPU 17\r\r[    1.735838]  #17\r\r[    1.738202] cpu 17 spinlock event irq 113\r\r(XEN) d0v18: upcall vector f3\r[    1.747802] installing Xen timer for CPU 18\r\r[    1.751843]  #18\r\r[    1.754290] cpu 18 spinlock event irq 118\r\r(XEN) d0v19: upcall vector f3\r[    1.763802] installing Xen timer for CPU 19\r\r[    1.767847]  #19\r\r[    1.770290] cpu 19 spinlock event irq 123\r\r(XEN) d0v20: upcall vector f3\r[    1.779801] installing Xen timer for CPU 20\r\r[    1.783839]  #20\r\r[    1.786214] cpu 20 spinlock event irq 128\r\r(XEN) d0v21: upcall vector f3\r[    1.795802] installing Xen timer for CPU 21\r\r[    1.799849]  #21\r\r[    1.802308] cpu 21 spinlock event irq 133\r\r(XEN) d0v22: upcall vector f3\r[    1.811802] installing Xen timer for CPU 22\r\r[    1.815847]  #22\r\r[    1.818250] cpu 22 spinlock event irq 138\r\r(XEN) d0v23: upcall vector f3\r[    1.827802] installing Xen timer for CPU 23\r\r[    1.831845]  #23\r\r[    1.834206] cpu 23 spinlock event irq 143\r\r(XEN) d0v24: upcall vector f3\r[    1.843802] installing Xen timer for CPU 24\r\r[    1.847848]  #24\r\r[    1.850327] cpu 24 spinlock event irq 148\r\r(XEN) d0v25: upcall vector f3\r[    1.859801] installing Xen timer for CPU 25\r\r[    1.863851]  #25\r\r[    1.866303] cpu 25 spinlock event irq 153\r\r(XEN) d0v26: upcall vector f3\r[    1.875801] installing Xen timer for CPU 26\r\r[    1.879844]  #26\r\r[    1.882244] cpu 26 spinlock event irq 158\r\r(XEN) d0v27: upcall vector f3\r[    1.891801] installing Xen timer for CPU 27\r\r[    1.895850]  #27\r\r[    1.898294] cpu 27 spinlock event irq 163\r\r(XEN) d0v28: upcall vector f3\r[    1.907802] installing Xen timer for CPU 28\r\r[    1.911847]  #28\r\r[    1.914317] cpu 28 spinlock event irq 168\r\r(XEN) d0v29: upcall vector f3\r[    1.923802] installing Xen timer for CPU 29\r\r[    1.927849]  #29\r\r[    1.930230] cpu 29 spinlock event irq 173\r\r(XEN) d0v30: upcall vector f3\r[    1.939802] installing Xen timer for CPU 30\r\r[    1.943849]  #30\r\r[    1.946305] cpu 30 spinlock event irq 178\r\r(XEN) d0v31: upcall vector f3\r[    1.955801] installing Xen timer for CPU 31\r\r[    1.959848]  #31\r\r[    1.962305] cpu 31 spinlock event irq 183\r\r(XEN) d0v32: upcall vector f3\r[    1.971802] installing Xen timer for CPU 32\r\r[    1.975848]  #32\r\r[    2.059856] cpu 32 spinlock event irq 188\r\r(XEN) d0v33: upcall vector f3\r[    2.067801] installing Xen timer for CPU 33\r\r[    2.071846]  #33\r\r[    2.074882] cpu 33 spinlock event irq 193\r\r(XEN) d0v34: upcall vector f3\r[    2.083802] installing Xen timer for CPU 34\r\r[    2.087839]  #34\r\r[    2.090167] cpu 34 spinlock event irq 198\r\r(XEN) d0v35: upcall vector f3\r[    2.099802] installing Xen timer for CPU 35\r\r[    2.103841]  #35\r\r[    2.106238] cpu 35 spinlock event irq 203\r\r(XEN) d0v36: upcall vector f3\r[    2.115802] installing Xen timer for CPU 36\r\r[    2.119851]  #36\r\r[    2.122322] cpu 36 spinlock event irq 208\r\r(XEN) d0v37: upcall vector f3\r[    2.131802] installing Xen timer for CPU 37\r\r[    2.135851]  #37\r\r[    2.138225] cpu 37 spinlock event irq 213\r\r(XEN) d0v38: upcall vector f3\r[    2.147802] installing Xen timer for CPU 38\r\r[    2.151854]  #38\r\r[    2.154247] cpu 38 spinlock event irq 218\r\r(XEN) d0v39: upcall vector f3\r[    2.163802] installing Xen timer for CPU 39\r\r[    2.167852]  #39\r\r[    2.170320] cpu 39 spinlock event irq 223\r\r(XEN) d0v40: upcall vector f3\r[    2.179801] installing Xen timer for CPU 40\r\r[    2.183844]  #40\r\r[    2.186324] cpu 40 spinlock event irq 228\r\r(XEN) d0v41: upcall vector f3\r[    2.195801] installing Xen timer for CPU 41\r\r[    2.199850]  #41\r\r[    2.202290] cpu 41 spinlock event irq 233\r\r(XEN) d0v42: upcall vector f3\r[    2.211801] installing Xen timer for CPU 42\r\r[    2.215849]  #42\r\r[    2.218276] cpu 42 spinlock event irq 238\r\r(XEN) d0v43: upcall vector f3\r[    2.227801] installing Xen timer for CPU 43\r\r[    2.231855]  #43\r\r[    2.234255] cpu 43 spinlock event irq 243\r\r(XEN) d0v44: upcall vector f3\r[    2.243801] installing Xen timer for CPU 44\r\r[    2.247854]  #44\r\r[    2.250287] cpu 44 spinlock event irq 248\r\r(XEN) d0v45: upcall vector f3\r[    2.259801] installing Xen timer for CPU 45\r\r[    2.263848]  #45\r\r[    2.266214] cpu 45 spinlock event irq 253\r\r(XEN) d0v46: upcall vector f3\r[    2.275801] installing Xen timer for CPU 46\r\r[    2.279853]  #46\r\r[    2.282346] cpu 46 spinlock event irq 258\r\r(XEN) d0v47: upcall vector f3\r[    2.291801] installing Xen timer for CPU 47\r\r[    2.295852]  #47\r\r[    2.298326] cpu 47 spinlock event irq 263\r\r[    2.304198] smp: Brought up 1 node, 48 CPUs\r\r[    2.307804] smpboot: Max logical packages: 2\r\r[    2.311803] smpboot: Total of 48 processors activated (403310.40 BogoMIPS)\r\r[    2.321469] node 0 deferred pages initialised in 0ms\r\r[    2.328317] devtmpfs: initialized\r\r[    2.331847] x86/mm: Memory block size: 128MB\r\r[    2.336660] clipped [mem 0x09aff000-0x09ffffff] to [mem 0x0a000000-0x09ffffff] for e820 entry [mem 0x09aff000-0x09ffffff]\r\r[    2.339803] clipped [mem 0x0b000000-0x0b020fff] to [mem 0x0b021000-0x0b020fff] for e820 entry [mem 0x0b000000-0x0b020fff]\r\r[    2.343803] clipped [mem 0xa04e9000-0xa64e8fff] to [mem 0xa64e9000-0xa64e8fff] for e820 entry [mem 0xa04e9000-0xa64e8fff]\r\r[    2.347803] clipped [mem 0xa947f000-0xaddfefff] to [mem 0xaddff000-0xaddfefff] for e820 entry [mem 0xa947f000-0xaddfefff]\r\r[    2.351803] clipped [mem 0xafffaf18-0xffdfffff] to [mem 0xc0000000-0xffdfffff] for e820 entry [mem 0xafffb000-0xbfffffff]\r\r[    2.355803] clipped [mem 0xc0000000-0xffdfffff] to [mem 0xdf300000-0xffdfffff] for e820 entry [mem 0xdf200000-0xdf2fffff]\r\r[    2.359802] clipped [mem 0xdf300000-0xffdfffff] to [mem 0xf0000000-0xffdfffff] for e820 entry [mem 0xe0000000-0xefffffff]\r\r[    2.363803] clipped [mem 0xf0000000-0xffdfffff] to [mem 0xf0000000-0xfe9fffff] for e820 entry [mem 0xfea00000-0xfeafffff]\r\r[    2.368117] memmap_init_zone_device initialised 32768 pages in 0ms\r\r[    2.371837] ACPI: PM: Registering ACPI NVS region [mem 0x04000000-0x04045fff] (286720 bytes)\r\r[    2.375809] ACPI: PM: Registering ACPI NVS region [mem 0xa747f000-0xa947efff] (33554432 bytes)\r\r[    2.380120] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns\r\r[    2.383836] futex hash table entries: 16384 (order: 8, 1048576 bytes, linear)\r\r[    2.387869] pinctrl core: initialized pinctrl subsystem\r\r[    2.393098] NET: Registered PF_NETLINK/PF_ROUTE protocol family\r\r[    2.395818] xen:grant_table: Grant tables using version 1 layout\r\r[    2.399831] Grant table initialized\r\r[    2.404280] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations\r\r[    2.407831] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations\r\r[    2.411831] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations\r\r[    2.415807] audit: initializing netlink subsys (disabled)\r\r[    2.419828] audit: type=2000 audit(1705646318.531:1): state=initialized audit_enabled=0 res=1\r\r[    2.419871] thermal_sys: Registered thermal governor 'fair_share'\r\r[    2.423810] thermal_sys: Registered thermal governor 'bang_bang'\r\r[    2.427802] thermal_sys: Registered thermal governor 'step_wise'\r\r[    2.431801] thermal_sys: Registered thermal governor 'user_space'\r\r[    2.435802] thermal_sys: Registered thermal governor 'power_allocator'\r\r[    2.439825] cpuidle: using governor ladder\r\r[    2.451819] cpuidle: using governor menu\r\r[    2.455853] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5\r\r[    2.460185] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)\r\r[    2.463805] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820\r\r[    2.467822] PCI: Using configuration type 1 for base access\r\r[    2.473054] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.\r\r[    2.475825] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages\r\r[    2.479802] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page\r\r[    2.483804] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages\r\r[    2.487802] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page\r\r[    2.491867] ACPI: Added _OSI(Module Device)\r\r[    2.495807] ACPI: Added _OSI(Processor Device)\r\r[    2.499804] ACPI: Added _OSI(3.0 _SCP Extensions)\r\r[    2.503802] ACPI: Added _OSI(Processor Aggregator Device)\r\r[    2.534347] ACPI: 17 ACPI AML tables successfully acquired and loaded\r\r[    2.538780] ACPI: Interpreter enabled\r\r[    2.539819] ACPI: PM: (supports S0 S3 S4 S5)\r\r[    2.543803] ACPI: Using IOAPIC for interrupt routing\r\r[    2.548124] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug\r\r[    2.551803] PCI: Ignoring E820 reservations for host bridge windows\r\r[    2.556164] ACPI: Enabled 4 GPEs in block 00 to 1F\r\r[    2.577431] ACPI: PM: Power Resource [PRWL]\r\r[    2.579819] ACPI: PM: Power Resource [PRWB]\r\r[    2.584384] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus c0-ff])\r\r[    2.587805] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]\r\r[    2.591930] acpi PNP0A08:00: _OSC: platform does not support [AER LTR]\r\r[    2.596025] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]\r\r[    2.600114] PCI host bridge to bus 0000:c0\r\r[    2.603802] pci_bus 0000:c0: root bus resource [io  0xa000-0xffff window]\r\r[    2.607802] pci_bus 0000:c0: root bus resource [mem 0xd4000000-0xd5ffffff window]\r\r[    2.611802] pci_bus 0000:c0: root bus resource [mem 0x10020400000-0x159b33fffff window]\r\r[    2.615803] pci_bus 0000:c0: root bus resource [bus c0-ff]\r\r[    2.619827] pci 0000:c0:00.0: [1022:14a4] type 00 class 0x060000\r\r(XEN) PCI add device 0000:c0:00.0\r[    2.627536] pci 0000:c0:00.2: [1022:149e] type 00 class 0x080600\r\r(XEN) PCI add device 0000:c0:00.2\r[    2.631375] pci 0000:c0:00.3: [1022:14a6] type 00 class 0x080700\r\r[    2.631880] pci 0000:c0:00.3: enabling Extended Tags\r\r(XEN) PCI add device 0000:c0:00.3\r[    2.639573] pci 0000:c0:01.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:c0:01.0\r[    2.643437] pci 0000:c0:02.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:c0:02.0\r[    2.647379] pci 0000:c0:03.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:c0:03.0\r[    2.651430] pci 0000:c0:04.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:c0:04.0\r[    2.655403] pci 0000:c0:05.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:c0:05.0\r[    2.659409] pci 0000:c0:07.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:c0:07.0\r[    2.663344] pci 0000:c0:07.1: [1022:14a7] type 01 class 0x060400\r\r[    2.663879] pci 0000:c0:07.1: enabling Extended Tags\r\r[    2.667926] pci 0000:c0:07.1: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:c0:07.1\r[    2.675677] pci 0000:c1:00.0: [1022:14ac] type 00 class 0x130000\r\r[    2.675867] pci 0000:c1:00.0: enabling Extended Tags\r\r(XEN) PCI add device 0000:c1:00.0\r[    2.683578] pci 0000:c1:00.4: [1022:14c9] type 00 class 0x0c0330\r\r[    2.686248] pci 0000:c1:00.4: reg 0x10: [mem 0xd5f00000-0xd5ffffff 64bit]\r\r[    2.698338] pci 0000:c1:00.4: enabling Extended Tags\r\r[    2.699889] pci 0000:c1:00.4: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:c1:00.4\r[    2.707391] pci 0000:c0:07.1: PCI bridge to [bus c1]\r\r[    2.707809] pci 0000:c0:07.1:   bridge window [mem 0xd5f00000-0xd5ffffff]\r\r[    2.712340] ACPI: PCI Root Bridge [PCI2] (domain 0000 [bus 80-bf])\r\r[    2.715803] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]\r\r[    2.719932] acpi PNP0A08:01: _OSC: platform does not support [AER LTR]\r\r[    2.723997] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]\r\r[    2.728074] PCI host bridge to bus 0000:80\r\r[    2.731801] pci_bus 0000:80: root bus resource [io  0x7000-0x9fff window]\r\r[    2.735800] pci_bus 0000:80: root bus resource [mem 0xca000000-0xcaffffff window]\r\r[    2.739801] pci_bus 0000:80: root bus resource [mem 0x2c020400000-0x319b33fffff window]\r\r[    2.743801] pci_bus 0000:80: root bus resource [bus 80-bf]\r\r[    2.747818] pci 0000:80:00.0: [1022:14a4] type 00 class 0x060000\r\r(XEN) PCI add device 0000:80:00.0\r[    2.755410] pci 0000:80:00.2: [1022:149e] type 00 class 0x080600\r\r(XEN) PCI add device 0000:80:00.2\r[    2.759454] pci 0000:80:00.3: [1022:14a6] type 00 class 0x080700\r\r[    2.759863] pci 0000:80:00.3: enabling Extended Tags\r\r(XEN) PCI add device 0000:80:00.3\r[    2.767536] pci 0000:80:01.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:80:01.0\r[    2.771424] pci 0000:80:01.2: [1022:14ab] type 01 class 0x060400\r\r[    2.772030] pci 0000:80:01.2: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:80:01.2\r[    2.779725] pci 0000:80:01.3: [1022:14ab] type 01 class 0x060400\r\r[    2.779865] pci 0000:80:01.3: enabling Extended Tags\r\r[    2.783963] pci 0000:80:01.3: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:80:01.3\r[    2.791723] pci 0000:80:02.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:80:02.0\r[    2.795440] pci 0000:80:03.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:80:03.0\r[    2.799377] pci 0000:80:03.1: [1022:14a5] type 01 class 0x060400\r\r[    2.800004] pci 0000:80:03.1: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:80:03.1\r[    2.807588] pci 0000:80:03.2: [1022:14a5] type 01 class 0x060400\r\r[    2.807861] pci 0000:80:03.2: enabling Extended Tags\r\r[    2.811945] pci 0000:80:03.2: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:80:03.2\r[    2.819566] pci 0000:80:04.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:80:04.0\r[    2.823352] pci 0000:80:05.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:80:05.0\r[    2.827448] pci 0000:80:07.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:80:07.0\r[    2.831271] pci 0000:80:07.1: [1022:14a7] type 01 class 0x060400\r\r[    2.831857] pci 0000:80:07.1: enabling Extended Tags\r\r[    2.835895] pci 0000:80:07.1: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:80:07.1\r[    2.843552] pci 0000:81:00.0: [144d:a80c] type 00 class 0x010802\r\r[    2.843860] pci 0000:81:00.0: reg 0x10: [mem 0xcaf00000-0xcaf03fff 64bit]\r\r(XEN) PCI add device 0000:81:00.0\r[    2.851810] pci 0000:80:01.2: PCI bridge to [bus 81]\r\r[    2.855811] pci 0000:80:01.2:   bridge window [mem 0xcaf00000-0xcaffffff]\r\r[    2.859898] pci 0000:82:00.0: [1b73:1100] type 00 class 0x0c0330\r\r[    2.863987] pci 0000:82:00.0: reg 0x10: [mem 0xcae00000-0xcae0ffff 64bit]\r\r[    2.867978] pci 0000:82:00.0: reg 0x18: [mem 0xcae11000-0xcae11fff 64bit]\r\r[    2.871978] pci 0000:82:00.0: reg 0x20: [mem 0xcae10000-0xcae10fff 64bit]\r\r[    2.876049] pci 0000:82:00.0: supports D1\r\r[    2.879801] pci 0000:82:00.0: PME# supported from D0 D1 D3hot\r\r(XEN) PCI add device 0000:82:00.0\r[    2.887331] pci 0000:80:01.3: PCI bridge to [bus 82]\r\r[    2.887808] pci 0000:80:01.3:   bridge window [mem 0xcae00000-0xcaefffff]\r\r[    2.891897] pci 0000:83:00.0: [1b21:3242] type 00 class 0x0c0330\r\r[    2.895968] pci 0000:83:00.0: reg 0x10: [mem 0xcad00000-0xcad07fff 64bit]\r\r[    2.900586] pci 0000:83:00.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:83:00.0\r[    2.907572] pci 0000:80:03.1: PCI bridge to [bus 83]\r\r[    2.907809] pci 0000:80:03.1:   bridge window [mem 0xcad00000-0xcadfffff]\r\r[    2.911908] pci 0000:84:00.0: [1b21:1182] type 01 class 0x060400\r\r[    2.915877] pci 0000:84:00.0: enabling Extended Tags\r\r[    2.919897] pci 0000:84:00.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:84:00.0\r[    2.927488] pci 0000:80:03.2: PCI bridge to [bus 84-87]\r\r[    2.927806] pci 0000:80:03.2:   bridge window [io  0x8000-0x9fff]\r\r[    2.931803] pci 0000:80:03.2:   bridge window [mem 0xcab00000-0xcacfffff]\r\r[    2.935806] pci 0000:80:03.2:   bridge window [mem 0x319b3200000-0x319b33fffff 64bit pref]\r\r[    2.939869] pci 0000:85:03.0: [1b21:1182] type 01 class 0x060400\r\r[    2.943880] pci 0000:85:03.0: enabling Extended Tags\r\r[    2.947890] pci 0000:85:03.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:85:03.0\r[    2.955456] pci 0000:85:07.0: [1b21:1182] type 01 class 0x060400\r\r[    2.955879] pci 0000:85:07.0: enabling Extended Tags\r\r[    2.959889] pci 0000:85:07.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:85:07.0\r[    2.967500] pci 0000:84:00.0: PCI bridge to [bus 85-87]\r\r[    2.967808] pci 0000:84:00.0:   bridge window [io  0x8000-0x9fff]\r\r[    2.971804] pci 0000:84:00.0:   bridge window [mem 0xcab00000-0xcacfffff]\r\r[    2.975807] pci 0000:84:00.0:   bridge window [mem 0x319b3200000-0x319b33fffff 64bit pref]\r\r[    2.979875] pci 0000:86:00.0: [10ec:8168] type 00 class 0x020000\r\r[    2.983827] pci 0000:86:00.0: reg 0x10: [io  0x9000-0x90ff]\r\r[    2.987834] pci 0000:86:00.0: reg 0x18: [mem 0xcac00000-0xcac00fff 64bit]\r\r[    2.991822] pci 0000:86:00.0: reg 0x20: [mem 0x319b3300000-0x319b3303fff 64bit pref]\r\r[    2.995966] pci 0000:86:00.0: supports D1 D2\r\r[    2.999801] pci 0000:86:00.0: PME# supported from D0 D1 D2 D3hot D3cold\r\r(XEN) PCI add device 0000:86:00.0\r[    3.007540] pci 0000:85:03.0: PCI bridge to [bus 86]\r\r[    3.007807] pci 0000:85:03.0:   bridge window [io  0x9000-0x9fff]\r\r[    3.011804] pci 0000:85:03.0:   bridge window [mem 0xcac00000-0xcacfffff]\r\r[    3.015808] pci 0000:85:03.0:   bridge window [mem 0x319b3300000-0x319b33fffff 64bit pref]\r\r[    3.019876] pci 0000:87:00.0: [10ec:8168] type 00 class 0x020000\r\r[    3.023827] pci 0000:87:00.0: reg 0x10: [io  0x8000-0x80ff]\r\r[    3.027834] pci 0000:87:00.0: reg 0x18: [mem 0xcab00000-0xcab00fff 64bit]\r\r[    3.031823] pci 0000:87:00.0: reg 0x20: [mem 0x319b3200000-0x319b3203fff 64bit pref]\r\r[    3.035974] pci 0000:87:00.0: supports D1 D2\r\r[    3.039800] pci 0000:87:00.0: PME# supported from D0 D1 D2 D3hot D3cold\r\r(XEN) PCI add device 0000:87:00.0\r[    3.047512] pci 0000:85:07.0: PCI bridge to [bus 87]\r\r[    3.047807] pci 0000:85:07.0:   bridge window [io  0x8000-0x8fff]\r\r[    3.051805] pci 0000:85:07.0:   bridge window [mem 0xcab00000-0xcabfffff]\r\r[    3.055808] pci 0000:85:07.0:   bridge window [mem 0x319b3200000-0x319b32fffff 64bit pref]\r\r[    3.059913] pci 0000:88:00.0: [1022:14ac] type 00 class 0x130000\r\r[    3.063854] pci 0000:88:00.0: enabling Extended Tags\r\r(XEN) PCI add device 0000:88:00.0\r[    3.071538] pci 0000:80:07.1: PCI bridge to [bus 88]\r\r[    3.072230] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])\r\r[    3.075803] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]\r\r[    3.079909] acpi PNP0A08:02: _OSC: platform does not support [AER LTR]\r\r[    3.084003] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]\r\r[    3.088203] PCI host bridge to bus 0000:00\r\r[    3.091801] pci_bus 0000:00: root bus resource [io  0x0000-0x02e7 window]\r\r[    3.095802] pci_bus 0000:00: root bus resource [io  0x0300-0x03af window]\r\r[    3.099801] pci_bus 0000:00: root bus resource [io  0x0400-0x0cf7 window]\r\r[    3.103801] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]\r\r[    3.107801] pci_bus 0000:00: root bus resource [io  0x1000-0x3fff window]\r\r[    3.111801] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]\r\r[    3.115801] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xf0ffffff window]\r\r[    3.119801] pci_bus 0000:00: root bus resource [mem 0x48020400000-0x4d9b33fffff window]\r\r[    3.123800] pci_bus 0000:00: root bus resource [bus 00-3f]\r\r[    3.127820] pci 0000:00:00.0: [1022:14a4] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:00.0\r[    3.135479] pci 0000:00:00.2: [1022:149e] type 00 class 0x080600\r\r(XEN) PCI add device 0000:00:00.2\r[    3.139249] pci 0000:00:00.3: [1022:14a6] type 00 class 0x080700\r\r[    3.139870] pci 0000:00:00.3: enabling Extended Tags\r\r(XEN) PCI add device 0000:00:00.3\r[    3.147402] pci 0000:00:01.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:01.0\r[    3.151421] pci 0000:00:01.1: [1022:14ab] type 01 class 0x060400\r\r[    3.152046] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:00:01.1\r[    3.159678] pci 0000:00:02.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:02.0\r[    3.163477] pci 0000:00:03.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:03.0\r[    3.167228] pci 0000:00:04.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:04.0\r[    3.171470] pci 0000:00:05.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:05.0\r[    3.175296] pci 0000:00:05.1: [1022:14aa] type 01 class 0x060400\r\r[    3.175907] pci 0000:00:05.1: enabling Extended Tags\r\r[    3.180003] pci 0000:00:05.1: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:00:05.1\r[    3.187651] pci 0000:00:05.2: [1022:14aa] type 01 class 0x060400\r\r[    3.187906] pci 0000:00:05.2: enabling Extended Tags\r\r[    3.191999] pci 0000:00:05.2: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:00:05.2\r[    3.199746] pci 0000:00:05.3: [1022:14aa] type 01 class 0x060400\r\r[    3.199904] pci 0000:00:05.3: enabling Extended Tags\r\r[    3.203997] pci 0000:00:05.3: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:00:05.3\r[    3.211545] pci 0000:00:05.4: [1022:14aa] type 01 class 0x060400\r\r[    3.211901] pci 0000:00:05.4: enabling Extended Tags\r\r[    3.215998] pci 0000:00:05.4: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:00:05.4\r[    3.223674] pci 0000:00:07.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:07.0\r[    3.227301] pci 0000:00:07.1: [1022:14a7] type 01 class 0x060400\r\r[    3.227861] pci 0000:00:07.1: enabling Extended Tags\r\r[    3.231907] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:00:07.1\r[    3.239572] pci 0000:00:07.2: [1022:14a7] type 01 class 0x060400\r\r[    3.239861] pci 0000:00:07.2: enabling Extended Tags\r\r[    3.243906] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:00:07.2\r[    3.251494] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500\r\r(XEN) PCI add device 0000:00:14.0\r[    3.255307] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100\r\r(XEN) PCI add device 0000:00:14.3\r[    3.259362] pci 0000:00:18.0: [1022:14ad] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:18.0\r[    3.263397] pci 0000:00:18.1: [1022:14ae] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:18.1\r[    3.267325] pci 0000:00:18.2: [1022:14af] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:18.2\r[    3.271311] pci 0000:00:18.3: [1022:14b0] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:18.3\r[    3.275393] pci 0000:00:18.4: [1022:14b1] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:18.4\r[    3.279239] pci 0000:00:18.5: [1022:14b2] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:18.5\r[    3.283420] pci 0000:00:18.6: [1022:14b3] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:18.6\r[    3.287455] pci 0000:00:18.7: [1022:14b4] type 00 class 0x060000\r\r(XEN) PCI add device 0000:00:18.7\r[    3.291385] pci 0000:01:00.0: [1002:67df] type 00 class 0x030000\r\r[    3.297637] pci 0000:01:00.0: reg 0x10: [mem 0x4d800000000-0x4d8ffffffff 64bit pref]\r\r[    3.306462] pci 0000:01:00.0: reg 0x18: [mem 0x4d900000000-0x4d9001fffff 64bit pref]\r\r[    3.313357] pci 0000:01:00.0: reg 0x20: [io  0x3000-0x30ff]\r\r[    3.321851] pci 0000:01:00.0: reg 0x24: [mem 0xf0f00000-0xf0f3ffff]\r\r[    3.329612] pci 0000:01:00.0: reg 0x30: [mem 0xf0f40000-0xf0f5ffff pref]\r\r[    3.331999] pci 0000:01:00.0: supports D1 D2\r\r[    3.335801] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold\r\r(XEN) PCI add device 0000:01:00.0\r[    3.343475] pci 0000:01:00.1: [1002:aaf0] type 00 class 0x040300\r\r[    3.343825] pci 0000:01:00.1: reg 0x10: [mem 0xf0f60000-0xf0f63fff 64bit]\r\r[    3.347945] pci 0000:01:00.1: supports D1 D2\r\r(XEN) PCI add device 0000:01:00.1\r[    3.355566] pci 0000:00:01.1: PCI bridge to [bus 01]\r\r[    3.355807] pci 0000:00:01.1:   bridge window [io  0x3000-0x3fff]\r\r[    3.359803] pci 0000:00:01.1:   bridge window [mem 0xf0f00000-0xf0ffffff]\r\r[    3.363806] pci 0000:00:01.1:   bridge window [mem 0x4d800000000-0x4d9001fffff 64bit pref]\r\r[    3.367914] pci 0000:00:05.1: PCI bridge to [bus 02]\r\r[    3.371931] pci 0000:00:05.2: PCI bridge to [bus 03]\r\r[    3.375930] pci 0000:00:05.3: PCI bridge to [bus 04]\r\r[    3.379931] pci 0000:00:05.4: PCI bridge to [bus 05]\r\r[    3.383933] pci 0000:06:00.0: [1022:14ac] type 00 class 0x130000\r\r[    3.387857] pci 0000:06:00.0: enabling Extended Tags\r\r(XEN) PCI add device 0000:06:00.0\r[    3.395520] pci 0000:06:00.4: [1022:14c9] type 00 class 0x0c0330\r\r[    3.398125] pci 0000:06:00.4: reg 0x10: [mem 0xf0c00000-0xf0cfffff 64bit]\r\r[    3.410133] pci 0000:06:00.4: enabling Extended Tags\r\r[    3.411872] pci 0000:06:00.4: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:06:00.4\r[    3.419471] pci 0000:06:00.5: [1022:14ca] type 00 class 0x108000\r\r[    3.419827] pci 0000:06:00.5: reg 0x18: [mem 0xf0b00000-0xf0bfffff]\r\r[    3.423819] pci 0000:06:00.5: reg 0x24: [mem 0xf0d08000-0xf0d09fff]\r\r[    3.427815] pci 0000:06:00.5: enabling Extended Tags\r\r(XEN) PCI add device 0000:06:00.5\r[    3.435382] pci 0000:06:00.7: [1022:14cc] type 00 class 0x040300\r\r[    3.435815] pci 0000:06:00.7: reg 0x10: [mem 0xf0d00000-0xf0d07fff]\r\r[    3.439852] pci 0000:06:00.7: enabling Extended Tags\r\r[    3.443871] pci 0000:06:00.7: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:06:00.7\r[    3.451422] pci 0000:00:07.1: PCI bridge to [bus 06]\r\r[    3.451810] pci 0000:00:07.1:   bridge window [mem 0xf0b00000-0xf0dfffff]\r\r[    3.455900] pci 0000:07:00.0: [1022:14ac] type 00 class 0x130000\r\r[    3.459856] pci 0000:07:00.0: enabling Extended Tags\r\r(XEN) PCI add device 0000:07:00.0\r[    3.467508] pci 0000:07:00.1: [1022:7901] type 00 class 0x010601\r\r[    3.467945] pci 0000:07:00.1: reg 0x24: [mem 0xf0e00000-0xf0e007ff]\r\r[    3.471834] pci 0000:07:00.1: enabling Extended Tags\r\r[    3.475865] pci 0000:07:00.1: PME# supported from D3hot D3cold\r\r(XEN) PCI add device 0000:07:00.1\r[    3.483335] pci 0000:00:07.2: PCI bridge to [bus 07]\r\r[    3.483809] pci 0000:00:07.2:   bridge window [mem 0xf0e00000-0xf0efffff]\r\r[    3.488804] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 40-7f])\r\r[    3.491802] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]\r\r[    3.495903] acpi PNP0A08:03: _OSC: platform does not support [AER LTR]\r\r[    3.499987] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability]\r\r[    3.504067] PCI host bridge to bus 0000:40\r\r[    3.507801] pci_bus 0000:40: root bus resource [io  0x4000-0x6fff window]\r\r[    3.511801] pci_bus 0000:40: root bus resource [mem 0xc0000000-0xc0ffffff window]\r\r[    3.515801] pci_bus 0000:40: root bus resource [mem 0x64020400000-0x699b33fffff window]\r\r[    3.519801] pci_bus 0000:40: root bus resource [bus 40-7f]\r\r[    3.523821] pci 0000:40:00.0: [1022:14a4] type 00 class 0x060000\r\r(XEN) PCI add device 0000:40:00.0\r[    3.531452] pci 0000:40:00.2: [1022:149e] type 00 class 0x080600\r\r(XEN) PCI add device 0000:40:00.2\r[    3.535428] pci 0000:40:00.3: [1022:14a6] type 00 class 0x080700\r\r[    3.535866] pci 0000:40:00.3: enabling Extended Tags\r\r(XEN) PCI add device 0000:40:00.3\r[    3.543399] pci 0000:40:01.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:40:01.0\r[    3.547449] pci 0000:40:01.1: [1022:14ab] type 01 class 0x060400\r\r[    3.548039] pci 0000:40:01.1: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:40:01.1\r[    3.555622] pci 0000:40:02.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:40:02.0\r[    3.559363] pci 0000:40:03.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:40:03.0\r[    3.563468] pci 0000:40:03.1: [1022:14a5] type 01 class 0x060400\r\r[    3.564010] pci 0000:40:03.1: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:40:03.1\r[    3.571594] pci 0000:40:03.2: [1022:14a5] type 01 class 0x060400\r\r[    3.571865] pci 0000:40:03.2: enabling Extended Tags\r\r[    3.575955] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:40:03.2\r[    3.583654] pci 0000:40:03.3: [1022:14a5] type 01 class 0x060400\r\r[    3.583865] pci 0000:40:03.3: enabling Extended Tags\r\r[    3.587948] pci 0000:40:03.3: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:40:03.3\r[    3.595629] pci 0000:40:04.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:40:04.0\r[    3.599377] pci 0000:40:05.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:40:05.0\r[    3.603283] pci 0000:40:07.0: [1022:149f] type 00 class 0x060000\r\r(XEN) PCI add device 0000:40:07.0\r[    3.607387] pci 0000:40:07.1: [1022:14a7] type 01 class 0x060400\r\r[    3.607858] pci 0000:40:07.1: enabling Extended Tags\r\r[    3.611897] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:40:07.1\r[    3.619641] pci 0000:41:00.0: [1002:6611] type 00 class 0x030000\r\r[    3.619822] pci 0000:41:00.0: reg 0x10: [mem 0x69940000000-0x6997fffffff 64bit pref]\r\r[    3.623814] pci 0000:41:00.0: reg 0x18: [mem 0xc0c00000-0xc0c3ffff 64bit]\r\r[    3.627807] pci 0000:41:00.0: reg 0x20: [io  0x6000-0x60ff]\r\r[    3.631815] pci 0000:41:00.0: reg 0x30: [mem 0xc0c40000-0xc0c5ffff pref]\r\r[    3.635909] pci 0000:41:00.0: supports D1 D2\r\r[    3.639801] pci 0000:41:00.0: PME# supported from D1 D2 D3hot\r\r(XEN) PCI add device 0000:41:00.0\r[    3.647466] pci 0000:41:00.1: [1002:aab0] type 00 class 0x040300\r\r[    3.647822] pci 0000:41:00.1: reg 0x10: [mem 0xc0c60000-0xc0c63fff 64bit]\r\r[    3.651914] pci 0000:41:00.1: supports D1 D2\r\r(XEN) PCI add device 0000:41:00.1\r[    3.659482] pci 0000:40:01.1: PCI bridge to [bus 41]\r\r[    3.659806] pci 0000:40:01.1:   bridge window [io  0x6000-0x6fff]\r\r[    3.663803] pci 0000:40:01.1:   bridge window [mem 0xc0c00000-0xc0cfffff]\r\r[    3.667807] pci 0000:40:01.1:   bridge window [mem 0x69940000000-0x6997fffffff 64bit pref]\r\r[    3.671895] pci 0000:42:00.0: [1d6a:04c0] type 00 class 0x020000\r\r[    3.675822] pci 0000:42:00.0: reg 0x10: [mem 0xc0400000-0xc047ffff 64bit]\r\r[    3.679814] pci 0000:42:00.0: reg 0x18: [mem 0xc04a0000-0xc04a0fff 64bit]\r\r[    3.683814] pci 0000:42:00.0: reg 0x20: [mem 0xc0000000-0xc03fffff 64bit]\r\r[    3.687808] pci 0000:42:00.0: reg 0x30: [mem 0xc0480000-0xc049ffff pref]\r\r[    3.691951] pci 0000:42:00.0: supports D1 D2\r\r[    3.695800] pci 0000:42:00.0: PME# supported from D0 D1 D3hot D3cold\r\r(XEN) PCI add device 0000:42:00.0\r[    3.703642] pci 0000:40:03.1: PCI bridge to [bus 42]\r\r[    3.703809] pci 0000:40:03.1:   bridge window [mem 0xc0000000-0xc04fffff]\r\r[    3.707905] pci 0000:43:00.0: [144d:a808] type 00 class 0x010802\r\r[    3.711923] pci 0000:43:00.0: reg 0x10: [mem 0xc0b00000-0xc0b03fff 64bit]\r\r(XEN) PCI add device 0000:43:00.0\r[    3.719862] pci 0000:40:03.2: PCI bridge to [bus 43]\r\r[    3.723810] pci 0000:40:03.2:   bridge window [mem 0xc0b00000-0xc0bfffff]\r\r[    3.727906] pci 0000:44:00.0: [1022:43f4] type 01 class 0x060400\r\r[    3.731875] pci 0000:44:00.0: enabling Extended Tags\r\r[    3.735918] pci 0000:44:00.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:44:00.0\r[    3.743672] pci 0000:40:03.3: PCI bridge to [bus 44-4a]\r\r[    3.743807] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]\r\r[    3.747803] pci 0000:40:03.3:   bridge window [mem 0xc0600000-0xc0afffff]\r\r[    3.751806] pci 0000:40:03.3:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]\r\r[    3.755893] pci 0000:45:00.0: [1022:43f5] type 01 class 0x060400\r\r[    3.759876] pci 0000:45:00.0: enabling Extended Tags\r\r[    3.763918] pci 0000:45:00.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:45:00.0\r[    3.771525] pci 0000:45:02.0: [1022:43f5] type 01 class 0x060400\r\r[    3.771875] pci 0000:45:02.0: enabling Extended Tags\r\r[    3.775915] pci 0000:45:02.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:45:02.0\r[    3.783408] pci 0000:45:08.0: [1022:43f5] type 01 class 0x060400\r\r[    3.783874] pci 0000:45:08.0: enabling Extended Tags\r\r[    3.787914] pci 0000:45:08.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:45:08.0\r[    3.795444] pci 0000:45:0c.0: [1022:43f5] type 01 class 0x060400\r\r[    3.795874] pci 0000:45:0c.0: enabling Extended Tags\r\r[    3.799870] pci 0000:45:0c.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:45:0c.0\r[    3.807299] pci 0000:45:0d.0: [1022:43f5] type 01 class 0x060400\r\r[    3.807874] pci 0000:45:0d.0: enabling Extended Tags\r\r[    3.811870] pci 0000:45:0d.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:45:0d.0\r[    3.819371] pci 0000:44:00.0: PCI bridge to [bus 45-4a]\r\r[    3.819807] pci 0000:44:00.0:   bridge window [io  0x5000-0x5fff]\r\r[    3.823804] pci 0000:44:00.0:   bridge window [mem 0xc0600000-0xc0afffff]\r\r[    3.827807] pci 0000:44:00.0:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]\r\r[    3.831922] pci 0000:46:00.0: [14c3:0616] type 00 class 0x028000\r\r[    3.835887] pci 0000:46:00.0: reg 0x10: [mem 0x69980000000-0x699800fffff 64bit pref]\r\r[    3.839870] pci 0000:46:00.0: reg 0x18: [mem 0xc0a00000-0xc0a07fff 64bit]\r\r[    3.843903] pci 0000:46:00.0: enabling Extended Tags\r\r[    3.848004] pci 0000:46:00.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:46:00.0\r[    3.855742] pci 0000:45:00.0: PCI bridge to [bus 46]\r\r[    3.855810] pci 0000:45:00.0:   bridge window [mem 0xc0a00000-0xc0afffff]\r\r[    3.859807] pci 0000:45:00.0:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]\r\r[    3.863873] pci 0000:47:00.0: [10ec:8125] type 00 class 0x020000\r\r[    3.867826] pci 0000:47:00.0: reg 0x10: [io  0x5000-0x50ff]\r\r[    3.871834] pci 0000:47:00.0: reg 0x18: [mem 0xc0900000-0xc090ffff 64bit]\r\r[    3.875822] pci 0000:47:00.0: reg 0x20: [mem 0xc0910000-0xc0913fff 64bit]\r\r[    3.880000] pci 0000:47:00.0: supports D1 D2\r\r[    3.883801] pci 0000:47:00.0: PME# supported from D0 D1 D2 D3hot D3cold\r\r(XEN) PCI add device 0000:47:00.0\r[    3.891717] pci 0000:45:02.0: PCI bridge to [bus 47]\r\r[    3.891807] pci 0000:45:02.0:   bridge window [io  0x5000-0x5fff]\r\r[    3.895804] pci 0000:45:02.0:   bridge window [mem 0xc0900000-0xc09fffff]\r\r[    3.899921] pci 0000:48:00.0: [144d:a80c] type 00 class 0x010802\r\r[    3.903906] pci 0000:48:00.0: reg 0x10: [mem 0xc0800000-0xc0803fff 64bit]\r\r[    3.908262] pci 0000:48:00.0: enabling Extended Tags\r\r(XEN) PCI add device 0000:48:00.0\r[    3.915857] pci 0000:45:08.0: PCI bridge to [bus 48]\r\r[    3.919812] pci 0000:45:08.0:   bridge window [mem 0xc0800000-0xc08fffff]\r\r[    3.923892] pci 0000:49:00.0: [1022:43f7] type 00 class 0x0c0330\r\r[    3.927901] pci 0000:49:00.0: reg 0x10: [mem 0xc0700000-0xc0707fff 64bit]\r\r[    3.932189] pci 0000:49:00.0: enabling Extended Tags\r\r[    3.935882] pci 0000:49:00.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:49:00.0\r[    3.943548] pci 0000:45:0c.0: PCI bridge to [bus 49]\r\r[    3.943807] pci 0000:45:0c.0:   bridge window [mem 0xc0700000-0xc07fffff]\r\r[    3.947877] pci 0000:4a:00.0: [1022:43f6] type 00 class 0x010601\r\r[    3.951953] pci 0000:4a:00.0: reg 0x24: [mem 0xc0680000-0xc06803ff]\r\r[    3.955828] pci 0000:4a:00.0: reg 0x30: [mem 0xc0600000-0xc067ffff pref]\r\r[    3.959810] pci 0000:4a:00.0: enabling Extended Tags\r\r[    3.963864] pci 0000:4a:00.0: PME# supported from D0 D3hot D3cold\r\r(XEN) PCI add device 0000:4a:00.0\r[    3.971407] pci 0000:45:0d.0: PCI bridge to [bus 4a]\r\r[    3.971807] pci 0000:45:0d.0:   bridge window [mem 0xc0600000-0xc06fffff]\r\r[    3.975935] pci 0000:4b:00.0: [1022:14ac] type 00 class 0x130000\r\r[    3.979854] pci 0000:4b:00.0: enabling Extended Tags\r\r(XEN) PCI add device 0000:4b:00.0\r[    3.987393] pci 0000:40:07.1: PCI bridge to [bus 4b]\r\r[    3.988108] ACPI: PCI: Interrupt link LNKA configured for IRQ 0\r\r[    3.991841] ACPI: PCI: Interrupt link LNKB configured for IRQ 0\r\r[    3.995834] ACPI: PCI: Interrupt link LNKC configured for IRQ 0\r\r[    3.999843] ACPI: PCI: Interrupt link LNKD configured for IRQ 0\r\r[    4.003842] ACPI: PCI: Interrupt link LNKE configured for IRQ 0\r\r[    4.007832] ACPI: PCI: Interrupt link LNKF configured for IRQ 0\r\r[    4.011833] ACPI: PCI: Interrupt link LNKG configured for IRQ 0\r\r[    4.015833] ACPI: PCI: Interrupt link LNKH configured for IRQ 0\r\r[    4.021299] xen:balloon: Initialising balloon driver\r\r[    4.023850] iommu: Default domain type: Translated \r\r[    4.027802] iommu: DMA domain TLB invalidation policy: lazy mode \r\r[    4.034609] i2c_designware AMDI0010:00: Unknown Synopsys component type: 0xffffffff\r\r[    4.035829] pps_core: LinuxPPS API ver. 1 registered\r\r[    4.039805] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\r\r[    4.043805] PTP clock support registered\r\r[    4.047806] EDAC MC: Ver: 3.0.0\r\r[    4.051821] Registered efivars operations\r\r[    4.055896] NetLabel: Initializing\r\r[    4.059801] NetLabel:  domain hash size = 128\r\r[    4.063801] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO\r\r[    4.067806] NetLabel:  unlabeled traffic allowed by default\r\r[    4.071802] PCI: Using ACPI for IRQ routing\r\r[    4.085159] pci 0000:01:00.0: vgaarb: setting as boot VGA device\r\r[    4.087798] pci 0000:01:00.0: vgaarb: bridge control possible\r\r[    4.087798] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none\r\r[    4.087805] pci 0000:41:00.0: vgaarb: bridge control possible\r\r[    4.091798] pci 0000:41:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none\r\r[    4.091801] vgaarb: loaded\r\r[    4.095193] clocksource: Switched to clocksource tsc-early\r\r[    4.099075] VFS: Disk quotas dquot_6.6.0\r\r[    4.103626] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\r\r[    4.111645] AppArmor: AppArmor Filesystem Enabled\r\r[    4.117165] pnp: PnP ACPI init\r\r[    4.121198] unchecked MSR access error: RDMSR from 0xc0010058 at rIP: 0xffffffff80277613 (native_read_msr+0x3/0x30)\r\r[    4.133350] Call Trace:\r\r[    4.136184]  <TASK>\r\r[    4.138729]  ? ex_handler_msr.cold+0x5b/0x6a\r\r[    4.143666]  ? fixup_exception+0x81/0x300\r\r[    4.148213]  ? exc_general_protection+0x13c/0x4a0\r\r[    4.153563]  ? asm_exc_general_protection+0x22/0x30\r\r[    4.159060]  ? native_read_msr+0x3/0x30\r\r[    4.163395]  amd_get_mmconfig_range+0x2b/0x80\r\r[    4.168289]  quirk_amd_mmconfig_area+0x36/0xb0\r\r[    4.173299]  pnp_fixup_device+0x39/0x50\r\r[    4.177658]  __pnp_add_device+0x1e/0x1b0\r\r[    4.182328]  pnp_add_device+0x50/0x120\r\r[    4.186728]  pnpacpi_add_device_handler+0x1fa/0x228\r\r[    4.192268]  acpi_ns_get_device_callback+0x11e/0x1d0\r\r[    4.197863]  ? _raw_spin_unlock_irqrestore+0xa/0x40\r\r[    4.203364]  ? down_timeout+0x3a/0x60\r\r[    4.207524]  acpi_ns_walk_namespace+0x1d0/0x260\r\r[    4.212681]  ? _raw_spin_unlock_irqrestore+0xa/0x40\r\r[    4.218228]  ? acpi_get_devices+0xc0/0xc0\r\r[    4.222737]  acpi_get_devices+0xa4/0xc0\r\r[    4.227155]  ? pnpacpi_setup+0x33/0x33\r\r[    4.231396]  ? ispnpidacpi+0x91/0x91\r\r[    4.235436]  pnpacpi_init+0x4b/0x6e\r\r[    4.239421]  do_one_initcall+0x59/0x220\r\r[    4.243812]  kernel_init_freeable+0x221/0x286\r\r[    4.248896]  ? rest_init+0xd0/0xd0\r\r[    4.253013]  kernel_init+0x16/0x130\r\r[    4.257224]  ret_from_fork+0x22/0x30\r\r[    4.261547]  </TASK>\r\r[    4.264100] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved\r\r[    4.272553] system 00:02: [io  0x0290-0x029f] has been reserved\r\r[    4.279352] system 00:02: [io  0x02a0-0x02af] has been reserved\r\r[    4.286375] system 00:02: [io  0x0290-0x029f] has been reserved\r\r[    4.293385] system 00:02: [io  0x02a0-0x02af] has been reserved\r\r[    4.300580] system 00:04: [io  0x04d0-0x04d1] has been reserved\r\r[    4.307649] system 00:04: [io  0x040b] has been reserved\r\r[    4.313994] system 00:04: [io  0x04d6] has been reserved\r\r[    4.320350] system 00:04: [io  0x0c00-0x0c01] has been reserved\r\r[    4.327034] system 00:04: [io  0x0c14] has been reserved\r\r[    4.333042] system 00:04: [io  0x0c50-0x0c51] has been reserved\r\r[    4.339674] system 00:04: [io  0x0c52] has been reserved\r\r[    4.345763] system 00:04: [io  0x0c6c] has been reserved\r\r[    4.351782] system 00:04: [io  0x0c6f] has been reserved\r\r[    4.357770] system 00:04: [io  0x0cd8-0x0cdf] has been reserved\r\r[    4.364466] system 00:04: [io  0x0800-0x089f] has been reserved\r\r[    4.371219] system 00:04: [io  0x0b00-0x0b0f] has been reserved\r\r[    4.377913] system 00:04: [io  0x0b20-0x0b3f] has been reserved\r\r[    4.384684] system 00:04: [io  0x0900-0x090f] has been reserved\r\r[    4.391655] system 00:04: [io  0x0910-0x091f] has been reserved\r\r[    4.398723] system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved\r\r[    4.407078] system 00:04: [mem 0xfedc0000-0xfedc0fff] has been reserved\r\r[    4.414951] system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved\r\r[    4.422782] system 00:04: [mem 0xfed80000-0xfed8ffff] could not be reserved\r\r[    4.431128] system 00:04: [mem 0xfec10000-0xfec10fff] has been reserved\r\r[    4.438693] system 00:04: [mem 0xff000000-0xffffffff] has been reserved\r\r[    4.447563] pnp: PnP ACPI: found 6 devices\r\r[    4.458231] PM-Timer failed consistency check  (0xffffff) - aborting.\r\r[    4.465882] NET: Registered PF_INET protocol family\r\r[    4.471649] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)\r\r[    4.481194] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)\r\r[    4.491042] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)\r\r[    4.500373] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)\r\r[    4.509926] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)\r\r[    4.518654] TCP: Hash tables configured (established 65536 bind 65536)\r\r[    4.526531] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)\r\r[    4.535438] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)\r\r[    4.543564] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)\r\r[    4.552228] NET: Registered PF_UNIX/PF_LOCAL protocol family\r\r[    4.559048] NET: Registered PF_XDP protocol family\r\r[    4.564724] pci 0000:c0:07.1: PCI bridge to [bus c1]\r\r[    4.570575] pci 0000:c0:07.1:   bridge window [mem 0xd5f00000-0xd5ffffff]\r\r[    4.578499] pci_bus 0000:c0: resource 4 [io  0xa000-0xffff window]\r\r[    4.585678] pci_bus 0000:c0: resource 5 [mem 0xd4000000-0xd5ffffff window]\r\r[    4.593867] pci_bus 0000:c0: resource 6 [mem 0x10020400000-0x159b33fffff window]\r\r[    4.602409] pci_bus 0000:c1: resource 1 [mem 0xd5f00000-0xd5ffffff]\r\r[    4.610020] pci 0000:80:01.2: PCI bridge to [bus 81]\r\r[    4.616023] pci 0000:80:01.2:   bridge window [mem 0xcaf00000-0xcaffffff]\r\r[    4.624129] pci 0000:80:01.3: PCI bridge to [bus 82]\r\r[    4.630125] pci 0000:80:01.3:   bridge window [mem 0xcae00000-0xcaefffff]\r\r[    4.638101] pci 0000:80:03.1: PCI bridge to [bus 83]\r\r[    4.643941] pci 0000:80:03.1:   bridge window [mem 0xcad00000-0xcadfffff]\r\r[    4.652168] pci 0000:85:03.0: PCI bridge to [bus 86]\r\r[    4.658171] pci 0000:85:03.0:   bridge window [io  0x9000-0x9fff]\r\r[    4.665320] pci 0000:85:03.0:   bridge window [mem 0xcac00000-0xcacfffff]\r\r[    4.672977] pci 0000:85:03.0:   bridge window [mem 0x319b3300000-0x319b33fffff 64bit pref]\r\r[    4.682927] pci 0000:85:07.0: PCI bridge to [bus 87]\r\r[    4.688931] pci 0000:85:07.0:   bridge window [io  0x8000-0x8fff]\r\r[    4.696108] pci 0000:85:07.0:   bridge window [mem 0xcab00000-0xcabfffff]\r\r[    4.704179] pci 0000:85:07.0:   bridge window [mem 0x319b3200000-0x319b32fffff 64bit pref]\r\r[    4.713953] pci 0000:84:00.0: PCI bridge to [bus 85-87]\r\r[    4.720095] pci 0000:84:00.0:   bridge window [io  0x8000-0x9fff]\r\r[    4.727300] pci 0000:84:00.0:   bridge window [mem 0xcab00000-0xcacfffff]\r\r[    4.735451] pci 0000:84:00.0:   bridge window [mem 0x319b3200000-0x319b33fffff 64bit pref]\r\r[    4.745164] pci 0000:80:03.2: PCI bridge to [bus 84-87]\r\r[    4.751436] pci 0000:80:03.2:   bridge window [io  0x8000-0x9fff]\r\r[    4.758787] pci 0000:80:03.2:   bridge window [mem 0xcab00000-0xcacfffff]\r\r[    4.766860] pci 0000:80:03.2:   bridge window [mem 0x319b3200000-0x319b33fffff 64bit pref]\r\r[    4.776580] pci 0000:80:07.1: PCI bridge to [bus 88]\r\r[    4.782531] pci_bus 0000:80: resource 4 [io  0x7000-0x9fff window]\r\r[    4.789683] pci_bus 0000:80: resource 5 [mem 0xca000000-0xcaffffff window]\r\r[    4.797939] pci_bus 0000:80: resource 6 [mem 0x2c020400000-0x319b33fffff window]\r\r[    4.806844] pci_bus 0000:81: resource 1 [mem 0xcaf00000-0xcaffffff]\r\r[    4.814251] pci_bus 0000:82: resource 1 [mem 0xcae00000-0xcaefffff]\r\r[    4.821476] pci_bus 0000:83: resource 1 [mem 0xcad00000-0xcadfffff]\r\r[    4.828847] pci_bus 0000:84: resource 0 [io  0x8000-0x9fff]\r\r[    4.835352] pci_bus 0000:84: resource 1 [mem 0xcab00000-0xcacfffff]\r\r[    4.842802] pci_bus 0000:84: resource 2 [mem 0x319b3200000-0x319b33fffff 64bit pref]\r\r[    4.851925] pci_bus 0000:85: resource 0 [io  0x8000-0x9fff]\r\r[    4.858507] pci_bus 0000:85: resource 1 [mem 0xcab00000-0xcacfffff]\r\r[    4.865991] pci_bus 0000:85: resource 2 [mem 0x319b3200000-0x319b33fffff 64bit pref]\r\r[    4.875209] pci_bus 0000:86: resource 0 [io  0x9000-0x9fff]\r\r[    4.881840] pci_bus 0000:86: resource 1 [mem 0xcac00000-0xcacfffff]\r\r[    4.889237] pci_bus 0000:86: resource 2 [mem 0x319b3300000-0x319b33fffff 64bit pref]\r\r[    4.898308] pci_bus 0000:87: resource 0 [io  0x8000-0x8fff]\r\r[    4.904869] pci_bus 0000:87: resource 1 [mem 0xcab00000-0xcabfffff]\r\r[    4.912328] pci_bus 0000:87: resource 2 [mem 0x319b3200000-0x319b32fffff 64bit pref]\r\r[    4.921484] pci 0000:00:01.1: PCI bridge to [bus 01]\r\r[    4.927158] pci 0000:00:01.1:   bridge window [io  0x3000-0x3fff]\r\r[    4.934039] pci 0000:00:01.1:   bridge window [mem 0xf0f00000-0xf0ffffff]\r\r[    4.941993] pci 0000:00:01.1:   bridge window [mem 0x4d800000000-0x4d9001fffff 64bit pref]\r\r[    4.951825] pci 0000:00:05.1: PCI bridge to [bus 02]\r\r[    4.957832] pci 0000:00:05.2: PCI bridge to [bus 03]\r\r[    4.963780] pci 0000:00:05.3: PCI bridge to [bus 04]\r\r[    4.969514] pci 0000:00:05.4: PCI bridge to [bus 05]\r\r[    4.975491] pci 0000:00:07.1: PCI bridge to [bus 06]\r\r[    4.981392] pci 0000:00:07.1:   bridge window [mem 0xf0b00000-0xf0dfffff]\r\r[    4.989493] pci 0000:00:07.2: PCI bridge to [bus 07]\r\r[    4.995433] pci 0000:00:07.2:   bridge window [mem 0xf0e00000-0xf0efffff]\r\r[    5.003502] pci_bus 0000:00: resource 4 [io  0x0000-0x02e7 window]\r\r[    5.010801] pci_bus 0000:00: resource 5 [io  0x0300-0x03af window]\r\r[    5.017995] pci_bus 0000:00: resource 6 [io  0x0400-0x0cf7 window]\r\r[    5.025411] pci_bus 0000:00: resource 7 [io  0x03b0-0x03df window]\r\r[    5.032895] pci_bus 0000:00: resource 8 [io  0x1000-0x3fff window]\r\r[    5.039929] pci_bus 0000:00: resource 9 [mem 0x000a0000-0x000dffff window]\r\r[    5.048247] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xf0ffffff window]\r\r[    5.056210] pci_bus 0000:00: resource 11 [mem 0x48020400000-0x4d9b33fffff window]\r\r[    5.064970] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]\r\r[    5.071609] pci_bus 0000:01: resource 1 [mem 0xf0f00000-0xf0ffffff]\r\r[    5.078850] pci_bus 0000:01: resource 2 [mem 0x4d800000000-0x4d9001fffff 64bit pref]\r\r[    5.088104] pci_bus 0000:06: resource 1 [mem 0xf0b00000-0xf0dfffff]\r\r[    5.095223] pci_bus 0000:07: resource 1 [mem 0xf0e00000-0xf0efffff]\r\r[    5.102336] pci 0000:40:01.1: PCI bridge to [bus 41]\r\r[    5.108314] pci 0000:40:01.1:   bridge window [io  0x6000-0x6fff]\r\r[    5.115645] pci 0000:40:01.1:   bridge window [mem 0xc0c00000-0xc0cfffff]\r\r[    5.123716] pci 0000:40:01.1:   bridge window [mem 0x69940000000-0x6997fffffff 64bit pref]\r\r[    5.133423] pci 0000:40:03.1: PCI bridge to [bus 42]\r\r[    5.139379] pci 0000:40:03.1:   bridge window [mem 0xc0000000-0xc04fffff]\r\r[    5.147328] pci 0000:40:03.2: PCI bridge to [bus 43]\r\r[    5.153127] pci 0000:40:03.2:   bridge window [mem 0xc0b00000-0xc0bfffff]\r\r[    5.161116] pci 0000:45:00.0: PCI bridge to [bus 46]\r\r[    5.167109] pci 0000:45:00.0:   bridge window [mem 0xc0a00000-0xc0afffff]\r\r[    5.175120] pci 0000:45:00.0:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]\r\r[    5.185037] pci 0000:45:02.0: PCI bridge to [bus 47]\r\r[    5.190958] pci 0000:45:02.0:   bridge window [io  0x5000-0x5fff]\r\r[    5.198310] pci 0000:45:02.0:   bridge window [mem 0xc0900000-0xc09fffff]\r\r[    5.206375] pci 0000:45:08.0: PCI bridge to [bus 48]\r\r[    5.212223] pci 0000:45:08.0:   bridge window [mem 0xc0800000-0xc08fffff]\r\r[    5.220396] pci 0000:45:0c.0: PCI bridge to [bus 49]\r\r[    5.226282] pci 0000:45:0c.0:   bridge window [mem 0xc0700000-0xc07fffff]\r\r[    5.234256] pci 0000:45:0d.0: PCI bridge to [bus 4a]\r\r[    5.240142] pci 0000:45:0d.0:   bridge window [mem 0xc0600000-0xc06fffff]\r\r[    5.248228] pci 0000:44:00.0: PCI bridge to [bus 45-4a]\r\r[    5.254523] pci 0000:44:00.0:   bridge window [io  0x5000-0x5fff]\r\r[    5.261504] pci 0000:44:00.0:   bridge window [mem 0xc0600000-0xc0afffff]\r\r[    5.269551] pci 0000:44:00.0:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]\r\r[    5.279283] pci 0000:40:03.3: PCI bridge to [bus 44-4a]\r\r[    5.285583] pci 0000:40:03.3:   bridge window [io  0x5000-0x5fff]\r\r[    5.292712] pci 0000:40:03.3:   bridge window [mem 0xc0600000-0xc0afffff]\r\r[    5.300819] pci 0000:40:03.3:   bridge window [mem 0x69980000000-0x699800fffff 64bit pref]\r\r[    5.310118] pci 0000:40:07.1: PCI bridge to [bus 4b]\r\r[    5.316065] pci_bus 0000:40: resource 4 [io  0x4000-0x6fff window]\r\r[    5.323399] pci_bus 0000:40: resource 5 [mem 0xc0000000-0xc0ffffff window]\r\r[    5.331605] pci_bus 0000:40: resource 6 [mem 0x64020400000-0x699b33fffff window]\r\r[    5.340326] pci_bus 0000:41: resource 0 [io  0x6000-0x6fff]\r\r[    5.346602] pci_bus 0000:41: resource 1 [mem 0xc0c00000-0xc0cfffff]\r\r[    5.353657] pci_bus 0000:41: resource 2 [mem 0x69940000000-0x6997fffffff 64bit pref]\r\r[    5.362656] pci_bus 0000:42: resource 1 [mem 0xc0000000-0xc04fffff]\r\r[    5.370070] pci_bus 0000:43: resource 1 [mem 0xc0b00000-0xc0bfffff]\r\r[    5.377419] pci_bus 0000:44: resource 0 [io  0x5000-0x5fff]\r\r[    5.383902] pci_bus 0000:44: resource 1 [mem 0xc0600000-0xc0afffff]\r\r[    5.390938] pci_bus 0000:44: resource 2 [mem 0x69980000000-0x699800fffff 64bit pref]\r\r[    5.399640] pci_bus 0000:45: resource 0 [io  0x5000-0x5fff]\r\r[    5.405933] pci_bus 0000:45: resource 1 [mem 0xc0600000-0xc0afffff]\r\r[    5.413047] pci_bus 0000:45: resource 2 [mem 0x69980000000-0x699800fffff 64bit pref]\r\r[    5.422360] pci_bus 0000:46: resource 1 [mem 0xc0a00000-0xc0afffff]\r\r[    5.429853] pci_bus 0000:46: resource 2 [mem 0x69980000000-0x699800fffff 64bit pref]\r\r[    5.439051] pci_bus 0000:47: resource 0 [io  0x5000-0x5fff]\r\r[    5.445331] pci_bus 0000:47: resource 1 [mem 0xc0900000-0xc09fffff]\r\r[    5.452643] pci_bus 0000:48: resource 1 [mem 0xc0800000-0xc08fffff]\r\r[    5.459771] pci_bus 0000:49: resource 1 [mem 0xc0700000-0xc07fffff]\r\r[    5.467221] pci_bus 0000:4a: resource 1 [mem 0xc0600000-0xc06fffff]\r\r[    5.475068] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0\r\r[    5.482420] pci 0000:41:00.1: D0 power state depends on 0000:41:00.0\r\r[    5.489750] PCI: CLS 64 bytes, default 64\r\r[    5.494305] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)\r\r[    5.494347] Trying to unpack rootfs image as initramfs...\r\r[    5.501628] software IO TLB: mapped [mem 0x000000009c4e9000-0x00000000a04e9000] (64MB)\r\r[    5.501650] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3c8a3bbe440, max_idle_ns: 440795298187 ns\r\r[    5.528378] clocksource: Switched to clocksource tsc\r\r[    5.535117] Initialise system trusted keyrings\r\r[    5.540069] Key type blacklist registered\r\r[    5.544718] workingset: timestamp_bits=36 max_order=21 bucket_order=0\r\r[    5.552622] zbud: loaded\r\r[    5.556556] integrity: Platform Keyring initialized\r\r[    5.562022] integrity: Machine keyring initialized\r\r[    5.567469] Key type asymmetric registered\r\r[    5.572107] Asymmetric key parser 'x509' registered\r\r[    5.622406] Freeing initrd memory: 41504K\r\r[    5.631840] alg: self-tests for CTR-KDF (hmac(sha256)) passed\r\r[    5.638288] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)\r\r[    5.646646] io scheduler mq-deadline registered\r\r[    5.654018] amd_gpio AMDI0030:00: error -EINVAL: IRQ index 0 not found\r\r[    5.661471] amd_gpio: probe of AMDI0030:00 failed with error -22\r\r[    5.668467] pcieport 0000:c0:00.3: PME: Signaling with IRQ 270\r\r[    5.675151] pcieport 0000:c0:07.1: PME: Signaling with IRQ 271\r\r[    5.681925] pcieport 0000:80:00.3: PME: Signaling with IRQ 273\r\r[    5.688773] pcieport 0000:80:01.2: PME: Signaling with IRQ 274\r\r[    5.695546] pcieport 0000:80:01.3: PME: Signaling with IRQ 275\r\r[    5.702290] pcieport 0000:80:03.1: PME: Signaling with IRQ 276\r\r[    5.709045] pcieport 0000:80:03.2: PME: Signaling with IRQ 277\r\r[    5.715884] pcieport 0000:80:07.1: PME: Signaling with IRQ 279\r\r[    5.723158] pcieport 0000:00:00.3: PME: Signaling with IRQ 284\r\r[    5.730001] pcieport 0000:00:01.1: PME: Signaling with IRQ 285\r\r[    5.736902] pcieport 0000:00:05.1: PME: Signaling with IRQ 286\r\r[    5.743843] pcieport 0000:00:05.2: PME: Signaling with IRQ 287\r\r[    5.750681] pcieport 0000:00:05.3: PME: Signaling with IRQ 288\r\r[    5.757587] pcieport 0000:00:05.4: PME: Signaling with IRQ 289\r\r[    5.764379] pcieport 0000:00:07.1: PME: Signaling with IRQ 290\r\r[    5.771075] pcieport 0000:00:07.2: PME: Signaling with IRQ 291\r\r[    5.777873] pcieport 0000:40:00.3: PME: Signaling with IRQ 293\r\r[    5.784569] pcieport 0000:40:01.1: PME: Signaling with IRQ 294\r\r[    5.791420] pcieport 0000:40:03.1: PME: Signaling with IRQ 295\r\r[    5.798184] pcieport 0000:40:03.2: PME: Signaling with IRQ 296\r\r[    5.804919] pcieport 0000:40:03.3: PME: Signaling with IRQ 297\r\r[    5.811698] pcieport 0000:40:07.1: PME: Signaling with IRQ 299\r\r[    5.819258] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4\r\r[    5.828091] xen_mcelog: Failed to get CPU numbers\r\r[    5.833807] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled\r\r[    5.843510] serial8250: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A\r\r[    5.852389] hpet_acpi_add: no address or irqs in _CRS\r\r[    5.858065] Linux agpgart interface v0.103\r\r[    5.863598] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.\r\r[    5.877200] i8042: PNP: No PS/2 controller found.\r\r[    5.882562] mousedev: PS/2 mouse device common for all mice\r\r[    5.889320] rtc_cmos 00:01: RTC can wake from S4\r\r[    5.894551] rtc_cmos 00:01: registered as rtc0\r\r[    5.899528] rtc_cmos 00:01: setting system clock to 2024-01-19T06:38:44 UTC (1705646324)\r\r[    5.908629] rtc_cmos 00:01: no alarms, y3k, 114 bytes nvram\r\r[    5.916663] ledtrig-cpu: registered to indicate activity on CPUs\r\r[    5.928670] NET: Registered PF_INET6 protocol family\r\r[    5.937738] Segment Routing with IPv6\r\r[    5.941798] In-situ OAM (IOAM) with IPv6\r\r[    5.946250] mip6: Mobile IPv6\r\r[    5.949665] NET: Registered PF_PACKET protocol family\r\r[    5.955522] mpls_gso: MPLS GSO support\r\r[    5.962482] IPI shorthand broadcast: enabled\r\r[    5.967308] sched_clock: Marking stable (5869880176, 97403768)->(8256363102, -2289079158)\r\r[    5.977429] registered taskstats version 1\r\r[    5.982002] Loading compiled-in X.509 certificates\r\r[    5.997053] Loaded X.509 cert 'Build time autogenerated kernel key: 8d2e891db2f3d12bc81f66f637de2fd13dec7170'\r\r[    6.009583] zswap: loaded using pool lzo/zbud\r\r[    6.015068] Key type .fscrypt registered\r\r[    6.019501] Key type fscrypt-provisioning registered\r\r[    6.027963] Key type encrypted registered\r\r[    6.032484] AppArmor: AppArmor sha1 policy hashing enabled\r\r[    6.038858] ima: No TPM chip found, activating TPM-bypass!\r\r[    6.045020] ima: Allocated hash algorithm: sha256\r\r[    6.050443] ima: No architecture policies found\r\r[    6.055701] evm: Initialising EVM extended attributes:\r\r[    6.061691] evm: security.selinux\r\r[    6.065559] evm: security.SMACK64 (disabled)\r\r[    6.070542] evm: security.SMACK64EXEC (disabled)\r\r[    6.075829] evm: security.SMACK64TRANSMUTE (disabled)\r\r[    6.081532] evm: security.SMACK64MMAP (disabled)\r\r[    6.086745] evm: security.apparmor\r\r[    6.090711] evm: security.ima\r\r[    6.094086] evm: security.capability\r\r[    6.098276] evm: HMAC attrs: 0x1\r\r[    6.148054] Freeing unused decrypted memory: 2036K\r\r[    6.154111] Freeing unused kernel image (initmem) memory: 2792K\r\r[    6.189489] Write protecting the kernel read-only data: 26624k\r\r[    6.197121] Freeing unused kernel image (text/rodata gap) memory: 2040K\r\r[    6.205111] Freeing unused kernel image (rodata/data gap) memory: 1188K\r\r[    6.232430] x86/mm: Checked W+X mappings: passed, no W+X pages found.\r\r[    6.239799] Run /init as init process\r\rLoading, please wait...\r\rStarting systemd-udevd version 252.19-1~deb12u1\r\r[    6.321366] gpio_generic: module verification failed: signature and/or required key missing - tainting kernel\r\r[    6.341632] MACsec IEEE 802.1AE\r\r[    6.341805] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0\r\r[    6.353936] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection\r\r[    6.362750] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20\r\r[    6.374615] SCSI subsystem initialized\r\r[    6.382785] ACPI: bus type USB registered\r\r[    6.387498] usbcore: registered new interface driver usbfs\r\r[    6.393912] usbcore: registered new interface driver hub\r\r[    6.400241] usbcore: registered new device driver usb\r\r[    6.410069] atlantic 0000:42:00.0: enabling device (0000 -> 0002)\r\r[    6.461005] atlantic: Detect ATL2FW 1030022\r\r[    6.487089] r8169 0000:86:00.0: enabling device (0000 -> 0003)\r\r[    6.494846] xhci_hcd 0000:c1:00.4: xHCI Host Controller\r\r[    6.501048] xhci_hcd 0000:c1:00.4: new USB bus registered, assigned bus number 1\r\r[    6.510072] xhci_hcd 0000:c1:00.4: hcc params 0x0118ffc5 hci version 0x120 quirks 0x0000000200000410\r\r[    6.520701] ahci 0000:07:00.1: BAR 5: can't reserve [mem 0xf0e00000-0xf0e007ff]\r\r[    6.521144] xhci_hcd 0000:c1:00.4: xHCI Host Controller\r\r[    6.529204] ahci: probe of 0000:07:00.1 failed with error -16\r\r[    6.535409] xhci_hcd 0000:c1:00.4: new USB bus registered, assigned bus number 2\r\r[    6.542262] ahci 0000:4a:00.0: SSS flag set, parallel bus scan disabled\r\r[    6.550746] xhci_hcd 0000:c1:00.4: Host supports USB 3.1 Enhanced SuperSpeed\r\r[    6.558545] ahci 0000:4a:00.0: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0xf impl SATA mode\r\r[    6.566771] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01\r\r[    6.575823] ahci 0000:4a:00.0: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst \r\r[    6.585658] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1\r\r[    6.598332] scsi host0: ahci\r\r[    6.606539] usb usb1: Product: xHCI Host Controller\r\r[    6.606540] usb usb1: Manufacturer: Linux 6.1.69 xhci-hcd\r\r[    6.606540] usb usb1: SerialNumber: 0000:c1:00.4\r\r[    6.606638] hub 1-0:1.0: USB hub found\r\r[    6.610227] scsi host1: ahci\r\r[    6.615854] hub 1-0:1.0: 2 ports detected\r\r[    6.622363] scsi host2: ahci\r\r[    6.627716] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.\r\r[    6.632232] scsi host3: ahci\r\r[    6.635319] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01\r\r[    6.640065] scsi host4: ahci\r\r[    6.643212] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1\r\r[    6.643214] usb usb2: Product: xHCI Host Controller\r\r[    6.643214] usb usb2: Manufacturer: Linux 6.1.69 xhci-hcd\r\r[    6.643214] usb usb2: SerialNumber: 0000:c1:00.4\r\r[    6.643302] hub 2-0:1.0: USB hub found\r\r[    6.652849] scsi host5: ahci\r\r[    6.656184] hub 2-0:1.0: 2 ports detected\r\r[    6.665462] ata1: SATA max UDMA/133 abar m1024@0xc0680000 port 0xc0680100 irq 328\r\r[    6.668979] xhci_hcd 0000:82:00.0: xHCI Host Controller\r\r[    6.677504] ata2: SATA max UDMA/133 abar m1024@0xc0680000 port 0xc0680180 irq 328\r\r[    6.683310] xhci_hcd 0000:82:00.0: new USB bus registered, assigned bus number 3\r\r[    6.689734] ata3: SATA max UDMA/133 abar m1024@0xc0680000 port 0xc0680200 irq 328\r\r[    6.695208] xhci_hcd 0000:82:00.0: hcc params 0x200071e1 hci version 0x100 quirks 0x0000000000000410\r\r[    6.699598] ata4: SATA max UDMA/133 abar m1024@0xc0680000 port 0xc0680280 irq 328\r\r[    6.703564] xhci_hcd 0000:82:00.0: xHCI Host Controller\r\r[    6.707743] ata5: DUMMY\r\r[    6.716697] xhci_hcd 0000:82:00.0: new USB bus registered, assigned bus number 4\r\r[    6.722599] ata6: DUMMY\r\r[    6.725478] atlantic 0000:42:00.0 enp66s0: renamed from eth0\r\r[    6.731131] xhci_hcd 0000:82:00.0: Host supports USB 3.0 SuperSpeed\r\r[    6.801689] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01\r\r[    6.810979] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1\r\r[    6.819291] usb usb3: Product: xHCI Host Controller\r\r[    6.824912] usb usb3: Manufacturer: Linux 6.1.69 xhci-hcd\r\r[    6.831012] usb usb3: SerialNumber: 0000:82:00.0\r\r[    6.836488] hub 3-0:1.0: USB hub found\r\r[    6.840774] hub 3-0:1.0: 4 ports detected\r\r[    6.845510] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.\r\r[    6.854629] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01\r\r[    6.863952] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1\r\r[    6.872133] usb usb4: Product: xHCI Host Controller\r\r[    6.877729] usb usb4: Manufacturer: Linux 6.1.69 xhci-hcd\r\r[    6.883857] usb usb4: SerialNumber: 0000:82:00.0\r\r[    6.889366] hub 4-0:1.0: USB hub found\r\r[    6.893642] hub 4-0:1.0: 4 ports detected\r\r[    6.898344] xhci_hcd 0000:83:00.0: xHCI Host Controller\r\r[    6.904314] xhci_hcd 0000:83:00.0: new USB bus registered, assigned bus number 5\r\r[    6.921764] r8169 0000:86:00.0 eth0: RTL8168evl/8111evl, 00:13:3b:12:71:a0, XID 2c9, IRQ 317\r\r[    6.931618] r8169 0000:86:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]\r\r[    6.941368] r8169 0000:87:00.0: enabling device (0000 -> 0003)\r\r[    6.951386] r8169 0000:87:00.0 eth1: RTL8168evl/8111evl, 00:13:3b:12:71:a1, XID 2c9, IRQ 339\r\r[    6.961023] r8169 0000:87:00.0 eth1: jumbo features [frames: 9194 bytes, tx checksumming: ko]\r\r[    6.968441] xhci_hcd 0000:83:00.0: hcc params 0x0200ef80 hci version 0x110 quirks 0x0000000000800010\r\r[    6.970962] r8169 0000:47:00.0: enabling device (0000 -> 0003)\r\r[    6.981940] xhci_hcd 0000:83:00.0: xHCI Host Controller\r\r[    6.994030] xhci_hcd 0000:83:00.0: new USB bus registered, assigned bus number 6\r\r[    7.002444] xhci_hcd 0000:83:00.0: Host supports USB 3.2 Enhanced SuperSpeed\r\r[    7.003229] r8169 0000:47:00.0 eth2: RTL8125B, 9c:6b:00:3d:11:99, XID 641, IRQ 348\r\r[    7.010466] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01\r\r[    7.019357] r8169 0000:47:00.0 eth2: jumbo features [frames: 9194 bytes, tx checksumming: ko]\r\r[    7.038393] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1\r\r[    7.046691] usb usb5: Product: xHCI Host Controller\r\r[    7.052293] usb usb5: Manufacturer: Linux 6.1.69 xhci-hcd\r\r[    7.058373] usb usb5: SerialNumber: 0000:83:00.0\r\r[    7.063751] hub 5-0:1.0: USB hub found\r\r[    7.067999] hub 5-0:1.0: 1 port detected\r\r[    7.072620] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.\r\r[    7.081712] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01\r\r[    7.091129] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1\r\r[    7.099394] usb usb6: Product: xHCI Host Controller\r\r[    7.104959] usb usb6: Manufacturer: Linux 6.1.69 xhci-hcd\r\r[    7.111067] usb usb6: SerialNumber: 0000:83:00.0\r\r[    7.116504] hub 6-0:1.0: USB hub found\r\r[    7.120675] hub 6-0:1.0: 1 port detected\r\r[    7.125230] xhci_hcd 0000:06:00.4: init 0000:06:00.4 fail, -16\r\r[    7.131778] usb 3-2: new high-speed USB device number 2 using xhci_hcd\r\r[    7.137437] xhci_hcd: probe of 0000:06:00.4 failed with error -16\r\r[    7.146166] xhci_hcd 0000:49:00.0: xHCI Host Controller\r\r[    7.151996] xhci_hcd 0000:49:00.0: new USB bus registered, assigned bus number 7\r\r[    7.197458] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)\r\r[    7.205549] ata1.00: ATA-9: ST3000DM008-2DM166, CC26, max UDMA/133\r\r[    7.213056] ata1.00: 5860533168 sectors, multi 16: LBA48 NCQ (depth 32), AA\r\r[    7.216391] xhci_hcd 0000:49:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410\r\r[    7.222212] ata1.00: configured for UDMA/133\r\r[    7.232051] xhci_hcd 0000:49:00.0: xHCI Host Controller\r\r[    7.236462] scsi 0:0:0:0: Direct-Access     ATA      ST3000DM008-2DM1 CC26 PQ: 0 ANSI: 5\r\r[    7.242237] xhci_hcd 0000:49:00.0: new USB bus registered, assigned bus number 8\r\r[    7.242238] xhci_hcd 0000:49:00.0: Host supports USB 3.1 Enhanced SuperSpeed\r\r[    7.242270] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01\r\r[    7.277190] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1\r\r[    7.285569] usb usb7: Product: xHCI Host Controller\r\r[    7.291191] usb usb7: Manufacturer: Linux 6.1.69 xhci-hcd\r\r[    7.293250] usb 3-2: New USB device found, idVendor=2109, idProduct=2822, bcdDevice= 7.34\r\r[    7.297338] usb usb7: SerialNumber: 0000:49:00.0\r\r[    7.297451] hub 7-0:1.0: USB hub found\r\r[    7.306617] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3\r\r[    7.311914] hub 7-0:1.0: 12 ports detected\r\r[    7.316213] usb 3-2: Product: USB2.0 Hub             \r\r[    7.329913] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.\r\r[    7.334735] usb 3-2: Manufacturer: VIA Labs, Inc.         \r\r[    7.343794] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01\r\r[    7.350070] usb 3-2: SerialNumber: 000000001\r\r[    7.359498] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1\r\r[    7.365219] hub 3-2:1.0: USB hub found\r\r[    7.372526] usb usb8: Product: xHCI Host Controller\r\r[    7.377043] hub 3-2:1.0: 4 ports detected\r\r[    7.382297] usb usb8: Manufacturer: Linux 6.1.69 xhci-hcd\r\r[    7.382297] usb usb8: SerialNumber: 0000:49:00.0\r\r[    7.382421] hub 8-0:1.0: USB hub found\r\r[    7.402603] hub 8-0:1.0: 6 ports detected\r\r[    7.409441] usb: port power management may be unreliable\r\r[    7.449153] usb 4-2: new SuperSpeed USB device number 2 using xhci_hcd\r\r[    7.681431] usb 7-5: new high-speed USB device number 2 using xhci_hcd\r\r[    7.725443] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)\r\r[    7.733430] ata2.00: ATA-8: ST1500DL003-9VT16L, CC32, max UDMA/133\r\r[    7.740799] ata2.00: 2930277168 sectors, multi 16: LBA48 NCQ (depth 32)\r\r[    7.749175] ata2.00: configured for UDMA/133\r\r[    7.754384] scsi 1:0:0:0: Direct-Access     ATA      ST1500DL003-9VT1 CC32 PQ: 0 ANSI: 5\r\r[    7.853975] usb 4-2: New USB device found, idVendor=2109, idProduct=0822, bcdDevice= 7.34\r\r[    7.863200] usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3\r\r[    7.871373] usb 4-2: Product: USB3.1 Hub             \r\r[    7.877110] usb 4-2: Manufacturer: VIA Labs, Inc.         \r\r[    7.883349] usb 4-2: SerialNumber: 000000001\r\r[    7.888838] hub 4-2:1.0: USB hub found\r\r[    7.893323] hub 4-2:1.0: 4 ports detected\r\r[    7.925795] usb 7-5: New USB device found, idVendor=0451, idProduct=8043, bcdDevice= 1.00\r\r[    7.934944] usb 7-5: New USB device strings: Mfr=0, Product=0, SerialNumber=1\r\r[    7.943127] usb 7-5: SerialNumber: 18050079BFB9\r\r[    7.955976] hub 7-5:1.0: USB hub found\r\r[    7.962785] hub 7-5:1.0: 4 ports detected\r\r[    8.042094] usb 8-5: new SuperSpeed USB device number 2 using xhci_hcd\r\r[    8.071034] usb 8-5: New USB device found, idVendor=0451, idProduct=8041, bcdDevice= 1.00\r\r[    8.080137] usb 8-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0\r\r[    8.095601] hub 8-5:1.0: USB hub found\r\r[    8.099854] hub 8-5:1.0: 4 ports detected\r\r[    8.125517] usb 4-3: new SuperSpeed USB device number 3 using xhci_hcd\r\r[    8.150469] usb 4-3: New USB device found, idVendor=1058, idProduct=0820, bcdDevice=10.12\r\r[    8.159597] usb 4-3: New USB device strings: Mfr=1, Product=2, SerialNumber=5\r\r[    8.167699] usb 4-3: Product: My Passport 0820\r\r[    8.172759] usb 4-3: Manufacturer: Western Digital\r\r[    8.178187] usb 4-3: SerialNumber: 575853314543344A32543543\r\r[    8.237450] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)\r\r[    8.245266] ata3.00: ATA-9: ST3000DM008-2DM166, CC26, max UDMA/133\r\r[    8.252601] ata3.00: 5860533168 sectors, multi 16: LBA48 NCQ (depth 32), AA\r\r[    8.261808] ata3.00: configured for UDMA/133\r\r[    8.265420] usb 7-7: new high-speed USB device number 3 using xhci_hcd\r\r[    8.266998] scsi 2:0:0:0: Direct-Access     ATA      ST3000DM008-2DM1 CC26 PQ: 0 ANSI: 5\r\r[    8.309495] usb 4-4: new SuperSpeed USB device number 4 using xhci_hcd\r\r[    8.334304] usb 4-4: New USB device found, idVendor=0bc2, idProduct=ac25, bcdDevice= 1.00\r\r[    8.343377] usb 4-4: New USB device strings: Mfr=2, Product=3, SerialNumber=1\r\r[    8.351580] usb 4-4: Product: BUP Portable\r\r[    8.356193] usb 4-4: Manufacturer: Seagate\r\r[    8.360914] usb 4-4: SerialNumber: 00000000NAB9K4GM\r\r[    8.461445] usb 3-2.2: new low-speed USB device number 3 using xhci_hcd\r\r[    8.506803] usb 7-7: New USB device found, idVendor=067b, idProduct=2586, bcdDevice= 0.00\r\r[    8.516057] usb 7-7: New USB device strings: Mfr=1, Product=3, SerialNumber=0\r\r[    8.524120] usb 7-7: Product: USB 2.0 Hub            \r\r[    8.529867] usb 7-7: Manufacturer: USB Device  \r\r[    8.543976] hub 7-7:1.0: USB hub found\r\r[    8.550795] hub 7-7:1.0: 4 ports detected\r\r[    8.622035] usb 3-2.2: New USB device found, idVendor=1bcf, idProduct=0005, bcdDevice= 0.14\r\r[    8.631360] usb 3-2.2: New USB device strings: Mfr=0, Product=2, SerialNumber=0\r\r[    8.639629] usb 3-2.2: Product: USB Optical Mouse\r\r[    8.757451] ata4: SATA link up 6.0 Gbps (SStatus 133 SControl 300)\r\r[    8.761421] usb 7-8: new high-speed USB device number 4 using xhci_hcd\r\r[    8.775894] ata4.00: ATA-8: OCZ-VERTEX3 MI, 2.25, max UDMA/133\r\r[    8.777419] usb 3-2.3: new full-speed USB device number 4 using xhci_hcd\r\r[    8.782646] ata4.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 32), AA\r\r[    8.806296] ata4.00: configured for UDMA/133\r\r[    8.811604] scsi 3:0:0:0: Direct-Access     ATA      OCZ-VERTEX3 MI   2.25 PQ: 0 ANSI: 5\r\r[    8.823983] nvme nvme0: pci function 0000:81:00.0\r\r[    8.829638] nvme nvme1: pci function 0000:43:00.0\r\r[    8.833860] nvme nvme0: Shutdown timeout set to 10 seconds\r\r[    8.835062] nvme nvme2: pci function 0000:48:00.0\r\r[    8.841593] sd 1:0:0:0: [sda] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB)\r\r[    8.841644] sd 3:0:0:0: [sdb] 468862128 512-byte logical blocks: (240 GB/224 GiB)\r\r[    8.841666] sd 0:0:0:0: [sdd] 5860533168 512-byte logical blocks: (3.00 TB/2.73 TiB)\r\r[    8.841671] sd 0:0:0:0: [sdd] 4096-byte physical blocks\r\r[    8.841672] sd 3:0:0:0: [sdb] Write Protect is off\r\r[    8.841680] sd 0:0:0:0: [sdd] Write Protect is off\r\r[    8.841681] sd 2:0:0:0: [sdc] 5860533168 512-byte logical blocks: (3.00 TB/2.73 TiB)\r\r[    8.841684] sd 2:0:0:0: [sdc] 4096-byte physical blocks\r\r[    8.841697] sd 0:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\r\r[    8.841711] sd 2:0:0:0: [sdc] Write Protect is off\r\r[    8.841715] sd 0:0:0:0: [sdd] Preferred minimum I/O size 4096 bytes\r\r[    8.841720] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\r\r[    8.841783] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\r\r[    8.841798] sd 3:0:0:0: [sdb] Preferred minimum I/O size 512 bytes\r\r[    8.841846] sd 2:0:0:0: [sdc] Preferred minimum I/O size 4096 bytes\r\r[    8.842293] nvme nvme1: missing or invalid SUBNQN field.\r\r[    8.842305] nvme nvme1: Shutdown timeout set to 8 seconds\r\r[    8.843302]  sdb: sdb1\r\r[    8.843375] sd 3:0:0:0: [sdb] Attached SCSI disk\r\r[    8.852354] nvme nvme2: Shutdown timeout set to 10 seconds\r\r[    8.852442] nvme nvme0: 16/0/0 default/read/poll queues\r\r[    8.854515]  nvme0n1: p1 p2\r\r[    8.855766] sd 1:0:0:0: [sda] Write Protect is off\r\r[    8.869164] nvme nvme2: 16/0/0 default/read/poll queues\r\r[    8.875603] nvme nvme1: 32/0/0 default/read/poll queues\r\r[    8.879547]  nvme1n1: p1 p2 p3\r\r[    8.881984]  nvme2n1: p1 p2\r\r[    8.885499] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\r\r[    8.891680]  sdc: sdc1 sdc2 sdc3\r\r[    8.899989] sd 1:0:0:0: [sda] Preferred minimum I/O size 512 bytes\r\r[    8.906280] sd 2:0:0:0: [sdc] Attached SCSI disk\r\r[    8.924937]  sdd: sdd1 sdd2 sdd3\r\r[    8.940115] usb-storage 4-3:1.0: USB Mass Storage device detected\r\r[    8.941995] usb 3-2.3: New USB device found, idVendor=1a7c, idProduct=0192, bcdDevice= 1.13\r\r[    8.941997] usb 3-2.3: New USB device strings: Mfr=1, Product=6, SerialNumber=0\r\r[    8.941999] usb 3-2.3: Product: Evoluent VerticalMouse 4 Left\r\r[    8.941999] usb 3-2.3: Manufacturer: Kingsis Peripherals\r\r[    8.950848] sd 0:0:0:0: [sdd] Attached SCSI disk\r\r[    8.952808]  sda: sda1 sda2 sda3\r\r[    8.952901] sd 1:0:0:0: [sda] Attached SCSI disk\r\r[    8.958100] scsi host6: usb-storage 4-3:1.0\r\r[    8.977566] r8169 0000:86:00.0 enp134s0: renamed from eth0\r\r[    8.977852] usbcore: registered new interface driver usb-storage\r\r[    8.992650] hid: raw HID events driver (C) Jiri Kosina\r\r[    9.014778] usb 7-8: New USB device found, idVendor=067b, idProduct=2586, bcdDevice= 0.00\r\r[    9.049658] scsi host7: uas\r\r[    9.052788] usb 7-8: New USB device strings: Mfr=1, Product=3, SerialNumber=0\r\r[    9.056654] usbcore: registered new interface driver uas\r\r[    9.057025] scsi 7:0:0:0: Direct-Access     Seagate  BUP Portable     0004 PQ: 0 ANSI: 6\r\r[    9.058176] sd 7:0:0:0: [sde] 7814037167 512-byte logical blocks: (4.00 TB/3.64 TiB)\r\r[    9.058177] sd 7:0:0:0: [sde] 4096-byte physical blocks\r\r[    9.058255] sd 7:0:0:0: [sde] Write Protect is off\r\r[    9.058414] sd 7:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA\r\r[    9.058573] sd 7:0:0:0: [sde] Preferred minimum I/O size 4096 bytes\r\r[    9.058574] sd 7:0:0:0: [sde] Optimal transfer size 33553920 bytes not a multiple of preferred minimum block size (4096 bytes)\r\r[    9.063563] usb 7-8: Product: USB 2.0 Hub            \r\r[    9.117929] usbcore: registered new interface driver usbhid\r\r[    9.119979] usb 7-8: Manufacturer: USB Device  \r\r[    9.126743] usbhid: USB HID core driver\r\r[    9.155007] hub 7-8:1.0: USB hub found\r\r[    9.165516] r8169 0000:87:00.0 enp135s0: renamed from eth1\r\r[    9.170778] hub 7-8:1.0: 4 ports detected\r\r[    9.308011] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.\r\r[    9.309453] r8169 0000:47:00.0 enp71s0: renamed from eth2\r\r[    9.313451] usb 7-7.1: new full-speed USB device number 5 using xhci_hcd\r\r[    9.322288] device-mapper: uevent: version 1.0.3\r\r[    9.341599] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com\r\r[    9.354999]  sde: sde3 sde9\r\r[    9.358403] sd 7:0:0:0: [sde] Attached SCSI disk\r\r[    9.366005] input: USB Optical Mouse as /devices/pci0000:80/0000:80:01.3/0000:82:00.0/usb3/3-2/3-2.2/3-2.2:1.0/0003:1BCF:0005.0001/input/input0\r\r[    9.380739] hid-generic 0003:1BCF:0005.0001: input,hidraw0: USB HID v1.10 Mouse [USB Optical Mouse] on usb-0000:82:00.0-2.2/input0\r\r[    9.394206] input: Kingsis Peripherals Evoluent VerticalMouse 4 Left as /devices/pci0000:80/0000:80:01.3/0000:82:00.0/usb3/3-2/3-2.3/3-2.3:1.0/0003:1A7C:0192.0002/input/input1\r\r[    9.412381] hid-generic 0003:1A7C:0192.0002: input,hidraw1: USB HID v1.11 Mouse [Kingsis Peripherals Evoluent VerticalMouse 4 Left] on usb-0000:82:00.0-2.3/input0\r\r[    9.497490] raid6: avx512x4 gen() 63860 MB/s\r\r[    9.569449] raid6: avx512x2 gen() 66038 MB/s\r\r[    9.636800] usb 7-7.1: New USB device found, idVendor=051d, idProduct=0002, bcdDevice= 0.90\r\r[    9.641519] raid6: avx512x1 gen() 65217 MB/s\r\r[    9.646089] usb 7-7.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3\r\r[    9.659151] usb 7-7.1: Product: Back-UPS XS 1000M FW:945.d9 .D USB FW:d9     \r\r[    9.667176] usb 7-7.1: Manufacturer: American Power Conversion\r\r[    9.673733] usb 7-7.1: SerialNumber: 3B1831X26513  \r\r[    9.717420] raid6: avx2x4   gen() 65395 MB/s\r\r[    9.737505] usb 7-9: new full-speed USB device number 6 using xhci_hcd\r\r[    9.745217] hid-generic 0003:051D:0002.0003: hiddev0,hidraw2: USB HID v1.00 Device [American Power Conversion Back-UPS XS 1000M FW:945.d9 .D USB FW:d9     ] on usb-0000:49:00.0-7.1/input0\r\r[    9.789492] raid6: avx2x2   gen() 65294 MB/s\r\r[    9.861421] raid6: avx2x1   gen() 55991 MB/s\r\r[    9.866336] raid6: using algorithm avx512x2 gen() 66038 MB/s\r\r[    9.937465] raid6: .... xor() 43377 MB/s, rmw enabled\r\r[    9.943189] raid6: using avx512x2 recovery algorithm\r\r[    9.951061] xor: automatically using best checksumming function   avx       \r\r[    9.975038] async_tx: api initialized (async)\r\r[    9.993709] device-mapper: raid: Loading target version 1.15.1\r\r[   10.001897] scsi 6:0:0:0: Direct-Access     WD       My Passport 0820 1012 PQ: 0 ANSI: 6\r\r[   10.011929] scsi 6:0:0:1: Enclosure         WD       SES Device       1012 PQ: 0 ANSI: 6\r\r[   10.023781] sd 6:0:0:0: [sdf] 3906963456 512-byte logical blocks: (2.00 TB/1.82 TiB)\r\r[   10.033302] sd 6:0:0:0: [sdf] Write Protect is off\r\r[   10.039237] sd 6:0:0:0: [sdf] No Caching mode page found\r\r[   10.045414] sd 6:0:0:0: [sdf] Assuming drive cache: write through\r\r[   10.056982]  sdf: sdf1 sdf2 sdf3\r\r[   10.060957] sd 6:0:0:0: [sdf] Attached SCSI disk\r\r[   10.078581] usb 7-9: New USB device found, idVendor=26ce, idProduct=01a2, bcdDevice= 0.00\r\r[   10.081216] scsi 6:0:0:1: Wrong diagnostic page; asked for 1 got 8\r\r[   10.088232] usb 7-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3\r\r[   10.095369] scsi 6:0:0:1: Failed to get diagnostic page 0x1\r\r[   10.095370] scsi 6:0:0:1: Failed to bind enclosure -19\r\r[   10.095388] ses 6:0:0:1: Attached Enclosure device\r\r[   10.121405] usb 7-9: Product: LED Controller\r\r[   10.126280] usb 7-9: Manufacturer: ASRock\r\r[   10.130816] usb 7-9: SerialNumber: A02019100900\r\r[   10.136179] usb 7-8.1: new full-speed USB device number 7 using xhci_hcd\r\r[   10.148017] md/raid1:mdX: active with 2 out of 2 mirrors\r\r[   10.201418] input: ASRock LED Controller as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-9/7-9:1.0/0003:26CE:01A2.0004/input/input2\r\r[   10.240517] md/raid1:mdX: active with 2 out of 2 mirrors\r\r[   10.277578] hid-generic 0003:26CE:01A2.0004: input,hidraw3: USB HID v1.10 Device [ASRock LED Controller] on usb-0000:49:00.0-9/input0\r\r[   10.447814] usb 7-8.1: New USB device found, idVendor=b58c, idProduct=9e84, bcdDevice= 1.00\r\r[   10.457652] usb 7-8.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3\r\r[   10.466193] usb 7-8.1: Product: Yeti Stereo Microphone\r\r[   10.472193] usb 7-8.1: Manufacturer: Blue Microphones\r\r[   10.478323] usb 7-8.1: SerialNumber: REV8\r\r[   10.525003] input: Blue Microphones Yeti Stereo Microphone Consumer Control as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.1/7-8.1:1.3/0003:B58C:9E84.0005/input/input3\r\r[   10.605448] usb 7-7.3: new high-speed USB device number 8 using xhci_hcd\r\r[   10.613432] hid-generic 0003:B58C:9E84.0005: input,hiddev1,hidraw4: USB HID v1.00 Device [Blue Microphones Yeti Stereo Microphone] on usb-0000:49:00.0-8.1/input3\r\r[   10.786817] usb 7-7.3: New USB device found, idVendor=045e, idProduct=075d, bcdDevice= 1.07\r\r[   10.796657] usb 7-7.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0\r\r[   10.805247] usb 7-7.3: Product: Microsoft® LifeCam Cinema(TM)\r\r[   10.812186] usb 7-7.3: Manufacturer: Microsoft\r\r[   10.945434] usb 7-10: new high-speed USB device number 9 using xhci_hcd\r\r[   11.198833] usb 7-10: New USB device found, idVendor=0e8d, idProduct=0616, bcdDevice= 1.00\r\r[   11.208527] usb 7-10: New USB device strings: Mfr=5, Product=6, SerialNumber=7\r\r[   11.217240] usb 7-10: Product: Wireless_Device\r\r[   11.222435] usb 7-10: Manufacturer: MediaTek Inc.\r\r[   11.227848] usb 7-10: SerialNumber: 000000000\r\r[   11.293444] usb 7-8.2: new full-speed USB device number 10 using xhci_hcd\r\r[   11.653831] usb 7-8.2: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.05\r\r[   11.663559] usb 7-8.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0\r\r[   11.672241] usb 7-8.2: Product: USB Receiver\r\r[   11.677396] usb 7-8.2: Manufacturer: Logitech\r\r[   11.697417] usb 7-12: new high-speed USB device number 11 using xhci_hcd\r\r[   11.753038] input: Logitech USB Receiver as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.0/0003:046D:C52B.0006/input/input5\r\r[   11.829614] hid-generic 0003:046D:C52B.0006: input,hidraw5: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:49:00.0-8.2/input0\r\r[   11.890072] input: Logitech USB Receiver Mouse as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.1/0003:046D:C52B.0007/input/input6\r\r[   11.909014] input: Logitech USB Receiver Consumer Control as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.1/0003:046D:C52B.0007/input/input7\r\r[   11.973841] usb 7-12: New USB device found, idVendor=13fe, idProduct=1f23, bcdDevice= 1.10\r\r[   11.983501] usb 7-12: New USB device strings: Mfr=1, Product=2, SerialNumber=3\r\r[   11.992101] usb 7-12: Product: STORE N GO\r\r[   11.996935] usb 7-12: Manufacturer: Verbatim\r\r[   12.002036] usb 7-12: SerialNumber: 07890C890F49\r\r[   12.007249] input: Logitech USB Receiver System Control as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.1/0003:046D:C52B.0007/input/input8\r\r[   12.027376] hid-generic 0003:046D:C52B.0007: input,hiddev2,hidraw6: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:49:00.0-8.2/input1\r\r[   12.060039] usb-storage 7-12:1.0: USB Mass Storage device detected\r\r[   12.067418] scsi host8: usb-storage 7-12:1.0\r\r[   12.086171] hid-generic 0003:046D:C52B.0008: hiddev3,hidraw7: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:49:00.0-8.2/input2\r\r[   12.185435] usb 7-8.3: new full-speed USB device number 12 using xhci_hcd\r\r[   12.512842] usb 7-8.3: New USB device found, idVendor=1050, idProduct=0407, bcdDevice= 4.37\r\r[   12.522739] usb 7-8.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0\r\r[   12.531416] usb 7-8.3: Product: Yubikey 4 OTP+U2F+CCID\r\r[   12.537387] usb 7-8.3: Manufacturer: Yubico\r\r[   12.601139] input: Yubico Yubikey 4 OTP+U2F+CCID as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.3/7-8.3:1.0/0003:1050:0407.0009/input/input10\r\r[   12.677615] hid-generic 0003:1050:0407.0009: input,hidraw8: USB HID v1.10 Keyboard [Yubico Yubikey 4 OTP+U2F+CCID] on usb-0000:49:00.0-8.3/input0\r\r[   12.693358] hid-generic 0003:1050:0407.000A: hiddev4,hidraw9: USB HID v1.10 Device [Yubico Yubikey 4 OTP+U2F+CCID] on usb-0000:49:00.0-8.3/input1\r\r[   12.785443] usb 7-8.4: new low-speed USB device number 13 using xhci_hcd\r\r[   12.978940] usb 7-8.4: New USB device found, idVendor=0b39, idProduct=0001, bcdDevice= 3.10\r\r[   12.988684] usb 7-8.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0\r\r[   12.997509] usb 7-8.4: Product: USB to PS2 Adaptor  V3.10\r\r[   13.003858] usb 7-8.4: Manufacturer: Composite USB PS2 Converter\r\r[   13.038734] input: Composite USB PS2 Converter USB to PS2 Adaptor  V3.10 as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.4/7-8.4:1.0/0003:0B39:0001.000B/input/input11\r\r[   13.077823] scsi 8:0:0:0: Direct-Access     Verbatim STORE N GO       5.00 PQ: 0 ANSI: 0 CCS\r\r[   13.088027] sd 8:0:0:0: [sdg] 31318016 512-byte logical blocks: (16.0 GB/14.9 GiB)\r\r[   13.097098] sd 8:0:0:0: [sdg] Write Protect is off\r\r[   13.102894] sd 8:0:0:0: [sdg] No Caching mode page found\r\r[   13.109116] sd 8:0:0:0: [sdg] Assuming drive cache: write through\r\r[   13.117554] hid-generic 0003:0B39:0001.000B: input,hidraw10: USB HID v1.10 Keyboard [Composite USB PS2 Converter USB to PS2 Adaptor  V3.10] on usb-0000:49:00.0-8.4/input0\r\r[   13.117909]  sdg: sdg1 sdg2\r\r[   13.138873] sd 8:0:0:0: [sdg] Attached SCSI removable disk\r\r[   13.139045] input: Composite USB PS2 Converter USB to PS2 Adaptor  V3.10 Mouse as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.4/7-8.4:1.1/0003:0B39:0001.000C/input/input12\r\r[   13.167444] input: Composite USB PS2 Converter USB to PS2 Adaptor  V3.10 System Control as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.4/7-8.4:1.1/0003:0B39:0001.000C/input/input13\r\r[   13.249489] input: Composite USB PS2 Converter USB to PS2 Adaptor  V3.10 Consumer Control as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.4/7-8.4:1.1/0003:0B39:0001.000C/input/input14\r\r[   13.272500] hid-generic 0003:0B39:0001.000C: input,hidraw11: USB HID v1.10 Mouse [Composite USB PS2 Converter USB to PS2 Adaptor  V3.10] on usb-0000:49:00.0-8.4/input1\r\r[   13.482061] logitech-djreceiver 0003:046D:C52B.0008: hiddev2,hidraw5: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:49:00.0-8.2/input2\r\r[   13.615530] input: Logitech Wireless Device PID:4011 Keyboard as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:4011.000D/input/input15\r\r[   13.637300] input: Logitech Wireless Device PID:4011 Mouse as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:4011.000D/input/input16\r\r[   13.658914] hid-generic 0003:046D:4011.000D: input,hidraw6: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4011] on usb-0000:49:00.0-8.2/input2:1\r\r[   13.674173] input: Logitech Wireless Device PID:4024 Keyboard as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:4024.000E/input/input20\r\r[   13.695976] input: Logitech Wireless Device PID:4024 Mouse as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:4024.000E/input/input21\r\r[   13.717285] hid-generic 0003:046D:4024.000E: input,hidraw7: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4024] on usb-0000:49:00.0-8.2/input2:2\r\r[   13.739373] input: Logitech K400 Plus as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:404D.000F/input/input25\r\r[   13.758652] logitech-hidpp-device 0003:046D:404D.000F: input,hidraw12: USB HID v1.11 Keyboard [Logitech K400 Plus] on usb-0000:49:00.0-8.2/input2:3\r\r[   13.915324] logitech-hidpp-device 0003:046D:4011.000D: hidraw6: USB HID v1.11 Keyboard [Logitech Wireless Touch] on usb-0000:49:00.0-8.2/input2:1\r\r[   14.083382] input: Logitech K400 as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-8/7-8.2/7-8.2:1.2/0003:046D:C52B.0008/0003:046D:4024.000E/input/input26\r\r[   14.102254] logitech-hidpp-device 0003:046D:4024.000E: input,hidraw7: USB HID v1.11 Keyboard [Logitech K400] on usb-0000:49:00.0-8.2/input2:2\r\rBegin: Loading essential drivers ... done.\r\rBegin: Running /scripts/init-premount ... done.\r\rBegin: Mounting root file system ... Begin: Running /scripts/local-top ... done.\r\rBegin: Running /scripts/local-premount ... [   14.346497] Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=yes\r\rScanning for Btrfs filesystems\r\rregistered: /dev/mapper/testos-testosRoot2\r\rregistered: /dev/sdf3\r\rregistered: /dev/mapper/testos-finance\r\rregistered: /dev/sdb1\r\rregistered: /dev/mapper/testos-polluxRoot\r\rregistered: /dev/mapper/testos-testosRoot\r\rregistered: /dev/mapper/testos-finance2\r\rregistered: /dev/mapper/testos-polluxRoot2\r\r[   15.113673] BTRFS: device label ButterRoot devid 2 transid 157 /dev/mapper/testos-polluxRoot2 scanned by btrfs (748)\r\r[   15.125829] BTRFS: device label ButterRoot devid 1 transid 157 /dev/mapper/testos-polluxRoot scanned by btrfs (748)\r\r[   15.137804] BTRFS: device label ButterBall devid 1 transid 7454102 /dev/sdb1 scanned by btrfs (748)\r\r[   15.148061] BTRFS: device label LowSec devid 2 transid 11997 /dev/mapper/testos-finance2 scanned by btrfs (748)\r\r[   15.159431] BTRFS: device label LowSec devid 1 transid 11997 /dev/mapper/testos-finance scanned by btrfs (748)\r\r[   15.171086] BTRFS: device label HeptMigf devid 1 transid 227766 /dev/sdf3 scanned by btrfs (748)\r\r[   15.180970] BTRFS: device label testosRoot devid 1 transid 1300 /dev/mapper/testos-testosRoot scanned by btrfs (748)\r\r[   15.193289] BTRFS: device label testosRoot devid 2 transid 1300 /dev/mapper/testos-testosRoot2 scanned by btrfs (748)\r\rdone.\r\rBegin: Will now check root file system ... fsck from util-linux 2.38.1\r\r[/sbin/fsck.btrfs (1) -- /dev/mapper/testos-testosRoot2] fsck.btrfs -a /dev/mapper/testos-testosRoot2 \r\rdone.\r\r[   15.253553] BTRFS info (device dm-0): first mount of filesystem 922b10f2-a826-47fb-ab38-836f9b397ff7\r\r[   15.264265] BTRFS info (device dm-0): using crc32c (crc32c-intel) checksum algorithm\r\r[   15.273323] BTRFS info (device dm-0): using free space tree\r\r[   15.282537] BTRFS info (device dm-0): enabling ssd optimizations\r\rdone.\r\rBegin: Running /scripts/local-bottom ... done.\r\rBegin: Running /scripts/init-bottom ... done.\r\r[   15.320324] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.\r\r[   15.361220] systemd[1]: Inserted module 'autofs4'\r\r[   15.381302] systemd[1]: systemd 252.19-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)\r\r[   15.418750] systemd[1]: Detected virtualization xen.\r\r[   15.424579] systemd[1]: Detected architecture x86-64.\r\r\r\rWelcome to ^[[1mDebian GNU/Linux 12 (bookworm)^[[0m!\r\r\r\r[   15.437140] systemd[1]: Hostname set to <testos>.\r\r[   15.514280] systemd[1]: Queued start job for default target graphical.target.\r\r[   15.546432] systemd[1]: Created slice system-getty.slice - Slice /system/getty.\r\r[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39msystem-getty.slice^[[0m - Slice /system/getty.\r\r[   15.564158] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.\r\r[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39msystem-modpr…lice^[[0m - Slice /system/modprobe.\r\r[   15.583221] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.\r\r[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39msystem-seria…^[[0m - Slice /system/serial-getty.\r\r[   15.603159] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.\r\r[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39msystem-syste…^[[0m - Slice /system/systemd-fsck.\r\r[   15.623107] systemd[1]: Created slice user.slice - User and Session Slice.\r\r[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39muser.slice^[[0m - User and Session Slice.\r\r[   15.640119] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-ask-passwo…quests to Console Directory Watch.\r\r[   15.662712] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-ask-passwo… Requests to Wall Directory Watch.\r\r[   15.684643] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.\r\r[^[[0;32m  OK  ^[[0m] Set up automount ^[[0;1;39mproc-sys-…rmats File System Automount Point.\r\r[   15.708963] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mcryptsetup.…get^[[0m - Local Encrypted Volumes.\r\r[   15.727764] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mintegrityse…Local Integrity Protected Volumes.\r\r[   15.747897] systemd[1]: Reached target paths.target - Path Units.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mpaths.target^[[0m - Path Units.\r\r[   15.762788] systemd[1]: Reached target remote-fs.target - Remote File Systems.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mremote-fs.target^[[0m - Remote File Systems.\r\r[   15.780825] systemd[1]: Reached target slices.target - Slice Units.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mslices.target^[[0m - Slice Units.\r\r[   15.795861] systemd[1]: Reached target swap.target - Swaps.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mswap.target^[[0m - Swaps.\r\r[   15.809692] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mveritysetup… - Local Verity Protected Volumes.\r\r[   15.829470] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.\r\r[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mdm-event.sock… Device-mapper event daemon FIFOs.\r\r[   15.848649] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.\r\r[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mlvm2-lvmpolld…ket^[[0m - LVM2 poll daemon socket.\r\r[   15.867587] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.\r\r[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-fsckd…sck to fsckd communication Socket.\r\r[   15.887853] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.\r\r[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-initc… initctl Compatibility Named Pipe.\r\r[   15.908032] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.\r\r[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-journ…socket^[[0m - Journal Audit Socket.\r\r[   15.927491] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).\r\r[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-journ…t^[[0m - Journal Socket (/dev/log).\r\r[   15.947612] systemd[1]: Listening on systemd-journald.socket - Journal Socket.\r\r[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-journald.socket^[[0m - Journal Socket.\r\r[   15.965222] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.\r\r[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-udevd….socket^[[0m - udev Control Socket.\r\r[   15.984292] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.\r\r[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-udevd…l.socket^[[0m - udev Kernel Socket.\r\r[   16.021553] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...\r\r         Mounting ^[[0;1;39mdev-hugepages.mount^[[0m - Huge Pages File System...\r\r[   16.038910] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...\r\r         Mounting ^[[0;1;39mdev-mqueue.mount^[…POSIX Message Queue File System...\r\r[   16.057105] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...\r\r         Mounting ^[[0;1;39msys-kernel-debug.…^[[0m - Kernel Debug File System...\r\r[   16.075009] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...\r\r         Mounting ^[[0;1;39msys-kernel-tracin…^[[0m - Kernel Trace File System...\r\r[   16.092482] systemd[1]: Finished blk-availability.service - Availability of block devices.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mblk-availability.…m - Availability of block devices.\r\r[   16.112280] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...\r\r         Starting ^[[0;1;39mkeyboard-setup.se…Set the console keyboard layout...\r\r[   16.131057] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...\r\r         Starting ^[[0;1;39mkmod-static-nodes…ate List of Static Device Nodes...\r\r[   16.150469] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...\r\r         Starting ^[[0;1;39mlvm2-monitor.serv…ng dmeventd or progress polling...\r\r[   16.173753] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...\r\r         Starting ^[[0;1;39mmodprobe@configfs…m - Load Kernel Module configfs...\r\r[   16.192281] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...\r\r         Starting ^[[0;1;39mmodprobe@dm_mod.s…[0m - Load Kernel Module dm_mod...\r\r[   16.210640] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...\r\r         Starting ^[[0;1;39mmodprobe@drm.service^[[0m - Load Kernel Module drm...\r\r[   16.227985] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...\r\r         Starting ^[[0;1;39mmodprobe@efi_psto…- Load Kernel Module efi_pstore...\r\r[   16.246981] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...\r\r         Starting ^[[0;1;39mmodprobe@fuse.ser…e^[[0m - Load Kernel Module fuse...\r\r[   16.264859] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...\r\r         Starting ^[[0;1;39mmodprobe@loop.ser…e^[[0m - Load Kernel Module loop...\r\r[   16.287623] pstore: Using crash dump compression: deflate\r\r[   16.287792] ACPI: bus type drm_connector registered\r\r[   16.295158] pstore: Registered efi as persistent store backend\r\r[   16.309265] loop: module loaded\r\r[   16.319135] fuse: init (API version 7.37)\r\r[   16.319603] systemd[1]: Starting systemd-journald.service - Journal Service...\r\r         Starting ^[[0;1;39msystemd-journald.service^[[0m - Journal Service...\r\r[   16.341225] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...\r\r         Starting ^[[0;1;39msystemd-modules-l…rvice^[[0m - Load Kernel Modules...\r\r[   16.359583] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...\r\r         Starting ^[[0;1;39msystemd-remount-f…nt Root and Kernel File Systems...\r\r[   16.379512] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...\r\r         Starting ^[[0;1;39msystemd-udev-trig…[0m - Coldplug All udev Devices...\r\r[   16.398841] systemd[1]: Started systemd-journald.service - Journal Service.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-journald.service^[[0m - Journal Service.\r\r[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mdev-hugepages.mount^[[0m - Huge Pages File System.\r\r[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mdev-mqueue.mount^[[…- POSIX Message Queue File System.\r\r[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msys-kernel-debug.m…nt^[[0m - Kernel Debug File System.\r\r[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msys-kernel-tracing…nt^[[0m - Kernel Trace File System.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mkeyboard-setup.se…- Set the console keyboard layout.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mkmod-static-nodes…reate List of Static Device Nodes.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@configfs…[0m - Load Kernel Module configfs.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@dm_mod.s…e^[[0m - Load Kernel Module dm_mod.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@drm.service^[[0m - Load Kernel Module drm.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@efi_psto…m - Load Kernel Module efi_pstore.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@fuse.service^[[0m - Load Kernel Module fuse.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mmodprobe@loop.service^[[0m - Load Kernel Module loop.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-modules-l…service^[[0m - Load Kernel Modules.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-remount-f…ount Root and Kernel File Systems.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-udev-trig…e^[[0m - Coldplug All udev Devices.\r\r         Mounting ^[[0;1;39msys-fs-fuse-conne…^[[0m - FUSE Control File System...\r\r         Mounting ^[[0;1;39msys-kernel-config…ernel Configuration File System...\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdm-event.service^[[0m - Device-mapper event daemon.\r\r         Starting ^[[0;1;39mifupdown-pre.serv…ynchronize boot up for ifupdown...\r\r         Starting ^[[0;1;39msystemd-journal-f…h Journal to Persistent Storage...[   16.621333] s\r\rystemd-journald[837]: Received client request to flush runtime journal.\r\r         Starting ^[[0;1;39msystemd-random-se…ice^[[0m - Load/Save Random Seed...\r\r         Starting ^[[0;1;39msystemd-sysctl.se…ce^[[0m - Apply Kernel Variables...\r\r         Starting ^[[0;1;39msystemd-sysusers.…rvice^[[0m - Create System Users...\r\r[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msys-fs-fuse-connec…nt^[[0m - FUSE Control File System.\r\r[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39msys-kernel-config.… Kernel Configuration File System.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mifupdown-pre.serv… synchronize boot up for ifupdown.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-journal-f…ush Journal to Persistent Storage.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-random-se…rvice^[[0m - Load/Save Random Seed.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-sysctl.service^[[0m - Apply Kernel Variables.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mlvm2-monitor.serv…sing dmeventd or progress polling.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-sysusers.service^[[0m - Create System Users.\r\r         Starting ^[[0;1;39msystemd-tmpfiles-…ate Static Device Nodes in /dev...\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-tmpfiles-…reate Static Device Nodes in /dev.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mlocal-fs-pr…reparation for Local File Systems.\r\r         Starting ^[[0;1;39msystemd-udevd.ser…ger for Device Events and Files...\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-udevd.serv…nager for Device Events and Files.\r\r[   16.852718] BTRFS info: devid 2 device path /dev/mapper/testos-testosRoot2 changed to /dev/dm-1 scanned by (udev-worker) (877)\r\r[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39mdev-hvc0.device^[[0m - /dev/hvc0.[   16.869737] B\r\rTRFS info: devid 1 device path /dev/mapper/testos-testosRoot changed to /dev/dm-0 scanned by (udev-worker) (879)\r\r[   16.887383] BTRFS info: devid 1 device path /dev/dm-0 changed to /dev/mapper/testos-testosRoot scanned by (udev-worker) (879)\r\r[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39mdev-disk-by\x…msung SSD 990 PRO 2TB EFI_DRIVE_B.[   16.900762] B\r\rTRFS info: devid 2 device path /dev/dm-1 changed to /dev/mapper/testos-testosRoot2 scanned by (udev-worker) (877)\r\r[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39mdev-disk-by\x…ung SSD 970 EVO 500GB Boottestos.\r\r[   16.934819] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input27\r\r[   16.944745] ACPI: button: Power Button [PWRB]\r\r[   16.944781] i[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msmartcard.target^[[0m - Smart Card.nput: Power Butt\r\ron as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input28\r\r         Starting ^[[0;1;39msystemd-fsck@dev-… /dev/disk/by-label/Boottestos...[   16.966568] A\r\rCPI: button: Power Button [PWRF]\r\r         Starting ^[[0;1;39msystemd-fsck@dev-… on /dev/disk/by-uuid/CAE1-0AFD...\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-fsck@dev-…on /dev/disk/by-label/Boottestos.[   16.989230] s\r\rd 0:0:0:0: Attached scsi generic sg0 type 0\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-fsck@dev-…ck on /dev/disk/by-uuid/CAE1-0AFD.[   17.004671] s\r\rd 1:0:0:0: Attached scsi generic sg1 type 0\r\r         Mounting ^[[0;1;39mboot.mount^[[0m - /boot...[   17.020536] s\r\rd 2:0:0:0: Attached scsi generic sg2 type 0\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-fsckd.serv…tem Check Daemon to report status.[   17.032309] s\r\rd 3:0:0:0: Attac\rChecking in progress on 1 disk (0.0% complete)\rhed scsi generic sg3 type 0\r\r\rChecking in progress on 0 disks (100.0% complete)\r[   17.052531] sd 7:0:0:0: Attached scsi generic sg4 type 0\r\r[   17.063530] sd 6:0:0:0: Attached scsi generic sg5 type 0\r\r[   17.069648] ses 6:0:0:1: Attached scsi generic sg6 type 13\r\r[   17.075891] sd 8:0:0:0: Attached scsi generic sg7 type 0\r\r[   17.130099] ccp 0000:06:00.5: enabling device (0000 -> 0002)\r\r[   17.137025] ccp 0000:06:00.5: BAR 2: can't reserve [mem 0xf0b00000-0xf0bfffff]\r\r[   17.145210] ccp 0000:06:00.5: pcim_iomap_regions failed (-16)\r\r[   17.151868] ccp 0000:06:00.5: initialization failed\r\r[   17.157615] ccp: probe of 0000:06:00.5 failed with error -16\r\r[   17.216253] cryptd: max_cpu_qlen set to 1000\r\r[   17.223065] input: PC Speaker as /devices/platform/pcspkr/input/input29\r\r[   17.236220] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver\r\r[   17.242835] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address\r\r[   17.250898] sp5100-tco sp5100-tco: Watchdog hardware is disabled\r\r[   17.260493] mc: Linux media interface: v0.10\r\r[   17.505032] cfg80211: Loading compiled-in X.509 certificates for regulatory database\r\r[   17.513925] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'\r\r[   17.524593] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'\r\r[   17.535812] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'\r\r[   17.543925] platform regulatory.0: firmware: direct-loading firmware regulatory.db\r\r[   17.552440] platform regulatory.0: firmware: direct-loading firmware regulatory.db.p7s\r\r[   17.564948] alg: No test for fips(ansi_cprng) (fips_ansi_cprng)\r\r[   17.689057] AVX2 version of gcm_enc/dec engaged.\r\r[   17.696919] videodev: Linux video capture interface: v2.00\r\r[   17.703417] AES CTR mode by8 optimization enabled\r\r[   17.713779] EXT4-fs (nvme1n1p3): mounted filesystem with ordered data mode. Quota mode: none.\r\r[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mboot.mount^[[0m - /boot.\r\r         Mounting ^[[0;1;39mboot-efi.mount^[[0m - /boot/efi...\r\r[   17.993532] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)\r\r[   18.001207] snd_hda_intel 0000:01:00.1: Force to non-snoop mode\r\r[   18.007997] snd_hda_intel 0000:01:00.1: BAR 0: can't reserve [mem 0xf0f60000-0xf0f63fff 64bit]\r\r[   18.018053] snd_hda_intel 0000:06:00.7: enabling device (0000 -> 0002)\r\r[   18.025723] snd_hda_intel 0000:06:00.7: BAR 0: can't reserve [mem 0xf0d00000-0xf0d07fff]\r\r[   18.033679] snd_hda_intel 0000:41:00.1: enabling device (0000 -> 0002)\r\r[   18.043165] snd_hda_intel 0000:41:00.1: Force to non-snoop mode\r\r[   18.055286] BTRFS info: devid 1 device path /dev/mapper/testos-testosRoot changed to /dev/dm-0 scanned by (udev-worker) (869)\r\r[   18.068721] BTRFS info: devid 2 device path /dev/mapper/testos-testosRoot2 changed to /dev/dm-1 scanned by (udev-worker) (870)\r\r[   18.082560] BTRFS info: devid 1 device path /dev/dm-0 changed to /dev/mapper/testos-testosRoot scanned by (udev-worker) (869)\r\r[   18.096075] BTRFS info: devid 2 device path /dev/dm-1 changed to /dev/mapper/testos-testosRoot2 scanned by (udev-worker) (870)\r\r[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mboot-efi.mount^[[0m - /boot/efi.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mlocal-fs.target^[[0m - Local File Systems.[   18.120564] i\r\rnput: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:40/0000:40:01.1/0000:41:00.1/sound/card3/input30\r\r         Starting ^[[0;1;39mapparmor.service^[[0m - Load AppArmor profiles...[   18.141262] i\r\rnput: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:40/0000:40:01.1/0000:41:00.1/sound/card3/input31\r\r[   18.142891] audit: type=1400 audit(1705646336.739:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=1199 comm="apparmor_parser"\r\r[   18.161482] usbcore: registered new interface driver snd-usb-audio\r\r[   18.162165] usb 7-7.3: Found UVC 1.00 device Microsoft® LifeCam Cinema(TM) (045e:075d)\r\r[   18.168327] input: Microsoft® LifeCam Cinema(TM): as /devices/pci0000:40/0000:40:03.3/0000:44:00.0/0000:45:0c.0/0000:49:00.0/usb7/7-7/7-7.3/7-7.3:1.0/input/input32\r\r[   18.168423] usbcore: registered new interface driver uvcvideo\r\r[   18.178300] audit: type=1400 audit(1705646336.739:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=1200 comm="apparmor_parser"\r\r[   18.236303] audit: type=1400 audit(1705646336.739:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=1200 comm="apparmor_parser"\r\r[   18.236305] audit: type=1400 audit(1705646336.739:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=1202 comm="apparmor_parser"\r\r[   18.236307] audit: type=1400 audit(1705646336.739:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=1202 comm="apparmor_parser"\r\r[   18.236308] audit: type=1400 audit(1705646336.739:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=1202 comm="apparmor_parser"\r\r[   18.236309] audit: type=1400 audit(1705646336.743:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1201 comm="apparmor_parser"\r\r[   18.236311] audit: type=1400 audit(1705646336.743:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=1201 comm="apparmor_parser"\r\r[   18.236312] audit: type=1400 audit(1705646336.743:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1201 comm="apparmor_parser"\r\r[   18.236313] audit: type=1400 audit(1705646336.743:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=1201 comm="apparmor_parser"\r\r         Starting ^[[0;1;39mconsole-setup.ser…m - Set console font and keymap...\r\r         Starting ^[[0;1;39msystemd-binfmt.se…et Up Additional Binary Formats...\r\r         Starting ^[[0;1;39msystemd-tmpfiles-… Volatile Files and Directories...\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mapparmor.service^[[0m - Load AppArmor profiles.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mconsole-setup.ser…[0m - Set console font and keymap.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-tmpfiles-…te Volatile Files and Directories.\r\r[   18.450893] [drm] radeon kernel modesetting enabled.\r\r         Mounting ^[[0;1;39mproc-sys-fs-binfm…utable File Formats File System...[   18.456994] r\r\radeon 0000:41:00.0: enabling device (0000 -> 0003)\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mifup@enp134s0.service^[[0m - ifup for enp134s0.[   18.473114] [\r\rdrm] initializing kernel modesetting (OLAND 0x1002:0x6611 0x1028:0x1001 0x87).\r\r[   18.482448] r8169 0000:86:00.0: firmware: direct-loading firmware rtl_nic/rtl8168e-3.fw\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mifup@enp135s0.service^[[0m - ifup for enp135s0.[   18.501089] R\r\rTL8211E Gigabit Ethernet r8169-0-8600:00: attached PHY driver (mii_bus:phy_addr=r8169-0-8600:00, irq=MAC)\r\r         Starting ^[[0;1;39mnetworking.service^[[0m - Raise network interfaces...\r\r[   18.530429] Bluetooth: Core ver 2.22\r\r[   18.530429] mt7921e 0000:46:00.0: enabling device (0000 -> 0002)\r\r[   18.530453] NET: Registered PF_BLUETOOTH protocol family\r\r[   18.547548] Bluetooth: HCI device and connection manager initialized\r\r[   18.547552] B         Starting ^[[0;1;39msystemd-timesyncd… - Network Time Synchronization...luetooth: HCI so\r\rcket layer initialized\r\r[   18.547553] Bluetooth: L2CAP socket layer initialized\r\r[   18.547556] Bluetooth: SCO socket layer initialized\r\r[   18.553526] mt7921e 0000:46:00.0: ASIC revision: 79220010\r\r         Starting ^[[0;1;39msystemd-update-ut…rd System Boot/Shutdown in UTMP...\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-update-ut…cord System Boot/Shutdown in UTMP.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msound.target^[[0m - Sound Card.\r\r[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39msystemd-rfkil…l Switch Status /dev/rfkill Watch.\r\r[   18.669315] mt7921e 0000:46:00.0: firmware: direct-loading firmware mediatek/WIFI_MT7922_patch_mcu_1_1_hdr.bin\r\r[   18.681012] mt7921e 0000:46:00.0: HW/SW Version: 0x8a108a10, Build Time: 20221227123154a\r\r[   18.681012] \r\r[   18.706884] mt7921e 0000:46:00.0: firmware: direct-loading firmware mediatek/WIFI_RAM_CODE_MT7922_1.bin\r\r[   18.717725] mt7921e 0000:46:00.0: WM Firmware Version: ____000000, Build Time: 20221227123243\r\r[   18.729866] ATOM BIOS: C86901\r\r[   18.733364] [drm] GPU not posted. posting now...\r\r[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mproc-sys-fs-binfmt…ecutable File Formats File System.[   18.745312] [\r\rdrm] Changing default dispclk from 480Mhz to 600Mhz\r\r[   18.757507] radeon 0000:41:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)\r\r[   18.767776] radeon 0000:41:00.0: GTT: 2048M 0x0000000040000000 - 0x00000000BFFFFFFF\r\r[   18.767787] [[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-binfmt.se… Set Up Additional Binary Formats.drm] Detected VR\r\rAM RAM=1024M, BAR=1024M\r\r[   18.767788] [drm] RAM width 64bits DDR\r\r[   18.767811] [drm] radeon: 1024M of VRAM memory ready\r\r[   18.767812] [drm] radeon: 2048M of GTT memory ready.\r\r[   18.767818] [drm] Loading oland Microcode\r\r[   18.768512] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_pfp.bin\r\r[   18.774214] mt7921e 0000:46:00.0: firmware: direct-loading firmware mediatek/WIFI_RAM_CODE_MT7922_1.bin\r\r[   18.833324] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_me.bin\r\r[   18.835559] r8169 0000:86:00.0 enp134s0: Link is Down\r\r[   18.842959] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_ce.bin\r\r[   18.855512] RTL8211E Gigabit Ethernet r8169-0-8700:00: attached PHY driver (mii_bus:phy_addr=r8169-0-8700:00, irq=MAC)\r\r[   18.858131] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_rlc.bin\r\r[   18.880379] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_mc.bin\r\r[   18.889990] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/oland_smc.bin\r\r[   18.899380] [drm] Internal thermal controller with fan control\r\r[   18.910969] [drm] radeon: dpm initialized\r\r[   18.916062] radeon 0000:41:00.0: firmware: direct-loading firmware radeon/TAHITI_uvd.bin\r\r[   18.925399] [drm] GART: num cpu pages 524288, num gpu pages 524288\r\r[   18.937980] [drm] PCIE GART of 2048M enabled (table at 0x0000000000165000).\r\r[   18.946272] radeon 0000:41:00.0: WB enabled\r\r[   18.951249] radeon 0000:41:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00\r\r[   18.960425] radeon 0000:41:00.0: fence driver on ring 1 use gpu addr 0x0000000040000c04\r\r[   18.969791] radeon 0000:41:00.0: fence driver on ring 2 use gpu addr 0x0000000040000c08\r\r[   18.979037] radeon 0000:41:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c\r\r[   18.988476] radeon 0000:41:00.0: fence driver on ring 4 use gpu addr 0x0000000040000c10\r\r[   18.998161] radeon 0000:41:00.0: fence driver on ring 5 use gpu addr 0x0000000000075a18\r\r[   19.007496] radeon 0000:41:00.0: radeon: MSI limited to 32-bit\r\r[   19.014459] radeon 0000:41:00.0: radeon: using MSI.\r\r[   19.020300] [drm] radeon: irq initialized.\r\r[   19.182522] [drm] ring test on 0 succeeded in 1 usecs\r\r[   19.188423] [drm] ring test on 1 succeeded in 1 usecs\r\r[   19.194344] [drm] ring test on 2 succeeded in 1 usecs\r\r[   19.200414] [drm] ring test on 3 succeeded in 3 usecs\r\r[   19.206461] [drm] ring test on 4 succeeded in 3 usecs\r\r[   19.381657] r8169 0000:87:00.0 enp135s0: Link is Down\r\r[   19.388487] [drm] ring test on 5 succeeded in 2 usecs\r\r[   19.394295] [drm] UVD initialized successfully.\r\r[   19.399645] [drm] ib test on ring 0 succeeded in 0 usecs\r\r[   19.405831] [drm] ib test on ring 1 succeeded in 0 usecs\r\r[   19.411995] [drm] ib test on ring 2 succeeded in 0 usecs\r\r[   19.418420] [drm] ib test on ring 3 succeeded in 0 usecs\r\r[   19.424493] [drm] ib test on ring 4 succeeded in 0 usecs\r\r[   19.467381] usbcore: registered new interface driver btusb\r\r[   19.468173] [drm] amdgpu kernel modesetting enabled.\r\r[   19.476471] bluetooth hci0: firmware: direct-loading firmware mediatek/BT_RAM_CODE_MT7922_1_1_hdr.bin\r\r[   19.479590] amdgpu: CRAT table not found\r\r[   19.494909] amdgpu: Virtual CRAT table created for CPU\r\r[   19.494917] a[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-timesyncd.…0m - Network Time Synchronization.mdgpu: Topology:\r\r Add CPU node\r\r[   19.495315] amdgpu 0000:01:00.0: enabling device (0006 -> 0007)\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mnetworking.service^[[0m - Raise network interfaces.[   19.522796] [\r\rdrm] initializing kernel modesetting (POLARIS10 0x1002:0x67DF 0x1462:0x3413 0xC7).\r\r[   19.542351] [[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mbluetooth.target^[[0m - Bluetooth Support.drm] register mm\r\rio base: 0xF0F00000\r\r[   19.556836] [drm] register mmio size: 262144\r\r[   19.556926] [[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mnetwork.target^[[0m - Network.drm] add ip bloc\r\rk number 0 <vi_common>\r\r[   19.575235] [drm] add ip block number 1 <gmc_v8_0>\r\r[   19.575236] [drm] add ip block number 2 <tonga_ih>\r\r[   19.575237] [drm] add ip block number 3 <gfx_v8_0>\r\r[   19.575237] [drm] add ip block number 4 <sdma_v3_0>\r\r[   19.575238] [drm] add ip block number 5 <powerplay>\r\r[   19.575238] [drm] add ip block number 6 <dm>\r\r[   19.575239] [drm] add ip block number 7 <uvd_v6_0>\r\r[   19.575239] [drm] add ip block number 8 <vce_v3_0>\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mnetwork-online.target^[[0m - Network is Online.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msysinit.target^[[0m - System Initialization.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-tmpfiles-c… Cleanup of Temporary Directories.[   19.644947] B\r\rluetooth: hci0: Device setup in 173350 usecs\r\r[   19.653989] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mtime-set.target^[[0m - System Time Set.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mapt-daily.timer^[[0m - Daily apt download activities.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mapt-daily-upgrade.… apt upgrade and clean activities.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdpkg-db-backup.tim… Daily dpkg database backup timer.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39me2scrub_all.timer^[…etadata Check for All Filesystems.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfstrim.timer^[[0m - Discard unused blocks once a week.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mfwupd-refresh.time… Refresh fwupd metadata regularly.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mlogrotate.timer^[[0m - Daily rotation of log files.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mman-db.timer^[[0m - Daily man-db regeneration.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mtimers.target^[[0m - Timer Units.\r\r[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mdbus.socket^[[…- D-Bus System Message Bus Socket.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39msockets.target^[[0m - Socket Units.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mbasic.target^[[0m - Basic System.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mcron.service^[[0m -…kground program processing daemon.\r\r         Starting ^[[0;1;39mdbus.service^[[0m - D-Bus System Message Bus...\r\r         Starting ^[[0;1;39me2scrub_reap.serv…e ext4 Metadata Check Snapshots...\r\r         Starting ^[[0;1;39mpolkit.service^[[0m - Authorization Manager...\r\r         Starting ^[[0;1;39mssh.service^[[0m - OpenBSD Secure Shell server...\r\r         Starting ^[[0;1;39msystemd-logind.se…ice^[[0m - User Login Management...\r\r         Starting ^[[0;1;39msystemd-rfkill.se…Load/Save RF Kill Switch Status...\r\r         Starting ^[[0;1;39msystemd-user-sess…vice^[[0m - Permit User Sessions...\r\r         Starting ^[[0;1;39mudisks2.service^[[0m - Disk Manager...\r\r         Starting ^[[0;1;39mxen.service^[[0m - LSB: Xen daemons...\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-rfkill.ser…- Load/Save RF Kill Switch Status.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mdbus.service^[[0m - D-Bus System Message Bus.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39me2scrub_reap.serv…ine ext4 Metadata Check Snapshots.\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-user-sess…ervice^[[0m - Permit User Sessions.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39msystemd-logind.service^[[0m - User Login Management.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mpolkit.service^[[0m - Authorization Manager.\r\r[   19.928550] amdgpu 0000:01:00.0: amdgpu: Fetched VBIOS from ROM BAR\r\r[   19.935904] a         Starting ^[[0;1;39mModemManager.service^[[0m - Modem Manager...mdgpu: ATOM BIOS\r\r: 113-V34111-F1\r\r[   19.948393] [drm] UVD is enabled in VM mode\r\r[   19.953264] [drm] UVD ENC is enabled in VM mode\r\r[   19.953267] [[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mgetty@tty1.service^[[0m - Getty on tty1.drm] VCE enabled\r\r in VM mode\r\r[   19.953268] amdgpu 0000:01:00.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported\r\r[   19.953310] [drm] vm size is 64 GB, 2 levels, block size is 10-bit, fragment size is 9-bit\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mserial-getty@hvc0.service^[[0m - Serial Getty on hvc0.[   19.991370] a\r\rmdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_mc.bin\r\r[   19.997559] mt7921e 0000:46:00.0 wlp70s0: renamed from wlan0\r\r[   20.009519] amdgpu 0000:01:00.0: amdgpu: VRAM: 4096M 0x000000F400000000 - 0x000000F4FFFFFFFF (4096M used)\r\r[   20.027313] amdgpu 0000:01:00.0: amdgpu: GART: 256M 0x000000FF00000000 - 0x000000FF0FFFFFFF\r\r[   20.027320] [[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mgetty.target^[[0m - Login Prompts.drm] Detected VR\r\rAM RAM=4096M, BAR=4096M\r\r[   20.027321] [drm] RAM width 256bits GDDR5\r\r[   20.027340] [drm] amdgpu: 4096M of VRAM memory ready\r\r[   20.062031] [drm] amdgpu: 3962M of GTT memory ready.\r\r[   20.067918] [drm] GART: num cpu pages 65536, num gpu pages 65536\r\r[   20.075450] xen:xen_evtchn: Event-channel device installed\r\r[   20.076245] [drm] PCIE GART of 256M enabled (table at 0x000000F400380000).\r\r[   20.081541] [drm] ib test on ring 5 succeeded\r\r[   20.081873] [drm] Radeon Display Connectors\r\r[   20.090407] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_pfp_2.bin\r\r[   20.094969] [drm] Connector 0:\r\r[   20.094970] [drm]   DP-1\r\r[   20.094970] [drm]   HPD1\r\r[   20.094970] [drm]   DDC: 0x6540 0x6540 0x6544 0x6544 0x6548 0x6548 0x654c 0x654c\r\r[   20.094971] [drm]   Encoders:\r\r[   20.094971] [drm]     DFP1: INTERNAL_UNIPHY\r\r[   20.094972] [drm] Connector 1:\r\r[   20.094972] [drm]   VGA-1\r\r[   20.094972] [drm]   DDC: 0x6530 0x6530 0x6534 0x6534 0x6538 0x6538 0x653c 0x653c\r\r[   20.094972] [drm]   Encoders:\r\r[   20.094973] [drm]     CRT1: INTERNAL_KLDSCP_DAC1\r\r[   20.161287] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_me_2.bin\r\r[   20.171425] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_ce_2.bin\r\r[   20.178326] [drm] fb mappable at 0x69940571000\r\r[   20.181407] [drm] Chained IB support enabled!\r\r[   20.186627] [drm] vram apper at 0x69940000000\r\r[   20.186628] [drm] size 9437184\r\r[   20.186629] [drm] fb depth is 24\r\r[   20.186629] [drm]    pitch is 8192\r\r[   20.208766] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_rlc.bin\r\r[   20.209274] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_mec_2.bin\r\r[   20.209617] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_mec2_2.bin\r\r[   20.209782] NET: Registered PF_QIPCRTR protocol family\r\r[   20.210149] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_sdma.bin\r\r[   20.210298] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_sdma1.bin\r\r[   20.210314] amdgpu: hwmgr_sw_init smu backed is polaris10_smu\r\r[   20.210722] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_uvd.bin\r\r[   20.210725] [drm] Found UVD firmware Version: 1.130 Family ID: 16\r\r[   20.211442] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_vce.bin\r\r[   20.211444] [drm] Found VCE firmware Version: 53.26 Binary ID: 3\r\r[   20.211943] amdgpu 0000:01:00.0: firmware: direct-loading firmware amdgpu/polaris10_smc.bin\r\r[   20.213223] xen_acpi_processor: Uploading Xen processor PM info\r\r[   20.255393] Console: switching to colour frame buffer device 256x72\r\r[   20.274637] [drm] Display Core initialized with v3.2.207!\r\r[   20.277411] radeon 0000:41:00.0: [drm] fb0: radeondrmfb frame buffer device\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mModemManager.service^[[0m - Modem Manager.\r\r[   20.423269] [drm] Initialized radeon 2.50.0 20080528 for 0000:41:00.0 on minor 0\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mxen.service^[[0m - LSB: Xen daemons.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mudisks2.service^[[0m - Disk Manager.\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mssh.service^[[0m - OpenBSD Secure Shell server.\r\r         Starting ^[[0;1;39mxendomains.servic…tart/stop secondary xen domains...\r\r[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mxendomains.service… Start/stop secondary xen domains.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mmulti-user.target^[[0m - Multi-User System.\r\r[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mgraphical.target^[[0m - Graphical Interface.\r\r         Starting ^[[0;1;39msystemd-update-ut… Record Runlevel Change in UTMP...\r\r[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39msystemd-update-ut… - Record Runlevel Change in UTMP.\r\r[   20.576155] [drm] UVD and UVD ENC initialized successfully.\r\r[   20.682087] [drm] VCE initialized successfully.\r\r[   20.690766] kfd kfd: amdgpu: Allocated 3969056 bytes on gart\r\r[   20.697803] amdgpu: sdma_bitmap: f\r\r[   20.701785] amdgpu: SRAT table not found\r\r[   20.706390] amdgpu: Virtual CRAT table created for GPU\r\r[   20.712535] amdgpu: Topology: Add dGPU node [0x67df:0x1002]\r\r[   20.719052] kfd kfd: amdgpu: added device 1002:67df\r\r[   20.724845] amdgpu 0000:01:00.0: amdgpu: SE 4, SH per SE 1, CU per SH 9, active_cu_number 36\r\r[   20.748971] amdgpu 0000:01:00.0: amdgpu: Using BACO for runtime pm\r\r[   20.756692] [drm] Initialized amdgpu 3.49.0 20150101 for 0000:01:00.0 on minor 1\r\r[   21.297443] [drm] Fence fallback timer expired on ring uvd\r\r\r\r\rDebian GNU/Linux 12 testos hvc0\r\r\r\rtestos login: [   21.713462] amdgpu 0000:01:00.0: amdgpu: \r\r[   21.713462] last message was failed ret is 65535\r\r[   21.841634] r8169 0000:86:00.0 enp134s0: Link is Up - 1Gbps/Full - flow control off\r\r[   21.850280] IPv6: ADDRCONF(NETDEV_CHANGE): enp134s0: link becomes ready\r\r[   22.160472] r8169 0000:87:00.0 enp135s0: Link is Up - 1Gbps/Full - flow control rx/tx\r\r[   22.169288] IPv6: ADDRCONF(NETDEV_CHANGE): enp135s0: link becomes ready\r\r[   22.321456] amdgpu 0000:01:00.0: [drm:amdgpu_ib_ring_tests [amdgpu]] *ERROR* IB test failed on uvd (-110).\r\r[   23.345539] amdgpu 0000:01:00.0: [drm:amdgpu_ib_ring_tests [amdgpu]] *ERROR* IB test failed on uvd_enc0 (-110).\r\r[   24.369453] amdgpu 0000:01:00.0: [drm:amdgpu_ib_ring_tests [amdgpu]] *ERROR* IB test failed on uvd_enc1 (-110).\r\r[   24.480415] amdgpu 0000:01:00.0: amdgpu: \r\r[   24.480415] last message was failed ret is 65535\r\r[   25.521445] amdgpu 0000:01:00.0: [drm:amdgpu_ib_ring_tests [amdgpu]] *ERROR* IB test failed on vce0 (-110).\r\r[   25.532694] [drm:process_one_work] *ERROR* ib ring test failed (-110).\r\r(XEN) Hardware Dom0 shutdown: rebooting machine\r

[-- Attachment #4: efipvh-tables.dump --]
[-- Type: application/octet-stream, Size: 966017 bytes --]

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 53 1B 00 00 02 83 41 4D 44 00 00 00  SSDTS.....AMD...
    0010: 43 50 4D 52 41 53 00 00 01 00 00 00 49 4E 54 4C  CPMRAS......INTL
    0020: 31 03 23 20 A0 43 A2 00 15 5C 2F 03 5F 53 42 5F  1.# .C...\/._SB_
    0030: 53 30 44 30 44 30 41 30 06 00 15 5C 2F 03 5F 53  S0D0D0A0...\/._S
    0040: 42 5F 53 30 44 30 44 30 41 31 06 00 15 5C 2F 03  B_S0D0D0A1...\/.
    0050: 5F 53 42 5F 53 30 44 30 44 30 41 32 06 00 15 5C  _SB_S0D0D0A2...\
    0060: 2F 03 5F 53 42 5F 53 30 44 30 44 30 41 33 06 00  /._SB_S0D0D0A3..
    0070: 15 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30 41 34  .\/._SB_S0D0D0A4
    0080: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  ...\/._SB_S0D0D0
    0090: 41 35 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 30  A5...\/._SB_S0D0
    00A0: 44 30 41 36 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D0A6...\/._SB_S0
    00B0: 44 30 44 30 41 37 06 00 15 5C 2F 03 5F 53 42 5F  D0D0A7...\/._SB_
    00C0: 53 30 44 30 44 30 41 38 06 00 15 5C 2F 03 5F 53  S0D0D0A8...\/._S
    00D0: 42 5F 53 30 44 30 44 30 42 30 06 00 15 5C 2F 03  B_S0D0D0B0...\/.
    00E0: 5F 53 42 5F 53 30 44 30 44 30 42 31 06 00 15 5C  _SB_S0D0D0B1...\
    00F0: 2F 03 5F 53 42 5F 53 30 44 30 44 30 42 32 06 00  /._SB_S0D0D0B2..
    0100: 15 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30 42 33  .\/._SB_S0D0D0B3
    0110: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  ...\/._SB_S0D0D0
    0120: 42 34 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 30  B4...\/._SB_S0D0
    0130: 44 30 42 35 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D0B5...\/._SB_S0
    0140: 44 30 44 30 42 36 06 00 15 5C 2F 03 5F 53 42 5F  D0D0B6...\/._SB_
    0150: 53 30 44 30 44 30 42 37 06 00 15 5C 2F 03 5F 53  S0D0D0B7...\/._S
    0160: 42 5F 53 30 44 30 44 30 42 38 06 00 15 5C 2F 03  B_S0D0D0B8...\/.
    0170: 5F 53 42 5F 53 30 44 31 44 31 41 30 06 00 15 5C  _SB_S0D1D1A0...\
    0180: 2F 03 5F 53 42 5F 53 30 44 31 44 31 41 31 06 00  /._SB_S0D1D1A1..
    0190: 15 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31 41 32  .\/._SB_S0D1D1A2
    01A0: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  ...\/._SB_S0D1D1
    01B0: 41 33 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 31  A3...\/._SB_S0D1
    01C0: 44 31 41 34 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D1A4...\/._SB_S0
    01D0: 44 31 44 31 41 35 06 00 15 5C 2F 03 5F 53 42 5F  D1D1A5...\/._SB_
    01E0: 53 30 44 31 44 31 41 36 06 00 15 5C 2F 03 5F 53  S0D1D1A6...\/._S
    01F0: 42 5F 53 30 44 31 44 31 41 37 06 00 15 5C 2F 03  B_S0D1D1A7...\/.
    0200: 5F 53 42 5F 53 30 44 31 44 31 41 38 06 00 15 5C  _SB_S0D1D1A8...\
    0210: 2F 03 5F 53 42 5F 53 30 44 31 44 31 42 30 06 00  /._SB_S0D1D1B0..
    0220: 15 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31 42 31  .\/._SB_S0D1D1B1
    0230: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  ...\/._SB_S0D1D1
    0240: 42 32 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 31  B2...\/._SB_S0D1
    0250: 44 31 42 33 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D1B3...\/._SB_S0
    0260: 44 31 44 31 42 34 06 00 15 5C 2F 03 5F 53 42 5F  D1D1B4...\/._SB_
    0270: 53 30 44 31 44 31 42 35 06 00 15 5C 2F 03 5F 53  S0D1D1B5...\/._S
    0280: 42 5F 53 30 44 31 44 31 42 36 06 00 15 5C 2F 03  B_S0D1D1B6...\/.
    0290: 5F 53 42 5F 53 30 44 31 44 31 42 37 06 00 15 5C  _SB_S0D1D1B7...\
    02A0: 2F 03 5F 53 42 5F 53 30 44 31 44 31 42 38 06 00  /._SB_S0D1D1B8..
    02B0: 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32 41 30  .\/._SB_S0D2D2A0
    02C0: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  ...\/._SB_S0D2D2
    02D0: 41 31 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 32  A1...\/._SB_S0D2
    02E0: 44 32 41 32 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D2A2...\/._SB_S0
    02F0: 44 32 44 32 41 33 06 00 15 5C 2F 03 5F 53 42 5F  D2D2A3...\/._SB_
    0300: 53 30 44 32 44 32 41 34 06 00 15 5C 2F 03 5F 53  S0D2D2A4...\/._S
    0310: 42 5F 53 30 44 32 44 32 41 35 06 00 15 5C 2F 03  B_S0D2D2A5...\/.
    0320: 5F 53 42 5F 53 30 44 32 44 32 41 36 06 00 15 5C  _SB_S0D2D2A6...\
    0330: 2F 03 5F 53 42 5F 53 30 44 32 44 32 41 37 06 00  /._SB_S0D2D2A7..
    0340: 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32 41 38  .\/._SB_S0D2D2A8
    0350: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  ...\/._SB_S0D2D2
    0360: 42 30 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 32  B0...\/._SB_S0D2
    0370: 44 32 42 31 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D2B1...\/._SB_S0
    0380: 44 32 44 32 42 32 06 00 15 5C 2F 03 5F 53 42 5F  D2D2B2...\/._SB_
    0390: 53 30 44 32 44 32 42 33 06 00 15 5C 2F 03 5F 53  S0D2D2B3...\/._S
    03A0: 42 5F 53 30 44 32 44 32 42 34 06 00 15 5C 2F 03  B_S0D2D2B4...\/.
    03B0: 5F 53 42 5F 53 30 44 32 44 32 42 35 06 00 15 5C  _SB_S0D2D2B5...\
    03C0: 2F 03 5F 53 42 5F 53 30 44 32 44 32 42 36 06 00  /._SB_S0D2D2B6..
    03D0: 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32 42 37  .\/._SB_S0D2D2B7
    03E0: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  ...\/._SB_S0D2D2
    03F0: 42 38 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30  B8...\/._SB_PCI0
    0400: 44 33 41 30 06 00 15 5C 2F 03 5F 53 42 5F 50 43  D3A0...\/._SB_PC
    0410: 49 30 44 33 41 31 06 00 15 5C 2F 03 5F 53 42 5F  I0D3A1...\/._SB_
    0420: 50 43 49 30 44 33 41 32 06 00 15 5C 2F 03 5F 53  PCI0D3A2...\/._S
    0430: 42 5F 50 43 49 30 44 33 41 33 06 00 15 5C 2F 03  B_PCI0D3A3...\/.
    0440: 5F 53 42 5F 50 43 49 30 44 33 41 34 06 00 15 5C  _SB_PCI0D3A4...\
    0450: 2F 03 5F 53 42 5F 50 43 49 30 44 33 41 35 06 00  /._SB_PCI0D3A5..
    0460: 15 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33 41 36  .\/._SB_PCI0D3A6
    0470: 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  ...\/._SB_PCI0D3
    0480: 41 37 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30  A7...\/._SB_PCI0
    0490: 44 33 41 38 06 00 15 5C 2F 03 5F 53 42 5F 50 43  D3A8...\/._SB_PC
    04A0: 49 30 44 33 42 30 06 00 15 5C 2F 03 5F 53 42 5F  I0D3B0...\/._SB_
    04B0: 50 43 49 30 44 33 42 31 06 00 15 5C 2F 03 5F 53  PCI0D3B1...\/._S
    04C0: 42 5F 50 43 49 30 44 33 42 32 06 00 15 5C 2F 03  B_PCI0D3B2...\/.
    04D0: 5F 53 42 5F 50 43 49 30 44 33 42 33 06 00 15 5C  _SB_PCI0D3B3...\
    04E0: 2F 03 5F 53 42 5F 50 43 49 30 44 33 42 34 06 00  /._SB_PCI0D3B4..
    04F0: 15 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33 42 35  .\/._SB_PCI0D3B5
    0500: 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  ...\/._SB_PCI0D3
    0510: 42 36 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30  B6...\/._SB_PCI0
    0520: 44 33 42 37 06 00 15 5C 2F 03 5F 53 42 5F 50 43  D3B7...\/._SB_PC
    0530: 49 30 44 33 42 38 06 00 15 5C 2F 03 5F 53 42 5F  I0D3B8...\/._SB_
    0540: 53 31 44 30 44 34 41 30 06 00 15 5C 2F 03 5F 53  S1D0D4A0...\/._S
    0550: 42 5F 53 31 44 30 44 34 41 31 06 00 15 5C 2F 03  B_S1D0D4A1...\/.
    0560: 5F 53 42 5F 53 31 44 30 44 34 41 32 06 00 15 5C  _SB_S1D0D4A2...\
    0570: 2F 03 5F 53 42 5F 53 31 44 30 44 34 41 33 06 00  /._SB_S1D0D4A3..
    0580: 15 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34 41 34  .\/._SB_S1D0D4A4
    0590: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  ...\/._SB_S1D0D4
    05A0: 41 35 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 30  A5...\/._SB_S1D0
    05B0: 44 34 41 36 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D4A6...\/._SB_S1
    05C0: 44 30 44 34 41 37 06 00 15 5C 2F 03 5F 53 42 5F  D0D4A7...\/._SB_
    05D0: 53 31 44 30 44 34 41 38 06 00 15 5C 2F 03 5F 53  S1D0D4A8...\/._S
    05E0: 42 5F 53 31 44 30 44 34 42 30 06 00 15 5C 2F 03  B_S1D0D4B0...\/.
    05F0: 5F 53 42 5F 53 31 44 30 44 34 42 31 06 00 15 5C  _SB_S1D0D4B1...\
    0600: 2F 03 5F 53 42 5F 53 31 44 30 44 34 42 32 06 00  /._SB_S1D0D4B2..
    0610: 15 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34 42 33  .\/._SB_S1D0D4B3
    0620: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  ...\/._SB_S1D0D4
    0630: 42 34 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 30  B4...\/._SB_S1D0
    0640: 44 34 42 35 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D4B5...\/._SB_S1
    0650: 44 30 44 34 42 36 06 00 15 5C 2F 03 5F 53 42 5F  D0D4B6...\/._SB_
    0660: 53 31 44 30 44 34 42 37 06 00 15 5C 2F 03 5F 53  S1D0D4B7...\/._S
    0670: 42 5F 53 31 44 30 44 34 42 38 06 00 15 5C 2F 03  B_S1D0D4B8...\/.
    0680: 5F 53 42 5F 53 31 44 31 44 35 41 30 06 00 15 5C  _SB_S1D1D5A0...\
    0690: 2F 03 5F 53 42 5F 53 31 44 31 44 35 41 31 06 00  /._SB_S1D1D5A1..
    06A0: 15 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35 41 32  .\/._SB_S1D1D5A2
    06B0: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  ...\/._SB_S1D1D5
    06C0: 41 33 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 31  A3...\/._SB_S1D1
    06D0: 44 35 41 34 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D5A4...\/._SB_S1
    06E0: 44 31 44 35 41 35 06 00 15 5C 2F 03 5F 53 42 5F  D1D5A5...\/._SB_
    06F0: 53 31 44 31 44 35 41 36 06 00 15 5C 2F 03 5F 53  S1D1D5A6...\/._S
    0700: 42 5F 53 31 44 31 44 35 41 37 06 00 15 5C 2F 03  B_S1D1D5A7...\/.
    0710: 5F 53 42 5F 53 31 44 31 44 35 41 38 06 00 15 5C  _SB_S1D1D5A8...\
    0720: 2F 03 5F 53 42 5F 53 31 44 31 44 35 42 30 06 00  /._SB_S1D1D5B0..
    0730: 15 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35 42 31  .\/._SB_S1D1D5B1
    0740: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  ...\/._SB_S1D1D5
    0750: 42 32 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 31  B2...\/._SB_S1D1
    0760: 44 35 42 33 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D5B3...\/._SB_S1
    0770: 44 31 44 35 42 34 06 00 15 5C 2F 03 5F 53 42 5F  D1D5B4...\/._SB_
    0780: 53 31 44 31 44 35 42 35 06 00 15 5C 2F 03 5F 53  S1D1D5B5...\/._S
    0790: 42 5F 53 31 44 31 44 35 42 36 06 00 15 5C 2F 03  B_S1D1D5B6...\/.
    07A0: 5F 53 42 5F 53 31 44 31 44 35 42 37 06 00 15 5C  _SB_S1D1D5B7...\
    07B0: 2F 03 5F 53 42 5F 53 31 44 31 44 35 42 38 06 00  /._SB_S1D1D5B8..
    07C0: 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36 41 30  .\/._SB_S1D2D6A0
    07D0: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  ...\/._SB_S1D2D6
    07E0: 41 31 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 32  A1...\/._SB_S1D2
    07F0: 44 36 41 32 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D6A2...\/._SB_S1
    0800: 44 32 44 36 41 33 06 00 15 5C 2F 03 5F 53 42 5F  D2D6A3...\/._SB_
    0810: 53 31 44 32 44 36 41 34 06 00 15 5C 2F 03 5F 53  S1D2D6A4...\/._S
    0820: 42 5F 53 31 44 32 44 36 41 35 06 00 15 5C 2F 03  B_S1D2D6A5...\/.
    0830: 5F 53 42 5F 53 31 44 32 44 36 41 36 06 00 15 5C  _SB_S1D2D6A6...\
    0840: 2F 03 5F 53 42 5F 53 31 44 32 44 36 41 37 06 00  /._SB_S1D2D6A7..
    0850: 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36 41 38  .\/._SB_S1D2D6A8
    0860: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  ...\/._SB_S1D2D6
    0870: 42 30 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 32  B0...\/._SB_S1D2
    0880: 44 36 42 31 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D6B1...\/._SB_S1
    0890: 44 32 44 36 42 32 06 00 15 5C 2F 03 5F 53 42 5F  D2D6B2...\/._SB_
    08A0: 53 31 44 32 44 36 42 33 06 00 15 5C 2F 03 5F 53  S1D2D6B3...\/._S
    08B0: 42 5F 53 31 44 32 44 36 42 34 06 00 15 5C 2F 03  B_S1D2D6B4...\/.
    08C0: 5F 53 42 5F 53 31 44 32 44 36 42 35 06 00 15 5C  _SB_S1D2D6B5...\
    08D0: 2F 03 5F 53 42 5F 53 31 44 32 44 36 42 36 06 00  /._SB_S1D2D6B6..
    08E0: 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36 42 37  .\/._SB_S1D2D6B7
    08F0: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  ...\/._SB_S1D2D6
    0900: 42 38 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 33  B8...\/._SB_S1D3
    0910: 44 37 41 30 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D7A0...\/._SB_S1
    0920: 44 33 44 37 41 31 06 00 15 5C 2F 03 5F 53 42 5F  D3D7A1...\/._SB_
    0930: 53 31 44 33 44 37 41 32 06 00 15 5C 2F 03 5F 53  S1D3D7A2...\/._S
    0940: 42 5F 53 31 44 33 44 37 41 33 06 00 15 5C 2F 03  B_S1D3D7A3...\/.
    0950: 5F 53 42 5F 53 31 44 33 44 37 41 34 06 00 15 5C  _SB_S1D3D7A4...\
    0960: 2F 03 5F 53 42 5F 53 31 44 33 44 37 41 35 06 00  /._SB_S1D3D7A5..
    0970: 15 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37 41 36  .\/._SB_S1D3D7A6
    0980: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  ...\/._SB_S1D3D7
    0990: 41 37 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 33  A7...\/._SB_S1D3
    09A0: 44 37 41 38 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D7A8...\/._SB_S1
    09B0: 44 33 44 37 42 30 06 00 15 5C 2F 03 5F 53 42 5F  D3D7B0...\/._SB_
    09C0: 53 31 44 33 44 37 42 31 06 00 15 5C 2F 03 5F 53  S1D3D7B1...\/._S
    09D0: 42 5F 53 31 44 33 44 37 42 32 06 00 15 5C 2F 03  B_S1D3D7B2...\/.
    09E0: 5F 53 42 5F 53 31 44 33 44 37 42 33 06 00 15 5C  _SB_S1D3D7B3...\
    09F0: 2F 03 5F 53 42 5F 53 31 44 33 44 37 42 34 06 00  /._SB_S1D3D7B4..
    0A00: 15 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37 42 35  .\/._SB_S1D3D7B5
    0A10: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  ...\/._SB_S1D3D7
    0A20: 42 36 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 33  B6...\/._SB_S1D3
    0A30: 44 37 42 37 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D7B7...\/._SB_S1
    0A40: 44 33 44 37 42 38 06 00 10 49 FF 5C 5F 47 50 45  D3D7B8...I.\_GPE
    0A50: 14 41 FF 5F 4C 31 34 00 A0 14 93 44 52 50 4E 00  .A._L14....DRPN.
    0A60: 86 5C 2E 5F 53 42 5F 41 45 52 52 0A 80 A1 4E FC  .\._SB_AERR...N.
    0A70: 96 44 52 50 4E 60 70 9C 60 FF 00 61 A0 1B 93 61  .DRPN`p.`..a...a
    0A80: 0D 44 30 41 30 00 86 5C 2F 03 5F 53 42 5F 53 30  .D0A0..\/._SB_S0
    0A90: 44 30 44 30 41 30 0A 0F A0 1B 93 61 0D 44 30 41  D0D0A0.....a.D0A
    0AA0: 31 00 86 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  1..\/._SB_S0D0D0
    0AB0: 41 31 0A 0F A0 1B 93 61 0D 44 30 41 32 00 86 5C  A1.....a.D0A2..\
    0AC0: 2F 03 5F 53 42 5F 53 30 44 30 44 30 41 32 0A 0F  /._SB_S0D0D0A2..
    0AD0: A0 1B 93 61 0D 44 30 41 33 00 86 5C 2F 03 5F 53  ...a.D0A3..\/._S
    0AE0: 42 5F 53 30 44 30 44 30 41 33 0A 0F A0 1B 93 61  B_S0D0D0A3.....a
    0AF0: 0D 44 30 41 34 00 86 5C 2F 03 5F 53 42 5F 53 30  .D0A4..\/._SB_S0
    0B00: 44 30 44 30 41 34 0A 0F A0 1B 93 61 0D 44 30 41  D0D0A4.....a.D0A
    0B10: 35 00 86 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  5..\/._SB_S0D0D0
    0B20: 41 35 0A 0F A0 1B 93 61 0D 44 30 41 36 00 86 5C  A5.....a.D0A6..\
    0B30: 2F 03 5F 53 42 5F 53 30 44 30 44 30 41 36 0A 0F  /._SB_S0D0D0A6..
    0B40: A0 1B 93 61 0D 44 30 41 37 00 86 5C 2F 03 5F 53  ...a.D0A7..\/._S
    0B50: 42 5F 53 30 44 30 44 30 41 37 0A 0F A0 1B 93 61  B_S0D0D0A7.....a
    0B60: 0D 44 30 41 38 00 86 5C 2F 03 5F 53 42 5F 53 30  .D0A8..\/._SB_S0
    0B70: 44 30 44 30 41 38 0A 0F A0 1B 93 61 0D 44 30 42  D0D0A8.....a.D0B
    0B80: 30 00 86 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  0..\/._SB_S0D0D0
    0B90: 42 30 0A 0F A0 1B 93 61 0D 44 30 42 31 00 86 5C  B0.....a.D0B1..\
    0BA0: 2F 03 5F 53 42 5F 53 30 44 30 44 30 42 31 0A 0F  /._SB_S0D0D0B1..
    0BB0: A0 1B 93 61 0D 44 30 42 32 00 86 5C 2F 03 5F 53  ...a.D0B2..\/._S
    0BC0: 42 5F 53 30 44 30 44 30 42 32 0A 0F A0 1B 93 61  B_S0D0D0B2.....a
    0BD0: 0D 44 30 42 33 00 86 5C 2F 03 5F 53 42 5F 53 30  .D0B3..\/._SB_S0
    0BE0: 44 30 44 30 42 33 0A 0F A0 1B 93 61 0D 44 30 42  D0D0B3.....a.D0B
    0BF0: 34 00 86 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  4..\/._SB_S0D0D0
    0C00: 42 34 0A 0F A0 1B 93 61 0D 44 30 42 35 00 86 5C  B4.....a.D0B5..\
    0C10: 2F 03 5F 53 42 5F 53 30 44 30 44 30 42 35 0A 0F  /._SB_S0D0D0B5..
    0C20: A0 1B 93 61 0D 44 30 42 36 00 86 5C 2F 03 5F 53  ...a.D0B6..\/._S
    0C30: 42 5F 53 30 44 30 44 30 42 36 0A 0F A0 1B 93 61  B_S0D0D0B6.....a
    0C40: 0D 44 30 42 37 00 86 5C 2F 03 5F 53 42 5F 53 30  .D0B7..\/._SB_S0
    0C50: 44 30 44 30 42 37 0A 0F A0 1B 93 61 0D 44 30 42  D0D0B7.....a.D0B
    0C60: 38 00 86 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  8..\/._SB_S0D0D0
    0C70: 42 38 0A 0F A0 1B 93 61 0D 44 31 41 30 00 86 5C  B8.....a.D1A0..\
    0C80: 2F 03 5F 53 42 5F 53 30 44 31 44 31 41 30 0A 0F  /._SB_S0D1D1A0..
    0C90: A0 1B 93 61 0D 44 31 41 31 00 86 5C 2F 03 5F 53  ...a.D1A1..\/._S
    0CA0: 42 5F 53 30 44 31 44 31 41 31 0A 0F A0 1B 93 61  B_S0D1D1A1.....a
    0CB0: 0D 44 31 41 32 00 86 5C 2F 03 5F 53 42 5F 53 30  .D1A2..\/._SB_S0
    0CC0: 44 31 44 31 41 32 0A 0F A0 1B 93 61 0D 44 31 41  D1D1A2.....a.D1A
    0CD0: 33 00 86 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  3..\/._SB_S0D1D1
    0CE0: 41 33 0A 0F A0 1B 93 61 0D 44 31 41 34 00 86 5C  A3.....a.D1A4..\
    0CF0: 2F 03 5F 53 42 5F 53 30 44 31 44 31 41 34 0A 0F  /._SB_S0D1D1A4..
    0D00: A0 1B 93 61 0D 44 31 41 35 00 86 5C 2F 03 5F 53  ...a.D1A5..\/._S
    0D10: 42 5F 53 30 44 31 44 31 41 35 0A 0F A0 1B 93 61  B_S0D1D1A5.....a
    0D20: 0D 44 31 41 36 00 86 5C 2F 03 5F 53 42 5F 53 30  .D1A6..\/._SB_S0
    0D30: 44 31 44 31 41 36 0A 0F A0 1B 93 61 0D 44 31 41  D1D1A6.....a.D1A
    0D40: 37 00 86 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  7..\/._SB_S0D1D1
    0D50: 41 37 0A 0F A0 1B 93 61 0D 44 31 41 38 00 86 5C  A7.....a.D1A8..\
    0D60: 2F 03 5F 53 42 5F 53 30 44 31 44 31 41 38 0A 0F  /._SB_S0D1D1A8..
    0D70: A0 1B 93 61 0D 44 31 42 30 00 86 5C 2F 03 5F 53  ...a.D1B0..\/._S
    0D80: 42 5F 53 30 44 31 44 31 42 30 0A 0F A0 1B 93 61  B_S0D1D1B0.....a
    0D90: 0D 44 31 42 31 00 86 5C 2F 03 5F 53 42 5F 53 30  .D1B1..\/._SB_S0
    0DA0: 44 31 44 31 42 31 0A 0F A0 1B 93 61 0D 44 31 42  D1D1B1.....a.D1B
    0DB0: 32 00 86 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  2..\/._SB_S0D1D1
    0DC0: 42 32 0A 0F A0 1B 93 61 0D 44 31 42 33 00 86 5C  B2.....a.D1B3..\
    0DD0: 2F 03 5F 53 42 5F 53 30 44 31 44 31 42 33 0A 0F  /._SB_S0D1D1B3..
    0DE0: A0 1B 93 61 0D 44 31 42 34 00 86 5C 2F 03 5F 53  ...a.D1B4..\/._S
    0DF0: 42 5F 53 30 44 31 44 31 42 34 0A 0F A0 1B 93 61  B_S0D1D1B4.....a
    0E00: 0D 44 31 42 35 00 86 5C 2F 03 5F 53 42 5F 53 30  .D1B5..\/._SB_S0
    0E10: 44 31 44 31 42 35 0A 0F A0 1B 93 61 0D 44 31 42  D1D1B5.....a.D1B
    0E20: 36 00 86 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  6..\/._SB_S0D1D1
    0E30: 42 36 0A 0F A0 1B 93 61 0D 44 31 42 37 00 86 5C  B6.....a.D1B7..\
    0E40: 2F 03 5F 53 42 5F 53 30 44 31 44 31 42 37 0A 0F  /._SB_S0D1D1B7..
    0E50: A0 1B 93 61 0D 44 31 42 38 00 86 5C 2F 03 5F 53  ...a.D1B8..\/._S
    0E60: 42 5F 53 30 44 31 44 31 42 38 0A 0F A0 1B 93 61  B_S0D1D1B8.....a
    0E70: 0D 44 32 41 30 00 86 5C 2F 03 5F 53 42 5F 53 30  .D2A0..\/._SB_S0
    0E80: 44 32 44 32 41 30 0A 0F A0 1B 93 61 0D 44 32 41  D2D2A0.....a.D2A
    0E90: 31 00 86 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  1..\/._SB_S0D2D2
    0EA0: 41 31 0A 0F A0 1B 93 61 0D 44 32 41 32 00 86 5C  A1.....a.D2A2..\
    0EB0: 2F 03 5F 53 42 5F 53 30 44 32 44 32 41 32 0A 0F  /._SB_S0D2D2A2..
    0EC0: A0 1B 93 61 0D 44 32 41 33 00 86 5C 2F 03 5F 53  ...a.D2A3..\/._S
    0ED0: 42 5F 53 30 44 32 44 32 41 33 0A 0F A0 1B 93 61  B_S0D2D2A3.....a
    0EE0: 0D 44 32 41 34 00 86 5C 2F 03 5F 53 42 5F 53 30  .D2A4..\/._SB_S0
    0EF0: 44 32 44 32 41 34 0A 0F A0 1B 93 61 0D 44 32 41  D2D2A4.....a.D2A
    0F00: 35 00 86 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  5..\/._SB_S0D2D2
    0F10: 41 35 0A 0F A0 1B 93 61 0D 44 32 41 36 00 86 5C  A5.....a.D2A6..\
    0F20: 2F 03 5F 53 42 5F 53 30 44 32 44 32 41 36 0A 0F  /._SB_S0D2D2A6..
    0F30: A0 1B 93 61 0D 44 32 41 37 00 86 5C 2F 03 5F 53  ...a.D2A7..\/._S
    0F40: 42 5F 53 30 44 32 44 32 41 37 0A 0F A0 1B 93 61  B_S0D2D2A7.....a
    0F50: 0D 44 32 41 38 00 86 5C 2F 03 5F 53 42 5F 53 30  .D2A8..\/._SB_S0
    0F60: 44 32 44 32 41 38 0A 0F A0 1B 93 61 0D 44 32 42  D2D2A8.....a.D2B
    0F70: 30 00 86 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  0..\/._SB_S0D2D2
    0F80: 42 30 0A 0F A0 1B 93 61 0D 44 32 42 31 00 86 5C  B0.....a.D2B1..\
    0F90: 2F 03 5F 53 42 5F 53 30 44 32 44 32 42 31 0A 0F  /._SB_S0D2D2B1..
    0FA0: A0 1B 93 61 0D 44 32 42 32 00 86 5C 2F 03 5F 53  ...a.D2B2..\/._S
    0FB0: 42 5F 53 30 44 32 44 32 42 32 0A 0F A0 1B 93 61  B_S0D2D2B2.....a
    0FC0: 0D 44 32 42 33 00 86 5C 2F 03 5F 53 42 5F 53 30  .D2B3..\/._SB_S0
    0FD0: 44 32 44 32 42 33 0A 0F A0 1B 93 61 0D 44 32 42  D2D2B3.....a.D2B
    0FE0: 34 00 86 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  4..\/._SB_S0D2D2
    0FF0: 42 34 0A 0F A0 1B 93 61 0D 44 32 42 35 00 86 5C  B4.....a.D2B5..\
    1000: 2F 03 5F 53 42 5F 53 30 44 32 44 32 42 35 0A 0F  /._SB_S0D2D2B5..
    1010: A0 1B 93 61 0D 44 32 42 36 00 86 5C 2F 03 5F 53  ...a.D2B6..\/._S
    1020: 42 5F 53 30 44 32 44 32 42 36 0A 0F A0 1B 93 61  B_S0D2D2B6.....a
    1030: 0D 44 32 42 37 00 86 5C 2F 03 5F 53 42 5F 53 30  .D2B7..\/._SB_S0
    1040: 44 32 44 32 42 37 0A 0F A0 1B 93 61 0D 44 32 42  D2D2B7.....a.D2B
    1050: 38 00 86 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  8..\/._SB_S0D2D2
    1060: 42 38 0A 0F A0 1B 93 61 0D 44 33 41 30 00 86 5C  B8.....a.D3A0..\
    1070: 2F 03 5F 53 42 5F 50 43 49 30 44 33 41 30 0A 0F  /._SB_PCI0D3A0..
    1080: A0 1B 93 61 0D 44 33 41 31 00 86 5C 2F 03 5F 53  ...a.D3A1..\/._S
    1090: 42 5F 50 43 49 30 44 33 41 31 0A 0F A0 1B 93 61  B_PCI0D3A1.....a
    10A0: 0D 44 33 41 32 00 86 5C 2F 03 5F 53 42 5F 50 43  .D3A2..\/._SB_PC
    10B0: 49 30 44 33 41 32 0A 0F A0 1B 93 61 0D 44 33 41  I0D3A2.....a.D3A
    10C0: 33 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  3..\/._SB_PCI0D3
    10D0: 41 33 0A 0F A0 1B 93 61 0D 44 33 41 34 00 86 5C  A3.....a.D3A4..\
    10E0: 2F 03 5F 53 42 5F 50 43 49 30 44 33 41 34 0A 0F  /._SB_PCI0D3A4..
    10F0: A0 1B 93 61 0D 44 33 41 35 00 86 5C 2F 03 5F 53  ...a.D3A5..\/._S
    1100: 42 5F 50 43 49 30 44 33 41 35 0A 0F A0 1B 93 61  B_PCI0D3A5.....a
    1110: 0D 44 33 41 36 00 86 5C 2F 03 5F 53 42 5F 50 43  .D3A6..\/._SB_PC
    1120: 49 30 44 33 41 36 0A 0F A0 1B 93 61 0D 44 33 41  I0D3A6.....a.D3A
    1130: 37 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  7..\/._SB_PCI0D3
    1140: 41 37 0A 0F A0 1B 93 61 0D 44 33 41 38 00 86 5C  A7.....a.D3A8..\
    1150: 2F 03 5F 53 42 5F 50 43 49 30 44 33 41 38 0A 0F  /._SB_PCI0D3A8..
    1160: A0 1B 93 61 0D 44 33 42 30 00 86 5C 2F 03 5F 53  ...a.D3B0..\/._S
    1170: 42 5F 50 43 49 30 44 33 42 30 0A 0F A0 1B 93 61  B_PCI0D3B0.....a
    1180: 0D 44 33 42 31 00 86 5C 2F 03 5F 53 42 5F 50 43  .D3B1..\/._SB_PC
    1190: 49 30 44 33 42 31 0A 0F A0 1B 93 61 0D 44 33 42  I0D3B1.....a.D3B
    11A0: 32 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  2..\/._SB_PCI0D3
    11B0: 42 32 0A 0F A0 1B 93 61 0D 44 33 42 33 00 86 5C  B2.....a.D3B3..\
    11C0: 2F 03 5F 53 42 5F 50 43 49 30 44 33 42 33 0A 0F  /._SB_PCI0D3B3..
    11D0: A0 1B 93 61 0D 44 33 42 34 00 86 5C 2F 03 5F 53  ...a.D3B4..\/._S
    11E0: 42 5F 50 43 49 30 44 33 42 34 0A 0F A0 1B 93 61  B_PCI0D3B4.....a
    11F0: 0D 44 33 42 35 00 86 5C 2F 03 5F 53 42 5F 50 43  .D3B5..\/._SB_PC
    1200: 49 30 44 33 42 35 0A 0F A0 1B 93 61 0D 44 33 42  I0D3B5.....a.D3B
    1210: 36 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  6..\/._SB_PCI0D3
    1220: 42 36 0A 0F A0 1B 93 61 0D 44 33 42 37 00 86 5C  B6.....a.D3B7..\
    1230: 2F 03 5F 53 42 5F 50 43 49 30 44 33 42 37 0A 0F  /._SB_PCI0D3B7..
    1240: A0 1B 93 61 0D 44 33 42 38 00 86 5C 2F 03 5F 53  ...a.D3B8..\/._S
    1250: 42 5F 50 43 49 30 44 33 42 38 0A 0F A0 1B 93 61  B_PCI0D3B8.....a
    1260: 0D 44 34 41 30 00 86 5C 2F 03 5F 53 42 5F 53 31  .D4A0..\/._SB_S1
    1270: 44 30 44 34 41 30 0A 0F A0 1B 93 61 0D 44 34 41  D0D4A0.....a.D4A
    1280: 31 00 86 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  1..\/._SB_S1D0D4
    1290: 41 31 0A 0F A0 1B 93 61 0D 44 34 41 32 00 86 5C  A1.....a.D4A2..\
    12A0: 2F 03 5F 53 42 5F 53 31 44 30 44 34 41 32 0A 0F  /._SB_S1D0D4A2..
    12B0: A0 1B 93 61 0D 44 34 41 33 00 86 5C 2F 03 5F 53  ...a.D4A3..\/._S
    12C0: 42 5F 53 31 44 30 44 34 41 33 0A 0F A0 1B 93 61  B_S1D0D4A3.....a
    12D0: 0D 44 34 41 34 00 86 5C 2F 03 5F 53 42 5F 53 31  .D4A4..\/._SB_S1
    12E0: 44 30 44 34 41 34 0A 0F A0 1B 93 61 0D 44 34 41  D0D4A4.....a.D4A
    12F0: 35 00 86 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  5..\/._SB_S1D0D4
    1300: 41 35 0A 0F A0 1B 93 61 0D 44 34 41 36 00 86 5C  A5.....a.D4A6..\
    1310: 2F 03 5F 53 42 5F 53 31 44 30 44 34 41 36 0A 0F  /._SB_S1D0D4A6..
    1320: A0 1B 93 61 0D 44 34 41 37 00 86 5C 2F 03 5F 53  ...a.D4A7..\/._S
    1330: 42 5F 53 31 44 30 44 34 41 37 0A 0F A0 1B 93 61  B_S1D0D4A7.....a
    1340: 0D 44 34 41 38 00 86 5C 2F 03 5F 53 42 5F 53 31  .D4A8..\/._SB_S1
    1350: 44 30 44 34 41 38 0A 0F A0 1B 93 61 0D 44 34 42  D0D4A8.....a.D4B
    1360: 30 00 86 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  0..\/._SB_S1D0D4
    1370: 42 30 0A 0F A0 1B 93 61 0D 44 34 42 31 00 86 5C  B0.....a.D4B1..\
    1380: 2F 03 5F 53 42 5F 53 31 44 30 44 34 42 31 0A 0F  /._SB_S1D0D4B1..
    1390: A0 1B 93 61 0D 44 34 42 32 00 86 5C 2F 03 5F 53  ...a.D4B2..\/._S
    13A0: 42 5F 53 31 44 30 44 34 42 32 0A 0F A0 1B 93 61  B_S1D0D4B2.....a
    13B0: 0D 44 34 42 33 00 86 5C 2F 03 5F 53 42 5F 53 31  .D4B3..\/._SB_S1
    13C0: 44 30 44 34 42 33 0A 0F A0 1B 93 61 0D 44 34 42  D0D4B3.....a.D4B
    13D0: 34 00 86 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  4..\/._SB_S1D0D4
    13E0: 42 34 0A 0F A0 1B 93 61 0D 44 34 42 35 00 86 5C  B4.....a.D4B5..\
    13F0: 2F 03 5F 53 42 5F 53 31 44 30 44 34 42 35 0A 0F  /._SB_S1D0D4B5..
    1400: A0 1B 93 61 0D 44 34 42 36 00 86 5C 2F 03 5F 53  ...a.D4B6..\/._S
    1410: 42 5F 53 31 44 30 44 34 42 36 0A 0F A0 1B 93 61  B_S1D0D4B6.....a
    1420: 0D 44 34 42 37 00 86 5C 2F 03 5F 53 42 5F 53 31  .D4B7..\/._SB_S1
    1430: 44 30 44 34 42 37 0A 0F A0 1B 93 61 0D 44 34 42  D0D4B7.....a.D4B
    1440: 38 00 86 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  8..\/._SB_S1D0D4
    1450: 42 38 0A 0F A0 1B 93 61 0D 44 35 41 30 00 86 5C  B8.....a.D5A0..\
    1460: 2F 03 5F 53 42 5F 53 31 44 31 44 35 41 30 0A 0F  /._SB_S1D1D5A0..
    1470: A0 1B 93 61 0D 44 35 41 31 00 86 5C 2F 03 5F 53  ...a.D5A1..\/._S
    1480: 42 5F 53 31 44 31 44 35 41 31 0A 0F A0 1B 93 61  B_S1D1D5A1.....a
    1490: 0D 44 35 41 32 00 86 5C 2F 03 5F 53 42 5F 53 31  .D5A2..\/._SB_S1
    14A0: 44 31 44 35 41 32 0A 0F A0 1B 93 61 0D 44 35 41  D1D5A2.....a.D5A
    14B0: 33 00 86 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  3..\/._SB_S1D1D5
    14C0: 41 33 0A 0F A0 1B 93 61 0D 44 35 41 34 00 86 5C  A3.....a.D5A4..\
    14D0: 2F 03 5F 53 42 5F 53 31 44 31 44 35 41 34 0A 0F  /._SB_S1D1D5A4..
    14E0: A0 1B 93 61 0D 44 35 41 35 00 86 5C 2F 03 5F 53  ...a.D5A5..\/._S
    14F0: 42 5F 53 31 44 31 44 35 41 35 0A 0F A0 1B 93 61  B_S1D1D5A5.....a
    1500: 0D 44 35 41 36 00 86 5C 2F 03 5F 53 42 5F 53 31  .D5A6..\/._SB_S1
    1510: 44 31 44 35 41 36 0A 0F A0 1B 93 61 0D 44 35 41  D1D5A6.....a.D5A
    1520: 37 00 86 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  7..\/._SB_S1D1D5
    1530: 41 37 0A 0F A0 1B 93 61 0D 44 35 41 38 00 86 5C  A7.....a.D5A8..\
    1540: 2F 03 5F 53 42 5F 53 31 44 31 44 35 41 38 0A 0F  /._SB_S1D1D5A8..
    1550: A0 1B 93 61 0D 44 35 42 30 00 86 5C 2F 03 5F 53  ...a.D5B0..\/._S
    1560: 42 5F 53 31 44 31 44 35 42 30 0A 0F A0 1B 93 61  B_S1D1D5B0.....a
    1570: 0D 44 35 42 31 00 86 5C 2F 03 5F 53 42 5F 53 31  .D5B1..\/._SB_S1
    1580: 44 31 44 35 42 31 0A 0F A0 1B 93 61 0D 44 35 42  D1D5B1.....a.D5B
    1590: 32 00 86 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  2..\/._SB_S1D1D5
    15A0: 42 32 0A 0F A0 1B 93 61 0D 44 35 42 33 00 86 5C  B2.....a.D5B3..\
    15B0: 2F 03 5F 53 42 5F 53 31 44 31 44 35 42 33 0A 0F  /._SB_S1D1D5B3..
    15C0: A0 1B 93 61 0D 44 35 42 34 00 86 5C 2F 03 5F 53  ...a.D5B4..\/._S
    15D0: 42 5F 53 31 44 31 44 35 42 34 0A 0F A0 1B 93 61  B_S1D1D5B4.....a
    15E0: 0D 44 35 42 35 00 86 5C 2F 03 5F 53 42 5F 53 31  .D5B5..\/._SB_S1
    15F0: 44 31 44 35 42 35 0A 0F A0 1B 93 61 0D 44 35 42  D1D5B5.....a.D5B
    1600: 36 00 86 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  6..\/._SB_S1D1D5
    1610: 42 36 0A 0F A0 1B 93 61 0D 44 35 42 37 00 86 5C  B6.....a.D5B7..\
    1620: 2F 03 5F 53 42 5F 53 31 44 31 44 35 42 37 0A 0F  /._SB_S1D1D5B7..
    1630: A0 1B 93 61 0D 44 35 42 38 00 86 5C 2F 03 5F 53  ...a.D5B8..\/._S
    1640: 42 5F 53 31 44 31 44 35 42 38 0A 0F A0 1B 93 61  B_S1D1D5B8.....a
    1650: 0D 44 36 41 30 00 86 5C 2F 03 5F 53 42 5F 53 31  .D6A0..\/._SB_S1
    1660: 44 32 44 36 41 30 0A 0F A0 1B 93 61 0D 44 36 41  D2D6A0.....a.D6A
    1670: 31 00 86 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  1..\/._SB_S1D2D6
    1680: 41 31 0A 0F A0 1B 93 61 0D 44 36 41 32 00 86 5C  A1.....a.D6A2..\
    1690: 2F 03 5F 53 42 5F 53 31 44 32 44 36 41 32 0A 0F  /._SB_S1D2D6A2..
    16A0: A0 1B 93 61 0D 44 36 41 33 00 86 5C 2F 03 5F 53  ...a.D6A3..\/._S
    16B0: 42 5F 53 31 44 32 44 36 41 33 0A 0F A0 1B 93 61  B_S1D2D6A3.....a
    16C0: 0D 44 36 41 34 00 86 5C 2F 03 5F 53 42 5F 53 31  .D6A4..\/._SB_S1
    16D0: 44 32 44 36 41 34 0A 0F A0 1B 93 61 0D 44 36 41  D2D6A4.....a.D6A
    16E0: 35 00 86 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  5..\/._SB_S1D2D6
    16F0: 41 35 0A 0F A0 1B 93 61 0D 44 36 41 36 00 86 5C  A5.....a.D6A6..\
    1700: 2F 03 5F 53 42 5F 53 31 44 32 44 36 41 36 0A 0F  /._SB_S1D2D6A6..
    1710: A0 1B 93 61 0D 44 36 41 37 00 86 5C 2F 03 5F 53  ...a.D6A7..\/._S
    1720: 42 5F 53 31 44 32 44 36 41 37 0A 0F A0 1B 93 61  B_S1D2D6A7.....a
    1730: 0D 44 36 41 38 00 86 5C 2F 03 5F 53 42 5F 53 31  .D6A8..\/._SB_S1
    1740: 44 32 44 36 41 38 0A 0F A0 1B 93 61 0D 44 36 42  D2D6A8.....a.D6B
    1750: 30 00 86 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  0..\/._SB_S1D2D6
    1760: 42 30 0A 0F A0 1B 93 61 0D 44 36 42 31 00 86 5C  B0.....a.D6B1..\
    1770: 2F 03 5F 53 42 5F 53 31 44 32 44 36 42 31 0A 0F  /._SB_S1D2D6B1..
    1780: A0 1B 93 61 0D 44 36 42 32 00 86 5C 2F 03 5F 53  ...a.D6B2..\/._S
    1790: 42 5F 53 31 44 32 44 36 42 32 0A 0F A0 1B 93 61  B_S1D2D6B2.....a
    17A0: 0D 44 36 42 33 00 86 5C 2F 03 5F 53 42 5F 53 31  .D6B3..\/._SB_S1
    17B0: 44 32 44 36 42 33 0A 0F A0 1B 93 61 0D 44 36 42  D2D6B3.....a.D6B
    17C0: 34 00 86 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  4..\/._SB_S1D2D6
    17D0: 42 34 0A 0F A0 1B 93 61 0D 44 36 42 35 00 86 5C  B4.....a.D6B5..\
    17E0: 2F 03 5F 53 42 5F 53 31 44 32 44 36 42 35 0A 0F  /._SB_S1D2D6B5..
    17F0: A0 1B 93 61 0D 44 36 42 36 00 86 5C 2F 03 5F 53  ...a.D6B6..\/._S
    1800: 42 5F 53 31 44 32 44 36 42 36 0A 0F A0 1B 93 61  B_S1D2D6B6.....a
    1810: 0D 44 36 42 37 00 86 5C 2F 03 5F 53 42 5F 53 31  .D6B7..\/._SB_S1
    1820: 44 32 44 36 42 37 0A 0F A0 1B 93 61 0D 44 36 42  D2D6B7.....a.D6B
    1830: 38 00 86 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  8..\/._SB_S1D2D6
    1840: 42 38 0A 0F A0 1B 93 61 0D 44 37 41 30 00 86 5C  B8.....a.D7A0..\
    1850: 2F 03 5F 53 42 5F 53 31 44 33 44 37 41 30 0A 0F  /._SB_S1D3D7A0..
    1860: A0 1B 93 61 0D 44 37 41 31 00 86 5C 2F 03 5F 53  ...a.D7A1..\/._S
    1870: 42 5F 53 31 44 33 44 37 41 31 0A 0F A0 1B 93 61  B_S1D3D7A1.....a
    1880: 0D 44 37 41 32 00 86 5C 2F 03 5F 53 42 5F 53 31  .D7A2..\/._SB_S1
    1890: 44 33 44 37 41 32 0A 0F A0 1B 93 61 0D 44 37 41  D3D7A2.....a.D7A
    18A0: 33 00 86 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  3..\/._SB_S1D3D7
    18B0: 41 33 0A 0F A0 1B 93 61 0D 44 37 41 34 00 86 5C  A3.....a.D7A4..\
    18C0: 2F 03 5F 53 42 5F 53 31 44 33 44 37 41 34 0A 0F  /._SB_S1D3D7A4..
    18D0: A0 1B 93 61 0D 44 37 41 35 00 86 5C 2F 03 5F 53  ...a.D7A5..\/._S
    18E0: 42 5F 53 31 44 33 44 37 41 35 0A 0F A0 1B 93 61  B_S1D3D7A5.....a
    18F0: 0D 44 37 41 36 00 86 5C 2F 03 5F 53 42 5F 53 31  .D7A6..\/._SB_S1
    1900: 44 33 44 37 41 36 0A 0F A0 1B 93 61 0D 44 37 41  D3D7A6.....a.D7A
    1910: 37 00 86 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  7..\/._SB_S1D3D7
    1920: 41 37 0A 0F A0 1B 93 61 0D 44 37 41 38 00 86 5C  A7.....a.D7A8..\
    1930: 2F 03 5F 53 42 5F 53 31 44 33 44 37 41 38 0A 0F  /._SB_S1D3D7A8..
    1940: A0 1B 93 61 0D 44 37 42 30 00 86 5C 2F 03 5F 53  ...a.D7B0..\/._S
    1950: 42 5F 53 31 44 33 44 37 42 30 0A 0F A0 1B 93 61  B_S1D3D7B0.....a
    1960: 0D 44 37 42 31 00 86 5C 2F 03 5F 53 42 5F 53 31  .D7B1..\/._SB_S1
    1970: 44 33 44 37 42 31 0A 0F A0 1B 93 61 0D 44 37 42  D3D7B1.....a.D7B
    1980: 32 00 86 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  2..\/._SB_S1D3D7
    1990: 42 32 0A 0F A0 1B 93 61 0D 44 37 42 33 00 86 5C  B2.....a.D7B3..\
    19A0: 2F 03 5F 53 42 5F 53 31 44 33 44 37 42 33 0A 0F  /._SB_S1D3D7B3..
    19B0: A0 1B 93 61 0D 44 37 42 34 00 86 5C 2F 03 5F 53  ...a.D7B4..\/._S
    19C0: 42 5F 53 31 44 33 44 37 42 34 0A 0F A0 1B 93 61  B_S1D3D7B4.....a
    19D0: 0D 44 37 42 35 00 86 5C 2F 03 5F 53 42 5F 53 31  .D7B5..\/._SB_S1
    19E0: 44 33 44 37 42 35 0A 0F A0 1B 93 61 0D 44 37 42  D3D7B5.....a.D7B
    19F0: 36 00 86 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  6..\/._SB_S1D3D7
    1A00: 42 36 0A 0F A0 1B 93 61 0D 44 37 42 37 00 86 5C  B6.....a.D7B7..\
    1A10: 2F 03 5F 53 42 5F 53 31 44 33 44 37 42 37 0A 0F  /._SB_S1D3D7B7..
    1A20: A0 1B 93 61 0D 44 37 42 38 00 86 5C 2F 03 5F 53  ...a.D7B8..\/._S
    1A30: 42 5F 53 31 44 33 44 37 42 38 0A 0F 70 00 44 52  B_S1D3D7B8..p.DR
    1A40: 50 4E 10 27 5C 5F 53 42 5F 5B 82 1F 41 45 52 52  PN.'\_SB_[..AERR
    1A50: 08 5F 48 49 44 0C 41 D0 0C 33 08 5F 55 49 44 00  ._HID.A..3._UID.
    1A60: 14 09 5F 53 54 41 00 A4 0A 0F 5B 80 52 41 53 44  .._STA....[.RASD
    1A70: 00 0C 00 70 2D A8 0A 10 5B 81 1A 52 41 53 44 01  ...p-...[..RASD.
    1A80: 50 53 49 47 20 50 57 4F 43 20 50 4F 53 53 20 50  PSIG PWOC POSS P
    1A90: 4F 53 43 20 5B 80 4F 53 48 50 00 0C 00 60 2D A8  OSC [.OSHP...`-.
    1AA0: 0A 02 5B 81 10 4F 53 48 50 01 48 50 48 4D 08 41  ..[..OSHP.HPHM.A
    1AB0: 45 52 4D 08 5B 80 53 4D 42 53 00 0C 00 00 D8 FE  ERM.[.SMBS......
    1AC0: 0C 00 00 80 00 5B 81 0F 53 4D 42 53 01 00 80 B5  .....[..SMBS....
    1AD0: 01 53 4D 49 50 08 5B 80 53 57 53 4D 01 53 4D 49  .SMIP.[.SWSM.SMI
    1AE0: 50 0A 02 5B 81 0B 53 57 53 4D 00 53 4D 49 52 10  P..[..SWSM.SMIR.
    1AF0: 5B 80 45 44 53 4D 00 0C 00 50 2D A8 0A 0E 5B 81  [.EDSM...P-...[.
    1B00: 29 45 44 53 4D 01 44 53 4D 49 08 44 52 50 42 08  )EDSM.DSMI.DRPB.
    1B10: 44 52 50 41 20 44 49 44 58 08 44 46 49 4E 08 44  DRPA DIDX.DFIN.D
    1B20: 4F 55 54 10 44 52 50 4E 20 5B 80 45 4F 53 54 00  OUT.DRPN [.EOST.
    1B30: 0C 00 40 2D A8 0A 0A 5B 81 1A 45 4F 53 54 01 4F  ..@-...[..EOST.O
    1B40: 53 4D 49 08 4F 52 50 42 08 4F 52 50 41 20 4F 41  SMI.ORPB.ORPA OA
    1B50: 47 31 20                                         G1 

MCFG @ 0x0000000000000000
    0000: 4D 43 46 47 3C 00 00 00 01 2E 41 4D 44 00 41 20  MCFG<.....AMD.A 
    0010: 41 20 4D 20 49 00 00 00 01 00 00 00 4D 53 46 54  A M I.......MSFT
    0020: 13 00 01 00 00 00 00 00 00 00 00 00 00 00 00 E0  ................
    0030: 00 00 00 00 00 00 00 FF 00 00 00 00              ............

APIC @ 0x0000000000000000
    0000: 41 50 49 43 7C 03 00 00 04 3F 41 4D 44 20 20 20  APIC|....?AMD   
    0010: 41 20 4D 20 49 20 00 00 01 00 00 00 41 4D 49 20  A M I ......AMI 
    0020: 13 00 01 00 00 00 E0 FE 00 00 00 00 01 0C 80 00  ................
    0030: 00 00 C0 FE 00 00 00 00 01 0C 81 00 00 00 18 DF  ................
    0040: 78 00 00 00 01 0C 82 00 00 00 18 D3 58 00 00 00  x...........X...
    0050: 01 0C 83 00 00 00 18 F7 18 00 00 00 01 0C 84 00  ................
    0060: 00 00 18 C9 38 00 00 00 09 10 00 00 00 00 00 00  ....8...........
    0070: 01 00 00 00 00 00 00 00 09 10 00 00 02 00 00 00  ................
    0080: 01 00 00 00 01 00 00 00 09 10 00 00 04 00 00 00  ................
    0090: 01 00 00 00 02 00 00 00 09 10 00 00 06 00 00 00  ................
    00A0: 01 00 00 00 03 00 00 00 09 10 00 00 08 00 00 00  ................
    00B0: 01 00 00 00 04 00 00 00 09 10 00 00 0A 00 00 00  ................
    00C0: 01 00 00 00 05 00 00 00 09 10 00 00 0C 00 00 00  ................
    00D0: 01 00 00 00 06 00 00 00 09 10 00 00 0E 00 00 00  ................
    00E0: 01 00 00 00 07 00 00 00 09 10 00 00 10 00 00 00  ................
    00F0: 01 00 00 00 08 00 00 00 09 10 00 00 12 00 00 00  ................
    0100: 01 00 00 00 09 00 00 00 09 10 00 00 14 00 00 00  ................
    0110: 01 00 00 00 0A 00 00 00 09 10 00 00 16 00 00 00  ................
    0120: 01 00 00 00 0B 00 00 00 09 10 00 00 18 00 00 00  ................
    0130: 01 00 00 00 0C 00 00 00 09 10 00 00 1A 00 00 00  ................
    0140: 01 00 00 00 0D 00 00 00 09 10 00 00 1C 00 00 00  ................
    0150: 01 00 00 00 0E 00 00 00 09 10 00 00 1E 00 00 00  ................
    0160: 01 00 00 00 0F 00 00 00 09 10 00 00 20 00 00 00  ............ ...
    0170: 01 00 00 00 10 00 00 00 09 10 00 00 22 00 00 00  ............"...
    0180: 01 00 00 00 11 00 00 00 09 10 00 00 24 00 00 00  ............$...
    0190: 01 00 00 00 12 00 00 00 09 10 00 00 26 00 00 00  ............&...
    01A0: 01 00 00 00 13 00 00 00 09 10 00 00 28 00 00 00  ............(...
    01B0: 01 00 00 00 14 00 00 00 09 10 00 00 2A 00 00 00  ............*...
    01C0: 01 00 00 00 15 00 00 00 09 10 00 00 2C 00 00 00  ............,...
    01D0: 01 00 00 00 16 00 00 00 09 10 00 00 2E 00 00 00  ................
    01E0: 01 00 00 00 17 00 00 00 09 10 00 00 30 00 00 00  ............0...
    01F0: 01 00 00 00 18 00 00 00 09 10 00 00 32 00 00 00  ............2...
    0200: 01 00 00 00 19 00 00 00 09 10 00 00 34 00 00 00  ............4...
    0210: 01 00 00 00 1A 00 00 00 09 10 00 00 36 00 00 00  ............6...
    0220: 01 00 00 00 1B 00 00 00 09 10 00 00 38 00 00 00  ............8...
    0230: 01 00 00 00 1C 00 00 00 09 10 00 00 3A 00 00 00  ............:...
    0240: 01 00 00 00 1D 00 00 00 09 10 00 00 3C 00 00 00  ............<...
    0250: 01 00 00 00 1E 00 00 00 09 10 00 00 3E 00 00 00  ............>...
    0260: 01 00 00 00 1F 00 00 00 09 10 00 00 40 00 00 00  ............@...
    0270: 01 00 00 00 20 00 00 00 09 10 00 00 42 00 00 00  .... .......B...
    0280: 01 00 00 00 21 00 00 00 09 10 00 00 44 00 00 00  ....!.......D...
    0290: 01 00 00 00 22 00 00 00 09 10 00 00 46 00 00 00  ....".......F...
    02A0: 01 00 00 00 23 00 00 00 09 10 00 00 48 00 00 00  ....#.......H...
    02B0: 01 00 00 00 24 00 00 00 09 10 00 00 4A 00 00 00  ....$.......J...
    02C0: 01 00 00 00 25 00 00 00 09 10 00 00 4C 00 00 00  ....%.......L...
    02D0: 01 00 00 00 26 00 00 00 09 10 00 00 4E 00 00 00  ....&.......N...
    02E0: 01 00 00 00 27 00 00 00 09 10 00 00 50 00 00 00  ....'.......P...
    02F0: 01 00 00 00 28 00 00 00 09 10 00 00 52 00 00 00  ....(.......R...
    0300: 01 00 00 00 29 00 00 00 09 10 00 00 54 00 00 00  ....).......T...
    0310: 01 00 00 00 2A 00 00 00 09 10 00 00 56 00 00 00  ....*.......V...
    0320: 01 00 00 00 2B 00 00 00 09 10 00 00 58 00 00 00  ....+.......X...
    0330: 01 00 00 00 2C 00 00 00 09 10 00 00 5A 00 00 00  ....,.......Z...
    0340: 01 00 00 00 2D 00 00 00 09 10 00 00 5C 00 00 00  ....-.......\...
    0350: 01 00 00 00 2E 00 00 00 09 10 00 00 5E 00 00 00  ............^...
    0360: 01 00 00 00 2F 00 00 00 02 0A 00 00 02 00 00 00  ..../...........
    0370: 00 00 02 0A 00 09 09 00 00 00 0F 00              ............

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 67 00 00 00 02 FE 41 4D 44 00 00 00  SSDTg.....AMD...
    0010: 43 50 4D 44 53 4D 00 00 01 00 00 00 49 4E 54 4C  CPMDSM......INTL
    0020: 31 03 23 20 5B 80 43 44 49 44 00 0C 00 B0 45 A9  1.# [.CDID....E.
    0030: 0A 40 5B 81 14 43 44 49 44 01 4D 41 53 54 40 04  .@[..CDID.MAST@.
    0040: 43 46 4C 47 08 00 48 1B 5B 80 43 44 53 54 00 4D  CFLG..H.[.CDST.M
    0050: 41 53 54 0B 00 20 5B 81 0F 43 44 53 54 01 00 00  AST.. [..CDST...
    0060: 43 54 41 47 80 00 0C                             CTAG...

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 4E 04 00 00 02 DF 41 4D 44 00 41 6D  SSDTN.....AMD.Am
    0010: 41 6D 64 54 61 62 6C 65 01 00 00 00 49 4E 54 4C  AmdTable....INTL
    0020: 31 03 23 20 10 49 42 5C 5F 53 42 5F 08 54 47 50  1.# .IB\_SB_.TGP
    0030: 49 0A 0F 5B 82 47 05 50 54 49 4F 08 5F 48 49 44  I..[.G.PTIO._HID
    0040: 0D 41 4D 44 49 46 30 33 31 00 08 5F 43 49 44 0D  .AMDIF031.._CID.
    0050: 41 4D 44 49 46 30 33 31 00 08 5F 55 49 44 00 14  AMDIF031.._UID..
    0060: 22 5F 43 52 53 00 08 52 42 55 46 11 11 0A 0E 86  "_CRS..RBUF.....
    0070: 09 00 01 00 00 C4 FE 00 10 00 00 79 00 A4 52 42  ...........y..RB
    0080: 55 46 14 09 5F 53 54 41 00 A4 0A 0F 5B 82 40 3C  UF.._STA....[.@<
    0090: 41 53 4D 54 08 5F 41 44 52 00 08 5F 48 49 44 0D  ASMT._ADR.._HID.
    00A0: 41 53 4D 54 30 30 30 31 00 08 5F 43 49 44 0D 41  ASMT0001.._CID.A
    00B0: 53 4D 54 30 30 30 31 00 08 5F 55 49 44 00 14 49  SMT0001.._UID..I
    00C0: 37 5F 43 52 53 00 08 52 42 55 46 11 47 36 0B 62  7_CRS..RBUF.G6.b
    00D0: 03 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    00E0: 00 00 19 00 23 00 01 00 00 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    00F0: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    0100: 00 00 00 17 00 00 19 00 23 00 01 00 01 00 5C 5F  ........#.....\_
    0110: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    0120: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    0130: 02 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    0140: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    0150: 23 00 01 00 03 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    0160: 01 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    0170: 00 00 19 00 23 00 01 00 04 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    0180: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    0190: 00 00 00 17 00 00 19 00 23 00 01 00 05 00 5C 5F  ........#.....\_
    01A0: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    01B0: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    01C0: 06 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    01D0: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    01E0: 23 00 01 00 07 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    01F0: 01 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    0200: 00 00 19 00 23 00 01 00 08 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    0210: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    0220: 00 00 00 17 00 00 19 00 23 00 01 00 09 00 5C 5F  ........#.....\_
    0230: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    0240: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    0250: 0A 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    0260: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    0270: 23 00 01 00 0B 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    0280: 01 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    0290: 00 00 19 00 23 00 01 00 0C 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    02A0: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    02B0: 00 00 00 17 00 00 19 00 23 00 01 00 0D 00 5C 5F  ........#.....\_
    02C0: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    02D0: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    02E0: 0E 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    02F0: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    0300: 23 00 01 00 0F 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    0310: 01 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    0320: 00 00 19 00 23 00 01 00 10 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    0330: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    0340: 00 00 00 17 00 00 19 00 23 00 01 00 11 00 5C 5F  ........#.....\_
    0350: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    0360: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    0370: 12 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    0380: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    0390: 23 00 01 00 13 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    03A0: 01 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    03B0: 00 00 19 00 23 00 01 00 14 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    03C0: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    03D0: 00 00 00 17 00 00 19 00 23 00 01 00 15 00 5C 5F  ........#.....\_
    03E0: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    03F0: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    0400: 16 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    0410: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    0420: 23 00 01 00 17 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    0430: 01 79 00 A4 52 42 55 46 14 15 5F 53 54 41 00 A0  .y..RBUF.._STA..
    0440: 0A 93 54 47 50 49 01 A4 0A 0F A1 03 A4 00        ..TGPI........

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 0E A4 00 00 02 C0 41 4D 44 00 00 00  SSDT......AMD...
    0010: 41 4D 44 20 43 50 55 00 01 00 00 00 41 4D 44 20  AMD CPU.....AMD 
    0020: 01 00 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  .....G5\/._SB_PL
    0030: 54 46 43 30 30 30 08 5F 50 43 54 12 2C 02 11 14  TFC000._PCT.,...
    0040: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    0050: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    0060: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    0070: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    0080: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    0090: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    00A0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    00B0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    00C0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    00D0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    00E0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    00F0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0100: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    0110: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0120: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    0130: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    0140: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    0150: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0160: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    0170: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    0180: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    0190: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    01A0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    01B0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    01C0: 0A 05 0A 00 0C 00 00 00 00 0C FE 00 00 00 0C 02  ................
    01D0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    01E0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    01F0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    0200: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    0210: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    0220: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    0230: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    0240: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    0250: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    0260: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    0270: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    0280: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    0290: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    02A0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    02B0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    02C0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    02D0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    02E0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    02F0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    0300: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    0310: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    0320: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    0330: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    0340: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    0350: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    0360: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0370: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    0380: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 31 08 5F  /._SB_PLTFC001._
    0390: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    03A0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    03B0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    03C0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    03D0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    03E0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    03F0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    0400: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    0410: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    0420: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    0430: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    0440: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    0450: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0460: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0470: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    0480: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    0490: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    04A0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    04B0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    04C0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    04D0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    04E0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    04F0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0500: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    0510: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 00 00 00  SD..............
    0520: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    0530: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    0540: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    0550: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    0560: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    0570: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    0580: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    0590: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    05A0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    05B0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    05C0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    05D0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    05E0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    05F0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    0600: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    0610: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    0620: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0630: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    0640: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    0650: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    0660: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    0670: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    0680: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    0690: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    06A0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    06B0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    06C0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    06D0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    06E0: 54 46 43 30 30 32 08 5F 50 43 54 12 2C 02 11 14  TFC002._PCT.,...
    06F0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    0700: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    0710: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    0720: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    0730: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    0740: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    0750: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    0760: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    0770: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    0780: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    0790: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    07A0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    07B0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    07C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    07D0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    07E0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    07F0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    0800: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0810: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    0820: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    0830: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    0840: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    0850: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0860: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    0870: 0A 05 0A 00 0C 01 00 00 00 0C FE 00 00 00 0C 02  ................
    0880: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    0890: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    08A0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    08B0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    08C0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    08D0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    08E0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    08F0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    0900: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    0910: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    0920: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    0930: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    0940: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    0950: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    0960: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    0970: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    0980: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    0990: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    09A0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    09B0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    09C0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    09D0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    09E0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    09F0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    0A00: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    0A10: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0A20: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    0A30: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 33 08 5F  /._SB_PLTFC003._
    0A40: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    0A50: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    0A60: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    0A70: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    0A80: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    0A90: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    0AA0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    0AB0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    0AC0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    0AD0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    0AE0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    0AF0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    0B00: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0B10: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0B20: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    0B30: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    0B40: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    0B50: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    0B60: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0B70: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    0B80: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    0B90: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    0BA0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0BB0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    0BC0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 01 00 00  SD..............
    0BD0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    0BE0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    0BF0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    0C00: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    0C10: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    0C20: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    0C30: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    0C40: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    0C50: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    0C60: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    0C70: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    0C80: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    0C90: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    0CA0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    0CB0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    0CC0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    0CD0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0CE0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    0CF0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    0D00: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    0D10: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    0D20: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    0D30: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    0D40: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    0D50: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    0D60: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    0D70: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    0D80: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    0D90: 54 46 43 30 30 34 08 5F 50 43 54 12 2C 02 11 14  TFC004._PCT.,...
    0DA0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    0DB0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    0DC0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    0DD0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    0DE0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    0DF0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    0E00: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    0E10: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    0E20: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    0E30: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    0E40: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    0E50: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0E60: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    0E70: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0E80: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    0E90: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    0EA0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    0EB0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0EC0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    0ED0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    0EE0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    0EF0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    0F00: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0F10: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    0F20: 0A 05 0A 00 0C 02 00 00 00 0C FE 00 00 00 0C 02  ................
    0F30: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    0F40: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    0F50: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    0F60: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    0F70: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    0F80: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    0F90: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    0FA0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    0FB0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    0FC0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    0FD0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    0FE0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    0FF0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    1000: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    1010: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    1020: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    1030: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    1040: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    1050: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    1060: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    1070: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    1080: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    1090: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    10A0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    10B0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    10C0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    10D0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    10E0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 35 08 5F  /._SB_PLTFC005._
    10F0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    1100: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    1110: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    1120: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    1130: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    1140: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    1150: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    1160: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    1170: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    1180: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    1190: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    11A0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    11B0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    11C0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    11D0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    11E0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    11F0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    1200: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    1210: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1220: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    1230: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1240: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    1250: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1260: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    1270: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 02 00 00  SD..............
    1280: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    1290: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    12A0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    12B0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    12C0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    12D0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    12E0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    12F0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    1300: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    1310: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    1320: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    1330: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    1340: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    1350: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    1360: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    1370: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    1380: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1390: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    13A0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    13B0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    13C0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    13D0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    13E0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    13F0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    1400: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    1410: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    1420: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    1430: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    1440: 54 46 43 30 30 36 08 5F 50 43 54 12 2C 02 11 14  TFC006._PCT.,...
    1450: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    1460: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    1470: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    1480: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    1490: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    14A0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    14B0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    14C0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    14D0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    14E0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    14F0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    1500: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1510: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    1520: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1530: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    1540: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1550: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    1560: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1570: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    1580: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    1590: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    15A0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    15B0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    15C0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    15D0: 0A 05 0A 00 0C 03 00 00 00 0C FE 00 00 00 0C 02  ................
    15E0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    15F0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    1600: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    1610: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    1620: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    1630: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    1640: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    1650: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    1660: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    1670: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    1680: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    1690: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    16A0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    16B0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    16C0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    16D0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    16E0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    16F0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    1700: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    1710: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    1720: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    1730: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    1740: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    1750: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    1760: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    1770: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1780: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    1790: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 37 08 5F  /._SB_PLTFC007._
    17A0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    17B0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    17C0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    17D0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    17E0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    17F0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    1800: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    1810: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    1820: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    1830: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    1840: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    1850: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1860: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1870: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1880: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    1890: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    18A0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    18B0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    18C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    18D0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    18E0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    18F0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    1900: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1910: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    1920: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 03 00 00  SD..............
    1930: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    1940: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    1950: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    1960: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    1970: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    1980: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    1990: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    19A0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    19B0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    19C0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    19D0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    19E0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    19F0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    1A00: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    1A10: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    1A20: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    1A30: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1A40: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    1A50: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    1A60: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    1A70: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    1A80: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    1A90: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    1AA0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    1AB0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    1AC0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    1AD0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    1AE0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    1AF0: 54 46 43 30 30 38 08 5F 50 43 54 12 2C 02 11 14  TFC008._PCT.,...
    1B00: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    1B10: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    1B20: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    1B30: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    1B40: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    1B50: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    1B60: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    1B70: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    1B80: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    1B90: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    1BA0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    1BB0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1BC0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    1BD0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1BE0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    1BF0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1C00: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    1C10: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1C20: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    1C30: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    1C40: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    1C50: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    1C60: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1C70: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    1C80: 0A 05 0A 00 0C 04 00 00 00 0C FE 00 00 00 0C 02  ................
    1C90: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    1CA0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    1CB0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    1CC0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    1CD0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    1CE0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    1CF0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    1D00: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    1D10: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    1D20: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    1D30: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    1D40: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    1D50: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    1D60: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    1D70: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    1D80: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    1D90: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    1DA0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    1DB0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    1DC0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    1DD0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    1DE0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    1DF0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    1E00: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    1E10: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    1E20: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1E30: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    1E40: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 39 08 5F  /._SB_PLTFC009._
    1E50: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    1E60: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    1E70: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    1E80: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    1E90: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    1EA0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    1EB0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    1EC0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    1ED0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    1EE0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    1EF0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    1F00: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1F10: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1F20: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1F30: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    1F40: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    1F50: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    1F60: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    1F70: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1F80: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    1F90: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1FA0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    1FB0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1FC0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    1FD0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 04 00 00  SD..............
    1FE0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    1FF0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    2000: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    2010: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    2020: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    2030: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    2040: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    2050: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    2060: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    2070: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    2080: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    2090: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    20A0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    20B0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    20C0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    20D0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    20E0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    20F0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    2100: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    2110: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    2120: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    2130: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    2140: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    2150: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    2160: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    2170: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    2180: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    2190: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    21A0: 54 46 43 30 30 41 08 5F 50 43 54 12 2C 02 11 14  TFC00A._PCT.,...
    21B0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    21C0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    21D0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    21E0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    21F0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    2200: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    2210: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    2220: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    2230: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    2240: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    2250: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    2260: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2270: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    2280: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2290: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    22A0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    22B0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    22C0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    22D0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    22E0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    22F0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    2300: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    2310: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2320: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    2330: 0A 05 0A 00 0C 05 00 00 00 0C FE 00 00 00 0C 02  ................
    2340: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    2350: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    2360: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    2370: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    2380: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    2390: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    23A0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    23B0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    23C0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    23D0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    23E0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    23F0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    2400: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    2410: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    2420: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    2430: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    2440: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    2450: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    2460: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    2470: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    2480: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    2490: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    24A0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    24B0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    24C0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    24D0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    24E0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    24F0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 42 08 5F  /._SB_PLTFC00B._
    2500: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    2510: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    2520: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    2530: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    2540: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    2550: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    2560: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    2570: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    2580: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    2590: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    25A0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    25B0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    25C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    25D0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    25E0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    25F0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    2600: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    2610: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    2620: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2630: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    2640: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    2650: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    2660: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2670: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    2680: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 05 00 00  SD..............
    2690: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    26A0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    26B0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    26C0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    26D0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    26E0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    26F0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    2700: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    2710: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    2720: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    2730: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    2740: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    2750: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    2760: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    2770: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    2780: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    2790: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    27A0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    27B0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    27C0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    27D0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    27E0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    27F0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    2800: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    2810: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    2820: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    2830: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    2840: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    2850: 54 46 43 30 30 43 08 5F 50 43 54 12 2C 02 11 14  TFC00C._PCT.,...
    2860: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    2870: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    2880: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    2890: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    28A0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    28B0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    28C0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    28D0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    28E0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    28F0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    2900: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    2910: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2920: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    2930: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2940: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    2950: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    2960: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    2970: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2980: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    2990: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    29A0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    29B0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    29C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    29D0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    29E0: 0A 05 0A 00 0C 06 00 00 00 0C FE 00 00 00 0C 02  ................
    29F0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    2A00: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    2A10: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    2A20: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    2A30: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    2A40: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    2A50: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    2A60: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    2A70: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    2A80: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    2A90: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    2AA0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    2AB0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    2AC0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    2AD0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    2AE0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    2AF0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    2B00: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    2B10: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    2B20: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    2B30: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    2B40: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    2B50: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    2B60: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    2B70: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    2B80: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2B90: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    2BA0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 44 08 5F  /._SB_PLTFC00D._
    2BB0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    2BC0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    2BD0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    2BE0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    2BF0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    2C00: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    2C10: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    2C20: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    2C30: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    2C40: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    2C50: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    2C60: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    2C70: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2C80: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2C90: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    2CA0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    2CB0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    2CC0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    2CD0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2CE0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    2CF0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    2D00: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    2D10: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2D20: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    2D30: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 06 00 00  SD..............
    2D40: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    2D50: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    2D60: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    2D70: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    2D80: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    2D90: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    2DA0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    2DB0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    2DC0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    2DD0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    2DE0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    2DF0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    2E00: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    2E10: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    2E20: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    2E30: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    2E40: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2E50: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    2E60: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    2E70: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    2E80: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    2E90: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    2EA0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    2EB0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    2EC0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    2ED0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    2EE0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    2EF0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    2F00: 54 46 43 30 30 45 08 5F 50 43 54 12 2C 02 11 14  TFC00E._PCT.,...
    2F10: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    2F20: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    2F30: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    2F40: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    2F50: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    2F60: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    2F70: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    2F80: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    2F90: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    2FA0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    2FB0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    2FC0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2FD0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    2FE0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2FF0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    3000: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    3010: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    3020: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3030: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    3040: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    3050: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    3060: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    3070: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3080: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    3090: 0A 05 0A 00 0C 07 00 00 00 0C FE 00 00 00 0C 02  ................
    30A0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    30B0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    30C0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    30D0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    30E0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    30F0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    3100: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    3110: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    3120: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    3130: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    3140: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    3150: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    3160: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    3170: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    3180: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    3190: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    31A0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    31B0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    31C0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    31D0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    31E0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    31F0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    3200: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    3210: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    3220: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    3230: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3240: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    3250: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 46 08 5F  /._SB_PLTFC00F._
    3260: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    3270: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    3280: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    3290: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    32A0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    32B0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    32C0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    32D0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    32E0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    32F0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    3300: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    3310: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    3320: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3330: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3340: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    3350: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    3360: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    3370: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    3380: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3390: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    33A0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    33B0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    33C0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    33D0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    33E0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 07 00 00  SD..............
    33F0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    3400: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    3410: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    3420: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    3430: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    3440: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    3450: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    3460: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    3470: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    3480: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    3490: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    34A0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    34B0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    34C0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    34D0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    34E0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    34F0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3500: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    3510: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    3520: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    3530: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    3540: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    3550: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    3560: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    3570: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    3580: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    3590: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    35A0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    35B0: 54 46 43 30 31 30 08 5F 50 43 54 12 2C 02 11 14  TFC010._PCT.,...
    35C0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    35D0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    35E0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    35F0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    3600: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    3610: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    3620: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    3630: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    3640: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    3650: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    3660: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    3670: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3680: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    3690: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    36A0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    36B0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    36C0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    36D0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    36E0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    36F0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    3700: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    3710: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    3720: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3730: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    3740: 0A 05 0A 00 0C 08 00 00 00 0C FE 00 00 00 0C 02  ................
    3750: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    3760: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    3770: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    3780: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    3790: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    37A0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    37B0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    37C0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    37D0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    37E0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    37F0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    3800: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    3810: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    3820: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    3830: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    3840: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    3850: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    3860: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    3870: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    3880: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    3890: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    38A0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    38B0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    38C0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    38D0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    38E0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    38F0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    3900: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 31 08 5F  /._SB_PLTFC011._
    3910: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    3920: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    3930: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    3940: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    3950: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    3960: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    3970: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    3980: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    3990: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    39A0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    39B0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    39C0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    39D0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    39E0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    39F0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    3A00: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    3A10: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    3A20: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    3A30: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3A40: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    3A50: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    3A60: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    3A70: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3A80: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    3A90: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 08 00 00  SD..............
    3AA0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    3AB0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    3AC0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    3AD0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    3AE0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    3AF0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    3B00: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    3B10: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    3B20: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    3B30: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    3B40: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    3B50: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    3B60: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    3B70: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    3B80: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    3B90: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    3BA0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3BB0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    3BC0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    3BD0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    3BE0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    3BF0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    3C00: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    3C10: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    3C20: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    3C30: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    3C40: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    3C50: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    3C60: 54 46 43 30 31 32 08 5F 50 43 54 12 2C 02 11 14  TFC012._PCT.,...
    3C70: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    3C80: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    3C90: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    3CA0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    3CB0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    3CC0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    3CD0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    3CE0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    3CF0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    3D00: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    3D10: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    3D20: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3D30: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    3D40: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3D50: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    3D60: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    3D70: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    3D80: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3D90: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    3DA0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    3DB0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    3DC0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    3DD0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3DE0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    3DF0: 0A 05 0A 00 0C 09 00 00 00 0C FE 00 00 00 0C 02  ................
    3E00: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    3E10: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    3E20: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    3E30: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    3E40: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    3E50: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    3E60: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    3E70: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    3E80: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    3E90: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    3EA0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    3EB0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    3EC0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    3ED0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    3EE0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    3EF0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    3F00: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    3F10: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    3F20: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    3F30: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    3F40: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    3F50: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    3F60: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    3F70: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    3F80: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    3F90: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3FA0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    3FB0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 33 08 5F  /._SB_PLTFC013._
    3FC0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    3FD0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    3FE0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    3FF0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    4000: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    4010: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    4020: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    4030: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    4040: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    4050: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    4060: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    4070: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4080: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4090: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    40A0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    40B0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    40C0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    40D0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    40E0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    40F0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    4100: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4110: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    4120: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4130: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    4140: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 09 00 00  SD..............
    4150: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    4160: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    4170: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    4180: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    4190: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    41A0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    41B0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    41C0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    41D0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    41E0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    41F0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    4200: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    4210: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    4220: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    4230: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    4240: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    4250: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4260: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    4270: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    4280: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    4290: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    42A0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    42B0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    42C0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    42D0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    42E0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    42F0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    4300: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    4310: 54 46 43 30 31 34 08 5F 50 43 54 12 2C 02 11 14  TFC014._PCT.,...
    4320: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    4330: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    4340: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    4350: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    4360: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    4370: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    4380: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    4390: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    43A0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    43B0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    43C0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    43D0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    43E0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    43F0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4400: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    4410: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4420: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    4430: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4440: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    4450: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    4460: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    4470: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    4480: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4490: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    44A0: 0A 05 0A 00 0C 0A 00 00 00 0C FE 00 00 00 0C 02  ................
    44B0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    44C0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    44D0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    44E0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    44F0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    4500: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    4510: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    4520: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    4530: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    4540: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    4550: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    4560: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    4570: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    4580: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    4590: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    45A0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    45B0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    45C0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    45D0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    45E0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    45F0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    4600: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    4610: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    4620: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    4630: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    4640: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4650: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    4660: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 35 08 5F  /._SB_PLTFC015._
    4670: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    4680: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    4690: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    46A0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    46B0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    46C0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    46D0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    46E0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    46F0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    4700: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    4710: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    4720: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4730: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4740: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4750: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    4760: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    4770: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    4780: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    4790: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    47A0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    47B0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    47C0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    47D0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    47E0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    47F0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0A 00 00  SD..............
    4800: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    4810: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    4820: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    4830: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    4840: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    4850: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    4860: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    4870: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    4880: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    4890: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    48A0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    48B0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    48C0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    48D0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    48E0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    48F0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    4900: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4910: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    4920: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    4930: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    4940: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    4950: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    4960: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    4970: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    4980: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    4990: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    49A0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    49B0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    49C0: 54 46 43 30 31 36 08 5F 50 43 54 12 2C 02 11 14  TFC016._PCT.,...
    49D0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    49E0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    49F0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    4A00: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    4A10: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    4A20: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    4A30: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    4A40: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    4A50: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    4A60: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    4A70: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    4A80: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4A90: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    4AA0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4AB0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    4AC0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4AD0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    4AE0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4AF0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    4B00: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    4B10: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    4B20: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    4B30: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4B40: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    4B50: 0A 05 0A 00 0C 0B 00 00 00 0C FE 00 00 00 0C 02  ................
    4B60: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    4B70: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    4B80: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    4B90: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    4BA0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    4BB0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    4BC0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    4BD0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    4BE0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    4BF0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    4C00: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    4C10: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    4C20: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    4C30: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    4C40: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    4C50: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    4C60: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    4C70: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    4C80: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    4C90: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    4CA0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    4CB0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    4CC0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    4CD0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    4CE0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    4CF0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4D00: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    4D10: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 37 08 5F  /._SB_PLTFC017._
    4D20: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    4D30: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    4D40: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    4D50: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    4D60: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    4D70: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    4D80: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    4D90: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    4DA0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    4DB0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    4DC0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    4DD0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4DE0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4DF0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4E00: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    4E10: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    4E20: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    4E30: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    4E40: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4E50: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    4E60: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4E70: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    4E80: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4E90: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    4EA0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0B 00 00  SD..............
    4EB0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    4EC0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    4ED0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    4EE0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    4EF0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    4F00: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    4F10: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    4F20: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    4F30: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    4F40: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    4F50: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    4F60: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    4F70: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    4F80: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    4F90: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    4FA0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    4FB0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4FC0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    4FD0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    4FE0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    4FF0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    5000: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    5010: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    5020: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    5030: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    5040: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    5050: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    5060: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    5070: 54 46 43 30 31 38 08 5F 50 43 54 12 2C 02 11 14  TFC018._PCT.,...
    5080: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    5090: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    50A0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    50B0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    50C0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    50D0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    50E0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    50F0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    5100: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    5110: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    5120: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    5130: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5140: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    5150: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5160: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    5170: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5180: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    5190: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    51A0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    51B0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    51C0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    51D0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    51E0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    51F0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    5200: 0A 05 0A 00 0C 0C 00 00 00 0C FE 00 00 00 0C 02  ................
    5210: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    5220: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    5230: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    5240: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    5250: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    5260: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    5270: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    5280: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    5290: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    52A0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    52B0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    52C0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    52D0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    52E0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    52F0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    5300: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    5310: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    5320: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    5330: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    5340: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    5350: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    5360: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    5370: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    5380: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    5390: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    53A0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    53B0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    53C0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 39 08 5F  /._SB_PLTFC019._
    53D0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    53E0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    53F0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    5400: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    5410: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    5420: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    5430: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    5440: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    5450: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    5460: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    5470: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    5480: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5490: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    54A0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    54B0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    54C0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    54D0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    54E0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    54F0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5500: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    5510: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5520: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    5530: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5540: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    5550: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0C 00 00  SD..............
    5560: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    5570: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    5580: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    5590: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    55A0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    55B0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    55C0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    55D0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    55E0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    55F0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    5600: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    5610: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    5620: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    5630: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    5640: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    5650: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    5660: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5670: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    5680: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    5690: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    56A0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    56B0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    56C0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    56D0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    56E0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    56F0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    5700: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    5710: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    5720: 54 46 43 30 31 41 08 5F 50 43 54 12 2C 02 11 14  TFC01A._PCT.,...
    5730: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    5740: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    5750: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    5760: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    5770: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    5780: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    5790: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    57A0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    57B0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    57C0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    57D0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    57E0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    57F0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    5800: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5810: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    5820: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5830: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    5840: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5850: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    5860: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    5870: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    5880: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    5890: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    58A0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    58B0: 0A 05 0A 00 0C 0D 00 00 00 0C FE 00 00 00 0C 02  ................
    58C0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    58D0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    58E0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    58F0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    5900: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    5910: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    5920: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    5930: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    5940: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    5950: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    5960: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    5970: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    5980: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    5990: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    59A0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    59B0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    59C0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    59D0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    59E0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    59F0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    5A00: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    5A10: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    5A20: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    5A30: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    5A40: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    5A50: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5A60: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    5A70: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 42 08 5F  /._SB_PLTFC01B._
    5A80: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    5A90: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    5AA0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    5AB0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    5AC0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    5AD0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    5AE0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    5AF0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    5B00: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    5B10: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    5B20: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    5B30: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5B40: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5B50: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5B60: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    5B70: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    5B80: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    5B90: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    5BA0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5BB0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    5BC0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5BD0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    5BE0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5BF0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    5C00: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0D 00 00  SD..............
    5C10: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    5C20: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    5C30: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    5C40: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    5C50: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    5C60: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    5C70: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    5C80: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    5C90: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    5CA0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    5CB0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    5CC0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    5CD0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    5CE0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    5CF0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    5D00: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    5D10: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5D20: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    5D30: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    5D40: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    5D50: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    5D60: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    5D70: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    5D80: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    5D90: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    5DA0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    5DB0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    5DC0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    5DD0: 54 46 43 30 31 43 08 5F 50 43 54 12 2C 02 11 14  TFC01C._PCT.,...
    5DE0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    5DF0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    5E00: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    5E10: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    5E20: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    5E30: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    5E40: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    5E50: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    5E60: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    5E70: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    5E80: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    5E90: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5EA0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    5EB0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5EC0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    5ED0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5EE0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    5EF0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5F00: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    5F10: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    5F20: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    5F30: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    5F40: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5F50: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    5F60: 0A 05 0A 00 0C 0E 00 00 00 0C FE 00 00 00 0C 02  ................
    5F70: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    5F80: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    5F90: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    5FA0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    5FB0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    5FC0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    5FD0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    5FE0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    5FF0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    6000: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    6010: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    6020: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    6030: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    6040: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    6050: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    6060: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    6070: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    6080: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    6090: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    60A0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    60B0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    60C0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    60D0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    60E0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    60F0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    6100: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6110: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    6120: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 44 08 5F  /._SB_PLTFC01D._
    6130: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    6140: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    6150: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    6160: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    6170: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    6180: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    6190: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    61A0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    61B0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    61C0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    61D0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    61E0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    61F0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6200: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6210: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    6220: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    6230: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    6240: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    6250: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6260: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    6270: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6280: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    6290: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    62A0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    62B0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0E 00 00  SD..............
    62C0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    62D0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    62E0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    62F0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    6300: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    6310: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    6320: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    6330: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    6340: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    6350: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    6360: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    6370: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    6380: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    6390: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    63A0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    63B0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    63C0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    63D0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    63E0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    63F0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    6400: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    6410: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    6420: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    6430: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    6440: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    6450: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    6460: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    6470: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    6480: 54 46 43 30 31 45 08 5F 50 43 54 12 2C 02 11 14  TFC01E._PCT.,...
    6490: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    64A0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    64B0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    64C0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    64D0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    64E0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    64F0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    6500: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    6510: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    6520: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    6530: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    6540: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6550: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    6560: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6570: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    6580: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6590: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    65A0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    65B0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    65C0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    65D0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    65E0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    65F0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6600: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    6610: 0A 05 0A 00 0C 0F 00 00 00 0C FE 00 00 00 0C 02  ................
    6620: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    6630: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    6640: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    6650: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    6660: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    6670: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    6680: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    6690: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    66A0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    66B0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    66C0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    66D0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    66E0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    66F0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    6700: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    6710: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    6720: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    6730: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    6740: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    6750: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    6760: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    6770: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    6780: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    6790: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    67A0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    67B0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    67C0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    67D0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 46 08 5F  /._SB_PLTFC01F._
    67E0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    67F0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    6800: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    6810: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    6820: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    6830: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    6840: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    6850: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    6860: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    6870: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    6880: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    6890: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    68A0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    68B0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    68C0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    68D0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    68E0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    68F0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    6900: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6910: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    6920: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6930: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    6940: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6950: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    6960: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0F 00 00  SD..............
    6970: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    6980: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    6990: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    69A0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    69B0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    69C0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    69D0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    69E0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    69F0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    6A00: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    6A10: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    6A20: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    6A30: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    6A40: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    6A50: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    6A60: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    6A70: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6A80: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    6A90: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    6AA0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    6AB0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    6AC0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    6AD0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    6AE0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    6AF0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    6B00: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    6B10: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    6B20: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    6B30: 54 46 43 30 32 30 08 5F 50 43 54 12 2C 02 11 14  TFC020._PCT.,...
    6B40: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    6B50: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    6B60: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    6B70: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    6B80: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    6B90: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    6BA0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    6BB0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    6BC0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    6BD0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    6BE0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    6BF0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6C00: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    6C10: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6C20: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    6C30: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6C40: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    6C50: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6C60: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    6C70: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    6C80: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    6C90: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    6CA0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6CB0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    6CC0: 0A 05 0A 00 0C 10 00 00 00 0C FE 00 00 00 0C 02  ................
    6CD0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    6CE0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    6CF0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    6D00: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    6D10: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    6D20: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    6D30: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    6D40: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    6D50: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    6D60: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    6D70: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    6D80: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    6D90: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    6DA0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    6DB0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    6DC0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    6DD0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    6DE0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    6DF0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    6E00: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    6E10: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    6E20: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    6E30: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    6E40: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    6E50: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    6E60: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6E70: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    6E80: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 31 08 5F  /._SB_PLTFC021._
    6E90: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    6EA0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    6EB0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    6EC0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    6ED0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    6EE0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    6EF0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    6F00: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    6F10: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    6F20: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    6F30: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    6F40: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6F50: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6F60: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6F70: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    6F80: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    6F90: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    6FA0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    6FB0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6FC0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    6FD0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6FE0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    6FF0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7000: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    7010: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 10 00 00  SD..............
    7020: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    7030: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    7040: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    7050: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    7060: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    7070: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    7080: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    7090: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    70A0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    70B0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    70C0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    70D0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    70E0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    70F0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    7100: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    7110: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    7120: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7130: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    7140: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    7150: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    7160: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    7170: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    7180: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    7190: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    71A0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    71B0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    71C0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    71D0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    71E0: 54 46 43 30 32 32 08 5F 50 43 54 12 2C 02 11 14  TFC022._PCT.,...
    71F0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    7200: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    7210: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    7220: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    7230: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    7240: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    7250: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    7260: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    7270: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    7280: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    7290: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    72A0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    72B0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    72C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    72D0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    72E0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    72F0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    7300: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7310: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    7320: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    7330: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    7340: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    7350: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7360: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    7370: 0A 05 0A 00 0C 11 00 00 00 0C FE 00 00 00 0C 02  ................
    7380: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    7390: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    73A0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    73B0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    73C0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    73D0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    73E0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    73F0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    7400: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    7410: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    7420: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    7430: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    7440: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    7450: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    7460: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    7470: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    7480: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    7490: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    74A0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    74B0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    74C0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    74D0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    74E0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    74F0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    7500: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    7510: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7520: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    7530: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 33 08 5F  /._SB_PLTFC023._
    7540: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    7550: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    7560: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    7570: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    7580: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    7590: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    75A0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    75B0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    75C0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    75D0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    75E0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    75F0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    7600: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7610: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7620: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    7630: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    7640: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    7650: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    7660: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7670: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    7680: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    7690: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    76A0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    76B0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    76C0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 11 00 00  SD..............
    76D0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    76E0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    76F0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    7700: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    7710: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    7720: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    7730: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    7740: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    7750: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    7760: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    7770: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    7780: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    7790: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    77A0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    77B0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    77C0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    77D0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    77E0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    77F0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    7800: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    7810: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    7820: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    7830: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    7840: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    7850: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    7860: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    7870: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    7880: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    7890: 54 46 43 30 32 34 08 5F 50 43 54 12 2C 02 11 14  TFC024._PCT.,...
    78A0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    78B0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    78C0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    78D0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    78E0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    78F0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    7900: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    7910: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    7920: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    7930: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    7940: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    7950: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7960: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    7970: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7980: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    7990: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    79A0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    79B0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    79C0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    79D0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    79E0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    79F0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    7A00: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7A10: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    7A20: 0A 05 0A 00 0C 12 00 00 00 0C FE 00 00 00 0C 02  ................
    7A30: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    7A40: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    7A50: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    7A60: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    7A70: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    7A80: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    7A90: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    7AA0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    7AB0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    7AC0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    7AD0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    7AE0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    7AF0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    7B00: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    7B10: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    7B20: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    7B30: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    7B40: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    7B50: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    7B60: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    7B70: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    7B80: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    7B90: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    7BA0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    7BB0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    7BC0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7BD0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    7BE0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 35 08 5F  /._SB_PLTFC025._
    7BF0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    7C00: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    7C10: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    7C20: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    7C30: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    7C40: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    7C50: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    7C60: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    7C70: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    7C80: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    7C90: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    7CA0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    7CB0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7CC0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7CD0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    7CE0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    7CF0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    7D00: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    7D10: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7D20: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    7D30: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    7D40: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    7D50: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7D60: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    7D70: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 12 00 00  SD..............
    7D80: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    7D90: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    7DA0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    7DB0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    7DC0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    7DD0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    7DE0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    7DF0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    7E00: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    7E10: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    7E20: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    7E30: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    7E40: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    7E50: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    7E60: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    7E70: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    7E80: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7E90: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    7EA0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    7EB0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    7EC0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    7ED0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    7EE0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    7EF0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    7F00: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    7F10: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    7F20: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    7F30: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    7F40: 54 46 43 30 32 36 08 5F 50 43 54 12 2C 02 11 14  TFC026._PCT.,...
    7F50: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    7F60: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    7F70: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    7F80: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    7F90: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    7FA0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    7FB0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    7FC0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    7FD0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    7FE0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    7FF0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    8000: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8010: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    8020: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8030: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    8040: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8050: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    8060: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8070: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    8080: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    8090: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    80A0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    80B0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    80C0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    80D0: 0A 05 0A 00 0C 13 00 00 00 0C FE 00 00 00 0C 02  ................
    80E0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    80F0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    8100: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    8110: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    8120: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    8130: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    8140: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    8150: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    8160: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    8170: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    8180: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    8190: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    81A0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    81B0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    81C0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    81D0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    81E0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    81F0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    8200: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    8210: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    8220: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    8230: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    8240: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    8250: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    8260: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    8270: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8280: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    8290: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 37 08 5F  /._SB_PLTFC027._
    82A0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    82B0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    82C0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    82D0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    82E0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    82F0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    8300: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    8310: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    8320: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    8330: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    8340: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    8350: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8360: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8370: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8380: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    8390: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    83A0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    83B0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    83C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    83D0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    83E0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    83F0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    8400: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8410: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    8420: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 13 00 00  SD..............
    8430: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    8440: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    8450: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    8460: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    8470: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    8480: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    8490: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    84A0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    84B0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    84C0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    84D0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    84E0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    84F0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    8500: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    8510: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    8520: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    8530: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8540: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    8550: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    8560: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    8570: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    8580: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    8590: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    85A0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    85B0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    85C0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    85D0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    85E0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    85F0: 54 46 43 30 32 38 08 5F 50 43 54 12 2C 02 11 14  TFC028._PCT.,...
    8600: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    8610: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    8620: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    8630: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    8640: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    8650: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    8660: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    8670: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    8680: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    8690: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    86A0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    86B0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    86C0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    86D0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    86E0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    86F0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8700: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    8710: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8720: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    8730: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    8740: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    8750: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    8760: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8770: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    8780: 0A 05 0A 00 0C 14 00 00 00 0C FE 00 00 00 0C 02  ................
    8790: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    87A0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    87B0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    87C0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    87D0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    87E0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    87F0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    8800: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    8810: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    8820: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    8830: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    8840: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    8850: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    8860: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    8870: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    8880: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    8890: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    88A0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    88B0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    88C0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    88D0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    88E0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    88F0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    8900: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    8910: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    8920: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8930: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    8940: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 39 08 5F  /._SB_PLTFC029._
    8950: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    8960: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    8970: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    8980: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    8990: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    89A0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    89B0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    89C0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    89D0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    89E0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    89F0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    8A00: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8A10: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8A20: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8A30: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    8A40: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    8A50: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    8A60: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    8A70: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8A80: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    8A90: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8AA0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    8AB0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8AC0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    8AD0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 14 00 00  SD..............
    8AE0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    8AF0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    8B00: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    8B10: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    8B20: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    8B30: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    8B40: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    8B50: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    8B60: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    8B70: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    8B80: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    8B90: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    8BA0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    8BB0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    8BC0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    8BD0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    8BE0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8BF0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    8C00: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    8C10: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    8C20: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    8C30: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    8C40: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    8C50: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    8C60: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    8C70: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    8C80: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    8C90: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    8CA0: 54 46 43 30 32 41 08 5F 50 43 54 12 2C 02 11 14  TFC02A._PCT.,...
    8CB0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    8CC0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    8CD0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    8CE0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    8CF0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    8D00: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    8D10: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    8D20: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    8D30: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    8D40: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    8D50: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    8D60: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8D70: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    8D80: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8D90: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    8DA0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8DB0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    8DC0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8DD0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    8DE0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    8DF0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    8E00: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    8E10: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8E20: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    8E30: 0A 05 0A 00 0C 15 00 00 00 0C FE 00 00 00 0C 02  ................
    8E40: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    8E50: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    8E60: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    8E70: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    8E80: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    8E90: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    8EA0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    8EB0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    8EC0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    8ED0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    8EE0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    8EF0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    8F00: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    8F10: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    8F20: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    8F30: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    8F40: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    8F50: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    8F60: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    8F70: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    8F80: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    8F90: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    8FA0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    8FB0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    8FC0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    8FD0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8FE0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    8FF0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 42 08 5F  /._SB_PLTFC02B._
    9000: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    9010: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    9020: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    9030: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    9040: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    9050: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    9060: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    9070: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    9080: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    9090: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    90A0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    90B0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    90C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    90D0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    90E0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    90F0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    9100: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    9110: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    9120: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9130: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    9140: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9150: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    9160: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9170: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    9180: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 15 00 00  SD..............
    9190: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    91A0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    91B0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    91C0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    91D0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    91E0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    91F0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    9200: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    9210: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    9220: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    9230: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    9240: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    9250: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    9260: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    9270: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    9280: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    9290: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    92A0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    92B0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    92C0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    92D0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    92E0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    92F0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    9300: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    9310: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    9320: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    9330: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    9340: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    9350: 54 46 43 30 32 43 08 5F 50 43 54 12 2C 02 11 14  TFC02C._PCT.,...
    9360: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    9370: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    9380: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    9390: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    93A0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    93B0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    93C0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    93D0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    93E0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    93F0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    9400: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    9410: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9420: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    9430: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9440: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    9450: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9460: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    9470: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9480: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    9490: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    94A0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    94B0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    94C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    94D0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    94E0: 0A 05 0A 00 0C 16 00 00 00 0C FE 00 00 00 0C 02  ................
    94F0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    9500: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    9510: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    9520: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    9530: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    9540: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    9550: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    9560: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    9570: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    9580: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    9590: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    95A0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    95B0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    95C0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    95D0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    95E0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    95F0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    9600: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    9610: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    9620: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    9630: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    9640: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    9650: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    9660: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    9670: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    9680: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9690: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    96A0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 44 08 5F  /._SB_PLTFC02D._
    96B0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    96C0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    96D0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    96E0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    96F0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    9700: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    9710: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    9720: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    9730: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    9740: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    9750: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    9760: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9770: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9780: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9790: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    97A0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    97B0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    97C0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    97D0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    97E0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    97F0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9800: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    9810: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9820: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    9830: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 16 00 00  SD..............
    9840: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    9850: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    9860: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    9870: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    9880: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    9890: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    98A0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    98B0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    98C0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    98D0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    98E0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    98F0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    9900: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    9910: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    9920: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    9930: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    9940: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9950: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    9960: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    9970: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    9980: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    9990: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    99A0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    99B0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    99C0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    99D0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    99E0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    99F0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    9A00: 54 46 43 30 32 45 08 5F 50 43 54 12 2C 02 11 14  TFC02E._PCT.,...
    9A10: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    9A20: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    9A30: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    9A40: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    9A50: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    9A60: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    9A70: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    9A80: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    9A90: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    9AA0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    9AB0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    9AC0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9AD0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    9AE0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9AF0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    9B00: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9B10: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    9B20: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9B30: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    9B40: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    9B50: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    9B60: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    9B70: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9B80: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    9B90: 0A 05 0A 00 0C 17 00 00 00 0C FE 00 00 00 0C 02  ................
    9BA0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    9BB0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    9BC0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    9BD0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    9BE0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    9BF0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    9C00: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    9C10: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    9C20: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    9C30: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    9C40: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    9C50: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    9C60: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    9C70: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    9C80: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    9C90: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    9CA0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    9CB0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    9CC0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    9CD0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    9CE0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    9CF0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    9D00: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    9D10: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    9D20: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    9D30: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9D40: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    9D50: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 46 08 5F  /._SB_PLTFC02F._
    9D60: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    9D70: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    9D80: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    9D90: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    9DA0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    9DB0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    9DC0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    9DD0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    9DE0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    9DF0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    9E00: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    9E10: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9E20: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9E30: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9E40: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    9E50: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    9E60: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    9E70: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    9E80: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9E90: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    9EA0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9EB0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    9EC0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9ED0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    9EE0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 17 00 00  SD..............
    9EF0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    9F00: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    9F10: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    9F20: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    9F30: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    9F40: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    9F50: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    9F60: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    9F70: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    9F80: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    9F90: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    9FA0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    9FB0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    9FC0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    9FD0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    9FE0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    9FF0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A000: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    A010: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    A020: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    A030: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    A040: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    A050: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    A060: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    A070: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    A080: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    A090: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    A0A0: 69 10 00 00 14 C9 36 00 00 4E 46 50 43 00 86 5C  i.....6..NFPC..\
    A0B0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 30 0A 85  /._SB_PLTFC000..
    A0C0: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 31  .\/._SB_PLTFC001
    A0D0: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A0E0: 30 32 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  02...\/._SB_PLTF
    A0F0: 43 30 30 33 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C003...\/._SB_PL
    A100: 54 46 43 30 30 34 0A 85 86 5C 2F 03 5F 53 42 5F  TFC004...\/._SB_
    A110: 50 4C 54 46 43 30 30 35 0A 85 86 5C 2F 03 5F 53  PLTFC005...\/._S
    A120: 42 5F 50 4C 54 46 43 30 30 36 0A 85 86 5C 2F 03  B_PLTFC006...\/.
    A130: 5F 53 42 5F 50 4C 54 46 43 30 30 37 0A 85 86 5C  _SB_PLTFC007...\
    A140: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 38 0A 85  /._SB_PLTFC008..
    A150: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 39  .\/._SB_PLTFC009
    A160: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A170: 30 41 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  0A...\/._SB_PLTF
    A180: 43 30 30 42 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C00B...\/._SB_PL
    A190: 54 46 43 30 30 43 0A 85 86 5C 2F 03 5F 53 42 5F  TFC00C...\/._SB_
    A1A0: 50 4C 54 46 43 30 30 44 0A 85 86 5C 2F 03 5F 53  PLTFC00D...\/._S
    A1B0: 42 5F 50 4C 54 46 43 30 30 45 0A 85 86 5C 2F 03  B_PLTFC00E...\/.
    A1C0: 5F 53 42 5F 50 4C 54 46 43 30 30 46 0A 85 86 5C  _SB_PLTFC00F...\
    A1D0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 30 0A 85  /._SB_PLTFC010..
    A1E0: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 31  .\/._SB_PLTFC011
    A1F0: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A200: 31 32 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  12...\/._SB_PLTF
    A210: 43 30 31 33 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C013...\/._SB_PL
    A220: 54 46 43 30 31 34 0A 85 86 5C 2F 03 5F 53 42 5F  TFC014...\/._SB_
    A230: 50 4C 54 46 43 30 31 35 0A 85 86 5C 2F 03 5F 53  PLTFC015...\/._S
    A240: 42 5F 50 4C 54 46 43 30 31 36 0A 85 86 5C 2F 03  B_PLTFC016...\/.
    A250: 5F 53 42 5F 50 4C 54 46 43 30 31 37 0A 85 86 5C  _SB_PLTFC017...\
    A260: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 38 0A 85  /._SB_PLTFC018..
    A270: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 39  .\/._SB_PLTFC019
    A280: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A290: 31 41 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  1A...\/._SB_PLTF
    A2A0: 43 30 31 42 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C01B...\/._SB_PL
    A2B0: 54 46 43 30 31 43 0A 85 86 5C 2F 03 5F 53 42 5F  TFC01C...\/._SB_
    A2C0: 50 4C 54 46 43 30 31 44 0A 85 86 5C 2F 03 5F 53  PLTFC01D...\/._S
    A2D0: 42 5F 50 4C 54 46 43 30 31 45 0A 85 86 5C 2F 03  B_PLTFC01E...\/.
    A2E0: 5F 53 42 5F 50 4C 54 46 43 30 31 46 0A 85 86 5C  _SB_PLTFC01F...\
    A2F0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 30 0A 85  /._SB_PLTFC020..
    A300: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 31  .\/._SB_PLTFC021
    A310: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A320: 32 32 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  22...\/._SB_PLTF
    A330: 43 30 32 33 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C023...\/._SB_PL
    A340: 54 46 43 30 32 34 0A 85 86 5C 2F 03 5F 53 42 5F  TFC024...\/._SB_
    A350: 50 4C 54 46 43 30 32 35 0A 85 86 5C 2F 03 5F 53  PLTFC025...\/._S
    A360: 42 5F 50 4C 54 46 43 30 32 36 0A 85 86 5C 2F 03  B_PLTFC026...\/.
    A370: 5F 53 42 5F 50 4C 54 46 43 30 32 37 0A 85 86 5C  _SB_PLTFC027...\
    A380: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 38 0A 85  /._SB_PLTFC028..
    A390: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 39  .\/._SB_PLTFC029
    A3A0: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A3B0: 32 41 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  2A...\/._SB_PLTF
    A3C0: 43 30 32 42 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C02B...\/._SB_PL
    A3D0: 54 46 43 30 32 43 0A 85 86 5C 2F 03 5F 53 42 5F  TFC02C...\/._SB_
    A3E0: 50 4C 54 46 43 30 32 44 0A 85 86 5C 2F 03 5F 53  PLTFC02D...\/._S
    A3F0: 42 5F 50 4C 54 46 43 30 32 45 0A 85 86 5C 2F 03  B_PLTFC02E...\/.
    A400: 5F 53 42 5F 50 4C 54 46 43 30 32 46 0A 85        _SB_PLTFC02F..

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 6A 09 00 00 02 7D 41 4D 44 00 00 00  SSDTj....}AMD...
    0010: 43 50 4D 4D 53 4F 53 43 01 00 00 00 49 4E 54 4C  CPMMSOSC....INTL
    0020: 31 03 23 20 A0 48 45 00 15 5C 4D 31 31 35 03 00  1.# .HE..\M115..
    0030: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0040: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0050: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0060: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0070: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0080: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    0090: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00A0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00B0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00C0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00D0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00E0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    00F0: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0100: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0110: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0120: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0130: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0140: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0150: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0160: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0170: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0180: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    0190: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01A0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01B0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01C0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01D0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01E0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    01F0: 15 5C 4D 32 33 32 08 03 15 5C 4D 30 34 36 01 00  .\M232...\M046..
    0200: 15 5C 4D 30 34 37 01 00 15 5C 4D 30 34 39 08 02  .\M047...\M049..
    0210: 15 5C 4D 32 35 31 05 00 15 5C 4D 33 31 30 05 00  .\M251...\M310..
    0220: 15 5C 4D 33 31 43 05 00 15 5C 4D 33 32 30 05 00  .\M31C...\M320..
    0230: 15 5C 4D 33 32 31 05 00 15 5C 4D 33 32 32 05 00  .\M321...\M322..
    0240: 15 5C 4D 33 32 33 05 00 15 5C 4D 33 32 34 05 00  .\M323...\M324..
    0250: 15 5C 4D 33 32 35 05 00 15 5C 4D 33 32 36 05 00  .\M325...\M326..
    0260: 15 5C 4D 33 32 37 05 00 15 5C 4D 33 32 38 05 00  .\M327...\M328..
    0270: 15 5C 4D 32 38 30 05 00 15 5C 4D 32 39 30 05 00  .\M280...\M290..
    0280: 15 5C 4D 33 37 38 05 00 15 5C 4D 33 37 39 05 00  .\M378...\M379..
    0290: 15 5C 4D 33 38 30 05 00 15 5C 4D 33 38 31 05 00  .\M380...\M381..
    02A0: 15 5C 4D 33 38 32 05 00 15 5C 4D 33 38 33 05 00  .\M382...\M383..
    02B0: 15 5C 4D 33 38 34 05 00 15 5C 4D 33 38 35 05 00  .\M384...\M385..
    02C0: 15 5C 4D 33 38 36 05 00 15 5C 4D 33 38 37 05 00  .\M386...\M387..
    02D0: 15 5C 4D 33 38 38 05 00 15 5C 4D 33 38 39 05 00  .\M388...\M389..
    02E0: 15 5C 4D 33 39 30 05 00 15 5C 4D 33 39 31 05 00  .\M390...\M391..
    02F0: 15 5C 4D 33 39 32 05 00 15 5C 4D 33 33 31 05 00  .\M392...\M331..
    0300: 15 5C 4D 36 32 30 05 00 15 5C 4D 34 30 34 03 00  .\M620...\M404..
    0310: 15 5C 4D 34 30 38 09 00 15 5C 4D 34 31 34 05 00  .\M408...\M414..
    0320: 15 5C 4D 34 34 34 05 00 15 5C 4D 34 35 33 05 00  .\M444...\M453..
    0330: 15 5C 4D 34 35 34 05 00 15 5C 4D 34 35 35 05 00  .\M454...\M455..
    0340: 15 5C 4D 34 35 36 05 00 15 5C 4D 34 35 37 05 00  .\M456...\M457..
    0350: 15 5C 4D 34 36 30 08 07 15 5C 4D 34 34 39 05 00  .\M460...\M449..
    0360: 15 5C 4D 34 43 30 05 00 15 5C 4D 32 33 41 05 00  .\M4C0...\M23A..
    0370: 15 5C 4D 34 46 30 05 00 15 5C 4D 36 31 30 05 00  .\M4F0...\M610..
    0380: 15 5C 4D 32 39 41 05 00 15 5C 4D 36 33 31 05 00  .\M29A...\M631..
    0390: 15 5C 4D 36 35 32 05 00 15 5C 4D 30 35 30 06 00  .\M652...\M050..
    03A0: 15 5C 4D 30 35 31 06 00 15 5C 4D 30 35 32 06 00  .\M051...\M052..
    03B0: 15 5C 4D 30 35 33 06 00 15 5C 4D 30 35 34 06 00  .\M053...\M054..
    03C0: 15 5C 4D 30 35 35 06 00 15 5C 4D 30 35 36 06 00  .\M055...\M056..
    03D0: 15 5C 4D 30 35 37 06 00 15 5C 4D 30 35 38 06 00  .\M057...\M058..
    03E0: 15 5C 4D 30 35 39 06 00 15 5C 4D 30 36 32 06 00  .\M059...\M062..
    03F0: 15 5C 4D 30 36 38 06 00 15 5C 4D 30 36 39 06 00  .\M068...\M069..
    0400: 15 5C 4D 30 37 30 06 00 15 5C 4D 30 37 31 06 00  .\M070...\M071..
    0410: 15 5C 4D 30 37 32 06 00 15 5C 4D 30 37 34 06 00  .\M072...\M074..
    0420: 15 5C 4D 30 37 35 06 00 15 5C 4D 30 37 36 06 00  .\M075...\M076..
    0430: 15 5C 4D 30 37 37 06 00 15 5C 4D 30 37 38 06 00  .\M077...\M078..
    0440: 15 5C 4D 30 37 39 06 00 15 5C 4D 30 38 30 06 00  .\M079...\M080..
    0450: 15 5C 4D 30 38 31 06 00 15 5C 4D 31 32 37 06 00  .\M081...\M127..
    0460: 15 5C 44 49 4D 53 01 00 15 5C 44 44 45 50 01 00  .\DIMS...\DDEP..
    0470: 15 5C 2E 5F 53 42 5F 4D 36 32 35 08 02 10 4C 4E  .\._SB_M625...LN
    0480: 5C 5F 53 42 5F 08 4D 36 33 30 0B 55 55 08 55 34  \_SB_.M630.UU.U4
    0490: 50 43 0A FF 14 45 4D 5F 4F 53 43 0C 08 4D 53 44  PC...EM_OSC..MSD
    04A0: 42 00 8A 68 00 55 49 44 30 8A 6B 00 43 44 57 31  B..h.UID0.k.CDW1
    04B0: A0 0E 92 95 6A 0A 02 8A 6B 0A 04 43 44 57 32 A0  ....j...k..CDW2.
    04C0: 0E 92 95 6A 0A 03 8A 6B 0A 08 43 44 57 33 A0 48  ...j...k..CDW3.H
    04D0: 04 93 6A 01 4D 34 36 30 0D 20 20 46 45 41 2D 41  ..j.M460.  FEA-A
    04E0: 53 4C 2D 5C 5F 53 42 2E 5F 4F 53 43 20 55 55 49  SL-\_SB._OSC UUI
    04F0: 44 20 30 78 25 58 20 53 74 61 72 74 20 20 43 44  D 0x%X Start  CD
    0500: 57 31 20 3D 20 30 78 25 58 0A 00 55 49 44 30 43  W1 = 0x%X..UID0C
    0510: 44 57 31 00 00 00 00 A1 4B 0C A0 4E 05 93 6A 0A  DW1.....K..N..j.
    0520: 02 70 43 44 57 32 62 4D 34 36 30 0D 20 20 46 45  .pCDW2bM460.  FE
    0530: 41 2D 41 53 4C 2D 5C 5F 53 42 2E 5F 4F 53 43 20  A-ASL-\_SB._OSC 
    0540: 55 55 49 44 20 30 78 25 58 20 53 74 61 72 74 20  UUID 0x%X Start 
    0550: 20 43 44 57 31 20 3D 20 30 78 25 58 20 43 44 57   CDW1 = 0x%X CDW
    0560: 32 20 3D 20 30 78 25 58 0A 00 55 49 44 30 43 44  2 = 0x%X..UID0CD
    0570: 57 31 43 44 57 32 00 00 00 A1 49 06 70 43 44 57  W1CDW2....I.pCDW
    0580: 33 63 4D 34 36 30 0D 20 20 46 45 41 2D 41 53 4C  3cM460.  FEA-ASL
    0590: 2D 5C 5F 53 42 2E 5F 4F 53 43 20 55 55 49 44 20  -\_SB._OSC UUID 
    05A0: 30 78 25 58 20 53 74 61 72 74 20 20 43 44 57 31  0x%X Start  CDW1
    05B0: 20 3D 20 30 78 25 58 20 43 44 57 32 20 3D 20 30   = 0x%X CDW2 = 0
    05C0: 78 25 58 20 43 44 57 33 20 3D 20 30 78 25 58 0A  x%X CDW3 = 0x%X.
    05D0: 00 55 49 44 30 43 44 57 31 43 44 57 32 43 44 57  .UID0CDW1CDW2CDW
    05E0: 33 00 00 A0 49 10 93 68 11 13 0A 10 3A D1 A0 23  3...I..h....:..#
    05F0: AB 26 6C 48 9C 5F 0F FA 52 5A 57 5A A0 43 0E 93  .&lH._..RZWZ.C..
    0600: 69 01 70 00 65 A0 29 92 93 5C 2E 5F 53 42 5F 55  i.p.e.)..\._SB_U
    0610: 34 50 43 0A FF 7B 5C 2E 5F 53 42 5F 55 34 50 43  4PC..{\._SB_U4PC
    0620: 0A 0F 65 7B 63 0C F0 FF FF FF 63 7D 63 65 63 A1  ..e{c.....c}cec.
    0630: 44 08 A0 41 08 90 5B 12 5C 2E 5F 53 42 5F 4D 36  D..A..[.\._SB_M6
    0640: 32 35 00 92 93 4D 36 32 30 00 A0 49 06 92 93 4D  25...M620..I...M
    0650: 30 34 39 4D 36 32 30 0A 10 00 A0 2D 93 5C 2E 5F  049M620....-.\._
    0660: 53 42 5F 4D 36 33 30 0B 55 55 70 5C 2E 5F 53 42  SB_M630.UUp\._SB
    0670: 5F 4D 36 32 35 0B 80 01 0B E8 03 61 70 61 5C 2E  _M625......apa\.
    0680: 5F 53 42 5F 4D 36 33 30 A1 0D 70 5C 2E 5F 53 42  _SB_M630..p\._SB
    0690: 5F 4D 36 33 30 61 A0 1D 93 7B 61 0A FF 00 00 7B  _M630a...{a....{
    06A0: 7A 61 0A 10 00 0A 0F 65 7B 63 0C F0 FF FF FF 63  za.....e{c.....c
    06B0: 7D 63 65 63 A0 0F 93 65 00 7D 43 44 57 31 0A 04  }cec...e.}CDW1..
    06C0: 43 44 57 31 A1 1B A0 19 92 93 63 43 44 57 33 70  CDW1......cCDW3p
    06D0: 63 43 44 57 33 7D 43 44 57 31 0A 10 43 44 57 31  cCDW3}CDW1..CDW1
    06E0: A1 0C 7D 43 44 57 31 0A 08 43 44 57 31 A1 41 17  ..}CDW1..CDW1.A.
    06F0: A0 41 16 93 68 11 13 0A 10 6E B0 11 08 27 4A F9  .A..h....n...'J.
    0700: 44 8D 60 3C BB C2 2E 7B 48 A0 4B 13 93 69 01 A0  D.`<...{H.K..i..
    0710: 4C 06 90 5B 12 5C 44 49 4D 53 00 5B 12 5C 44 44  L..[.\DIMS.[.\DD
    0720: 45 50 00 A0 48 05 90 93 5C 44 44 45 50 01 93 7B  EP..H...\DDEP..{
    0730: 43 44 57 32 0C 00 00 04 00 00 0C 00 00 04 00 4D  CDW2...........M
    0740: 34 36 30 0D 20 20 20 20 44 69 73 61 62 6C 65 20  460.    Disable 
    0750: 55 53 42 34 20 41 43 50 49 20 5F 44 45 50 0A 00  USB4 ACPI _DEP..
    0760: 00 00 00 00 00 00 70 5C 44 49 4D 53 61 4D 32 33  ......p\DIMSaM23
    0770: 32 61 0A 55 00 70 00 5C 44 44 45 50 7D 62 0A 04  2a.U.p.\DDEP}b..
    0780: 62 A0 0F 93 4D 53 44 42 01 7B 62 0C 7F FF FF FF  b...MSDB.{b.....
    0790: 62 A0 11 92 93 55 34 50 43 0A FF 7D 62 0C 00 00  b....U4PC..}b...
    07A0: 04 00 62 A1 2F A0 2D 92 93 4D 36 32 30 00 A0 24  ..b./.-..M620..$
    07B0: 92 93 4D 30 34 39 4D 36 32 30 0A 10 00 A0 15 93  ..M049M620......
    07C0: 4D 30 34 39 4D 36 32 30 0A 45 00 7B 62 0C FF FF  M049M620.E.{b...
    07D0: FB FF 62 A0 19 92 93 62 43 44 57 32 70 62 43 44  ..b....bCDW2pbCD
    07E0: 57 32 7D 43 44 57 31 0A 10 43 44 57 31 A0 47 05  W2}CDW1..CDW1.G.
    07F0: 90 92 93 7B 43 44 57 31 01 00 01 5B 12 5C 2E 5F  ...{CDW1...[.\._
    0800: 53 42 5F 4D 36 32 35 00 A0 3C 92 93 4D 36 32 30  SB_M625..<..M620
    0810: 00 A0 33 92 93 4D 30 34 39 4D 36 32 30 0A 10 00  ..3..M049M620...
    0820: 70 4D 30 34 39 4D 36 32 30 0A 43 64 70 5C 2E 5F  pM049M620.Cdp\._
    0830: 53 42 5F 4D 36 32 35 72 0B 02 01 79 64 0A 10 00  SB_M625r...yd...
    0840: 00 0B E8 03 61 A1 0C 7D 43 44 57 31 0A 08 43 44  ....a..}CDW1..CD
    0850: 57 31 A1 0C 7D 43 44 57 31 0A 04 43 44 57 31 A0  W1..}CDW1..CDW1.
    0860: 48 04 93 6A 01 4D 34 36 30 0D 20 20 46 45 41 2D  H..j.M460.  FEA-
    0870: 41 53 4C 2D 5C 5F 53 42 2E 5F 4F 53 43 20 55 55  ASL-\_SB._OSC UU
    0880: 49 44 20 30 78 25 58 20 52 65 74 75 72 6E 20 43  ID 0x%X Return C
    0890: 44 57 31 20 3D 20 30 78 25 58 0A 00 55 49 44 30  DW1 = 0x%X..UID0
    08A0: 43 44 57 31 00 00 00 00 A1 4F 0B A0 48 05 93 6A  CDW1.....O..H..j
    08B0: 0A 02 4D 34 36 30 0D 20 20 46 45 41 2D 41 53 4C  ..M460.  FEA-ASL
    08C0: 2D 5C 5F 53 42 2E 5F 4F 53 43 20 55 55 49 44 20  -\_SB._OSC UUID 
    08D0: 30 78 25 58 20 52 65 74 75 72 6E 20 43 44 57 31  0x%X Return CDW1
    08E0: 20 3D 20 30 78 25 58 20 43 44 57 32 20 3D 20 30   = 0x%X CDW2 = 0
    08F0: 78 25 58 0A 00 55 49 44 30 43 44 57 31 43 44 57  x%X..UID0CDW1CDW
    0900: 32 00 00 00 A1 43 06 4D 34 36 30 0D 20 20 46 45  2....C.M460.  FE
    0910: 41 2D 41 53 4C 2D 5C 5F 53 42 2E 5F 4F 53 43 20  A-ASL-\_SB._OSC 
    0920: 55 55 49 44 20 30 78 25 58 20 52 65 74 75 72 6E  UUID 0x%X Return
    0930: 20 43 44 57 31 20 3D 20 30 78 25 58 20 43 44 57   CDW1 = 0x%X CDW
    0940: 32 20 3D 20 30 78 25 58 20 43 44 57 33 20 3D 20  2 = 0x%X CDW3 = 
    0950: 30 78 25 58 0A 00 55 49 44 30 43 44 57 31 43 44  0x%X..UID0CDW1CD
    0960: 57 32 43 44 57 33 00 00 A4 6B                    W2CDW3...k

DSDT @ 0x0000000000000000
    0000: 44 53 44 54 F6 D2 00 00 02 14 41 4D 44 20 20 20  DSDT......AMD   
    0010: 41 20 4D 20 49 20 00 00 01 00 00 00 49 4E 54 4C  A M I ......INTL
    0020: 31 03 23 20 A0 4D 53 00 15 5C 2F 03 5F 53 42 5F  1.# .MS..\/._SB_
    0030: 50 43 49 33 50 4F 53 53 05 00 15 5C 2F 03 5F 53  PCI3POSS...\/._S
    0040: 42 5F 50 43 49 33 50 4F 53 43 05 00 15 5C 2F 03  B_PCI3POSC...\/.
    0050: 5F 53 42 5F 50 43 49 32 50 4F 53 53 05 00 15 5C  _SB_PCI2POSS...\
    0060: 2F 03 5F 53 42 5F 50 43 49 32 50 4F 53 43 05 00  /._SB_PCI2POSC..
    0070: 15 5C 2E 5F 53 42 5F 41 50 54 53 08 01 15 5C 2E  .\._SB_APTS...\.
    0080: 5F 53 42 5F 41 57 41 4B 08 01 15 5C 2F 03 5F 53  _SB_AWAK...\/._S
    0090: 42 5F 50 43 49 30 50 4F 53 53 05 00 15 5C 2F 03  B_PCI0POSS...\/.
    00A0: 5F 53 42 5F 50 43 49 30 50 4F 53 43 05 00 15 5C  _SB_PCI0POSC...\
    00B0: 2F 03 5F 53 42 5F 50 43 49 31 50 4F 53 53 05 00  /._SB_PCI1POSS..
    00C0: 15 5C 2F 03 5F 53 42 5F 50 43 49 31 50 4F 53 43  .\/._SB_PCI1POSC
    00D0: 05 00 15 5C 4D 31 31 35 03 00 15 5C 4D 31 31 36  ...\M115...\M116
    00E0: 0E 00 15 5C 4D 31 31 37 0E 00 15 5C 4D 31 31 38  ...\M117...\M118
    00F0: 0E 00 15 5C 4D 31 31 39 0E 00 15 5C 4D 31 32 30  ...\M119...\M120
    0100: 0E 00 15 5C 4D 30 33 37 06 00 15 5C 4D 32 32 37  ...\M037...\M227
    0110: 06 00 15 5C 4D 33 32 39 06 00 15 5C 4D 33 32 41  ...\M329...\M32A
    0120: 06 00 15 5C 4D 33 32 42 06 00 15 5C 4D 33 32 43  ...\M32B...\M32C
    0130: 06 00 15 5C 4D 33 33 30 06 00 15 5C 4D 30 38 32  ...\M330...\M082
    0140: 05 00 15 5C 4D 30 38 33 05 00 15 5C 4D 30 38 34  ...\M083...\M084
    0150: 05 00 15 5C 4D 30 38 35 05 00 15 5C 4D 32 32 31  ...\M085...\M221
    0160: 05 00 15 5C 4D 30 38 36 05 00 15 5C 4D 32 32 39  ...\M086...\M229
    0170: 05 00 15 5C 4D 32 33 31 05 00 15 5C 4D 32 33 35  ...\M231...\M235
    0180: 05 00 15 5C 4D 32 33 33 05 00 15 5C 4D 30 38 37  ...\M233...\M087
    0190: 05 00 15 5C 4D 30 38 38 05 00 15 5C 4D 30 38 39  ...\M088...\M089
    01A0: 05 00 15 5C 4D 30 39 30 05 00 15 5C 4D 30 39 31  ...\M090...\M091
    01B0: 05 00 15 5C 4D 30 39 32 05 00 15 5C 4D 30 39 33  ...\M092...\M093
    01C0: 05 00 15 5C 4D 30 39 34 05 00 15 5C 4D 30 39 35  ...\M094...\M095
    01D0: 05 00 15 5C 4D 30 39 36 05 00 15 5C 4D 30 39 37  ...\M096...\M097
    01E0: 05 00 15 5C 4D 30 39 38 05 00 15 5C 4D 30 39 39  ...\M098...\M099
    01F0: 05 00 15 5C 4D 31 30 30 05 00 15 5C 4D 31 30 31  ...\M100...\M101
    0200: 05 00 15 5C 4D 31 30 32 05 00 15 5C 4D 31 30 33  ...\M102...\M103
    0210: 05 00 15 5C 4D 31 30 34 05 00 15 5C 4D 31 30 35  ...\M104...\M105
    0220: 05 00 15 5C 4D 31 30 36 05 00 15 5C 4D 31 30 37  ...\M106...\M107
    0230: 05 00 15 5C 4D 31 32 38 05 00 15 5C 4D 31 30 38  ...\M128...\M108
    0240: 05 00 15 5C 4D 31 30 39 05 00 15 5C 4D 31 31 30  ...\M109...\M110
    0250: 05 00 15 5C 4D 31 32 32 05 00 15 5C 4D 31 33 31  ...\M122...\M131
    0260: 05 00 15 5C 4D 31 33 32 05 00 15 5C 4D 32 32 36  ...\M132...\M226
    0270: 05 00 15 5C 4D 31 33 33 05 00 15 5C 4D 31 33 34  ...\M133...\M134
    0280: 05 00 15 5C 4D 31 33 35 05 00 15 5C 4D 31 33 36  ...\M135...\M136
    0290: 05 00 15 5C 4D 32 32 30 05 00 15 5C 4D 30 34 36  ...\M220...\M046
    02A0: 01 00 15 5C 4D 30 34 37 01 00 15 5C 4D 32 35 31  ...\M047...\M251
    02B0: 05 00 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43  ...\M310...\M31C
    02C0: 05 00 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31  ...\M320...\M321
    02D0: 05 00 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33  ...\M322...\M323
    02E0: 05 00 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35  ...\M324...\M325
    02F0: 05 00 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37  ...\M326...\M327
    0300: 05 00 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30  ...\M328...\M280
    0310: 05 00 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38  ...\M290...\M378
    0320: 05 00 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30  ...\M379...\M380
    0330: 05 00 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32  ...\M381...\M382
    0340: 05 00 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34  ...\M383...\M384
    0350: 05 00 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36  ...\M385...\M386
    0360: 05 00 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38  ...\M387...\M388
    0370: 05 00 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30  ...\M389...\M390
    0380: 05 00 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32  ...\M391...\M392
    0390: 05 00 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30  ...\M331...\M620
    03A0: 05 00 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38  ...\M404...\M408
    03B0: 09 00 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34  ...\M414...\M444
    03C0: 05 00 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34  ...\M453...\M454
    03D0: 05 00 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36  ...\M455...\M456
    03E0: 05 00 15 5C 4D 34 35 37 05 00 15 5C 4D 34 34 39  ...\M457...\M449
    03F0: 05 00 15 5C 4D 34 43 30 05 00 15 5C 4D 32 33 41  ...\M4C0...\M23A
    0400: 05 00 15 5C 4D 34 46 30 05 00 15 5C 4D 36 31 30  ...\M4F0...\M610
    0410: 05 00 15 5C 4D 36 30 30 08 02 15 5C 4D 36 30 31  ...\M600...\M601
    0420: 08 06 15 5C 4D 32 39 41 05 00 15 5C 4D 36 33 31  ...\M29A...\M631
    0430: 05 00 15 5C 4D 36 35 32 05 00 15 5C 4D 30 35 30  ...\M652...\M050
    0440: 06 00 15 5C 4D 30 35 31 06 00 15 5C 4D 30 35 32  ...\M051...\M052
    0450: 06 00 15 5C 4D 30 35 33 06 00 15 5C 4D 30 35 34  ...\M053...\M054
    0460: 06 00 15 5C 4D 30 35 35 06 00 15 5C 4D 30 35 36  ...\M055...\M056
    0470: 06 00 15 5C 4D 30 35 37 06 00 15 5C 4D 30 35 38  ...\M057...\M058
    0480: 06 00 15 5C 4D 30 35 39 06 00 15 5C 4D 30 36 32  ...\M059...\M062
    0490: 06 00 15 5C 4D 30 36 38 06 00 15 5C 4D 30 36 39  ...\M068...\M069
    04A0: 06 00 15 5C 4D 30 37 30 06 00 15 5C 4D 30 37 31  ...\M070...\M071
    04B0: 06 00 15 5C 4D 30 37 32 06 00 15 5C 4D 30 37 34  ...\M072...\M074
    04C0: 06 00 15 5C 4D 30 37 35 06 00 15 5C 4D 30 37 36  ...\M075...\M076
    04D0: 06 00 15 5C 4D 30 37 37 06 00 15 5C 4D 30 37 38  ...\M077...\M078
    04E0: 06 00 15 5C 4D 30 37 39 06 00 15 5C 4D 30 38 30  ...\M079...\M080
    04F0: 06 00 15 5C 4D 30 38 31 06 00 15 5C 4D 31 32 37  ...\M081...\M127
    0500: 06 00 15 5C 4D 50 54 53 08 01 15 5C 4D 57 41 4B  ...\MPTS...\MWAK
    0510: 08 01 15 5C 2F 03 5F 53 42 5F 50 43 49 30 50 50  ...\/._SB_PCI0PP
    0520: 4D 45 08 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31  ME...\/._SB_PCI1
    0530: 50 50 4D 45 08 00 15 5C 2F 03 5F 53 42 5F 50 43  PPME...\/._SB_PC
    0540: 49 32 50 50 4D 45 08 00 15 5C 2F 03 5F 53 42 5F  I2PPME...\/._SB_
    0550: 50 43 49 33 50 50 4D 45 08 00 15 5C 43 52 42 49  PCI3PPME...\CRBI
    0560: 00 00 08 45 4E 54 4B 0A 87 08 45 58 54 4B 0A AA  ...ENTK...EXTK..
    0570: 08 49 4F 31 42 0B 90 02 08 49 4F 31 4C 0A 10 08  .IO1B....IO1L...
    0580: 49 4F 32 42 0B A0 02 08 49 4F 32 4C 0A 10 08 49  IO2B....IO2L...I
    0590: 4F 33 42 0B 90 02 08 49 4F 33 4C 0A 10 08 49 4F  O3B....IO3L...IO
    05A0: 34 42 0B A0 02 08 49 4F 34 4C 0A 10 08 53 50 31  4B....IO4L...SP1
    05B0: 4F 0A 2E 08 4B 42 46 47 00 08 4D 53 46 47 00 08  O...KBFG..MSFG..
    05C0: 49 4F 45 53 00 08 50 45 42 4C 0C 00 00 00 10 08  IOES..PEBL......
    05D0: 4E 42 54 53 0B 00 50 08 43 50 56 44 01 08 53 4D  NBTS..P.CPVD..SM
    05E0: 42 42 0B 20 0B 08 53 4D 42 4C 0A 20 08 53 4D 42  BB. ..SMBL. .SMB
    05F0: 30 0B 00 0B 08 53 4D 42 4D 0A 10 08 50 4D 42 53  0....SMBM...PMBS
    0600: 0B 00 08 08 50 4D 4C 4E 0A A0 08 53 4D 49 4F 0A  ....PMLN...SMIO.
    0610: B2 08 47 50 42 53 00 08 47 50 4C 4E 00 08 41 50  ..GPBS..GPLN..AP
    0620: 43 42 0C 00 00 C0 FE 08 41 50 43 4C 0B 00 10 08  CB......APCL....
    0630: 48 50 54 42 0C 00 00 D0 FE 08 57 44 54 42 00 08  HPTB......WDTB..
    0640: 57 44 54 4C 00 08 47 49 4F 42 0C 00 15 D8 FE 08  WDTL..GIOB......
    0650: 49 4F 4D 42 0C 00 0D D8 FE 08 53 53 4D 42 0C 00  IOMB......SSMB..
    0660: 02 D8 FE 08 55 54 44 42 00 08 4E 42 54 50 0C 00  ....UTDB..NBTP..
    0670: 00 C3 FE 08 41 53 53 42 00 08 41 4F 54 42 00 08  ....ASSB..AOTB..
    0680: 41 41 58 42 00 08 50 45 48 50 01 08 53 48 50 43  AAXB..PEHP..SHPC
    0690: 01 08 50 45 50 4D 01 08 50 45 45 52 01 08 50 45  ..PEPM..PEER..PE
    06A0: 43 53 01 08 49 54 4B 45 00 08 50 45 42 53 0C 00  CS..ITKE..PEBS..
    06B0: 00 00 E0 08 50 45 4C 4E 0C 00 00 00 10 08 43 53  ....PELN......CS
    06C0: 4D 49 0A 61 08 44 53 53 50 00 08 46 48 50 50 01  MI.a.DSSP..FHPP.
    06D0: 08 53 4D 49 41 0A B2 08 53 4D 49 42 0A B3 08 4F  .SMIA...SMIB...O
    06E0: 46 53 54 0A 35 08 54 52 53 54 0A 02 08 54 43 4D  FST.5.TRST...TCM
    06F0: 46 00 08 54 4D 46 31 00 08 54 4D 46 32 00 08 54  F..TMF1..TMF2..T
    0700: 4D 46 33 00 08 54 54 50 46 01 08 44 54 50 54 00  MF3..TTPF..DTPT.
    0710: 08 54 54 44 50 00 08 54 50 4D 42 0C FF FF FF FF  .TTDP..TPMB.....
    0720: 08 54 50 42 53 0B 00 10 08 54 50 4D 43 0C FF FF  .TPBS....TPMC...
    0730: FF FF 08 54 50 43 53 0B 00 10 08 54 50 4D 4D 0C  ...TPCS....TPMM.
    0740: 00 00 D4 FE 08 46 54 50 4D 0C FF FF FF FF 08 50  .....FTPM......P
    0750: 50 49 4D 0C 18 EA 47 A9 08 50 50 49 4C 0A 1C 08  PIM...G..PPIL...
    0760: 41 4D 44 54 00 08 54 50 4D 46 00 08 50 50 49 56  AMDT..TPMF..PPIV
    0770: 00 08 4D 42 45 43 00 14 27 5F 50 49 43 01 A0 1B  ..MBEC..'_PIC...
    0780: 68 5C 2E 5F 53 42 5F 44 53 50 49 5C 2F 03 5F 53  h\._SB_DSPI\/._S
    0790: 42 5F 50 43 49 30 4E 41 50 45 50 58 58 58 68 08  B_PCI0NAPEPXXXh.
    07A0: 50 49 43 4D 00 14 1F 50 58 58 58 01 A0 09 68 70  PICM...PXXX...hp
    07B0: 0A AA 44 42 47 38 A1 08 70 0A AC 44 42 47 38 70  ..DBG8..p..DBG8p
    07C0: 68 50 49 43 4D 08 4F 53 56 52 FF 14 45 28 4F 53  hPICM.OSVR..E(OS
    07D0: 46 4C 00 A0 0D 92 93 4F 53 56 52 FF A4 4F 53 56  FL.....OSVR..OSV
    07E0: 52 A0 0E 93 50 49 43 4D 00 70 0A AC 44 42 47 38  R...PICM.p..DBG8
    07F0: 70 0A 03 4F 53 56 52 A0 4A 16 5B 12 5C 5F 4F 53  p..OSVR.J.[.\_OS
    0800: 49 00 A0 1A 5F 4F 53 49 0D 57 69 6E 64 6F 77 73  I..._OSI.Windows
    0810: 20 32 30 30 31 00 70 0A 04 4F 53 56 52 A0 1C 5F   2001.p..OSVR.._
    0820: 4F 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 30 31  OSI.Windows 2001
    0830: 2E 31 00 70 0A 05 4F 53 56 52 A0 15 5F 4F 53 49  .1.p..OSVR.._OSI
    0840: 0D 46 72 65 65 42 53 44 00 70 0A 06 4F 53 56 52  .FreeBSD.p..OSVR
    0850: A0 13 5F 4F 53 49 0D 48 50 2D 55 58 00 70 0A 07  .._OSI.HP-UX.p..
    0860: 4F 53 56 52 A0 15 5F 4F 53 49 0D 4F 70 65 6E 56  OSVR.._OSI.OpenV
    0870: 4D 53 00 70 0A 08 4F 53 56 52 A0 1E 5F 4F 53 49  MS.p..OSVR.._OSI
    0880: 0D 57 69 6E 64 6F 77 73 20 32 30 30 31 20 53 50  .Windows 2001 SP
    0890: 31 00 70 0A 09 4F 53 56 52 A0 1E 5F 4F 53 49 0D  1.p..OSVR.._OSI.
    08A0: 57 69 6E 64 6F 77 73 20 32 30 30 31 20 53 50 32  Windows 2001 SP2
    08B0: 00 70 0A 0A 4F 53 56 52 A0 1E 5F 4F 53 49 0D 57  .p..OSVR.._OSI.W
    08C0: 69 6E 64 6F 77 73 20 32 30 30 31 20 53 50 33 00  indows 2001 SP3.
    08D0: 70 0A 0B 4F 53 56 52 A0 1A 5F 4F 53 49 0D 57 69  p..OSVR.._OSI.Wi
    08E0: 6E 64 6F 77 73 20 32 30 30 36 00 70 0A 0C 4F 53  ndows 2006.p..OS
    08F0: 56 52 A0 1E 5F 4F 53 49 0D 57 69 6E 64 6F 77 73  VR.._OSI.Windows
    0900: 20 32 30 30 36 20 53 50 31 00 70 0A 0D 4F 53 56   2006 SP1.p..OSV
    0910: 52 A0 1A 5F 4F 53 49 0D 57 69 6E 64 6F 77 73 20  R.._OSI.Windows 
    0920: 32 30 30 39 00 70 0A 0E 4F 53 56 52 A0 1A 5F 4F  2009.p..OSVR.._O
    0930: 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 31 32 00  SI.Windows 2012.
    0940: 70 0A 0F 4F 53 56 52 A0 1A 5F 4F 53 49 0D 57 69  p..OSVR.._OSI.Wi
    0950: 6E 64 6F 77 73 20 32 30 31 33 00 70 0A 10 4F 53  ndows 2013.p..OS
    0960: 56 52 A1 49 0E A0 25 4D 43 54 48 5F 4F 53 5F 0D  VR.I..%MCTH_OS_.
    0970: 4D 69 63 72 6F 73 6F 66 74 20 57 69 6E 64 6F 77  Microsoft Window
    0980: 73 20 4E 54 00 70 00 4F 53 56 52 A0 22 4D 43 54  s NT.p.OSVR."MCT
    0990: 48 5F 4F 53 5F 0D 4D 69 63 72 6F 73 6F 66 74 20  H_OS_.Microsoft 
    09A0: 57 69 6E 64 6F 77 73 00 70 01 4F 53 56 52 A0 39  Windows.p.OSVR.9
    09B0: 4D 43 54 48 5F 4F 53 5F 0D 4D 69 63 72 6F 73 6F  MCTH_OS_.Microso
    09C0: 66 74 20 57 69 6E 64 6F 77 73 4D 45 3A 20 4D 69  ft WindowsME: Mi
    09D0: 6C 6C 65 6E 6E 69 75 6D 20 45 64 69 74 69 6F 6E  llennium Edition
    09E0: 00 70 0A 02 4F 53 56 52 A0 17 4D 43 54 48 5F 4F  .p..OSVR..MCTH_O
    09F0: 53 5F 0D 4C 69 6E 75 78 00 70 0A 03 4F 53 56 52  S_.Linux.p..OSVR
    0A00: A0 19 4D 43 54 48 5F 4F 53 5F 0D 46 72 65 65 42  ..MCTH_OS_.FreeB
    0A10: 53 44 00 70 0A 06 4F 53 56 52 A0 17 4D 43 54 48  SD.p..OSVR..MCTH
    0A20: 5F 4F 53 5F 0D 48 50 2D 55 58 00 70 0A 07 4F 53  _OS_.HP-UX.p..OS
    0A30: 56 52 A0 19 4D 43 54 48 5F 4F 53 5F 0D 4F 70 65  VR..MCTH_OS_.Ope
    0A40: 6E 56 4D 53 00 70 0A 08 4F 53 56 52 A4 4F 53 56  nVMS.p..OSVR.OSV
    0A50: 52 14 4E 04 4D 43 54 48 02 A0 08 95 87 68 87 69  R.N.MCTH.....h.i
    0A60: A4 00 72 87 68 01 60 08 42 55 46 30 11 02 60 08  ..r.h.`.BUF0..`.
    0A70: 42 55 46 31 11 02 60 70 68 42 55 46 30 70 69 42  BUF1..`phBUF0piB
    0A80: 55 46 31 A2 1A 60 76 60 A0 15 92 93 83 88 42 55  UF1..`v`......BU
    0A90: 46 30 60 00 83 88 42 55 46 31 60 00 A4 00 A4 01  F0`...BUF1`.....
    0AA0: 08 50 52 57 50 12 04 02 00 00 14 4B 07 47 50 52  .PRWP......K.GPR
    0AB0: 57 02 70 68 88 50 52 57 50 00 00 70 79 53 53 31  W.ph.PRWP..pySS1
    0AC0: 5F 01 00 60 7D 60 79 53 53 32 5F 0A 02 00 60 7D  _..`}`ySS2_...`}
    0AD0: 60 79 53 53 33 5F 0A 03 00 60 7D 60 79 53 53 34  `ySS3_...`}`ySS4
    0AE0: 5F 0A 04 00 60 A0 11 7B 79 01 69 00 60 00 70 69  _...`..{y.i.`.pi
    0AF0: 88 50 52 57 50 01 00 A1 29 7A 60 01 60 A0 18 91  .PRWP...)z`.`...
    0B00: 93 4F 53 46 4C 01 93 4F 53 46 4C 0A 02 81 60 88  .OSFL..OSFL...`.
    0B10: 50 52 57 50 01 00 A1 0A 82 60 88 50 52 57 50 01  PRWP.....`.PRWP.
    0B20: 00 A4 50 52 57 50 08 57 41 4B 50 12 04 02 00 00  ..PRWP.WAKP.....
    0B30: 14 24 55 50 57 50 01 A0 12 83 88 57 41 4B 50 00  .$UPWP.....WAKP.
    0B40: 00 70 00 88 57 41 4B 50 01 00 A1 0A 70 68 88 57  .p..WAKP....ph.W
    0B50: 41 4B 50 01 00 5B 80 44 45 42 30 01 0A 80 01 5B  AKP..[.DEB0....[
    0B60: 81 0B 44 45 42 30 01 44 42 47 38 08 5B 80 44 45  ..DEB0.DBG8.[.DE
    0B70: 42 31 01 0A 90 0A 02 5B 81 0B 44 45 42 31 02 44  B1.....[..DEB1.D
    0B80: 42 47 39 10 08 53 53 31 5F 00 08 53 53 32 5F 00  BG9..SS1_..SS2_.
    0B90: 08 53 53 33 5F 01 08 53 53 34 5F 01 08 49 4F 53  .SS3_..SS4_..IOS
    0BA0: 54 0B 01 00 08 54 4F 50 4D 0C 00 00 00 00 08 52  T....TOPM......R
    0BB0: 4F 4D 53 0C 00 00 E0 FF 08 56 47 41 46 01 5B 80  OMS......VGAF.[.
    0BC0: 44 45 42 32 01 0A 80 0A 02 5B 81 0B 44 45 42 32  DEB2.....[..DEB2
    0BD0: 02 50 38 30 48 10 08 4F 53 54 59 FF 5B 80 41 43  .P80H..OSTY.[.AC
    0BE0: 4D 53 01 0A 72 0A 02 5B 81 10 41 43 4D 53 01 41  MS..r..[..ACMS.A
    0BF0: 43 4D 58 08 41 43 4D 41 08 5B 86 12 41 43 4D 58  CMX.ACMA.[..ACMX
    0C00: 41 43 4D 41 01 00 48 5C 49 4D 45 4E 08 5B 80 50  ACMA..H\IMEN.[.P
    0C10: 53 4D 49 01 53 4D 49 4F 0A 02 5B 81 10 50 53 4D  SMI.SMIO..[..PSM
    0C20: 49 01 41 50 4D 43 08 41 50 4D 44 08 5B 80 50 4D  I.APMC.APMD.[.PM
    0C30: 52 47 00 0C 00 03 D8 FE 0B 00 01 5B 81 27 50 4D  RG.........[.'PM
    0C40: 52 47 00 00 06 48 50 45 4E 01 00 49 2F 50 31 45  RG...HPEN..I/P1E
    0C50: 42 10 00 40 0F 53 49 33 52 01 00 4F 37 00 03 52  B..@.SI3R..O7..R
    0C60: 53 54 55 01 5B 80 47 53 4D 4D 00 0C 00 00 D8 FE  STU.[.GSMM......
    0C70: 0B 00 10 5B 81 37 47 53 4D 4D 00 00 80 44 01 00  ...[.7GSMM...D..
    0C80: 01 43 4C 50 53 01 00 4E 06 00 07 54 4D 53 45 01  .CLPS..N...TMSE.
    0C90: 00 48 0C 00 02 53 4C 50 53 02 00 44 85 00 06 50  .H...SLPS..D...P
    0CA0: 57 44 45 01 00 41 14 42 4C 4E 4B 02 5B 80 50 31  WDE..A.BLNK.[.P1
    0CB0: 45 30 01 50 31 45 42 0A 04 5B 81 1D 50 31 45 30  E0.P1EB..[..P1E0
    0CC0: 01 00 08 00 06 50 45 57 53 01 57 53 54 41 01 00  .....PEWS.WSTA..
    0CD0: 08 00 06 50 45 57 44 01 5B 80 49 4F 43 43 01 50  ...PEWD.[.IOCC.P
    0CE0: 4D 42 53 0A 80 5B 81 0F 49 4F 43 43 01 00 08 00  MBS..[..IOCC....
    0CF0: 02 52 54 43 53 01 14 4F 06 53 50 54 53 01 70 68  .RTCS..O.SPTS.ph
    0D00: 50 38 30 48 A0 0B 93 68 0A 03 70 01 42 4C 4E 4B  P80H...h..p.BLNK
    0D10: A0 10 91 93 68 0A 04 93 68 0A 05 70 00 42 4C 4E  ....h...h..p.BLN
    0D20: 4B A0 0B 93 68 0A 03 70 00 52 53 54 55 70 01 43  K...h..p.RSTUp.C
    0D30: 4C 50 53 70 01 53 4C 50 53 70 50 45 57 53 50 45  LPSp.SLPSpPEWSPE
    0D40: 57 53 A0 0B 93 68 0A 03 70 01 53 4C 50 53 A0 11  WS...h..p.SLPS..
    0D50: 93 68 0A 04 70 01 53 4C 50 53 70 01 52 53 54 55  .h..p.SLPSp.RSTU
    0D60: A0 05 93 68 0A 05 14 4B 06 53 57 41 4B 01 70 0A  ...h...K.SWAK.p.
    0D70: 03 42 4C 4E 4B A0 0B 93 68 0A 03 70 01 52 53 54  .BLNK...h..p.RST
    0D80: 55 70 50 45 57 53 50 45 57 53 70 00 50 45 57 44  UpPEWSPEWSp.PEWD
    0D90: A0 0F 50 49 43 4D 5C 2E 5F 53 42 5F 44 53 50 49  ..PICM\._SB_DSPI
    0DA0: A0 0B 54 4D 53 45 70 00 54 4D 53 45 A0 12 93 68  ..TMSEp.TMSE...h
    0DB0: 0A 03 86 5C 2E 5F 53 42 5F 50 57 52 42 0A 02 A0  ...\._SB_PWRB...
    0DC0: 12 93 68 0A 04 86 5C 2E 5F 53 42 5F 50 57 52 42  ..h...\._SB_PWRB
    0DD0: 0A 02 10 05 5F 47 50 45 10 8D 27 03 5F 53 42 5F  ...._GPE..'._SB_
    0DE0: 08 50 52 53 41 11 09 0A 06 23 B0 CC 18 79 00 06  .PRSA....#...y..
    0DF0: 50 52 53 41 50 52 53 42 06 50 52 53 41 50 52 53  PRSAPRSB.PRSAPRS
    0E00: 43 06 50 52 53 41 50 52 53 44 06 50 52 53 41 50  C.PRSAPRSD.PRSAP
    0E10: 52 53 45 06 50 52 53 41 50 52 53 46 06 50 52 53  RSE.PRSAPRSF.PRS
    0E20: 41 50 52 53 47 06 50 52 53 41 50 52 53 48 08 50  APRSG.PRSAPRSH.P
    0E30: 44 45 30 12 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B  DE0..........LNK
    0E40: 41 00 08 41 52 45 30 12 0C 01 12 09 04 0B FF FF  A..ARE0.........
    0E50: 00 00 0A 98 08 50 44 45 31 12 0E 01 12 0B 04 0B  .....PDE1.......
    0E60: FF FF 00 4C 4E 4B 41 00 08 41 52 45 31 12 0C 01  ...LNKA..ARE1...
    0E70: 12 09 04 0B FF FF 00 00 0A 98 08 50 44 45 32 12  ...........PDE2.
    0E80: 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 08 41  .........LNKA..A
    0E90: 52 45 32 12 0C 01 12 09 04 0B FF FF 00 00 0A 98  RE2.............
    0EA0: 08 50 44 45 33 12 0E 01 12 0B 04 0B FF FF 00 4C  .PDE3..........L
    0EB0: 4E 4B 41 00 08 41 52 45 33 12 0C 01 12 09 04 0B  NKA..ARE3.......
    0EC0: FF FF 00 00 0A 98 08 50 44 45 34 12 0E 01 12 0B  .......PDE4.....
    0ED0: 04 0B FF FF 00 4C 4E 4B 41 00 08 41 52 45 34 12  .....LNKA..ARE4.
    0EE0: 0C 01 12 09 04 0B FF FF 00 00 0A 98 08 50 44 45  .............PDE
    0EF0: 35 12 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B 41 00  5..........LNKA.
    0F00: 08 41 52 45 35 12 0C 01 12 09 04 0B FF FF 00 00  .ARE5...........
    0F10: 0A 98 08 50 44 45 36 12 0E 01 12 0B 04 0B FF FF  ...PDE6.........
    0F20: 00 4C 4E 4B 41 00 08 41 52 45 36 12 0C 01 12 09  .LNKA..ARE6.....
    0F30: 04 0B FF FF 00 00 0A 98 08 50 44 45 37 12 0E 01  .........PDE7...
    0F40: 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 08 41 52 45  .......LNKA..ARE
    0F50: 37 12 0C 01 12 09 04 0B FF FF 00 00 0A 98 08 50  7..............P
    0F60: 44 45 38 12 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B  DE8..........LNK
    0F70: 41 00 08 41 52 45 38 12 0C 01 12 09 04 0B FF FF  A..ARE8.........
    0F80: 00 00 0A 98 08 50 44 45 39 12 0E 01 12 0B 04 0B  .....PDE9.......
    0F90: FF FF 00 4C 4E 4B 41 00 08 41 52 45 39 12 0C 01  ...LNKA..ARE9...
    0FA0: 12 09 04 0B FF FF 00 00 0A 98 08 50 44 45 41 12  ...........PDEA.
    0FB0: 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 08 41  .........LNKA..A
    0FC0: 52 45 41 12 0C 01 12 09 04 0B FF FF 00 00 0A 98  REA.............
    0FD0: 08 50 44 45 42 12 0E 01 12 0B 04 0B FF FF 00 4C  .PDEB..........L
    0FE0: 4E 4B 41 00 08 41 52 45 42 12 0C 01 12 09 04 0B  NKA..AREB.......
    0FF0: FF FF 00 00 0A 98 08 50 44 45 43 12 0E 01 12 0B  .......PDEC.....
    1000: 04 0B FF FF 00 4C 4E 4B 41 00 08 41 52 45 43 12  .....LNKA..AREC.
    1010: 0C 01 12 09 04 0B FF FF 00 00 0A 98 08 50 44 45  .............PDE
    1020: 44 12 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B 41 00  D..........LNKA.
    1030: 08 41 52 45 44 12 0C 01 12 09 04 0B FF FF 00 00  .ARED...........
    1040: 0A 98 08 50 44 45 45 12 0E 01 12 0B 04 0B FF FF  ...PDEE.........
    1050: 00 4C 4E 4B 41 00 08 41 52 45 45 12 0C 01 12 09  .LNKA..AREE.....
    1060: 04 0B FF FF 00 00 0A 98 08 50 44 45 46 12 0E 01  .........PDEF...
    1070: 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 08 41 52 45  .......LNKA..ARE
    1080: 46 12 0C 01 12 09 04 0B FF FF 00 00 0A 98 08 50  F..............P
    1090: 44 30 33 12 41 11 13 12 0B 04 0B FF FF 00 4C 4E  D03.A.........LN
    10A0: 4B 42 00 12 0D 04 0C FF FF 01 00 00 4C 4E 4B 41  KB..........LNKA
    10B0: 00 12 0D 04 0C FF FF 01 00 01 4C 4E 4B 41 00 12  ..........LNKA..
    10C0: 0E 04 0C FF FF 01 00 0A 02 4C 4E 4B 41 00 12 0E  .........LNKA...
    10D0: 04 0C FF FF 01 00 0A 03 4C 4E 4B 41 00 12 0D 04  ........LNKA....
    10E0: 0C FF FF 02 00 00 4C 4E 4B 41 00 12 0D 04 0C FF  ......LNKA......
    10F0: FF 02 00 01 4C 4E 4B 41 00 12 0D 04 0C FF FF 03  ....LNKA........
    1100: 00 00 4C 4E 4B 42 00 12 0D 04 0C FF FF 03 00 01  ..LNKB..........
    1110: 4C 4E 4B 42 00 12 0E 04 0C FF FF 03 00 0A 02 4C  LNKB...........L
    1120: 4E 4B 42 00 12 0E 04 0C FF FF 03 00 0A 03 4C 4E  NKB...........LN
    1130: 4B 42 00 12 0D 04 0C FF FF 04 00 00 4C 4E 4B 42  KB..........LNKB
    1140: 00 12 0D 04 0C FF FF 04 00 01 4C 4E 4B 42 00 12  ..........LNKB..
    1150: 0D 04 0C FF FF 05 00 00 4C 4E 4B 43 00 12 0D 04  ........LNKC....
    1160: 0C FF FF 05 00 01 4C 4E 4B 43 00 12 0E 04 0C FF  ......LNKC......
    1170: FF 05 00 0A 02 4C 4E 4B 43 00 12 0E 04 0C FF FF  .....LNKC.......
    1180: 05 00 0A 03 4C 4E 4B 43 00 12 0D 04 0C FF FF 07  ....LNKC........
    1190: 00 00 4C 4E 4B 44 00 12 0D 04 0C FF FF 07 00 01  ..LNKD..........
    11A0: 4C 4E 4B 44 00 08 41 52 30 33 12 4B 0E 13 12 09  LNKD..AR03.K....
    11B0: 04 0B FF FF 00 00 0A 79 12 0B 04 0C FF FF 01 00  .......y........
    11C0: 00 00 0A 78 12 0B 04 0C FF FF 01 00 01 00 0A 78  ...x...........x
    11D0: 12 0C 04 0C FF FF 01 00 0A 02 00 0A 78 12 0C 04  ............x...
    11E0: 0C FF FF 01 00 0A 03 00 0A 78 12 0B 04 0C FF FF  .........x......
    11F0: 02 00 00 00 0A 78 12 0B 04 0C FF FF 02 00 01 00  .....x..........
    1200: 0A 78 12 0B 04 0C FF FF 03 00 00 00 0A 79 12 0B  .x...........y..
    1210: 04 0C FF FF 03 00 01 00 0A 79 12 0C 04 0C FF FF  .........y......
    1220: 03 00 0A 02 00 0A 79 12 0C 04 0C FF FF 03 00 0A  ......y.........
    1230: 03 00 0A 79 12 0B 04 0C FF FF 04 00 00 00 0A 79  ...y...........y
    1240: 12 0B 04 0C FF FF 04 00 01 00 0A 79 12 0B 04 0C  ...........y....
    1250: FF FF 05 00 00 00 0A 7A 12 0B 04 0C FF FF 05 00  .......z........
    1260: 01 00 0A 7A 12 0C 04 0C FF FF 05 00 0A 02 00 0A  ...z............
    1270: 7A 12 0C 04 0C FF FF 05 00 0A 03 00 0A 7A 12 0B  z............z..
    1280: 04 0C FF FF 07 00 00 00 0A 7B 12 0B 04 0C FF FF  .........{......
    1290: 07 00 01 00 0A 7B 08 50 30 32 35 12 34 04 12 0B  .....{.P025.4...
    12A0: 04 0B FF FF 00 4C 4E 4B 41 00 12 0B 04 0B FF FF  .....LNKA.......
    12B0: 01 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKB.........LN
    12C0: 4B 43 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00  KC.........LNKD.
    12D0: 08 47 30 32 35 12 2C 04 12 09 04 0B FF FF 00 00  .G025.,.........
    12E0: 0A 78 12 09 04 0B FF FF 01 00 0A 79 12 0A 04 0B  .x.........y....
    12F0: FF FF 0A 02 00 0A 7A 12 0A 04 0B FF FF 0A 03 00  ......z.........
    1300: 0A 7B 08 50 30 32 36 12 34 04 12 0B 04 0B FF FF  .{.P026.4.......
    1310: 00 4C 4E 4B 45 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKE........LNK
    1320: 46 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 47 00 12  F.........LNKG..
    1330: 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00 08 47 30 32  .......LNKH..G02
    1340: 36 12 2C 04 12 09 04 0B FF FF 00 00 0A 7C 12 09  6.,..........|..
    1350: 04 0B FF FF 01 00 0A 7D 12 0A 04 0B FF FF 0A 02  .......}........
    1360: 00 0A 7E 12 0A 04 0B FF FF 0A 03 00 0A 7F 08 50  ..~............P
    1370: 30 32 37 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  027.4........LNK
    1380: 41 00 12 0B 04 0B FF FF 01 4C 4E 4B 42 00 12 0C  A........LNKB...
    1390: 04 0B FF FF 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF  ......LNKC......
    13A0: FF 0A 03 4C 4E 4B 44 00 08 47 30 32 37 12 2C 04  ...LNKD..G027.,.
    13B0: 12 09 04 0B FF FF 00 00 0A 80 12 09 04 0B FF FF  ................
    13C0: 01 00 0A 81 12 0A 04 0B FF FF 0A 02 00 0A 82 12  ................
    13D0: 0A 04 0B FF FF 0A 03 00 0A 83 08 50 30 32 38 12  ...........P028.
    13E0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 45 00 12 0B  4........LNKE...
    13F0: 04 0B FF FF 01 4C 4E 4B 46 00 12 0C 04 0B FF FF  .....LNKF.......
    1400: 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKG.........L
    1410: 4E 4B 48 00 08 47 30 32 38 12 2C 04 12 09 04 0B  NKH..G028.,.....
    1420: FF FF 00 00 0A 84 12 09 04 0B FF FF 01 00 0A 85  ................
    1430: 12 0A 04 0B FF FF 0A 02 00 0A 86 12 0A 04 0B FF  ................
    1440: FF 0A 03 00 0A 87 08 50 30 32 39 12 34 04 12 0B  .......P029.4...
    1450: 04 0B FF FF 00 4C 4E 4B 41 00 12 0B 04 0B FF FF  .....LNKA.......
    1460: 01 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKB.........LN
    1470: 4B 43 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00  KC.........LNKD.
    1480: 08 47 30 32 39 12 2C 04 12 09 04 0B FF FF 00 00  .G029.,.........
    1490: 0A 88 12 09 04 0B FF FF 01 00 0A 89 12 0A 04 0B  ................
    14A0: FF FF 0A 02 00 0A 8A 12 0A 04 0B FF FF 0A 03 00  ................
    14B0: 0A 8B 08 50 30 32 41 12 34 04 12 0B 04 0B FF FF  ...P02A.4.......
    14C0: 00 4C 4E 4B 43 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKC........LNK
    14D0: 44 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 41 00 12  D.........LNKA..
    14E0: 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00 08 47 30 32  .......LNKB..G02
    14F0: 41 12 2C 04 12 09 04 0B FF FF 00 00 0A 8A 12 09  A.,.............
    1500: 04 0B FF FF 01 00 0A 8B 12 0A 04 0B FF FF 0A 02  ................
    1510: 00 0A 88 12 0A 04 0B FF FF 0A 03 00 0A 89 08 50  ...............P
    1520: 30 32 42 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  02B.4........LNK
    1530: 47 00 12 0B 04 0B FF FF 01 4C 4E 4B 48 00 12 0C  G........LNKH...
    1540: 04 0B FF FF 0A 02 4C 4E 4B 45 00 12 0C 04 0B FF  ......LNKE......
    1550: FF 0A 03 4C 4E 4B 46 00 08 47 30 32 42 12 2C 04  ...LNKF..G02B.,.
    1560: 12 09 04 0B FF FF 00 00 0A 86 12 09 04 0B FF FF  ................
    1570: 01 00 0A 87 12 0A 04 0B FF FF 0A 02 00 0A 84 12  ................
    1580: 0A 04 0B FF FF 0A 03 00 0A 85 08 50 30 32 43 12  ...........P02C.
    1590: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 43 00 12 0B  4........LNKC...
    15A0: 04 0B FF FF 01 4C 4E 4B 44 00 12 0C 04 0B FF FF  .....LNKD.......
    15B0: 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKA.........L
    15C0: 4E 4B 42 00 08 47 30 32 43 12 2C 04 12 09 04 0B  NKB..G02C.,.....
    15D0: FF FF 00 00 0A 82 12 09 04 0B FF FF 01 00 0A 83  ................
    15E0: 12 0A 04 0B FF FF 0A 02 00 0A 80 12 0A 04 0B FF  ................
    15F0: FF 0A 03 00 0A 81 08 50 30 32 44 12 34 04 12 0B  .......P02D.4...
    1600: 04 0B FF FF 00 4C 4E 4B 47 00 12 0B 04 0B FF FF  .....LNKG.......
    1610: 01 4C 4E 4B 48 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKH.........LN
    1620: 4B 45 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 46 00  KE.........LNKF.
    1630: 08 47 30 32 44 12 2C 04 12 09 04 0B FF FF 00 00  .G02D.,.........
    1640: 0A 7E 12 09 04 0B FF FF 01 00 0A 7F 12 0A 04 0B  .~..............
    1650: FF FF 0A 02 00 0A 7C 12 0A 04 0B FF FF 0A 03 00  ......|.........
    1660: 0A 7D 08 50 30 32 45 12 34 04 12 0B 04 0B FF FF  .}.P02E.4.......
    1670: 00 4C 4E 4B 43 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKC........LNK
    1680: 44 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 41 00 12  D.........LNKA..
    1690: 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00 08 47 30 32  .......LNKB..G02
    16A0: 45 12 2C 04 12 09 04 0B FF FF 00 00 0A 7A 12 09  E.,..........z..
    16B0: 04 0B FF FF 01 00 0A 7B 12 0A 04 0B FF FF 0A 02  .......{........
    16C0: 00 0A 78 12 0A 04 0B FF FF 0A 03 00 0A 79 08 50  ..x..........y.P
    16D0: 30 32 46 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  02F.4........LNK
    16E0: 42 00 12 0B 04 0B FF FF 01 4C 4E 4B 43 00 12 0C  B........LNKC...
    16F0: 04 0B FF FF 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF  ......LNKD......
    1700: FF 0A 03 4C 4E 4B 41 00 08 47 30 32 46 12 2C 04  ...LNKA..G02F.,.
    1710: 12 09 04 0B FF FF 00 00 0A 79 12 09 04 0B FF FF  .........y......
    1720: 01 00 0A 7A 12 0A 04 0B FF FF 0A 02 00 0A 7B 12  ...z..........{.
    1730: 0A 04 0B FF FF 0A 03 00 0A 78 08 50 30 33 30 12  .........x.P030.
    1740: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 46 00 12 0B  4........LNKF...
    1750: 04 0B FF FF 01 4C 4E 4B 47 00 12 0C 04 0B FF FF  .....LNKG.......
    1760: 0A 02 4C 4E 4B 48 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKH.........L
    1770: 4E 4B 45 00 08 47 30 33 30 12 2C 04 12 09 04 0B  NKE..G030.,.....
    1780: FF FF 00 00 0A 7D 12 09 04 0B FF FF 01 00 0A 7E  .....}.........~
    1790: 12 0A 04 0B FF FF 0A 02 00 0A 7F 12 0A 04 0B FF  ................
    17A0: FF 0A 03 00 0A 7C 08 50 30 33 31 12 34 04 12 0B  .....|.P031.4...
    17B0: 04 0B FF FF 00 4C 4E 4B 42 00 12 0B 04 0B FF FF  .....LNKB.......
    17C0: 01 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKC.........LN
    17D0: 4B 44 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00  KD.........LNKA.
    17E0: 08 47 30 33 31 12 2C 04 12 09 04 0B FF FF 00 00  .G031.,.........
    17F0: 0A 81 12 09 04 0B FF FF 01 00 0A 82 12 0A 04 0B  ................
    1800: FF FF 0A 02 00 0A 83 12 0A 04 0B FF FF 0A 03 00  ................
    1810: 0A 80 08 50 30 33 32 12 34 04 12 0B 04 0B FF FF  ...P032.4.......
    1820: 00 4C 4E 4B 46 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKF........LNK
    1830: 47 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 48 00 12  G.........LNKH..
    1840: 0C 04 0B FF FF 0A 03 4C 4E 4B 45 00 08 47 30 33  .......LNKE..G03
    1850: 32 12 2C 04 12 09 04 0B FF FF 00 00 0A 85 12 09  2.,.............
    1860: 04 0B FF FF 01 00 0A 86 12 0A 04 0B FF FF 0A 02  ................
    1870: 00 0A 87 12 0A 04 0B FF FF 0A 03 00 0A 84 08 50  ...............P
    1880: 30 33 33 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  033.4........LNK
    1890: 42 00 12 0B 04 0B FF FF 01 4C 4E 4B 43 00 12 0C  B........LNKC...
    18A0: 04 0B FF FF 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF  ......LNKD......
    18B0: FF 0A 03 4C 4E 4B 41 00 08 47 30 33 33 12 2C 04  ...LNKA..G033.,.
    18C0: 12 09 04 0B FF FF 00 00 0A 89 12 09 04 0B FF FF  ................
    18D0: 01 00 0A 8A 12 0A 04 0B FF FF 0A 02 00 0A 8B 12  ................
    18E0: 0A 04 0B FF FF 0A 03 00 0A 88 08 50 30 33 34 12  ...........P034.
    18F0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 44 00 12 0B  4........LNKD...
    1900: 04 0B FF FF 01 4C 4E 4B 41 00 12 0C 04 0B FF FF  .....LNKA.......
    1910: 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKB.........L
    1920: 4E 4B 43 00 08 47 30 33 34 12 2C 04 12 09 04 0B  NKC..G034.,.....
    1930: FF FF 00 00 0A 8B 12 09 04 0B FF FF 01 00 0A 88  ................
    1940: 12 0A 04 0B FF FF 0A 02 00 0A 89 12 0A 04 0B FF  ................
    1950: FF 0A 03 00 0A 8A 08 50 30 33 35 12 34 04 12 0B  .......P035.4...
    1960: 04 0B FF FF 00 4C 4E 4B 48 00 12 0B 04 0B FF FF  .....LNKH.......
    1970: 01 4C 4E 4B 45 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKE.........LN
    1980: 4B 46 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 47 00  KF.........LNKG.
    1990: 08 47 30 33 35 12 2C 04 12 09 04 0B FF FF 00 00  .G035.,.........
    19A0: 0A 87 12 09 04 0B FF FF 01 00 0A 84 12 0A 04 0B  ................
    19B0: FF FF 0A 02 00 0A 85 12 0A 04 0B FF FF 0A 03 00  ................
    19C0: 0A 86 08 50 30 33 36 12 34 04 12 0B 04 0B FF FF  ...P036.4.......
    19D0: 00 4C 4E 4B 44 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKD........LNK
    19E0: 41 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 42 00 12  A.........LNKB..
    19F0: 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00 08 47 30 33  .......LNKC..G03
    1A00: 36 12 2C 04 12 09 04 0B FF FF 00 00 0A 83 12 09  6.,.............
    1A10: 04 0B FF FF 01 00 0A 80 12 0A 04 0B FF FF 0A 02  ................
    1A20: 00 0A 81 12 0A 04 0B FF FF 0A 03 00 0A 82 08 50  ...............P
    1A30: 30 33 37 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  037.4........LNK
    1A40: 48 00 12 0B 04 0B FF FF 01 4C 4E 4B 45 00 12 0C  H........LNKE...
    1A50: 04 0B FF FF 0A 02 4C 4E 4B 46 00 12 0C 04 0B FF  ......LNKF......
    1A60: FF 0A 03 4C 4E 4B 47 00 08 47 30 33 37 12 2C 04  ...LNKG..G037.,.
    1A70: 12 09 04 0B FF FF 00 00 0A 7F 12 09 04 0B FF FF  ................
    1A80: 01 00 0A 7C 12 0A 04 0B FF FF 0A 02 00 0A 7D 12  ...|..........}.
    1A90: 0A 04 0B FF FF 0A 03 00 0A 7E 08 50 30 33 38 12  .........~.P038.
    1AA0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 44 00 12 0B  4........LNKD...
    1AB0: 04 0B FF FF 01 4C 4E 4B 41 00 12 0C 04 0B FF FF  .....LNKA.......
    1AC0: 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKB.........L
    1AD0: 4E 4B 43 00 08 47 30 33 38 12 2C 04 12 09 04 0B  NKC..G038.,.....
    1AE0: FF FF 00 00 0A 7B 12 09 04 0B FF FF 01 00 0A 78  .....{.........x
    1AF0: 12 0A 04 0B FF FF 0A 02 00 0A 79 12 0A 04 0B FF  ..........y.....
    1B00: FF 0A 03 00 0A 7A 08 50 30 33 39 12 34 04 12 0B  .....z.P039.4...
    1B10: 04 0B FF FF 00 4C 4E 4B 41 00 12 0B 04 0B FF FF  .....LNKA.......
    1B20: 01 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKB.........LN
    1B30: 4B 43 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00  KC.........LNKD.
    1B40: 08 47 30 33 39 12 2C 04 12 09 04 0B FF FF 00 00  .G039.,.........
    1B50: 0A 78 12 09 04 0B FF FF 01 00 0A 79 12 0A 04 0B  .x.........y....
    1B60: FF FF 0A 02 00 0A 7A 12 0A 04 0B FF FF 0A 03 00  ......z.........
    1B70: 0A 7B 08 50 30 33 41 12 34 04 12 0B 04 0B FF FF  .{.P03A.4.......
    1B80: 00 4C 4E 4B 45 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKE........LNK
    1B90: 46 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 47 00 12  F.........LNKG..
    1BA0: 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00 08 47 30 33  .......LNKH..G03
    1BB0: 41 12 2C 04 12 09 04 0B FF FF 00 00 0A 7C 12 09  A.,..........|..
    1BC0: 04 0B FF FF 01 00 0A 7D 12 0A 04 0B FF FF 0A 02  .......}........
    1BD0: 00 0A 7E 12 0A 04 0B FF FF 0A 03 00 0A 7F 08 50  ..~............P
    1BE0: 30 33 42 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  03B.4........LNK
    1BF0: 41 00 12 0B 04 0B FF FF 01 4C 4E 4B 42 00 12 0C  A........LNKB...
    1C00: 04 0B FF FF 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF  ......LNKC......
    1C10: FF 0A 03 4C 4E 4B 44 00 08 47 30 33 42 12 2C 04  ...LNKD..G03B.,.
    1C20: 12 09 04 0B FF FF 00 00 0A 80 12 09 04 0B FF FF  ................
    1C30: 01 00 0A 81 12 0A 04 0B FF FF 0A 02 00 0A 82 12  ................
    1C40: 0A 04 0B FF FF 0A 03 00 0A 83 08 50 30 34 34 12  ...........P044.
    1C50: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 45 00 12 0B  4........LNKE...
    1C60: 04 0B FF FF 01 4C 4E 4B 46 00 12 0C 04 0B FF FF  .....LNKF.......
    1C70: 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKG.........L
    1C80: 4E 4B 48 00 08 47 30 34 34 12 2C 04 12 09 04 0B  NKH..G044.,.....
    1C90: FF FF 00 00 0A 84 12 09 04 0B FF FF 01 00 0A 85  ................
    1CA0: 12 0A 04 0B FF FF 0A 02 00 0A 86 12 0A 04 0B FF  ................
    1CB0: FF 0A 03 00 0A 87 08 50 44 30 32 12 41 11 13 12  .......PD02.A...
    1CC0: 0B 04 0B FF FF 00 4C 4E 4B 42 00 12 0D 04 0C FF  ......LNKB......
    1CD0: FF 01 00 00 4C 4E 4B 41 00 12 0D 04 0C FF FF 01  ....LNKA........
    1CE0: 00 01 4C 4E 4B 41 00 12 0E 04 0C FF FF 01 00 0A  ..LNKA..........
    1CF0: 02 4C 4E 4B 41 00 12 0E 04 0C FF FF 01 00 0A 03  .LNKA...........
    1D00: 4C 4E 4B 41 00 12 0D 04 0C FF FF 02 00 00 4C 4E  LNKA..........LN
    1D10: 4B 41 00 12 0D 04 0C FF FF 02 00 01 4C 4E 4B 41  KA..........LNKA
    1D20: 00 12 0D 04 0C FF FF 03 00 00 4C 4E 4B 42 00 12  ..........LNKB..
    1D30: 0D 04 0C FF FF 03 00 01 4C 4E 4B 42 00 12 0E 04  ........LNKB....
    1D40: 0C FF FF 03 00 0A 02 4C 4E 4B 42 00 12 0E 04 0C  .......LNKB.....
    1D50: FF FF 03 00 0A 03 4C 4E 4B 42 00 12 0D 04 0C FF  ......LNKB......
    1D60: FF 04 00 00 4C 4E 4B 42 00 12 0D 04 0C FF FF 04  ....LNKB........
    1D70: 00 01 4C 4E 4B 42 00 12 0D 04 0C FF FF 05 00 00  ..LNKB..........
    1D80: 4C 4E 4B 43 00 12 0D 04 0C FF FF 05 00 01 4C 4E  LNKC..........LN
    1D90: 4B 43 00 12 0E 04 0C FF FF 05 00 0A 02 4C 4E 4B  KC...........LNK
    1DA0: 43 00 12 0E 04 0C FF FF 05 00 0A 03 4C 4E 4B 43  C...........LNKC
    1DB0: 00 12 0D 04 0C FF FF 07 00 00 4C 4E 4B 44 00 12  ..........LNKD..
    1DC0: 0D 04 0C FF FF 07 00 01 4C 4E 4B 44 00 08 41 52  ........LNKD..AR
    1DD0: 30 32 12 4B 0E 13 12 09 04 0B FF FF 00 00 0A 59  02.K...........Y
    1DE0: 12 0B 04 0C FF FF 01 00 00 00 0A 58 12 0B 04 0C  ...........X....
    1DF0: FF FF 01 00 01 00 0A 58 12 0C 04 0C FF FF 01 00  .......X........
    1E00: 0A 02 00 0A 58 12 0C 04 0C FF FF 01 00 0A 03 00  ....X...........
    1E10: 0A 58 12 0B 04 0C FF FF 02 00 00 00 0A 58 12 0B  .X...........X..
    1E20: 04 0C FF FF 02 00 01 00 0A 58 12 0B 04 0C FF FF  .........X......
    1E30: 03 00 00 00 0A 59 12 0B 04 0C FF FF 03 00 01 00  .....Y..........
    1E40: 0A 59 12 0C 04 0C FF FF 03 00 0A 02 00 0A 59 12  .Y............Y.
    1E50: 0C 04 0C FF FF 03 00 0A 03 00 0A 59 12 0B 04 0C  ...........Y....
    1E60: FF FF 04 00 00 00 0A 59 12 0B 04 0C FF FF 04 00  .......Y........
    1E70: 01 00 0A 59 12 0B 04 0C FF FF 05 00 00 00 0A 5A  ...Y...........Z
    1E80: 12 0B 04 0C FF FF 05 00 01 00 0A 5A 12 0C 04 0C  ...........Z....
    1E90: FF FF 05 00 0A 02 00 0A 5A 12 0C 04 0C FF FF 05  ........Z.......
    1EA0: 00 0A 03 00 0A 5A 12 0B 04 0C FF FF 07 00 00 00  .....Z..........
    1EB0: 0A 5B 12 0B 04 0C FF FF 07 00 01 00 0A 5B 08 50  .[...........[.P
    1EC0: 30 34 41 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  04A.4........LNK
    1ED0: 41 00 12 0B 04 0B FF FF 01 4C 4E 4B 42 00 12 0C  A........LNKB...
    1EE0: 04 0B FF FF 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF  ......LNKC......
    1EF0: FF 0A 03 4C 4E 4B 44 00 08 47 30 34 41 12 2C 04  ...LNKD..G04A.,.
    1F00: 12 09 04 0B FF FF 00 00 0A 58 12 09 04 0B FF FF  .........X......
    1F10: 01 00 0A 59 12 0A 04 0B FF FF 0A 02 00 0A 5A 12  ...Y..........Z.
    1F20: 0A 04 0B FF FF 0A 03 00 0A 5B 08 50 30 34 42 12  .........[.P04B.
    1F30: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 45 00 12 0B  4........LNKE...
    1F40: 04 0B FF FF 01 4C 4E 4B 46 00 12 0C 04 0B FF FF  .....LNKF.......
    1F50: 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKG.........L
    1F60: 4E 4B 48 00 08 47 30 34 42 12 2C 04 12 09 04 0B  NKH..G04B.,.....
    1F70: FF FF 00 00 0A 5C 12 09 04 0B FF FF 01 00 0A 5D  .....\.........]
    1F80: 12 0A 04 0B FF FF 0A 02 00 0A 5E 12 0A 04 0B FF  ..........^.....
    1F90: FF 0A 03 00 0A 5F 08 50 30 34 43 12 34 04 12 0B  ....._.P04C.4...
    1FA0: 04 0B FF FF 00 4C 4E 4B 41 00 12 0B 04 0B FF FF  .....LNKA.......
    1FB0: 01 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKB.........LN
    1FC0: 4B 43 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00  KC.........LNKD.
    1FD0: 08 47 30 34 43 12 2C 04 12 09 04 0B FF FF 00 00  .G04C.,.........
    1FE0: 0A 60 12 09 04 0B FF FF 01 00 0A 61 12 0A 04 0B  .`.........a....
    1FF0: FF FF 0A 02 00 0A 62 12 0A 04 0B FF FF 0A 03 00  ......b.........
    2000: 0A 63 08 50 30 34 44 12 34 04 12 0B 04 0B FF FF  .c.P04D.4.......
    2010: 00 4C 4E 4B 45 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKE........LNK
    2020: 46 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 47 00 12  F.........LNKG..
    2030: 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00 08 47 30 34  .......LNKH..G04
    2040: 44 12 2C 04 12 09 04 0B FF FF 00 00 0A 64 12 09  D.,..........d..
    2050: 04 0B FF FF 01 00 0A 65 12 0A 04 0B FF FF 0A 02  .......e........
    2060: 00 0A 66 12 0A 04 0B FF FF 0A 03 00 0A 67 08 50  ..f..........g.P
    2070: 30 34 45 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  04E.4........LNK
    2080: 41 00 12 0B 04 0B FF FF 01 4C 4E 4B 42 00 12 0C  A........LNKB...
    2090: 04 0B FF FF 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF  ......LNKC......
    20A0: FF 0A 03 4C 4E 4B 44 00 08 47 30 34 45 12 2C 04  ...LNKD..G04E.,.
    20B0: 12 09 04 0B FF FF 00 00 0A 68 12 09 04 0B FF FF  .........h......
    20C0: 01 00 0A 69 12 0A 04 0B FF FF 0A 02 00 0A 6A 12  ...i..........j.
    20D0: 0A 04 0B FF FF 0A 03 00 0A 6B 08 50 30 34 46 12  .........k.P04F.
    20E0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 43 00 12 0B  4........LNKC...
    20F0: 04 0B FF FF 01 4C 4E 4B 44 00 12 0C 04 0B FF FF  .....LNKD.......
    2100: 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKA.........L
    2110: 4E 4B 42 00 08 47 30 34 46 12 2C 04 12 09 04 0B  NKB..G04F.,.....
    2120: FF FF 00 00 0A 6A 12 09 04 0B FF FF 01 00 0A 6B  .....j.........k
    2130: 12 0A 04 0B FF FF 0A 02 00 0A 68 12 0A 04 0B FF  ..........h.....
    2140: FF 0A 03 00 0A 69 08 50 30 35 30 12 34 04 12 0B  .....i.P050.4...
    2150: 04 0B FF FF 00 4C 4E 4B 47 00 12 0B 04 0B FF FF  .....LNKG.......
    2160: 01 4C 4E 4B 48 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKH.........LN
    2170: 4B 45 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 46 00  KE.........LNKF.
    2180: 08 47 30 35 30 12 2C 04 12 09 04 0B FF FF 00 00  .G050.,.........
    2190: 0A 66 12 09 04 0B FF FF 01 00 0A 67 12 0A 04 0B  .f.........g....
    21A0: FF FF 0A 02 00 0A 64 12 0A 04 0B FF FF 0A 03 00  ......d.........
    21B0: 0A 65 08 50 30 35 31 12 34 04 12 0B 04 0B FF FF  .e.P051.4.......
    21C0: 00 4C 4E 4B 43 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKC........LNK
    21D0: 44 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 41 00 12  D.........LNKA..
    21E0: 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00 08 47 30 35  .......LNKB..G05
    21F0: 31 12 2C 04 12 09 04 0B FF FF 00 00 0A 62 12 09  1.,..........b..
    2200: 04 0B FF FF 01 00 0A 63 12 0A 04 0B FF FF 0A 02  .......c........
    2210: 00 0A 60 12 0A 04 0B FF FF 0A 03 00 0A 61 08 50  ..`..........a.P
    2220: 30 35 32 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  052.4........LNK
    2230: 47 00 12 0B 04 0B FF FF 01 4C 4E 4B 48 00 12 0C  G........LNKH...
    2240: 04 0B FF FF 0A 02 4C 4E 4B 45 00 12 0C 04 0B FF  ......LNKE......
    2250: FF 0A 03 4C 4E 4B 46 00 08 47 30 35 32 12 2C 04  ...LNKF..G052.,.
    2260: 12 09 04 0B FF FF 00 00 0A 5E 12 09 04 0B FF FF  .........^......
    2270: 01 00 0A 5F 12 0A 04 0B FF FF 0A 02 00 0A 5C 12  ..._..........\.
    2280: 0A 04 0B FF FF 0A 03 00 0A 5D 08 50 30 35 33 12  .........].P053.
    2290: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 43 00 12 0B  4........LNKC...
    22A0: 04 0B FF FF 01 4C 4E 4B 44 00 12 0C 04 0B FF FF  .....LNKD.......
    22B0: 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKA.........L
    22C0: 4E 4B 42 00 08 47 30 35 33 12 2C 04 12 09 04 0B  NKB..G053.,.....
    22D0: FF FF 00 00 0A 5A 12 09 04 0B FF FF 01 00 0A 5B  .....Z.........[
    22E0: 12 0A 04 0B FF FF 0A 02 00 0A 58 12 0A 04 0B FF  ..........X.....
    22F0: FF 0A 03 00 0A 59 08 50 30 35 34 12 34 04 12 0B  .....Y.P054.4...
    2300: 04 0B FF FF 00 4C 4E 4B 42 00 12 0B 04 0B FF FF  .....LNKB.......
    2310: 01 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKC.........LN
    2320: 4B 44 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00  KD.........LNKA.
    2330: 08 47 30 35 34 12 2C 04 12 09 04 0B FF FF 00 00  .G054.,.........
    2340: 0A 59 12 09 04 0B FF FF 01 00 0A 5A 12 0A 04 0B  .Y.........Z....
    2350: FF FF 0A 02 00 0A 5B 12 0A 04 0B FF FF 0A 03 00  ......[.........
    2360: 0A 58 08 50 30 35 35 12 34 04 12 0B 04 0B FF FF  .X.P055.4.......
    2370: 00 4C 4E 4B 46 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKF........LNK
    2380: 47 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 48 00 12  G.........LNKH..
    2390: 0C 04 0B FF FF 0A 03 4C 4E 4B 45 00 08 47 30 35  .......LNKE..G05
    23A0: 35 12 2C 04 12 09 04 0B FF FF 00 00 0A 5D 12 09  5.,..........]..
    23B0: 04 0B FF FF 01 00 0A 5E 12 0A 04 0B FF FF 0A 02  .......^........
    23C0: 00 0A 5F 12 0A 04 0B FF FF 0A 03 00 0A 5C 08 50  .._..........\.P
    23D0: 30 35 36 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  056.4........LNK
    23E0: 42 00 12 0B 04 0B FF FF 01 4C 4E 4B 43 00 12 0C  B........LNKC...
    23F0: 04 0B FF FF 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF  ......LNKD......
    2400: FF 0A 03 4C 4E 4B 41 00 08 47 30 35 36 12 2C 04  ...LNKA..G056.,.
    2410: 12 09 04 0B FF FF 00 00 0A 61 12 09 04 0B FF FF  .........a......
    2420: 01 00 0A 62 12 0A 04 0B FF FF 0A 02 00 0A 63 12  ...b..........c.
    2430: 0A 04 0B FF FF 0A 03 00 0A 60 08 50 30 35 37 12  .........`.P057.
    2440: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 46 00 12 0B  4........LNKF...
    2450: 04 0B FF FF 01 4C 4E 4B 47 00 12 0C 04 0B FF FF  .....LNKG.......
    2460: 0A 02 4C 4E 4B 48 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKH.........L
    2470: 4E 4B 45 00 08 47 30 35 37 12 2C 04 12 09 04 0B  NKE..G057.,.....
    2480: FF FF 00 00 0A 65 12 09 04 0B FF FF 01 00 0A 66  .....e.........f
    2490: 12 0A 04 0B FF FF 0A 02 00 0A 67 12 0A 04 0B FF  ..........g.....
    24A0: FF 0A 03 00 0A 64 08 50 30 35 38 12 34 04 12 0B  .....d.P058.4...
    24B0: 04 0B FF FF 00 4C 4E 4B 42 00 12 0B 04 0B FF FF  .....LNKB.......
    24C0: 01 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKC.........LN
    24D0: 4B 44 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00  KD.........LNKA.
    24E0: 08 47 30 35 38 12 2C 04 12 09 04 0B FF FF 00 00  .G058.,.........
    24F0: 0A 69 12 09 04 0B FF FF 01 00 0A 6A 12 0A 04 0B  .i.........j....
    2500: FF FF 0A 02 00 0A 6B 12 0A 04 0B FF FF 0A 03 00  ......k.........
    2510: 0A 68 08 50 30 35 39 12 34 04 12 0B 04 0B FF FF  .h.P059.4.......
    2520: 00 4C 4E 4B 44 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKD........LNK
    2530: 41 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 42 00 12  A.........LNKB..
    2540: 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00 08 47 30 35  .......LNKC..G05
    2550: 39 12 2C 04 12 09 04 0B FF FF 00 00 0A 6B 12 09  9.,..........k..
    2560: 04 0B FF FF 01 00 0A 68 12 0A 04 0B FF FF 0A 02  .......h........
    2570: 00 0A 69 12 0A 04 0B FF FF 0A 03 00 0A 6A 08 50  ..i..........j.P
    2580: 30 35 41 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  05A.4........LNK
    2590: 48 00 12 0B 04 0B FF FF 01 4C 4E 4B 45 00 12 0C  H........LNKE...
    25A0: 04 0B FF FF 0A 02 4C 4E 4B 46 00 12 0C 04 0B FF  ......LNKF......
    25B0: FF 0A 03 4C 4E 4B 47 00 08 47 30 35 41 12 2C 04  ...LNKG..G05A.,.
    25C0: 12 09 04 0B FF FF 00 00 0A 67 12 09 04 0B FF FF  .........g......
    25D0: 01 00 0A 64 12 0A 04 0B FF FF 0A 02 00 0A 65 12  ...d..........e.
    25E0: 0A 04 0B FF FF 0A 03 00 0A 66 08 50 30 35 42 12  .........f.P05B.
    25F0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 44 00 12 0B  4........LNKD...
    2600: 04 0B FF FF 01 4C 4E 4B 41 00 12 0C 04 0B FF FF  .....LNKA.......
    2610: 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKB.........L
    2620: 4E 4B 43 00 08 47 30 35 42 12 2C 04 12 09 04 0B  NKC..G05B.,.....
    2630: FF FF 00 00 0A 63 12 09 04 0B FF FF 01 00 0A 60  .....c.........`
    2640: 12 0A 04 0B FF FF 0A 02 00 0A 61 12 0A 04 0B FF  ..........a.....
    2650: FF 0A 03 00 0A 62 08 50 30 35 43 12 34 04 12 0B  .....b.P05C.4...
    2660: 04 0B FF FF 00 4C 4E 4B 48 00 12 0B 04 0B FF FF  .....LNKH.......
    2670: 01 4C 4E 4B 45 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKE.........LN
    2680: 4B 46 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 47 00  KF.........LNKG.
    2690: 08 47 30 35 43 12 2C 04 12 09 04 0B FF FF 00 00  .G05C.,.........
    26A0: 0A 5F 12 09 04 0B FF FF 01 00 0A 5C 12 0A 04 0B  ._.........\....
    26B0: FF FF 0A 02 00 0A 5D 12 0A 04 0B FF FF 0A 03 00  ......].........
    26C0: 0A 5E 08 50 30 35 44 12 34 04 12 0B 04 0B FF FF  .^.P05D.4.......
    26D0: 00 4C 4E 4B 44 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKD........LNK
    26E0: 41 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 42 00 12  A.........LNKB..
    26F0: 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00 08 47 30 35  .......LNKC..G05
    2700: 44 12 2C 04 12 09 04 0B FF FF 00 00 0A 5B 12 09  D.,..........[..
    2710: 04 0B FF FF 01 00 0A 58 12 0A 04 0B FF FF 0A 02  .......X........
    2720: 00 0A 59 12 0A 04 0B FF FF 0A 03 00 0A 5A 08 50  ..Y..........Z.P
    2730: 30 35 45 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  05E.4........LNK
    2740: 41 00 12 0B 04 0B FF FF 01 4C 4E 4B 42 00 12 0C  A........LNKB...
    2750: 04 0B FF FF 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF  ......LNKC......
    2760: FF 0A 03 4C 4E 4B 44 00 08 47 30 35 45 12 2C 04  ...LNKD..G05E.,.
    2770: 12 09 04 0B FF FF 00 00 0A 58 12 09 04 0B FF FF  .........X......
    2780: 01 00 0A 59 12 0A 04 0B FF FF 0A 02 00 0A 5A 12  ...Y..........Z.
    2790: 0A 04 0B FF FF 0A 03 00 0A 5B 08 50 30 35 46 12  .........[.P05F.
    27A0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 45 00 12 0B  4........LNKE...
    27B0: 04 0B FF FF 01 4C 4E 4B 46 00 12 0C 04 0B FF FF  .....LNKF.......
    27C0: 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKG.........L
    27D0: 4E 4B 48 00 08 47 30 35 46 12 2C 04 12 09 04 0B  NKH..G05F.,.....
    27E0: FF FF 00 00 0A 5C 12 09 04 0B FF FF 01 00 0A 5D  .....\.........]
    27F0: 12 0A 04 0B FF FF 0A 02 00 0A 5E 12 0A 04 0B FF  ..........^.....
    2800: FF 0A 03 00 0A 5F 08 50 30 36 30 12 34 04 12 0B  ....._.P060.4...
    2810: 04 0B FF FF 00 4C 4E 4B 41 00 12 0B 04 0B FF FF  .....LNKA.......
    2820: 01 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKB.........LN
    2830: 4B 43 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00  KC.........LNKD.
    2840: 08 47 30 36 30 12 2C 04 12 09 04 0B FF FF 00 00  .G060.,.........
    2850: 0A 60 12 09 04 0B FF FF 01 00 0A 61 12 0A 04 0B  .`.........a....
    2860: FF FF 0A 02 00 0A 62 12 0A 04 0B FF FF 0A 03 00  ......b.........
    2870: 0A 63 08 50 44 30 30 12 41 11 13 12 0B 04 0B FF  .c.PD00.A.......
    2880: FF 00 4C 4E 4B 42 00 12 0D 04 0C FF FF 01 00 00  ..LNKB..........
    2890: 4C 4E 4B 41 00 12 0D 04 0C FF FF 01 00 01 4C 4E  LNKA..........LN
    28A0: 4B 41 00 12 0E 04 0C FF FF 01 00 0A 02 4C 4E 4B  KA...........LNK
    28B0: 41 00 12 0E 04 0C FF FF 01 00 0A 03 4C 4E 4B 41  A...........LNKA
    28C0: 00 12 0D 04 0C FF FF 02 00 00 4C 4E 4B 41 00 12  ..........LNKA..
    28D0: 0D 04 0C FF FF 02 00 01 4C 4E 4B 41 00 12 0D 04  ........LNKA....
    28E0: 0C FF FF 03 00 00 4C 4E 4B 42 00 12 0D 04 0C FF  ......LNKB......
    28F0: FF 03 00 01 4C 4E 4B 42 00 12 0E 04 0C FF FF 03  ....LNKB........
    2900: 00 0A 02 4C 4E 4B 42 00 12 0E 04 0C FF FF 03 00  ...LNKB.........
    2910: 0A 03 4C 4E 4B 42 00 12 0D 04 0C FF FF 04 00 00  ..LNKB..........
    2920: 4C 4E 4B 42 00 12 0D 04 0C FF FF 04 00 01 4C 4E  LNKB..........LN
    2930: 4B 42 00 12 0D 04 0C FF FF 05 00 00 4C 4E 4B 43  KB..........LNKC
    2940: 00 12 0D 04 0C FF FF 05 00 01 4C 4E 4B 43 00 12  ..........LNKC..
    2950: 0E 04 0C FF FF 05 00 0A 02 4C 4E 4B 43 00 12 0E  .........LNKC...
    2960: 04 0C FF FF 05 00 0A 03 4C 4E 4B 43 00 12 0D 04  ........LNKC....
    2970: 0C FF FF 07 00 00 4C 4E 4B 44 00 12 0D 04 0C FF  ......LNKD......
    2980: FF 07 00 01 4C 4E 4B 44 00 08 41 52 30 30 12 4B  ....LNKD..AR00.K
    2990: 0E 13 12 09 04 0B FF FF 00 00 0A 19 12 0B 04 0C  ................
    29A0: FF FF 01 00 00 00 0A 18 12 0B 04 0C FF FF 01 00  ................
    29B0: 01 00 0A 18 12 0C 04 0C FF FF 01 00 0A 02 00 0A  ................
    29C0: 18 12 0C 04 0C FF FF 01 00 0A 03 00 0A 18 12 0B  ................
    29D0: 04 0C FF FF 02 00 00 00 0A 18 12 0B 04 0C FF FF  ................
    29E0: 02 00 01 00 0A 18 12 0B 04 0C FF FF 03 00 00 00  ................
    29F0: 0A 19 12 0B 04 0C FF FF 03 00 01 00 0A 19 12 0C  ................
    2A00: 04 0C FF FF 03 00 0A 02 00 0A 19 12 0C 04 0C FF  ................
    2A10: FF 03 00 0A 03 00 0A 19 12 0B 04 0C FF FF 04 00  ................
    2A20: 00 00 0A 19 12 0B 04 0C FF FF 04 00 01 00 0A 19  ................
    2A30: 12 0B 04 0C FF FF 05 00 00 00 0A 1A 12 0B 04 0C  ................
    2A40: FF FF 05 00 01 00 0A 1A 12 0C 04 0C FF FF 05 00  ................
    2A50: 0A 02 00 0A 1A 12 0C 04 0C FF FF 05 00 0A 03 00  ................
    2A60: 0A 1A 12 0B 04 0C FF FF 07 00 00 00 0A 1B 12 0B  ................
    2A70: 04 0C FF FF 07 00 01 00 0A 1B 08 50 30 36 39 12  ...........P069.
    2A80: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 12 0B  4........LNKA...
    2A90: 04 0B FF FF 01 4C 4E 4B 42 00 12 0C 04 0B FF FF  .....LNKB.......
    2AA0: 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKC.........L
    2AB0: 4E 4B 44 00 08 47 30 36 39 12 2C 04 12 09 04 0B  NKD..G069.,.....
    2AC0: FF FF 00 00 0A 18 12 09 04 0B FF FF 01 00 0A 19  ................
    2AD0: 12 0A 04 0B FF FF 0A 02 00 0A 1A 12 0A 04 0B FF  ................
    2AE0: FF 0A 03 00 0A 1B 08 50 30 36 41 12 34 04 12 0B  .......P06A.4...
    2AF0: 04 0B FF FF 00 4C 4E 4B 45 00 12 0B 04 0B FF FF  .....LNKE.......
    2B00: 01 4C 4E 4B 46 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKF.........LN
    2B10: 4B 47 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00  KG.........LNKH.
    2B20: 08 47 30 36 41 12 2C 04 12 09 04 0B FF FF 00 00  .G06A.,.........
    2B30: 0A 1C 12 09 04 0B FF FF 01 00 0A 1D 12 0A 04 0B  ................
    2B40: FF FF 0A 02 00 0A 1E 12 0A 04 0B FF FF 0A 03 00  ................
    2B50: 0A 1F 08 50 30 36 42 12 34 04 12 0B 04 0B FF FF  ...P06B.4.......
    2B60: 00 4C 4E 4B 41 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKA........LNK
    2B70: 42 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 43 00 12  B.........LNKC..
    2B80: 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00 08 47 30 36  .......LNKD..G06
    2B90: 42 12 2C 04 12 09 04 0B FF FF 00 00 0A 20 12 09  B.,.......... ..
    2BA0: 04 0B FF FF 01 00 0A 21 12 0A 04 0B FF FF 0A 02  .......!........
    2BB0: 00 0A 22 12 0A 04 0B FF FF 0A 03 00 0A 23 08 50  .."..........#.P
    2BC0: 30 36 43 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  06C.4........LNK
    2BD0: 45 00 12 0B 04 0B FF FF 01 4C 4E 4B 46 00 12 0C  E........LNKF...
    2BE0: 04 0B FF FF 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF  ......LNKG......
    2BF0: FF 0A 03 4C 4E 4B 48 00 08 47 30 36 43 12 2C 04  ...LNKH..G06C.,.
    2C00: 12 09 04 0B FF FF 00 00 0A 24 12 09 04 0B FF FF  .........$......
    2C10: 01 00 0A 25 12 0A 04 0B FF FF 0A 02 00 0A 26 12  ...%..........&.
    2C20: 0A 04 0B FF FF 0A 03 00 0A 27 08 50 30 36 44 12  .........'.P06D.
    2C30: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 12 0B  4........LNKA...
    2C40: 04 0B FF FF 01 4C 4E 4B 42 00 12 0C 04 0B FF FF  .....LNKB.......
    2C50: 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKC.........L
    2C60: 4E 4B 44 00 08 47 30 36 44 12 2C 04 12 09 04 0B  NKD..G06D.,.....
    2C70: FF FF 00 00 0A 28 12 09 04 0B FF FF 01 00 0A 29  .....(.........)
    2C80: 12 0A 04 0B FF FF 0A 02 00 0A 2A 12 0A 04 0B FF  ..........*.....
    2C90: FF 0A 03 00 0A 2B 08 50 30 36 45 12 34 04 12 0B  .....+.P06E.4...
    2CA0: 04 0B FF FF 00 4C 4E 4B 43 00 12 0B 04 0B FF FF  .....LNKC.......
    2CB0: 01 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKD.........LN
    2CC0: 4B 41 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00  KA.........LNKB.
    2CD0: 08 47 30 36 45 12 2C 04 12 09 04 0B FF FF 00 00  .G06E.,.........
    2CE0: 0A 2A 12 09 04 0B FF FF 01 00 0A 2B 12 0A 04 0B  .*.........+....
    2CF0: FF FF 0A 02 00 0A 28 12 0A 04 0B FF FF 0A 03 00  ......(.........
    2D00: 0A 29 08 50 30 36 46 12 34 04 12 0B 04 0B FF FF  .).P06F.4.......
    2D10: 00 4C 4E 4B 47 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKG........LNK
    2D20: 48 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 45 00 12  H.........LNKE..
    2D30: 0C 04 0B FF FF 0A 03 4C 4E 4B 46 00 08 47 30 36  .......LNKF..G06
    2D40: 46 12 2C 04 12 09 04 0B FF FF 00 00 0A 26 12 09  F.,..........&..
    2D50: 04 0B FF FF 01 00 0A 27 12 0A 04 0B FF FF 0A 02  .......'........
    2D60: 00 0A 24 12 0A 04 0B FF FF 0A 03 00 0A 25 08 50  ..$..........%.P
    2D70: 30 37 30 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  070.4........LNK
    2D80: 43 00 12 0B 04 0B FF FF 01 4C 4E 4B 44 00 12 0C  C........LNKD...
    2D90: 04 0B FF FF 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF  ......LNKA......
    2DA0: FF 0A 03 4C 4E 4B 42 00 08 47 30 37 30 12 2C 04  ...LNKB..G070.,.
    2DB0: 12 09 04 0B FF FF 00 00 0A 22 12 09 04 0B FF FF  ........."......
    2DC0: 01 00 0A 23 12 0A 04 0B FF FF 0A 02 00 0A 20 12  ...#.......... .
    2DD0: 0A 04 0B FF FF 0A 03 00 0A 21 08 50 30 37 31 12  .........!.P071.
    2DE0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 47 00 12 0B  4........LNKG...
    2DF0: 04 0B FF FF 01 4C 4E 4B 48 00 12 0C 04 0B FF FF  .....LNKH.......
    2E00: 0A 02 4C 4E 4B 45 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKE.........L
    2E10: 4E 4B 46 00 08 47 30 37 31 12 2C 04 12 09 04 0B  NKF..G071.,.....
    2E20: FF FF 00 00 0A 1E 12 09 04 0B FF FF 01 00 0A 1F  ................
    2E30: 12 0A 04 0B FF FF 0A 02 00 0A 1C 12 0A 04 0B FF  ................
    2E40: FF 0A 03 00 0A 1D 08 50 30 37 32 12 34 04 12 0B  .......P072.4...
    2E50: 04 0B FF FF 00 4C 4E 4B 43 00 12 0B 04 0B FF FF  .....LNKC.......
    2E60: 01 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKD.........LN
    2E70: 4B 41 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00  KA.........LNKB.
    2E80: 08 47 30 37 32 12 2C 04 12 09 04 0B FF FF 00 00  .G072.,.........
    2E90: 0A 1A 12 09 04 0B FF FF 01 00 0A 1B 12 0A 04 0B  ................
    2EA0: FF FF 0A 02 00 0A 18 12 0A 04 0B FF FF 0A 03 00  ................
    2EB0: 0A 19 08 50 30 37 33 12 34 04 12 0B 04 0B FF FF  ...P073.4.......
    2EC0: 00 4C 4E 4B 42 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKB........LNK
    2ED0: 43 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 44 00 12  C.........LNKD..
    2EE0: 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00 08 47 30 37  .......LNKA..G07
    2EF0: 33 12 2C 04 12 09 04 0B FF FF 00 00 0A 19 12 09  3.,.............
    2F00: 04 0B FF FF 01 00 0A 1A 12 0A 04 0B FF FF 0A 02  ................
    2F10: 00 0A 1B 12 0A 04 0B FF FF 0A 03 00 0A 18 08 50  ...............P
    2F20: 30 37 34 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  074.4........LNK
    2F30: 46 00 12 0B 04 0B FF FF 01 4C 4E 4B 47 00 12 0C  F........LNKG...
    2F40: 04 0B FF FF 0A 02 4C 4E 4B 48 00 12 0C 04 0B FF  ......LNKH......
    2F50: FF 0A 03 4C 4E 4B 45 00 08 47 30 37 34 12 2C 04  ...LNKE..G074.,.
    2F60: 12 09 04 0B FF FF 00 00 0A 1D 12 09 04 0B FF FF  ................
    2F70: 01 00 0A 1E 12 0A 04 0B FF FF 0A 02 00 0A 1F 12  ................
    2F80: 0A 04 0B FF FF 0A 03 00 0A 1C 08 50 30 37 35 12  ...........P075.
    2F90: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 42 00 12 0B  4........LNKB...
    2FA0: 04 0B FF FF 01 4C 4E 4B 43 00 12 0C 04 0B FF FF  .....LNKC.......
    2FB0: 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKD.........L
    2FC0: 4E 4B 41 00 08 47 30 37 35 12 2C 04 12 09 04 0B  NKA..G075.,.....
    2FD0: FF FF 00 00 0A 21 12 09 04 0B FF FF 01 00 0A 22  .....!........."
    2FE0: 12 0A 04 0B FF FF 0A 02 00 0A 23 12 0A 04 0B FF  ..........#.....
    2FF0: FF 0A 03 00 0A 20 08 50 30 37 36 12 34 04 12 0B  ..... .P076.4...
    3000: 04 0B FF FF 00 4C 4E 4B 46 00 12 0B 04 0B FF FF  .....LNKF.......
    3010: 01 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKG.........LN
    3020: 4B 48 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 45 00  KH.........LNKE.
    3030: 08 47 30 37 36 12 2C 04 12 09 04 0B FF FF 00 00  .G076.,.........
    3040: 0A 25 12 09 04 0B FF FF 01 00 0A 26 12 0A 04 0B  .%.........&....
    3050: FF FF 0A 02 00 0A 27 12 0A 04 0B FF FF 0A 03 00  ......'.........
    3060: 0A 24 08 50 30 37 37 12 34 04 12 0B 04 0B FF FF  .$.P077.4.......
    3070: 00 4C 4E 4B 42 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKB........LNK
    3080: 43 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 44 00 12  C.........LNKD..
    3090: 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00 08 47 30 37  .......LNKA..G07
    30A0: 37 12 2C 04 12 09 04 0B FF FF 00 00 0A 29 12 09  7.,..........)..
    30B0: 04 0B FF FF 01 00 0A 2A 12 0A 04 0B FF FF 0A 02  .......*........
    30C0: 00 0A 2B 12 0A 04 0B FF FF 0A 03 00 0A 28 08 50  ..+..........(.P
    30D0: 30 37 38 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  078.4........LNK
    30E0: 44 00 12 0B 04 0B FF FF 01 4C 4E 4B 41 00 12 0C  D........LNKA...
    30F0: 04 0B FF FF 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF  ......LNKB......
    3100: FF 0A 03 4C 4E 4B 43 00 08 47 30 37 38 12 2C 04  ...LNKC..G078.,.
    3110: 12 09 04 0B FF FF 00 00 0A 2B 12 09 04 0B FF FF  .........+......
    3120: 01 00 0A 28 12 0A 04 0B FF FF 0A 02 00 0A 29 12  ...(..........).
    3130: 0A 04 0B FF FF 0A 03 00 0A 2A 08 50 30 37 39 12  .........*.P079.
    3140: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 48 00 12 0B  4........LNKH...
    3150: 04 0B FF FF 01 4C 4E 4B 45 00 12 0C 04 0B FF FF  .....LNKE.......
    3160: 0A 02 4C 4E 4B 46 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKF.........L
    3170: 4E 4B 47 00 08 47 30 37 39 12 2C 04 12 09 04 0B  NKG..G079.,.....
    3180: FF FF 00 00 0A 27 12 09 04 0B FF FF 01 00 0A 24  .....'.........$
    3190: 12 0A 04 0B FF FF 0A 02 00 0A 25 12 0A 04 0B FF  ..........%.....
    31A0: FF 0A 03 00 0A 26 08 50 30 37 41 12 34 04 12 0B  .....&.P07A.4...
    31B0: 04 0B FF FF 00 4C 4E 4B 44 00 12 0B 04 0B FF FF  .....LNKD.......
    31C0: 01 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKA.........LN
    31D0: 4B 42 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00  KB.........LNKC.
    31E0: 08 47 30 37 41 12 2C 04 12 09 04 0B FF FF 00 00  .G07A.,.........
    31F0: 0A 23 12 09 04 0B FF FF 01 00 0A 20 12 0A 04 0B  .#......... ....
    3200: FF FF 0A 02 00 0A 21 12 0A 04 0B FF FF 0A 03 00  ......!.........
    3210: 0A 22 08 50 30 37 42 12 34 04 12 0B 04 0B FF FF  .".P07B.4.......
    3220: 00 4C 4E 4B 48 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKH........LNK
    3230: 45 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 46 00 12  E.........LNKF..
    3240: 0C 04 0B FF FF 0A 03 4C 4E 4B 47 00 08 47 30 37  .......LNKG..G07
    3250: 42 12 2C 04 12 09 04 0B FF FF 00 00 0A 1F 12 09  B.,.............
    3260: 04 0B FF FF 01 00 0A 1C 12 0A 04 0B FF FF 0A 02  ................
    3270: 00 0A 1D 12 0A 04 0B FF FF 0A 03 00 0A 1E 08 50  ...............P
    3280: 30 37 43 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  07C.4........LNK
    3290: 44 00 12 0B 04 0B FF FF 01 4C 4E 4B 41 00 12 0C  D........LNKA...
    32A0: 04 0B FF FF 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF  ......LNKB......
    32B0: FF 0A 03 4C 4E 4B 43 00 08 47 30 37 43 12 2C 04  ...LNKC..G07C.,.
    32C0: 12 09 04 0B FF FF 00 00 0A 1B 12 09 04 0B FF FF  ................
    32D0: 01 00 0A 18 12 0A 04 0B FF FF 0A 02 00 0A 19 12  ................
    32E0: 0A 04 0B FF FF 0A 03 00 0A 1A 08 50 30 37 44 12  ...........P07D.
    32F0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 12 0B  4........LNKA...
    3300: 04 0B FF FF 01 4C 4E 4B 42 00 12 0C 04 0B FF FF  .....LNKB.......
    3310: 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKC.........L
    3320: 4E 4B 44 00 08 47 30 37 44 12 2C 04 12 09 04 0B  NKD..G07D.,.....
    3330: FF FF 00 00 0A 18 12 09 04 0B FF FF 01 00 0A 19  ................
    3340: 12 0A 04 0B FF FF 0A 02 00 0A 1A 12 0A 04 0B FF  ................
    3350: FF 0A 03 00 0A 1B 08 50 30 37 45 12 34 04 12 0B  .......P07E.4...
    3360: 04 0B FF FF 00 4C 4E 4B 45 00 12 0B 04 0B FF FF  .....LNKE.......
    3370: 01 4C 4E 4B 46 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKF.........LN
    3380: 4B 47 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00  KG.........LNKH.
    3390: 08 47 30 37 45 12 2C 04 12 09 04 0B FF FF 00 00  .G07E.,.........
    33A0: 0A 1C 12 09 04 0B FF FF 01 00 0A 1D 12 0A 04 0B  ................
    33B0: FF FF 0A 02 00 0A 1E 12 0A 04 0B FF FF 0A 03 00  ................
    33C0: 0A 1F 08 50 30 37 46 12 34 04 12 0B 04 0B FF FF  ...P07F.4.......
    33D0: 00 4C 4E 4B 41 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKA........LNK
    33E0: 42 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 43 00 12  B.........LNKC..
    33F0: 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00 08 47 30 37  .......LNKD..G07
    3400: 46 12 2C 04 12 09 04 0B FF FF 00 00 0A 20 12 09  F.,.......... ..
    3410: 04 0B FF FF 01 00 0A 21 12 0A 04 0B FF FF 0A 02  .......!........
    3420: 00 0A 22 12 0A 04 0B FF FF 0A 03 00 0A 23 08 50  .."..........#.P
    3430: 30 38 38 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  088.4........LNK
    3440: 45 00 12 0B 04 0B FF FF 01 4C 4E 4B 46 00 12 0C  E........LNKF...
    3450: 04 0B FF FF 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF  ......LNKG......
    3460: FF 0A 03 4C 4E 4B 48 00 08 47 30 38 38 12 2C 04  ...LNKH..G088.,.
    3470: 12 09 04 0B FF FF 00 00 0A 24 12 09 04 0B FF FF  .........$......
    3480: 01 00 0A 25 12 0A 04 0B FF FF 0A 02 00 0A 26 12  ...%..........&.
    3490: 0A 04 0B FF FF 0A 03 00 0A 27 08 50 44 30 31 12  .........'.PD01.
    34A0: 41 11 13 12 0B 04 0B FF FF 00 4C 4E 4B 42 00 12  A.........LNKB..
    34B0: 0D 04 0C FF FF 01 00 00 4C 4E 4B 41 00 12 0D 04  ........LNKA....
    34C0: 0C FF FF 01 00 01 4C 4E 4B 41 00 12 0E 04 0C FF  ......LNKA......
    34D0: FF 01 00 0A 02 4C 4E 4B 41 00 12 0E 04 0C FF FF  .....LNKA.......
    34E0: 01 00 0A 03 4C 4E 4B 41 00 12 0D 04 0C FF FF 02  ....LNKA........
    34F0: 00 00 4C 4E 4B 41 00 12 0D 04 0C FF FF 02 00 01  ..LNKA..........
    3500: 4C 4E 4B 41 00 12 0D 04 0C FF FF 03 00 00 4C 4E  LNKA..........LN
    3510: 4B 42 00 12 0D 04 0C FF FF 03 00 01 4C 4E 4B 42  KB..........LNKB
    3520: 00 12 0E 04 0C FF FF 03 00 0A 02 4C 4E 4B 42 00  ...........LNKB.
    3530: 12 0E 04 0C FF FF 03 00 0A 03 4C 4E 4B 42 00 12  ..........LNKB..
    3540: 0D 04 0C FF FF 04 00 00 4C 4E 4B 42 00 12 0D 04  ........LNKB....
    3550: 0C FF FF 04 00 01 4C 4E 4B 42 00 12 0D 04 0C FF  ......LNKB......
    3560: FF 05 00 00 4C 4E 4B 43 00 12 0D 04 0C FF FF 05  ....LNKC........
    3570: 00 01 4C 4E 4B 43 00 12 0E 04 0C FF FF 05 00 0A  ..LNKC..........
    3580: 02 4C 4E 4B 43 00 12 0E 04 0C FF FF 05 00 0A 03  .LNKC...........
    3590: 4C 4E 4B 43 00 12 0D 04 0C FF FF 07 00 00 4C 4E  LNKC..........LN
    35A0: 4B 44 00 12 0D 04 0C FF FF 07 00 01 4C 4E 4B 44  KD..........LNKD
    35B0: 00 08 41 52 30 31 12 4B 0E 13 12 09 04 0B FF FF  ..AR01.K........
    35C0: 00 00 0A 39 12 0B 04 0C FF FF 01 00 00 00 0A 38  ...9...........8
    35D0: 12 0B 04 0C FF FF 01 00 01 00 0A 38 12 0C 04 0C  ...........8....
    35E0: FF FF 01 00 0A 02 00 0A 38 12 0C 04 0C FF FF 01  ........8.......
    35F0: 00 0A 03 00 0A 38 12 0B 04 0C FF FF 02 00 00 00  .....8..........
    3600: 0A 38 12 0B 04 0C FF FF 02 00 01 00 0A 38 12 0B  .8...........8..
    3610: 04 0C FF FF 03 00 00 00 0A 39 12 0B 04 0C FF FF  .........9......
    3620: 03 00 01 00 0A 39 12 0C 04 0C FF FF 03 00 0A 02  .....9..........
    3630: 00 0A 39 12 0C 04 0C FF FF 03 00 0A 03 00 0A 39  ..9............9
    3640: 12 0B 04 0C FF FF 04 00 00 00 0A 39 12 0B 04 0C  ...........9....
    3650: FF FF 04 00 01 00 0A 39 12 0B 04 0C FF FF 05 00  .......9........
    3660: 00 00 0A 3A 12 0B 04 0C FF FF 05 00 01 00 0A 3A  ...:...........:
    3670: 12 0C 04 0C FF FF 05 00 0A 02 00 0A 3A 12 0C 04  ............:...
    3680: 0C FF FF 05 00 0A 03 00 0A 3A 12 0B 04 0C FF FF  .........:......
    3690: 07 00 00 00 0A 3B 12 0B 04 0C FF FF 07 00 01 00  .....;..........
    36A0: 0A 3B 08 50 30 38 46 12 34 04 12 0B 04 0B FF FF  .;.P08F.4.......
    36B0: 00 4C 4E 4B 41 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKA........LNK
    36C0: 42 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 43 00 12  B.........LNKC..
    36D0: 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00 08 47 30 38  .......LNKD..G08
    36E0: 46 12 2C 04 12 09 04 0B FF FF 00 00 0A 38 12 09  F.,..........8..
    36F0: 04 0B FF FF 01 00 0A 39 12 0A 04 0B FF FF 0A 02  .......9........
    3700: 00 0A 3A 12 0A 04 0B FF FF 0A 03 00 0A 3B 08 50  ..:..........;.P
    3710: 30 39 30 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  090.4........LNK
    3720: 45 00 12 0B 04 0B FF FF 01 4C 4E 4B 46 00 12 0C  E........LNKF...
    3730: 04 0B FF FF 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF  ......LNKG......
    3740: FF 0A 03 4C 4E 4B 48 00 08 47 30 39 30 12 2C 04  ...LNKH..G090.,.
    3750: 12 09 04 0B FF FF 00 00 0A 3C 12 09 04 0B FF FF  .........<......
    3760: 01 00 0A 3D 12 0A 04 0B FF FF 0A 02 00 0A 3E 12  ...=..........>.
    3770: 0A 04 0B FF FF 0A 03 00 0A 3F 08 50 30 39 31 12  .........?.P091.
    3780: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 12 0B  4........LNKA...
    3790: 04 0B FF FF 01 4C 4E 4B 42 00 12 0C 04 0B FF FF  .....LNKB.......
    37A0: 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKC.........L
    37B0: 4E 4B 44 00 08 47 30 39 31 12 2C 04 12 09 04 0B  NKD..G091.,.....
    37C0: FF FF 00 00 0A 40 12 09 04 0B FF FF 01 00 0A 41  .....@.........A
    37D0: 12 0A 04 0B FF FF 0A 02 00 0A 42 12 0A 04 0B FF  ..........B.....
    37E0: FF 0A 03 00 0A 43 08 50 30 39 32 12 34 04 12 0B  .....C.P092.4...
    37F0: 04 0B FF FF 00 4C 4E 4B 45 00 12 0B 04 0B FF FF  .....LNKE.......
    3800: 01 4C 4E 4B 46 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKF.........LN
    3810: 4B 47 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00  KG.........LNKH.
    3820: 08 47 30 39 32 12 2C 04 12 09 04 0B FF FF 00 00  .G092.,.........
    3830: 0A 44 12 09 04 0B FF FF 01 00 0A 45 12 0A 04 0B  .D.........E....
    3840: FF FF 0A 02 00 0A 46 12 0A 04 0B FF FF 0A 03 00  ......F.........
    3850: 0A 47 08 50 30 39 33 12 34 04 12 0B 04 0B FF FF  .G.P093.4.......
    3860: 00 4C 4E 4B 41 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKA........LNK
    3870: 42 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 43 00 12  B.........LNKC..
    3880: 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00 08 47 30 39  .......LNKD..G09
    3890: 33 12 2C 04 12 09 04 0B FF FF 00 00 0A 48 12 09  3.,..........H..
    38A0: 04 0B FF FF 01 00 0A 49 12 0A 04 0B FF FF 0A 02  .......I........
    38B0: 00 0A 4A 12 0A 04 0B FF FF 0A 03 00 0A 4B 08 50  ..J..........K.P
    38C0: 30 39 34 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  094.4........LNK
    38D0: 43 00 12 0B 04 0B FF FF 01 4C 4E 4B 44 00 12 0C  C........LNKD...
    38E0: 04 0B FF FF 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF  ......LNKA......
    38F0: FF 0A 03 4C 4E 4B 42 00 08 47 30 39 34 12 2C 04  ...LNKB..G094.,.
    3900: 12 09 04 0B FF FF 00 00 0A 4A 12 09 04 0B FF FF  .........J......
    3910: 01 00 0A 4B 12 0A 04 0B FF FF 0A 02 00 0A 48 12  ...K..........H.
    3920: 0A 04 0B FF FF 0A 03 00 0A 49 08 50 30 39 35 12  .........I.P095.
    3930: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 47 00 12 0B  4........LNKG...
    3940: 04 0B FF FF 01 4C 4E 4B 48 00 12 0C 04 0B FF FF  .....LNKH.......
    3950: 0A 02 4C 4E 4B 45 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKE.........L
    3960: 4E 4B 46 00 08 47 30 39 35 12 2C 04 12 09 04 0B  NKF..G095.,.....
    3970: FF FF 00 00 0A 46 12 09 04 0B FF FF 01 00 0A 47  .....F.........G
    3980: 12 0A 04 0B FF FF 0A 02 00 0A 44 12 0A 04 0B FF  ..........D.....
    3990: FF 0A 03 00 0A 45 08 50 30 39 36 12 34 04 12 0B  .....E.P096.4...
    39A0: 04 0B FF FF 00 4C 4E 4B 43 00 12 0B 04 0B FF FF  .....LNKC.......
    39B0: 01 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKD.........LN
    39C0: 4B 41 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00  KA.........LNKB.
    39D0: 08 47 30 39 36 12 2C 04 12 09 04 0B FF FF 00 00  .G096.,.........
    39E0: 0A 42 12 09 04 0B FF FF 01 00 0A 43 12 0A 04 0B  .B.........C....
    39F0: FF FF 0A 02 00 0A 40 12 0A 04 0B FF FF 0A 03 00  ......@.........
    3A00: 0A 41 08 50 30 39 37 12 34 04 12 0B 04 0B FF FF  .A.P097.4.......
    3A10: 00 4C 4E 4B 47 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKG........LNK
    3A20: 48 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 45 00 12  H.........LNKE..
    3A30: 0C 04 0B FF FF 0A 03 4C 4E 4B 46 00 08 47 30 39  .......LNKF..G09
    3A40: 37 12 2C 04 12 09 04 0B FF FF 00 00 0A 3E 12 09  7.,..........>..
    3A50: 04 0B FF FF 01 00 0A 3F 12 0A 04 0B FF FF 0A 02  .......?........
    3A60: 00 0A 3C 12 0A 04 0B FF FF 0A 03 00 0A 3D 08 50  ..<..........=.P
    3A70: 30 39 38 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  098.4........LNK
    3A80: 43 00 12 0B 04 0B FF FF 01 4C 4E 4B 44 00 12 0C  C........LNKD...
    3A90: 04 0B FF FF 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF  ......LNKA......
    3AA0: FF 0A 03 4C 4E 4B 42 00 08 47 30 39 38 12 2C 04  ...LNKB..G098.,.
    3AB0: 12 09 04 0B FF FF 00 00 0A 3A 12 09 04 0B FF FF  .........:......
    3AC0: 01 00 0A 3B 12 0A 04 0B FF FF 0A 02 00 0A 38 12  ...;..........8.
    3AD0: 0A 04 0B FF FF 0A 03 00 0A 39 08 50 30 39 39 12  .........9.P099.
    3AE0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 42 00 12 0B  4........LNKB...
    3AF0: 04 0B FF FF 01 4C 4E 4B 43 00 12 0C 04 0B FF FF  .....LNKC.......
    3B00: 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKD.........L
    3B10: 4E 4B 41 00 08 47 30 39 39 12 2C 04 12 09 04 0B  NKA..G099.,.....
    3B20: FF FF 00 00 0A 39 12 09 04 0B FF FF 01 00 0A 3A  .....9.........:
    3B30: 12 0A 04 0B FF FF 0A 02 00 0A 3B 12 0A 04 0B FF  ..........;.....
    3B40: FF 0A 03 00 0A 38 08 50 30 39 41 12 34 04 12 0B  .....8.P09A.4...
    3B50: 04 0B FF FF 00 4C 4E 4B 46 00 12 0B 04 0B FF FF  .....LNKF.......
    3B60: 01 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKG.........LN
    3B70: 4B 48 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 45 00  KH.........LNKE.
    3B80: 08 47 30 39 41 12 2C 04 12 09 04 0B FF FF 00 00  .G09A.,.........
    3B90: 0A 3D 12 09 04 0B FF FF 01 00 0A 3E 12 0A 04 0B  .=.........>....
    3BA0: FF FF 0A 02 00 0A 3F 12 0A 04 0B FF FF 0A 03 00  ......?.........
    3BB0: 0A 3C 08 50 30 39 42 12 34 04 12 0B 04 0B FF FF  .<.P09B.4.......
    3BC0: 00 4C 4E 4B 42 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKB........LNK
    3BD0: 43 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 44 00 12  C.........LNKD..
    3BE0: 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00 08 47 30 39  .......LNKA..G09
    3BF0: 42 12 2C 04 12 09 04 0B FF FF 00 00 0A 41 12 09  B.,..........A..
    3C00: 04 0B FF FF 01 00 0A 42 12 0A 04 0B FF FF 0A 02  .......B........
    3C10: 00 0A 43 12 0A 04 0B FF FF 0A 03 00 0A 40 08 50  ..C..........@.P
    3C20: 30 39 43 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  09C.4........LNK
    3C30: 46 00 12 0B 04 0B FF FF 01 4C 4E 4B 47 00 12 0C  F........LNKG...
    3C40: 04 0B FF FF 0A 02 4C 4E 4B 48 00 12 0C 04 0B FF  ......LNKH......
    3C50: FF 0A 03 4C 4E 4B 45 00 08 47 30 39 43 12 2C 04  ...LNKE..G09C.,.
    3C60: 12 09 04 0B FF FF 00 00 0A 45 12 09 04 0B FF FF  .........E......
    3C70: 01 00 0A 46 12 0A 04 0B FF FF 0A 02 00 0A 47 12  ...F..........G.
    3C80: 0A 04 0B FF FF 0A 03 00 0A 44 08 50 30 39 44 12  .........D.P09D.
    3C90: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 42 00 12 0B  4........LNKB...
    3CA0: 04 0B FF FF 01 4C 4E 4B 43 00 12 0C 04 0B FF FF  .....LNKC.......
    3CB0: 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKD.........L
    3CC0: 4E 4B 41 00 08 47 30 39 44 12 2C 04 12 09 04 0B  NKA..G09D.,.....
    3CD0: FF FF 00 00 0A 49 12 09 04 0B FF FF 01 00 0A 4A  .....I.........J
    3CE0: 12 0A 04 0B FF FF 0A 02 00 0A 4B 12 0A 04 0B FF  ..........K.....
    3CF0: FF 0A 03 00 0A 48 08 50 30 39 45 12 34 04 12 0B  .....H.P09E.4...
    3D00: 04 0B FF FF 00 4C 4E 4B 44 00 12 0B 04 0B FF FF  .....LNKD.......
    3D10: 01 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKA.........LN
    3D20: 4B 42 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00  KB.........LNKC.
    3D30: 08 47 30 39 45 12 2C 04 12 09 04 0B FF FF 00 00  .G09E.,.........
    3D40: 0A 4B 12 09 04 0B FF FF 01 00 0A 48 12 0A 04 0B  .K.........H....
    3D50: FF FF 0A 02 00 0A 49 12 0A 04 0B FF FF 0A 03 00  ......I.........
    3D60: 0A 4A 08 50 30 39 46 12 34 04 12 0B 04 0B FF FF  .J.P09F.4.......
    3D70: 00 4C 4E 4B 48 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKH........LNK
    3D80: 45 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 46 00 12  E.........LNKF..
    3D90: 0C 04 0B FF FF 0A 03 4C 4E 4B 47 00 08 47 30 39  .......LNKG..G09
    3DA0: 46 12 2C 04 12 09 04 0B FF FF 00 00 0A 47 12 09  F.,..........G..
    3DB0: 04 0B FF FF 01 00 0A 44 12 0A 04 0B FF FF 0A 02  .......D........
    3DC0: 00 0A 45 12 0A 04 0B FF FF 0A 03 00 0A 46 08 50  ..E..........F.P
    3DD0: 30 41 30 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  0A0.4........LNK
    3DE0: 44 00 12 0B 04 0B FF FF 01 4C 4E 4B 41 00 12 0C  D........LNKA...
    3DF0: 04 0B FF FF 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF  ......LNKB......
    3E00: FF 0A 03 4C 4E 4B 43 00 08 47 30 41 30 12 2C 04  ...LNKC..G0A0.,.
    3E10: 12 09 04 0B FF FF 00 00 0A 43 12 09 04 0B FF FF  .........C......
    3E20: 01 00 0A 40 12 0A 04 0B FF FF 0A 02 00 0A 41 12  ...@..........A.
    3E30: 0A 04 0B FF FF 0A 03 00 0A 42 08 50 30 41 31 12  .........B.P0A1.
    3E40: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 48 00 12 0B  4........LNKH...
    3E50: 04 0B FF FF 01 4C 4E 4B 45 00 12 0C 04 0B FF FF  .....LNKE.......
    3E60: 0A 02 4C 4E 4B 46 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKF.........L
    3E70: 4E 4B 47 00 08 47 30 41 31 12 2C 04 12 09 04 0B  NKG..G0A1.,.....
    3E80: FF FF 00 00 0A 3F 12 09 04 0B FF FF 01 00 0A 3C  .....?.........<
    3E90: 12 0A 04 0B FF FF 0A 02 00 0A 3D 12 0A 04 0B FF  ..........=.....
    3EA0: FF 0A 03 00 0A 3E 08 50 30 41 32 12 34 04 12 0B  .....>.P0A2.4...
    3EB0: 04 0B FF FF 00 4C 4E 4B 44 00 12 0B 04 0B FF FF  .....LNKD.......
    3EC0: 01 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKA.........LN
    3ED0: 4B 42 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00  KB.........LNKC.
    3EE0: 08 47 30 41 32 12 2C 04 12 09 04 0B FF FF 00 00  .G0A2.,.........
    3EF0: 0A 3B 12 09 04 0B FF FF 01 00 0A 38 12 0A 04 0B  .;.........8....
    3F00: FF FF 0A 02 00 0A 39 12 0A 04 0B FF FF 0A 03 00  ......9.........
    3F10: 0A 3A 08 50 30 41 33 12 34 04 12 0B 04 0B FF FF  .:.P0A3.4.......
    3F20: 00 4C 4E 4B 41 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKA........LNK
    3F30: 42 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 43 00 12  B.........LNKC..
    3F40: 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00 08 47 30 41  .......LNKD..G0A
    3F50: 33 12 2C 04 12 09 04 0B FF FF 00 00 0A 38 12 09  3.,..........8..
    3F60: 04 0B FF FF 01 00 0A 39 12 0A 04 0B FF FF 0A 02  .......9........
    3F70: 00 0A 3A 12 0A 04 0B FF FF 0A 03 00 0A 3B 08 50  ..:..........;.P
    3F80: 30 41 34 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  0A4.4........LNK
    3F90: 45 00 12 0B 04 0B FF FF 01 4C 4E 4B 46 00 12 0C  E........LNKF...
    3FA0: 04 0B FF FF 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF  ......LNKG......
    3FB0: FF 0A 03 4C 4E 4B 48 00 08 47 30 41 34 12 2C 04  ...LNKH..G0A4.,.
    3FC0: 12 09 04 0B FF FF 00 00 0A 3C 12 09 04 0B FF FF  .........<......
    3FD0: 01 00 0A 3D 12 0A 04 0B FF FF 0A 02 00 0A 3E 12  ...=..........>.
    3FE0: 0A 04 0B FF FF 0A 03 00 0A 3F 08 50 30 41 35 12  .........?.P0A5.
    3FF0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 12 0B  4........LNKA...
    4000: 04 0B FF FF 01 4C 4E 4B 42 00 12 0C 04 0B FF FF  .....LNKB.......
    4010: 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKC.........L
    4020: 4E 4B 44 00 08 47 30 41 35 12 2C 04 12 09 04 0B  NKD..G0A5.,.....
    4030: FF FF 00 00 0A 40 12 09 04 0B FF FF 01 00 0A 41  .....@.........A
    4040: 12 0A 04 0B FF FF 0A 02 00 0A 42 12 0A 04 0B FF  ..........B.....
    4050: FF 0A 03 00 0A 43 10 8A B6 05 5F 53 42 5F 5B 82  .....C...._SB_[.
    4060: 84 85 01 50 43 49 33 08 5F 48 49 44 0C 41 D0 0A  ...PCI3._HID.A..
    4070: 08 08 5F 43 49 44 0C 41 D0 0A 03 08 5F 41 44 52  .._CID.A...._ADR
    4080: 00 14 0A 5E 42 4E 30 33 00 A4 0A 03 14 0B 5F 42  ...^BN03......_B
    4090: 42 4E 00 A4 42 4E 30 33 08 5F 55 49 44 0A 03 14  BN..BN03._UID...
    40A0: 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 41 52 30  ._PRT...PICM.AR0
    40B0: 33 A4 50 44 30 33 08 43 50 52 42 01 08 4C 56 47  3.PD03.CPRB..LVG
    40C0: 41 0A 00 08 53 54 41 56 0A 0F 08 42 52 42 5F 0B  A...STAV...BRB_.
    40D0: C0 00 08 42 52 4C 5F 0B 40 00 08 49 4F 42 5F 0B  ...BRL_.@..IOB_.
    40E0: 00 A0 08 49 4F 4C 5F 0B 00 60 08 4D 42 42 5F 0C  ...IOL_..`.MBB_.
    40F0: 00 00 00 D4 08 4D 42 4C 5F 0C 00 00 00 02 08 4D  .....MBL_......M
    4100: 41 42 4C 0E 00 00 40 20 00 01 00 00 08 4D 41 42  ABL...@ .....MAB
    4110: 48 0C 00 00 01 00 08 4D 41 4D 4C 0C 00 00 01 00  H......MAML.....
    4120: 08 4D 41 4D 48 0C 00 00 01 00 08 4D 41 4C 4C 0E  .MAMH......MALL.
    4130: 00 00 00 93 59 00 00 00 08 4D 41 4C 48 0C 00 00  ....Y....MALH...
    4140: 01 00 08 50 52 58 4D 0B 00 00 08 43 52 53 32 11  ...PRXM....CRS2.
    4150: 48 09 0A 94 88 0D 00 02 0C 00 00 00 80 00 FF 00  H...............
    4160: 00 00 80 00 88 0D 00 01 0C 03 00 00 00 00 00 00  ................
    4170: 00 00 00 00 88 0D 00 01 0C 03 00 00 00 00 00 00  ................
    4180: 00 00 00 00 87 17 00 00 0C 03 00 00 00 00 00 00  ................
    4190: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 87 17  ................
    41A0: 00 00 0C 03 00 00 00 00 00 00 00 80 FF FF FF FF  ................
    41B0: 00 00 00 00 00 00 00 80 8A 2B 00 00 0C 03 00 00  .........+......
    41C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    41D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    41E0: 00 00 00 00 00 00 79 00 14 0B 5F 53 54 41 00 A4  ......y..._STA..
    41F0: 53 54 41 56 14 4A 19 5F 43 52 53 08 8B 43 52 53  STAV.J._CRS..CRS
    4200: 32 0A 08 4D 49 4E 32 8B 43 52 53 32 0A 0A 4D 41  2..MIN2.CRS2..MA
    4210: 58 32 8B 43 52 53 32 0A 0E 4C 45 4E 32 70 42 52  X2.CRS2..LEN2pBR
    4220: 42 5F 4D 49 4E 32 70 42 52 4C 5F 4C 45 4E 32 70  B_MIN2pBRL_LEN2p
    4230: 4C 45 4E 32 61 72 4D 49 4E 32 76 61 4D 41 58 32  LEN2arMIN2vaMAX2
    4240: 8B 43 52 53 32 0A 28 4D 49 4E 34 8B 43 52 53 32  .CRS2.(MIN4.CRS2
    4250: 0A 2A 4D 41 58 34 8B 43 52 53 32 0A 2E 4C 45 4E  .*MAX4.CRS2..LEN
    4260: 34 70 49 4F 42 5F 4D 49 4E 34 70 49 4F 4C 5F 4C  4pIOB_MIN4pIOL_L
    4270: 45 4E 34 70 4C 45 4E 34 61 72 4D 49 4E 34 76 61  EN4pLEN4arMIN4va
    4280: 4D 41 58 34 A0 4D 07 4C 56 47 41 8B 43 52 53 32  MAX4.M.LVGA.CRS2
    4290: 0A 18 49 4D 4E 32 8B 43 52 53 32 0A 1A 49 4D 58  ..IMN2.CRS2..IMX
    42A0: 32 8B 43 52 53 32 0A 1E 49 4C 4E 32 70 0B B0 03  2.CRS2..ILN2p...
    42B0: 49 4D 4E 32 70 0B DF 03 49 4D 58 32 70 0A 30 49  IMN2p...IMX2p.0I
    42C0: 4C 4E 32 8A 43 52 53 32 0A 3A 56 4D 4E 32 8A 43  LN2.CRS2.:VMN2.C
    42D0: 52 53 32 0A 3E 56 4D 58 32 8A 43 52 53 32 0A 46  RS2.>VMX2.CRS2.F
    42E0: 56 4C 4E 32 70 0C 00 00 0A 00 56 4D 4E 32 70 0C  VLN2p.....VMN2p.
    42F0: FF FF 0B 00 56 4D 58 32 70 0C 00 00 02 00 56 4C  ....VMX2p.....VL
    4300: 4E 32 8A 43 52 53 32 0A 54 4D 49 4E 35 8A 43 52  N2.CRS2.TMIN5.CR
    4310: 53 32 0A 58 4D 41 58 35 8A 43 52 53 32 0A 60 4C  S2.XMAX5.CRS2.`L
    4320: 45 4E 35 70 4D 42 42 5F 4D 49 4E 35 70 4D 42 4C  EN5pMBB_MIN5pMBL
    4330: 5F 4C 45 4E 35 70 4C 45 4E 35 61 72 4D 49 4E 35  _LEN5pLEN5arMIN5
    4340: 76 61 4D 41 58 35 8F 43 52 53 32 0A 72 4D 49 4E  vaMAX5.CRS2.rMIN
    4350: 39 8F 43 52 53 32 0A 7A 4D 41 58 39 8F 43 52 53  9.CRS2.zMAX9.CRS
    4360: 32 0A 8A 4C 45 4E 39 70 4D 41 42 4C 4D 49 4E 39  2..LEN9pMABLMIN9
    4370: 70 4D 41 4C 4C 4C 45 4E 39 70 4C 45 4E 39 60 72  pMALLLEN9pLEN9`r
    4380: 4D 49 4E 39 76 60 4D 41 58 39 A4 43 52 53 32 14  MIN9v`MAX9.CRS2.
    4390: 42 13 5F 4F 53 43 0C 08 53 55 50 50 00 08 43 54  B._OSC..SUPP..CT
    43A0: 52 4C 00 8A 6B 00 43 44 57 31 8A 6B 0A 04 43 44  RL..k.CDW1.k..CD
    43B0: 57 32 8A 6B 0A 08 43 44 57 33 A0 48 0F 93 68 11  W2.k..CDW3.H..h.
    43C0: 13 0A 10 5B 4D DB 33 F7 1F 1C 40 96 57 74 41 C0  ...[M.3...@.WtA.
    43D0: 3D D7 66 70 43 44 57 32 53 55 50 50 70 43 44 57  =.fpCDW2SUPPpCDW
    43E0: 33 43 54 52 4C A0 18 92 93 7B 53 55 50 50 0A 16  3CTRL....{SUPP..
    43F0: 00 0A 16 7B 43 54 52 4C 0A 1E 43 54 52 4C A0 11  ...{CTRL..CTRL..
    4400: 92 50 45 48 50 7B 43 54 52 4C 0A 1E 43 54 52 4C  .PEHP{CTRL..CTRL
    4410: A0 11 92 53 48 50 43 7B 43 54 52 4C 0A 1D 43 54  ...SHPC{CTRL..CT
    4420: 52 4C A0 11 92 50 45 50 4D 7B 43 54 52 4C 0A 1B  RL...PEPM{CTRL..
    4430: 43 54 52 4C A0 11 92 50 45 45 52 7B 43 54 52 4C  CTRL...PEER{CTRL
    4440: 0A 15 43 54 52 4C A0 11 92 50 45 43 53 7B 43 54  ..CTRL...PECS{CT
    4450: 52 4C 0A 0F 43 54 52 4C A0 10 92 93 69 01 7D 43  RL..CTRL....i.}C
    4460: 44 57 31 0A 08 43 44 57 31 A0 15 5B 12 50 4F 53  DW1..CDW1..[.POS
    4470: 43 00 7B 43 54 52 4C 50 4F 53 43 43 54 52 4C A0  C.{CTRLPOSCCTRL.
    4480: 16 92 93 43 44 57 33 43 54 52 4C 7D 43 44 57 31  ...CDW3CTRL}CDW1
    4490: 0A 10 43 44 57 31 70 43 54 52 4C 43 44 57 33 A0  ..CDW1pCTRLCDW3.
    44A0: 11 5B 12 50 4F 53 53 00 70 53 55 50 50 50 4F 53  .[.POSS.pSUPPPOS
    44B0: 53 A4 6B A1 0E 7D 43 44 57 31 0A 04 43 44 57 31  S.k..}CDW1..CDW1
    44C0: A4 6B 5B 82 0C 44 30 32 33 08 5F 41 44 52 0A 02  .k[..D023._ADR..
    44D0: 5B 82 0C 44 30 32 34 08 5F 41 44 52 0A 03 5B 82  [..D024._ADR..[.
    44E0: 46 04 47 50 50 30 08 5F 41 44 52 0C 01 00 01 00  F.GPP0._ADR.....
    44F0: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4500: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4510: 32 35 A4 50 30 32 35 5B 82 0D 44 30 42 33 08 5F  25.P025[..D0B3._
    4520: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 31 08 5F  ADR...[.F.GPP1._
    4530: 41 44 52 0C 02 00 01 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4540: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4550: 0A 50 49 43 4D A4 47 30 32 36 A4 50 30 32 36 5B  .PICM.G026.P026[
    4560: 82 0D 44 30 42 34 08 5F 41 44 52 0B FF FF 5B 82  ..D0B4._ADR...[.
    4570: 46 04 47 50 50 32 08 5F 41 44 52 0C 03 00 01 00  F.GPP2._ADR.....
    4580: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4590: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    45A0: 32 37 A4 50 30 32 37 5B 82 0D 44 30 42 35 08 5F  27.P027[..D0B5._
    45B0: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 33 08 5F  ADR...[.F.GPP3._
    45C0: 41 44 52 0C 04 00 01 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    45D0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    45E0: 0A 50 49 43 4D A4 47 30 32 38 A4 50 30 32 38 5B  .PICM.G028.P028[
    45F0: 82 0D 44 30 42 36 08 5F 41 44 52 0B FF FF 5B 82  ..D0B6._ADR...[.
    4600: 46 04 47 50 50 34 08 5F 41 44 52 0C 05 00 01 00  F.GPP4._ADR.....
    4610: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4620: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4630: 32 39 A4 50 30 32 39 5B 82 0D 44 30 42 37 08 5F  29.P029[..D0B7._
    4640: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 35 08 5F  ADR...[.F.GPP5._
    4650: 41 44 52 0C 06 00 01 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4660: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4670: 0A 50 49 43 4D A4 47 30 32 41 A4 50 30 32 41 5B  .PICM.G02A.P02A[
    4680: 82 0D 44 30 42 38 08 5F 41 44 52 0B FF FF 5B 82  ..D0B8._ADR...[.
    4690: 46 04 47 50 50 36 08 5F 41 44 52 0C 07 00 01 00  F.GPP6._ADR.....
    46A0: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    46B0: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    46C0: 32 42 A4 50 30 32 42 5B 82 0D 44 30 42 39 08 5F  2B.P02B[..D0B9._
    46D0: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 37 08 5F  ADR...[.F.GPP7._
    46E0: 41 44 52 0C 01 00 02 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    46F0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4700: 0A 50 49 43 4D A4 47 30 32 43 A4 50 30 32 43 5B  .PICM.G02C.P02C[
    4710: 82 0D 44 30 42 41 08 5F 41 44 52 0B FF FF 5B 82  ..D0BA._ADR...[.
    4720: 46 04 47 50 50 38 08 5F 41 44 52 0C 02 00 02 00  F.GPP8._ADR.....
    4730: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4740: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4750: 32 44 A4 50 30 32 44 5B 82 0D 44 30 42 44 08 5F  2D.P02D[..D0BD._
    4760: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 39 08 5F  ADR...[.F.GPP9._
    4770: 41 44 52 0C 01 00 03 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4780: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4790: 0A 50 49 43 4D A4 47 30 32 45 A4 50 30 32 45 5B  .PICM.G02E.P02E[
    47A0: 82 0D 44 30 41 42 08 5F 41 44 52 0B FF FF 5B 82  ..D0AB._ADR...[.
    47B0: 46 04 47 50 50 41 08 5F 41 44 52 0C 02 00 03 00  F.GPPA._ADR.....
    47C0: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    47D0: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    47E0: 32 46 A4 50 30 32 46 5B 82 0D 44 30 41 43 08 5F  2F.P02F[..D0AC._
    47F0: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 42 08 5F  ADR...[.F.GPPB._
    4800: 41 44 52 0C 03 00 03 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4810: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4820: 0A 50 49 43 4D A4 47 30 33 30 A4 50 30 33 30 5B  .PICM.G030.P030[
    4830: 82 0D 44 30 41 44 08 5F 41 44 52 0B FF FF 5B 82  ..D0AD._ADR...[.
    4840: 46 04 47 50 50 43 08 5F 41 44 52 0C 04 00 03 00  F.GPPC._ADR.....
    4850: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4860: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4870: 33 31 A4 50 30 33 31 5B 82 0D 44 30 41 45 08 5F  31.P031[..D0AE._
    4880: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 44 08 5F  ADR...[.F.GPPD._
    4890: 41 44 52 0C 05 00 03 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    48A0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    48B0: 0A 50 49 43 4D A4 47 30 33 32 A4 50 30 33 32 5B  .PICM.G032.P032[
    48C0: 82 0D 44 30 41 46 08 5F 41 44 52 0B FF FF 5B 82  ..D0AF._ADR...[.
    48D0: 46 04 47 50 50 45 08 5F 41 44 52 0C 06 00 03 00  F.GPPE._ADR.....
    48E0: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    48F0: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4900: 33 33 A4 50 30 33 33 5B 82 0D 44 30 42 30 08 5F  33.P033[..D0B0._
    4910: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 46 08 5F  ADR...[.F.GPPF._
    4920: 41 44 52 0C 07 00 03 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4930: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4940: 0A 50 49 43 4D A4 47 30 33 34 A4 50 30 33 34 5B  .PICM.G034.P034[
    4950: 82 0D 44 30 42 31 08 5F 41 44 52 0B FF FF 5B 82  ..D0B1._ADR...[.
    4960: 46 04 47 50 50 47 08 5F 41 44 52 0C 01 00 04 00  F.GPPG._ADR.....
    4970: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4980: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4990: 33 35 A4 50 30 33 35 5B 82 0D 44 30 42 32 08 5F  35.P035[..D0B2._
    49A0: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 48 08 5F  ADR...[.F.GPPH._
    49B0: 41 44 52 0C 02 00 04 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    49C0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    49D0: 0A 50 49 43 4D A4 47 30 33 36 A4 50 30 33 36 5B  .PICM.G036.P036[
    49E0: 82 0D 44 30 42 45 08 5F 41 44 52 0B FF FF 5B 82  ..D0BE._ADR...[.
    49F0: 46 04 47 50 31 35 08 5F 41 44 52 0C 01 00 05 00  F.GP15._ADR.....
    4A00: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4A10: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4A20: 33 37 A4 50 30 33 37 5B 82 0D 44 30 42 42 08 5F  37.P037[..D0BB._
    4A30: 41 44 52 0B FF FF 5B 82 46 04 47 50 32 35 08 5F  ADR...[.F.GP25._
    4A40: 41 44 52 0C 02 00 05 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4A50: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4A60: 0A 50 49 43 4D A4 47 30 33 38 A4 50 30 33 38 5B  .PICM.G038.P038[
    4A70: 82 0D 44 30 42 43 08 5F 41 44 52 0B FF FF 5B 82  ..D0BC._ADR...[.
    4A80: 46 04 47 50 33 35 08 5F 41 44 52 0C 03 00 05 00  F.GP35._ADR.....
    4A90: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4AA0: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4AB0: 33 39 A4 50 30 33 39 5B 82 0D 44 30 42 46 08 5F  39.P039[..D0BF._
    4AC0: 41 44 52 0B FF FF 5B 82 46 04 47 50 34 35 08 5F  ADR...[.F.GP45._
    4AD0: 41 44 52 0C 04 00 05 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4AE0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4AF0: 0A 50 49 43 4D A4 47 30 33 41 A4 50 30 33 41 5B  .PICM.G03A.P03A[
    4B00: 82 0D 44 30 43 30 08 5F 41 44 52 0B FF FF 5B 82  ..D0C0._ADR...[.
    4B10: 45 0A 47 50 31 37 08 5F 41 44 52 0C 01 00 07 00  E.GP17._ADR.....
    4B20: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 0B 0A 04  .._PRW..GPRW....
    4B30: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4B40: 33 42 A4 50 30 33 42 5B 82 0B 44 30 33 43 08 5F  3B.P03B[..D03C._
    4B50: 41 44 52 00 5B 82 0B 44 30 33 44 08 5F 41 44 52  ADR.[..D03D._ADR
    4B60: 01 5B 82 0C 44 30 33 45 08 5F 41 44 52 0A 02 5B  .[..D03E._ADR..[
    4B70: 82 0C 44 30 33 46 08 5F 41 44 52 0A 03 5B 82 0C  ..D03F._ADR..[..
    4B80: 58 48 43 30 08 5F 41 44 52 0A 04 5B 82 0C 44 30  XHC0._ADR..[..D0
    4B90: 34 31 08 5F 41 44 52 0A 05 5B 82 0C 44 30 34 32  41._ADR..[..D042
    4BA0: 08 5F 41 44 52 0A 06 5B 82 0C 44 30 34 33 08 5F  ._ADR..[..D043._
    4BB0: 41 44 52 0A 07 5B 82 4D CF 47 50 32 37 08 5F 41  ADR..[.M.GP27._A
    4BC0: 44 52 0C 02 00 07 00 14 0F 5F 50 52 57 00 A4 47  DR......._PRW..G
    4BD0: 50 52 57 0A 0B 0A 04 14 16 5F 50 52 54 00 A0 0A  PRW......_PRT...
    4BE0: 50 49 43 4D A4 47 30 34 34 A4 50 30 34 34 5B 82  PICM.G044.P044[.
    4BF0: 41 66 53 41 54 41 08 5F 41 44 52 00 08 42 35 45  AfSATA._ADR..B5E
    4C00: 4E 00 08 42 41 5F 35 00 08 53 42 41 52 0C 00 F0  N..BA_5..SBAR...
    4C10: B6 F0 08 4F 53 56 52 00 5B 80 53 41 54 58 02 00  ...OSVR.[.SATX..
    4C20: 0A 44 5B 81 43 04 53 41 54 58 00 56 49 44 49 20  .D[.C.SATX.VIDI 
    4C30: 00 30 53 54 43 4C 10 00 40 0C 42 41 30 35 20 00  .0STCL..@.BA05 .
    4C40: 40 0C 57 54 45 4E 01 00 0F 44 49 53 30 01 44 49  @.WTEN...DIS0.DI
    4C50: 53 31 01 44 49 53 32 01 44 49 53 33 01 44 49 53  S1.DIS2.DIS3.DIS
    4C60: 34 01 44 49 53 35 01 5B 81 0E 53 41 54 58 00 00  4.DIS5.[..SATX..
    4C70: 40 21 44 49 53 50 06 14 39 47 42 41 41 08 70 42  @!DISP..9GBAA.pB
    4C80: 41 30 35 42 41 5F 35 A0 1C 91 93 42 41 5F 35 FF  A05BA_5....BA_5.
    4C90: 92 93 53 54 43 4C 0B 01 01 70 00 42 35 45 4E A4  ..STCL...p.B5EN.
    4CA0: 53 42 41 52 A1 0C 70 01 42 35 45 4E A4 42 41 5F  SBAR..p.B5EN.BA_
    4CB0: 35 5B 80 42 41 52 35 00 47 42 41 41 0B 00 10 5B  5[.BAR5.GBAA...[
    4CC0: 81 41 12 42 41 52 35 00 4E 4F 50 54 05 00 4B 05  .A.BAR5.NOPT..K.
    4CD0: 50 54 49 30 01 50 54 49 31 01 50 54 49 32 01 50  PTI0.PTI1.PTI2.P
    4CE0: 54 49 33 01 50 54 49 34 01 50 54 49 35 01 50 54  TI3.PTI4.PTI5.PT
    4CF0: 49 36 01 50 54 49 37 01 00 48 85 43 53 54 30 01  I6.PTI7..H.CST0.
    4D00: 00 4F 03 00 07 42 53 59 30 01 00 38 44 45 54 30  .O...BSY0..8DET0
    4D10: 04 00 04 49 50 4D 30 04 00 14 44 44 49 30 04 00  ...IPM0...DDI0..
    4D20: 4C 35 43 53 54 31 01 00 4F 03 00 07 42 53 59 31  L5CST1..O...BSY1
    4D30: 01 00 38 44 45 54 31 04 00 04 49 50 4D 31 04 00  ..8DET1...IPM1..
    4D40: 14 44 44 49 31 04 00 4C 35 43 53 54 32 01 00 4F  .DDI1..L5CST2..O
    4D50: 03 00 07 42 53 59 32 01 00 38 44 45 54 32 04 00  ...BSY2..8DET2..
    4D60: 04 49 50 4D 32 04 00 14 44 44 49 32 04 00 4C 35  .IPM2...DDI2..L5
    4D70: 43 53 54 33 01 00 4F 03 00 07 42 53 59 33 01 00  CST3..O...BSY3..
    4D80: 38 44 45 54 33 04 00 04 49 50 4D 33 04 00 14 44  8DET3...IPM3...D
    4D90: 44 49 33 04 00 4C 35 43 53 54 34 01 00 4F 03 00  DI3..L5CST4..O..
    4DA0: 07 42 53 59 34 01 00 38 44 45 54 34 04 00 04 49  .BSY4..8DET4...I
    4DB0: 50 4D 34 04 00 14 44 44 49 34 04 00 4C 35 43 53  PM4...DDI4..L5CS
    4DC0: 54 35 01 00 4F 03 00 07 42 53 59 35 01 00 38 44  T5..O...BSY5..8D
    4DD0: 45 54 35 04 00 04 49 50 4D 35 04 00 14 44 44 49  ET5...IPM5...DDI
    4DE0: 35 04 5B 81 0E 42 41 52 35 00 00 40 06 50 54 49  5.[..BAR5..@.PTI
    4DF0: 5F 06 14 0A 5F 49 4E 49 00 47 42 41 41 5B 82 4A  _..._INI.GBAA[.J
    4E00: 19 50 52 49 44 08 5F 41 44 52 00 08 53 50 54 4D  .PRID._ADR..SPTM
    4E10: 11 17 0A 14 78 00 00 00 0F 00 00 00 78 00 00 00  ....x.......x...
    4E20: 0F 00 00 00 1F 00 00 00 14 0B 5F 47 54 4D 00 A4  .........._GTM..
    4E30: 53 50 54 4D 14 0C 5F 53 54 4D 03 70 68 53 50 54  SPTM.._STM.phSPT
    4E40: 4D 14 3A 5F 50 53 30 00 47 42 41 41 A0 2F 90 91  M.:_PS0.GBAA./..
    4E50: 92 95 4F 53 56 52 0A 0C 93 4F 53 56 52 00 42 35  ..OSVR...OSVR.B5
    4E60: 45 4E A0 19 49 50 4D 32 70 0A 32 60 A2 0F 90 93  EN..IPM2p.2`....
    4E70: 42 53 59 32 01 60 5B 22 0A FA 76 60 14 06 5F 50  BSY2.`["..v`.._P
    4E80: 53 33 00 5B 82 49 08 50 5F 44 30 08 5F 41 44 52  S3.[.I.P_D0._ADR
    4E90: 00 14 24 5F 53 54 41 00 47 42 41 41 A0 09 93 42  ..$_STA.GBAA...B
    4EA0: 35 45 4E 00 A4 00 A0 0B 93 44 45 54 30 0A 03 A4  5EN......DET0...
    4EB0: 0A 0F A1 03 A4 00 08 53 31 32 50 00 14 34 5F 50  .......S12P..4_P
    4EC0: 53 30 00 47 42 41 41 A0 29 90 90 95 4F 53 56 52  S0.GBAA.)...OSVR
    4ED0: 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E 70 0A 32  ....OSVR.B5ENp.2
    4EE0: 60 A2 0F 90 93 42 53 59 30 01 60 5B 22 0A FA 76  `....BSY0.`["..v
    4EF0: 60 14 06 5F 50 53 33 00 14 15 5F 47 54 46 00 70  `.._PS3..._GTF.p
    4F00: 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4 60 5B 82  .....F.....`.`[.
    4F10: 49 08 50 5F 44 31 08 5F 41 44 52 01 14 24 5F 53  I.P_D1._ADR..$_S
    4F20: 54 41 00 47 42 41 41 A0 09 93 42 35 45 4E 00 A4  TA.GBAA...B5EN..
    4F30: 00 A0 0B 93 44 45 54 32 0A 03 A4 0A 0F A1 03 A4  ....DET2........
    4F40: 00 08 53 31 32 50 00 14 34 5F 50 53 30 00 47 42  ..S12P..4_PS0.GB
    4F50: 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F  AA.)...OSVR....O
    4F60: 53 56 52 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93  SVR.B5ENp.2`....
    4F70: 42 53 59 32 01 60 5B 22 0A FA 76 60 14 06 5F 50  BSY2.`["..v`.._P
    4F80: 53 33 00 14 15 5F 47 54 46 00 70 11 0A 0A 07 03  S3..._GTF.p.....
    4F90: 46 00 00 00 A0 EF 60 A4 60 5B 82 4B 1A 53 45 43  F.....`.`[.K.SEC
    4FA0: 44 08 5F 41 44 52 0A 02 08 53 50 54 4D 11 17 0A  D._ADR...SPTM...
    4FB0: 14 78 00 00 00 0F 00 00 00 78 00 00 00 0F 00 00  .x.......x......
    4FC0: 00 1F 00 00 00 14 0B 5F 47 54 4D 00 A4 53 50 54  ......._GTM..SPT
    4FD0: 4D 14 0C 5F 53 54 4D 03 70 68 53 50 54 4D 14 46  M.._STM.phSPTM.F
    4FE0: 05 5F 50 53 30 00 47 42 41 41 A0 4A 04 90 91 92  ._PS0.GBAA.J....
    4FF0: 95 4F 53 56 52 0A 0C 93 4F 53 56 52 00 42 35 45  .OSVR...OSVR.B5E
    5000: 4E A0 19 49 50 4D 31 70 0A 32 60 A2 0F 90 93 42  N..IPM1p.2`....B
    5010: 53 59 31 01 60 5B 22 0A FA 76 60 A0 19 49 50 4D  SY1.`["..v`..IPM
    5020: 33 70 0A 32 60 A2 0F 90 93 42 53 59 33 01 60 5B  3p.2`....BSY3.`[
    5030: 22 0A FA 76 60 14 06 5F 50 53 33 00 5B 82 43 08  "..v`.._PS3.[.C.
    5040: 53 5F 44 30 08 5F 41 44 52 00 14 24 5F 53 54 41  S_D0._ADR..$_STA
    5050: 00 47 42 41 41 A0 09 93 42 35 45 4E 00 A4 00 A0  .GBAA...B5EN....
    5060: 0B 93 44 45 54 31 0A 03 A4 0A 0F A1 03 A4 00 14  ..DET1..........
    5070: 34 5F 50 53 30 00 47 42 41 41 A0 29 90 90 95 4F  4_PS0.GBAA.)...O
    5080: 53 56 52 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E  SVR....OSVR.B5EN
    5090: 70 0A 32 60 A2 0F 90 93 42 53 59 31 01 60 5B 22  p.2`....BSY1.`["
    50A0: 0A FA 76 60 14 06 5F 50 53 33 00 14 15 5F 47 54  ..v`.._PS3..._GT
    50B0: 46 00 70 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4  F.p.....F.....`.
    50C0: 60 5B 82 43 08 53 5F 44 31 08 5F 41 44 52 01 14  `[.C.S_D1._ADR..
    50D0: 24 5F 53 54 41 00 47 42 41 41 A0 09 93 42 35 45  $_STA.GBAA...B5E
    50E0: 4E 00 A4 00 A0 0B 93 44 45 54 33 0A 03 A4 0A 0F  N......DET3.....
    50F0: A1 03 A4 00 14 34 5F 50 53 30 00 47 42 41 41 A0  .....4_PS0.GBAA.
    5100: 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F 53 56 52  )...OSVR....OSVR
    5110: 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93 42 53 59  .B5ENp.2`....BSY
    5120: 33 01 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00  3.`["..v`.._PS3.
    5130: 14 15 5F 47 54 46 00 70 11 0A 0A 07 03 46 00 00  .._GTF.p.....F..
    5140: 00 A0 EF 60 A4 60 14 4A 10 45 4E 50 5F 02 A0 0C  ...`.`.J.ENP_...
    5150: 93 68 00 70 80 69 00 44 49 53 30 A1 4F 04 A0 0C  .h.p.i.DIS0.O...
    5160: 93 68 01 70 80 69 00 44 49 53 31 A1 3F A0 0D 93  .h.p.i.DIS1.?...
    5170: 68 0A 02 70 80 69 00 44 49 53 32 A1 2F A0 0D 93  h..p.i.DIS2./...
    5180: 68 0A 03 70 80 69 00 44 49 53 33 A1 1F A0 0D 93  h..p.i.DIS3.....
    5190: 68 0A 04 70 80 69 00 44 49 53 34 A1 0F A0 0D 93  h..p.i.DIS4.....
    51A0: 68 0A 05 70 80 69 00 44 49 53 35 70 01 57 54 45  h..p.i.DIS5p.WTE
    51B0: 4E A0 0A 93 68 00 70 69 50 54 49 30 A1 45 04 A0  N...h.piPTI0.E..
    51C0: 0A 93 68 01 70 69 50 54 49 31 A1 37 A0 0B 93 68  ..h.piPTI1.7...h
    51D0: 0A 02 70 69 50 54 49 32 A1 29 A0 0B 93 68 0A 03  ..piPTI2.)...h..
    51E0: 70 69 50 54 49 33 A1 1B A0 0B 93 68 0A 04 70 69  piPTI3.....h..pi
    51F0: 50 54 49 34 A1 0D A0 0B 93 68 0A 05 70 69 50 54  PTI4.....h..piPT
    5200: 49 35 A0 0E 93 44 49 53 50 0A 3F 70 01 50 54 49  I5...DISP.?p.PTI
    5210: 30 A1 1A A0 18 90 44 49 53 30 7F 7B 44 49 53 50  0.....DIS0.{DISP
    5220: 0A 3E 00 0A 3E 00 70 00 50 54 49 30 70 50 54 49  .>..>.p.PTI0pPTI
    5230: 5F 60 70 00 61 A2 0E 60 A0 07 7B 60 01 00 75 61  _`p.a..`..{`..ua
    5240: 7A 60 01 60 70 76 61 4E 4F 50 54 70 00 57 54 45  z`.`pvaNOPTp.WTE
    5250: 4E 5B 82 41 66 53 41 54 32 08 5F 41 44 52 01 08  N[.AfSAT2._ADR..
    5260: 42 35 45 4E 00 08 42 41 5F 35 00 08 53 42 41 52  B5EN..BA_5..SBAR
    5270: 0C 00 F0 B6 F0 08 4F 53 56 52 00 5B 80 53 41 54  ......OSVR.[.SAT
    5280: 58 02 00 0A 44 5B 81 43 04 53 41 54 58 00 56 49  X...D[.C.SATX.VI
    5290: 44 49 20 00 30 53 54 43 4C 10 00 40 0C 42 41 30  DI .0STCL..@.BA0
    52A0: 35 20 00 40 0C 57 54 45 4E 01 00 0F 44 49 53 30  5 .@.WTEN...DIS0
    52B0: 01 44 49 53 31 01 44 49 53 32 01 44 49 53 33 01  .DIS1.DIS2.DIS3.
    52C0: 44 49 53 34 01 44 49 53 35 01 5B 81 0E 53 41 54  DIS4.DIS5.[..SAT
    52D0: 58 00 00 40 21 44 49 53 50 06 14 39 47 42 41 41  X..@!DISP..9GBAA
    52E0: 08 70 42 41 30 35 42 41 5F 35 A0 1C 91 93 42 41  .pBA05BA_5....BA
    52F0: 5F 35 FF 92 93 53 54 43 4C 0B 01 01 70 00 42 35  _5...STCL...p.B5
    5300: 45 4E A4 53 42 41 52 A1 0C 70 01 42 35 45 4E A4  EN.SBAR..p.B5EN.
    5310: 42 41 5F 35 5B 80 42 41 52 35 00 47 42 41 41 0B  BA_5[.BAR5.GBAA.
    5320: 00 10 5B 81 41 12 42 41 52 35 00 4E 4F 50 54 05  ..[.A.BAR5.NOPT.
    5330: 00 4B 05 50 54 49 30 01 50 54 49 31 01 50 54 49  .K.PTI0.PTI1.PTI
    5340: 32 01 50 54 49 33 01 50 54 49 34 01 50 54 49 35  2.PTI3.PTI4.PTI5
    5350: 01 50 54 49 36 01 50 54 49 37 01 00 48 85 43 53  .PTI6.PTI7..H.CS
    5360: 54 30 01 00 4F 03 00 07 42 53 59 30 01 00 38 44  T0..O...BSY0..8D
    5370: 45 54 30 04 00 04 49 50 4D 30 04 00 14 44 44 49  ET0...IPM0...DDI
    5380: 30 04 00 4C 35 43 53 54 31 01 00 4F 03 00 07 42  0..L5CST1..O...B
    5390: 53 59 31 01 00 38 44 45 54 31 04 00 04 49 50 4D  SY1..8DET1...IPM
    53A0: 31 04 00 14 44 44 49 31 04 00 4C 35 43 53 54 32  1...DDI1..L5CST2
    53B0: 01 00 4F 03 00 07 42 53 59 32 01 00 38 44 45 54  ..O...BSY2..8DET
    53C0: 32 04 00 04 49 50 4D 32 04 00 14 44 44 49 32 04  2...IPM2...DDI2.
    53D0: 00 4C 35 43 53 54 33 01 00 4F 03 00 07 42 53 59  .L5CST3..O...BSY
    53E0: 33 01 00 38 44 45 54 33 04 00 04 49 50 4D 33 04  3..8DET3...IPM3.
    53F0: 00 14 44 44 49 33 04 00 4C 35 43 53 54 34 01 00  ..DDI3..L5CST4..
    5400: 4F 03 00 07 42 53 59 34 01 00 38 44 45 54 34 04  O...BSY4..8DET4.
    5410: 00 04 49 50 4D 34 04 00 14 44 44 49 34 04 00 4C  ..IPM4...DDI4..L
    5420: 35 43 53 54 35 01 00 4F 03 00 07 42 53 59 35 01  5CST5..O...BSY5.
    5430: 00 38 44 45 54 35 04 00 04 49 50 4D 35 04 00 14  .8DET5...IPM5...
    5440: 44 44 49 35 04 5B 81 0E 42 41 52 35 00 00 40 06  DDI5.[..BAR5..@.
    5450: 50 54 49 5F 06 14 0A 5F 49 4E 49 00 47 42 41 41  PTI_..._INI.GBAA
    5460: 5B 82 4A 19 50 52 49 44 08 5F 41 44 52 00 08 53  [.J.PRID._ADR..S
    5470: 50 54 4D 11 17 0A 14 78 00 00 00 0F 00 00 00 78  PTM....x.......x
    5480: 00 00 00 0F 00 00 00 1F 00 00 00 14 0B 5F 47 54  ............._GT
    5490: 4D 00 A4 53 50 54 4D 14 0C 5F 53 54 4D 03 70 68  M..SPTM.._STM.ph
    54A0: 53 50 54 4D 14 3A 5F 50 53 30 00 47 42 41 41 A0  SPTM.:_PS0.GBAA.
    54B0: 2F 90 91 92 95 4F 53 56 52 0A 0C 93 4F 53 56 52  /....OSVR...OSVR
    54C0: 00 42 35 45 4E A0 19 49 50 4D 32 70 0A 32 60 A2  .B5EN..IPM2p.2`.
    54D0: 0F 90 93 42 53 59 32 01 60 5B 22 0A FA 76 60 14  ...BSY2.`["..v`.
    54E0: 06 5F 50 53 33 00 5B 82 49 08 50 5F 44 30 08 5F  ._PS3.[.I.P_D0._
    54F0: 41 44 52 00 14 24 5F 53 54 41 00 47 42 41 41 A0  ADR..$_STA.GBAA.
    5500: 09 93 42 35 45 4E 00 A4 00 A0 0B 93 44 45 54 30  ..B5EN......DET0
    5510: 0A 03 A4 0A 0F A1 03 A4 00 08 53 31 32 50 00 14  ..........S12P..
    5520: 34 5F 50 53 30 00 47 42 41 41 A0 29 90 90 95 4F  4_PS0.GBAA.)...O
    5530: 53 56 52 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E  SVR....OSVR.B5EN
    5540: 70 0A 32 60 A2 0F 90 93 42 53 59 30 01 60 5B 22  p.2`....BSY0.`["
    5550: 0A FA 76 60 14 06 5F 50 53 33 00 14 15 5F 47 54  ..v`.._PS3..._GT
    5560: 46 00 70 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4  F.p.....F.....`.
    5570: 60 5B 82 49 08 50 5F 44 31 08 5F 41 44 52 01 14  `[.I.P_D1._ADR..
    5580: 24 5F 53 54 41 00 47 42 41 41 A0 09 93 42 35 45  $_STA.GBAA...B5E
    5590: 4E 00 A4 00 A0 0B 93 44 45 54 32 0A 03 A4 0A 0F  N......DET2.....
    55A0: A1 03 A4 00 08 53 31 32 50 00 14 34 5F 50 53 30  .....S12P..4_PS0
    55B0: 00 47 42 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C  .GBAA.)...OSVR..
    55C0: 92 93 4F 53 56 52 00 42 35 45 4E 70 0A 32 60 A2  ..OSVR.B5ENp.2`.
    55D0: 0F 90 93 42 53 59 32 01 60 5B 22 0A FA 76 60 14  ...BSY2.`["..v`.
    55E0: 06 5F 50 53 33 00 14 15 5F 47 54 46 00 70 11 0A  ._PS3..._GTF.p..
    55F0: 0A 07 03 46 00 00 00 A0 EF 60 A4 60 5B 82 4B 1A  ...F.....`.`[.K.
    5600: 53 45 43 44 08 5F 41 44 52 0A 02 08 53 50 54 4D  SECD._ADR...SPTM
    5610: 11 17 0A 14 78 00 00 00 0F 00 00 00 78 00 00 00  ....x.......x...
    5620: 0F 00 00 00 1F 00 00 00 14 0B 5F 47 54 4D 00 A4  .........._GTM..
    5630: 53 50 54 4D 14 0C 5F 53 54 4D 03 70 68 53 50 54  SPTM.._STM.phSPT
    5640: 4D 14 46 05 5F 50 53 30 00 47 42 41 41 A0 4A 04  M.F._PS0.GBAA.J.
    5650: 90 91 92 95 4F 53 56 52 0A 0C 93 4F 53 56 52 00  ....OSVR...OSVR.
    5660: 42 35 45 4E A0 19 49 50 4D 31 70 0A 32 60 A2 0F  B5EN..IPM1p.2`..
    5670: 90 93 42 53 59 31 01 60 5B 22 0A FA 76 60 A0 19  ..BSY1.`["..v`..
    5680: 49 50 4D 33 70 0A 32 60 A2 0F 90 93 42 53 59 33  IPM3p.2`....BSY3
    5690: 01 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00 5B  .`["..v`.._PS3.[
    56A0: 82 43 08 53 5F 44 30 08 5F 41 44 52 00 14 24 5F  .C.S_D0._ADR..$_
    56B0: 53 54 41 00 47 42 41 41 A0 09 93 42 35 45 4E 00  STA.GBAA...B5EN.
    56C0: A4 00 A0 0B 93 44 45 54 31 0A 03 A4 0A 0F A1 03  .....DET1.......
    56D0: A4 00 14 34 5F 50 53 30 00 47 42 41 41 A0 29 90  ...4_PS0.GBAA.).
    56E0: 90 95 4F 53 56 52 0A 0C 92 93 4F 53 56 52 00 42  ..OSVR....OSVR.B
    56F0: 35 45 4E 70 0A 32 60 A2 0F 90 93 42 53 59 31 01  5ENp.2`....BSY1.
    5700: 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00 14 15  `["..v`.._PS3...
    5710: 5F 47 54 46 00 70 11 0A 0A 07 03 46 00 00 00 A0  _GTF.p.....F....
    5720: EF 60 A4 60 5B 82 43 08 53 5F 44 31 08 5F 41 44  .`.`[.C.S_D1._AD
    5730: 52 01 14 24 5F 53 54 41 00 47 42 41 41 A0 09 93  R..$_STA.GBAA...
    5740: 42 35 45 4E 00 A4 00 A0 0B 93 44 45 54 33 0A 03  B5EN......DET3..
    5750: A4 0A 0F A1 03 A4 00 14 34 5F 50 53 30 00 47 42  ........4_PS0.GB
    5760: 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F  AA.)...OSVR....O
    5770: 53 56 52 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93  SVR.B5ENp.2`....
    5780: 42 53 59 33 01 60 5B 22 0A FA 76 60 14 06 5F 50  BSY3.`["..v`.._P
    5790: 53 33 00 14 15 5F 47 54 46 00 70 11 0A 0A 07 03  S3..._GTF.p.....
    57A0: 46 00 00 00 A0 EF 60 A4 60 14 4A 10 45 4E 50 5F  F.....`.`.J.ENP_
    57B0: 02 A0 0C 93 68 00 70 80 69 00 44 49 53 30 A1 4F  ....h.p.i.DIS0.O
    57C0: 04 A0 0C 93 68 01 70 80 69 00 44 49 53 31 A1 3F  ....h.p.i.DIS1.?
    57D0: A0 0D 93 68 0A 02 70 80 69 00 44 49 53 32 A1 2F  ...h..p.i.DIS2./
    57E0: A0 0D 93 68 0A 03 70 80 69 00 44 49 53 33 A1 1F  ...h..p.i.DIS3..
    57F0: A0 0D 93 68 0A 04 70 80 69 00 44 49 53 34 A1 0F  ...h..p.i.DIS4..
    5800: A0 0D 93 68 0A 05 70 80 69 00 44 49 53 35 70 01  ...h..p.i.DIS5p.
    5810: 57 54 45 4E A0 0A 93 68 00 70 69 50 54 49 30 A1  WTEN...h.piPTI0.
    5820: 45 04 A0 0A 93 68 01 70 69 50 54 49 31 A1 37 A0  E....h.piPTI1.7.
    5830: 0B 93 68 0A 02 70 69 50 54 49 32 A1 29 A0 0B 93  ..h..piPTI2.)...
    5840: 68 0A 03 70 69 50 54 49 33 A1 1B A0 0B 93 68 0A  h..piPTI3.....h.
    5850: 04 70 69 50 54 49 34 A1 0D A0 0B 93 68 0A 05 70  .piPTI4.....h..p
    5860: 69 50 54 49 35 A0 0E 93 44 49 53 50 0A 3F 70 01  iPTI5...DISP.?p.
    5870: 50 54 49 30 A1 1A A0 18 90 44 49 53 30 7F 7B 44  PTI0.....DIS0.{D
    5880: 49 53 50 0A 3E 00 0A 3E 00 70 00 50 54 49 30 70  ISP.>..>.p.PTI0p
    5890: 50 54 49 5F 60 70 00 61 A2 0E 60 A0 07 7B 60 01  PTI_`p.a..`..{`.
    58A0: 00 75 61 7A 60 01 60 70 76 61 4E 4F 50 54 70 00  .uaz`.`pvaNOPTp.
    58B0: 57 54 45 4E 5B 82 4C B3 50 43 49 32 08 5F 48 49  WTEN[.L.PCI2._HI
    58C0: 44 0C 41 D0 0A 08 08 5F 43 49 44 0C 41 D0 0A 03  D.A...._CID.A...
    58D0: 08 5F 41 44 52 00 14 0A 5E 42 4E 30 32 00 A4 0A  ._ADR...^BN02...
    58E0: 02 14 0B 5F 42 42 4E 00 A4 42 4E 30 32 08 5F 55  ..._BBN..BN02._U
    58F0: 49 44 0A 02 14 16 5F 50 52 54 00 A0 0A 50 49 43  ID...._PRT...PIC
    5900: 4D A4 41 52 30 32 A4 50 44 30 32 08 43 50 52 42  M.AR02.PD02.CPRB
    5910: 01 08 4C 56 47 41 0A 00 08 53 54 41 56 0A 0F 08  ..LVGA...STAV...
    5920: 42 52 42 5F 0B 80 00 08 42 52 4C 5F 0B 40 00 08  BRB_....BRL_.@..
    5930: 49 4F 42 5F 0B 00 70 08 49 4F 4C 5F 0B 00 30 08  IOB_..p.IOL_..0.
    5940: 4D 42 42 5F 0C 00 00 00 CA 08 4D 42 4C 5F 0C 00  MBB_......MBL_..
    5950: 00 00 01 08 4D 41 42 4C 0E 00 00 40 20 C0 02 00  ....MABL...@ ...
    5960: 00 08 4D 41 42 48 0C 00 00 01 00 08 4D 41 4D 4C  ..MABH......MAML
    5970: 0C 00 00 01 00 08 4D 41 4D 48 0C 00 00 01 00 08  ......MAMH......
    5980: 4D 41 4C 4C 0E 00 00 00 93 59 00 00 00 08 4D 41  MALL.....Y....MA
    5990: 4C 48 0C 00 00 01 00 08 50 52 58 4D 0B 00 00 08  LH......PRXM....
    59A0: 43 52 53 32 11 48 09 0A 94 88 0D 00 02 0C 00 00  CRS2.H..........
    59B0: 00 80 00 FF 00 00 00 80 00 88 0D 00 01 0C 03 00  ................
    59C0: 00 00 00 00 00 00 00 00 00 88 0D 00 01 0C 03 00  ................
    59D0: 00 00 00 00 00 00 00 00 00 87 17 00 00 0C 03 00  ................
    59E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    59F0: 00 00 00 87 17 00 00 0C 03 00 00 00 00 00 00 00  ................
    5A00: 80 FF FF FF FF 00 00 00 00 00 00 00 80 8A 2B 00  ..............+.
    5A10: 00 0C 03 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5A20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5A30: 00 00 00 00 00 00 00 00 00 00 00 79 00 14 0B 5F  ...........y..._
    5A40: 53 54 41 00 A4 53 54 41 56 14 4A 19 5F 43 52 53  STA..STAV.J._CRS
    5A50: 08 8B 43 52 53 32 0A 08 4D 49 4E 32 8B 43 52 53  ..CRS2..MIN2.CRS
    5A60: 32 0A 0A 4D 41 58 32 8B 43 52 53 32 0A 0E 4C 45  2..MAX2.CRS2..LE
    5A70: 4E 32 70 42 52 42 5F 4D 49 4E 32 70 42 52 4C 5F  N2pBRB_MIN2pBRL_
    5A80: 4C 45 4E 32 70 4C 45 4E 32 61 72 4D 49 4E 32 76  LEN2pLEN2arMIN2v
    5A90: 61 4D 41 58 32 8B 43 52 53 32 0A 28 4D 49 4E 34  aMAX2.CRS2.(MIN4
    5AA0: 8B 43 52 53 32 0A 2A 4D 41 58 34 8B 43 52 53 32  .CRS2.*MAX4.CRS2
    5AB0: 0A 2E 4C 45 4E 34 70 49 4F 42 5F 4D 49 4E 34 70  ..LEN4pIOB_MIN4p
    5AC0: 49 4F 4C 5F 4C 45 4E 34 70 4C 45 4E 34 61 72 4D  IOL_LEN4pLEN4arM
    5AD0: 49 4E 34 76 61 4D 41 58 34 A0 4D 07 4C 56 47 41  IN4vaMAX4.M.LVGA
    5AE0: 8B 43 52 53 32 0A 18 49 4D 4E 32 8B 43 52 53 32  .CRS2..IMN2.CRS2
    5AF0: 0A 1A 49 4D 58 32 8B 43 52 53 32 0A 1E 49 4C 4E  ..IMX2.CRS2..ILN
    5B00: 32 70 0B B0 03 49 4D 4E 32 70 0B DF 03 49 4D 58  2p...IMN2p...IMX
    5B10: 32 70 0A 30 49 4C 4E 32 8A 43 52 53 32 0A 3A 56  2p.0ILN2.CRS2.:V
    5B20: 4D 4E 32 8A 43 52 53 32 0A 3E 56 4D 58 32 8A 43  MN2.CRS2.>VMX2.C
    5B30: 52 53 32 0A 46 56 4C 4E 32 70 0C 00 00 0A 00 56  RS2.FVLN2p.....V
    5B40: 4D 4E 32 70 0C FF FF 0B 00 56 4D 58 32 70 0C 00  MN2p.....VMX2p..
    5B50: 00 02 00 56 4C 4E 32 8A 43 52 53 32 0A 54 4D 49  ...VLN2.CRS2.TMI
    5B60: 4E 35 8A 43 52 53 32 0A 58 4D 41 58 35 8A 43 52  N5.CRS2.XMAX5.CR
    5B70: 53 32 0A 60 4C 45 4E 35 70 4D 42 42 5F 4D 49 4E  S2.`LEN5pMBB_MIN
    5B80: 35 70 4D 42 4C 5F 4C 45 4E 35 70 4C 45 4E 35 61  5pMBL_LEN5pLEN5a
    5B90: 72 4D 49 4E 35 76 61 4D 41 58 35 8F 43 52 53 32  rMIN5vaMAX5.CRS2
    5BA0: 0A 72 4D 49 4E 39 8F 43 52 53 32 0A 7A 4D 41 58  .rMIN9.CRS2.zMAX
    5BB0: 39 8F 43 52 53 32 0A 8A 4C 45 4E 39 70 4D 41 42  9.CRS2..LEN9pMAB
    5BC0: 4C 4D 49 4E 39 70 4D 41 4C 4C 4C 45 4E 39 70 4C  LMIN9pMALLLEN9pL
    5BD0: 45 4E 39 60 72 4D 49 4E 39 76 60 4D 41 58 39 A4  EN9`rMIN9v`MAX9.
    5BE0: 43 52 53 32 14 42 13 5F 4F 53 43 0C 08 53 55 50  CRS2.B._OSC..SUP
    5BF0: 50 00 08 43 54 52 4C 00 8A 6B 00 43 44 57 31 8A  P..CTRL..k.CDW1.
    5C00: 6B 0A 04 43 44 57 32 8A 6B 0A 08 43 44 57 33 A0  k..CDW2.k..CDW3.
    5C10: 48 0F 93 68 11 13 0A 10 5B 4D DB 33 F7 1F 1C 40  H..h....[M.3...@
    5C20: 96 57 74 41 C0 3D D7 66 70 43 44 57 32 53 55 50  .WtA.=.fpCDW2SUP
    5C30: 50 70 43 44 57 33 43 54 52 4C A0 18 92 93 7B 53  PpCDW3CTRL....{S
    5C40: 55 50 50 0A 16 00 0A 16 7B 43 54 52 4C 0A 1E 43  UPP.....{CTRL..C
    5C50: 54 52 4C A0 11 92 50 45 48 50 7B 43 54 52 4C 0A  TRL...PEHP{CTRL.
    5C60: 1E 43 54 52 4C A0 11 92 53 48 50 43 7B 43 54 52  .CTRL...SHPC{CTR
    5C70: 4C 0A 1D 43 54 52 4C A0 11 92 50 45 50 4D 7B 43  L..CTRL...PEPM{C
    5C80: 54 52 4C 0A 1B 43 54 52 4C A0 11 92 50 45 45 52  TRL..CTRL...PEER
    5C90: 7B 43 54 52 4C 0A 15 43 54 52 4C A0 11 92 50 45  {CTRL..CTRL...PE
    5CA0: 43 53 7B 43 54 52 4C 0A 0F 43 54 52 4C A0 10 92  CS{CTRL..CTRL...
    5CB0: 93 69 01 7D 43 44 57 31 0A 08 43 44 57 31 A0 15  .i.}CDW1..CDW1..
    5CC0: 5B 12 50 4F 53 43 00 7B 43 54 52 4C 50 4F 53 43  [.POSC.{CTRLPOSC
    5CD0: 43 54 52 4C A0 16 92 93 43 44 57 33 43 54 52 4C  CTRL....CDW3CTRL
    5CE0: 7D 43 44 57 31 0A 10 43 44 57 31 70 43 54 52 4C  }CDW1..CDW1pCTRL
    5CF0: 43 44 57 33 A0 11 5B 12 50 4F 53 53 00 70 53 55  CDW3..[.POSS.pSU
    5D00: 50 50 50 4F 53 53 A4 6B A1 0E 7D 43 44 57 31 0A  PPPOSS.k..}CDW1.
    5D10: 04 43 44 57 31 A4 6B 5B 82 0C 44 30 34 38 08 5F  .CDW1.k[..D048._
    5D20: 41 44 52 0A 02 5B 82 0C 44 30 34 39 08 5F 41 44  ADR..[..D049._AD
    5D30: 52 0A 03 5B 82 46 04 47 50 50 30 08 5F 41 44 52  R..[.F.GPP0._ADR
    5D40: 0C 01 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    5D50: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    5D60: 43 4D A4 47 30 34 41 A4 50 30 34 41 5B 82 0D 44  CM.G04A.P04A[..D
    5D70: 30 43 31 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0C1._ADR...[.F.G
    5D80: 50 50 31 08 5F 41 44 52 0C 02 00 01 00 14 0F 5F  PP1._ADR......._
    5D90: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    5DA0: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 34 42 A4  PRT...PICM.G04B.
    5DB0: 50 30 34 42 5B 82 0D 44 30 43 32 08 5F 41 44 52  P04B[..D0C2._ADR
    5DC0: 0B FF FF 5B 82 46 04 47 50 50 32 08 5F 41 44 52  ...[.F.GPP2._ADR
    5DD0: 0C 03 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    5DE0: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    5DF0: 43 4D A4 47 30 34 43 A4 50 30 34 43 5B 82 0D 44  CM.G04C.P04C[..D
    5E00: 30 43 33 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0C3._ADR...[.F.G
    5E10: 50 50 33 08 5F 41 44 52 0C 04 00 01 00 14 0F 5F  PP3._ADR......._
    5E20: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    5E30: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 34 44 A4  PRT...PICM.G04D.
    5E40: 50 30 34 44 5B 82 0D 44 30 43 34 08 5F 41 44 52  P04D[..D0C4._ADR
    5E50: 0B FF FF 5B 82 46 04 47 50 50 34 08 5F 41 44 52  ...[.F.GPP4._ADR
    5E60: 0C 05 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    5E70: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    5E80: 43 4D A4 47 30 34 45 A4 50 30 34 45 5B 82 0D 44  CM.G04E.P04E[..D
    5E90: 30 43 35 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0C5._ADR...[.F.G
    5EA0: 50 50 35 08 5F 41 44 52 0C 06 00 01 00 14 0F 5F  PP5._ADR......._
    5EB0: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    5EC0: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 34 46 A4  PRT...PICM.G04F.
    5ED0: 50 30 34 46 5B 82 0D 44 30 43 36 08 5F 41 44 52  P04F[..D0C6._ADR
    5EE0: 0B FF FF 5B 82 46 04 47 50 50 36 08 5F 41 44 52  ...[.F.GPP6._ADR
    5EF0: 0C 07 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    5F00: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    5F10: 43 4D A4 47 30 35 30 A4 50 30 35 30 5B 82 0D 44  CM.G050.P050[..D
    5F20: 30 43 37 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0C7._ADR...[.F.G
    5F30: 50 50 37 08 5F 41 44 52 0C 01 00 02 00 14 0F 5F  PP7._ADR......._
    5F40: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    5F50: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 31 A4  PRT...PICM.G051.
    5F60: 50 30 35 31 5B 82 0D 44 30 43 38 08 5F 41 44 52  P051[..D0C8._ADR
    5F70: 0B FF FF 5B 82 46 04 47 50 50 38 08 5F 41 44 52  ...[.F.GPP8._ADR
    5F80: 0C 02 00 02 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    5F90: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    5FA0: 43 4D A4 47 30 35 32 A4 50 30 35 32 5B 82 0D 44  CM.G052.P052[..D
    5FB0: 30 43 39 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0C9._ADR...[.F.G
    5FC0: 50 50 39 08 5F 41 44 52 0C 01 00 03 00 14 0F 5F  PP9._ADR......._
    5FD0: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    5FE0: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 33 A4  PRT...PICM.G053.
    5FF0: 50 30 35 33 5B 82 0D 44 30 43 41 08 5F 41 44 52  P053[..D0CA._ADR
    6000: 0B FF FF 5B 82 46 04 47 50 50 41 08 5F 41 44 52  ...[.F.GPPA._ADR
    6010: 0C 02 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    6020: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    6030: 43 4D A4 47 30 35 34 A4 50 30 35 34 5B 82 0D 44  CM.G054.P054[..D
    6040: 30 43 42 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0CB._ADR...[.F.G
    6050: 50 50 42 08 5F 41 44 52 0C 03 00 03 00 14 0F 5F  PPB._ADR......._
    6060: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    6070: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 35 A4  PRT...PICM.G055.
    6080: 50 30 35 35 5B 82 0D 44 30 43 43 08 5F 41 44 52  P055[..D0CC._ADR
    6090: 0B FF FF 5B 82 46 04 47 50 50 43 08 5F 41 44 52  ...[.F.GPPC._ADR
    60A0: 0C 04 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    60B0: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    60C0: 43 4D A4 47 30 35 36 A4 50 30 35 36 5B 82 0D 44  CM.G056.P056[..D
    60D0: 30 43 44 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0CD._ADR...[.F.G
    60E0: 50 50 44 08 5F 41 44 52 0C 05 00 03 00 14 0F 5F  PPD._ADR......._
    60F0: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    6100: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 37 A4  PRT...PICM.G057.
    6110: 50 30 35 37 5B 82 0D 44 30 43 45 08 5F 41 44 52  P057[..D0CE._ADR
    6120: 0B FF FF 5B 82 46 04 47 50 50 45 08 5F 41 44 52  ...[.F.GPPE._ADR
    6130: 0C 06 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    6140: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    6150: 43 4D A4 47 30 35 38 A4 50 30 35 38 5B 82 0D 44  CM.G058.P058[..D
    6160: 30 43 46 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0CF._ADR...[.F.G
    6170: 50 50 46 08 5F 41 44 52 0C 07 00 03 00 14 0F 5F  PPF._ADR......._
    6180: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    6190: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 39 A4  PRT...PICM.G059.
    61A0: 50 30 35 39 5B 82 0D 44 30 44 30 08 5F 41 44 52  P059[..D0D0._ADR
    61B0: 0B FF FF 5B 82 46 04 47 50 50 47 08 5F 41 44 52  ...[.F.GPPG._ADR
    61C0: 0C 01 00 04 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    61D0: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    61E0: 43 4D A4 47 30 35 41 A4 50 30 35 41 5B 82 0D 44  CM.G05A.P05A[..D
    61F0: 30 44 31 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0D1._ADR...[.F.G
    6200: 50 50 48 08 5F 41 44 52 0C 02 00 04 00 14 0F 5F  PPH._ADR......._
    6210: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    6220: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 42 A4  PRT...PICM.G05B.
    6230: 50 30 35 42 5B 82 0D 44 30 44 32 08 5F 41 44 52  P05B[..D0D2._ADR
    6240: 0B FF FF 5B 82 46 04 47 50 31 35 08 5F 41 44 52  ...[.F.GP15._ADR
    6250: 0C 01 00 05 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    6260: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    6270: 43 4D A4 47 30 35 43 A4 50 30 35 43 5B 82 0D 44  CM.G05C.P05C[..D
    6280: 30 44 33 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0D3._ADR...[.F.G
    6290: 50 32 35 08 5F 41 44 52 0C 02 00 05 00 14 0F 5F  P25._ADR......._
    62A0: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    62B0: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 44 A4  PRT...PICM.G05D.
    62C0: 50 30 35 44 5B 82 0D 44 30 44 34 08 5F 41 44 52  P05D[..D0D4._ADR
    62D0: 0B FF FF 5B 82 46 04 47 50 33 35 08 5F 41 44 52  ...[.F.GP35._ADR
    62E0: 0C 03 00 05 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    62F0: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    6300: 43 4D A4 47 30 35 45 A4 50 30 35 45 5B 82 0D 44  CM.G05E.P05E[..D
    6310: 30 44 35 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0D5._ADR...[.F.G
    6320: 50 34 35 08 5F 41 44 52 0C 04 00 05 00 14 0F 5F  P45._ADR......._
    6330: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    6340: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 46 A4  PRT...PICM.G05F.
    6350: 50 30 35 46 5B 82 0D 44 30 44 36 08 5F 41 44 52  P05F[..D0D6._ADR
    6360: 0B FF FF 5B 82 4C 07 47 50 31 37 08 5F 41 44 52  ...[.L.GP17._ADR
    6370: 0C 01 00 07 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    6380: 57 0A 0B 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    6390: 43 4D A4 47 30 36 30 A4 50 30 36 30 5B 82 0B 44  CM.G060.P060[..D
    63A0: 30 36 31 08 5F 41 44 52 00 5B 82 0B 44 30 36 32  061._ADR.[..D062
    63B0: 08 5F 41 44 52 01 5B 82 0C 44 30 36 33 08 5F 41  ._ADR.[..D063._A
    63C0: 44 52 0A 02 5B 82 0C 44 30 36 34 08 5F 41 44 52  DR..[..D064._ADR
    63D0: 0A 03 5B 82 0D 44 30 44 37 08 5F 41 44 52 0B FF  ..[..D0D7._ADR..
    63E0: FF 5B 82 0F 47 50 32 37 08 5F 41 44 52 0C 02 00  .[..GP27._ADR...
    63F0: 07 00 5B 82 80 CA 02 50 43 49 30 08 5F 48 49 44  ..[....PCI0._HID
    6400: 0C 41 D0 0A 08 08 5F 43 49 44 0C 41 D0 0A 03 08  .A...._CID.A....
    6410: 5F 41 44 52 00 14 09 5E 42 4E 30 30 00 A4 00 14  _ADR...^BN00....
    6420: 0B 5F 42 42 4E 00 A4 42 4E 30 30 08 5F 55 49 44  ._BBN..BN00._UID
    6430: 00 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 41  ..._PRT...PICM.A
    6440: 52 30 30 A4 50 44 30 30 5B 80 4E 41 50 43 02 0A  R00.PD00[.NAPC..
    6450: B4 0A 0C 5B 81 15 4E 41 50 43 03 4E 41 45 58 20  ...[..NAPC.NAEX 
    6460: 4E 41 50 58 20 4E 41 50 44 20 5B 01 4E 41 50 4D  NAPX NAPD [.NAPM
    6470: 00 14 4C 08 4E 41 50 45 00 5B 23 4E 41 50 4D FF  ..L.NAPE.[#NAPM.
    6480: FF 70 00 4E 41 45 58 70 0C 84 41 00 49 4E 41 50  .p.NAEXp..A.INAP
    6490: 58 70 4E 41 50 44 60 7A 60 0A 08 60 7B 60 0A 0F  XpNAPD`z`..`{`..
    64A0: 60 A2 40 05 92 95 60 01 70 00 4E 41 45 58 74 60  `.@...`.p.NAEXt`
    64B0: 01 61 77 61 0C 00 00 10 00 61 A0 13 94 60 0A 04  .awa.....a...`..
    64C0: 70 01 4E 41 45 58 74 61 0C 00 00 40 00 61 72 61  p.NAEXta...@.ara
    64D0: 0C 00 00 30 14 61 70 61 4E 41 50 58 70 4E 41 50  ...0.apaNAPXpNAP
    64E0: 44 62 7B 62 0C EF FF FF FF 62 70 62 4E 41 50 44  Db{b.....bpbNAPD
    64F0: 76 60 70 00 4E 41 45 58 5B 27 4E 41 50 4D 5B 82  v`p.NAEX['NAPM[.
    6500: 49 06 41 4D 44 4E 08 5F 48 49 44 0C 41 D0 0C 01  I.AMDN._HID.A...
    6510: 08 5F 55 49 44 0A C8 08 5F 53 54 41 0A 0F 08 4E  ._UID..._STA...N
    6520: 50 54 52 11 11 0A 0E 86 09 00 01 00 00 00 00 00  PTR.............
    6530: 00 00 00 79 00 14 33 5F 43 52 53 00 8A 4E 50 54  ...y..3_CRS..NPT
    6540: 52 0A 08 50 4C 5F 5F 8A 4E 50 54 52 0A 04 50 42  R..PL__.NPTR..PB
    6550: 5F 5F 70 50 45 42 53 50 42 5F 5F 70 50 45 42 4C  __pPEBSPB__pPEBL
    6560: 50 4C 5F 5F A4 4E 50 54 52 14 0B 4E 50 54 53 01  PL__.NPTR..NPTS.
    6570: 41 50 54 53 68 14 15 4E 57 41 4B 01 41 57 41 4B  APTSh..NWAK.AWAK
    6580: 68 A0 09 50 49 43 4D 4E 41 50 45 08 43 50 52 42  h..PICMNAPE.CPRB
    6590: 01 08 4C 56 47 41 0A 01 08 53 54 41 56 0A 0F 08  ..LVGA...STAV...
    65A0: 42 52 42 5F 0B 00 00 08 42 52 4C 5F 0B 40 00 08  BRB_....BRL_.@..
    65B0: 50 52 58 4D 0B 00 00 08 49 4F 42 5F 0B 00 10 08  PRXM....IOB_....
    65C0: 49 4F 4C 5F 0B 00 30 08 4D 42 42 5F 0C 00 00 00  IOL_..0.MBB_....
    65D0: F0 08 4D 42 4C 5F 0C 00 00 00 01 08 4D 41 42 4C  ..MBL_......MABL
    65E0: 0E 00 00 40 20 80 04 00 00 08 4D 41 42 48 0C 00  ...@ .....MABH..
    65F0: 00 01 00 08 4D 41 4D 4C 0C 00 00 01 00 08 4D 41  ....MAML......MA
    6600: 4D 48 0C 00 00 01 00 08 4D 41 4C 4C 0E 00 00 00  MH......MALL....
    6610: 93 59 00 00 00 08 4D 41 4C 48 0C 00 00 01 00 08  .Y....MALH......
    6620: 43 52 53 31 11 4A 0E 0A E6 88 0D 00 02 0C 00 00  CRS1.J..........
    6630: 00 00 00 7F 00 00 00 80 00 47 01 F8 0C F8 0C 01  .........G......
    6640: 08 88 0D 00 01 0C 03 00 00 00 00 FF 02 00 00 00  ................
    6650: 03 88 0D 00 01 0C 03 00 00 00 03 AF 03 00 00 B0  ................
    6660: 00 88 0D 00 01 0C 03 00 00 E0 03 F7 0C 00 00 18  ................
    6670: 09 88 0D 00 01 0C 03 00 00 00 00 00 00 00 00 00  ................
    6680: 00 88 0D 00 01 0C 03 00 00 00 0D FF 0F 00 00 00  ................
    6690: 03 87 17 00 00 0C 03 00 00 00 00 00 00 00 00 00  ................
    66A0: 00 00 00 00 00 00 00 00 00 00 00 87 17 00 00 0C  ................
    66B0: 01 00 00 00 00 00 00 0C 00 FF FF 0D 00 00 00 00  ................
    66C0: 00 00 00 02 00 87 17 00 00 0C 03 00 00 00 00 00  ................
    66D0: 00 00 02 FF FF DF FF 00 00 00 00 00 00 E0 FD 8A  ................
    66E0: 2B 00 00 0C 03 00 00 00 00 00 00 00 00 00 00 00  +...............
    66F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6700: 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00 08  .............y..
    6710: 43 52 53 32 11 48 09 0A 94 88 0D 00 02 0C 00 00  CRS2.H..........
    6720: 00 80 00 FF 00 00 00 80 00 88 0D 00 01 0C 03 00  ................
    6730: 00 00 00 00 00 00 00 00 00 88 0D 00 01 0C 03 00  ................
    6740: 00 00 00 00 00 00 00 00 00 87 17 00 00 0C 03 00  ................
    6750: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6760: 00 00 00 87 17 00 00 0C 03 00 00 00 00 00 00 00  ................
    6770: 80 FF FF FF FF 00 00 00 00 00 00 00 80 8A 2B 00  ..............+.
    6780: 00 0C 03 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6790: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    67A0: 00 00 00 00 00 00 00 00 00 00 00 79 00 14 0B 5F  ...........y..._
    67B0: 53 54 41 00 A4 53 54 41 56 14 48 3B 5F 43 52 53  STA..STAV.H;_CRS
    67C0: 08 A0 4A 21 43 50 52 42 8B 43 52 53 31 0A 08 4D  ..J!CPRB.CRS1..M
    67D0: 49 4E 30 8B 43 52 53 31 0A 0A 4D 41 58 30 8B 43  IN0.CRS1..MAX0.C
    67E0: 52 53 31 0A 0E 4C 45 4E 30 70 42 52 42 5F 4D 49  RS1..LEN0pBRB_MI
    67F0: 4E 30 70 42 52 4C 5F 4C 45 4E 30 70 4C 45 4E 30  N0pBRL_LEN0pLEN0
    6800: 60 72 4D 49 4E 30 76 60 4D 41 58 30 A0 49 06 91  `rMIN0v`MAX0.I..
    6810: 91 93 49 45 52 30 01 93 49 45 52 31 01 91 93 49  ..IER0..IER1...I
    6820: 45 52 32 01 93 49 45 52 33 01 8B 43 52 53 31 0A  ER2..IER3..CRS1.
    6830: 22 49 42 58 31 8B 43 52 53 31 0A 26 49 42 4C 31  "IBX1.CRS1.&IBL1
    6840: 70 0B E7 02 49 42 58 31 70 0B E8 02 49 42 4C 31  p...IBX1p...IBL1
    6850: 8B 43 52 53 31 0A 40 49 42 4D 32 8B 43 52 53 31  .CRS1.@IBM2.CRS1
    6860: 0A 46 49 42 4C 32 70 0B 00 04 49 42 4D 32 70 0B  .FIBL2p...IBM2p.
    6870: F8 08 49 42 4C 32 8B 43 52 53 31 0A 60 4D 49 4E  ..IBL2.CRS1.`MIN
    6880: 31 8B 43 52 53 31 0A 62 4D 41 58 31 8B 43 52 53  1.CRS1.bMAX1.CRS
    6890: 31 0A 66 4C 45 4E 31 70 49 4F 42 5F 4D 49 4E 31  1.fLEN1pIOB_MIN1
    68A0: 70 49 4F 4C 5F 4C 45 4E 31 70 4C 45 4E 31 60 72  pIOL_LEN1pLEN1`r
    68B0: 4D 49 4E 31 76 60 4D 41 58 31 A0 44 09 91 93 4C  MIN1v`MAX1.D...L
    68C0: 56 47 41 01 93 4C 56 47 41 0A 55 A0 43 08 56 47  VGA..LVGA.U.C.VG
    68D0: 41 46 8B 43 52 53 31 0A 50 49 4D 4E 31 8B 43 52  AF.CRS1.PIMN1.CR
    68E0: 53 31 0A 52 49 4D 58 31 8B 43 52 53 31 0A 56 49  S1.RIMX1.CRS1.VI
    68F0: 4C 4E 31 70 0B B0 03 49 4D 4E 31 70 0B DF 03 49  LN1p...IMN1p...I
    6900: 4D 58 31 70 0A 30 49 4C 4E 31 8A 43 52 53 31 0A  MX1p.0ILN1.CRS1.
    6910: 72 56 4D 4E 31 8A 43 52 53 31 0A 76 56 4D 58 31  rVMN1.CRS1.vVMX1
    6920: 8A 43 52 53 31 0A 7E 56 4C 4E 31 70 0C 00 00 0A  .CRS1.~VLN1p....
    6930: 00 56 4D 4E 31 70 0C FF FF 0B 00 56 4D 58 31 70  .VMN1p.....VMX1p
    6940: 0C 00 00 02 00 56 4C 4E 31 70 00 56 47 41 46 8A  .....VLN1p.VGAF.
    6950: 43 52 53 31 0A A6 4D 49 4E 33 8A 43 52 53 31 0A  CRS1..MIN3.CRS1.
    6960: AA 4D 41 58 33 8A 43 52 53 31 0A B2 4C 45 4E 33  .MAX3.CRS1..LEN3
    6970: 70 4D 42 42 5F 4D 49 4E 33 70 4D 42 4C 5F 4C 45  pMBB_MIN3pMBL_LE
    6980: 4E 33 70 4C 45 4E 33 60 72 4D 49 4E 33 76 60 4D  N3pLEN3`rMIN3v`M
    6990: 41 58 33 8F 43 52 53 31 0A C4 4D 49 4E 38 8F 43  AX3.CRS1..MIN8.C
    69A0: 52 53 31 0A CC 4D 41 58 38 8F 43 52 53 31 0A DC  RS1..MAX8.CRS1..
    69B0: 4C 45 4E 38 70 4D 41 42 4C 4D 49 4E 38 70 4D 41  LEN8pMABLMIN8pMA
    69C0: 4C 4C 4C 45 4E 38 70 4C 45 4E 38 60 72 4D 49 4E  LLLEN8pLEN8`rMIN
    69D0: 38 76 60 4D 41 58 38 A4 43 52 53 31 A1 45 19 8B  8v`MAX8.CRS1.E..
    69E0: 43 52 53 32 0A 08 4D 49 4E 32 8B 43 52 53 32 0A  CRS2..MIN2.CRS2.
    69F0: 0A 4D 41 58 32 8B 43 52 53 32 0A 0E 4C 45 4E 32  .MAX2.CRS2..LEN2
    6A00: 70 42 52 42 5F 4D 49 4E 32 70 42 52 4C 5F 4C 45  pBRB_MIN2pBRL_LE
    6A10: 4E 32 70 4C 45 4E 32 61 72 4D 49 4E 32 76 61 4D  N2pLEN2arMIN2vaM
    6A20: 41 58 32 8B 43 52 53 32 0A 28 4D 49 4E 34 8B 43  AX2.CRS2.(MIN4.C
    6A30: 52 53 32 0A 2A 4D 41 58 34 8B 43 52 53 32 0A 2E  RS2.*MAX4.CRS2..
    6A40: 4C 45 4E 34 70 49 4F 42 5F 4D 49 4E 34 70 49 4F  LEN4pIOB_MIN4pIO
    6A50: 4C 5F 4C 45 4E 34 70 4C 45 4E 34 61 72 4D 49 4E  L_LEN4pLEN4arMIN
    6A60: 34 76 61 4D 41 58 34 A0 4D 07 4C 56 47 41 8B 43  4vaMAX4.M.LVGA.C
    6A70: 52 53 32 0A 18 49 4D 4E 32 8B 43 52 53 32 0A 1A  RS2..IMN2.CRS2..
    6A80: 49 4D 58 32 8B 43 52 53 32 0A 1E 49 4C 4E 32 70  IMX2.CRS2..ILN2p
    6A90: 0B B0 03 49 4D 4E 32 70 0B DF 03 49 4D 58 32 70  ...IMN2p...IMX2p
    6AA0: 0A 30 49 4C 4E 32 8A 43 52 53 32 0A 3A 56 4D 4E  .0ILN2.CRS2.:VMN
    6AB0: 32 8A 43 52 53 32 0A 3E 56 4D 58 32 8A 43 52 53  2.CRS2.>VMX2.CRS
    6AC0: 32 0A 46 56 4C 4E 32 70 0C 00 00 0A 00 56 4D 4E  2.FVLN2p.....VMN
    6AD0: 32 70 0C FF FF 0B 00 56 4D 58 32 70 0C 00 00 02  2p.....VMX2p....
    6AE0: 00 56 4C 4E 32 8A 43 52 53 32 0A 54 4D 49 4E 35  .VLN2.CRS2.TMIN5
    6AF0: 8A 43 52 53 32 0A 58 4D 41 58 35 8A 43 52 53 32  .CRS2.XMAX5.CRS2
    6B00: 0A 60 4C 45 4E 35 70 4D 42 42 5F 4D 49 4E 35 70  .`LEN5pMBB_MIN5p
    6B10: 4D 42 4C 5F 4C 45 4E 35 70 4C 45 4E 35 61 72 4D  MBL_LEN5pLEN5arM
    6B20: 49 4E 35 76 61 4D 41 58 35 8F 43 52 53 32 0A 72  IN5vaMAX5.CRS2.r
    6B30: 4D 49 4E 39 8F 43 52 53 32 0A 7A 4D 41 58 39 8F  MIN9.CRS2.zMAX9.
    6B40: 43 52 53 32 0A 8A 4C 45 4E 39 70 4D 41 42 4C 4D  CRS2..LEN9pMABLM
    6B50: 49 4E 39 70 4D 41 4C 4C 4C 45 4E 39 70 4C 45 4E  IN9pMALLLEN9pLEN
    6B60: 39 60 72 4D 49 4E 39 76 60 4D 41 58 39 A4 43 52  9`rMIN9v`MAX9.CR
    6B70: 53 32 14 42 13 5F 4F 53 43 0C 08 53 55 50 50 00  S2.B._OSC..SUPP.
    6B80: 08 43 54 52 4C 00 8A 6B 00 43 44 57 31 8A 6B 0A  .CTRL..k.CDW1.k.
    6B90: 04 43 44 57 32 8A 6B 0A 08 43 44 57 33 A0 48 0F  .CDW2.k..CDW3.H.
    6BA0: 93 68 11 13 0A 10 5B 4D DB 33 F7 1F 1C 40 96 57  .h....[M.3...@.W
    6BB0: 74 41 C0 3D D7 66 70 43 44 57 32 53 55 50 50 70  tA.=.fpCDW2SUPPp
    6BC0: 43 44 57 33 43 54 52 4C A0 18 92 93 7B 53 55 50  CDW3CTRL....{SUP
    6BD0: 50 0A 16 00 0A 16 7B 43 54 52 4C 0A 1E 43 54 52  P.....{CTRL..CTR
    6BE0: 4C A0 11 92 50 45 48 50 7B 43 54 52 4C 0A 1E 43  L...PEHP{CTRL..C
    6BF0: 54 52 4C A0 11 92 53 48 50 43 7B 43 54 52 4C 0A  TRL...SHPC{CTRL.
    6C00: 1D 43 54 52 4C A0 11 92 50 45 50 4D 7B 43 54 52  .CTRL...PEPM{CTR
    6C10: 4C 0A 1B 43 54 52 4C A0 11 92 50 45 45 52 7B 43  L..CTRL...PEER{C
    6C20: 54 52 4C 0A 15 43 54 52 4C A0 11 92 50 45 43 53  TRL..CTRL...PECS
    6C30: 7B 43 54 52 4C 0A 0F 43 54 52 4C A0 10 92 93 69  {CTRL..CTRL....i
    6C40: 01 7D 43 44 57 31 0A 08 43 44 57 31 A0 15 5B 12  .}CDW1..CDW1..[.
    6C50: 50 4F 53 43 00 7B 43 54 52 4C 50 4F 53 43 43 54  POSC.{CTRLPOSCCT
    6C60: 52 4C A0 16 92 93 43 44 57 33 43 54 52 4C 7D 43  RL....CDW3CTRL}C
    6C70: 44 57 31 0A 10 43 44 57 31 70 43 54 52 4C 43 44  DW1..CDW1pCTRLCD
    6C80: 57 33 A0 11 5B 12 50 4F 53 53 00 70 53 55 50 50  W3..[.POSS.pSUPP
    6C90: 50 4F 53 53 A4 6B A1 0E 7D 43 44 57 31 0A 04 43  POSS.k..}CDW1..C
    6CA0: 44 57 31 A4 6B 5B 82 0C 44 30 36 37 08 5F 41 44  DW1.k[..D067._AD
    6CB0: 52 0A 02 5B 82 0C 44 30 36 38 08 5F 41 44 52 0A  R..[..D068._ADR.
    6CC0: 03 5B 82 46 04 47 50 50 30 08 5F 41 44 52 0C 01  .[.F.GPP0._ADR..
    6CD0: 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    6CE0: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    6CF0: A4 47 30 36 39 A4 50 30 36 39 5B 82 0D 44 30 44  .G069.P069[..D0D
    6D00: 38 08 5F 41 44 52 0B FF FF 5B 82 35 47 50 50 31  8._ADR...[.5GPP1
    6D10: 08 5F 41 44 52 0C 02 00 01 00 14 16 5F 50 52 54  ._ADR......._PRT
    6D20: 00 A0 0A 50 49 43 4D A4 47 30 36 41 A4 50 30 36  ...PICM.G06A.P06
    6D30: 41 5B 82 0D 44 30 44 39 08 5F 41 44 52 0B FF FF  A[..D0D9._ADR...
    6D40: 5B 82 46 04 47 50 50 32 08 5F 41 44 52 0C 03 00  [.F.GPP2._ADR...
    6D50: 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    6D60: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    6D70: 47 30 36 42 A4 50 30 36 42 5B 82 0D 44 30 44 41  G06B.P06B[..D0DA
    6D80: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 33  ._ADR...[.F.GPP3
    6D90: 08 5F 41 44 52 0C 04 00 01 00 14 0F 5F 50 52 57  ._ADR......._PRW
    6DA0: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    6DB0: 00 A0 0A 50 49 43 4D A4 47 30 36 43 A4 50 30 36  ...PICM.G06C.P06
    6DC0: 43 5B 82 0D 44 30 44 42 08 5F 41 44 52 0B FF FF  C[..D0DB._ADR...
    6DD0: 5B 82 46 04 47 50 50 34 08 5F 41 44 52 0C 05 00  [.F.GPP4._ADR...
    6DE0: 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    6DF0: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    6E00: 47 30 36 44 A4 50 30 36 44 5B 82 0D 44 30 44 43  G06D.P06D[..D0DC
    6E10: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 35  ._ADR...[.F.GPP5
    6E20: 08 5F 41 44 52 0C 06 00 01 00 14 0F 5F 50 52 57  ._ADR......._PRW
    6E30: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    6E40: 00 A0 0A 50 49 43 4D A4 47 30 36 45 A4 50 30 36  ...PICM.G06E.P06
    6E50: 45 5B 82 0D 44 30 44 44 08 5F 41 44 52 0B FF FF  E[..D0DD._ADR...
    6E60: 5B 82 46 04 47 50 50 36 08 5F 41 44 52 0C 07 00  [.F.GPP6._ADR...
    6E70: 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    6E80: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    6E90: 47 30 36 46 A4 50 30 36 46 5B 82 0D 44 30 44 45  G06F.P06F[..D0DE
    6EA0: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 37  ._ADR...[.F.GPP7
    6EB0: 08 5F 41 44 52 0C 01 00 02 00 14 0F 5F 50 52 57  ._ADR......._PRW
    6EC0: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    6ED0: 00 A0 0A 50 49 43 4D A4 47 30 37 30 A4 50 30 37  ...PICM.G070.P07
    6EE0: 30 5B 82 0D 44 30 44 46 08 5F 41 44 52 0B FF FF  0[..D0DF._ADR...
    6EF0: 5B 82 46 04 47 50 50 38 08 5F 41 44 52 0C 02 00  [.F.GPP8._ADR...
    6F00: 02 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    6F10: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    6F20: 47 30 37 31 A4 50 30 37 31 5B 82 0D 44 30 45 38  G071.P071[..D0E8
    6F30: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 39  ._ADR...[.F.GPP9
    6F40: 08 5F 41 44 52 0C 01 00 03 00 14 0F 5F 50 52 57  ._ADR......._PRW
    6F50: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    6F60: 00 A0 0A 50 49 43 4D A4 47 30 37 32 A4 50 30 37  ...PICM.G072.P07
    6F70: 32 5B 82 0D 44 30 45 30 08 5F 41 44 52 0B FF FF  2[..D0E0._ADR...
    6F80: 5B 82 46 04 47 50 50 41 08 5F 41 44 52 0C 02 00  [.F.GPPA._ADR...
    6F90: 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    6FA0: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    6FB0: 47 30 37 33 A4 50 30 37 33 5B 82 0D 44 30 45 31  G073.P073[..D0E1
    6FC0: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 42  ._ADR...[.F.GPPB
    6FD0: 08 5F 41 44 52 0C 03 00 03 00 14 0F 5F 50 52 57  ._ADR......._PRW
    6FE0: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    6FF0: 00 A0 0A 50 49 43 4D A4 47 30 37 34 A4 50 30 37  ...PICM.G074.P07
    7000: 34 5B 82 0D 44 30 45 32 08 5F 41 44 52 0B FF FF  4[..D0E2._ADR...
    7010: 5B 82 46 04 47 50 50 43 08 5F 41 44 52 0C 04 00  [.F.GPPC._ADR...
    7020: 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    7030: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    7040: 47 30 37 35 A4 50 30 37 35 5B 82 0D 44 30 45 33  G075.P075[..D0E3
    7050: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 44  ._ADR...[.F.GPPD
    7060: 08 5F 41 44 52 0C 05 00 03 00 14 0F 5F 50 52 57  ._ADR......._PRW
    7070: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    7080: 00 A0 0A 50 49 43 4D A4 47 30 37 36 A4 50 30 37  ...PICM.G076.P07
    7090: 36 5B 82 0D 44 30 45 34 08 5F 41 44 52 0B FF FF  6[..D0E4._ADR...
    70A0: 5B 82 46 04 47 50 50 45 08 5F 41 44 52 0C 06 00  [.F.GPPE._ADR...
    70B0: 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    70C0: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    70D0: 47 30 37 37 A4 50 30 37 37 5B 82 0D 44 30 45 35  G077.P077[..D0E5
    70E0: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 46  ._ADR...[.F.GPPF
    70F0: 08 5F 41 44 52 0C 07 00 03 00 14 0F 5F 50 52 57  ._ADR......._PRW
    7100: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    7110: 00 A0 0A 50 49 43 4D A4 47 30 37 38 A4 50 30 37  ...PICM.G078.P07
    7120: 38 5B 82 0D 44 30 45 36 08 5F 41 44 52 0B FF FF  8[..D0E6._ADR...
    7130: 5B 82 46 04 47 50 50 47 08 5F 41 44 52 0C 01 00  [.F.GPPG._ADR...
    7140: 04 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    7150: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    7160: 47 30 37 39 A4 50 30 37 39 5B 82 0D 44 30 45 37  G079.P079[..D0E7
    7170: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 48  ._ADR...[.F.GPPH
    7180: 08 5F 41 44 52 0C 02 00 04 00 14 0F 5F 50 52 57  ._ADR......._PRW
    7190: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    71A0: 00 A0 0A 50 49 43 4D A4 47 30 37 41 A4 50 30 37  ...PICM.G07A.P07
    71B0: 41 5B 82 0D 44 30 45 39 08 5F 41 44 52 0B FF FF  A[..D0E9._ADR...
    71C0: 5B 82 44 04 47 50 31 35 08 5F 41 44 52 0C 01 00  [.D.GP15._ADR...
    71D0: 05 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    71E0: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    71F0: 47 30 37 42 A4 50 30 37 42 5B 82 0B 44 30 45 44  G07B.P07B[..D0ED
    7200: 08 5F 41 44 52 00 5B 82 46 04 47 50 32 35 08 5F  ._ADR.[.F.GP25._
    7210: 41 44 52 0C 02 00 05 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    7220: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    7230: 0A 50 49 43 4D A4 47 30 37 43 A4 50 30 37 43 5B  .PICM.G07C.P07C[
    7240: 82 0D 44 30 45 41 08 5F 41 44 52 0B FF FF 5B 82  ..D0EA._ADR...[.
    7250: 46 04 47 50 33 35 08 5F 41 44 52 0C 03 00 05 00  F.GP35._ADR.....
    7260: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    7270: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    7280: 37 44 A4 50 30 37 44 5B 82 0D 44 30 45 42 08 5F  7D.P07D[..D0EB._
    7290: 41 44 52 0B FF FF 5B 82 46 04 47 50 34 35 08 5F  ADR...[.F.GP45._
    72A0: 41 44 52 0C 04 00 05 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    72B0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    72C0: 0A 50 49 43 4D A4 47 30 37 45 A4 50 30 37 45 5B  .PICM.G07E.P07E[
    72D0: 82 0D 44 30 45 43 08 5F 41 44 52 0B FF FF 5B 82  ..D0EC._ADR...[.
    72E0: 4D 10 47 50 31 37 08 5F 41 44 52 0C 01 00 07 00  M.GP17._ADR.....
    72F0: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 0B 0A 04  .._PRW..GPRW....
    7300: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    7310: 37 46 A4 50 30 37 46 5B 82 0B 44 30 38 30 08 5F  7F.P07F[..D080._
    7320: 41 44 52 00 5B 82 0B 44 30 38 31 08 5F 41 44 52  ADR.[..D081._ADR
    7330: 01 5B 82 0C 44 30 38 32 08 5F 41 44 52 0A 02 5B  .[..D082._ADR..[
    7340: 82 0C 44 30 38 33 08 5F 41 44 52 0A 03 5B 82 0C  ..D083._ADR..[..
    7350: 58 48 43 30 08 5F 41 44 52 0A 04 5B 82 44 07 50  XHC0._ADR..[.D.P
    7360: 53 50 5F 08 5F 41 44 52 0A 05 08 5F 48 49 44 0C  SP_._ADR..._HID.
    7370: 41 D0 0C 02 08 50 53 50 42 0C 00 00 20 DF 08 5F  A....PSPB... .._
    7380: 53 54 41 0A 0F 08 43 52 53 5F 11 11 0A 0E 86 09  STA...CRS_......
    7390: 00 01 00 00 00 00 00 00 00 00 79 00 14 34 5F 43  ..........y..4_C
    73A0: 52 53 00 8A 43 52 53 5F 0A 04 50 42 41 53 8A 43  RS..CRS_..PBAS.C
    73B0: 52 53 5F 0A 08 50 4C 45 4E 70 50 53 50 42 50 42  RS_..PLENpPSPBPB
    73C0: 41 53 70 0C 00 00 10 00 50 4C 45 4E A4 43 52 53  ASp.....PLEN.CRS
    73D0: 5F 5B 82 0C 41 43 50 5F 08 5F 41 44 52 0A 06 5B  _[..ACP_._ADR..[
    73E0: 82 0C 41 5A 41 4C 08 5F 41 44 52 0A 07 5B 82 4D  ..AZAL._ADR..[.M
    73F0: CE 47 50 32 37 08 5F 41 44 52 0C 02 00 07 00 14  .GP27._ADR......
    7400: 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 38  ._PRT...PICM.G08
    7410: 38 A4 50 30 38 38 5B 82 41 66 53 41 54 41 08 5F  8.P088[.AfSATA._
    7420: 41 44 52 00 08 42 35 45 4E 00 08 42 41 5F 35 00  ADR..B5EN..BA_5.
    7430: 08 53 42 41 52 0C 00 F0 B6 F0 08 4F 53 56 52 00  .SBAR......OSVR.
    7440: 5B 80 53 41 54 58 02 00 0A 44 5B 81 43 04 53 41  [.SATX...D[.C.SA
    7450: 54 58 00 56 49 44 49 20 00 30 53 54 43 4C 10 00  TX.VIDI .0STCL..
    7460: 40 0C 42 41 30 35 20 00 40 0C 57 54 45 4E 01 00  @.BA05 .@.WTEN..
    7470: 0F 44 49 53 30 01 44 49 53 31 01 44 49 53 32 01  .DIS0.DIS1.DIS2.
    7480: 44 49 53 33 01 44 49 53 34 01 44 49 53 35 01 5B  DIS3.DIS4.DIS5.[
    7490: 81 0E 53 41 54 58 00 00 40 21 44 49 53 50 06 14  ..SATX..@!DISP..
    74A0: 39 47 42 41 41 08 70 42 41 30 35 42 41 5F 35 A0  9GBAA.pBA05BA_5.
    74B0: 1C 91 93 42 41 5F 35 FF 92 93 53 54 43 4C 0B 01  ...BA_5...STCL..
    74C0: 01 70 00 42 35 45 4E A4 53 42 41 52 A1 0C 70 01  .p.B5EN.SBAR..p.
    74D0: 42 35 45 4E A4 42 41 5F 35 5B 80 42 41 52 35 00  B5EN.BA_5[.BAR5.
    74E0: 47 42 41 41 0B 00 10 5B 81 41 12 42 41 52 35 00  GBAA...[.A.BAR5.
    74F0: 4E 4F 50 54 05 00 4B 05 50 54 49 30 01 50 54 49  NOPT..K.PTI0.PTI
    7500: 31 01 50 54 49 32 01 50 54 49 33 01 50 54 49 34  1.PTI2.PTI3.PTI4
    7510: 01 50 54 49 35 01 50 54 49 36 01 50 54 49 37 01  .PTI5.PTI6.PTI7.
    7520: 00 48 85 43 53 54 30 01 00 4F 03 00 07 42 53 59  .H.CST0..O...BSY
    7530: 30 01 00 38 44 45 54 30 04 00 04 49 50 4D 30 04  0..8DET0...IPM0.
    7540: 00 14 44 44 49 30 04 00 4C 35 43 53 54 31 01 00  ..DDI0..L5CST1..
    7550: 4F 03 00 07 42 53 59 31 01 00 38 44 45 54 31 04  O...BSY1..8DET1.
    7560: 00 04 49 50 4D 31 04 00 14 44 44 49 31 04 00 4C  ..IPM1...DDI1..L
    7570: 35 43 53 54 32 01 00 4F 03 00 07 42 53 59 32 01  5CST2..O...BSY2.
    7580: 00 38 44 45 54 32 04 00 04 49 50 4D 32 04 00 14  .8DET2...IPM2...
    7590: 44 44 49 32 04 00 4C 35 43 53 54 33 01 00 4F 03  DDI2..L5CST3..O.
    75A0: 00 07 42 53 59 33 01 00 38 44 45 54 33 04 00 04  ..BSY3..8DET3...
    75B0: 49 50 4D 33 04 00 14 44 44 49 33 04 00 4C 35 43  IPM3...DDI3..L5C
    75C0: 53 54 34 01 00 4F 03 00 07 42 53 59 34 01 00 38  ST4..O...BSY4..8
    75D0: 44 45 54 34 04 00 04 49 50 4D 34 04 00 14 44 44  DET4...IPM4...DD
    75E0: 49 34 04 00 4C 35 43 53 54 35 01 00 4F 03 00 07  I4..L5CST5..O...
    75F0: 42 53 59 35 01 00 38 44 45 54 35 04 00 04 49 50  BSY5..8DET5...IP
    7600: 4D 35 04 00 14 44 44 49 35 04 5B 81 0E 42 41 52  M5...DDI5.[..BAR
    7610: 35 00 00 40 06 50 54 49 5F 06 14 0A 5F 49 4E 49  5..@.PTI_..._INI
    7620: 00 47 42 41 41 5B 82 4A 19 50 52 49 44 08 5F 41  .GBAA[.J.PRID._A
    7630: 44 52 00 08 53 50 54 4D 11 17 0A 14 78 00 00 00  DR..SPTM....x...
    7640: 0F 00 00 00 78 00 00 00 0F 00 00 00 1F 00 00 00  ....x...........
    7650: 14 0B 5F 47 54 4D 00 A4 53 50 54 4D 14 0C 5F 53  .._GTM..SPTM.._S
    7660: 54 4D 03 70 68 53 50 54 4D 14 3A 5F 50 53 30 00  TM.phSPTM.:_PS0.
    7670: 47 42 41 41 A0 2F 90 91 92 95 4F 53 56 52 0A 0C  GBAA./....OSVR..
    7680: 93 4F 53 56 52 00 42 35 45 4E A0 19 49 50 4D 32  .OSVR.B5EN..IPM2
    7690: 70 0A 32 60 A2 0F 90 93 42 53 59 32 01 60 5B 22  p.2`....BSY2.`["
    76A0: 0A FA 76 60 14 06 5F 50 53 33 00 5B 82 49 08 50  ..v`.._PS3.[.I.P
    76B0: 5F 44 30 08 5F 41 44 52 00 14 24 5F 53 54 41 00  _D0._ADR..$_STA.
    76C0: 47 42 41 41 A0 09 93 42 35 45 4E 00 A4 00 A0 0B  GBAA...B5EN.....
    76D0: 93 44 45 54 30 0A 03 A4 0A 0F A1 03 A4 00 08 53  .DET0..........S
    76E0: 31 32 50 00 14 34 5F 50 53 30 00 47 42 41 41 A0  12P..4_PS0.GBAA.
    76F0: 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F 53 56 52  )...OSVR....OSVR
    7700: 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93 42 53 59  .B5ENp.2`....BSY
    7710: 30 01 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00  0.`["..v`.._PS3.
    7720: 14 15 5F 47 54 46 00 70 11 0A 0A 07 03 46 00 00  .._GTF.p.....F..
    7730: 00 A0 EF 60 A4 60 5B 82 49 08 50 5F 44 31 08 5F  ...`.`[.I.P_D1._
    7740: 41 44 52 01 14 24 5F 53 54 41 00 47 42 41 41 A0  ADR..$_STA.GBAA.
    7750: 09 93 42 35 45 4E 00 A4 00 A0 0B 93 44 45 54 32  ..B5EN......DET2
    7760: 0A 03 A4 0A 0F A1 03 A4 00 08 53 31 32 50 00 14  ..........S12P..
    7770: 34 5F 50 53 30 00 47 42 41 41 A0 29 90 90 95 4F  4_PS0.GBAA.)...O
    7780: 53 56 52 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E  SVR....OSVR.B5EN
    7790: 70 0A 32 60 A2 0F 90 93 42 53 59 32 01 60 5B 22  p.2`....BSY2.`["
    77A0: 0A FA 76 60 14 06 5F 50 53 33 00 14 15 5F 47 54  ..v`.._PS3..._GT
    77B0: 46 00 70 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4  F.p.....F.....`.
    77C0: 60 5B 82 4B 1A 53 45 43 44 08 5F 41 44 52 0A 02  `[.K.SECD._ADR..
    77D0: 08 53 50 54 4D 11 17 0A 14 78 00 00 00 0F 00 00  .SPTM....x......
    77E0: 00 78 00 00 00 0F 00 00 00 1F 00 00 00 14 0B 5F  .x............._
    77F0: 47 54 4D 00 A4 53 50 54 4D 14 0C 5F 53 54 4D 03  GTM..SPTM.._STM.
    7800: 70 68 53 50 54 4D 14 46 05 5F 50 53 30 00 47 42  phSPTM.F._PS0.GB
    7810: 41 41 A0 4A 04 90 91 92 95 4F 53 56 52 0A 0C 93  AA.J.....OSVR...
    7820: 4F 53 56 52 00 42 35 45 4E A0 19 49 50 4D 31 70  OSVR.B5EN..IPM1p
    7830: 0A 32 60 A2 0F 90 93 42 53 59 31 01 60 5B 22 0A  .2`....BSY1.`[".
    7840: FA 76 60 A0 19 49 50 4D 33 70 0A 32 60 A2 0F 90  .v`..IPM3p.2`...
    7850: 93 42 53 59 33 01 60 5B 22 0A FA 76 60 14 06 5F  .BSY3.`["..v`.._
    7860: 50 53 33 00 5B 82 43 08 53 5F 44 30 08 5F 41 44  PS3.[.C.S_D0._AD
    7870: 52 00 14 24 5F 53 54 41 00 47 42 41 41 A0 09 93  R..$_STA.GBAA...
    7880: 42 35 45 4E 00 A4 00 A0 0B 93 44 45 54 31 0A 03  B5EN......DET1..
    7890: A4 0A 0F A1 03 A4 00 14 34 5F 50 53 30 00 47 42  ........4_PS0.GB
    78A0: 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F  AA.)...OSVR....O
    78B0: 53 56 52 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93  SVR.B5ENp.2`....
    78C0: 42 53 59 31 01 60 5B 22 0A FA 76 60 14 06 5F 50  BSY1.`["..v`.._P
    78D0: 53 33 00 14 15 5F 47 54 46 00 70 11 0A 0A 07 03  S3..._GTF.p.....
    78E0: 46 00 00 00 A0 EF 60 A4 60 5B 82 43 08 53 5F 44  F.....`.`[.C.S_D
    78F0: 31 08 5F 41 44 52 01 14 24 5F 53 54 41 00 47 42  1._ADR..$_STA.GB
    7900: 41 41 A0 09 93 42 35 45 4E 00 A4 00 A0 0B 93 44  AA...B5EN......D
    7910: 45 54 33 0A 03 A4 0A 0F A1 03 A4 00 14 34 5F 50  ET3..........4_P
    7920: 53 30 00 47 42 41 41 A0 29 90 90 95 4F 53 56 52  S0.GBAA.)...OSVR
    7930: 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E 70 0A 32  ....OSVR.B5ENp.2
    7940: 60 A2 0F 90 93 42 53 59 33 01 60 5B 22 0A FA 76  `....BSY3.`["..v
    7950: 60 14 06 5F 50 53 33 00 14 15 5F 47 54 46 00 70  `.._PS3..._GTF.p
    7960: 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4 60 14 4A  .....F.....`.`.J
    7970: 10 45 4E 50 5F 02 A0 0C 93 68 00 70 80 69 00 44  .ENP_....h.p.i.D
    7980: 49 53 30 A1 4F 04 A0 0C 93 68 01 70 80 69 00 44  IS0.O....h.p.i.D
    7990: 49 53 31 A1 3F A0 0D 93 68 0A 02 70 80 69 00 44  IS1.?...h..p.i.D
    79A0: 49 53 32 A1 2F A0 0D 93 68 0A 03 70 80 69 00 44  IS2./...h..p.i.D
    79B0: 49 53 33 A1 1F A0 0D 93 68 0A 04 70 80 69 00 44  IS3.....h..p.i.D
    79C0: 49 53 34 A1 0F A0 0D 93 68 0A 05 70 80 69 00 44  IS4.....h..p.i.D
    79D0: 49 53 35 70 01 57 54 45 4E A0 0A 93 68 00 70 69  IS5p.WTEN...h.pi
    79E0: 50 54 49 30 A1 45 04 A0 0A 93 68 01 70 69 50 54  PTI0.E....h.piPT
    79F0: 49 31 A1 37 A0 0B 93 68 0A 02 70 69 50 54 49 32  I1.7...h..piPTI2
    7A00: A1 29 A0 0B 93 68 0A 03 70 69 50 54 49 33 A1 1B  .)...h..piPTI3..
    7A10: A0 0B 93 68 0A 04 70 69 50 54 49 34 A1 0D A0 0B  ...h..piPTI4....
    7A20: 93 68 0A 05 70 69 50 54 49 35 A0 0E 93 44 49 53  .h..piPTI5...DIS
    7A30: 50 0A 3F 70 01 50 54 49 30 A1 1A A0 18 90 44 49  P.?p.PTI0.....DI
    7A40: 53 30 7F 7B 44 49 53 50 0A 3E 00 0A 3E 00 70 00  S0.{DISP.>..>.p.
    7A50: 50 54 49 30 70 50 54 49 5F 60 70 00 61 A2 0E 60  PTI0pPTI_`p.a..`
    7A60: A0 07 7B 60 01 00 75 61 7A 60 01 60 70 76 61 4E  ..{`..uaz`.`pvaN
    7A70: 4F 50 54 70 00 57 54 45 4E 5B 82 41 66 53 41 54  OPTp.WTEN[.AfSAT
    7A80: 32 08 5F 41 44 52 00 08 42 35 45 4E 00 08 42 41  2._ADR..B5EN..BA
    7A90: 5F 35 00 08 53 42 41 52 0C 00 F0 B6 F0 08 4F 53  _5..SBAR......OS
    7AA0: 56 52 00 5B 80 53 41 54 58 02 00 0A 44 5B 81 43  VR.[.SATX...D[.C
    7AB0: 04 53 41 54 58 00 56 49 44 49 20 00 30 53 54 43  .SATX.VIDI .0STC
    7AC0: 4C 10 00 40 0C 42 41 30 35 20 00 40 0C 57 54 45  L..@.BA05 .@.WTE
    7AD0: 4E 01 00 0F 44 49 53 30 01 44 49 53 31 01 44 49  N...DIS0.DIS1.DI
    7AE0: 53 32 01 44 49 53 33 01 44 49 53 34 01 44 49 53  S2.DIS3.DIS4.DIS
    7AF0: 35 01 5B 81 0E 53 41 54 58 00 00 40 21 44 49 53  5.[..SATX..@!DIS
    7B00: 50 06 14 39 47 42 41 41 08 70 42 41 30 35 42 41  P..9GBAA.pBA05BA
    7B10: 5F 35 A0 1C 91 93 42 41 5F 35 FF 92 93 53 54 43  _5....BA_5...STC
    7B20: 4C 0B 01 01 70 00 42 35 45 4E A4 53 42 41 52 A1  L...p.B5EN.SBAR.
    7B30: 0C 70 01 42 35 45 4E A4 42 41 5F 35 5B 80 42 41  .p.B5EN.BA_5[.BA
    7B40: 52 35 00 47 42 41 41 0B 00 10 5B 81 41 12 42 41  R5.GBAA...[.A.BA
    7B50: 52 35 00 4E 4F 50 54 05 00 4B 05 50 54 49 30 01  R5.NOPT..K.PTI0.
    7B60: 50 54 49 31 01 50 54 49 32 01 50 54 49 33 01 50  PTI1.PTI2.PTI3.P
    7B70: 54 49 34 01 50 54 49 35 01 50 54 49 36 01 50 54  TI4.PTI5.PTI6.PT
    7B80: 49 37 01 00 48 85 43 53 54 30 01 00 4F 03 00 07  I7..H.CST0..O...
    7B90: 42 53 59 30 01 00 38 44 45 54 30 04 00 04 49 50  BSY0..8DET0...IP
    7BA0: 4D 30 04 00 14 44 44 49 30 04 00 4C 35 43 53 54  M0...DDI0..L5CST
    7BB0: 31 01 00 4F 03 00 07 42 53 59 31 01 00 38 44 45  1..O...BSY1..8DE
    7BC0: 54 31 04 00 04 49 50 4D 31 04 00 14 44 44 49 31  T1...IPM1...DDI1
    7BD0: 04 00 4C 35 43 53 54 32 01 00 4F 03 00 07 42 53  ..L5CST2..O...BS
    7BE0: 59 32 01 00 38 44 45 54 32 04 00 04 49 50 4D 32  Y2..8DET2...IPM2
    7BF0: 04 00 14 44 44 49 32 04 00 4C 35 43 53 54 33 01  ...DDI2..L5CST3.
    7C00: 00 4F 03 00 07 42 53 59 33 01 00 38 44 45 54 33  .O...BSY3..8DET3
    7C10: 04 00 04 49 50 4D 33 04 00 14 44 44 49 33 04 00  ...IPM3...DDI3..
    7C20: 4C 35 43 53 54 34 01 00 4F 03 00 07 42 53 59 34  L5CST4..O...BSY4
    7C30: 01 00 38 44 45 54 34 04 00 04 49 50 4D 34 04 00  ..8DET4...IPM4..
    7C40: 14 44 44 49 34 04 00 4C 35 43 53 54 35 01 00 4F  .DDI4..L5CST5..O
    7C50: 03 00 07 42 53 59 35 01 00 38 44 45 54 35 04 00  ...BSY5..8DET5..
    7C60: 04 49 50 4D 35 04 00 14 44 44 49 35 04 5B 81 0E  .IPM5...DDI5.[..
    7C70: 42 41 52 35 00 00 40 06 50 54 49 5F 06 14 0A 5F  BAR5..@.PTI_..._
    7C80: 49 4E 49 00 47 42 41 41 5B 82 4A 19 50 52 49 44  INI.GBAA[.J.PRID
    7C90: 08 5F 41 44 52 00 08 53 50 54 4D 11 17 0A 14 78  ._ADR..SPTM....x
    7CA0: 00 00 00 0F 00 00 00 78 00 00 00 0F 00 00 00 1F  .......x........
    7CB0: 00 00 00 14 0B 5F 47 54 4D 00 A4 53 50 54 4D 14  ....._GTM..SPTM.
    7CC0: 0C 5F 53 54 4D 03 70 68 53 50 54 4D 14 3A 5F 50  ._STM.phSPTM.:_P
    7CD0: 53 30 00 47 42 41 41 A0 2F 90 91 92 95 4F 53 56  S0.GBAA./....OSV
    7CE0: 52 0A 0C 93 4F 53 56 52 00 42 35 45 4E A0 19 49  R...OSVR.B5EN..I
    7CF0: 50 4D 32 70 0A 32 60 A2 0F 90 93 42 53 59 32 01  PM2p.2`....BSY2.
    7D00: 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00 5B 82  `["..v`.._PS3.[.
    7D10: 49 08 50 5F 44 30 08 5F 41 44 52 00 14 24 5F 53  I.P_D0._ADR..$_S
    7D20: 54 41 00 47 42 41 41 A0 09 93 42 35 45 4E 00 A4  TA.GBAA...B5EN..
    7D30: 00 A0 0B 93 44 45 54 30 0A 03 A4 0A 0F A1 03 A4  ....DET0........
    7D40: 00 08 53 31 32 50 00 14 34 5F 50 53 30 00 47 42  ..S12P..4_PS0.GB
    7D50: 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F  AA.)...OSVR....O
    7D60: 53 56 52 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93  SVR.B5ENp.2`....
    7D70: 42 53 59 30 01 60 5B 22 0A FA 76 60 14 06 5F 50  BSY0.`["..v`.._P
    7D80: 53 33 00 14 15 5F 47 54 46 00 70 11 0A 0A 07 03  S3..._GTF.p.....
    7D90: 46 00 00 00 A0 EF 60 A4 60 5B 82 49 08 50 5F 44  F.....`.`[.I.P_D
    7DA0: 31 08 5F 41 44 52 01 14 24 5F 53 54 41 00 47 42  1._ADR..$_STA.GB
    7DB0: 41 41 A0 09 93 42 35 45 4E 00 A4 00 A0 0B 93 44  AA...B5EN......D
    7DC0: 45 54 32 0A 03 A4 0A 0F A1 03 A4 00 08 53 31 32  ET2..........S12
    7DD0: 50 00 14 34 5F 50 53 30 00 47 42 41 41 A0 29 90  P..4_PS0.GBAA.).
    7DE0: 90 95 4F 53 56 52 0A 0C 92 93 4F 53 56 52 00 42  ..OSVR....OSVR.B
    7DF0: 35 45 4E 70 0A 32 60 A2 0F 90 93 42 53 59 32 01  5ENp.2`....BSY2.
    7E00: 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00 14 15  `["..v`.._PS3...
    7E10: 5F 47 54 46 00 70 11 0A 0A 07 03 46 00 00 00 A0  _GTF.p.....F....
    7E20: EF 60 A4 60 5B 82 4B 1A 53 45 43 44 08 5F 41 44  .`.`[.K.SECD._AD
    7E30: 52 0A 02 08 53 50 54 4D 11 17 0A 14 78 00 00 00  R...SPTM....x...
    7E40: 0F 00 00 00 78 00 00 00 0F 00 00 00 1F 00 00 00  ....x...........
    7E50: 14 0B 5F 47 54 4D 00 A4 53 50 54 4D 14 0C 5F 53  .._GTM..SPTM.._S
    7E60: 54 4D 03 70 68 53 50 54 4D 14 46 05 5F 50 53 30  TM.phSPTM.F._PS0
    7E70: 00 47 42 41 41 A0 4A 04 90 91 92 95 4F 53 56 52  .GBAA.J.....OSVR
    7E80: 0A 0C 93 4F 53 56 52 00 42 35 45 4E A0 19 49 50  ...OSVR.B5EN..IP
    7E90: 4D 31 70 0A 32 60 A2 0F 90 93 42 53 59 31 01 60  M1p.2`....BSY1.`
    7EA0: 5B 22 0A FA 76 60 A0 19 49 50 4D 33 70 0A 32 60  ["..v`..IPM3p.2`
    7EB0: A2 0F 90 93 42 53 59 33 01 60 5B 22 0A FA 76 60  ....BSY3.`["..v`
    7EC0: 14 06 5F 50 53 33 00 5B 82 43 08 53 5F 44 30 08  .._PS3.[.C.S_D0.
    7ED0: 5F 41 44 52 00 14 24 5F 53 54 41 00 47 42 41 41  _ADR..$_STA.GBAA
    7EE0: A0 09 93 42 35 45 4E 00 A4 00 A0 0B 93 44 45 54  ...B5EN......DET
    7EF0: 31 0A 03 A4 0A 0F A1 03 A4 00 14 34 5F 50 53 30  1..........4_PS0
    7F00: 00 47 42 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C  .GBAA.)...OSVR..
    7F10: 92 93 4F 53 56 52 00 42 35 45 4E 70 0A 32 60 A2  ..OSVR.B5ENp.2`.
    7F20: 0F 90 93 42 53 59 31 01 60 5B 22 0A FA 76 60 14  ...BSY1.`["..v`.
    7F30: 06 5F 50 53 33 00 14 15 5F 47 54 46 00 70 11 0A  ._PS3..._GTF.p..
    7F40: 0A 07 03 46 00 00 00 A0 EF 60 A4 60 5B 82 43 08  ...F.....`.`[.C.
    7F50: 53 5F 44 31 08 5F 41 44 52 01 14 24 5F 53 54 41  S_D1._ADR..$_STA
    7F60: 00 47 42 41 41 A0 09 93 42 35 45 4E 00 A4 00 A0  .GBAA...B5EN....
    7F70: 0B 93 44 45 54 33 0A 03 A4 0A 0F A1 03 A4 00 14  ..DET3..........
    7F80: 34 5F 50 53 30 00 47 42 41 41 A0 29 90 90 95 4F  4_PS0.GBAA.)...O
    7F90: 53 56 52 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E  SVR....OSVR.B5EN
    7FA0: 70 0A 32 60 A2 0F 90 93 42 53 59 33 01 60 5B 22  p.2`....BSY3.`["
    7FB0: 0A FA 76 60 14 06 5F 50 53 33 00 14 15 5F 47 54  ..v`.._PS3..._GT
    7FC0: 46 00 70 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4  F.p.....F.....`.
    7FD0: 60 14 4A 10 45 4E 50 5F 02 A0 0C 93 68 00 70 80  `.J.ENP_....h.p.
    7FE0: 69 00 44 49 53 30 A1 4F 04 A0 0C 93 68 01 70 80  i.DIS0.O....h.p.
    7FF0: 69 00 44 49 53 31 A1 3F A0 0D 93 68 0A 02 70 80  i.DIS1.?...h..p.
    8000: 69 00 44 49 53 32 A1 2F A0 0D 93 68 0A 03 70 80  i.DIS2./...h..p.
    8010: 69 00 44 49 53 33 A1 1F A0 0D 93 68 0A 04 70 80  i.DIS3.....h..p.
    8020: 69 00 44 49 53 34 A1 0F A0 0D 93 68 0A 05 70 80  i.DIS4.....h..p.
    8030: 69 00 44 49 53 35 70 01 57 54 45 4E A0 0A 93 68  i.DIS5p.WTEN...h
    8040: 00 70 69 50 54 49 30 A1 45 04 A0 0A 93 68 01 70  .piPTI0.E....h.p
    8050: 69 50 54 49 31 A1 37 A0 0B 93 68 0A 02 70 69 50  iPTI1.7...h..piP
    8060: 54 49 32 A1 29 A0 0B 93 68 0A 03 70 69 50 54 49  TI2.)...h..piPTI
    8070: 33 A1 1B A0 0B 93 68 0A 04 70 69 50 54 49 34 A1  3.....h..piPTI4.
    8080: 0D A0 0B 93 68 0A 05 70 69 50 54 49 35 A0 0E 93  ....h..piPTI5...
    8090: 44 49 53 50 0A 3F 70 01 50 54 49 30 A1 1A A0 18  DISP.?p.PTI0....
    80A0: 90 44 49 53 30 7F 7B 44 49 53 50 0A 3E 00 0A 3E  .DIS0.{DISP.>..>
    80B0: 00 70 00 50 54 49 30 70 50 54 49 5F 60 70 00 61  .p.PTI0pPTI_`p.a
    80C0: A2 0E 60 A0 07 7B 60 01 00 75 61 7A 60 01 60 70  ..`..{`..uaz`.`p
    80D0: 76 61 4E 4F 50 54 70 00 57 54 45 4E 5B 82 0F 53  vaNOPTp.WTEN[..S
    80E0: 4D 42 52 08 5F 41 44 52 0C 00 00 14 00 5B 82 44  MBR._ADR.....[.D
    80F0: F9 53 42 52 47 08 5F 41 44 52 0C 03 00 14 00 5B  .SBRG._ADR.....[
    8100: 82 2B 50 49 43 5F 08 5F 48 49 44 0B 41 D0 08 5F  .+PIC_._HID.A.._
    8110: 43 52 53 11 18 0A 15 47 01 20 00 20 00 00 02 47  CRS....G. . ...G
    8120: 01 A0 00 A0 00 00 02 22 04 00 79 00 5B 82 4E 04  ......."..y.[.N.
    8130: 44 4D 41 44 08 5F 48 49 44 0C 41 D0 02 00 08 5F  DMAD._HID.A...._
    8140: 43 52 53 11 38 0A 35 2A 10 04 47 01 00 00 00 00  CRS.8.5*..G.....
    8150: 00 10 47 01 81 00 81 00 00 03 47 01 87 00 87 00  ..G.......G.....
    8160: 00 01 47 01 89 00 89 00 00 03 47 01 8F 00 8F 00  ..G.......G.....
    8170: 00 01 47 01 C0 00 C0 00 00 20 79 00 5B 82 25 54  ..G...... y.[.%T
    8180: 4D 52 5F 08 5F 48 49 44 0C 41 D0 01 00 08 5F 43  MR_._HID.A...._C
    8190: 52 53 11 10 0A 0D 47 01 40 00 40 00 00 04 22 01  RS....G.@.@...".
    81A0: 00 79 00 5B 82 42 05 52 54 43 30 08 5F 48 49 44  .y.[.B.RTC0._HID
    81B0: 0C 41 D0 0B 00 08 42 55 46 30 11 0D 0A 0A 47 01  .A....BUF0....G.
    81C0: 70 00 70 00 00 02 79 00 08 42 55 46 31 11 10 0A  p.p...y..BUF1...
    81D0: 0D 47 01 70 00 70 00 00 02 22 00 01 79 00 14 18  .G.p.p..."..y...
    81E0: 5F 43 52 53 08 A0 0C 93 48 50 45 4E 01 A4 42 55  _CRS....HPEN..BU
    81F0: 46 30 A4 42 55 46 31 5B 82 22 53 50 4B 52 08 5F  F0.BUF1[."SPKR._
    8200: 48 49 44 0C 41 D0 08 00 08 5F 43 52 53 11 0D 0A  HID.A...._CRS...
    8210: 0A 47 01 61 00 61 00 00 01 79 00 5B 80 53 4D 49  .G.a.a...y.[.SMI
    8220: 30 01 53 4D 49 4F 01 5B 81 0B 53 4D 49 30 01 53  0.SMIO.[..SMI0.S
    8230: 4D 49 43 08 10 47 30 5C 5F 53 42 5F 10 4F 2F 50  MIC..G0\_SB_.O/P
    8240: 43 49 30 5B 82 47 2F 53 39 30 30 08 5F 48 49 44  CI0[.G/S900._HID
    8250: 0C 41 D0 0C 02 08 5F 55 49 44 0B 00 07 08 5F 53  .A...._UID...._S
    8260: 54 41 0A 0F 08 43 52 53 5F 11 43 15 0B 4E 01 47  TA...CRS_.C..N.G
    8270: 01 10 00 10 00 00 10 47 01 22 00 22 00 00 1E 47  .......G."."...G
    8280: 01 63 00 63 00 00 01 47 01 65 00 65 00 00 01 47  .c.c...G.e.e...G
    8290: 01 67 00 67 00 00 09 47 01 72 00 72 00 00 0E 47  .g.g...G.r.r...G
    82A0: 01 80 00 80 00 00 01 47 01 84 00 84 00 00 03 47  .......G.......G
    82B0: 01 88 00 88 00 00 01 47 01 8C 00 8C 00 00 03 47  .......G.......G
    82C0: 01 90 00 90 00 00 10 47 01 A2 00 A2 00 00 1E 47  .......G.......G
    82D0: 01 B1 00 B1 00 00 01 47 01 E0 00 E0 00 00 10 47  .......G.......G
    82E0: 01 D0 04 D0 04 00 02 47 01 0B 04 0B 04 00 01 47  .......G.......G
    82F0: 01 D6 04 D6 04 00 01 47 01 00 0C 00 0C 00 02 47  .......G.......G
    8300: 01 14 0C 14 0C 00 01 47 01 50 0C 50 0C 00 02 47  .......G.P.P...G
    8310: 01 52 0C 52 0C 00 01 47 01 6C 0C 6C 0C 00 01 47  .R.R...G.l.l...G
    8320: 01 6F 0C 6F 0C 00 01 47 01 D8 0C D8 0C 00 08 47  .o.o...G.......G
    8330: 01 00 00 00 00 00 00 47 01 00 00 00 00 00 00 47  .......G.......G
    8340: 01 00 00 00 00 00 00 47 01 00 09 00 09 00 10 47  .......G.......G
    8350: 01 10 09 10 09 00 10 47 01 60 00 60 00 00 00 47  .......G.`.`...G
    8360: 01 64 00 64 00 00 00 86 09 00 01 00 00 00 00 00  .d.d............
    8370: 00 00 00 86 09 00 01 00 00 DC FE 00 10 00 00 86  ................
    8380: 09 00 01 00 00 E0 FE 00 10 00 00 86 09 00 01 00  ................
    8390: 00 D8 FE 00 00 01 00 86 09 00 01 00 00 00 00 00  ................
    83A0: 00 00 00 86 09 00 01 00 00 00 00 00 00 00 00 86  ................
    83B0: 09 00 01 00 00 00 00 00 00 00 00 79 00 14 4E 17  ...........y..N.
    83C0: 5F 43 52 53 00 8B 43 52 53 5F 0A C2 50 42 42 5F  _CRS..CRS_..PBB_
    83D0: 8B 43 52 53 5F 0A C4 50 42 48 5F 8C 43 52 53 5F  .CRS_..PBH_.CRS_
    83E0: 0A C7 50 4D 4C 5F 70 50 4D 42 53 50 42 42 5F 70  ..PML_pPMBSPBB_p
    83F0: 50 4D 42 53 50 42 48 5F 70 50 4D 4C 4E 50 4D 4C  PMBSPBH_pPMLNPML
    8400: 5F A0 4E 07 53 4D 42 42 8B 43 52 53 5F 0A D2 53  _.N.SMBB.CRS_..S
    8410: 4D 42 31 8B 43 52 53 5F 0A D4 53 4D 48 31 8C 43  MB1.CRS_..SMH1.C
    8420: 52 53 5F 0A D7 53 4D 4C 31 70 53 4D 42 42 53 4D  RS_..SML1pSMBBSM
    8430: 42 31 70 53 4D 42 42 53 4D 48 31 70 53 4D 42 4C  B1pSMBBSMH1pSMBL
    8440: 53 4D 4C 31 8B 43 52 53 5F 0A CA 53 4D 42 5A 8B  SML1.CRS_..SMBZ.
    8450: 43 52 53 5F 0A CC 53 4D 48 30 8C 43 52 53 5F 0A  CRS_..SMH0.CRS_.
    8460: CF 53 4D 4C 30 70 53 4D 42 30 53 4D 42 5A 70 53  .SML0pSMB0SMBZpS
    8470: 4D 42 30 53 4D 48 30 70 53 4D 42 4D 53 4D 4C 30  MB0SMH0pSMBMSML0
    8480: A0 2E 41 50 43 42 8A 43 52 53 5F 0A FC 41 50 42  ..APCB.CRS_..APB
    8490: 5F 8A 43 52 53 5F 0B 00 01 41 50 4C 5F 70 41 50  _.CRS_...APL_pAP
    84A0: 43 42 41 50 42 5F 70 41 50 43 4C 41 50 4C 5F 8A  CBAPB_pAPCLAPL_.
    84B0: 43 52 53 5F 0B 2C 01 53 50 49 42 8A 43 52 53 5F  CRS_.,.SPIB.CRS_
    84C0: 0B 30 01 53 50 49 4C 70 0C 00 00 C1 FE 53 50 49  .0.SPILp.....SPI
    84D0: 42 70 0B 00 10 53 50 49 4C A0 31 57 44 54 42 8A  Bp...SPIL.1WDTB.
    84E0: 43 52 53 5F 0B 38 01 57 44 54 42 8A 43 52 53 5F  CRS_.8.WDTB.CRS_
    84F0: 0B 3C 01 57 44 54 4C 70 5C 57 44 54 42 57 44 54  .<.WDTLp\WDTBWDT
    8500: 42 70 5C 57 44 54 4C 57 44 54 4C 8A 43 52 53 5F  Bp\WDTLWDTL.CRS_
    8510: 0B 44 01 52 4F 4D 42 8A 43 52 53 5F 0B 48 01 52  .D.ROMB.CRS_.H.R
    8520: 4F 4D 4C 70 0C 00 00 00 FF 52 4F 4D 42 70 0C 00  OMLp.....ROMBp..
    8530: 00 00 01 52 4F 4D 4C A4 43 52 53 5F 10 32 5C 5F  ...ROML.CRS_.2\_
    8540: 53 42 5F 10 2B 50 43 49 30 10 25 53 42 52 47 14  SB_.+PCI0.%SBRG.
    8550: 0F 52 52 49 4F 04 70 0D 52 52 49 4F 00 5B 31 14  .RRIO.p.RRIO.[1.
    8560: 0F 52 44 4D 41 03 70 0D 72 44 4D 41 00 5B 31 5B  .RDMA.p.rDMA.[1[
    8570: 82 47 A0 53 49 4F 31 08 5F 48 49 44 0C 41 D0 0C  .G.SIO1._HID.A..
    8580: 02 08 5F 55 49 44 00 08 43 52 53 5F 11 2D 0A 2A  .._UID..CRS_.-.*
    8590: 47 01 00 00 00 00 00 00 47 01 00 00 00 00 00 00  G.......G.......
    85A0: 47 01 00 00 00 00 00 00 47 01 00 00 00 00 00 00  G.......G.......
    85B0: 47 01 00 00 00 00 00 00 79 00 14 45 16 5F 43 52  G.......y..E._CR
    85C0: 53 00 A0 4C 04 90 95 53 50 31 4F 0B F0 03 94 53  S..L...SP1O....S
    85D0: 50 31 4F 0A F0 8B 43 52 53 5F 0A 02 47 50 49 30  P1O...CRS_..GPI0
    85E0: 8B 43 52 53 5F 0A 04 47 50 49 31 8C 43 52 53 5F  .CRS_..GPI1.CRS_
    85F0: 0A 07 47 50 49 4C 70 53 50 31 4F 47 50 49 30 70  ..GPILpSP1OGPI0p
    8600: 53 50 31 4F 47 50 49 31 70 0A 02 47 50 49 4C A0  SP1OGPI1p..GPIL.
    8610: 42 04 49 4F 31 42 8B 43 52 53 5F 0A 0A 47 50 31  B.IO1B.CRS_..GP1
    8620: 30 8B 43 52 53 5F 0A 0C 47 50 31 31 8C 43 52 53  0.CRS_..GP11.CRS
    8630: 5F 0A 0F 47 50 4C 31 70 49 4F 31 42 47 50 31 30  _..GPL1pIO1BGP10
    8640: 70 49 4F 31 42 47 50 31 31 70 49 4F 31 4C 47 50  pIO1BGP11pIO1LGP
    8650: 4C 31 A0 42 04 49 4F 32 42 8B 43 52 53 5F 0A 12  L1.B.IO2B.CRS_..
    8660: 47 50 32 30 8B 43 52 53 5F 0A 14 47 50 32 31 8C  GP20.CRS_..GP21.
    8670: 43 52 53 5F 0A 17 47 50 4C 32 70 49 4F 32 42 47  CRS_..GPL2pIO2BG
    8680: 50 32 30 70 49 4F 32 42 47 50 32 31 70 49 4F 32  P20pIO2BGP21pIO2
    8690: 4C 47 50 4C 32 A0 42 04 49 4F 33 42 8B 43 52 53  LGPL2.B.IO3B.CRS
    86A0: 5F 0A 1A 47 50 33 30 8B 43 52 53 5F 0A 1C 47 50  _..GP30.CRS_..GP
    86B0: 33 31 8C 43 52 53 5F 0A 1F 47 50 4C 33 70 49 4F  31.CRS_..GPL3pIO
    86C0: 33 42 47 50 33 30 70 49 4F 33 42 47 50 33 31 70  3BGP30pIO3BGP31p
    86D0: 49 4F 33 4C 47 50 4C 33 A0 42 04 49 4F 34 42 8B  IO3LGPL3.B.IO4B.
    86E0: 43 52 53 5F 0A 22 47 50 34 30 8B 43 52 53 5F 0A  CRS_."GP40.CRS_.
    86F0: 24 47 50 34 31 8C 43 52 53 5F 0A 27 47 50 4C 34  $GP41.CRS_.'GPL4
    8700: 70 49 4F 34 42 47 50 34 30 70 49 4F 34 42 47 50  pIO4BGP40pIO4BGP
    8710: 34 31 70 49 4F 34 4C 47 50 4C 34 A4 43 52 53 5F  41pIO4LGPL4.CRS_
    8720: 08 44 43 41 54 12 2B 15 0A 02 0A 03 01 0A FF 0A  .DCAT.+.........
    8730: FF 0A FF 0A FF 0A FF 0A FF 0A FF 0A 05 0A FF 0A  ................
    8740: FF 0A FF 0A 05 0A FF 0A 06 0A FF 0A FF 0A FF 0A  ................
    8750: FF 5B 01 4D 55 54 30 00 14 26 45 4E 46 47 01 5B  .[.MUT0..&ENFG.[
    8760: 23 4D 55 54 30 FF 0F 70 45 4E 54 4B 49 4E 44 58  #MUT0..pENTKINDX
    8770: 70 45 4E 54 4B 49 4E 44 58 70 68 4C 44 4E 5F 14  pENTKINDXphLDN_.
    8780: 15 45 58 46 47 00 70 45 58 54 4B 49 4E 44 58 5B  .EXFG.pEXTKINDX[
    8790: 27 4D 55 54 30 14 1D 4C 50 54 4D 01 45 4E 46 47  'MUT0..LPTM.ENFG
    87A0: 43 47 4C 44 68 7B 4F 50 54 30 0A 02 60 45 58 46  CGLDh{OPT0..`EXF
    87B0: 47 A4 60 14 2C 55 48 49 44 01 45 4E 46 47 43 47  G.`.,UHID.ENFGCG
    87C0: 4C 44 68 7B 4F 50 54 31 0A 10 60 45 58 46 47 A0  LDh{OPT1..`EXFG.
    87D0: 08 60 A4 0C 41 D0 05 10 A1 07 A4 0C 41 D0 05 01  .`..A.......A...
    87E0: 5B 80 49 4F 49 44 01 53 50 31 4F 0A 02 5B 81 10  [.IOID.SP1O..[..
    87F0: 49 4F 49 44 01 49 4E 44 58 08 44 41 54 41 08 5B  IOID.INDX.DATA.[
    8800: 86 4D 0E 49 4E 44 58 44 41 54 41 01 00 38 4C 44  .M.INDXDATA..8LD
    8810: 4E 5F 08 00 48 0C 53 43 46 31 08 00 00 53 43 46  N_..H.SCF1...SCF
    8820: 32 08 00 00 53 43 46 33 08 00 00 53 43 46 34 08  2...SCF3...SCF4.
    8830: 00 00 53 43 46 35 08 00 00 53 43 46 36 08 00 10  ..SCF5...SCF6...
    8840: 43 4B 43 46 08 00 18 43 52 32 44 08 00 08 53 43  CKCF...CR2D...SC
    8850: 46 46 08 00 00 41 43 54 52 08 00 48 17 49 4F 41  FF...ACTR..H.IOA
    8860: 48 08 49 4F 41 4C 08 49 4F 48 32 08 49 4F 4C 32  H.IOAL.IOH2.IOL2
    8870: 08 00 40 06 49 4E 54 52 04 49 4E 54 54 04 00 18  ..@.INTR.INTT...
    8880: 44 4D 43 48 08 00 48 35 52 47 45 30 08 52 47 45  DMCH..H5RGE0.RGE
    8890: 31 08 52 47 45 32 08 52 47 45 33 08 52 47 45 34  1.RGE2.RGE3.RGE4
    88A0: 08 52 47 45 35 08 52 47 45 36 08 52 47 45 37 08  .RGE5.RGE6.RGE7.
    88B0: 52 47 45 38 08 52 47 45 39 08 00 30 4F 50 54 30  RGE8.RGE9..0OPT0
    88C0: 08 4F 50 54 31 08 4F 50 54 32 08 4F 50 54 33 08  .OPT1.OPT2.OPT3.
    88D0: 4F 50 54 34 08 4F 50 54 35 08 4F 50 54 36 08 4F  OPT4.OPT5.OPT6.O
    88E0: 50 54 37 08 4F 50 54 38 08 4F 50 54 39 08 14 0F  PT7.OPT8.OPT9...
    88F0: 43 47 4C 44 01 A4 83 88 44 43 41 54 68 00 14 4E  CGLD....DCATh..N
    8900: 05 44 53 54 41 01 45 4E 46 47 43 47 4C 44 68 70  .DSTA.ENFGCGLDhp
    8910: 41 43 54 52 60 45 58 46 47 A0 07 93 60 0A FF A4  ACTR`EXFG...`...
    8920: 00 7B 60 01 60 A0 12 95 68 0A 10 7D 49 4F 53 54  .{`.`...h..}IOST
    8930: 79 60 68 00 49 4F 53 54 A0 05 60 A4 0A 0F A1 1E  y`h.IOST..`.....
    8940: A0 18 95 68 0A 10 A0 0E 7B 79 01 68 00 49 4F 53  ...h....{y.h.IOS
    8950: 54 00 A4 0A 0D A1 03 A4 00 A1 03 A4 00 14 46 06  T.............F.
    8960: 45 53 54 41 01 45 4E 46 47 43 47 4C 44 68 70 41  ESTA.ENFGCGLDhpA
    8970: 43 54 52 60 45 58 46 47 A0 07 93 60 0A FF A4 00  CTR`EXFG...`....
    8980: 7B 60 01 60 A0 16 94 68 0A 0F 7D 49 4F 45 53 79  {`.`...h..}IOESy
    8990: 60 7B 68 0A 0F 00 00 49 4F 45 53 A0 05 60 A4 0A  `{h....IOES..`..
    89A0: 0F A1 22 A0 1C 94 68 0A 0F A0 12 7B 79 01 7B 68  .."...h....{y.{h
    89B0: 0A 0F 00 00 49 4F 45 53 00 A4 0A 0D A1 03 A4 00  ....IOES........
    89C0: A1 03 A4 00 14 4F 04 44 43 4E 54 02 45 4E 46 47  .....O.DCNT.ENFG
    89D0: 43 47 4C 44 68 A0 1C 90 95 44 4D 43 48 0A 04 92  CGLDh....DMCH...
    89E0: 93 7B 44 4D 43 48 0A 03 61 00 52 44 4D 41 68 69  .{DMCH..a.RDMAhi
    89F0: 75 61 70 69 41 43 54 52 79 49 4F 41 48 0A 08 61  uapiACTRyIOAH..a
    8A00: 7D 49 4F 41 4C 61 61 52 52 49 4F 68 69 61 0A 08  }IOALaaRRIOhia..
    8A10: 45 58 46 47 08 43 52 53 31 11 13 0A 10 47 01 00  EXFG.CRS1....G..
    8A20: 00 00 00 01 00 22 00 00 2A 00 00 79 00 8B 43 52  ....."..*..y..CR
    8A30: 53 31 0A 09 49 52 51 4D 8C 43 52 53 31 0A 0C 44  S1..IRQM.CRS1..D
    8A40: 4D 41 4D 8B 43 52 53 31 0A 02 49 4F 31 31 8B 43  MAM.CRS1..IO11.C
    8A50: 52 53 31 0A 04 49 4F 31 32 8C 43 52 53 31 0A 07  RS1..IO12.CRS1..
    8A60: 4C 45 4E 31 08 43 52 53 32 11 1B 0A 18 47 01 00  LEN1.CRS2....G..
    8A70: 00 00 00 01 00 47 01 00 00 00 00 01 00 22 00 00  .....G......."..
    8A80: 2A 00 00 79 00 8B 43 52 53 32 0A 11 49 52 51 45  *..y..CRS2..IRQE
    8A90: 8C 43 52 53 32 0A 14 44 4D 41 45 8B 43 52 53 32  .CRS2..DMAE.CRS2
    8AA0: 0A 02 49 4F 32 31 8B 43 52 53 32 0A 04 49 4F 32  ..IO21.CRS2..IO2
    8AB0: 32 8C 43 52 53 32 0A 07 4C 45 4E 32 8B 43 52 53  2.CRS2..LEN2.CRS
    8AC0: 32 0A 0A 49 4F 33 31 8B 43 52 53 32 0A 0C 49 4F  2..IO31.CRS2..IO
    8AD0: 33 32 8C 43 52 53 32 0A 0F 4C 45 4E 33 08 43 52  32.CRS2..LEN3.CR
    8AE0: 53 33 11 14 0A 11 47 01 00 00 00 00 01 00 23 00  S3....G.......#.
    8AF0: 00 18 2A 00 00 79 00 8B 43 52 53 33 0A 09 49 52  ..*..y..CRS3..IR
    8B00: 51 54 8C 43 52 53 33 0A 0B 49 52 51 53 8C 43 52  QT.CRS3..IRQS.CR
    8B10: 53 33 0A 0D 44 4D 41 54 8B 43 52 53 33 0A 02 49  S3..DMAT.CRS3..I
    8B20: 4F 34 31 8B 43 52 53 33 0A 04 49 4F 34 32 8C 43  O41.CRS3..IO42.C
    8B30: 52 53 33 0A 07 4C 45 4E 34 14 4D 07 44 43 52 53  RS3..LEN4.M.DCRS
    8B40: 02 45 4E 46 47 43 47 4C 44 68 79 49 4F 41 48 0A  .ENFGCGLDhyIOAH.
    8B50: 08 49 4F 31 31 7D 49 4F 41 4C 49 4F 31 31 49 4F  .IO11}IOALIO11IO
    8B60: 31 31 70 49 4F 31 31 49 4F 31 32 70 0A 08 4C 45  11pIO11IO12p..LE
    8B70: 4E 31 A0 0F 49 4E 54 52 79 01 49 4E 54 52 49 52  N1..INTRy.INTRIR
    8B80: 51 4D A1 07 70 00 49 52 51 4D A0 12 91 94 44 4D  QM..p.IRQM....DM
    8B90: 43 48 0A 03 93 69 00 70 00 44 4D 41 4D A1 10 7B  CH...i.p.DMAM..{
    8BA0: 44 4D 43 48 0A 03 61 79 01 61 44 4D 41 4D 45 58  DMCH..ay.aDMAMEX
    8BB0: 46 47 A4 43 52 53 31 14 45 0A 44 43 52 32 02 45  FG.CRS1.E.DCR2.E
    8BC0: 4E 46 47 43 47 4C 44 68 79 49 4F 41 48 0A 08 49  NFGCGLDhyIOAH..I
    8BD0: 4F 32 31 7D 49 4F 41 4C 49 4F 32 31 49 4F 32 31  O21}IOALIO21IO21
    8BE0: 70 49 4F 32 31 49 4F 32 32 70 0A 08 4C 45 4E 32  pIO21IO22p..LEN2
    8BF0: 79 49 4F 48 32 0A 08 49 4F 33 31 7D 49 4F 4C 32  yIOH2..IO31}IOL2
    8C00: 49 4F 33 31 49 4F 33 31 70 49 4F 33 31 49 4F 33  IO31IO31pIO31IO3
    8C10: 32 70 0A 08 4C 45 4E 33 A0 0F 49 4E 54 52 79 01  2p..LEN3..INTRy.
    8C20: 49 4E 54 52 49 52 51 45 A1 07 70 00 49 52 51 45  INTRIRQE..p.IRQE
    8C30: A0 12 91 94 44 4D 43 48 0A 03 93 69 00 70 00 44  ....DMCH...i.p.D
    8C40: 4D 41 45 A1 10 7B 44 4D 43 48 0A 03 61 79 01 61  MAE..{DMCH..ay.a
    8C50: 44 4D 41 45 45 58 46 47 A4 43 52 53 32 14 4D 07  DMAEEXFG.CRS2.M.
    8C60: 44 43 52 33 02 45 4E 46 47 43 47 4C 44 68 79 49  DCR3.ENFGCGLDhyI
    8C70: 4F 41 48 0A 08 49 4F 34 31 7D 49 4F 41 4C 49 4F  OAH..IO41}IOALIO
    8C80: 34 31 49 4F 34 31 70 49 4F 34 31 49 4F 34 32 70  41IO41pIO41IO42p
    8C90: 0A 08 4C 45 4E 34 A0 0F 49 4E 54 52 79 01 49 4E  ..LEN4..INTRy.IN
    8CA0: 54 52 49 52 51 54 A1 07 70 00 49 52 51 54 A0 12  TRIRQT..p.IRQT..
    8CB0: 91 94 44 4D 43 48 0A 03 93 69 00 70 00 44 4D 41  ..DMCH...i.p.DMA
    8CC0: 54 A1 10 7B 44 4D 43 48 0A 03 61 79 01 61 44 4D  T..{DMCH..ay.aDM
    8CD0: 41 54 45 58 46 47 A4 43 52 53 33 14 45 09 44 53  ATEXFG.CRS3.E.DS
    8CE0: 52 53 02 A0 12 7B 93 69 0A 02 4C 50 54 4D 69 00  RS...{.i..LPTMi.
    8CF0: 44 53 52 32 68 69 A1 4A 07 8B 68 0A 09 49 52 51  DSR2hi.J..h..IRQ
    8D00: 4D 8C 68 0A 0C 44 4D 41 4D 8B 68 0A 02 49 4F 31  M.h..DMAM.h..IO1
    8D10: 31 45 4E 46 47 43 47 4C 44 69 7B 49 4F 31 31 0A  1ENFGCGLDi{IO11.
    8D20: FF 49 4F 41 4C 7A 49 4F 31 31 0A 08 49 4F 41 48  .IOALzIO11..IOAH
    8D30: A0 12 49 52 51 4D 82 49 52 51 4D 60 74 60 01 49  ..IRQM.IRQM`t`.I
    8D40: 4E 54 52 A1 07 70 00 49 4E 54 52 A0 12 44 4D 41  NTR..p.INTR..DMA
    8D50: 4D 82 44 4D 41 4D 60 74 60 01 44 4D 43 48 A1 08  M.DMAM`t`.DMCH..
    8D60: 70 0A 04 44 4D 43 48 45 58 46 47 44 43 4E 54 69  p..DMCHEXFGDCNTi
    8D70: 01 14 4D 09 44 53 52 32 02 8B 68 0A 11 49 52 51  ..M.DSR2..h..IRQ
    8D80: 45 8C 68 0A 14 44 4D 41 45 8B 68 0A 02 49 4F 32  E.h..DMAE.h..IO2
    8D90: 31 8B 68 0A 0A 49 4F 33 31 45 4E 46 47 43 47 4C  1.h..IO31ENFGCGL
    8DA0: 44 69 7B 49 4F 32 31 0A FF 49 4F 41 4C 7A 49 4F  Di{IO21..IOALzIO
    8DB0: 32 31 0A 08 49 4F 41 48 7B 49 4F 33 31 0A FF 49  21..IOAH{IO31..I
    8DC0: 4F 4C 32 7A 49 4F 33 31 0A 08 49 4F 48 32 A0 12  OL2zIO31..IOH2..
    8DD0: 49 52 51 45 82 49 52 51 45 60 74 60 01 49 4E 54  IRQE.IRQE`t`.INT
    8DE0: 52 A1 07 70 00 49 4E 54 52 A0 12 44 4D 41 45 82  R..p.INTR..DMAE.
    8DF0: 44 4D 41 45 60 74 60 01 44 4D 43 48 A1 08 70 0A  DMAE`t`.DMCH..p.
    8E00: 04 44 4D 43 48 45 58 46 47 44 43 4E 54 69 01 14  .DMCHEXFGDCNTi..
    8E10: 47 08 44 53 52 33 02 8B 68 0A 02 49 4F 34 31 8B  G.DSR3..h..IO41.
    8E20: 68 0A 09 49 52 51 54 8C 68 0A 0B 49 52 51 53 8C  h..IRQT.h..IRQS.
    8E30: 68 0A 0D 44 4D 41 54 45 4E 46 47 43 47 4C 44 69  h..DMATENFGCGLDi
    8E40: 7B 49 4F 34 31 0A FF 49 4F 41 4C 7A 49 4F 34 31  {IO41..IOALzIO41
    8E50: 0A 08 49 4F 41 48 A0 12 49 52 51 54 82 49 52 51  ..IOAH..IRQT.IRQ
    8E60: 54 60 74 60 01 49 4E 54 52 A1 07 70 00 49 4E 54  T`t`.INTR..p.INT
    8E70: 52 A0 12 44 4D 41 54 82 44 4D 41 54 60 74 60 01  R..DMAT.DMAT`t`.
    8E80: 44 4D 43 48 A1 08 70 0A 04 44 4D 43 48 45 58 46  DMCH..p..DMCHEXF
    8E90: 47 44 43 4E 54 69 01 08 50 4D 46 47 00 14 45 08  GDCNTi..PMFG..E.
    8EA0: 53 49 4F 53 01 70 0D 53 49 4F 53 00 5B 31 A0 44  SIOS.p.SIOS.[1.D
    8EB0: 07 92 93 0A 05 68 45 4E 46 47 0A 0A 70 00 4F 50  .....hENFG..p.OP
    8EC0: 54 36 70 00 4F 50 54 37 A0 10 4B 42 46 47 7D 4F  T6p.OPT7..KBFG}O
    8ED0: 50 54 36 0A 10 4F 50 54 36 A1 0C 7B 4F 50 54 36  PT6..OPT6..{OPT6
    8EE0: 0A EF 4F 50 54 36 A0 10 4D 53 46 47 7D 4F 50 54  ..OPT6..MSFG}OPT
    8EF0: 36 0A 20 4F 50 54 36 A1 0C 7B 4F 50 54 36 0A DF  6. OPT6..{OPT6..
    8F00: 4F 50 54 36 70 0A FF 4F 50 54 33 70 0A FF 4F 50  OPT6p..OPT3p..OP
    8F10: 54 34 7D 01 4F 50 54 32 60 70 60 4F 50 54 32 45  T4}.OPT2`p`OPT2E
    8F20: 58 46 47 14 3D 53 49 4F 57 01 70 0D 53 49 4F 57  XFG.=SIOW.p.SIOW
    8F30: 00 5B 31 45 4E 46 47 0A 0A 70 0A FF 4F 50 54 33  .[1ENFG..p..OPT3
    8F40: 70 0A FF 4F 50 54 34 7B 4F 50 54 36 0A CF 4F 50  p..OPT4{OPT6..OP
    8F50: 54 36 7B 4F 50 54 32 0A FE 4F 50 54 32 45 58 46  T6{OPT2..OPT2EXF
    8F60: 47 14 06 53 49 4F 48 00 14 0F 5F 50 52 57 00 A4  G..SIOH..._PRW..
    8F70: 47 50 52 57 0A 1D 0A 03 5B 82 42 0E 55 41 52 31  GPRW....[.B.UAR1
    8F80: 08 5F 48 49 44 0C 41 D0 05 01 08 5F 55 49 44 00  ._HID.A...._UID.
    8F90: 08 4C 44 4E 5F 0A 02 14 13 5F 53 54 41 00 A4 5E  .LDN_...._STA..^
    8FA0: 5E 2E 53 49 4F 31 44 53 54 41 00 14 13 5F 44 49  ^.SIO1DSTA..._DI
    8FB0: 53 00 5E 5E 2E 53 49 4F 31 44 43 4E 54 00 00 14  S.^^.SIO1DCNT...
    8FC0: 14 5F 43 52 53 00 A4 5E 5E 2E 53 49 4F 31 44 43  ._CRS..^^.SIO1DC
    8FD0: 52 53 00 00 14 13 5F 53 52 53 01 5E 5E 2E 53 49  RS...._SRS.^^.SI
    8FE0: 4F 31 44 53 52 53 68 00 08 5F 44 44 4E 0D 43 4F  O1DSRSh.._DDN.CO
    8FF0: 4D 31 00 08 5F 50 52 53 11 43 05 0A 4F 31 00 47  M1.._PRS.C..O1.G
    9000: 01 F8 03 F8 03 01 08 22 10 00 2A 00 00 30 47 01  ......."..*..0G.
    9010: F8 03 F8 03 01 08 22 10 00 2A 00 00 30 47 01 F8  ......"..*..0G..
    9020: 02 F8 02 01 08 22 08 00 2A 00 00 30 47 01 E8 03  ....."..*..0G...
    9030: E8 03 01 08 22 10 00 2A 00 00 30 47 01 E8 02 E8  ...."..*..0G....
    9040: 02 01 08 22 08 00 2A 00 00 38 79 00 14 0F 5F 50  ..."..*..8y..._P
    9050: 52 57 00 A4 47 50 52 57 0A 03 0A 04 5B 82 25 48  RW..GPRW....[.%H
    9060: 48 4D 44 08 5F 48 49 44 0C 41 D0 0C 08 08 5F 55  HMD._HID.A...._U
    9070: 49 44 01 08 4C 44 4E 5F 0A 0B 14 08 5F 53 54 41  ID..LDN_...._STA
    9080: 00 A4 00 5B 82 0F 44 30 30 38 08 5F 41 44 52 0C  ...[..D008._ADR.
    9090: 06 00 14 00 5B 82 4B B2 50 43 49 31 08 5F 48 49  ....[.K.PCI1._HI
    90A0: 44 0C 41 D0 0A 08 08 5F 43 49 44 0C 41 D0 0A 03  D.A...._CID.A...
    90B0: 08 5F 41 44 52 00 14 09 5E 42 4E 30 31 00 A4 01  ._ADR...^BN01...
    90C0: 14 0B 5F 42 42 4E 00 A4 42 4E 30 31 08 5F 55 49  .._BBN..BN01._UI
    90D0: 44 01 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  D..._PRT...PICM.
    90E0: 41 52 30 31 A4 50 44 30 31 08 43 50 52 42 01 08  AR01.PD01.CPRB..
    90F0: 4C 56 47 41 0A 00 08 53 54 41 56 0A 0F 08 42 52  LVGA...STAV...BR
    9100: 42 5F 0B 40 00 08 42 52 4C 5F 0B 40 00 08 49 4F  B_.@..BRL_.@..IO
    9110: 42 5F 0B 00 40 08 49 4F 4C 5F 0B 00 30 08 4D 42  B_..@.IOL_..0.MB
    9120: 42 5F 0C 00 00 00 C0 08 4D 42 4C 5F 0C 00 00 00  B_......MBL_....
    9130: 01 08 4D 41 42 4C 0E 00 00 40 20 40 06 00 00 08  ..MABL...@ @....
    9140: 4D 41 42 48 0C 00 00 01 00 08 4D 41 4D 4C 0C 00  MABH......MAML..
    9150: 00 01 00 08 4D 41 4D 48 0C 00 00 01 00 08 4D 41  ....MAMH......MA
    9160: 4C 4C 0E 00 00 00 93 59 00 00 00 08 4D 41 4C 48  LL.....Y....MALH
    9170: 0C 00 00 01 00 08 50 52 58 4D 0B 00 00 08 43 52  ......PRXM....CR
    9180: 53 32 11 48 09 0A 94 88 0D 00 02 0C 00 00 00 80  S2.H............
    9190: 00 FF 00 00 00 80 00 88 0D 00 01 0C 03 00 00 00  ................
    91A0: 00 00 00 00 00 00 00 88 0D 00 01 0C 03 00 00 00  ................
    91B0: 00 00 00 00 00 00 00 87 17 00 00 0C 03 00 00 00  ................
    91C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    91D0: 00 87 17 00 00 0C 03 00 00 00 00 00 00 00 80 FF  ................
    91E0: FF FF FF 00 00 00 00 00 00 00 80 8A 2B 00 00 0C  ............+...
    91F0: 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9210: 00 00 00 00 00 00 00 00 00 79 00 14 0B 5F 53 54  .........y..._ST
    9220: 41 00 A4 53 54 41 56 14 4A 19 5F 43 52 53 08 8B  A..STAV.J._CRS..
    9230: 43 52 53 32 0A 08 4D 49 4E 32 8B 43 52 53 32 0A  CRS2..MIN2.CRS2.
    9240: 0A 4D 41 58 32 8B 43 52 53 32 0A 0E 4C 45 4E 32  .MAX2.CRS2..LEN2
    9250: 70 42 52 42 5F 4D 49 4E 32 70 42 52 4C 5F 4C 45  pBRB_MIN2pBRL_LE
    9260: 4E 32 70 4C 45 4E 32 61 72 4D 49 4E 32 76 61 4D  N2pLEN2arMIN2vaM
    9270: 41 58 32 8B 43 52 53 32 0A 28 4D 49 4E 34 8B 43  AX2.CRS2.(MIN4.C
    9280: 52 53 32 0A 2A 4D 41 58 34 8B 43 52 53 32 0A 2E  RS2.*MAX4.CRS2..
    9290: 4C 45 4E 34 70 49 4F 42 5F 4D 49 4E 34 70 49 4F  LEN4pIOB_MIN4pIO
    92A0: 4C 5F 4C 45 4E 34 70 4C 45 4E 34 61 72 4D 49 4E  L_LEN4pLEN4arMIN
    92B0: 34 76 61 4D 41 58 34 A0 4D 07 4C 56 47 41 8B 43  4vaMAX4.M.LVGA.C
    92C0: 52 53 32 0A 18 49 4D 4E 32 8B 43 52 53 32 0A 1A  RS2..IMN2.CRS2..
    92D0: 49 4D 58 32 8B 43 52 53 32 0A 1E 49 4C 4E 32 70  IMX2.CRS2..ILN2p
    92E0: 0B B0 03 49 4D 4E 32 70 0B DF 03 49 4D 58 32 70  ...IMN2p...IMX2p
    92F0: 0A 30 49 4C 4E 32 8A 43 52 53 32 0A 3A 56 4D 4E  .0ILN2.CRS2.:VMN
    9300: 32 8A 43 52 53 32 0A 3E 56 4D 58 32 8A 43 52 53  2.CRS2.>VMX2.CRS
    9310: 32 0A 46 56 4C 4E 32 70 0C 00 00 0A 00 56 4D 4E  2.FVLN2p.....VMN
    9320: 32 70 0C FF FF 0B 00 56 4D 58 32 70 0C 00 00 02  2p.....VMX2p....
    9330: 00 56 4C 4E 32 8A 43 52 53 32 0A 54 4D 49 4E 35  .VLN2.CRS2.TMIN5
    9340: 8A 43 52 53 32 0A 58 4D 41 58 35 8A 43 52 53 32  .CRS2.XMAX5.CRS2
    9350: 0A 60 4C 45 4E 35 70 4D 42 42 5F 4D 49 4E 35 70  .`LEN5pMBB_MIN5p
    9360: 4D 42 4C 5F 4C 45 4E 35 70 4C 45 4E 35 61 72 4D  MBL_LEN5pLEN5arM
    9370: 49 4E 35 76 61 4D 41 58 35 8F 43 52 53 32 0A 72  IN5vaMAX5.CRS2.r
    9380: 4D 49 4E 39 8F 43 52 53 32 0A 7A 4D 41 58 39 8F  MIN9.CRS2.zMAX9.
    9390: 43 52 53 32 0A 8A 4C 45 4E 39 70 4D 41 42 4C 4D  CRS2..LEN9pMABLM
    93A0: 49 4E 39 70 4D 41 4C 4C 4C 45 4E 39 70 4C 45 4E  IN9pMALLLEN9pLEN
    93B0: 39 60 72 4D 49 4E 39 76 60 4D 41 58 39 A4 43 52  9`rMIN9v`MAX9.CR
    93C0: 53 32 14 42 13 5F 4F 53 43 0C 08 53 55 50 50 00  S2.B._OSC..SUPP.
    93D0: 08 43 54 52 4C 00 8A 6B 00 43 44 57 31 8A 6B 0A  .CTRL..k.CDW1.k.
    93E0: 04 43 44 57 32 8A 6B 0A 08 43 44 57 33 A0 48 0F  .CDW2.k..CDW3.H.
    93F0: 93 68 11 13 0A 10 5B 4D DB 33 F7 1F 1C 40 96 57  .h....[M.3...@.W
    9400: 74 41 C0 3D D7 66 70 43 44 57 32 53 55 50 50 70  tA.=.fpCDW2SUPPp
    9410: 43 44 57 33 43 54 52 4C A0 18 92 93 7B 53 55 50  CDW3CTRL....{SUP
    9420: 50 0A 16 00 0A 16 7B 43 54 52 4C 0A 1E 43 54 52  P.....{CTRL..CTR
    9430: 4C A0 11 92 50 45 48 50 7B 43 54 52 4C 0A 1E 43  L...PEHP{CTRL..C
    9440: 54 52 4C A0 11 92 53 48 50 43 7B 43 54 52 4C 0A  TRL...SHPC{CTRL.
    9450: 1D 43 54 52 4C A0 11 92 50 45 50 4D 7B 43 54 52  .CTRL...PEPM{CTR
    9460: 4C 0A 1B 43 54 52 4C A0 11 92 50 45 45 52 7B 43  L..CTRL...PEER{C
    9470: 54 52 4C 0A 15 43 54 52 4C A0 11 92 50 45 43 53  TRL..CTRL...PECS
    9480: 7B 43 54 52 4C 0A 0F 43 54 52 4C A0 10 92 93 69  {CTRL..CTRL....i
    9490: 01 7D 43 44 57 31 0A 08 43 44 57 31 A0 15 5B 12  .}CDW1..CDW1..[.
    94A0: 50 4F 53 43 00 7B 43 54 52 4C 50 4F 53 43 43 54  POSC.{CTRLPOSCCT
    94B0: 52 4C A0 16 92 93 43 44 57 33 43 54 52 4C 7D 43  RL....CDW3CTRL}C
    94C0: 44 57 31 0A 10 43 44 57 31 70 43 54 52 4C 43 44  DW1..CDW1pCTRLCD
    94D0: 57 33 A0 11 5B 12 50 4F 53 53 00 70 53 55 50 50  W3..[.POSS.pSUPP
    94E0: 50 4F 53 53 A4 6B A1 0E 7D 43 44 57 31 0A 04 43  POSS.k..}CDW1..C
    94F0: 44 57 31 A4 6B 5B 82 0C 44 30 38 43 08 5F 41 44  DW1.k[..D08C._AD
    9500: 52 0A 02 5B 82 0C 44 30 38 44 08 5F 41 44 52 0A  R..[..D08D._ADR.
    9510: 03 5B 82 46 04 47 50 50 30 08 5F 41 44 52 0C 01  .[.F.GPP0._ADR..
    9520: 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9530: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9540: A4 47 30 38 46 A4 50 30 38 46 5B 82 0D 44 30 46  .G08F.P08F[..D0F
    9550: 36 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  6._ADR...[.F.GPP
    9560: 31 08 5F 41 44 52 0C 02 00 01 00 14 0F 5F 50 52  1._ADR......._PR
    9570: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9580: 54 00 A0 0A 50 49 43 4D A4 47 30 39 30 A4 50 30  T...PICM.G090.P0
    9590: 39 30 5B 82 0D 44 30 46 37 08 5F 41 44 52 0B FF  90[..D0F7._ADR..
    95A0: FF 5B 82 46 04 47 50 50 32 08 5F 41 44 52 0C 03  .[.F.GPP2._ADR..
    95B0: 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    95C0: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    95D0: A4 47 30 39 31 A4 50 30 39 31 5B 82 0D 44 30 46  .G091.P091[..D0F
    95E0: 38 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  8._ADR...[.F.GPP
    95F0: 33 08 5F 41 44 52 0C 04 00 01 00 14 0F 5F 50 52  3._ADR......._PR
    9600: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9610: 54 00 A0 0A 50 49 43 4D A4 47 30 39 32 A4 50 30  T...PICM.G092.P0
    9620: 39 32 5B 82 0D 44 30 46 39 08 5F 41 44 52 0B FF  92[..D0F9._ADR..
    9630: FF 5B 82 46 04 47 50 50 34 08 5F 41 44 52 0C 05  .[.F.GPP4._ADR..
    9640: 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9650: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9660: A4 47 30 39 33 A4 50 30 39 33 5B 82 0D 44 30 46  .G093.P093[..D0F
    9670: 41 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  A._ADR...[.F.GPP
    9680: 35 08 5F 41 44 52 0C 06 00 01 00 14 0F 5F 50 52  5._ADR......._PR
    9690: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    96A0: 54 00 A0 0A 50 49 43 4D A4 47 30 39 34 A4 50 30  T...PICM.G094.P0
    96B0: 39 34 5B 82 0D 44 30 46 42 08 5F 41 44 52 0B FF  94[..D0FB._ADR..
    96C0: FF 5B 82 46 04 47 50 50 36 08 5F 41 44 52 0C 07  .[.F.GPP6._ADR..
    96D0: 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    96E0: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    96F0: A4 47 30 39 35 A4 50 30 39 35 5B 82 0D 44 30 46  .G095.P095[..D0F
    9700: 43 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  C._ADR...[.F.GPP
    9710: 37 08 5F 41 44 52 0C 01 00 02 00 14 0F 5F 50 52  7._ADR......._PR
    9720: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9730: 54 00 A0 0A 50 49 43 4D A4 47 30 39 36 A4 50 30  T...PICM.G096.P0
    9740: 39 36 5B 82 0D 44 30 46 44 08 5F 41 44 52 0B FF  96[..D0FD._ADR..
    9750: FF 5B 82 46 04 47 50 50 38 08 5F 41 44 52 0C 02  .[.F.GPP8._ADR..
    9760: 00 02 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9770: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9780: A4 47 30 39 37 A4 50 30 39 37 5B 82 0D 44 30 46  .G097.P097[..D0F
    9790: 45 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  E._ADR...[.F.GPP
    97A0: 39 08 5F 41 44 52 0C 01 00 03 00 14 0F 5F 50 52  9._ADR......._PR
    97B0: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    97C0: 54 00 A0 0A 50 49 43 4D A4 47 30 39 38 A4 50 30  T...PICM.G098.P0
    97D0: 39 38 5B 82 0D 44 30 45 45 08 5F 41 44 52 0B FF  98[..D0EE._ADR..
    97E0: FF 5B 82 46 04 47 50 50 41 08 5F 41 44 52 0C 02  .[.F.GPPA._ADR..
    97F0: 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9800: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9810: A4 47 30 39 39 A4 50 30 39 39 5B 82 0D 44 30 45  .G099.P099[..D0E
    9820: 46 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  F._ADR...[.F.GPP
    9830: 42 08 5F 41 44 52 0C 03 00 03 00 14 0F 5F 50 52  B._ADR......._PR
    9840: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9850: 54 00 A0 0A 50 49 43 4D A4 47 30 39 41 A4 50 30  T...PICM.G09A.P0
    9860: 39 41 5B 82 0D 44 30 46 30 08 5F 41 44 52 0B FF  9A[..D0F0._ADR..
    9870: FF 5B 82 46 04 47 50 50 43 08 5F 41 44 52 0C 04  .[.F.GPPC._ADR..
    9880: 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9890: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    98A0: A4 47 30 39 42 A4 50 30 39 42 5B 82 0D 44 30 46  .G09B.P09B[..D0F
    98B0: 31 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  1._ADR...[.F.GPP
    98C0: 44 08 5F 41 44 52 0C 05 00 03 00 14 0F 5F 50 52  D._ADR......._PR
    98D0: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    98E0: 54 00 A0 0A 50 49 43 4D A4 47 30 39 43 A4 50 30  T...PICM.G09C.P0
    98F0: 39 43 5B 82 0D 44 30 46 32 08 5F 41 44 52 0B FF  9C[..D0F2._ADR..
    9900: FF 5B 82 46 04 47 50 50 45 08 5F 41 44 52 0C 06  .[.F.GPPE._ADR..
    9910: 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9920: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9930: A4 47 30 39 44 A4 50 30 39 44 5B 82 0D 44 30 46  .G09D.P09D[..D0F
    9940: 33 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  3._ADR...[.F.GPP
    9950: 46 08 5F 41 44 52 0C 07 00 03 00 14 0F 5F 50 52  F._ADR......._PR
    9960: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9970: 54 00 A0 0A 50 49 43 4D A4 47 30 39 45 A4 50 30  T...PICM.G09E.P0
    9980: 39 45 5B 82 0D 44 30 46 34 08 5F 41 44 52 0B FF  9E[..D0F4._ADR..
    9990: FF 5B 82 46 04 47 50 50 47 08 5F 41 44 52 0C 01  .[.F.GPPG._ADR..
    99A0: 00 04 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    99B0: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    99C0: A4 47 30 39 46 A4 50 30 39 46 5B 82 0D 44 30 46  .G09F.P09F[..D0F
    99D0: 35 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  5._ADR...[.F.GPP
    99E0: 48 08 5F 41 44 52 0C 02 00 04 00 14 0F 5F 50 52  H._ADR......._PR
    99F0: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9A00: 54 00 A0 0A 50 49 43 4D A4 47 30 41 30 A4 50 30  T...PICM.G0A0.P0
    9A10: 41 30 5B 82 0D 44 30 46 46 08 5F 41 44 52 0B FF  A0[..D0FF._ADR..
    9A20: FF 5B 82 46 04 47 50 31 35 08 5F 41 44 52 0C 01  .[.F.GP15._ADR..
    9A30: 00 05 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9A40: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9A50: A4 47 30 41 31 A4 50 30 41 31 5B 82 0D 44 30 30  .G0A1.P0A1[..D00
    9A60: 30 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 32  0._ADR...[.F.GP2
    9A70: 35 08 5F 41 44 52 0C 02 00 05 00 14 0F 5F 50 52  5._ADR......._PR
    9A80: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9A90: 54 00 A0 0A 50 49 43 4D A4 47 30 41 32 A4 50 30  T...PICM.G0A2.P0
    9AA0: 41 32 5B 82 0D 44 30 30 31 08 5F 41 44 52 0B FF  A2[..D001._ADR..
    9AB0: FF 5B 82 46 04 47 50 33 35 08 5F 41 44 52 0C 03  .[.F.GP35._ADR..
    9AC0: 00 05 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9AD0: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9AE0: A4 47 30 41 33 A4 50 30 41 33 5B 82 0D 44 30 30  .G0A3.P0A3[..D00
    9AF0: 32 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 34  2._ADR...[.F.GP4
    9B00: 35 08 5F 41 44 52 0C 04 00 05 00 14 0F 5F 50 52  5._ADR......._PR
    9B10: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9B20: 54 00 A0 0A 50 49 43 4D A4 47 30 41 34 A4 50 30  T...PICM.G0A4.P0
    9B30: 41 34 5B 82 0D 44 30 30 33 08 5F 41 44 52 0B FF  A4[..D003._ADR..
    9B40: FF 5B 82 4D 06 47 50 31 37 08 5F 41 44 52 0C 01  .[.M.GP17._ADR..
    9B50: 00 07 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9B60: 0B 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9B70: A4 47 30 41 35 A4 50 30 41 35 5B 82 0B 44 30 41  .G0A5.P0A5[..D0A
    9B80: 36 08 5F 41 44 52 00 5B 82 0B 44 30 41 37 08 5F  6._ADR.[..D0A7._
    9B90: 41 44 52 01 5B 82 0C 44 30 41 38 08 5F 41 44 52  ADR.[..D0A8._ADR
    9BA0: 0A 02 5B 82 0C 44 30 41 39 08 5F 41 44 52 0A 03  ..[..D0A9._ADR..
    9BB0: 5B 82 0F 47 50 32 37 08 5F 41 44 52 0C 02 00 07  [..GP27._ADR....
    9BC0: 00 10 48 6A 5F 47 50 45 14 42 63 5F 4C 30 38 00  ..Hj_GPE.Bc_L08.
    9BD0: 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 30  .\/._SB_PCI3GPP0
    9BE0: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  ...\/._SB_PCI3GP
    9BF0: 50 31 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33  P1...\/._SB_PCI3
    9C00: 47 50 50 32 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPP2...\/._SB_PC
    9C10: 49 33 47 50 50 33 0A 02 86 5C 2F 03 5F 53 42 5F  I3GPP3...\/._SB_
    9C20: 50 43 49 33 47 50 50 34 0A 02 86 5C 2F 03 5F 53  PCI3GPP4...\/._S
    9C30: 42 5F 50 43 49 33 47 50 50 35 0A 02 86 5C 2F 03  B_PCI3GPP5...\/.
    9C40: 5F 53 42 5F 50 43 49 33 47 50 50 36 0A 02 86 5C  _SB_PCI3GPP6...\
    9C50: 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 37 0A 02  /._SB_PCI3GPP7..
    9C60: 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 38  .\/._SB_PCI3GPP8
    9C70: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  ...\/._SB_PCI3GP
    9C80: 50 39 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33  P9...\/._SB_PCI3
    9C90: 47 50 50 41 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPPA...\/._SB_PC
    9CA0: 49 33 47 50 50 42 0A 02 86 5C 2F 03 5F 53 42 5F  I3GPPB...\/._SB_
    9CB0: 50 43 49 33 47 50 50 43 0A 02 86 5C 2F 03 5F 53  PCI3GPPC...\/._S
    9CC0: 42 5F 50 43 49 33 47 50 50 44 0A 02 86 5C 2F 03  B_PCI3GPPD...\/.
    9CD0: 5F 53 42 5F 50 43 49 33 47 50 50 45 0A 02 86 5C  _SB_PCI3GPPE...\
    9CE0: 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 46 0A 02  /._SB_PCI3GPPF..
    9CF0: 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 47  .\/._SB_PCI3GPPG
    9D00: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  ...\/._SB_PCI3GP
    9D10: 50 48 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33  PH...\/._SB_PCI3
    9D20: 47 50 31 35 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GP15...\/._SB_PC
    9D30: 49 33 47 50 32 35 0A 02 86 5C 2F 03 5F 53 42 5F  I3GP25...\/._SB_
    9D40: 50 43 49 33 47 50 33 35 0A 02 86 5C 2F 03 5F 53  PCI3GP35...\/._S
    9D50: 42 5F 50 43 49 33 47 50 34 35 0A 02 86 5C 2F 03  B_PCI3GP45...\/.
    9D60: 5F 53 42 5F 50 43 49 32 47 50 50 30 0A 02 86 5C  _SB_PCI2GPP0...\
    9D70: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 31 0A 02  /._SB_PCI2GPP1..
    9D80: 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 32  .\/._SB_PCI2GPP2
    9D90: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  ...\/._SB_PCI2GP
    9DA0: 50 33 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32  P3...\/._SB_PCI2
    9DB0: 47 50 50 34 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPP4...\/._SB_PC
    9DC0: 49 32 47 50 50 35 0A 02 86 5C 2F 03 5F 53 42 5F  I2GPP5...\/._SB_
    9DD0: 50 43 49 32 47 50 50 36 0A 02 86 5C 2F 03 5F 53  PCI2GPP6...\/._S
    9DE0: 42 5F 50 43 49 32 47 50 50 37 0A 02 86 5C 2F 03  B_PCI2GPP7...\/.
    9DF0: 5F 53 42 5F 50 43 49 32 47 50 50 38 0A 02 86 5C  _SB_PCI2GPP8...\
    9E00: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 39 0A 02  /._SB_PCI2GPP9..
    9E10: 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 41  .\/._SB_PCI2GPPA
    9E20: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  ...\/._SB_PCI2GP
    9E30: 50 42 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32  PB...\/._SB_PCI2
    9E40: 47 50 50 43 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPPC...\/._SB_PC
    9E50: 49 32 47 50 50 44 0A 02 86 5C 2F 03 5F 53 42 5F  I2GPPD...\/._SB_
    9E60: 50 43 49 32 47 50 50 45 0A 02 86 5C 2F 03 5F 53  PCI2GPPE...\/._S
    9E70: 42 5F 50 43 49 32 47 50 50 46 0A 02 86 5C 2F 03  B_PCI2GPPF...\/.
    9E80: 5F 53 42 5F 50 43 49 32 47 50 50 47 0A 02 86 5C  _SB_PCI2GPPG...\
    9E90: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 48 0A 02  /._SB_PCI2GPPH..
    9EA0: 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 31 35  .\/._SB_PCI2GP15
    9EB0: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  ...\/._SB_PCI2GP
    9EC0: 32 35 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32  25...\/._SB_PCI2
    9ED0: 47 50 33 35 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GP35...\/._SB_PC
    9EE0: 49 32 47 50 34 35 0A 02 86 5C 2F 03 5F 53 42 5F  I2GP45...\/._SB_
    9EF0: 50 43 49 30 47 50 50 30 0A 02 86 5C 2F 03 5F 53  PCI0GPP0...\/._S
    9F00: 42 5F 50 43 49 30 47 50 50 32 0A 02 86 5C 2F 03  B_PCI0GPP2...\/.
    9F10: 5F 53 42 5F 50 43 49 30 47 50 50 33 0A 02 86 5C  _SB_PCI0GPP3...\
    9F20: 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 34 0A 02  /._SB_PCI0GPP4..
    9F30: 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 35  .\/._SB_PCI0GPP5
    9F40: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50  ...\/._SB_PCI0GP
    9F50: 50 36 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 30  P6...\/._SB_PCI0
    9F60: 47 50 50 37 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPP7...\/._SB_PC
    9F70: 49 30 47 50 50 38 0A 02 86 5C 2F 03 5F 53 42 5F  I0GPP8...\/._SB_
    9F80: 50 43 49 30 47 50 50 39 0A 02 86 5C 2F 03 5F 53  PCI0GPP9...\/._S
    9F90: 42 5F 50 43 49 30 47 50 50 41 0A 02 86 5C 2F 03  B_PCI0GPPA...\/.
    9FA0: 5F 53 42 5F 50 43 49 30 47 50 50 42 0A 02 86 5C  _SB_PCI0GPPB...\
    9FB0: 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 43 0A 02  /._SB_PCI0GPPC..
    9FC0: 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 44  .\/._SB_PCI0GPPD
    9FD0: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50  ...\/._SB_PCI0GP
    9FE0: 50 45 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 30  PE...\/._SB_PCI0
    9FF0: 47 50 50 46 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPPF...\/._SB_PC
    A000: 49 30 47 50 50 47 0A 02 86 5C 2F 03 5F 53 42 5F  I0GPPG...\/._SB_
    A010: 50 43 49 30 47 50 50 48 0A 02 86 5C 2F 03 5F 53  PCI0GPPH...\/._S
    A020: 42 5F 50 43 49 30 47 50 31 35 0A 02 86 5C 2F 03  B_PCI0GP15...\/.
    A030: 5F 53 42 5F 50 43 49 30 47 50 32 35 0A 02 86 5C  _SB_PCI0GP25...\
    A040: 2F 03 5F 53 42 5F 50 43 49 30 47 50 33 35 0A 02  /._SB_PCI0GP35..
    A050: 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 34 35  .\/._SB_PCI0GP45
    A060: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  ...\/._SB_PCI1GP
    A070: 50 30 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31  P0...\/._SB_PCI1
    A080: 47 50 50 31 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPP1...\/._SB_PC
    A090: 49 31 47 50 50 32 0A 02 86 5C 2F 03 5F 53 42 5F  I1GPP2...\/._SB_
    A0A0: 50 43 49 31 47 50 50 33 0A 02 86 5C 2F 03 5F 53  PCI1GPP3...\/._S
    A0B0: 42 5F 50 43 49 31 47 50 50 34 0A 02 86 5C 2F 03  B_PCI1GPP4...\/.
    A0C0: 5F 53 42 5F 50 43 49 31 47 50 50 35 0A 02 86 5C  _SB_PCI1GPP5...\
    A0D0: 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 36 0A 02  /._SB_PCI1GPP6..
    A0E0: 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 37  .\/._SB_PCI1GPP7
    A0F0: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  ...\/._SB_PCI1GP
    A100: 50 38 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31  P8...\/._SB_PCI1
    A110: 47 50 50 39 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPP9...\/._SB_PC
    A120: 49 31 47 50 50 41 0A 02 86 5C 2F 03 5F 53 42 5F  I1GPPA...\/._SB_
    A130: 50 43 49 31 47 50 50 42 0A 02 86 5C 2F 03 5F 53  PCI1GPPB...\/._S
    A140: 42 5F 50 43 49 31 47 50 50 43 0A 02 86 5C 2F 03  B_PCI1GPPC...\/.
    A150: 5F 53 42 5F 50 43 49 31 47 50 50 44 0A 02 86 5C  _SB_PCI1GPPD...\
    A160: 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 45 0A 02  /._SB_PCI1GPPE..
    A170: 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 46  .\/._SB_PCI1GPPF
    A180: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  ...\/._SB_PCI1GP
    A190: 50 47 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31  PG...\/._SB_PCI1
    A1A0: 47 50 50 48 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPPH...\/._SB_PC
    A1B0: 49 31 47 50 31 35 0A 02 86 5C 2F 03 5F 53 42 5F  I1GP15...\/._SB_
    A1C0: 50 43 49 31 47 50 32 35 0A 02 86 5C 2F 03 5F 53  PCI1GP25...\/._S
    A1D0: 42 5F 50 43 49 31 47 50 33 35 0A 02 86 5C 2F 03  B_PCI1GP35...\/.
    A1E0: 5F 53 42 5F 50 43 49 31 47 50 34 35 0A 02 86 5C  _SB_PCI1GP45...\
    A1F0: 2E 5F 53 42 5F 50 57 52 42 0A 02 14 4E 06 5F 4C  ._SB_PWRB...N._L
    A200: 30 42 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47  0B..\/._SB_PCI3G
    A210: 50 31 37 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49  P17...\/._SB_PCI
    A220: 33 47 50 32 37 0A 02 86 5C 2F 03 5F 53 42 5F 50  3GP27...\/._SB_P
    A230: 43 49 32 47 50 31 37 0A 02 86 5C 2F 03 5F 53 42  CI2GP17...\/._SB
    A240: 5F 50 43 49 30 47 50 31 37 0A 02 86 5C 2F 03 5F  _PCI0GP17...\/._
    A250: 53 42 5F 50 43 49 31 47 50 31 37 0A 02 86 5C 2E  SB_PCI1GP17...\.
    A260: 5F 53 42 5F 50 57 52 42 0A 02 10 24 5F 53 42 5F  _SB_PWRB...$_SB_
    A270: 5B 82 1D 50 57 52 42 08 5F 48 49 44 0C 41 D0 0C  [..PWRB._HID.A..
    A280: 0C 08 5F 55 49 44 0A AA 08 5F 53 54 41 0A 0B 08  .._UID..._STA...
    A290: 5F 53 30 5F 12 06 04 00 00 00 00 08 5F 53 33 5F  _S0_........_S3_
    A2A0: 12 07 04 0A 03 00 00 00 08 5F 53 34 5F 12 07 04  ........._S4_...
    A2B0: 0A 04 00 00 00 08 5F 53 35 5F 12 07 04 0A 05 00  ......_S5_......
    A2C0: 00 00 14 42 05 5F 50 54 53 01 A0 4A 04 68 4C 45  ...B._PTS..J.hLE
    A2D0: 44 53 68 5C 2F 03 5F 53 42 5F 54 50 4D 5F 54 50  DSh\/._SB_TPM_TP
    A2E0: 54 53 68 4D 50 54 53 68 53 50 54 53 68 5C 2F 03  TShMPTShSPTSh\/.
    A2F0: 5F 53 42 5F 50 43 49 30 4E 50 54 53 68 5C 2F 05  _SB_PCI0NPTSh\/.
    A300: 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31  _SB_PCI0SBRGSIO1
    A310: 53 49 4F 53 68 14 43 05 5F 57 41 4B 01 5C 2F 05  SIOSh.C._WAK.\/.
    A320: 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31  _SB_PCI0SBRGSIO1
    A330: 53 49 4F 57 68 79 68 0A 04 44 42 47 38 5C 2F 03  SIOWhyh..DBG8\/.
    A340: 5F 53 42 5F 50 43 49 30 4E 57 41 4B 68 79 68 0A  _SB_PCI0NWAKhyh.
    A350: 04 44 42 47 38 53 57 41 4B 68 4D 57 41 4B 68 4C  .DBG8SWAKhMWAKhL
    A360: 45 44 57 68 A4 57 41 4B 50 10 22 2E 5F 53 42 5F  EDWh.WAKP."._SB_
    A370: 50 43 49 33 14 0B 42 4E 30 33 00 A4 42 52 42 5F  PCI3..BN03..BRB_
    A380: 14 0B 5F 50 58 4D 00 A4 50 52 58 4D 10 22 2E 5F  .._PXM..PRXM."._
    A390: 53 42 5F 50 43 49 32 14 0B 42 4E 30 32 00 A4 42  SB_PCI2..BN02..B
    A3A0: 52 42 5F 14 0B 5F 50 58 4D 00 A4 50 52 58 4D 10  RB_.._PXM..PRXM.
    A3B0: 22 2E 5F 53 42 5F 50 43 49 31 14 0B 42 4E 30 31  "._SB_PCI1..BN01
    A3C0: 00 A4 42 52 42 5F 14 0B 5F 50 58 4D 00 A4 50 52  ..BRB_.._PXM..PR
    A3D0: 58 4D 10 22 2E 5F 53 42 5F 50 43 49 30 14 0B 42  XM."._SB_PCI0..B
    A3E0: 4E 30 30 00 A4 42 52 42 5F 14 0B 5F 50 58 4D 00  N00..BRB_.._PXM.
    A3F0: A4 50 52 58 4D 10 49 63 5F 53 42 5F 5B 80 50 49  .PRXM.Ic_SB_[.PI
    A400: 52 51 01 0B 00 0C 0A 02 5B 81 10 50 49 52 51 01  RQ......[..PIRQ.
    A410: 50 49 44 58 08 50 44 41 54 08 5B 86 4E 0C 50 49  PIDX.PDAT.[.N.PI
    A420: 44 58 50 44 41 54 01 50 49 52 41 08 50 49 52 42  DXPDAT.PIRA.PIRB
    A430: 08 50 49 52 43 08 50 49 52 44 08 50 49 52 45 08  .PIRC.PIRD.PIRE.
    A440: 50 49 52 46 08 50 49 52 47 08 50 49 52 48 08 00  PIRF.PIRG.PIRH..
    A450: 20 53 49 52 41 08 53 49 52 42 08 53 49 52 43 08   SIRA.SIRB.SIRC.
    A460: 53 49 52 44 08 50 49 52 53 08 00 10 48 44 41 44  SIRD.PIRS...HDAD
    A470: 08 00 18 53 44 43 4C 08 00 10 53 44 49 4F 08 00  ...SDCL...SDIO..
    A480: 48 0A 55 53 42 31 08 00 18 55 53 42 33 08 00 40  H.USB1...USB3..@
    A490: 06 53 41 54 41 08 00 40 10 47 49 4F 43 08 00 48  .SATA..@.GIOC..H
    A4A0: 06 49 32 43 30 08 49 32 43 31 08 49 32 43 32 08  .I2C0.I2C1.I2C2.
    A4B0: 49 32 43 33 08 55 52 54 30 08 55 52 54 31 08 00  I2C3.URT0.URT1..
    A4C0: 40 05 41 49 52 41 08 41 49 52 42 08 41 49 52 43  @.AIRA.AIRB.AIRC
    A4D0: 08 41 49 52 44 08 41 49 52 45 08 41 49 52 46 08  .AIRD.AIRE.AIRF.
    A4E0: 41 49 52 47 08 41 49 52 48 08 5B 80 4B 42 44 44  AIRG.AIRH.[.KBDD
    A4F0: 01 0A 64 01 5B 81 0B 4B 42 44 44 01 49 4F 36 34  ..d.[..KBDD.IO64
    A500: 08 14 4F 07 44 53 50 49 00 49 4E 54 41 0A 1F 49  ..O.DSPI.INTA..I
    A510: 4E 54 42 0A 1F 49 4E 54 43 0A 1F 49 4E 54 44 0A  NTB..INTC..INTD.
    A520: 1F 70 49 4F 36 34 61 70 0A 1F 50 49 52 45 70 0A  .pIO64ap..PIREp.
    A530: 1F 50 49 52 46 70 0A 1F 50 49 52 47 70 0A 1F 50  .PIRFp..PIRGp..P
    A540: 49 52 48 70 49 4F 36 34 61 70 0A 10 41 49 52 41  IRHpIO64ap..AIRA
    A550: 70 0A 11 41 49 52 42 70 0A 12 41 49 52 43 70 0A  p..AIRBp..AIRCp.
    A560: 13 41 49 52 44 70 0A 14 41 49 52 45 70 0A 15 41  .AIRDp..AIREp..A
    A570: 49 52 46 70 0A 16 41 49 52 47 70 0A 17 41 49 52  IRFp..AIRGp..AIR
    A580: 48 14 12 49 4E 54 41 01 70 68 50 49 52 41 70 68  H..INTA.phPIRAph
    A590: 48 44 41 44 14 0C 49 4E 54 42 01 70 68 50 49 52  HDAD..INTB.phPIR
    A5A0: 42 14 18 49 4E 54 43 01 70 68 50 49 52 43 70 68  B..INTC.phPIRCph
    A5B0: 55 53 42 31 70 68 55 53 42 33 14 12 49 4E 54 44  USB1phUSB3..INTD
    A5C0: 01 70 68 50 49 52 44 70 68 53 41 54 41 08 42 55  .phPIRDphSATA.BU
    A5D0: 46 41 11 09 0A 06 23 00 80 18 79 00 08 49 50 52  FA....#...y..IPR
    A5E0: 41 11 09 0A 06 23 20 0C 18 79 00 08 49 50 52 42  A....# ..y..IPRB
    A5F0: 11 09 0A 06 23 20 0C 18 79 00 08 49 50 52 43 11  ....# ..y..IPRC.
    A600: 09 0A 06 23 20 0C 18 79 00 08 49 50 52 44 11 09  ...# ..y..IPRD..
    A610: 0A 06 23 20 0C 18 79 00 5B 82 4F 07 4C 4E 4B 41  ..# ..y.[.O.LNKA
    A620: 08 5F 48 49 44 0C 41 D0 0C 0F 08 5F 55 49 44 01  ._HID.A...._UID.
    A630: 14 14 5F 53 54 41 00 A0 08 50 49 52 41 A4 0A 0B  .._STA...PIRA...
    A640: A1 04 A4 0A 09 14 0B 5F 50 52 53 00 A4 50 52 53  ......._PRS..PRS
    A650: 41 14 0C 5F 44 49 53 00 49 4E 54 41 0A 1F 14 1F  A.._DIS.INTA....
    A660: 5F 43 52 53 00 8B 42 55 46 41 01 49 52 51 58 79  _CRS..BUFA.IRQXy
    A670: 01 50 49 52 41 49 52 51 58 A4 42 55 46 41 14 1A  .PIRAIRQX.BUFA..
    A680: 5F 53 52 53 01 8B 68 01 49 52 41 5F 82 49 52 41  _SRS..h.IRA_.IRA
    A690: 5F 60 76 60 49 4E 54 41 60 5B 82 40 08 4C 4E 4B  _`v`INTA`[.@.LNK
    A6A0: 42 08 5F 48 49 44 0C 41 D0 0C 0F 08 5F 55 49 44  B._HID.A...._UID
    A6B0: 0A 02 14 14 5F 53 54 41 00 A0 08 50 49 52 42 A4  ...._STA...PIRB.
    A6C0: 0A 0B A1 04 A4 0A 09 14 0B 5F 50 52 53 00 A4 50  ........._PRS..P
    A6D0: 52 53 42 14 0C 5F 44 49 53 00 49 4E 54 42 0A 1F  RSB.._DIS.INTB..
    A6E0: 14 1F 5F 43 52 53 00 8B 42 55 46 41 01 49 52 51  .._CRS..BUFA.IRQ
    A6F0: 58 79 01 50 49 52 42 49 52 51 58 A4 42 55 46 41  Xy.PIRBIRQX.BUFA
    A700: 14 1A 5F 53 52 53 01 8B 68 01 49 52 41 5F 82 49  .._SRS..h.IRA_.I
    A710: 52 41 5F 60 76 60 49 4E 54 42 60 5B 82 40 08 4C  RA_`v`INTB`[.@.L
    A720: 4E 4B 43 08 5F 48 49 44 0C 41 D0 0C 0F 08 5F 55  NKC._HID.A...._U
    A730: 49 44 0A 03 14 14 5F 53 54 41 00 A0 08 50 49 52  ID...._STA...PIR
    A740: 43 A4 0A 0B A1 04 A4 0A 09 14 0B 5F 50 52 53 00  C.........._PRS.
    A750: A4 50 52 53 43 14 0C 5F 44 49 53 00 49 4E 54 43  .PRSC.._DIS.INTC
    A760: 0A 1F 14 1F 5F 43 52 53 00 8B 42 55 46 41 01 49  ...._CRS..BUFA.I
    A770: 52 51 58 79 01 50 49 52 43 49 52 51 58 A4 42 55  RQXy.PIRCIRQX.BU
    A780: 46 41 14 1A 5F 53 52 53 01 8B 68 01 49 52 41 5F  FA.._SRS..h.IRA_
    A790: 82 49 52 41 5F 60 76 60 49 4E 54 43 60 5B 82 40  .IRA_`v`INTC`[.@
    A7A0: 08 4C 4E 4B 44 08 5F 48 49 44 0C 41 D0 0C 0F 08  .LNKD._HID.A....
    A7B0: 5F 55 49 44 0A 04 14 14 5F 53 54 41 00 A0 08 50  _UID...._STA...P
    A7C0: 49 52 44 A4 0A 0B A1 04 A4 0A 09 14 0B 5F 50 52  IRD.........._PR
    A7D0: 53 00 A4 50 52 53 44 14 0C 5F 44 49 53 00 49 4E  S..PRSD.._DIS.IN
    A7E0: 54 44 0A 1F 14 1F 5F 43 52 53 00 8B 42 55 46 41  TD...._CRS..BUFA
    A7F0: 01 49 52 51 58 79 01 50 49 52 44 49 52 51 58 A4  .IRQXy.PIRDIRQX.
    A800: 42 55 46 41 14 1A 5F 53 52 53 01 8B 68 01 49 52  BUFA.._SRS..h.IR
    A810: 41 5F 82 49 52 41 5F 60 76 60 49 4E 54 44 60 5B  A_.IRA_`v`INTD`[
    A820: 82 42 08 4C 4E 4B 45 08 5F 48 49 44 0C 41 D0 0C  .B.LNKE._HID.A..
    A830: 0F 08 5F 55 49 44 0A 05 14 14 5F 53 54 41 00 A0  .._UID...._STA..
    A840: 08 50 49 52 45 A4 0A 0B A1 04 A4 0A 09 14 0B 5F  .PIRE.........._
    A850: 50 52 53 00 A4 50 52 53 45 14 0D 5F 44 49 53 00  PRS..PRSE.._DIS.
    A860: 70 0A 1F 50 49 52 45 14 1F 5F 43 52 53 00 8B 42  p..PIRE.._CRS..B
    A870: 55 46 41 01 49 52 51 58 79 01 50 49 52 45 49 52  UFA.IRQXy.PIREIR
    A880: 51 58 A4 42 55 46 41 14 1B 5F 53 52 53 01 8B 68  QX.BUFA.._SRS..h
    A890: 01 49 52 41 5F 82 50 49 52 45 60 76 60 70 60 50  .IRA_.PIRE`v`p`P
    A8A0: 49 52 45 5B 82 42 08 4C 4E 4B 46 08 5F 48 49 44  IRE[.B.LNKF._HID
    A8B0: 0C 41 D0 0C 0F 08 5F 55 49 44 0A 06 14 14 5F 53  .A...._UID...._S
    A8C0: 54 41 00 A0 08 50 49 52 46 A4 0A 0B A1 04 A4 0A  TA...PIRF.......
    A8D0: 09 14 0B 5F 50 52 53 00 A4 50 52 53 46 14 0D 5F  ..._PRS..PRSF.._
    A8E0: 44 49 53 00 70 0A 1F 50 49 52 46 14 1F 5F 43 52  DIS.p..PIRF.._CR
    A8F0: 53 00 8B 42 55 46 41 01 49 52 51 58 79 01 50 49  S..BUFA.IRQXy.PI
    A900: 52 46 49 52 51 58 A4 42 55 46 41 14 1B 5F 53 52  RFIRQX.BUFA.._SR
    A910: 53 01 8B 68 01 49 52 41 5F 82 49 52 41 5F 60 76  S..h.IRA_.IRA_`v
    A920: 60 70 60 50 49 52 46 5B 82 42 08 4C 4E 4B 47 08  `p`PIRF[.B.LNKG.
    A930: 5F 48 49 44 0C 41 D0 0C 0F 08 5F 55 49 44 0A 07  _HID.A...._UID..
    A940: 14 14 5F 53 54 41 00 A0 08 50 49 52 47 A4 0A 0B  .._STA...PIRG...
    A950: A1 04 A4 0A 09 14 0B 5F 50 52 53 00 A4 50 52 53  ......._PRS..PRS
    A960: 47 14 0D 5F 44 49 53 00 70 0A 1F 50 49 52 47 14  G.._DIS.p..PIRG.
    A970: 1F 5F 43 52 53 00 8B 42 55 46 41 01 49 52 51 58  ._CRS..BUFA.IRQX
    A980: 79 01 50 49 52 47 49 52 51 58 A4 42 55 46 41 14  y.PIRGIRQX.BUFA.
    A990: 1B 5F 53 52 53 01 8B 68 01 49 52 41 5F 82 49 52  ._SRS..h.IRA_.IR
    A9A0: 41 5F 60 76 60 70 60 50 49 52 47 5B 82 42 08 4C  A_`v`p`PIRG[.B.L
    A9B0: 4E 4B 48 08 5F 48 49 44 0C 41 D0 0C 0F 08 5F 55  NKH._HID.A...._U
    A9C0: 49 44 0A 08 14 14 5F 53 54 41 00 A0 08 50 49 52  ID...._STA...PIR
    A9D0: 48 A4 0A 0B A1 04 A4 0A 09 14 0B 5F 50 52 53 00  H.........._PRS.
    A9E0: A4 50 52 53 48 14 0D 5F 44 49 53 00 70 0A 1F 50  .PRSH.._DIS.p..P
    A9F0: 49 52 48 14 1F 5F 43 52 53 00 8B 42 55 46 41 01  IRH.._CRS..BUFA.
    AA00: 49 52 51 58 79 01 50 49 52 48 49 52 51 58 A4 42  IRQXy.PIRHIRQX.B
    AA10: 55 46 41 14 1B 5F 53 52 53 01 8B 68 01 49 52 41  UFA.._SRS..h.IRA
    AA20: 5F 82 49 52 41 5F 60 76 60 70 60 50 49 52 48 5B  _.IRA_`v`p`PIRH[
    AA30: 82 4F 05 48 50 45 54 08 5F 48 49 44 0C 41 D0 01  .O.HPET._HID.A..
    AA40: 03 14 25 5F 53 54 41 00 A0 1C 93 48 50 45 4E 01  ..%_STA....HPEN.
    AA50: A0 0C 92 95 4F 53 56 52 0A 0C A4 0A 0F 70 00 48  ....OSVR.....p.H
    AA60: 50 45 4E A4 01 A4 01 14 28 5F 43 52 53 00 08 42  PEN.....(_CRS..B
    AA70: 55 46 30 11 17 0A 14 22 01 00 22 00 01 86 09 00  UF0...."..".....
    AA80: 00 00 00 D0 FE 00 04 00 00 79 00 A4 42 55 46 30  .........y..BUF0
    AA90: 10 4F 4E 2F 03 5F 53 42 5F 50 43 49 31 47 50 50  .ON/._SB_PCI1GPP
    AAA0: 42 5B 82 4D 4D 55 50 30 30 08 5F 41 44 52 00 5B  B[.MMUP00._ADR.[
    AAB0: 82 30 44 50 30 30 08 5F 41 44 52 00 08 5F 50 52  .0DP00._ADR.._PR
    AAC0: 57 12 06 02 0A 08 0A 04 5B 82 17 4C 4E 30 30 08  W.......[..LN00.
    AAD0: 5F 41 44 52 00 08 5F 50 52 57 12 06 02 0A 08 0A  _ADR.._PRW......
    AAE0: 04 5B 82 0F 44 50 32 30 08 5F 41 44 52 0C 00 00  .[..DP20._ADR...
    AAF0: 04 00 5B 82 0F 44 50 32 38 08 5F 41 44 52 0C 00  ..[..DP28._ADR..
    AB00: 00 05 00 5B 82 0F 44 50 33 30 08 5F 41 44 52 0C  ...[..DP30._ADR.
    AB10: 00 00 06 00 5B 82 0F 44 50 33 38 08 5F 41 44 52  ....[..DP38._ADR
    AB20: 0C 00 00 07 00 5B 82 34 44 50 34 30 08 5F 41 44  .....[.4DP40._AD
    AB30: 52 0C 00 00 08 00 08 5F 50 52 57 12 06 02 0A 08  R......_PRW.....
    AB40: 0A 04 5B 82 17 57 4E 30 30 08 5F 41 44 52 00 08  ..[..WN00._ADR..
    AB50: 5F 50 52 57 12 06 02 0A 08 0A 04 5B 82 34 44 50  _PRW.......[.4DP
    AB60: 38 38 08 5F 41 44 52 0C 00 00 0B 00 08 5F 50 52  88._ADR......_PR
    AB70: 57 12 06 02 0A 08 0A 04 5B 82 17 4C 4E 30 30 08  W.......[..LN00.
    AB80: 5F 41 44 52 00 08 5F 50 52 57 12 06 02 0A 08 0A  _ADR.._PRW......
    AB90: 04 5B 82 4F 3C 44 50 36 30 08 5F 41 44 52 0C 00  .[.O<DP60._ADR..
    ABA0: 00 0C 00 08 5F 50 52 57 12 06 02 0A 08 0A 04 5B  ...._PRW.......[
    ABB0: 82 41 3B 58 48 30 30 08 5F 41 44 52 00 08 5F 50  .A;XH00._ADR.._P
    ABC0: 52 57 12 06 02 0A 08 0A 04 5B 82 47 39 52 48 55  RW.......[.G9RHU
    ABD0: 42 08 5F 41 44 52 00 5B 82 30 53 53 30 31 08 5F  B._ADR.[.0SS01._
    ABE0: 41 44 52 01 14 0E 5F 55 50 43 00 A4 4D 36 30 30  ADR..._UPC..M600
    ABF0: 01 0A 09 14 15 5F 50 4C 44 00 A4 4D 36 30 31 01  ....._PLD..M601.
    AC00: 01 0B 01 01 0A 03 0A 15 00 5B 82 31 48 53 30 31  .........[.1HS01
    AC10: 08 5F 41 44 52 0A 07 14 0E 5F 55 50 43 00 A4 4D  ._ADR...._UPC..M
    AC20: 36 30 30 01 0A 09 14 15 5F 50 4C 44 00 A4 4D 36  600....._PLD..M6
    AC30: 30 31 01 01 0B 01 01 0A 03 0A 15 00 5B 82 31 53  01..........[.1S
    AC40: 53 30 32 08 5F 41 44 52 0A 02 14 0E 5F 55 50 43  S02._ADR...._UPC
    AC50: 00 A4 4D 36 30 30 01 0A 09 14 15 5F 50 4C 44 00  ..M600....._PLD.
    AC60: A4 4D 36 30 31 01 01 0B 02 01 0A 03 0A 15 00 5B  .M601..........[
    AC70: 82 31 48 53 30 32 08 5F 41 44 52 0A 08 14 0E 5F  .1HS02._ADR...._
    AC80: 55 50 43 00 A4 4D 36 30 30 01 0A 09 14 15 5F 50  UPC..M600....._P
    AC90: 4C 44 00 A4 4D 36 30 31 01 01 0B 02 01 0A 03 0A  LD..M601........
    ACA0: 15 00 5B 82 31 53 53 30 33 08 5F 41 44 52 0A 03  ..[.1SS03._ADR..
    ACB0: 14 0E 5F 55 50 43 00 A4 4D 36 30 30 01 0A 03 14  .._UPC..M600....
    ACC0: 15 5F 50 4C 44 00 A4 4D 36 30 31 00 01 0B 03 01  ._PLD..M601.....
    ACD0: 0A 03 0A 15 00 5B 82 30 48 53 30 33 08 5F 41 44  .....[.0HS03._AD
    ACE0: 52 0A 09 14 0D 5F 55 50 43 00 A4 4D 36 30 30 01  R...._UPC..M600.
    ACF0: 00 14 15 5F 50 4C 44 00 A4 4D 36 30 31 00 01 0B  ..._PLD..M601...
    AD00: 03 01 0A 03 0A 15 00 5B 82 31 53 53 30 34 08 5F  .......[.1SS04._
    AD10: 41 44 52 0A 04 14 0E 5F 55 50 43 00 A4 4D 36 30  ADR...._UPC..M60
    AD20: 30 01 0A 03 14 15 5F 50 4C 44 00 A4 4D 36 30 31  0....._PLD..M601
    AD30: 00 01 0B 04 01 0A 03 0A 15 00 5B 82 30 48 53 30  ..........[.0HS0
    AD40: 34 08 5F 41 44 52 0A 0A 14 0D 5F 55 50 43 00 A4  4._ADR...._UPC..
    AD50: 4D 36 30 30 01 00 14 15 5F 50 4C 44 00 A4 4D 36  M600...._PLD..M6
    AD60: 30 31 00 01 0B 03 01 0A 03 0A 15 00 5B 82 31 53  01..........[.1S
    AD70: 53 30 35 08 5F 41 44 52 0A 05 14 0E 5F 55 50 43  S05._ADR...._UPC
    AD80: 00 A4 4D 36 30 30 01 0A 03 14 15 5F 50 4C 44 00  ..M600....._PLD.
    AD90: A4 4D 36 30 31 00 01 0B 04 01 0A 03 0A 15 00 5B  .M601..........[
    ADA0: 82 30 48 53 30 35 08 5F 41 44 52 0A 0B 14 0D 5F  .0HS05._ADR...._
    ADB0: 55 50 43 00 A4 4D 36 30 30 01 00 14 15 5F 50 4C  UPC..M600...._PL
    ADC0: 44 00 A4 4D 36 30 31 00 01 0B 04 01 0A 03 0A 15  D..M601.........
    ADD0: 00 5B 82 31 53 53 30 36 08 5F 41 44 52 0A 06 14  .[.1SS06._ADR...
    ADE0: 0E 5F 55 50 43 00 A4 4D 36 30 30 01 0A 03 14 15  ._UPC..M600.....
    ADF0: 5F 50 4C 44 00 A4 4D 36 30 31 00 01 0B 05 01 0A  _PLD..M601......
    AE00: 03 0A 15 00 5B 82 30 48 53 30 36 08 5F 41 44 52  ....[.0HS06._ADR
    AE10: 0A 0C 14 0D 5F 55 50 43 00 A4 4D 36 30 30 01 00  ...._UPC..M600..
    AE20: 14 15 5F 50 4C 44 00 A4 4D 36 30 31 00 01 0B 05  .._PLD..M601....
    AE30: 01 0A 03 0A 15 00 5B 82 30 48 53 30 37 08 5F 41  ......[.0HS07._A
    AE40: 44 52 0A 0D 14 0D 5F 55 50 43 00 A4 4D 36 30 30  DR...._UPC..M600
    AE50: 01 00 14 15 5F 50 4C 44 00 A4 4D 36 30 31 00 01  ...._PLD..M601..
    AE60: 0B 0A 01 0A 03 0A 15 00 5B 82 30 48 53 30 38 08  ........[.0HS08.
    AE70: 5F 41 44 52 0A 0E 14 0D 5F 55 50 43 00 A4 4D 36  _ADR...._UPC..M6
    AE80: 30 30 01 00 14 15 5F 50 4C 44 00 A4 4D 36 30 31  00...._PLD..M601
    AE90: 00 01 0B 0B 01 0A 03 0A 15 00 5B 82 30 48 53 30  ..........[.0HS0
    AEA0: 39 08 5F 41 44 52 0A 0F 14 0D 5F 55 50 43 00 A4  9._ADR...._UPC..
    AEB0: 4D 36 30 30 00 00 14 15 5F 50 4C 44 00 A4 4D 36  M600...._PLD..M6
    AEC0: 30 31 00 00 0B 0C 01 0A 03 0A 15 00 5B 82 30 48  01..........[.0H
    AED0: 53 31 30 08 5F 41 44 52 0A 10 14 0D 5F 55 50 43  S10._ADR...._UPC
    AEE0: 00 A4 4D 36 30 30 00 00 14 15 5F 50 4C 44 00 A4  ..M600...._PLD..
    AEF0: 4D 36 30 31 00 00 0B 0D 01 0A 03 0A 15 00 5B 82  M601..........[.
    AF00: 30 48 53 31 31 08 5F 41 44 52 0A 11 14 0D 5F 55  0HS11._ADR...._U
    AF10: 50 43 00 A4 4D 36 30 30 01 00 14 15 5F 50 4C 44  PC..M600...._PLD
    AF20: 00 A4 4D 36 30 31 00 01 0B 0E 01 0A 03 0A 15 00  ..M601..........
    AF30: 5B 82 30 48 53 31 32 08 5F 41 44 52 0A 12 14 0D  [.0HS12._ADR....
    AF40: 5F 55 50 43 00 A4 4D 36 30 30 01 00 14 15 5F 50  _UPC..M600...._P
    AF50: 4C 44 00 A4 4D 36 30 31 00 01 0B 0F 01 0A 03 0A  LD..M601........
    AF60: 15 00 5B 82 1C 44 50 36 38 08 5F 41 44 52 0C 00  ..[..DP68._ADR..
    AF70: 00 0D 00 5B 82 0B 53 41 30 30 08 5F 41 44 52 00  ...[..SA00._ADR.
    AF80: 10 4A 09 5F 47 50 45 14 43 09 5F 45 31 30 00 A0  .J._GPE.C._E10..
    AF90: 22 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 30 50 50  "[.\/._SB_PCI0PP
    AFA0: 4D 45 00 5C 2F 03 5F 53 42 5F 50 43 49 30 50 50  ME.\/._SB_PCI0PP
    AFB0: 4D 45 A0 22 5B 12 5C 2F 03 5F 53 42 5F 50 43 49  ME."[.\/._SB_PCI
    AFC0: 31 50 50 4D 45 00 5C 2F 03 5F 53 42 5F 50 43 49  1PPME.\/._SB_PCI
    AFD0: 31 50 50 4D 45 A0 22 5B 12 5C 2F 03 5F 53 42 5F  1PPME."[.\/._SB_
    AFE0: 50 43 49 32 50 50 4D 45 00 5C 2F 03 5F 53 42 5F  PCI2PPME.\/._SB_
    AFF0: 50 43 49 32 50 50 4D 45 A0 22 5B 12 5C 2F 03 5F  PCI2PPME."[.\/._
    B000: 53 42 5F 50 43 49 33 50 50 4D 45 00 5C 2F 03 5F  SB_PCI3PPME.\/._
    B010: 53 42 5F 50 43 49 33 50 50 4D 45 08 54 53 4F 53  SB_PCI3PPME.TSOS
    B020: 0A 75 A0 3F 5B 12 5C 5F 4F 53 49 00 A0 1A 5F 4F  .u.?[.\_OSI..._O
    B030: 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 30 39 00  SI.Windows 2009.
    B040: 70 0A 50 54 53 4F 53 A0 1A 5F 4F 53 49 0D 57 69  p.PTSOS.._OSI.Wi
    B050: 6E 64 6F 77 73 20 32 30 31 35 00 70 0A 70 54 53  ndows 2015.p.pTS
    B060: 4F 53 10 48 F7 5F 53 42 5F 5B 80 45 43 4D 43 01  OS.H._SB_[.ECMC.
    B070: 0A 72 0A 02 5B 81 10 45 43 4D 43 00 45 43 4D 49  .r..[..ECMC.ECMI
    B080: 08 45 43 4D 44 08 5B 86 12 45 43 4D 49 45 43 4D  .ECMD.[..ECMIECM
    B090: 44 01 00 40 04 46 52 54 42 20 5B 80 46 52 54 50  D..@.FRTB [.FRTP
    B0A0: 00 46 52 54 42 0B 00 01 5B 81 46 12 46 52 54 50  .FRTB...[.F.FRTP
    B0B0: 00 50 45 42 41 40 04 00 00 00 04 4C 50 43 45 01  .PEBA@.....LPCE.
    B0C0: 49 43 30 45 01 49 43 31 45 01 49 43 32 45 01 49  IC0E.IC1E.IC2E.I
    B0D0: 43 33 45 01 49 43 34 45 01 49 43 35 45 01 55 54  C3E.IC4E.IC5E.UT
    B0E0: 30 45 01 55 54 31 45 01 00 01 00 01 53 54 5F 45  0E.UT1E.....ST_E
    B0F0: 01 55 54 32 45 01 00 01 45 4D 4D 44 02 00 03 58  .UT2E...EMMD...X
    B100: 48 43 45 01 00 01 00 01 55 54 33 45 01 45 53 50  HCE.....UT3E.ESP
    B110: 49 01 45 4D 4D 45 01 00 03 50 43 45 46 01 00 04  I.EMME...PCEF...
    B120: 49 43 30 44 01 49 43 31 44 01 49 43 32 44 01 49  IC0D.IC1D.IC2D.I
    B130: 43 33 44 01 49 43 34 44 01 49 43 35 44 01 55 54  C3D.IC4D.IC5D.UT
    B140: 30 44 01 55 54 31 44 01 00 01 00 01 53 54 5F 44  0D.UT1D.....ST_D
    B150: 01 55 54 32 44 01 00 01 45 48 43 44 01 00 04 58  .UT2D...EHCD...X
    B160: 48 43 44 01 53 44 5F 44 01 00 01 55 54 33 44 01  HCD.SD_D...UT3D.
    B170: 00 01 45 4D 44 33 01 00 02 53 30 33 44 01 00 00  ..EMD3...S03D...
    B180: 46 57 30 30 10 46 57 30 31 20 46 57 30 32 10 46  FW00.FW01 FW02.F
    B190: 57 30 33 20 53 44 53 30 08 53 44 53 31 08 00 40  W03 SDS0.SDS1..@
    B1A0: 08 55 54 30 49 01 55 54 31 49 01 55 54 32 49 01  .UT0I.UT1I.UT2I.
    B1B0: 55 54 33 49 01 55 54 34 49 01 00 03 55 4C 30 49  UT3I.UT4I...UL0I
    B1C0: 01 55 4C 31 49 01 55 4C 32 49 01 55 4C 33 49 01  .UL1I.UL2I.UL3I.
    B1D0: 5B 80 46 43 46 47 00 50 45 42 41 0C 00 00 00 01  [.FCFG.PEBA.....
    B1E0: 5B 81 2B 46 43 46 47 03 00 C0 22 18 05 49 50 44  [.+FCFG..."..IPD
    B1F0: 45 20 00 00 49 4D 50 45 20 00 40 16 00 02 4C 44  E ..IMPE .@...LD
    B200: 51 30 01 00 45 29 00 07 41 55 53 53 01 5B 80 49  Q0..E)..AUSS.[.I
    B210: 4F 4D 58 00 0C 00 0D D8 FE 0B 00 01 5B 81 45 07  OMX.........[.E.
    B220: 49 4F 4D 58 00 00 48 0A 49 4D 31 35 08 00 00 49  IOMX..H.IM15...I
    B230: 4D 31 36 08 00 40 04 49 4D 31 46 08 00 00 49 4D  M16..@.IM1F...IM
    B240: 32 30 08 00 48 11 49 4D 34 34 08 00 08 49 4D 34  20..H.IM44...IM4
    B250: 36 08 00 18 49 4D 34 41 08 00 00 49 4D 34 42 08  6...IM4A...IM4B.
    B260: 00 48 05 49 4D 35 37 08 00 00 49 4D 35 38 08 00  .H.IM57...IM58..
    B270: 48 07 49 4D 36 38 08 00 00 49 4D 36 39 08 00 00  H.IM68...IM69...
    B280: 49 4D 36 41 08 00 00 49 4D 36 42 08 00 08 49 4D  IM6A...IM6B...IM
    B290: 36 44 08 5B 80 46 41 43 52 00 0C 00 1E D8 FE 0B  6D.[.FACR.......
    B2A0: 00 01 5B 81 2A 46 41 43 52 00 00 40 40 00 1C 52  ..[.*FACR..@@..R
    B2B0: 44 32 38 01 00 01 52 51 54 59 01 00 01 00 1C 53  D28...RQTY.....S
    B2C0: 44 32 38 01 00 01 00 42 0C 50 43 31 41 01 5B 80  D28....B.PC1A.[.
    B2D0: 45 4D 4D 58 00 0C 00 58 DD FE 0B 30 01 5B 81 21  EMMX...X...0.[.!
    B2E0: 45 4D 4D 58 00 00 40 68 00 11 46 43 31 38 01 46  EMMX..@h..FC18.F
    B2F0: 43 33 33 01 00 07 43 44 5F 54 01 57 50 5F 54 01  C33...CD_T.WP_T.
    B300: 5B 80 45 4D 4D 42 00 0C 00 58 DD FE 0B 30 01 5B  [.EMMB...X...0.[
    B310: 81 2C 45 4D 4D 42 00 00 40 52 45 30 41 34 20 00  .,EMMB..@RE0A4 .
    B320: 00 45 30 41 38 20 00 20 45 30 42 30 20 00 40 0E  .E0A8 . E0B0 .@.
    B330: 45 30 44 30 20 00 40 21 45 31 31 36 20 08 53 56  E0D0 .@!E116 .SV
    B340: 42 46 11 05 0B 00 01 00 8A 53 56 42 46 00 53 30  BF.......SVBF.S0
    B350: 41 34 8A 53 56 42 46 0A 04 53 30 41 38 8A 53 56  A4.SVBF..S0A8.SV
    B360: 42 46 0A 08 53 30 42 30 8A 53 56 42 46 0A 0C 53  BF..S0B0.SVBF..S
    B370: 30 44 30 8A 53 56 42 46 0A 10 53 31 31 36 14 2A  0D0.SVBF..S116.*
    B380: 53 45 43 52 08 70 45 31 31 36 53 31 31 36 70 00  SECR.pE116S116p.
    B390: 52 51 54 59 70 01 52 44 32 38 70 53 44 32 38 60  RQTYp.RD28pSD28`
    B3A0: A2 08 60 70 53 44 32 38 60 14 0F 52 45 43 52 08  ..`pSD28`..RECR.
    B3B0: 70 53 31 31 36 45 31 31 36 5B 80 4C 55 49 45 00  pS116E116[.LUIE.
    B3C0: 0C 20 00 DC FE 0A 04 5B 81 43 04 4C 55 49 45 00  . .....[.C.LUIE.
    B3D0: 49 45 52 30 01 49 45 52 31 01 49 45 52 32 01 49  IER0.IER1.IER2.I
    B3E0: 45 52 33 01 55 4F 4C 30 01 55 4F 4C 31 01 55 4F  ER3.UOL0.UOL1.UO
    B3F0: 4C 32 01 55 4F 4C 33 01 57 55 52 30 02 57 55 52  L2.UOL3.WUR0.WUR
    B400: 31 02 57 55 52 32 02 57 55 52 33 02 14 47 05 46  1.WUR2.WUR3..G.F
    B410: 52 49 49 09 A0 09 93 68 00 A4 49 49 43 30 A1 45  RII....h..IIC0.E
    B420: 04 A0 09 93 68 01 A4 49 49 43 31 A1 38 A0 0A 93  ....h..IIC1.8...
    B430: 68 0A 02 A4 49 49 43 32 A1 2B A0 0A 93 68 0A 03  h...IIC2.+...h..
    B440: A4 49 49 43 33 A1 1E A0 0A 93 68 0A 04 A4 49 49  .IIC3.....h...II
    B450: 43 34 A1 11 A0 0A 93 68 0A 05 A4 49 49 43 35 A1  C4.....h...IIC5.
    B460: 04 A4 0A 0A 14 3B 46 52 55 49 09 A0 09 93 68 00  .....;FRUI....h.
    B470: A4 49 55 41 30 A1 2A A0 09 93 68 01 A4 49 55 41  .IUA0.*...h..IUA
    B480: 31 A1 1E A0 0A 93 68 0A 02 A4 49 55 41 32 A1 11  1.....h...IUA2..
    B490: A0 0A 93 68 0A 03 A4 49 55 41 33 A1 04 A4 0A 03  ...h...IUA3.....
    B4A0: 14 44 05 46 55 49 4F 09 A0 11 93 49 45 52 30 01  .D.FUIO....IER0.
    B4B0: A0 09 93 57 55 52 30 68 A4 00 A0 11 93 49 45 52  ...WUR0h.....IER
    B4C0: 31 01 A0 09 93 57 55 52 31 68 A4 01 A0 12 93 49  1....WUR1h.....I
    B4D0: 45 52 32 01 A0 0A 93 57 55 52 32 68 A4 0A 02 A0  ER2....WUR2h....
    B4E0: 12 93 49 45 52 33 01 A0 0A 93 57 55 52 33 68 A4  ..IER3....WUR3h.
    B4F0: 0A 03 A4 0A 0F 14 4B 06 53 52 41 44 0A 79 68 01  ......K.SRAD.yh.
    B500: 60 72 60 0C 40 1E D8 FE 60 5B 80 41 44 43 52 00  `r`.@...`[.ADCR.
    B510: 60 0A 02 5B 81 2E 41 44 43 52 01 41 44 54 44 02  `..[..ADCR.ADTD.
    B520: 41 44 50 53 01 41 44 50 44 01 41 44 53 4F 01 41  ADPS.ADPD.ADSO.A
    B530: 44 53 43 01 41 44 53 52 01 41 44 49 53 01 41 44  DSC.ADSR.ADIS.AD
    B540: 44 53 03 70 01 41 44 49 53 70 00 41 44 53 52 5B  DS.p.ADISp.ADSR[
    B550: 21 69 70 01 41 44 53 52 70 00 41 44 49 53 5B 21  !ip.ADSRp.ADIS[!
    B560: 69 14 40 0A 44 53 41 44 0A 79 68 01 60 72 60 0C  i.@.DSAD.yh.`r`.
    B570: 40 1E D8 FE 60 5B 80 41 44 43 52 00 60 0A 02 5B  @...`[.ADCR.`..[
    B580: 81 2E 41 44 43 52 01 41 44 54 44 02 41 44 50 53  ..ADCR.ADTD.ADPS
    B590: 01 41 44 50 44 01 41 44 53 4F 01 41 44 53 43 01  .ADPD.ADSO.ADSC.
    B5A0: 41 44 53 52 01 41 44 49 53 01 41 44 44 53 03 A0  ADSR.ADIS.ADDS..
    B5B0: 42 05 92 93 68 41 44 54 44 A0 23 93 69 00 70 00  B...hADTD.#.i.p.
    B5C0: 41 44 54 44 70 01 41 44 50 44 70 41 44 44 53 60  ADTDp.ADPDpADDS`
    B5D0: A2 0C 92 93 60 0A 07 70 41 44 44 53 60 A0 24 93  ....`..pADDS`.$.
    B5E0: 69 0A 03 70 00 41 44 50 44 70 41 44 44 53 60 A2  i..p.ADPDpADDS`.
    B5F0: 0B 92 93 60 00 70 41 44 44 53 60 70 0A 03 41 44  ...`.pADDS`p..AD
    B600: 54 44 14 45 0E 48 53 41 44 0A 79 68 01 60 72 60  TD.E.HSAD.yh.`r`
    B610: 0C 40 1E D8 FE 60 5B 80 41 44 43 52 00 60 0A 02  .@...`[.ADCR.`..
    B620: 5B 81 2E 41 44 43 52 01 41 44 54 44 02 41 44 50  [..ADCR.ADTD.ADP
    B630: 53 01 41 44 50 44 01 41 44 53 4F 01 41 44 53 43  S.ADPD.ADSO.ADSC
    B640: 01 41 44 53 52 01 41 44 49 53 01 41 44 44 53 03  .ADSR.ADIS.ADDS.
    B650: A0 47 09 92 93 69 41 44 54 44 A0 46 04 93 69 00  .G...iADTD.F..i.
    B660: 70 01 50 43 31 41 70 00 41 44 54 44 70 01 41 44  p.PC1Ap.ADTDp.AD
    B670: 50 44 70 41 44 44 53 60 A2 0C 92 93 60 0A 07 70  PDpADDS`....`..p
    B680: 41 44 44 53 60 70 01 52 51 54 59 70 01 52 44 32  ADDS`p.RQTYp.RD2
    B690: 38 70 53 44 32 38 60 A2 09 92 60 70 53 44 32 38  8pSD28`...`pSD28
    B6A0: 60 A0 46 04 93 69 0A 03 70 00 52 51 54 59 70 01  `.F..i..p.RQTYp.
    B6B0: 52 44 32 38 70 53 44 32 38 60 A2 08 60 70 53 44  RD28pSD28`..`pSD
    B6C0: 32 38 60 70 00 41 44 50 44 70 41 44 44 53 60 A2  28`p.ADPDpADDS`.
    B6D0: 0B 92 93 60 00 70 41 44 44 53 60 70 0A 03 41 44  ...`.pADDS`p..AD
    B6E0: 54 44 70 00 50 43 31 41 5B 80 46 50 49 43 01 0B  TDp.PC1A[.FPIC..
    B6F0: 00 0C 0A 02 5B 81 10 46 50 49 43 00 46 50 49 49  ....[..FPIC.FPII
    B700: 08 46 50 49 44 08 5B 86 3F 46 50 49 49 46 50 49  .FPID.[.?FPIIFPI
    B710: 44 01 00 40 78 49 49 43 30 08 49 49 43 31 08 49  D..@xIIC0.IIC1.I
    B720: 49 43 32 08 49 49 43 33 08 49 55 41 30 08 49 55  IC2.IIC3.IUA0.IU
    B730: 41 31 08 49 49 43 34 08 49 49 43 35 08 49 55 41  A1.IIC4.IIC5.IUA
    B740: 32 08 49 55 41 33 08 5B 82 4E 06 47 50 49 4F 08  2.IUA3.[.N.GPIO.
    B750: 5F 48 49 44 0D 41 4D 44 49 30 30 33 30 00 08 5F  _HID.AMDI0030.._
    B760: 43 49 44 0D 41 4D 44 49 30 30 33 30 00 08 5F 55  CID.AMDI0030.._U
    B770: 49 44 00 14 2B 5F 43 52 53 00 08 52 42 55 46 11  ID..+_CRS..RBUF.
    B780: 1A 0A 17 89 06 00 0D 01 07 00 00 00 86 09 00 01  ................
    B790: 00 15 D8 FE 00 04 00 00 79 00 A4 52 42 55 46 14  ........y..RBUF.
    B7A0: 17 5F 53 54 41 00 A0 0C 92 95 54 53 4F 53 0A 70  ._STA.....TSOS.p
    B7B0: A4 0A 0F A1 03 A4 00 5B 82 1E 50 50 4B 47 08 5F  .......[..PPKG._
    B7C0: 48 49 44 0D 41 4D 44 49 30 30 35 32 00 14 09 5F  HID.AMDI0052..._
    B7D0: 53 54 41 00 A4 0A 0F 5B 82 42 0A 46 55 52 30 08  STA....[.B.FUR0.
    B7E0: 5F 48 49 44 0D 41 4D 44 49 30 30 32 30 00 08 5F  _HID.AMDI0020.._
    B7F0: 55 49 44 00 14 4C 04 5F 43 52 53 08 08 42 55 46  UID..L._CRS..BUF
    B800: 30 11 26 0A 23 89 06 00 03 01 03 00 00 00 86 09  0.&.#...........
    B810: 00 01 00 90 DC FE 00 10 00 00 86 09 00 01 00 70  ...............p
    B820: DC FE 00 10 00 00 79 00 8B 42 55 46 30 0A 05 49  ......y..BUF0..I
    B830: 52 51 57 70 49 55 41 30 49 52 51 57 A4 42 55 46  RQWpIUA0IRQW.BUF
    B840: 30 14 39 5F 53 54 41 00 70 00 60 70 46 55 49 4F  0.9_STA.p.`pFUIO
    B850: 00 61 A0 1B 92 95 54 53 4F 53 0A 70 A0 11 93 55  .a....TSOS.p...U
    B860: 54 30 45 01 A0 09 93 61 0A 0F 70 0A 0F 60 A0 0A  T0E....a..p..`..
    B870: 93 55 54 30 49 01 70 00 60 A4 60 5B 82 42 0A 46  .UT0I.p.`.`[.B.F
    B880: 55 52 31 08 5F 48 49 44 0D 41 4D 44 49 30 30 32  UR1._HID.AMDI002
    B890: 30 00 08 5F 55 49 44 01 14 4C 04 5F 43 52 53 08  0.._UID..L._CRS.
    B8A0: 08 42 55 46 30 11 26 0A 23 89 06 00 03 01 0E 00  .BUF0.&.#.......
    B8B0: 00 00 86 09 00 01 00 A0 DC FE 00 10 00 00 86 09  ................
    B8C0: 00 01 00 80 DC FE 00 10 00 00 79 00 8B 42 55 46  ..........y..BUF
    B8D0: 30 0A 05 49 52 51 57 70 49 55 41 31 49 52 51 57  0..IRQWpIUA1IRQW
    B8E0: A4 42 55 46 30 14 39 5F 53 54 41 00 70 00 60 70  .BUF0.9_STA.p.`p
    B8F0: 46 55 49 4F 01 61 A0 1B 92 95 54 53 4F 53 0A 70  FUIO.a....TSOS.p
    B900: A0 11 93 55 54 31 45 01 A0 09 93 61 0A 0F 70 0A  ...UT1E....a..p.
    B910: 0F 60 A0 0A 93 55 54 31 49 01 70 00 60 A4 60 5B  .`...UT1I.p.`.`[
    B920: 82 44 0A 46 55 52 32 08 5F 48 49 44 0D 41 4D 44  .D.FUR2._HID.AMD
    B930: 49 30 30 32 30 00 08 5F 55 49 44 0A 02 14 4C 04  I0020.._UID...L.
    B940: 5F 43 52 53 08 08 42 55 46 30 11 26 0A 23 89 06  _CRS..BUF0.&.#..
    B950: 00 03 01 05 00 00 00 86 09 00 01 00 E0 DC FE 00  ................
    B960: 10 00 00 86 09 00 01 00 C0 DC FE 00 10 00 00 79  ...............y
    B970: 00 8B 42 55 46 30 0A 05 49 52 51 57 70 49 55 41  ..BUF0..IRQWpIUA
    B980: 32 49 52 51 57 A4 42 55 46 30 14 3A 5F 53 54 41  2IRQW.BUF0.:_STA
    B990: 00 70 00 60 70 46 55 49 4F 0A 02 61 A0 1B 92 95  .p.`pFUIO..a....
    B9A0: 54 53 4F 53 0A 70 A0 11 93 55 54 32 45 01 A0 09  TSOS.p...UT2E...
    B9B0: 93 61 0A 0F 70 0A 0F 60 A0 0A 93 55 54 32 49 01  .a..p..`...UT2I.
    B9C0: 70 00 60 A4 60 5B 82 44 0A 46 55 52 33 08 5F 48  p.`.`[.D.FUR3._H
    B9D0: 49 44 0D 41 4D 44 49 30 30 32 30 00 08 5F 55 49  ID.AMDI0020.._UI
    B9E0: 44 0A 03 14 4C 04 5F 43 52 53 08 08 42 55 46 30  D...L._CRS..BUF0
    B9F0: 11 26 0A 23 89 06 00 03 01 0F 00 00 00 86 09 00  .&.#............
    BA00: 01 00 F0 DC FE 00 10 00 00 86 09 00 01 00 D0 DC  ................
    BA10: FE 00 10 00 00 79 00 8B 42 55 46 30 0A 05 49 52  .....y..BUF0..IR
    BA20: 51 57 70 49 55 41 33 49 52 51 57 A4 42 55 46 30  QWpIUA3IRQW.BUF0
    BA30: 14 3A 5F 53 54 41 00 70 00 60 70 46 55 49 4F 0A  .:_STA.p.`pFUIO.
    BA40: 03 61 A0 1B 92 95 54 53 4F 53 0A 70 A0 11 93 55  .a....TSOS.p...U
    BA50: 54 33 45 01 A0 09 93 61 0A 0F 70 0A 0F 60 A0 0A  T3E....a..p..`..
    BA60: 93 55 54 33 49 01 70 00 60 A4 60 5B 82 4C 08 49  .UT3I.p.`.`[.L.I
    BA70: 32 43 41 08 5F 48 49 44 0D 41 4D 44 49 30 30 31  2CA._HID.AMDI001
    BA80: 30 00 08 5F 55 49 44 00 14 3F 5F 43 52 53 08 08  0.._UID..?_CRS..
    BA90: 42 55 46 30 11 1A 0A 17 89 06 00 03 01 0A 00 00  BUF0............
    BAA0: 00 86 09 00 01 00 20 DC FE 00 10 00 00 79 00 8B  ...... ......y..
    BAB0: 42 55 46 30 0A 05 49 52 51 57 70 49 49 43 30 49  BUF0..IRQWpIIC0I
    BAC0: 52 51 57 A4 42 55 46 30 14 21 5F 53 54 41 00 A0  RQW.BUF0.!_STA..
    BAD0: 16 92 95 54 53 4F 53 0A 70 A0 0A 93 49 43 30 45  ...TSOS.p...IC0E
    BAE0: 01 A4 0A 0F A4 00 A1 03 A4 00 14 0E 52 53 45 54  ............RSET
    BAF0: 00 53 52 41 44 0A 05 0A C8 5B 82 4C 08 49 32 43  .SRAD....[.L.I2C
    BB00: 42 08 5F 48 49 44 0D 41 4D 44 49 30 30 31 30 00  B._HID.AMDI0010.
    BB10: 08 5F 55 49 44 01 14 3F 5F 43 52 53 08 08 42 55  ._UID..?_CRS..BU
    BB20: 46 30 11 1A 0A 17 89 06 00 03 01 0B 00 00 00 86  F0..............
    BB30: 09 00 01 00 30 DC FE 00 10 00 00 79 00 8B 42 55  ....0......y..BU
    BB40: 46 30 0A 05 49 52 51 57 70 49 49 43 31 49 52 51  F0..IRQWpIIC1IRQ
    BB50: 57 A4 42 55 46 30 14 21 5F 53 54 41 00 A0 16 92  W.BUF0.!_STA....
    BB60: 95 54 53 4F 53 0A 70 A0 0A 93 49 43 31 45 01 A4  .TSOS.p...IC1E..
    BB70: 0A 0F A4 00 A1 03 A4 00 14 0E 52 53 45 54 00 53  ..........RSET.S
    BB80: 52 41 44 0A 06 0A C8 5B 82 4D 08 49 32 43 43 08  RAD....[.M.I2CC.
    BB90: 5F 48 49 44 0D 41 4D 44 49 30 30 31 30 00 08 5F  _HID.AMDI0010.._
    BBA0: 55 49 44 0A 02 14 3F 5F 43 52 53 08 08 42 55 46  UID...?_CRS..BUF
    BBB0: 30 11 1A 0A 17 89 06 00 03 01 04 00 00 00 86 09  0...............
    BBC0: 00 01 00 40 DC FE 00 10 00 00 79 00 8B 42 55 46  ...@......y..BUF
    BBD0: 30 0A 05 49 52 51 57 70 49 49 43 32 49 52 51 57  0..IRQWpIIC2IRQW
    BBE0: A4 42 55 46 30 14 21 5F 53 54 41 00 A0 16 92 95  .BUF0.!_STA.....
    BBF0: 54 53 4F 53 0A 70 A0 0A 93 49 43 32 45 01 A4 0A  TSOS.p...IC2E...
    BC00: 0F A4 00 A1 03 A4 00 14 0E 52 53 45 54 00 53 52  .........RSET.SR
    BC10: 41 44 0A 07 0A C8 5B 82 4D 08 49 32 43 44 08 5F  AD....[.M.I2CD._
    BC20: 48 49 44 0D 41 4D 44 49 30 30 31 30 00 08 5F 55  HID.AMDI0010.._U
    BC30: 49 44 0A 03 14 3F 5F 43 52 53 08 08 42 55 46 30  ID...?_CRS..BUF0
    BC40: 11 1A 0A 17 89 06 00 03 01 06 00 00 00 86 09 00  ................
    BC50: 01 00 50 DC FE 00 10 00 00 79 00 8B 42 55 46 30  ..P......y..BUF0
    BC60: 0A 05 49 52 51 57 70 49 49 43 33 49 52 51 57 A4  ..IRQWpIIC3IRQW.
    BC70: 42 55 46 30 14 21 5F 53 54 41 00 A0 16 92 95 54  BUF0.!_STA.....T
    BC80: 53 4F 53 0A 70 A0 0A 93 49 43 33 45 01 A4 0A 0F  SOS.p...IC3E....
    BC90: A4 00 A1 03 A4 00 14 0E 52 53 45 54 00 53 52 41  ........RSET.SRA
    BCA0: 44 0A 08 0A C8 5B 82 4D 08 49 32 43 45 08 5F 48  D....[.M.I2CE._H
    BCB0: 49 44 0D 41 4D 44 49 30 30 31 30 00 08 5F 55 49  ID.AMDI0010.._UI
    BCC0: 44 0A 04 14 3F 5F 43 52 53 08 08 42 55 46 30 11  D...?_CRS..BUF0.
    BCD0: 1A 0A 17 89 06 00 03 01 16 00 00 00 86 09 00 01  ................
    BCE0: 00 60 DC FE 00 10 00 00 79 00 8B 42 55 46 30 0A  .`......y..BUF0.
    BCF0: 05 49 52 51 57 70 49 49 43 34 49 52 51 57 A4 42  .IRQWpIIC4IRQW.B
    BD00: 55 46 30 14 21 5F 53 54 41 00 A0 16 92 95 54 53  UF0.!_STA.....TS
    BD10: 4F 53 0A 70 A0 0A 93 49 43 34 45 01 A4 0A 0F A4  OS.p...IC4E.....
    BD20: 00 A1 03 A4 00 14 0E 52 53 45 54 00 53 52 41 44  .......RSET.SRAD
    BD30: 0A 09 0A C8 5B 82 4D 08 49 32 43 46 08 5F 48 49  ....[.M.I2CF._HI
    BD40: 44 0D 41 4D 44 49 30 30 31 30 00 08 5F 55 49 44  D.AMDI0010.._UID
    BD50: 0A 05 14 3F 5F 43 52 53 08 08 42 55 46 30 11 1A  ...?_CRS..BUF0..
    BD60: 0A 17 89 06 00 03 01 17 00 00 00 86 09 00 01 00  ................
    BD70: B0 DC FE 00 10 00 00 79 00 8B 42 55 46 30 0A 05  .......y..BUF0..
    BD80: 49 52 51 57 70 49 49 43 35 49 52 51 57 A4 42 55  IRQWpIIC5IRQW.BU
    BD90: 46 30 14 21 5F 53 54 41 00 A0 16 92 95 54 53 4F  F0.!_STA.....TSO
    BDA0: 53 0A 70 A0 0A 93 49 43 35 45 01 A4 0A 0F A4 00  S.p...IC5E......
    BDB0: A1 03 A4 00 14 0E 52 53 45 54 00 53 52 41 44 0A  ......RSET.SRAD.
    BDC0: 0A 0A C8 14 4A 07 45 50 49 4E 00 70 00 49 50 44  ....J.EPIN.p.IPD
    BDD0: 45 70 00 49 4D 50 45 70 01 49 4D 31 35 70 01 49  Ep.IMPEp.IM15p.I
    BDE0: 4D 31 36 70 01 49 4D 32 30 70 01 49 4D 34 34 70  M16p.IM20p.IM44p
    BDF0: 01 49 4D 34 36 70 01 49 4D 36 38 70 01 49 4D 36  .IM46p.IM68p.IM6
    BE00: 39 70 01 49 4D 36 41 70 01 49 4D 36 42 70 01 49  9p.IM6Ap.IM6Bp.I
    BE10: 4D 31 46 A0 26 92 93 45 4D 4D 44 01 70 01 49 4D  M1F.&..EMMD.p.IM
    BE20: 34 41 70 01 49 4D 35 38 70 01 49 4D 34 42 70 01  4Ap.IM58p.IM4Bp.
    BE30: 49 4D 35 37 70 01 49 4D 36 44 53 45 43 52 08 4E  IM57p.IM6DSECR.N
    BE40: 43 52 53 11 1A 0A 17 89 06 00 0D 01 05 00 00 00  CRS.............
    BE50: 86 09 00 01 00 50 DD FE 00 10 00 00 79 00 08 44  .....P......y..D
    BE60: 43 52 53 11 41 06 0A 5D 89 06 00 0D 01 05 00 00  CRS.A..]........
    BE70: 00 86 09 00 01 00 50 DD FE 00 10 00 00 8C 20 00  ......P....... .
    BE80: 01 00 01 00 1D 00 01 00 00 B8 0B 17 00 00 19 00  ................
    BE90: 23 00 00 00 44 00 5C 5F 53 42 2E 47 50 49 4F 00  #...D.\_SB.GPIO.
    BEA0: 8C 20 00 01 01 01 00 08 00 01 00 00 00 00 17 00  . ..............
    BEB0: 00 19 00 23 00 00 00 44 00 5C 5F 53 42 2E 47 50  ...#...D.\_SB.GP
    BEC0: 49 4F 00 79 00 08 41 48 49 44 0D 41 4D 44 49 30  IO.y..AHID.AMDI0
    BED0: 30 34 30 00 08 41 43 49 44 0D 41 4D 44 49 30 30  040..ACID.AMDI00
    BEE0: 34 30 00 08 53 48 49 44 0C 41 D0 0D 40 08 53 43  40..SHID.A..@.SC
    BEF0: 49 44 0D 50 43 49 5C 43 43 5F 30 38 30 35 30 31  ID.PCI\CC_080501
    BF00: 00 5B 82 48 0D 45 4D 4D 30 14 18 5F 48 49 44 08  .[.H.EMM0.._HID.
    BF10: A0 0A 45 4D 4D 44 A4 53 48 49 44 A1 06 A4 41 48  ..EMMD.SHID...AH
    BF20: 49 44 14 18 5F 43 49 44 08 A0 0A 45 4D 4D 44 A4  ID.._CID...EMMD.
    BF30: 53 43 49 44 A1 06 A4 41 43 49 44 08 5F 55 49 44  SCID...ACID._UID
    BF40: 00 14 18 5F 43 52 53 08 A0 0A 45 4D 44 33 A4 44  ..._CRS...EMD3.D
    BF50: 43 52 53 A1 06 A4 4E 43 52 53 14 1F 5F 53 54 41  CRS...NCRS.._STA
    BF60: 00 A0 14 92 95 54 53 4F 53 0A 70 A0 08 45 4D 4D  .....TSOS.p..EMM
    BF70: 45 A4 0A 0F A4 00 A1 03 A4 00 14 10 5F 49 4E 49  E..........._INI
    BF80: 00 A0 09 45 4D 4D 45 45 50 49 4E 14 18 5F 53 30  ...EMMEEPIN.._S0
    BF90: 57 00 A0 0D 90 45 4D 44 33 45 4D 4D 45 A4 0A 04  W....EMD3EMME...
    BFA0: A1 03 A4 00 14 1C 5F 50 53 30 00 A0 15 90 45 4D  ......_PS0....EM
    BFB0: 44 33 45 4D 4D 45 48 53 41 44 0A 1C 00 52 45 43  D3EMMEHSAD...REC
    BFC0: 52 14 19 5F 50 53 33 00 A0 12 90 45 4D 44 33 45  R.._PS3....EMD3E
    BFD0: 4D 4D 45 48 53 41 44 0A 1C 0A 03 10 48 5B 2E 5F  MMEHSAD.....H[._
    BFE0: 53 42 5F 50 43 49 30 5B 82 47 16 55 41 52 31 08  SB_PCI0[.G.UAR1.
    BFF0: 5F 48 49 44 0C 41 D0 05 00 08 5F 55 49 44 01 08  _HID.A...._UID..
    C000: 5F 44 44 4E 0D 43 4F 4D 31 00 14 28 5F 53 54 41  _DDN.COM1..(_STA
    C010: 00 70 00 60 70 46 55 49 4F 00 61 A0 0A 92 93 61  .p.`pFUIO.a....a
    C020: 0A 0F 70 0A 0F 60 A0 0A 93 55 4C 30 49 01 70 00  ..p..`...UL0I.p.
    C030: 60 A4 60 14 4C 11 5F 43 52 53 08 08 5F 54 5F 30  `.`.L._CRS.._T_0
    C040: 00 08 42 55 46 30 11 10 0A 0D 47 01 E8 02 E8 02  ..BUF0....G.....
    C050: 01 08 22 08 00 79 00 8C 42 55 46 30 0A 02 49 4F  .."..y..BUF0..IO
    C060: 4C 4F 8C 42 55 46 30 0A 03 49 4F 48 49 8C 42 55  LO.BUF0..IOHI.BU
    C070: 46 30 0A 04 49 4F 52 4C 8C 42 55 46 30 0A 05 49  F0..IORL.BUF0..I
    C080: 4F 52 48 8B 42 55 46 30 0A 09 49 52 51 4C 70 46  ORH.BUF0..IRQLpF
    C090: 55 49 4F 00 60 A2 46 0A 01 70 99 60 00 5F 54 5F  UIO.`.F..p.`._T_
    C0A0: 30 A0 23 93 5F 54 5F 30 00 70 0A E8 49 4F 4C 4F  0.#._T_0.p..IOLO
    C0B0: 70 0A 02 49 4F 48 49 70 0A E8 49 4F 52 4C 70 0A  p..IOHIp..IORLp.
    C0C0: 02 49 4F 52 48 A1 45 07 A0 23 93 5F 54 5F 30 01  .IORH.E..#._T_0.
    C0D0: 70 0A F8 49 4F 4C 4F 70 0A 02 49 4F 48 49 70 0A  p..IOLOp..IOHIp.
    C0E0: F8 49 4F 52 4C 70 0A 02 49 4F 52 48 A1 4E 04 A0  .IORLp..IORH.N..
    C0F0: 24 93 5F 54 5F 30 0A 02 70 0A E8 49 4F 4C 4F 70  $._T_0..p..IOLOp
    C100: 0A 03 49 4F 48 49 70 0A E8 49 4F 52 4C 70 0A 03  ..IOHIp..IORLp..
    C110: 49 4F 52 48 A1 26 A0 24 93 5F 54 5F 30 0A 03 70  IORH.&.$._T_0..p
    C120: 0A F8 49 4F 4C 4F 70 0A 03 49 4F 48 49 70 0A F8  ..IOLOp..IOHIp..
    C130: 49 4F 52 4C 70 0A 03 49 4F 52 48 A5 79 01 7B 46  IORLp..IORH.y.{F
    C140: 52 55 49 00 0A 0F 00 49 52 51 4C A4 42 55 46 30  RUI....IRQL.BUF0
    C150: 5B 82 48 16 55 41 52 32 08 5F 48 49 44 0C 41 D0  [.H.UAR2._HID.A.
    C160: 05 00 08 5F 55 49 44 0A 02 08 5F 44 44 4E 0D 43  ..._UID..._DDN.C
    C170: 4F 4D 32 00 14 28 5F 53 54 41 00 70 00 60 70 46  OM2..(_STA.p.`pF
    C180: 55 49 4F 01 61 A0 0A 92 93 61 0A 0F 70 0A 0F 60  UIO.a....a..p..`
    C190: A0 0A 93 55 4C 31 49 01 70 00 60 A4 60 14 4C 11  ...UL1I.p.`.`.L.
    C1A0: 5F 43 52 53 08 08 5F 54 5F 30 00 08 42 55 46 30  _CRS.._T_0..BUF0
    C1B0: 11 10 0A 0D 47 01 F8 02 F8 02 01 08 22 10 00 79  ....G......."..y
    C1C0: 00 8C 42 55 46 30 0A 02 49 4F 4C 4F 8C 42 55 46  ..BUF0..IOLO.BUF
    C1D0: 30 0A 03 49 4F 48 49 8C 42 55 46 30 0A 04 49 4F  0..IOHI.BUF0..IO
    C1E0: 52 4C 8C 42 55 46 30 0A 05 49 4F 52 48 8B 42 55  RL.BUF0..IORH.BU
    C1F0: 46 30 0A 09 49 52 51 4C 70 46 55 49 4F 01 60 A2  F0..IRQLpFUIO.`.
    C200: 46 0A 01 70 99 60 00 5F 54 5F 30 A0 23 93 5F 54  F..p.`._T_0.#._T
    C210: 5F 30 00 70 0A E8 49 4F 4C 4F 70 0A 02 49 4F 48  _0.p..IOLOp..IOH
    C220: 49 70 0A E8 49 4F 52 4C 70 0A 02 49 4F 52 48 A1  Ip..IORLp..IORH.
    C230: 45 07 A0 23 93 5F 54 5F 30 01 70 0A F8 49 4F 4C  E..#._T_0.p..IOL
    C240: 4F 70 0A 02 49 4F 48 49 70 0A F8 49 4F 52 4C 70  Op..IOHIp..IORLp
    C250: 0A 02 49 4F 52 48 A1 4E 04 A0 24 93 5F 54 5F 30  ..IORH.N..$._T_0
    C260: 0A 02 70 0A E8 49 4F 4C 4F 70 0A 03 49 4F 48 49  ..p..IOLOp..IOHI
    C270: 70 0A E8 49 4F 52 4C 70 0A 03 49 4F 52 48 A1 26  p..IORLp..IORH.&
    C280: A0 24 93 5F 54 5F 30 0A 03 70 0A F8 49 4F 4C 4F  .$._T_0..p..IOLO
    C290: 70 0A 03 49 4F 48 49 70 0A F8 49 4F 52 4C 70 0A  p..IOHIp..IORLp.
    C2A0: 03 49 4F 52 48 A5 79 01 7B 46 52 55 49 01 0A 0F  .IORH.y.{FRUI...
    C2B0: 00 49 52 51 4C A4 42 55 46 30 5B 82 4B 16 55 41  .IRQL.BUF0[.K.UA
    C2C0: 52 33 08 5F 48 49 44 0C 41 D0 05 00 08 5F 55 49  R3._HID.A...._UI
    C2D0: 44 0A 03 08 5F 44 44 4E 0D 43 4F 4D 33 00 14 29  D..._DDN.COM3..)
    C2E0: 5F 53 54 41 00 70 00 60 70 46 55 49 4F 0A 02 61  _STA.p.`pFUIO..a
    C2F0: A0 0A 92 93 61 0A 0F 70 0A 0F 60 A0 0A 93 55 4C  ....a..p..`...UL
    C300: 32 49 01 70 00 60 A4 60 14 4E 11 5F 43 52 53 08  2I.p.`.`.N._CRS.
    C310: 08 5F 54 5F 30 00 08 42 55 46 30 11 10 0A 0D 47  ._T_0..BUF0....G
    C320: 01 E8 03 E8 03 01 08 22 08 00 79 00 8C 42 55 46  ......."..y..BUF
    C330: 30 0A 02 49 4F 4C 4F 8C 42 55 46 30 0A 03 49 4F  0..IOLO.BUF0..IO
    C340: 48 49 8C 42 55 46 30 0A 04 49 4F 52 4C 8C 42 55  HI.BUF0..IORL.BU
    C350: 46 30 0A 05 49 4F 52 48 8B 42 55 46 30 0A 09 49  F0..IORH.BUF0..I
    C360: 52 51 4C 70 46 55 49 4F 0A 02 60 A2 46 0A 01 70  RQLpFUIO..`.F..p
    C370: 99 60 00 5F 54 5F 30 A0 23 93 5F 54 5F 30 00 70  .`._T_0.#._T_0.p
    C380: 0A E8 49 4F 4C 4F 70 0A 02 49 4F 48 49 70 0A E8  ..IOLOp..IOHIp..
    C390: 49 4F 52 4C 70 0A 02 49 4F 52 48 A1 45 07 A0 23  IORLp..IORH.E..#
    C3A0: 93 5F 54 5F 30 01 70 0A F8 49 4F 4C 4F 70 0A 02  ._T_0.p..IOLOp..
    C3B0: 49 4F 48 49 70 0A F8 49 4F 52 4C 70 0A 02 49 4F  IOHIp..IORLp..IO
    C3C0: 52 48 A1 4E 04 A0 24 93 5F 54 5F 30 0A 02 70 0A  RH.N..$._T_0..p.
    C3D0: E8 49 4F 4C 4F 70 0A 03 49 4F 48 49 70 0A E8 49  .IOLOp..IOHIp..I
    C3E0: 4F 52 4C 70 0A 03 49 4F 52 48 A1 26 A0 24 93 5F  ORLp..IORH.&.$._
    C3F0: 54 5F 30 0A 03 70 0A F8 49 4F 4C 4F 70 0A 03 49  T_0..p..IOLOp..I
    C400: 4F 48 49 70 0A F8 49 4F 52 4C 70 0A 03 49 4F 52  OHIp..IORLp..IOR
    C410: 48 A5 79 01 7B 46 52 55 49 0A 02 0A 0F 00 49 52  H.y.{FRUI.....IR
    C420: 51 4C A4 42 55 46 30 5B 82 4B 16 55 41 52 34 08  QL.BUF0[.K.UAR4.
    C430: 5F 48 49 44 0C 41 D0 05 00 08 5F 55 49 44 0A 04  _HID.A...._UID..
    C440: 08 5F 44 44 4E 0D 43 4F 4D 34 00 14 29 5F 53 54  ._DDN.COM4..)_ST
    C450: 41 00 70 00 60 70 46 55 49 4F 0A 03 61 A0 0A 92  A.p.`pFUIO..a...
    C460: 93 61 0A 0F 70 0A 0F 60 A0 0A 93 55 4C 33 49 01  .a..p..`...UL3I.
    C470: 70 00 60 A4 60 14 4E 11 5F 43 52 53 08 08 5F 54  p.`.`.N._CRS.._T
    C480: 5F 30 00 08 42 55 46 30 11 10 0A 0D 47 01 F8 03  _0..BUF0....G...
    C490: F8 03 01 08 22 10 00 79 00 8C 42 55 46 30 0A 02  ...."..y..BUF0..
    C4A0: 49 4F 4C 4F 8C 42 55 46 30 0A 03 49 4F 48 49 8C  IOLO.BUF0..IOHI.
    C4B0: 42 55 46 30 0A 04 49 4F 52 4C 8C 42 55 46 30 0A  BUF0..IORL.BUF0.
    C4C0: 05 49 4F 52 48 8B 42 55 46 30 0A 09 49 52 51 4C  .IORH.BUF0..IRQL
    C4D0: 70 46 55 49 4F 0A 03 60 A2 46 0A 01 70 99 60 00  pFUIO..`.F..p.`.
    C4E0: 5F 54 5F 30 A0 23 93 5F 54 5F 30 00 70 0A E8 49  _T_0.#._T_0.p..I
    C4F0: 4F 4C 4F 70 0A 02 49 4F 48 49 70 0A E8 49 4F 52  OLOp..IOHIp..IOR
    C500: 4C 70 0A 02 49 4F 52 48 A1 45 07 A0 23 93 5F 54  Lp..IORH.E..#._T
    C510: 5F 30 01 70 0A F8 49 4F 4C 4F 70 0A 02 49 4F 48  _0.p..IOLOp..IOH
    C520: 49 70 0A F8 49 4F 52 4C 70 0A 02 49 4F 52 48 A1  Ip..IORLp..IORH.
    C530: 4E 04 A0 24 93 5F 54 5F 30 0A 02 70 0A E8 49 4F  N..$._T_0..p..IO
    C540: 4C 4F 70 0A 03 49 4F 48 49 70 0A E8 49 4F 52 4C  LOp..IOHIp..IORL
    C550: 70 0A 03 49 4F 52 48 A1 26 A0 24 93 5F 54 5F 30  p..IORH.&.$._T_0
    C560: 0A 03 70 0A F8 49 4F 4C 4F 70 0A 03 49 4F 48 49  ..p..IOLOp..IOHI
    C570: 70 0A F8 49 4F 52 4C 70 0A 03 49 4F 52 48 A5 79  p..IORLp..IORH.y
    C580: 01 7B 46 52 55 49 0A 03 0A 0F 00 49 52 51 4C A4  .{FRUI.....IRQL.
    C590: 42 55 46 30 5B 82 4D 54 2E 5F 53 42 5F 54 50 4D  BUF0[.MT._SB_TPM
    C5A0: 5F 08 54 4D 52 51 0C FF FF FF FF 08 54 4C 56 4C  _.TMRQ......TLVL
    C5B0: 0C FF FF FF FF 14 2F 5F 48 49 44 00 A0 0B 54 43  ....../_HID...TC
    C5C0: 4D 46 A4 0C 69 34 01 01 A1 1C A0 0D 93 54 54 44  MF..i4.......TTD
    C5D0: 50 00 A4 0C 41 D0 0C 31 A1 0C A4 0D 4D 53 46 54  P...A..1....MSFT
    C5E0: 30 31 30 31 00 5B 80 54 4D 4D 42 00 0C 00 00 D4  0101.[.TMMB.....
    C5F0: FE 0B 00 50 5B 81 41 04 54 4D 4D 42 11 41 43 43  ...P[.A.TMMB.ACC
    C600: 30 08 00 38 49 4E 54 45 20 49 4E 54 56 08 00 18  0..8INTE INTV...
    C610: 49 4E 54 53 20 49 4E 54 46 20 54 53 54 53 20 00  INTS INTF TSTS .
    C620: 40 04 46 49 46 4F 20 00 40 04 49 44 54 46 20 00  @.FIFO .@.IDTF .
    C630: 40 0C 53 43 4D 44 20 14 47 05 5F 53 54 52 00 A0  @.SCMD .G._STR..
    C640: 2A 93 54 54 44 50 00 A4 11 21 0A 1E 54 00 50 00  *.TTDP...!..T.P.
    C650: 4D 00 20 00 31 00 2E 00 32 00 20 00 44 00 65 00  M. .1...2. .D.e.
    C660: 76 00 69 00 63 00 65 00 00 00 A1 24 A4 11 21 0A  v.i.c.e....$..!.
    C670: 1E 54 00 50 00 4D 00 20 00 32 00 2E 00 30 00 20  .T.P.M. .2...0. 
    C680: 00 44 00 65 00 76 00 69 00 63 00 65 00 00 00 08  .D.e.v.i.c.e....
    C690: 5F 55 49 44 01 08 43 52 53 54 11 1D 0A 1A 86 09  _UID..CRST......
    C6A0: 00 00 00 00 00 00 00 10 00 00 86 09 00 00 00 00  ................
    C6B0: D7 FE 00 10 00 00 79 00 08 43 52 53 44 11 11 0A  ......y..CRSD...
    C6C0: 0E 86 09 00 01 00 00 D4 FE 00 50 00 00 79 00 08  ..........P..y..
    C6D0: 43 52 49 44 11 11 0A 0E 86 09 00 01 00 00 D4 FE  CRID............
    C6E0: 00 50 00 00 79 00 08 43 52 45 49 11 34 0A 31 86  .P..y..CREI.4.1.
    C6F0: 09 00 01 00 00 D4 FE 00 50 00 00 8C 20 00 01 00  ........P... ...
    C700: 01 00 12 00 03 00 00 00 00 17 00 00 19 00 23 00  ..............#.
    C710: 00 00 00 00 5C 5F 53 42 2E 47 50 49 4F 00 79 00  ....\_SB.GPIO.y.
    C720: 14 41 15 5F 43 52 53 08 A0 4D 05 93 41 4D 44 54  .A._CRS..M..AMDT
    C730: 01 8A 43 52 53 54 0A 04 4D 54 46 42 8A 43 52 53  ..CRST..MTFB.CRS
    C740: 54 0A 08 4C 54 46 42 70 54 50 4D 42 4D 54 46 42  T..LTFBpTPMBMTFB
    C750: 70 54 50 42 53 4C 54 46 42 8A 43 52 53 54 0A 10  pTPBSLTFB.CRST..
    C760: 4D 54 46 43 8A 43 52 53 54 0A 14 4C 54 46 43 70  MTFC.CRST..LTFCp
    C770: 54 50 4D 43 4D 54 46 43 70 54 50 43 53 4C 54 46  TPMCMTFCpTPCSLTF
    C780: 43 A4 43 52 53 54 A1 46 0E A0 34 93 44 54 50 54  C.CRST.F..4.DTPT
    C790: 01 8A 43 52 53 44 0A 04 4D 54 46 45 8A 43 52 53  ..CRSD..MTFE.CRS
    C7A0: 44 0A 08 4C 54 46 45 70 0C 00 00 D4 FE 4D 54 46  D..LTFEp.....MTF
    C7B0: 45 70 0B 00 50 4C 54 46 45 A4 43 52 53 44 A1 4D  Ep..PLTFE.CRSD.M
    C7C0: 09 A0 47 07 93 54 54 50 46 01 A0 3F 91 93 54 4D  ..G..TTPF..?..TM
    C7D0: 52 51 00 93 54 4D 52 51 0C FF FF FF FF 8A 43 52  RQ..TMRQ......CR
    C7E0: 49 44 0A 04 4D 54 46 44 8A 43 52 49 44 0A 08 4C  ID..MTFD.CRID..L
    C7F0: 54 46 44 70 0C 00 00 D4 FE 4D 54 46 44 70 0B 00  TFDp.....MTFDp..
    C800: 50 4C 54 46 44 A4 43 52 49 44 A1 2E 8B 43 52 45  PLTFD.CRID...CRE
    C810: 49 0A 23 4C 49 52 51 8D 43 52 45 49 0A 99 4C 4C  I.#LIRQ.CREI..LL
    C820: 56 4C 70 54 4D 52 51 4C 49 52 51 70 54 4C 56 4C  VLpTMRQLIRQpTLVL
    C830: 4C 4C 56 4C A4 43 52 45 49 A1 22 A0 20 93 54 54  LLVL.CREI.". .TT
    C840: 50 46 00 8A 43 52 53 54 0A 10 4D 54 46 46 70 46  PF..CRST..MTFFpF
    C850: 54 50 4D 4D 54 46 46 A4 43 52 53 54 70 00 4D 54  TPMMTFF.CRSTp.MT
    C860: 46 45 70 00 4C 54 46 45 A4 43 52 49 44 A4 43 52  FEp.LTFE.CRID.CR
    C870: 49 44 14 4F 0E 5F 53 52 53 09 A0 47 0E 90 92 93  ID.O._SRS..G....
    C880: 54 4D 52 51 00 92 93 54 4D 52 51 0C FF FF FF FF  TMRQ...TMRQ.....
    C890: 8B 68 0A 23 49 52 51 30 8B 43 52 45 49 0A 23 4C  .h.#IRQ0.CREI.#L
    C8A0: 49 52 51 70 49 52 51 30 4C 49 52 51 70 49 52 51  IRQpIRQ0LIRQpIRQ
    C8B0: 30 54 4D 52 51 8D 68 0A 98 49 54 52 47 8D 43 52  0TMRQ.h..ITRG.CR
    C8C0: 45 49 0A 98 4C 54 52 47 70 49 54 52 47 4C 54 52  EI..LTRGpITRGLTR
    C8D0: 47 8D 68 0A 99 49 4C 56 4C 8D 43 52 45 49 0A 99  G.h..ILVL.CREI..
    C8E0: 4C 4C 56 4C 70 49 4C 56 4C 4C 4C 56 4C A0 44 07  LLVLpILVLLLVL.D.
    C8F0: 91 93 7B 49 44 54 46 0A 0F 00 00 93 7B 49 44 54  ..{IDTF.....{IDT
    C900: 46 0A 0F 00 0A 0F A0 15 95 49 52 51 30 0A 10 70  F........IRQ0..p
    C910: 7B 49 52 51 30 0A 0F 00 49 4E 54 56 A0 12 93 49  {IRQ0...INTV...I
    C920: 54 52 47 01 7D 49 4E 54 45 0A 10 49 4E 54 45 A1  TRG.}INTE..INTE.
    C930: 0F 7B 49 4E 54 45 0C EF FF FF FF 49 4E 54 45 A0  .{INTE.....INTE.
    C940: 12 93 49 4C 56 4C 00 7D 49 4E 54 45 0A 08 49 4E  ..ILVL.}INTE..IN
    C950: 54 45 A1 0F 7B 49 4E 54 45 0C F7 FF FF FF 49 4E  TE..{INTE.....IN
    C960: 54 45 5B 80 43 52 42 44 00 54 50 4D 4D 0A 48 5B  TE[.CRBD.TPMM.H[
    C970: 81 1C 43 52 42 44 00 00 20 48 45 52 52 20 00 40  ..CRBD.. HERR .@
    C980: 1C 48 43 4D 44 20 00 00 48 53 54 53 20 14 30 5F  .HCMD ..HSTS .0_
    C990: 53 54 41 00 A0 12 93 54 54 44 50 00 A0 08 54 50  STA....TTDP...TP
    C9A0: 4D 46 A4 0A 0F A4 00 A1 14 A0 12 93 54 54 44 50  MF..........TTDP
    C9B0: 01 A0 08 54 50 4D 46 A4 0A 0F A4 00 A4 00 14 44  ...TPMF........D
    C9C0: 0C 53 54 52 54 0B 08 5F 54 5F 30 00 5B 80 54 50  .STRT.._T_0.[.TP
    C9D0: 4D 52 00 46 54 50 4D 0B 00 10 5B 81 14 54 50 4D  MR.FTPM...[..TPM
    C9E0: 52 00 00 20 46 45 52 52 20 00 20 42 45 47 4E 20  R.. FERR . BEGN 
    C9F0: 08 54 49 4D 52 00 A0 07 92 93 99 68 00 00 A2 42  .TIMR......h...B
    CA00: 08 01 70 99 69 00 5F 54 5F 30 A0 0C 93 5F 54 5F  ..p.i._T_0..._T_
    CA10: 30 00 A4 11 03 01 03 A1 48 06 A0 45 06 93 5F 54  0.......H..E.._T
    CA20: 5F 30 01 70 00 54 49 4D 52 A0 28 93 41 4D 44 54  _0.p.TIMR.(.AMDT
    CA30: 01 A2 20 90 93 42 45 47 4E 01 95 54 49 4D 52 0B  .. ..BEGN..TIMR.
    CA40: 00 02 A0 0F 93 42 45 47 4E 01 5B 22 01 75 54 49  .....BEGN.[".uTI
    CA50: 4D 52 A1 2B A0 1B 93 7D 7B 48 53 54 53 0A 02 00  MR.+...}{HSTS...
    CA60: 7B 48 53 54 53 01 00 00 0A 03 70 01 48 43 4D 44  {HSTS.....p.HCMD
    CA70: A1 0D 70 01 46 45 52 52 70 00 42 45 47 4E A4 00  ..p.FERRp.BEGN..
    CA80: A5 A4 01 14 4F 05 43 52 59 46 0B 08 5F 54 5F 30  ....O.CRYF.._T_0
    CA90: 00 A0 07 92 93 99 68 00 01 A2 44 04 01 70 99 69  ......h...D..p.i
    CAA0: 00 5F 54 5F 30 A0 0C 93 5F 54 5F 30 00 A4 11 03  ._T_0..._T_0....
    CAB0: 01 03 A1 2A A0 28 93 5F 54 5F 30 01 08 54 50 4D  ...*.(._T_0..TPM
    CAC0: 56 12 09 02 01 12 05 02 01 0A 20 A0 0C 93 5F 53  V......... ..._S
    CAD0: 54 41 00 A4 12 03 01 00 A4 54 50 4D 56 A5 A4 11  TA.......TPMV...
    CAE0: 03 01 00 10 4C 34 2E 5F 53 42 5F 54 50 4D 5F 5B  ....L4._SB_TPM_[
    CAF0: 80 54 53 4D 49 01 53 4D 49 41 0A 02 5B 81 0B 54  .TSMI.SMIA..[..T
    CB00: 53 4D 49 02 53 4D 49 5F 10 5B 80 41 54 4E 56 00  SMI.SMI_.[.ATNV.
    CB10: 50 50 49 4D 50 50 49 4C 5B 81 29 41 54 4E 56 00  PPIMPPIL[.)ATNV.
    CB20: 52 51 53 54 20 52 43 4E 54 20 45 52 52 4F 20 46  RQST RCNT ERRO F
    CB30: 4C 41 47 20 4D 49 53 43 20 4F 50 54 4E 20 53 52  LAG MISC OPTN SR
    CB40: 53 50 20 14 40 28 5F 44 53 4D 0C 08 5F 54 5F 31  SP .@(_DSM.._T_1
    CB50: 00 08 5F 54 5F 30 00 A0 47 1B 93 68 11 13 0A 10  .._T_0..G..h....
    CB60: A6 FA DD 3D 1B 36 B4 4E A4 24 8D 10 08 9D 16 53  ...=.6.N.$.....S
    CB70: A2 4E 19 01 70 99 6A 00 5F 54 5F 30 A0 0E 93 5F  .N..p.j._T_0..._
    CB80: 54 5F 30 00 A4 11 05 0A 02 FF 01 A1 42 18 A0 1D  T_0.........B...
    CB90: 93 5F 54 5F 30 01 A0 0D 93 50 50 49 56 00 A4 0D  ._T_0....PPIV...
    CBA0: 31 2E 32 00 A1 07 A4 0D 31 2E 33 00 A1 41 16 A0  1.2.....1.3..A..
    CBB0: 3C 93 5F 54 5F 30 0A 02 70 83 88 6B 00 00 52 51  <._T_0..p..k..RQ
    CBC0: 53 54 70 00 53 52 53 50 70 0A 02 46 4C 41 47 70  STp.SRSPp..FLAGp
    CBD0: 4F 46 53 54 54 4D 46 31 70 00 53 52 53 50 70 54  OFSTTMF1p.SRSPpT
    CBE0: 4D 46 31 53 4D 49 5F A4 53 52 53 50 A1 41 12 A0  MF1SMI_.SRSP.A..
    CBF0: 23 93 5F 54 5F 30 0A 03 08 50 50 49 31 12 04 02  #._T_0...PPI1...
    CC00: 00 00 70 52 51 53 54 88 50 50 49 31 01 00 A4 50  ..pRQST.PPI1...P
    CC10: 50 49 31 A1 4A 0F A0 0D 93 5F 54 5F 30 0A 04 A4  PI1.J...._T_0...
    CC20: 54 52 53 54 A1 49 0E A0 48 04 93 5F 54 5F 30 0A  TRST.I..H.._T_0.
    CC30: 05 08 50 50 49 32 12 05 03 00 00 00 70 00 53 52  ..PPI2......p.SR
    CC40: 53 50 70 0A 05 46 4C 41 47 70 4F 46 53 54 53 4D  SPp..FLAGpOFSTSM
    CC50: 49 5F 70 52 43 4E 54 88 50 50 49 32 01 00 70 45  I_pRCNT.PPI2..pE
    CC60: 52 52 4F 88 50 50 49 32 0A 02 00 A4 50 50 49 32  RRO.PPI2....PPI2
    CC70: A1 4D 09 A0 0B 93 5F 54 5F 30 0A 06 A4 0A 03 A1  .M...._T_0......
    CC80: 4E 08 A0 40 05 93 5F 54 5F 30 0A 07 70 83 88 6B  N..@.._T_0..p..k
    CC90: 00 00 52 51 53 54 70 0A 07 46 4C 41 47 70 00 4F  ..RQSTp..FLAGp.O
    CCA0: 50 54 4E A0 12 93 52 51 53 54 0A 17 99 83 88 6B  PTN...RQST.....k
    CCB0: 01 00 4F 50 54 4E 70 4F 46 53 54 54 4D 46 31 70  ..OPTNpOFSTTMF1p
    CCC0: 00 53 52 53 50 70 54 4D 46 31 53 4D 49 5F A4 53  .SRSPpTMF1SMI_.S
    CCD0: 52 53 50 A1 3A A0 36 93 5F 54 5F 30 0A 08 70 83  RSP.:.6._T_0..p.
    CCE0: 88 6B 00 00 52 51 53 54 70 0A 08 46 4C 41 47 70  .k..RQSTp..FLAGp
    CCF0: 4F 46 53 54 54 4D 46 31 70 00 53 52 53 50 70 54  OFSTTMF1p.SRSPpT
    CD00: 4D 46 31 53 4D 49 5F A4 53 52 53 50 A1 01 A5 A1  MF1SMI_.SRSP....
    CD10: 4F 06 A0 4C 06 93 68 11 13 0A 10 ED 54 60 37 13  O..L..h.....T`7.
    CD20: CC 75 46 90 1C 47 56 D7 F2 D4 5D A2 43 05 01 70  .uF..GV...].C..p
    CD30: 99 6A 00 5F 54 5F 31 A0 0C 93 5F 54 5F 31 00 A4  .j._T_1..._T_1..
    CD40: 11 03 01 03 A1 39 A0 35 93 5F 54 5F 31 01 70 83  .....9.5._T_1.p.
    CD50: 88 6B 00 00 52 51 53 54 70 0A 09 46 4C 41 47 70  .k..RQSTp..FLAGp
    CD60: 4F 46 53 54 54 4D 46 31 70 00 53 52 53 50 70 54  OFSTTMF1p.SRSPpT
    CD70: 4D 46 31 53 4D 49 5F A4 53 52 53 50 A1 01 A5 A0  MF1SMI_.SRSP....
    CD80: 1F 93 68 11 13 0A 10 A5 16 8E CF E8 C1 25 4E B7  ..h..........%N.
    CD90: 12 4F 54 A9 67 02 C8 A4 43 52 59 46 69 6A 6B A0  .OT.g...CRYFijk.
    CDA0: 1F 93 68 11 13 0A 10 AB 6C BF 6B 63 54 14 47 B7  ..h.....l.kcT.G.
    CDB0: CD F0 20 3C 03 68 D4 A4 53 54 52 54 69 6A 6B A4  .. <.h..STRTijk.
    CDC0: 11 03 01 00 14 4B 06 54 50 54 53 09 08 5F 54 5F  .....K.TPTS.._T_
    CDD0: 30 00 A2 48 05 01 70 99 68 00 5F 54 5F 30 A0 24  0..H..p.h._T_0.$
    CDE0: 93 5F 54 5F 30 0A 04 70 00 52 51 53 54 70 0A 09  ._T_0..p.RQSTp..
    CDF0: 46 4C 41 47 70 00 53 52 53 50 70 4F 46 53 54 53  FLAGp.SRSPpOFSTS
    CE00: 4D 49 5F A1 26 A0 24 93 5F 54 5F 30 0A 05 70 00  MI_.&.$._T_0..p.
    CE10: 52 51 53 54 70 0A 09 46 4C 41 47 70 00 53 52 53  RQSTp..FLAGp.SRS
    CE20: 50 70 4F 46 53 54 53 4D 49 5F A5 5B 22 0B 2C 01  PpOFSTSMI_.[".,.
    CE30: 10 05 5F 47 50 45 08 42 52 45 56 0A 02 08 4F 42  .._GPE.BREV...OB
    CE40: 44 50 0A 01 08 42 4C 45 44 0A 01 08 43 4C 45 44  DP...BLED...CLED
    CE50: 0A 01 14 42 0D 44 42 47 4C 01 A0 46 06 93 68 01  ...B.DBGL..F..h.
    CE60: 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53  \/._SB_PCI0SBRGS
    CE70: 49 4F 31 45 4E 46 47 0A 08 7D 5C 2F 05 5F 53 42  IO1ENFG..}\/._SB
    CE80: 5F 50 43 49 30 53 42 52 47 53 49 4F 31 53 43 46  _PCI0SBRGSIO1SCF
    CE90: 46 0A 02 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42  F..\/._SB_PCI0SB
    CEA0: 52 47 53 49 4F 31 53 43 46 46 5C 2F 05 5F 53 42  RGSIO1SCFF\/._SB
    CEB0: 5F 50 43 49 30 53 42 52 47 53 49 4F 31 45 58 46  _PCI0SBRGSIO1EXF
    CEC0: 47 A1 43 06 5C 2F 05 5F 53 42 5F 50 43 49 30 53  G.C.\/._SB_PCI0S
    CED0: 42 52 47 53 49 4F 31 45 4E 46 47 0A 08 7B 5C 2F  BRGSIO1ENFG..{\/
    CEE0: 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F  ._SB_PCI0SBRGSIO
    CEF0: 31 53 43 46 46 0A FD 5C 2F 05 5F 53 42 5F 50 43  1SCFF..\/._SB_PC
    CF00: 49 30 53 42 52 47 53 49 4F 31 53 43 46 46 5C 2F  I0SBRGSIO1SCFF\/
    CF10: 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F  ._SB_PCI0SBRGSIO
    CF20: 31 45 58 46 47 14 45 22 42 54 4E 4C 01 A0 43 11  1EXFG.E"BTNL..C.
    CF30: 93 68 01 A0 49 0A 93 42 52 45 56 0A 02 5C 2F 05  .h..I..BREV..\/.
    CF40: 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31  _SB_PCI0SBRGSIO1
    CF50: 45 4E 46 47 0A 07 7B 5C 2F 05 5F 53 42 5F 50 43  ENFG..{\/._SB_PC
    CF60: 49 30 53 42 52 47 53 49 4F 31 52 47 45 38 0E F7  I0SBRGSIO1RGE8..
    CF70: FF FF FF FF FF FF FF 5C 2F 05 5F 53 42 5F 50 43  .......\/._SB_PC
    CF80: 49 30 53 42 52 47 53 49 4F 31 52 47 45 38 7B 5C  I0SBRGSIO1RGE8{\
    CF90: 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49  /._SB_PCI0SBRGSI
    CFA0: 4F 31 52 47 45 39 0E F7 FF FF FF FF FF FF FF 5C  O1RGE9.........\
    CFB0: 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49  /._SB_PCI0SBRGSI
    CFC0: 4F 31 52 47 45 39 5C 2F 05 5F 53 42 5F 50 43 49  O1RGE9\/._SB_PCI
    CFD0: 30 53 42 52 47 53 49 4F 31 45 58 46 47 A1 43 06  0SBRGSIO1EXFG.C.
    CFE0: 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53  \/._SB_PCI0SBRGS
    CFF0: 49 4F 31 45 4E 46 47 0A 08 7B 5C 2F 05 5F 53 42  IO1ENFG..{\/._SB
    D000: 5F 50 43 49 30 53 42 52 47 53 49 4F 31 52 47 45  _PCI0SBRGSIO1RGE
    D010: 31 0A F7 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42  1..\/._SB_PCI0SB
    D020: 52 47 53 49 4F 31 52 47 45 31 5C 2F 05 5F 53 42  RGSIO1RGE1\/._SB
    D030: 5F 50 43 49 30 53 42 52 47 53 49 4F 31 45 58 46  _PCI0SBRGSIO1EXF
    D040: 47 A1 49 10 A0 42 0A 93 42 52 45 56 0A 02 5C 2F  G.I..B..BREV..\/
    D050: 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F  ._SB_PCI0SBRGSIO
    D060: 31 45 4E 46 47 0A 07 7B 5C 2F 05 5F 53 42 5F 50  1ENFG..{\/._SB_P
    D070: 43 49 30 53 42 52 47 53 49 4F 31 52 47 45 38 0E  CI0SBRGSIO1RGE8.
    D080: F7 FF FF FF FF FF FF FF 5C 2F 05 5F 53 42 5F 50  ........\/._SB_P
    D090: 43 49 30 53 42 52 47 53 49 4F 31 52 47 45 38 7D  CI0SBRGSIO1RGE8}
    D0A0: 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53  \/._SB_PCI0SBRGS
    D0B0: 49 4F 31 52 47 45 39 0A 08 5C 2F 05 5F 53 42 5F  IO1RGE9..\/._SB_
    D0C0: 50 43 49 30 53 42 52 47 53 49 4F 31 52 47 45 39  PCI0SBRGSIO1RGE9
    D0D0: 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53  \/._SB_PCI0SBRGS
    D0E0: 49 4F 31 45 58 46 47 A1 43 06 5C 2F 05 5F 53 42  IO1EXFG.C.\/._SB
    D0F0: 5F 50 43 49 30 53 42 52 47 53 49 4F 31 45 4E 46  _PCI0SBRGSIO1ENF
    D100: 47 0A 08 7D 5C 2F 05 5F 53 42 5F 50 43 49 30 53  G..}\/._SB_PCI0S
    D110: 42 52 47 53 49 4F 31 52 47 45 31 0A 08 5C 2F 05  BRGSIO1RGE1..\/.
    D120: 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31  _SB_PCI0SBRGSIO1
    D130: 52 47 45 31 5C 2F 05 5F 53 42 5F 50 43 49 30 53  RGE1\/._SB_PCI0S
    D140: 42 52 47 53 49 4F 31 45 58 46 47 14 43 10 43 43  BRGSIO1EXFG.C.CC
    D150: 4D 4C 01 A0 46 06 93 68 01 5C 2F 05 5F 53 42 5F  ML..F..h.\/._SB_
    D160: 50 43 49 30 53 42 52 47 53 49 4F 31 45 4E 46 47  PCI0SBRGSIO1ENFG
    D170: 0A 07 7D 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42  ..}\/._SB_PCI0SB
    D180: 52 47 53 49 4F 31 52 47 45 30 0A 02 5C 2F 05 5F  RGSIO1RGE0..\/._
    D190: 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31 52  SB_PCI0SBRGSIO1R
    D1A0: 47 45 30 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42  GE0\/._SB_PCI0SB
    D1B0: 52 47 53 49 4F 31 45 58 46 47 A1 44 09 5C 2F 05  RGSIO1EXFG.D.\/.
    D1C0: 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31  _SB_PCI0SBRGSIO1
    D1D0: 45 4E 46 47 0A 07 7B 5C 2F 05 5F 53 42 5F 50 43  ENFG..{\/._SB_PC
    D1E0: 49 30 53 42 52 47 53 49 4F 31 52 47 45 30 0A FD  I0SBRGSIO1RGE0..
    D1F0: 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53  \/._SB_PCI0SBRGS
    D200: 49 4F 31 52 47 45 30 7B 5C 2F 05 5F 53 42 5F 50  IO1RGE0{\/._SB_P
    D210: 43 49 30 53 42 52 47 53 49 4F 31 52 47 45 31 0A  CI0SBRGSIO1RGE1.
    D220: FD 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47  .\/._SB_PCI0SBRG
    D230: 53 49 4F 31 52 47 45 31 5C 2F 05 5F 53 42 5F 50  SIO1RGE1\/._SB_P
    D240: 43 49 30 53 42 52 47 53 49 4F 31 45 58 46 47 14  CI0SBRGSIO1EXFG.
    D250: 43 04 4C 45 44 53 01 A0 0C 93 42 4C 45 44 01 44  C.LEDS....BLED.D
    D260: 42 47 4C 01 A1 06 44 42 47 4C 00 A0 0C 93 42 4C  BGL...DBGL....BL
    D270: 45 44 01 42 54 4E 4C 01 A1 06 42 54 4E 4C 00 A0  ED.BTNL...BTNL..
    D280: 0C 93 43 4C 45 44 01 43 43 4D 4C 01 A1 06 43 43  ..CLED.CCML...CC
    D290: 4D 4C 00 14 15 4C 45 44 57 01 44 42 47 4C 00 42  ML...LEDW.DBGL.B
    D2A0: 54 4E 4C 00 43 43 4D 4C 00 10 4C 04 2F 06 5F 53  TNL.CCML..L./._S
    D2B0: 42 5F 50 43 49 31 47 50 50 42 55 50 30 30 44 50  B_PCI1GPPBUP00DP
    D2C0: 30 30 4C 4E 30 30 14 2F 4D 54 43 4C 08 08 5A 46  00LN00./MTCL..ZF
    D2D0: 57 46 12 1E 13 0A 4D 0A 54 0A 43 0A 4C 0A 02 01  WF....M.T.C.L...
    D2E0: 0A FF 0A FF 0A FF 0A FF 00 00 01 00 00 00 00 00  ................
    D2F0: 00 A4 5A 46 57 46                                ..ZFWF

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 48 24 00 00 02 A9 41 4D 44 00 00 00  SSDTH$....AMD...
    0010: 47 50 50 5F 50 4D 45 5F 01 00 00 00 49 4E 54 4C  GPP_PME_....INTL
    0020: 31 03 23 20 A0 48 60 00 15 5C 4D 30 31 37 08 06  1.# .H`..\M017..
    0030: 15 5C 4D 30 31 38 08 07 15 5C 4D 31 31 35 03 00  .\M018...\M115..
    0040: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0050: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0060: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0070: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0080: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0090: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    00A0: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00B0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00C0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00D0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00E0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00F0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    0100: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0110: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0120: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0130: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0140: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0150: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0160: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0170: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0180: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0190: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    01A0: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01B0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01C0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01D0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01E0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01F0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    0200: 15 5C 4D 30 34 36 01 00 15 5C 4D 30 34 37 01 00  .\M046...\M047..
    0210: 15 5C 4D 30 34 39 08 02 15 5C 4D 32 35 31 05 00  .\M049...\M251..
    0220: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0230: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0240: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0250: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0260: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0270: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0280: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    0290: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02A0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02B0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02C0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02D0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02E0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    02F0: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0300: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0310: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0320: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0330: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0340: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0350: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 36 30 08 07  .\M457...\M460..
    0360: 15 5C 4D 34 34 39 05 00 15 5C 4D 34 43 30 05 00  .\M449...\M4C0..
    0370: 15 5C 4D 32 33 41 05 00 15 5C 4D 34 46 30 05 00  .\M23A...\M4F0..
    0380: 15 5C 4D 36 31 30 05 00 15 5C 4D 32 39 41 05 00  .\M610...\M29A..
    0390: 15 5C 4D 36 33 31 05 00 15 5C 4D 36 35 32 05 00  .\M631...\M652..
    03A0: 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06 00  .\M050...\M051..
    03B0: 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06 00  .\M052...\M053..
    03C0: 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06 00  .\M054...\M055..
    03D0: 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06 00  .\M056...\M057..
    03E0: 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06 00  .\M058...\M059..
    03F0: 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06 00  .\M062...\M068..
    0400: 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06 00  .\M069...\M070..
    0410: 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06 00  .\M071...\M072..
    0420: 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06 00  .\M074...\M075..
    0430: 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06 00  .\M076...\M077..
    0440: 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06 00  .\M078...\M079..
    0450: 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06 00  .\M080...\M081..
    0460: 15 5C 4D 31 32 37 06 00 15 5C 5F 42 42 4E 01 00  .\M127...\_BBN..
    0470: 15 5C 2E 5F 53 42 5F 50 43 49 32 06 00 15 5C 2F  .\._SB_PCI2...\/
    0480: 03 5F 53 42 5F 50 43 49 32 47 50 50 30 06 00 15  ._SB_PCI2GPP0...
    0490: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 31 06  \/._SB_PCI2GPP1.
    04A0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50  ..\/._SB_PCI2GPP
    04B0: 32 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47  2...\/._SB_PCI2G
    04C0: 50 50 33 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PP3...\/._SB_PCI
    04D0: 32 47 50 50 34 06 00 15 5C 2F 03 5F 53 42 5F 50  2GPP4...\/._SB_P
    04E0: 43 49 32 47 50 50 35 06 00 15 5C 2F 03 5F 53 42  CI2GPP5...\/._SB
    04F0: 5F 50 43 49 32 47 50 50 36 06 00 15 5C 2F 03 5F  _PCI2GPP6...\/._
    0500: 53 42 5F 50 43 49 32 47 50 50 37 06 00 15 5C 2F  SB_PCI2GPP7...\/
    0510: 03 5F 53 42 5F 50 43 49 32 47 50 50 38 06 00 15  ._SB_PCI2GPP8...
    0520: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 39 06  \/._SB_PCI2GPP9.
    0530: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50  ..\/._SB_PCI2GPP
    0540: 41 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47  A...\/._SB_PCI2G
    0550: 50 50 42 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PPB...\/._SB_PCI
    0560: 32 47 50 50 43 06 00 15 5C 2F 03 5F 53 42 5F 50  2GPPC...\/._SB_P
    0570: 43 49 32 47 50 50 44 06 00 15 5C 2F 03 5F 53 42  CI2GPPD...\/._SB
    0580: 5F 50 43 49 32 47 50 50 45 06 00 15 5C 2F 03 5F  _PCI2GPPE...\/._
    0590: 53 42 5F 50 43 49 32 47 50 50 46 06 00 15 5C 2F  SB_PCI2GPPF...\/
    05A0: 03 5F 53 42 5F 50 43 49 32 47 50 50 47 06 00 15  ._SB_PCI2GPPG...
    05B0: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 48 06  \/._SB_PCI2GPPH.
    05C0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 31  ..\/._SB_PCI2GP1
    05D0: 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47  5...\/._SB_PCI2G
    05E0: 50 32 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  P25...\/._SB_PCI
    05F0: 32 47 50 33 35 06 00 15 5C 2F 03 5F 53 42 5F 50  2GP35...\/._SB_P
    0600: 43 49 32 47 50 34 35 06 00 15 5C 2F 03 5F 53 42  CI2GP45...\/._SB
    0610: 5F 50 43 49 32 47 50 31 37 06 00 15 5C 2F 03 5F  _PCI2GP17...\/._
    0620: 53 42 5F 50 43 49 32 47 50 32 37 06 00 10 8A E1  SB_PCI2GP27.....
    0630: 01 5C 2E 5F 53 42 5F 50 43 49 32 08 45 54 50 30  .\._SB_PCI2.ETP0
    0640: 0A 55 08 45 54 50 31 0A 55 08 45 54 50 32 0A 55  .U.ETP1.U.ETP2.U
    0650: 08 45 54 50 33 0A 55 08 45 54 50 34 0A 55 08 45  .ETP3.U.ETP4.U.E
    0660: 54 50 35 0A 55 08 45 54 50 36 0A 55 08 45 54 50  TP5.U.ETP6.U.ETP
    0670: 37 0A 55 08 45 54 50 38 0A 55 08 45 54 50 39 0A  7.U.ETP8.U.ETP9.
    0680: 55 08 45 54 50 41 0A 55 08 45 54 50 42 0A 55 08  U.ETPA.U.ETPB.U.
    0690: 45 54 50 43 0A 55 08 45 54 50 44 0A 55 08 45 54  ETPC.U.ETPD.U.ET
    06A0: 50 45 0A 55 08 45 54 50 46 0A 55 08 45 54 50 47  PE.U.ETPF.U.ETPG
    06B0: 0A 55 08 45 54 50 48 0A 55 08 45 54 31 35 0A 55  .U.ETPH.U.ET15.U
    06C0: 08 45 54 32 35 0A 55 08 45 54 33 35 0A 55 08 45  .ET25.U.ET35.U.E
    06D0: 54 34 35 0A 55 08 45 54 31 37 0A 55 08 45 54 32  T45.U.ET17.U.ET2
    06E0: 37 0A 55 14 84 D6 01 50 50 4D 45 00 4D 34 36 30  7.U....PPME.M460
    06F0: 0D 20 20 4F 45 4D 2D 41 53 4C 2D 5C 5F 53 42 2E  .  OEM-ASL-\_SB.
    0700: 50 43 49 32 2E 50 50 4D 45 0A 00 00 00 00 00 00  PCI2.PPME.......
    0710: 00 A0 4F 18 92 93 5C 2F 03 5F 53 42 5F 50 43 49  ..O...\/._SB_PCI
    0720: 32 45 54 50 30 0A FF 70 7A 4D 30 31 37 5F 42 42  2ETP0..pzM017_BB
    0730: 4E 01 01 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53  N...x......\/._S
    0740: 42 5F 50 43 49 32 45 54 50 30 A0 46 15 91 93 5C  B_PCI2ETP0.F...\
    0750: 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 30 01 93  /._SB_PCI2ETP0..
    0760: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 30 0A  \/._SB_PCI2ETP0.
    0770: 03 A0 4F 12 5B 12 5C 2F 03 5F 53 42 5F 50 43 49  ..O.[.\/._SB_PCI
    0780: 32 47 50 50 30 00 A0 49 06 92 93 4D 36 32 30 00  2GPP0..I...M620.
    0790: A0 4F 05 93 4D 30 34 39 4D 36 32 30 0A 10 01 A0  .O..M049M620....
    07A0: 40 05 93 7B 4D 30 34 39 4D 36 32 30 0A 52 0A 02  @..{M049M620.R..
    07B0: 00 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66  ..M460.    Notif
    07C0: 79 20 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50 50  y (\_SB.PCI2.GPP
    07D0: 30 2C 20 30 78 30 29 0A 00 00 00 00 00 00 00 86  0, 0x0).........
    07E0: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 30 00  \/._SB_PCI2GPP0.
    07F0: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    0800: 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50 50 30 2C  (\_SB.PCI2.GPP0,
    0810: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    0820: 03 5F 53 42 5F 50 43 49 32 47 50 50 30 0A 02 5B  ._SB_PCI2GPP0..[
    0830: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78  ".dpM017_BBN...x
    0840: 00 0A 20 60 A0 4C 05 92 93 7B 60 0C 00 00 03 00  .. `.L...{`.....
    0850: 00 00 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A  ..M018_BBN...x..
    0860: 20 60 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00   `pM017_BBN...x.
    0870: 0A 20 60 A0 2D 92 93 7B 60 0C 00 00 03 00 00 00  . `.-..{`.......
    0880: 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A 20 60  M018_BBN...x.. `
    0890: 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00 0A 20  pM017_BBN...x.. 
    08A0: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    08B0: 32 45 54 50 31 0A FF 70 7A 4D 30 31 37 5F 42 42  2ETP1..pzM017_BB
    08C0: 4E 01 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    08D0: 53 42 5F 50 43 49 32 45 54 50 31 A0 41 0F 91 93  SB_PCI2ETP1.A...
    08E0: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 31 01  \/._SB_PCI2ETP1.
    08F0: 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 31  .\/._SB_PCI2ETP1
    0900: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0910: 49 32 47 50 50 31 00 4D 34 36 30 0D 20 20 20 20  I2GPP1.M460.    
    0920: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0930: 32 2E 47 50 50 31 2C 20 30 78 32 29 0A 00 00 00  2.GPP1, 0x2)....
    0940: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    0950: 47 50 50 31 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP1..[".dpM017_
    0960: 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0970: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0980: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0990: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    09A0: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    09B0: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    09C0: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    09D0: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    09E0: 32 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 03  2..pzM017_BBN...
    09F0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0A00: 43 49 32 45 54 50 32 A0 41 0F 91 93 5C 2F 03 5F  CI2ETP2.A...\/._
    0A10: 53 42 5F 50 43 49 32 45 54 50 32 01 93 5C 2F 03  SB_PCI2ETP2..\/.
    0A20: 5F 53 42 5F 50 43 49 32 45 54 50 32 0A 03 A0 4A  _SB_PCI2ETP2...J
    0A30: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  .[.\/._SB_PCI2GP
    0A40: 50 32 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P2.M460.    Noti
    0A50: 66 79 20 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50  fy (\_SB.PCI2.GP
    0A60: 50 32 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P2, 0x2)........
    0A70: 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 32  .\/._SB_PCI2GPP2
    0A80: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0A90: 0A 03 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0AA0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AB0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AC0: 01 0A 03 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0AD0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AE0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AF0: 01 0A 03 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F  ....x.. `.K...\/
    0B00: 03 5F 53 42 5F 50 43 49 32 45 54 50 33 0A FF 70  ._SB_PCI2ETP3..p
    0B10: 7A 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78 00 0A  zM017_BBN....x..
    0B20: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45  ....\/._SB_PCI2E
    0B30: 54 50 33 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50  TP3.A...\/._SB_P
    0B40: 43 49 32 45 54 50 33 01 93 5C 2F 03 5F 53 42 5F  CI2ETP3..\/._SB_
    0B50: 50 43 49 32 45 54 50 33 0A 03 A0 4A 0C 5B 12 5C  PCI2ETP3...J.[.\
    0B60: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 33 00 4D  /._SB_PCI2GPP3.M
    0B70: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    0B80: 5C 5F 53 42 2E 50 43 49 32 2E 47 50 50 33 2C 20  \_SB.PCI2.GPP3, 
    0B90: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    0BA0: 5F 53 42 5F 50 43 49 32 47 50 50 33 0A 02 5B 22  _SB_PCI2GPP3..["
    0BB0: 0A 64 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78  .dpM017_BBN....x
    0BC0: 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00  .. `.@...{`.....
    0BD0: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0BE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0BF0: 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00  x.. `./..{`.....
    0C00: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0C10: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0C20: 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42  x.. `.K...\/._SB
    0C30: 5F 50 43 49 32 45 54 50 34 0A FF 70 7A 4D 30 31  _PCI2ETP4..pzM01
    0C40: 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 18 0A 10 00  7_BBN....x......
    0C50: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 34 A0  \/._SB_PCI2ETP4.
    0C60: 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45  A...\/._SB_PCI2E
    0C70: 54 50 34 01 93 5C 2F 03 5F 53 42 5F 50 43 49 32  TP4..\/._SB_PCI2
    0C80: 45 54 50 34 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53  ETP4...J.[.\/._S
    0C90: 42 5F 50 43 49 32 47 50 50 34 00 4D 34 36 30 0D  B_PCI2GPP4.M460.
    0CA0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    0CB0: 2E 50 43 49 32 2E 47 50 50 34 2C 20 30 78 32 29  .PCI2.GPP4, 0x2)
    0CC0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    0CD0: 50 43 49 32 47 50 50 34 0A 02 5B 22 0A 64 70 4D  PCI2GPP4..[".dpM
    0CE0: 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60  017_BBN....x.. `
    0CF0: A0 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  .@...{`.......M0
    0D00: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D10: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D20: 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  `./..{`.......M0
    0D30: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D40: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D50: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    0D60: 32 45 54 50 35 0A FF 70 7A 4D 30 31 37 5F 42 42  2ETP5..pzM017_BB
    0D70: 4E 01 0A 06 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    0D80: 53 42 5F 50 43 49 32 45 54 50 35 A0 41 0F 91 93  SB_PCI2ETP5.A...
    0D90: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 35 01  \/._SB_PCI2ETP5.
    0DA0: 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 35  .\/._SB_PCI2ETP5
    0DB0: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0DC0: 49 32 47 50 50 35 00 4D 34 36 30 0D 20 20 20 20  I2GPP5.M460.    
    0DD0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0DE0: 32 2E 47 50 50 35 2C 20 30 78 32 29 0A 00 00 00  2.GPP5, 0x2)....
    0DF0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    0E00: 47 50 50 35 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP5..[".dpM017_
    0E10: 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0E20: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E30: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E40: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    0E50: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E60: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E70: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    0E80: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    0E90: 36 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 07  6..pzM017_BBN...
    0EA0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0EB0: 43 49 32 45 54 50 36 A0 41 0F 91 93 5C 2F 03 5F  CI2ETP6.A...\/._
    0EC0: 53 42 5F 50 43 49 32 45 54 50 36 01 93 5C 2F 03  SB_PCI2ETP6..\/.
    0ED0: 5F 53 42 5F 50 43 49 32 45 54 50 36 0A 03 A0 4A  _SB_PCI2ETP6...J
    0EE0: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  .[.\/._SB_PCI2GP
    0EF0: 50 36 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P6.M460.    Noti
    0F00: 66 79 20 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50  fy (\_SB.PCI2.GP
    0F10: 50 36 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P6, 0x2)........
    0F20: 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 36  .\/._SB_PCI2GPP6
    0F30: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0F40: 0A 07 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0F50: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F60: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0F70: 01 0A 07 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0F80: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F90: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0FA0: 01 0A 07 0A 78 00 0A 20 60 A0 46 19 92 93 5C 2F  ....x.. `.F...\/
    0FB0: 03 5F 53 42 5F 50 43 49 32 45 54 50 37 0A FF 70  ._SB_PCI2ETP7..p
    0FC0: 7A 4D 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A  zM017_BBN....x..
    0FD0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45  ....\/._SB_PCI2E
    0FE0: 54 50 37 A0 4C 15 91 93 5C 2F 03 5F 53 42 5F 50  TP7.L...\/._SB_P
    0FF0: 43 49 32 45 54 50 37 01 93 5C 2F 03 5F 53 42 5F  CI2ETP7..\/._SB_
    1000: 50 43 49 32 45 54 50 37 0A 03 A0 45 13 5B 12 5C  PCI2ETP7...E.[.\
    1010: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 37 00 A0  /._SB_PCI2GPP7..
    1020: 4A 06 92 93 4D 36 32 30 00 A0 40 06 93 4D 30 34  J...M620..@..M04
    1030: 39 4D 36 32 30 0A 10 0A 02 A0 40 05 93 7B 4D 30  9M620.....@..{M0
    1040: 34 39 4D 36 32 30 0A 52 0A 02 00 00 4D 34 36 30  49M620.R....M460
    1050: 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53  .    Notify (\_S
    1060: 42 2E 50 43 49 32 2E 47 50 50 37 2C 20 30 78 30  B.PCI2.GPP7, 0x0
    1070: 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42  ).........\/._SB
    1080: 5F 50 43 49 32 47 50 50 37 00 4D 34 36 30 0D 20  _PCI2GPP7.M460. 
    1090: 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E     Notify (\_SB.
    10A0: 50 43 49 32 2E 47 50 50 37 2C 20 30 78 32 29 0A  PCI2.GPP7, 0x2).
    10B0: 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50  ........\/._SB_P
    10C0: 43 49 32 47 50 50 37 0A 02 5B 22 0A 64 70 4D 30  CI2GPP7..[".dpM0
    10D0: 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 A0  17_BBN....x.. `.
    10E0: 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  @...{`.......M01
    10F0: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1100: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1110: A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  ./..{`.......M01
    1120: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1130: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1140: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 32  .A...\/._SB_PCI2
    1150: 45 54 50 38 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETP8..pzM017_BBN
    1160: 0A 02 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1170: 53 42 5F 50 43 49 32 45 54 50 38 A0 46 0F 91 93  SB_PCI2ETP8.F...
    1180: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 38 01  \/._SB_PCI2ETP8.
    1190: 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 38  .\/._SB_PCI2ETP8
    11A0: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    11B0: 49 32 47 50 50 38 00 4D 34 36 30 0D 20 20 20 20  I2GPP8.M460.    
    11C0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    11D0: 32 2E 47 50 50 38 2C 20 30 78 32 29 0A 00 00 00  2.GPP8, 0x2)....
    11E0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    11F0: 47 50 50 38 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP8..[".dpM017_
    1200: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    1210: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1220: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    1230: 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    1240: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    1250: 38 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    1260: 4D 30 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A  M017_BBN.....x..
    1270: 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43   `.K...\/._SB_PC
    1280: 49 32 45 54 50 39 0A FF 70 7A 4D 30 31 37 5F 42  I2ETP9..pzM017_B
    1290: 42 4E 0A 03 01 0A 78 00 0A 18 0A 10 00 5C 2F 03  BN....x......\/.
    12A0: 5F 53 42 5F 50 43 49 32 45 54 50 39 A0 41 0F 91  _SB_PCI2ETP9.A..
    12B0: 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 39  .\/._SB_PCI2ETP9
    12C0: 01 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    12D0: 39 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50  9...J.[.\/._SB_P
    12E0: 43 49 32 47 50 50 39 00 4D 34 36 30 0D 20 20 20  CI2GPP9.M460.   
    12F0: 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43   Notify (\_SB.PC
    1300: 49 32 2E 47 50 50 39 2C 20 30 78 32 29 0A 00 00  I2.GPP9, 0x2)...
    1310: 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49  ......\/._SB_PCI
    1320: 32 47 50 50 39 0A 02 5B 22 0A 64 70 4D 30 31 37  2GPP9..[".dpM017
    1330: 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 40 06  _BBN....x.. `.@.
    1340: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1350: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1360: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 2F  7_BBN....x.. `./
    1370: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1380: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1390: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 41  7_BBN....x.. `.A
    13A0: 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54  ...\/._SB_PCI2ET
    13B0: 50 41 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 0A 03  PA..pzM017_BBN..
    13C0: 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42  ...x......\/._SB
    13D0: 5F 50 43 49 32 45 54 50 41 A0 46 0F 91 93 5C 2F  _PCI2ETPA.F...\/
    13E0: 03 5F 53 42 5F 50 43 49 32 45 54 50 41 01 93 5C  ._SB_PCI2ETPA..\
    13F0: 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 41 0A 03  /._SB_PCI2ETPA..
    1400: A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 32  .O.[.\/._SB_PCI2
    1410: 47 50 50 41 00 4D 34 36 30 0D 20 20 20 20 4E 6F  GPPA.M460.    No
    1420: 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49 32 2E  tify (\_SB.PCI2.
    1430: 47 50 50 41 2C 20 30 78 32 29 0A 00 00 00 00 00  GPPA, 0x2)......
    1440: 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  ...\/._SB_PCI2GP
    1450: 50 41 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42  PA..[".dpM017_BB
    1460: 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 44 06 92 93  N.....x.. `.D...
    1470: 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42 42  {`.......M018_BB
    1480: 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  N.....x.. `pM017
    1490: 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 31  _BBN.....x.. `.1
    14A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    14B0: 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    14C0: 31 37 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    14D0: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 32  .A...\/._SB_PCI2
    14E0: 45 54 50 42 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETPB..pzM017_BBN
    14F0: 0A 03 0A 03 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1500: 53 42 5F 50 43 49 32 45 54 50 42 A0 46 0F 91 93  SB_PCI2ETPB.F...
    1510: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 42 01  \/._SB_PCI2ETPB.
    1520: 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 42  .\/._SB_PCI2ETPB
    1530: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    1540: 49 32 47 50 50 42 00 4D 34 36 30 0D 20 20 20 20  I2GPPB.M460.    
    1550: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    1560: 32 2E 47 50 50 42 2C 20 30 78 32 29 0A 00 00 00  2.GPPB, 0x2)....
    1570: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    1580: 47 50 50 42 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPPB..[".dpM017_
    1590: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    15A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    15B0: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    15C0: 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60  17_BBN.....x.. `
    15D0: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    15E0: 38 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    15F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A  M017_BBN.....x..
    1600: 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43   `.A...\/._SB_PC
    1610: 49 32 45 54 50 43 0A FF 70 7A 4D 30 31 37 5F 42  I2ETPC..pzM017_B
    1620: 42 4E 0A 03 0A 04 0A 78 00 0A 18 0A 10 00 5C 2F  BN.....x......\/
    1630: 03 5F 53 42 5F 50 43 49 32 45 54 50 43 A0 46 0F  ._SB_PCI2ETPC.F.
    1640: 91 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    1650: 43 01 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54  C..\/._SB_PCI2ET
    1660: 50 43 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F  PC...O.[.\/._SB_
    1670: 50 43 49 32 47 50 50 43 00 4D 34 36 30 0D 20 20  PCI2GPPC.M460.  
    1680: 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50    Notify (\_SB.P
    1690: 43 49 32 2E 47 50 50 43 2C 20 30 78 32 29 0A 00  CI2.GPPC, 0x2)..
    16A0: 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43  .......\/._SB_PC
    16B0: 49 32 47 50 50 43 0A 02 5B 22 0A 64 70 4D 30 31  I2GPPC..[".dpM01
    16C0: 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 A0  7_BBN.....x.. `.
    16D0: 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  D...{`.......M01
    16E0: 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    16F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A  M017_BBN.....x..
    1700: 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D   `.1..{`.......M
    1710: 30 31 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20  018_BBN.....x.. 
    1720: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78  `pM017_BBN.....x
    1730: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1740: 50 43 49 32 45 54 50 44 0A FF 70 7A 4D 30 31 37  PCI2ETPD..pzM017
    1750: 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1760: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 44 A0  \/._SB_PCI2ETPD.
    1770: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45  F...\/._SB_PCI2E
    1780: 54 50 44 01 93 5C 2F 03 5F 53 42 5F 50 43 49 32  TPD..\/._SB_PCI2
    1790: 45 54 50 44 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ETPD...O.[.\/._S
    17A0: 42 5F 50 43 49 32 47 50 50 44 00 4D 34 36 30 0D  B_PCI2GPPD.M460.
    17B0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    17C0: 2E 50 43 49 32 2E 47 50 50 44 2C 20 30 78 32 29  .PCI2.GPPD, 0x2)
    17D0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    17E0: 50 43 49 32 47 50 50 44 0A 02 5B 22 0A 64 70 4D  PCI2GPPD..[".dpM
    17F0: 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  017_BBN.....x.. 
    1800: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1810: 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  018_BBN.....x.. 
    1820: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78  `pM017_BBN.....x
    1830: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1840: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00  .M018_BBN.....x.
    1850: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05  . `pM017_BBN....
    1860: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1870: 42 5F 50 43 49 32 45 54 50 45 0A FF 70 7A 4D 30  B_PCI2ETPE..pzM0
    1880: 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00 0A 18 0A  17_BBN.....x....
    1890: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    18A0: 45 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  E.F...\/._SB_PCI
    18B0: 32 45 54 50 45 01 93 5C 2F 03 5F 53 42 5F 50 43  2ETPE..\/._SB_PC
    18C0: 49 32 45 54 50 45 0A 03 A0 4F 0C 5B 12 5C 2F 03  I2ETPE...O.[.\/.
    18D0: 5F 53 42 5F 50 43 49 32 47 50 50 45 00 4D 34 36  _SB_PCI2GPPE.M46
    18E0: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    18F0: 53 42 2E 50 43 49 32 2E 47 50 50 45 2C 20 30 78  SB.PCI2.GPPE, 0x
    1900: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1910: 42 5F 50 43 49 32 47 50 50 45 0A 02 5B 22 0A 64  B_PCI2GPPE..[".d
    1920: 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00  pM017_BBN.....x.
    1930: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1940: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A 78 00  .M018_BBN.....x.
    1950: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06  . `pM017_BBN....
    1960: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1970: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A  ...M018_BBN.....
    1980: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1990: 0A 06 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    19A0: 5F 53 42 5F 50 43 49 32 45 54 50 46 0A FF 70 7A  _SB_PCI2ETPF..pz
    19B0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A 78 00 0A  M017_BBN.....x..
    19C0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45  ....\/._SB_PCI2E
    19D0: 54 50 46 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  TPF.F...\/._SB_P
    19E0: 43 49 32 45 54 50 46 01 93 5C 2F 03 5F 53 42 5F  CI2ETPF..\/._SB_
    19F0: 50 43 49 32 45 54 50 46 0A 03 A0 4F 0C 5B 12 5C  PCI2ETPF...O.[.\
    1A00: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 46 00 4D  /._SB_PCI2GPPF.M
    1A10: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    1A20: 5C 5F 53 42 2E 50 43 49 32 2E 47 50 50 46 2C 20  \_SB.PCI2.GPPF, 
    1A30: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    1A40: 5F 53 42 5F 50 43 49 32 47 50 50 46 0A 02 5B 22  _SB_PCI2GPPF..["
    1A50: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A  .dpM017_BBN.....
    1A60: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    1A70: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 07 0A  ...M018_BBN.....
    1A80: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1A90: 0A 07 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    1AA0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A  .....M018_BBN...
    1AB0: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    1AC0: 0A 03 0A 07 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    1AD0: 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 47 0A FF  /._SB_PCI2ETPG..
    1AE0: 70 7A 4D 30 31 37 5F 42 42 4E 0A 04 01 0A 78 00  pzM017_BBN....x.
    1AF0: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    1B00: 45 54 50 47 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ETPG.A...\/._SB_
    1B10: 50 43 49 32 45 54 50 47 01 93 5C 2F 03 5F 53 42  PCI2ETPG..\/._SB
    1B20: 5F 50 43 49 32 45 54 50 47 0A 03 A0 4A 0C 5B 12  _PCI2ETPG...J.[.
    1B30: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 47 00  \/._SB_PCI2GPPG.
    1B40: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    1B50: 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50 50 47 2C  (\_SB.PCI2.GPPG,
    1B60: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    1B70: 03 5F 53 42 5F 50 43 49 32 47 50 50 47 0A 02 5B  ._SB_PCI2GPPG..[
    1B80: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 04 01 0A  ".dpM017_BBN....
    1B90: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    1BA0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BB0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BC0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    1BD0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BE0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BF0: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1C00: 42 5F 50 43 49 32 45 54 50 48 0A FF 70 7A 4D 30  B_PCI2ETPH..pzM0
    1C10: 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    1C20: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    1C30: 48 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  H.F...\/._SB_PCI
    1C40: 32 45 54 50 48 01 93 5C 2F 03 5F 53 42 5F 50 43  2ETPH..\/._SB_PC
    1C50: 49 32 45 54 50 48 0A 03 A0 4F 0C 5B 12 5C 2F 03  I2ETPH...O.[.\/.
    1C60: 5F 53 42 5F 50 43 49 32 47 50 50 48 00 4D 34 36  _SB_PCI2GPPH.M46
    1C70: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    1C80: 53 42 2E 50 43 49 32 2E 47 50 50 48 2C 20 30 78  SB.PCI2.GPPH, 0x
    1C90: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1CA0: 42 5F 50 43 49 32 47 50 50 48 0A 02 5B 22 0A 64  B_PCI2GPPH..[".d
    1CB0: 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00  pM017_BBN.....x.
    1CC0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1CD0: 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A 78 00  .M018_BBN.....x.
    1CE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02  . `pM017_BBN....
    1CF0: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1D00: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A  ...M018_BBN.....
    1D10: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04  x.. `pM017_BBN..
    1D20: 0A 02 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03  ...x.. `.K...\/.
    1D30: 5F 53 42 5F 50 43 49 32 45 54 31 35 0A FF 70 7A  _SB_PCI2ET15..pz
    1D40: 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00 0A 18  M017_BBN....x...
    1D50: 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54  ...\/._SB_PCI2ET
    1D60: 31 35 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43  15.A...\/._SB_PC
    1D70: 49 32 45 54 31 35 01 93 5C 2F 03 5F 53 42 5F 50  I2ET15..\/._SB_P
    1D80: 43 49 32 45 54 31 35 0A 03 A0 4A 0C 5B 12 5C 2F  CI2ET15...J.[.\/
    1D90: 03 5F 53 42 5F 50 43 49 32 47 50 31 35 00 4D 34  ._SB_PCI2GP15.M4
    1DA0: 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C  60.    Notify (\
    1DB0: 5F 53 42 2E 50 43 49 32 2E 47 50 31 35 2C 20 30  _SB.PCI2.GP15, 0
    1DC0: 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F  x2).........\/._
    1DD0: 53 42 5F 50 43 49 32 47 50 31 35 0A 02 5B 22 0A  SB_PCI2GP15..[".
    1DE0: 64 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00  dpM017_BBN....x.
    1DF0: 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00 00  . `.@...{`......
    1E00: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E10: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E20: 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00  .. `./..{`......
    1E30: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E40: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E50: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1E60: 50 43 49 32 45 54 32 35 0A FF 70 7A 4D 30 31 37  PCI2ET25..pzM017
    1E70: 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1E80: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 32 35 A0  \/._SB_PCI2ET25.
    1E90: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45  F...\/._SB_PCI2E
    1EA0: 54 32 35 01 93 5C 2F 03 5F 53 42 5F 50 43 49 32  T25..\/._SB_PCI2
    1EB0: 45 54 32 35 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ET25...O.[.\/._S
    1EC0: 42 5F 50 43 49 32 47 50 32 35 00 4D 34 36 30 0D  B_PCI2GP25.M460.
    1ED0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    1EE0: 2E 50 43 49 32 2E 47 50 32 35 2C 20 30 78 32 29  .PCI2.GP25, 0x2)
    1EF0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    1F00: 50 43 49 32 47 50 32 35 0A 02 5B 22 0A 64 70 4D  PCI2GP25..[".dpM
    1F10: 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  017_BBN.....x.. 
    1F20: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1F30: 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  018_BBN.....x.. 
    1F40: 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78  `pM017_BBN.....x
    1F50: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1F60: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00  .M018_BBN.....x.
    1F70: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02  . `pM017_BBN....
    1F80: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1F90: 42 5F 50 43 49 32 45 54 33 35 0A FF 70 7A 4D 30  B_PCI2ET35..pzM0
    1FA0: 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00 0A 18 0A  17_BBN.....x....
    1FB0: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 33  ..\/._SB_PCI2ET3
    1FC0: 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  5.F...\/._SB_PCI
    1FD0: 32 45 54 33 35 01 93 5C 2F 03 5F 53 42 5F 50 43  2ET35..\/._SB_PC
    1FE0: 49 32 45 54 33 35 0A 03 A0 4F 0C 5B 12 5C 2F 03  I2ET35...O.[.\/.
    1FF0: 5F 53 42 5F 50 43 49 32 47 50 33 35 00 4D 34 36  _SB_PCI2GP35.M46
    2000: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    2010: 53 42 2E 50 43 49 32 2E 47 50 33 35 2C 20 30 78  SB.PCI2.GP35, 0x
    2020: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    2030: 42 5F 50 43 49 32 47 50 33 35 0A 02 5B 22 0A 64  B_PCI2GP35..[".d
    2040: 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00  pM017_BBN.....x.
    2050: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    2060: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A 78 00  .M018_BBN.....x.
    2070: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03  . `pM017_BBN....
    2080: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2090: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A  ...M018_BBN.....
    20A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    20B0: 0A 03 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    20C0: 5F 53 42 5F 50 43 49 32 45 54 34 35 0A FF 70 7A  _SB_PCI2ET45..pz
    20D0: 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A 78 00 0A  M017_BBN.....x..
    20E0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45  ....\/._SB_PCI2E
    20F0: 54 34 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  T45.F...\/._SB_P
    2100: 43 49 32 45 54 34 35 01 93 5C 2F 03 5F 53 42 5F  CI2ET45..\/._SB_
    2110: 50 43 49 32 45 54 34 35 0A 03 A0 4F 0C 5B 12 5C  PCI2ET45...O.[.\
    2120: 2F 03 5F 53 42 5F 50 43 49 32 47 50 34 35 00 4D  /._SB_PCI2GP45.M
    2130: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    2140: 5C 5F 53 42 2E 50 43 49 32 2E 47 50 34 35 2C 20  \_SB.PCI2.GP45, 
    2150: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    2160: 5F 53 42 5F 50 43 49 32 47 50 34 35 0A 02 5B 22  _SB_PCI2GP45..["
    2170: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A  .dpM017_BBN.....
    2180: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    2190: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 04 0A  ...M018_BBN.....
    21A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    21B0: 0A 04 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    21C0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A  .....M018_BBN...
    21D0: 04 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    21E0: 0A 05 0A 04 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    21F0: 2F 03 5F 53 42 5F 50 43 49 32 45 54 31 37 0A FF  /._SB_PCI2ET17..
    2200: 70 7A 4D 30 31 37 5F 42 42 4E 0A 07 01 0A 78 00  pzM017_BBN....x.
    2210: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    2220: 45 54 31 37 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ET17.A...\/._SB_
    2230: 50 43 49 32 45 54 31 37 01 93 5C 2F 03 5F 53 42  PCI2ET17..\/._SB
    2240: 5F 50 43 49 32 45 54 31 37 0A 03 A0 4A 0C 5B 12  _PCI2ET17...J.[.
    2250: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 31 37 00  \/._SB_PCI2GP17.
    2260: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    2270: 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50 31 37 2C  (\_SB.PCI2.GP17,
    2280: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    2290: 03 5F 53 42 5F 50 43 49 32 47 50 31 37 0A 02 5B  ._SB_PCI2GP17..[
    22A0: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 07 01 0A  ".dpM017_BBN....
    22B0: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    22C0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    22D0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    22E0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    22F0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    2300: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    2310: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    2320: 42 5F 50 43 49 32 45 54 32 37 0A FF 70 7A 4D 30  B_PCI2ET27..pzM0
    2330: 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    2340: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 32  ..\/._SB_PCI2ET2
    2350: 37 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  7.F...\/._SB_PCI
    2360: 32 45 54 32 37 01 93 5C 2F 03 5F 53 42 5F 50 43  2ET27..\/._SB_PC
    2370: 49 32 45 54 32 37 0A 03 A0 4F 0C 5B 12 5C 2F 03  I2ET27...O.[.\/.
    2380: 5F 53 42 5F 50 43 49 32 47 50 32 37 00 4D 34 36  _SB_PCI2GP27.M46
    2390: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    23A0: 53 42 2E 50 43 49 32 2E 47 50 32 37 2C 20 30 78  SB.PCI2.GP27, 0x
    23B0: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    23C0: 42 5F 50 43 49 32 47 50 32 37 0A 02 5B 22 0A 64  B_PCI2GP27..[".d
    23D0: 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00  pM017_BBN.....x.
    23E0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    23F0: 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A 78 00  .M018_BBN.....x.
    2400: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02  . `pM017_BBN....
    2410: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2420: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A  ...M018_BBN.....
    2430: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07  x.. `pM017_BBN..
    2440: 0A 02 0A 78 00 0A 20 60                          ...x.. `

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 87 23 00 00 02 0F 41 4D 44 00 00 00  SSDT.#....AMD...
    0010: 41 4F 44 20 20 20 20 20 01 00 00 00 49 4E 54 4C  AOD     ....INTL
    0020: 31 03 23 20 08 4F 42 49 44 12 44 39 C1 0A 40 0C  1.# .OBID.D9..@.
    0030: 01 00 04 00 0C 02 00 04 00 0C 27 00 02 00 0C 26  ..........'....&
    0040: 00 02 00 0C 01 00 02 00 0C 02 00 02 00 0C 06 00  ................
    0050: 02 00 0C 05 00 02 00 0C 09 00 02 00 0C 10 00 02  ................
    0060: 00 0C 0B 00 02 00 0C 15 00 02 00 0C 0F 00 02 00  ................
    0070: 0C 0E 00 02 00 0C 0D 00 02 00 0C 12 00 02 00 0C  ................
    0080: 11 00 02 00 0C 17 00 02 00 0C 16 00 02 00 0C 18  ................
    0090: 00 02 00 0C 19 00 02 00 0C 1B 00 02 00 0C 1A 00  ................
    00A0: 02 00 0C 1C 00 02 00 0C 1D 00 02 00 0C 1F 00 02  ................
    00B0: 00 0C 1E 00 02 00 0C 2D 00 02 00 0C 07 00 02 00  .......-........
    00C0: 0C 23 00 02 00 0C 24 00 02 00 0C 25 00 02 00 0C  .#....$....%....
    00D0: 36 00 02 00 0C 33 00 02 00 0C 35 00 02 00 0C 01  6....3....5.....
    00E0: 00 03 00 0C 31 00 02 00 0C 32 00 02 00 0C 34 00  ....1....2....4.
    00F0: 02 00 0C 30 00 02 00 0C 38 00 02 00 00 00 00 00  ...0....8.......
    0100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0110: 00 00 00 00 00 01 00 00 01 01 01 01 01 01 01 01  ................
    0120: 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00  ................
    0130: 01 01 00 01 00 00 01 00 01 01 01 01 00 00 00 00  ................
    0140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0150: 00 00 00 0D 43 6F 6D 6D 61 6E 64 20 42 75 66 66  ....Command Buff
    0160: 65 72 20 53 74 61 72 74 00 0D 43 6F 6D 6D 61 6E  er Start..Comman
    0170: 64 20 42 75 66 66 65 72 20 45 6E 64 00 0D 53 6F  d Buffer End..So
    0180: 66 74 77 61 72 65 20 44 6F 77 6E 63 6F 72 65 20  ftware Downcore 
    0190: 43 6F 6E 66 69 67 00 0D 53 65 74 20 53 4D 54 45  Config..Set SMTE
    01A0: 6E 00 0D 53 65 74 20 4D 65 6D 20 43 6C 6F 63 6B  n..Set Mem Clock
    01B0: 00 0D 53 65 74 20 54 63 6C 00 0D 53 65 74 20 54  ..Set Tcl..Set T
    01C0: 72 70 00 0D 53 65 74 20 54 72 61 73 00 0D 53 65  rp..Set Tras..Se
    01D0: 74 20 54 72 63 00 0D 53 65 74 20 54 77 72 00 0D  t Trc..Set Twr..
    01E0: 53 65 74 20 54 72 66 63 32 00 0D 53 65 74 20 54  Set Trfc2..Set T
    01F0: 72 74 70 00 0D 53 65 74 20 54 72 72 64 4C 00 0D  rtp..Set TrrdL..
    0200: 53 65 74 20 54 72 72 64 53 00 0D 53 65 74 20 54  Set TrrdS..Set T
    0210: 66 61 77 00 0D 53 65 74 20 54 77 74 72 4C 00 0D  faw..Set TwtrL..
    0220: 53 65 74 20 54 77 74 72 53 00 0D 53 65 74 20 54  Set TwtrS..Set T
    0230: 72 64 72 64 53 63 4C 00 0D 53 65 74 20 54 72 64  rdrdScL..Set Trd
    0240: 72 64 53 63 00 0D 53 65 74 20 54 72 64 72 64 53  rdSc..Set TrdrdS
    0250: 64 00 0D 53 65 74 20 54 72 64 72 64 44 64 00 0D  d..Set TrdrdDd..
    0260: 53 65 74 20 54 77 72 77 72 53 63 4C 00 0D 53 65  Set TwrwrScL..Se
    0270: 74 20 54 77 72 77 72 53 63 00 0D 53 65 74 20 54  t TwrwrSc..Set T
    0280: 77 72 77 72 53 64 00 0D 53 65 74 20 54 77 72 77  wrwrSd..Set Twrw
    0290: 72 44 64 00 0D 53 65 74 20 54 77 72 72 64 00 0D  rDd..Set Twrrd..
    02A0: 53 65 74 20 54 72 64 77 72 00 0D 53 65 74 20 43  Set Trdwr..Set C
    02B0: 61 64 42 75 73 41 64 64 72 43 6D 64 44 72 76 53  adBusAddrCmdDrvS
    02C0: 74 72 65 6E 00 0D 53 65 74 20 50 72 6F 63 4F 44  tren..Set ProcOD
    02D0: 54 00 0D 53 65 74 20 52 74 74 57 72 00 0D 53 65  T..Set RttWr..Se
    02E0: 74 20 52 74 74 50 61 72 6B 00 0D 53 65 74 20 50  t RttPark..Set P
    02F0: 6F 77 65 72 44 77 6F 6E 45 6E 00 0D 53 65 74 20  owerDwonEn..Set 
    0300: 43 43 4C 4B 20 46 6D 61 78 00 0D 53 65 74 20 46  CCLK Fmax..Set F
    0310: 43 4C 4B 20 4F 43 20 4D 6F 64 65 00 0D 53 65 74  CLK OC Mode..Set
    0320: 20 46 43 4C 4B 20 46 72 65 71 75 65 6E 63 79 00   FCLK Frequency.
    0330: 0D 53 65 74 20 56 44 44 49 4F 00 0D 53 65 74 20  .Set VDDIO..Set 
    0340: 49 6E 74 65 72 6C 65 61 76 65 20 4D 6F 64 65 00  Interleave Mode.
    0350: 0D 53 65 74 20 49 6E 74 65 72 6C 65 61 76 65 20  .Set Interleave 
    0360: 53 69 7A 65 00 0D 53 65 74 20 53 4F 43 20 56 49  Size..Set SOC VI
    0370: 44 00 0D 53 65 74 20 43 4C 44 4F 5F 56 44 44 50  D..Set CLDO_VDDP
    0380: 00 0D 53 65 74 20 43 4C 44 4F 20 56 44 44 47 00  ..Set CLDO VDDG.
    0390: 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00  ................
    03A0: 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00  ................
    03B0: 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 08 4F  ...............O
    03C0: 42 49 45 12 4F 32 C1 0A 40 0C 03 00 01 00 0C 04  BIE.O2..@.......
    03D0: 00 01 00 0C 05 00 01 00 0C 06 00 01 00 0C 07 00  ................
    03E0: 01 00 0C 08 00 01 00 0C 0A 00 05 00 0C 3B 00 02  .............;..
    03F0: 00 0C 3C 00 02 00 0C 3D 00 02 00 0C 41 00 02 00  ..<....=....A...
    0400: 0C 42 00 02 00 0C 3E 00 02 00 0C 3F 00 02 00 0C  .B....>....?....
    0410: 40 00 02 00 0C 01 00 05 00 0C 02 00 05 00 0C 03  @...............
    0420: 00 05 00 0C 04 00 05 00 0C 07 00 03 00 0C 03 00  ................
    0430: 03 00 0C 04 00 03 00 0C 43 00 02 00 0C 06 00 03  ........C.......
    0440: 00 0C 0B 00 05 00 0C 44 00 02 00 0C 48 00 02 00  .......D....H...
    0450: 0C 06 00 05 00 0C 01 00 06 00 0C 08 00 05 00 00  ................
    0460: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0470: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0480: 00 01 01 01 01 01 01 01 01 01 01 00 00 01 01 01  ................
    0490: 01 01 01 01 01 01 01 01 01 01 00 00 00 01 00 00  ................
    04A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04C0: 00 0D 47 65 74 20 4F 43 20 44 69 73 61 62 6C 65  ..Get OC Disable
    04D0: 00 0D 47 65 74 20 4F 43 20 56 6F 6C 74 61 67 65  ..Get OC Voltage
    04E0: 20 4D 61 78 00 0D 47 65 74 20 4F 43 20 46 72 65   Max..Get OC Fre
    04F0: 71 75 65 6E 63 79 20 4D 61 78 00 0D 47 65 74 20  quency Max..Get 
    0500: 47 46 58 20 4F 43 20 56 6F 6C 74 61 67 65 20 4D  GFX OC Voltage M
    0510: 61 78 00 0D 47 65 74 20 47 46 58 20 4F 43 20 46  ax..Get GFX OC F
    0520: 72 65 71 75 65 6E 63 79 20 4D 61 78 00 0D 47 65  requency Max..Ge
    0530: 74 20 49 6E 74 65 72 6C 65 76 61 69 6E 67 20 43  t Interlevaing C
    0540: 61 70 00 0D 53 65 74 20 43 75 72 76 65 20 4F 70  ap..Set Curve Op
    0550: 74 69 6D 69 7A 65 72 00 0D 53 65 74 20 54 72 63  timizer..Set Trc
    0560: 64 00 0D 53 65 74 20 54 72 66 63 31 00 0D 53 65  d..Set Trfc1..Se
    0570: 74 20 54 72 66 63 53 62 00 0D 53 65 74 20 50 72  t TrfcSb..Set Pr
    0580: 6F 63 44 61 74 61 44 72 69 76 65 53 74 72 65 6E  ocDataDriveStren
    0590: 67 74 68 00 0D 53 65 74 20 44 52 41 4D 44 61 74  gth..Set DRAMDat
    05A0: 61 44 72 69 76 65 53 74 72 65 6E 67 74 68 00 0D  aDriveStrength..
    05B0: 53 65 74 20 52 74 74 4E 6F 6D 57 72 00 0D 53 65  Set RttNomWr..Se
    05C0: 74 20 52 74 74 4E 6F 6D 52 64 00 0D 53 65 74 20  t RttNomRd..Set 
    05D0: 52 74 74 50 61 72 6B 44 71 73 00 0D 53 65 74 20  RttParkDqs..Set 
    05E0: 50 50 54 20 4C 69 6D 69 74 00 0D 53 65 74 20 54  PPT Limit..Set T
    05F0: 44 43 20 4C 69 6D 69 74 00 0D 53 65 74 20 45 44  DC Limit..Set ED
    0600: 43 20 4C 69 6D 69 74 00 0D 53 65 74 20 53 63 61  C Limit..Set Sca
    0610: 6C 61 72 00 0D 53 65 74 20 44 49 4D 4D 20 56 44  lar..Set DIMM VD
    0620: 44 51 00 0D 53 65 74 20 56 50 50 00 0D 53 65 74  DQ..Set VPP..Set
    0630: 20 41 50 55 20 56 44 44 49 4F 00 0D 53 65 74 20   APU VDDIO..Set 
    0640: 4C 43 4C 4B 20 46 72 65 71 00 0D 53 65 74 20 56  LCLK Freq..Set V
    0650: 44 44 5F 4D 49 53 43 00 0D 53 65 74 20 56 44 44  DD_MISC..Set VDD
    0660: 47 20 49 4F 44 00 0D 53 65 74 20 55 43 4C 4B 20  G IOD..Set UCLK 
    0670: 44 49 56 31 00 0D 52 65 73 65 74 20 4D 65 6D 20  DIV1..Reset Mem 
    0680: 50 61 72 61 00 0D 53 65 74 20 47 61 6D 65 20 4D  Para..Set Game M
    0690: 6F 64 65 00 0D 53 65 74 20 4F 43 20 46 75 73 65  ode..Set OC Fuse
    06A0: 00 0D 53 65 74 20 4E 50 53 20 4D 6F 64 65 00 0D  ..Set NPS Mode..
    06B0: 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D  ................
    06C0: 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D  ................
    06D0: 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D  ................
    06E0: 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D  ................
    06F0: 00 0D 00 08 4F 42 49 54 12 48 BD 46 0A 45 12 2B  ....OBIT.H.F.E.+
    0700: 04 0C 08 00 05 00 00 0A 46 11 20 0B 9C 01 08 00  ........F. .....
    0710: 05 00 01 00 00 00 04 00 00 00 01 00 00 00 02 00  ................
    0720: 00 00 03 00 00 00 FF 00 00 00 12 22 04 0C 01 00  ..........."....
    0730: 06 00 01 0A 45 11 17 0A 14 01 00 06 00 01 00 00  ....E...........
    0740: 00 00 00 00 00 07 00 00 00 01 00 00 00 12 23 04  ..............#.
    0750: 0C 06 00 05 00 00 0A 44 11 18 0B 9C 01 06 00 05  .......D........
    0760: 00 00 00 00 00 02 00 00 00 00 00 00 00 01 00 00  ................
    0770: 00 12 1F 04 0C 48 00 02 00 00 0A 43 11 14 0B 9C  .....H.....C....
    0780: 01 48 00 02 00 00 00 00 00 01 00 00 00 01 00 00  .H..............
    0790: 00 12 23 04 0C 44 00 02 00 00 0A 42 11 18 0B 9C  ..#..D.....B....
    07A0: 01 44 00 02 00 01 00 00 00 02 00 00 00 00 00 00  .D..............
    07B0: 00 01 00 00 00 12 22 04 0C 0B 00 05 00 01 0A 41  ......"........A
    07C0: 11 17 0A 14 0B 00 05 00 00 00 00 00 58 02 00 00  ............X...
    07D0: DC 05 00 00 0A 00 00 00 12 22 04 0C 38 00 02 00  ........."..8...
    07E0: 01 0A 40 11 17 0A 14 38 00 02 00 00 00 00 00 58  ..@....8.......X
    07F0: 02 00 00 DC 05 00 00 0A 00 00 00 12 22 04 0C 06  ............"...
    0800: 00 03 00 01 0A 3F 11 17 0A 14 06 00 03 00 00 00  .....?..........
    0810: 00 00 F4 01 00 00 E0 15 00 00 0A 00 00 00 12 22  ..............."
    0820: 04 0C 43 00 02 00 01 0A 3E 11 17 0A 14 43 00 02  ..C.....>....C..
    0830: 00 00 00 00 00 79 03 00 00 C4 09 00 00 01 00 00  .....y..........
    0840: 00 12 22 04 0C 30 00 02 00 01 0A 3D 11 17 0A 14  .."..0.....=....
    0850: 30 00 02 00 00 00 00 00 00 00 00 00 D0 07 00 00  0...............
    0860: 01 00 00 00 12 22 04 0C 34 00 02 00 01 0A 3C 11  ....."..4.....<.
    0870: 17 0A 14 34 00 02 00 00 00 00 00 00 00 00 00 D3  ...4............
    0880: 00 00 00 01 00 00 00 12 22 04 0C 32 00 02 00 01  ........"..2....
    0890: 0A 3B 11 17 0A 14 32 00 02 00 00 00 00 00 00 00  .;....2.........
    08A0: 00 00 03 00 00 00 01 00 00 00 12 1F 04 0C 31 00  ..............1.
    08B0: 02 00 00 0A 3A 11 14 0B 9C 01 31 00 02 00 00 00  ....:.....1.....
    08C0: 00 00 01 00 00 00 00 00 00 00 12 22 04 0C 04 00  ..........."....
    08D0: 03 00 01 0A 39 11 17 0A 14 04 00 03 00 00 00 00  ....9...........
    08E0: 00 BC 02 00 00 6C 0A 00 00 02 00 00 00 12 22 04  .....l........".
    08F0: 0C 03 00 03 00 01 0A 38 11 17 0A 14 03 00 03 00  .......8........
    0900: 08 07 00 00 DC 05 00 00 52 08 00 00 0A 00 00 00  ........R.......
    0910: 12 22 04 0C 07 00 03 00 01 0A 37 11 17 0A 14 07  ."........7.....
    0920: 00 03 00 4C 04 00 00 20 03 00 00 96 05 00 00 0A  ...L... ........
    0930: 00 00 00 12 22 04 0C 01 00 03 00 01 0A 36 11 17  ...."........6..
    0940: 0A 14 01 00 03 00 4C 04 00 00 20 03 00 00 96 05  ......L... .....
    0950: 00 00 0A 00 00 00 12 45 15 04 0C 35 00 02 00 00  .......E...5....
    0960: 0A 35 11 49 14 0B 9C 01 35 00 02 00 00 00 00 00  .5.I....5.......
    0970: 4E 00 00 00 64 00 00 00 C8 00 00 00 4D 01 00 00  N...d.......M...
    0980: 90 01 00 00 F4 01 00 00 15 02 00 00 9B 02 00 00  ................
    0990: 20 03 00 00 A5 03 00 00 1A 04 00 00 2A 04 00 00   ...........*...
    09A0: 2B 04 00 00 4C 04 00 00 60 04 00 00 77 04 00 00  +...L...`...w...
    09B0: B0 04 00 00 E2 04 00 00 E9 04 00 00 00 05 00 00  ................
    09C0: 14 05 00 00 28 05 00 00 35 05 00 00 57 05 00 00  ....(...5...W...
    09D0: 5B 05 00 00 78 05 00 00 99 05 00 00 A0 05 00 00  [...x...........
    09E0: BB 05 00 00 CD 05 00 00 DC 05 00 00 FD 05 00 00  ................
    09F0: 18 06 00 00 1F 06 00 00 40 06 00 00 61 06 00 00  ........@...a...
    0A00: 72 06 00 00 83 06 00 00 90 06 00 00 A4 06 00 00  r...............
    0A10: C5 06 00 00 D6 06 00 00 E0 06 00 00 E7 06 00 00  ................
    0A20: 08 07 00 00 29 07 00 00 4B 07 00 00 6C 07 00 00  ....)...K...l...
    0A30: 80 07 00 00 8D 07 00 00 9E 07 00 00 A8 07 00 00  ................
    0A40: AF 07 00 00 D0 07 00 00 F1 07 00 00 13 08 00 00  ................
    0A50: 34 08 00 00 55 08 00 00 77 08 00 00 98 08 00 00  4...U...w.......
    0A60: B9 08 00 00 DB 08 00 00 FC 08 00 00 1D 09 00 00  ................
    0A70: 3F 09 00 00 60 09 00 00 81 09 00 00 A3 09 00 00  ?...`...........
    0A80: C4 09 00 00 F6 09 00 00 28 0A 00 00 5A 0A 00 00  ........(...Z...
    0A90: 8C 0A 00 00 BE 0A 00 00 F0 0A 00 00 22 0B 00 00  ............"...
    0AA0: 54 0B 00 00 86 0B 00 00 B8 0B 00 00 12 23 04 0C  T............#..
    0AB0: 33 00 02 00 00 0A 34 11 18 0B 9C 01 33 00 02 00  3.....4.....3...
    0AC0: 00 00 00 00 02 00 00 00 00 00 00 00 01 00 00 00  ................
    0AD0: 12 22 04 0C 36 00 02 00 01 0A 33 11 17 0A 14 36  ."..6.....3....6
    0AE0: 00 02 00 00 00 00 00 2A 12 00 00 DA 16 00 00 19  .......*........
    0AF0: 00 00 00 12 22 04 0C 04 00 05 00 01 0A 32 11 17  ...."........2..
    0B00: 0A 14 04 00 05 00 00 00 00 00 00 00 00 00 E8 03  ................
    0B10: 00 00 64 00 00 00 12 22 04 0C 03 00 05 00 01 0A  ..d...."........
    0B20: 31 11 17 0A 14 03 00 05 00 00 00 00 00 00 00 00  1...............
    0B30: 00 20 A1 07 00 01 00 00 00 12 22 04 0C 02 00 05  . ........".....
    0B40: 00 01 0A 30 11 17 0A 14 02 00 05 00 00 00 00 00  ...0............
    0B50: 00 00 00 00 E0 04 07 00 01 00 00 00 12 22 04 0C  ............."..
    0B60: 01 00 05 00 01 0A 2F 11 17 0A 14 01 00 05 00 00  ....../.........
    0B70: 00 00 00 00 00 00 00 80 84 1E 00 01 00 00 00 12  ................
    0B80: 23 04 0C 25 00 02 00 00 0A 2E 11 18 0B 9C 01 25  #..%...........%
    0B90: 00 02 00 00 00 00 00 02 00 00 00 01 00 00 00 00  ................
    0BA0: 00 00 00 12 22 04 0C 40 00 02 00 01 0A 2D 11 17  ...."..@.....-..
    0BB0: 0A 14 40 00 02 00 03 00 00 00 00 00 00 00 07 00  ..@.............
    0BC0: 00 00 01 00 00 00 12 22 04 0C 24 00 02 00 01 0A  ......."..$.....
    0BD0: 2C 11 17 0A 14 24 00 02 00 04 00 00 00 00 00 00  ,....$..........
    0BE0: 00 07 00 00 00 01 00 00 00 12 22 04 0C 23 00 02  .........."..#..
    0BF0: 00 01 0A 2B 11 17 0A 14 23 00 02 00 01 00 00 00  ...+....#.......
    0C00: 00 00 00 00 07 00 00 00 01 00 00 00 12 22 04 0C  ............."..
    0C10: 3F 00 02 00 01 0A 2A 11 17 0A 14 3F 00 02 00 00  ?.....*....?....
    0C20: 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 12  ................
    0C30: 22 04 0C 3E 00 02 00 01 0A 29 11 17 0A 14 3E 00  "..>.....)....>.
    0C40: 02 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00  ................
    0C50: 00 00 12 27 04 0C 42 00 02 00 00 0A 28 11 1C 0B  ...'..B.....(...
    0C60: 9C 01 42 00 02 00 00 00 00 00 03 00 00 00 00 00  ..B.............
    0C70: 00 00 01 00 00 00 02 00 00 00 12 4D 06 04 0C 07  ...........M....
    0C80: 00 02 00 00 0A 27 11 41 06 0B 9C 01 07 00 02 00  .....'.A........
    0C90: 07 00 00 00 14 00 00 00 00 00 00 00 01 00 00 00  ................
    0CA0: 02 00 00 00 03 00 00 00 04 00 00 00 05 00 00 00  ................
    0CB0: 06 00 00 00 07 00 00 00 0C 00 00 00 0D 00 00 00  ................
    0CC0: 0E 00 00 00 0F 00 00 00 1C 00 00 00 1D 00 00 00  ................
    0CD0: 1E 00 00 00 1F 00 00 00 3C 00 00 00 3D 00 00 00  ........<...=...
    0CE0: 3E 00 00 00 3F 00 00 00 12 3B 04 0C 41 00 02 00  >...?....;..A...
    0CF0: 00 0A 26 11 30 0B 9C 01 41 00 02 00 1E 00 00 00  ..&.0...A.......
    0D00: 08 00 00 00 00 00 00 00 02 00 00 00 04 00 00 00  ................
    0D10: 06 00 00 00 0C 00 00 00 0E 00 00 00 1C 00 00 00  ................
    0D20: 1E 00 00 00 12 2B 04 0C 2D 00 02 00 00 0A 25 11  .....+..-.....%.
    0D30: 20 0B 9C 01 2D 00 02 00 28 00 00 00 04 00 00 00   ...-...(.......
    0D40: 1E 00 00 00 28 00 00 00 3C 00 00 00 78 00 00 00  ....(...<...x...
    0D50: 12 22 04 0C 1E 00 02 00 01 0A 24 11 17 0A 14 1E  ."........$.....
    0D60: 00 02 00 13 00 00 00 01 00 00 00 1F 00 00 00 01  ................
    0D70: 00 00 00 12 22 04 0C 1F 00 02 00 01 0A 23 11 17  ...."........#..
    0D80: 0A 14 1F 00 02 00 05 00 00 00 01 00 00 00 0F 00  ................
    0D90: 00 00 01 00 00 00 12 22 04 0C 1D 00 02 00 01 0A  ......."........
    0DA0: 22 11 17 0A 14 1D 00 02 00 09 00 00 00 01 00 00  "...............
    0DB0: 00 0F 00 00 00 01 00 00 00 12 22 04 0C 1C 00 02  ..........".....
    0DC0: 00 01 0A 21 11 17 0A 14 1C 00 02 00 09 00 00 00  ...!............
    0DD0: 01 00 00 00 0F 00 00 00 01 00 00 00 12 22 04 0C  ............."..
    0DE0: 1A 00 02 00 01 0A 20 11 17 0A 14 1A 00 02 00 01  ...... .........
    0DF0: 00 00 00 01 00 00 00 0F 00 00 00 01 00 00 00 12  ................
    0E00: 22 04 0C 1B 00 02 00 01 0A 1F 11 17 0A 14 1B 00  "...............
    0E10: 02 00 29 00 00 00 01 00 00 00 3F 00 00 00 01 00  ..).......?.....
    0E20: 00 00 12 22 04 0C 19 00 02 00 01 0A 1E 11 17 0A  ..."............
    0E30: 14 19 00 02 00 08 00 00 00 01 00 00 00 0F 00 00  ................
    0E40: 00 01 00 00 00 12 22 04 0C 18 00 02 00 01 0A 1D  ......".........
    0E50: 11 17 0A 14 18 00 02 00 08 00 00 00 01 00 00 00  ................
    0E60: 0F 00 00 00 01 00 00 00 12 22 04 0C 16 00 02 00  ........."......
    0E70: 01 0A 1C 11 17 0A 14 16 00 02 00 01 00 00 00 01  ................
    0E80: 00 00 00 0F 00 00 00 01 00 00 00 12 22 04 0C 17  ............"...
    0E90: 00 02 00 01 0A 1B 11 17 0A 14 17 00 02 00 05 00  ................
    0EA0: 00 00 01 00 00 00 0F 00 00 00 01 00 00 00 12 22  ..............."
    0EB0: 04 0C 11 00 02 00 01 0A 1A 11 17 0A 14 11 00 02  ................
    0EC0: 00 06 00 00 00 02 00 00 00 10 00 00 00 01 00 00  ................
    0ED0: 00 12 22 04 0C 12 00 02 00 01 0A 19 11 17 0A 14  ..".............
    0EE0: 12 00 02 00 18 00 00 00 02 00 00 00 30 00 00 00  ............0...
    0EF0: 01 00 00 00 12 22 04 0C 0D 00 02 00 01 0A 18 11  ....."..........
    0F00: 17 0A 14 0D 00 02 00 20 00 00 00 06 00 00 00 50  ....... .......P
    0F10: 00 00 00 01 00 00 00 12 22 04 0C 0E 00 02 00 01  ........".......
    0F20: 0A 17 11 17 0A 14 0E 00 02 00 08 00 00 00 04 00  ................
    0F30: 00 00 14 00 00 00 01 00 00 00 12 22 04 0C 0F 00  ..........."....
    0F40: 02 00 01 0A 16 11 17 0A 14 0F 00 02 00 0C 00 00  ................
    0F50: 00 04 00 00 00 20 00 00 00 01 00 00 00 12 22 04  ..... ........".
    0F60: 0C 15 00 02 00 01 0A 15 11 17 0A 14 15 00 02 00  ................
    0F70: 12 00 00 00 05 00 00 00 1F 00 00 00 01 00 00 00  ................
    0F80: 12 22 04 0C 3D 00 02 00 01 0A 14 11 17 0A 14 3D  ."..=..........=
    0F90: 00 02 00 38 01 00 00 32 00 00 00 FF 07 00 00 01  ...8...2........
    0FA0: 00 00 00 12 22 04 0C 0B 00 02 00 01 0A 13 11 17  ...."...........
    0FB0: 0A 14 0B 00 02 00 80 01 00 00 32 00 00 00 FF 0F  ..........2.....
    0FC0: 00 00 01 00 00 00 12 22 04 0C 3C 00 02 00 01 0A  ......."..<.....
    0FD0: 12 11 17 0A 14 3C 00 02 00 C4 02 00 00 32 00 00  .....<.......2..
    0FE0: 00 FF 0F 00 00 01 00 00 00 12 22 04 0C 10 00 02  ..........".....
    0FF0: 00 01 0A 11 11 17 0A 14 10 00 02 00 48 00 00 00  ............H...
    1000: 30 00 00 00 84 00 00 00 06 00 00 00 12 22 04 0C  0............"..
    1010: 09 00 02 00 01 0A 10 11 17 0A 14 09 00 02 00 74  ...............t
    1020: 00 00 00 1D 00 00 00 FF 00 00 00 01 00 00 00 12  ................
    1030: 22 04 0C 05 00 02 00 01 0A 0F 11 17 0A 14 05 00  "...............
    1040: 02 00 4D 00 00 00 15 00 00 00 7E 00 00 00 01 00  ..M.......~.....
    1050: 00 00 12 22 04 0C 06 00 02 00 01 0A 0E 11 17 0A  ..."............
    1060: 14 06 00 02 00 27 00 00 00 08 00 00 00 3E 00 00  .....'.......>..
    1070: 00 01 00 00 00 12 22 04 0C 3B 00 02 00 01 0A 0D  ......"..;......
    1080: 11 17 0A 14 3B 00 02 00 27 00 00 00 08 00 00 00  ....;...'.......
    1090: 3E 00 00 00 01 00 00 00 12 22 04 0C 02 00 02 00  >........"......
    10A0: 01 0A 0C 11 17 0A 14 02 00 02 00 28 00 00 00 16  ...........(....
    10B0: 00 00 00 3E 00 00 00 02 00 00 00 12 49 0D 04 0C  ...>........I...
    10C0: 01 00 02 00 00 0A 0B 11 4D 0C 0B 9C 01 01 00 02  ........M.......
    10D0: 00 60 09 00 00 2F 00 00 00 E8 03 00 00 B0 04 00  .`.../..........
    10E0: 00 40 06 00 00 A4 06 00 00 08 07 00 00 6C 07 00  .@...........l..
    10F0: 00 D0 07 00 00 34 08 00 00 98 08 00 00 FC 08 00  .....4..........
    1100: 00 60 09 00 00 C4 09 00 00 28 0A 00 00 8C 0A 00  .`.......(......
    1110: 00 F0 0A 00 00 54 0B 00 00 B8 0B 00 00 1C 0C 00  .....T..........
    1120: 00 80 0C 00 00 E4 0C 00 00 48 0D 00 00 AC 0D 00  .........H......
    1130: 00 10 0E 00 00 74 0E 00 00 D8 0E 00 00 3C 0F 00  .....t.......<..
    1140: 00 A0 0F 00 00 04 10 00 00 68 10 00 00 CC 10 00  .........h......
    1150: 00 30 11 00 00 94 11 00 00 F8 11 00 00 5C 12 00  .0...........\..
    1160: 00 C0 12 00 00 24 13 00 00 88 13 00 00 EC 13 00  .....$..........
    1170: 00 50 14 00 00 B4 14 00 00 18 15 00 00 7C 15 00  .P...........|..
    1180: 00 E0 15 00 00 44 16 00 00 A8 16 00 00 0C 17 00  .....D..........
    1190: 00 70 17 00 00 12 23 04 0C 26 00 02 00 00 0A 0A  .p....#..&......
    11A0: 11 18 0B 9C 01 26 00 02 00 01 00 00 00 02 00 00  .....&..........
    11B0: 00 00 00 00 00 01 00 00 00 12 22 04 0C 0A 00 05  ..........".....
    11C0: 00 01 0A 09 11 17 0A 14 0A 00 05 00 00 00 00 00  ................
    11D0: 00 00 00 00 32 00 00 00 01 00 00 00 12 22 04 0C  ....2........"..
    11E0: 27 00 02 00 01 0A 08 11 17 0A 14 27 00 02 00 00  '..........'....
    11F0: 00 00 00 00 00 00 00 FF FF FF FF 01 00 00 00 12  ................
    1200: 22 04 0C 08 00 01 00 01 0A 07 11 17 0A 14 08 00  "...............
    1210: 01 00 00 00 00 00 00 00 00 00 FF FF FF FF 01 00  ................
    1220: 00 00 12 22 04 0C 07 00 01 00 01 0A 06 11 17 0A  ..."............
    1230: 14 07 00 01 00 00 00 00 00 00 00 00 00 FF FF FF  ................
    1240: FF 01 00 00 00 12 22 04 0C 06 00 01 00 01 0A 05  ......".........
    1250: 11 17 0A 14 06 00 01 00 F0 0A 00 00 00 00 00 00  ................
    1260: FF FF FF FF 01 00 00 00 12 22 04 0C 05 00 01 00  ........."......
    1270: 01 0A 04 11 17 0A 14 05 00 01 00 00 00 00 00 00  ................
    1280: 00 00 00 FF FF FF FF 01 00 00 00 12 22 04 0C 04  ............"...
    1290: 00 01 00 01 0A 03 11 17 0A 14 04 00 01 00 F0 0A  ................
    12A0: 00 00 00 00 00 00 FF FF FF FF 01 00 00 00 12 22  ..............."
    12B0: 04 0C 03 00 01 00 01 0A 02 11 17 0A 14 03 00 01  ................
    12C0: 00 00 00 00 00 00 00 00 00 FF FF FF FF 01 00 00  ................
    12D0: 00 A0 1A 00 15 5C 4F 42 49 44 04 00 15 5C 4F 42  .....\OBID...\OB
    12E0: 49 45 04 00 15 5C 4F 42 49 54 04 00 10 8A 09 01  IE...\OBIT......
    12F0: 5C 00 08 47 46 30 31 00 08 41 53 4D 49 0B B2 00  \..GF01..ASMI...
    1300: 08 49 53 4D 49 0A 9D 08 41 4F 44 56 0A 06 5B 80  .ISMI...AODV..[.
    1310: 41 4F 44 45 00 0C 18 F0 45 A9 0B AC 24 5B 81 35  AODE....E...$[.5
    1320: 41 4F 44 45 00 4F 55 54 42 40 62 41 51 56 53 20  AODE.OUTB@bAQVS 
    1330: 53 43 4D 49 20 53 43 4D 44 20 44 53 50 44 80 A2  SCMI SCMD DSPD..
    1340: 10 52 45 53 56 40 06 52 4D 50 44 40 46 57 43 4E  .RESV@.RMPD@FWCN
    1350: 53 80 00 01 5B 82 81 03 01 41 4F 44 5F 08 5F 48  S...[....AOD_._H
    1360: 49 44 0C 41 D0 0C 14 08 5F 55 49 44 0D 41 4F 44  ID.A...._UID.AOD
    1370: 00 14 15 41 4D 30 31 00 70 41 51 56 53 41 4F 44  ...AM01.pAQVSAOD
    1380: 56 A4 5C 41 4F 44 56 14 16 41 4D 30 32 00 A0 0D  V.\AODV..AM02...
    1390: 93 47 46 30 31 00 70 01 47 46 30 31 A4 00 14 0C  .GF01.p.GF01....
    13A0: 41 4D 30 33 00 A4 5C 4F 42 49 44 14 44 0B 41 4D  AM03..\OBID.D.AM
    13B0: 30 34 01 08 4C 4F 44 54 11 05 0B 9C 01 00 08 54  04..LODT.......T
    13C0: 45 4D 50 11 05 0B 00 02 00 70 68 60 70 83 88 5C  EMP......ph`p..\
    13D0: 4F 42 49 54 00 00 61 70 01 62 A2 40 08 92 94 62  OBIT..ap.b.@...b
    13E0: 61 70 83 88 83 88 5C 4F 42 49 54 62 00 00 00 63  ap....\OBITb...c
    13F0: 70 83 88 83 88 5C 4F 42 49 54 62 00 01 00 64 A0  p....\OBITb...d.
    1400: 49 05 90 93 63 60 93 64 00 70 83 88 83 88 5C 4F  I...c`.d.p....\O
    1410: 42 49 54 62 00 0A 03 00 4C 4F 44 54 70 57 43 4E  BITb....LODTpWCN
    1420: 53 54 45 4D 50 70 83 88 83 88 5C 4F 42 49 54 62  STEMPp....\OBITb
    1430: 00 0A 02 00 65 77 65 0A 04 65 8A 54 45 4D 50 65  ....ewe..e.TEMPe
    1440: 54 45 4D 31 8A 4C 4F 44 54 0A 04 43 52 55 54 70  TEM1.LODT..CRUTp
    1450: 54 45 4D 31 43 52 55 54 A5 75 62 A4 4C 4F 44 54  TEM1CRUT.ub.LODT
    1460: 5B 80 50 53 4D 49 01 41 53 4D 49 0A 02 5B 81 0B  [.PSMI.ASMI..[..
    1470: 50 53 4D 49 00 41 53 4D 4F 08 5B 01 53 4D 4C 4F  PSMI.ASMO.[.SMLO
    1480: 00 14 49 04 41 4D 30 35 01 08 4C 4F 44 54 11 04  ..I.AM05..LODT..
    1490: 0A C8 00 8A 68 00 44 43 4D 49 8A 68 0A 04 44 43  ....h.DCMI.h..DC
    14A0: 4D 44 70 44 43 4D 49 53 43 4D 49 70 44 43 4D 44  MDpDCMISCMIpDCMD
    14B0: 53 43 4D 44 70 49 53 4D 49 41 53 4D 4F 70 4F 55  SCMDpISMIASMOpOU
    14C0: 54 42 4C 4F 44 54 A4 4C 4F 44 54 14 42 0C 41 4D  TBLODT.LODT.B.AM
    14D0: 30 36 01 08 4C 4F 44 54 11 13 0A 14 00 00 00 00  06..LODT........
    14E0: 00 00 00 00 00 00 00 00 00 00 00 00 08 54 45 4D  .............TEM
    14F0: 50 11 05 0B 00 02 00 70 68 60 70 83 88 5C 4F 42  P......ph`p..\OB
    1500: 49 54 00 00 61 70 01 62 A2 40 08 92 94 62 61 70  IT..ap.b.@...bap
    1510: 83 88 83 88 5C 4F 42 49 54 62 00 00 00 63 70 83  ....\OBITb...cp.
    1520: 88 83 88 5C 4F 42 49 54 62 00 01 00 64 A0 49 05  ...\OBITb...d.I.
    1530: 90 93 63 60 93 64 01 70 83 88 83 88 5C 4F 42 49  ..c`.d.p....\OBI
    1540: 54 62 00 0A 03 00 4C 4F 44 54 70 57 43 4E 53 54  Tb....LODTpWCNST
    1550: 45 4D 50 70 83 88 83 88 5C 4F 42 49 54 62 00 0A  EMPp....\OBITb..
    1560: 02 00 65 77 65 0A 04 65 8A 54 45 4D 50 65 54 45  ..ewe..e.TEMPeTE
    1570: 4D 31 8A 4C 4F 44 54 0A 04 43 52 55 54 70 54 45  M1.LODT..CRUTpTE
    1580: 4D 31 43 52 55 54 A5 75 62 A4 4C 4F 44 54 14 41  M1CRUT.ub.LODT.A
    1590: 06 41 4D 30 37 01 08 42 53 50 44 11 04 0B 14 02  .AM07..BSPD.....
    15A0: A0 0A 94 68 0A 0F A4 42 53 50 44 A0 12 93 68 00  ...h...BSPD...h.
    15B0: 70 44 53 50 44 42 53 50 44 A4 42 53 50 44 70 00  pDSPDBSPD.BSPDp.
    15C0: 60 72 60 77 68 0B 14 02 00 60 70 0B 14 02 61 70  `r`wh....`p...ap
    15D0: 00 62 A2 18 61 70 83 88 44 53 50 44 60 00 88 42  .b..ap..DSPD`..B
    15E0: 53 50 44 62 00 76 61 75 60 75 62 A4 42 53 50 44  SPDb.vau`ub.BSPD
    15F0: 14 0C 41 4D 30 38 00 A4 5C 4F 42 49 45 14 1D 41  ..AM08..\OBIE..A
    1600: 4D 30 39 00 08 54 45 4D 50 11 03 0A 8C 70 52 4D  M09..TEMP....pRM
    1610: 50 44 54 45 4D 50 A4 54 45 4D 50 08 5F 57 44 47  PDTEMP.TEMP._WDG
    1620: 11 2B 0A 28 6A 0F BC AB A1 8E D1 11 00 A0 C9 06  .+.(j...........
    1630: 29 10 00 00 41 41 01 02 21 12 90 05 66 D5 D1 11  )...AA..!...f...
    1640: B2 F0 00 A0 C9 06 29 10 42 41 01 00 14 4F 0A 57  ......).BA...O.W
    1650: 4D 41 41 03 A0 45 0A 93 68 00 A0 18 91 91 92 93  MAA..E..h.......
    1660: 69 01 92 93 69 0A 02 92 93 69 0A 06 8A 6A 00 57  i...i....i...j.W
    1670: 49 49 44 A0 09 93 69 01 A4 41 4D 30 31 A1 4C 07  IID...i..AM01.L.
    1680: A0 0A 93 69 0A 02 A4 41 4D 30 32 A1 4E 06 A0 0A  ...i...AM02.N...
    1690: 93 69 0A 03 A4 41 4D 30 33 A1 40 06 A0 0E 93 69  .i...AM03.@....i
    16A0: 0A 04 A4 41 4D 30 34 57 49 49 44 A1 4E 04 A0 0B  ...AM04WIID.N...
    16B0: 93 69 0A 05 A4 41 4D 30 35 6A A1 3F A0 0E 93 69  .i...AM05j.?...i
    16C0: 0A 06 A4 41 4D 30 36 57 49 49 44 A1 2E A0 0E 93  ...AM06WIID.....
    16D0: 69 0A 07 A4 41 4D 30 37 57 49 49 44 A1 1D A0 0A  i...AM07WIID....
    16E0: 93 69 0A 08 A4 41 4D 30 38 A1 10 A0 0A 93 69 0A  .i...AM08.....i.
    16F0: 09 A4 41 4D 30 39 A1 03 A4 00 A4 00 08 57 51 42  ..AM09.......WQB
    1700: 41 11 45 C8 0B 80 0C 46 4F 4D 42 01 00 00 00 70  A.E....FOMB....p
    1710: 0C 00 00 6C 45 00 00 44 53 00 01 1A 7D DA 54 18  ...lE..DS...}.T.
    1720: D4 A1 00 01 06 18 42 10 11 10 22 21 30 34 32 0B  ......B..."!042.
    1730: 03 63 04 8A 0B 21 07 10 12 07 85 12 02 A1 FE 04  .c...!..........
    1740: F2 2B 00 E1 16 CA 14 60 50 80 53 04 11 F4 2A C0  .+.....`P.S...*.
    1750: A6 00 93 02 2C 0A D0 2E C0 B2 00 DD 02 A4 C3 12  ....,...........
    1760: 91 E0 28 31 E0 28 9D D8 C2 0D 1B BC 50 14 CD 20  ..(1.(......P.. 
    1770: 4A 82 CA 05 F8 46 10 78 B9 02 24 4F 40 9A 05 18  J....F.x..$O@...
    1780: 16 60 5D 80 EC 21 50 A9 43 40 C9 19 02 6A 00 AD  .`]..!P.C@...j..
    1790: 4E 40 F8 95 4E 09 49 10 CE 58 C5 E3 6B 16 4D CF  N@..N.I..X..k.M.
    17A0: 49 CE 31 E4 78 5C E8 41 F0 50 1A 40 98 FC 21 2B  I.1.x\.A.P.@..!+
    17B0: 06 0C 4A C2 58 A8 8B 51 A3 46 CA 06 64 88 D2 46  ..J.X..Q.F..d..F
    17C0: 8D 1E D0 F9 1D C9 D9 1D DD 91 24 30 EA 31 1D 63  ..........$0.1.c
    17D0: 61 33 12 6A 8C E6 A0 48 B8 41 A3 25 C2 6A 5C B1  a3.j...H.A.%.j\.
    17E0: CF CC C2 87 25 8C 23 38 B0 83 B5 68 18 A1 15 04  ....%.#8...h....
    17F0: A7 41 1C 45 94 30 0C CF 98 81 8E 92 21 85 09 7A  .A.E.0......!..z
    1800: 02 41 4E 9E 61 19 E2 0C 38 56 8C 50 21 31 03 09  .AN.a...8V.P!1..
    1810: FE FF 3F 81 AE 31 E4 19 88 DC 03 4E 20 48 F4 28  ..?..1.....N H.(
    1820: C1 8D 6B 54 36 A6 B3 C1 0D CC 04 71 0E 0F 23 03  ..kT6......q..#.
    1830: 42 13 88 1F 3B 7C 02 BB 3F 0E 48 21 82 2E 04 67  B...;|..?.H!...g
    1840: 5A A3 00 6B 67 07 D9 82 D0 59 20 56 63 28 82 88  Z..kg....Y Vc(..
    1850: 10 34 8A F1 22 84 0A 11 25 EA 39 07 A9 4D 80 32  .4.."...%.9..M.2
    1860: 10 A1 05 33 02 B3 7F 06 60 16 20 FE 08 2C E1 44  ...3....`. ..,.D
    1870: 20 23 A3 A1 87 05 9F 04 D8 01 C1 F3 39 35 13 38   #..........95.8
    1880: 30 84 78 25 40 D4 D1 82 12 58 CA D1 80 D8 1E 98  0.x%@....X......
    1890: EE 01 47 78 EE BE 1C 9C 9A 7F 1A 9E E6 43 02 66  ..Gx.........C.f
    18A0: 88 1E EB 41 04 3C 44 76 4A 30 20 DE FB B5 80 8C  ...A.<DvJ0 .....
    18B0: E0 25 C1 80 9E C4 03 02 58 0E 1A 07 7E 42 15 DF  .%......X...~B..
    18C0: 01 E8 91 80 CD 28 BE 09 CA 3A 3E A0 E7 1C ED D9  .....(...:>.....
    18D0: E1 65 A1 D9 2B 06 21 78 0D F0 4D C1 A7 11 8B 5A  .e..+.!x..M....Z
    18E0: 9D 9C AC CA 23 A6 E0 1E 02 97 01 A7 A1 7B BC E0  ....#........{..
    18F0: 50 30 5E FA FF 1F 2F B8 E7 75 BC 60 39 26 3C 6C  P0^.../..u.`9&<l
    1900: 54 05 A1 41 1C 70 F3 03 20 57 0B 8F 98 CD E5 AC  T..A.p.. W......
    1910: D8 11 85 0F 8F 0F C3 23 7E 6F 28 16 44 02 21 74  .......#~o(.D.!t
    1920: 66 38 72 B0 38 3B 41 88 C0 D2 86 8E 1E B2 47 F5  f8r.8;A.......G.
    1930: 12 63 8C 27 02 A3 9E D2 D1 83 0F D0 A3 07 7C FE  .c.'..........|.
    1940: FF 47 8F 93 34 66 89 18 3D FA 1C E1 E9 BC FD F0  .G..4f..=.......
    1950: A3 48 02 C7 87 D0 E8 C1 73 FA F1 E8 C1 3F 46 8F  .H......s....?F.
    1960: 1E 3C 63 38 37 DC D5 C6 23 07 FB 78 F1 F2 8E 5B  .<c87...#..x...[
    1970: A0 F0 39 7B 32 80 F7 20 DC 79 0B B8 8C 80 CB 3D  ..9{2.. .y.....=
    1980: 57 A1 04 1E AD 40 FB FF 3F 5A 01 4C B8 3F BC 5A  W....@..?Z.L.?.Z
    1990: 3D 5A 81 3D E2 73 40 3F 02 C7 86 90 93 A3 15 EA  =Z.=.s@?........
    19A0: 64 84 0B 7A B0 02 BA 07 0D DC F1 00 CE FF FF 78  d..z...........x
    19B0: C0 07 C6 4F 2F E0 3B B3 78 AC 38 68 86 79 20 A7  ...O/.;.x.8h.y .
    19C0: E6 6B 20 0B 3B 5A 50 1D AB 80 C3 B9 12 37 5A B8  .k .;ZP......7Z.
    19D0: 43 C3 8F 17 7C 22 4E 52 3E D4 41 3F 80 7A BC E0  C...|"NR>.A?.z..
    19E0: 39 48 01 87 43 1D F8 FE FF 87 3A 38 43 06 9F BC  9H..C.....:8C...
    19F0: B3 18 FA 3C E3 29 D4 7A 89 21 B0 07 E4 93 48 90  ...<.).z.!....H.
    1A00: 13 89 70 2E 3E 8D 81 ED 00 05 1C 4E 63 E0 B9 A4  ..p.>......Nc...
    1A10: B0 DB 18 18 0E 51 F0 26 E5 F1 83 EF D4 84 3B 44  .....Q.&......;D
    1A20: C1 F3 38 24 21 9F C7 4B 00 EE 1E 85 3F 47 81 F7  ..8$!..K....?G..
    1A30: FF 7F 8E 82 27 6B A1 F4 10 65 21 30 A8 73 14 C0  ....'k...e!0.s..
    1A40: 14 6F B7 0D DD A2 7C 1B 78 1A 78 8D 88 F2 1C E5  .o....|.x.x.....
    1A50: 8B D4 0B 41 84 28 C7 7B 02 11 1E A6 3C E1 30 E1  ...A.(.{....<.0.
    1A60: 4E 36 CA 4B 43 18 43 C7 0A 14 39 7E 08 5F 2A 7C  N6.KC.C...9~._*|
    1A70: 8E 62 51 CE 03 FA 11 F8 FC 61 23 67 11 D4 49 C0  .bQ......a#g..I.
    1A80: 87 0E 0F EA 09 01 13 FA 60 08 AA FF FF 49 0A 38  ........`....I.8
    1A90: 1F 40 E0 85 3C F3 82 EE 44 0F 8E 33 61 E4 B8 0F  .@..<...D..3a...
    1AA0: 34 D8 B3 07 F0 91 76 F0 40 89 39 7B 00 BA FE FF  4.....v.@.9{....
    1AB0: 67 0F C0 C2 65 E3 DD C3 97 9E 33 7D F6 F0 5C DF  g...e.....3}..\.
    1AC0: 39 7C 2A 34 8A 21 DE 3F 7C 28 88 12 F1 5C A3 1C  9|*4.!.?|(...\..
    1AD0: 72 94 B8 11 C2 3C 1E 1A 27 46 A8 08 0C F4 D9 83  r....<..'F......
    1AE0: C5 39 7B 40 C5 3E 9B 37 8E 08 AF 01 E7 78 3E 3E  .9{@.>.7.....x>>
    1AF0: 7B 00 DE A4 3C FD 74 F6 00 D7 09 18 77 F6 C0 FD  {...<.t.....w...
    1B00: FF CF 1E B8 71 63 4F 1F C0 4E 84 87 A3 07 26 F6  ....qcO..N....&.
    1B10: F9 16 A0 D0 E1 E3 F9 16 AC FF FF 83 14 17 FE B2  ................
    1B20: D4 A7 C0 C1 0F A9 E8 E1 F8 38 87 39 E0 02 6C 3E  .........8.9..l>
    1B30: 5A FB FF 7F B4 C6 03 87 F4 51 01 6C C7 5B E0 70  Z........Q.l.[.p
    1B40: 54 00 CF C0 F8 58 81 C5 C4 1E 5D 8E 15 6C 87 5A  T....X....]..l.Z
    1B50: E0 30 56 30 0D 8C 8D 15 7C 12 8E D5 E8 31 FA D6  .0V0....|....1..
    1B60: 73 40 9E 47 84 B0 BE C2 24 70 5C 08 FD FF 87 0B  s@.G....$p\.....
    1B70: 1E 50 0F 17 FC F2 86 0B 9A B1 C1 19 31 F8 4E 5E  .P..........1.N^
    1B80: 3E 06 83 E5 12 C1 CE 02 6C 3A F8 9B 30 FE C8 05  >.......l:..0...
    1B90: 8C 02 98 00 61 32 4F 07 92 0C 83 3A 72 01 A7 10  ....a2O....:r...
    1BA0: 07 02 28 FF FF 23 17 F0 53 3A 25 4D FA FD 1B 77  ..(..#..S:%M...w
    1BB0: CC 02 1B C2 63 16 BF 30 FA 98 05 46 31 4B D1 58  ....c..0...F1K.X
    1BC0: 2C E7 CC E8 53 07 EA 6C E1 33 C0 19 1E D8 B3 C6  ,...S..l.3......
    1BD0: F1 9E 42 ED C3 24 73 F5 75 FD 09 80 9F 1B 7D D6  ..B..$s.u.....}.
    1BE0: 02 AE 27 84 67 2D F0 DC 07 7C 0D E0 13 39 3E 38  ..'.g-...|...9>8
    1BF0: E7 46 F0 FC FF CF 52 96 35 6E B4 24 10 1D 32 22  .F....R.5n.$..2"
    1C00: 9E E9 41 BC D6 F9 04 FC 8A 10 FB 1D C3 37 05 4F  ..A..........7.O
    1C10: C4 F7 3A 13 8C 7E EC 02 BA A7 14 DC C0 E1 8E 0F  ..:..~..........
    1C20: 77 A4 C0 0F 11 CE D8 C1 25 FC 14 8B 3E 42 F0 61  w.......%...>B.a
    1C30: 60 B1 03 BF 13 60 E4 41 EB 24 0B 9E 33 18 70 88  `....`.A.$..3.p.
    1C40: 30 74 D0 DC 44 CE E2 FF 1F 2C 4E B4 93 38 9F 48  0t..D....,N..8.H
    1C50: E7 17 2C 4A 75 33 87 00 74 90 38 9C 37 1F 8F CE  ..,Ju3..t.8.7...
    1C60: 30 BE 61 B2 7B 00 BF EF 78 2E 07 E6 E3 2D BC 23  0.a.{...x....-.#
    1C70: 83 0F 03 E0 12 3D 7E 29 39 0C A0 06 69 D8 D3 39  .....=~)9...i..9
    1C80: FD 03 3B B2 E6 E1 35 AA D7 1D 9F 8C 1E 05 C0 76  ..;...5........v
    1C90: 44 03 0E 01 8E 02 40 68 9A 38 9C E3 C4 1C 5F 7D  D.....@h.8...._}
    1CA0: 0F 62 D7 15 63 BE 51 55 7F 12 80 7E F8 02 CF FF  .b..c.QU...~....
    1CB0: FF F2 F3 FA 93 C0 42 8F 02 50 A0 5F BD 7C AB 79  ......B..P._.|.y
    1CC0: 56 60 B8 A7 74 56 09 2C E9 28 00 AA E3 1B 70 B8  V`..tV.,.(....p.
    1CD0: 49 3D 0A 80 7F 8A 0C E4 18 B1 F7 0B 7E 6A B3 CB  I=..........~j..
    1CE0: 43 00 D0 39 4C 91 43 00 6A 98 9E 36 3F CE F2 13  C..9L.C.j..6?...
    1CF0: 00 78 40 7D 02 00 FF BD D7 27 00 38 FF FF 13 00  .x@}.....'.8....
    1D00: FE 8A 82 1F 1D 6E E0 F0 8E 1C 3E A5 80 EB C8 88  .....n....>.....
    1D10: 3B 17 C2 1B 12 3B 10 02 C3 A0 7A 8E 84 F4 70 20  ;....;....z...p 
    1D20: 51 EB A4 30 3E 0D F8 40 08 F7 E4 65 38 3E 42 0F  Q..0>..@...e8>B.
    1D30: FD 21 E2 C9 C7 F7 03 4F EE C9 10 C6 39 C1 77 15  .!.....O....9.w.
    1D40: 76 37 7B D6 F3 B9 CA 04 3E 2C 30 34 7E 4C 04 EB  v7{.....>,04~L..
    1D50: 8D C1 87 67 B0 DC 11 31 58 CF 1D 36 2A E0 FF 7F  ...g...1X..6*...
    1D60: 4B F7 5D C6 BE 86 A1 3B A7 0F 71 BE 74 F0 E3 3A  K.]....;..q.t..:
    1D70: EE 74 08 2E EC 67 7A B0 87 3A 70 D2 48 A3 41 1D  .t...gz..:p.H.A.
    1D80: 15 7C 28 F0 31 C5 03 7C A9 F0 09 C5 D3 7A 5C 78  .|(.1..|.....z\x
    1D90: 1A F0 B8 D9 35 C1 1F 04 1F 0F F0 07 88 80 AF 37  ....5..........7
    1DA0: 3E 7A C0 39 82 E0 8F 2A F0 C7 E3 63 80 8F B5 5C  >z.9...*...c...\
    1DB0: FE 20 50 07 78 3E D2 D3 7A 1B F0 21 E1 B0 D8 09  . P.x>..z..!....
    1DC0: 86 8F 07 FC 07 B2 87 0C 5F 19 3C 5F 1F DD B1 47  ........_.<_...G
    1DD0: 10 78 B7 0E 1F 1A 42 3D 75 78 06 EF 17 3E 81 60  .x....B=ux...>.`
    1DE0: FF FF 27 10 70 47 71 03 F1 73 6B A1 EB 94 8D B3  ..'.pGq..sk.....
    1DF0: 0E 3D 0F 58 EE 01 41 D7 08 CC 0D 22 88 8F 45 BE  .=.X..A...."..E.
    1E00: 51 30 82 02 01 75 F8 34 84 A5 51 48 18 84 46 E4  Q0...u.4..QH..F.
    1E10: A3 07 81 A3 20 1E BD 63 1E CF D1 43 F5 31 C0 93  .... ..c...C.1..
    1E20: C0 85 3A A4 D1 E3 02 1E EF 88 4E CD D3 F0 D8 71  ..:.......N....q
    1E30: 27 0F B8 E3 C0 9F 76 F0 17 80 57 20 13 B0 53 35  '.....v...W ..S5
    1E40: F8 04 1E 0E 40 01 E4 FB 80 0F 3C CF 04 6C 0E 21  ....@.....<..l.!
    1E50: C2 44 33 3C 26 F0 31 8C 9E 86 3C 2E 3E 4A 9F 61  .D3<&.1...<.>J.a
    1E60: D8 09 CE D7 62 0F F0 E5 E0 B9 16 03 EB 71 73 58  ....b........qsX
    1E70: A3 3D EE FA 8A F0 FF 7F 98 F3 A1 CB 57 27 C3 FA  .=..........W'..
    1E80: E4 01 8E B3 14 FC A1 E2 CE 02 70 0F E4 6C 0E 4F  ..........p..l.O
    1E90: 03 78 99 87 08 D4 40 2C 72 81 3A AE 78 24 26 F0  .x....@,r.:.x$&.
    1EA0: 51 D1 07 08 7E 7E F0 01 D7 07 08 2E 04 8E 82 F8  Q...~~..........
    1EB0: 00 E1 90 10 3A E7 E2 8E 03 3E C0 30 88 07 83 07  ....:....>.0....
    1EC0: 56 76 94 F1 01 02 78 8C 03 7F 80 80 7B FA 02 D7  Vv....x.....{...
    1ED0: F9 01 78 04 3F 3F A0 FF FF E7 07 F8 87 53 7E 7E  ..x.??.......S~~
    1EE0: 00 9E 03 7C 14 00 CB 99 8C CD E1 A5 E6 B5 D3 87  ...|............
    1EF0: 21 76 9C 67 47 7A AE 6B 04 24 E2 19 02 35 08 C7  !v.gGz.k.$...5..
    1F00: 39 36 E8 38 C1 6E D9 0F 41 55 A3 08 DE B7 02 16  96.8.n..AU......
    1F10: E1 18 81 12 4F 21 E9 C7 08 94 58 38 0A E2 51 FB  ....O!....X8..Q.
    1F20: 20 61 1B C7 08 D4 18 3D B0 77 3B 76 14 E0 A7 08   a.....=.w;v....
    1F30: F8 A7 30 DC D1 03 1C 17 B1 43 3B BB 47 4C 63 9E  ..0......C;.GLc.
    1F40: 41 C4 08 AF AE 46 F3 18 71 E7 4D 5F 0F 7D A4 F0  A....F..q.M_.}..
    1F50: A1 1D 73 A4 80 F7 FF 27 F0 B9 11 77 A4 80 33 93  ..s....'...w..3.
    1F60: F3 C0 DC 41 8F 25 BC AF 85 F8 83 05 F0 38 2E F9  ...A.%.......8..
    1F70: 60 01 2E 48 1F 2C 80 EB F9 C0 A7 03 B0 5E C8 F8  `..H.,.......^..
    1F80: FD 00 C6 09 03 C6 F9 00 73 C3 70 AC 95 EA 84 81  ........s.p.....
    1F90: 8B F5 A0 D0 40 D8 F0 9E 7F 9E 0C F9 61 86 45 81  ....@.......a.E.
    1FA0: D3 D1 C2 27 0B 87 A0 D0 41 CC 27 0C 2E E6 84 41  ...'....A.'....A
    1FB0: 41 0C E8 A4 10 FA FF 9F C3 70 A7 4D 1F 1B 58 B8  A........p.M..X.
    1FC0: FB 05 9D 8B E7 CC F1 7C 0E 31 AC 6F 26 E0 B9 52  .......|.1.o&..R
    1FD0: B0 33 8F 2F 04 BE 4D F2 03 27 3B 16 18 E5 78 5F  .3./..M..';...x_
    1FE0: 0B AD E6 AE 80 9A 11 86 C0 03 F6 49 0C 4C FA 6E  ...........I.L.n
    1FF0: 14 20 47 E7 67 6E 8F 9E 1F 00 7C B4 E3 A3 77 6C  . G.gn....|...wl
    2000: 08 1D 57 E0 1E EE 7C 86 02 BE 03 F3 0C 9F 50 C0  ..W...|.......P.
    2010: 75 7F E0 E7 C2 FF FF FB 03 E6 2C 0C E3 94 02 3C  u.........,....<
    2020: 46 EF 53 0A B8 0E 00 3E A5 00 D7 39 3E C8 83 07  F.S....>...9>...
    2030: C5 F7 5F 4F C4 C6 87 4F 2F 28 1E CB 9B 37 0F 75  .._O...O/(...7.u
    2040: 36 41 47 7B 3D 68 D0 0F 2A 9E 7D F8 E3 8B F0 7C  6AG{=h..*.}....|
    2050: EA 71 B1 38 67 13 54 10 0A 1D 3B 7D 9C E0 92 8E  .q.8g.T...;}....
    2060: 13 14 C4 80 CE 7B C4 F3 21 1E 7D EA F3 2D E1 38  .....{..!.}..-.8
    2070: 9E 40 12 CC 77 12 A0 97 13 78 A7 71 DC 48 71 FF  .@..w....x.q.Hq.
    2080: FF CB 09 8C 03 8D 67 C1 10 DE AC D9 71 1D 1E 8C  ......g.....q...
    2090: AF 27 30 EF 79 E0 3A 9E 00 0B 99 07 00 D4 B1 D1  .'0.y.:.........
    20A0: 07 47 7E 00 70 E8 E3 09 7A 26 3E 16 3D 95 F8 02  .G~.p...z&>.=...
    20B0: C0 CF 6E 3A 9F 80 E2 9C 09 9E 71 B0 2B 00 FE 84  ..n:......q.+...
    20C0: 02 FB 48 06 BE 89 F8 54 71 20 D8 D3 09 F8 FE FF  ..H....Tq ......
    20D0: 27 59 E0 01 CB 4F B2 80 8F DB 08 76 16 CF 24 8C  'Y...O.....v..$.
    20E0: 60 E4 A3 09 EA 88 EC A0 A7 30 C4 38 1F 2B 8C 11  `........0.8.+..
    20F0: B9 F8 51 6B 32 3E 9B F9 B2 CE 0E 3F 38 82 81 0E  ..Qk2>.....?8...
    2100: 28 A8 E3 98 CF 62 80 B3 FF FF 59 0C F8 9F DD 3D  (....b....Y....=
    2110: 7A 7E 6C E7 20 1E BD C3 9F C5 A0 87 3D 8B 01 6D  z~l. .......=..m
    2120: C1 67 31 50 DE 22 E0 9E 41 81 D7 DA 7C 42 81 FF  .g1P."..A...|B..
    2130: FF 3F A1 E0 EE 0C 3E A1 00 D7 23 00 EE 0C 0A 8E  .?....>...#.....
    2140: 13 00 F3 75 03 A0 20 8F 00 F8 2B BC 0F 26 B8 78  ...u.. ...+..&.x
    2150: 27 15 14 87 E3 9D 54 10 53 89 FC D6 E2 09 84 3F  '.....T.S......?
    2160: B8 38 EF 67 FC 54 06 43 D4 C1 02 25 E3 60 41 41  .8.g.T.C...%.`AA
    2170: 0C E8 8C A7 14 F4 A9 8C 5F 46 3C B0 04 33 5D 53  ........_F<..3]S
    2180: A0 5F 40 70 03 86 0B F6 20 61 84 D7 64 CF 03 73  ._@p.... a..d..s
    2190: 44 01 16 FF FF 23 0A F0 90 3C 74 94 C8 A1 53 10  D....#...<t...S.
    21A0: 0F DD 34 3E A2 E0 C6 CA 2E 04 B0 A2 9E 52 40 21  ..4>.........R@!
    21B0: 72 F8 A0 19 C7 D1 3D F5 78 1E FC 4E EC 63 1E DC  r.....=.x..N.c..
    21C0: 93 0A EE D4 88 3B A9 80 61 8E D8 53 19 F0 3A 82  .....;..a..S..:.
    21D0: 82 CF C3 21 05 14 FF FF 23 28 70 3E A4 F0 63 06  ...!....#(p>..c.
    21E0: E6 6A C0 8F A0 98 98 CF 07 9D 4F F8 D1 C0 81 5E  .j........O....^
    21F0: 05 02 67 67 7D DC E5 C0 27 0C 13 8C 70 9A A0 10  ..gg}...'...p...
    2200: 16 4F 21 E9 87 0A 94 58 38 0A E2 43 85 85 1C 2A  .O!....X8..C...*
    2210: D0 C7 28 7C F0 13 05 28 2E 00 8F EC E0 BD AF E3  ..(|...(........
    2220: 07 89 BB A8 78 C8 3E B0 63 E6 E9 A3 05 3C 02 9F  ....x.>.c....<..
    2230: 1E C1 07 EF C3 14 EE FF 7F 98 02 2E 67 3D 1F 2C  ............g=.,
    2240: C0 05 EE 83 05 70 BD FD F8 74 00 D6 D1 1E F3 F9  .....p...t......
    2250: C6 79 3F 80 71 53 79 88 F4 3D C0 F8 EC 7C 80 BD  .y?.qSy..=...|..
    2260: 12 F9 EC A0 33 06 6A 38 3E 57 78 24 EC 02 70 AE  ....3.j8>Wx$..p.
    2270: 3E 50 E1 0E 7D 3E 62 F0 23 BD 4F B9 E0 3A 62 E0  >P..}>b.#.O..:b.
    2280: 43 1E 31 40 F1 FF 3F 40 E0 46 0D 8E C9 3D 22 9C  C.1@..?@.F...=".
    2290: F2 99 E2 0E 16 C0 65 1E EC 60 01 BC 22 1F 80 40  ......e..`.."..@
    22A0: 67 E2 60 01 74 CF 04 C0 41 A1 4D 9F 1A 8D 5A 35  g.`.t...A.M...Z5
    22B0: 28 53 A3 4C 83 5A 7D 2A 35 46 F0 DC E3 B5 6A B0  (S.L.Z}*5F....j.
    22C0: 0E F5 66 10 88 E3 AE 58 03 26 0F 27 FD FF 41 2C  ..f....X.&.'..A,
    22D0: 44 05 08 93 B1 2E 81 58 CA BA 04 62 A1 EF 08 81  D......X...b....
    22E0: 38 C8 6B 40 20 8E F7 D6 13 88 83 6A 01 61 31 BD  8.k@ ......j.a1.
    22F0: 80 B0 70 6B 13 88 23 99 19 0A FD D6 09 C4 61 ED  ..pk..#.......a.
    2300: 80 30 09 7E 40 98 F4 05 0B 8C 18 02 61 A2 1C 81  .0.~@.......a...
    2310: 30 91 92 86 44 3D 81 B0 18 20 54 90 A9 D3 BE 40  0...D=... T....@
    2320: 24 0F 44 40 16 EC 0A 88 C9 07 11 90 43 DB 02 62  $.D@........C..b
    2330: 12 7E 22 02 72 86 27 B2 80 1C 08 44 40 8E B5 5E  .~".r.'....D@..^
    2340: 01 39 24 88 80 2C 50 1A 10 53 0B 22 20 0B B7 06  .9$..,P..S." ...
    2350: C4 62 80 08 C8 C9 BD 01 31 19 AF 57 01 59 8C 39  .b......1..W.Y.9
    2360: 20 26 0D 44 40 4E E7 0E 88 45 05 11 90 E3 CB 03   &.D@N...E......
    2370: 62 62 EC 0D 98 FA 03 62 01 41 04 64 89 0F 98 40  bb.....b.A.d...@
    2380: 44 30 88 80 FC FF 07                             D0.....

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 48 24 00 00 02 37 41 4D 44 00 00 00  SSDTH$...7AMD...
    0010: 47 50 50 5F 50 4D 45 5F 01 00 00 00 49 4E 54 4C  GPP_PME_....INTL
    0020: 31 03 23 20 A0 48 60 00 15 5C 4D 30 31 37 08 06  1.# .H`..\M017..
    0030: 15 5C 4D 30 31 38 08 07 15 5C 4D 31 31 35 03 00  .\M018...\M115..
    0040: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0050: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0060: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0070: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0080: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0090: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    00A0: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00B0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00C0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00D0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00E0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00F0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    0100: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0110: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0120: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0130: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0140: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0150: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0160: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0170: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0180: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0190: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    01A0: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01B0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01C0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01D0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01E0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01F0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    0200: 15 5C 4D 30 34 36 01 00 15 5C 4D 30 34 37 01 00  .\M046...\M047..
    0210: 15 5C 4D 30 34 39 08 02 15 5C 4D 32 35 31 05 00  .\M049...\M251..
    0220: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0230: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0240: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0250: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0260: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0270: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0280: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    0290: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02A0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02B0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02C0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02D0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02E0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    02F0: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0300: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0310: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0320: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0330: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0340: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0350: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 36 30 08 07  .\M457...\M460..
    0360: 15 5C 4D 34 34 39 05 00 15 5C 4D 34 43 30 05 00  .\M449...\M4C0..
    0370: 15 5C 4D 32 33 41 05 00 15 5C 4D 34 46 30 05 00  .\M23A...\M4F0..
    0380: 15 5C 4D 36 31 30 05 00 15 5C 4D 32 39 41 05 00  .\M610...\M29A..
    0390: 15 5C 4D 36 33 31 05 00 15 5C 4D 36 35 32 05 00  .\M631...\M652..
    03A0: 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06 00  .\M050...\M051..
    03B0: 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06 00  .\M052...\M053..
    03C0: 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06 00  .\M054...\M055..
    03D0: 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06 00  .\M056...\M057..
    03E0: 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06 00  .\M058...\M059..
    03F0: 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06 00  .\M062...\M068..
    0400: 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06 00  .\M069...\M070..
    0410: 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06 00  .\M071...\M072..
    0420: 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06 00  .\M074...\M075..
    0430: 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06 00  .\M076...\M077..
    0440: 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06 00  .\M078...\M079..
    0450: 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06 00  .\M080...\M081..
    0460: 15 5C 4D 31 32 37 06 00 15 5C 5F 42 42 4E 01 00  .\M127...\_BBN..
    0470: 15 5C 2E 5F 53 42 5F 50 43 49 30 06 00 15 5C 2F  .\._SB_PCI0...\/
    0480: 03 5F 53 42 5F 50 43 49 30 47 50 50 30 06 00 15  ._SB_PCI0GPP0...
    0490: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 31 06  \/._SB_PCI0GPP1.
    04A0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50  ..\/._SB_PCI0GPP
    04B0: 32 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47  2...\/._SB_PCI0G
    04C0: 50 50 33 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PP3...\/._SB_PCI
    04D0: 30 47 50 50 34 06 00 15 5C 2F 03 5F 53 42 5F 50  0GPP4...\/._SB_P
    04E0: 43 49 30 47 50 50 35 06 00 15 5C 2F 03 5F 53 42  CI0GPP5...\/._SB
    04F0: 5F 50 43 49 30 47 50 50 36 06 00 15 5C 2F 03 5F  _PCI0GPP6...\/._
    0500: 53 42 5F 50 43 49 30 47 50 50 37 06 00 15 5C 2F  SB_PCI0GPP7...\/
    0510: 03 5F 53 42 5F 50 43 49 30 47 50 50 38 06 00 15  ._SB_PCI0GPP8...
    0520: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 39 06  \/._SB_PCI0GPP9.
    0530: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50  ..\/._SB_PCI0GPP
    0540: 41 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47  A...\/._SB_PCI0G
    0550: 50 50 42 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PPB...\/._SB_PCI
    0560: 30 47 50 50 43 06 00 15 5C 2F 03 5F 53 42 5F 50  0GPPC...\/._SB_P
    0570: 43 49 30 47 50 50 44 06 00 15 5C 2F 03 5F 53 42  CI0GPPD...\/._SB
    0580: 5F 50 43 49 30 47 50 50 45 06 00 15 5C 2F 03 5F  _PCI0GPPE...\/._
    0590: 53 42 5F 50 43 49 30 47 50 50 46 06 00 15 5C 2F  SB_PCI0GPPF...\/
    05A0: 03 5F 53 42 5F 50 43 49 30 47 50 50 47 06 00 15  ._SB_PCI0GPPG...
    05B0: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 48 06  \/._SB_PCI0GPPH.
    05C0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 31  ..\/._SB_PCI0GP1
    05D0: 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47  5...\/._SB_PCI0G
    05E0: 50 32 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  P25...\/._SB_PCI
    05F0: 30 47 50 33 35 06 00 15 5C 2F 03 5F 53 42 5F 50  0GP35...\/._SB_P
    0600: 43 49 30 47 50 34 35 06 00 15 5C 2F 03 5F 53 42  CI0GP45...\/._SB
    0610: 5F 50 43 49 30 47 50 31 37 06 00 15 5C 2F 03 5F  _PCI0GP17...\/._
    0620: 53 42 5F 50 43 49 30 47 50 32 37 06 00 10 8A E1  SB_PCI0GP27.....
    0630: 01 5C 2E 5F 53 42 5F 50 43 49 30 08 45 54 50 30  .\._SB_PCI0.ETP0
    0640: 0A 55 08 45 54 50 31 0A 55 08 45 54 50 32 0A 55  .U.ETP1.U.ETP2.U
    0650: 08 45 54 50 33 0A 55 08 45 54 50 34 0A 55 08 45  .ETP3.U.ETP4.U.E
    0660: 54 50 35 0A 55 08 45 54 50 36 0A 55 08 45 54 50  TP5.U.ETP6.U.ETP
    0670: 37 0A 55 08 45 54 50 38 0A 55 08 45 54 50 39 0A  7.U.ETP8.U.ETP9.
    0680: 55 08 45 54 50 41 0A 55 08 45 54 50 42 0A 55 08  U.ETPA.U.ETPB.U.
    0690: 45 54 50 43 0A 55 08 45 54 50 44 0A 55 08 45 54  ETPC.U.ETPD.U.ET
    06A0: 50 45 0A 55 08 45 54 50 46 0A 55 08 45 54 50 47  PE.U.ETPF.U.ETPG
    06B0: 0A 55 08 45 54 50 48 0A 55 08 45 54 31 35 0A 55  .U.ETPH.U.ET15.U
    06C0: 08 45 54 32 35 0A 55 08 45 54 33 35 0A 55 08 45  .ET25.U.ET35.U.E
    06D0: 54 34 35 0A 55 08 45 54 31 37 0A 55 08 45 54 32  T45.U.ET17.U.ET2
    06E0: 37 0A 55 14 84 D6 01 50 50 4D 45 00 4D 34 36 30  7.U....PPME.M460
    06F0: 0D 20 20 4F 45 4D 2D 41 53 4C 2D 5C 5F 53 42 2E  .  OEM-ASL-\_SB.
    0700: 50 43 49 30 2E 50 50 4D 45 0A 00 00 00 00 00 00  PCI0.PPME.......
    0710: 00 A0 4F 18 92 93 5C 2F 03 5F 53 42 5F 50 43 49  ..O...\/._SB_PCI
    0720: 30 45 54 50 30 0A FF 70 7A 4D 30 31 37 5F 42 42  0ETP0..pzM017_BB
    0730: 4E 01 01 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53  N...x......\/._S
    0740: 42 5F 50 43 49 30 45 54 50 30 A0 46 15 91 93 5C  B_PCI0ETP0.F...\
    0750: 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 30 01 93  /._SB_PCI0ETP0..
    0760: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 30 0A  \/._SB_PCI0ETP0.
    0770: 03 A0 4F 12 5B 12 5C 2F 03 5F 53 42 5F 50 43 49  ..O.[.\/._SB_PCI
    0780: 30 47 50 50 30 00 A0 49 06 92 93 4D 36 32 30 00  0GPP0..I...M620.
    0790: A0 4F 05 93 4D 30 34 39 4D 36 32 30 0A 10 01 A0  .O..M049M620....
    07A0: 40 05 93 7B 4D 30 34 39 4D 36 32 30 0A 52 0A 02  @..{M049M620.R..
    07B0: 00 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66  ..M460.    Notif
    07C0: 79 20 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50 50  y (\_SB.PCI0.GPP
    07D0: 30 2C 20 30 78 30 29 0A 00 00 00 00 00 00 00 86  0, 0x0).........
    07E0: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 30 00  \/._SB_PCI0GPP0.
    07F0: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    0800: 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50 50 30 2C  (\_SB.PCI0.GPP0,
    0810: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    0820: 03 5F 53 42 5F 50 43 49 30 47 50 50 30 0A 02 5B  ._SB_PCI0GPP0..[
    0830: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78  ".dpM017_BBN...x
    0840: 00 0A 20 60 A0 4C 05 92 93 7B 60 0C 00 00 03 00  .. `.L...{`.....
    0850: 00 00 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A  ..M018_BBN...x..
    0860: 20 60 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00   `pM017_BBN...x.
    0870: 0A 20 60 A0 2D 92 93 7B 60 0C 00 00 03 00 00 00  . `.-..{`.......
    0880: 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A 20 60  M018_BBN...x.. `
    0890: 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00 0A 20  pM017_BBN...x.. 
    08A0: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    08B0: 30 45 54 50 31 0A FF 70 7A 4D 30 31 37 5F 42 42  0ETP1..pzM017_BB
    08C0: 4E 01 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    08D0: 53 42 5F 50 43 49 30 45 54 50 31 A0 41 0F 91 93  SB_PCI0ETP1.A...
    08E0: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 31 01  \/._SB_PCI0ETP1.
    08F0: 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 31  .\/._SB_PCI0ETP1
    0900: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0910: 49 30 47 50 50 31 00 4D 34 36 30 0D 20 20 20 20  I0GPP1.M460.    
    0920: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0930: 30 2E 47 50 50 31 2C 20 30 78 32 29 0A 00 00 00  0.GPP1, 0x2)....
    0940: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    0950: 47 50 50 31 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP1..[".dpM017_
    0960: 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0970: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0980: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0990: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    09A0: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    09B0: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    09C0: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    09D0: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    09E0: 32 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 03  2..pzM017_BBN...
    09F0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0A00: 43 49 30 45 54 50 32 A0 41 0F 91 93 5C 2F 03 5F  CI0ETP2.A...\/._
    0A10: 53 42 5F 50 43 49 30 45 54 50 32 01 93 5C 2F 03  SB_PCI0ETP2..\/.
    0A20: 5F 53 42 5F 50 43 49 30 45 54 50 32 0A 03 A0 4A  _SB_PCI0ETP2...J
    0A30: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50  .[.\/._SB_PCI0GP
    0A40: 50 32 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P2.M460.    Noti
    0A50: 66 79 20 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50  fy (\_SB.PCI0.GP
    0A60: 50 32 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P2, 0x2)........
    0A70: 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 32  .\/._SB_PCI0GPP2
    0A80: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0A90: 0A 03 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0AA0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AB0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AC0: 01 0A 03 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0AD0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AE0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AF0: 01 0A 03 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F  ....x.. `.K...\/
    0B00: 03 5F 53 42 5F 50 43 49 30 45 54 50 33 0A FF 70  ._SB_PCI0ETP3..p
    0B10: 7A 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78 00 0A  zM017_BBN....x..
    0B20: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45  ....\/._SB_PCI0E
    0B30: 54 50 33 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50  TP3.A...\/._SB_P
    0B40: 43 49 30 45 54 50 33 01 93 5C 2F 03 5F 53 42 5F  CI0ETP3..\/._SB_
    0B50: 50 43 49 30 45 54 50 33 0A 03 A0 4A 0C 5B 12 5C  PCI0ETP3...J.[.\
    0B60: 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 33 00 4D  /._SB_PCI0GPP3.M
    0B70: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    0B80: 5C 5F 53 42 2E 50 43 49 30 2E 47 50 50 33 2C 20  \_SB.PCI0.GPP3, 
    0B90: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    0BA0: 5F 53 42 5F 50 43 49 30 47 50 50 33 0A 02 5B 22  _SB_PCI0GPP3..["
    0BB0: 0A 64 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78  .dpM017_BBN....x
    0BC0: 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00  .. `.@...{`.....
    0BD0: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0BE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0BF0: 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00  x.. `./..{`.....
    0C00: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0C10: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0C20: 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42  x.. `.K...\/._SB
    0C30: 5F 50 43 49 30 45 54 50 34 0A FF 70 7A 4D 30 31  _PCI0ETP4..pzM01
    0C40: 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 18 0A 10 00  7_BBN....x......
    0C50: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 34 A0  \/._SB_PCI0ETP4.
    0C60: 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45  A...\/._SB_PCI0E
    0C70: 54 50 34 01 93 5C 2F 03 5F 53 42 5F 50 43 49 30  TP4..\/._SB_PCI0
    0C80: 45 54 50 34 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53  ETP4...J.[.\/._S
    0C90: 42 5F 50 43 49 30 47 50 50 34 00 4D 34 36 30 0D  B_PCI0GPP4.M460.
    0CA0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    0CB0: 2E 50 43 49 30 2E 47 50 50 34 2C 20 30 78 32 29  .PCI0.GPP4, 0x2)
    0CC0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    0CD0: 50 43 49 30 47 50 50 34 0A 02 5B 22 0A 64 70 4D  PCI0GPP4..[".dpM
    0CE0: 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60  017_BBN....x.. `
    0CF0: A0 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  .@...{`.......M0
    0D00: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D10: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D20: 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  `./..{`.......M0
    0D30: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D40: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D50: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    0D60: 30 45 54 50 35 0A FF 70 7A 4D 30 31 37 5F 42 42  0ETP5..pzM017_BB
    0D70: 4E 01 0A 06 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    0D80: 53 42 5F 50 43 49 30 45 54 50 35 A0 41 0F 91 93  SB_PCI0ETP5.A...
    0D90: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 35 01  \/._SB_PCI0ETP5.
    0DA0: 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 35  .\/._SB_PCI0ETP5
    0DB0: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0DC0: 49 30 47 50 50 35 00 4D 34 36 30 0D 20 20 20 20  I0GPP5.M460.    
    0DD0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0DE0: 30 2E 47 50 50 35 2C 20 30 78 32 29 0A 00 00 00  0.GPP5, 0x2)....
    0DF0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    0E00: 47 50 50 35 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP5..[".dpM017_
    0E10: 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0E20: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E30: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E40: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    0E50: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E60: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E70: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    0E80: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    0E90: 36 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 07  6..pzM017_BBN...
    0EA0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0EB0: 43 49 30 45 54 50 36 A0 41 0F 91 93 5C 2F 03 5F  CI0ETP6.A...\/._
    0EC0: 53 42 5F 50 43 49 30 45 54 50 36 01 93 5C 2F 03  SB_PCI0ETP6..\/.
    0ED0: 5F 53 42 5F 50 43 49 30 45 54 50 36 0A 03 A0 4A  _SB_PCI0ETP6...J
    0EE0: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50  .[.\/._SB_PCI0GP
    0EF0: 50 36 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P6.M460.    Noti
    0F00: 66 79 20 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50  fy (\_SB.PCI0.GP
    0F10: 50 36 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P6, 0x2)........
    0F20: 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 36  .\/._SB_PCI0GPP6
    0F30: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0F40: 0A 07 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0F50: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F60: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0F70: 01 0A 07 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0F80: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F90: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0FA0: 01 0A 07 0A 78 00 0A 20 60 A0 46 19 92 93 5C 2F  ....x.. `.F...\/
    0FB0: 03 5F 53 42 5F 50 43 49 30 45 54 50 37 0A FF 70  ._SB_PCI0ETP7..p
    0FC0: 7A 4D 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A  zM017_BBN....x..
    0FD0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45  ....\/._SB_PCI0E
    0FE0: 54 50 37 A0 4C 15 91 93 5C 2F 03 5F 53 42 5F 50  TP7.L...\/._SB_P
    0FF0: 43 49 30 45 54 50 37 01 93 5C 2F 03 5F 53 42 5F  CI0ETP7..\/._SB_
    1000: 50 43 49 30 45 54 50 37 0A 03 A0 45 13 5B 12 5C  PCI0ETP7...E.[.\
    1010: 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 37 00 A0  /._SB_PCI0GPP7..
    1020: 4A 06 92 93 4D 36 32 30 00 A0 40 06 93 4D 30 34  J...M620..@..M04
    1030: 39 4D 36 32 30 0A 10 0A 02 A0 40 05 93 7B 4D 30  9M620.....@..{M0
    1040: 34 39 4D 36 32 30 0A 52 0A 02 00 00 4D 34 36 30  49M620.R....M460
    1050: 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53  .    Notify (\_S
    1060: 42 2E 50 43 49 30 2E 47 50 50 37 2C 20 30 78 30  B.PCI0.GPP7, 0x0
    1070: 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42  ).........\/._SB
    1080: 5F 50 43 49 30 47 50 50 37 00 4D 34 36 30 0D 20  _PCI0GPP7.M460. 
    1090: 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E     Notify (\_SB.
    10A0: 50 43 49 30 2E 47 50 50 37 2C 20 30 78 32 29 0A  PCI0.GPP7, 0x2).
    10B0: 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50  ........\/._SB_P
    10C0: 43 49 30 47 50 50 37 0A 02 5B 22 0A 64 70 4D 30  CI0GPP7..[".dpM0
    10D0: 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 A0  17_BBN....x.. `.
    10E0: 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  @...{`.......M01
    10F0: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1100: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1110: A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  ./..{`.......M01
    1120: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1130: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1140: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 30  .A...\/._SB_PCI0
    1150: 45 54 50 38 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETP8..pzM017_BBN
    1160: 0A 02 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1170: 53 42 5F 50 43 49 30 45 54 50 38 A0 46 0F 91 93  SB_PCI0ETP8.F...
    1180: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 38 01  \/._SB_PCI0ETP8.
    1190: 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 38  .\/._SB_PCI0ETP8
    11A0: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    11B0: 49 30 47 50 50 38 00 4D 34 36 30 0D 20 20 20 20  I0GPP8.M460.    
    11C0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    11D0: 30 2E 47 50 50 38 2C 20 30 78 32 29 0A 00 00 00  0.GPP8, 0x2)....
    11E0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    11F0: 47 50 50 38 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP8..[".dpM017_
    1200: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    1210: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1220: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    1230: 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    1240: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    1250: 38 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    1260: 4D 30 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A  M017_BBN.....x..
    1270: 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43   `.K...\/._SB_PC
    1280: 49 30 45 54 50 39 0A FF 70 7A 4D 30 31 37 5F 42  I0ETP9..pzM017_B
    1290: 42 4E 0A 03 01 0A 78 00 0A 18 0A 10 00 5C 2F 03  BN....x......\/.
    12A0: 5F 53 42 5F 50 43 49 30 45 54 50 39 A0 41 0F 91  _SB_PCI0ETP9.A..
    12B0: 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 39  .\/._SB_PCI0ETP9
    12C0: 01 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    12D0: 39 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50  9...J.[.\/._SB_P
    12E0: 43 49 30 47 50 50 39 00 4D 34 36 30 0D 20 20 20  CI0GPP9.M460.   
    12F0: 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43   Notify (\_SB.PC
    1300: 49 30 2E 47 50 50 39 2C 20 30 78 32 29 0A 00 00  I0.GPP9, 0x2)...
    1310: 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49  ......\/._SB_PCI
    1320: 30 47 50 50 39 0A 02 5B 22 0A 64 70 4D 30 31 37  0GPP9..[".dpM017
    1330: 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 40 06  _BBN....x.. `.@.
    1340: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1350: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1360: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 2F  7_BBN....x.. `./
    1370: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1380: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1390: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 41  7_BBN....x.. `.A
    13A0: 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54  ...\/._SB_PCI0ET
    13B0: 50 41 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 0A 03  PA..pzM017_BBN..
    13C0: 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42  ...x......\/._SB
    13D0: 5F 50 43 49 30 45 54 50 41 A0 46 0F 91 93 5C 2F  _PCI0ETPA.F...\/
    13E0: 03 5F 53 42 5F 50 43 49 30 45 54 50 41 01 93 5C  ._SB_PCI0ETPA..\
    13F0: 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 41 0A 03  /._SB_PCI0ETPA..
    1400: A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 30  .O.[.\/._SB_PCI0
    1410: 47 50 50 41 00 4D 34 36 30 0D 20 20 20 20 4E 6F  GPPA.M460.    No
    1420: 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49 30 2E  tify (\_SB.PCI0.
    1430: 47 50 50 41 2C 20 30 78 32 29 0A 00 00 00 00 00  GPPA, 0x2)......
    1440: 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50  ...\/._SB_PCI0GP
    1450: 50 41 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42  PA..[".dpM017_BB
    1460: 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 44 06 92 93  N.....x.. `.D...
    1470: 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42 42  {`.......M018_BB
    1480: 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  N.....x.. `pM017
    1490: 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 31  _BBN.....x.. `.1
    14A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    14B0: 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    14C0: 31 37 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    14D0: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 30  .A...\/._SB_PCI0
    14E0: 45 54 50 42 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETPB..pzM017_BBN
    14F0: 0A 03 0A 03 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1500: 53 42 5F 50 43 49 30 45 54 50 42 A0 46 0F 91 93  SB_PCI0ETPB.F...
    1510: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 42 01  \/._SB_PCI0ETPB.
    1520: 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 42  .\/._SB_PCI0ETPB
    1530: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    1540: 49 30 47 50 50 42 00 4D 34 36 30 0D 20 20 20 20  I0GPPB.M460.    
    1550: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    1560: 30 2E 47 50 50 42 2C 20 30 78 32 29 0A 00 00 00  0.GPPB, 0x2)....
    1570: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    1580: 47 50 50 42 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPPB..[".dpM017_
    1590: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    15A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    15B0: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    15C0: 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60  17_BBN.....x.. `
    15D0: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    15E0: 38 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    15F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A  M017_BBN.....x..
    1600: 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43   `.A...\/._SB_PC
    1610: 49 30 45 54 50 43 0A FF 70 7A 4D 30 31 37 5F 42  I0ETPC..pzM017_B
    1620: 42 4E 0A 03 0A 04 0A 78 00 0A 18 0A 10 00 5C 2F  BN.....x......\/
    1630: 03 5F 53 42 5F 50 43 49 30 45 54 50 43 A0 46 0F  ._SB_PCI0ETPC.F.
    1640: 91 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    1650: 43 01 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54  C..\/._SB_PCI0ET
    1660: 50 43 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F  PC...O.[.\/._SB_
    1670: 50 43 49 30 47 50 50 43 00 4D 34 36 30 0D 20 20  PCI0GPPC.M460.  
    1680: 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50    Notify (\_SB.P
    1690: 43 49 30 2E 47 50 50 43 2C 20 30 78 32 29 0A 00  CI0.GPPC, 0x2)..
    16A0: 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43  .......\/._SB_PC
    16B0: 49 30 47 50 50 43 0A 02 5B 22 0A 64 70 4D 30 31  I0GPPC..[".dpM01
    16C0: 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 A0  7_BBN.....x.. `.
    16D0: 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  D...{`.......M01
    16E0: 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    16F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A  M017_BBN.....x..
    1700: 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D   `.1..{`.......M
    1710: 30 31 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20  018_BBN.....x.. 
    1720: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78  `pM017_BBN.....x
    1730: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1740: 50 43 49 30 45 54 50 44 0A FF 70 7A 4D 30 31 37  PCI0ETPD..pzM017
    1750: 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1760: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 44 A0  \/._SB_PCI0ETPD.
    1770: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45  F...\/._SB_PCI0E
    1780: 54 50 44 01 93 5C 2F 03 5F 53 42 5F 50 43 49 30  TPD..\/._SB_PCI0
    1790: 45 54 50 44 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ETPD...O.[.\/._S
    17A0: 42 5F 50 43 49 30 47 50 50 44 00 4D 34 36 30 0D  B_PCI0GPPD.M460.
    17B0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    17C0: 2E 50 43 49 30 2E 47 50 50 44 2C 20 30 78 32 29  .PCI0.GPPD, 0x2)
    17D0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    17E0: 50 43 49 30 47 50 50 44 0A 02 5B 22 0A 64 70 4D  PCI0GPPD..[".dpM
    17F0: 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  017_BBN.....x.. 
    1800: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1810: 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  018_BBN.....x.. 
    1820: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78  `pM017_BBN.....x
    1830: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1840: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00  .M018_BBN.....x.
    1850: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05  . `pM017_BBN....
    1860: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1870: 42 5F 50 43 49 30 45 54 50 45 0A FF 70 7A 4D 30  B_PCI0ETPE..pzM0
    1880: 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00 0A 18 0A  17_BBN.....x....
    1890: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    18A0: 45 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  E.F...\/._SB_PCI
    18B0: 30 45 54 50 45 01 93 5C 2F 03 5F 53 42 5F 50 43  0ETPE..\/._SB_PC
    18C0: 49 30 45 54 50 45 0A 03 A0 4F 0C 5B 12 5C 2F 03  I0ETPE...O.[.\/.
    18D0: 5F 53 42 5F 50 43 49 30 47 50 50 45 00 4D 34 36  _SB_PCI0GPPE.M46
    18E0: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    18F0: 53 42 2E 50 43 49 30 2E 47 50 50 45 2C 20 30 78  SB.PCI0.GPPE, 0x
    1900: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1910: 42 5F 50 43 49 30 47 50 50 45 0A 02 5B 22 0A 64  B_PCI0GPPE..[".d
    1920: 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00  pM017_BBN.....x.
    1930: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1940: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A 78 00  .M018_BBN.....x.
    1950: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06  . `pM017_BBN....
    1960: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1970: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A  ...M018_BBN.....
    1980: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1990: 0A 06 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    19A0: 5F 53 42 5F 50 43 49 30 45 54 50 46 0A FF 70 7A  _SB_PCI0ETPF..pz
    19B0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A 78 00 0A  M017_BBN.....x..
    19C0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45  ....\/._SB_PCI0E
    19D0: 54 50 46 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  TPF.F...\/._SB_P
    19E0: 43 49 30 45 54 50 46 01 93 5C 2F 03 5F 53 42 5F  CI0ETPF..\/._SB_
    19F0: 50 43 49 30 45 54 50 46 0A 03 A0 4F 0C 5B 12 5C  PCI0ETPF...O.[.\
    1A00: 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 46 00 4D  /._SB_PCI0GPPF.M
    1A10: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    1A20: 5C 5F 53 42 2E 50 43 49 30 2E 47 50 50 46 2C 20  \_SB.PCI0.GPPF, 
    1A30: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    1A40: 5F 53 42 5F 50 43 49 30 47 50 50 46 0A 02 5B 22  _SB_PCI0GPPF..["
    1A50: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A  .dpM017_BBN.....
    1A60: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    1A70: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 07 0A  ...M018_BBN.....
    1A80: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1A90: 0A 07 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    1AA0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A  .....M018_BBN...
    1AB0: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    1AC0: 0A 03 0A 07 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    1AD0: 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 47 0A FF  /._SB_PCI0ETPG..
    1AE0: 70 7A 4D 30 31 37 5F 42 42 4E 0A 04 01 0A 78 00  pzM017_BBN....x.
    1AF0: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    1B00: 45 54 50 47 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ETPG.A...\/._SB_
    1B10: 50 43 49 30 45 54 50 47 01 93 5C 2F 03 5F 53 42  PCI0ETPG..\/._SB
    1B20: 5F 50 43 49 30 45 54 50 47 0A 03 A0 4A 0C 5B 12  _PCI0ETPG...J.[.
    1B30: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 47 00  \/._SB_PCI0GPPG.
    1B40: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    1B50: 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50 50 47 2C  (\_SB.PCI0.GPPG,
    1B60: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    1B70: 03 5F 53 42 5F 50 43 49 30 47 50 50 47 0A 02 5B  ._SB_PCI0GPPG..[
    1B80: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 04 01 0A  ".dpM017_BBN....
    1B90: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    1BA0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BB0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BC0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    1BD0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BE0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BF0: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1C00: 42 5F 50 43 49 30 45 54 50 48 0A FF 70 7A 4D 30  B_PCI0ETPH..pzM0
    1C10: 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    1C20: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    1C30: 48 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  H.F...\/._SB_PCI
    1C40: 30 45 54 50 48 01 93 5C 2F 03 5F 53 42 5F 50 43  0ETPH..\/._SB_PC
    1C50: 49 30 45 54 50 48 0A 03 A0 4F 0C 5B 12 5C 2F 03  I0ETPH...O.[.\/.
    1C60: 5F 53 42 5F 50 43 49 30 47 50 50 48 00 4D 34 36  _SB_PCI0GPPH.M46
    1C70: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    1C80: 53 42 2E 50 43 49 30 2E 47 50 50 48 2C 20 30 78  SB.PCI0.GPPH, 0x
    1C90: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1CA0: 42 5F 50 43 49 30 47 50 50 48 0A 02 5B 22 0A 64  B_PCI0GPPH..[".d
    1CB0: 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00  pM017_BBN.....x.
    1CC0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1CD0: 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A 78 00  .M018_BBN.....x.
    1CE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02  . `pM017_BBN....
    1CF0: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1D00: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A  ...M018_BBN.....
    1D10: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04  x.. `pM017_BBN..
    1D20: 0A 02 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03  ...x.. `.K...\/.
    1D30: 5F 53 42 5F 50 43 49 30 45 54 31 35 0A FF 70 7A  _SB_PCI0ET15..pz
    1D40: 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00 0A 18  M017_BBN....x...
    1D50: 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54  ...\/._SB_PCI0ET
    1D60: 31 35 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43  15.A...\/._SB_PC
    1D70: 49 30 45 54 31 35 01 93 5C 2F 03 5F 53 42 5F 50  I0ET15..\/._SB_P
    1D80: 43 49 30 45 54 31 35 0A 03 A0 4A 0C 5B 12 5C 2F  CI0ET15...J.[.\/
    1D90: 03 5F 53 42 5F 50 43 49 30 47 50 31 35 00 4D 34  ._SB_PCI0GP15.M4
    1DA0: 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C  60.    Notify (\
    1DB0: 5F 53 42 2E 50 43 49 30 2E 47 50 31 35 2C 20 30  _SB.PCI0.GP15, 0
    1DC0: 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F  x2).........\/._
    1DD0: 53 42 5F 50 43 49 30 47 50 31 35 0A 02 5B 22 0A  SB_PCI0GP15..[".
    1DE0: 64 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00  dpM017_BBN....x.
    1DF0: 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00 00  . `.@...{`......
    1E00: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E10: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E20: 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00  .. `./..{`......
    1E30: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E40: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E50: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1E60: 50 43 49 30 45 54 32 35 0A FF 70 7A 4D 30 31 37  PCI0ET25..pzM017
    1E70: 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1E80: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 32 35 A0  \/._SB_PCI0ET25.
    1E90: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45  F...\/._SB_PCI0E
    1EA0: 54 32 35 01 93 5C 2F 03 5F 53 42 5F 50 43 49 30  T25..\/._SB_PCI0
    1EB0: 45 54 32 35 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ET25...O.[.\/._S
    1EC0: 42 5F 50 43 49 30 47 50 32 35 00 4D 34 36 30 0D  B_PCI0GP25.M460.
    1ED0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    1EE0: 2E 50 43 49 30 2E 47 50 32 35 2C 20 30 78 32 29  .PCI0.GP25, 0x2)
    1EF0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    1F00: 50 43 49 30 47 50 32 35 0A 02 5B 22 0A 64 70 4D  PCI0GP25..[".dpM
    1F10: 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  017_BBN.....x.. 
    1F20: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1F30: 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  018_BBN.....x.. 
    1F40: 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78  `pM017_BBN.....x
    1F50: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1F60: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00  .M018_BBN.....x.
    1F70: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02  . `pM017_BBN....
    1F80: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1F90: 42 5F 50 43 49 30 45 54 33 35 0A FF 70 7A 4D 30  B_PCI0ET35..pzM0
    1FA0: 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00 0A 18 0A  17_BBN.....x....
    1FB0: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 33  ..\/._SB_PCI0ET3
    1FC0: 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  5.F...\/._SB_PCI
    1FD0: 30 45 54 33 35 01 93 5C 2F 03 5F 53 42 5F 50 43  0ET35..\/._SB_PC
    1FE0: 49 30 45 54 33 35 0A 03 A0 4F 0C 5B 12 5C 2F 03  I0ET35...O.[.\/.
    1FF0: 5F 53 42 5F 50 43 49 30 47 50 33 35 00 4D 34 36  _SB_PCI0GP35.M46
    2000: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    2010: 53 42 2E 50 43 49 30 2E 47 50 33 35 2C 20 30 78  SB.PCI0.GP35, 0x
    2020: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    2030: 42 5F 50 43 49 30 47 50 33 35 0A 02 5B 22 0A 64  B_PCI0GP35..[".d
    2040: 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00  pM017_BBN.....x.
    2050: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    2060: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A 78 00  .M018_BBN.....x.
    2070: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03  . `pM017_BBN....
    2080: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2090: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A  ...M018_BBN.....
    20A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    20B0: 0A 03 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    20C0: 5F 53 42 5F 50 43 49 30 45 54 34 35 0A FF 70 7A  _SB_PCI0ET45..pz
    20D0: 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A 78 00 0A  M017_BBN.....x..
    20E0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45  ....\/._SB_PCI0E
    20F0: 54 34 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  T45.F...\/._SB_P
    2100: 43 49 30 45 54 34 35 01 93 5C 2F 03 5F 53 42 5F  CI0ET45..\/._SB_
    2110: 50 43 49 30 45 54 34 35 0A 03 A0 4F 0C 5B 12 5C  PCI0ET45...O.[.\
    2120: 2F 03 5F 53 42 5F 50 43 49 30 47 50 34 35 00 4D  /._SB_PCI0GP45.M
    2130: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    2140: 5C 5F 53 42 2E 50 43 49 30 2E 47 50 34 35 2C 20  \_SB.PCI0.GP45, 
    2150: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    2160: 5F 53 42 5F 50 43 49 30 47 50 34 35 0A 02 5B 22  _SB_PCI0GP45..["
    2170: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A  .dpM017_BBN.....
    2180: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    2190: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 04 0A  ...M018_BBN.....
    21A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    21B0: 0A 04 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    21C0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A  .....M018_BBN...
    21D0: 04 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    21E0: 0A 05 0A 04 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    21F0: 2F 03 5F 53 42 5F 50 43 49 30 45 54 31 37 0A FF  /._SB_PCI0ET17..
    2200: 70 7A 4D 30 31 37 5F 42 42 4E 0A 07 01 0A 78 00  pzM017_BBN....x.
    2210: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    2220: 45 54 31 37 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ET17.A...\/._SB_
    2230: 50 43 49 30 45 54 31 37 01 93 5C 2F 03 5F 53 42  PCI0ET17..\/._SB
    2240: 5F 50 43 49 30 45 54 31 37 0A 03 A0 4A 0C 5B 12  _PCI0ET17...J.[.
    2250: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 31 37 00  \/._SB_PCI0GP17.
    2260: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    2270: 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50 31 37 2C  (\_SB.PCI0.GP17,
    2280: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    2290: 03 5F 53 42 5F 50 43 49 30 47 50 31 37 0A 02 5B  ._SB_PCI0GP17..[
    22A0: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 07 01 0A  ".dpM017_BBN....
    22B0: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    22C0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    22D0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    22E0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    22F0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    2300: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    2310: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    2320: 42 5F 50 43 49 30 45 54 32 37 0A FF 70 7A 4D 30  B_PCI0ET27..pzM0
    2330: 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    2340: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 32  ..\/._SB_PCI0ET2
    2350: 37 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  7.F...\/._SB_PCI
    2360: 30 45 54 32 37 01 93 5C 2F 03 5F 53 42 5F 50 43  0ET27..\/._SB_PC
    2370: 49 30 45 54 32 37 0A 03 A0 4F 0C 5B 12 5C 2F 03  I0ET27...O.[.\/.
    2380: 5F 53 42 5F 50 43 49 30 47 50 32 37 00 4D 34 36  _SB_PCI0GP27.M46
    2390: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    23A0: 53 42 2E 50 43 49 30 2E 47 50 32 37 2C 20 30 78  SB.PCI0.GP27, 0x
    23B0: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    23C0: 42 5F 50 43 49 30 47 50 32 37 0A 02 5B 22 0A 64  B_PCI0GP27..[".d
    23D0: 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00  pM017_BBN.....x.
    23E0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    23F0: 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A 78 00  .M018_BBN.....x.
    2400: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02  . `pM017_BBN....
    2410: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2420: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A  ...M018_BBN.....
    2430: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07  x.. `pM017_BBN..
    2440: 0A 02 0A 78 00 0A 20 60                          ...x.. `

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 D4 06 00 00 02 3A 41 4D 44 00 00 00  SSDT.....:AMD...
    0010: 43 50 4D 57 4C 52 43 00 01 00 00 00 49 4E 54 4C  CPMWLRC.....INTL
    0020: 31 03 23 20 A0 4F 48 00 15 5C 4D 30 30 30 08 01  1.# .OH..\M000..
    0030: 15 5C 4D 30 31 38 08 07 15 5C 4D 31 31 32 08 02  .\M018...\M112..
    0040: 15 5C 4D 31 31 35 03 00 15 5C 4D 31 31 36 0E 00  .\M115...\M116..
    0050: 15 5C 4D 31 31 37 0E 00 15 5C 4D 31 31 38 0E 00  .\M117...\M118..
    0060: 15 5C 4D 31 31 39 0E 00 15 5C 4D 31 32 30 0E 00  .\M119...\M120..
    0070: 15 5C 4D 30 33 37 06 00 15 5C 4D 32 32 37 06 00  .\M037...\M227..
    0080: 15 5C 4D 33 32 39 06 00 15 5C 4D 33 32 41 06 00  .\M329...\M32A..
    0090: 15 5C 4D 33 32 42 06 00 15 5C 4D 33 32 43 06 00  .\M32B...\M32C..
    00A0: 15 5C 4D 33 33 30 06 00 15 5C 4D 30 38 32 05 00  .\M330...\M082..
    00B0: 15 5C 4D 30 38 33 05 00 15 5C 4D 30 38 34 05 00  .\M083...\M084..
    00C0: 15 5C 4D 30 38 35 05 00 15 5C 4D 32 32 31 05 00  .\M085...\M221..
    00D0: 15 5C 4D 30 38 36 05 00 15 5C 4D 32 32 39 05 00  .\M086...\M229..
    00E0: 15 5C 4D 32 33 31 05 00 15 5C 4D 32 33 35 05 00  .\M231...\M235..
    00F0: 15 5C 4D 32 33 33 05 00 15 5C 4D 30 38 37 05 00  .\M233...\M087..
    0100: 15 5C 4D 30 38 38 05 00 15 5C 4D 30 38 39 05 00  .\M088...\M089..
    0110: 15 5C 4D 30 39 30 05 00 15 5C 4D 30 39 31 05 00  .\M090...\M091..
    0120: 15 5C 4D 30 39 32 05 00 15 5C 4D 30 39 33 05 00  .\M092...\M093..
    0130: 15 5C 4D 30 39 34 05 00 15 5C 4D 30 39 35 05 00  .\M094...\M095..
    0140: 15 5C 4D 30 39 36 05 00 15 5C 4D 30 39 37 05 00  .\M096...\M097..
    0150: 15 5C 4D 30 39 38 05 00 15 5C 4D 30 39 39 05 00  .\M098...\M099..
    0160: 15 5C 4D 31 30 30 05 00 15 5C 4D 31 30 31 05 00  .\M100...\M101..
    0170: 15 5C 4D 31 30 32 05 00 15 5C 4D 31 30 33 05 00  .\M102...\M103..
    0180: 15 5C 4D 31 30 34 05 00 15 5C 4D 31 30 35 05 00  .\M104...\M105..
    0190: 15 5C 4D 31 30 36 05 00 15 5C 4D 31 30 37 05 00  .\M106...\M107..
    01A0: 15 5C 4D 31 32 38 05 00 15 5C 4D 31 30 38 05 00  .\M128...\M108..
    01B0: 15 5C 4D 31 30 39 05 00 15 5C 4D 31 31 30 05 00  .\M109...\M110..
    01C0: 15 5C 4D 31 32 32 05 00 15 5C 4D 31 33 31 05 00  .\M122...\M131..
    01D0: 15 5C 4D 31 33 32 05 00 15 5C 4D 32 32 36 05 00  .\M132...\M226..
    01E0: 15 5C 4D 31 33 33 05 00 15 5C 4D 31 33 34 05 00  .\M133...\M134..
    01F0: 15 5C 4D 31 33 35 05 00 15 5C 4D 31 33 36 05 00  .\M135...\M136..
    0200: 15 5C 4D 32 32 30 05 00 15 5C 4D 30 34 36 01 00  .\M220...\M046..
    0210: 15 5C 4D 30 34 37 01 00 15 5C 4D 30 34 39 08 02  .\M047...\M049..
    0220: 15 5C 4D 30 34 42 08 02 15 5C 4D 32 35 31 05 00  .\M04B...\M251..
    0230: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0240: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0250: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0260: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0270: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0280: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0290: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    02A0: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02B0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02C0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02D0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02E0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02F0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    0300: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0310: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0320: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0330: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0340: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0350: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0360: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 34 39 05 00  .\M457...\M449..
    0370: 15 5C 4D 34 43 30 05 00 15 5C 4D 32 33 41 05 00  .\M4C0...\M23A..
    0380: 15 5C 4D 34 46 30 05 00 15 5C 4D 36 31 30 05 00  .\M4F0...\M610..
    0390: 15 5C 4D 32 39 41 05 00 15 5C 4D 36 33 31 05 00  .\M29A...\M631..
    03A0: 15 5C 4D 36 35 32 05 00 15 5C 4D 30 35 30 06 00  .\M652...\M050..
    03B0: 15 5C 4D 30 35 31 06 00 15 5C 4D 30 35 32 06 00  .\M051...\M052..
    03C0: 15 5C 4D 30 35 33 06 00 15 5C 4D 30 35 34 06 00  .\M053...\M054..
    03D0: 15 5C 4D 30 35 35 06 00 15 5C 4D 30 35 36 06 00  .\M055...\M056..
    03E0: 15 5C 4D 30 35 37 06 00 15 5C 4D 30 35 38 06 00  .\M057...\M058..
    03F0: 15 5C 4D 30 35 39 06 00 15 5C 4D 30 36 32 06 00  .\M059...\M062..
    0400: 15 5C 4D 30 36 38 06 00 15 5C 4D 30 36 39 06 00  .\M068...\M069..
    0410: 15 5C 4D 30 37 30 06 00 15 5C 4D 30 37 31 06 00  .\M070...\M071..
    0420: 15 5C 4D 30 37 32 06 00 15 5C 4D 30 37 34 06 00  .\M072...\M074..
    0430: 15 5C 4D 30 37 35 06 00 15 5C 4D 30 37 36 06 00  .\M075...\M076..
    0440: 15 5C 4D 30 37 37 06 00 15 5C 4D 30 37 38 06 00  .\M077...\M078..
    0450: 15 5C 4D 30 37 39 06 00 15 5C 4D 30 38 30 06 00  .\M079...\M080..
    0460: 15 5C 4D 30 38 31 06 00 15 5C 4D 31 32 37 06 00  .\M081...\M127..
    0470: 15 5C 2F 06 5F 53 42 5F 50 43 49 31 47 50 50 42  .\/._SB_PCI1GPPB
    0480: 55 50 30 30 44 50 34 30 57 4E 30 30 06 00 15 5C  UP00DP40WN00...\
    0490: 2F 08 5F 53 42 5F 50 43 49 31 47 50 50 42 55 50  /._SB_PCI1GPPBUP
    04A0: 30 30 44 50 36 30 58 48 30 30 52 48 55 42 48 53  00DP60XH00RHUBHS
    04B0: 31 31 06 00 08 44 53 50 42 0A 45 08 44 44 50 44  11...DSPB.E.DDPD
    04C0: 0A 08 08 57 4C 52 4D 0A 01 A0 48 05 5B 12 5C 2F  ...WLRM...H.[.\/
    04D0: 06 5F 53 42 5F 50 43 49 31 47 50 50 42 55 50 30  ._SB_PCI1GPPBUP0
    04E0: 30 44 50 34 30 57 4E 30 30 00 10 37 5C 2F 06 5F  0DP40WN00..7\/._
    04F0: 53 42 5F 50 43 49 31 47 50 50 42 55 50 30 30 44  SB_PCI1GPPBUP00D
    0500: 50 34 30 57 4E 30 30 08 5F 50 52 52 12 0C 01 5C  P40WN00._PRR...\
    0510: 2E 5F 53 42 5F 50 52 57 4C 14 08 5F 52 4D 56 00  ._SB_PRWL.._RMV.
    0520: A4 00 A0 4F 05 5B 12 5C 2F 08 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    0530: 49 31 47 50 50 42 55 50 30 30 44 50 36 30 58 48  I1GPPBUP00DP60XH
    0540: 30 30 52 48 55 42 48 53 31 31 00 10 36 5C 2F 08  00RHUBHS11..6\/.
    0550: 5F 53 42 5F 50 43 49 31 47 50 50 42 55 50 30 30  _SB_PCI1GPPBUP00
    0560: 44 50 36 30 58 48 30 30 52 48 55 42 48 53 31 31  DP60XH00RHUBHS11
    0570: 08 5F 50 52 52 12 0C 01 5C 2E 5F 53 42 5F 50 52  ._PRR...\._SB_PR
    0580: 57 42 10 41 15 5C 5F 53 42 5F 08 57 4C 50 53 01  WB.A.\_SB_.WLPS.
    0590: 5B 84 4B 0B 50 52 57 4C 00 00 00 14 4B 08 5F 52  [.K.PRWL....K._R
    05A0: 53 54 00 4D 30 30 30 0B C2 0D 70 4D 30 34 42 4D  ST.M000...pM04BM
    05B0: 32 39 30 0A 28 62 A0 49 06 92 93 62 0A 02 70 4D  290.(b.I...b..pM
    05C0: 30 34 39 4D 32 39 30 0A 16 60 70 4D 30 34 42 4D  049M290..`pM04BM
    05D0: 32 39 30 0A 12 61 A0 34 93 57 4C 52 4D 01 4D 30  290..a.4.WLRM.M0
    05E0: 31 38 44 53 50 42 44 44 50 44 00 0A 3E 0A 06 01  18DSPBDDPD..>...
    05F0: 01 5B 22 61 4D 30 31 38 44 53 50 42 44 44 50 44  .["aM018DSPBDDPD
    0600: 00 0A 3E 0A 06 01 00 5B 22 0A 64 A1 14 4D 31 31  ..>....[".d..M11
    0610: 32 60 00 5B 22 61 4D 31 31 32 60 01 5B 22 0A 64  2`.["aM112`.[".d
    0620: 4D 30 30 30 0B C3 0D 14 0B 5F 53 54 41 00 A4 57  M000....._STA..W
    0630: 4C 50 53 14 0C 5F 4F 4E 5F 00 70 01 57 4C 50 53  LPS.._ON_.p.WLPS
    0640: 14 0C 5F 4F 46 46 00 70 00 57 4C 50 53 08 42 4C  .._OFF.p.WLPS.BL
    0650: 50 53 01 5B 84 4F 07 50 52 57 42 00 00 00 14 4F  PS.[.O.PRWB....O
    0660: 04 5F 52 53 54 00 4D 30 30 30 0B DE 0D 70 4D 30  ._RST.M000...pM0
    0670: 34 42 4D 32 39 30 0A 45 62 A0 2D 92 93 62 0A 02  4BM290.Eb.-..b..
    0680: 70 4D 30 34 39 4D 32 39 30 0A 40 60 70 4D 30 34  pM049M290.@`pM04
    0690: 42 4D 32 39 30 0A 41 61 4D 31 31 32 60 00 5B 22  BM290.AaM112`.["
    06A0: 61 4D 31 31 32 60 01 4D 30 30 30 0B DF 0D 14 0B  aM112`.M000.....
    06B0: 5F 53 54 41 00 A4 42 4C 50 53 14 0C 5F 4F 4E 5F  _STA..BLPS.._ON_
    06C0: 00 70 01 42 4C 50 53 14 0C 5F 4F 46 46 00 70 00  .p.BLPS.._OFF.p.
    06D0: 42 4C 50 53                                      BLPS

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 C5 05 00 00 02 AF 41 4D 44 00 00 00  SSDT......AMD...
    0010: 43 50 55 53 53 44 54 00 01 00 00 00 41 4D 49 20  CPUSSDT.....AMI 
    0020: 01 00 00 00 10 C0 5A 00 00 5C 5F 53 42 5F 5B 82  ......Z..\_SB_[.
    0030: C5 59 00 00 50 4C 54 46 08 5F 48 49 44 0D 41 43  .Y..PLTF._HID.AC
    0040: 50 49 30 30 31 30 00 08 5F 43 49 44 0C 41 D0 0A  PI0010.._CID.A..
    0050: 05 08 5F 55 49 44 01 5B 82 1A 43 30 30 30 08 5F  .._UID.[..C000._
    0060: 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55  HID.ACPI0007.._U
    0070: 49 44 00 5B 82 1A 43 30 30 31 08 5F 48 49 44 0D  ID.[..C001._HID.
    0080: 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 01 5B  ACPI0007.._UID.[
    0090: 82 1B 43 30 30 32 08 5F 48 49 44 0D 41 43 50 49  ..C002._HID.ACPI
    00A0: 30 30 30 37 00 08 5F 55 49 44 0A 02 5B 82 1B 43  0007.._UID..[..C
    00B0: 30 30 33 08 5F 48 49 44 0D 41 43 50 49 30 30 30  003._HID.ACPI000
    00C0: 37 00 08 5F 55 49 44 0A 03 5B 82 1B 43 30 30 34  7.._UID..[..C004
    00D0: 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08  ._HID.ACPI0007..
    00E0: 5F 55 49 44 0A 04 5B 82 1B 43 30 30 35 08 5F 48  _UID..[..C005._H
    00F0: 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49  ID.ACPI0007.._UI
    0100: 44 0A 05 5B 82 1B 43 30 30 36 08 5F 48 49 44 0D  D..[..C006._HID.
    0110: 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A 06  ACPI0007.._UID..
    0120: 5B 82 1B 43 30 30 37 08 5F 48 49 44 0D 41 43 50  [..C007._HID.ACP
    0130: 49 30 30 30 37 00 08 5F 55 49 44 0A 07 5B 82 1B  I0007.._UID..[..
    0140: 43 30 30 38 08 5F 48 49 44 0D 41 43 50 49 30 30  C008._HID.ACPI00
    0150: 30 37 00 08 5F 55 49 44 0A 08 5B 82 1B 43 30 30  07.._UID..[..C00
    0160: 39 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00  9._HID.ACPI0007.
    0170: 08 5F 55 49 44 0A 09 5B 82 1B 43 30 30 41 08 5F  ._UID..[..C00A._
    0180: 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55  HID.ACPI0007.._U
    0190: 49 44 0A 0A 5B 82 1B 43 30 30 42 08 5F 48 49 44  ID..[..C00B._HID
    01A0: 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A  .ACPI0007.._UID.
    01B0: 0B 5B 82 1B 43 30 30 43 08 5F 48 49 44 0D 41 43  .[..C00C._HID.AC
    01C0: 50 49 30 30 30 37 00 08 5F 55 49 44 0A 0C 5B 82  PI0007.._UID..[.
    01D0: 1B 43 30 30 44 08 5F 48 49 44 0D 41 43 50 49 30  .C00D._HID.ACPI0
    01E0: 30 30 37 00 08 5F 55 49 44 0A 0D 5B 82 1B 43 30  007.._UID..[..C0
    01F0: 30 45 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37  0E._HID.ACPI0007
    0200: 00 08 5F 55 49 44 0A 0E 5B 82 1B 43 30 30 46 08  .._UID..[..C00F.
    0210: 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F  _HID.ACPI0007.._
    0220: 55 49 44 0A 0F 5B 82 1B 43 30 31 30 08 5F 48 49  UID..[..C010._HI
    0230: 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49 44  D.ACPI0007.._UID
    0240: 0A 10 5B 82 1B 43 30 31 31 08 5F 48 49 44 0D 41  ..[..C011._HID.A
    0250: 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A 11 5B  CPI0007.._UID..[
    0260: 82 1B 43 30 31 32 08 5F 48 49 44 0D 41 43 50 49  ..C012._HID.ACPI
    0270: 30 30 30 37 00 08 5F 55 49 44 0A 12 5B 82 1B 43  0007.._UID..[..C
    0280: 30 31 33 08 5F 48 49 44 0D 41 43 50 49 30 30 30  013._HID.ACPI000
    0290: 37 00 08 5F 55 49 44 0A 13 5B 82 1B 43 30 31 34  7.._UID..[..C014
    02A0: 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08  ._HID.ACPI0007..
    02B0: 5F 55 49 44 0A 14 5B 82 1B 43 30 31 35 08 5F 48  _UID..[..C015._H
    02C0: 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49  ID.ACPI0007.._UI
    02D0: 44 0A 15 5B 82 1B 43 30 31 36 08 5F 48 49 44 0D  D..[..C016._HID.
    02E0: 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A 16  ACPI0007.._UID..
    02F0: 5B 82 1B 43 30 31 37 08 5F 48 49 44 0D 41 43 50  [..C017._HID.ACP
    0300: 49 30 30 30 37 00 08 5F 55 49 44 0A 17 5B 82 1B  I0007.._UID..[..
    0310: 43 30 31 38 08 5F 48 49 44 0D 41 43 50 49 30 30  C018._HID.ACPI00
    0320: 30 37 00 08 5F 55 49 44 0A 18 5B 82 1B 43 30 31  07.._UID..[..C01
    0330: 39 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00  9._HID.ACPI0007.
    0340: 08 5F 55 49 44 0A 19 5B 82 1B 43 30 31 41 08 5F  ._UID..[..C01A._
    0350: 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55  HID.ACPI0007.._U
    0360: 49 44 0A 1A 5B 82 1B 43 30 31 42 08 5F 48 49 44  ID..[..C01B._HID
    0370: 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A  .ACPI0007.._UID.
    0380: 1B 5B 82 1B 43 30 31 43 08 5F 48 49 44 0D 41 43  .[..C01C._HID.AC
    0390: 50 49 30 30 30 37 00 08 5F 55 49 44 0A 1C 5B 82  PI0007.._UID..[.
    03A0: 1B 43 30 31 44 08 5F 48 49 44 0D 41 43 50 49 30  .C01D._HID.ACPI0
    03B0: 30 30 37 00 08 5F 55 49 44 0A 1D 5B 82 1B 43 30  007.._UID..[..C0
    03C0: 31 45 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37  1E._HID.ACPI0007
    03D0: 00 08 5F 55 49 44 0A 1E 5B 82 1B 43 30 31 46 08  .._UID..[..C01F.
    03E0: 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F  _HID.ACPI0007.._
    03F0: 55 49 44 0A 1F 5B 82 1B 43 30 32 30 08 5F 48 49  UID..[..C020._HI
    0400: 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49 44  D.ACPI0007.._UID
    0410: 0A 20 5B 82 1B 43 30 32 31 08 5F 48 49 44 0D 41  . [..C021._HID.A
    0420: 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A 21 5B  CPI0007.._UID.![
    0430: 82 1B 43 30 32 32 08 5F 48 49 44 0D 41 43 50 49  ..C022._HID.ACPI
    0440: 30 30 30 37 00 08 5F 55 49 44 0A 22 5B 82 1B 43  0007.._UID."[..C
    0450: 30 32 33 08 5F 48 49 44 0D 41 43 50 49 30 30 30  023._HID.ACPI000
    0460: 37 00 08 5F 55 49 44 0A 23 5B 82 1B 43 30 32 34  7.._UID.#[..C024
    0470: 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08  ._HID.ACPI0007..
    0480: 5F 55 49 44 0A 24 5B 82 1B 43 30 32 35 08 5F 48  _UID.$[..C025._H
    0490: 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49  ID.ACPI0007.._UI
    04A0: 44 0A 25 5B 82 1B 43 30 32 36 08 5F 48 49 44 0D  D.%[..C026._HID.
    04B0: 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A 26  ACPI0007.._UID.&
    04C0: 5B 82 1B 43 30 32 37 08 5F 48 49 44 0D 41 43 50  [..C027._HID.ACP
    04D0: 49 30 30 30 37 00 08 5F 55 49 44 0A 27 5B 82 1B  I0007.._UID.'[..
    04E0: 43 30 32 38 08 5F 48 49 44 0D 41 43 50 49 30 30  C028._HID.ACPI00
    04F0: 30 37 00 08 5F 55 49 44 0A 28 5B 82 1B 43 30 32  07.._UID.([..C02
    0500: 39 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00  9._HID.ACPI0007.
    0510: 08 5F 55 49 44 0A 29 5B 82 1B 43 30 32 41 08 5F  ._UID.)[..C02A._
    0520: 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55  HID.ACPI0007.._U
    0530: 49 44 0A 2A 5B 82 1B 43 30 32 42 08 5F 48 49 44  ID.*[..C02B._HID
    0540: 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A  .ACPI0007.._UID.
    0550: 2B 5B 82 1B 43 30 32 43 08 5F 48 49 44 0D 41 43  +[..C02C._HID.AC
    0560: 50 49 30 30 30 37 00 08 5F 55 49 44 0A 2C 5B 82  PI0007.._UID.,[.
    0570: 1B 43 30 32 44 08 5F 48 49 44 0D 41 43 50 49 30  .C02D._HID.ACPI0
    0580: 30 30 37 00 08 5F 55 49 44 0A 2D 5B 82 1B 43 30  007.._UID.-[..C0
    0590: 32 45 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37  2E._HID.ACPI0007
    05A0: 00 08 5F 55 49 44 0A 2E 5B 82 1B 43 30 32 46 08  .._UID..[..C02F.
    05B0: 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F  _HID.ACPI0007.._
    05C0: 55 49 44 0A 2F                                   UID./

FACP @ 0x0000000000000000
    0000: 46 41 43 50 14 01 00 00 06 D3 41 4D 44 20 20 20  FACP......AMD   
    0010: 41 20 4D 20 49 20 00 00 01 00 00 00 41 4D 49 20  A M I ......AMI 
    0020: 13 00 01 00 00 A0 45 A9 00 E0 46 A7 00 03 09 00  ......E...F.....
    0030: B2 00 00 00 A0 A1 00 00 00 08 00 00 00 00 00 00  ................
    0040: 04 08 00 00 00 00 00 00 B4 00 00 00 08 08 00 00  ................
    0050: 20 08 00 00 00 00 00 00 04 02 01 04 08 00 00 00   ...............
    0060: 64 00 E9 03 00 04 10 00 01 03 0D 00 32 01 00 00  d...........2...
    0070: AD C5 03 00 01 08 00 00 B2 00 00 00 00 00 00 00  ................
    0080: BE 00 00 05 00 00 00 00 00 00 00 00 00 E0 46 A7  ..............F.
    0090: 00 00 00 00 01 20 00 02 00 08 00 00 00 00 00 00  ..... ..........
    00A0: 01 00 00 02 00 00 00 00 00 00 00 00 01 10 00 02  ................
    00B0: 04 08 00 00 00 00 00 00 01 00 00 02 00 00 00 00  ................
    00C0: 00 00 00 00 01 08 00 01 B4 00 00 00 00 00 00 00  ................
    00D0: 01 20 00 03 08 08 00 00 00 00 00 00 01 40 00 01  . ...........@..
    00E0: 20 08 00 00 00 00 00 00 01 00 00 01 00 00 00 00   ...............
    00F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0110: 00 00 00 00                                      ....

FPDT @ 0x0000000000000000
    0000: 46 50 44 54 44 00 00 00 01 1F 41 4D 44 20 20 20  FPDTD.....AMD   
    0010: 41 20 4D 20 49 20 00 00 09 20 07 01 41 4D 49 20  A M I ... ..AMI 
    0020: 13 00 00 01 00 00 10 01 00 00 00 00 00 50 4C A6  .............PL.
    0030: 00 00 00 00 01 00 10 01 00 00 00 00 00 70 4E A6  .............pN.
    0040: 00 00 00 00                                      ....

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 CC 09 00 00 02 E6 41 4D 44 00 00 00  SSDT......AMD...
    0010: 42 4F 55 4C 44 45 52 47 02 00 00 00 4D 53 46 54  BOULDERG....MSFT
    0020: 00 00 00 04 10 47 9A 5C 5F 53 42 5F 08 41 47 52  .....G.\_SB_.AGR
    0030: 42 0C 00 00 00 E0 08 41 44 42 47 11 04 0B 00 01  B......ADBG.....
    0040: 5B 01 41 4D 30 30 00 5B 80 41 30 30 31 01 0A 80  [.AM00.[.A001...
    0050: 0A 04 5B 81 0B 41 30 30 31 03 41 30 30 32 20 5B  ..[..A001.A002 [
    0060: 80 41 30 30 33 01 0A 80 0A 02 5B 81 0B 41 30 30  .A003.....[..A00
    0070: 33 02 41 30 30 34 10 5B 80 41 30 30 35 01 0A 80  3.A004.[.A005...
    0080: 0A 01 5B 81 0B 41 30 30 35 01 41 30 30 36 08 14  ..[..A005.A006..
    0090: 27 41 30 30 37 01 A0 20 93 83 88 5C 2E 5F 53 42  'A007.. ...\._SB
    00A0: 5F 41 44 41 54 0A 08 00 0A 01 70 7D 68 0C 00 00  _ADAT.....p}h...
    00B0: 00 B0 00 41 01 30 32 08 41 44 41 54 11 45 52 0B  ...A.02.ADAT.ER.
    00C0: 60 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00  `...............
    00D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0110: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0120: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0130: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0150: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0160: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0170: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0190: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0210: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0220: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0230: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0250: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0260: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0270: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0290: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0310: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0320: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0330: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0350: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0360: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0370: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0390: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0410: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0420: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0430: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0450: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0460: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0470: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0490: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0510: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0520: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0530: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0550: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0560: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0570: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0590: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    05A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    05B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    05C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    05D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    05E0: 00 00 5B 80 41 30 33 32 00 41 47 52 42 0B 00 10  ..[.A032.AGRB...
    05F0: 5B 81 0E 41 30 33 32 13 00 40 5C 41 30 33 33 20  [..A032..@\A033 
    0600: 5B 87 17 41 30 33 32 41 30 33 33 0C 30 05 B1 03  [..A032A033.0...
    0610: 13 00 40 5E 41 30 33 31 20 5B 87 17 41 30 33 32  ..@^A031 [..A032
    0620: 41 30 33 33 0C 7C 05 B1 03 13 00 40 5E 41 30 32  A033.|.....@^A02
    0630: 34 20 5B 87 17 41 30 33 32 41 30 33 33 0C C4 09  4 [..A032A033...
    0640: B1 03 13 00 40 5E 41 30 32 35 20 5B 87 17 41 30  ....@^A025 [..A0
    0650: 33 32 41 30 33 33 0C C8 09 B1 03 13 00 40 5E 41  32A033.......@^A
    0660: 30 32 36 20 5B 87 17 41 30 33 32 41 30 33 33 0C  026 [..A032A033.
    0670: CC 09 B1 03 13 00 40 5E 41 30 32 37 20 5B 87 17  ......@^A027 [..
    0680: 41 30 33 32 41 30 33 33 0C D0 09 B1 03 13 00 40  A032A033.......@
    0690: 5E 41 30 32 38 20 5B 87 17 41 30 33 32 41 30 33  ^A028 [..A032A03
    06A0: 33 0C D4 09 B1 03 13 00 40 5E 41 30 32 39 20 5B  3.......@^A029 [
    06B0: 87 17 41 30 33 32 41 30 33 33 0C D8 09 B1 03 13  ..A032A033......
    06C0: 00 40 5E 41 30 33 30 20 14 47 0A 41 30 31 37 0A  .@^A030 .G.A017.
    06D0: 5B 23 5C 2E 5F 53 42 5F 41 4D 30 30 FF FF 8A 69  [#\._SB_AM00...i
    06E0: 0A 00 41 30 31 38 8A 69 0A 04 41 30 31 39 8A 69  ..A018.i..A019.i
    06F0: 0A 08 41 30 32 30 8A 69 0A 0C 41 30 32 31 8A 69  ..A020.i..A021.i
    0700: 0A 10 41 30 32 32 8A 69 0A 14 41 30 32 33 70 0A  ..A022.i..A023p.
    0710: 00 41 30 32 34 A2 09 92 93 41 30 32 34 0A 00 70  .A024....A024..p
    0720: 41 30 31 38 41 30 32 35 70 41 30 31 39 41 30 32  A018A025pA019A02
    0730: 36 70 41 30 32 30 41 30 32 37 70 41 30 32 31 41  6pA020A027pA021A
    0740: 30 32 38 70 41 30 32 32 41 30 32 39 70 41 30 32  028pA022A029pA02
    0750: 33 41 30 33 30 70 68 41 30 33 31 A2 08 93 41 30  3A030phA031...A0
    0760: 32 34 0A 00 5B 27 5C 2E 5F 53 42 5F 41 4D 30 30  24..['\._SB_AM00
    0770: 14 3A 41 4D 4E 52 01 5B 23 5C 2E 5F 53 42 5F 41  .:AMNR.[#\._SB_A
    0780: 4D 30 30 FF FF 5B 87 13 41 30 33 32 41 30 33 33  M00..[..A032A033
    0790: 68 03 00 40 5E 41 30 33 34 20 5B 27 5C 2E 5F 53  h..@^A034 ['\._S
    07A0: 42 5F 41 4D 30 30 A4 41 30 33 34 14 3B 41 4D 4E  B_AM00.A034.;AMN
    07B0: 57 02 5B 23 5C 2E 5F 53 42 5F 41 4D 30 30 FF FF  W.[#\._SB_AM00..
    07C0: 5B 87 13 41 30 33 32 41 30 33 33 68 03 00 40 5E  [..A032A033h..@^
    07D0: 41 30 33 35 20 70 69 41 30 33 35 5B 27 5C 2E 5F  A035 piA035['\._
    07E0: 53 42 5F 41 4D 30 30 14 47 11 41 30 31 36 09 8B  SB_AM00.G.A016..
    07F0: 68 0A 00 41 30 33 36 70 11 03 0A 18 67 8A 67 0A  h..A036p....g.g.
    0800: 00 41 30 33 37 8A 67 0A 04 41 30 33 38 8A 67 0A  .A037.g..A038.g.
    0810: 08 41 30 33 39 8A 67 0A 0C 41 30 34 30 8A 67 0A  .A039.g..A040.g.
    0820: 10 41 30 34 31 8A 67 0A 14 41 30 34 32 70 0A 02  .A041.g..A042p..
    0830: 60 A2 4D 0C 95 60 41 30 33 36 70 83 88 68 60 00  `.M..`A036p..h`.
    0840: 61 75 60 70 83 88 68 60 00 62 75 60 7D 79 83 88  au`p..h`.bu`}y..
    0850: 68 60 00 0A 08 00 62 62 75 60 7D 79 83 88 68 60  h`....bbu`}y..h`
    0860: 00 0A 10 00 62 62 75 60 7D 79 83 88 68 60 00 0A  ....bbu`}y..h`..
    0870: 18 00 62 62 75 60 70 0A 00 41 30 33 37 70 0A 00  ..bbu`p..A037p..
    0880: 41 30 33 38 70 0A 00 41 30 33 39 70 0A 00 41 30  A038p..A039p..A0
    0890: 34 30 70 0A 00 41 30 34 31 70 0A 00 41 30 34 32  40p..A041p..A042
    08A0: A0 12 93 61 0A 04 70 62 41 30 33 37 41 30 31 37  ...a..pbA037A017
    08B0: 0A 3E 67 A0 12 93 61 0A 0B 70 62 41 30 33 37 41  .>g...a..pbA037A
    08C0: 30 31 37 0A 3C 67 A0 12 93 61 0A 0C 70 62 41 30  017.<g...a..pbA0
    08D0: 33 37 41 30 31 37 0A 3D 67 A0 12 93 61 0A 10 70  37A017.=g...a..p
    08E0: 62 41 30 33 37 41 30 31 37 0A 3F 67 A0 12 93 61  bA037A017.?g...a
    08F0: 0A 11 70 62 41 30 33 37 41 30 31 37 0A 2F 67 08  ..pbA037A017./g.
    0900: 41 30 30 38 0A 01 08 41 30 30 39 0A 00 14 06 41  A008...A009....A
    0910: 50 54 53 01 14 06 41 57 41 4B 01 14 40 0B 41 4C  PTS...AWAK..@.AL
    0920: 49 42 02 A0 43 08 93 68 0A 00 41 30 30 37 0B 80  IB..C..h..A007..
    0930: AA 8B 69 0A 00 41 30 31 30 8B 69 0A 02 41 30 31  ..i..A010.i..A01
    0940: 31 8A 69 0A 04 41 30 31 32 70 11 04 0B 00 01 60  1.i..A012p.....`
    0950: 8B 60 0A 00 41 30 31 33 70 41 30 31 30 41 30 31  .`..A013pA010A01
    0960: 33 8B 60 0A 02 41 30 31 34 70 41 30 31 31 41 30  3.`..A014pA011A0
    0970: 31 34 8A 60 0A 04 41 30 31 35 70 41 30 31 32 41  14.`..A015pA012A
    0980: 30 31 35 7B 41 30 31 35 80 0A 0F 00 41 30 31 35  015{A015....A015
    0990: 70 0A 01 61 7D 41 30 31 35 61 41 30 31 35 41 30  p..a}A015aA015A0
    09A0: 30 37 0B 81 AA A4 60 A0 18 93 68 0A 0C 41 30 30  07....`...h..A00
    09B0: 37 0B 8E AA 41 30 31 36 69 41 30 30 37 0B 8F AA  7...A016iA007...
    09C0: 70 11 07 0B 00 01 03 00 00 60 A4 60              p........`.`

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 72 0B 00 00 02 22 41 4D 44 00 00 00  SSDTr...."AMD...
    0010: 43 50 4D 41 43 50 56 36 01 00 00 00 49 4E 54 4C  CPMACPV6....INTL
    0020: 31 03 23 20 A0 47 47 00 15 5C 4D 31 31 35 03 00  1.# .GG..\M115..
    0030: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0040: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0050: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0060: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0070: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0080: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    0090: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00A0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00B0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00C0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00D0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00E0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    00F0: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0100: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0110: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0120: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0130: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0140: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0150: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0160: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0170: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0180: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    0190: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01A0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01B0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01C0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01D0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01E0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    01F0: 15 5C 4D 30 34 36 01 00 15 5C 4D 30 34 37 01 00  .\M046...\M047..
    0200: 15 5C 4D 32 34 39 08 04 15 5C 4D 32 35 30 08 05  .\M249...\M250..
    0210: 15 5C 4D 32 35 31 05 00 15 5C 4D 33 31 30 05 00  .\M251...\M310..
    0220: 15 5C 4D 33 31 43 05 00 15 5C 4D 33 32 30 05 00  .\M31C...\M320..
    0230: 15 5C 4D 33 32 31 05 00 15 5C 4D 33 32 32 05 00  .\M321...\M322..
    0240: 15 5C 4D 33 32 33 05 00 15 5C 4D 33 32 34 05 00  .\M323...\M324..
    0250: 15 5C 4D 33 32 35 05 00 15 5C 4D 33 32 36 05 00  .\M325...\M326..
    0260: 15 5C 4D 33 32 37 05 00 15 5C 4D 33 32 38 05 00  .\M327...\M328..
    0270: 15 5C 4D 32 37 36 08 00 15 5C 4D 32 37 37 08 00  .\M276...\M277..
    0280: 15 5C 4D 32 38 30 05 00 15 5C 4D 32 39 30 05 00  .\M280...\M290..
    0290: 15 5C 4D 33 37 38 05 00 15 5C 4D 33 37 39 05 00  .\M378...\M379..
    02A0: 15 5C 4D 33 38 30 05 00 15 5C 4D 33 38 31 05 00  .\M380...\M381..
    02B0: 15 5C 4D 33 38 32 05 00 15 5C 4D 33 38 33 05 00  .\M382...\M383..
    02C0: 15 5C 4D 33 38 34 05 00 15 5C 4D 33 38 35 05 00  .\M384...\M385..
    02D0: 15 5C 4D 33 38 36 05 00 15 5C 4D 33 38 37 05 00  .\M386...\M387..
    02E0: 15 5C 4D 33 38 38 05 00 15 5C 4D 33 38 39 05 00  .\M388...\M389..
    02F0: 15 5C 4D 33 39 30 05 00 15 5C 4D 33 39 31 05 00  .\M390...\M391..
    0300: 15 5C 4D 33 39 32 05 00 15 5C 4D 33 33 31 05 00  .\M392...\M331..
    0310: 15 5C 4D 36 32 30 05 00 15 5C 4D 34 30 34 03 00  .\M620...\M404..
    0320: 15 5C 4D 34 30 38 09 00 15 5C 4D 34 31 34 05 00  .\M408...\M414..
    0330: 15 5C 4D 34 34 34 05 00 15 5C 4D 34 35 33 05 00  .\M444...\M453..
    0340: 15 5C 4D 34 35 34 05 00 15 5C 4D 34 35 35 05 00  .\M454...\M455..
    0350: 15 5C 4D 34 35 36 05 00 15 5C 4D 34 35 37 05 00  .\M456...\M457..
    0360: 15 5C 4D 34 36 30 08 07 15 5C 4D 34 34 39 05 00  .\M460...\M449..
    0370: 15 5C 4D 34 43 30 05 00 15 5C 4D 32 33 41 05 00  .\M4C0...\M23A..
    0380: 15 5C 4D 34 46 30 05 00 15 5C 4D 36 31 30 05 00  .\M4F0...\M610..
    0390: 15 5C 4D 32 39 41 05 00 15 5C 4D 36 33 31 05 00  .\M29A...\M631..
    03A0: 15 5C 4D 36 35 32 05 00 15 5C 4D 30 35 30 06 00  .\M652...\M050..
    03B0: 15 5C 4D 30 35 31 06 00 15 5C 4D 30 35 32 06 00  .\M051...\M052..
    03C0: 15 5C 4D 30 35 33 06 00 15 5C 4D 30 35 34 06 00  .\M053...\M054..
    03D0: 15 5C 4D 30 35 35 06 00 15 5C 4D 30 35 36 06 00  .\M055...\M056..
    03E0: 15 5C 4D 30 35 37 06 00 15 5C 4D 30 35 38 06 00  .\M057...\M058..
    03F0: 15 5C 4D 30 35 39 06 00 15 5C 4D 30 36 32 06 00  .\M059...\M062..
    0400: 15 5C 4D 30 36 38 06 00 15 5C 4D 30 36 39 06 00  .\M068...\M069..
    0410: 15 5C 4D 30 37 30 06 00 15 5C 4D 30 37 31 06 00  .\M070...\M071..
    0420: 15 5C 4D 30 37 32 06 00 15 5C 4D 30 37 34 06 00  .\M072...\M074..
    0430: 15 5C 4D 30 37 35 06 00 15 5C 4D 30 37 36 06 00  .\M075...\M076..
    0440: 15 5C 4D 30 37 37 06 00 15 5C 4D 30 37 38 06 00  .\M077...\M078..
    0450: 15 5C 4D 30 37 39 06 00 15 5C 4D 30 38 30 06 00  .\M079...\M080..
    0460: 15 5C 4D 30 38 31 06 00 15 5C 4D 31 32 37 06 00  .\M081...\M127..
    0470: 15 5C 2F 04 5F 53 42 5F 50 43 49 30 47 50 31 37  .\/._SB_PCI0GP17
    0480: 41 43 50 5F 06 00 15 5C 2F 04 5F 53 42 5F 50 43  ACP_...\/._SB_PC
    0490: 49 30 47 50 31 37 41 5A 41 4C 06 00 08 4D 32 37  I0GP17AZAL...M27
    04A0: 38 01 08 4D 32 37 39 01 08 4D 32 37 41 00 08 4D  8..M279..M27A..M
    04B0: 32 37 42 01 08 41 50 47 45 01 08 41 43 47 45 00  27B..APGE..ACGE.
    04C0: 5B 01 4D 32 37 45 00 14 4C 28 4D 32 37 36 08 4D  [.M27E..L(M276.M
    04D0: 34 36 30 0D 46 45 41 2D 41 53 4C 2D 43 70 6D 50  460.FEA-ASL-CpmP
    04E0: 6F 77 65 72 47 61 74 65 4F 6E 2D 53 74 61 72 74  owerGateOn-Start
    04F0: 0A 00 00 00 00 00 00 00 5B 23 4D 32 37 45 FF FF  ........[#M27E..
    0500: 4D 34 36 30 0D 20 20 43 70 6D 41 63 70 50 72 65  M460.  CpmAcpPre
    0510: 73 65 6E 74 53 74 61 74 65 20 20 20 20 3D 20 25  sentState    = %
    0520: 64 0A 00 4D 32 37 38 00 00 00 00 00 4D 34 36 30  d..M278.....M460
    0530: 0D 20 20 43 70 6D 41 7A 61 6C 69 61 50 72 65 73  .  CpmAzaliaPres
    0540: 65 6E 74 53 74 61 74 65 20 3D 20 25 64 0A 00 4D  entState = %d..M
    0550: 32 37 39 00 00 00 00 00 4D 34 36 30 0D 20 20 41  279.....M460.  A
    0560: 43 47 45 20 20 20 20 20 20 20 20 20 20 20 20 20  CGE             
    0570: 20 20 20 20 20 3D 20 25 64 0A 00 41 43 47 45 00       = %d..ACGE.
    0580: 00 00 00 00 4D 34 36 30 0D 20 20 41 50 47 45 20  ....M460.  APGE 
    0590: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20                  
    05A0: 20 3D 20 25 64 0A 00 41 50 47 45 00 00 00 00 00   = %d..APGE.....
    05B0: A0 3D 92 7F 4D 32 37 38 4D 32 37 39 00 4D 34 36  .=..M278M279.M46
    05C0: 30 0D 46 45 41 2D 41 53 4C 2D 43 70 6D 50 6F 77  0.FEA-ASL-CpmPow
    05D0: 65 72 47 61 74 65 4F 6E 2D 31 2D 45 6E 64 0A 00  erGateOn-1-End..
    05E0: 00 00 00 00 00 00 5B 27 4D 32 37 45 A4 00 A0 48  ......['M27E...H
    05F0: 13 93 41 43 47 45 01 70 4D 32 34 39 00 00 00 0C  ..ACGE.pM249....
    0600: E4 8A 05 00 64 70 0A 64 65 A2 41 05 93 64 00 70  ....dp.de.A..d.p
    0610: 4D 32 34 39 00 00 00 0C E4 8A 05 00 64 76 65 A0  M249........dve.
    0620: 37 93 65 00 4D 34 36 30 0D 20 20 57 61 69 74 20  7.e.M460.  Wait 
    0630: 41 43 4C 4B 20 43 6C 6F 63 6B 20 53 74 61 72 74  ACLK Clock Start
    0640: 20 73 74 61 74 75 73 20 74 69 6D 65 6F 75 74 00   status timeout.
    0650: 00 00 00 00 00 00 A5 5B 21 0A 63 A0 42 09 93 64  .......[!.c.B..d
    0660: 01 4D 32 35 30 00 00 00 0C E4 8A 05 00 00 4D 32  .M250.........M2
    0670: 35 30 00 00 00 0C E0 8A 05 00 0A C8 4D 32 35 30  50..........M250
    0680: 00 00 00 0C 30 8A 05 00 0A 03 70 4D 32 34 39 00  ....0.....pM249.
    0690: 00 00 0C E4 8A 05 00 64 70 0A 64 65 A2 41 05 93  .......dp.de.A..
    06A0: 64 00 70 4D 32 34 39 00 00 00 0C E4 8A 05 00 64  d.pM249........d
    06B0: 76 65 A0 37 93 65 00 4D 34 36 30 0D 20 20 57 61  ve.7.e.M460.  Wa
    06C0: 69 74 20 41 43 4C 4B 20 43 6C 6F 63 6B 20 53 74  it ACLK Clock St
    06D0: 61 72 74 20 73 74 61 74 75 73 20 74 69 6D 65 6F  art status timeo
    06E0: 75 74 00 00 00 00 00 00 00 A5 5B 21 0A 63 A1 38  ut........[!.c.8
    06F0: 4D 34 36 30 0D 46 45 41 2D 41 53 4C 2D 43 70 6D  M460.FEA-ASL-Cpm
    0700: 50 6F 77 65 72 47 61 74 65 4F 6E 2D 6D 6D 41 43  PowerGateOn-mmAC
    0710: 50 5F 52 45 53 50 5F 52 45 47 20 3D 20 25 64 0A  P_RESP_REG = %d.
    0720: 00 64 00 00 00 00 00 4D 34 36 30 0D 46 45 41 2D  .d.....M460.FEA-
    0730: 41 53 4C 2D 43 70 6D 50 6F 77 65 72 47 61 74 65  ASL-CpmPowerGate
    0740: 4F 6E 2D 45 6E 64 0A 00 00 00 00 00 00 00 5B 27  On-End........['
    0750: 4D 32 37 45 14 49 29 4D 32 37 37 08 4D 34 36 30  M27E.I)M277.M460
    0760: 0D 46 45 41 2D 41 53 4C 2D 43 70 6D 50 6F 77 65  .FEA-ASL-CpmPowe
    0770: 72 47 61 74 65 4F 66 66 2D 53 74 61 72 74 0A 00  rGateOff-Start..
    0780: 00 00 00 00 00 00 5B 23 4D 32 37 45 FF FF 4D 34  ......[#M27E..M4
    0790: 36 30 0D 20 20 43 70 6D 41 63 70 50 72 65 73 65  60.  CpmAcpPrese
    07A0: 6E 74 53 74 61 74 65 20 20 20 20 3D 20 25 64 0A  ntState    = %d.
    07B0: 00 4D 32 37 38 00 00 00 00 00 4D 34 36 30 0D 20  .M278.....M460. 
    07C0: 20 43 70 6D 41 7A 61 6C 69 61 50 72 65 73 65 6E   CpmAzaliaPresen
    07D0: 74 53 74 61 74 65 20 3D 20 25 64 0A 00 4D 32 37  tState = %d..M27
    07E0: 39 00 00 00 00 00 4D 34 36 30 0D 20 20 41 50 47  9.....M460.  APG
    07F0: 45 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20  E               
    0800: 20 20 20 3D 20 25 64 0A 00 41 50 47 45 00 00 00     = %d..APGE...
    0810: 00 00 4D 34 36 30 0D 20 20 41 43 47 45 20 20 20  ..M460.  ACGE   
    0820: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 3D                 =
    0830: 20 25 64 0A 00 41 43 47 45 00 00 00 00 00 A0 42   %d..ACGE......B
    0840: 04 92 90 93 4D 32 37 38 00 93 4D 32 37 39 00 4D  ....M278..M279.M
    0850: 34 36 30 0D 46 45 41 2D 41 53 4C 2D 43 70 6D 50  460.FEA-ASL-CpmP
    0860: 6F 77 65 72 47 61 74 65 4F 66 66 2D 31 2D 45 6E  owerGateOff-1-En
    0870: 64 0A 00 00 00 00 00 00 00 5B 27 4D 32 37 45 A4  d........['M27E.
    0880: 00 A0 4E 13 93 41 43 47 45 01 70 4D 32 34 39 00  ..N..ACGE.pM249.
    0890: 00 00 0C E4 8A 05 00 64 70 0A 64 65 A2 41 05 93  .......dp.de.A..
    08A0: 64 00 70 4D 32 34 39 00 00 00 0C E4 8A 05 00 64  d.pM249........d
    08B0: 76 65 A0 37 93 65 00 4D 34 36 30 0D 20 20 57 61  ve.7.e.M460.  Wa
    08C0: 69 74 20 41 43 4C 4B 20 43 6C 6F 63 6B 20 53 74  it ACLK Clock St
    08D0: 61 72 74 20 73 74 61 74 75 73 20 74 69 6D 65 6F  art status timeo
    08E0: 75 74 00 00 00 00 00 00 00 A5 5B 21 0A 63 A0 48  ut........[!.c.H
    08F0: 09 93 64 01 4D 32 35 30 00 00 00 0C E4 8A 05 00  ..d.M250........
    0900: 00 4D 32 35 30 00 00 00 0C E0 8A 05 00 00 4D 32  .M250.........M2
    0910: 35 30 00 00 00 0C 30 8A 05 00 0A 03 70 4D 32 34  50....0.....pM24
    0920: 39 00 00 00 0C E4 8A 05 00 64 70 0A 64 65 A2 48  9........dp.de.H
    0930: 05 93 64 00 70 4D 32 34 39 00 00 00 0C E4 8A 05  ..d.pM249.......
    0940: 00 64 76 65 A0 3E 93 65 00 4D 34 36 30 0D 20 20  .dve.>.e.M460.  
    0950: 57 61 69 74 20 6D 6D 52 53 4D 55 5F 50 47 46 53  Wait mmRSMU_PGFS
    0960: 4D 5F 53 54 41 54 55 53 5F 41 43 50 20 73 74 61  M_STATUS_ACP sta
    0970: 74 75 73 20 74 69 6D 65 6F 75 74 00 00 00 00 00  tus timeout.....
    0980: 00 00 A5 5B 21 0A 63 A1 38 4D 34 36 30 0D 46 45  ...[!.c.8M460.FE
    0990: 41 2D 41 53 4C 2D 43 70 6D 50 6F 77 65 72 47 61  A-ASL-CpmPowerGa
    09A0: 74 65 4F 6E 2D 6D 6D 41 43 50 5F 52 45 53 50 5F  teOn-mmACP_RESP_
    09B0: 52 45 47 20 3D 20 25 64 0A 00 64 00 00 00 00 00  REG = %d..d.....
    09C0: 4D 34 36 30 0D 46 45 41 2D 41 53 4C 2D 43 70 6D  M460.FEA-ASL-Cpm
    09D0: 50 6F 77 65 72 47 61 74 65 4F 66 66 2D 45 6E 64  PowerGateOff-End
    09E0: 0A 00 00 00 00 00 00 00 5B 27 4D 32 37 45 10 4D  ........['M27E.M
    09F0: 0B 5C 2F 04 5F 53 42 5F 50 43 49 30 47 50 31 37  .\/._SB_PCI0GP17
    0A00: 41 43 50 5F 14 43 05 5F 50 53 30 00 4D 34 36 30  ACP_.C._PS0.M460
    0A10: 0D 46 45 41 2D 41 53 4C 2D 5C 5F 53 42 2E 50 43  .FEA-ASL-\_SB.PC
    0A20: 49 30 2E 50 42 43 2E 41 43 50 2E 5F 50 53 30 20  I0.PBC.ACP._PS0 
    0A30: 43 70 6D 41 63 70 50 72 65 73 65 6E 74 53 74 61  CpmAcpPresentSta
    0A40: 74 65 20 3D 20 31 0A 00 00 00 00 00 00 00 70 01  te = 1........p.
    0A50: 4D 32 37 38 4D 32 37 36 14 43 05 5F 50 53 33 00  M278M276.C._PS3.
    0A60: 4D 34 36 30 0D 46 45 41 2D 41 53 4C 2D 5C 5F 53  M460.FEA-ASL-\_S
    0A70: 42 2E 50 43 49 30 2E 50 42 43 2E 41 43 50 2E 5F  B.PCI0.PBC.ACP._
    0A80: 50 53 33 20 43 70 6D 41 63 70 50 72 65 73 65 6E  PS3 CpmAcpPresen
    0A90: 74 53 74 61 74 65 20 3D 20 30 0A 00 00 00 00 00  tState = 0......
    0AA0: 00 00 70 00 4D 32 37 38 4D 32 37 37 10 45 0C 5C  ..p.M278M277.E.\
    0AB0: 2F 04 5F 53 42 5F 50 43 49 30 47 50 31 37 41 5A  /._SB_PCI0GP17AZ
    0AC0: 41 4C 14 47 05 5F 50 53 30 00 4D 34 36 30 0D 46  AL.G._PS0.M460.F
    0AD0: 45 41 2D 41 53 4C 2D 5C 5F 53 42 2E 50 43 49 30  EA-ASL-\_SB.PCI0
    0AE0: 2E 50 42 43 2E 41 5A 41 4C 2E 5F 50 53 30 20 43  .PBC.AZAL._PS0 C
    0AF0: 70 6D 41 7A 61 6C 69 61 50 72 65 73 65 6E 74 53  pmAzaliaPresentS
    0B00: 74 61 74 65 20 3D 20 31 0A 00 00 00 00 00 00 00  tate = 1........
    0B10: 70 01 4D 32 37 39 4D 32 37 36 14 47 05 5F 50 53  p.M279M276.G._PS
    0B20: 33 00 4D 34 36 30 0D 46 45 41 2D 41 53 4C 2D 5C  3.M460.FEA-ASL-\
    0B30: 5F 53 42 2E 50 43 49 30 2E 50 42 43 2E 41 5A 41  _SB.PCI0.PBC.AZA
    0B40: 4C 2E 5F 50 53 33 20 43 70 6D 41 7A 61 6C 69 61  L._PS3 CpmAzalia
    0B50: 50 72 65 73 65 6E 74 53 74 61 74 65 20 3D 20 30  PresentState = 0
    0B60: 0A 00 00 00 00 00 00 00 70 00 4D 32 37 39 4D 32  ........p.M279M2
    0B70: 37 37                                            77

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 48 24 00 00 02 E2 41 4D 44 00 00 00  SSDTH$....AMD...
    0010: 47 50 50 5F 50 4D 45 5F 01 00 00 00 49 4E 54 4C  GPP_PME_....INTL
    0020: 31 03 23 20 A0 48 60 00 15 5C 4D 30 31 37 08 06  1.# .H`..\M017..
    0030: 15 5C 4D 30 31 38 08 07 15 5C 4D 31 31 35 03 00  .\M018...\M115..
    0040: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0050: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0060: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0070: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0080: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0090: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    00A0: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00B0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00C0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00D0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00E0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00F0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    0100: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0110: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0120: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0130: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0140: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0150: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0160: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0170: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0180: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0190: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    01A0: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01B0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01C0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01D0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01E0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01F0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    0200: 15 5C 4D 30 34 36 01 00 15 5C 4D 30 34 37 01 00  .\M046...\M047..
    0210: 15 5C 4D 30 34 39 08 02 15 5C 4D 32 35 31 05 00  .\M049...\M251..
    0220: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0230: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0240: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0250: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0260: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0270: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0280: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    0290: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02A0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02B0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02C0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02D0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02E0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    02F0: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0300: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0310: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0320: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0330: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0340: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0350: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 36 30 08 07  .\M457...\M460..
    0360: 15 5C 4D 34 34 39 05 00 15 5C 4D 34 43 30 05 00  .\M449...\M4C0..
    0370: 15 5C 4D 32 33 41 05 00 15 5C 4D 34 46 30 05 00  .\M23A...\M4F0..
    0380: 15 5C 4D 36 31 30 05 00 15 5C 4D 32 39 41 05 00  .\M610...\M29A..
    0390: 15 5C 4D 36 33 31 05 00 15 5C 4D 36 35 32 05 00  .\M631...\M652..
    03A0: 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06 00  .\M050...\M051..
    03B0: 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06 00  .\M052...\M053..
    03C0: 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06 00  .\M054...\M055..
    03D0: 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06 00  .\M056...\M057..
    03E0: 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06 00  .\M058...\M059..
    03F0: 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06 00  .\M062...\M068..
    0400: 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06 00  .\M069...\M070..
    0410: 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06 00  .\M071...\M072..
    0420: 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06 00  .\M074...\M075..
    0430: 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06 00  .\M076...\M077..
    0440: 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06 00  .\M078...\M079..
    0450: 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06 00  .\M080...\M081..
    0460: 15 5C 4D 31 32 37 06 00 15 5C 5F 42 42 4E 01 00  .\M127...\_BBN..
    0470: 15 5C 2E 5F 53 42 5F 50 43 49 33 06 00 15 5C 2F  .\._SB_PCI3...\/
    0480: 03 5F 53 42 5F 50 43 49 33 47 50 50 30 06 00 15  ._SB_PCI3GPP0...
    0490: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 31 06  \/._SB_PCI3GPP1.
    04A0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50  ..\/._SB_PCI3GPP
    04B0: 32 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47  2...\/._SB_PCI3G
    04C0: 50 50 33 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PP3...\/._SB_PCI
    04D0: 33 47 50 50 34 06 00 15 5C 2F 03 5F 53 42 5F 50  3GPP4...\/._SB_P
    04E0: 43 49 33 47 50 50 35 06 00 15 5C 2F 03 5F 53 42  CI3GPP5...\/._SB
    04F0: 5F 50 43 49 33 47 50 50 36 06 00 15 5C 2F 03 5F  _PCI3GPP6...\/._
    0500: 53 42 5F 50 43 49 33 47 50 50 37 06 00 15 5C 2F  SB_PCI3GPP7...\/
    0510: 03 5F 53 42 5F 50 43 49 33 47 50 50 38 06 00 15  ._SB_PCI3GPP8...
    0520: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 39 06  \/._SB_PCI3GPP9.
    0530: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50  ..\/._SB_PCI3GPP
    0540: 41 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47  A...\/._SB_PCI3G
    0550: 50 50 42 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PPB...\/._SB_PCI
    0560: 33 47 50 50 43 06 00 15 5C 2F 03 5F 53 42 5F 50  3GPPC...\/._SB_P
    0570: 43 49 33 47 50 50 44 06 00 15 5C 2F 03 5F 53 42  CI3GPPD...\/._SB
    0580: 5F 50 43 49 33 47 50 50 45 06 00 15 5C 2F 03 5F  _PCI3GPPE...\/._
    0590: 53 42 5F 50 43 49 33 47 50 50 46 06 00 15 5C 2F  SB_PCI3GPPF...\/
    05A0: 03 5F 53 42 5F 50 43 49 33 47 50 50 47 06 00 15  ._SB_PCI3GPPG...
    05B0: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 48 06  \/._SB_PCI3GPPH.
    05C0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 31  ..\/._SB_PCI3GP1
    05D0: 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47  5...\/._SB_PCI3G
    05E0: 50 32 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  P25...\/._SB_PCI
    05F0: 33 47 50 33 35 06 00 15 5C 2F 03 5F 53 42 5F 50  3GP35...\/._SB_P
    0600: 43 49 33 47 50 34 35 06 00 15 5C 2F 03 5F 53 42  CI3GP45...\/._SB
    0610: 5F 50 43 49 33 47 50 31 37 06 00 15 5C 2F 03 5F  _PCI3GP17...\/._
    0620: 53 42 5F 50 43 49 33 47 50 32 37 06 00 10 8A E1  SB_PCI3GP27.....
    0630: 01 5C 2E 5F 53 42 5F 50 43 49 33 08 45 54 50 30  .\._SB_PCI3.ETP0
    0640: 0A 55 08 45 54 50 31 0A 55 08 45 54 50 32 0A 55  .U.ETP1.U.ETP2.U
    0650: 08 45 54 50 33 0A 55 08 45 54 50 34 0A 55 08 45  .ETP3.U.ETP4.U.E
    0660: 54 50 35 0A 55 08 45 54 50 36 0A 55 08 45 54 50  TP5.U.ETP6.U.ETP
    0670: 37 0A 55 08 45 54 50 38 0A 55 08 45 54 50 39 0A  7.U.ETP8.U.ETP9.
    0680: 55 08 45 54 50 41 0A 55 08 45 54 50 42 0A 55 08  U.ETPA.U.ETPB.U.
    0690: 45 54 50 43 0A 55 08 45 54 50 44 0A 55 08 45 54  ETPC.U.ETPD.U.ET
    06A0: 50 45 0A 55 08 45 54 50 46 0A 55 08 45 54 50 47  PE.U.ETPF.U.ETPG
    06B0: 0A 55 08 45 54 50 48 0A 55 08 45 54 31 35 0A 55  .U.ETPH.U.ET15.U
    06C0: 08 45 54 32 35 0A 55 08 45 54 33 35 0A 55 08 45  .ET25.U.ET35.U.E
    06D0: 54 34 35 0A 55 08 45 54 31 37 0A 55 08 45 54 32  T45.U.ET17.U.ET2
    06E0: 37 0A 55 14 84 D6 01 50 50 4D 45 00 4D 34 36 30  7.U....PPME.M460
    06F0: 0D 20 20 4F 45 4D 2D 41 53 4C 2D 5C 5F 53 42 2E  .  OEM-ASL-\_SB.
    0700: 50 43 49 33 2E 50 50 4D 45 0A 00 00 00 00 00 00  PCI3.PPME.......
    0710: 00 A0 4F 18 92 93 5C 2F 03 5F 53 42 5F 50 43 49  ..O...\/._SB_PCI
    0720: 33 45 54 50 30 0A FF 70 7A 4D 30 31 37 5F 42 42  3ETP0..pzM017_BB
    0730: 4E 01 01 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53  N...x......\/._S
    0740: 42 5F 50 43 49 33 45 54 50 30 A0 46 15 91 93 5C  B_PCI3ETP0.F...\
    0750: 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 30 01 93  /._SB_PCI3ETP0..
    0760: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 30 0A  \/._SB_PCI3ETP0.
    0770: 03 A0 4F 12 5B 12 5C 2F 03 5F 53 42 5F 50 43 49  ..O.[.\/._SB_PCI
    0780: 33 47 50 50 30 00 A0 49 06 92 93 4D 36 32 30 00  3GPP0..I...M620.
    0790: A0 4F 05 93 4D 30 34 39 4D 36 32 30 0A 10 01 A0  .O..M049M620....
    07A0: 40 05 93 7B 4D 30 34 39 4D 36 32 30 0A 52 0A 02  @..{M049M620.R..
    07B0: 00 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66  ..M460.    Notif
    07C0: 79 20 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50 50  y (\_SB.PCI3.GPP
    07D0: 30 2C 20 30 78 30 29 0A 00 00 00 00 00 00 00 86  0, 0x0).........
    07E0: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 30 00  \/._SB_PCI3GPP0.
    07F0: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    0800: 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50 50 30 2C  (\_SB.PCI3.GPP0,
    0810: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    0820: 03 5F 53 42 5F 50 43 49 33 47 50 50 30 0A 02 5B  ._SB_PCI3GPP0..[
    0830: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78  ".dpM017_BBN...x
    0840: 00 0A 20 60 A0 4C 05 92 93 7B 60 0C 00 00 03 00  .. `.L...{`.....
    0850: 00 00 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A  ..M018_BBN...x..
    0860: 20 60 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00   `pM017_BBN...x.
    0870: 0A 20 60 A0 2D 92 93 7B 60 0C 00 00 03 00 00 00  . `.-..{`.......
    0880: 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A 20 60  M018_BBN...x.. `
    0890: 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00 0A 20  pM017_BBN...x.. 
    08A0: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    08B0: 33 45 54 50 31 0A FF 70 7A 4D 30 31 37 5F 42 42  3ETP1..pzM017_BB
    08C0: 4E 01 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    08D0: 53 42 5F 50 43 49 33 45 54 50 31 A0 41 0F 91 93  SB_PCI3ETP1.A...
    08E0: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 31 01  \/._SB_PCI3ETP1.
    08F0: 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 31  .\/._SB_PCI3ETP1
    0900: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0910: 49 33 47 50 50 31 00 4D 34 36 30 0D 20 20 20 20  I3GPP1.M460.    
    0920: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0930: 33 2E 47 50 50 31 2C 20 30 78 32 29 0A 00 00 00  3.GPP1, 0x2)....
    0940: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    0950: 47 50 50 31 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP1..[".dpM017_
    0960: 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0970: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0980: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0990: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    09A0: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    09B0: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    09C0: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    09D0: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    09E0: 32 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 03  2..pzM017_BBN...
    09F0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0A00: 43 49 33 45 54 50 32 A0 41 0F 91 93 5C 2F 03 5F  CI3ETP2.A...\/._
    0A10: 53 42 5F 50 43 49 33 45 54 50 32 01 93 5C 2F 03  SB_PCI3ETP2..\/.
    0A20: 5F 53 42 5F 50 43 49 33 45 54 50 32 0A 03 A0 4A  _SB_PCI3ETP2...J
    0A30: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  .[.\/._SB_PCI3GP
    0A40: 50 32 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P2.M460.    Noti
    0A50: 66 79 20 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50  fy (\_SB.PCI3.GP
    0A60: 50 32 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P2, 0x2)........
    0A70: 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 32  .\/._SB_PCI3GPP2
    0A80: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0A90: 0A 03 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0AA0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AB0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AC0: 01 0A 03 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0AD0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AE0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AF0: 01 0A 03 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F  ....x.. `.K...\/
    0B00: 03 5F 53 42 5F 50 43 49 33 45 54 50 33 0A FF 70  ._SB_PCI3ETP3..p
    0B10: 7A 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78 00 0A  zM017_BBN....x..
    0B20: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45  ....\/._SB_PCI3E
    0B30: 54 50 33 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50  TP3.A...\/._SB_P
    0B40: 43 49 33 45 54 50 33 01 93 5C 2F 03 5F 53 42 5F  CI3ETP3..\/._SB_
    0B50: 50 43 49 33 45 54 50 33 0A 03 A0 4A 0C 5B 12 5C  PCI3ETP3...J.[.\
    0B60: 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 33 00 4D  /._SB_PCI3GPP3.M
    0B70: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    0B80: 5C 5F 53 42 2E 50 43 49 33 2E 47 50 50 33 2C 20  \_SB.PCI3.GPP3, 
    0B90: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    0BA0: 5F 53 42 5F 50 43 49 33 47 50 50 33 0A 02 5B 22  _SB_PCI3GPP3..["
    0BB0: 0A 64 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78  .dpM017_BBN....x
    0BC0: 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00  .. `.@...{`.....
    0BD0: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0BE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0BF0: 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00  x.. `./..{`.....
    0C00: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0C10: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0C20: 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42  x.. `.K...\/._SB
    0C30: 5F 50 43 49 33 45 54 50 34 0A FF 70 7A 4D 30 31  _PCI3ETP4..pzM01
    0C40: 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 18 0A 10 00  7_BBN....x......
    0C50: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 34 A0  \/._SB_PCI3ETP4.
    0C60: 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45  A...\/._SB_PCI3E
    0C70: 54 50 34 01 93 5C 2F 03 5F 53 42 5F 50 43 49 33  TP4..\/._SB_PCI3
    0C80: 45 54 50 34 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53  ETP4...J.[.\/._S
    0C90: 42 5F 50 43 49 33 47 50 50 34 00 4D 34 36 30 0D  B_PCI3GPP4.M460.
    0CA0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    0CB0: 2E 50 43 49 33 2E 47 50 50 34 2C 20 30 78 32 29  .PCI3.GPP4, 0x2)
    0CC0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    0CD0: 50 43 49 33 47 50 50 34 0A 02 5B 22 0A 64 70 4D  PCI3GPP4..[".dpM
    0CE0: 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60  017_BBN....x.. `
    0CF0: A0 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  .@...{`.......M0
    0D00: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D10: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D20: 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  `./..{`.......M0
    0D30: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D40: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D50: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    0D60: 33 45 54 50 35 0A FF 70 7A 4D 30 31 37 5F 42 42  3ETP5..pzM017_BB
    0D70: 4E 01 0A 06 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    0D80: 53 42 5F 50 43 49 33 45 54 50 35 A0 41 0F 91 93  SB_PCI3ETP5.A...
    0D90: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 35 01  \/._SB_PCI3ETP5.
    0DA0: 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 35  .\/._SB_PCI3ETP5
    0DB0: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0DC0: 49 33 47 50 50 35 00 4D 34 36 30 0D 20 20 20 20  I3GPP5.M460.    
    0DD0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0DE0: 33 2E 47 50 50 35 2C 20 30 78 32 29 0A 00 00 00  3.GPP5, 0x2)....
    0DF0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    0E00: 47 50 50 35 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP5..[".dpM017_
    0E10: 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0E20: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E30: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E40: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    0E50: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E60: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E70: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    0E80: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    0E90: 36 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 07  6..pzM017_BBN...
    0EA0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0EB0: 43 49 33 45 54 50 36 A0 41 0F 91 93 5C 2F 03 5F  CI3ETP6.A...\/._
    0EC0: 53 42 5F 50 43 49 33 45 54 50 36 01 93 5C 2F 03  SB_PCI3ETP6..\/.
    0ED0: 5F 53 42 5F 50 43 49 33 45 54 50 36 0A 03 A0 4A  _SB_PCI3ETP6...J
    0EE0: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  .[.\/._SB_PCI3GP
    0EF0: 50 36 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P6.M460.    Noti
    0F00: 66 79 20 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50  fy (\_SB.PCI3.GP
    0F10: 50 36 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P6, 0x2)........
    0F20: 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 36  .\/._SB_PCI3GPP6
    0F30: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0F40: 0A 07 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0F50: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F60: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0F70: 01 0A 07 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0F80: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F90: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0FA0: 01 0A 07 0A 78 00 0A 20 60 A0 46 19 92 93 5C 2F  ....x.. `.F...\/
    0FB0: 03 5F 53 42 5F 50 43 49 33 45 54 50 37 0A FF 70  ._SB_PCI3ETP7..p
    0FC0: 7A 4D 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A  zM017_BBN....x..
    0FD0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45  ....\/._SB_PCI3E
    0FE0: 54 50 37 A0 4C 15 91 93 5C 2F 03 5F 53 42 5F 50  TP7.L...\/._SB_P
    0FF0: 43 49 33 45 54 50 37 01 93 5C 2F 03 5F 53 42 5F  CI3ETP7..\/._SB_
    1000: 50 43 49 33 45 54 50 37 0A 03 A0 45 13 5B 12 5C  PCI3ETP7...E.[.\
    1010: 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 37 00 A0  /._SB_PCI3GPP7..
    1020: 4A 06 92 93 4D 36 32 30 00 A0 40 06 93 4D 30 34  J...M620..@..M04
    1030: 39 4D 36 32 30 0A 10 0A 02 A0 40 05 93 7B 4D 30  9M620.....@..{M0
    1040: 34 39 4D 36 32 30 0A 52 0A 02 00 00 4D 34 36 30  49M620.R....M460
    1050: 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53  .    Notify (\_S
    1060: 42 2E 50 43 49 33 2E 47 50 50 37 2C 20 30 78 30  B.PCI3.GPP7, 0x0
    1070: 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42  ).........\/._SB
    1080: 5F 50 43 49 33 47 50 50 37 00 4D 34 36 30 0D 20  _PCI3GPP7.M460. 
    1090: 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E     Notify (\_SB.
    10A0: 50 43 49 33 2E 47 50 50 37 2C 20 30 78 32 29 0A  PCI3.GPP7, 0x2).
    10B0: 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50  ........\/._SB_P
    10C0: 43 49 33 47 50 50 37 0A 02 5B 22 0A 64 70 4D 30  CI3GPP7..[".dpM0
    10D0: 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 A0  17_BBN....x.. `.
    10E0: 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  @...{`.......M01
    10F0: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1100: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1110: A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  ./..{`.......M01
    1120: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1130: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1140: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 33  .A...\/._SB_PCI3
    1150: 45 54 50 38 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETP8..pzM017_BBN
    1160: 0A 02 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1170: 53 42 5F 50 43 49 33 45 54 50 38 A0 46 0F 91 93  SB_PCI3ETP8.F...
    1180: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 38 01  \/._SB_PCI3ETP8.
    1190: 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 38  .\/._SB_PCI3ETP8
    11A0: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    11B0: 49 33 47 50 50 38 00 4D 34 36 30 0D 20 20 20 20  I3GPP8.M460.    
    11C0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    11D0: 33 2E 47 50 50 38 2C 20 30 78 32 29 0A 00 00 00  3.GPP8, 0x2)....
    11E0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    11F0: 47 50 50 38 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP8..[".dpM017_
    1200: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    1210: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1220: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    1230: 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    1240: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    1250: 38 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    1260: 4D 30 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A  M017_BBN.....x..
    1270: 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43   `.K...\/._SB_PC
    1280: 49 33 45 54 50 39 0A FF 70 7A 4D 30 31 37 5F 42  I3ETP9..pzM017_B
    1290: 42 4E 0A 03 01 0A 78 00 0A 18 0A 10 00 5C 2F 03  BN....x......\/.
    12A0: 5F 53 42 5F 50 43 49 33 45 54 50 39 A0 41 0F 91  _SB_PCI3ETP9.A..
    12B0: 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 39  .\/._SB_PCI3ETP9
    12C0: 01 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    12D0: 39 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50  9...J.[.\/._SB_P
    12E0: 43 49 33 47 50 50 39 00 4D 34 36 30 0D 20 20 20  CI3GPP9.M460.   
    12F0: 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43   Notify (\_SB.PC
    1300: 49 33 2E 47 50 50 39 2C 20 30 78 32 29 0A 00 00  I3.GPP9, 0x2)...
    1310: 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49  ......\/._SB_PCI
    1320: 33 47 50 50 39 0A 02 5B 22 0A 64 70 4D 30 31 37  3GPP9..[".dpM017
    1330: 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 40 06  _BBN....x.. `.@.
    1340: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1350: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1360: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 2F  7_BBN....x.. `./
    1370: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1380: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1390: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 41  7_BBN....x.. `.A
    13A0: 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54  ...\/._SB_PCI3ET
    13B0: 50 41 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 0A 03  PA..pzM017_BBN..
    13C0: 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42  ...x......\/._SB
    13D0: 5F 50 43 49 33 45 54 50 41 A0 46 0F 91 93 5C 2F  _PCI3ETPA.F...\/
    13E0: 03 5F 53 42 5F 50 43 49 33 45 54 50 41 01 93 5C  ._SB_PCI3ETPA..\
    13F0: 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 41 0A 03  /._SB_PCI3ETPA..
    1400: A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 33  .O.[.\/._SB_PCI3
    1410: 47 50 50 41 00 4D 34 36 30 0D 20 20 20 20 4E 6F  GPPA.M460.    No
    1420: 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49 33 2E  tify (\_SB.PCI3.
    1430: 47 50 50 41 2C 20 30 78 32 29 0A 00 00 00 00 00  GPPA, 0x2)......
    1440: 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  ...\/._SB_PCI3GP
    1450: 50 41 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42  PA..[".dpM017_BB
    1460: 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 44 06 92 93  N.....x.. `.D...
    1470: 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42 42  {`.......M018_BB
    1480: 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  N.....x.. `pM017
    1490: 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 31  _BBN.....x.. `.1
    14A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    14B0: 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    14C0: 31 37 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    14D0: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 33  .A...\/._SB_PCI3
    14E0: 45 54 50 42 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETPB..pzM017_BBN
    14F0: 0A 03 0A 03 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1500: 53 42 5F 50 43 49 33 45 54 50 42 A0 46 0F 91 93  SB_PCI3ETPB.F...
    1510: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 42 01  \/._SB_PCI3ETPB.
    1520: 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 42  .\/._SB_PCI3ETPB
    1530: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    1540: 49 33 47 50 50 42 00 4D 34 36 30 0D 20 20 20 20  I3GPPB.M460.    
    1550: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    1560: 33 2E 47 50 50 42 2C 20 30 78 32 29 0A 00 00 00  3.GPPB, 0x2)....
    1570: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    1580: 47 50 50 42 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPPB..[".dpM017_
    1590: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    15A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    15B0: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    15C0: 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60  17_BBN.....x.. `
    15D0: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    15E0: 38 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    15F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A  M017_BBN.....x..
    1600: 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43   `.A...\/._SB_PC
    1610: 49 33 45 54 50 43 0A FF 70 7A 4D 30 31 37 5F 42  I3ETPC..pzM017_B
    1620: 42 4E 0A 03 0A 04 0A 78 00 0A 18 0A 10 00 5C 2F  BN.....x......\/
    1630: 03 5F 53 42 5F 50 43 49 33 45 54 50 43 A0 46 0F  ._SB_PCI3ETPC.F.
    1640: 91 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    1650: 43 01 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54  C..\/._SB_PCI3ET
    1660: 50 43 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F  PC...O.[.\/._SB_
    1670: 50 43 49 33 47 50 50 43 00 4D 34 36 30 0D 20 20  PCI3GPPC.M460.  
    1680: 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50    Notify (\_SB.P
    1690: 43 49 33 2E 47 50 50 43 2C 20 30 78 32 29 0A 00  CI3.GPPC, 0x2)..
    16A0: 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43  .......\/._SB_PC
    16B0: 49 33 47 50 50 43 0A 02 5B 22 0A 64 70 4D 30 31  I3GPPC..[".dpM01
    16C0: 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 A0  7_BBN.....x.. `.
    16D0: 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  D...{`.......M01
    16E0: 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    16F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A  M017_BBN.....x..
    1700: 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D   `.1..{`.......M
    1710: 30 31 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20  018_BBN.....x.. 
    1720: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78  `pM017_BBN.....x
    1730: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1740: 50 43 49 33 45 54 50 44 0A FF 70 7A 4D 30 31 37  PCI3ETPD..pzM017
    1750: 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1760: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 44 A0  \/._SB_PCI3ETPD.
    1770: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45  F...\/._SB_PCI3E
    1780: 54 50 44 01 93 5C 2F 03 5F 53 42 5F 50 43 49 33  TPD..\/._SB_PCI3
    1790: 45 54 50 44 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ETPD...O.[.\/._S
    17A0: 42 5F 50 43 49 33 47 50 50 44 00 4D 34 36 30 0D  B_PCI3GPPD.M460.
    17B0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    17C0: 2E 50 43 49 33 2E 47 50 50 44 2C 20 30 78 32 29  .PCI3.GPPD, 0x2)
    17D0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    17E0: 50 43 49 33 47 50 50 44 0A 02 5B 22 0A 64 70 4D  PCI3GPPD..[".dpM
    17F0: 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  017_BBN.....x.. 
    1800: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1810: 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  018_BBN.....x.. 
    1820: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78  `pM017_BBN.....x
    1830: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1840: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00  .M018_BBN.....x.
    1850: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05  . `pM017_BBN....
    1860: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1870: 42 5F 50 43 49 33 45 54 50 45 0A FF 70 7A 4D 30  B_PCI3ETPE..pzM0
    1880: 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00 0A 18 0A  17_BBN.....x....
    1890: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    18A0: 45 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  E.F...\/._SB_PCI
    18B0: 33 45 54 50 45 01 93 5C 2F 03 5F 53 42 5F 50 43  3ETPE..\/._SB_PC
    18C0: 49 33 45 54 50 45 0A 03 A0 4F 0C 5B 12 5C 2F 03  I3ETPE...O.[.\/.
    18D0: 5F 53 42 5F 50 43 49 33 47 50 50 45 00 4D 34 36  _SB_PCI3GPPE.M46
    18E0: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    18F0: 53 42 2E 50 43 49 33 2E 47 50 50 45 2C 20 30 78  SB.PCI3.GPPE, 0x
    1900: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1910: 42 5F 50 43 49 33 47 50 50 45 0A 02 5B 22 0A 64  B_PCI3GPPE..[".d
    1920: 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00  pM017_BBN.....x.
    1930: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1940: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A 78 00  .M018_BBN.....x.
    1950: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06  . `pM017_BBN....
    1960: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1970: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A  ...M018_BBN.....
    1980: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1990: 0A 06 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    19A0: 5F 53 42 5F 50 43 49 33 45 54 50 46 0A FF 70 7A  _SB_PCI3ETPF..pz
    19B0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A 78 00 0A  M017_BBN.....x..
    19C0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45  ....\/._SB_PCI3E
    19D0: 54 50 46 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  TPF.F...\/._SB_P
    19E0: 43 49 33 45 54 50 46 01 93 5C 2F 03 5F 53 42 5F  CI3ETPF..\/._SB_
    19F0: 50 43 49 33 45 54 50 46 0A 03 A0 4F 0C 5B 12 5C  PCI3ETPF...O.[.\
    1A00: 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 46 00 4D  /._SB_PCI3GPPF.M
    1A10: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    1A20: 5C 5F 53 42 2E 50 43 49 33 2E 47 50 50 46 2C 20  \_SB.PCI3.GPPF, 
    1A30: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    1A40: 5F 53 42 5F 50 43 49 33 47 50 50 46 0A 02 5B 22  _SB_PCI3GPPF..["
    1A50: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A  .dpM017_BBN.....
    1A60: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    1A70: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 07 0A  ...M018_BBN.....
    1A80: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1A90: 0A 07 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    1AA0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A  .....M018_BBN...
    1AB0: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    1AC0: 0A 03 0A 07 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    1AD0: 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 47 0A FF  /._SB_PCI3ETPG..
    1AE0: 70 7A 4D 30 31 37 5F 42 42 4E 0A 04 01 0A 78 00  pzM017_BBN....x.
    1AF0: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    1B00: 45 54 50 47 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ETPG.A...\/._SB_
    1B10: 50 43 49 33 45 54 50 47 01 93 5C 2F 03 5F 53 42  PCI3ETPG..\/._SB
    1B20: 5F 50 43 49 33 45 54 50 47 0A 03 A0 4A 0C 5B 12  _PCI3ETPG...J.[.
    1B30: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 47 00  \/._SB_PCI3GPPG.
    1B40: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    1B50: 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50 50 47 2C  (\_SB.PCI3.GPPG,
    1B60: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    1B70: 03 5F 53 42 5F 50 43 49 33 47 50 50 47 0A 02 5B  ._SB_PCI3GPPG..[
    1B80: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 04 01 0A  ".dpM017_BBN....
    1B90: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    1BA0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BB0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BC0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    1BD0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BE0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BF0: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1C00: 42 5F 50 43 49 33 45 54 50 48 0A FF 70 7A 4D 30  B_PCI3ETPH..pzM0
    1C10: 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    1C20: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    1C30: 48 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  H.F...\/._SB_PCI
    1C40: 33 45 54 50 48 01 93 5C 2F 03 5F 53 42 5F 50 43  3ETPH..\/._SB_PC
    1C50: 49 33 45 54 50 48 0A 03 A0 4F 0C 5B 12 5C 2F 03  I3ETPH...O.[.\/.
    1C60: 5F 53 42 5F 50 43 49 33 47 50 50 48 00 4D 34 36  _SB_PCI3GPPH.M46
    1C70: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    1C80: 53 42 2E 50 43 49 33 2E 47 50 50 48 2C 20 30 78  SB.PCI3.GPPH, 0x
    1C90: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1CA0: 42 5F 50 43 49 33 47 50 50 48 0A 02 5B 22 0A 64  B_PCI3GPPH..[".d
    1CB0: 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00  pM017_BBN.....x.
    1CC0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1CD0: 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A 78 00  .M018_BBN.....x.
    1CE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02  . `pM017_BBN....
    1CF0: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1D00: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A  ...M018_BBN.....
    1D10: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04  x.. `pM017_BBN..
    1D20: 0A 02 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03  ...x.. `.K...\/.
    1D30: 5F 53 42 5F 50 43 49 33 45 54 31 35 0A FF 70 7A  _SB_PCI3ET15..pz
    1D40: 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00 0A 18  M017_BBN....x...
    1D50: 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54  ...\/._SB_PCI3ET
    1D60: 31 35 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43  15.A...\/._SB_PC
    1D70: 49 33 45 54 31 35 01 93 5C 2F 03 5F 53 42 5F 50  I3ET15..\/._SB_P
    1D80: 43 49 33 45 54 31 35 0A 03 A0 4A 0C 5B 12 5C 2F  CI3ET15...J.[.\/
    1D90: 03 5F 53 42 5F 50 43 49 33 47 50 31 35 00 4D 34  ._SB_PCI3GP15.M4
    1DA0: 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C  60.    Notify (\
    1DB0: 5F 53 42 2E 50 43 49 33 2E 47 50 31 35 2C 20 30  _SB.PCI3.GP15, 0
    1DC0: 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F  x2).........\/._
    1DD0: 53 42 5F 50 43 49 33 47 50 31 35 0A 02 5B 22 0A  SB_PCI3GP15..[".
    1DE0: 64 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00  dpM017_BBN....x.
    1DF0: 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00 00  . `.@...{`......
    1E00: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E10: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E20: 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00  .. `./..{`......
    1E30: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E40: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E50: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1E60: 50 43 49 33 45 54 32 35 0A FF 70 7A 4D 30 31 37  PCI3ET25..pzM017
    1E70: 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1E80: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 32 35 A0  \/._SB_PCI3ET25.
    1E90: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45  F...\/._SB_PCI3E
    1EA0: 54 32 35 01 93 5C 2F 03 5F 53 42 5F 50 43 49 33  T25..\/._SB_PCI3
    1EB0: 45 54 32 35 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ET25...O.[.\/._S
    1EC0: 42 5F 50 43 49 33 47 50 32 35 00 4D 34 36 30 0D  B_PCI3GP25.M460.
    1ED0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    1EE0: 2E 50 43 49 33 2E 47 50 32 35 2C 20 30 78 32 29  .PCI3.GP25, 0x2)
    1EF0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    1F00: 50 43 49 33 47 50 32 35 0A 02 5B 22 0A 64 70 4D  PCI3GP25..[".dpM
    1F10: 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  017_BBN.....x.. 
    1F20: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1F30: 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  018_BBN.....x.. 
    1F40: 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78  `pM017_BBN.....x
    1F50: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1F60: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00  .M018_BBN.....x.
    1F70: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02  . `pM017_BBN....
    1F80: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1F90: 42 5F 50 43 49 33 45 54 33 35 0A FF 70 7A 4D 30  B_PCI3ET35..pzM0
    1FA0: 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00 0A 18 0A  17_BBN.....x....
    1FB0: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 33  ..\/._SB_PCI3ET3
    1FC0: 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  5.F...\/._SB_PCI
    1FD0: 33 45 54 33 35 01 93 5C 2F 03 5F 53 42 5F 50 43  3ET35..\/._SB_PC
    1FE0: 49 33 45 54 33 35 0A 03 A0 4F 0C 5B 12 5C 2F 03  I3ET35...O.[.\/.
    1FF0: 5F 53 42 5F 50 43 49 33 47 50 33 35 00 4D 34 36  _SB_PCI3GP35.M46
    2000: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    2010: 53 42 2E 50 43 49 33 2E 47 50 33 35 2C 20 30 78  SB.PCI3.GP35, 0x
    2020: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    2030: 42 5F 50 43 49 33 47 50 33 35 0A 02 5B 22 0A 64  B_PCI3GP35..[".d
    2040: 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00  pM017_BBN.....x.
    2050: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    2060: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A 78 00  .M018_BBN.....x.
    2070: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03  . `pM017_BBN....
    2080: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2090: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A  ...M018_BBN.....
    20A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    20B0: 0A 03 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    20C0: 5F 53 42 5F 50 43 49 33 45 54 34 35 0A FF 70 7A  _SB_PCI3ET45..pz
    20D0: 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A 78 00 0A  M017_BBN.....x..
    20E0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45  ....\/._SB_PCI3E
    20F0: 54 34 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  T45.F...\/._SB_P
    2100: 43 49 33 45 54 34 35 01 93 5C 2F 03 5F 53 42 5F  CI3ET45..\/._SB_
    2110: 50 43 49 33 45 54 34 35 0A 03 A0 4F 0C 5B 12 5C  PCI3ET45...O.[.\
    2120: 2F 03 5F 53 42 5F 50 43 49 33 47 50 34 35 00 4D  /._SB_PCI3GP45.M
    2130: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    2140: 5C 5F 53 42 2E 50 43 49 33 2E 47 50 34 35 2C 20  \_SB.PCI3.GP45, 
    2150: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    2160: 5F 53 42 5F 50 43 49 33 47 50 34 35 0A 02 5B 22  _SB_PCI3GP45..["
    2170: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A  .dpM017_BBN.....
    2180: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    2190: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 04 0A  ...M018_BBN.....
    21A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    21B0: 0A 04 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    21C0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A  .....M018_BBN...
    21D0: 04 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    21E0: 0A 05 0A 04 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    21F0: 2F 03 5F 53 42 5F 50 43 49 33 45 54 31 37 0A FF  /._SB_PCI3ET17..
    2200: 70 7A 4D 30 31 37 5F 42 42 4E 0A 07 01 0A 78 00  pzM017_BBN....x.
    2210: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    2220: 45 54 31 37 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ET17.A...\/._SB_
    2230: 50 43 49 33 45 54 31 37 01 93 5C 2F 03 5F 53 42  PCI3ET17..\/._SB
    2240: 5F 50 43 49 33 45 54 31 37 0A 03 A0 4A 0C 5B 12  _PCI3ET17...J.[.
    2250: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 31 37 00  \/._SB_PCI3GP17.
    2260: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    2270: 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50 31 37 2C  (\_SB.PCI3.GP17,
    2280: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    2290: 03 5F 53 42 5F 50 43 49 33 47 50 31 37 0A 02 5B  ._SB_PCI3GP17..[
    22A0: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 07 01 0A  ".dpM017_BBN....
    22B0: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    22C0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    22D0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    22E0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    22F0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    2300: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    2310: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    2320: 42 5F 50 43 49 33 45 54 32 37 0A FF 70 7A 4D 30  B_PCI3ET27..pzM0
    2330: 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    2340: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 32  ..\/._SB_PCI3ET2
    2350: 37 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  7.F...\/._SB_PCI
    2360: 33 45 54 32 37 01 93 5C 2F 03 5F 53 42 5F 50 43  3ET27..\/._SB_PC
    2370: 49 33 45 54 32 37 0A 03 A0 4F 0C 5B 12 5C 2F 03  I3ET27...O.[.\/.
    2380: 5F 53 42 5F 50 43 49 33 47 50 32 37 00 4D 34 36  _SB_PCI3GP27.M46
    2390: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    23A0: 53 42 2E 50 43 49 33 2E 47 50 32 37 2C 20 30 78  SB.PCI3.GP27, 0x
    23B0: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    23C0: 42 5F 50 43 49 33 47 50 32 37 0A 02 5B 22 0A 64  B_PCI3GP27..[".d
    23D0: 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00  pM017_BBN.....x.
    23E0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    23F0: 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A 78 00  .M018_BBN.....x.
    2400: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02  . `pM017_BBN....
    2410: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2420: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A  ...M018_BBN.....
    2430: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07  x.. `pM017_BBN..
    2440: 0A 02 0A 78 00 0A 20 60                          ...x.. `

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 00 05 00 00 02 7E 41 4D 44 00 00 00  SSDT.....~AMD...
    0010: 4D 45 4D 54 4F 4F 4C 30 02 00 00 00 49 4E 54 4C  MEMTOOL0....INTL
    0020: 31 03 23 20 A0 43 44 00 15 5C 4D 31 31 35 03 00  1.# .CD..\M115..
    0030: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0040: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0050: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0060: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0070: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0080: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    0090: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00A0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00B0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00C0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00D0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00E0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    00F0: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0100: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0110: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0120: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0130: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0140: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0150: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0160: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0170: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0180: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    0190: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01A0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01B0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01C0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01D0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01E0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    01F0: 15 5C 4D 32 33 32 08 03 15 5C 4D 30 34 36 01 00  .\M232...\M046..
    0200: 15 5C 4D 30 34 37 01 00 15 5C 4D 30 34 39 08 02  .\M047...\M049..
    0210: 15 5C 4D 30 34 45 08 03 15 5C 4D 32 35 31 05 00  .\M04E...\M251..
    0220: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0230: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0240: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0250: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0260: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0270: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0280: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    0290: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02A0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02B0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02C0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02D0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02E0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    02F0: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0300: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0310: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0320: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0330: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0340: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0350: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 36 30 08 07  .\M457...\M460..
    0360: 15 5C 4D 34 34 39 05 00 15 5C 4D 34 43 30 05 00  .\M449...\M4C0..
    0370: 15 5C 4D 32 33 41 05 00 15 5C 4D 34 46 30 05 00  .\M23A...\M4F0..
    0380: 15 5C 4D 36 31 30 05 00 15 5C 4D 32 39 41 05 00  .\M610...\M29A..
    0390: 15 5C 4D 36 33 31 05 00 15 5C 4D 36 35 32 05 00  .\M631...\M652..
    03A0: 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06 00  .\M050...\M051..
    03B0: 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06 00  .\M052...\M053..
    03C0: 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06 00  .\M054...\M055..
    03D0: 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06 00  .\M056...\M057..
    03E0: 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06 00  .\M058...\M059..
    03F0: 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06 00  .\M062...\M068..
    0400: 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06 00  .\M069...\M070..
    0410: 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06 00  .\M071...\M072..
    0420: 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06 00  .\M074...\M075..
    0430: 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06 00  .\M076...\M077..
    0440: 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06 00  .\M078...\M079..
    0450: 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06 00  .\M080...\M081..
    0460: 15 5C 4D 31 32 37 06 00 14 47 09 4D 47 52 54 01  .\M127...G.MGRT.
    0470: 8A 68 00 4D 45 4D 49 8A 68 0A 04 4D 45 4D 44 4D  .h.MEMI.h..MEMDM
    0480: 34 36 30 0D 20 20 46 45 41 2D 41 53 4C 2D 4D 65  460.  FEA-ASL-Me
    0490: 6D 6F 72 79 20 4D 61 72 67 69 6E 20 54 6F 6F 6C  mory Margin Tool
    04A0: 20 43 6D 64 3A 30 78 25 58 20 56 61 6C 75 65 3A   Cmd:0x%X Value:
    04B0: 30 78 25 58 0A 00 4D 45 4D 49 4D 45 4D 44 00 00  0x%X..MEMIMEMD..
    04C0: 00 00 A0 3D 92 93 4D 36 31 30 00 70 4D 30 34 39  ...=..M610.pM049
    04D0: 4D 36 31 30 0A 10 62 70 4D 45 4D 49 63 70 4D 45  M610..bpMEMIcpME
    04E0: 4D 44 64 4D 30 34 45 4D 36 31 30 0A 11 63 4D 30  MDdM04EM610..cM0
    04F0: 34 45 4D 36 31 30 0A 15 64 4D 32 33 32 62 00 00  4EM610..dM232b..

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 48 24 00 00 02 70 41 4D 44 00 00 00  SSDTH$...pAMD...
    0010: 47 50 50 5F 50 4D 45 5F 01 00 00 00 49 4E 54 4C  GPP_PME_....INTL
    0020: 31 03 23 20 A0 48 60 00 15 5C 4D 30 31 37 08 06  1.# .H`..\M017..
    0030: 15 5C 4D 30 31 38 08 07 15 5C 4D 31 31 35 03 00  .\M018...\M115..
    0040: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0050: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0060: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0070: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0080: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0090: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    00A0: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00B0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00C0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00D0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00E0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00F0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    0100: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0110: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0120: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0130: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0140: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0150: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0160: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0170: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0180: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0190: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    01A0: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01B0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01C0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01D0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01E0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01F0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    0200: 15 5C 4D 30 34 36 01 00 15 5C 4D 30 34 37 01 00  .\M046...\M047..
    0210: 15 5C 4D 30 34 39 08 02 15 5C 4D 32 35 31 05 00  .\M049...\M251..
    0220: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0230: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0240: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0250: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0260: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0270: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0280: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    0290: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02A0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02B0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02C0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02D0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02E0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    02F0: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0300: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0310: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0320: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0330: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0340: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0350: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 36 30 08 07  .\M457...\M460..
    0360: 15 5C 4D 34 34 39 05 00 15 5C 4D 34 43 30 05 00  .\M449...\M4C0..
    0370: 15 5C 4D 32 33 41 05 00 15 5C 4D 34 46 30 05 00  .\M23A...\M4F0..
    0380: 15 5C 4D 36 31 30 05 00 15 5C 4D 32 39 41 05 00  .\M610...\M29A..
    0390: 15 5C 4D 36 33 31 05 00 15 5C 4D 36 35 32 05 00  .\M631...\M652..
    03A0: 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06 00  .\M050...\M051..
    03B0: 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06 00  .\M052...\M053..
    03C0: 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06 00  .\M054...\M055..
    03D0: 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06 00  .\M056...\M057..
    03E0: 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06 00  .\M058...\M059..
    03F0: 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06 00  .\M062...\M068..
    0400: 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06 00  .\M069...\M070..
    0410: 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06 00  .\M071...\M072..
    0420: 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06 00  .\M074...\M075..
    0430: 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06 00  .\M076...\M077..
    0440: 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06 00  .\M078...\M079..
    0450: 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06 00  .\M080...\M081..
    0460: 15 5C 4D 31 32 37 06 00 15 5C 5F 42 42 4E 01 00  .\M127...\_BBN..
    0470: 15 5C 2E 5F 53 42 5F 50 43 49 31 06 00 15 5C 2F  .\._SB_PCI1...\/
    0480: 03 5F 53 42 5F 50 43 49 31 47 50 50 30 06 00 15  ._SB_PCI1GPP0...
    0490: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 31 06  \/._SB_PCI1GPP1.
    04A0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50  ..\/._SB_PCI1GPP
    04B0: 32 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47  2...\/._SB_PCI1G
    04C0: 50 50 33 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PP3...\/._SB_PCI
    04D0: 31 47 50 50 34 06 00 15 5C 2F 03 5F 53 42 5F 50  1GPP4...\/._SB_P
    04E0: 43 49 31 47 50 50 35 06 00 15 5C 2F 03 5F 53 42  CI1GPP5...\/._SB
    04F0: 5F 50 43 49 31 47 50 50 36 06 00 15 5C 2F 03 5F  _PCI1GPP6...\/._
    0500: 53 42 5F 50 43 49 31 47 50 50 37 06 00 15 5C 2F  SB_PCI1GPP7...\/
    0510: 03 5F 53 42 5F 50 43 49 31 47 50 50 38 06 00 15  ._SB_PCI1GPP8...
    0520: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 39 06  \/._SB_PCI1GPP9.
    0530: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50  ..\/._SB_PCI1GPP
    0540: 41 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47  A...\/._SB_PCI1G
    0550: 50 50 42 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PPB...\/._SB_PCI
    0560: 31 47 50 50 43 06 00 15 5C 2F 03 5F 53 42 5F 50  1GPPC...\/._SB_P
    0570: 43 49 31 47 50 50 44 06 00 15 5C 2F 03 5F 53 42  CI1GPPD...\/._SB
    0580: 5F 50 43 49 31 47 50 50 45 06 00 15 5C 2F 03 5F  _PCI1GPPE...\/._
    0590: 53 42 5F 50 43 49 31 47 50 50 46 06 00 15 5C 2F  SB_PCI1GPPF...\/
    05A0: 03 5F 53 42 5F 50 43 49 31 47 50 50 47 06 00 15  ._SB_PCI1GPPG...
    05B0: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 48 06  \/._SB_PCI1GPPH.
    05C0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 31  ..\/._SB_PCI1GP1
    05D0: 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47  5...\/._SB_PCI1G
    05E0: 50 32 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  P25...\/._SB_PCI
    05F0: 31 47 50 33 35 06 00 15 5C 2F 03 5F 53 42 5F 50  1GP35...\/._SB_P
    0600: 43 49 31 47 50 34 35 06 00 15 5C 2F 03 5F 53 42  CI1GP45...\/._SB
    0610: 5F 50 43 49 31 47 50 31 37 06 00 15 5C 2F 03 5F  _PCI1GP17...\/._
    0620: 53 42 5F 50 43 49 31 47 50 32 37 06 00 10 8A E1  SB_PCI1GP27.....
    0630: 01 5C 2E 5F 53 42 5F 50 43 49 31 08 45 54 50 30  .\._SB_PCI1.ETP0
    0640: 0A 55 08 45 54 50 31 0A 55 08 45 54 50 32 0A 55  .U.ETP1.U.ETP2.U
    0650: 08 45 54 50 33 0A 55 08 45 54 50 34 0A 55 08 45  .ETP3.U.ETP4.U.E
    0660: 54 50 35 0A 55 08 45 54 50 36 0A 55 08 45 54 50  TP5.U.ETP6.U.ETP
    0670: 37 0A 55 08 45 54 50 38 0A 55 08 45 54 50 39 0A  7.U.ETP8.U.ETP9.
    0680: 55 08 45 54 50 41 0A 55 08 45 54 50 42 0A 55 08  U.ETPA.U.ETPB.U.
    0690: 45 54 50 43 0A 55 08 45 54 50 44 0A 55 08 45 54  ETPC.U.ETPD.U.ET
    06A0: 50 45 0A 55 08 45 54 50 46 0A 55 08 45 54 50 47  PE.U.ETPF.U.ETPG
    06B0: 0A 55 08 45 54 50 48 0A 55 08 45 54 31 35 0A 55  .U.ETPH.U.ET15.U
    06C0: 08 45 54 32 35 0A 55 08 45 54 33 35 0A 55 08 45  .ET25.U.ET35.U.E
    06D0: 54 34 35 0A 55 08 45 54 31 37 0A 55 08 45 54 32  T45.U.ET17.U.ET2
    06E0: 37 0A 55 14 84 D6 01 50 50 4D 45 00 4D 34 36 30  7.U....PPME.M460
    06F0: 0D 20 20 4F 45 4D 2D 41 53 4C 2D 5C 5F 53 42 2E  .  OEM-ASL-\_SB.
    0700: 50 43 49 31 2E 50 50 4D 45 0A 00 00 00 00 00 00  PCI1.PPME.......
    0710: 00 A0 4F 18 92 93 5C 2F 03 5F 53 42 5F 50 43 49  ..O...\/._SB_PCI
    0720: 31 45 54 50 30 0A FF 70 7A 4D 30 31 37 5F 42 42  1ETP0..pzM017_BB
    0730: 4E 01 01 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53  N...x......\/._S
    0740: 42 5F 50 43 49 31 45 54 50 30 A0 46 15 91 93 5C  B_PCI1ETP0.F...\
    0750: 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 30 01 93  /._SB_PCI1ETP0..
    0760: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 30 0A  \/._SB_PCI1ETP0.
    0770: 03 A0 4F 12 5B 12 5C 2F 03 5F 53 42 5F 50 43 49  ..O.[.\/._SB_PCI
    0780: 31 47 50 50 30 00 A0 49 06 92 93 4D 36 32 30 00  1GPP0..I...M620.
    0790: A0 4F 05 93 4D 30 34 39 4D 36 32 30 0A 10 01 A0  .O..M049M620....
    07A0: 40 05 93 7B 4D 30 34 39 4D 36 32 30 0A 52 0A 02  @..{M049M620.R..
    07B0: 00 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66  ..M460.    Notif
    07C0: 79 20 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50 50  y (\_SB.PCI1.GPP
    07D0: 30 2C 20 30 78 30 29 0A 00 00 00 00 00 00 00 86  0, 0x0).........
    07E0: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 30 00  \/._SB_PCI1GPP0.
    07F0: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    0800: 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50 50 30 2C  (\_SB.PCI1.GPP0,
    0810: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    0820: 03 5F 53 42 5F 50 43 49 31 47 50 50 30 0A 02 5B  ._SB_PCI1GPP0..[
    0830: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78  ".dpM017_BBN...x
    0840: 00 0A 20 60 A0 4C 05 92 93 7B 60 0C 00 00 03 00  .. `.L...{`.....
    0850: 00 00 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A  ..M018_BBN...x..
    0860: 20 60 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00   `pM017_BBN...x.
    0870: 0A 20 60 A0 2D 92 93 7B 60 0C 00 00 03 00 00 00  . `.-..{`.......
    0880: 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A 20 60  M018_BBN...x.. `
    0890: 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00 0A 20  pM017_BBN...x.. 
    08A0: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    08B0: 31 45 54 50 31 0A FF 70 7A 4D 30 31 37 5F 42 42  1ETP1..pzM017_BB
    08C0: 4E 01 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    08D0: 53 42 5F 50 43 49 31 45 54 50 31 A0 41 0F 91 93  SB_PCI1ETP1.A...
    08E0: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 31 01  \/._SB_PCI1ETP1.
    08F0: 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 31  .\/._SB_PCI1ETP1
    0900: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0910: 49 31 47 50 50 31 00 4D 34 36 30 0D 20 20 20 20  I1GPP1.M460.    
    0920: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0930: 31 2E 47 50 50 31 2C 20 30 78 32 29 0A 00 00 00  1.GPP1, 0x2)....
    0940: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    0950: 47 50 50 31 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP1..[".dpM017_
    0960: 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0970: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0980: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0990: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    09A0: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    09B0: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    09C0: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    09D0: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    09E0: 32 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 03  2..pzM017_BBN...
    09F0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0A00: 43 49 31 45 54 50 32 A0 41 0F 91 93 5C 2F 03 5F  CI1ETP2.A...\/._
    0A10: 53 42 5F 50 43 49 31 45 54 50 32 01 93 5C 2F 03  SB_PCI1ETP2..\/.
    0A20: 5F 53 42 5F 50 43 49 31 45 54 50 32 0A 03 A0 4A  _SB_PCI1ETP2...J
    0A30: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  .[.\/._SB_PCI1GP
    0A40: 50 32 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P2.M460.    Noti
    0A50: 66 79 20 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50  fy (\_SB.PCI1.GP
    0A60: 50 32 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P2, 0x2)........
    0A70: 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 32  .\/._SB_PCI1GPP2
    0A80: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0A90: 0A 03 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0AA0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AB0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AC0: 01 0A 03 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0AD0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AE0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AF0: 01 0A 03 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F  ....x.. `.K...\/
    0B00: 03 5F 53 42 5F 50 43 49 31 45 54 50 33 0A FF 70  ._SB_PCI1ETP3..p
    0B10: 7A 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78 00 0A  zM017_BBN....x..
    0B20: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45  ....\/._SB_PCI1E
    0B30: 54 50 33 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50  TP3.A...\/._SB_P
    0B40: 43 49 31 45 54 50 33 01 93 5C 2F 03 5F 53 42 5F  CI1ETP3..\/._SB_
    0B50: 50 43 49 31 45 54 50 33 0A 03 A0 4A 0C 5B 12 5C  PCI1ETP3...J.[.\
    0B60: 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 33 00 4D  /._SB_PCI1GPP3.M
    0B70: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    0B80: 5C 5F 53 42 2E 50 43 49 31 2E 47 50 50 33 2C 20  \_SB.PCI1.GPP3, 
    0B90: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    0BA0: 5F 53 42 5F 50 43 49 31 47 50 50 33 0A 02 5B 22  _SB_PCI1GPP3..["
    0BB0: 0A 64 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78  .dpM017_BBN....x
    0BC0: 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00  .. `.@...{`.....
    0BD0: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0BE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0BF0: 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00  x.. `./..{`.....
    0C00: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0C10: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0C20: 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42  x.. `.K...\/._SB
    0C30: 5F 50 43 49 31 45 54 50 34 0A FF 70 7A 4D 30 31  _PCI1ETP4..pzM01
    0C40: 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 18 0A 10 00  7_BBN....x......
    0C50: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 34 A0  \/._SB_PCI1ETP4.
    0C60: 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45  A...\/._SB_PCI1E
    0C70: 54 50 34 01 93 5C 2F 03 5F 53 42 5F 50 43 49 31  TP4..\/._SB_PCI1
    0C80: 45 54 50 34 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53  ETP4...J.[.\/._S
    0C90: 42 5F 50 43 49 31 47 50 50 34 00 4D 34 36 30 0D  B_PCI1GPP4.M460.
    0CA0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    0CB0: 2E 50 43 49 31 2E 47 50 50 34 2C 20 30 78 32 29  .PCI1.GPP4, 0x2)
    0CC0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    0CD0: 50 43 49 31 47 50 50 34 0A 02 5B 22 0A 64 70 4D  PCI1GPP4..[".dpM
    0CE0: 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60  017_BBN....x.. `
    0CF0: A0 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  .@...{`.......M0
    0D00: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D10: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D20: 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  `./..{`.......M0
    0D30: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D40: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D50: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    0D60: 31 45 54 50 35 0A FF 70 7A 4D 30 31 37 5F 42 42  1ETP5..pzM017_BB
    0D70: 4E 01 0A 06 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    0D80: 53 42 5F 50 43 49 31 45 54 50 35 A0 41 0F 91 93  SB_PCI1ETP5.A...
    0D90: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 35 01  \/._SB_PCI1ETP5.
    0DA0: 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 35  .\/._SB_PCI1ETP5
    0DB0: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0DC0: 49 31 47 50 50 35 00 4D 34 36 30 0D 20 20 20 20  I1GPP5.M460.    
    0DD0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0DE0: 31 2E 47 50 50 35 2C 20 30 78 32 29 0A 00 00 00  1.GPP5, 0x2)....
    0DF0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    0E00: 47 50 50 35 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP5..[".dpM017_
    0E10: 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0E20: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E30: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E40: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    0E50: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E60: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E70: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    0E80: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    0E90: 36 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 07  6..pzM017_BBN...
    0EA0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0EB0: 43 49 31 45 54 50 36 A0 41 0F 91 93 5C 2F 03 5F  CI1ETP6.A...\/._
    0EC0: 53 42 5F 50 43 49 31 45 54 50 36 01 93 5C 2F 03  SB_PCI1ETP6..\/.
    0ED0: 5F 53 42 5F 50 43 49 31 45 54 50 36 0A 03 A0 4A  _SB_PCI1ETP6...J
    0EE0: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  .[.\/._SB_PCI1GP
    0EF0: 50 36 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P6.M460.    Noti
    0F00: 66 79 20 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50  fy (\_SB.PCI1.GP
    0F10: 50 36 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P6, 0x2)........
    0F20: 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 36  .\/._SB_PCI1GPP6
    0F30: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0F40: 0A 07 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0F50: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F60: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0F70: 01 0A 07 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0F80: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F90: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0FA0: 01 0A 07 0A 78 00 0A 20 60 A0 46 19 92 93 5C 2F  ....x.. `.F...\/
    0FB0: 03 5F 53 42 5F 50 43 49 31 45 54 50 37 0A FF 70  ._SB_PCI1ETP7..p
    0FC0: 7A 4D 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A  zM017_BBN....x..
    0FD0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45  ....\/._SB_PCI1E
    0FE0: 54 50 37 A0 4C 15 91 93 5C 2F 03 5F 53 42 5F 50  TP7.L...\/._SB_P
    0FF0: 43 49 31 45 54 50 37 01 93 5C 2F 03 5F 53 42 5F  CI1ETP7..\/._SB_
    1000: 50 43 49 31 45 54 50 37 0A 03 A0 45 13 5B 12 5C  PCI1ETP7...E.[.\
    1010: 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 37 00 A0  /._SB_PCI1GPP7..
    1020: 4A 06 92 93 4D 36 32 30 00 A0 40 06 93 4D 30 34  J...M620..@..M04
    1030: 39 4D 36 32 30 0A 10 0A 02 A0 40 05 93 7B 4D 30  9M620.....@..{M0
    1040: 34 39 4D 36 32 30 0A 52 0A 02 00 00 4D 34 36 30  49M620.R....M460
    1050: 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53  .    Notify (\_S
    1060: 42 2E 50 43 49 31 2E 47 50 50 37 2C 20 30 78 30  B.PCI1.GPP7, 0x0
    1070: 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42  ).........\/._SB
    1080: 5F 50 43 49 31 47 50 50 37 00 4D 34 36 30 0D 20  _PCI1GPP7.M460. 
    1090: 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E     Notify (\_SB.
    10A0: 50 43 49 31 2E 47 50 50 37 2C 20 30 78 32 29 0A  PCI1.GPP7, 0x2).
    10B0: 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50  ........\/._SB_P
    10C0: 43 49 31 47 50 50 37 0A 02 5B 22 0A 64 70 4D 30  CI1GPP7..[".dpM0
    10D0: 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 A0  17_BBN....x.. `.
    10E0: 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  @...{`.......M01
    10F0: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1100: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1110: A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  ./..{`.......M01
    1120: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1130: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1140: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 31  .A...\/._SB_PCI1
    1150: 45 54 50 38 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETP8..pzM017_BBN
    1160: 0A 02 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1170: 53 42 5F 50 43 49 31 45 54 50 38 A0 46 0F 91 93  SB_PCI1ETP8.F...
    1180: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 38 01  \/._SB_PCI1ETP8.
    1190: 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 38  .\/._SB_PCI1ETP8
    11A0: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    11B0: 49 31 47 50 50 38 00 4D 34 36 30 0D 20 20 20 20  I1GPP8.M460.    
    11C0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    11D0: 31 2E 47 50 50 38 2C 20 30 78 32 29 0A 00 00 00  1.GPP8, 0x2)....
    11E0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    11F0: 47 50 50 38 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP8..[".dpM017_
    1200: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    1210: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1220: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    1230: 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    1240: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    1250: 38 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    1260: 4D 30 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A  M017_BBN.....x..
    1270: 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43   `.K...\/._SB_PC
    1280: 49 31 45 54 50 39 0A FF 70 7A 4D 30 31 37 5F 42  I1ETP9..pzM017_B
    1290: 42 4E 0A 03 01 0A 78 00 0A 18 0A 10 00 5C 2F 03  BN....x......\/.
    12A0: 5F 53 42 5F 50 43 49 31 45 54 50 39 A0 41 0F 91  _SB_PCI1ETP9.A..
    12B0: 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 39  .\/._SB_PCI1ETP9
    12C0: 01 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    12D0: 39 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50  9...J.[.\/._SB_P
    12E0: 43 49 31 47 50 50 39 00 4D 34 36 30 0D 20 20 20  CI1GPP9.M460.   
    12F0: 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43   Notify (\_SB.PC
    1300: 49 31 2E 47 50 50 39 2C 20 30 78 32 29 0A 00 00  I1.GPP9, 0x2)...
    1310: 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49  ......\/._SB_PCI
    1320: 31 47 50 50 39 0A 02 5B 22 0A 64 70 4D 30 31 37  1GPP9..[".dpM017
    1330: 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 40 06  _BBN....x.. `.@.
    1340: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1350: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1360: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 2F  7_BBN....x.. `./
    1370: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1380: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1390: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 41  7_BBN....x.. `.A
    13A0: 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54  ...\/._SB_PCI1ET
    13B0: 50 41 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 0A 03  PA..pzM017_BBN..
    13C0: 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42  ...x......\/._SB
    13D0: 5F 50 43 49 31 45 54 50 41 A0 46 0F 91 93 5C 2F  _PCI1ETPA.F...\/
    13E0: 03 5F 53 42 5F 50 43 49 31 45 54 50 41 01 93 5C  ._SB_PCI1ETPA..\
    13F0: 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 41 0A 03  /._SB_PCI1ETPA..
    1400: A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 31  .O.[.\/._SB_PCI1
    1410: 47 50 50 41 00 4D 34 36 30 0D 20 20 20 20 4E 6F  GPPA.M460.    No
    1420: 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49 31 2E  tify (\_SB.PCI1.
    1430: 47 50 50 41 2C 20 30 78 32 29 0A 00 00 00 00 00  GPPA, 0x2)......
    1440: 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  ...\/._SB_PCI1GP
    1450: 50 41 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42  PA..[".dpM017_BB
    1460: 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 44 06 92 93  N.....x.. `.D...
    1470: 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42 42  {`.......M018_BB
    1480: 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  N.....x.. `pM017
    1490: 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 31  _BBN.....x.. `.1
    14A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    14B0: 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    14C0: 31 37 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    14D0: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 31  .A...\/._SB_PCI1
    14E0: 45 54 50 42 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETPB..pzM017_BBN
    14F0: 0A 03 0A 03 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1500: 53 42 5F 50 43 49 31 45 54 50 42 A0 46 0F 91 93  SB_PCI1ETPB.F...
    1510: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 42 01  \/._SB_PCI1ETPB.
    1520: 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 42  .\/._SB_PCI1ETPB
    1530: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    1540: 49 31 47 50 50 42 00 4D 34 36 30 0D 20 20 20 20  I1GPPB.M460.    
    1550: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    1560: 31 2E 47 50 50 42 2C 20 30 78 32 29 0A 00 00 00  1.GPPB, 0x2)....
    1570: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    1580: 47 50 50 42 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPPB..[".dpM017_
    1590: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    15A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    15B0: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    15C0: 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60  17_BBN.....x.. `
    15D0: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    15E0: 38 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    15F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A  M017_BBN.....x..
    1600: 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43   `.A...\/._SB_PC
    1610: 49 31 45 54 50 43 0A FF 70 7A 4D 30 31 37 5F 42  I1ETPC..pzM017_B
    1620: 42 4E 0A 03 0A 04 0A 78 00 0A 18 0A 10 00 5C 2F  BN.....x......\/
    1630: 03 5F 53 42 5F 50 43 49 31 45 54 50 43 A0 46 0F  ._SB_PCI1ETPC.F.
    1640: 91 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    1650: 43 01 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54  C..\/._SB_PCI1ET
    1660: 50 43 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F  PC...O.[.\/._SB_
    1670: 50 43 49 31 47 50 50 43 00 4D 34 36 30 0D 20 20  PCI1GPPC.M460.  
    1680: 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50    Notify (\_SB.P
    1690: 43 49 31 2E 47 50 50 43 2C 20 30 78 32 29 0A 00  CI1.GPPC, 0x2)..
    16A0: 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43  .......\/._SB_PC
    16B0: 49 31 47 50 50 43 0A 02 5B 22 0A 64 70 4D 30 31  I1GPPC..[".dpM01
    16C0: 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 A0  7_BBN.....x.. `.
    16D0: 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  D...{`.......M01
    16E0: 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    16F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A  M017_BBN.....x..
    1700: 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D   `.1..{`.......M
    1710: 30 31 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20  018_BBN.....x.. 
    1720: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78  `pM017_BBN.....x
    1730: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1740: 50 43 49 31 45 54 50 44 0A FF 70 7A 4D 30 31 37  PCI1ETPD..pzM017
    1750: 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1760: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 44 A0  \/._SB_PCI1ETPD.
    1770: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45  F...\/._SB_PCI1E
    1780: 54 50 44 01 93 5C 2F 03 5F 53 42 5F 50 43 49 31  TPD..\/._SB_PCI1
    1790: 45 54 50 44 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ETPD...O.[.\/._S
    17A0: 42 5F 50 43 49 31 47 50 50 44 00 4D 34 36 30 0D  B_PCI1GPPD.M460.
    17B0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    17C0: 2E 50 43 49 31 2E 47 50 50 44 2C 20 30 78 32 29  .PCI1.GPPD, 0x2)
    17D0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    17E0: 50 43 49 31 47 50 50 44 0A 02 5B 22 0A 64 70 4D  PCI1GPPD..[".dpM
    17F0: 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  017_BBN.....x.. 
    1800: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1810: 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  018_BBN.....x.. 
    1820: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78  `pM017_BBN.....x
    1830: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1840: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00  .M018_BBN.....x.
    1850: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05  . `pM017_BBN....
    1860: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1870: 42 5F 50 43 49 31 45 54 50 45 0A FF 70 7A 4D 30  B_PCI1ETPE..pzM0
    1880: 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00 0A 18 0A  17_BBN.....x....
    1890: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    18A0: 45 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  E.F...\/._SB_PCI
    18B0: 31 45 54 50 45 01 93 5C 2F 03 5F 53 42 5F 50 43  1ETPE..\/._SB_PC
    18C0: 49 31 45 54 50 45 0A 03 A0 4F 0C 5B 12 5C 2F 03  I1ETPE...O.[.\/.
    18D0: 5F 53 42 5F 50 43 49 31 47 50 50 45 00 4D 34 36  _SB_PCI1GPPE.M46
    18E0: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    18F0: 53 42 2E 50 43 49 31 2E 47 50 50 45 2C 20 30 78  SB.PCI1.GPPE, 0x
    1900: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1910: 42 5F 50 43 49 31 47 50 50 45 0A 02 5B 22 0A 64  B_PCI1GPPE..[".d
    1920: 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00  pM017_BBN.....x.
    1930: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1940: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A 78 00  .M018_BBN.....x.
    1950: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06  . `pM017_BBN....
    1960: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1970: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A  ...M018_BBN.....
    1980: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1990: 0A 06 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    19A0: 5F 53 42 5F 50 43 49 31 45 54 50 46 0A FF 70 7A  _SB_PCI1ETPF..pz
    19B0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A 78 00 0A  M017_BBN.....x..
    19C0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45  ....\/._SB_PCI1E
    19D0: 54 50 46 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  TPF.F...\/._SB_P
    19E0: 43 49 31 45 54 50 46 01 93 5C 2F 03 5F 53 42 5F  CI1ETPF..\/._SB_
    19F0: 50 43 49 31 45 54 50 46 0A 03 A0 4F 0C 5B 12 5C  PCI1ETPF...O.[.\
    1A00: 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 46 00 4D  /._SB_PCI1GPPF.M
    1A10: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    1A20: 5C 5F 53 42 2E 50 43 49 31 2E 47 50 50 46 2C 20  \_SB.PCI1.GPPF, 
    1A30: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    1A40: 5F 53 42 5F 50 43 49 31 47 50 50 46 0A 02 5B 22  _SB_PCI1GPPF..["
    1A50: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A  .dpM017_BBN.....
    1A60: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    1A70: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 07 0A  ...M018_BBN.....
    1A80: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1A90: 0A 07 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    1AA0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A  .....M018_BBN...
    1AB0: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    1AC0: 0A 03 0A 07 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    1AD0: 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 47 0A FF  /._SB_PCI1ETPG..
    1AE0: 70 7A 4D 30 31 37 5F 42 42 4E 0A 04 01 0A 78 00  pzM017_BBN....x.
    1AF0: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    1B00: 45 54 50 47 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ETPG.A...\/._SB_
    1B10: 50 43 49 31 45 54 50 47 01 93 5C 2F 03 5F 53 42  PCI1ETPG..\/._SB
    1B20: 5F 50 43 49 31 45 54 50 47 0A 03 A0 4A 0C 5B 12  _PCI1ETPG...J.[.
    1B30: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 47 00  \/._SB_PCI1GPPG.
    1B40: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    1B50: 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50 50 47 2C  (\_SB.PCI1.GPPG,
    1B60: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    1B70: 03 5F 53 42 5F 50 43 49 31 47 50 50 47 0A 02 5B  ._SB_PCI1GPPG..[
    1B80: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 04 01 0A  ".dpM017_BBN....
    1B90: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    1BA0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BB0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BC0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    1BD0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BE0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BF0: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1C00: 42 5F 50 43 49 31 45 54 50 48 0A FF 70 7A 4D 30  B_PCI1ETPH..pzM0
    1C10: 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    1C20: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    1C30: 48 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  H.F...\/._SB_PCI
    1C40: 31 45 54 50 48 01 93 5C 2F 03 5F 53 42 5F 50 43  1ETPH..\/._SB_PC
    1C50: 49 31 45 54 50 48 0A 03 A0 4F 0C 5B 12 5C 2F 03  I1ETPH...O.[.\/.
    1C60: 5F 53 42 5F 50 43 49 31 47 50 50 48 00 4D 34 36  _SB_PCI1GPPH.M46
    1C70: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    1C80: 53 42 2E 50 43 49 31 2E 47 50 50 48 2C 20 30 78  SB.PCI1.GPPH, 0x
    1C90: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1CA0: 42 5F 50 43 49 31 47 50 50 48 0A 02 5B 22 0A 64  B_PCI1GPPH..[".d
    1CB0: 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00  pM017_BBN.....x.
    1CC0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1CD0: 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A 78 00  .M018_BBN.....x.
    1CE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02  . `pM017_BBN....
    1CF0: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1D00: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A  ...M018_BBN.....
    1D10: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04  x.. `pM017_BBN..
    1D20: 0A 02 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03  ...x.. `.K...\/.
    1D30: 5F 53 42 5F 50 43 49 31 45 54 31 35 0A FF 70 7A  _SB_PCI1ET15..pz
    1D40: 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00 0A 18  M017_BBN....x...
    1D50: 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54  ...\/._SB_PCI1ET
    1D60: 31 35 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43  15.A...\/._SB_PC
    1D70: 49 31 45 54 31 35 01 93 5C 2F 03 5F 53 42 5F 50  I1ET15..\/._SB_P
    1D80: 43 49 31 45 54 31 35 0A 03 A0 4A 0C 5B 12 5C 2F  CI1ET15...J.[.\/
    1D90: 03 5F 53 42 5F 50 43 49 31 47 50 31 35 00 4D 34  ._SB_PCI1GP15.M4
    1DA0: 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C  60.    Notify (\
    1DB0: 5F 53 42 2E 50 43 49 31 2E 47 50 31 35 2C 20 30  _SB.PCI1.GP15, 0
    1DC0: 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F  x2).........\/._
    1DD0: 53 42 5F 50 43 49 31 47 50 31 35 0A 02 5B 22 0A  SB_PCI1GP15..[".
    1DE0: 64 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00  dpM017_BBN....x.
    1DF0: 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00 00  . `.@...{`......
    1E00: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E10: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E20: 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00  .. `./..{`......
    1E30: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E40: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E50: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1E60: 50 43 49 31 45 54 32 35 0A FF 70 7A 4D 30 31 37  PCI1ET25..pzM017
    1E70: 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1E80: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 32 35 A0  \/._SB_PCI1ET25.
    1E90: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45  F...\/._SB_PCI1E
    1EA0: 54 32 35 01 93 5C 2F 03 5F 53 42 5F 50 43 49 31  T25..\/._SB_PCI1
    1EB0: 45 54 32 35 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ET25...O.[.\/._S
    1EC0: 42 5F 50 43 49 31 47 50 32 35 00 4D 34 36 30 0D  B_PCI1GP25.M460.
    1ED0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    1EE0: 2E 50 43 49 31 2E 47 50 32 35 2C 20 30 78 32 29  .PCI1.GP25, 0x2)
    1EF0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    1F00: 50 43 49 31 47 50 32 35 0A 02 5B 22 0A 64 70 4D  PCI1GP25..[".dpM
    1F10: 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  017_BBN.....x.. 
    1F20: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1F30: 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  018_BBN.....x.. 
    1F40: 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78  `pM017_BBN.....x
    1F50: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1F60: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00  .M018_BBN.....x.
    1F70: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02  . `pM017_BBN....
    1F80: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1F90: 42 5F 50 43 49 31 45 54 33 35 0A FF 70 7A 4D 30  B_PCI1ET35..pzM0
    1FA0: 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00 0A 18 0A  17_BBN.....x....
    1FB0: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 33  ..\/._SB_PCI1ET3
    1FC0: 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  5.F...\/._SB_PCI
    1FD0: 31 45 54 33 35 01 93 5C 2F 03 5F 53 42 5F 50 43  1ET35..\/._SB_PC
    1FE0: 49 31 45 54 33 35 0A 03 A0 4F 0C 5B 12 5C 2F 03  I1ET35...O.[.\/.
    1FF0: 5F 53 42 5F 50 43 49 31 47 50 33 35 00 4D 34 36  _SB_PCI1GP35.M46
    2000: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    2010: 53 42 2E 50 43 49 31 2E 47 50 33 35 2C 20 30 78  SB.PCI1.GP35, 0x
    2020: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    2030: 42 5F 50 43 49 31 47 50 33 35 0A 02 5B 22 0A 64  B_PCI1GP35..[".d
    2040: 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00  pM017_BBN.....x.
    2050: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    2060: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A 78 00  .M018_BBN.....x.
    2070: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03  . `pM017_BBN....
    2080: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2090: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A  ...M018_BBN.....
    20A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    20B0: 0A 03 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    20C0: 5F 53 42 5F 50 43 49 31 45 54 34 35 0A FF 70 7A  _SB_PCI1ET45..pz
    20D0: 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A 78 00 0A  M017_BBN.....x..
    20E0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45  ....\/._SB_PCI1E
    20F0: 54 34 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  T45.F...\/._SB_P
    2100: 43 49 31 45 54 34 35 01 93 5C 2F 03 5F 53 42 5F  CI1ET45..\/._SB_
    2110: 50 43 49 31 45 54 34 35 0A 03 A0 4F 0C 5B 12 5C  PCI1ET45...O.[.\
    2120: 2F 03 5F 53 42 5F 50 43 49 31 47 50 34 35 00 4D  /._SB_PCI1GP45.M
    2130: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    2140: 5C 5F 53 42 2E 50 43 49 31 2E 47 50 34 35 2C 20  \_SB.PCI1.GP45, 
    2150: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    2160: 5F 53 42 5F 50 43 49 31 47 50 34 35 0A 02 5B 22  _SB_PCI1GP45..["
    2170: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A  .dpM017_BBN.....
    2180: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    2190: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 04 0A  ...M018_BBN.....
    21A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    21B0: 0A 04 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    21C0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A  .....M018_BBN...
    21D0: 04 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    21E0: 0A 05 0A 04 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    21F0: 2F 03 5F 53 42 5F 50 43 49 31 45 54 31 37 0A FF  /._SB_PCI1ET17..
    2200: 70 7A 4D 30 31 37 5F 42 42 4E 0A 07 01 0A 78 00  pzM017_BBN....x.
    2210: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    2220: 45 54 31 37 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ET17.A...\/._SB_
    2230: 50 43 49 31 45 54 31 37 01 93 5C 2F 03 5F 53 42  PCI1ET17..\/._SB
    2240: 5F 50 43 49 31 45 54 31 37 0A 03 A0 4A 0C 5B 12  _PCI1ET17...J.[.
    2250: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 31 37 00  \/._SB_PCI1GP17.
    2260: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    2270: 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50 31 37 2C  (\_SB.PCI1.GP17,
    2280: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    2290: 03 5F 53 42 5F 50 43 49 31 47 50 31 37 0A 02 5B  ._SB_PCI1GP17..[
    22A0: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 07 01 0A  ".dpM017_BBN....
    22B0: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    22C0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    22D0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    22E0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    22F0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    2300: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    2310: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    2320: 42 5F 50 43 49 31 45 54 32 37 0A FF 70 7A 4D 30  B_PCI1ET27..pzM0
    2330: 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    2340: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 32  ..\/._SB_PCI1ET2
    2350: 37 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  7.F...\/._SB_PCI
    2360: 31 45 54 32 37 01 93 5C 2F 03 5F 53 42 5F 50 43  1ET27..\/._SB_PC
    2370: 49 31 45 54 32 37 0A 03 A0 4F 0C 5B 12 5C 2F 03  I1ET27...O.[.\/.
    2380: 5F 53 42 5F 50 43 49 31 47 50 32 37 00 4D 34 36  _SB_PCI1GP27.M46
    2390: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    23A0: 53 42 2E 50 43 49 31 2E 47 50 32 37 2C 20 30 78  SB.PCI1.GP27, 0x
    23B0: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    23C0: 42 5F 50 43 49 31 47 50 32 37 0A 02 5B 22 0A 64  B_PCI1GP27..[".d
    23D0: 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00  pM017_BBN.....x.
    23E0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    23F0: 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A 78 00  .M018_BBN.....x.
    2400: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02  . `pM017_BBN....
    2410: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2420: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A  ...M018_BBN.....
    2430: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07  x.. `pM017_BBN..
    2440: 0A 02 0A 78 00 0A 20 60                          ...x.. `

FACS @ 0x0000000000000000
    0000: 46 41 43 53 40 00 00 00 6E 05 51 B6 00 00 00 00  FACS@...n.Q.....
    0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0020: 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 2F 98 00 00 02 E5 41 4D 44 00 00 00  SSDT/.....AMD...
    0010: 43 50 4D 43 4D 4E 00 00 01 00 00 00 49 4E 54 4C  CPMCMN......INTL
    0020: 31 03 23 20 A0 43 63 00 15 5C 2E 5F 53 42 5F 41  1.# .Cc..\._SB_A
    0030: 4D 30 30 09 00 15 5C 2E 5F 53 42 5F 41 4C 49 42  M00...\._SB_ALIB
    0040: 08 02 15 5C 4E 46 50 43 08 00 15 5C 4D 4F 45 4D  ...\NFPC...\MOEM
    0050: 08 03 15 5C 2E 5F 53 42 5F 47 50 49 4F 06 00 15  ...\._SB_GPIO...
    0060: 5C 5F 47 50 45 06 00 15 5C 2E 5F 47 50 45 42 49  \_GPE...\._GPEBI
    0070: 45 30 08 00 15 5C 2E 5F 47 50 45 41 49 45 30 08  E0...\._GPEAIE0.
    0080: 00 15 5C 2E 5F 47 50 45 42 49 45 31 08 00 15 5C  ..\._GPEBIE1...\
    0090: 2E 5F 47 50 45 41 49 45 31 08 00 15 5C 2E 5F 47  ._GPEAIE1...\._G
    00A0: 50 45 42 49 45 32 08 00 15 5C 2E 5F 47 50 45 41  PEBIE2...\._GPEA
    00B0: 49 45 32 08 00 15 5C 2E 5F 47 50 45 42 49 45 33  IE2...\._GPEBIE3
    00C0: 08 00 15 5C 2E 5F 47 50 45 41 49 45 33 08 00 15  ...\._GPEAIE3...
    00D0: 5C 2E 5F 47 50 45 50 54 53 30 08 01 15 5C 2E 5F  \._GPEPTS0...\._
    00E0: 47 50 45 50 54 53 31 08 01 15 5C 2E 5F 47 50 45  GPEPTS1...\._GPE
    00F0: 50 54 53 32 08 01 15 5C 2E 5F 47 50 45 50 54 53  PTS2...\._GPEPTS
    0100: 33 08 01 15 5C 2E 5F 47 50 45 57 41 4B 30 08 01  3...\._GPEWAK0..
    0110: 15 5C 2E 5F 47 50 45 57 41 4B 31 08 01 15 5C 2E  .\._GPEWAK1...\.
    0120: 5F 47 50 45 57 41 4B 32 08 01 15 5C 2E 5F 47 50  _GPEWAK2...\._GP
    0130: 45 57 41 4B 33 08 01 15 5C 2E 5F 47 50 45 53 50  EWAK3...\._GPESP
    0140: 30 30 08 00 15 5C 2E 5F 47 50 45 53 50 30 31 08  00...\._GPESP01.
    0150: 00 15 5C 2E 5F 47 50 45 53 50 30 32 08 00 15 5C  ..\._GPESP02...\
    0160: 2E 5F 47 50 45 53 50 30 33 08 00 15 5C 2E 5F 47  ._GPESP03...\._G
    0170: 50 45 53 50 30 34 08 00 15 5C 2E 5F 47 50 45 53  PESP04...\._GPES
    0180: 50 30 35 08 00 15 5C 2E 5F 47 50 45 53 50 30 36  P05...\._GPESP06
    0190: 08 00 15 5C 2E 5F 47 50 45 53 50 30 37 08 00 15  ...\._GPESP07...
    01A0: 5C 2E 5F 47 50 45 53 50 31 30 08 00 15 5C 2E 5F  \._GPESP10...\._
    01B0: 47 50 45 53 50 31 31 08 00 15 5C 2E 5F 47 50 45  GPESP11...\._GPE
    01C0: 53 50 31 32 08 00 15 5C 2E 5F 47 50 45 53 50 31  SP12...\._GPESP1
    01D0: 33 08 00 15 5C 2E 5F 47 50 45 53 50 31 34 08 00  3...\._GPESP14..
    01E0: 15 5C 2E 5F 47 50 45 53 50 31 35 08 00 15 5C 2E  .\._GPESP15...\.
    01F0: 5F 47 50 45 53 50 31 36 08 00 15 5C 2E 5F 47 50  _GPESP16...\._GP
    0200: 45 53 50 31 37 08 00 15 5C 2E 5F 47 50 45 53 50  ESP17...\._GPESP
    0210: 32 30 08 00 15 5C 2E 5F 47 50 45 53 50 32 31 08  20...\._GPESP21.
    0220: 00 15 5C 2E 5F 47 50 45 53 50 32 32 08 00 15 5C  ..\._GPESP22...\
    0230: 2E 5F 47 50 45 53 50 32 33 08 00 15 5C 2E 5F 47  ._GPESP23...\._G
    0240: 50 45 53 50 32 34 08 00 15 5C 2E 5F 47 50 45 53  PESP24...\._GPES
    0250: 50 32 35 08 00 15 5C 2E 5F 47 50 45 53 50 32 36  P25...\._GPESP26
    0260: 08 00 15 5C 2E 5F 47 50 45 53 50 32 37 08 00 15  ...\._GPESP27...
    0270: 5C 2E 5F 47 50 45 53 50 33 30 08 00 15 5C 2E 5F  \._GPESP30...\._
    0280: 47 50 45 53 50 33 31 08 00 15 5C 2E 5F 47 50 45  GPESP31...\._GPE
    0290: 53 50 33 32 08 00 15 5C 2E 5F 47 50 45 53 50 33  SP32...\._GPESP3
    02A0: 33 08 00 15 5C 2E 5F 47 50 45 53 50 33 34 08 00  3...\._GPESP34..
    02B0: 15 5C 2E 5F 47 50 45 53 50 33 35 08 00 15 5C 2E  .\._GPESP35...\.
    02C0: 5F 47 50 45 53 50 33 36 08 00 15 5C 2E 5F 47 50  _GPESP36...\._GP
    02D0: 45 53 50 33 37 08 00 15 5C 2E 5F 47 50 45 53 50  ESP37...\._GPESP
    02E0: 34 30 08 00 15 5C 2E 5F 47 50 45 53 50 34 31 08  40...\._GPESP41.
    02F0: 00 15 5C 2E 5F 47 50 45 53 50 34 32 08 00 15 5C  ..\._GPESP42...\
    0300: 2E 5F 47 50 45 53 50 34 33 08 00 15 5C 2E 5F 47  ._GPESP43...\._G
    0310: 50 45 53 50 34 34 08 00 15 5C 2E 5F 47 50 45 53  PESP44...\._GPES
    0320: 50 34 35 08 00 15 5C 2E 5F 47 50 45 53 50 34 36  P45...\._GPESP46
    0330: 08 00 15 5C 2E 5F 47 50 45 53 50 34 37 08 00 15  ...\._GPESP47...
    0340: 5C 2E 5F 47 50 45 53 50 35 30 08 00 15 5C 2E 5F  \._GPESP50...\._
    0350: 47 50 45 53 50 35 31 08 00 15 5C 2E 5F 47 50 45  GPESP51...\._GPE
    0360: 53 50 35 32 08 00 15 5C 2E 5F 47 50 45 53 50 35  SP52...\._GPESP5
    0370: 33 08 00 15 5C 2E 5F 47 50 45 53 50 35 34 08 00  3...\._GPESP54..
    0380: 15 5C 2E 5F 47 50 45 53 50 35 35 08 00 15 5C 2E  .\._GPESP55...\.
    0390: 5F 47 50 45 53 50 35 36 08 00 15 5C 2E 5F 47 50  _GPESP56...\._GP
    03A0: 45 53 50 35 37 08 00 15 5C 2E 5F 47 50 45 53 50  ESP57...\._GPESP
    03B0: 36 30 08 00 15 5C 2E 5F 47 50 45 53 50 36 31 08  60...\._GPESP61.
    03C0: 00 15 5C 2E 5F 47 50 45 53 50 36 32 08 00 15 5C  ..\._GPESP62...\
    03D0: 2E 5F 47 50 45 53 50 36 33 08 00 15 5C 2E 5F 47  ._GPESP63...\._G
    03E0: 50 45 53 50 36 34 08 00 15 5C 2E 5F 47 50 45 53  PESP64...\._GPES
    03F0: 50 36 35 08 00 15 5C 2E 5F 47 50 45 53 50 36 36  P65...\._GPESP66
    0400: 08 00 15 5C 2E 5F 47 50 45 53 50 36 37 08 00 15  ...\._GPESP67...
    0410: 5C 2E 5F 47 50 45 53 50 37 30 08 00 15 5C 2E 5F  \._GPESP70...\._
    0420: 47 50 45 53 50 37 31 08 00 15 5C 2E 5F 47 50 45  GPESP71...\._GPE
    0430: 53 50 37 32 08 00 15 5C 2E 5F 47 50 45 53 50 37  SP72...\._GPESP7
    0440: 33 08 00 15 5C 2E 5F 47 50 45 53 50 37 34 08 00  3...\._GPESP74..
    0450: 15 5C 2E 5F 47 50 45 53 50 37 35 08 00 15 5C 2E  .\._GPESP75...\.
    0460: 5F 47 50 45 53 50 37 36 08 00 15 5C 2E 5F 47 50  _GPESP76...\._GP
    0470: 45 53 50 37 37 08 00 15 5C 2E 5F 53 42 5F 4F 50  ESP77...\._SB_OP
    0480: 54 53 08 01 15 5C 2E 5F 53 42 5F 4F 57 41 4B 08  TS...\._SB_OWAK.
    0490: 01 15 5C 4D 30 33 38 08 01 15 5C 4D 30 33 39 08  ..\M038...\M039.
    04A0: 02 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06  ..\M050...\M051.
    04B0: 00 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06  ..\M052...\M053.
    04C0: 00 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06  ..\M054...\M055.
    04D0: 00 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06  ..\M056...\M057.
    04E0: 00 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06  ..\M058...\M059.
    04F0: 00 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06  ..\M062...\M068.
    0500: 00 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06  ..\M069...\M070.
    0510: 00 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06  ..\M071...\M072.
    0520: 00 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06  ..\M074...\M075.
    0530: 00 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06  ..\M076...\M077.
    0540: 00 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06  ..\M078...\M079.
    0550: 00 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06  ..\M080...\M081.
    0560: 00 15 5C 2E 5F 53 42 5F 4D 32 36 33 08 01 15 5C  ..\._SB_M263...\
    0570: 2E 5F 53 42 5F 4D 32 36 34 08 01 15 5C 4D 31 32  ._SB_M264...\M12
    0580: 37 06 00 15 5C 2E 5F 53 42 5F 4D 32 38 34 08 01  7...\._SB_M284..
    0590: 15 5C 2E 5F 53 42 5F 49 50 54 53 08 01 15 5C 2E  .\._SB_IPTS...\.
    05A0: 5F 53 42 5F 49 57 41 4B 08 01 15 5C 2E 5F 53 42  _SB_IWAK...\._SB
    05B0: 5F 42 50 54 53 08 01 15 5C 2E 5F 53 42 5F 42 57  _BPTS...\._SB_BW
    05C0: 41 4B 08 01 15 5C 2F 04 5F 53 42 5F 50 43 58 58  AK...\/._SB_PCXX
    05D0: 53 41 58 58 54 50 54 53 08 01 15 5C 2F 04 5F 53  SAXXTPTS...\/._S
    05E0: 42 5F 50 43 58 58 53 41 58 58 54 57 41 4B 08 01  B_PCXXSAXXTWAK..
    05F0: 15 5C 2F 05 5F 53 42 5F 50 43 58 58 47 50 58 58  .\/._SB_PCXXGPXX
    0600: 53 41 58 58 54 50 54 53 08 01 15 5C 2F 05 5F 53  SAXXTPTS...\/._S
    0610: 42 5F 50 43 58 58 47 50 58 58 53 41 58 58 54 57  B_PCXXGPXXSAXXTW
    0620: 41 4B 08 01 15 5C 2F 05 5F 53 42 5F 50 43 49 30  AK...\/._SB_PCI0
    0630: 50 54 42 52 50 54 53 54 54 50 54 53 08 01 15 5C  PTBRPTSTTPTS...\
    0640: 2F 05 5F 53 42 5F 50 43 49 30 50 54 42 52 50 54  /._SB_PCI0PTBRPT
    0650: 53 54 54 57 41 4B 08 01 5B 80 43 50 4E 56 00 0C  STTWAK..[.CPNV..
    0660: 18 40 46 A9 0C 17 01 01 00 5B 81 40 20 43 50 4E  .@F......[.@ CPN
    0670: 56 10 4D 30 38 32 20 4D 30 38 33 20 4D 30 38 34  V.M082 M083 M084
    0680: 20 4D 30 38 35 08 4D 32 32 31 08 4D 30 38 36 10   M085.M221.M086.
    0690: 4D 32 32 39 08 4D 32 33 31 10 4D 32 33 35 08 4D  M229.M231.M235.M
    06A0: 32 33 33 20 00 01 00 02 00 01 00 01 00 01 00 01  233 ............
    06B0: 00 01 4D 30 38 37 01 00 01 00 16 4D 30 38 38 10  ..M087.....M088.
    06C0: 4D 30 38 39 10 4D 30 39 30 03 4D 30 39 31 05 4D  M089.M090.M091.M
    06D0: 30 39 32 08 4D 30 39 33 03 4D 30 39 34 05 4D 30  092.M093.M094.M0
    06E0: 39 35 08 4D 30 39 36 08 4D 30 39 37 08 4D 30 39  95.M096.M097.M09
    06F0: 38 20 4D 30 39 39 20 4D 31 30 30 20 4D 31 30 31  8 M099 M100 M101
    0700: 20 4D 31 30 32 20 4D 31 30 33 20 4D 31 30 34 40   M102 M103 M104@
    0710: 0E 4D 31 30 35 20 4D 31 30 36 80 00 08 4D 33 37  .M105 M106...M37
    0720: 38 80 00 08 4D 33 37 39 80 00 08 4D 33 38 30 80  8...M379...M380.
    0730: 00 08 4D 33 38 31 80 00 08 4D 33 38 32 80 00 08  ..M381...M382...
    0740: 4D 33 38 33 80 00 08 4D 33 38 34 80 00 08 4D 33  M383...M384...M3
    0750: 38 35 80 00 08 4D 33 38 36 80 00 08 4D 33 38 37  85...M386...M387
    0760: 80 00 08 4D 33 38 38 80 00 08 4D 33 38 39 80 00  ...M388...M389..
    0770: 08 4D 33 39 30 80 00 08 4D 33 39 31 80 00 08 4D  .M390...M391...M
    0780: 33 39 32 80 00 08 4D 31 30 37 40 04 4D 33 32 30  392...M107@.M320
    0790: 20 4D 33 32 31 20 4D 33 32 32 20 4D 33 32 33 20   M321 M322 M323 
    07A0: 4D 33 32 34 20 4D 33 32 35 20 4D 33 32 36 20 4D  M324 M325 M326 M
    07B0: 33 32 37 10 4D 33 32 38 08 4D 31 32 38 20 4D 31  327.M328.M128 M1
    07C0: 30 38 20 4D 31 30 39 20 4D 31 31 30 20 4D 31 32  08 M109 M110 M12
    07D0: 32 20 4D 31 33 31 20 4D 31 33 32 20 4D 31 33 33  2 M131 M132 M133
    07E0: 20 4D 31 33 34 20 4D 31 33 35 20 4D 31 33 36 20   M134 M135 M136 
    07F0: 4D 32 32 30 20 4D 32 32 36 20 4D 32 35 31 20 4D  M220 M226 M251 M
    0800: 33 31 30 20 4D 32 38 30 20 4D 32 39 30 20 4D 33  310 M280 M290 M3
    0810: 33 31 20 4D 34 31 34 10 4D 34 34 34 48 04 4D 34  31 M414.M444H.M4
    0820: 35 33 20 4D 34 35 34 10 4D 34 35 35 08 4D 34 35  53 M454.M455.M45
    0830: 36 08 4D 34 35 37 08 4D 34 34 39 48 04 4D 34 43  6.M457.M449H.M4C
    0840: 30 20 4D 32 33 41 08 4D 33 31 43 20 4D 34 46 30  0 M23A.M31C M4F0
    0850: 20 4D 36 31 30 20 4D 36 32 30 20 4D 32 39 41 40   M610 M620 M29A@
    0860: 08 4D 36 33 31 20 4D 36 35 32 20 08 43 54 4D 52  .M631 M652 .CTMR
    0870: 00 08 4D 32 38 35 11 07 0A 04 01 03 80 00 5B 80  ..M285........[.
    0880: 56 41 52 50 00 0C 08 08 D8 FE 0A 04 5B 81 0B 56  VARP........[..V
    0890: 41 52 50 03 56 41 50 31 20 14 41 21 4D 30 30 30  ARP.VAP1 .A!M000
    08A0: 09 8C 4D 32 38 35 00 4D 32 38 36 8C 4D 32 38 35  ..M285.M286.M285
    08B0: 01 4D 32 38 37 8B 4D 32 38 35 0A 02 4D 32 38 38  .M287.M285..M288
    08C0: 08 4D 34 35 30 11 08 0A 05 00 96 05 00 00 8A 4D  .M450..........M
    08D0: 34 35 30 00 4D 34 35 32 8C 4D 34 35 30 0A 04 4D  450.M452.M450..M
    08E0: 34 35 31 70 72 68 0C 00 00 00 B0 00 60 A0 46 09  451prh......`.F.
    08F0: 93 99 4D 32 38 36 00 01 70 99 4D 32 38 38 00 61  ..M286..p.M288.a
    0900: A0 27 93 99 4D 32 38 37 00 0A 03 5B 80 56 41 52  .'..M287...[.VAR
    0910: 4D 01 61 0A 04 5B 81 0B 56 41 52 4D 03 56 41 52  M.a..[..VARM.VAR
    0920: 52 20 70 60 56 41 52 52 A1 4B 05 A0 2C 93 99 4D  R p`VARR.K..,..M
    0930: 32 38 37 00 0A 02 5B 80 56 41 52 4E 01 61 0A 02  287...[.VARN.a..
    0940: 5B 81 0B 56 41 52 4E 02 56 41 52 53 10 70 7B 60  [..VARN.VARS.p{`
    0950: 0B FF FF 00 56 41 52 53 A1 2B A0 29 93 99 4D 32  ....VARS.+.)..M2
    0960: 38 37 00 01 5B 80 56 41 52 4F 01 61 01 5B 81 0B  87..[.VARO.a.[..
    0970: 56 41 52 4F 01 56 41 52 54 08 70 7B 60 0A FF 00  VARO.VART.p{`...
    0980: 56 41 52 54 A0 1A 93 99 4D 34 35 31 00 01 70 99  VART....M451..p.
    0990: 4D 34 35 32 00 62 4D 32 35 30 00 00 00 62 60 70  M452.bM250...b`p
    09A0: 56 41 50 31 61 A0 0F 92 95 61 43 54 4D 52 74 61  VAP1a....aCTMRta
    09B0: 43 54 4D 52 62 A1 12 72 61 72 74 0C FE FF FF FF  CTMRb..rart.....
    09C0: 43 54 4D 52 00 01 00 62 78 62 0A 19 63 62 78 77  CTMR...bxb..cbxw
    09D0: 62 0A 07 00 0B E8 03 63 62 A0 43 04 92 95 63 0A  b......cb.C...c.
    09E0: 64 4D 34 36 30 0D 20 20 50 4F 53 54 20 43 4F 44  dM460.  POST COD
    09F0: 45 3A 20 25 58 20 20 41 43 50 49 20 54 49 4D 45  E: %X  ACPI TIME
    0A00: 52 3A 20 25 58 20 20 54 49 4D 45 3A 20 25 64 2E  R: %X  TIME: %d.
    0A10: 25 64 20 6D 73 0A 00 60 61 62 63 00 00 A1 47 08  %d ms..`abc...G.
    0A20: A0 44 04 92 95 63 0A 0A 4D 34 36 30 0D 20 20 50  .D...c..M460.  P
    0A30: 4F 53 54 20 43 4F 44 45 3A 20 25 58 20 20 41 43  OST CODE: %X  AC
    0A40: 50 49 20 54 49 4D 45 52 3A 20 25 58 20 20 54 49  PI TIMER: %X  TI
    0A50: 4D 45 3A 20 25 64 2E 30 25 64 20 6D 73 0A 00 60  ME: %d.0%d ms..`
    0A60: 61 62 63 00 00 A1 3F 4D 34 36 30 0D 20 20 50 4F  abc...?M460.  PO
    0A70: 53 54 20 43 4F 44 45 3A 20 25 58 20 20 41 43 50  ST CODE: %X  ACP
    0A80: 49 20 54 49 4D 45 52 3A 20 25 58 20 20 54 49 4D  I TIMER: %X  TIM
    0A90: 45 3A 20 25 64 2E 30 30 25 64 20 6D 73 0A 00 60  E: %d.00%d ms..`
    0AA0: 61 62 63 00 00 70 61 43 54 4D 52 14 18 4D 30 33  abc..paCTMR..M03
    0AB0: 34 09 A4 4D 30 31 31 72 4D 30 38 34 0B 00 07 00  4..M011rM084....
    0AC0: 68 00 0A 08 14 18 4D 30 31 35 09 A4 4D 30 31 31  h.....M015..M011
    0AD0: 72 4D 30 38 34 0B 00 04 00 68 00 0A 08 14 18 4D  rM084....h.....M
    0AE0: 30 31 36 0A 4D 30 31 32 72 4D 30 38 34 0B 00 04  016.M012rM084...
    0AF0: 00 68 00 0A 08 69 14 13 4D 30 33 35 09 A4 4D 30  .h...i..M035..M0
    0B00: 31 31 4D 30 38 34 68 00 0A 08 14 13 4D 30 33 36  11M084h.....M036
    0B10: 0A 4D 30 31 32 4D 30 38 34 68 00 0A 08 69 14 14  .M012M084h...i..
    0B20: 4D 30 30 31 0A 70 00 60 A0 08 93 68 0A 15 70 01  M001.p.`...h..p.
    0B30: 60 A4 60 14 1A 4D 30 30 33 0B 79 68 0A 05 60 72  `.`..M003.yh..`r
    0B40: 60 69 61 79 61 0A 18 62 72 62 6A 63 A4 63 5B 80  `iaya..brbjc.c[.
    0B50: 56 41 52 51 01 0B D8 0C 0A 08 5B 81 0B 56 41 52  VARQ......[..VAR
    0B60: 51 03 56 41 51 31 20 14 22 4D 30 30 34 09 5B 87  Q.VAQ1 ."M004.[.
    0B70: 12 56 41 52 51 56 41 51 31 68 03 00 20 56 41 52  .VARQVAQ1h.. VAR
    0B80: 32 20 70 56 41 52 32 60 A4 60 14 20 4D 30 30 35  2 pVAR2`.`. M005
    0B90: 0A 5B 87 12 56 41 52 51 56 41 51 31 68 03 00 20  .[..VARQVAQ1h.. 
    0BA0: 56 41 52 32 20 70 69 56 41 52 32 14 18 4D 30 30  VAR2 piVAR2..M00
    0BB0: 36 0B 7B 4D 30 30 34 68 69 60 7D 60 6A 61 4D 30  6.{M004hi`}`jaM0
    0BC0: 30 35 68 61 14 41 1D 4D 30 30 32 0A A0 42 0B 93  05ha.A.M002..B..
    0BD0: 68 00 A0 29 93 69 00 4D 30 30 36 4D 30 30 33 0A  h..).i.M006M003.
    0BE0: 06 00 0A C0 0C FF EF FF FF 00 4D 30 30 36 4D 30  ..........M006M0
    0BF0: 30 33 01 00 0A 65 0C FE FE FF FF 00 A0 29 93 69  03...e.......).i
    0C00: 01 4D 30 30 36 4D 30 30 33 0A 06 00 0A C0 0C FF  .M006M003.......
    0C10: DF FF FF 00 4D 30 30 36 4D 30 30 33 01 00 0A 65  ....M006M003...e
    0C20: 0C FD FD FF FF 00 A0 2A 93 69 0A 02 4D 30 30 36  .......*.i..M006
    0C30: 4D 30 30 33 0A 06 00 0A C0 0C FF BF FF FF 00 4D  M003...........M
    0C40: 30 30 36 4D 30 30 33 01 00 0A 65 0C FB FB FF FF  006M003...e.....
    0C50: 00 A0 2A 93 69 0A 03 4D 30 30 36 4D 30 30 33 0A  ..*.i..M006M003.
    0C60: 06 00 0A C0 0C FF 7F FF FF 00 4D 30 30 36 4D 30  ..........M006M0
    0C70: 30 33 01 00 0A 65 0C F7 F7 FF FF 00 5B 22 01 A0  03...e......["..
    0C80: 42 0C 93 68 01 A0 2D 93 69 00 4D 30 30 36 4D 30  B..h..-.i.M006M0
    0C90: 30 33 0A 06 00 0A C0 0C FF EF FF FF 0B 00 10 4D  03.............M
    0CA0: 30 30 36 4D 30 30 33 01 00 0A 65 0C FE FE FF FF  006M003...e.....
    0CB0: 0B 01 01 A0 2D 93 69 01 4D 30 30 36 4D 30 30 33  ....-.i.M006M003
    0CC0: 0A 06 00 0A C0 0C FF DF FF FF 0B 00 20 4D 30 30  ............ M00
    0CD0: 36 4D 30 30 33 01 00 0A 65 0C FD FD FF FF 0B 02  6M003...e.......
    0CE0: 02 A0 2E 93 69 0A 02 4D 30 30 36 4D 30 30 33 0A  ....i..M006M003.
    0CF0: 06 00 0A C0 0C FF BF FF FF 0B 00 40 4D 30 30 36  ...........@M006
    0D00: 4D 30 30 33 01 00 0A 65 0C FB FB FF FF 0B 04 04  M003...e........
    0D10: A0 2E 93 69 0A 03 4D 30 30 36 4D 30 30 33 0A 06  ...i..M006M003..
    0D20: 00 0A C0 0C FF 7F FF FF 0B 00 80 4D 30 30 36 4D  ...........M006M
    0D30: 30 30 33 01 00 0A 65 0C F7 F7 FF FF 0B 08 08 5B  003...e........[
    0D40: 22 01 A0 43 05 93 68 00 4D 30 30 38 69 70 4D 30  "..C..h.M008ipM0
    0D50: 30 34 4D 30 30 33 0A 03 69 0A A5 60 7B 60 0A FF  04M003..i..`{`..
    0D60: 60 70 0B F4 01 61 A2 23 90 94 61 00 92 93 60 0A  `p...a.#..a...`.
    0D70: 10 70 4D 30 30 34 4D 30 30 33 0A 03 69 0A A5 60  .pM004M003..i..`
    0D80: 7B 60 0A FF 60 76 61 5B 22 01 A0 0B 92 93 60 0A  {`..`va[".....`.
    0D90: 10 4D 30 30 37 69 14 41 08 4D 30 30 38 09 70 4D  .M007i.A.M008.pM
    0DA0: 30 31 39 00 0A 15 68 0A 88 60 7D 7B 60 0C F0 FF  019...h..`}{`...
    0DB0: FF FF 00 0A 02 61 4D 30 32 30 00 0A 15 68 0A 88  .....aM020...h..
    0DC0: 61 4D 30 30 36 4D 30 30 33 0A 03 68 0A A4 0C FE  aM006M003..h....
    0DD0: FF FF FF 01 4D 30 30 36 4D 30 30 33 0A 03 68 0A  ....M006M003..h.
    0DE0: A2 0C FF DF FF FF 0B 00 20 4D 30 30 36 4D 30 30  ........ M006M00
    0DF0: 33 0A 03 68 0A C0 0C FF 7F FF FF 0B 00 80 4D 30  3..h..........M0
    0E00: 30 36 4D 30 30 33 0A 03 68 0A A4 0C FF FF FF DF  06M003..h.......
    0E10: 0C 00 00 00 20 5B 22 01 14 44 05 4D 30 30 37 09  .... ["..D.M007.
    0E20: 70 4D 30 31 39 00 0A 15 68 0A 88 60 7D 7B 60 0C  pM019...h..`}{`.
    0E30: F0 FF FF FF 00 01 61 4D 30 32 30 00 0A 15 68 0A  ......aM020...h.
    0E40: 88 61 4D 30 30 36 4D 30 30 33 0A 03 68 0A A4 0C  .aM006M003..h...
    0E50: FE FF FF FF 00 4D 30 30 36 4D 30 30 33 0A 03 68  .....M006M003..h
    0E60: 0A A2 0C FF DF FF FF 0B 00 20 5B 22 01 14 44 1A  ......... ["..D.
    0E70: 4D 31 31 31 0A 4D 34 36 30 0D 20 20 4B 45 52 2D  M111.M460.  KER-
    0E80: 41 53 4C 2D 43 70 6D 53 65 74 44 65 76 69 63 65  ASL-CpmSetDevice
    0E90: 50 6F 77 65 72 20 28 30 78 25 58 2C 20 30 78 25  Power (0x%X, 0x%
    0EA0: 58 29 0A 00 68 69 00 00 00 00 A0 47 16 92 93 68  X)..hi.....G...h
    0EB0: 00 70 4D 31 31 30 60 A0 4A 15 60 72 60 0A 10 60  .pM110`.J.`r`..`
    0EC0: 70 00 61 70 01 62 70 00 67 A2 48 14 90 92 93 62  p.ap.bp.g.H....b
    0ED0: 0A FF 92 93 62 00 70 4D 30 31 33 72 60 61 00 00  ....b.pM013r`a..
    0EE0: 00 0A 08 62 70 4D 30 31 33 72 60 61 00 01 00 0A  ...bpM013r`a....
    0EF0: 08 63 A0 47 10 90 93 62 68 93 63 7B 69 01 00 70  .c.G...bh.c{i..p
    0F00: 4D 30 31 33 72 60 61 00 0A 07 00 0A 08 63 A0 48  M013r`a......c.H
    0F10: 0E 92 93 63 00 70 4D 30 31 33 72 60 61 00 0A 02  ...c.pM013r`a...
    0F20: 00 0A 08 64 A0 49 04 93 64 00 70 4D 30 31 33 72  ...d.I..d.pM013r
    0F30: 60 61 00 0A 03 00 0A 20 65 70 4D 30 31 33 72 60  `a..... epM013r`
    0F40: 61 00 0A 03 0A 10 0A 08 66 4D 30 31 30 7B 65 0C  a.......fM010{e.
    0F50: FF FF 00 FF 00 66 A0 0E 93 7B 69 01 00 00 4D 30  .....f...{i...M0
    0F60: 30 30 0B D8 0D A1 08 4D 30 30 30 0B DB 0D A0 4D  00.....M000....M
    0F70: 04 93 64 01 70 4D 30 31 33 72 60 61 00 0A 03 00  ..d.pM013r`a....
    0F80: 0A 20 65 70 4D 30 31 33 72 60 61 00 0A 03 0A 10  . epM013r`a.....
    0F90: 0A 08 66 A2 10 92 93 4D 30 30 39 7B 65 0C FF FF  ..f....M009{e...
    0FA0: 00 FF 00 66 A0 0E 93 7B 69 01 00 00 4D 30 30 30  ...f...{i...M000
    0FB0: 0B D9 0D A1 08 4D 30 30 30 0B DC 0D A0 3A 93 64  .....M000....:.d
    0FC0: 0A 02 70 4D 30 31 33 72 60 61 00 0A 03 00 0A 20  ..pM013r`a..... 
    0FD0: 65 5B 22 78 72 65 0B E7 03 00 0B E8 03 00 00 A0  e["xre..........
    0FE0: 0E 93 7B 69 01 00 00 4D 30 30 30 0B DA 0D A1 08  ..{i...M000.....
    0FF0: 4D 30 30 30 0B DD 0D 70 01 67 A1 12 A0 10 90 93  M000...p.g......
    1000: 67 01 93 7B 69 0A 10 00 0A 10 70 00 62 72 61 0A  g..{i.....p.bra.
    1010: 08 61 14 4C 10 4D 34 37 30 0A 70 00 67 A0 48 0B  .a.L.M470.p.g.H.
    1020: 92 93 68 00 70 4D 31 31 30 60 A0 4B 0A 60 72 60  ..h.pM110`.K.`r`
    1030: 0A 10 60 70 00 61 70 4D 30 31 33 72 60 61 00 00  ..`p.apM013r`a..
    1040: 00 0A 08 62 A2 41 09 90 92 93 62 0A FF 92 93 62  ...b.A....b....b
    1050: 00 70 4D 30 31 33 72 60 61 00 01 00 0A 08 63 A0  .pM013r`a.....c.
    1060: 43 06 90 93 62 68 93 63 69 70 4D 30 31 33 72 60  C...bh.cipM013r`
    1070: 61 00 0A 02 00 0A 08 63 70 4D 30 31 33 72 60 61  a......cpM013r`a
    1080: 00 0A 07 00 0A 08 64 A0 3B 90 93 63 00 92 93 64  ......d.;..c...d
    1090: 00 70 4D 30 31 33 72 60 61 00 0A 03 00 0A 20 65  .pM013r`a..... e
    10A0: 70 4D 30 31 33 72 60 61 00 0A 03 0A 10 0A 08 66  pM013r`a.......f
    10B0: A0 12 93 4D 30 30 39 7B 65 0C FF FF 00 FF 00 66  ...M009{e......f
    10C0: 70 01 67 72 61 0A 08 61 70 4D 30 31 33 72 60 61  p.gra..apM013r`a
    10D0: 00 00 00 0A 08 62 4D 34 36 30 0D 20 20 4B 45 52  .....bM460.  KER
    10E0: 2D 41 53 4C 2D 43 70 6D 43 68 65 63 6B 44 65 76  -ASL-CpmCheckDev
    10F0: 69 63 65 50 6F 77 65 72 53 74 61 74 65 20 28 30  icePowerState (0
    1100: 78 25 58 2C 20 25 64 29 20 20 52 65 74 75 72 6E  x%X, %d)  Return
    1110: 20 28 25 64 29 0A 00 68 69 67 00 00 00 A4 67 14   (%d)..hig....g.
    1120: 4B 0F 4D 32 32 38 09 A0 43 0F 94 68 0A 03 70 4D  K.M228..C..h..pM
    1130: 31 31 30 60 A0 46 0E 60 72 60 0A 10 60 70 00 61  110`.F.`r`..`p.a
    1140: 70 4D 30 31 33 72 60 61 00 00 00 0A 08 62 A2 4C  pM013r`a.....b.L
    1150: 0C 90 92 93 62 0A FF 92 93 62 00 70 4D 30 31 33  ....b....b.pM013
    1160: 72 60 61 00 0A 07 00 0A 08 63 A0 4D 09 93 63 68  r`a......c.M..ch
    1170: 70 4D 30 31 33 72 60 61 00 0A 02 00 0A 08 64 A0  pM013r`a......d.
    1180: 30 93 64 00 70 4D 30 31 33 72 60 61 00 0A 03 00  0.d.pM013r`a....
    1190: 0A 20 65 70 4D 30 31 33 72 60 61 00 0A 03 0A 10  . epM013r`a.....
    11A0: 0A 08 66 4D 30 31 30 7B 65 0C FF FF 00 FF 00 66  ..fM010{e......f
    11B0: A0 34 93 64 01 70 4D 30 31 33 72 60 61 00 0A 03  .4.d.pM013r`a...
    11C0: 00 0A 20 65 70 4D 30 31 33 72 60 61 00 0A 03 0A  .. epM013r`a....
    11D0: 10 0A 08 66 A2 10 92 93 4D 30 30 39 7B 65 0C FF  ...f....M009{e..
    11E0: FF 00 FF 00 66 A0 22 93 64 0A 02 70 4D 30 31 33  ....f.".d..pM013
    11F0: 72 60 61 00 0A 03 00 0A 20 65 5B 22 78 72 65 0B  r`a..... e["xre.
    1200: E7 03 00 0B E8 03 00 00 72 61 0A 08 61 70 4D 30  ........ra..apM0
    1210: 31 33 72 60 61 00 00 00 0A 08 62 14 42 2A 4D 32  13r`a.....b.B*M2
    1220: 31 39 0A 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  19.M460.  KER-AS
    1230: 4C 2D 43 70 6D 53 65 74 44 65 76 69 63 65 43 6C  L-CpmSetDeviceCl
    1240: 6F 63 6B 20 28 30 78 25 58 2C 20 25 64 29 0A 00  ock (0x%X, %d)..
    1250: 68 69 00 00 00 00 A0 47 26 92 93 68 00 70 4D 32  hi.....G&..h.pM2
    1260: 32 31 60 A0 4A 25 7B 60 0A 02 00 70 4D 32 32 30  21`.J%{`...pM220
    1270: 60 A0 4C 24 60 72 60 0A 10 60 70 00 61 70 01 62  `.L$`r`..`p.ap.b
    1280: A2 4D 23 92 93 62 0A FF 70 4D 30 31 33 72 60 61  .M#..b..pM013r`a
    1290: 00 00 00 0A 08 62 70 4D 30 31 33 72 60 61 00 01  .....bpM013r`a..
    12A0: 00 0A 08 63 70 4D 30 31 33 72 60 61 00 0A 04 00  ...cpM013r`a....
    12B0: 0A 08 64 70 4D 30 31 33 72 60 61 00 0A 07 00 0A  ..dpM013r`a.....
    12C0: 08 65 70 4D 30 31 33 72 60 61 00 0A 08 00 0A 20  .epM013r`a..... 
    12D0: 67 A0 47 1E 93 64 68 A0 41 1E 90 95 62 0A 0A 7B  g.G..dh.A...b..{
    12E0: 65 0A 80 00 A0 07 93 69 00 70 00 63 A1 44 09 A0  e......i.p.c.D..
    12F0: 4B 07 7B 65 0A 04 00 A0 18 93 69 01 A0 0D 92 95  K.{e......i.....
    1300: 4D 30 38 35 0A 04 70 0A 03 63 A1 05 70 0A 0F 63  M085..p..c..p..c
    1310: A0 4A 05 93 69 0A 02 70 4D 30 31 37 00 4D 30 31  .J..i..pM017.M01
    1320: 33 72 60 61 00 0A 05 00 0A 08 4D 30 31 33 72 60  3r`a......M013r`
    1330: 61 00 0A 06 00 0A 08 0A 19 00 0A 08 66 A0 17 93  a...........f...
    1340: 4D 32 36 35 66 00 00 01 A0 0C 92 95 4D 30 38 35  M265f.......M085
    1350: 0A 04 70 01 63 A1 15 A0 0D 92 95 4D 30 38 35 0A  ..p.c......M085.
    1360: 04 70 0A 03 63 A1 05 70 0A 0F 63 A1 15 A0 0D 92  .p..c..p..c.....
    1370: 95 4D 30 38 35 0A 04 70 0A 03 63 A1 05 70 0A 0F  .M085..p..c..p..
    1380: 63 A0 40 0F 92 95 4D 30 38 35 0A 04 A0 4C 09 93  c.@...M085...L..
    1390: 4D 30 38 35 0A 08 A0 43 07 94 7B 67 0C 00 00 F0  M085...C..{g....
    13A0: 0F 00 00 70 4D 32 34 39 7B 7A 67 0A 18 00 0A 0F  ...pM249{zg.....
    13B0: 00 7B 7A 67 0A 14 00 0A 0F 00 7B 7A 67 0A 10 00  .{zg......{zg...
    13C0: 0A 0F 00 0C 00 1E D0 02 66 7B 66 7F 0C FF FF FF  ........f{f.....
    13D0: FF 79 0A 03 79 62 01 00 00 00 66 7D 66 79 63 79  .y..yb....f}fycy
    13E0: 62 01 00 00 66 4D 32 35 30 7B 7A 67 0A 18 00 0A  b...fM250{zg....
    13F0: 0F 00 7B 7A 67 0A 14 00 0A 0F 00 7B 7A 67 0A 10  ..{zg......{zg..
    1400: 00 0A 0F 00 0C 00 1E D0 02 66 A1 1E 4D 30 31 32  .........f..M012
    1410: 72 4D 30 38 34 0B 00 0E 00 7A 62 0A 02 00 79 7B  rM084....zb...y{
    1420: 62 0A 03 00 01 00 0A 02 63 A1 48 04 A0 26 93 7A  b.......c.H..&.z
    1430: 67 0A 1C 00 0A 02 4D 30 31 32 72 4D 30 38 34 0B  g.....M012rM084.
    1440: 00 13 00 7A 62 0A 02 00 79 7B 62 0A 03 00 01 00  ...zb...y{b.....
    1450: 0A 02 63 A1 1E 4D 30 31 32 72 4D 30 38 34 0B 00  ..c..M012rM084..
    1460: 0E 00 7A 62 0A 02 00 79 7B 62 0A 03 00 01 00 0A  ..zb...y{b......
    1470: 02 63 A1 1D 4D 30 31 32 72 4D 30 38 34 0B 00 0E  .c..M012rM084...
    1480: 00 7A 62 01 00 79 7B 62 01 00 0A 02 00 0A 04 63  .zb..y{b.......c
    1490: A0 0B 93 69 00 4D 30 30 30 0B E0 0D A0 0B 93 69  ...i.M000......i
    14A0: 01 4D 30 30 30 0B E1 0D A0 0C 93 69 0A 02 4D 30  .M000......i..M0
    14B0: 30 30 0B E2 0D 70 0A FF 62 72 61 0A 0C 61 14 4D  00...p..bra..a.M
    14C0: 19 4D 31 31 32 0A 4D 34 36 30 0D 20 20 4B 45 52  .M112.M460.  KER
    14D0: 2D 41 53 4C 2D 43 70 6D 53 65 74 44 65 76 69 63  -ASL-CpmSetDevic
    14E0: 65 52 65 73 65 74 20 28 30 78 25 58 2C 20 30 78  eReset (0x%X, 0x
    14F0: 25 58 29 0A 00 68 69 00 00 00 00 A0 40 16 92 93  %X)..hi.....@...
    1500: 68 00 70 4D 31 30 39 60 A0 43 15 60 72 60 0A 10  h.pM109`.C.`r`..
    1510: 60 70 00 61 70 01 62 70 00 67 A2 41 14 90 92 93  `p.ap.bp.g.A....
    1520: 62 0A FF 92 93 62 00 70 4D 30 31 33 72 60 61 00  b....b.pM013r`a.
    1530: 00 00 0A 08 62 70 4D 30 31 33 72 60 61 00 01 00  ....bpM013r`a...
    1540: 0A 08 63 A0 40 10 90 93 62 68 93 63 7B 69 0A 03  ..c.@...bh.c{i..
    1550: 00 A0 45 0C 95 63 0A 02 70 4D 30 31 33 72 60 61  ..E..c..pM013r`a
    1560: 00 0A 02 00 0A 08 64 A0 30 93 64 00 70 4D 30 31  ......d.0.d.pM01
    1570: 33 72 60 61 00 0A 03 00 0A 20 65 70 4D 30 31 33  3r`a..... epM013
    1580: 72 60 61 00 0A 03 0A 10 0A 08 66 4D 30 31 30 7B  r`a.......fM010{
    1590: 65 0C FF FF 00 FF 00 66 A0 46 06 93 64 01 70 4D  e......f.F..d.pM
    15A0: 30 31 33 72 60 61 00 0A 03 00 0A 20 65 70 4D 30  013r`a..... epM0
    15B0: 31 33 72 60 61 00 0A 03 0A 10 0A 08 66 4D 30 31  13r`a.......fM01
    15C0: 30 7B 65 0C FF FF 00 FF 00 66 70 4D 30 30 39 7B  0{e......fpM009{
    15D0: 65 0C FF FF 00 FF 00 67 70 0B F2 03 64 A2 21 90  e......gp...d.!.
    15E0: 94 64 00 92 93 67 66 70 74 64 01 00 64 5B 21 0A  .d...gfptd..d[!.
    15F0: 63 70 4D 30 30 39 7B 65 0C FF FF 00 FF 00 67 A0  cpM009{e......g.
    1600: 0B 93 63 00 4D 30 30 30 0B D5 0D A0 0B 93 63 01  ..c.M000......c.
    1610: 4D 30 30 30 0B D6 0D A0 29 93 63 0A 02 70 4D 30  M000....).c..pM0
    1620: 31 33 72 60 61 00 0A 03 00 0A 20 65 5B 22 78 72  13r`a..... e["xr
    1630: 65 0B E7 03 00 0B E8 03 00 00 4D 30 30 30 0B D7  e.........M000..
    1640: 0D 70 01 67 A1 12 A0 10 90 93 67 01 93 7B 69 0A  .p.g......g..{i.
    1650: 10 00 0A 10 70 00 62 72 61 0A 08 61 14 4F 0D 4D  ....p.bra..a.O.M
    1660: 32 37 35 0A 70 00 67 A0 4B 08 92 93 68 00 70 4D  275.p.g.K...h.pM
    1670: 31 30 39 60 A0 4E 07 60 72 60 0A 10 60 70 00 61  109`.N.`r`..`p.a
    1680: 70 01 62 A2 4F 06 90 92 93 62 0A FF 92 93 62 00  p.b.O....b....b.
    1690: 70 4D 30 31 33 72 60 61 00 00 00 0A 08 62 70 4D  pM013r`a.....bpM
    16A0: 30 31 33 72 60 61 00 01 00 0A 08 63 A0 41 04 90  013r`a.....c.A..
    16B0: 93 62 68 93 63 69 A0 37 95 63 0A 02 70 4D 30 31  .bh.ci.7.c..pM01
    16C0: 33 72 60 61 00 0A 03 00 0A 20 65 70 4D 30 31 33  3r`a..... epM013
    16D0: 72 60 61 00 0A 03 0A 10 0A 08 66 A0 12 93 4D 30  r`a.......f...M0
    16E0: 30 39 7B 65 0C FF FF 00 FF 00 66 70 01 67 72 61  09{e......fp.gra
    16F0: 0A 08 61 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  ..aM460.  KER-AS
    1700: 4C 2D 43 70 6D 43 68 65 63 6B 44 65 76 69 63 65  L-CpmCheckDevice
    1710: 52 65 73 65 74 53 74 61 74 65 20 28 30 78 25 58  ResetState (0x%X
    1720: 2C 20 25 64 29 20 20 52 65 74 75 72 6E 20 28 25  , %d)  Return (%
    1730: 64 29 0A 00 68 69 67 00 00 00 A4 67 14 4D 28 4D  d)..hig....g.M(M
    1740: 31 31 33 09 A0 48 27 92 93 68 00 70 4D 31 30 38  113..H'..h.pM108
    1750: 60 70 01 67 A0 48 26 60 72 60 0A 10 60 70 00 61  `p.g.H&`r`..`p.a
    1760: 70 01 62 A2 49 25 90 92 93 62 0A FF 92 93 62 00  p.b.I%...b....b.
    1770: 70 4D 30 31 33 72 60 61 00 00 00 0A 08 62 A0 47  pM013r`a.....b.G
    1780: 23 93 62 68 70 0A FF 62 70 4D 30 31 33 72 60 61  #.bhp..bpM013r`a
    1790: 00 01 00 0A 08 63 A0 32 93 63 00 70 4D 30 31 33  .....c.2.c.pM013
    17A0: 72 60 61 00 0A 02 00 0A 20 65 70 4D 30 31 33 72  r`a..... epM013r
    17B0: 60 61 00 0A 04 00 0A 08 66 70 93 4D 30 30 39 7B  `a......fp.M009{
    17C0: 65 0C FF FF 00 FF 00 66 67 A0 42 06 93 63 01 70  e......fg.B..c.p
    17D0: 4D 30 31 33 72 60 61 00 0A 02 00 0A 20 65 70 4D  M013r`a..... epM
    17E0: 30 31 33 72 60 61 00 0A 04 00 0A 08 66 70 93 4D  013r`a......fp.M
    17F0: 30 30 39 7B 65 0C FF FF 00 FF 00 66 67 70 4D 30  009{e......fgpM0
    1800: 31 33 72 60 61 00 0A 06 00 0A 20 65 70 4D 30 31  13r`a..... epM01
    1810: 33 72 60 61 00 0A 08 00 0A 08 66 7B 67 93 4D 30  3r`a......f{g.M0
    1820: 30 39 7B 65 0C FF FF 00 FF 00 66 67 A0 42 09 93  09{e......fg.B..
    1830: 63 0A 02 70 4D 30 31 33 72 60 61 00 0A 02 00 0A  c..pM013r`a.....
    1840: 20 65 70 4D 30 31 33 72 60 61 00 0A 04 00 0A 08   epM013r`a......
    1850: 66 70 93 4D 30 30 39 7B 65 0C FF FF 00 FF 00 66  fp.M009{e......f
    1860: 67 70 4D 30 31 33 72 60 61 00 0A 06 00 0A 20 65  gpM013r`a..... e
    1870: 70 4D 30 31 33 72 60 61 00 0A 08 00 0A 08 66 7B  pM013r`a......f{
    1880: 67 93 4D 30 30 39 7B 65 0C FF FF 00 FF 00 66 67  g.M009{e......fg
    1890: 70 4D 30 31 33 72 60 61 00 0A 0A 00 0A 20 65 70  pM013r`a..... ep
    18A0: 4D 30 31 33 72 60 61 00 0A 0C 00 0A 08 66 7B 67  M013r`a......f{g
    18B0: 93 4D 30 30 39 7B 65 0C FF FF 00 FF 00 66 67 A0  .M009{e......fg.
    18C0: 43 06 93 63 0A 03 70 4D 30 31 33 72 60 61 00 0A  C..c..pM013r`a..
    18D0: 02 00 0A 20 65 70 4D 30 31 33 72 60 61 00 0A 04  ... epM013r`a...
    18E0: 00 0A 08 66 70 93 4D 30 30 39 7B 65 0C FF FF 00  ...fp.M009{e....
    18F0: FF 00 66 67 70 4D 30 31 33 72 60 61 00 0A 06 00  ..fgpM013r`a....
    1900: 0A 20 65 70 4D 30 31 33 72 60 61 00 0A 08 00 0A  . epM013r`a.....
    1910: 08 66 7D 67 93 4D 30 30 39 7B 65 0C FF FF 00 FF  .f}g.M009{e.....
    1920: 00 66 67 A0 42 09 93 63 0A 04 70 4D 30 31 33 72  .fg.B..c..pM013r
    1930: 60 61 00 0A 02 00 0A 20 65 70 4D 30 31 33 72 60  `a..... epM013r`
    1940: 61 00 0A 04 00 0A 08 66 70 93 4D 30 30 39 7B 65  a......fp.M009{e
    1950: 0C FF FF 00 FF 00 66 67 70 4D 30 31 33 72 60 61  ......fgpM013r`a
    1960: 00 0A 06 00 0A 20 65 70 4D 30 31 33 72 60 61 00  ..... epM013r`a.
    1970: 0A 08 00 0A 08 66 7D 67 93 4D 30 30 39 7B 65 0C  .....f}g.M009{e.
    1980: FF FF 00 FF 00 66 67 70 4D 30 31 33 72 60 61 00  .....fgpM013r`a.
    1990: 0A 0A 00 0A 20 65 70 4D 30 31 33 72 60 61 00 0A  .... epM013r`a..
    19A0: 0C 00 0A 08 66 7D 67 93 4D 30 30 39 7B 65 0C FF  ....f}g.M009{e..
    19B0: FF 00 FF 00 66 67 A1 06 72 61 0A 0E 61 A1 04 70  ....fg..ra..a..p
    19C0: 00 67 A0 05 67 70 01 67 A4 67 08 4D 30 34 36 0A  .g..gp.g.g.M046.
    19D0: AA 08 4D 30 34 37 0A AA 14 4A 4B 4D 30 34 35 08  ..M047...JKM045.
    19E0: 70 00 60 A0 41 4A 91 93 4D 30 34 36 0A AA 93 4D  p.`.AJ..M046...M
    19F0: 30 34 37 0A AA 70 00 4D 30 34 36 A0 49 48 5B 12  047..p.M046.IH[.
    1A00: 5C 5F 4F 53 49 00 A0 45 05 5C 5F 4F 53 49 0D 44  \_OSI..E.\_OSI.D
    1A10: 69 73 70 6C 61 79 4D 75 78 00 70 01 4D 30 34 37  isplayMux.p.M047
    1A20: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5F  M460.  KER-ASL-_
    1A30: 4F 53 49 20 3D 20 54 68 69 73 20 4F 53 20 63 61  OSI = This OS ca
    1A40: 6E 20 73 75 70 70 6F 72 74 20 44 69 73 70 6C 61  n support Displa
    1A50: 79 4D 75 78 0A 00 00 00 00 00 00 00 A1 47 04 70  yMux.........G.p
    1A60: 00 4D 30 34 37 4D 34 36 30 0D 20 20 4B 45 52 2D  .M047M460.  KER-
    1A70: 41 53 4C 2D 5F 4F 53 49 20 3D 20 54 68 69 73 20  ASL-_OSI = This 
    1A80: 4F 53 20 63 61 6E 6E 6F 74 20 73 75 70 70 6F 72  OS cannot suppor
    1A90: 74 20 44 69 73 70 6C 61 79 4D 75 78 0A 00 00 00  t DisplayMux....
    1AA0: 00 00 00 00 A0 42 05 5C 5F 4F 53 49 0D 57 69 6E  .....B.\_OSI.Win
    1AB0: 64 6F 77 73 20 32 30 32 32 00 70 0A 0C 4D 30 34  dows 2022.p..M04
    1AC0: 36 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  6M460.  KER-ASL-
    1AD0: 5F 4F 53 49 20 3D 20 57 69 6E 64 6F 77 73 20 31  _OSI = Windows 1
    1AE0: 31 2C 20 76 65 72 73 69 6F 6E 20 32 32 48 32 0A  1, version 22H2.
    1AF0: 00 00 00 00 00 00 00 A1 4D 38 A0 44 04 5C 5F 4F  ........M8.D.\_O
    1B00: 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 32 31 00  SI.Windows 2021.
    1B10: 70 0A 0B 4D 30 34 36 4D 34 36 30 0D 20 20 4B 45  p..M046M460.  KE
    1B20: 52 2D 41 53 4C 2D 5F 4F 53 49 20 3D 20 57 69 6E  R-ASL-_OSI = Win
    1B30: 64 6F 77 73 20 31 31 0A 00 00 00 00 00 00 00 A1  dows 11.........
    1B40: 45 34 A0 42 05 5C 5F 4F 53 49 0D 57 69 6E 64 6F  E4.B.\_OSI.Windo
    1B50: 77 73 20 32 30 32 30 00 70 0A 0A 4D 30 34 36 4D  ws 2020.p..M046M
    1B60: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5F 4F  460.  KER-ASL-_O
    1B70: 53 49 20 3D 20 57 69 6E 64 6F 77 73 20 31 30 2C  SI = Windows 10,
    1B80: 20 76 65 72 73 69 6F 6E 20 32 30 30 34 0A 00 00   version 2004...
    1B90: 00 00 00 00 00 A1 4F 2E A0 42 05 5C 5F 4F 53 49  ......O..B.\_OSI
    1BA0: 0D 57 69 6E 64 6F 77 73 20 32 30 31 39 00 70 0A  .Windows 2019.p.
    1BB0: 09 4D 30 34 36 4D 34 36 30 0D 20 20 4B 45 52 2D  .M046M460.  KER-
    1BC0: 41 53 4C 2D 5F 4F 53 49 20 3D 20 57 69 6E 64 6F  ASL-_OSI = Windo
    1BD0: 77 73 20 31 30 2C 20 76 65 72 73 69 6F 6E 20 31  ws 10, version 1
    1BE0: 39 30 33 0A 00 00 00 00 00 00 00 A1 49 29 A0 44  903.........I).D
    1BF0: 05 5C 5F 4F 53 49 0D 57 69 6E 64 6F 77 73 20 32  .\_OSI.Windows 2
    1C00: 30 31 38 2E 32 00 70 0A 08 4D 30 34 36 4D 34 36  018.2.p..M046M46
    1C10: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5F 4F 53 49  0.  KER-ASL-_OSI
    1C20: 20 3D 20 57 69 6E 64 6F 77 73 20 31 30 2C 20 76   = Windows 10, v
    1C30: 65 72 73 69 6F 6E 20 31 38 30 39 0A 00 00 00 00  ersion 1809.....
    1C40: 00 00 00 A1 41 24 A0 42 05 5C 5F 4F 53 49 0D 57  ....A$.B.\_OSI.W
    1C50: 69 6E 64 6F 77 73 20 32 30 31 38 00 70 0A 07 4D  indows 2018.p..M
    1C60: 30 34 36 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  046M460.  KER-AS
    1C70: 4C 2D 5F 4F 53 49 20 3D 20 57 69 6E 64 6F 77 73  L-_OSI = Windows
    1C80: 20 31 30 2C 20 76 65 72 73 69 6F 6E 20 31 38 30   10, version 180
    1C90: 33 0A 00 00 00 00 00 00 00 A1 4B 1E A0 44 05 5C  3.........K..D.\
    1CA0: 5F 4F 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 31  _OSI.Windows 201
    1CB0: 37 2E 32 00 70 0A 06 4D 30 34 36 4D 34 36 30 0D  7.2.p..M046M460.
    1CC0: 20 20 4B 45 52 2D 41 53 4C 2D 5F 4F 53 49 20 3D    KER-ASL-_OSI =
    1CD0: 20 57 69 6E 64 6F 77 73 20 31 30 2C 20 76 65 72   Windows 10, ver
    1CE0: 73 69 6F 6E 20 31 37 30 39 0A 00 00 00 00 00 00  sion 1709.......
    1CF0: 00 A1 43 19 A0 42 05 5C 5F 4F 53 49 0D 57 69 6E  ..C..B.\_OSI.Win
    1D00: 64 6F 77 73 20 32 30 31 37 00 70 0A 05 4D 30 34  dows 2017.p..M04
    1D10: 36 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  6M460.  KER-ASL-
    1D20: 5F 4F 53 49 20 3D 20 57 69 6E 64 6F 77 73 20 31  _OSI = Windows 1
    1D30: 30 2C 20 76 65 72 73 69 6F 6E 20 31 37 30 33 0A  0, version 1703.
    1D40: 00 00 00 00 00 00 00 A1 4D 13 A0 42 05 5C 5F 4F  ........M..B.\_O
    1D50: 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 31 36 00  SI.Windows 2016.
    1D60: 70 0A 04 4D 30 34 36 4D 34 36 30 0D 20 20 4B 45  p..M046M460.  KE
    1D70: 52 2D 41 53 4C 2D 5F 4F 53 49 20 3D 20 57 69 6E  R-ASL-_OSI = Win
    1D80: 64 6F 77 73 20 31 30 2C 20 76 65 72 73 69 6F 6E  dows 10, version
    1D90: 20 31 36 30 37 0A 00 00 00 00 00 00 00 A1 47 0E   1607.........G.
    1DA0: A0 44 04 5C 5F 4F 53 49 0D 57 69 6E 64 6F 77 73  .D.\_OSI.Windows
    1DB0: 20 32 30 31 35 00 70 0A 03 4D 30 34 36 4D 34 36   2015.p..M046M46
    1DC0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5F 4F 53 49  0.  KER-ASL-_OSI
    1DD0: 20 3D 20 57 69 6E 64 6F 77 73 20 31 30 0A 00 00   = Windows 10...
    1DE0: 00 00 00 00 00 A1 4F 09 A0 45 04 5C 5F 4F 53 49  ......O..E.\_OSI
    1DF0: 0D 57 69 6E 64 6F 77 73 20 32 30 31 33 00 70 0A  .Windows 2013.p.
    1E00: 02 4D 30 34 36 4D 34 36 30 0D 20 20 4B 45 52 2D  .M046M460.  KER-
    1E10: 41 53 4C 2D 5F 4F 53 49 20 3D 20 57 69 6E 64 6F  ASL-_OSI = Windo
    1E20: 77 73 20 38 2E 31 0A 00 00 00 00 00 00 00 A1 46  ws 8.1.........F
    1E30: 05 A0 43 05 5C 5F 4F 53 49 0D 57 69 6E 64 6F 77  ..C.\_OSI.Window
    1E40: 73 20 32 30 31 32 00 70 01 4D 30 34 36 4D 34 36  s 2012.p.M046M46
    1E50: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5F 4F 53 49  0.  KER-ASL-_OSI
    1E60: 20 3D 20 57 69 6E 64 6F 77 73 20 38 2C 20 57 69   = Windows 8, Wi
    1E70: 6E 20 53 65 72 76 65 72 20 32 30 31 32 0A 00 00  n Server 2012...
    1E80: 00 00 00 00 00 A0 0B 92 95 4D 30 34 36 01 70 01  .........M046.p.
    1E90: 60 A4 60 5B 80 56 41 52 57 00 0C 0C 02 D8 FE 0A  `.`[.VARW.......
    1EA0: 14 5B 81 18 56 41 52 57 03 56 41 30 43 20 00 40  .[..VARW.VA0C .@
    1EB0: 04 56 41 31 38 20 56 41 31 43 20 14 42 08 4D 32  .VA18 VA1C .B.M2
    1EC0: 32 41 09 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  2A.M460.  KER-AS
    1ED0: 4C 2D 43 70 6D 54 72 69 67 67 65 72 53 63 69 20  L-CpmTriggerSci 
    1EE0: 28 25 64 29 0A 00 68 00 00 00 00 00 79 01 68 60  (%d)..h.....y.h`
    1EF0: 70 0C FF FF FF 7F 61 7D 61 0C 00 00 00 80 61 7F  p.....a}a.....a.
    1F00: 61 60 61 7B 56 41 30 43 61 56 41 30 43 7D 7B 56  a`a{VA0CaVA0C}{V
    1F10: 41 31 38 61 00 60 56 41 31 38 7D 7B 56 41 31 43  A18a.`VA18}{VA1C
    1F20: 61 00 60 56 41 31 43 5B 22 01 7B 56 41 31 43 61  a.`VA1C[".{VA1Ca
    1F30: 56 41 31 43 7B 56 41 31 38 61 56 41 31 38 5B 01  VA1C{VA18aVA18[.
    1F40: 4D 32 33 30 00 14 49 08 4D 32 33 32 0B 70 68 60  M230..I.M232.ph`
    1F50: 70 69 61 70 6A 62 4D 34 36 30 0D 20 20 4B 45 52  piapjbM460.  KER
    1F60: 2D 41 53 4C 2D 43 70 6D 54 72 69 67 67 65 72 53  -ASL-CpmTriggerS
    1F70: 6D 69 20 28 30 78 25 58 2C 20 30 78 25 58 2C 20  mi (0x%X, 0x%X, 
    1F80: 25 64 29 0A 00 68 69 6A 00 00 00 5B 23 4D 32 33  %d)..hij...[#M23
    1F90: 30 FF FF 70 68 60 5B 80 56 41 52 4D 01 4D 32 33  0..ph`[.VARM.M23
    1FA0: 31 0A 02 5B 81 10 56 41 52 4D 01 56 41 52 31 08  1..[..VARM.VAR1.
    1FB0: 56 41 52 32 08 70 61 56 41 52 32 70 60 56 41 52  VAR2.paVAR2p`VAR
    1FC0: 31 A0 07 94 62 00 5B 22 62 5B 27 4D 32 33 30 14  1...b.["b['M230.
    1FD0: 1B 4D 30 34 33 0B A0 10 5B 12 4D 4F 45 4D 00 A4  .M043...[.MOEM..
    1FE0: 4D 4F 45 4D 68 69 6A A1 03 A4 00 14 41 08 4D 4C  MOEMhij.....A.ML
    1FF0: 49 42 0A 08 5F 54 5F 31 00 08 5F 54 5F 30 00 A2  IB.._T_1.._T_0..
    2000: 4D 06 01 70 99 68 00 5F 54 5F 30 A0 40 06 93 5F  M..p.h._T_0.@.._
    2010: 54 5F 30 00 70 83 88 69 0A 02 00 60 A2 4F 04 01  T_0.p..i...`.O..
    2020: 70 99 60 00 5F 54 5F 31 A0 14 93 5F 54 5F 31 0A  p.`._T_1..._T_1.
    2030: 03 4D 32 32 38 0A 04 4D 32 32 38 0A 05 A1 2D A0  .M228..M228...-.
    2040: 14 93 5F 54 5F 31 0A 04 4D 32 32 38 0A 04 4D 32  .._T_1..M228..M2
    2050: 32 38 0A 06 A1 16 A0 14 93 5F 54 5F 31 0A 05 4D  28......._T_1..M
    2060: 32 32 38 0A 04 4D 32 32 38 0A 07 A5 A5 14 49 10  228..M228.....I.
    2070: 4D 34 35 38 01 99 4D 34 35 33 60 A0 4E 07 94 60  M458..M453`.N..`
    2080: 0B FF FF 5B 80 56 41 52 4D 00 60 0A 20 5B 81 1A  ...[.VARM.`. [..
    2090: 56 41 52 4D 01 54 48 52 4D 08 00 48 09 4C 53 52  VARM.THRM..H.LSR
    20A0: 4D 08 00 18 4D 53 52 4D 08 70 0C 80 84 1E 00 61  M...MSRM.p.....a
    20B0: A2 15 90 94 61 00 92 93 7B 4C 53 52 4D 0A 60 00  ....a...{LSRM.`.
    20C0: 0A 60 74 61 01 61 A0 25 92 93 4D 34 35 37 00 70  .`ta.a.%..M457.p
    20D0: 0C 80 84 1E 00 62 A2 15 90 94 62 00 92 93 7B 4D  .....b....b...{M
    20E0: 53 52 4D 0A 10 00 0A 10 74 62 01 62 A0 0D 92 93  SRM.....tb.b....
    20F0: 61 00 70 68 54 48 52 4D A4 00 A1 49 07 A0 46 07  a.phTHRM...I..F.
    2100: 94 60 00 8B 4D 32 38 35 0A 02 4D 32 38 38 5B 80  .`..M285..M288[.
    2110: 56 41 52 4E 01 60 0A 08 5B 81 12 56 41 52 4E 01  VARN.`..[..VARN.
    2120: 54 48 52 49 08 00 20 4C 53 52 49 08 70 0C 80 84  THRI.. LSRI.p...
    2130: 1E 00 61 A0 32 92 93 99 4D 32 38 38 00 60 A2 27  ..a.2...M288.`.'
    2140: 90 94 61 00 92 93 7B 4C 53 52 49 0A E0 00 0A 60  ..a...{LSRI....`
    2150: A0 11 93 4C 53 52 49 0A FF 70 00 4D 34 35 33 70  ...LSRI..p.M453p
    2160: 01 61 74 61 01 61 A0 0D 92 93 61 00 70 68 54 48  .ata.a....a.phTH
    2170: 52 49 A4 00 A4 0A FF 14 44 0D 4D 34 35 39 02 99  RI......D.M459..
    2180: 4D 34 35 33 60 A0 07 93 60 00 A4 0A FF A1 41 09  M453`...`.....A.
    2190: A0 4E 08 94 60 0B FF FF 5B 80 56 41 52 4D 00 60  .N..`...[.VARM.`
    21A0: 0A 20 5B 81 27 56 41 52 4D 01 44 4C 4C 4D 08 00  . [.'VARM.DLLM..
    21B0: 18 44 4C 48 4D 08 00 18 46 43 52 4D 08 00 18 4C  .DLHM...FCRM...L
    21C0: 43 52 4D 08 00 18 4D 43 52 4D 08 A0 43 05 92 93  CRM...MCRM..C...
    21D0: 7B 4C 43 52 4D 0A 3F 00 4D 34 35 35 70 0A 80 4C  {LCRM.?.M455p..L
    21E0: 43 52 4D 7A 4D 34 35 34 0A 08 44 4C 48 4D 70 7B  CRMzM454..DLHMp{
    21F0: 4D 34 35 34 0A FF 00 44 4C 4C 4D 70 4D 34 35 35  M454...DLLMpM455
    2200: 4C 43 52 4D 70 00 46 43 52 4D 70 4D 34 35 36 46  LCRMp.FCRMpM456F
    2210: 43 52 4D 70 00 44 4C 48 4D 70 00 4D 43 52 4D 70  CRMp.DLHMp.MCRMp
    2220: 87 68 60 99 69 61 70 00 62 96 68 63 A0 1D 92 93  .h`.iap.b.hc....
    2230: 60 00 A2 17 90 94 60 61 93 62 00 70 4D 34 35 38  `.....`a.b.pM458
    2240: 83 88 63 61 00 62 72 61 01 61 A4 62 14 47 20 4D  ..ca.bra.a.b.G M
    2250: 34 36 30 0F 8B 4D 32 38 35 0A 02 4D 32 38 38 99  460..M285..M288.
    2260: 4D 34 35 33 67 A0 07 93 67 00 A4 0A FF A1 4E 0B  M453g...g.....N.
    2270: A0 4E 08 94 67 0B FF FF 5B 80 56 41 52 4D 00 67  .N..g...[.VARM.g
    2280: 0A 20 5B 81 27 56 41 52 4D 01 44 4C 4C 4D 08 00  . [.'VARM.DLLM..
    2290: 18 44 4C 48 4D 08 00 18 46 43 52 4D 08 00 18 4C  .DLHM...FCRM...L
    22A0: 43 52 4D 08 00 18 4D 43 52 4D 08 A0 43 05 92 93  CRM...MCRM..C...
    22B0: 7B 4C 43 52 4D 0A 3F 00 4D 34 35 35 70 0A 80 4C  {LCRM.?.M455p..L
    22C0: 43 52 4D 7A 4D 34 35 34 0A 08 44 4C 48 4D 70 7B  CRMzM454..DLHMp{
    22D0: 4D 34 35 34 0A FF 00 44 4C 4C 4D 70 4D 34 35 35  M454...DLLMpM455
    22E0: 4C 43 52 4D 70 00 46 43 52 4D 70 4D 34 35 36 46  LCRMp.FCRMpM456F
    22F0: 43 52 4D 70 00 44 4C 48 4D 70 00 4D 43 52 4D A1  CRMp.DLHMp.MCRM.
    2300: 2C A0 2A 93 99 4D 32 38 38 00 67 5B 80 56 41 52  ,.*..M288.g[.VAR
    2310: 53 01 67 0A 04 5B 81 0B 56 41 52 53 03 56 41 52  S.g..[..VARS.VAR
    2320: 54 20 70 0C 52 54 53 5F 56 41 52 54 70 87 68 60  T p.RTS_VARTp.h`
    2330: 70 00 61 70 00 62 70 01 65 96 68 63 A0 4A 0E 92  p.ap.bp.e.hc.J..
    2340: 93 60 00 A2 43 0E 90 94 60 61 93 62 00 70 83 88  .`..C...`a.b.p..
    2350: 63 61 00 64 A0 4D 0A 90 93 64 0A 25 94 0A 07 65  ca.d.M...d.%...e
    2360: A0 07 93 65 01 70 69 66 A1 36 A0 08 93 65 0A 02  ...e.pif.6...e..
    2370: 70 6A 66 A1 2B A0 08 93 65 0A 03 70 6B 66 A1 20  pjf.+...e..pkf. 
    2380: A0 08 93 65 0A 04 70 6C 66 A1 15 A0 08 93 65 0A  ...e..plf.....e.
    2390: 05 70 6D 66 A1 0A A0 08 93 65 0A 06 70 6E 66 72  .pmf.....e..pnfr
    23A0: 65 01 65 72 61 01 61 70 83 88 63 61 00 64 A0 15  e.era.ap..ca.d..
    23B0: 91 93 64 0A 58 93 64 0A 78 70 4D 34 35 39 98 66  ..d.X.d.xpM459.f
    23C0: 00 0A 02 62 A1 3D A0 14 91 93 64 0A 44 93 64 0A  ...b.=....d.D.d.
    23D0: 64 70 4D 34 35 39 97 66 00 00 62 A1 26 A0 12 91  dpM459.f..b.&...
    23E0: 93 64 0A 53 93 64 0A 73 70 4D 34 35 39 66 00 62  .d.S.d.spM459f.b
    23F0: A1 11 70 4D 34 35 38 0A 25 62 74 65 01 65 74 61  ..pM458.%bte.eta
    2400: 01 61 A1 20 A0 15 93 64 0A 0A 70 4D 34 35 38 0A  .a. ...d..pM458.
    2410: 0D 62 70 4D 34 35 38 0A 0A 62 A1 08 70 4D 34 35  .bpM458..b..pM45
    2420: 38 64 62 72 61 01 61 A0 2A 93 99 4D 32 38 38 00  8dbra.a.*..M288.
    2430: 67 5B 80 56 41 52 55 01 67 0A 04 5B 81 0B 56 41  g[.VARU.g..[..VA
    2440: 52 55 03 56 41 52 56 20 70 0C 44 4E 45 5F 56 41  RU.VARV p.DNE_VA
    2450: 52 56 A4 62 08 4D 34 30 34 11 0A 0A 07 00 02 06  RV.b.M404.......
    2460: 08 04 0A 0C 14 45 10 4D 34 30 35 0D A0 4B 09 92  .....E.M405..K..
    2470: 95 4D 30 38 35 0A 04 A0 40 05 93 4D 30 38 35 0A  .M085...@..M085.
    2480: 08 70 83 88 4D 34 30 34 6C 00 61 A0 1F 91 94 68  .p..M404l.a....h
    2490: 00 94 69 00 70 4D 32 34 39 68 69 6A 0C 00 1E D0  ..i.pM249hij....
    24A0: 02 60 7A 60 61 60 7B 60 0A 03 60 A1 1C 70 4D 30  .`z`a`{`..`..pM0
    24B0: 31 31 72 4D 30 38 34 0B 00 0E 00 7A 61 0A 08 00  11rM084....za...
    24C0: 7B 61 0A 07 00 0A 02 60 A1 3F A0 20 93 6B 0A 02  {a.....`.?. .k..
    24D0: 70 4D 30 31 31 72 4D 30 38 34 0B 00 13 00 7A 61  pM011rM084....za
    24E0: 0A 08 00 7B 61 0A 07 00 0A 02 60 A1 1C 70 4D 30  ...{a.....`..pM0
    24F0: 31 31 72 4D 30 38 34 0B 00 0E 00 7A 61 0A 08 00  11rM084....za...
    2500: 7B 61 0A 07 00 0A 02 60 A1 1E 70 4D 30 31 31 72  {a.....`..pM011r
    2510: 4D 30 38 34 0B 00 0E 00 7A 6C 01 00 79 7B 6C 01  M084....zl..y{l.
    2520: 00 0A 02 00 0A 04 60 4D 34 36 30 0D 20 20 4B 45  ......`M460.  KE
    2530: 52 2D 41 53 4C 2D 43 70 6D 52 65 61 64 43 6C 6B  R-ASL-CpmReadClk
    2540: 52 65 71 20 20 28 25 64 2C 20 25 64 2C 20 25 64  Req  (%d, %d, %d
    2550: 2C 20 25 64 2C 20 25 64 29 20 3D 20 30 78 25 58  , %d, %d) = 0x%X
    2560: 0A 00 68 69 6A 6B 6C 60 A4 60 14 48 11 4D 34 30  ..hijkl`.`.H.M40
    2570: 36 0E 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  6.M460.  KER-ASL
    2580: 2D 43 70 6D 57 72 69 74 65 43 6C 6B 52 65 71 20  -CpmWriteClkReq 
    2590: 28 25 64 2C 20 25 64 2C 20 25 64 2C 20 25 64 2C  (%d, %d, %d, %d,
    25A0: 20 25 64 2C 20 30 78 25 58 29 0A 00 68 69 6A 6B   %d, 0x%X)..hijk
    25B0: 6C 6D A0 42 0B 92 95 4D 30 38 35 0A 04 A0 49 06  lm.B...M085...I.
    25C0: 93 4D 30 38 35 0A 08 70 83 88 4D 34 30 34 6C 00  .M085..p..M404l.
    25D0: 61 A0 39 91 94 68 00 94 69 00 70 4D 32 34 39 68  a.9..h..i.pM249h
    25E0: 69 6A 0C 00 1E D0 02 60 7B 60 7F 0C FF FF FF FF  ij.....`{`......
    25F0: 79 0A 03 61 00 00 60 7D 60 79 6D 61 00 60 4D 32  y..a..`}`yma.`M2
    2600: 35 30 68 69 6A 0C 00 1E D0 02 60 A1 1B 4D 30 31  50hij.....`..M01
    2610: 32 72 4D 30 38 34 0B 00 0E 00 7A 61 0A 08 00 7B  2rM084....za...{
    2620: 61 0A 07 00 0A 02 6D A1 3D A0 1F 93 6B 0A 02 4D  a.....m.=...k..M
    2630: 30 31 32 72 4D 30 38 34 0B 00 13 00 7A 61 0A 08  012rM084....za..
    2640: 00 7B 61 0A 07 00 0A 02 6D A1 1B 4D 30 31 32 72  .{a.....m..M012r
    2650: 4D 30 38 34 0B 00 0E 00 7A 61 0A 08 00 7B 61 0A  M084....za...{a.
    2660: 07 00 0A 02 6D A1 1D 4D 30 31 32 72 4D 30 38 34  ....m..M012rM084
    2670: 0B 00 0E 00 7A 6C 01 00 79 7B 6C 01 00 0A 02 00  ....zl..y{l.....
    2680: 0A 04 6D 14 46 0B 4D 36 30 30 0A 08 54 45 4D 50  ..m.F.M600..TEMP
    2690: 12 08 04 0A FF 0A 09 00 00 A0 0D 93 68 00 70 00  ............h.p.
    26A0: 88 54 45 4D 50 00 00 A0 0F 92 93 69 0A 09 70 69  .TEMP......i..pi
    26B0: 88 54 45 4D 50 01 00 70 83 88 54 45 4D 50 00 00  .TEMP..p..TEMP..
    26C0: 60 70 83 88 54 45 4D 50 01 00 61 70 83 88 54 45  `p..TEMP..ap..TE
    26D0: 4D 50 0A 02 00 62 70 83 88 54 45 4D 50 0A 03 00  MP...bp..TEMP...
    26E0: 63 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  cM460.  KER-ASL-
    26F0: 43 70 6D 47 65 6E 65 72 61 74 65 55 50 43 20 28  CpmGenerateUPC (
    2700: 29 20 52 65 74 75 72 6E 20 50 61 63 6B 61 67 65  ) Return Package
    2710: 20 28 34 29 20 7B 30 78 25 58 2C 20 30 78 25 58   (4) {0x%X, 0x%X
    2720: 2C 20 30 78 25 58 2C 20 30 78 25 58 7D 0A 00 60  , 0x%X, 0x%X}..`
    2730: 61 62 63 00 00 A4 54 45 4D 50 14 4E 0C 4D 36 30  abc...TEMP.N.M60
    2740: 32 0B 08 54 45 4D 50 12 09 04 0A FF 0A 09 0A 3D  2..TEMP........=
    2750: 00 A0 0D 93 68 00 70 00 88 54 45 4D 50 00 00 A0  ....h.p..TEMP...
    2760: 0F 92 93 69 0A 09 70 69 88 54 45 4D 50 01 00 A0  ...i..pi.TEMP...
    2770: 10 92 93 6A 0A 3D 70 6A 88 54 45 4D 50 0A 02 00  ...j.=pj.TEMP...
    2780: 70 83 88 54 45 4D 50 00 00 60 70 83 88 54 45 4D  p..TEMP..`p..TEM
    2790: 50 01 00 61 70 83 88 54 45 4D 50 0A 02 00 62 70  P..ap..TEMP...bp
    27A0: 83 88 54 45 4D 50 0A 03 00 63 4D 34 36 30 0D 20  ..TEMP...cM460. 
    27B0: 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 47 65 6E 65   KER-ASL-CpmGene
    27C0: 72 61 74 65 41 63 70 69 36 35 55 50 43 20 28 29  rateAcpi65UPC ()
    27D0: 20 52 65 74 75 72 6E 20 50 61 63 6B 61 67 65 20   Return Package 
    27E0: 28 34 29 20 7B 30 78 25 58 2C 20 30 78 25 58 2C  (4) {0x%X, 0x%X,
    27F0: 20 30 78 25 58 2C 20 30 78 25 58 7D 0A 00 60 61   0x%X, 0x%X}..`a
    2800: 62 63 00 00 A4 54 45 4D 50 14 44 28 4D 36 30 31  bc...TEMP.D(M601
    2810: 0E 08 54 45 4D 50 12 1A 01 11 17 0A 14 82 00 00  ..TEMP..........
    2820: 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF  ................
    2830: FF 5B 13 83 88 54 45 4D 50 00 00 0A 20 0A 10 57  .[...TEMP... ..W
    2840: 49 44 48 5B 13 83 88 54 45 4D 50 00 00 0A 30 0A  IDH[...TEMP...0.
    2850: 10 48 49 47 54 5B 13 83 88 54 45 4D 50 00 00 0A  .HIGT[...TEMP...
    2860: 40 01 56 49 53 49 5B 13 83 88 54 45 4D 50 00 00  @.VISI[...TEMP..
    2870: 0A 42 01 46 4C 49 44 5B 13 83 88 54 45 4D 50 00  .B.FLID[...TEMP.
    2880: 00 0A 43 0A 03 50 41 4E 45 5B 13 83 88 54 45 4D  ..C..PANE[...TEM
    2890: 50 00 00 0A 46 0A 02 56 54 50 53 5B 13 83 88 54  P...F..VTPS[...T
    28A0: 45 4D 50 00 00 0A 48 0A 02 48 5A 50 53 5B 13 83  EMP...H..HZPS[..
    28B0: 88 54 45 4D 50 00 00 0A 4A 0A 04 53 48 41 50 5B  .TEMP...J..SHAP[
    28C0: 13 83 88 54 45 4D 50 00 00 0A 4F 0A 08 47 50 54  ...TEMP...O..GPT
    28D0: 4E 5B 13 83 88 54 45 4D 50 00 00 0A 57 0A 08 47  N[...TEMP...W..G
    28E0: 50 50 53 5B 13 83 88 54 45 4D 50 00 00 0A 60 0A  PPS[...TEMP...`.
    28F0: 02 45 4A 54 42 5B 13 83 88 54 45 4D 50 00 00 0A  .EJTB[...TEMP...
    2900: 73 0A 04 52 4F 54 4E 5B 13 83 88 54 45 4D 50 00  s..ROTN[...TEMP.
    2910: 00 0A 80 0A 20 4F 46 53 54 A0 1E 91 93 68 00 93  .... OFST....h..
    2920: 68 0A 02 70 0A 03 53 48 41 50 70 0A 08 57 49 44  h..p..SHAPp..WID
    2930: 48 70 0A 0E 48 49 47 54 A1 43 04 A0 1D 91 93 68  Hp..HIGT.C.....h
    2940: 01 93 68 0A 03 70 01 53 48 41 50 70 0A 03 57 49  ..h..p.SHAPp..WI
    2950: 44 48 70 0A 08 48 49 47 54 A1 22 A0 20 93 68 0A  DHp..HIGT.". .h.
    2960: 02 70 0A 02 53 48 41 50 70 0A 08 57 49 44 48 70  .p..SHAPp..WIDHp
    2970: 0A 08 48 49 47 54 70 01 46 4C 49 44 A0 11 91 93  ..HIGTp.FLID....
    2980: 68 0A 02 93 68 0A 03 70 0A 02 52 4F 54 4E 70 69  h...h..p..ROTNpi
    2990: 56 49 53 49 70 7B 7A 6A 0A 08 00 0A FF 00 47 50  VISIp{zj......GP
    29A0: 54 4E 70 7B 6A 0A FF 00 47 50 50 53 70 6B 45 4A  TNp{j...GPPSpkEJ
    29B0: 54 42 70 7B 6C 0A 07 00 50 41 4E 45 70 7B 7A 6C  TBp{l...PANEp{zl
    29C0: 0A 04 00 0A 03 00 56 54 50 53 70 7B 7A 6C 0A 08  ......VTPSp{zl..
    29D0: 00 0A 03 00 48 5A 50 53 A0 0B 92 93 6D 00 70 6D  ....HZPS....m.pm
    29E0: 4F 46 53 54 8A 83 88 54 45 4D 50 00 00 00 44 57  OFST...TEMP...DW
    29F0: 30 30 8A 83 88 54 45 4D 50 00 00 0A 04 44 57 30  00...TEMP....DW0
    2A00: 31 8A 83 88 54 45 4D 50 00 00 0A 08 44 57 30 32  1...TEMP....DW02
    2A10: 8A 83 88 54 45 4D 50 00 00 0A 0C 44 57 30 33 8A  ...TEMP....DW03.
    2A20: 83 88 54 45 4D 50 00 00 0A 10 44 57 30 34 4D 34  ..TEMP....DW04M4
    2A30: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D  60.  KER-ASL-Cpm
    2A40: 47 65 6E 65 72 61 74 65 50 4C 44 20 28 29 20 52  GeneratePLD () R
    2A50: 65 74 75 72 6E 20 30 78 25 58 2C 20 30 78 25 58  eturn 0x%X, 0x%X
    2A60: 2C 20 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78  , 0x%X, 0x%X, 0x
    2A70: 25 58 0A 00 44 57 30 30 44 57 30 31 44 57 30 32  %X..DW00DW01DW02
    2A80: 44 57 30 33 44 57 30 34 00 A4 54 45 4D 50 14 33  DW03DW04..TEMP.3
    2A90: 4D 36 34 33 09 99 68 60 70 00 61 A0 1A 92 93 60  M643..h`p.a....`
    2AA0: 00 A2 14 90 95 61 0A 20 93 7B 60 01 00 00 7A 60  .....a. .{`...z`
    2AB0: 01 60 72 61 01 61 A0 09 92 95 61 0A 20 70 00 61  .`ra.a....a. p.a
    2AC0: A4 61 14 49 46 4D 50 54 53 01 4D 34 36 30 0D 20  .a.IFMPTS.M460. 
    2AD0: 20 4B 45 52 2D 41 53 4C 2D 4D 50 54 53 20 28 25   KER-ASL-MPTS (%
    2AE0: 64 29 0A 00 68 00 00 00 00 00 4D 30 30 30 0B E7  d)..h.....M000..
    2AF0: 0D 4D 36 34 34 0C 00 02 D8 FE 0A 04 0A 20 4D 36  .M644........ M6
    2B00: 34 34 0C 40 02 D8 FE 0A 04 0A 40 70 4D 30 34 39  44.@......@pM049
    2B10: 4D 31 32 38 0A 67 60 A0 4F 15 93 7B 60 0A 03 00  M128.g`.O..{`...
    2B20: 0A 03 A0 4E 0E 92 95 4D 30 38 35 0A 08 A0 4F 06  ...N...M085...O.
    2B30: 5B 12 5C 2F 05 5F 53 42 5F 50 43 58 58 47 50 58  [.\/._SB_PCXXGPX
    2B40: 58 53 41 58 58 54 50 54 53 00 4D 34 36 30 0D 20  XSAXXTPTS.M460. 
    2B50: 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 20     KER-ASL-Call 
    2B60: 5C 5F 53 42 2E 50 43 58 58 2E 47 50 58 58 2E 53  \_SB.PCXX.GPXX.S
    2B70: 41 58 58 2E 54 50 54 53 20 28 25 64 29 0A 00 68  AXX.TPTS (%d)..h
    2B80: 00 00 00 00 00 5C 2F 05 5F 53 42 5F 50 43 58 58  .....\/._SB_PCXX
    2B90: 47 50 58 58 53 41 58 58 54 50 54 53 68 A0 43 07  GPXXSAXXTPTSh.C.
    2BA0: 5B 12 5C 2F 05 5F 53 42 5F 50 43 49 30 50 54 42  [.\/._SB_PCI0PTB
    2BB0: 52 50 54 53 54 54 50 54 53 00 4D 34 36 30 0D 20  RPTSTTPTS.M460. 
    2BC0: 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 20     KER-ASL-Call 
    2BD0: 5A 45 52 4F 5F 50 4F 57 52 5F 4F 44 44 5F 53 41  ZERO_POWR_ODD_SA
    2BE0: 54 41 5F 50 41 54 48 2E 54 50 54 53 20 28 25 64  TA_PATH.TPTS (%d
    2BF0: 29 0A 00 68 00 00 00 00 00 5C 2F 05 5F 53 42 5F  )..h.....\/._SB_
    2C00: 50 43 49 30 50 54 42 52 50 54 53 54 54 50 54 53  PCI0PTBRPTSTTPTS
    2C10: 68 A1 45 06 A0 42 06 5B 12 5C 2F 04 5F 53 42 5F  h.E..B.[.\/._SB_
    2C20: 50 43 58 58 53 41 58 58 54 50 54 53 00 4D 34 36  PCXXSAXXTPTS.M46
    2C30: 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61  0.    KER-ASL-Ca
    2C40: 6C 6C 20 5C 5F 53 42 2E 50 43 58 58 2E 53 41 58  ll \_SB.PCXX.SAX
    2C50: 58 2E 54 50 54 53 20 28 25 64 29 0A 00 68 00 00  X.TPTS (%d)..h..
    2C60: 00 00 00 5C 2F 04 5F 53 42 5F 50 43 58 58 53 41  ...\/._SB_PCXXSA
    2C70: 58 58 54 50 54 53 68 A0 43 06 92 93 4D 32 32 36  XXTPTSh.C...M226
    2C80: 00 A0 49 05 5B 12 5C 2E 5F 53 42 5F 4D 32 36 33  ..I.[.\._SB_M263
    2C90: 00 4D 34 36 30 0D 20 20 20 20 4B 45 52 2D 41 53  .M460.    KER-AS
    2CA0: 4C 2D 43 61 6C 6C 20 5C 5F 53 42 2E 43 70 6D 4F  L-Call \_SB.CpmO
    2CB0: 74 68 65 72 48 6F 74 70 6C 75 67 43 61 72 64 5F  therHotplugCard_
    2CC0: 50 54 53 20 28 25 64 29 0A 00 68 00 00 00 00 00  PTS (%d)..h.....
    2CD0: 5C 2E 5F 53 42 5F 4D 32 36 33 68 A0 44 07 92 93  \._SB_M263h.D...
    2CE0: 4D 33 33 31 00 70 4D 30 34 39 4D 33 33 31 0A 10  M331.pM049M331..
    2CF0: 60 70 4D 30 34 39 4D 33 33 31 0A 21 61 A0 42 05  `pM049M331.!a.B.
    2D00: 90 92 93 60 00 92 93 61 00 A0 46 04 5B 12 5C 2E  ...`...a..F.[.\.
    2D10: 5F 53 42 5F 49 50 54 53 00 4D 34 36 30 0D 20 20  _SB_IPTS.M460.  
    2D20: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C    KER-ASL-Call \
    2D30: 5F 53 42 2E 49 50 54 53 20 28 25 64 29 0A 00 68  _SB.IPTS (%d)..h
    2D40: 00 00 00 00 00 5C 2E 5F 53 42 5F 49 50 54 53 68  .....\._SB_IPTSh
    2D50: A0 43 06 92 93 4D 36 32 30 00 70 4D 30 34 39 4D  .C...M620.pM049M
    2D60: 36 32 30 0A 10 60 A0 4D 04 92 93 60 00 A0 46 04  620..`.M...`..F.
    2D70: 5B 12 5C 2E 5F 53 42 5F 42 50 54 53 00 4D 34 36  [.\._SB_BPTS.M46
    2D80: 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61  0.    KER-ASL-Ca
    2D90: 6C 6C 20 5C 5F 53 42 2E 42 50 54 53 20 28 25 64  ll \_SB.BPTS (%d
    2DA0: 29 0A 00 68 00 00 00 00 00 5C 2E 5F 53 42 5F 42  )..h.....\._SB_B
    2DB0: 50 54 53 68 A0 49 12 92 93 4D 34 46 30 00 A0 47  PTSh.I...M4F0..G
    2DC0: 04 5B 12 5C 2E 5F 47 50 45 50 54 53 30 00 4D 34  .[.\._GPEPTS0.M4
    2DD0: 36 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43  60.    KER-ASL-C
    2DE0: 61 6C 6C 20 5C 5F 47 50 45 2E 50 54 53 30 20 28  all \_GPE.PTS0 (
    2DF0: 25 64 29 0A 00 68 00 00 00 00 00 5C 2E 5F 47 50  %d)..h.....\._GP
    2E00: 45 50 54 53 30 68 A0 47 04 5B 12 5C 2E 5F 47 50  EPTS0h.G.[.\._GP
    2E10: 45 50 54 53 31 00 4D 34 36 30 0D 20 20 20 20 4B  EPTS1.M460.    K
    2E20: 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 47 50  ER-ASL-Call \_GP
    2E30: 45 2E 50 54 53 31 20 28 25 64 29 0A 00 68 00 00  E.PTS1 (%d)..h..
    2E40: 00 00 00 5C 2E 5F 47 50 45 50 54 53 31 68 A0 47  ...\._GPEPTS1h.G
    2E50: 04 5B 12 5C 2E 5F 47 50 45 50 54 53 32 00 4D 34  .[.\._GPEPTS2.M4
    2E60: 36 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43  60.    KER-ASL-C
    2E70: 61 6C 6C 20 5C 5F 47 50 45 2E 50 54 53 32 20 28  all \_GPE.PTS2 (
    2E80: 25 64 29 0A 00 68 00 00 00 00 00 5C 2E 5F 47 50  %d)..h.....\._GP
    2E90: 45 50 54 53 32 68 A0 47 04 5B 12 5C 2E 5F 47 50  EPTS2h.G.[.\._GP
    2EA0: 45 50 54 53 33 00 4D 34 36 30 0D 20 20 20 20 4B  EPTS3.M460.    K
    2EB0: 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 47 50  ER-ASL-Call \_GP
    2EC0: 45 2E 50 54 53 33 20 28 25 64 29 0A 00 68 00 00  E.PTS3 (%d)..h..
    2ED0: 00 00 00 5C 2E 5F 47 50 45 50 54 53 33 68 A0 46  ...\._GPEPTS3h.F
    2EE0: 04 5B 12 5C 2E 5F 53 42 5F 4F 50 54 53 00 4D 34  .[.\._SB_OPTS.M4
    2EF0: 36 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43  60.    KER-ASL-C
    2F00: 61 6C 6C 20 5C 5F 53 42 2E 4F 50 54 53 20 28 25  all \_SB.OPTS (%
    2F10: 64 29 0A 00 68 00 00 00 00 00 5C 2E 5F 53 42 5F  d)..h.....\._SB_
    2F20: 4F 50 54 53 68 4D 30 30 30 0B E8 0D 14 4D 4C 4D  OPTShM000....MLM
    2F30: 57 41 4B 01 4D 34 36 30 0D 20 20 4B 45 52 2D 41  WAK.M460.  KER-A
    2F40: 53 4C 2D 4D 57 41 4B 20 28 25 64 29 0A 00 68 00  SL-MWAK (%d)..h.
    2F50: 00 00 00 00 4D 30 30 30 0B E9 0D 4D 36 34 34 0C  ....M000...M644.
    2F60: 00 02 D8 FE 0A 04 0A 20 4D 36 34 34 0C 40 02 D8  ....... M644.@..
    2F70: FE 0A 04 0A 40 70 4D 30 34 39 4D 31 32 38 0A 67  ....@pM049M128.g
    2F80: 60 A0 4F 15 93 7B 60 0A 03 00 0A 03 A0 4E 0E 92  `.O..{`......N..
    2F90: 95 4D 30 38 35 0A 08 A0 4F 06 5B 12 5C 2F 05 5F  .M085...O.[.\/._
    2FA0: 53 42 5F 50 43 58 58 47 50 58 58 53 41 58 58 54  SB_PCXXGPXXSAXXT
    2FB0: 57 41 4B 00 4D 34 36 30 0D 20 20 20 20 4B 45 52  WAK.M460.    KER
    2FC0: 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 53 42 2E 50  -ASL-Call \_SB.P
    2FD0: 43 58 58 2E 47 50 58 58 2E 53 41 58 58 2E 54 57  CXX.GPXX.SAXX.TW
    2FE0: 41 4B 20 28 25 64 29 0A 00 68 00 00 00 00 00 5C  AK (%d)..h.....\
    2FF0: 2F 05 5F 53 42 5F 50 43 58 58 47 50 58 58 53 41  /._SB_PCXXGPXXSA
    3000: 58 58 54 57 41 4B 68 A0 43 07 5B 12 5C 2F 05 5F  XXTWAKh.C.[.\/._
    3010: 53 42 5F 50 43 49 30 50 54 42 52 50 54 53 54 54  SB_PCI0PTBRPTSTT
    3020: 57 41 4B 00 4D 34 36 30 0D 20 20 20 20 4B 45 52  WAK.M460.    KER
    3030: 2D 41 53 4C 2D 43 61 6C 6C 20 5A 45 52 4F 5F 50  -ASL-Call ZERO_P
    3040: 4F 57 52 5F 4F 44 44 5F 53 41 54 41 5F 50 41 54  OWR_ODD_SATA_PAT
    3050: 48 2E 54 57 41 4B 20 28 25 64 29 0A 00 68 00 00  H.TWAK (%d)..h..
    3060: 00 00 00 5C 2F 05 5F 53 42 5F 50 43 49 30 50 54  ...\/._SB_PCI0PT
    3070: 42 52 50 54 53 54 54 57 41 4B 68 A1 45 06 A0 42  BRPTSTTWAKh.E..B
    3080: 06 5B 12 5C 2F 04 5F 53 42 5F 50 43 58 58 53 41  .[.\/._SB_PCXXSA
    3090: 58 58 54 57 41 4B 00 4D 34 36 30 0D 20 20 20 20  XXTWAK.M460.    
    30A0: 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 53  KER-ASL-Call \_S
    30B0: 42 2E 50 43 58 58 2E 53 41 58 58 2E 54 57 41 4B  B.PCXX.SAXX.TWAK
    30C0: 20 28 25 64 29 0A 00 68 00 00 00 00 00 5C 2F 04   (%d)..h.....\/.
    30D0: 5F 53 42 5F 50 43 58 58 53 41 58 58 54 57 41 4B  _SB_PCXXSAXXTWAK
    30E0: 68 A0 43 06 92 93 4D 32 32 36 00 A0 49 05 5B 12  h.C...M226..I.[.
    30F0: 5C 2E 5F 53 42 5F 4D 32 36 34 00 4D 34 36 30 0D  \._SB_M264.M460.
    3100: 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C      KER-ASL-Call
    3110: 20 5C 5F 53 42 2E 43 70 6D 4F 74 68 65 72 48 6F   \_SB.CpmOtherHo
    3120: 74 70 6C 75 67 43 61 72 64 5F 57 41 4B 20 28 25  tplugCard_WAK (%
    3130: 64 29 0A 00 68 00 00 00 00 00 5C 2E 5F 53 42 5F  d)..h.....\._SB_
    3140: 4D 32 36 34 68 A0 43 06 92 93 4D 32 38 30 00 A0  M264h.C...M280..
    3150: 49 05 5B 12 5C 2E 5F 53 42 5F 4D 32 38 34 00 4D  I.[.\._SB_M284.M
    3160: 34 36 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D  460.    KER-ASL-
    3170: 43 61 6C 6C 20 5C 5F 53 42 2E 43 70 6D 4C 6F 77  Call \_SB.CpmLow
    3180: 50 6F 77 65 72 45 74 68 65 72 6E 65 74 5F 57 41  PowerEthernet_WA
    3190: 4B 20 28 25 64 29 0A 00 68 00 00 00 00 00 5C 2E  K (%d)..h.....\.
    31A0: 5F 53 42 5F 4D 32 38 34 68 A0 44 07 92 93 4D 33  _SB_M284h.D...M3
    31B0: 33 31 00 70 4D 30 34 39 4D 33 33 31 0A 10 60 70  31.pM049M331..`p
    31C0: 4D 30 34 39 4D 33 33 31 0A 21 61 A0 42 05 90 92  M049M331.!a.B...
    31D0: 93 60 00 92 93 61 00 A0 46 04 5B 12 5C 2E 5F 53  .`...a..F.[.\._S
    31E0: 42 5F 49 57 41 4B 00 4D 34 36 30 0D 20 20 20 20  B_IWAK.M460.    
    31F0: 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 53  KER-ASL-Call \_S
    3200: 42 2E 49 57 41 4B 20 28 25 64 29 0A 00 68 00 00  B.IWAK (%d)..h..
    3210: 00 00 00 5C 2E 5F 53 42 5F 49 57 41 4B 68 A0 43  ...\._SB_IWAKh.C
    3220: 06 92 93 4D 36 32 30 00 70 4D 30 34 39 4D 36 32  ...M620.pM049M62
    3230: 30 0A 10 60 A0 4D 04 92 93 60 00 A0 46 04 5B 12  0..`.M...`..F.[.
    3240: 5C 2E 5F 53 42 5F 42 57 41 4B 00 4D 34 36 30 0D  \._SB_BWAK.M460.
    3250: 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C      KER-ASL-Call
    3260: 20 5C 5F 53 42 2E 42 57 41 4B 20 28 25 64 29 0A   \_SB.BWAK (%d).
    3270: 00 68 00 00 00 00 00 5C 2E 5F 53 42 5F 42 57 41  .h.....\._SB_BWA
    3280: 4B 68 A0 49 12 92 93 4D 34 46 30 00 A0 47 04 5B  Kh.I...M4F0..G.[
    3290: 12 5C 2E 5F 47 50 45 57 41 4B 30 00 4D 34 36 30  .\._GPEWAK0.M460
    32A0: 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  .    KER-ASL-Cal
    32B0: 6C 20 5C 5F 47 50 45 2E 57 41 4B 30 20 28 25 64  l \_GPE.WAK0 (%d
    32C0: 29 0A 00 68 00 00 00 00 00 5C 2E 5F 47 50 45 57  )..h.....\._GPEW
    32D0: 41 4B 30 68 A0 47 04 5B 12 5C 2E 5F 47 50 45 57  AK0h.G.[.\._GPEW
    32E0: 41 4B 31 00 4D 34 36 30 0D 20 20 20 20 4B 45 52  AK1.M460.    KER
    32F0: 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 47 50 45 2E  -ASL-Call \_GPE.
    3300: 57 41 4B 31 20 28 25 64 29 0A 00 68 00 00 00 00  WAK1 (%d)..h....
    3310: 00 5C 2E 5F 47 50 45 57 41 4B 31 68 A0 47 04 5B  .\._GPEWAK1h.G.[
    3320: 12 5C 2E 5F 47 50 45 57 41 4B 32 00 4D 34 36 30  .\._GPEWAK2.M460
    3330: 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  .    KER-ASL-Cal
    3340: 6C 20 5C 5F 47 50 45 2E 57 41 4B 32 20 28 25 64  l \_GPE.WAK2 (%d
    3350: 29 0A 00 68 00 00 00 00 00 5C 2E 5F 47 50 45 57  )..h.....\._GPEW
    3360: 41 4B 32 68 A0 47 04 5B 12 5C 2E 5F 47 50 45 57  AK2h.G.[.\._GPEW
    3370: 41 4B 33 00 4D 34 36 30 0D 20 20 20 20 4B 45 52  AK3.M460.    KER
    3380: 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 47 50 45 2E  -ASL-Call \_GPE.
    3390: 57 41 4B 33 20 28 25 64 29 0A 00 68 00 00 00 00  WAK3 (%d)..h....
    33A0: 00 5C 2E 5F 47 50 45 57 41 4B 33 68 A0 46 04 5B  .\._GPEWAK3h.F.[
    33B0: 12 5C 2E 5F 53 42 5F 4F 57 41 4B 00 4D 34 36 30  .\._SB_OWAK.M460
    33C0: 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  .    KER-ASL-Cal
    33D0: 6C 20 5C 5F 53 42 2E 4F 57 41 4B 20 28 25 64 29  l \_SB.OWAK (%d)
    33E0: 0A 00 68 00 00 00 00 00 5C 2E 5F 53 42 5F 4F 57  ..h.....\._SB_OW
    33F0: 41 4B 68 4D 30 30 30 0B EA 0D 14 12 4D 30 31 39  AKhM000.....M019
    3400: 0C A4 4D 30 31 37 68 69 6A 6B 00 0A 20 14 12 4D  ..M017hijk.. ..M
    3410: 30 32 30 0D 4D 30 31 38 68 69 6A 6B 00 0A 20 6C  020.M018hijk.. l
    3420: 14 47 0A 4D 30 32 31 0C 72 4D 30 38 33 79 68 0A  .G.M021.rM083yh.
    3430: 14 00 60 72 60 79 69 0A 0F 00 60 72 60 79 6A 0A  ..`r`yi...`r`yj.
    3440: 0C 00 60 72 0A E0 60 60 5B 80 56 41 52 4D 00 60  ..`r..``[.VARM.`
    3450: 0A 08 5B 81 0D 56 41 52 4D 03 00 00 56 41 52 31  ..[..VARM...VAR1
    3460: 20 5B 87 12 56 41 52 4D 56 41 52 31 6B 03 00 20   [..VARMVAR1k.. 
    3470: 56 41 52 32 20 70 56 41 52 32 60 4D 34 36 30 0D  VAR2 pVAR2`M460.
    3480: 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 52 65 61    KER-ASL-CpmRea
    3490: 64 50 63 69 65 52 65 67 69 73 74 65 72 20 20 28  dPcieRegister  (
    34A0: 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25 58  0x%X, 0x%X, 0x%X
    34B0: 2C 20 30 78 25 58 29 20 3D 20 30 78 25 58 0A 00  , 0x%X) = 0x%X..
    34C0: 68 69 6A 6B 60 00 A4 60 14 44 0A 4D 30 32 32 0D  hijk`..`.D.M022.
    34D0: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    34E0: 70 6D 57 72 69 74 65 50 63 69 65 52 65 67 69 73  pmWritePcieRegis
    34F0: 74 65 72 20 28 30 78 25 58 2C 20 30 78 25 58 2C  ter (0x%X, 0x%X,
    3500: 20 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25   0x%X, 0x%X, 0x%
    3510: 58 29 0A 00 68 69 6A 6B 6C 00 72 4D 30 38 33 79  X)..hijkl.rM083y
    3520: 68 0A 14 00 60 72 60 79 69 0A 0F 00 60 72 60 79  h...`r`yi...`r`y
    3530: 6A 0A 0C 00 60 72 0A E0 60 60 5B 80 56 41 52 4D  j...`r..``[.VARM
    3540: 00 60 0A 08 5B 81 0D 56 41 52 4D 03 00 00 56 41  .`..[..VARM...VA
    3550: 52 31 20 5B 87 12 56 41 52 4D 56 41 52 31 6B 03  R1 [..VARMVAR1k.
    3560: 00 20 56 41 52 32 20 70 6C 56 41 52 32 14 20 4D  . VAR2 plVAR2. M
    3570: 30 32 33 0B 4D 30 31 38 68 69 6A 0A 70 0A 03 01  023.M018hij.p...
    3580: 00 4D 30 31 38 68 69 6A 0A 70 0A 13 01 01 14 22  .M018hij.p....."
    3590: 4D 30 32 34 0B 70 4D 30 31 39 68 69 6A 0B 28 01  M024.pM019hij.(.
    35A0: 60 A0 0B 7B 60 0C 00 00 02 00 00 A4 FF A1 03 A4  `..{`...........
    35B0: 00 14 3B 4D 30 32 36 0B 70 4D 30 32 31 68 69 6A  ..;M026.pM021hij
    35C0: 0A A2 60 7B 60 0E F8 FF FF FF FF FF FF FF 60 7A  ..`{`.........`z
    35D0: 60 0A 04 61 7B 61 0A 07 61 7D 60 61 60 7D 60 0B  `..a{a..a}`a`}`.
    35E0: 00 01 60 4D 30 32 32 68 69 6A 0A A2 60 14 4F 06  ..`M022hij..`.O.
    35F0: 4D 30 32 35 0C 4D 34 32 39 68 69 6A 0A 68 0A 05  M025.M429hij.h..
    3600: 01 00 A0 0F 6B 4D 34 32 39 68 69 6A 0A 88 00 0A  ....kM429hij....
    3610: 04 6B 4D 34 32 39 68 69 6A 0A 68 0A 05 01 01 70  .kM429hij.h....p
    3620: 0A 64 61 70 01 62 A2 1F 90 61 62 5B 22 01 70 4D  .dap.b...ab[".pM
    3630: 34 33 30 68 69 6A 63 A0 09 7B 63 0B 00 08 00 76  430hijc..{c....v
    3640: 61 A1 04 70 00 62 4D 34 32 39 68 69 6A 0A 68 0A  a..p.bM429hij.h.
    3650: 05 01 00 A0 05 92 62 A4 FF A1 03 A4 00 14 17 4D  ......b........M
    3660: 34 33 30 0B 70 4D 30 31 37 68 69 6A 0A 68 0A 10  430.pM017hij.h..
    3670: 0A 10 60 A4 60 14 3F 4D 30 31 37 0E 70 4D 36 34  ..`.`.?M017.pM64
    3680: 35 68 69 6A 60 A0 21 93 60 00 70 0C FF FF FF 7F  5hij`.!.`.p.....
    3690: 63 7D 63 0C 00 00 00 80 63 7B 7A 63 6C 00 7A 63  c}c.....c{zcl.zc
    36A0: 74 0A 20 6D 00 00 61 A1 0B 70 4D 30 31 33 60 6B  t. m..a..pM013`k
    36B0: 6C 6D 61 A4 61 14 3B 4D 30 31 38 0F 70 4D 36 34  lma.a.;M018.pM64
    36C0: 35 68 69 6A 60 A0 2B 92 93 60 00 70 0C FF FF FF  5hij`.+..`.p....
    36D0: 7F 63 7D 63 0C 00 00 00 80 63 A0 16 92 93 4D 30  .c}c.....c....M0
    36E0: 31 33 60 00 00 0A 20 63 4D 30 31 34 60 6B 6C 6D  13`... cM014`klm
    36F0: 6E 14 34 4D 34 32 38 0E 70 4D 36 34 35 68 69 6A  n.4M428.pM645hij
    3700: 60 A0 16 93 60 00 70 0A FF 63 7B 7A 63 6C 00 7A  `...`.p..c{zcl.z
    3710: 63 74 0A 08 6D 00 00 61 A1 0B 70 4D 30 31 31 60  ct..m..a..pM011`
    3720: 6B 6C 6D 61 A4 61 14 3B 4D 34 32 39 0F 70 4D 36  klma.a.;M429.pM6
    3730: 34 35 68 69 6A 60 A0 2B 92 93 60 00 70 0C FF FF  45hij`.+..`.p...
    3740: FF 7F 63 7D 63 0C 00 00 00 80 63 A0 16 92 93 4D  ..c}c.....c....M
    3750: 30 31 33 60 00 00 0A 20 63 4D 30 31 32 60 6B 6C  013`... cM012`kl
    3760: 6D 6E 14 4E 04 4D 32 36 35 0B 70 00 60 70 4D 36  mn.N.M265.p.`pM6
    3770: 34 35 68 69 6A 61 70 4D 36 34 36 61 0A 10 62 A0  45hijapM646a..b.
    3780: 2F 92 93 62 00 70 4D 30 31 33 61 72 62 0A 0C 00  /..b.pM013arb...
    3790: 0A 12 01 63 70 4D 30 31 33 61 72 62 0A 10 00 0A  ...cpM013arb....
    37A0: 08 01 64 A0 0B 90 93 63 01 93 64 01 70 01 60 A4  ..d....c..d.p.`.
    37B0: 60 14 33 4D 30 33 33 0B 70 00 60 70 4D 36 34 35  `.3M033.p.`pM645
    37C0: 68 69 6A 61 70 4D 36 34 36 61 0A 10 62 A0 15 92  hijapM646a..b...
    37D0: 93 62 00 70 4D 30 31 33 61 72 62 0A 0C 00 0A 0A  .b.pM013arb.....
    37E0: 0A 02 60 A4 60 14 42 07 4D 30 32 37 0B 70 00 60  ..`.`.B.M027.p.`
    37F0: 70 4D 36 34 35 68 69 6A 61 70 4D 36 34 36 61 0A  pM645hijapM646a.
    3800: 10 62 A0 14 92 93 62 00 70 4D 30 31 33 61 72 62  .b....b.pM013arb
    3810: 0A 10 00 00 0A 02 60 4D 34 36 30 0D 20 20 4B 45  ......`M460.  KE
    3820: 52 2D 41 53 4C 2D 43 70 6D 47 65 74 50 63 69 65  R-ASL-CpmGetPcie
    3830: 41 73 70 6D 20 28 30 78 25 58 2C 20 30 78 25 58  Aspm (0x%X, 0x%X
    3840: 2C 20 30 78 25 58 29 20 3D 20 30 78 25 58 0A 00  , 0x%X) = 0x%X..
    3850: 68 69 6A 60 00 00 A4 60 14 4F 06 4D 30 32 38 0C  hij`...`.O.M028.
    3860: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    3870: 70 6D 53 65 74 50 63 69 65 41 73 70 6D 20 28 30  pmSetPcieAspm (0
    3880: 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25 58 2C  x%X, 0x%X, 0x%X,
    3890: 20 30 78 25 58 29 0A 00 68 69 6A 6B 00 00 70 4D   0x%X)..hijk..pM
    38A0: 36 34 35 68 69 6A 61 70 4D 36 34 36 61 0A 10 62  645hijapM646a..b
    38B0: A0 17 92 93 62 00 4D 30 31 34 61 72 62 0A 10 00  ....b.M014arb...
    38C0: 00 0A 02 7B 6B 0A 03 00 14 4D 14 4D 31 31 34 0C  ...{k....M.M114.
    38D0: 70 00 67 A0 48 0E 92 4D 30 30 31 68 69 08 4D 31  p.g.H..M001hi.M1
    38E0: 31 35 11 03 0A 05 8B 4D 31 31 35 00 4D 31 31 36  15.....M115.M116
    38F0: 5B 13 4D 31 31 35 0A 10 0A 03 4D 31 31 37 5B 13  [.M115....M117[.
    3900: 4D 31 31 35 0A 13 0A 05 4D 31 31 38 8C 4D 31 31  M115....M118.M11
    3910: 35 0A 03 4D 31 31 39 8C 4D 31 31 35 0A 04 4D 31  5..M119.M115..M1
    3920: 32 30 70 0A 05 4D 31 31 36 70 00 4D 31 31 39 70  20p..M116p.M119p
    3930: 68 4D 31 31 38 70 69 4D 31 31 37 A0 20 93 6A 00  hM118piM117. .j.
    3940: A0 1B 92 93 6B 01 70 00 4D 31 32 30 5C 2E 5F 53  ....k.p.M120\._S
    3950: 42 5F 41 4C 49 42 0A 06 4D 31 31 35 A1 4F 05 A0  B_ALIB..M115.O..
    3960: 1B 92 93 6B 01 70 01 4D 31 32 30 5C 2E 5F 53 42  ...k.p.M120\._SB
    3970: 5F 41 4C 49 42 0A 06 4D 31 31 35 70 4D 30 31 37  _ALIB..M115pM017
    3980: 00 68 69 0A 19 00 0A 08 60 A0 32 90 92 93 60 00  .hi.....`.2...`.
    3990: 92 93 60 0A FF 70 4D 30 31 39 60 00 00 00 61 70  ..`..pM019`...ap
    39A0: 0C FF FF FF 7F 62 7D 62 0C 00 00 00 80 62 A0 0D  .....b}b.....b..
    39B0: 90 92 93 61 00 92 93 61 62 70 01 67 A1 47 05 A0  ...a...abp.g.G..
    39C0: 0A 93 6A 00 4D 30 30 32 01 69 A1 49 04 4D 30 30  ..j.M002.i.I.M00
    39D0: 32 00 69 70 4D 30 31 37 00 68 69 0A 19 00 0A 08  2.ipM017.hi.....
    39E0: 60 A0 32 90 92 93 60 00 92 93 60 0A FF 70 4D 30  `.2...`...`..pM0
    39F0: 31 39 60 00 00 00 61 70 0C FF FF FF 7F 62 7D 62  19`...ap.....b}b
    3A00: 0C 00 00 00 80 62 A0 0D 90 92 93 61 00 92 93 61  .....b.....a...a
    3A10: 62 70 01 67 A4 67 14 45 0B 4D 32 34 38 09 A0 2B  bp.g.g.E.M248..+
    3A20: 93 4D 30 38 35 0A 08 A0 12 93 68 00 A4 4D 30 31  .M085.....h..M01
    3A30: 37 00 0A 07 01 0A 19 00 0A 08 A1 0F A4 4D 30 31  7............M01
    3A40: 37 00 0A 08 01 0A 19 00 0A 08 A1 41 08 A0 4A 04  7..........A..J.
    3A50: 92 95 4D 30 38 35 0A 0B A0 1A 92 95 4D 30 38 35  ..M085......M085
    3A60: 0A 0D A4 4D 30 31 37 00 0A 08 72 68 01 00 0A 19  ...M017...rh....
    3A70: 00 0A 08 A1 24 A0 12 93 68 00 A4 4D 30 31 37 00  ....$...h..M017.
    3A80: 0A 07 01 0A 19 00 0A 08 A1 0F A4 4D 30 31 37 00  ...........M017.
    3A90: 0A 08 68 0A 19 00 0A 08 A1 33 A0 2D 92 95 4D 30  ..h......3.-..M0
    3AA0: 38 35 0A 09 A0 12 93 68 00 A4 4D 30 31 37 00 0A  85.....h..M017..
    3AB0: 08 01 0A 19 00 0A 08 A1 10 A4 4D 30 31 37 00 0A  ..........M017..
    3AC0: 08 0A 02 0A 19 00 0A 08 A1 03 A4 00 14 49 15 4D  .............I.M
    3AD0: 34 30 31 0B 7B 4D 34 33 30 68 69 6A 0A 0F 60 A0  401.{M430hij..`.
    3AE0: 0C 91 93 60 0A 0F 93 60 00 A4 0A FF A0 24 90 92  ...`...`.....$..
    3AF0: 95 4D 30 38 35 0A 0B 92 94 4D 30 38 35 0A 0C A0  .M085....M085...
    3B00: 0B 92 94 68 0A 03 74 0A 06 68 63 A1 05 70 0A 06  ...h..t..hc..p..
    3B10: 63 A1 05 70 0A 03 63 72 0C 00 10 00 14 79 63 0A  c..p..cr.....yc.
    3B20: 14 00 63 7B 69 0A 1F 60 7D 79 60 0A 03 00 7B 6A  ..c{i..`}y`...{j
    3B30: 0A 07 00 60 70 00 61 A0 16 90 92 95 4D 30 38 35  ...`p.a.....M085
    3B40: 0A 09 92 94 4D 30 38 35 0A 0A 70 0A 09 62 A1 4C  ....M085..p..b.L
    3B50: 09 A0 16 90 92 95 4D 30 38 35 0A 0B 92 94 4D 30  ......M085....M0
    3B60: 38 35 0A 0C 70 0A 16 62 A1 42 08 A0 0C 93 4D 30  85..p..b.B....M0
    3B70: 38 35 0A 0D 70 0A 0D 62 A1 42 07 A0 0C 93 4D 30  85..p..b.B....M0
    3B80: 38 35 0A 0E 70 0A 0A 62 A1 42 06 A0 0C 93 4D 30  85..p..b.B....M0
    3B90: 38 35 0A 0F 70 0A 10 62 A1 42 05 A0 0C 93 4D 30  85..p..b.B....M0
    3BA0: 38 35 0A 10 70 0A 15 62 A1 42 04 A0 0C 93 4D 30  85..p..b.B....M0
    3BB0: 38 35 0A 12 70 0A 14 62 A1 32 A0 0C 93 4D 30 38  85..p..b.2...M08
    3BC0: 35 0A 13 70 0A 0D 62 A1 23 A0 0C 93 4D 30 38 35  5..p..b.#...M085
    3BD0: 0A 14 70 0A 12 62 A1 14 A0 0C 93 4D 30 38 35 0A  ..p..b.....M085.
    3BE0: 15 70 0A 12 62 A1 05 70 0A 12 62 70 4D 32 34 39  .p..b..p..bpM249
    3BF0: 00 00 00 72 77 61 0A 04 00 63 00 64 A2 1C 90 95  ...rwa...c.d....
    3C00: 61 62 92 93 64 60 75 61 70 4D 32 34 39 00 00 00  ab..d`uapM249...
    3C10: 72 77 61 0A 04 00 63 00 64 A0 07 92 94 61 62 A4  rwa...c.d....ab.
    3C20: 61 A1 04 A4 0A FF 14 45 1C 4D 34 37 31 0B A0 24  a......E.M471..$
    3C30: 90 92 95 4D 30 38 35 0A 0B 92 94 4D 30 38 35 0A  ...M085....M085.
    3C40: 0C A0 0B 92 94 68 0A 03 74 0A 04 68 65 A1 05 70  .....h..t..he..p
    3C50: 0A 04 65 A1 05 72 68 01 65 99 69 64 A0 22 90 92  ..e..rh.e.id."..
    3C60: 95 4D 30 38 35 0A 0D 92 94 4D 30 38 35 0A 0E A0  .M085....M085...
    3C70: 0F 92 95 64 0A 03 74 64 0A 03 64 72 65 01 65 A1  ...d..td..dre.e.
    3C80: 44 14 A0 3D 93 4D 30 38 35 0A 0F A0 10 92 95 64  D..=.M085......d
    3C90: 0A 0C 74 64 0A 0C 64 72 65 0A 03 65 A1 23 A0 0F  ..td..dre..e.#..
    3CA0: 93 64 0A 0B 74 64 0A 0B 64 72 65 0A 02 65 A1 11  .d..td..dre..e..
    3CB0: A0 0F 92 95 64 0A 05 74 64 0A 05 64 72 65 01 65  ....d..td..dre.e
    3CC0: A1 43 10 A0 3E 93 4D 30 38 35 0A 12 A0 10 92 95  .C..>.M085......
    3CD0: 64 0A 10 74 64 0A 10 64 72 65 0A 03 65 A1 24 A0  d..td..dre..e.$.
    3CE0: 10 92 95 64 0A 0C 74 64 0A 0C 64 72 65 0A 02 65  ...d..td..dre..e
    3CF0: A1 11 A0 0F 92 95 64 0A 06 74 64 0A 06 64 72 65  ......d..td..dre
    3D00: 01 65 A1 41 0C A0 18 93 4D 30 38 35 0A 10 A0 0F  .e.A....M085....
    3D10: 92 95 64 0A 09 74 64 0A 09 64 72 65 01 65 A1 45  ..d..td..dre.e.E
    3D20: 0A A0 18 93 4D 30 38 35 0A 13 A0 0F 92 95 64 0A  ....M085......d.
    3D30: 05 74 64 0A 05 64 72 65 01 65 A1 49 08 A0 2B 93  .td..dre.e.I..+.
    3D40: 4D 30 38 35 0A 14 A0 10 92 95 64 0A 09 74 64 0A  M085......d..td.
    3D50: 09 64 72 65 0A 02 65 A1 11 A0 0F 92 95 64 0A 03  .dre..e......d..
    3D60: 74 64 0A 03 64 72 65 01 65 A1 4A 05 A0 2B 93 4D  td..dre.e.J..+.M
    3D70: 30 38 35 0A 15 A0 10 92 95 64 0A 09 74 64 0A 09  085......d..td..
    3D80: 64 72 65 0A 02 65 A1 11 A0 0F 92 95 64 0A 03 74  dre..e......d..t
    3D90: 64 0A 03 64 72 65 01 65 A1 2B A0 29 92 95 64 0A  d..dre.e.+.)..d.
    3DA0: 08 74 64 0A 08 64 A0 17 90 92 95 4D 30 38 35 0A  .td..d.....M085.
    3DB0: 0B 92 94 4D 30 38 35 0A 0C 72 65 0A 04 65 A1 05  ...M085..re..e..
    3DC0: 72 65 01 65 72 0C 00 00 00 11 79 65 0A 14 00 66  re.er.....ye...f
    3DD0: 72 66 79 6A 0A 10 00 66 A0 11 91 93 6A 00 93 6A  rfyj...f....j..j
    3DE0: 0A 04 72 66 79 64 0A 0C 00 66 A4 66 14 47 1A 4D  ..rfyd...f.f.G.M
    3DF0: 34 30 32 0B 70 4D 34 30 31 68 69 6A 64 A0 46 19  402.pM401hijd.F.
    3E00: 92 93 64 0A FF A0 3F 90 92 95 4D 30 38 35 0A 08  ..d...?...M085..
    3E10: 92 94 4D 30 38 35 0A 0B 72 4D 34 37 31 68 64 0A  ..M085..rM471hd.
    3E20: 08 0B 88 01 67 70 4D 32 34 39 00 00 00 67 60 7B  ....gpM249...g`{
    3E30: 60 0C FF DF FF FF 60 4D 32 35 30 00 00 00 67 7D  `.....`M250...g}
    3E40: 60 0B 00 20 00 7B 4D 30 31 39 00 00 00 0A 84 0C  `.. .{M019......
    3E50: FF FC 00 FF 61 7D 79 69 0A 13 00 79 6A 0A 10 00  ....a}yi...yj...
    3E60: 62 7D 61 62 61 4D 30 32 30 00 00 00 0A 84 7D 61  b}abaM020.....}a
    3E70: 0B 00 01 00 4D 30 32 30 00 00 00 0A 84 7D 61 0B  ....M020.....}a.
    3E80: 00 03 00 A0 43 07 92 95 4D 30 38 35 0A 0C 70 4D  ....C...M085..pM
    3E90: 30 31 39 00 00 00 0A 84 63 70 0B EA 4E 65 70 4D  019.....cp..NepM
    3EA0: 34 35 33 66 70 00 4D 34 35 33 A2 46 04 90 94 65  453fp.M453.F...e
    3EB0: 00 92 93 7B 63 0B 00 04 00 0B 00 04 70 74 65 01  ...{c.......pte.
    3EC0: 00 65 5B 21 0A 63 A0 0F 93 7B 65 0B FF 03 00 00  .e[!.c...{e.....
    3ED0: 70 66 4D 34 35 33 70 4D 30 31 39 00 00 00 0A 84  pfM453pM019.....
    3EE0: 63 A0 0F 93 7B 65 0B FF 03 00 00 70 00 4D 34 35  c...{e.....p.M45
    3EF0: 33 70 66 4D 34 35 33 72 4D 34 37 31 68 64 0A 04  3pfM453rM471hd..
    3F00: 0B 94 02 66 70 4D 32 34 39 00 00 00 66 63 70 0B  ...fpM249...fcp.
    3F10: EA 4E 65 70 4D 34 35 33 64 70 00 4D 34 35 33 A2  .NepM453dp.M453.
    3F20: 43 04 90 94 65 00 92 93 7B 63 0A 3F 00 0A 1F 70  C...e...{c.?...p
    3F30: 74 65 01 00 65 5B 21 0A 63 A0 0F 93 7B 65 0B FF  te..e[!.c...{e..
    3F40: 03 00 00 70 64 4D 34 35 33 70 4D 32 34 39 00 00  ...pdM453pM249..
    3F50: 00 66 63 A0 0F 93 7B 65 0B FF 03 00 00 70 00 4D  .fc...{e.....p.M
    3F60: 34 35 33 70 64 4D 34 35 33 4D 30 32 30 00 00 00  453pdM453M020...
    3F70: 0A 84 7D 61 0B 00 01 00 A0 1B 90 92 95 4D 30 38  ..}a.........M08
    3F80: 35 0A 08 92 94 4D 30 38 35 0A 0B 4D 32 35 30 00  5....M085..M250.
    3F90: 00 00 67 60 14 4A 04 4D 34 30 33 0C 70 4D 34 30  ..g`.J.M403.pM40
    3FA0: 31 68 69 6A 64 A0 39 92 93 64 0A FF 72 4D 34 37  1hijd.9..d..rM47
    3FB0: 31 68 64 0A 04 0B 80 02 62 70 4D 32 34 39 00 00  1hd.....bpM249..
    3FC0: 00 62 60 7B 60 0C FF FF BF FF 60 70 6B 61 7D 60  .b`{`.....`pka}`
    3FD0: 79 61 0A 16 00 60 4D 32 35 30 00 00 00 62 60 14  ya...`M250...b`.
    3FE0: 49 13 4D 34 37 32 0C 70 4D 34 30 31 68 69 6A 64  I.M472.pM401hijd
    3FF0: A0 48 12 92 93 64 0A FF 72 4D 34 37 31 68 64 0A  .H...d..rM471hd.
    4000: 08 0B 28 04 67 A0 1E 90 92 95 4D 30 38 35 0A 0D  ..(.g.....M085..
    4010: 92 94 4D 30 38 35 0A 0E A0 0B 92 95 64 0A 03 74  ..M085......d..t
    4020: 64 0A 03 64 A1 48 0B A0 14 93 4D 30 38 35 0A 0F  d..d.H....M085..
    4030: A0 0B 92 95 64 0A 05 74 64 0A 05 64 A1 40 0A A0  ....d..td..d.@..
    4040: 14 93 4D 30 38 35 0A 12 A0 0B 92 95 64 0A 06 74  ..M085......d..t
    4050: 64 0A 06 64 A1 48 08 A0 14 93 4D 30 38 35 0A 13  d..d.H....M085..
    4060: A0 0B 92 95 64 0A 05 74 64 0A 05 64 A1 40 07 A0  ....d..td..d.@..
    4070: 14 93 4D 30 38 35 0A 10 A0 0B 92 95 64 0A 09 74  ..M085......d..t
    4080: 64 0A 09 64 A1 48 05 A0 22 93 4D 30 38 35 0A 14  d..d.H..".M085..
    4090: A0 0B 92 95 64 0A 09 74 64 0A 09 64 A1 0D A0 0B  ....d..td..d....
    40A0: 92 95 64 0A 03 74 64 0A 03 64 A1 32 A0 22 93 4D  ..d..td..d.2.".M
    40B0: 30 38 35 0A 15 A0 0B 92 95 64 0A 09 74 64 0A 09  085......d..td..
    40C0: 64 A1 0D A0 0B 92 95 64 0A 03 74 64 0A 03 64 A1  d......d..td..d.
    40D0: 0D A0 0B 92 95 64 0A 08 74 64 0A 08 64 70 4D 32  .....d..td..dpM2
    40E0: 34 39 00 00 00 67 60 79 01 64 61 79 6B 64 62 A0  49...g`y.daykdb.
    40F0: 29 92 93 7B 60 61 00 62 7B 60 7F 0C FF FF FF FF  )..{`a.b{`......
    4100: 61 00 63 4D 32 35 30 00 00 00 67 7D 63 62 00 70  a.cM250...g}cb.p
    4110: 4D 32 34 39 00 00 00 67 60 14 49 04 4D 36 34 35  M249...g`.I.M645
    4120: 0B 70 00 63 70 4D 30 38 33 60 7A 4D 30 38 33 0A  .p.cpM083`zM083.
    4130: 14 61 7B 61 0B 00 0F 62 72 62 0B 00 01 62 A0 0A  .a{a...brb...b..
    4140: 92 95 72 61 68 00 62 A4 63 72 79 68 0A 14 00 60  ..rah.b.cryh...`
    4150: 60 72 79 69 0A 0F 00 60 60 72 79 6A 0A 0C 00 60  `ryi...``ryj...`
    4160: 60 A4 60 14 44 08 4D 36 34 36 0A 70 00 60 70 4D  `.`.D.M646.p.`pM
    4170: 30 34 39 68 0A 34 61 A2 2C 92 93 61 00 70 4D 30  049h.4a.,..a.pM0
    4180: 34 39 68 61 62 A0 0A 91 93 62 00 93 62 0A FF A5  49hab....b..b...
    4190: A0 08 93 62 69 70 61 60 A5 70 4D 30 34 39 68 72  ...bipa`.pM049hr
    41A0: 61 01 00 61 4D 34 36 30 0D 20 20 46 45 41 2D 41  a..aM460.  FEA-A
    41B0: 53 4C 2D 43 70 6D 53 65 61 72 63 68 50 63 69 65  SL-CpmSearchPcie
    41C0: 43 61 70 61 62 69 6C 69 74 79 20 28 30 78 25 58  Capability (0x%X
    41D0: 2C 20 30 78 25 58 29 20 3D 20 30 78 25 58 0A 00  , 0x%X) = 0x%X..
    41E0: 68 69 60 00 00 00 A4 60 14 3A 4D 36 34 37 0A A0  hi`....`.:M647..
    41F0: 33 92 93 68 0C EE EE EE EE 70 4D 30 34 42 68 00  3..h.....pM04Bh.
    4200: 60 70 0C FF FF FF 7F 61 7D 61 0C 00 00 00 80 61  `p.....a}a.....a
    4210: A0 12 90 92 93 60 00 92 93 60 61 4D 36 34 34 68  .....`...`aM644h
    4220: 0A 04 69 14 48 0C 4D 36 34 38 0B 70 00 62 70 0C  ..i.H.M648.p.bp.
    4230: FF FF FF 7F 65 7D 65 0C 00 00 00 80 65 70 00 60  ....e}e.....ep.`
    4240: A2 40 06 92 94 60 69 70 00 61 A2 44 05 92 94 61  .@...`ip.a.D...a
    4250: 6A 7D 7B 79 68 0A 14 00 0C 00 00 F0 0F 00 7B 79  j}{yh.........{y
    4260: 60 0A 0F 00 0C 00 80 0F 00 00 63 7D 63 7B 79 61  `.........c}c{ya
    4270: 0A 0C 00 0B 00 70 00 63 70 4D 30 34 42 4D 30 38  .....p.cpM04BM08
    4280: 33 63 64 A0 11 90 92 93 64 65 92 93 64 00 7D 62  3cd.....de..d.}b
    4290: 79 01 60 00 62 A1 07 A0 05 93 61 00 A5 75 61 75  y.`.b.....a..uau
    42A0: 60 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  `M460.  KER-ASL-
    42B0: 43 70 6D 53 65 61 72 63 68 50 63 69 65 44 65 76  CpmSearchPcieDev
    42C0: 69 63 65 20 28 42 75 73 20 30 78 25 58 29 20 3D  ice (Bus 0x%X) =
    42D0: 20 44 65 76 69 63 65 20 30 78 25 58 20 45 78 69   Device 0x%X Exi
    42E0: 73 74 0A 00 68 62 00 00 00 00 A4 62 14 49 06 4D  st..hb.....b.I.M
    42F0: 36 34 39 09 70 00 60 A0 23 92 93 68 0C EE EE EE  649.p.`.#..h....
    4300: EE 70 4D 36 34 36 68 01 62 A0 11 92 93 62 00 70  .pM646h.b....b.p
    4310: 4D 30 34 41 68 72 62 0A 04 00 60 4D 34 36 30 0D  M04Ahrb...`M460.
    4320: 20 20 46 45 41 2D 41 53 4C 2D 43 70 6D 47 65 74    FEA-ASL-CpmGet
    4330: 50 43 49 65 50 6F 77 65 72 53 74 61 74 65 20 28  PCIePowerState (
    4340: 30 78 25 58 29 20 3D 20 30 78 25 58 0A 00 68 60  0x%X) = 0x%X..h`
    4350: 00 00 00 00 A4 60 14 41 0A 4D 36 35 30 0A 70 00  .....`.A.M650.p.
    4360: 60 70 00 61 A0 4A 04 92 93 68 0C EE EE EE EE 70  `p.a.J...h.....p
    4370: 4D 36 34 36 68 01 62 A0 37 92 93 62 00 70 4D 30  M646h.b.7..b.pM0
    4380: 34 41 68 72 62 0A 04 00 60 7B 60 0B FC 7F 61 7D  4Ahrb...`{`...a}
    4390: 61 7B 69 0B FF 7F 00 61 4D 30 34 44 68 72 62 0A  a{i....aM04Dhrb.
    43A0: 04 00 61 70 4D 30 34 41 68 72 62 0A 04 00 61 4D  ..apM04Ahrb...aM
    43B0: 34 36 30 0D 20 20 46 45 41 2D 41 53 4C 2D 43 70  460.  FEA-ASL-Cp
    43C0: 6D 53 65 74 50 43 49 65 50 6F 77 65 72 53 74 61  mSetPCIePowerSta
    43D0: 74 65 20 28 30 78 25 58 2C 20 30 78 25 58 29 20  te (0x%X, 0x%X) 
    43E0: 3D 20 30 78 25 58 20 2D 3E 20 30 78 25 58 0A 00  = 0x%X -> 0x%X..
    43F0: 68 69 60 61 00 00 A4 60 14 44 2A 4D 36 35 31 0C  hi`a...`.D*M651.
    4400: 70 4D 30 34 42 68 00 60 70 0C FF FF FF 7F 61 7D  pM04Bh.`p.....a}
    4410: 61 0C 00 00 00 80 61 A0 40 1A 90 90 92 93 69 00  a.....a.@.....i.
    4420: 92 93 68 0C EE EE EE EE 90 92 93 60 00 92 93 60  ..h........`...`
    4430: 61 4D 30 34 45 69 72 6A 00 00 4D 30 34 42 68 0A  aM04Eirj..M04Bh.
    4440: 18 4D 30 34 45 69 72 6A 0A 04 00 4D 30 34 42 68  .M04Eirj...M04Bh
    4450: 0A 1C 4D 30 34 45 69 72 6A 0A 08 00 4D 30 34 42  ..M04Eirj...M04B
    4460: 68 0A 20 4D 30 34 45 69 72 6A 0A 0C 00 4D 30 34  h. M04Eirj...M04
    4470: 42 68 0A 24 4D 30 34 45 69 72 6A 0A 10 00 4D 30  Bh.$M04Eirj...M0
    4480: 34 42 68 0A 28 4D 30 34 45 69 72 6A 0A 14 00 4D  4Bh.(M04Eirj...M
    4490: 30 34 42 68 0A 2C 4D 30 34 44 69 72 6A 0A 18 00  04Bh.,M04Dirj...
    44A0: 4D 30 34 41 68 0A 04 4D 30 34 43 69 72 6A 0A 1A  M04Ah..M04Cirj..
    44B0: 00 4D 30 34 39 68 0A 0C 4D 30 34 43 69 72 6A 0A  .M049h..M04Cirj.
    44C0: 1B 00 4D 30 34 39 68 0A 3C 72 68 4D 36 34 36 68  ..M049h.<rhM646h
    44D0: 01 60 A0 16 92 93 60 68 4D 30 34 44 69 72 6A 0A  .`....`hM04Dirj.
    44E0: 1C 00 4D 30 34 41 60 0A 04 A1 0C 4D 30 34 44 69  ..M04A`....M04Di
    44F0: 72 6A 0A 1C 00 00 A0 41 0C 93 6B 01 72 68 4D 36  rj.....A..k.rhM6
    4500: 34 36 68 0A 15 60 A0 4C 06 92 93 60 68 4D 30 34  46h..`.L...`hM04
    4510: 45 69 72 6A 0A 20 00 4D 30 34 42 60 0A 08 4D 30  Eirj. .M04B`..M0
    4520: 34 45 69 72 6A 0A 24 00 4D 30 34 42 60 0A 0C 4D  4Eirj.$.M04B`..M
    4530: 30 34 45 69 72 6A 0A 28 00 4D 30 34 42 60 0A 10  04Eirj.(.M04B`..
    4540: 4D 30 34 45 69 72 6A 0A 2C 00 4D 30 34 42 60 0A  M04Eirj.,.M04B`.
    4550: 14 4D 30 34 45 69 72 6A 0A 30 00 4D 30 34 42 60  .M04Eirj.0.M04B`
    4560: 0A 18 4D 30 34 45 69 72 6A 0A 34 00 4D 30 34 42  ..M04Eirj.4.M04B
    4570: 60 0A 1C A1 44 04 4D 30 34 45 69 72 6A 0A 20 00  `...D.M04Eirj. .
    4580: 00 4D 30 34 45 69 72 6A 0A 24 00 00 4D 30 34 45  .M04Eirj.$..M04E
    4590: 69 72 6A 0A 28 00 00 4D 30 34 45 69 72 6A 0A 2C  irj.(..M04Eirj.,
    45A0: 00 00 4D 30 34 45 69 72 6A 0A 30 00 00 4D 30 34  ..M04Eirj.0..M04
    45B0: 45 69 72 6A 0A 34 00 00 A1 41 0A 4D 30 34 45 69  Eirj.4...A.M04Ei
    45C0: 72 6A 00 00 00 4D 30 34 45 69 72 6A 0A 04 00 00  rj...M04Eirj....
    45D0: 4D 30 34 45 69 72 6A 0A 08 00 00 4D 30 34 45 69  M04Eirj....M04Ei
    45E0: 72 6A 0A 0C 00 00 4D 30 34 45 69 72 6A 0A 10 00  rj....M04Eirj...
    45F0: 00 4D 30 34 45 69 72 6A 0A 14 00 00 4D 30 34 45  .M04Eirj....M04E
    4600: 69 72 6A 0A 18 00 00 4D 30 34 45 69 72 6A 0A 1C  irj....M04Eirj..
    4610: 00 00 A0 47 04 93 6B 01 4D 30 34 45 69 72 6A 0A  ...G..k.M04Eirj.
    4620: 20 00 00 4D 30 34 45 69 72 6A 0A 24 00 00 4D 30   ..M04Eirj.$..M0
    4630: 34 45 69 72 6A 0A 28 00 00 4D 30 34 45 69 72 6A  4Eirj.(..M04Eirj
    4640: 0A 2C 00 00 4D 30 34 45 69 72 6A 0A 30 00 00 4D  .,..M04Eirj.0..M
    4650: 30 34 44 69 72 6A 0A 34 00 00 4D 34 36 30 0D 20  04Dirj.4..M460. 
    4660: 20 46 45 41 2D 41 53 4C 2D 43 70 6D 53 61 76 65   FEA-ASL-CpmSave
    4670: 50 63 69 65 42 72 69 64 67 65 44 61 74 61 20 28  PcieBridgeData (
    4680: 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25 58  0x%X, 0x%X, 0x%X
    4690: 2C 20 25 64 29 0A 00 68 69 6A 6B 00 00 5B 01 4D  , %d)..hijk..[.M
    46A0: 34 32 31 00 14 44 0C 4D 34 32 32 0C 70 4D 30 34  421..D.M422.pM04
    46B0: 39 4D 31 32 38 0A 81 60 A0 0A 93 60 00 A4 0C FF  9M128..`...`....
    46C0: FF FF FF 72 4D 30 38 33 79 60 0A 14 00 60 72 0A  ...rM083y`...`r.
    46D0: E0 60 60 5B 23 4D 34 32 31 FF FF 5B 80 56 41 52  .``[#M421..[.VAR
    46E0: 4D 00 60 0A 08 5B 81 0D 56 41 52 4D 03 00 00 56  M.`..[..VARM...V
    46F0: 41 52 31 20 5B 87 12 56 41 52 4D 56 41 52 31 6B  AR1 [..VARMVAR1k
    4700: 03 00 20 56 41 52 32 20 70 56 41 52 31 61 70 56  .. VAR2 pVAR1apV
    4710: 41 52 32 62 70 61 56 41 52 31 5B 27 4D 34 32 31  AR2bpaVAR1['M421
    4720: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    4730: 70 6D 52 65 61 64 42 78 62 53 6D 6E 52 65 67 69  pmReadBxbSmnRegi
    4740: 73 74 65 72 20 20 28 25 64 2C 20 25 64 2C 20 25  ster  (%d, %d, %
    4750: 64 2C 20 30 78 25 58 29 20 3D 20 30 78 25 58 0A  d, 0x%X) = 0x%X.
    4760: 00 68 69 6A 6B 62 00 A4 62 14 4D 0B 4D 34 32 33  .hijkb..b.M.M423
    4770: 0D 70 4D 30 34 39 4D 31 32 38 0A 81 60 A0 49 0A  .pM049M128..`.I.
    4780: 92 93 60 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41  ..`.M460.  KER-A
    4790: 53 4C 2D 43 70 6D 57 72 69 74 65 42 78 62 53 6D  SL-CpmWriteBxbSm
    47A0: 6E 52 65 67 69 73 74 65 72 20 28 25 64 2C 20 25  nRegister (%d, %
    47B0: 64 2C 20 25 64 2C 20 30 78 25 58 2C 20 30 78 25  d, %d, 0x%X, 0x%
    47C0: 58 29 0A 00 68 69 6A 6B 6C 00 72 4D 30 38 33 79  X)..hijkl.rM083y
    47D0: 60 0A 14 00 60 72 0A E0 60 60 5B 23 4D 34 32 31  `...`r..``[#M421
    47E0: FF FF 5B 80 56 41 52 4D 00 60 0A 08 5B 81 0D 56  ..[.VARM.`..[..V
    47F0: 41 52 4D 03 00 00 56 41 52 31 20 5B 87 12 56 41  ARM...VAR1 [..VA
    4800: 52 4D 56 41 52 31 6B 03 00 20 56 41 52 32 20 70  RMVAR1k.. VAR2 p
    4810: 56 41 52 31 61 70 6C 56 41 52 32 70 61 56 41 52  VAR1aplVAR2paVAR
    4820: 31 5B 27 4D 34 32 31 5B 01 4D 32 35 33 00 14 4E  1['M421[.M253..N
    4830: 10 4D 32 34 39 0C A0 0D 93 72 72 68 69 00 6A 00  .M249....rrhi.j.
    4840: 00 70 00 60 A1 0A 70 4D 32 35 32 68 69 6A 60 A0  .p.`..pM252hij`.
    4850: 0E 93 60 0C FF FF FF FF A4 0C FF FF FF FF 72 4D  ..`...........rM
    4860: 30 38 33 79 60 0A 14 00 60 72 0A B8 60 60 A0 1C  083y`...`r..``..
    4870: 5B 12 5C 2E 5F 53 42 5F 41 4D 30 30 00 5B 23 5C  [.\._SB_AM00.[#\
    4880: 2E 5F 53 42 5F 41 4D 30 30 FF FF A1 09 5B 23 4D  ._SB_AM00....[#M
    4890: 32 35 33 FF FF 5B 80 56 41 52 4D 00 60 0A 08 5B  253..[.VARM.`..[
    48A0: 81 0D 56 41 52 4D 03 00 00 56 41 52 31 20 5B 87  ..VARM...VAR1 [.
    48B0: 12 56 41 52 4D 56 41 52 31 6B 03 00 20 56 41 52  .VARMVAR1k.. VAR
    48C0: 32 20 70 56 41 52 31 61 70 56 41 52 32 62 70 61  2 pVAR1apVAR2bpa
    48D0: 56 41 52 31 A0 1A 5B 12 5C 2E 5F 53 42 5F 41 4D  VAR1..[.\._SB_AM
    48E0: 30 30 00 5B 27 5C 2E 5F 53 42 5F 41 4D 30 30 A1  00.['\._SB_AM00.
    48F0: 07 5B 27 4D 32 35 33 4D 34 36 30 0D 20 20 4B 45  .['M253M460.  KE
    4900: 52 2D 41 53 4C 2D 43 70 6D 52 65 61 64 53 6D 6E  R-ASL-CpmReadSmn
    4910: 52 65 67 69 73 74 65 72 20 20 28 25 64 2C 20 25  Register  (%d, %
    4920: 64 2C 20 25 64 2C 20 30 78 25 58 29 20 3D 20 30  d, %d, 0x%X) = 0
    4930: 78 25 58 0A 00 68 69 6A 6B 62 00 A4 62 14 47 10  x%X..hijkb..b.G.
    4940: 4D 32 35 30 0D A0 0D 93 72 72 68 69 00 6A 00 00  M250....rrhi.j..
    4950: 70 00 60 A1 0A 70 4D 32 35 32 68 69 6A 60 A0 46  p.`..pM252hij`.F
    4960: 0E 92 93 60 0C FF FF FF FF 4D 34 36 30 0D 20 20  ...`.....M460.  
    4970: 4B 45 52 2D 41 53 4C 2D 43 70 6D 57 72 69 74 65  KER-ASL-CpmWrite
    4980: 53 6D 6E 52 65 67 69 73 74 65 72 20 28 25 64 2C  SmnRegister (%d,
    4990: 20 25 64 2C 20 25 64 2C 20 30 78 25 58 2C 20 30   %d, %d, 0x%X, 0
    49A0: 78 25 58 29 0A 00 68 69 6A 6B 6C 00 72 4D 30 38  x%X)..hijkl.rM08
    49B0: 33 79 60 0A 14 00 60 72 0A B8 60 60 A0 1C 5B 12  3y`...`r..``..[.
    49C0: 5C 2E 5F 53 42 5F 41 4D 30 30 00 5B 23 5C 2E 5F  \._SB_AM00.[#\._
    49D0: 53 42 5F 41 4D 30 30 FF FF A1 09 5B 23 4D 32 35  SB_AM00....[#M25
    49E0: 33 FF FF 5B 80 56 41 52 4D 00 60 0A 08 5B 81 0D  3..[.VARM.`..[..
    49F0: 56 41 52 4D 03 00 00 56 41 52 31 20 5B 87 12 56  VARM...VAR1 [..V
    4A00: 41 52 4D 56 41 52 31 6B 03 00 20 56 41 52 32 20  ARMVAR1k.. VAR2 
    4A10: 70 56 41 52 31 61 70 6C 56 41 52 32 70 61 56 41  pVAR1aplVAR2paVA
    4A20: 52 31 A0 1A 5B 12 5C 2E 5F 53 42 5F 41 4D 30 30  R1..[.\._SB_AM00
    4A30: 00 5B 27 5C 2E 5F 53 42 5F 41 4D 30 30 A1 07 5B  .['\._SB_AM00..[
    4A40: 27 4D 32 35 33 14 4E 06 4D 30 31 33 0C 70 4D 30  'M253.N.M013.pM0
    4A50: 34 42 68 69 61 70 0C FF FF FF 7F 65 7D 65 0C 00  4Bhiap.....e}e..
    4A60: 00 00 80 65 7B 7A 61 6A 00 7A 65 74 0A 20 6B 00  ...e{zaj.zet. k.
    4A70: 00 62 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  .bM460.  KER-ASL
    4A80: 2D 43 70 6D 52 65 61 64 4D 65 6D 33 32 20 20 28  -CpmReadMem32  (
    4A90: 30 78 25 58 2C 20 30 78 25 58 2C 20 25 64 2C 20  0x%X, 0x%X, %d, 
    4AA0: 25 64 29 20 3D 20 30 78 25 58 0A 00 68 69 6A 6B  %d) = 0x%X..hijk
    4AB0: 62 00 A4 62 14 4C 08 4D 30 31 34 0D 4D 34 36 30  b..b.L.M014.M460
    4AC0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 57 72  .  KER-ASL-CpmWr
    4AD0: 69 74 65 4D 65 6D 33 32 20 28 30 78 25 58 2C 20  iteMem32 (0x%X, 
    4AE0: 30 78 25 58 2C 20 25 64 2C 20 25 64 2C 20 30 78  0x%X, %d, %d, 0x
    4AF0: 25 58 29 0A 00 68 69 6A 6B 6C 00 70 4D 30 34 42  %X)..hijkl.pM04B
    4B00: 68 69 61 70 0C FF FF FF 7F 65 7D 65 0C 00 00 00  hiap.....e}e....
    4B10: 80 65 72 6A 6B 62 74 0A 20 62 62 7A 7B 79 65 62  .erjkbt. bbz{yeb
    4B20: 00 65 00 62 62 79 7A 62 6A 00 6A 62 79 6C 6A 63  .e.bbyzbj.jbyljc
    4B30: 7D 7B 61 7F 65 62 00 00 63 64 4D 30 34 45 68 69  }{a.eb..cdM04Ehi
    4B40: 64 14 4F 05 4D 30 31 31 0C 70 4D 30 34 39 68 69  d.O.M011.pM049hi
    4B50: 61 7B 7A 61 6A 00 7A 0A FF 74 0A 08 6B 00 00 62  a{zaj.z..t..k..b
    4B60: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    4B70: 70 6D 52 65 61 64 4D 65 6D 38 20 20 28 30 78 25  pmReadMem8  (0x%
    4B80: 58 2C 20 30 78 25 58 2C 20 25 64 2C 20 25 64 29  X, 0x%X, %d, %d)
    4B90: 20 3D 20 30 78 25 58 0A 00 68 69 6A 6B 62 00 A4   = 0x%X..hijkb..
    4BA0: 62 14 4F 07 4D 30 31 32 0D 4D 34 36 30 0D 20 20  b.O.M012.M460.  
    4BB0: 4B 45 52 2D 41 53 4C 2D 43 70 6D 57 72 69 74 65  KER-ASL-CpmWrite
    4BC0: 4D 65 6D 38 20 28 30 78 25 58 2C 20 30 78 25 58  Mem8 (0x%X, 0x%X
    4BD0: 2C 20 25 64 2C 20 25 64 2C 20 30 78 25 58 29 0A  , %d, %d, 0x%X).
    4BE0: 00 68 69 6A 6B 6C 00 70 4D 30 34 39 68 69 61 72  .hijkl.pM049hiar
    4BF0: 6A 6B 62 74 0A 08 62 62 7A 7B 79 0A FF 62 00 0A  jkbt..bbz{y..b..
    4C00: FF 00 62 62 79 7A 62 6A 00 6A 62 79 6C 6A 63 7D  ..bbyzbj.jbyljc}
    4C10: 7B 61 7F 0A FF 62 00 00 63 64 4D 30 34 43 68 69  {a...b..cdM04Chi
    4C20: 64 14 44 08 4D 32 35 32 0B A0 46 07 92 95 4D 30  d.D.M252..F...M0
    4C30: 38 35 0A 08 70 4D 32 35 31 60 A0 45 06 60 72 60  85..pM251`.E.`r`
    4C40: 0A 10 60 70 00 61 70 00 62 A2 46 05 92 93 62 0A  ..`p.ap.b.F...b.
    4C50: FF 70 4D 30 31 31 72 60 61 00 00 00 0A 08 62 70  .pM011r`a.....bp
    4C60: 4D 30 31 31 72 60 61 00 01 00 0A 08 63 70 4D 30  M011r`a.....cpM0
    4C70: 31 31 72 60 61 00 0A 02 00 0A 08 64 70 4D 30 31  11r`a......dpM01
    4C80: 31 72 60 61 00 0A 03 00 0A 08 65 A0 0F 90 93 62  1r`a......e....b
    4C90: 68 93 63 69 A0 06 93 64 6A A4 65 72 61 0A 06 61  h.ci...dj.era..a
    4CA0: A4 0C FF FF FF FF 14 35 4D 36 32 34 09 70 00 60  .......5M624.p.`
    4CB0: A0 29 92 93 4D 32 35 31 00 72 0A 03 72 0A 10 77  .)..M251.r..r..w
    4CC0: 68 0A 06 00 00 61 70 4D 30 34 39 4D 32 35 31 61  h....apM049M251a
    4CD0: 60 A0 08 93 60 0A FF 70 00 60 A4 60 14 31 4D 30  `...`..p.`.`.1M0
    4CE0: 34 39 0A 70 00 60 A0 25 92 93 68 00 72 68 69 60  49.p.`.%..h.rhi`
    4CF0: 5B 80 56 41 52 4D 00 60 01 5B 81 0B 56 41 52 4D  [.VARM.`.[..VARM
    4D00: 01 56 41 52 52 08 70 56 41 52 52 60 A4 60 14 32  .VARR.pVARR`.`.2
    4D10: 4D 30 34 41 0A 70 00 60 A0 26 92 93 68 00 72 68  M04A.p.`.&..h.rh
    4D20: 69 60 5B 80 56 41 52 4D 00 60 0A 02 5B 81 0B 56  i`[.VARM.`..[..V
    4D30: 41 52 4D 02 56 41 52 52 10 70 56 41 52 52 60 A4  ARM.VARR.pVARR`.
    4D40: 60 14 32 4D 30 34 42 0A 70 00 60 A0 26 92 93 68  `.2M04B.p.`.&..h
    4D50: 00 72 68 69 60 5B 80 56 41 52 4D 00 60 0A 04 5B  .rhi`[.VARM.`..[
    4D60: 81 0B 56 41 52 4D 03 56 41 52 52 20 70 56 41 52  ..VARM.VARR pVAR
    4D70: 52 60 A4 60 14 2C 4D 30 34 43 0B A0 25 92 93 68  R`.`.,M04C..%..h
    4D80: 00 72 68 69 60 5B 80 56 41 52 4D 00 60 01 5B 81  .rhi`[.VARM.`.[.
    4D90: 0B 56 41 52 4D 01 56 41 52 52 08 70 6A 56 41 52  .VARM.VARR.pjVAR
    4DA0: 52 14 2D 4D 30 34 44 0B A0 26 92 93 68 00 72 68  R.-M04D..&..h.rh
    4DB0: 69 60 5B 80 56 41 52 4D 00 60 0A 02 5B 81 0B 56  i`[.VARM.`..[..V
    4DC0: 41 52 4D 02 56 41 52 52 10 70 6A 56 41 52 52 14  ARM.VARR.pjVARR.
    4DD0: 2D 4D 30 34 45 0B A0 26 92 93 68 00 72 68 69 60  -M04E..&..h.rhi`
    4DE0: 5B 80 56 41 52 4D 00 60 0A 04 5B 81 0B 56 41 52  [.VARM.`..[..VAR
    4DF0: 4D 03 56 41 52 52 20 70 6A 56 41 52 52 14 43 17  M.VARR pjVARR.C.
    4E00: 4D 36 34 34 0B 4D 34 36 30 0D 20 20 4B 45 52 2D  M644.M460.  KER-
    4E10: 41 53 4C 2D 43 70 6D 44 75 6D 70 44 61 74 61 20  ASL-CpmDumpData 
    4E20: 28 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25  (0x%X, 0x%X, 0x%
    4E30: 58 29 0A 00 68 69 6A 00 00 00 A0 3E 90 92 93 69  X)..hij....>...i
    4E40: 01 90 92 93 69 0A 02 92 93 69 0A 04 4D 34 36 30  ....i....i..M460
    4E50: 0D 20 20 41 72 67 31 3A 20 4F 6E 65 20 44 61 74  .  Arg1: One Dat
    4E60: 61 20 57 69 64 74 68 20 69 73 20 69 6C 6C 65 67  a Width is illeg
    4E70: 61 6C 00 00 00 00 00 00 00 A1 4A 0E A0 34 94 6A  al........J..4.j
    4E80: 0B 00 10 4D 34 36 30 0D 20 20 41 72 67 32 3A 20  ...M460.  Arg2: 
    4E90: 54 6F 74 61 6C 20 44 61 74 61 20 53 69 7A 65 20  Total Data Size 
    4EA0: 69 73 20 69 6C 6C 65 67 61 6C 00 00 00 00 00 00  is illegal......
    4EB0: 00 A1 42 0B 70 00 60 70 68 61 4D 34 36 30 0D 20  ..B.p.`phaM460. 
    4EC0: 20 30 78 25 58 3A 00 61 00 00 00 00 00 A2 46 09   0x%X:.a......F.
    4ED0: 95 60 6A A0 19 93 69 01 4D 34 36 30 0D 20 20 25  .`j...i.M460.  %
    4EE0: 58 00 4D 30 34 39 68 60 00 00 00 00 00 A1 39 A0  X.M049h`......9.
    4EF0: 1A 93 69 0A 02 4D 34 36 30 0D 20 20 25 58 00 4D  ..i..M460.  %X.M
    4F00: 30 34 41 68 60 00 00 00 00 00 A1 1C A0 1A 93 69  04Ah`..........i
    4F10: 0A 04 4D 34 36 30 0D 20 20 25 58 00 4D 30 34 42  ..M460.  %X.M04B
    4F20: 68 60 00 00 00 00 00 72 60 69 60 72 68 60 61 A0  h`.....r`i`rh`a.
    4F30: 34 93 7B 61 0A 0F 00 00 4D 34 36 30 0D 0A 00 00  4.{a....M460....
    4F40: 00 00 00 00 00 A0 1E 95 60 6A 4D 34 36 30 0D 20  ........`jM460. 
    4F50: 20 30 78 25 58 3A 00 7B 61 0C F0 FF FF FF 00 00   0x%X:.{a.......
    4F60: 00 00 00 00 4D 34 36 30 0D 0A 00 00 00 00 00 00  ....M460........
    4F70: 00 14 3B 4D 34 31 32 09 7A 68 0A 1F 60 7B 60 01  ..;M412.zh..`{`.
    4F80: 60 7A 68 0A 18 61 7B 61 0A 7F 61 7A 68 0A 04 63  `zh..a{a..azh..c
    4F90: 7B 63 0A 03 63 7B 68 0A 07 64 70 4D 34 30 39 60  {c..c{h..dpM409`
    4FA0: 61 63 65 7A 65 64 65 7B 65 01 65 A4 65 14 3C 4D  acezede{e.e.e.<M
    4FB0: 34 45 33 09 7A 68 0A 15 60 7B 60 0A 07 60 7A 68  4E3.zh..`{`..`zh
    4FC0: 0A 18 61 7B 61 0A 7F 61 7A 68 0A 04 63 7B 63 0A  ..a{a..azh..c{c.
    4FD0: 03 63 7B 68 0A 07 64 70 4D 34 45 31 60 61 63 65  .c{h..dpM4E1`ace
    4FE0: 7A 65 64 65 7B 65 01 65 A4 65 14 47 07 4D 34 31  zede{e.e.e.G.M41
    4FF0: 33 0A 7A 68 0A 1F 60 7B 60 01 60 7A 68 0A 18 61  3.zh..`{`.`zh..a
    5000: 7B 61 0A 7F 61 7A 68 0A 06 62 7B 62 0A 03 62 7A  {a..azh..b{b..bz
    5010: 68 0A 04 63 7B 63 0A 03 63 7B 68 0A 07 64 70 4D  h..c{c..c{h..dpM
    5020: 34 30 39 60 61 72 77 72 62 01 00 01 00 63 00 65  409`arwrb....c.e
    5030: 70 65 66 7B 65 7F 0C FF FF FF FF 79 01 64 00 00  pef{e......y.d..
    5040: 65 7D 65 79 7B 69 01 00 64 00 65 A0 16 92 93 65  e}ey{i..d.e....e
    5050: 66 4D 34 31 30 60 61 72 77 72 62 01 00 01 00 63  fM410`arwrb....c
    5060: 00 65 14 48 07 4D 34 45 34 0A 7A 68 0A 15 60 7B  .e.H.M4E4.zh..`{
    5070: 60 0A 07 60 7A 68 0A 18 61 7B 61 0A 7F 61 7A 68  `..`zh..a{a..azh
    5080: 0A 06 62 7B 62 0A 03 62 7A 68 0A 04 63 7B 63 0A  ..b{b..bzh..c{c.
    5090: 03 63 7B 68 0A 07 64 70 4D 34 45 31 60 61 72 77  .c{h..dpM4E1`arw
    50A0: 72 62 01 00 01 00 63 00 65 70 65 66 7B 65 7F 0C  rb....c.epef{e..
    50B0: FF FF FF FF 79 01 64 00 00 65 7D 65 79 7B 69 01  ....y.d..e}ey{i.
    50C0: 00 64 00 65 A0 16 92 93 65 66 4D 34 45 32 60 61  .d.e....efM4E2`a
    50D0: 72 77 72 62 01 00 01 00 63 00 65 14 45 4A 4D 34  rwrb....c.e.EJM4
    50E0: 33 41 09 70 00 60 70 4D 30 34 42 4D 31 32 38 0A  3A.p.`pM04BM128.
    50F0: 33 61 70 4D 30 34 42 4D 31 32 38 0A 72 62 A0 4F  3apM04BM128.rb.O
    5100: 06 91 93 61 00 93 62 00 4D 34 36 30 0D 20 20 4B  ...a..b.M460.  K
    5110: 45 52 2D 41 53 4C 2D 43 70 6D 47 65 74 50 74 47  ER-ASL-CpmGetPtG
    5120: 70 69 6F 4D 6D 69 6F 41 64 64 72 65 73 73 20 28  pioMmioAddress (
    5130: 25 64 29 20 20 4C 6F 63 61 6C 31 20 3D 20 30 78  %d)  Local1 = 0x
    5140: 25 58 20 20 4C 6F 63 61 6C 32 20 3D 20 30 78 25  %X  Local2 = 0x%
    5150: 58 20 20 45 52 52 4F 52 20 45 52 52 4F 52 20 45  X  ERROR ERROR E
    5160: 52 52 4F 52 0A 00 68 61 62 00 00 00 A4 60 70 4D  RROR..hab....`pM
    5170: 30 31 31 62 0A 19 00 0A 08 63 A0 45 06 91 93 63  011b.....c.E...c
    5180: 00 93 63 0A FF 4D 34 36 30 0D 20 20 4B 45 52 2D  ..c..M460.  KER-
    5190: 41 53 4C 2D 43 70 6D 47 65 74 50 74 47 70 69 6F  ASL-CpmGetPtGpio
    51A0: 4D 6D 69 6F 41 64 64 72 65 73 73 20 28 25 64 29  MmioAddress (%d)
    51B0: 20 20 4C 6F 63 61 6C 33 20 3D 20 30 78 25 58 20    Local3 = 0x%X 
    51C0: 20 45 52 52 4F 52 20 45 52 52 4F 52 20 45 52 52   ERROR ERROR ERR
    51D0: 4F 52 20 2D 20 31 0A 00 68 63 00 00 00 00 A4 60  OR - 1..hc.....`
    51E0: 72 61 79 63 0A 14 00 62 70 4D 30 31 33 62 0A 08  rayc...bpM013b..
    51F0: 0A 08 0A 18 63 A0 47 07 92 93 63 0C 00 04 06 00  ....c.G...c.....
    5200: A0 40 06 92 95 68 0A 08 4D 34 36 30 0D 20 20 4B  .@...h..M460.  K
    5210: 45 52 2D 41 53 4C 2D 43 70 6D 47 65 74 50 74 47  ER-ASL-CpmGetPtG
    5220: 70 69 6F 4D 6D 69 6F 41 64 64 72 65 73 73 20 28  pioMmioAddress (
    5230: 25 64 20 3E 3D 20 38 29 20 20 4E 6F 74 20 50 52  %d >= 8)  Not PR
    5240: 4F 4D 32 31 20 20 45 52 52 4F 52 20 45 52 52 4F  OM21  ERROR ERRO
    5250: 52 20 45 52 52 4F 52 0A 00 68 00 00 00 00 00 A4  R ERROR..h......
    5260: 60 70 0A 02 63 72 62 79 63 0A 0C 00 62 A1 46 17  `p..crbyc...b.F.
    5270: A0 43 17 92 95 68 0A 18 70 4D 30 34 39 4D 31 32  .C...h..pM049M12
    5280: 38 0A 93 64 A0 4C 05 93 64 00 4D 34 36 30 0D 20  8..d.L..d.M460. 
    5290: 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 47 65 74 50   KER-ASL-CpmGetP
    52A0: 74 47 70 69 6F 4D 6D 69 6F 41 64 64 72 65 73 73  tGpioMmioAddress
    52B0: 20 28 25 64 29 20 20 4C 6F 63 61 6C 34 20 3D 20   (%d)  Local4 = 
    52C0: 30 78 25 58 20 20 45 52 52 4F 52 20 45 52 52 4F  0x%X  ERROR ERRO
    52D0: 52 20 45 52 52 4F 52 0A 00 68 64 00 00 00 00 A4  R ERROR..hd.....
    52E0: 60 A1 06 7B 64 0A 1F 64 70 4D 30 31 31 62 0A 19  `..{d..dpM011b..
    52F0: 00 0A 08 63 A0 45 06 91 93 63 00 93 63 0A FF 4D  ...c.E...c..c..M
    5300: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70  460.  KER-ASL-Cp
    5310: 6D 47 65 74 50 74 47 70 69 6F 4D 6D 69 6F 41 64  mGetPtGpioMmioAd
    5320: 64 72 65 73 73 20 28 25 64 29 20 20 4C 6F 63 61  dress (%d)  Loca
    5330: 6C 33 20 3D 20 30 78 25 58 20 20 45 52 52 4F 52  l3 = 0x%X  ERROR
    5340: 20 45 52 52 4F 52 20 45 52 52 4F 52 20 2D 20 32   ERROR ERROR - 2
    5350: 0A 00 68 63 00 00 00 00 A4 60 72 61 79 63 0A 14  ..hc.....`rayc..
    5360: 00 62 72 62 79 64 0A 0F 00 62 70 4D 30 31 31 62  .brbyd...bpM011b
    5370: 0A 19 00 0A 08 63 A0 45 06 91 93 63 00 93 63 0A  .....c.E...c..c.
    5380: FF 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  .M460.  KER-ASL-
    5390: 43 70 6D 47 65 74 50 74 47 70 69 6F 4D 6D 69 6F  CpmGetPtGpioMmio
    53A0: 41 64 64 72 65 73 73 20 28 25 64 29 20 20 4C 6F  Address (%d)  Lo
    53B0: 63 61 6C 33 20 3D 20 30 78 25 58 20 20 45 52 52  cal3 = 0x%X  ERR
    53C0: 4F 52 20 45 52 52 4F 52 20 45 52 52 4F 52 20 2D  OR ERROR ERROR -
    53D0: 20 33 0A 00 68 63 00 00 00 00 A4 60 72 61 79 63   3..hc.....`rayc
    53E0: 0A 14 00 62 70 4D 30 31 31 62 0A 04 00 0A 08 63  ...bpM011b.....c
    53F0: A0 45 06 91 93 63 00 93 63 0A FF 4D 34 36 30 0D  .E...c..c..M460.
    5400: 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 47 65 74    KER-ASL-CpmGet
    5410: 50 74 47 70 69 6F 4D 6D 69 6F 41 64 64 72 65 73  PtGpioMmioAddres
    5420: 73 20 28 25 64 29 20 20 4C 6F 63 61 6C 33 20 3D  s (%d)  Local3 =
    5430: 20 30 78 25 58 20 20 45 52 52 4F 52 20 45 52 52   0x%X  ERROR ERR
    5440: 4F 52 20 45 52 52 4F 52 20 2D 20 34 0A 00 68 63  OR ERROR - 4..hc
    5450: 00 00 00 00 A4 60 A0 46 06 92 93 7B 63 0A 02 00  .....`.F...{c...
    5460: 0A 02 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  ..M460.  KER-ASL
    5470: 2D 43 70 6D 47 65 74 50 74 47 70 69 6F 4D 6D 69  -CpmGetPtGpioMmi
    5480: 6F 41 64 64 72 65 73 73 20 28 25 64 29 20 20 4C  oAddress (%d)  L
    5490: 6F 63 61 6C 33 20 3D 20 30 78 25 58 20 20 45 52  ocal3 = 0x%X  ER
    54A0: 52 4F 52 20 45 52 52 4F 52 20 45 52 52 4F 52 20  ROR ERROR ERROR 
    54B0: 2D 20 35 0A 00 68 63 00 00 00 00 A4 60 70 4D 30  - 5..hc.....`pM0
    54C0: 31 33 62 0A 40 00 0A 20 63 7B 63 0C FB FF FF FF  13b.@.. c{c.....
    54D0: 63 A0 48 06 91 93 63 00 93 63 0C FB FF FF FF 4D  c.H...c..c.....M
    54E0: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70  460.  KER-ASL-Cp
    54F0: 6D 47 65 74 50 74 47 70 69 6F 4D 6D 69 6F 41 64  mGetPtGpioMmioAd
    5500: 64 72 65 73 73 20 28 25 64 29 20 20 4C 6F 63 61  dress (%d)  Loca
    5510: 6C 33 20 3D 20 30 78 25 58 20 20 45 52 52 4F 52  l3 = 0x%X  ERROR
    5520: 20 45 52 52 4F 52 20 45 52 52 4F 52 20 2D 20 36   ERROR ERROR - 6
    5530: 0A 00 68 63 00 00 00 00 A4 60 A1 46 04 4D 34 36  ..hc.....`.F.M46
    5540: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 47  0.  KER-ASL-CpmG
    5550: 65 74 50 74 47 70 69 6F 4D 6D 69 6F 41 64 64 72  etPtGpioMmioAddr
    5560: 65 73 73 20 28 25 64 29 20 20 4C 6F 63 61 6C 33  ess (%d)  Local3
    5570: 20 3D 20 30 78 25 58 0A 00 68 63 00 00 00 00 A4   = 0x%X..hc.....
    5580: 63 14 47 0D 4D 34 34 30 09 70 4D 34 33 41 68 60  c.G.M440.pM43Ah`
    5590: A0 46 05 93 60 00 4D 34 36 30 0D 20 20 4B 45 52  .F..`.M460.  KER
    55A0: 2D 41 53 4C 2D 43 70 6D 50 74 52 65 61 64 47 70  -ASL-CpmPtReadGp
    55B0: 69 6F 20 20 28 25 64 29 20 3D 20 25 64 20 20 4D  io  (%d) = %d  M
    55C0: 4D 49 4F 20 3D 20 30 78 25 58 20 20 45 52 52 4F  MIO = 0x%X  ERRO
    55D0: 52 20 45 52 52 4F 52 20 45 52 52 4F 52 0A 00 68  R ERROR ERROR..h
    55E0: 60 60 00 00 00 A4 60 A0 0B 92 95 68 0A 18 74 68  ``....`....h..th
    55F0: 0A 18 61 A1 04 70 68 61 70 4D 30 31 33 60 00 61  ..a..phapM013`.a
    5600: 01 62 A0 0D 93 62 01 4D 30 31 34 60 00 61 01 00  .b...b.M014`.a..
    5610: 70 4D 30 31 33 60 0A 04 61 01 62 4D 34 36 30 0D  pM013`..a.bM460.
    5620: 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 50 74 52    KER-ASL-CpmPtR
    5630: 65 61 64 47 70 69 6F 20 20 28 25 64 29 20 3D 20  eadGpio  (%d) = 
    5640: 25 64 20 20 4D 4D 49 4F 20 3D 20 30 78 25 58 0A  %d  MMIO = 0x%X.
    5650: 00 68 62 60 00 00 00 A4 62 14 43 0D 4D 34 34 31  .hb`....b.C.M441
    5660: 0A 70 4D 34 33 41 68 60 A0 44 05 93 60 00 4D 34  .pM43Ah`.D..`.M4
    5670: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D  60.  KER-ASL-Cpm
    5680: 50 74 57 72 69 74 65 47 70 69 6F 20 28 25 64 2C  PtWriteGpio (%d,
    5690: 20 25 64 29 20 20 20 4D 4D 49 4F 20 3D 20 30 78   %d)   MMIO = 0x
    56A0: 25 58 20 20 45 52 52 4F 52 20 45 52 52 4F 52 20  %X  ERROR ERROR 
    56B0: 45 52 52 4F 52 0A 00 68 69 60 00 00 00 A0 0B 92  ERROR..hi`......
    56C0: 95 68 0A 18 74 68 0A 18 61 A1 04 70 68 61 70 4D  .h..th..a..phapM
    56D0: 30 31 33 60 00 61 01 62 A0 0E 92 93 62 01 4D 30  013`.a.b....b.M0
    56E0: 31 34 60 00 61 01 01 4D 30 31 34 60 0A 08 61 01  14`.a..M014`..a.
    56F0: 69 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  iM460.  KER-ASL-
    5700: 43 70 6D 50 74 57 72 69 74 65 47 70 69 6F 20 28  CpmPtWriteGpio (
    5710: 25 64 2C 20 25 64 29 20 20 20 4D 4D 49 4F 20 3D  %d, %d)   MMIO =
    5720: 20 30 78 25 58 0A 00 68 69 60 00 00 00 14 4B 1B   0x%X..hi`....K.
    5730: 4D 30 30 39 09 7A 68 0A 08 60 7B 60 0A 07 60 7B  M009.zh..`{`..`{
    5740: 68 0A FF 61 70 00 62 A0 4A 0B 91 93 60 00 93 60  h..ap.b.J...`..`
    5750: 01 A0 4B 09 92 95 4D 30 38 35 0A 02 A0 3E 93 7B  ..K...M085...>.{
    5760: 68 0C 00 00 00 F8 00 00 A0 1A 93 60 00 70 4D 30  h..........`.pM0
    5770: 31 31 72 4D 30 38 34 0B 02 15 00 77 61 0A 04 00  11rM084....wa...
    5780: 00 01 62 A1 17 70 4D 30 31 31 72 4D 30 38 34 0B  ..b..pM011rM084.
    5790: 02 12 00 77 61 0A 04 00 00 01 62 A1 41 05 7A 68  ...wa.....b.A.zh
    57A0: 0A 1F 63 7B 63 01 63 7A 68 0A 1D 64 7B 64 0A 03  ..c{c.czh..d{d..
    57B0: 64 7A 68 0A 1B 65 7B 65 0A 03 65 A0 10 93 60 00  dzh..e{e..e...`.
    57C0: 72 0C 00 25 D0 02 77 61 0A 04 00 66 A1 0D 72 0C  r..%..wa...f..r.
    57D0: 00 22 D0 02 77 61 0A 04 00 66 70 4D 32 34 39 63  ."..wa...fpM249c
    57E0: 64 65 66 62 7A 62 0A 10 62 7B 62 01 62 A1 14 70  defbzb..b{b.b..p
    57F0: 4D 30 31 31 72 4D 30 38 34 0B 00 01 00 61 0A 07  M011rM084....a..
    5800: 01 62 A1 43 0B A0 4B 05 91 93 60 0A 04 93 60 0A  .b.C..K...`...`.
    5810: 05 7A 68 0A 1F 63 7B 63 01 63 7A 68 0A 1D 64 7B  .zh..c{c.czh..d{
    5820: 64 0A 03 64 7A 68 0A 1B 65 7B 65 0A 03 65 A0 11  d..dzh..e{e..e..
    5830: 93 60 0A 04 72 0C 00 25 D0 02 77 61 0A 04 00 66  .`..r..%..wa...f
    5840: A1 0D 72 0C 00 22 D0 02 77 61 0A 04 00 66 70 4D  ..r.."..wa...fpM
    5850: 34 32 32 63 64 65 66 62 7A 62 0A 10 62 7B 62 01  422cdefbzb..b{b.
    5860: 62 A1 44 05 A0 24 93 60 0A 02 A0 18 93 4D 30 34  b.D..$.`.....M04
    5870: 39 4D 31 32 38 0A 77 01 70 4D 30 33 38 72 61 0A  9M128.w.pM038ra.
    5880: 08 00 62 A1 05 70 0A FF 62 A1 2C A0 0C 93 60 0A  ..b..p..b.,...`.
    5890: 03 70 4D 34 34 30 61 62 A1 1D A0 0C 93 60 0A 06  .pM440ab.....`..
    58A0: 70 4D 34 31 32 68 62 A1 0E A0 0C 93 60 0A 07 70  pM412hb.....`..p
    58B0: 4D 34 45 33 68 62 4D 34 36 30 0D 20 20 4B 45 52  M4E3hbM460.  KER
    58C0: 2D 41 53 4C 2D 43 70 6D 52 65 61 64 47 70 69 6F  -ASL-CpmReadGpio
    58D0: 20 20 28 30 78 25 58 29 20 3D 20 30 78 25 58 0A    (0x%X) = 0x%X.
    58E0: 00 68 62 00 00 00 00 A4 62 14 47 1F 4D 30 31 30  .hb.....b.G.M010
    58F0: 0A 7A 68 0A 08 60 7B 60 0A 07 60 7B 68 0A FF 61  .zh..`{`..`{h..a
    5900: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    5910: 70 6D 57 72 69 74 65 47 70 69 6F 20 28 30 78 25  pmWriteGpio (0x%
    5920: 58 2C 20 30 78 25 58 29 0A 00 68 69 00 00 00 00  X, 0x%X)..hi....
    5930: A0 4E 0E 91 93 60 00 93 60 01 A0 4E 0B 92 95 4D  .N...`..`..N...M
    5940: 30 38 35 0A 02 A0 49 04 93 7B 68 0C 00 00 00 F8  085...I..{h.....
    5950: 00 00 A0 1F 93 60 00 4D 30 31 32 72 4D 30 38 34  .....`.M012rM084
    5960: 0B 02 15 00 77 61 0A 04 00 0A 06 0A 02 7D 0A 02  ....wa.......}..
    5970: 69 00 A1 1C 4D 30 31 32 72 4D 30 38 34 0B 02 12  i...M012rM084...
    5980: 00 77 61 0A 04 00 0A 06 0A 02 7D 0A 02 69 00 A1  .wa.......}..i..
    5990: 49 06 7A 68 0A 1F 63 7B 63 01 63 7A 68 0A 1D 64  I.zh..c{c.czh..d
    59A0: 7B 64 0A 03 64 7A 68 0A 1B 65 7B 65 0A 03 65 A0  {d..dzh..e{e..e.
    59B0: 10 93 60 00 72 0C 00 25 D0 02 77 61 0A 04 00 66  ..`.r..%..wa...f
    59C0: A1 0D 72 0C 00 22 D0 02 77 61 0A 04 00 66 70 4D  ..r.."..wa...fpM
    59D0: 32 34 39 63 64 65 66 62 7B 62 0C FF FF 3F CF 62  249cdefb{b...?.b
    59E0: 7D 62 0C 00 00 80 00 62 7D 62 79 69 0A 16 00 62  }b.....b}byi...b
    59F0: 4D 32 35 30 63 64 65 66 62 A1 25 4D 30 31 32 72  M250cdefb.%M012r
    5A00: 4D 30 38 34 0B 00 01 00 61 0A 06 01 69 4D 30 31  M084....a...iM01
    5A10: 32 72 4D 30 38 34 0B 00 01 00 61 0A 05 01 00 A1  2rM084....a.....
    5A20: 41 0C A0 43 07 91 93 60 0A 04 93 60 0A 05 7A 68  A..C...`...`..zh
    5A30: 0A 1F 63 7B 63 01 63 7A 68 0A 1D 64 7B 64 0A 03  ..c{c.czh..d{d..
    5A40: 64 7A 68 0A 1B 65 7B 65 0A 03 65 A0 11 93 60 0A  dzh..e{e..e...`.
    5A50: 04 72 0C 00 25 D0 02 77 61 0A 04 00 66 A1 0D 72  .r..%..wa...f..r
    5A60: 0C 00 22 D0 02 77 61 0A 04 00 66 70 4D 34 32 32  .."..wa...fpM422
    5A70: 63 64 65 66 62 7B 62 0C FF FF 3F CF 62 7D 62 0C  cdefb{b...?.b}b.
    5A80: 00 00 80 00 62 7D 62 79 69 0A 16 00 62 4D 34 32  ....b}byi...bM42
    5A90: 33 63 64 65 66 62 A1 4A 04 A0 1D 93 60 0A 02 A0  3cdefb.J....`...
    5AA0: 17 93 4D 30 34 39 4D 31 32 38 0A 77 01 4D 30 33  ..M049M128.w.M03
    5AB0: 39 72 61 0A 08 00 69 A1 29 A0 0B 93 60 0A 03 4D  9ra...i.)...`..M
    5AC0: 34 34 31 61 69 A1 1B A0 0B 93 60 0A 06 4D 34 31  441ai.....`..M41
    5AD0: 33 68 69 A1 0D A0 0B 93 60 0A 07 4D 34 45 34 68  3hi.....`..M4E4h
    5AE0: 69 08 4D 30 33 37 11 1A 0A 17 7E 81 03 16 04 15  i.M037....~.....
    5AF0: 0E 05 02 20 06 07 10 11 12 18 17 19 0B 01 0F 0D  ... ............
    5B00: 09 08 4D 32 32 37 11 1B 0A 18 41 42 03 16 04 15  ..M227....AB....
    5B10: 0E 05 02 44 06 07 10 11 12 18 17 45 0B 01 0F 0D  ...D.......E....
    5B20: 09 08 08 4D 33 32 39 11 1B 0A 18 59 5A 03 16 04  ...M329....YZ...
    5B30: 15 5B 05 02 56 06 4C 10 11 12 18 17 81 54 01 28  .[..V.L......T.(
    5B40: 00 09 08 08 4D 33 32 41 11 1B 0A 18 59 5A 03 16  ....M32A....YZ..
    5B50: 04 15 5B 05 02 56 06 4C 10 11 1D 1E 17 81 54 01  ..[..V.L......T.
    5B60: 28 00 09 08 08 4D 33 33 30 11 1B 0A 18 59 5A 03  (....M330....YZ.
    5B70: 16 04 15 5B 05 02 56 06 07 10 11 12 18 17 81 54  ...[..V........T
    5B80: 01 28 00 09 08 08 4D 33 32 42 11 1B 0A 18 59 5A  .(....M32B....YZ
    5B90: 03 16 04 0B 5B 05 02 1D 06 07 10 11 12 18 17 20  ....[.......... 
    5BA0: 54 01 28 00 09 08 08 4D 33 32 43 11 1B 0A 18 59  T.(....M32C....Y
    5BB0: 73 03 16 04 15 74 05 02 56 06 4C 10 11 18 1A 17  s....t..V.L.....
    5BC0: 81 1C 01 68 00 69 6A 14 4B 24 4D 30 32 39 09 A0  ...h.ij.K$M029..
    5BD0: 24 93 4D 30 38 35 0A 02 A4 4D 30 31 31 72 4D 30  $.M085...M011rM0
    5BE0: 38 34 0B 02 15 00 77 83 88 4D 30 33 37 68 00 0A  84....w..M037h..
    5BF0: 04 00 00 01 A1 4C 21 A0 1A 95 4D 30 38 35 0A 02  .....L!...M085..
    5C00: A4 4D 30 31 31 72 4D 30 38 34 0B 60 01 00 68 0A  .M011rM084.`..h.
    5C10: 07 01 A1 4E 1F A0 2C 90 94 4D 30 38 35 0A 02 95  ...N..,..M085...
    5C20: 4D 30 38 35 0A 08 A4 4D 30 31 31 72 4D 30 38 34  M085...M011rM084
    5C30: 0B 02 15 00 77 83 88 4D 32 32 37 68 00 0A 04 00  ....w..M227h....
    5C40: 00 01 A1 4E 1C A0 24 93 4D 30 38 35 0A 08 A4 4D  ...N..$.M085...M
    5C50: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5C60: 33 32 39 68 00 0A 04 00 00 01 A1 46 1A A0 2C 91  329h.......F..,.
    5C70: 93 4D 30 38 35 0A 09 93 4D 30 38 35 0A 0A A4 4D  .M085...M085...M
    5C80: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5C90: 33 33 30 68 00 0A 04 00 00 01 A1 46 17 A0 2C 91  330h.......F..,.
    5CA0: 93 4D 30 38 35 0A 0B 93 4D 30 38 35 0A 0C A4 4D  .M085...M085...M
    5CB0: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5CC0: 33 32 41 68 00 0A 04 00 00 01 A1 46 14 A0 2C 91  32Ah.......F..,.
    5CD0: 93 4D 30 38 35 0A 0D 93 4D 30 38 35 0A 0E A4 4D  .M085...M085...M
    5CE0: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5CF0: 33 33 30 68 00 0A 04 00 00 01 A1 46 11 A0 24 93  330h.......F..$.
    5D00: 4D 30 38 35 0A 0F A4 4D 30 31 31 72 4D 30 38 34  M085...M011rM084
    5D10: 0B 02 15 00 77 83 88 4D 33 32 42 68 00 0A 04 00  ....w..M32Bh....
    5D20: 00 01 A1 4E 0E A0 24 93 4D 30 38 35 0A 10 A4 4D  ...N..$.M085...M
    5D30: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5D40: 33 32 42 68 00 0A 04 00 00 01 A1 46 0C A0 24 93  32Bh.......F..$.
    5D50: 4D 30 38 35 0A 12 A4 4D 30 31 31 72 4D 30 38 34  M085...M011rM084
    5D60: 0B 02 15 00 77 83 88 4D 33 32 42 68 00 0A 04 00  ....w..M32Bh....
    5D70: 00 01 A1 4E 09 A0 24 93 4D 30 38 35 0A 13 A4 4D  ...N..$.M085...M
    5D80: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5D90: 33 32 42 68 00 0A 04 00 00 01 A1 46 07 A0 24 93  32Bh.......F..$.
    5DA0: 4D 30 38 35 0A 14 A4 4D 30 31 31 72 4D 30 38 34  M085...M011rM084
    5DB0: 0B 02 15 00 77 83 88 4D 33 32 42 68 00 0A 04 00  ....w..M32Bh....
    5DC0: 00 01 A1 4E 04 A0 24 93 4D 30 38 35 0A 15 A4 4D  ...N..$.M085...M
    5DD0: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5DE0: 33 32 42 68 00 0A 04 00 00 01 A1 26 A0 24 93 4D  32Bh.......&.$.M
    5DF0: 30 38 35 0A 11 A4 4D 30 31 31 72 4D 30 38 34 0B  085...M011rM084.
    5E00: 02 15 00 77 83 88 4D 33 32 43 68 00 0A 04 00 00  ...w..M32Ch.....
    5E10: 01 A4 00 14 33 4D 30 33 31 09 70 4D 30 31 31 72  ....3M031.pM011r
    5E20: 4D 30 38 34 0B 40 02 00 68 00 0A 05 60 A4 4D 30  M084.@..h...`.M0
    5E30: 31 31 72 4D 30 38 34 0B 08 02 00 78 60 0A 08 00  11rM084....x`...
    5E40: 00 7B 60 0A 07 00 01 14 33 4D 30 33 32 0A 70 4D  .{`.....3M032.pM
    5E50: 30 31 31 72 4D 30 38 34 0B 40 02 00 68 00 0A 05  011rM084.@..h...
    5E60: 60 4D 30 31 32 72 4D 30 38 34 0B 08 02 00 78 60  `M012rM084....x`
    5E70: 0A 08 00 00 7B 60 0A 07 00 01 69 14 4F 06 4D 34  ....{`....i.O.M4
    5E80: 37 37 0A A0 06 93 69 00 A4 00 5B 80 56 41 52 4D  77....i...[.VARM
    5E90: 01 68 0A 09 5B 81 0E 56 41 52 4D 01 00 40 04 53  .h..[..VARM..@.S
    5EA0: 4D 42 38 08 70 69 60 A2 41 04 94 60 00 7D 53 4D  MB8.pi`.A..`.}SM
    5EB0: 42 38 0A 40 53 4D 42 38 A0 1A 95 60 0C FF FF FF  B8.@SMB8...`....
    5EC0: 00 A0 0C 94 60 0A 05 70 74 60 0A 05 00 60 A1 04  ....`..pt`...`..
    5ED0: 70 00 60 5B 21 0A 05 70 53 4D 42 38 61 A0 0B 93  p.`[!..pSMB8a...
    5EE0: 7B 61 0A 50 00 0A 40 A4 00 A4 01 14 2B 4D 34 37  {a.P..@.....+M47
    5EF0: 38 09 5B 80 56 41 52 4D 01 68 0A 09 5B 81 0E 56  8.[.VARM.h..[..V
    5F00: 41 52 4D 01 00 40 04 53 4D 42 38 08 7D 53 4D 42  ARM..@.SMB8.}SMB
    5F10: 38 0A 80 53 4D 42 38 14 4F 0F 4D 34 37 39 0A 5B  8..SMB8.O.M479.[
    5F20: 80 56 41 52 4D 01 68 0A 03 5B 81 15 56 41 52 4D  .VARM.h..[..VARM
    5F30: 01 53 4D 42 30 08 53 4D 42 31 08 53 4D 42 32 08  .SMB0.SMB1.SMB2.
    5F40: 70 69 60 A2 4A 05 94 60 00 70 0A 64 61 70 01 62  pi`.J..`.p.dap.b
    5F50: A2 3A 90 94 61 00 92 93 7B 62 01 00 00 70 0A 1F  .:..a...{b...p..
    5F60: 53 4D 42 30 A0 1A 95 60 0C FF FF FF 00 A0 0C 94  SMB0...`........
    5F70: 60 0A 05 70 74 60 0A 05 00 60 A1 04 70 00 60 76  `..pt`...`..p.`v
    5F80: 61 5B 21 0A 05 70 53 4D 42 30 62 A0 0F 92 93 7B  a[!..pSMB0b....{
    5F90: 62 01 00 00 70 0A 02 53 4D 42 32 A1 02 A5 A0 0D  b...p..SMB2.....
    5FA0: 92 93 7B 53 4D 42 30 01 00 00 A4 01 A2 4A 05 94  ..{SMB0......J..
    5FB0: 60 00 70 0A 64 61 70 01 62 A2 3A 90 94 61 00 92  `.p.dap.b.:..a..
    5FC0: 93 7B 62 01 00 00 70 0A 3F 53 4D 42 31 A0 1A 95  .{b...p.?SMB1...
    5FD0: 60 0C FF FF FF 00 A0 0C 94 60 0A 05 70 74 60 0A  `........`..pt`.
    5FE0: 05 00 60 A1 04 70 00 60 76 61 5B 21 0A 05 70 53  ..`..p.`va[!..pS
    5FF0: 4D 42 31 62 A0 0F 92 93 7B 62 01 00 00 70 0A 02  MB1b....{b...p..
    6000: 53 4D 42 31 A1 02 A5 A0 0D 92 93 7B 53 4D 42 31  SMB1.......{SMB1
    6010: 01 00 00 A4 01 A4 00 5B 01 4D 34 30 38 00 14 40  .......[.M408..@
    6020: 6B 4D 34 37 41 0E 70 11 03 0A 22 60 8C 60 00 53  kM47A.p..."`.`.S
    6030: 54 41 54 8C 60 01 4C 45 4E 5F 8C 60 0A 02 44 41  TAT.`.LEN_.`..DA
    6040: 54 42 8B 60 0A 02 44 41 54 57 5B 13 60 0A 10 0B  TB.`..DATW[.`...
    6050: 00 01 44 54 42 46 70 0A FF 53 54 41 54 70 00 4C  ..DTBFp..STATp.L
    6060: 45 4E 5F 70 00 44 54 42 46 4D 30 30 30 0B E5 0D  EN_p.DTBFM000...
    6070: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    6080: 70 6D 53 6D 62 75 73 45 78 65 63 75 74 6F 72 20  pmSmbusExecutor 
    6090: 28 50 6F 72 74 25 64 2C 20 69 73 52 65 61 64 20  (Port%d, isRead 
    60A0: 25 64 2C 20 50 6F 74 63 6C 20 25 64 2C 20 44 65  %d, Potcl %d, De
    60B0: 76 41 64 64 72 20 30 78 25 58 2C 20 43 6D 64 20  vAddr 0x%X, Cmd 
    60C0: 30 78 25 58 29 0A 00 68 69 6A 6B 6C 00 70 4D 30  0x%X)..hijkl.pM0
    60D0: 34 39 4D 31 32 38 0A 94 61 A0 46 04 91 90 92 93  49M128..a.F.....
    60E0: 68 00 92 93 68 01 93 61 01 70 0A 80 53 54 41 54  h...h..a.p..STAT
    60F0: 4D 34 35 39 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M459.  KER-ASL-C
    6100: 70 6D 53 6D 62 75 73 45 78 65 63 75 74 6F 72 20  pmSmbusExecutor 
    6110: 72 65 74 75 72 6E 20 30 78 38 30 0A 00 00 A4 60  return 0x80....`
    6120: A0 42 04 90 92 93 69 00 92 93 69 01 70 0A 81 53  .B....i...i.p..S
    6130: 54 41 54 4D 34 35 39 0D 20 20 4B 45 52 2D 41 53  TATM459.  KER-AS
    6140: 4C 2D 43 70 6D 53 6D 62 75 73 45 78 65 63 75 74  L-CpmSmbusExecut
    6150: 6F 72 20 72 65 74 75 72 6E 20 30 78 38 31 0A 00  or return 0x81..
    6160: 00 A4 60 08 56 41 4C 50 12 0A 05 00 01 0A 02 0A  ..`.VALP........
    6170: 03 0A 05 A0 45 04 93 89 56 41 4C 50 01 6A 00 00  ....E...VALP.j..
    6180: 00 FF 70 0A 82 53 54 41 54 4D 34 35 39 0D 20 20  ..p..STATM459.  
    6190: 4B 45 52 2D 41 53 4C 2D 43 70 6D 53 6D 62 75 73  KER-ASL-CpmSmbus
    61A0: 45 78 65 63 75 74 6F 72 20 72 65 74 75 72 6E 20  Executor return 
    61B0: 30 78 38 32 0A 00 00 A4 60 A0 46 06 90 93 69 00  0x82....`.F...i.
    61C0: 93 6A 0A 05 70 6D 67 70 83 88 67 00 00 62 A0 41  .j..pmgp..g..b.A
    61D0: 05 91 95 62 01 94 62 0A 20 70 0A 83 53 54 41 54  ...b..b. p..STAT
    61E0: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    61F0: 70 6D 53 6D 62 75 73 45 78 65 63 75 74 6F 72 20  pmSmbusExecutor 
    6200: 72 65 74 75 72 6E 20 30 78 38 33 2C 20 4C 65 6E  return 0x83, Len
    6210: 67 74 68 20 25 64 0A 00 62 00 00 00 00 00 A4 60  gth %d..b......`
    6220: 5B 23 4D 34 30 38 FF FF 72 4D 34 31 34 79 68 0A  [#M408..rM414yh.
    6230: 05 00 64 A0 42 05 93 64 00 5B 27 4D 34 30 38 70  ..d.B..d.['M408p
    6240: 0A 84 53 54 41 54 4D 34 36 30 0D 20 20 4B 45 52  ..STATM460.  KER
    6250: 2D 41 53 4C 2D 43 70 6D 53 6D 62 75 73 45 78 65  -ASL-CpmSmbusExe
    6260: 63 75 74 6F 72 20 72 65 74 75 72 6E 20 30 78 38  cutor return 0x8
    6270: 34 2C 20 4C 6F 63 61 6C 34 20 25 64 0A 00 64 00  4, Local4 %d..d.
    6280: 00 00 00 00 A4 60 5B 80 56 41 52 4D 01 64 0A 09  .....`[.VARM.d..
    6290: 5B 81 33 56 41 52 4D 01 53 4D 42 30 08 53 4D 42  [.3VARM.SMB0.SMB
    62A0: 31 08 53 4D 42 32 08 53 4D 42 33 08 53 4D 42 34  1.SMB2.SMB3.SMB4
    62B0: 08 53 4D 42 35 08 53 4D 42 36 08 53 4D 42 37 08  .SMB5.SMB6.SMB7.
    62C0: 53 4D 42 38 08 70 4D 30 34 39 72 4D 30 38 34 0B  SMB8.pM049rM084.
    62D0: 00 03 00 0A 02 65 A0 1D 93 7B 65 01 00 00 4D 30  .....e...{e...M0
    62E0: 31 32 72 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08  12rM084.........
    62F0: 7D 65 01 00 A0 14 93 68 01 70 53 4D 42 32 66 70  }e.....h.pSMB2fp
    6300: 7B 66 0A 7F 00 53 4D 42 32 A0 4D 06 4D 34 37 37  {f...SMB2.M.M477
    6310: 64 0B 20 4E A0 0A 93 68 01 70 66 53 4D 42 32 A0  d. N...h.pfSMB2.
    6320: 1A 93 7B 65 01 00 00 4D 30 31 32 72 4D 30 38 34  ..{e...M012rM084
    6330: 0B 00 03 00 0A 02 00 0A 08 65 5B 27 4D 34 30 38  .........e['M408
    6340: 70 0A 85 53 54 41 54 4D 34 35 39 0D 20 20 4B 45  p..STATM459.  KE
    6350: 52 2D 41 53 4C 2D 43 70 6D 53 6D 62 75 73 45 78  R-ASL-CpmSmbusEx
    6360: 65 63 75 74 6F 72 20 72 65 74 75 72 6E 20 30 78  ecutor return 0x
    6370: 38 35 0A 00 00 A4 60 A0 42 07 4D 34 37 39 64 0B  85....`.B.M479d.
    6380: 20 4E A0 0A 93 68 01 70 66 53 4D 42 32 A0 1A 93   N...h.pfSMB2...
    6390: 7B 65 01 00 00 4D 30 31 32 72 4D 30 38 34 0B 00  {e...M012rM084..
    63A0: 03 00 0A 02 00 0A 08 65 4D 34 37 38 64 5B 27 4D  .......eM478d['M
    63B0: 34 30 38 70 0A 86 53 54 41 54 4D 34 35 39 0D 20  408p..STATM459. 
    63C0: 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 53 6D 62 75   KER-ASL-CpmSmbu
    63D0: 73 45 78 65 63 75 74 6F 72 20 72 65 74 75 72 6E  sExecutor return
    63E0: 20 30 78 38 36 0A 00 00 A4 60 70 6D 67 70 0A 03   0x86....`pmgp..
    63F0: 63 A2 41 21 94 63 00 70 0A 1F 53 4D 42 30 7D 79  c.A!.c.p..SMB0}y
    6400: 6B 01 00 69 53 4D 42 34 70 6C 53 4D 42 33 70 79  k..iSMB4plSMB3py
    6410: 6A 0A 02 00 53 4D 42 32 70 53 4D 42 32 61 A0 4C  j...SMB2pSMB2a.L
    6420: 05 93 69 00 A0 13 91 93 6A 01 93 6A 0A 02 70 83  ..i.....j..j..p.
    6430: 88 67 01 00 53 4D 42 35 A0 1A 93 6A 0A 03 70 83  .g..SMB5...j..p.
    6440: 88 67 0A 02 00 53 4D 42 36 70 83 88 67 01 00 53  .g...SMB6p..g..S
    6450: 4D 42 35 A0 27 93 6A 0A 05 70 83 88 67 00 00 62  MB5.'.j..p..g..b
    6460: 70 62 53 4D 42 35 70 01 61 A2 11 92 94 61 62 70  pbSMB5p.a....abp
    6470: 83 88 67 61 00 53 4D 42 37 75 61 A1 14 A0 12 93  ..ga.SMB7ua.....
    6480: 6A 0A 05 70 83 88 67 00 00 62 70 62 53 4D 42 35  j..p..g..bpbSMB5
    6490: 7D 79 6A 0A 02 00 0A 40 53 4D 42 32 A0 0A 93 6A  }yj....@SMB2...j
    64A0: 0A 05 70 0B 58 1B 61 A1 06 70 0B E8 03 61 70 01  ..p.X.a..p...ap.
    64B0: 62 A2 21 90 94 61 00 93 7B 62 0A 0E 00 00 A0 08  b.!..a..{b......
    64C0: 93 7B 62 01 00 00 A5 76 61 5B 21 0A 05 70 53 4D  .{b....va[!..pSM
    64D0: 42 30 62 A0 4C 07 90 93 61 00 92 93 7B 62 01 00  B0b.L...a...{b..
    64E0: 00 70 0A 02 53 4D 42 32 A0 0A 93 68 01 70 66 53  .p..SMB2...h.pfS
    64F0: 4D 42 32 A0 1A 93 7B 65 01 00 00 4D 30 31 32 72  MB2...{e...M012r
    6500: 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08 65 4D 34  M084.........eM4
    6510: 37 38 64 5B 27 4D 34 30 38 70 0A 87 53 54 41 54  78d['M408p..STAT
    6520: 4D 34 35 39 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M459.  KER-ASL-C
    6530: 70 6D 53 6D 62 75 73 45 78 65 63 75 74 6F 72 20  pmSmbusExecutor 
    6540: 72 65 74 75 72 6E 20 30 78 38 37 0A 00 00 A4 60  return 0x87....`
    6550: A0 0C 92 93 7B 62 0A 04 00 00 70 00 63 A1 45 0A  ....{b....p.c.E.
    6560: A0 12 92 93 7B 62 0A 08 00 00 70 0A 08 53 4D 42  ....{b....p..SMB
    6570: 30 76 63 A1 4F 08 70 00 63 70 00 53 54 41 54 A0  0vc.O.p.cp.STAT.
    6580: 43 08 92 93 69 00 A0 18 91 93 6A 01 93 6A 0A 02  C...i.....j..j..
    6590: 70 53 4D 42 35 44 41 54 42 70 01 4C 45 4E 5F A0  pSMB5DATBp.LEN_.
    65A0: 20 93 6A 0A 03 70 53 4D 42 36 88 60 0A 03 00 70   .j..pSMB6.`...p
    65B0: 53 4D 42 35 88 60 0A 02 00 70 0A 02 4C 45 4E 5F  SMB5.`...p..LEN_
    65C0: A0 42 04 93 6A 0A 05 70 53 4D 42 32 62 70 53 4D  .B..j..pSMB2bpSM
    65D0: 42 35 62 A0 09 94 62 0A 20 70 0A 20 62 70 62 4C  B5b...b. p. bpbL
    65E0: 45 4E 5F 70 0A 02 61 72 62 0A 02 62 A2 16 95 61  EN_p..arb..b...a
    65F0: 62 70 0A CC 88 60 61 00 70 53 4D 42 37 88 60 61  bp...`a.pSMB7.`a
    6600: 00 75 61 70 7B 53 4D 42 30 0A 1D 00 61 70 61 53  .uap{SMB0...apaS
    6610: 54 41 54 70 0A 1F 53 4D 42 30 A0 0A 93 68 01 70  TATp..SMB0...h.p
    6620: 66 53 4D 42 32 A0 1A 93 7B 65 01 00 00 4D 30 31  fSMB2...{e...M01
    6630: 32 72 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08 65  2rM084.........e
    6640: 4D 34 37 38 64 5B 27 4D 34 30 38 4D 34 36 30 0D  M478d['M408M460.
    6650: 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 53 6D 62    KER-ASL-CpmSmb
    6660: 75 73 45 78 65 63 75 74 6F 72 20 72 65 74 75 72  usExecutor retur
    6670: 6E 20 53 74 3A 20 30 78 25 58 2C 20 4C 65 6E 20  n St: 0x%X, Len 
    6680: 25 64 2C 20 44 61 74 61 3A 20 30 78 25 58 2C 20  %d, Data: 0x%X, 
    6690: 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25 58  0x%X, 0x%X, 0x%X
    66A0: 20 2E 2E 2E 0A 00 53 54 41 54 4C 45 4E 5F 83 88   .....STATLEN_..
    66B0: 60 0A 02 00 83 88 60 0A 03 00 83 88 60 0A 04 00  `.....`.....`...
    66C0: 83 88 60 0A 05 00 4D 30 30 30 0B E6 0D A4 60 14  ..`...M000....`.
    66D0: 18 4D 34 37 42 0B 70 4D 34 37 41 68 69 00 6A 00  .M47B.pM47Ahi.j.
    66E0: 00 60 A4 83 88 60 00 00 14 34 4D 34 37 43 0C 70  .`...`...4M47C.p
    66F0: 11 03 0A 02 60 8C 60 00 4C 45 4E 5F 8C 60 01 44  ....`.`.LEN_.`.D
    6700: 41 54 42 70 01 4C 45 4E 5F 70 6B 44 41 54 42 70  ATBp.LEN_pkDATBp
    6710: 4D 34 37 41 68 69 01 6A 00 60 61 A4 61 14 35 4D  M47Ahi.j.`a.a.5M
    6720: 34 37 44 0D 70 11 03 0A 02 60 8C 60 00 4C 45 4E  47D.p....`.`.LEN
    6730: 5F 8C 60 01 44 41 54 42 70 01 4C 45 4E 5F 70 6C  _.`.DATBp.LEN_pl
    6740: 44 41 54 42 70 4D 34 37 41 68 69 0A 02 6A 6B 60  DATBpM47Ahi..jk`
    6750: 61 A4 61 14 41 05 4D 34 37 45 0D 70 11 03 0A 03  a.a.A.M47E.p....
    6760: 60 8C 60 00 4C 45 4E 5F 8C 60 01 44 41 54 4C 8C  `.`.LEN_.`.DATL.
    6770: 60 0A 02 44 41 54 48 70 0A 02 4C 45 4E 5F 70 7B  `..DATHp..LEN_p{
    6780: 6C 0A FF 00 44 41 54 4C 70 7B 7A 6C 0A 08 00 0A  l...DATLp{zl....
    6790: FF 00 44 41 54 48 70 4D 34 37 41 68 69 0A 03 6A  ..DATHpM47Ahi..j
    67A0: 6B 60 61 A4 61 14 15 4D 34 37 46 0D 70 4D 34 37  k`a.a..M47F.pM47
    67B0: 41 68 69 0A 05 6A 6B 6C 61 A4 61 14 4D 47 4D 34  Ahi..jkla.a.MGM4
    67C0: 30 39 0B 70 4D 30 34 39 4D 31 32 38 0A 94 60 A0  09.pM049M128..`.
    67D0: 48 05 93 60 01 4D 34 36 30 0D 20 20 4B 45 52 2D  H..`.M460.  KER-
    67E0: 41 53 4C 2D 43 70 6D 52 65 61 64 53 6D 62 75 73  ASL-CpmReadSmbus
    67F0: 42 79 74 65 20 28 25 64 2C 20 30 78 25 58 2C 20  Byte (%d, 0x%X, 
    6800: 30 78 25 58 29 20 3D 20 30 20 53 6D 62 75 73 20  0x%X) = 0 Smbus 
    6810: 41 63 63 65 73 73 20 44 69 73 61 62 6C 65 0A 00  Access Disable..
    6820: 68 69 6A 00 00 00 A4 00 5B 23 4D 34 30 38 FF FF  hij.....[#M408..
    6830: 72 4D 34 31 34 79 68 0A 05 00 60 5B 80 56 41 52  rM414yh...`[.VAR
    6840: 4D 01 60 0A 09 5B 81 33 56 41 52 4D 01 53 4D 42  M.`..[.3VARM.SMB
    6850: 30 08 53 4D 42 31 08 53 4D 42 32 08 53 4D 42 33  0.SMB1.SMB2.SMB3
    6860: 08 53 4D 42 34 08 53 4D 42 35 08 53 4D 42 36 08  .SMB4.SMB5.SMB6.
    6870: 53 4D 42 37 08 53 4D 42 38 08 70 4D 30 34 39 72  SMB7.SMB8.pM049r
    6880: 4D 30 38 34 0B 00 03 00 0A 02 65 A0 1D 93 7B 65  M084......e...{e
    6890: 01 00 00 4D 30 31 32 72 4D 30 38 34 0B 00 03 00  ...M012rM084....
    68A0: 0A 02 00 0A 08 7D 65 01 00 A0 14 93 68 01 70 53  .....}e.....h.pS
    68B0: 4D 42 32 66 70 7B 66 0A 7F 00 53 4D 42 32 70 00  MB2fp{f...SMB2p.
    68C0: 61 70 0A 64 62 A2 29 90 94 62 00 92 93 7B 61 0A  ap.db.)..b...{a.
    68D0: 10 00 0A 10 7D 53 4D 42 38 0A 10 53 4D 42 38 70  ....}SMB8..SMB8p
    68E0: 74 62 01 00 62 5B 21 0A 05 70 53 4D 42 38 61 70  tb..b[!..pSMB8ap
    68F0: 0A 03 63 A2 47 04 94 63 00 70 01 61 70 0A 64 62  ..c.G..c.p.ap.db
    6900: A2 23 90 94 62 00 92 93 7B 61 01 00 00 70 0A 1F  .#..b...{a...p..
    6910: 53 4D 42 30 70 74 62 01 00 62 5B 21 0A 05 70 53  SMB0ptb..b[!..pS
    6920: 4D 42 30 61 A0 11 93 62 00 70 0A 02 53 4D 42 32  MB0a...b.p..SMB2
    6930: 70 74 63 01 00 63 A1 04 70 00 63 A0 4B 07 90 93  ptc..c..p.c.K...
    6940: 62 00 93 63 00 A0 0A 93 68 01 70 66 53 4D 42 32  b..c....h.pfSMB2
    6950: A0 1A 93 7B 65 01 00 00 4D 30 31 32 72 4D 30 38  ...{e...M012rM08
    6960: 34 0B 00 03 00 0A 02 00 0A 08 65 5B 27 4D 34 30  4.........e['M40
    6970: 38 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  8M460.  KER-ASL-
    6980: 43 70 6D 52 65 61 64 53 6D 62 75 73 42 79 74 65  CpmReadSmbusByte
    6990: 20 28 25 64 2C 20 30 78 25 58 2C 20 30 78 25 58   (%d, 0x%X, 0x%X
    69A0: 29 20 3D 20 30 20 45 52 52 4F 52 20 31 0A 00 68  ) = 0 ERROR 1..h
    69B0: 69 6A 00 00 00 A4 00 70 0A 03 63 A2 47 04 94 63  ij.....p..c.G..c
    69C0: 00 70 01 61 70 0A 64 62 A2 23 90 94 62 00 92 93  .p.ap.db.#..b...
    69D0: 7B 61 01 00 00 70 0A 3F 53 4D 42 31 70 74 62 01  {a...p.?SMB1ptb.
    69E0: 00 62 5B 21 0A 05 70 53 4D 42 31 61 A0 11 93 62  .b[!..pSMB1a...b
    69F0: 00 70 0A 02 53 4D 42 31 70 74 63 01 00 63 A1 04  .p..SMB1ptc..c..
    6A00: 70 00 63 A0 4B 07 90 93 62 00 93 63 00 A0 0A 93  p.c.K...b..c....
    6A10: 68 01 70 66 53 4D 42 32 A0 1A 93 7B 65 01 00 00  h.pfSMB2...{e...
    6A20: 4D 30 31 32 72 4D 30 38 34 0B 00 03 00 0A 02 00  M012rM084.......
    6A30: 0A 08 65 5B 27 4D 34 30 38 4D 34 36 30 0D 20 20  ..e['M408M460.  
    6A40: 4B 45 52 2D 41 53 4C 2D 43 70 6D 52 65 61 64 53  KER-ASL-CpmReadS
    6A50: 6D 62 75 73 42 79 74 65 20 28 25 64 2C 20 30 78  mbusByte (%d, 0x
    6A60: 25 58 2C 20 30 78 25 58 29 20 3D 20 30 20 45 52  %X, 0x%X) = 0 ER
    6A70: 52 4F 52 20 32 0A 00 68 69 6A 00 00 00 A4 00 70  ROR 2..hij.....p
    6A80: 0A 03 63 A2 4E 12 94 63 00 70 0A 1F 53 4D 42 30  ..c.N..c.p..SMB0
    6A90: 7D 79 69 01 00 01 53 4D 42 34 70 6A 53 4D 42 33  }yi...SMB4pjSMB3
    6AA0: 70 0A 08 53 4D 42 32 70 53 4D 42 32 61 70 0A 48  p..SMB2pSMB2ap.H
    6AB0: 53 4D 42 32 70 01 61 70 0B E8 03 64 A2 4E 0B 90  SMB2p.ap...d.N..
    6AC0: 94 64 00 93 7B 61 0A 0E 00 00 70 0B E8 03 62 A2  .d..{a....p...b.
    6AD0: 1C 90 94 62 00 92 93 7B 61 01 00 00 70 74 62 01  ...b...{a...ptb.
    6AE0: 00 62 5B 21 0A 05 70 53 4D 42 30 61 A0 4E 07 93  .b[!..pSMB0a.N..
    6AF0: 62 00 70 0A 02 53 4D 42 32 A0 0A 93 68 01 70 66  b.p..SMB2...h.pf
    6B00: 53 4D 42 32 A0 1A 93 7B 65 01 00 00 4D 30 31 32  SMB2...{e...M012
    6B10: 72 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08 65 5B  rM084.........e[
    6B20: 27 4D 34 30 38 4D 34 36 30 0D 20 20 4B 45 52 2D  'M408M460.  KER-
    6B30: 41 53 4C 2D 43 70 6D 52 65 61 64 53 6D 62 75 73  ASL-CpmReadSmbus
    6B40: 42 79 74 65 20 28 25 64 2C 20 30 78 25 58 2C 20  Byte (%d, 0x%X, 
    6B50: 30 78 25 58 29 20 3D 20 30 20 45 52 52 4F 52 20  0x%X) = 0 ERROR 
    6B60: 33 0A 00 68 69 6A 00 00 00 A4 00 70 74 64 01 00  3..hij.....ptd..
    6B70: 64 5B 21 0A 05 70 53 4D 42 30 61 A0 0F 92 93 7B  d[!..pSMB0a....{
    6B80: 61 0A 04 00 00 70 00 63 70 00 64 A1 26 A0 19 92  a....p.cp.d.&...
    6B90: 93 7B 61 0A 08 00 00 70 0A 08 53 4D 42 30 70 74  .{a....p..SMB0pt
    6BA0: 63 01 00 63 70 00 64 A1 0A 70 00 63 70 53 4D 42  c..cp.d..p.cpSMB
    6BB0: 35 64 70 0A 1F 53 4D 42 30 7D 53 4D 42 38 0A 20  5dp..SMB0}SMB8. 
    6BC0: 53 4D 42 38 A0 0A 93 68 01 70 66 53 4D 42 32 A0  SMB8...h.pfSMB2.
    6BD0: 1A 93 7B 65 01 00 00 4D 30 31 32 72 4D 30 38 34  ..{e...M012rM084
    6BE0: 0B 00 03 00 0A 02 00 0A 08 65 5B 27 4D 34 30 38  .........e['M408
    6BF0: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    6C00: 70 6D 52 65 61 64 53 6D 62 75 73 42 79 74 65 20  pmReadSmbusByte 
    6C10: 28 25 64 2C 20 30 78 25 58 2C 20 30 78 25 58 29  (%d, 0x%X, 0x%X)
    6C20: 20 3D 20 30 78 25 58 20 53 75 63 63 65 73 73 0A   = 0x%X Success.
    6C30: 00 68 69 6A 64 00 00 A4 64 14 4B 49 4D 34 31 30  .hijd...d.KIM410
    6C40: 0C 70 4D 30 34 39 4D 31 32 38 0A 94 60 A0 4F 05  .pM049M128..`.O.
    6C50: 93 60 01 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  .`.M460.  KER-AS
    6C60: 4C 2D 43 70 6D 57 72 69 74 65 53 6D 62 75 73 42  L-CpmWriteSmbusB
    6C70: 79 74 65 20 28 25 64 2C 20 30 78 25 58 2C 20 30  yte (%d, 0x%X, 0
    6C80: 78 25 58 2C 20 30 78 25 58 29 20 3D 20 30 20 53  x%X, 0x%X) = 0 S
    6C90: 6D 62 75 73 20 41 63 63 65 73 73 20 44 69 73 61  mbus Access Disa
    6CA0: 62 6C 65 0A 00 68 69 6A 6B 00 00 A4 00 5B 23 4D  ble..hijk....[#M
    6CB0: 34 30 38 FF FF 72 4D 34 31 34 79 68 0A 05 00 60  408..rM414yh...`
    6CC0: 5B 80 56 41 52 4D 01 60 0A 09 5B 81 33 56 41 52  [.VARM.`..[.3VAR
    6CD0: 4D 01 53 4D 42 30 08 53 4D 42 31 08 53 4D 42 32  M.SMB0.SMB1.SMB2
    6CE0: 08 53 4D 42 33 08 53 4D 42 34 08 53 4D 42 35 08  .SMB3.SMB4.SMB5.
    6CF0: 53 4D 42 36 08 53 4D 42 37 08 53 4D 42 38 08 70  SMB6.SMB7.SMB8.p
    6D00: 4D 30 34 39 72 4D 30 38 34 0B 00 03 00 0A 02 65  M049rM084......e
    6D10: A0 1D 93 7B 65 01 00 00 4D 30 31 32 72 4D 30 38  ...{e...M012rM08
    6D20: 34 0B 00 03 00 0A 02 00 0A 08 7D 65 01 00 A0 14  4.........}e....
    6D30: 93 68 01 70 53 4D 42 32 66 70 7B 66 0A 7F 00 53  .h.pSMB2fp{f...S
    6D40: 4D 42 32 70 00 61 70 0A 64 62 A2 29 90 94 62 00  MB2p.ap.db.)..b.
    6D50: 92 93 7B 61 0A 10 00 0A 10 7D 53 4D 42 38 0A 10  ..{a.....}SMB8..
    6D60: 53 4D 42 38 70 74 62 01 00 62 5B 21 0A 05 70 53  SMB8ptb..b[!..pS
    6D70: 4D 42 38 61 70 0A 03 63 A2 47 04 94 63 00 70 01  MB8ap..c.G..c.p.
    6D80: 61 70 0A 64 62 A2 23 90 94 62 00 92 93 7B 61 01  ap.db.#..b...{a.
    6D90: 00 00 70 0A 1F 53 4D 42 30 70 74 62 01 00 62 5B  ..p..SMB0ptb..b[
    6DA0: 21 0A 05 70 53 4D 42 30 61 A0 11 93 62 00 70 0A  !..pSMB0a...b.p.
    6DB0: 02 53 4D 42 32 70 74 63 01 00 63 A1 04 70 00 63  .SMB2ptc..c..p.c
    6DC0: A0 42 08 90 93 62 00 93 63 00 A0 0A 93 68 01 70  .B...b..c....h.p
    6DD0: 66 53 4D 42 32 A0 1A 93 7B 65 01 00 00 4D 30 31  fSMB2...{e...M01
    6DE0: 32 72 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08 65  2rM084.........e
    6DF0: 5B 27 4D 34 30 38 4D 34 36 30 0D 20 20 4B 45 52  ['M408M460.  KER
    6E00: 2D 41 53 4C 2D 43 70 6D 57 72 69 74 65 53 6D 62  -ASL-CpmWriteSmb
    6E10: 75 73 42 79 74 65 20 28 25 64 2C 20 30 78 25 58  usByte (%d, 0x%X
    6E20: 2C 20 30 78 25 58 2C 20 30 78 25 58 29 20 3D 20  , 0x%X, 0x%X) = 
    6E30: 30 20 45 52 52 4F 52 20 31 0A 00 68 69 6A 6B 00  0 ERROR 1..hijk.
    6E40: 00 A4 00 70 0A 03 63 A2 47 04 94 63 00 70 01 61  ...p..c.G..c.p.a
    6E50: 70 0A 64 62 A2 23 90 94 62 00 92 93 7B 61 01 00  p.db.#..b...{a..
    6E60: 00 70 0A 3F 53 4D 42 31 70 74 62 01 00 62 5B 21  .p.?SMB1ptb..b[!
    6E70: 0A 05 70 53 4D 42 31 61 A0 11 93 62 00 70 0A 02  ..pSMB1a...b.p..
    6E80: 53 4D 42 31 70 74 63 01 00 63 A1 04 70 00 63 A0  SMB1ptc..c..p.c.
    6E90: 42 08 90 93 62 00 93 63 00 A0 0A 93 68 01 70 66  B...b..c....h.pf
    6EA0: 53 4D 42 32 A0 1A 93 7B 65 01 00 00 4D 30 31 32  SMB2...{e...M012
    6EB0: 72 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08 65 5B  rM084.........e[
    6EC0: 27 4D 34 30 38 4D 34 36 30 0D 20 20 4B 45 52 2D  'M408M460.  KER-
    6ED0: 41 53 4C 2D 43 70 6D 57 72 69 74 65 53 6D 62 75  ASL-CpmWriteSmbu
    6EE0: 73 42 79 74 65 20 28 25 64 2C 20 30 78 25 58 2C  sByte (%d, 0x%X,
    6EF0: 20 30 78 25 58 2C 20 30 78 25 58 29 20 3D 20 30   0x%X, 0x%X) = 0
    6F00: 20 45 52 52 4F 52 20 32 0A 00 68 69 6A 6B 00 00   ERROR 2..hijk..
    6F10: A4 00 70 0A 03 63 A2 47 13 94 63 00 70 0A 1F 53  ..p..c.G..c.p..S
    6F20: 4D 42 30 70 79 69 01 00 53 4D 42 34 70 6A 53 4D  MB0pyi..SMB4pjSM
    6F30: 42 33 70 0A 08 53 4D 42 32 70 53 4D 42 32 61 70  B3p..SMB2pSMB2ap
    6F40: 6B 53 4D 42 35 70 0A 48 53 4D 42 32 70 01 61 70  kSMB5p.HSMB2p.ap
    6F50: 0B E8 03 64 A2 45 0C 90 94 64 00 93 7B 61 0A 0E  ...d.E...d..{a..
    6F60: 00 00 70 0B E8 03 62 A2 1C 90 94 62 00 92 93 7B  ..p...b....b...{
    6F70: 61 01 00 00 70 74 62 01 00 62 5B 21 0A 05 70 53  a...ptb..b[!..pS
    6F80: 4D 42 30 61 A0 45 08 93 62 00 70 0A 02 53 4D 42  MB0a.E..b.p..SMB
    6F90: 32 A0 0A 93 68 01 70 66 53 4D 42 32 A0 1A 93 7B  2...h.pfSMB2...{
    6FA0: 65 01 00 00 4D 30 31 32 72 4D 30 38 34 0B 00 03  e...M012rM084...
    6FB0: 00 0A 02 00 0A 08 65 5B 27 4D 34 30 38 4D 34 36  ......e['M408M46
    6FC0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 57  0.  KER-ASL-CpmW
    6FD0: 72 69 74 65 53 6D 62 75 73 42 79 74 65 20 28 25  riteSmbusByte (%
    6FE0: 64 2C 20 30 78 25 58 2C 20 30 78 25 58 2C 20 30  d, 0x%X, 0x%X, 0
    6FF0: 78 25 58 29 20 3D 20 30 20 45 52 52 4F 52 20 33  x%X) = 0 ERROR 3
    7000: 0A 00 68 69 6A 6B 00 00 A4 00 70 74 64 01 00 64  ..hijk....ptd..d
    7010: 5B 21 0A 05 70 53 4D 42 30 61 A0 0F 92 93 7B 61  [!..pSMB0a....{a
    7020: 0A 04 00 00 70 00 63 70 00 64 A1 23 A0 19 92 93  ....p.cp.d.#....
    7030: 7B 61 0A 08 00 00 70 0A 08 53 4D 42 30 70 74 63  {a....p..SMB0ptc
    7040: 01 00 63 70 00 64 A1 07 70 00 63 70 00 64 70 0A  ..cp.d..p.cp.dp.
    7050: 1F 53 4D 42 30 7D 53 4D 42 38 0A 20 53 4D 42 38  .SMB0}SMB8. SMB8
    7060: A0 0A 93 68 01 70 66 53 4D 42 32 A0 1A 93 7B 65  ...h.pfSMB2...{e
    7070: 01 00 00 4D 30 31 32 72 4D 30 38 34 0B 00 03 00  ...M012rM084....
    7080: 0A 02 00 0A 08 65 5B 27 4D 34 30 38 4D 34 36 30  .....e['M408M460
    7090: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 57 72  .  KER-ASL-CpmWr
    70A0: 69 74 65 53 6D 62 75 73 42 79 74 65 20 28 25 64  iteSmbusByte (%d
    70B0: 2C 20 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78  , 0x%X, 0x%X, 0x
    70C0: 25 58 29 20 53 75 63 63 65 73 73 0A 00 68 69 6A  %X) Success..hij
    70D0: 6B 00 00 A4 64 14 4B 14 4D 34 46 31 09 4D 34 36  k...d.K.M4F1.M46
    70E0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 43  0.  KER-ASL-CpmC
    70F0: 68 65 63 6B 45 78 70 61 6E 64 65 72 49 6E 70 75  heckExpanderInpu
    7100: 74 45 76 65 6E 74 20 28 30 78 25 58 29 20 53 74  tEvent (0x%X) St
    7110: 61 72 74 0A 00 68 00 00 00 00 00 70 00 65 A0 4D  art..h.....p.e.M
    7120: 0B 90 92 95 68 00 92 94 68 0A 03 70 4D 34 46 30  ....h...h..pM4F0
    7130: 60 A0 4A 0A 92 93 60 00 72 60 0A 10 60 72 60 77  `.J...`.r`..`r`w
    7140: 68 0A 26 00 60 A0 46 09 93 4D 30 34 39 60 00 68  h.&.`.F..M049`.h
    7150: 70 4D 30 34 39 60 0A 15 61 70 4D 30 34 39 60 0A  pM049`..apM049`.
    7160: 16 62 70 4D 30 34 39 60 0A 1E 63 70 4D 34 30 39  .bpM049`..cpM409
    7170: 61 62 00 64 4D 30 34 43 60 0A 1E 64 7F 63 64 64  ab.dM04C`..d.cdd
    7180: 7B 64 4D 30 34 39 60 0A 1C 64 7D 64 4D 30 34 39  {dM049`..d}dM049
    7190: 60 0A 1D 64 A0 43 04 92 95 4D 30 34 39 60 0A 17  `..d.C...M049`..
    71A0: 01 70 4D 30 34 39 60 0A 25 63 70 4D 34 30 39 61  .pM049`.%cpM409a
    71B0: 62 01 65 4D 30 34 43 60 0A 25 65 7F 63 65 65 7B  b.eM04C`.%e.cee{
    71C0: 65 4D 30 34 39 60 0A 23 65 7D 65 4D 30 34 39 60  eM049`.#e}eM049`
    71D0: 0A 24 65 79 65 0A 08 65 7D 64 65 65 4D 34 36 30  .$eye..e}deeM460
    71E0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 43 68  .  KER-ASL-CpmCh
    71F0: 65 63 6B 45 78 70 61 6E 64 65 72 49 6E 70 75 74  eckExpanderInput
    7200: 45 76 65 6E 74 20 28 30 78 25 58 29 20 3D 20 30  Event (0x%X) = 0
    7210: 78 25 58 20 45 6E 64 0A 00 68 65 00 00 00 00 A4  x%X End..he.....
    7220: 65 5B 01 4D 34 45 35 00 08 4D 34 45 37 0A 5A 08  e[.M4E5..M4E7.Z.
    7230: 4D 34 45 38 0A 5A 08 4D 34 45 39 0A 5A 08 4D 34  M4E8.Z.M4E9.Z.M4
    7240: 45 41 0C 5A 5A 5A 5A 08 4D 34 45 42 0C 5A 5A 5A  EA.ZZZZ.M4EB.ZZZ
    7250: 5A 08 4D 34 45 43 12 44 11 03 0A 02 12 44 07 05  Z.M4EC.D.....D..
    7260: 12 10 07 0A 06 0A 0F 0A 13 0A 10 0A 12 0A 14 0A  ................
    7270: 15 12 17 06 0D 49 32 43 30 00 0A 91 0A 92 00 0C  .....I2C0.......
    7280: 4A 1E D8 FE 0C 00 20 DC FE 12 17 06 0D 49 32 43  J..... ......I2C
    7290: 31 00 0A 93 0A 94 00 0C 4C 1E D8 FE 0C 00 30 DC  1.......L.....0.
    72A0: FE 12 17 06 0D 49 32 43 32 00 0A 71 0A 72 01 0C  .....I2C2..q.r..
    72B0: 4E 1E D8 FE 0C 00 40 DC FE 12 17 06 0D 49 32 43  N.....@......I2C
    72C0: 33 00 0A 13 0A 14 01 0C 50 1E D8 FE 0C 00 50 DC  3.......P.....P.
    72D0: FE 12 49 09 07 12 05 02 01 0A 11 12 17 06 0D 49  ..I............I
    72E0: 32 43 30 00 0A 91 0A 92 01 0C 4A 1E D8 FE 0C 00  2C0.......J.....
    72F0: 20 DC FE 12 17 06 0D 49 32 43 31 00 0A 93 0A 94   ......I2C1.....
    7300: 01 0C 4C 1E D8 FE 0C 00 30 DC FE 12 17 06 0D 49  ..L.....0......I
    7310: 32 43 32 00 0A 95 0A 96 01 0C 4E 1E D8 FE 0C 00  2C2.......N.....
    7320: 40 DC FE 12 17 06 0D 49 32 43 33 00 0A 97 0A 98  @......I2C3.....
    7330: 01 0C 50 1E D8 FE 0C 00 50 DC FE 12 17 06 0D 49  ..P.....P......I
    7340: 32 43 34 00 0A 0D 0A 0E 00 0C 52 1E D8 FE 0C 00  2C4.......R.....
    7350: 60 DC FE 12 17 06 0D 49 32 43 35 00 0A 13 0A 14  `......I2C5.....
    7360: 00 0C 54 1E D8 FE 0C 00 B0 DC FE 14 47 14 4D 34  ..T.........G.M4
    7370: 45 36 09 08 5F 54 5F 30 00 70 4D 30 38 35 60 70  E6.._T_0.pM085`p
    7380: 83 88 4D 34 45 43 00 00 61 70 01 62 70 00 67 A2  ..M4EC..ap.bp.g.
    7390: 3D 92 94 62 61 70 83 88 4D 34 45 43 62 00 63 70  =..bap..M4ECb.cp
    73A0: 83 88 63 00 00 64 70 83 88 64 00 00 65 70 01 66  ..c..dp..d..ep.f
    73B0: A2 14 92 94 66 65 A0 0C 93 83 88 64 66 00 60 70  ....fe.....df.`p
    73C0: 01 67 A5 75 66 A0 05 93 01 67 A5 75 62 A0 06 94  .g.uf....g.ub...
    73D0: 62 61 A4 00 70 01 62 70 87 63 61 A2 4C 07 01 70  ba..p.bp.ca.L..p
    73E0: 99 68 00 5F 54 5F 30 A0 0F 93 5F 54 5F 30 00 70  .h._T_0..._T_0.p
    73F0: 0D 49 32 43 30 00 60 A1 4F 05 A0 0F 93 5F 54 5F  .I2C0.`.O...._T_
    7400: 30 01 70 0D 49 32 43 31 00 60 A1 4C 04 A0 10 93  0.p.I2C1.`.L....
    7410: 5F 54 5F 30 0A 02 70 0D 49 32 43 32 00 60 A1 38  _T_0..p.I2C2.`.8
    7420: A0 10 93 5F 54 5F 30 0A 03 70 0D 49 32 43 33 00  ..._T_0..p.I2C3.
    7430: 60 A1 25 A0 10 93 5F 54 5F 30 0A 04 70 0D 49 32  `.%..._T_0..p.I2
    7440: 43 34 00 60 A1 12 A0 10 93 5F 54 5F 30 0A 05 70  C4.`....._T_0..p
    7450: 0D 49 32 43 35 00 60 A5 A2 1B 92 94 62 61 70 83  .I2C5.`.....bap.
    7460: 88 63 62 00 64 70 83 88 64 00 00 65 A0 05 93 65  .cb.dp..d..e...e
    7470: 60 A5 75 62 A0 06 94 62 61 A4 00 70 83 88 64 01  `.ub...ba..p..d.
    7480: 00 4D 34 45 37 70 83 88 64 0A 02 00 4D 34 45 38  .M4E7p..d...M4E8
    7490: 70 83 88 64 0A 03 00 4D 34 45 39 70 83 88 64 0A  p..d...M4E9p..d.
    74A0: 04 00 4D 34 45 41 70 83 88 64 0A 05 00 4D 34 45  ..M4EAp..d...M4E
    74B0: 42 A4 01 14 46 69 4D 34 45 30 0D 70 4D 34 45 36  B...FiM4E0.pM4E6
    74C0: 68 60 A0 08 93 60 00 A4 0B 00 FF 08 52 54 46 46  h`...`......RTFF
    74D0: 11 05 0B 00 01 00 70 4D 34 45 41 60 70 4D 34 45  ......pM4EA`pM4E
    74E0: 42 61 5B 80 56 41 52 30 00 60 0A 02 5B 81 2E 56  Ba[.VAR0.`..[..V
    74F0: 41 52 30 01 41 44 54 44 02 41 44 50 53 01 41 44  AR0.ADTD.ADPS.AD
    7500: 50 44 01 41 44 53 4F 01 41 44 53 43 01 41 44 53  PD.ADSO.ADSC.ADS
    7510: 52 01 41 44 49 53 01 41 44 44 53 03 5B 80 56 41  R.ADIS.ADDS.[.VA
    7520: 52 31 00 61 0B 00 01 5B 81 4C 08 56 41 52 31 03  R1.a...[.L.VAR1.
    7530: 49 43 30 30 20 49 43 30 34 20 00 40 04 49 43 31  IC00 IC04 .@.IC1
    7540: 30 20 49 43 31 34 20 49 43 31 38 20 49 43 31 43  0 IC14 IC18 IC1C
    7550: 20 49 43 32 30 20 00 40 06 49 43 33 30 20 49 43   IC20 .@.IC30 IC
    7560: 33 34 20 49 43 33 38 20 49 43 33 43 20 49 43 34  34 IC38 IC3C IC4
    7570: 30 20 49 43 34 34 20 49 43 34 38 20 00 40 04 49  0 IC44 IC48 .@.I
    7580: 43 35 34 20 00 40 0A 49 43 36 43 20 49 43 37 30  C54 .@.IC6C IC70
    7590: 20 49 43 37 34 20 49 43 37 38 20 49 43 37 43 20   IC74 IC78 IC7C 
    75A0: 49 43 38 30 20 00 40 0C 49 43 39 43 20 00 40 2A  IC80 .@.IC9C .@*
    75B0: 49 43 46 34 20 08 42 55 46 46 11 06 0A 03 00 00  ICF4 .BUFF......
    75C0: 00 8C 42 55 46 46 00 41 4F 41 43 8C 42 55 46 46  ..BUFF.AOAC.BUFF
    75D0: 01 49 53 43 4C 8C 42 55 46 46 0A 02 49 53 44 41  .ISCL.BUFF..ISDA
    75E0: 5B 23 4D 34 45 35 FF FF 70 0C A0 86 01 00 61 70  [#M4E5..p.....ap
    75F0: 00 60 70 41 44 54 44 41 4F 41 43 70 4D 30 31 31  .`pADTDAOACpM011
    7600: 0C 00 0D D8 FE 4D 34 45 37 00 0A 08 49 53 43 4C  .....M4E7...ISCL
    7610: 70 4D 30 31 31 0C 00 0D D8 FE 4D 34 45 38 00 0A  pM011.....M4E8..
    7620: 08 49 53 44 41 4D 30 31 32 0C 00 0D D8 FE 4D 34  .ISDAM012.....M4
    7630: 45 37 00 0A 08 4D 34 45 39 4D 30 31 32 0C 00 0D  E7...M4E9M012...
    7640: D8 FE 4D 34 45 38 00 0A 08 4D 34 45 39 70 41 4F  ..M4E8...M4E9pAO
    7650: 41 43 62 A0 35 93 62 0A 03 70 00 41 44 54 44 70  ACb.5.b..p.ADTDp
    7660: 01 41 44 50 44 70 41 44 44 53 63 A2 1D 92 93 63  .ADPDpADDSc....c
    7670: 0A 07 76 61 5B 21 0A 0A 70 41 44 44 53 63 A0 0A  ..va[!..pADDSc..
    7680: 93 61 00 70 0B 01 FF 60 A5 A0 47 05 93 60 00 70  .a.p...`..G..`.p
    7690: 49 43 37 30 62 A2 4B 04 93 0A 20 7B 62 0A 20 00  IC70b.K... {b. .
    76A0: A0 34 93 61 00 4D 34 36 30 0D 20 20 49 32 63 54  .4.a.M460.  I2cT
    76B0: 69 6D 65 6F 75 74 20 66 6F 72 20 49 44 45 20 3A  imeout for IDE :
    76C0: 20 28 30 78 25 58 29 0A 00 62 00 00 00 00 00 70   (0x%X)..b.....p
    76D0: 0B 02 FF 60 A5 70 49 43 37 30 62 76 61 5B 21 0A  ...`.pIC70bva[!.
    76E0: 0A A0 44 06 93 60 00 70 00 49 43 36 43 70 49 43  ..D..`.p.IC6CpIC
    76F0: 39 43 62 A2 42 05 92 93 00 7B 62 01 00 A0 3C 93  9Cb.B....{b...<.
    7700: 61 00 4D 34 36 30 0D 20 20 49 32 63 54 69 6D 65  a.M460.  I2cTime
    7710: 6F 75 74 20 66 6F 72 20 66 49 32 63 44 69 73 61  out for fI2cDisa
    7720: 62 6C 65 20 3A 20 28 30 78 25 58 29 0A 00 62 00  ble : (0x%X)..b.
    7730: 00 00 00 00 70 0B 03 FF 60 A5 70 49 43 39 43 62  ....p...`.pIC9Cb
    7740: 76 61 5B 21 0A 0A A0 4A 04 93 60 00 70 0A 63 49  va[!...J..`.p.cI
    7750: 43 30 30 70 69 49 43 30 34 70 0B 85 02 49 43 31  C00piIC04p...IC1
    7760: 34 70 0B 57 03 49 43 31 38 70 0C 40 00 40 00 49  4p.W.IC18p.@.@.I
    7770: 43 37 43 70 00 49 43 33 38 70 00 49 43 33 34 70  C7Cp.IC38p.IC34p
    7780: 00 49 43 33 30 70 49 43 34 30 62 70 49 43 35 34  .IC30pIC40bpIC54
    7790: 62 A0 41 06 93 60 00 70 01 49 43 36 43 70 49 43  b.A..`.p.IC6CpIC
    77A0: 39 43 62 A2 4F 04 93 00 7B 62 01 00 A0 3A 93 61  9Cb.O...{b...:.a
    77B0: 00 4D 34 36 30 0D 20 20 49 32 63 54 69 6D 65 6F  .M460.  I2cTimeo
    77C0: 75 74 20 66 6F 72 20 49 32 63 45 6E 61 62 6C 65  ut for I2cEnable
    77D0: 20 3A 20 28 30 78 25 58 29 0A 00 62 00 00 00 00   : (0x%X)..b....
    77E0: 00 70 0B 04 FF 60 A5 70 49 43 39 43 62 76 61 5B  .p...`.pIC9Cbva[
    77F0: 21 0A 0A A0 40 1E 93 60 00 70 6B 63 70 6A 64 70  !...@..`.pkcpjdp
    7800: 00 65 70 00 66 70 0A 02 67 A2 4A 1C 94 72 63 64  .ep.fp..g.J..rcd
    7810: 00 00 A0 3A 93 61 00 4D 34 36 30 0D 20 20 49 32  ...:.a.M460.  I2
    7820: 63 54 69 6D 65 6F 75 74 20 66 6F 72 20 54 78 52  cTimeout for TxR
    7830: 78 3A 20 28 30 78 25 58 2C 20 30 78 25 58 29 0A  x: (0x%X, 0x%X).
    7840: 00 63 64 00 00 00 00 70 0B 06 FF 60 A5 70 49 43  .cd....p...`.pIC
    7850: 37 30 62 A0 16 92 93 7B 62 0A 08 00 00 70 49 43  70b....{b....pIC
    7860: 31 30 62 76 61 5B 21 0A 0A 9F 70 49 43 37 34 62  10bva[!...pIC74b
    7870: A0 0C 92 93 62 00 76 61 5B 21 0A 0A 9F A0 18 94  ....b.va[!......
    7880: 63 01 70 7B 99 83 88 6C 65 00 00 0A FF 00 49 43  c.p{...le.....IC
    7890: 31 30 76 63 75 65 A1 45 07 A0 1D 90 93 63 01 92  10vcue.E.....c..
    78A0: 93 64 00 70 7B 99 83 88 6C 65 00 00 0A FF 00 49  .d.p{...le.....I
    78B0: 43 31 30 76 63 75 65 A1 44 05 A0 21 90 93 63 01  C10vcue.D..!..c.
    78C0: 93 64 00 70 7D 7B 99 83 88 6C 65 00 00 0A FF 00  .d.p}{...le.....
    78D0: 0B 00 02 00 49 43 31 30 76 63 75 65 A1 2F A0 15  ....IC10vcue./..
    78E0: 90 93 63 00 94 64 01 70 0B 00 01 49 43 31 30 70  ..c..d.p...IC10p
    78F0: 01 66 76 64 A1 17 A0 15 90 93 63 00 93 64 01 70  .fvd......c..d.p
    7900: 0B 00 03 49 43 31 30 70 01 66 76 64 76 61 5B 21  ...IC10p.fvdva[!
    7910: 0A 0A 70 49 43 33 34 62 A0 44 04 92 93 00 7B 62  ..pIC34b.D....{b
    7920: 0A 40 00 70 49 43 35 34 67 70 49 43 38 30 62 4D  .@.pIC54gpIC80bM
    7930: 34 36 30 0D 20 20 49 32 63 54 58 20 41 62 72 74  460.  I2cTX Abrt
    7940: 20 53 6F 75 72 63 65 3A 20 28 30 78 25 58 29 0A   Source: (0x%X).
    7950: 00 62 00 00 00 00 00 70 0B 05 FF 60 A5 A0 48 05  .b.....p...`..H.
    7960: 92 93 66 00 70 49 43 37 30 62 A2 4B 04 92 93 7B  ..f.pIC70b.K...{
    7970: 62 0A 08 00 0A 08 70 49 43 37 30 62 A0 33 93 61  b.....pIC70b.3.a
    7980: 00 4D 34 36 30 0D 20 20 49 32 63 54 69 6D 65 6F  .M460.  I2cTimeo
    7990: 75 74 20 66 6F 72 20 52 78 20 3A 20 28 30 78 25  ut for Rx : (0x%
    79A0: 58 29 0A 00 62 00 00 00 00 00 70 0B 07 FF 60 A5  X)..b.....p...`.
    79B0: 76 61 5B 21 0A 0A A0 1D 92 93 66 00 70 49 43 31  va[!......f.pIC1
    79C0: 30 62 70 62 88 52 54 46 46 67 00 76 61 5B 21 0A  0bpb.RTFFg.va[!.
    79D0: 14 70 00 66 5B 27 4D 34 45 35 A0 48 05 93 60 00  .p.f['M4E5.H..`.
    79E0: 70 49 43 37 30 62 A2 4C 04 93 0A 20 7B 62 0A 20  pIC70b.L... {b. 
    79F0: 00 A0 35 93 61 00 4D 34 36 30 0D 20 20 49 32 63  ..5.a.M460.  I2c
    7A00: 54 69 6D 65 6F 75 74 20 66 6F 72 20 49 44 45 32  Timeout for IDE2
    7A10: 20 3A 20 28 30 78 25 58 29 0A 00 62 00 00 00 00   : (0x%X)..b....
    7A20: 00 70 0B 08 FF 60 A5 70 49 43 37 30 62 76 61 5B  .p...`.pIC70bva[
    7A30: 21 0A 0A A0 4C 06 90 94 60 0B 04 FF 95 60 0B 08  !...L...`....`..
    7A40: FF 70 00 49 43 36 43 70 49 43 39 43 62 A2 42 05  .p.IC6CpIC9Cb.B.
    7A50: 92 93 00 7B 62 01 00 A0 3C 93 61 00 4D 34 36 30  ...{b...<.a.M460
    7A60: 0D 20 20 49 32 63 54 69 6D 65 6F 75 74 20 66 6F  .  I2cTimeout fo
    7A70: 72 20 66 49 32 63 44 69 73 61 62 6C 65 20 3A 20  r fI2cDisable : 
    7A80: 28 30 78 25 58 29 0A 00 62 00 00 00 00 00 70 0B  (0x%X)..b.....p.
    7A90: 09 FF 60 A5 70 49 43 39 43 62 76 61 5B 21 0A 0A  ..`.pIC9Cbva[!..
    7AA0: 70 41 4F 41 43 63 A0 46 06 93 63 0A 03 70 00 41  pAOACc.F..c..p.A
    7AB0: 44 50 44 70 41 44 44 53 62 A2 4C 04 92 93 62 00  DPDpADDSb.L...b.
    7AC0: A0 39 93 61 00 4D 34 36 30 0D 20 20 49 32 63 54  .9.a.M460.  I2cT
    7AD0: 69 6D 65 6F 75 74 20 66 6F 72 20 41 4F 41 43 20  imeout for AOAC 
    7AE0: 4F 66 66 20 3A 20 28 30 78 25 58 29 0A 00 62 00  Off : (0x%X)..b.
    7AF0: 00 00 00 00 70 0B 10 FF 60 A5 76 61 5B 21 0A 0A  ....p...`.va[!..
    7B00: 70 41 44 44 53 62 70 0A 03 41 44 54 44 4D 30 31  pADDSbp..ADTDM01
    7B10: 32 0C 00 0D D8 FE 4D 34 45 37 00 0A 08 49 53 43  2.....M4E7...ISC
    7B20: 4C 4D 30 31 32 0C 00 0D D8 FE 4D 34 45 38 00 0A  LM012.....M4E8..
    7B30: 08 49 53 44 41 8B 52 54 46 46 00 53 54 41 54 70  .ISDA.RTFF.STATp
    7B40: 60 53 54 41 54 A4 52 54 46 46 14 46 09 4D 34 45  `STAT.RTFF.F.M4E
    7B50: 31 0B 08 52 54 46 46 11 05 0B 00 01 00 08 57 52  1..RTFF.......WR
    7B60: 46 46 11 03 01 00 8C 57 52 46 46 00 57 44 41 54  FF.....WRFF.WDAT
    7B70: 70 6A 57 44 41 54 70 4D 34 45 30 68 69 01 01 57  pjWDATpM4E0hi..W
    7B80: 52 46 46 52 54 46 46 8B 52 54 46 46 00 53 54 41  RFFRTFF.RTFF.STA
    7B90: 54 8C 52 54 46 46 0A 02 52 44 41 54 70 53 54 41  T.RTFF..RDATpSTA
    7BA0: 54 60 70 52 44 41 54 61 4D 34 36 30 0D 20 20 52  T`pRDATaM460.  R
    7BB0: 65 61 64 20 49 32 43 20 42 79 74 65 20 28 30 78  ead I2C Byte (0x
    7BC0: 25 58 2C 20 30 78 25 58 29 0A 00 60 61 00 00 00  %X, 0x%X)..`a...
    7BD0: 00 A0 0D 93 60 00 A4 7B 52 44 41 54 0A FF 00 A4  ....`..{RDAT....
    7BE0: 00 14 45 07 4D 34 45 32 0C 08 57 52 46 46 11 05  ..E.M4E2..WRFF..
    7BF0: 0A 02 00 00 8C 57 52 46 46 00 57 44 41 31 8C 57  .....WRFF.WDA1.W
    7C00: 52 46 46 01 57 44 41 32 70 6A 57 44 41 31 70 7B  RFF.WDA2pjWDA1p{
    7C10: 6B 0A FF 00 57 44 41 32 70 4D 34 45 30 68 69 00  k...WDA2pM4E0hi.
    7C20: 0A 02 57 52 46 46 60 8B 60 00 53 54 41 54 70 53  ..WRFF`.`.STATpS
    7C30: 54 41 54 61 4D 34 36 30 0D 20 20 57 72 69 74 65  TATaM460.  Write
    7C40: 20 49 32 43 20 42 79 74 65 28 30 78 25 58 29 0A   I2C Byte(0x%X).
    7C50: 00 61 00 00 00 00 00 10 47 08 5C 2E 5F 53 42 5F  .a......G.\._SB_
    7C60: 47 50 49 4F 14 4A 07 58 49 4E 49 00 4D 34 36 30  GPIO.J.XINI.M460
    7C70: 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F 53 42 2E  .  KER-ASL-\_SB.
    7C80: 47 50 49 4F 2E 5F 49 4E 49 20 53 74 61 72 74 0A  GPIO._INI Start.
    7C90: 00 00 00 00 00 00 00 A0 1E 92 93 4D 34 46 30 00  ...........M4F0.
    7CA0: 4D 34 46 31 00 4D 34 46 31 01 4D 34 46 31 0A 02  M4F1.M4F1.M4F1..
    7CB0: 4D 34 46 31 0A 03 4D 34 36 30 0D 20 20 4B 45 52  M4F1..M460.  KER
    7CC0: 2D 41 53 4C 2D 5C 5F 53 42 2E 47 50 49 4F 2E 5F  -ASL-\_SB.GPIO._
    7CD0: 49 4E 49 20 45 6E 64 0A 00 00 00 00 00 00 00 10  INI End.........
    7CE0: 8D 90 01 5C 5F 47 50 45 14 4E 5C 53 49 45 30 08  ...\_GPE.N\SIE0.
    7CF0: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C  M460.  KER-ASL-\
    7D00: 5F 47 50 45 2E 53 49 45 30 20 53 74 61 72 74 0A  _GPE.SIE0 Start.
    7D10: 00 00 00 00 00 00 00 A0 42 04 5B 12 5C 2E 5F 47  ........B.[.\._G
    7D20: 50 45 42 49 45 30 00 4D 34 36 30 0D 20 20 4B 45  PEBIE0.M460.  KE
    7D30: 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F  R-ASL-Callout \_
    7D40: 47 50 45 2E 42 49 45 30 0A 00 00 00 00 00 00 00  GPE.BIE0........
    7D50: 5C 2E 5F 47 50 45 42 49 45 30 70 4D 34 46 31 00  \._GPEBIE0pM4F1.
    7D60: 60 A0 4B 04 93 7B 60 01 00 01 A0 42 04 5B 12 5C  `.K..{`....B.[.\
    7D70: 2E 5F 47 50 45 53 50 30 30 00 4D 34 36 30 0D 20  ._GPESP00.M460. 
    7D80: 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74   KER-ASL-Callout
    7D90: 20 5C 5F 47 50 45 2E 53 50 30 30 0A 00 00 00 00   \_GPE.SP00.....
    7DA0: 00 00 00 5C 2E 5F 47 50 45 53 50 30 30 A0 4D 04  ...\._GPESP00.M.
    7DB0: 93 7B 60 0A 02 00 0A 02 A0 42 04 5B 12 5C 2E 5F  .{`......B.[.\._
    7DC0: 47 50 45 53 50 30 31 00 4D 34 36 30 0D 20 20 4B  GPESP01.M460.  K
    7DD0: 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C  ER-ASL-Callout \
    7DE0: 5F 47 50 45 2E 53 50 30 31 0A 00 00 00 00 00 00  _GPE.SP01.......
    7DF0: 00 5C 2E 5F 47 50 45 53 50 30 31 A0 4D 04 93 7B  .\._GPESP01.M..{
    7E00: 60 0A 04 00 0A 04 A0 42 04 5B 12 5C 2E 5F 47 50  `......B.[.\._GP
    7E10: 45 53 50 30 32 00 4D 34 36 30 0D 20 20 4B 45 52  ESP02.M460.  KER
    7E20: 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47  -ASL-Callout \_G
    7E30: 50 45 2E 53 50 30 32 0A 00 00 00 00 00 00 00 5C  PE.SP02........\
    7E40: 2E 5F 47 50 45 53 50 30 32 A0 4D 04 93 7B 60 0A  ._GPESP02.M..{`.
    7E50: 08 00 0A 08 A0 42 04 5B 12 5C 2E 5F 47 50 45 53  .....B.[.\._GPES
    7E60: 50 30 33 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41  P03.M460.  KER-A
    7E70: 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45  SL-Callout \_GPE
    7E80: 2E 53 50 30 33 0A 00 00 00 00 00 00 00 5C 2E 5F  .SP03........\._
    7E90: 47 50 45 53 50 30 33 A0 4D 04 93 7B 60 0A 10 00  GPESP03.M..{`...
    7EA0: 0A 10 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50 30  ...B.[.\._GPESP0
    7EB0: 34 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  4.M460.  KER-ASL
    7EC0: 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53  -Callout \_GPE.S
    7ED0: 50 30 34 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50  P04........\._GP
    7EE0: 45 53 50 30 34 A0 4D 04 93 7B 60 0A 20 00 0A 20  ESP04.M..{`. .. 
    7EF0: A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50 30 35 00  .B.[.\._GPESP05.
    7F00: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    7F10: 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50 30  allout \_GPE.SP0
    7F20: 35 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 53  5........\._GPES
    7F30: 50 30 35 A0 4D 04 93 7B 60 0A 40 00 0A 40 A0 42  P05.M..{`.@..@.B
    7F40: 04 5B 12 5C 2E 5F 47 50 45 53 50 30 36 00 4D 34  .[.\._GPESP06.M4
    7F50: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  60.  KER-ASL-Cal
    7F60: 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50 30 36 0A  lout \_GPE.SP06.
    7F70: 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 30  .......\._GPESP0
    7F80: 36 A0 4D 04 93 7B 60 0A 80 00 0A 80 A0 42 04 5B  6.M..{`......B.[
    7F90: 12 5C 2E 5F 47 50 45 53 50 30 37 00 4D 34 36 30  .\._GPESP07.M460
    7FA0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    7FB0: 75 74 20 5C 5F 47 50 45 2E 53 50 30 37 0A 00 00  ut \_GPE.SP07...
    7FC0: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 30 37 A0  .....\._GPESP07.
    7FD0: 4F 04 93 7B 60 0B 00 01 00 0B 00 01 A0 42 04 5B  O..{`........B.[
    7FE0: 12 5C 2E 5F 47 50 45 53 50 31 30 00 4D 34 36 30  .\._GPESP10.M460
    7FF0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    8000: 75 74 20 5C 5F 47 50 45 2E 53 50 31 30 0A 00 00  ut \_GPE.SP10...
    8010: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 30 A0  .....\._GPESP10.
    8020: 4F 04 93 7B 60 0B 00 02 00 0B 00 02 A0 42 04 5B  O..{`........B.[
    8030: 12 5C 2E 5F 47 50 45 53 50 31 31 00 4D 34 36 30  .\._GPESP11.M460
    8040: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    8050: 75 74 20 5C 5F 47 50 45 2E 53 50 31 31 0A 00 00  ut \_GPE.SP11...
    8060: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 31 A0  .....\._GPESP11.
    8070: 4F 04 93 7B 60 0B 00 04 00 0B 00 04 A0 42 04 5B  O..{`........B.[
    8080: 12 5C 2E 5F 47 50 45 53 50 31 32 00 4D 34 36 30  .\._GPESP12.M460
    8090: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    80A0: 75 74 20 5C 5F 47 50 45 2E 53 50 31 32 0A 00 00  ut \_GPE.SP12...
    80B0: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 32 A0  .....\._GPESP12.
    80C0: 4F 04 93 7B 60 0B 00 08 00 0B 00 08 A0 42 04 5B  O..{`........B.[
    80D0: 12 5C 2E 5F 47 50 45 53 50 31 33 00 4D 34 36 30  .\._GPESP13.M460
    80E0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    80F0: 75 74 20 5C 5F 47 50 45 2E 53 50 31 33 0A 00 00  ut \_GPE.SP13...
    8100: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 33 A0  .....\._GPESP13.
    8110: 4F 04 93 7B 60 0B 00 10 00 0B 00 10 A0 42 04 5B  O..{`........B.[
    8120: 12 5C 2E 5F 47 50 45 53 50 31 34 00 4D 34 36 30  .\._GPESP14.M460
    8130: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    8140: 75 74 20 5C 5F 47 50 45 2E 53 50 31 34 0A 00 00  ut \_GPE.SP14...
    8150: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 34 A0  .....\._GPESP14.
    8160: 4F 04 93 7B 60 0B 00 20 00 0B 00 20 A0 42 04 5B  O..{`.. ... .B.[
    8170: 12 5C 2E 5F 47 50 45 53 50 31 35 00 4D 34 36 30  .\._GPESP15.M460
    8180: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    8190: 75 74 20 5C 5F 47 50 45 2E 53 50 31 35 0A 00 00  ut \_GPE.SP15...
    81A0: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 35 A0  .....\._GPESP15.
    81B0: 4F 04 93 7B 60 0B 00 40 00 0B 00 40 A0 42 04 5B  O..{`..@...@.B.[
    81C0: 12 5C 2E 5F 47 50 45 53 50 31 36 00 4D 34 36 30  .\._GPESP16.M460
    81D0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    81E0: 75 74 20 5C 5F 47 50 45 2E 53 50 31 36 0A 00 00  ut \_GPE.SP16...
    81F0: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 36 A0  .....\._GPESP16.
    8200: 4F 04 93 7B 60 0B 00 80 00 0B 00 80 A0 42 04 5B  O..{`........B.[
    8210: 12 5C 2E 5F 47 50 45 53 50 31 37 00 4D 34 36 30  .\._GPESP17.M460
    8220: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    8230: 75 74 20 5C 5F 47 50 45 2E 53 50 31 37 0A 00 00  ut \_GPE.SP17...
    8240: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 37 A0  .....\._GPESP17.
    8250: 42 04 5B 12 5C 2E 5F 47 50 45 41 49 45 30 00 4D  B.[.\._GPEAIE0.M
    8260: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61  460.  KER-ASL-Ca
    8270: 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 41 49 45 30  llout \_GPE.AIE0
    8280: 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 41 49  ........\._GPEAI
    8290: 45 30 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  E0M460.  KER-ASL
    82A0: 2D 5C 5F 47 50 45 2E 53 49 45 30 20 45 6E 64 0A  -\_GPE.SIE0 End.
    82B0: 00 00 00 00 00 00 00 14 4E 5C 53 49 45 31 08 4D  ........N\SIE1.M
    82C0: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F  460.  KER-ASL-\_
    82D0: 47 50 45 2E 53 49 45 31 20 53 74 61 72 74 0A 00  GPE.SIE1 Start..
    82E0: 00 00 00 00 00 00 A0 42 04 5B 12 5C 2E 5F 47 50  .......B.[.\._GP
    82F0: 45 42 49 45 31 00 4D 34 36 30 0D 20 20 4B 45 52  EBIE1.M460.  KER
    8300: 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47  -ASL-Callout \_G
    8310: 50 45 2E 42 49 45 31 0A 00 00 00 00 00 00 00 5C  PE.BIE1........\
    8320: 2E 5F 47 50 45 42 49 45 31 70 4D 34 46 31 01 60  ._GPEBIE1pM4F1.`
    8330: A0 4B 04 93 7B 60 01 00 01 A0 42 04 5B 12 5C 2E  .K..{`....B.[.\.
    8340: 5F 47 50 45 53 50 32 30 00 4D 34 36 30 0D 20 20  _GPESP20.M460.  
    8350: 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20  KER-ASL-Callout 
    8360: 5C 5F 47 50 45 2E 53 50 32 30 0A 00 00 00 00 00  \_GPE.SP20......
    8370: 00 00 5C 2E 5F 47 50 45 53 50 32 30 A0 4D 04 93  ..\._GPESP20.M..
    8380: 7B 60 0A 02 00 0A 02 A0 42 04 5B 12 5C 2E 5F 47  {`......B.[.\._G
    8390: 50 45 53 50 32 31 00 4D 34 36 30 0D 20 20 4B 45  PESP21.M460.  KE
    83A0: 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F  R-ASL-Callout \_
    83B0: 47 50 45 2E 53 50 32 31 0A 00 00 00 00 00 00 00  GPE.SP21........
    83C0: 5C 2E 5F 47 50 45 53 50 32 31 A0 4D 04 93 7B 60  \._GPESP21.M..{`
    83D0: 0A 04 00 0A 04 A0 42 04 5B 12 5C 2E 5F 47 50 45  ......B.[.\._GPE
    83E0: 53 50 32 32 00 4D 34 36 30 0D 20 20 4B 45 52 2D  SP22.M460.  KER-
    83F0: 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50  ASL-Callout \_GP
    8400: 45 2E 53 50 32 32 0A 00 00 00 00 00 00 00 5C 2E  E.SP22........\.
    8410: 5F 47 50 45 53 50 32 32 A0 4D 04 93 7B 60 0A 08  _GPESP22.M..{`..
    8420: 00 0A 08 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50  ....B.[.\._GPESP
    8430: 32 33 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  23.M460.  KER-AS
    8440: 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E  L-Callout \_GPE.
    8450: 53 50 32 33 0A 00 00 00 00 00 00 00 5C 2E 5F 47  SP23........\._G
    8460: 50 45 53 50 32 33 A0 4D 04 93 7B 60 0A 10 00 0A  PESP23.M..{`....
    8470: 10 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50 32 34  ..B.[.\._GPESP24
    8480: 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  .M460.  KER-ASL-
    8490: 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50  Callout \_GPE.SP
    84A0: 32 34 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45  24........\._GPE
    84B0: 53 50 32 34 A0 4D 04 93 7B 60 0A 20 00 0A 20 A0  SP24.M..{`. .. .
    84C0: 42 04 5B 12 5C 2E 5F 47 50 45 53 50 32 35 00 4D  B.[.\._GPESP25.M
    84D0: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61  460.  KER-ASL-Ca
    84E0: 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50 32 35  llout \_GPE.SP25
    84F0: 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50  ........\._GPESP
    8500: 32 35 A0 4D 04 93 7B 60 0A 40 00 0A 40 A0 42 04  25.M..{`.@..@.B.
    8510: 5B 12 5C 2E 5F 47 50 45 53 50 32 36 00 4D 34 36  [.\._GPESP26.M46
    8520: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C  0.  KER-ASL-Call
    8530: 6F 75 74 20 5C 5F 47 50 45 2E 53 50 32 36 0A 00  out \_GPE.SP26..
    8540: 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 32 36  ......\._GPESP26
    8550: A0 4D 04 93 7B 60 0A 80 00 0A 80 A0 42 04 5B 12  .M..{`......B.[.
    8560: 5C 2E 5F 47 50 45 53 50 32 37 00 4D 34 36 30 0D  \._GPESP27.M460.
    8570: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8580: 74 20 5C 5F 47 50 45 2E 53 50 32 37 0A 00 00 00  t \_GPE.SP27....
    8590: 00 00 00 00 5C 2E 5F 47 50 45 53 50 32 37 A0 4F  ....\._GPESP27.O
    85A0: 04 93 7B 60 0B 00 01 00 0B 00 01 A0 42 04 5B 12  ..{`........B.[.
    85B0: 5C 2E 5F 47 50 45 53 50 33 30 00 4D 34 36 30 0D  \._GPESP30.M460.
    85C0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    85D0: 74 20 5C 5F 47 50 45 2E 53 50 33 30 0A 00 00 00  t \_GPE.SP30....
    85E0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 30 A0 4F  ....\._GPESP30.O
    85F0: 04 93 7B 60 0B 00 02 00 0B 00 02 A0 42 04 5B 12  ..{`........B.[.
    8600: 5C 2E 5F 47 50 45 53 50 33 31 00 4D 34 36 30 0D  \._GPESP31.M460.
    8610: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8620: 74 20 5C 5F 47 50 45 2E 53 50 33 31 0A 00 00 00  t \_GPE.SP31....
    8630: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 31 A0 4F  ....\._GPESP31.O
    8640: 04 93 7B 60 0B 00 04 00 0B 00 04 A0 42 04 5B 12  ..{`........B.[.
    8650: 5C 2E 5F 47 50 45 53 50 33 32 00 4D 34 36 30 0D  \._GPESP32.M460.
    8660: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8670: 74 20 5C 5F 47 50 45 2E 53 50 33 32 0A 00 00 00  t \_GPE.SP32....
    8680: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 32 A0 4F  ....\._GPESP32.O
    8690: 04 93 7B 60 0B 00 08 00 0B 00 08 A0 42 04 5B 12  ..{`........B.[.
    86A0: 5C 2E 5F 47 50 45 53 50 33 33 00 4D 34 36 30 0D  \._GPESP33.M460.
    86B0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    86C0: 74 20 5C 5F 47 50 45 2E 53 50 33 33 0A 00 00 00  t \_GPE.SP33....
    86D0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 33 A0 4F  ....\._GPESP33.O
    86E0: 04 93 7B 60 0B 00 10 00 0B 00 10 A0 42 04 5B 12  ..{`........B.[.
    86F0: 5C 2E 5F 47 50 45 53 50 33 34 00 4D 34 36 30 0D  \._GPESP34.M460.
    8700: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8710: 74 20 5C 5F 47 50 45 2E 53 50 33 34 0A 00 00 00  t \_GPE.SP34....
    8720: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 34 A0 4F  ....\._GPESP34.O
    8730: 04 93 7B 60 0B 00 20 00 0B 00 20 A0 42 04 5B 12  ..{`.. ... .B.[.
    8740: 5C 2E 5F 47 50 45 53 50 33 35 00 4D 34 36 30 0D  \._GPESP35.M460.
    8750: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8760: 74 20 5C 5F 47 50 45 2E 53 50 33 35 0A 00 00 00  t \_GPE.SP35....
    8770: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 35 A0 4F  ....\._GPESP35.O
    8780: 04 93 7B 60 0B 00 40 00 0B 00 40 A0 42 04 5B 12  ..{`..@...@.B.[.
    8790: 5C 2E 5F 47 50 45 53 50 33 36 00 4D 34 36 30 0D  \._GPESP36.M460.
    87A0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    87B0: 74 20 5C 5F 47 50 45 2E 53 50 33 36 0A 00 00 00  t \_GPE.SP36....
    87C0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 36 A0 4F  ....\._GPESP36.O
    87D0: 04 93 7B 60 0B 00 80 00 0B 00 80 A0 42 04 5B 12  ..{`........B.[.
    87E0: 5C 2E 5F 47 50 45 53 50 33 37 00 4D 34 36 30 0D  \._GPESP37.M460.
    87F0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8800: 74 20 5C 5F 47 50 45 2E 53 50 33 37 0A 00 00 00  t \_GPE.SP37....
    8810: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 37 A0 42  ....\._GPESP37.B
    8820: 04 5B 12 5C 2E 5F 47 50 45 41 49 45 31 00 4D 34  .[.\._GPEAIE1.M4
    8830: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  60.  KER-ASL-Cal
    8840: 6C 6F 75 74 20 5C 5F 47 50 45 2E 41 49 45 31 0A  lout \_GPE.AIE1.
    8850: 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 41 49 45  .......\._GPEAIE
    8860: 31 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  1M460.  KER-ASL-
    8870: 5C 5F 47 50 45 2E 53 49 45 31 20 45 6E 64 0A 00  \_GPE.SIE1 End..
    8880: 00 00 00 00 00 00 14 4F 5C 53 49 45 32 08 4D 34  .......O\SIE2.M4
    8890: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F 47  60.  KER-ASL-\_G
    88A0: 50 45 2E 53 49 45 32 20 53 74 61 72 74 0A 00 00  PE.SIE2 Start...
    88B0: 00 00 00 00 00 A0 42 04 5B 12 5C 2E 5F 47 50 45  ......B.[.\._GPE
    88C0: 42 49 45 32 00 4D 34 36 30 0D 20 20 4B 45 52 2D  BIE2.M460.  KER-
    88D0: 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50  ASL-Callout \_GP
    88E0: 45 2E 42 49 45 32 0A 00 00 00 00 00 00 00 5C 2E  E.BIE2........\.
    88F0: 5F 47 50 45 42 49 45 32 70 4D 34 46 31 0A 02 60  _GPEBIE2pM4F1..`
    8900: A0 4B 04 93 7B 60 01 00 01 A0 42 04 5B 12 5C 2E  .K..{`....B.[.\.
    8910: 5F 47 50 45 53 50 34 30 00 4D 34 36 30 0D 20 20  _GPESP40.M460.  
    8920: 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20  KER-ASL-Callout 
    8930: 5C 5F 47 50 45 2E 53 50 34 30 0A 00 00 00 00 00  \_GPE.SP40......
    8940: 00 00 5C 2E 5F 47 50 45 53 50 34 30 A0 4D 04 93  ..\._GPESP40.M..
    8950: 7B 60 0A 02 00 0A 02 A0 42 04 5B 12 5C 2E 5F 47  {`......B.[.\._G
    8960: 50 45 53 50 34 31 00 4D 34 36 30 0D 20 20 4B 45  PESP41.M460.  KE
    8970: 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F  R-ASL-Callout \_
    8980: 47 50 45 2E 53 50 34 31 0A 00 00 00 00 00 00 00  GPE.SP41........
    8990: 5C 2E 5F 47 50 45 53 50 34 31 A0 4D 04 93 7B 60  \._GPESP41.M..{`
    89A0: 0A 04 00 0A 04 A0 42 04 5B 12 5C 2E 5F 47 50 45  ......B.[.\._GPE
    89B0: 53 50 34 32 00 4D 34 36 30 0D 20 20 4B 45 52 2D  SP42.M460.  KER-
    89C0: 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50  ASL-Callout \_GP
    89D0: 45 2E 53 50 34 32 0A 00 00 00 00 00 00 00 5C 2E  E.SP42........\.
    89E0: 5F 47 50 45 53 50 34 32 A0 4D 04 93 7B 60 0A 08  _GPESP42.M..{`..
    89F0: 00 0A 08 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50  ....B.[.\._GPESP
    8A00: 34 33 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  43.M460.  KER-AS
    8A10: 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E  L-Callout \_GPE.
    8A20: 53 50 34 33 0A 00 00 00 00 00 00 00 5C 2E 5F 47  SP43........\._G
    8A30: 50 45 53 50 34 33 A0 4D 04 93 7B 60 0A 10 00 0A  PESP43.M..{`....
    8A40: 10 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50 34 34  ..B.[.\._GPESP44
    8A50: 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  .M460.  KER-ASL-
    8A60: 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50  Callout \_GPE.SP
    8A70: 34 34 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45  44........\._GPE
    8A80: 53 50 34 34 A0 4D 04 93 7B 60 0A 20 00 0A 20 A0  SP44.M..{`. .. .
    8A90: 42 04 5B 12 5C 2E 5F 47 50 45 53 50 34 35 00 4D  B.[.\._GPESP45.M
    8AA0: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61  460.  KER-ASL-Ca
    8AB0: 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50 34 35  llout \_GPE.SP45
    8AC0: 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50  ........\._GPESP
    8AD0: 34 35 A0 4D 04 93 7B 60 0A 40 00 0A 40 A0 42 04  45.M..{`.@..@.B.
    8AE0: 5B 12 5C 2E 5F 47 50 45 53 50 34 36 00 4D 34 36  [.\._GPESP46.M46
    8AF0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C  0.  KER-ASL-Call
    8B00: 6F 75 74 20 5C 5F 47 50 45 2E 53 50 34 36 0A 00  out \_GPE.SP46..
    8B10: 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 34 36  ......\._GPESP46
    8B20: A0 4D 04 93 7B 60 0A 80 00 0A 80 A0 42 04 5B 12  .M..{`......B.[.
    8B30: 5C 2E 5F 47 50 45 53 50 34 37 00 4D 34 36 30 0D  \._GPESP47.M460.
    8B40: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8B50: 74 20 5C 5F 47 50 45 2E 53 50 34 37 0A 00 00 00  t \_GPE.SP47....
    8B60: 00 00 00 00 5C 2E 5F 47 50 45 53 50 34 37 A0 4F  ....\._GPESP47.O
    8B70: 04 93 7B 60 0B 00 01 00 0B 00 01 A0 42 04 5B 12  ..{`........B.[.
    8B80: 5C 2E 5F 47 50 45 53 50 35 30 00 4D 34 36 30 0D  \._GPESP50.M460.
    8B90: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8BA0: 74 20 5C 5F 47 50 45 2E 53 50 35 30 0A 00 00 00  t \_GPE.SP50....
    8BB0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 30 A0 4F  ....\._GPESP50.O
    8BC0: 04 93 7B 60 0B 00 02 00 0B 00 02 A0 42 04 5B 12  ..{`........B.[.
    8BD0: 5C 2E 5F 47 50 45 53 50 35 31 00 4D 34 36 30 0D  \._GPESP51.M460.
    8BE0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8BF0: 74 20 5C 5F 47 50 45 2E 53 50 35 31 0A 00 00 00  t \_GPE.SP51....
    8C00: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 31 A0 4F  ....\._GPESP51.O
    8C10: 04 93 7B 60 0B 00 04 00 0B 00 04 A0 42 04 5B 12  ..{`........B.[.
    8C20: 5C 2E 5F 47 50 45 53 50 35 32 00 4D 34 36 30 0D  \._GPESP52.M460.
    8C30: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8C40: 74 20 5C 5F 47 50 45 2E 53 50 35 32 0A 00 00 00  t \_GPE.SP52....
    8C50: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 32 A0 4F  ....\._GPESP52.O
    8C60: 04 93 7B 60 0B 00 08 00 0B 00 08 A0 42 04 5B 12  ..{`........B.[.
    8C70: 5C 2E 5F 47 50 45 53 50 35 33 00 4D 34 36 30 0D  \._GPESP53.M460.
    8C80: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8C90: 74 20 5C 5F 47 50 45 2E 53 50 35 33 0A 00 00 00  t \_GPE.SP53....
    8CA0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 33 A0 4F  ....\._GPESP53.O
    8CB0: 04 93 7B 60 0B 00 10 00 0B 00 10 A0 42 04 5B 12  ..{`........B.[.
    8CC0: 5C 2E 5F 47 50 45 53 50 35 34 00 4D 34 36 30 0D  \._GPESP54.M460.
    8CD0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8CE0: 74 20 5C 5F 47 50 45 2E 53 50 35 34 0A 00 00 00  t \_GPE.SP54....
    8CF0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 34 A0 4F  ....\._GPESP54.O
    8D00: 04 93 7B 60 0B 00 20 00 0B 00 20 A0 42 04 5B 12  ..{`.. ... .B.[.
    8D10: 5C 2E 5F 47 50 45 53 50 35 35 00 4D 34 36 30 0D  \._GPESP55.M460.
    8D20: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8D30: 74 20 5C 5F 47 50 45 2E 53 50 35 35 0A 00 00 00  t \_GPE.SP55....
    8D40: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 35 A0 4F  ....\._GPESP55.O
    8D50: 04 93 7B 60 0B 00 40 00 0B 00 40 A0 42 04 5B 12  ..{`..@...@.B.[.
    8D60: 5C 2E 5F 47 50 45 53 50 35 36 00 4D 34 36 30 0D  \._GPESP56.M460.
    8D70: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8D80: 74 20 5C 5F 47 50 45 2E 53 50 35 36 0A 00 00 00  t \_GPE.SP56....
    8D90: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 36 A0 4F  ....\._GPESP56.O
    8DA0: 04 93 7B 60 0B 00 80 00 0B 00 80 A0 42 04 5B 12  ..{`........B.[.
    8DB0: 5C 2E 5F 47 50 45 53 50 35 37 00 4D 34 36 30 0D  \._GPESP57.M460.
    8DC0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8DD0: 74 20 5C 5F 47 50 45 2E 53 50 35 37 0A 00 00 00  t \_GPE.SP57....
    8DE0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 37 A0 42  ....\._GPESP57.B
    8DF0: 04 5B 12 5C 2E 5F 47 50 45 41 49 45 32 00 4D 34  .[.\._GPEAIE2.M4
    8E00: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  60.  KER-ASL-Cal
    8E10: 6C 6F 75 74 20 5C 5F 47 50 45 2E 41 49 45 32 0A  lout \_GPE.AIE2.
    8E20: 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 41 49 45  .......\._GPEAIE
    8E30: 32 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  2M460.  KER-ASL-
    8E40: 5C 5F 47 50 45 2E 53 49 45 32 20 45 6E 64 0A 00  \_GPE.SIE2 End..
    8E50: 00 00 00 00 00 00 14 4F 5C 53 49 45 33 08 4D 34  .......O\SIE3.M4
    8E60: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F 47  60.  KER-ASL-\_G
    8E70: 50 45 2E 53 49 45 33 20 53 74 61 72 74 0A 00 00  PE.SIE3 Start...
    8E80: 00 00 00 00 00 A0 42 04 5B 12 5C 2E 5F 47 50 45  ......B.[.\._GPE
    8E90: 42 49 45 33 00 4D 34 36 30 0D 20 20 4B 45 52 2D  BIE3.M460.  KER-
    8EA0: 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50  ASL-Callout \_GP
    8EB0: 45 2E 42 49 45 33 0A 00 00 00 00 00 00 00 5C 2E  E.BIE3........\.
    8EC0: 5F 47 50 45 42 49 45 33 70 4D 34 46 31 0A 03 60  _GPEBIE3pM4F1..`
    8ED0: A0 4B 04 93 7B 60 01 00 01 A0 42 04 5B 12 5C 2E  .K..{`....B.[.\.
    8EE0: 5F 47 50 45 53 50 36 30 00 4D 34 36 30 0D 20 20  _GPESP60.M460.  
    8EF0: 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20  KER-ASL-Callout 
    8F00: 5C 5F 47 50 45 2E 53 50 36 30 0A 00 00 00 00 00  \_GPE.SP60......
    8F10: 00 00 5C 2E 5F 47 50 45 53 50 36 30 A0 4D 04 93  ..\._GPESP60.M..
    8F20: 7B 60 0A 02 00 0A 02 A0 42 04 5B 12 5C 2E 5F 47  {`......B.[.\._G
    8F30: 50 45 53 50 36 31 00 4D 34 36 30 0D 20 20 4B 45  PESP61.M460.  KE
    8F40: 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F  R-ASL-Callout \_
    8F50: 47 50 45 2E 53 50 36 31 0A 00 00 00 00 00 00 00  GPE.SP61........
    8F60: 5C 2E 5F 47 50 45 53 50 36 31 A0 4D 04 93 7B 60  \._GPESP61.M..{`
    8F70: 0A 04 00 0A 04 A0 42 04 5B 12 5C 2E 5F 47 50 45  ......B.[.\._GPE
    8F80: 53 50 36 32 00 4D 34 36 30 0D 20 20 4B 45 52 2D  SP62.M460.  KER-
    8F90: 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50  ASL-Callout \_GP
    8FA0: 45 2E 53 50 36 32 0A 00 00 00 00 00 00 00 5C 2E  E.SP62........\.
    8FB0: 5F 47 50 45 53 50 36 32 A0 4D 04 93 7B 60 0A 08  _GPESP62.M..{`..
    8FC0: 00 0A 08 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50  ....B.[.\._GPESP
    8FD0: 36 33 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  63.M460.  KER-AS
    8FE0: 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E  L-Callout \_GPE.
    8FF0: 53 50 36 33 0A 00 00 00 00 00 00 00 5C 2E 5F 47  SP63........\._G
    9000: 50 45 53 50 36 33 A0 4D 04 93 7B 60 0A 10 00 0A  PESP63.M..{`....
    9010: 10 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50 36 34  ..B.[.\._GPESP64
    9020: 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  .M460.  KER-ASL-
    9030: 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50  Callout \_GPE.SP
    9040: 36 34 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45  64........\._GPE
    9050: 53 50 36 34 A0 4D 04 93 7B 60 0A 20 00 0A 20 A0  SP64.M..{`. .. .
    9060: 42 04 5B 12 5C 2E 5F 47 50 45 53 50 36 35 00 4D  B.[.\._GPESP65.M
    9070: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61  460.  KER-ASL-Ca
    9080: 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50 36 35  llout \_GPE.SP65
    9090: 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50  ........\._GPESP
    90A0: 36 35 A0 4D 04 93 7B 60 0A 40 00 0A 40 A0 42 04  65.M..{`.@..@.B.
    90B0: 5B 12 5C 2E 5F 47 50 45 53 50 36 36 00 4D 34 36  [.\._GPESP66.M46
    90C0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C  0.  KER-ASL-Call
    90D0: 6F 75 74 20 5C 5F 47 50 45 2E 53 50 36 36 0A 00  out \_GPE.SP66..
    90E0: 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 36 36  ......\._GPESP66
    90F0: A0 4D 04 93 7B 60 0A 80 00 0A 80 A0 42 04 5B 12  .M..{`......B.[.
    9100: 5C 2E 5F 47 50 45 53 50 36 37 00 4D 34 36 30 0D  \._GPESP67.M460.
    9110: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9120: 74 20 5C 5F 47 50 45 2E 53 50 36 37 0A 00 00 00  t \_GPE.SP67....
    9130: 00 00 00 00 5C 2E 5F 47 50 45 53 50 36 37 A0 4F  ....\._GPESP67.O
    9140: 04 93 7B 60 0B 00 01 00 0B 00 01 A0 42 04 5B 12  ..{`........B.[.
    9150: 5C 2E 5F 47 50 45 53 50 37 30 00 4D 34 36 30 0D  \._GPESP70.M460.
    9160: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9170: 74 20 5C 5F 47 50 45 2E 53 50 37 30 0A 00 00 00  t \_GPE.SP70....
    9180: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 30 A0 4F  ....\._GPESP70.O
    9190: 04 93 7B 60 0B 00 02 00 0B 00 02 A0 42 04 5B 12  ..{`........B.[.
    91A0: 5C 2E 5F 47 50 45 53 50 37 31 00 4D 34 36 30 0D  \._GPESP71.M460.
    91B0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    91C0: 74 20 5C 5F 47 50 45 2E 53 50 37 31 0A 00 00 00  t \_GPE.SP71....
    91D0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 31 A0 4F  ....\._GPESP71.O
    91E0: 04 93 7B 60 0B 00 04 00 0B 00 04 A0 42 04 5B 12  ..{`........B.[.
    91F0: 5C 2E 5F 47 50 45 53 50 37 32 00 4D 34 36 30 0D  \._GPESP72.M460.
    9200: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9210: 74 20 5C 5F 47 50 45 2E 53 50 37 32 0A 00 00 00  t \_GPE.SP72....
    9220: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 32 A0 4F  ....\._GPESP72.O
    9230: 04 93 7B 60 0B 00 08 00 0B 00 08 A0 42 04 5B 12  ..{`........B.[.
    9240: 5C 2E 5F 47 50 45 53 50 37 33 00 4D 34 36 30 0D  \._GPESP73.M460.
    9250: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9260: 74 20 5C 5F 47 50 45 2E 53 50 37 33 0A 00 00 00  t \_GPE.SP73....
    9270: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 33 A0 4F  ....\._GPESP73.O
    9280: 04 93 7B 60 0B 00 10 00 0B 00 10 A0 42 04 5B 12  ..{`........B.[.
    9290: 5C 2E 5F 47 50 45 53 50 37 34 00 4D 34 36 30 0D  \._GPESP74.M460.
    92A0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    92B0: 74 20 5C 5F 47 50 45 2E 53 50 37 34 0A 00 00 00  t \_GPE.SP74....
    92C0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 34 A0 4F  ....\._GPESP74.O
    92D0: 04 93 7B 60 0B 00 20 00 0B 00 20 A0 42 04 5B 12  ..{`.. ... .B.[.
    92E0: 5C 2E 5F 47 50 45 53 50 37 35 00 4D 34 36 30 0D  \._GPESP75.M460.
    92F0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9300: 74 20 5C 5F 47 50 45 2E 53 50 37 35 0A 00 00 00  t \_GPE.SP75....
    9310: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 35 A0 4F  ....\._GPESP75.O
    9320: 04 93 7B 60 0B 00 40 00 0B 00 40 A0 42 04 5B 12  ..{`..@...@.B.[.
    9330: 5C 2E 5F 47 50 45 53 50 37 36 00 4D 34 36 30 0D  \._GPESP76.M460.
    9340: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9350: 74 20 5C 5F 47 50 45 2E 53 50 37 36 0A 00 00 00  t \_GPE.SP76....
    9360: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 36 A0 4F  ....\._GPESP76.O
    9370: 04 93 7B 60 0B 00 80 00 0B 00 80 A0 42 04 5B 12  ..{`........B.[.
    9380: 5C 2E 5F 47 50 45 53 50 37 37 00 4D 34 36 30 0D  \._GPESP77.M460.
    9390: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    93A0: 74 20 5C 5F 47 50 45 2E 53 50 37 37 0A 00 00 00  t \_GPE.SP77....
    93B0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 37 A0 42  ....\._GPESP77.B
    93C0: 04 5B 12 5C 2E 5F 47 50 45 41 49 45 33 00 4D 34  .[.\._GPEAIE3.M4
    93D0: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  60.  KER-ASL-Cal
    93E0: 6C 6F 75 74 20 5C 5F 47 50 45 2E 41 49 45 33 0A  lout \_GPE.AIE3.
    93F0: 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 41 49 45  .......\._GPEAIE
    9400: 33 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  3M460.  KER-ASL-
    9410: 5C 5F 47 50 45 2E 53 49 45 33 20 45 6E 64 0A 00  \_GPE.SIE3 End..
    9420: 00 00 00 00 00 00 08 4D 34 44 32 11 03 0A 08 14  .......M4D2.....
    9430: 4D 1B 58 4C 30 42 08 70 11 03 0A 08 63 8B 63 00  M.XL0B.p....c.c.
    9440: 4D 32 35 34 8C 63 0A 02 4D 32 35 35 8A 63 0A 03  M254.c..M255.c..
    9450: 4D 32 35 36 70 00 4D 32 35 36 70 0A 07 4D 32 35  M256p.M256p..M25
    9460: 34 70 0A 30 4D 32 35 35 A0 44 18 5B 12 5C 2E 5F  4p.0M255.D.[.\._
    9470: 53 42 5F 41 4C 49 42 00 4D 34 36 30 0D 20 20 4B  SB_ALIB.M460.  K
    9480: 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 53 42  ER-ASL-Call \_SB
    9490: 2E 41 4C 49 42 20 28 30 78 30 43 2C 20 30 78 25  .ALIB (0x0C, 0x%
    94A0: 58 29 0A 00 63 00 00 00 00 00 70 5C 2E 5F 53 42  X)..c.....p\._SB
    94B0: 5F 41 4C 49 42 0A 0C 63 64 70 64 4D 34 44 32 8A  _ALIB..cdpdM4D2.
    94C0: 4D 34 44 32 00 4D 34 44 30 8A 4D 34 44 32 0A 04  M4D2.M4D0.M4D2..
    94D0: 4D 34 44 31 99 4D 34 44 30 60 99 4D 34 44 31 61  M4D1.M4D0`.M4D1a
    94E0: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 41  M460.  KER-ASL-A
    94F0: 4C 49 42 20 52 65 74 75 72 6E 20 44 61 74 61 20  LIB Return Data 
    9500: 28 30 78 25 58 2C 20 30 78 25 58 29 0A 00 60 61  (0x%X, 0x%X)..`a
    9510: 00 00 00 00 A0 42 06 93 60 00 A0 4C 05 5B 12 5C  .....B..`..L.[.\
    9520: 2E 5F 53 42 5F 41 50 41 44 00 70 61 88 5C 2F 03  ._SB_APAD.pa.\/.
    9530: 5F 53 42 5F 41 50 41 44 4D 34 34 36 01 00 4D 34  _SB_APADM446..M4
    9540: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 4E 6F 74  60.  KER-ASL-Not
    9550: 69 66 79 20 5C 5F 53 42 2E 41 50 41 44 20 30 78  ify \_SB.APAD 0x
    9560: 38 30 0A 00 00 00 00 00 00 00 86 5C 2E 5F 53 42  80.........\._SB
    9570: 5F 41 50 41 44 0A 80 A1 45 07 A0 30 93 60 01 4D  _APAD...E..0.`.M
    9580: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 4E 6F  460.  KER-ASL-No
    9590: 74 69 66 79 20 5C 5F 53 42 2E 41 50 41 44 20 30  tify \_SB.APAD 0
    95A0: 78 38 34 0A 00 00 00 00 00 00 00 A1 41 04 A0 3E  x84.........A..>
    95B0: 93 60 0A 02 4D 34 36 30 0D 20 20 4B 45 52 2D 41  .`..M460.  KER-A
    95C0: 53 4C 2D 4E 6F 74 69 66 79 20 5C 5F 53 42 2E 41  SL-Notify \_SB.A
    95D0: 50 41 44 20 30 78 38 35 0A 00 00 00 00 00 00 00  PAD 0x85........
    95E0: A0 0C 5B 12 4E 46 50 43 00 4E 46 50 43 10 41 24  ..[.NFPC.NFPC.A$
    95F0: 5C 5F 53 42 5F 08 4D 41 43 4F 00 5B 82 42 23 41  \_SB_.MACO.[.B#A
    9600: 50 41 44 08 5F 48 49 44 0D 41 43 50 49 30 30 30  PAD._HID.ACPI000
    9610: 43 00 08 4D 34 34 36 12 04 02 01 00 14 40 0D 5F  C..M446......@._
    9620: 53 54 41 00 A0 47 09 5C 5F 4F 53 49 0D 50 72 6F  STA..G.\_OSI.Pro
    9630: 63 65 73 73 6F 72 20 41 67 67 72 65 67 61 74 6F  cessor Aggregato
    9640: 72 20 44 65 76 69 63 65 00 70 4D 30 34 41 4D 31  r Device.pM04AM1
    9650: 32 38 0A 91 60 A0 37 93 7B 60 0A 80 00 0A 80 4D  28..`.7.{`.....M
    9660: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F  460.  KER-ASL-\_
    9670: 53 42 2E 41 50 41 44 2E 5F 53 54 41 20 3D 20 30  SB.APAD._STA = 0
    9680: 78 46 0A 00 00 00 00 00 00 00 A4 0A 0F A1 2E 4D  xF.............M
    9690: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F  460.  KER-ASL-\_
    96A0: 53 42 2E 41 50 41 44 2E 5F 53 54 41 20 3D 20 30  SB.APAD._STA = 0
    96B0: 78 30 0A 00 00 00 00 00 00 00 A4 00 A1 30 4D 34  x0...........0M4
    96C0: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 31 2D 5C  60.  KER-ASL-1-\
    96D0: 5F 53 42 2E 41 50 41 44 2E 5F 53 54 41 20 3D 20  _SB.APAD._STA = 
    96E0: 30 78 30 0A 00 00 00 00 00 00 00 A4 00 14 43 0D  0x0...........C.
    96F0: 5F 49 4E 49 00 4D 34 36 30 0D 20 20 4B 45 52 2D  _INI.M460.  KER-
    9700: 41 53 4C 2D 5C 5F 53 42 2E 41 50 41 44 2E 5F 49  ASL-\_SB.APAD._I
    9710: 4E 49 0A 00 00 00 00 00 00 00 70 4D 30 34 41 4D  NI........pM04AM
    9720: 31 32 38 0A 91 60 A0 4A 09 90 93 7B 60 0A C0 00  128..`.J...{`...
    9730: 0A C0 92 93 7B 60 0B 00 FF 00 0B 00 FF 70 11 03  ....{`.......p..
    9740: 0A 08 63 8B 63 00 4D 32 35 34 8C 63 0A 02 4D 32  ..c.c.M254.c..M2
    9750: 35 35 8A 63 0A 03 4D 32 35 36 70 7A 60 0A 08 00  55.c..M256pz`...
    9760: 4D 32 35 36 70 0A 07 4D 32 35 34 70 0A 31 4D 32  M256p..M254p.1M2
    9770: 35 35 A0 4E 04 5B 12 5C 2E 5F 53 42 5F 41 4C 49  55.N.[.\._SB_ALI
    9780: 42 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  B.M460.  KER-ASL
    9790: 2D 43 61 6C 6C 20 5C 5F 53 42 2E 41 4C 49 42 20  -Call \_SB.ALIB 
    97A0: 28 30 78 30 43 2C 20 30 78 25 58 29 0A 00 63 00  (0x0C, 0x%X)..c.
    97B0: 00 00 00 00 5C 2E 5F 53 42 5F 41 4C 49 42 0A 0C  ....\._SB_ALIB..
    97C0: 63 14 4D 06 5F 50 55 52 00 99 83 88 4D 34 34 36  c.M._PUR....M446
    97D0: 00 00 60 99 83 88 4D 34 34 36 01 00 61 4D 34 36  ..`...M446..aM46
    97E0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F 53 42  0.  KER-ASL-\_SB
    97F0: 2E 41 50 41 44 2E 5F 50 55 52 20 52 65 74 75 72  .APAD._PUR Retur
    9800: 6E 20 50 61 63 6B 61 67 65 20 28 32 29 20 28 30  n Package (2) (0
    9810: 78 25 58 2C 20 30 78 25 58 29 20 74 6F 20 4F 53  x%X, 0x%X) to OS
    9820: 50 4D 0A 00 60 61 00 00 00 00 A4 4D 34 34 36     PM..`a.....M446


[-- Attachment #5: working-tables.dump --]
[-- Type: application/octet-stream, Size: 2216656 bytes --]

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 53 1B 00 00 02 83 41 4D 44 00 00 00  SSDTS.....AMD...
    0010: 43 50 4D 52 41 53 00 00 01 00 00 00 49 4E 54 4C  CPMRAS......INTL
    0020: 31 03 23 20 A0 43 A2 00 15 5C 2F 03 5F 53 42 5F  1.# .C...\/._SB_
    0030: 53 30 44 30 44 30 41 30 06 00 15 5C 2F 03 5F 53  S0D0D0A0...\/._S
    0040: 42 5F 53 30 44 30 44 30 41 31 06 00 15 5C 2F 03  B_S0D0D0A1...\/.
    0050: 5F 53 42 5F 53 30 44 30 44 30 41 32 06 00 15 5C  _SB_S0D0D0A2...\
    0060: 2F 03 5F 53 42 5F 53 30 44 30 44 30 41 33 06 00  /._SB_S0D0D0A3..
    0070: 15 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30 41 34  .\/._SB_S0D0D0A4
    0080: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  ...\/._SB_S0D0D0
    0090: 41 35 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 30  A5...\/._SB_S0D0
    00A0: 44 30 41 36 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D0A6...\/._SB_S0
    00B0: 44 30 44 30 41 37 06 00 15 5C 2F 03 5F 53 42 5F  D0D0A7...\/._SB_
    00C0: 53 30 44 30 44 30 41 38 06 00 15 5C 2F 03 5F 53  S0D0D0A8...\/._S
    00D0: 42 5F 53 30 44 30 44 30 42 30 06 00 15 5C 2F 03  B_S0D0D0B0...\/.
    00E0: 5F 53 42 5F 53 30 44 30 44 30 42 31 06 00 15 5C  _SB_S0D0D0B1...\
    00F0: 2F 03 5F 53 42 5F 53 30 44 30 44 30 42 32 06 00  /._SB_S0D0D0B2..
    0100: 15 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30 42 33  .\/._SB_S0D0D0B3
    0110: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  ...\/._SB_S0D0D0
    0120: 42 34 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 30  B4...\/._SB_S0D0
    0130: 44 30 42 35 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D0B5...\/._SB_S0
    0140: 44 30 44 30 42 36 06 00 15 5C 2F 03 5F 53 42 5F  D0D0B6...\/._SB_
    0150: 53 30 44 30 44 30 42 37 06 00 15 5C 2F 03 5F 53  S0D0D0B7...\/._S
    0160: 42 5F 53 30 44 30 44 30 42 38 06 00 15 5C 2F 03  B_S0D0D0B8...\/.
    0170: 5F 53 42 5F 53 30 44 31 44 31 41 30 06 00 15 5C  _SB_S0D1D1A0...\
    0180: 2F 03 5F 53 42 5F 53 30 44 31 44 31 41 31 06 00  /._SB_S0D1D1A1..
    0190: 15 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31 41 32  .\/._SB_S0D1D1A2
    01A0: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  ...\/._SB_S0D1D1
    01B0: 41 33 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 31  A3...\/._SB_S0D1
    01C0: 44 31 41 34 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D1A4...\/._SB_S0
    01D0: 44 31 44 31 41 35 06 00 15 5C 2F 03 5F 53 42 5F  D1D1A5...\/._SB_
    01E0: 53 30 44 31 44 31 41 36 06 00 15 5C 2F 03 5F 53  S0D1D1A6...\/._S
    01F0: 42 5F 53 30 44 31 44 31 41 37 06 00 15 5C 2F 03  B_S0D1D1A7...\/.
    0200: 5F 53 42 5F 53 30 44 31 44 31 41 38 06 00 15 5C  _SB_S0D1D1A8...\
    0210: 2F 03 5F 53 42 5F 53 30 44 31 44 31 42 30 06 00  /._SB_S0D1D1B0..
    0220: 15 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31 42 31  .\/._SB_S0D1D1B1
    0230: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  ...\/._SB_S0D1D1
    0240: 42 32 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 31  B2...\/._SB_S0D1
    0250: 44 31 42 33 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D1B3...\/._SB_S0
    0260: 44 31 44 31 42 34 06 00 15 5C 2F 03 5F 53 42 5F  D1D1B4...\/._SB_
    0270: 53 30 44 31 44 31 42 35 06 00 15 5C 2F 03 5F 53  S0D1D1B5...\/._S
    0280: 42 5F 53 30 44 31 44 31 42 36 06 00 15 5C 2F 03  B_S0D1D1B6...\/.
    0290: 5F 53 42 5F 53 30 44 31 44 31 42 37 06 00 15 5C  _SB_S0D1D1B7...\
    02A0: 2F 03 5F 53 42 5F 53 30 44 31 44 31 42 38 06 00  /._SB_S0D1D1B8..
    02B0: 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32 41 30  .\/._SB_S0D2D2A0
    02C0: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  ...\/._SB_S0D2D2
    02D0: 41 31 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 32  A1...\/._SB_S0D2
    02E0: 44 32 41 32 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D2A2...\/._SB_S0
    02F0: 44 32 44 32 41 33 06 00 15 5C 2F 03 5F 53 42 5F  D2D2A3...\/._SB_
    0300: 53 30 44 32 44 32 41 34 06 00 15 5C 2F 03 5F 53  S0D2D2A4...\/._S
    0310: 42 5F 53 30 44 32 44 32 41 35 06 00 15 5C 2F 03  B_S0D2D2A5...\/.
    0320: 5F 53 42 5F 53 30 44 32 44 32 41 36 06 00 15 5C  _SB_S0D2D2A6...\
    0330: 2F 03 5F 53 42 5F 53 30 44 32 44 32 41 37 06 00  /._SB_S0D2D2A7..
    0340: 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32 41 38  .\/._SB_S0D2D2A8
    0350: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  ...\/._SB_S0D2D2
    0360: 42 30 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 32  B0...\/._SB_S0D2
    0370: 44 32 42 31 06 00 15 5C 2F 03 5F 53 42 5F 53 30  D2B1...\/._SB_S0
    0380: 44 32 44 32 42 32 06 00 15 5C 2F 03 5F 53 42 5F  D2D2B2...\/._SB_
    0390: 53 30 44 32 44 32 42 33 06 00 15 5C 2F 03 5F 53  S0D2D2B3...\/._S
    03A0: 42 5F 53 30 44 32 44 32 42 34 06 00 15 5C 2F 03  B_S0D2D2B4...\/.
    03B0: 5F 53 42 5F 53 30 44 32 44 32 42 35 06 00 15 5C  _SB_S0D2D2B5...\
    03C0: 2F 03 5F 53 42 5F 53 30 44 32 44 32 42 36 06 00  /._SB_S0D2D2B6..
    03D0: 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32 42 37  .\/._SB_S0D2D2B7
    03E0: 06 00 15 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  ...\/._SB_S0D2D2
    03F0: 42 38 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30  B8...\/._SB_PCI0
    0400: 44 33 41 30 06 00 15 5C 2F 03 5F 53 42 5F 50 43  D3A0...\/._SB_PC
    0410: 49 30 44 33 41 31 06 00 15 5C 2F 03 5F 53 42 5F  I0D3A1...\/._SB_
    0420: 50 43 49 30 44 33 41 32 06 00 15 5C 2F 03 5F 53  PCI0D3A2...\/._S
    0430: 42 5F 50 43 49 30 44 33 41 33 06 00 15 5C 2F 03  B_PCI0D3A3...\/.
    0440: 5F 53 42 5F 50 43 49 30 44 33 41 34 06 00 15 5C  _SB_PCI0D3A4...\
    0450: 2F 03 5F 53 42 5F 50 43 49 30 44 33 41 35 06 00  /._SB_PCI0D3A5..
    0460: 15 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33 41 36  .\/._SB_PCI0D3A6
    0470: 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  ...\/._SB_PCI0D3
    0480: 41 37 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30  A7...\/._SB_PCI0
    0490: 44 33 41 38 06 00 15 5C 2F 03 5F 53 42 5F 50 43  D3A8...\/._SB_PC
    04A0: 49 30 44 33 42 30 06 00 15 5C 2F 03 5F 53 42 5F  I0D3B0...\/._SB_
    04B0: 50 43 49 30 44 33 42 31 06 00 15 5C 2F 03 5F 53  PCI0D3B1...\/._S
    04C0: 42 5F 50 43 49 30 44 33 42 32 06 00 15 5C 2F 03  B_PCI0D3B2...\/.
    04D0: 5F 53 42 5F 50 43 49 30 44 33 42 33 06 00 15 5C  _SB_PCI0D3B3...\
    04E0: 2F 03 5F 53 42 5F 50 43 49 30 44 33 42 34 06 00  /._SB_PCI0D3B4..
    04F0: 15 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33 42 35  .\/._SB_PCI0D3B5
    0500: 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  ...\/._SB_PCI0D3
    0510: 42 36 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30  B6...\/._SB_PCI0
    0520: 44 33 42 37 06 00 15 5C 2F 03 5F 53 42 5F 50 43  D3B7...\/._SB_PC
    0530: 49 30 44 33 42 38 06 00 15 5C 2F 03 5F 53 42 5F  I0D3B8...\/._SB_
    0540: 53 31 44 30 44 34 41 30 06 00 15 5C 2F 03 5F 53  S1D0D4A0...\/._S
    0550: 42 5F 53 31 44 30 44 34 41 31 06 00 15 5C 2F 03  B_S1D0D4A1...\/.
    0560: 5F 53 42 5F 53 31 44 30 44 34 41 32 06 00 15 5C  _SB_S1D0D4A2...\
    0570: 2F 03 5F 53 42 5F 53 31 44 30 44 34 41 33 06 00  /._SB_S1D0D4A3..
    0580: 15 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34 41 34  .\/._SB_S1D0D4A4
    0590: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  ...\/._SB_S1D0D4
    05A0: 41 35 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 30  A5...\/._SB_S1D0
    05B0: 44 34 41 36 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D4A6...\/._SB_S1
    05C0: 44 30 44 34 41 37 06 00 15 5C 2F 03 5F 53 42 5F  D0D4A7...\/._SB_
    05D0: 53 31 44 30 44 34 41 38 06 00 15 5C 2F 03 5F 53  S1D0D4A8...\/._S
    05E0: 42 5F 53 31 44 30 44 34 42 30 06 00 15 5C 2F 03  B_S1D0D4B0...\/.
    05F0: 5F 53 42 5F 53 31 44 30 44 34 42 31 06 00 15 5C  _SB_S1D0D4B1...\
    0600: 2F 03 5F 53 42 5F 53 31 44 30 44 34 42 32 06 00  /._SB_S1D0D4B2..
    0610: 15 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34 42 33  .\/._SB_S1D0D4B3
    0620: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  ...\/._SB_S1D0D4
    0630: 42 34 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 30  B4...\/._SB_S1D0
    0640: 44 34 42 35 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D4B5...\/._SB_S1
    0650: 44 30 44 34 42 36 06 00 15 5C 2F 03 5F 53 42 5F  D0D4B6...\/._SB_
    0660: 53 31 44 30 44 34 42 37 06 00 15 5C 2F 03 5F 53  S1D0D4B7...\/._S
    0670: 42 5F 53 31 44 30 44 34 42 38 06 00 15 5C 2F 03  B_S1D0D4B8...\/.
    0680: 5F 53 42 5F 53 31 44 31 44 35 41 30 06 00 15 5C  _SB_S1D1D5A0...\
    0690: 2F 03 5F 53 42 5F 53 31 44 31 44 35 41 31 06 00  /._SB_S1D1D5A1..
    06A0: 15 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35 41 32  .\/._SB_S1D1D5A2
    06B0: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  ...\/._SB_S1D1D5
    06C0: 41 33 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 31  A3...\/._SB_S1D1
    06D0: 44 35 41 34 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D5A4...\/._SB_S1
    06E0: 44 31 44 35 41 35 06 00 15 5C 2F 03 5F 53 42 5F  D1D5A5...\/._SB_
    06F0: 53 31 44 31 44 35 41 36 06 00 15 5C 2F 03 5F 53  S1D1D5A6...\/._S
    0700: 42 5F 53 31 44 31 44 35 41 37 06 00 15 5C 2F 03  B_S1D1D5A7...\/.
    0710: 5F 53 42 5F 53 31 44 31 44 35 41 38 06 00 15 5C  _SB_S1D1D5A8...\
    0720: 2F 03 5F 53 42 5F 53 31 44 31 44 35 42 30 06 00  /._SB_S1D1D5B0..
    0730: 15 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35 42 31  .\/._SB_S1D1D5B1
    0740: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  ...\/._SB_S1D1D5
    0750: 42 32 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 31  B2...\/._SB_S1D1
    0760: 44 35 42 33 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D5B3...\/._SB_S1
    0770: 44 31 44 35 42 34 06 00 15 5C 2F 03 5F 53 42 5F  D1D5B4...\/._SB_
    0780: 53 31 44 31 44 35 42 35 06 00 15 5C 2F 03 5F 53  S1D1D5B5...\/._S
    0790: 42 5F 53 31 44 31 44 35 42 36 06 00 15 5C 2F 03  B_S1D1D5B6...\/.
    07A0: 5F 53 42 5F 53 31 44 31 44 35 42 37 06 00 15 5C  _SB_S1D1D5B7...\
    07B0: 2F 03 5F 53 42 5F 53 31 44 31 44 35 42 38 06 00  /._SB_S1D1D5B8..
    07C0: 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36 41 30  .\/._SB_S1D2D6A0
    07D0: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  ...\/._SB_S1D2D6
    07E0: 41 31 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 32  A1...\/._SB_S1D2
    07F0: 44 36 41 32 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D6A2...\/._SB_S1
    0800: 44 32 44 36 41 33 06 00 15 5C 2F 03 5F 53 42 5F  D2D6A3...\/._SB_
    0810: 53 31 44 32 44 36 41 34 06 00 15 5C 2F 03 5F 53  S1D2D6A4...\/._S
    0820: 42 5F 53 31 44 32 44 36 41 35 06 00 15 5C 2F 03  B_S1D2D6A5...\/.
    0830: 5F 53 42 5F 53 31 44 32 44 36 41 36 06 00 15 5C  _SB_S1D2D6A6...\
    0840: 2F 03 5F 53 42 5F 53 31 44 32 44 36 41 37 06 00  /._SB_S1D2D6A7..
    0850: 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36 41 38  .\/._SB_S1D2D6A8
    0860: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  ...\/._SB_S1D2D6
    0870: 42 30 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 32  B0...\/._SB_S1D2
    0880: 44 36 42 31 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D6B1...\/._SB_S1
    0890: 44 32 44 36 42 32 06 00 15 5C 2F 03 5F 53 42 5F  D2D6B2...\/._SB_
    08A0: 53 31 44 32 44 36 42 33 06 00 15 5C 2F 03 5F 53  S1D2D6B3...\/._S
    08B0: 42 5F 53 31 44 32 44 36 42 34 06 00 15 5C 2F 03  B_S1D2D6B4...\/.
    08C0: 5F 53 42 5F 53 31 44 32 44 36 42 35 06 00 15 5C  _SB_S1D2D6B5...\
    08D0: 2F 03 5F 53 42 5F 53 31 44 32 44 36 42 36 06 00  /._SB_S1D2D6B6..
    08E0: 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36 42 37  .\/._SB_S1D2D6B7
    08F0: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  ...\/._SB_S1D2D6
    0900: 42 38 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 33  B8...\/._SB_S1D3
    0910: 44 37 41 30 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D7A0...\/._SB_S1
    0920: 44 33 44 37 41 31 06 00 15 5C 2F 03 5F 53 42 5F  D3D7A1...\/._SB_
    0930: 53 31 44 33 44 37 41 32 06 00 15 5C 2F 03 5F 53  S1D3D7A2...\/._S
    0940: 42 5F 53 31 44 33 44 37 41 33 06 00 15 5C 2F 03  B_S1D3D7A3...\/.
    0950: 5F 53 42 5F 53 31 44 33 44 37 41 34 06 00 15 5C  _SB_S1D3D7A4...\
    0960: 2F 03 5F 53 42 5F 53 31 44 33 44 37 41 35 06 00  /._SB_S1D3D7A5..
    0970: 15 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37 41 36  .\/._SB_S1D3D7A6
    0980: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  ...\/._SB_S1D3D7
    0990: 41 37 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 33  A7...\/._SB_S1D3
    09A0: 44 37 41 38 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D7A8...\/._SB_S1
    09B0: 44 33 44 37 42 30 06 00 15 5C 2F 03 5F 53 42 5F  D3D7B0...\/._SB_
    09C0: 53 31 44 33 44 37 42 31 06 00 15 5C 2F 03 5F 53  S1D3D7B1...\/._S
    09D0: 42 5F 53 31 44 33 44 37 42 32 06 00 15 5C 2F 03  B_S1D3D7B2...\/.
    09E0: 5F 53 42 5F 53 31 44 33 44 37 42 33 06 00 15 5C  _SB_S1D3D7B3...\
    09F0: 2F 03 5F 53 42 5F 53 31 44 33 44 37 42 34 06 00  /._SB_S1D3D7B4..
    0A00: 15 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37 42 35  .\/._SB_S1D3D7B5
    0A10: 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  ...\/._SB_S1D3D7
    0A20: 42 36 06 00 15 5C 2F 03 5F 53 42 5F 53 31 44 33  B6...\/._SB_S1D3
    0A30: 44 37 42 37 06 00 15 5C 2F 03 5F 53 42 5F 53 31  D7B7...\/._SB_S1
    0A40: 44 33 44 37 42 38 06 00 10 49 FF 5C 5F 47 50 45  D3D7B8...I.\_GPE
    0A50: 14 41 FF 5F 4C 31 34 00 A0 14 93 44 52 50 4E 00  .A._L14....DRPN.
    0A60: 86 5C 2E 5F 53 42 5F 41 45 52 52 0A 80 A1 4E FC  .\._SB_AERR...N.
    0A70: 96 44 52 50 4E 60 70 9C 60 FF 00 61 A0 1B 93 61  .DRPN`p.`..a...a
    0A80: 0D 44 30 41 30 00 86 5C 2F 03 5F 53 42 5F 53 30  .D0A0..\/._SB_S0
    0A90: 44 30 44 30 41 30 0A 0F A0 1B 93 61 0D 44 30 41  D0D0A0.....a.D0A
    0AA0: 31 00 86 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  1..\/._SB_S0D0D0
    0AB0: 41 31 0A 0F A0 1B 93 61 0D 44 30 41 32 00 86 5C  A1.....a.D0A2..\
    0AC0: 2F 03 5F 53 42 5F 53 30 44 30 44 30 41 32 0A 0F  /._SB_S0D0D0A2..
    0AD0: A0 1B 93 61 0D 44 30 41 33 00 86 5C 2F 03 5F 53  ...a.D0A3..\/._S
    0AE0: 42 5F 53 30 44 30 44 30 41 33 0A 0F A0 1B 93 61  B_S0D0D0A3.....a
    0AF0: 0D 44 30 41 34 00 86 5C 2F 03 5F 53 42 5F 53 30  .D0A4..\/._SB_S0
    0B00: 44 30 44 30 41 34 0A 0F A0 1B 93 61 0D 44 30 41  D0D0A4.....a.D0A
    0B10: 35 00 86 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  5..\/._SB_S0D0D0
    0B20: 41 35 0A 0F A0 1B 93 61 0D 44 30 41 36 00 86 5C  A5.....a.D0A6..\
    0B30: 2F 03 5F 53 42 5F 53 30 44 30 44 30 41 36 0A 0F  /._SB_S0D0D0A6..
    0B40: A0 1B 93 61 0D 44 30 41 37 00 86 5C 2F 03 5F 53  ...a.D0A7..\/._S
    0B50: 42 5F 53 30 44 30 44 30 41 37 0A 0F A0 1B 93 61  B_S0D0D0A7.....a
    0B60: 0D 44 30 41 38 00 86 5C 2F 03 5F 53 42 5F 53 30  .D0A8..\/._SB_S0
    0B70: 44 30 44 30 41 38 0A 0F A0 1B 93 61 0D 44 30 42  D0D0A8.....a.D0B
    0B80: 30 00 86 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  0..\/._SB_S0D0D0
    0B90: 42 30 0A 0F A0 1B 93 61 0D 44 30 42 31 00 86 5C  B0.....a.D0B1..\
    0BA0: 2F 03 5F 53 42 5F 53 30 44 30 44 30 42 31 0A 0F  /._SB_S0D0D0B1..
    0BB0: A0 1B 93 61 0D 44 30 42 32 00 86 5C 2F 03 5F 53  ...a.D0B2..\/._S
    0BC0: 42 5F 53 30 44 30 44 30 42 32 0A 0F A0 1B 93 61  B_S0D0D0B2.....a
    0BD0: 0D 44 30 42 33 00 86 5C 2F 03 5F 53 42 5F 53 30  .D0B3..\/._SB_S0
    0BE0: 44 30 44 30 42 33 0A 0F A0 1B 93 61 0D 44 30 42  D0D0B3.....a.D0B
    0BF0: 34 00 86 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  4..\/._SB_S0D0D0
    0C00: 42 34 0A 0F A0 1B 93 61 0D 44 30 42 35 00 86 5C  B4.....a.D0B5..\
    0C10: 2F 03 5F 53 42 5F 53 30 44 30 44 30 42 35 0A 0F  /._SB_S0D0D0B5..
    0C20: A0 1B 93 61 0D 44 30 42 36 00 86 5C 2F 03 5F 53  ...a.D0B6..\/._S
    0C30: 42 5F 53 30 44 30 44 30 42 36 0A 0F A0 1B 93 61  B_S0D0D0B6.....a
    0C40: 0D 44 30 42 37 00 86 5C 2F 03 5F 53 42 5F 53 30  .D0B7..\/._SB_S0
    0C50: 44 30 44 30 42 37 0A 0F A0 1B 93 61 0D 44 30 42  D0D0B7.....a.D0B
    0C60: 38 00 86 5C 2F 03 5F 53 42 5F 53 30 44 30 44 30  8..\/._SB_S0D0D0
    0C70: 42 38 0A 0F A0 1B 93 61 0D 44 31 41 30 00 86 5C  B8.....a.D1A0..\
    0C80: 2F 03 5F 53 42 5F 53 30 44 31 44 31 41 30 0A 0F  /._SB_S0D1D1A0..
    0C90: A0 1B 93 61 0D 44 31 41 31 00 86 5C 2F 03 5F 53  ...a.D1A1..\/._S
    0CA0: 42 5F 53 30 44 31 44 31 41 31 0A 0F A0 1B 93 61  B_S0D1D1A1.....a
    0CB0: 0D 44 31 41 32 00 86 5C 2F 03 5F 53 42 5F 53 30  .D1A2..\/._SB_S0
    0CC0: 44 31 44 31 41 32 0A 0F A0 1B 93 61 0D 44 31 41  D1D1A2.....a.D1A
    0CD0: 33 00 86 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  3..\/._SB_S0D1D1
    0CE0: 41 33 0A 0F A0 1B 93 61 0D 44 31 41 34 00 86 5C  A3.....a.D1A4..\
    0CF0: 2F 03 5F 53 42 5F 53 30 44 31 44 31 41 34 0A 0F  /._SB_S0D1D1A4..
    0D00: A0 1B 93 61 0D 44 31 41 35 00 86 5C 2F 03 5F 53  ...a.D1A5..\/._S
    0D10: 42 5F 53 30 44 31 44 31 41 35 0A 0F A0 1B 93 61  B_S0D1D1A5.....a
    0D20: 0D 44 31 41 36 00 86 5C 2F 03 5F 53 42 5F 53 30  .D1A6..\/._SB_S0
    0D30: 44 31 44 31 41 36 0A 0F A0 1B 93 61 0D 44 31 41  D1D1A6.....a.D1A
    0D40: 37 00 86 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  7..\/._SB_S0D1D1
    0D50: 41 37 0A 0F A0 1B 93 61 0D 44 31 41 38 00 86 5C  A7.....a.D1A8..\
    0D60: 2F 03 5F 53 42 5F 53 30 44 31 44 31 41 38 0A 0F  /._SB_S0D1D1A8..
    0D70: A0 1B 93 61 0D 44 31 42 30 00 86 5C 2F 03 5F 53  ...a.D1B0..\/._S
    0D80: 42 5F 53 30 44 31 44 31 42 30 0A 0F A0 1B 93 61  B_S0D1D1B0.....a
    0D90: 0D 44 31 42 31 00 86 5C 2F 03 5F 53 42 5F 53 30  .D1B1..\/._SB_S0
    0DA0: 44 31 44 31 42 31 0A 0F A0 1B 93 61 0D 44 31 42  D1D1B1.....a.D1B
    0DB0: 32 00 86 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  2..\/._SB_S0D1D1
    0DC0: 42 32 0A 0F A0 1B 93 61 0D 44 31 42 33 00 86 5C  B2.....a.D1B3..\
    0DD0: 2F 03 5F 53 42 5F 53 30 44 31 44 31 42 33 0A 0F  /._SB_S0D1D1B3..
    0DE0: A0 1B 93 61 0D 44 31 42 34 00 86 5C 2F 03 5F 53  ...a.D1B4..\/._S
    0DF0: 42 5F 53 30 44 31 44 31 42 34 0A 0F A0 1B 93 61  B_S0D1D1B4.....a
    0E00: 0D 44 31 42 35 00 86 5C 2F 03 5F 53 42 5F 53 30  .D1B5..\/._SB_S0
    0E10: 44 31 44 31 42 35 0A 0F A0 1B 93 61 0D 44 31 42  D1D1B5.....a.D1B
    0E20: 36 00 86 5C 2F 03 5F 53 42 5F 53 30 44 31 44 31  6..\/._SB_S0D1D1
    0E30: 42 36 0A 0F A0 1B 93 61 0D 44 31 42 37 00 86 5C  B6.....a.D1B7..\
    0E40: 2F 03 5F 53 42 5F 53 30 44 31 44 31 42 37 0A 0F  /._SB_S0D1D1B7..
    0E50: A0 1B 93 61 0D 44 31 42 38 00 86 5C 2F 03 5F 53  ...a.D1B8..\/._S
    0E60: 42 5F 53 30 44 31 44 31 42 38 0A 0F A0 1B 93 61  B_S0D1D1B8.....a
    0E70: 0D 44 32 41 30 00 86 5C 2F 03 5F 53 42 5F 53 30  .D2A0..\/._SB_S0
    0E80: 44 32 44 32 41 30 0A 0F A0 1B 93 61 0D 44 32 41  D2D2A0.....a.D2A
    0E90: 31 00 86 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  1..\/._SB_S0D2D2
    0EA0: 41 31 0A 0F A0 1B 93 61 0D 44 32 41 32 00 86 5C  A1.....a.D2A2..\
    0EB0: 2F 03 5F 53 42 5F 53 30 44 32 44 32 41 32 0A 0F  /._SB_S0D2D2A2..
    0EC0: A0 1B 93 61 0D 44 32 41 33 00 86 5C 2F 03 5F 53  ...a.D2A3..\/._S
    0ED0: 42 5F 53 30 44 32 44 32 41 33 0A 0F A0 1B 93 61  B_S0D2D2A3.....a
    0EE0: 0D 44 32 41 34 00 86 5C 2F 03 5F 53 42 5F 53 30  .D2A4..\/._SB_S0
    0EF0: 44 32 44 32 41 34 0A 0F A0 1B 93 61 0D 44 32 41  D2D2A4.....a.D2A
    0F00: 35 00 86 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  5..\/._SB_S0D2D2
    0F10: 41 35 0A 0F A0 1B 93 61 0D 44 32 41 36 00 86 5C  A5.....a.D2A6..\
    0F20: 2F 03 5F 53 42 5F 53 30 44 32 44 32 41 36 0A 0F  /._SB_S0D2D2A6..
    0F30: A0 1B 93 61 0D 44 32 41 37 00 86 5C 2F 03 5F 53  ...a.D2A7..\/._S
    0F40: 42 5F 53 30 44 32 44 32 41 37 0A 0F A0 1B 93 61  B_S0D2D2A7.....a
    0F50: 0D 44 32 41 38 00 86 5C 2F 03 5F 53 42 5F 53 30  .D2A8..\/._SB_S0
    0F60: 44 32 44 32 41 38 0A 0F A0 1B 93 61 0D 44 32 42  D2D2A8.....a.D2B
    0F70: 30 00 86 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  0..\/._SB_S0D2D2
    0F80: 42 30 0A 0F A0 1B 93 61 0D 44 32 42 31 00 86 5C  B0.....a.D2B1..\
    0F90: 2F 03 5F 53 42 5F 53 30 44 32 44 32 42 31 0A 0F  /._SB_S0D2D2B1..
    0FA0: A0 1B 93 61 0D 44 32 42 32 00 86 5C 2F 03 5F 53  ...a.D2B2..\/._S
    0FB0: 42 5F 53 30 44 32 44 32 42 32 0A 0F A0 1B 93 61  B_S0D2D2B2.....a
    0FC0: 0D 44 32 42 33 00 86 5C 2F 03 5F 53 42 5F 53 30  .D2B3..\/._SB_S0
    0FD0: 44 32 44 32 42 33 0A 0F A0 1B 93 61 0D 44 32 42  D2D2B3.....a.D2B
    0FE0: 34 00 86 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  4..\/._SB_S0D2D2
    0FF0: 42 34 0A 0F A0 1B 93 61 0D 44 32 42 35 00 86 5C  B4.....a.D2B5..\
    1000: 2F 03 5F 53 42 5F 53 30 44 32 44 32 42 35 0A 0F  /._SB_S0D2D2B5..
    1010: A0 1B 93 61 0D 44 32 42 36 00 86 5C 2F 03 5F 53  ...a.D2B6..\/._S
    1020: 42 5F 53 30 44 32 44 32 42 36 0A 0F A0 1B 93 61  B_S0D2D2B6.....a
    1030: 0D 44 32 42 37 00 86 5C 2F 03 5F 53 42 5F 53 30  .D2B7..\/._SB_S0
    1040: 44 32 44 32 42 37 0A 0F A0 1B 93 61 0D 44 32 42  D2D2B7.....a.D2B
    1050: 38 00 86 5C 2F 03 5F 53 42 5F 53 30 44 32 44 32  8..\/._SB_S0D2D2
    1060: 42 38 0A 0F A0 1B 93 61 0D 44 33 41 30 00 86 5C  B8.....a.D3A0..\
    1070: 2F 03 5F 53 42 5F 50 43 49 30 44 33 41 30 0A 0F  /._SB_PCI0D3A0..
    1080: A0 1B 93 61 0D 44 33 41 31 00 86 5C 2F 03 5F 53  ...a.D3A1..\/._S
    1090: 42 5F 50 43 49 30 44 33 41 31 0A 0F A0 1B 93 61  B_PCI0D3A1.....a
    10A0: 0D 44 33 41 32 00 86 5C 2F 03 5F 53 42 5F 50 43  .D3A2..\/._SB_PC
    10B0: 49 30 44 33 41 32 0A 0F A0 1B 93 61 0D 44 33 41  I0D3A2.....a.D3A
    10C0: 33 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  3..\/._SB_PCI0D3
    10D0: 41 33 0A 0F A0 1B 93 61 0D 44 33 41 34 00 86 5C  A3.....a.D3A4..\
    10E0: 2F 03 5F 53 42 5F 50 43 49 30 44 33 41 34 0A 0F  /._SB_PCI0D3A4..
    10F0: A0 1B 93 61 0D 44 33 41 35 00 86 5C 2F 03 5F 53  ...a.D3A5..\/._S
    1100: 42 5F 50 43 49 30 44 33 41 35 0A 0F A0 1B 93 61  B_PCI0D3A5.....a
    1110: 0D 44 33 41 36 00 86 5C 2F 03 5F 53 42 5F 50 43  .D3A6..\/._SB_PC
    1120: 49 30 44 33 41 36 0A 0F A0 1B 93 61 0D 44 33 41  I0D3A6.....a.D3A
    1130: 37 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  7..\/._SB_PCI0D3
    1140: 41 37 0A 0F A0 1B 93 61 0D 44 33 41 38 00 86 5C  A7.....a.D3A8..\
    1150: 2F 03 5F 53 42 5F 50 43 49 30 44 33 41 38 0A 0F  /._SB_PCI0D3A8..
    1160: A0 1B 93 61 0D 44 33 42 30 00 86 5C 2F 03 5F 53  ...a.D3B0..\/._S
    1170: 42 5F 50 43 49 30 44 33 42 30 0A 0F A0 1B 93 61  B_PCI0D3B0.....a
    1180: 0D 44 33 42 31 00 86 5C 2F 03 5F 53 42 5F 50 43  .D3B1..\/._SB_PC
    1190: 49 30 44 33 42 31 0A 0F A0 1B 93 61 0D 44 33 42  I0D3B1.....a.D3B
    11A0: 32 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  2..\/._SB_PCI0D3
    11B0: 42 32 0A 0F A0 1B 93 61 0D 44 33 42 33 00 86 5C  B2.....a.D3B3..\
    11C0: 2F 03 5F 53 42 5F 50 43 49 30 44 33 42 33 0A 0F  /._SB_PCI0D3B3..
    11D0: A0 1B 93 61 0D 44 33 42 34 00 86 5C 2F 03 5F 53  ...a.D3B4..\/._S
    11E0: 42 5F 50 43 49 30 44 33 42 34 0A 0F A0 1B 93 61  B_PCI0D3B4.....a
    11F0: 0D 44 33 42 35 00 86 5C 2F 03 5F 53 42 5F 50 43  .D3B5..\/._SB_PC
    1200: 49 30 44 33 42 35 0A 0F A0 1B 93 61 0D 44 33 42  I0D3B5.....a.D3B
    1210: 36 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30 44 33  6..\/._SB_PCI0D3
    1220: 42 36 0A 0F A0 1B 93 61 0D 44 33 42 37 00 86 5C  B6.....a.D3B7..\
    1230: 2F 03 5F 53 42 5F 50 43 49 30 44 33 42 37 0A 0F  /._SB_PCI0D3B7..
    1240: A0 1B 93 61 0D 44 33 42 38 00 86 5C 2F 03 5F 53  ...a.D3B8..\/._S
    1250: 42 5F 50 43 49 30 44 33 42 38 0A 0F A0 1B 93 61  B_PCI0D3B8.....a
    1260: 0D 44 34 41 30 00 86 5C 2F 03 5F 53 42 5F 53 31  .D4A0..\/._SB_S1
    1270: 44 30 44 34 41 30 0A 0F A0 1B 93 61 0D 44 34 41  D0D4A0.....a.D4A
    1280: 31 00 86 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  1..\/._SB_S1D0D4
    1290: 41 31 0A 0F A0 1B 93 61 0D 44 34 41 32 00 86 5C  A1.....a.D4A2..\
    12A0: 2F 03 5F 53 42 5F 53 31 44 30 44 34 41 32 0A 0F  /._SB_S1D0D4A2..
    12B0: A0 1B 93 61 0D 44 34 41 33 00 86 5C 2F 03 5F 53  ...a.D4A3..\/._S
    12C0: 42 5F 53 31 44 30 44 34 41 33 0A 0F A0 1B 93 61  B_S1D0D4A3.....a
    12D0: 0D 44 34 41 34 00 86 5C 2F 03 5F 53 42 5F 53 31  .D4A4..\/._SB_S1
    12E0: 44 30 44 34 41 34 0A 0F A0 1B 93 61 0D 44 34 41  D0D4A4.....a.D4A
    12F0: 35 00 86 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  5..\/._SB_S1D0D4
    1300: 41 35 0A 0F A0 1B 93 61 0D 44 34 41 36 00 86 5C  A5.....a.D4A6..\
    1310: 2F 03 5F 53 42 5F 53 31 44 30 44 34 41 36 0A 0F  /._SB_S1D0D4A6..
    1320: A0 1B 93 61 0D 44 34 41 37 00 86 5C 2F 03 5F 53  ...a.D4A7..\/._S
    1330: 42 5F 53 31 44 30 44 34 41 37 0A 0F A0 1B 93 61  B_S1D0D4A7.....a
    1340: 0D 44 34 41 38 00 86 5C 2F 03 5F 53 42 5F 53 31  .D4A8..\/._SB_S1
    1350: 44 30 44 34 41 38 0A 0F A0 1B 93 61 0D 44 34 42  D0D4A8.....a.D4B
    1360: 30 00 86 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  0..\/._SB_S1D0D4
    1370: 42 30 0A 0F A0 1B 93 61 0D 44 34 42 31 00 86 5C  B0.....a.D4B1..\
    1380: 2F 03 5F 53 42 5F 53 31 44 30 44 34 42 31 0A 0F  /._SB_S1D0D4B1..
    1390: A0 1B 93 61 0D 44 34 42 32 00 86 5C 2F 03 5F 53  ...a.D4B2..\/._S
    13A0: 42 5F 53 31 44 30 44 34 42 32 0A 0F A0 1B 93 61  B_S1D0D4B2.....a
    13B0: 0D 44 34 42 33 00 86 5C 2F 03 5F 53 42 5F 53 31  .D4B3..\/._SB_S1
    13C0: 44 30 44 34 42 33 0A 0F A0 1B 93 61 0D 44 34 42  D0D4B3.....a.D4B
    13D0: 34 00 86 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  4..\/._SB_S1D0D4
    13E0: 42 34 0A 0F A0 1B 93 61 0D 44 34 42 35 00 86 5C  B4.....a.D4B5..\
    13F0: 2F 03 5F 53 42 5F 53 31 44 30 44 34 42 35 0A 0F  /._SB_S1D0D4B5..
    1400: A0 1B 93 61 0D 44 34 42 36 00 86 5C 2F 03 5F 53  ...a.D4B6..\/._S
    1410: 42 5F 53 31 44 30 44 34 42 36 0A 0F A0 1B 93 61  B_S1D0D4B6.....a
    1420: 0D 44 34 42 37 00 86 5C 2F 03 5F 53 42 5F 53 31  .D4B7..\/._SB_S1
    1430: 44 30 44 34 42 37 0A 0F A0 1B 93 61 0D 44 34 42  D0D4B7.....a.D4B
    1440: 38 00 86 5C 2F 03 5F 53 42 5F 53 31 44 30 44 34  8..\/._SB_S1D0D4
    1450: 42 38 0A 0F A0 1B 93 61 0D 44 35 41 30 00 86 5C  B8.....a.D5A0..\
    1460: 2F 03 5F 53 42 5F 53 31 44 31 44 35 41 30 0A 0F  /._SB_S1D1D5A0..
    1470: A0 1B 93 61 0D 44 35 41 31 00 86 5C 2F 03 5F 53  ...a.D5A1..\/._S
    1480: 42 5F 53 31 44 31 44 35 41 31 0A 0F A0 1B 93 61  B_S1D1D5A1.....a
    1490: 0D 44 35 41 32 00 86 5C 2F 03 5F 53 42 5F 53 31  .D5A2..\/._SB_S1
    14A0: 44 31 44 35 41 32 0A 0F A0 1B 93 61 0D 44 35 41  D1D5A2.....a.D5A
    14B0: 33 00 86 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  3..\/._SB_S1D1D5
    14C0: 41 33 0A 0F A0 1B 93 61 0D 44 35 41 34 00 86 5C  A3.....a.D5A4..\
    14D0: 2F 03 5F 53 42 5F 53 31 44 31 44 35 41 34 0A 0F  /._SB_S1D1D5A4..
    14E0: A0 1B 93 61 0D 44 35 41 35 00 86 5C 2F 03 5F 53  ...a.D5A5..\/._S
    14F0: 42 5F 53 31 44 31 44 35 41 35 0A 0F A0 1B 93 61  B_S1D1D5A5.....a
    1500: 0D 44 35 41 36 00 86 5C 2F 03 5F 53 42 5F 53 31  .D5A6..\/._SB_S1
    1510: 44 31 44 35 41 36 0A 0F A0 1B 93 61 0D 44 35 41  D1D5A6.....a.D5A
    1520: 37 00 86 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  7..\/._SB_S1D1D5
    1530: 41 37 0A 0F A0 1B 93 61 0D 44 35 41 38 00 86 5C  A7.....a.D5A8..\
    1540: 2F 03 5F 53 42 5F 53 31 44 31 44 35 41 38 0A 0F  /._SB_S1D1D5A8..
    1550: A0 1B 93 61 0D 44 35 42 30 00 86 5C 2F 03 5F 53  ...a.D5B0..\/._S
    1560: 42 5F 53 31 44 31 44 35 42 30 0A 0F A0 1B 93 61  B_S1D1D5B0.....a
    1570: 0D 44 35 42 31 00 86 5C 2F 03 5F 53 42 5F 53 31  .D5B1..\/._SB_S1
    1580: 44 31 44 35 42 31 0A 0F A0 1B 93 61 0D 44 35 42  D1D5B1.....a.D5B
    1590: 32 00 86 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  2..\/._SB_S1D1D5
    15A0: 42 32 0A 0F A0 1B 93 61 0D 44 35 42 33 00 86 5C  B2.....a.D5B3..\
    15B0: 2F 03 5F 53 42 5F 53 31 44 31 44 35 42 33 0A 0F  /._SB_S1D1D5B3..
    15C0: A0 1B 93 61 0D 44 35 42 34 00 86 5C 2F 03 5F 53  ...a.D5B4..\/._S
    15D0: 42 5F 53 31 44 31 44 35 42 34 0A 0F A0 1B 93 61  B_S1D1D5B4.....a
    15E0: 0D 44 35 42 35 00 86 5C 2F 03 5F 53 42 5F 53 31  .D5B5..\/._SB_S1
    15F0: 44 31 44 35 42 35 0A 0F A0 1B 93 61 0D 44 35 42  D1D5B5.....a.D5B
    1600: 36 00 86 5C 2F 03 5F 53 42 5F 53 31 44 31 44 35  6..\/._SB_S1D1D5
    1610: 42 36 0A 0F A0 1B 93 61 0D 44 35 42 37 00 86 5C  B6.....a.D5B7..\
    1620: 2F 03 5F 53 42 5F 53 31 44 31 44 35 42 37 0A 0F  /._SB_S1D1D5B7..
    1630: A0 1B 93 61 0D 44 35 42 38 00 86 5C 2F 03 5F 53  ...a.D5B8..\/._S
    1640: 42 5F 53 31 44 31 44 35 42 38 0A 0F A0 1B 93 61  B_S1D1D5B8.....a
    1650: 0D 44 36 41 30 00 86 5C 2F 03 5F 53 42 5F 53 31  .D6A0..\/._SB_S1
    1660: 44 32 44 36 41 30 0A 0F A0 1B 93 61 0D 44 36 41  D2D6A0.....a.D6A
    1670: 31 00 86 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  1..\/._SB_S1D2D6
    1680: 41 31 0A 0F A0 1B 93 61 0D 44 36 41 32 00 86 5C  A1.....a.D6A2..\
    1690: 2F 03 5F 53 42 5F 53 31 44 32 44 36 41 32 0A 0F  /._SB_S1D2D6A2..
    16A0: A0 1B 93 61 0D 44 36 41 33 00 86 5C 2F 03 5F 53  ...a.D6A3..\/._S
    16B0: 42 5F 53 31 44 32 44 36 41 33 0A 0F A0 1B 93 61  B_S1D2D6A3.....a
    16C0: 0D 44 36 41 34 00 86 5C 2F 03 5F 53 42 5F 53 31  .D6A4..\/._SB_S1
    16D0: 44 32 44 36 41 34 0A 0F A0 1B 93 61 0D 44 36 41  D2D6A4.....a.D6A
    16E0: 35 00 86 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  5..\/._SB_S1D2D6
    16F0: 41 35 0A 0F A0 1B 93 61 0D 44 36 41 36 00 86 5C  A5.....a.D6A6..\
    1700: 2F 03 5F 53 42 5F 53 31 44 32 44 36 41 36 0A 0F  /._SB_S1D2D6A6..
    1710: A0 1B 93 61 0D 44 36 41 37 00 86 5C 2F 03 5F 53  ...a.D6A7..\/._S
    1720: 42 5F 53 31 44 32 44 36 41 37 0A 0F A0 1B 93 61  B_S1D2D6A7.....a
    1730: 0D 44 36 41 38 00 86 5C 2F 03 5F 53 42 5F 53 31  .D6A8..\/._SB_S1
    1740: 44 32 44 36 41 38 0A 0F A0 1B 93 61 0D 44 36 42  D2D6A8.....a.D6B
    1750: 30 00 86 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  0..\/._SB_S1D2D6
    1760: 42 30 0A 0F A0 1B 93 61 0D 44 36 42 31 00 86 5C  B0.....a.D6B1..\
    1770: 2F 03 5F 53 42 5F 53 31 44 32 44 36 42 31 0A 0F  /._SB_S1D2D6B1..
    1780: A0 1B 93 61 0D 44 36 42 32 00 86 5C 2F 03 5F 53  ...a.D6B2..\/._S
    1790: 42 5F 53 31 44 32 44 36 42 32 0A 0F A0 1B 93 61  B_S1D2D6B2.....a
    17A0: 0D 44 36 42 33 00 86 5C 2F 03 5F 53 42 5F 53 31  .D6B3..\/._SB_S1
    17B0: 44 32 44 36 42 33 0A 0F A0 1B 93 61 0D 44 36 42  D2D6B3.....a.D6B
    17C0: 34 00 86 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  4..\/._SB_S1D2D6
    17D0: 42 34 0A 0F A0 1B 93 61 0D 44 36 42 35 00 86 5C  B4.....a.D6B5..\
    17E0: 2F 03 5F 53 42 5F 53 31 44 32 44 36 42 35 0A 0F  /._SB_S1D2D6B5..
    17F0: A0 1B 93 61 0D 44 36 42 36 00 86 5C 2F 03 5F 53  ...a.D6B6..\/._S
    1800: 42 5F 53 31 44 32 44 36 42 36 0A 0F A0 1B 93 61  B_S1D2D6B6.....a
    1810: 0D 44 36 42 37 00 86 5C 2F 03 5F 53 42 5F 53 31  .D6B7..\/._SB_S1
    1820: 44 32 44 36 42 37 0A 0F A0 1B 93 61 0D 44 36 42  D2D6B7.....a.D6B
    1830: 38 00 86 5C 2F 03 5F 53 42 5F 53 31 44 32 44 36  8..\/._SB_S1D2D6
    1840: 42 38 0A 0F A0 1B 93 61 0D 44 37 41 30 00 86 5C  B8.....a.D7A0..\
    1850: 2F 03 5F 53 42 5F 53 31 44 33 44 37 41 30 0A 0F  /._SB_S1D3D7A0..
    1860: A0 1B 93 61 0D 44 37 41 31 00 86 5C 2F 03 5F 53  ...a.D7A1..\/._S
    1870: 42 5F 53 31 44 33 44 37 41 31 0A 0F A0 1B 93 61  B_S1D3D7A1.....a
    1880: 0D 44 37 41 32 00 86 5C 2F 03 5F 53 42 5F 53 31  .D7A2..\/._SB_S1
    1890: 44 33 44 37 41 32 0A 0F A0 1B 93 61 0D 44 37 41  D3D7A2.....a.D7A
    18A0: 33 00 86 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  3..\/._SB_S1D3D7
    18B0: 41 33 0A 0F A0 1B 93 61 0D 44 37 41 34 00 86 5C  A3.....a.D7A4..\
    18C0: 2F 03 5F 53 42 5F 53 31 44 33 44 37 41 34 0A 0F  /._SB_S1D3D7A4..
    18D0: A0 1B 93 61 0D 44 37 41 35 00 86 5C 2F 03 5F 53  ...a.D7A5..\/._S
    18E0: 42 5F 53 31 44 33 44 37 41 35 0A 0F A0 1B 93 61  B_S1D3D7A5.....a
    18F0: 0D 44 37 41 36 00 86 5C 2F 03 5F 53 42 5F 53 31  .D7A6..\/._SB_S1
    1900: 44 33 44 37 41 36 0A 0F A0 1B 93 61 0D 44 37 41  D3D7A6.....a.D7A
    1910: 37 00 86 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  7..\/._SB_S1D3D7
    1920: 41 37 0A 0F A0 1B 93 61 0D 44 37 41 38 00 86 5C  A7.....a.D7A8..\
    1930: 2F 03 5F 53 42 5F 53 31 44 33 44 37 41 38 0A 0F  /._SB_S1D3D7A8..
    1940: A0 1B 93 61 0D 44 37 42 30 00 86 5C 2F 03 5F 53  ...a.D7B0..\/._S
    1950: 42 5F 53 31 44 33 44 37 42 30 0A 0F A0 1B 93 61  B_S1D3D7B0.....a
    1960: 0D 44 37 42 31 00 86 5C 2F 03 5F 53 42 5F 53 31  .D7B1..\/._SB_S1
    1970: 44 33 44 37 42 31 0A 0F A0 1B 93 61 0D 44 37 42  D3D7B1.....a.D7B
    1980: 32 00 86 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  2..\/._SB_S1D3D7
    1990: 42 32 0A 0F A0 1B 93 61 0D 44 37 42 33 00 86 5C  B2.....a.D7B3..\
    19A0: 2F 03 5F 53 42 5F 53 31 44 33 44 37 42 33 0A 0F  /._SB_S1D3D7B3..
    19B0: A0 1B 93 61 0D 44 37 42 34 00 86 5C 2F 03 5F 53  ...a.D7B4..\/._S
    19C0: 42 5F 53 31 44 33 44 37 42 34 0A 0F A0 1B 93 61  B_S1D3D7B4.....a
    19D0: 0D 44 37 42 35 00 86 5C 2F 03 5F 53 42 5F 53 31  .D7B5..\/._SB_S1
    19E0: 44 33 44 37 42 35 0A 0F A0 1B 93 61 0D 44 37 42  D3D7B5.....a.D7B
    19F0: 36 00 86 5C 2F 03 5F 53 42 5F 53 31 44 33 44 37  6..\/._SB_S1D3D7
    1A00: 42 36 0A 0F A0 1B 93 61 0D 44 37 42 37 00 86 5C  B6.....a.D7B7..\
    1A10: 2F 03 5F 53 42 5F 53 31 44 33 44 37 42 37 0A 0F  /._SB_S1D3D7B7..
    1A20: A0 1B 93 61 0D 44 37 42 38 00 86 5C 2F 03 5F 53  ...a.D7B8..\/._S
    1A30: 42 5F 53 31 44 33 44 37 42 38 0A 0F 70 00 44 52  B_S1D3D7B8..p.DR
    1A40: 50 4E 10 27 5C 5F 53 42 5F 5B 82 1F 41 45 52 52  PN.'\_SB_[..AERR
    1A50: 08 5F 48 49 44 0C 41 D0 0C 33 08 5F 55 49 44 00  ._HID.A..3._UID.
    1A60: 14 09 5F 53 54 41 00 A4 0A 0F 5B 80 52 41 53 44  .._STA....[.RASD
    1A70: 00 0C 00 70 2D A8 0A 10 5B 81 1A 52 41 53 44 01  ...p-...[..RASD.
    1A80: 50 53 49 47 20 50 57 4F 43 20 50 4F 53 53 20 50  PSIG PWOC POSS P
    1A90: 4F 53 43 20 5B 80 4F 53 48 50 00 0C 00 60 2D A8  OSC [.OSHP...`-.
    1AA0: 0A 02 5B 81 10 4F 53 48 50 01 48 50 48 4D 08 41  ..[..OSHP.HPHM.A
    1AB0: 45 52 4D 08 5B 80 53 4D 42 53 00 0C 00 00 D8 FE  ERM.[.SMBS......
    1AC0: 0C 00 00 80 00 5B 81 0F 53 4D 42 53 01 00 80 B5  .....[..SMBS....
    1AD0: 01 53 4D 49 50 08 5B 80 53 57 53 4D 01 53 4D 49  .SMIP.[.SWSM.SMI
    1AE0: 50 0A 02 5B 81 0B 53 57 53 4D 00 53 4D 49 52 10  P..[..SWSM.SMIR.
    1AF0: 5B 80 45 44 53 4D 00 0C 00 50 2D A8 0A 0E 5B 81  [.EDSM...P-...[.
    1B00: 29 45 44 53 4D 01 44 53 4D 49 08 44 52 50 42 08  )EDSM.DSMI.DRPB.
    1B10: 44 52 50 41 20 44 49 44 58 08 44 46 49 4E 08 44  DRPA DIDX.DFIN.D
    1B20: 4F 55 54 10 44 52 50 4E 20 5B 80 45 4F 53 54 00  OUT.DRPN [.EOST.
    1B30: 0C 00 40 2D A8 0A 0A 5B 81 1A 45 4F 53 54 01 4F  ..@-...[..EOST.O
    1B40: 53 4D 49 08 4F 52 50 42 08 4F 52 50 41 20 4F 41  SMI.ORPB.ORPA OA
    1B50: 47 31 20                                         G1 

MCFG @ 0x0000000000000000
    0000: 4D 43 46 47 3C 00 00 00 01 2E 41 4D 44 00 41 20  MCFG<.....AMD.A 
    0010: 41 20 4D 20 49 00 00 00 01 00 00 00 4D 53 46 54  A M I.......MSFT
    0020: 13 00 01 00 00 00 00 00 00 00 00 00 00 00 00 E0  ................
    0030: 00 00 00 00 00 00 00 FF 00 00 00 00              ............

APIC @ 0x0000000000000000
    0000: 41 50 49 43 88 10 00 00 06 E3 41 4D 44 20 20 20  APIC......AMD   
    0010: 41 20 4D 20 49 20 00 00 01 00 00 00 41 4D 49 20  A M I ......AMI 
    0020: 13 00 01 00 00 00 E0 FE 01 00 00 00 09 10 00 00  ................
    0030: 00 00 00 00 01 00 00 00 00 00 00 00 09 10 00 00  ................
    0040: 02 00 00 00 01 00 00 00 02 00 00 00 09 10 00 00  ................
    0050: 04 00 00 00 01 00 00 00 04 00 00 00 09 10 00 00  ................
    0060: 06 00 00 00 01 00 00 00 06 00 00 00 09 10 00 00  ................
    0070: 08 00 00 00 01 00 00 00 08 00 00 00 09 10 00 00  ................
    0080: 0A 00 00 00 01 00 00 00 0A 00 00 00 09 10 00 00  ................
    0090: 10 00 00 00 01 00 00 00 0C 00 00 00 09 10 00 00  ................
    00A0: 12 00 00 00 01 00 00 00 0E 00 00 00 09 10 00 00  ................
    00B0: 14 00 00 00 01 00 00 00 10 00 00 00 09 10 00 00  ................
    00C0: 16 00 00 00 01 00 00 00 12 00 00 00 09 10 00 00  ................
    00D0: 18 00 00 00 01 00 00 00 14 00 00 00 09 10 00 00  ................
    00E0: 1A 00 00 00 01 00 00 00 16 00 00 00 09 10 00 00  ................
    00F0: 20 00 00 00 01 00 00 00 18 00 00 00 09 10 00 00   ...............
    0100: 22 00 00 00 01 00 00 00 1A 00 00 00 09 10 00 00  "...............
    0110: 24 00 00 00 01 00 00 00 1C 00 00 00 09 10 00 00  $...............
    0120: 26 00 00 00 01 00 00 00 1E 00 00 00 09 10 00 00  &...............
    0130: 28 00 00 00 01 00 00 00 20 00 00 00 09 10 00 00  (....... .......
    0140: 2A 00 00 00 01 00 00 00 22 00 00 00 09 10 00 00  *.......".......
    0150: 30 00 00 00 01 00 00 00 24 00 00 00 09 10 00 00  0.......$.......
    0160: 32 00 00 00 01 00 00 00 26 00 00 00 09 10 00 00  2.......&.......
    0170: 34 00 00 00 01 00 00 00 28 00 00 00 09 10 00 00  4.......(.......
    0180: 36 00 00 00 01 00 00 00 2A 00 00 00 09 10 00 00  6.......*.......
    0190: 38 00 00 00 01 00 00 00 2C 00 00 00 09 10 00 00  8.......,.......
    01A0: 3A 00 00 00 01 00 00 00 2E 00 00 00 09 10 00 00  :...............
    01B0: 01 00 00 00 01 00 00 00 01 00 00 00 09 10 00 00  ................
    01C0: 03 00 00 00 01 00 00 00 03 00 00 00 09 10 00 00  ................
    01D0: 05 00 00 00 01 00 00 00 05 00 00 00 09 10 00 00  ................
    01E0: 07 00 00 00 01 00 00 00 07 00 00 00 09 10 00 00  ................
    01F0: 09 00 00 00 01 00 00 00 09 00 00 00 09 10 00 00  ................
    0200: 0B 00 00 00 01 00 00 00 0B 00 00 00 09 10 00 00  ................
    0210: 11 00 00 00 01 00 00 00 0D 00 00 00 09 10 00 00  ................
    0220: 13 00 00 00 01 00 00 00 0F 00 00 00 09 10 00 00  ................
    0230: 15 00 00 00 01 00 00 00 11 00 00 00 09 10 00 00  ................
    0240: 17 00 00 00 01 00 00 00 13 00 00 00 09 10 00 00  ................
    0250: 19 00 00 00 01 00 00 00 15 00 00 00 09 10 00 00  ................
    0260: 1B 00 00 00 01 00 00 00 17 00 00 00 09 10 00 00  ................
    0270: 21 00 00 00 01 00 00 00 19 00 00 00 09 10 00 00  !...............
    0280: 23 00 00 00 01 00 00 00 1B 00 00 00 09 10 00 00  #...............
    0290: 25 00 00 00 01 00 00 00 1D 00 00 00 09 10 00 00  %...............
    02A0: 27 00 00 00 01 00 00 00 1F 00 00 00 09 10 00 00  '...............
    02B0: 29 00 00 00 01 00 00 00 21 00 00 00 09 10 00 00  ).......!.......
    02C0: 2B 00 00 00 01 00 00 00 23 00 00 00 09 10 00 00  +.......#.......
    02D0: 31 00 00 00 01 00 00 00 25 00 00 00 09 10 00 00  1.......%.......
    02E0: 33 00 00 00 01 00 00 00 27 00 00 00 09 10 00 00  3.......'.......
    02F0: 35 00 00 00 01 00 00 00 29 00 00 00 09 10 00 00  5.......).......
    0300: 37 00 00 00 01 00 00 00 2B 00 00 00 09 10 00 00  7.......+.......
    0310: 39 00 00 00 01 00 00 00 2D 00 00 00 09 10 00 00  9.......-.......
    0320: 3B 00 00 00 01 00 00 00 2F 00 00 00 09 10 00 00  ;......./.......
    0330: 00 00 00 00 00 00 00 00 30 00 00 00 09 10 00 00  ........0.......
    0340: 00 00 00 00 00 00 00 00 31 00 00 00 09 10 00 00  ........1.......
    0350: 00 00 00 00 00 00 00 00 32 00 00 00 09 10 00 00  ........2.......
    0360: 00 00 00 00 00 00 00 00 33 00 00 00 09 10 00 00  ........3.......
    0370: 00 00 00 00 00 00 00 00 34 00 00 00 09 10 00 00  ........4.......
    0380: 00 00 00 00 00 00 00 00 35 00 00 00 09 10 00 00  ........5.......
    0390: 00 00 00 00 00 00 00 00 36 00 00 00 09 10 00 00  ........6.......
    03A0: 00 00 00 00 00 00 00 00 37 00 00 00 09 10 00 00  ........7.......
    03B0: 00 00 00 00 00 00 00 00 38 00 00 00 09 10 00 00  ........8.......
    03C0: 00 00 00 00 00 00 00 00 39 00 00 00 09 10 00 00  ........9.......
    03D0: 00 00 00 00 00 00 00 00 3A 00 00 00 09 10 00 00  ........:.......
    03E0: 00 00 00 00 00 00 00 00 3B 00 00 00 09 10 00 00  ........;.......
    03F0: 00 00 00 00 00 00 00 00 3C 00 00 00 09 10 00 00  ........<.......
    0400: 00 00 00 00 00 00 00 00 3D 00 00 00 09 10 00 00  ........=.......
    0410: 00 00 00 00 00 00 00 00 3E 00 00 00 09 10 00 00  ........>.......
    0420: 00 00 00 00 00 00 00 00 3F 00 00 00 09 10 00 00  ........?.......
    0430: 00 00 00 00 00 00 00 00 40 00 00 00 09 10 00 00  ........@.......
    0440: 00 00 00 00 00 00 00 00 41 00 00 00 09 10 00 00  ........A.......
    0450: 00 00 00 00 00 00 00 00 42 00 00 00 09 10 00 00  ........B.......
    0460: 00 00 00 00 00 00 00 00 43 00 00 00 09 10 00 00  ........C.......
    0470: 00 00 00 00 00 00 00 00 44 00 00 00 09 10 00 00  ........D.......
    0480: 00 00 00 00 00 00 00 00 45 00 00 00 09 10 00 00  ........E.......
    0490: 00 00 00 00 00 00 00 00 46 00 00 00 09 10 00 00  ........F.......
    04A0: 00 00 00 00 00 00 00 00 47 00 00 00 09 10 00 00  ........G.......
    04B0: 00 00 00 00 00 00 00 00 48 00 00 00 09 10 00 00  ........H.......
    04C0: 00 00 00 00 00 00 00 00 49 00 00 00 09 10 00 00  ........I.......
    04D0: 00 00 00 00 00 00 00 00 4A 00 00 00 09 10 00 00  ........J.......
    04E0: 00 00 00 00 00 00 00 00 4B 00 00 00 09 10 00 00  ........K.......
    04F0: 00 00 00 00 00 00 00 00 4C 00 00 00 09 10 00 00  ........L.......
    0500: 00 00 00 00 00 00 00 00 4D 00 00 00 09 10 00 00  ........M.......
    0510: 00 00 00 00 00 00 00 00 4E 00 00 00 09 10 00 00  ........N.......
    0520: 00 00 00 00 00 00 00 00 4F 00 00 00 09 10 00 00  ........O.......
    0530: 00 00 00 00 00 00 00 00 50 00 00 00 09 10 00 00  ........P.......
    0540: 00 00 00 00 00 00 00 00 51 00 00 00 09 10 00 00  ........Q.......
    0550: 00 00 00 00 00 00 00 00 52 00 00 00 09 10 00 00  ........R.......
    0560: 00 00 00 00 00 00 00 00 53 00 00 00 09 10 00 00  ........S.......
    0570: 00 00 00 00 00 00 00 00 54 00 00 00 09 10 00 00  ........T.......
    0580: 00 00 00 00 00 00 00 00 55 00 00 00 09 10 00 00  ........U.......
    0590: 00 00 00 00 00 00 00 00 56 00 00 00 09 10 00 00  ........V.......
    05A0: 00 00 00 00 00 00 00 00 57 00 00 00 09 10 00 00  ........W.......
    05B0: 00 00 00 00 00 00 00 00 58 00 00 00 09 10 00 00  ........X.......
    05C0: 00 00 00 00 00 00 00 00 59 00 00 00 09 10 00 00  ........Y.......
    05D0: 00 00 00 00 00 00 00 00 5A 00 00 00 09 10 00 00  ........Z.......
    05E0: 00 00 00 00 00 00 00 00 5B 00 00 00 09 10 00 00  ........[.......
    05F0: 00 00 00 00 00 00 00 00 5C 00 00 00 09 10 00 00  ........\.......
    0600: 00 00 00 00 00 00 00 00 5D 00 00 00 09 10 00 00  ........].......
    0610: 00 00 00 00 00 00 00 00 5E 00 00 00 09 10 00 00  ........^.......
    0620: 00 00 00 00 00 00 00 00 5F 00 00 00 09 10 00 00  ........_.......
    0630: 00 00 00 00 00 00 00 00 60 00 00 00 09 10 00 00  ........`.......
    0640: 00 00 00 00 00 00 00 00 61 00 00 00 09 10 00 00  ........a.......
    0650: 00 00 00 00 00 00 00 00 62 00 00 00 09 10 00 00  ........b.......
    0660: 00 00 00 00 00 00 00 00 63 00 00 00 09 10 00 00  ........c.......
    0670: 00 00 00 00 00 00 00 00 64 00 00 00 09 10 00 00  ........d.......
    0680: 00 00 00 00 00 00 00 00 65 00 00 00 09 10 00 00  ........e.......
    0690: 00 00 00 00 00 00 00 00 66 00 00 00 09 10 00 00  ........f.......
    06A0: 00 00 00 00 00 00 00 00 67 00 00 00 09 10 00 00  ........g.......
    06B0: 00 00 00 00 00 00 00 00 68 00 00 00 09 10 00 00  ........h.......
    06C0: 00 00 00 00 00 00 00 00 69 00 00 00 09 10 00 00  ........i.......
    06D0: 00 00 00 00 00 00 00 00 6A 00 00 00 09 10 00 00  ........j.......
    06E0: 00 00 00 00 00 00 00 00 6B 00 00 00 09 10 00 00  ........k.......
    06F0: 00 00 00 00 00 00 00 00 6C 00 00 00 09 10 00 00  ........l.......
    0700: 00 00 00 00 00 00 00 00 6D 00 00 00 09 10 00 00  ........m.......
    0710: 00 00 00 00 00 00 00 00 6E 00 00 00 09 10 00 00  ........n.......
    0720: 00 00 00 00 00 00 00 00 6F 00 00 00 09 10 00 00  ........o.......
    0730: 00 00 00 00 00 00 00 00 70 00 00 00 09 10 00 00  ........p.......
    0740: 00 00 00 00 00 00 00 00 71 00 00 00 09 10 00 00  ........q.......
    0750: 00 00 00 00 00 00 00 00 72 00 00 00 09 10 00 00  ........r.......
    0760: 00 00 00 00 00 00 00 00 73 00 00 00 09 10 00 00  ........s.......
    0770: 00 00 00 00 00 00 00 00 74 00 00 00 09 10 00 00  ........t.......
    0780: 00 00 00 00 00 00 00 00 75 00 00 00 09 10 00 00  ........u.......
    0790: 00 00 00 00 00 00 00 00 76 00 00 00 09 10 00 00  ........v.......
    07A0: 00 00 00 00 00 00 00 00 77 00 00 00 09 10 00 00  ........w.......
    07B0: 00 00 00 00 00 00 00 00 78 00 00 00 09 10 00 00  ........x.......
    07C0: 00 00 00 00 00 00 00 00 79 00 00 00 09 10 00 00  ........y.......
    07D0: 00 00 00 00 00 00 00 00 7A 00 00 00 09 10 00 00  ........z.......
    07E0: 00 00 00 00 00 00 00 00 7B 00 00 00 09 10 00 00  ........{.......
    07F0: 00 00 00 00 00 00 00 00 7C 00 00 00 09 10 00 00  ........|.......
    0800: 00 00 00 00 00 00 00 00 7D 00 00 00 09 10 00 00  ........}.......
    0810: 00 00 00 00 00 00 00 00 7E 00 00 00 09 10 00 00  ........~.......
    0820: 00 00 00 00 00 00 00 00 7F 00 00 00 09 10 00 00  ................
    0830: 00 00 00 00 00 00 00 00 80 00 00 00 09 10 00 00  ................
    0840: 00 00 00 00 00 00 00 00 81 00 00 00 09 10 00 00  ................
    0850: 00 00 00 00 00 00 00 00 82 00 00 00 09 10 00 00  ................
    0860: 00 00 00 00 00 00 00 00 83 00 00 00 09 10 00 00  ................
    0870: 00 00 00 00 00 00 00 00 84 00 00 00 09 10 00 00  ................
    0880: 00 00 00 00 00 00 00 00 85 00 00 00 09 10 00 00  ................
    0890: 00 00 00 00 00 00 00 00 86 00 00 00 09 10 00 00  ................
    08A0: 00 00 00 00 00 00 00 00 87 00 00 00 09 10 00 00  ................
    08B0: 00 00 00 00 00 00 00 00 88 00 00 00 09 10 00 00  ................
    08C0: 00 00 00 00 00 00 00 00 89 00 00 00 09 10 00 00  ................
    08D0: 00 00 00 00 00 00 00 00 8A 00 00 00 09 10 00 00  ................
    08E0: 00 00 00 00 00 00 00 00 8B 00 00 00 09 10 00 00  ................
    08F0: 00 00 00 00 00 00 00 00 8C 00 00 00 09 10 00 00  ................
    0900: 00 00 00 00 00 00 00 00 8D 00 00 00 09 10 00 00  ................
    0910: 00 00 00 00 00 00 00 00 8E 00 00 00 09 10 00 00  ................
    0920: 00 00 00 00 00 00 00 00 8F 00 00 00 09 10 00 00  ................
    0930: 00 00 00 00 00 00 00 00 90 00 00 00 09 10 00 00  ................
    0940: 00 00 00 00 00 00 00 00 91 00 00 00 09 10 00 00  ................
    0950: 00 00 00 00 00 00 00 00 92 00 00 00 09 10 00 00  ................
    0960: 00 00 00 00 00 00 00 00 93 00 00 00 09 10 00 00  ................
    0970: 00 00 00 00 00 00 00 00 94 00 00 00 09 10 00 00  ................
    0980: 00 00 00 00 00 00 00 00 95 00 00 00 09 10 00 00  ................
    0990: 00 00 00 00 00 00 00 00 96 00 00 00 09 10 00 00  ................
    09A0: 00 00 00 00 00 00 00 00 97 00 00 00 09 10 00 00  ................
    09B0: 00 00 00 00 00 00 00 00 98 00 00 00 09 10 00 00  ................
    09C0: 00 00 00 00 00 00 00 00 99 00 00 00 09 10 00 00  ................
    09D0: 00 00 00 00 00 00 00 00 9A 00 00 00 09 10 00 00  ................
    09E0: 00 00 00 00 00 00 00 00 9B 00 00 00 09 10 00 00  ................
    09F0: 00 00 00 00 00 00 00 00 9C 00 00 00 09 10 00 00  ................
    0A00: 00 00 00 00 00 00 00 00 9D 00 00 00 09 10 00 00  ................
    0A10: 00 00 00 00 00 00 00 00 9E 00 00 00 09 10 00 00  ................
    0A20: 00 00 00 00 00 00 00 00 9F 00 00 00 09 10 00 00  ................
    0A30: 00 00 00 00 00 00 00 00 A0 00 00 00 09 10 00 00  ................
    0A40: 00 00 00 00 00 00 00 00 A1 00 00 00 09 10 00 00  ................
    0A50: 00 00 00 00 00 00 00 00 A2 00 00 00 09 10 00 00  ................
    0A60: 00 00 00 00 00 00 00 00 A3 00 00 00 09 10 00 00  ................
    0A70: 00 00 00 00 00 00 00 00 A4 00 00 00 09 10 00 00  ................
    0A80: 00 00 00 00 00 00 00 00 A5 00 00 00 09 10 00 00  ................
    0A90: 00 00 00 00 00 00 00 00 A6 00 00 00 09 10 00 00  ................
    0AA0: 00 00 00 00 00 00 00 00 A7 00 00 00 09 10 00 00  ................
    0AB0: 00 00 00 00 00 00 00 00 A8 00 00 00 09 10 00 00  ................
    0AC0: 00 00 00 00 00 00 00 00 A9 00 00 00 09 10 00 00  ................
    0AD0: 00 00 00 00 00 00 00 00 AA 00 00 00 09 10 00 00  ................
    0AE0: 00 00 00 00 00 00 00 00 AB 00 00 00 09 10 00 00  ................
    0AF0: 00 00 00 00 00 00 00 00 AC 00 00 00 09 10 00 00  ................
    0B00: 00 00 00 00 00 00 00 00 AD 00 00 00 09 10 00 00  ................
    0B10: 00 00 00 00 00 00 00 00 AE 00 00 00 09 10 00 00  ................
    0B20: 00 00 00 00 00 00 00 00 AF 00 00 00 09 10 00 00  ................
    0B30: 00 00 00 00 00 00 00 00 B0 00 00 00 09 10 00 00  ................
    0B40: 00 00 00 00 00 00 00 00 B1 00 00 00 09 10 00 00  ................
    0B50: 00 00 00 00 00 00 00 00 B2 00 00 00 09 10 00 00  ................
    0B60: 00 00 00 00 00 00 00 00 B3 00 00 00 09 10 00 00  ................
    0B70: 00 00 00 00 00 00 00 00 B4 00 00 00 09 10 00 00  ................
    0B80: 00 00 00 00 00 00 00 00 B5 00 00 00 09 10 00 00  ................
    0B90: 00 00 00 00 00 00 00 00 B6 00 00 00 09 10 00 00  ................
    0BA0: 00 00 00 00 00 00 00 00 B7 00 00 00 09 10 00 00  ................
    0BB0: 00 00 00 00 00 00 00 00 B8 00 00 00 09 10 00 00  ................
    0BC0: 00 00 00 00 00 00 00 00 B9 00 00 00 09 10 00 00  ................
    0BD0: 00 00 00 00 00 00 00 00 BA 00 00 00 09 10 00 00  ................
    0BE0: 00 00 00 00 00 00 00 00 BB 00 00 00 09 10 00 00  ................
    0BF0: 00 00 00 00 00 00 00 00 BC 00 00 00 09 10 00 00  ................
    0C00: 00 00 00 00 00 00 00 00 BD 00 00 00 09 10 00 00  ................
    0C10: 00 00 00 00 00 00 00 00 BE 00 00 00 09 10 00 00  ................
    0C20: 00 00 00 00 00 00 00 00 BF 00 00 00 09 10 00 00  ................
    0C30: 00 00 00 00 00 00 00 00 C0 00 00 00 09 10 00 00  ................
    0C40: 00 00 00 00 00 00 00 00 C1 00 00 00 09 10 00 00  ................
    0C50: 00 00 00 00 00 00 00 00 C2 00 00 00 09 10 00 00  ................
    0C60: 00 00 00 00 00 00 00 00 C3 00 00 00 09 10 00 00  ................
    0C70: 00 00 00 00 00 00 00 00 C4 00 00 00 09 10 00 00  ................
    0C80: 00 00 00 00 00 00 00 00 C5 00 00 00 09 10 00 00  ................
    0C90: 00 00 00 00 00 00 00 00 C6 00 00 00 09 10 00 00  ................
    0CA0: 00 00 00 00 00 00 00 00 C7 00 00 00 09 10 00 00  ................
    0CB0: 00 00 00 00 00 00 00 00 C8 00 00 00 09 10 00 00  ................
    0CC0: 00 00 00 00 00 00 00 00 C9 00 00 00 09 10 00 00  ................
    0CD0: 00 00 00 00 00 00 00 00 CA 00 00 00 09 10 00 00  ................
    0CE0: 00 00 00 00 00 00 00 00 CB 00 00 00 09 10 00 00  ................
    0CF0: 00 00 00 00 00 00 00 00 CC 00 00 00 09 10 00 00  ................
    0D00: 00 00 00 00 00 00 00 00 CD 00 00 00 09 10 00 00  ................
    0D10: 00 00 00 00 00 00 00 00 CE 00 00 00 09 10 00 00  ................
    0D20: 00 00 00 00 00 00 00 00 CF 00 00 00 09 10 00 00  ................
    0D30: 00 00 00 00 00 00 00 00 D0 00 00 00 09 10 00 00  ................
    0D40: 00 00 00 00 00 00 00 00 D1 00 00 00 09 10 00 00  ................
    0D50: 00 00 00 00 00 00 00 00 D2 00 00 00 09 10 00 00  ................
    0D60: 00 00 00 00 00 00 00 00 D3 00 00 00 09 10 00 00  ................
    0D70: 00 00 00 00 00 00 00 00 D4 00 00 00 09 10 00 00  ................
    0D80: 00 00 00 00 00 00 00 00 D5 00 00 00 09 10 00 00  ................
    0D90: 00 00 00 00 00 00 00 00 D6 00 00 00 09 10 00 00  ................
    0DA0: 00 00 00 00 00 00 00 00 D7 00 00 00 09 10 00 00  ................
    0DB0: 00 00 00 00 00 00 00 00 D8 00 00 00 09 10 00 00  ................
    0DC0: 00 00 00 00 00 00 00 00 D9 00 00 00 09 10 00 00  ................
    0DD0: 00 00 00 00 00 00 00 00 DA 00 00 00 09 10 00 00  ................
    0DE0: 00 00 00 00 00 00 00 00 DB 00 00 00 09 10 00 00  ................
    0DF0: 00 00 00 00 00 00 00 00 DC 00 00 00 09 10 00 00  ................
    0E00: 00 00 00 00 00 00 00 00 DD 00 00 00 09 10 00 00  ................
    0E10: 00 00 00 00 00 00 00 00 DE 00 00 00 09 10 00 00  ................
    0E20: 00 00 00 00 00 00 00 00 DF 00 00 00 09 10 00 00  ................
    0E30: 00 00 00 00 00 00 00 00 E0 00 00 00 09 10 00 00  ................
    0E40: 00 00 00 00 00 00 00 00 E1 00 00 00 09 10 00 00  ................
    0E50: 00 00 00 00 00 00 00 00 E2 00 00 00 09 10 00 00  ................
    0E60: 00 00 00 00 00 00 00 00 E3 00 00 00 09 10 00 00  ................
    0E70: 00 00 00 00 00 00 00 00 E4 00 00 00 09 10 00 00  ................
    0E80: 00 00 00 00 00 00 00 00 E5 00 00 00 09 10 00 00  ................
    0E90: 00 00 00 00 00 00 00 00 E6 00 00 00 09 10 00 00  ................
    0EA0: 00 00 00 00 00 00 00 00 E7 00 00 00 09 10 00 00  ................
    0EB0: 00 00 00 00 00 00 00 00 E8 00 00 00 09 10 00 00  ................
    0EC0: 00 00 00 00 00 00 00 00 E9 00 00 00 09 10 00 00  ................
    0ED0: 00 00 00 00 00 00 00 00 EA 00 00 00 09 10 00 00  ................
    0EE0: 00 00 00 00 00 00 00 00 EB 00 00 00 09 10 00 00  ................
    0EF0: 00 00 00 00 00 00 00 00 EC 00 00 00 09 10 00 00  ................
    0F00: 00 00 00 00 00 00 00 00 ED 00 00 00 09 10 00 00  ................
    0F10: 00 00 00 00 00 00 00 00 EE 00 00 00 09 10 00 00  ................
    0F20: 00 00 00 00 00 00 00 00 EF 00 00 00 09 10 00 00  ................
    0F30: 00 00 00 00 00 00 00 00 F0 00 00 00 09 10 00 00  ................
    0F40: 00 00 00 00 00 00 00 00 F1 00 00 00 09 10 00 00  ................
    0F50: 00 00 00 00 00 00 00 00 F2 00 00 00 09 10 00 00  ................
    0F60: 00 00 00 00 00 00 00 00 F3 00 00 00 09 10 00 00  ................
    0F70: 00 00 00 00 00 00 00 00 F4 00 00 00 09 10 00 00  ................
    0F80: 00 00 00 00 00 00 00 00 F5 00 00 00 09 10 00 00  ................
    0F90: 00 00 00 00 00 00 00 00 F6 00 00 00 09 10 00 00  ................
    0FA0: 00 00 00 00 00 00 00 00 F7 00 00 00 09 10 00 00  ................
    0FB0: 00 00 00 00 00 00 00 00 F8 00 00 00 09 10 00 00  ................
    0FC0: 00 00 00 00 00 00 00 00 F9 00 00 00 09 10 00 00  ................
    0FD0: 00 00 00 00 00 00 00 00 FA 00 00 00 09 10 00 00  ................
    0FE0: 00 00 00 00 00 00 00 00 FB 00 00 00 09 10 00 00  ................
    0FF0: 00 00 00 00 00 00 00 00 FC 00 00 00 09 10 00 00  ................
    1000: 00 00 00 00 00 00 00 00 FD 00 00 00 09 10 00 00  ................
    1010: 00 00 00 00 00 00 00 00 FE 00 00 00 09 10 00 00  ................
    1020: 00 00 00 00 00 00 00 00 FF 00 00 00 0A 0C 0D 00  ................
    1030: FF FF FF FF 01 00 00 00 01 0C 80 00 00 00 C0 FE  ................
    1040: 00 00 00 00 01 0C 81 00 00 00 18 DF 78 00 00 00  ............x...
    1050: 01 0C 82 00 00 00 18 D3 58 00 00 00 01 0C 83 00  ........X.......
    1060: 00 00 18 F7 18 00 00 00 01 0C 84 00 00 00 18 C9  ................
    1070: 38 00 00 00 02 0A 00 00 02 00 00 00 00 00 02 0A  8...............
    1080: 00 09 09 00 00 00 0F 00                          ........

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 67 00 00 00 02 FE 41 4D 44 00 00 00  SSDTg.....AMD...
    0010: 43 50 4D 44 53 4D 00 00 01 00 00 00 49 4E 54 4C  CPMDSM......INTL
    0020: 31 03 23 20 5B 80 43 44 49 44 00 0C 00 B0 45 A9  1.# [.CDID....E.
    0030: 0A 40 5B 81 14 43 44 49 44 01 4D 41 53 54 40 04  .@[..CDID.MAST@.
    0040: 43 46 4C 47 08 00 48 1B 5B 80 43 44 53 54 00 4D  CFLG..H.[.CDST.M
    0050: 41 53 54 0B 00 20 5B 81 0F 43 44 53 54 01 00 00  AST.. [..CDST...
    0060: 43 54 41 47 80 00 0C                             CTAG...

HMAT @ 0x0000000000000000
    0000: 48 4D 41 54 A4 00 00 00 02 CA 41 4D 44 00 00 00  HMAT......AMD...
    0010: 41 6D 64 54 61 62 6C 65 01 00 00 00 41 4D 44 20  AmdTable....AMD 
    0020: 01 00 00 00 00 00 00 00 00 00 00 00 28 00 00 00  ............(...
    0030: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0050: 01 00 00 00 2A 00 00 00 00 00 00 00 01 00 00 00  ....*...........
    0060: 01 00 00 00 00 00 00 00 E8 03 00 00 00 00 00 00  ................
    0070: 00 00 00 00 00 00 00 00 6E 00 01 00 00 00 2A 00  ........n.....*.
    0080: 00 00 00 03 00 00 01 00 00 00 01 00 00 00 00 00  ................
    0090: 00 00 64 00 00 00 00 00 00 00 00 00 00 00 00 00  ..d.............
    00A0: 00 00 60 03                                      ..`.

VFCT @ 0x0000000000000000
    0000: 56 46 43 54 84 E6 00 00 01 F9 41 4D 44 20 20 20  VFCT......AMD   
    0010: 41 20 4D 20 49 20 00 00 01 00 00 00 41 4D 44 00  A M I ......AMD.
    0020: 47 4F 50 31 32 9B A3 5D BD C6 CF 49 95 A6 E8 E4  GOP12..]...I....
    0030: 2E CD 79 A7 4C 00 00 00 00 00 00 00 00 00 00 00  ..y.L...........
    0040: 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00  ................
    0050: 00 00 00 00 00 00 00 00 02 10 DF 67 00 00 00 00  ...........g....
    0060: 01 00 00 00 00 E6 00 00 55 AA 73 E9 A5 02 00 00  ........U.s.....
    0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0080: 48 02 00 00 00 00 49 42 4D 18 26 93 00 00 00 00  H.....IBM.&.....
    0090: 00 00 00 00 00 00 00 04 20 37 36 31 32 39 35 35  ........ 7612955
    00A0: 32 30 00 00 00 00 00 00 9D 02 00 00 00 00 00 00  20..............
    00B0: 24 02 00 00 00 00 00 00 30 37 2F 32 30 2F 31 36  $.......07/20/16
    00C0: 20 30 31 3A 34 35 00 00 37 00 00 00 E9 B0 03 00   01:45..7.......
    00D0: E9 BF 03 00 00 00 F4 00 00 17 00 00 00 D0 01 00  ................
    00E0: 26 68 20 E1 02 80 7E 00 A2 18 45 02 12 00 00 00  &h ...~...E.....
    00F0: 00 00 00 3C 40 0E 02 07 3C 01 1A 00 04 00 00 00  ...<@...<.......
    0100: EE A0 FF 06 00 08 30 40 0E 01 00 00 00 00 00 00  ......0@........
    0110: 14 03 00 00 00 00 00 00 BE 7E 11 00 B9 07 1A D6  .........~......
    0120: 50 2C 00 00 00 00 00 00 00 00 00 00 0C 40 41 43  P,...........@AC
    0130: 00 00 00 00 10 00 00 00 42 00 00 00 F0 7D C6 07  ........B....}..
    0140: 20 00 20 00 12 00 0E 00 00 00 00 00 00 00 00 00   . .............
    0150: 00 00 00 00 00 00 00 00 00 00 00 00 31 31 33 2D  ............113-
    0160: 56 33 34 31 31 31 2D 46 31 00 45 4C 4C 45 53 4D  V34111-F1.ELLESM
    0170: 45 52 45 00 50 43 49 5F 45 58 50 52 45 53 53 00  ERE.PCI_EXPRESS.
    0180: 47 44 44 52 35 00 0D 0A 31 31 33 2D 4D 53 49 54  GDDR5...113-MSIT
    0190: 56 33 34 31 4D 48 2E 31 36 31 20 20 20 20 20 20  V341MH.161      
    01A0: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20                  
    01B0: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20                  
    01C0: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20                  
    01D0: 20 20 20 20 0D 0A 00 0D 0A 20 0D 0A 00 28 43 29      ..... ...(C)
    01E0: 20 31 39 38 38 2D 32 30 31 30 2C 20 41 64 76 61   1988-2010, Adva
    01F0: 6E 63 65 64 20 4D 69 63 72 6F 20 44 65 76 69 63  nced Micro Devic
    0200: 65 73 2C 20 49 6E 63 2E 00 41 54 4F 4D 42 49 4F  es, Inc..ATOMBIO
    0210: 53 42 4B 2D 41 4D 44 20 56 45 52 30 31 35 2E 30  SBK-AMD VER015.0
    0220: 35 30 2E 30 30 30 2E 30 30 30 2E 30 30 30 30 30  50.000.000.00000
    0230: 30 00 30 37 73 2E 35 30 30 20 20 20 20 20 00 31  0.07s.500     .1
    0240: 32 39 33 33 33 35 20 00 33 35 34 30 33 34 20 20  293335 .354034  
    0250: 00 20 20 20 20 20 20 20 20 00 4D 53 49 5F 45 4C  .        .MSI_EL
    0260: 4C 45 53 4D 45 52 45 5F 44 30 30 39 30 38 5F 58  LESMERE_D00908_X
    0270: 54 5F 47 44 35 5F 34 47 42 5F 48 59 4E 49 58 5C  T_GD5_4GB_HYNIX\
    0280: 63 6F 6E 66 69 67 2E 68 00 00 00 90 24 00 01 01  config.h....$...
    0290: 41 54 4F 4D 00 C0 C9 03 CA 01 6D 02 1E 01 EE 03  ATOM......m.....
    02A0: 00 00 00 00 62 14 13 34 48 02 FE 97 A4 98 A0 00  ....b..4H.......
    02B0: 50 43 49 52 02 10 DF 67 00 00 18 00 00 00 00 03  PCIR...g........
    02C0: 73 00 32 0F 00 00 00 00 41 4D 44 20 41 54 4F 4D  s.2.....AMD ATOM
    02D0: 42 49 4F 53 00 AA 12 3A 30 00 00 00 00 00 00 00  BIOS...:0.......
    02E0: 00 10 3A 60 1A 22 31 67 03 87 55 81 93 9A 33 6E  ..:`."1g..U...3n
    02F0: 7C 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  |...............
    0300: 00 00 00 00 00 56 1E 0E 1F E8 DA 2A 81 4D 50 00  .....V.....*.MP.
    0310: 20 1F 5E 1E 06 66 50 66 51 66 52 66 53 66 55 66   .^..fPfQfRfSfUf
    0320: 56 66 57 0E 1F A3 38 02 8C 0E 2C 02 B2 20 E8 9A  VfW...8...,.. ..
    0330: 2E 0B C0 75 14 A2 02 00 66 5F 66 5E 66 5D 66 5B  ...u....f_f^f]f[
    0340: 66 5A 66 59 66 58 07 1F CB E8 B4 2F E8 7B 2D 32  fZfYfX...../.{-2
    0350: D2 89 16 3A 02 A1 38 02 66 C1 C0 10 A1 2C 02 E8  ...:..8.f....,..
    0360: 15 04 E8 28 04 E8 F0 03 E8 5E 05 E8 55 03 E8 75  ...(.....^..U..u
    0370: 2A F7 45 50 00 20 75 13 E8 22 2A 0B C0 74 0C E8  *.EP. u.."*..t..
    0380: 49 00 E8 A1 58 E8 E5 03 E8 E8 58 E8 B9 00 B4 80  I...X.....X.....
    0390: E8 6C 2D 8A C7 66 C1 E0 10 8A E3 B0 14 66 50 BB  .l-..f.......fP.
    03A0: 08 00 E8 86 28 A8 01 66 58 74 02 B0 20 66 A3 26  ....(..fXt.. f.&
    03B0: 93 E8 72 03 E8 E0 03 E8 6B 2F 66 5F 66 5E 66 5D  ..r.....k/f_f^f]
    03C0: 66 5B 66 5A 66 59 66 58 07 1F CB 2E 8B 1E 2C 02  f[fZfYfX......,.
    03D0: 83 3E DB 03 00 75 04 89 1E D9 03 1E 2E 8E 1E D1  .>...u..........
    03E0: 03 9C FA 66 C7 06 08 01 65 F0 00 F0 C7 06 40 00  ...f....e.....@.
    03F0: EE 03 89 1E 42 00 C7 06 B4 01 EE 03 89 1E B6 01  ....B...........
    0400: C7 06 7C 00 44 61 89 1E 7E 00 C7 06 0C 01 57 65  ..|.Da..~.....We
    0410: 89 1E 0E 01 C7 06 A8 04 84 5B 89 1E AA 04 2E 8E  .........[......
    0420: 1E D9 03 8B C3 A3 86 5B A3 96 5B A3 A8 5B 9D 1F  .......[..[..[..
    0430: C3 50 4D 49 44 EE 03 AA 48 00 00 00 A0 00 B0 00  .PMID...H.......
    0440: B8 00 C0 00 00 00 00 BB 00 00 E8 DE 27 66 C1 E8  ............'f..
    0450: 10 A3 4E 02 C3 00 E8 A7 2E E8 52 02 75 1B 2E 3A  ..N.......R.u..:
    0460: 26 46 02 75 05 E8 47 00 EB 11 80 FC 4F 75 05 E8  &F.u..G.....Ou..
    0470: 96 43 EB 07 E8 E5 4A EB 02 B4 01 E8 A7 2E CF E8  .C....J.........
    0480: 7E 2E E8 29 02 75 05 E8 25 00 EB 02 B4 01 E8 94  ~..).u..%.......
    0490: 2E CB E8 6B 2E E8 16 02 75 0F 80 FC 4F 75 05 E8  ...k....u...Ou..
    04A0: 66 43 EB 07 E8 B5 4A EB 02 B4 01 E8 77 2E CB 1E  fC....J.....w...
    04B0: 06 66 50 66 51 66 52 66 53 66 55 66 56 66 57 0E  .fPfQfRfSfUfVfW.
    04C0: 1F 3C 04 75 23 BB 0B 00 E8 60 27 8D 36 1B 01 8A  .<.u#....`'.6...
    04D0: 3C 80 EF 30 B3 02 8B EC 89 5E 0C 89 46 04 66 C1  <..0.....^..F.f.
    04E0: E8 10 89 46 00 E9 A4 01 3C 05 75 18 E8 81 02 E8  ...F....<.u.....
    04F0: D8 2B 8B EC 89 56 10 89 46 00 66 C1 E8 10 89 46  .+...V..F.f....F
    0500: 04 E9 88 01 3C 06 75 39 E8 73 02 66 D1 E0 8B EC  ....<.u9.s.f....
    0510: 89 46 14 BB 02 00 E8 12 27 88 46 18 E8 63 02 66  .F......'.F..c.f
    0520: 0B C0 0F 84 5E 01 66 89 46 0C BB 06 00 E8 FB 26  ....^.f.F......&
    0530: 33 C0 66 89 46 00 2E 8B 16 4E 02 89 56 10 E9 4B  3.f.F....N..V..K
    0540: 01 3C 0B 75 24 0A DB 75 11 B9 80 00 BB 02 00 8B  .<.u$..u........
    0550: EC 89 5E 0C 89 4E 14 E9 32 01 8A C7 E8 45 01 E8  ..^..N..2....E..
    0560: E7 0E 0F 84 1E 01 E9 23 01 3C 17 75 21 E8 72 06  .......#.<.u!.r.
    0570: 74 06 E8 65 0D E8 C7 18 E8 93 07 E8 BE 0E 33 C9  t..e..........3.
    0580: 66 C1 E8 10 0A E8 8B EC 89 4E 14 E9 FE 00 3C 18  f........N....<.
    0590: 75 6D 0A FF 75 18 E8 A3 05 8B EC 89 46 0C 66 C1  um..u.......F.f.
    05A0: E8 10 89 46 14 E8 44 08 89 4E 10 E9 DE 00 80 FF  ...F..D..N......
    05B0: 0F 74 0E 23 C9 0F 84 CB 00 E8 CD 05 E8 23 06 75  .t.#.........#.u
    05C0: 2D BB 00 1C E8 F5 2C 66 0B C0 0F 84 B6 00 E8 3D  -.....,f.......=
    05D0: 07 0B C9 0F 84 AD 00 BE 00 1C E8 D0 01 0F 84 A3  ................
    05E0: 00 BE 00 1C B0 40 E8 2D 02 E8 50 05 EB 09 E8 46  .....@.-..P....F
    05F0: 06 E8 8E 18 E8 32 06 8B EC 89 46 0C E9 8D 00 3C  .....2....F....<
    0600: 19 75 09 E8 05 06 E8 80 18 E9 80 00 3C 82 75 2C  .u..........<.u,
    0610: 80 FB 01 75 0D 8B EC BE 76 06 89 76 00 8C 4E 10  ...u....v..v..N.
    0620: EB 6A 80 FB 05 75 15 0A FF 75 0A E8 87 03 8B EC  .j...u...u......
    0630: 89 46 14 EB 57 E8 43 03 74 42 EB 50 3C 8E 75 12  .F..W.C.tB.P<.u.
    0640: 80 FF 01 74 08 80 FF 02 75 32 80 C1 02 E8 CB 03  ...t....u2......
    0650: EB 3A 3C 8F 75 26 80 FF 05 75 05 E8 1D 06 EB 2C  .:<.u&...u.....,
    0660: 80 FF 07 75 0A E8 21 06 8B EC 88 5E 0C EB 1D 80  ...u..!....^....
    0670: FF 85 75 08 E8 04 06 E8 FA 17 EB 10 8B EC C6 46  ..u............F
    0680: 19 02 EB 0F 8B EC C6 46 19 01 EB 07 32 E4 8B EC  .......F....2...
    0690: 88 66 19 66 5F 66 5E 66 5D 66 5B 66 5A 66 59 66  .f.f_f^f]f[fZfYf
    06A0: 58 07 1F C3 51 8A C8 B8 01 00 D3 E0 59 C3 50 32  X...Q.......Y.P2
    06B0: C0 53 BB 15 00 E8 73 25 5B 3C FF 74 04 24 03 0A  .S....s%[<.t.$..
    06C0: C0 58 C3 E8 85 2C E8 A6 06 F7 C1 02 00 74 0E 06  .X...,.......t..
    06D0: 0E 07 8D 3E 76 06 B8 02 00 E8 BF 05 07 C3 00 00  ...>v...........
    06E0: 00 00 07 00 08 08 08 00 00 00 00 00 00 00 00 00  ................
    06F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0C 01  ................
    0700: C3 00 50 51 B0 B6 E6 43 B0 33 E6 42 B0 05 E6 42  ..PQ...C.3.B...B
    0710: E4 61 8A E0 0C 03 E6 61 8A C4 B9 C8 00 E8 2A 28  .a.....a......*(
    0720: E6 61 59 58 C3 00 1E 56 0E 1F 80 3E 02 00 80 76  .aYX...V...>...v
    0730: 05 C6 06 02 00 80 8A 0E 02 00 C1 E1 09 FC C6 06  ................
    0740: 21 00 00 33 F6 32 E4 AC 02 E0 E2 FB F6 D4 FE C4  !..3.2..........
    0750: 88 26 21 00 5E 1F C3 00 E8 08 27 75 03 E8 B2 28  .&!.^.....'u...(
    0760: E8 4B 27 E8 15 27 E8 46 26 E8 6E 0B C3 B0 01 C3  .K'..'.F&.n.....
    0770: BB 01 00 E8 A1 24 C3 BB 01 00 E8 A4 24 C3 E8 57  .....$......$..W
    0780: 28 C3 53 BB 04 00 E8 A2 24 33 C0 5B C3 E8 20 28  (.S.....$3.[.. (
    0790: BB 0A 00 E8 8B 24 C3 BB 0A 00 E8 7A 24 66 8B C8  .....$.....z$f..
    07A0: E8 0D 28 BB 0A 00 66 2B C1 E8 75 24 C3 E8 29 00  ..(...f+..u$..).
    07B0: 0B C9 74 22 E8 64 06 E8 11 16 66 51 66 8B C8 BB  ..t".d....fQf...
    07C0: 07 00 E8 52 24 66 25 00 FE 00 00 66 0B C1 E8 50  ...R$f%....f...P
    07D0: 24 66 59 0C 01 C3 32 C0 C3 E8 9B 03 0B C9 75 0A  $fY...2.......u.
    07E0: 33 D2 E8 B8 25 8B C8 E8 9F 03 0B D1 E8 FD 05 23  3...%..........#
    07F0: CA 66 C1 E6 10 33 F6 E8 87 0A 74 15 E8 9C 0B 85  .f...3....t.....
    0800: C1 74 F4 51 E8 A7 11 59 75 ED E8 8E 0B 33 C8 EB  .t.Q...Yu....3..
    0810: E6 66 C1 EE 10 C3 A8 10 75 5A E8 C0 15 66 C1 E6  .f......uZ...f..
    0820: 10 33 F6 E8 5B 0A 74 24 E8 2B 0A 74 0B E8 B0 0B  .3..[.t$.+.t....
    0830: 24 03 3C 03 75 ED EB 0A E8 A5 0B A8 01 74 E4 E8  $.<.u........t..
    0840: 13 07 E8 E9 16 B5 00 E8 9D 0B EB D7 E8 7A 01 32  .............z.2
    0850: C9 33 F6 E8 6F 0A E8 5F 16 E8 8B 26 FE C1 38 C1  .3..o.._...&..8.
    0860: 72 F1 66 C1 EE 10 E8 6D 15 A8 20 75 57 A8 40 75  r.f....m.. uW.@u
    0870: 03 E8 7C 1C E8 54 15 0A C0 75 19 32 C9 33 F6 E8  ..|..T...u.2.3..
    0880: 43 0A 0B F6 74 05 B5 01 E8 1C 1D E8 59 26 FE C1  C...t.......Y&..
    0890: 38 C1 72 EB 33 F6 E8 DD 09 74 26 E8 22 0B E8 F8  8.r.3....t&."...
    08A0: 22 75 14 E8 E3 03 0A DB 74 0D E8 A8 06 E8 7E 16  "u......t.....~.
    08B0: B5 00 E8 32 0B EB DF E8 56 16 B5 01 E8 28 0B EB  ...2....V....(..
    08C0: D5 E8 12 01 C3 E8 D5 24 C3 E8 73 15 33 C9 33 D2  .......$..s.3.3.
    08D0: E8 B6 02 66 33 D2 66 33 C0 E8 43 0B E8 53 00 B1  ...f3.f3..C..S..
    08E0: FF E8 97 00 33 F6 E8 98 09 74 10 E8 D2 0A E8 A4  ....3....t......
    08F0: 22 74 03 E8 B5 16 E8 E2 16 EB EB B3 01 E8 68 02  "t............h.
    0900: E8 69 25 E8 97 24 0B C0 C3 E8 CE 09 E8 30 15 66  .i%..$.......0.f
    0910: 33 C0 66 BA 00 F0 00 F0 E8 30 02 51 B1 01 E8 DB  3.f......0.Q....
    0920: 02 59 33 F6 E8 5A 09 74 05 E8 7F 16 EB F6 E8 CF  .Y3..Z.t........
    0930: 1B C3 B8 02 00 E8 2B 09 74 40 B1 07 E8 92 20 E8  ......+.t@.... .
    0940: 3B 0B A8 04 75 12 E8 40 27 83 3D 00 75 0A E8 4C  ;...u..@'.=.u..L
    0950: 24 83 E0 FD E8 4F 24 C3 66 BA FF FF FB FF 66 B8  $....O$.f.....f.
    0960: 00 00 04 00 E8 B8 0A E8 DB 0C E8 AF 26 8A C8 BB  ............&...
    0970: 04 00 E8 A2 22 8A E1 E8 A7 22 C3 E8 B9 22 74 34  ...."...."..."t4
    0980: 38 E1 76 04 8A CC EB 06 38 C1 73 02 8A C8 BB 02  8.v.....8.s.....
    0990: 00 E8 83 22 8A E1 E8 88 22 BB 02 00 E8 78 22 66  ..."...."....x"f
    09A0: C1 E8 18 A8 20 75 08 B1 04 E8 25 20 0C 01 C3 E8  .... u....% ....
    09B0: DE 14 0C 01 C3 51 E8 7E 22 74 0C 8A CC BB 02 00  .....Q.~"t......
    09C0: E8 54 22 8A C4 8A E1 59 C3 33 F6 E8 A8 08 74 05  .T"....Y.3....t.
    09D0: E8 C7 14 EB F6 C3 33 F6 E8 9B 08 74 05 E8 C9 14  ......3....t....
    09E0: EB F6 C3 E8 DD 25 75 1B 80 F9 01 75 17 33 F6 E8  .....%u....u.3..
    09F0: 84 08 74 0C 51 E8 18 15 B5 01 E8 EA 09 59 EB EF  ..t.Q........Y..
    0A00: E8 D3 FF C3 E8 C2 FF 33 F6 E8 6A 08 74 0C 51 E8  .......3..j.t.Q.
    0A10: 99 15 B5 00 E8 D0 09 59 EB EF C3 B8 02 00 E8 42  .......Y.......B
    0A20: 08 74 03 E8 AB 1F C3 E8 55 1B 8B C8 66 C1 E8 10  .t......U...f...
    0A30: 8B D0 C3 8A C3 24 80 E8 A3 13 32 C9 B5 10 E8 F7  .....$....2.....
    0A40: 1A E8 A3 24 FE C1 38 C1 72 F2 C3 E8 1C 13 3B C1  ...$..8.r.....;.
    0A50: 7C 3A 8B C1 E8 5C 13 E8 1D 1D 8B C8 51 E8 8C 13  |:...\......Q...
    0A60: E8 50 13 59 E8 10 1D 3B C8 72 02 8B C1 8D 5C 04  .P.Y...;.r....\.
    0A70: E8 C1 27 32 C9 B5 0F E8 BE 1A E8 6A 24 FE C1 38  ..'2.......j$..8
    0A80: C1 72 F2 8D 5C 04 E8 33 28 0B C0 C3 33 C0 C3 52  .r..\..3(...3..R
    0A90: E8 9C 00 8A C2 8B D1 66 C1 E2 10 8A D0 32 C0 B9  .......f.....2..
    0AA0: 00 02 E8 B1 1C 66 C1 EA 10 8B CA 5A E8 80 00 E8  .....f.....Z....
    0AB0: 0A 28 66 C1 E8 02 0A F6 75 04 66 C1 E8 02 67 26  .(f.....u.f...g&
    0AC0: 88 07 66 C1 E8 0A 67 26 88 47 01 66 C1 E8 0A 67  ..f...g&.G.f...g
    0AD0: 26 88 47 02 66 83 C7 04 83 C3 04 E2 D2 C3 51 E8  &.G.f.........Q.
    0AE0: 4D 00 53 67 26 8A 47 02 66 C1 E0 0A 67 26 8A 47  M.Sg&.G.f...g&.G
    0AF0: 01 66 C1 E0 0A 67 26 8A 07 66 C1 E0 02 0A F6 75  .f...g&..f.....u
    0B00: 04 66 C1 E0 02 E8 14 27 66 83 C7 04 83 C3 04 E2  .f.....'f.......
    0B10: D2 5B 59 8A C2 8B D1 66 C1 E2 10 8A D0 B9 00 03  .[Y....f........
    0B20: 53 E8 32 1C 5B E8 BF 23 FE C1 38 C1 72 F2 C3 BB  S.2.[..#..8.r...
    0B30: 00 18 33 C0 8A C2 C1 E0 02 03 D8 C3 53 BB 03 00  ..3.........S...
    0B40: E8 D4 20 66 25 FF 0F FF 0F 5B C3 53 66 50 66 51  .. f%....[.SfPfQ
    0B50: 66 8B C8 BB 03 00 E8 BE 20 66 23 C2 66 0B C1 E8  f....... f#.f...
    0B60: BF 20 66 59 66 58 5B C3 B8 2C 06 F6 C3 01 75 03  . fYfX[..,....u.
    0B70: B8 0C 06 E8 37 00 C3 BB 05 00 E8 9A 20 25 FF 0F  ....7....... %..
    0B80: 8B C8 66 C1 E0 10 8B D0 C3 E8 11 22 23 C8 81 E2  ..f........"#...
    0B90: 15 01 23 D1 66 C1 E2 10 8B D1 BB 05 00 E8 77 20  ..#.f.........w 
    0BA0: 66 25 00 F0 EA FE 66 0B C2 E8 75 20 C3 66 50 53  f%....f...u .fPS
    0BB0: 51 66 52 66 33 D2 33 DB 8A DC 8A E8 8A C8 80 E1  QfRf3.3.........
    0BC0: 1F 66 BA 01 00 00 00 66 D3 E2 E8 4A 20 66 0B C2  .f.....f...J f..
    0BD0: F6 C5 20 75 03 66 33 C2 E8 46 20 66 5A 59 5B 66  .. u.f3..F fZY[f
    0BE0: 58 C3 66 50 53 BB 06 00 E8 2C 20 A8 10 75 09 BB  X.fPS...., ..u..
    0BF0: F0 16 E8 C7 26 3D 5A A5 5B 66 58 C3 B8 04 06 80  ....&=Z.[fX.....
    0C00: F1 01 C0 E1 05 0A C1 E8 A3 FF C3 53 66 50 BB F8  ...........SfP..
    0C10: 16 E8 A8 26 8A C1 E8 03 26 66 58 5B C3 53 BB F8  ...&....&fX[.S..
    0C20: 16 E8 98 26 83 E0 01 5B C3 BB 06 00 E8 E8 1F 66  ...&...[.......f
    0C30: C1 E8 10 25 FF 0F C3 BB 06 00 E8 DA 1F 66 25 FF  ...%.........f%.
    0C40: FF 00 F0 66 C1 E2 10 66 0B C2 E8 D4 1F C3 53 66  ...f...f......Sf
    0C50: 50 BB 07 00 E8 C0 1F F6 C4 01 66 58 B0 06 74 02  P.........fX..t.
    0C60: B0 08 5B C3 53 BB 07 00 E8 AC 1F 80 E4 FE 80 FD  ..[.S...........
    0C70: 06 74 03 80 CC 01 E8 A8 1F 5B C3 53 B8 06 06 C0  .t.......[.S....
    0C80: E3 05 0A C3 E8 26 FF 5B C3 66 50 BB 06 00 E8 86  .....&.[.fP.....
    0C90: 1F 24 40 C0 E8 06 8A D8 66 58 C3 57 66 50 66 33  .$@.....fX.WfPf3
    0CA0: C0 B9 08 00 FC F3 66 AB 66 58 5F E8 3E 01 0B C0  ......f.fX_.>...
    0CB0: 75 09 E8 E2 05 74 3C 85 C1 74 F7 E8 A5 05 8D 9C  u....t<..t......
    0CC0: 6A 01 E8 F7 25 26 89 05 8D 9C 6E 01 E8 ED 25 26  j...%&....n...%&
    0CD0: 89 45 02 8D 9C B5 02 E8 E2 25 02 C0 04 04 26 88  .E.......%....&.
    0CE0: 45 06 26 88 45 07 26 88 45 08 B0 07 26 88 45 04  E.&.E.&.E...&.E.
    0CF0: 0A C0 C3 32 C0 C3 C3 66 50 53 51 52 56 57 E8 E1  ...2...fPSQRVW..
    0D00: FE 74 03 E8 D4 05 5F 5E 5A 59 5B 66 58 C3 33 C9  .t...._^ZY[fX.3.
    0D10: E8 B0 22 75 48 66 BA FF FF 0C FF 66 33 C0 E8 FE  .."uHf.....f3...
    0D20: 06 33 F6 E8 5B 05 74 18 E8 70 06 A9 C8 0E 74 F3  .3..[.t..p....t.
    0D30: E8 4A 07 A8 04 75 04 A8 18 74 E8 E8 7B 00 EB E3  .J...u...t..{...
    0D40: E8 2C 00 75 03 E8 A4 00 33 F6 E8 34 05 74 0E E8  .,.u....3..4.t..
    0D50: 49 06 85 C1 74 F4 51 E8 00 08 59 EB ED C3 8D 5D  I...t.Q...Y....]
    0D60: 28 66 C1 E3 10 8D 5C 28 B9 49 00 E8 A0 21 C3 66  (f....\(.I...!.f
    0D70: 50 53 52 56 33 C9 33 D2 8D 36 48 0D E8 BD 06 A8  PSRV3.3..6H.....
    0D80: 03 74 03 83 CA 01 66 C1 E8 10 8A 0C 80 F9 FF 74  .t....f........t
    0D90: 15 66 A9 01 00 00 00 74 07 BB 01 00 D3 E3 0B D3  .f.....t........
    0DA0: 66 D1 E8 46 EB E4 8B CA 0B C9 5E 5A 5B 66 58 C3  f..F......^Z[fX.
    0DB0: 03 07 01 05 06 09 0A 0B FF 66 50 53 51 E8 DB 05  .........fPSQ...
    0DC0: 0F BC D8 81 C3 78 0D 8A 0F 66 B8 01 00 00 00 66  .....x...f.....f
    0DD0: D3 E0 66 BA FF FF FF FF E8 44 06 59 5B 66 58 C3  ..f......D.Y[fX.
    0DE0: 01 12 0B 10 09 13 14 11 0C 15 16 17 50 53 52 E8  ............PSR.
    0DF0: 7D FF 75 13 B9 01 00 E8 A3 1F 23 C8 75 19 33 C0  }.u.......#.u.3.
    0E00: E8 94 04 8B C8 EB 10 83 F9 02 74 0B E8 7A FE 80  ..........t..z..
    0E10: FB 01 75 03 83 E1 FD 5A 5B 58 C3 56 83 EC 04 8B  ..u....Z[X.V....
    0E20: EC 66 33 C0 66 89 46 00 66 BA 00 F0 00 F0 E8 1A  .f3.f.F.f.......
    0E30: FD 66 C1 E6 10 E8 5F 04 0B C0 74 1E 85 C1 74 F5  .f...._...t...t.
    0E40: 55 E8 56 00 5D 74 04 33 C8 EB EA E8 C2 05 66 3B  U.V.]t.3......f;
    0E50: 56 00 76 E1 66 89 56 00 EB DB E8 DF FC 74 07 66  V.v.f.V......t.f
    0E60: 8B 46 00 E8 05 00 83 C4 04 5E C3 33 F6 66 50 E8  .F.......^.3.fP.
    0E70: 04 04 66 58 8D 9C D8 02 E8 A1 23 66 8B D0 E8 BB  ..fX......#f....
    0E80: FC E8 25 19 8D 9C 1C 03 E8 31 24 38 D0 74 0A 8A  ..%......1$8.t..
    0E90: C2 E8 88 23 B0 02 E8 66 05 C3 50 51 E8 C4 03 32  ...#...f..PQ...2
    0EA0: C0 E8 5B 05 E8 39 03 E8 AB 00 8D 9C 40 03 E8 0B  ..[..9......@...
    0EB0: 24 38 E8 74 0A 8A C5 E8 62 23 B0 02 E8 40 05 E8  $8.t....b#...@..
    0EC0: BD 00 E8 D8 00 75 73 E8 9E 00 8D 9C 4C 01 E8 EB  .....us.....L...
    0ED0: 23 8B C8 8B D3 8D 9C 00 03 E8 E0 23 3B C1 74 05  #..........#;.t.
    0EE0: B0 02 E8 1A 05 E8 6C 0A 8D 9C 00 03 E8 97 18 8D  ......l.........
    0EF0: 9C D8 02 E8 26 23 66 C1 CE 10 8B FE 66 C1 CE 10  ....&#f.....f...
    0F00: E8 C9 00 E8 FF 00 E8 9B 04 8A E9 8D 9C DC 02 32  ...............2
    0F10: C9 E8 4C 23 E8 84 04 66 25 FF 0F 00 00 E8 00 04  ..L#...f%.......
    0F20: 80 F9 01 75 04 66 C1 E0 10 59 58 66 BA FF FF FF  ...u.f...YXf....
    0F30: FF 66 33 D0 E8 14 FC 33 D2 C3 E8 05 00 0C 01 59  .f3....3.......Y
    0F40: 58 C3 53 66 50 8D 9C D4 02 E8 70 23 8A C4 E8 CB  X.SfP.....p#....
    0F50: 22 66 58 5B C3 53 66 50 8D 9C D4 02 E8 5D 23 8A  "fX[.SfP.....]#.
    0F60: E0 E8 B8 22 66 58 5B C3 E8 D5 03 E8 90 03 8A DD  ..."fX[.........
    0F70: E8 D3 19 8D 9C 3C 03 8A E9 32 C9 E8 E2 22 C3 83  .....<...2..."..
    0F80: EC 08 8B EC E8 B9 03 E8 74 03 E8 5B 19 8A 6E 00  ........t..[..n.
    0F90: 8D 9C 4C 03 32 C9 E8 C7 22 83 C4 08 C3 33 C9 56  ..L.2..."....3.V
    0FA0: E8 22 03 0B F6 5E 74 0C FE C1 E8 3A 1F 38 C1 75  ."...^t....:.8.u
    0FB0: EE 0C 01 C3 8D 9C D4 02 E8 01 23 38 C8 74 0A 8A  ..........#8.t..
    0FC0: C1 E8 58 22 B0 02 E8 36 04 32 C0 C3 E8 0A 00 8D  ..X"...6.2......
    0FD0: 9C D0 02 32 C9 E8 88 22 C3 8D 1D E8 DE 22 66 8B  ...2..."....."f.
    0FE0: D0 8D 9C 02 03 E8 D4 22 51 8B C8 8D 9C 06 03 E8  ......."Q.......
    0FF0: CA 22 66 C1 E0 10 8B C1 59 66 3B C2 75 04 B5 00  ."f.....Yf;.u...
    1000: EB 02 B5 02 C3 E8 74 03 8D 9C 40 03 B1 03 E8 4F  ......t...@....O
    1010: 22 E8 B9 06 8D 9C 40 03 B1 02 E8 43 22 E8 DE 02  ".....@....C"...
    1020: 80 FD 00 75 1D E8 94 00 66 81 FA F0 D2 00 00 75  ...u....f......u
    1030: 06 66 BA 78 69 00 00 E8 B5 00 E8 EE 00 E8 B2 03  .f.xi...........
    1040: EB 38 E8 88 03 E8 AA 03 66 52 E8 FE 02 0B D2 74  .8......fR.....t
    1050: 07 E8 EA 18 66 5A EB 22 E8 65 03 E8 6B 1B 66 5A  ....fZ.".e..k.fZ
    1060: 51 E8 9A 02 80 FD 02 59 75 10 B5 04 66 81 FA 74  Q......Yu...f..t
    1070: 40 00 00 76 05 B5 08 66 D1 EA 8D 9C 54 03 66 8B  @..v...f....T.f.
    1080: C2 E8 98 21 8D 9C 40 03 E8 31 22 8A E5 E8 8C 21  ...!..@..1"....!
    1090: E8 1D 01 8D 9C 48 03 32 C9 E8 C4 21 E8 A1 02 E8  .....H.2...!....
    10A0: 5C 02 E8 9C 18 8D 9C 58 03 32 C9 E8 B2 21 E8 8F  \......X.2...!..
    10B0: 02 E8 4A 02 8D 9C 60 03 E8 48 18 C3 53 8D 9C 29  ..J...`..H..S..)
    10C0: 01 E8 F8 21 66 33 D2 0A C0 75 05 BA 48 3F 5B C3  ...!f3...u..H?[.
    10D0: 8A D0 66 B8 8C 0A 00 00 F7 E2 66 8B F8 E8 60 02  ..f.......f...`.
    10E0: B3 00 E8 82 17 66 3B D7 76 03 66 8B D7 5B C3 B7  .....f;.v.f..[..
    10F0: 01 53 8D 9C 42 03 E8 C3 21 8A C8 5B 66 52 E8 83  .S..B...!..[fR..
    1100: 00 E8 C9 02 66 3B D1 66 5A 76 09 D0 E7 E8 07 00  ....f;.fZv......
    1110: 38 EF 72 DD 8A EF C3 53 8D 9C 2A 01 E8 9D 21 24  8.r....S..*...!$
    1120: 0F 8A E8 0A ED 75 02 B5 01 5B C3 51 83 EC 08 8B  .....u...[.Q....
    1130: EC 66 C7 46 00 48 3F 78 69 66 C7 46 04 F0 D2 00  .f.F.H?xif.F....
    1140: 00 E8 07 02 0B D2 74 03 E8 04 18 8A FD 53 8D 9C  ......t......S..
    1150: 42 03 E8 67 21 8A C8 5B E8 61 FF 66 33 C0 8B 46  B..g!..[.a.f3..F
    1160: 00 66 3B C2 73 19 66 8B D0 E8 18 00 E8 5E 02 66  .f;.s.f......^.f
    1170: 3B D1 72 05 83 C5 02 EB D4 66 33 D2 8B 56 00 83  ;.r......f3..V..
    1180: C4 08 59 C3 66 52 52 32 ED 83 C1 02 B8 06 00 F7  ..Y.fRR2........
    1190: E1 66 33 C9 8B C8 5A 51 66 33 C0 8B C2 8A CF 66  .f3...ZQf3.....f
    11A0: F7 E1 66 C1 E0 03 59 66 F7 F1 66 8B C8 66 5A C3  ..f...Yf..f..fZ.
    11B0: E8 98 01 0B D2 74 0B E8 16 00 0A ED 75 11 E8 09  .....t......u...
    11C0: 17 C3 B5 00 E8 F9 01 E8 CB 19 75 03 E8 01 00 C3  ..........u.....
    11D0: B5 00 8D 9C 31 01 E8 E3 20 A8 01 74 02 B5 01 C3  ....1... ..t....
    11E0: 53 E8 67 01 66 C1 E2 10 E8 55 01 8D 9C B8 02 E8  S.g.f....U......
    11F0: CA 20 8A E8 E8 A2 16 8A EB 5B C3 57 53 53 E8 DF  . .......[.WSS..
    1200: FF E8 3C 01 5B E8 0B 17 74 49 80 FD 00 75 24 53  ..<.[...tI...u$S
    1210: E8 A9 FE E8 B7 04 8A CD E8 FC FE 8A FD E8 64 FF  ..............d.
    1220: 5B E8 98 20 66 25 FF FF 00 00 66 3B C8 73 21 32  [.. f%....f;.s!2
    1230: DB EB 20 80 FD 02 75 18 53 E8 84 01 E8 67 19 5B  .. ...u.S....g.[
    1240: 74 0E 8D 1D E8 75 20 3D 74 40 76 04 32 DB EB 03  t....u =t@v.2...
    1250: 80 CB 01 5B 5F C3 53 E8 41 01 8B D8 E8 DD F8 85  ...[_.S.A.......
    1260: C3 5B C3 53 8B F0 E8 34 1B 23 F0 74 07 8B C6 E8  .[.S...4.#.t....
    1270: D5 19 8B F3 5B C3 E8 08 00 74 05 E8 D8 FF 74 F6  ....[....t....t.
    1280: C3 33 C0 0B F6 74 03 E8 11 01 33 F6 E8 08 00 74  .3...t....3....t
    1290: 03 E8 CF FF 0B F6 C3 57 53 E8 75 1B 0B C0 74 09  .......WS.u...t.
    12A0: 8B 1D 83 C7 02 3B C3 75 F7 8B 1D 83 FB FF 74 0E  .....;.u......t.
    12B0: 83 C7 02 E8 E7 1A 85 D8 74 EF 8B C3 EB 02 33 C0  ........t.....3.
    12C0: 0B C0 5B 5F C3 51 33 F6 8A E9 E8 A9 FF 74 07 E8  ..[_.Q3......t..
    12D0: 4E 00 38 E9 75 F4 0B F6 59 C3 33 C0 E8 B8 FF 74  N.8.u...Y.3....t
    12E0: 13 E8 7F FF 8B DE B9 FB 00 E8 0D 1C 83 C6 08 E8  ................
    12F0: 2E 1A EB E8 BB F0 16 B8 5A A5 E8 37 1F C3 53 66  ........Z..7..Sf
    1300: 50 8D 9C 40 03 E8 B4 1F 8A E8 66 58 5B C3 8D 9C  P..@......fX[...
    1310: 69 03 E8 A7 1F C3 8D 9C 64 03 E8 9F 1F 0B C0 C3  i.......d.......
    1320: 53 66 50 8D 9C D4 02 E8 92 1F 8A C8 66 58 5B C3  SfP.........fX[.
    1330: 53 66 50 8D 9C D5 02 E8 82 1F 8A C8 66 58 5B C3  SfP.........fX[.
    1340: 53 8D 5C 14 E8 75 1F 8B D0 5B C3 53 66 50 8D 5C  S.\..u...[.SfP.\
    1350: 16 E8 68 1F 8B D0 66 58 5B C3 53 66 50 8D 9C 50  ..h...fX[.SfP..P
    1360: 03 E8 58 1F 66 8B D0 66 58 5B C3 53 66 50 8D 9C  ..X.f..fX[.SfP..
    1370: 54 03 E8 47 1F 66 8B D0 66 58 5B C3 53 66 50 8D  T..G.f..fX[.SfP.
    1380: 5C 10 E8 37 1F 8B C8 66 58 5B C3 66 50 53 8D 9C  \..7...fX[.fPS..
    1390: 41 03 E8 27 1F 5B 8A D8 66 58 C3 53 8D 5C 08 E8  A..'.[..fX.S.\..
    13A0: 1A 1F 5B C3 53 50 8D 9C 4C 03 E8 0F 1F 8A C8 58  ..[.SP..L......X
    13B0: 5B C3 53 50 8D 9C 4D 03 E8 01 1F 8A C8 58 5B C3  [.SP..M......X[.
    13C0: 53 50 8D 5C 0C E8 F4 1E 8B D0 58 5B C3 53 66 50  SP.\......X[.SfP
    13D0: 8D 9C 00 03 E8 E5 1E 66 33 D2 8B D0 66 58 5B C3  .......f3...fX[.
    13E0: 8D 5C 04 E8 D6 1E C3 51 8D 5C 04 32 C9 E8 70 1E  .\.....Q.\.2..p.
    13F0: 59 C3 8D 9C 50 03 E8 C3 1E 8B C2 E8 1E 1E C3 53  Y...P..........S
    1400: 51 8A E8 E8 DA FF 24 FD 0A E8 E8 DA FF 59 5B C3  Q.....$......Y[.
    1410: 66 50 8D 9C D8 02 E8 A3 1E 66 8B D0 66 58 C3 53  fP.......f..fX.S
    1420: 66 50 66 51 66 8B C8 BB 00 00 E8 EA 17 66 23 C2  fPfQf........f#.
    1430: 66 0B C1 E8 EB 17 66 59 66 58 5B C3 BB 00 00 E8  f.....fYfX[.....
    1440: D5 17 66 25 03 03 FF 00 C3 57 0B C0 75 10 33 F6  ..f%.....W..u.3.
    1450: E8 2E FE 74 26 E8 25 00 A8 04 74 F4 EB 13 8B C8  ...t&.%...t.....
    1460: E8 3A 19 23 C1 74 14 E8 F9 FD E8 10 00 A8 04 74  .:.#.t.........t
    1470: 0A 5F 8D 5C 28 E8 2D 05 0B F6 C3 5F C3 E8 FC FE  ._.\(.-...._....
    1480: 0A C9 74 72 E8 39 FF E8 18 17 74 30 0A ED 74 10  ..tr.9....t0..t.
    1490: 8A CD B5 02 E8 2D 1A B1 02 8D 9C 48 01 E8 C0 1D  .....-.....H....
    14A0: E8 34 02 A8 04 74 15 8D 5C 28 E8 56 00 74 0D E8  .4...t..\(.V.t..
    14B0: 0E FF E8 E4 16 74 3F 80 FD 02 74 3A 8D 5C 28 E8  .....t?...t:.\(.
    14C0: 38 00 E8 61 0B 33 C9 50 8D 9C 28 01 E8 ED 1D 66  8..a.3.P..(....f
    14D0: 0B C0 74 03 B9 00 08 58 0A C0 75 13 8D 5C 28 E8  ..t....X..u..\(.
    14E0: 3F 00 75 0B 80 CD 02 E8 19 00 74 03 80 CD 04 8D  ?.u.......t.....
    14F0: 9C 48 01 E8 6A 1D E8 DE 01 C3 51 B9 49 00 E8 F8  .H..j.....Q.I...
    1500: 19 59 C3 51 E8 1A 00 75 14 E8 9C 01 3C 01 75 0D  .Y.Q...u....<.u.
    1510: B9 20 00 E8 27 00 75 05 80 C9 01 EB 02 33 C9 59  . ..'.u......3.Y
    1520: C3 53 E8 97 1D 66 3D 00 FF FF FF 75 0E 83 C3 04  .S...f=....u....
    1530: E8 89 1D 66 3D FF FF FF 00 75 00 5B C3 50 52 32  ...f=....u.[.PR2
    1540: D2 E8 78 1D 02 D0 02 D4 66 C1 E8 10 02 D0 02 D4  ..x.....f.......
    1550: 83 C3 04 E2 EC 0A D2 5A 58 C3 8D 9C 4C 01 E8 1F  .......ZX...L...
    1560: 01 E8 73 01 B5 13 A8 08 75 0C E8 53 FE 8A EA 80  ..s.....u..S....
    1570: FD 13 75 02 B5 03 8D 9C B8 02 66 33 C0 8A C5 E8  ..u.......f3....
    1580: 9A 1C E8 16 FE A9 11 00 74 37 B5 01 E8 22 01 E8  ........t7..."..
    1590: 45 01 A8 04 75 17 55 BD 00 00 B8 61 40 E8 F0 02  E...u.U....a@...
    15A0: B8 45 40 E8 EA 02 5D B5 02 E8 8A 00 C3 E8 2F 01  .E@...]......./.
    15B0: B5 02 8D 5C 28 E8 DD 00 75 02 B5 01 E8 77 00 EB  ...\(...u....w..
    15C0: 67 A9 C8 0E 74 3E E8 0E 01 A8 08 74 08 8D 5C 28  g...t>.....t..\(
    15D0: E8 B4 00 74 B5 B5 02 E8 D7 00 E8 FA 00 A8 04 74  ...t...........t
    15E0: 0B 8D 5C 28 E8 F8 00 E8 F8 02 EB 0A 8D 9C 68 01  ..\(..........h.
    15F0: B8 3C 6A E8 60 05 E8 D4 00 80 FD 00 75 37 B5 02  .<j.`.......u7..
    1600: E8 C0 00 C3 A9 22 00 74 2C B5 04 E8 A3 00 8D 9C  .....".t,.......
    1610: 68 01 56 E8 73 1A 8B F7 E8 58 03 5E E8 1B 1A E8  h.V.s....X.^....
    1620: A1 00 8D 5C 28 E8 41 1A 8D 9C 68 01 E8 4F 03 66  ...\(.A...h..O.f
    1630: 8B D1 E8 D1 07 C3 8D 9C B4 02 B1 02 E8 21 1C B5  .............!..
    1640: 02 E8 7F 00 C3 8D 9C 4C 01 E8 34 00 E8 88 00 A8  .......L..4.....
    1650: 04 74 23 8D 5C 28 E8 86 00 E8 2D 1A 8D 9C 68 01  .t#.\(....-...h.
    1660: 06 0E 07 B9 07 00 E8 CA 18 07 E8 60 00 E8 50 FD  ...........`..P.
    1670: 8D 5C 28 E8 1E 1A 8D 5C 28 E8 CD 19 E8 DB FE C3  .\(....\(.......
    1680: B9 61 00 E8 73 18 C3 53 81 C3 05 01 E8 2D 1C 24  .a..s..S.....-.$
    1690: 06 3C 02 5B C3 E8 10 00 3D 01 04 75 0A 53 83 C3  .<.[....=..u.S..
    16A0: 18 E8 18 1C 5B A8 01 C3 53 83 C3 12 E8 0D 1C 5B  ....[...S......[
    16B0: C3 8D 9C B4 02 32 C9 E8 A6 1B C3 8D 9C B4 02 E8  .....2..........
    16C0: FA 1B C3 8D 9C B4 02 B1 01 E8 94 1B C3 8D 9C B4  ................
    16D0: 02 B1 01 E8 A2 1B C3 8D 9C 48 01 E8 DE 1B C3 55  .........H.....U
    16E0: 57 51 B9 08 00 BD 00 00 BB 08 00 2B D9 D1 E3 8D  WQ.........+....
    16F0: 58 4E E8 C7 1B E8 98 01 E2 EE 8D 5C 4B E8 BC 1B  XN.........\K...
    1700: B9 04 00 8B D0 BF 04 17 85 55 06 74 17 66 8B 05  .........U.t.f..
    1710: 8D 9A F4 01 E8 05 1B 8B 45 04 8D 9A F8 01 E8 13  ........E.......
    1720: 1B 83 C5 08 83 C7 08 E2 DF 8D 7C 5E B9 04 00 33  ..........|^...3
    1730: ED 8B DF E8 86 1B 0B C0 74 09 E8 12 01 E8 4C 00  ........t.....L.
    1740: 83 C5 1C 83 C7 12 E2 E9 32 ED E8 76 FF 8D 5C 28  ........2..v..\(
    1750: E8 55 FF 3D 01 04 75 10 83 C3 14 E8 5E 1B 24 70  .U.=..u.....^.$p
    1760: C0 E8 04 8A E8 E8 5B FF 59 5F 5D C3 20 03 58 02  ......[.Y_]. .X.
    1770: 3C 00 01 00 00 04 00 03 3C 00 00 08 00 05 00 04  <.......<.......
    1780: 4B 00 00 01 80 02 E0 01 3C 00 20 00 51 8D 1D E8  K.......<. .Q...
    1790: 2A 1B 8D 9A 68 01 E8 9B 1A 8D 5D 02 E8 1D 1B 8D  *...h.....].....
    17A0: 9A 6A 01 E8 89 00 8D 5D 05 E8 10 1B 8D 9A 6E 01  .j.....]......n.
    17B0: E8 7C 00 8D 5D 08 E8 03 1B 8B C8 8A DC 66 C1 C8  .|..]........f..
    17C0: 10 8A D0 80 E2 0F 8A F0 C0 EE 04 8A EC C0 E5 06  ................
    17D0: 8A FC C0 E7 04 80 E7 03 80 E4 0F C0 E4 04 0A D4  ................
    17E0: 80 E2 3F 80 E4 C0 C0 EC 02 0A F4 8B C3 8D 9A 74  ..?............t
    17F0: 01 E8 40 1A 8D 9A 72 01 8B C1 E8 37 1A 8D 9A 76  ..@...r....7...v
    1800: 01 33 C0 8A C6 E8 2C 1A 8D 9A 78 01 33 C0 8A C2  .3....,...x.3...
    1810: E8 21 1A 8D 5D 0C E8 A3 1A 8D 9A 7A 01 E8 0F 00  .!..]......z....
    1820: 8D 5D 0F E8 96 1A 8D 9A 7E 01 E8 07 1A 59 C3 8B  .]......~....Y..
    1830: C8 8A D4 66 C1 C8 10 8A F0 80 E6 0F 8A E8 C0 ED  ...f............
    1840: 04 8B C1 E8 EE 19 83 C3 02 8B C2 E8 E6 19 C3 8D  ................
    1850: 5D 11 E8 67 1A 8A E0 BA 06 02 C0 E8 07 74 03 80  ]..g.........t..
    1860: CA 80 8A C4 C0 E8 03 24 03 3C 02 75 03 80 CA 40  .......$.<.u...@
    1870: 3C 03 75 12 8A C4 D0 E8 A8 01 74 03 80 E2 FD A8  <.u.......t.....
    1880: 02 74 03 80 E2 FB 8B C2 8D 9A 80 01 E8 A5 19 C3  .t..............
    1890: 3C 01 74 3D 8B D0 0F B6 C6 24 3F 04 3C 8D 9A F8  <.t=.....$?.<...
    18A0: 01 E8 90 19 0F B6 C2 83 C0 1F C1 E0 03 8D 9A F4  ................
    18B0: 01 E8 80 19 0F B6 DE C1 EB 06 C1 E3 02 2E F7 A7  ................
    18C0: 6C 18 2E F7 B7 6A 18 8D 9A F6 01 E8 66 19 83 C5  l....j......f...
    18D0: 08 C3 01 00 01 00 04 00 03 00 05 00 04 00 10 00  ................
    18E0: 09 00 57 8D 9C 68 01 8B FB 8B DF E8 90 00 0B C9  ..W..h..........
    18F0: 74 44 8D 5D 18 E8 C4 19 A8 80 74 0D 8B DF 56 8D  tD.]......t...V.
    1900: 36 D0 18 E8 6D 00 5E EB 28 66 8B D1 E8 F7 04 8D  6...m.^.(f......
    1910: 9C A6 00 E8 A6 19 3C 01 75 17 66 81 F9 80 07 38  ......<.u.f....8
    1920: 04 74 09 66 81 F9 00 05 D0 02 75 05 B5 03 E8 80  .t.f......u.....
    1930: FD 83 C7 1C EB B3 5F C3 8C 0A D0 02 8A 00 E0 01  ......_.........
    1940: 2D 00 10 00 3E 00 09 00 06 00 00 00 00 00 00 00  -...>...........
    1950: 06 00 00 00 50 53 51 B9 07 00 53 8B DA E8 5C 19  ....PSQ...S...\.
    1960: 83 F8 00 5B 74 09 66 C1 E3 10 8B DA E8 9F 15 59  ...[t.f........Y
    1970: 5B 58 C3 51 53 B9 07 00 E8 AC 15 5B 59 C3 66 50  [X.QS......[Y.fP
    1980: 53 83 C3 06 E8 35 19 5B 8B C8 66 C1 E1 10 53 83  S....5.[..f...S.
    1990: C3 02 E8 27 19 8B C8 5B 66 58 C3 8D 9C 48 01 32  ...'...[fX...H.2
    19A0: C9 E8 BC 18 C3 57 B9 20 00 E8 87 15 5F C3 E8 0A  .....W. ...._...
    19B0: FD 3C 01 75 57 8D 9C B6 02 E8 00 19 A8 02 74 71  .<.uW.........tq
    19C0: 66 C1 CE 10 E8 04 04 66 C1 CE 10 0A C0 75 0E 8D  f......f.....u..
    19D0: 9C 4C 01 B8 3C 6A E8 7D 01 0C 01 EB 7A 8D 9C 68  .L..<j.}....z..h
    19E0: 01 B0 00 E8 36 01 75 07 B0 00 E8 DF 00 74 68 8D  ....6.u......th.
    19F0: 9C 68 01 B0 01 E8 24 01 75 52 B0 01 E8 B0 00 75  .h....$.uR.....u
    1A00: 56 B0 00 E8 A9 00 EB 4F 0B F6 EB 4B 3C 04 74 21  V......O...K<.t!
    1A10: 3C 03 74 1D 66 C1 CE 10 E8 B0 03 66 C1 CE 10 0A  <.t.f......f....
    1A20: C0 74 07 B0 01 E8 A4 00 75 2D B0 00 E8 9D 00 75  .t......u-.....u
    1A30: 26 8D BC 68 01 8D 1D E8 82 18 0B C0 74 19 8B DF  &..h........t...
    1A40: B0 00 E8 D7 00 75 05 83 C7 1C EB E9 8B D3 8D 9C  .....u..........
    1A50: 4C 01 E8 FF FE 0B F6 C3 57 53 51 E8 D1 13 3B 55  L.......WSQ...;U
    1A60: 02 75 18 66 C1 CA 10 8B DA 66 C1 CA 10 3B 5D 06  .u.f.....f...;].
    1A70: 75 09 0A C0 74 0E 3A 45 1B 74 09 83 C7 1C E2 DE  u...t.:E.t......
    1A80: 33 D2 EB 02 8B D7 0B D2 59 5B 5F C3 51 66 52 E8  3.......Y[_.QfR.
    1A90: 9D 13 3A 65 1A 75 09 0A C0 74 0E 3A 45 1B 74 09  ..:e.u...t.:E.t.
    1AA0: 83 C7 1C E2 ED 33 FF EB 00 0B FF 66 5A 59 C3 51  .....3.....fZY.Q
    1AB0: E8 7C 13 56 8D 9C 4C 01 8B F7 E8 B6 FE 5E E8 5B  .|.V..L......^.[
    1AC0: 00 75 07 83 C7 1C E2 EB 33 FF 59 C3 8D BC F4 01  .u......3.Y.....
    1AD0: 8A C8 8D 1D E8 E5 17 0B C0 74 40 66 50 E8 DB FB  .........t@fP...
    1AE0: 3C 01 66 58 74 05 3D 40 06 73 2B 66 8B D0 8D 5D  <.fXt.=@.s+f...]
    1AF0: 04 E8 C8 17 E8 61 FF 74 1D 8D 9C 4C 01 56 8B F2  .....a.t...L.V..
    1B00: E8 70 FE 5E 53 8D 9C 62 01 33 C0 E8 26 17 5B 8A  .p.^S..b.3..&.[.
    1B10: C1 E8 08 00 75 05 83 C7 08 EB B7 C3 66 51 50 53  ....u.......fQPS
    1B20: 66 C1 CE 10 8B DE 66 C1 CE 10 E8 8F 17 5B 66 8B  f.....f......[f.
    1B30: D0 E8 4A FE 58 3C 01 75 0A 66 3B CA 75 13 E8 BA  ..J.X<.u.f;.u...
    1B40: F6 75 10 3B CA 72 0A 66 3B CA 72 05 E8 AC F6 75  .u.;.r.f;.r....u
    1B50: 02 32 C0 66 59 C3 56 57 E8 31 FF 8B F7 E8 13 FE  .2.fY.VW.1......
    1B60: 5F 5E C3 66 50 53 66 51 52 57 56 51 8B DE B9 08  _^.fPSfQRWVQ....
    1B70: 00 E8 85 13 59 8D 5C 08 8B C1 66 C1 E0 10 8A C2  ....Y.\...f.....
    1B80: E8 99 16 F6 C2 03 75 24 8B C1 24 7F BF 46 1C 80  ......u$..$..F..
    1B90: 3D FF 0F 84 0F 01 3A 05 75 0D 66 8B 45 01 66 B9  =.....:.u.f.E.f.
    1BA0: 00 05 02 00 E9 96 00 83 C7 05 EB E3 F6 C2 01 74  ...............t
    1BB0: 25 8B C1 E8 70 01 0F 84 EB 00 33 C9 8A CC 8A D0  %...p.....3.....
    1BC0: 0A C0 75 12 8D 5C 08 66 25 FF FF 00 00 66 C1 E0  ..u..\.f%....f..
    1BD0: 08 E8 48 16 EB B2 8A E1 8A CA 80 E1 0C C0 E9 02  ..H.............
    1BE0: 80 E2 F0 C0 EA 04 8A EA 80 FC 70 72 2A 80 FC 75  ..........pr*..u
    1BF0: 73 25 80 EC 70 8A C4 32 E4 50 E8 32 02 8B D8 58  s%..p..2.P.2...X
    1C00: 38 D8 72 05 33 C0 E9 9C 00 E8 2A 02 E8 AD 16 0B  8.r.3.....*.....
    1C10: C0 0F 84 90 00 EB 1B 32 C0 E8 70 FE 0F 84 85 00  .......2..p.....
    1C20: 8D 5C 16 8B 05 E8 0C 16 8B 45 06 66 C1 E0 10 8B  .\.......E.f....
    1C30: 45 02 50 E8 41 0B 66 C1 E1 10 8B C8 58 8D 1C E8  E.P.A.f.....X...
    1C40: DA 15 66 50 8D 5C 04 66 8B C1 E8 CF 15 66 58 66  ..fP.\.f.....fXf
    1C50: C1 E8 10 66 81 E1 FF FF 00 00 66 F7 E1 66 50 8D  ...f......f..fP.
    1C60: 5C 06 E8 57 16 8B C8 66 58 66 D3 E0 66 C1 E8 10  \..W...fXf..f...
    1C70: 40 8D 5C 14 E8 BD 15 BF A6 1C 83 F9 01 74 11 BF  @.\..........t..
    1C80: AE 1C 81 F9 01 01 74 08 BF B6 1C 83 F9 02 75 15  ......t.......u.
    1C90: 8D 5C 0C 66 8B 05 E8 83 15 8D 5C 10 66 8B 45 04  .\.f......\.f.E.
    1CA0: E8 79 15 0B DB 5E 5F 5A 66 59 5B 66 58 C3 00 40  .y...^_ZfY[fX..@
    1CB0: 01 90 01 01 40 01 90 01 02 80 02 90 01 03 80 02  ....@...........
    1CC0: 90 01 04 40 01 90 01 05 40 01 90 01 06 80 02 90  ...@....@.......
    1CD0: 01 07 D0 02 5E 01 0D 40 01 90 01 0E 80 02 90 01  ....^..@........
    1CE0: 0F 80 02 5E 01 10 80 02 5E 01 11 80 02 E0 01 12  ...^....^.......
    1CF0: 80 02 E0 01 13 80 02 90 01 23 20 04 90 01 32 20  .........# ...2 
    1D00: 04 B0 02 33 20 04 C0 02 62 80 02 E0 01 FF 05 0A  ...3 ...b.......
    1D10: 05 05 05 00 00 00 05 0B 06 05 05 00 00 00 08 10  ................
    1D20: 08 08 08 00 00 00 56 E8 FE 12 80 E4 01 3B 04 74  ......V......;.t
    1D30: 09 83 C6 04 E2 F7 33 C0 EB 05 8B 44 02 0B C0 5E  ......3....D...^
    1D40: C3 57 53 50 E8 E1 12 83 E9 0F E8 E2 00 83 F8 05  .WSP............
    1D50: 76 03 B8 05 00 03 C8 D1 E0 03 C8 FB A5 83 C6 02  v...............
    1D60: E2 FA B8 FF FF AB 58 5B 5F C3 66 53 51 66 52 E8  ......X[_.fSQfR.
    1D70: 41 00 E8 77 00 66 C1 E8 10 66 0F B7 D8 66 B8 00  A..w.f...f...f..
    1D80: 00 00 03 66 D3 E8 66 33 D2 66 F7 F3 E8 E8 09 66  ...f..f3.f.....f
    1D90: 5A 59 66 5B C3 53 66 50 BB 07 00 E8 79 0E 0A C0  ZYf[.SfP....y...
    1DA0: 66 58 5B C3 53 66 50 BB 07 00 E8 6A 0E A8 01 66  fX[.SfP....j...f
    1DB0: 58 5B C3 53 66 50 8D 5C 06 E8 00 15 8A C8 66 58  X[.SfP.\......fX
    1DC0: 5B C3 51 B9 08 00 E8 45 11 59 C3 53 8D 5C 08 E8  [.Q....E.Y.S.\..
    1DD0: EA 14 24 03 5B C3 8D 5C 09 E8 E0 14 C3 51 53 B1  ..$.[..\.....QS.
    1DE0: 01 8A E8 8D 5C 08 E8 77 14 5B 59 C3 53 8D 1C E8  ....\..w.[Y.S...
    1DF0: CA 14 5B C3 53 8D 5C 04 E8 C1 14 5B C3 53 8D 5C  ..[.S.\....[.S.\
    1E00: 16 E8 B8 14 5B C3 53 66 52 33 C0 E8 4A FC 66 5A  ....[.SfR3..J.fZ
    1E10: 75 1B E8 34 00 74 16 E8 15 00 40 83 F8 05 73 0D  u..4.t....@...s.
    1E20: E8 F9 13 48 E8 0F 00 66 8B C2 E8 EF 13 5B C3 BB  ...H...f.....[..
    1E30: 00 1E E8 87 14 C3 BB 08 1E C1 E0 03 03 D8 C3 BB  ................
    1E40: 00 1E B9 32 00 E8 B1 10 C3 51 E8 E2 FF 0B C0 74  ...2.....Q.....t
    1E50: 12 8B C8 BB 08 1E E8 63 14 66 3B C2 74 07 83 C3  .......c.f;.t...
    1E60: 08 E2 F3 0B DB 59 C3 C3 E8 42 ED 51 B9 0B 01 E8  .....Y...B.Q....
    1E70: 52 10 59 C3 B8 22 06 E8 EE FF C3 B8 3F 06 E8 E7  R.Y.."......?...
    1E80: FF C3 B8 20 06 E8 E0 FF C3 B8 2E 06 E8 D9 FF C3  ... ............
    1E90: B8 3E 06 E8 D2 FF C3 00 C3 00 BB 20 DF E8 C3 35  .>......... ...5
    1EA0: E8 7D F4 B5 01 E8 2B 07 C3 BB 00 DF E8 B4 35 E8  .}....+.......5.
    1EB0: 6E F4 B5 00 E8 1C 07 C3 80 F9 00 75 0A E8 2D 10  n..........u..-.
    1EC0: 8A C8 B5 02 E8 E5 08 0B F6 74 29 E8 52 F4 B5 01  .........t).R...
    1ED0: E8 14 07 56 33 F6 B5 00 E8 5D 06 5E B5 01 E8 C3  ...V3....].^....
    1EE0: F4 E8 C8 08 E8 7F 09 E8 36 F4 8D 9C 00 03 E8 FD  ........6.......
    1EF0: 06 E8 46 07 66 C1 CE 10 B5 01 E8 3B 06 E8 D6 FE  ..F.f......;....
    1F00: A8 40 75 07 32 C0 B5 01 E8 4B 08 66 C1 CE 10 C3  .@u.2....K.f....
    1F10: E8 0D F4 B5 01 E8 96 06 B5 00 E8 CA 06 E8 2D 07  ..............-.
    1F20: B1 0F E8 36 0A B1 10 E8 31 0A E8 2B 00 C3 E8 7A  ...6....1..+...z
    1F30: 00 E8 FC F3 B5 00 E8 75 06 B5 00 E8 A9 06 E8 71  .......u.......q
    1F40: F4 E8 A9 0F 38 C1 74 0F 80 F9 08 72 05 80 F9 0B  ....8.t....r....
    1F50: 76 05 B5 03 E8 55 08 C3 53 66 50 BB 02 00 E8 B6  v....U..SfP.....
    1F60: 0C 66 A9 00 00 01 00 66 58 5B 75 3E E8 DC F3 0B  .f.....fX[u>....
    1F70: D2 74 0C E8 6A F4 3C 01 74 05 B1 0F E8 1A 0A B1  .t..j.<.t.......
    1F80: 0C E8 75 00 B1 01 E8 48 0A E8 72 F3 80 FD 00 75  ..u....H..r....u
    1F90: 0D E8 E6 01 B1 0D E8 C2 09 B1 03 E8 5B 00 E8 AA  ............[...
    1FA0: F3 0B D2 74 05 B1 01 E8 EF 09 C3 E8 9D F3 0B D2  ...t............
    1FB0: 74 05 B1 00 E8 E2 09 B1 02 E8 3D 00 E8 21 F4 A8  t.........=..!..
    1FC0: 01 74 0D E8 38 F3 80 FD 00 75 05 B0 02 E8 12 04  .t..8....u......
    1FD0: B1 00 E8 FC 09 B1 0D E8 1F 00 C3 B1 07 E8 F1 09  ................
    1FE0: E8 68 F3 0B D2 75 0C E8 D6 F3 E8 A8 0B 75 09 E8  .h...u.......u..
    1FF0: 90 0A C3 B1 07 E8 A1 09 C3 E8 C4 F3 E8 96 0B 75  ...............u
    2000: 24 51 E8 CC 09 59 80 F9 0C 75 1A 33 D2 56 83 C6  $Q...Y...u.3.V..
    2010: 08 E8 BF 0B 5E 0A C0 75 0C B9 0A 00 E8 2B 0F 42  ....^..u.....+.B
    2020: 83 FA 1E 75 E8 C3 56 83 C6 08 E8 47 0B 5E E8 1A  ...u..V....G.^..
    2030: F3 0B D2 74 03 E8 A1 08 80 FD 01 0F 84 D1 00 80  ...t............
    2040: FD 02 0F 85 F2 00 B1 0C E8 AE FF 56 83 C6 08 E8  ...........V....
    2050: 81 0B 5E 0A C0 0F 84 DF 00 E8 DF 00 0A DB 0F 85  ..^.............
    2060: D6 00 8D 9C 35 01 E8 53 12 A8 01 74 03 E8 7F 03  ....5..S...t....
    2070: E8 D8 F2 0B D2 74 05 B1 14 E8 1D 09 66 33 C9 E8  .....t......f3..
    2080: FA F2 66 BA 50 01 40 50 66 C1 C9 10 8A C1 66 C1  ..f.P.@Pf.....f.
    2090: C9 10 E8 38 0A 0F 85 9F 00 66 BA 50 01 50 4F 52  ...8.....f.P.POR
    20A0: E8 A8 F2 80 FA 22 5A 74 0D 8D 9C 2D 01 E8 0C 12  ....."Zt...-....
    20B0: 24 06 3C 02 75 02 B6 02 8D 5C 28 66 C1 C9 10 03  $.<.u....\(f....
    20C0: D9 66 C1 C9 10 E8 05 0A 75 6E 8A DF 32 FF 66 C1  .f......un..2.f.
    20D0: C9 10 03 CB 66 C1 C9 10 66 BA 50 01 10 30 33 DB  ....f...f.P..03.
    20E0: E8 EA 09 75 53 66 C1 C9 10 8B C1 66 C1 C9 10 0B  ...uSf.....f....
    20F0: C0 74 45 83 F8 10 75 0F 8D 5C 28 E8 BE 11 66 0B  .tE...u..\(...f.
    2100: C0 0F 85 7D FF EB 31 3D 80 00 0F 82 74 FF EB 25  ...}..1=....t..%
    2110: E8 69 F2 8A E9 B1 A0 BA 00 80 BF 32 00 8D 5C 28  .i.........2..\(
    2120: E8 7F 09 80 FF 01 74 0D B1 A2 8D 5C 28 E8 72 09  ......t....\(.r.
    2130: 80 FF 01 75 03 B0 00 C3 B0 01 C3 E8 2B 00 74 0C  ...u........+.t.
    2140: B0 01 E8 9D 02 75 21 E8 1F 00 75 1C 66 BA 0C 00  .....u!...u.f...
    2150: 90 43 8D 9C 30 01 E8 74 09 66 BA 20 00 90 41 8D  .C..0..t.f. ..A.
    2160: 9C 34 01 E8 67 09 33 DB C3 E8 10 F2 66 BA 00 00  .4..g.3.....f...
    2170: 90 47 8D 9C 28 01 E8 54 09 C3 E8 63 F2 3C 01 75  .G..(..T...c.<.u
    2180: 0E E8 ED 02 80 FD 01 75 06 B5 02 E8 12 03 C3 8D  .......u........
    2190: 9C AC 03 B9 10 00 E8 60 0D B0 01 E8 44 02 74 08  .......`....D.t.
    21A0: B5 04 E8 11 03 E9 19 01 B1 08 E8 AE 07 E8 66 02  ..............f.
    21B0: B1 09 E8 A6 07 E8 AC 01 8D 9C B8 03 66 33 C0 E8  ............f3..
    21C0: 5A 10 E8 47 01 B9 90 01 E8 74 0D B0 01 E8 F7 01  Z..G.....t......
    21D0: B5 02 E8 D5 02 E8 5B 01 E8 E7 02 E8 C7 01 B5 03  ......[.........
    21E0: E8 C7 02 33 C9 E8 E7 00 F6 C5 01 75 2E B5 02 E8  ...3.......u....
    21F0: B8 02 E8 07 01 F6 C5 04 74 08 B5 01 E8 B7 02 E9  ........t.......
    2200: BF 00 8A FD 80 E7 03 E8 CF 00 80 E3 03 38 FB 75  .............8.u
    2210: 07 E8 33 01 0F 84 A9 00 E8 54 01 FE C1 E8 6B F1  ..3......T....k.
    2220: 38 D9 75 C1 8D 9C AC 03 E8 91 10 3C 03 74 05 E8  8.u........<.t..
    2230: DA 00 EB A1 8D 9C B0 03 66 33 C0 E8 DE 0F 8D 9C  ........f3......
    2240: 2A 01 E8 77 10 A8 40 74 0C B1 13 E8 0D 07 B0 03  *..w..@t........
    2250: E8 74 01 EB 0A B1 0A E8 01 07 B0 02 E8 68 01 B5  .t...........h..
    2260: 04 E8 46 02 E8 CC 00 E8 58 02 E8 38 01 B5 05 E8  ..F.....X..8....
    2270: 38 02 33 C9 E8 58 00 80 FD 07 75 05 E8 73 00 75  8.3..X....u..s.u
    2280: 27 51 B5 04 E8 23 02 59 F6 C5 01 75 07 B5 03 E8  'Q...#.Y...u....
    2290: 24 02 EB 2D E8 65 00 8A D5 E8 D3 00 E8 5D 00 38  $..-.e.......].8
    22A0: EA 75 05 E8 A1 00 74 19 FE C1 E8 DE F0 38 D9 75  .u....t......8.u
    22B0: C3 8D 9C AC 03 E8 04 10 3C 04 75 05 E8 4D 00 EB  ........<.u..M..
    22C0: A3 B0 00 E8 01 01 B1 0B E8 90 06 E8 A3 01 C3 8D  ................
    22D0: 9C C0 03 E8 0F 00 8A E8 C3 53 8D 9C C4 03 E8 04  .........S......
    22E0: 00 5B 8A D8 C3 51 E8 D3 0F C0 E1 02 D3 E8 24 0F  .[...Q........$.
    22F0: 59 C3 8D 9C C2 03 E8 C3 0F A8 01 C3 8D 9C B8 03  Y...............
    2300: E8 75 0F C3 8D 9C B8 03 E8 55 0F C3 33 C9 33 D2  .u.......U..3.3.
    2310: E8 E9 FF 38 D5 76 02 8A D5 FE C1 E8 6D F0 38 D9  ...8.v......m.8.
    2320: 72 EE 33 C9 8A EA 8D 9C 5C 03 E8 33 0F B1 0B E8  r.3.....\..3....
    2330: 9F 06 C3 E8 46 F0 8D 9C B8 03 E8 7F 0F 66 BA 03  ....F........f..
    2340: 01 80 83 E8 87 07 C3 51 53 8D 9C B0 03 E8 28 0F  .......QS.....(.
    2350: FE C5 E8 0B 0F 80 FD 06 72 07 B5 02 E8 57 01 33  ........r....W.3
    2360: C9 5B 59 C3 66 33 C0 8D 9C B0 03 E8 AE 0E C3 32  .[Y.f3.........2
    2370: ED E8 65 FF 80 E3 0C C0 EB 02 B7 03 2A FB C0 E3  ..e.........*...
    2380: 03 8A EB 80 FB 18 72 03 80 CD 20 E8 4B FF 80 E3  ......r... .K...
    2390: 03 38 FB 72 02 8A DF 80 FB 03 75 03 80 CD 04 0A  .8.r......u.....
    23A0: EB E8 60 FF C3 E8 D4 EF 8D 9C C0 03 66 BA 02 02  ..`.........f...
    23B0: 90 45 E8 18 07 C3 E8 C3 EF 66 BA 00 01 90 42 8D  .E.......f....B.
    23C0: 9C B4 03 E8 07 07 C3 E8 B2 EF 66 BA 02 01 80 50  ..........f....P
    23D0: E8 FA 06 C3 E8 94 EF 8B C2 66 33 D2 B9 8C 0A F7  .........f3.....
    23E0: F1 C3 E8 97 EF 66 BA 00 06 80 50 E8 DF 06 C3 E8  .....f....P.....
    23F0: 8A EF 66 BA 11 01 80 50 B0 04 E8 D0 06 C3 E8 7B  ..f....P.......{
    2400: EF 66 BA 00 06 90 40 8D 9C C8 03 E8 BF 06 8D 9C  .f....@.........
    2410: C8 03 E8 A7 0E C3 E8 BB FF E8 6F EF 8A E3 80 CC  ..........o.....
    2420: 80 50 E8 57 EF 58 66 BA 00 01 80 61 E8 9E 06 33  .P.W.Xf....a...3
    2430: C9 E8 E2 EE 0B C0 74 02 B5 10 8D 9C BC 03 E8 1F  ......t.........
    2440: 0E 8A C5 E8 36 EF 66 BA 07 01 80 50 E8 7E 06 E8  ....6.f....P.~..
    2450: 6E EF E8 44 07 75 19 8D 9C 48 03 E8 5E 0E 0A C0  n..D.u...H..^...
    2460: 74 0E E8 17 EF 66 BA 0A 01 80 50 B0 01 E8 5D 06  t....f....P...].
    2470: C3 E8 42 FF E8 2E FF E8 84 FF 3C 01 75 1C E8 71  ..B.......<.u..q
    2480: FE 74 17 33 C9 E8 47 FE 80 FD 07 75 0D FE C1 E8  .t.3..G....u....
    2490: F9 EE 38 D9 75 EF B5 01 EB 02 B5 00 E8 01 00 C3  ..8.u...........
    24A0: 8D 9C AC 03 B1 02 E8 B7 0D C3 51 8D 9C AC 03 32  ..........Q....2
    24B0: C9 E8 AC 0D 59 C3 51 8D 9C AC 03 B1 01 E8 A0 0D  ....Y.Q.........
    24C0: 59 C3 8D 9C 32 01 E8 F3 0D 0A C0 75 15 B9 64 00  Y...2......u..d.
    24D0: 8D 9C AC 03 E8 E5 0D 3C 02 74 03 B9 90 01 E8 5E  .......<.t.....^
    24E0: 0A C3 32 E4 B1 04 33 D2 F6 E1 8B C8 E8 5B 0A C3  ..2...3......[..
    24F0: 51 8D 5C 14 E8 C5 0D 66 C1 E0 10 E8 98 01 59 C3  Q.\....f......Y.
    2500: 33 C9 E8 E2 09 38 C1 73 05 B5 00 E8 A7 00 B5 00  3....8.s........
    2510: E8 9B 00 FE C1 E8 D2 09 38 C1 72 E6 B1 14 8A E9  ........8.r.....
    2520: E8 CA 09 38 C1 74 05 B5 03 E8 80 02 FE C1 E8 B3  ...8.t..........
    2530: 09 04 14 38 C1 76 E7 C3 83 EC 0C 8B EC 0B F6 74  ...8.v.........t
    2540: 29 E8 A8 F8 66 C1 C8 10 80 FD 10 75 06 8D 5C 18  )...f......u..\.
    2550: E8 69 0D 66 89 46 00 8D 5C 04 E8 5F 0D 66 89 46  .i.f.F..\.._.f.F
    2560: 04 8D 5C 08 E8 55 0D 88 46 0A 89 4E 08 8C D0 66  ..\..U..F..N...f
    2570: C1 E0 10 8B C4 BB 2B 00 E8 C7 08 83 C4 0C C3 33  ......+........3
    2580: DB 83 EC 08 8B EC 89 5E 00 8C D0 66 C1 E0 10 8B  .......^...f....
    2590: C4 BB 01 00 E8 AB 08 8B EC 8B 4E 00 8B 56 02 66  ..........N..V.f
    25A0: 8B 46 04 83 C4 08 C3 BB 25 00 E8 0F 00 C3 BB 23  .F......%......#
    25B0: 00 E8 08 00 C3 BB 0D 00 E8 01 00 C3 83 EC 04 8B  ................
    25C0: EC 89 4E 00 8C D0 66 C1 E0 10 8B C4 E8 73 08 83  ..N...f......s..
    25D0: C4 04 C3 BB 22 00 E8 E3 FF 80 FD 01 74 08 B5 01  ....".......t...
    25E0: BB 06 00 E8 D6 FF C3 BB 2C 00 E8 CF FF C3 E8 CB  ........,.......
    25F0: 0C 66 A9 00 00 FF FF 74 40 83 EC 18 8B EC 55 51  .f.....t@.....UQ
    2600: B9 04 00 83 C3 02 E8 B3 0C 66 89 46 00 83 C5 04  .........f.F....
    2610: 83 C3 04 E2 F1 83 C3 04 E8 A1 0C 66 C1 C8 10 66  ...........f...f
    2620: 89 46 00 59 5D 88 4E 14 8C D0 66 C1 E0 10 8B C4  .F.Y].N...f.....
    2630: BB 31 00 E8 0C 08 83 C4 18 C3 E8 E3 EC 8D 9C D0  .1..............
    2640: 02 E8 78 0C 8A E8 BB 21 00 E8 70 FF C3 8D 9C 3C  ..x....!..p....<
    2650: 03 E8 68 0C 8A F8 E8 A5 EC 8A DD 53 8D 9C 42 03  ..h........S..B.
    2660: E8 59 0C 8A E8 5B E8 B7 EC E8 54 ED E8 2A 05 75  .Y...[....T..*.u
    2670: 02 B3 01 83 EC 04 8B EC 88 4E 00 88 7E 01 88 5E  .........N..~..^
    2680: 02 88 6E 03 8C D0 66 C1 E0 10 8B C4 BB 2A 00 E8  ..n...f......*..
    2690: B0 07 83 C4 04 C3 83 EC 10 8B EC 66 8B C8 66 33  ...........f..f3
    26A0: C0 66 89 46 04 BB 00 17 E8 71 0B 66 B8 00 80 20  .f.F.....q.f... 
    26B0: 50 66 89 46 0C 66 33 C0 66 89 46 08 56 E8 5D 07  Pf.F.f3.f.F.V.].
    26C0: 66 8B 44 04 66 50 66 C1 E8 16 88 46 08 66 58 66  f.D.fPf....F.fXf
    26D0: C1 E0 0A 66 05 00 17 00 00 66 89 46 00 5E 8C D0  ...f.....f.F.^..
    26E0: 66 C1 E0 10 8B C4 BB 35 00 E8 56 07 8B EC 66 B8  f......5..V...f.
    26F0: 00 80 00 00 66 2B C8 66 89 46 04 66 05 00 00 20  ....f+.f.F.f... 
    2700: 40 66 89 46 0C 66 33 C0 66 89 46 08 66 89 46 00  @f.F.f3.f.F.f.F.
    2710: 8C D0 66 C1 E0 10 8B C4 BB 35 00 E8 24 07 8B EC  ..f......5..$...
    2720: 66 8B 46 0C 66 25 FF FF 1F 00 66 01 46 04 66 3B  f.F.f%....f.F.f;
    2730: C8 76 1F 66 2B C8 66 8B 46 04 66 3D 00 FF 01 00  .v.f+.f.F.f=....
    2740: 76 06 66 B8 00 FF 01 00 66 3B C8 73 AE 66 8B C1  v.f.....f;.s.f..
    2750: EB A9 83 C4 10 C3 83 EC 08 8B EC 89 4E 00 66 89  ............N.f.
    2760: 56 02 89 5E 06 8C D0 66 C1 E0 10 8B C4 BB 2D 00  V..^...f......-.
    2770: E8 CF 06 83 C4 08 C3 3D C0 7F 76 04 B8 C0 7F C3  .......=..v.....
    2780: 83 C0 3F 24 C0 C3 51 E8 32 0B 66 33 D2 B9 0A 00  ..?$..Q.2.f3....
    2790: F7 F1 8B C8 E8 25 0B 03 C1 66 25 FF FF 00 00 59  .....%...f%....Y
    27A0: 3D 10 27 73 03 B8 10 27 C3 32 D2 C3 80 FD 02 75  =.'s...'.2.....u
    27B0: 19 E8 5C EC 66 BB 00 08 00 00 E8 88 00 66 33 D2  ..\.f........f3.
    27C0: 66 BB 01 08 00 00 E8 7C 00 C3 80 FD 03 75 10 66  f......|.....u.f
    27D0: 33 C0 8A C1 66 33 D2 66 BB FF 00 00 00 EB 30 51  3...f3.f......0Q
    27E0: 33 D2 E8 19 EB 8A D5 66 C1 E2 10 E8 52 EB 8A F2  3......f....R...
    27F0: 8A D1 66 8B C2 E8 93 EB 80 FB 04 76 06 66 0D 00  ..f........v.f..
    2800: 00 00 08 E8 C7 EB E8 17 EB 66 33 DB 8A D9 59 83  .........f3...Y.
    2810: EC 14 8B EC 66 89 46 04 66 89 5E 08 66 8B C2 66  ....f.F.f.^.f..f
    2820: 33 D2 66 BB 64 00 00 00 66 F7 E3 66 89 46 00 BB  3.f.d...f..f.F..
    2830: 0C 00 8C D0 66 C1 E0 10 8B C4 E8 05 06 8B EC B3  ....f...........
    2840: 01 83 C4 14 C3 83 EC 10 8B EC 66 89 56 00 66 89  ..........f.V.f.
    2850: 5E 04 BB 2E 00 8C D0 66 C1 E0 10 8B C4 E8 E2 05  ^......f........
    2860: B3 01 83 C4 10 C3 C3 53 51 66 50 B9 A0 8C 80 FB  .......SQfP.....
    2870: 00 75 1C B9 90 7E E8 60 05 83 E3 03 80 FB 03 75  .u...~.`.......u
    2880: 0E E8 36 06 66 3D 50 C3 00 00 72 03 B9 F0 D2 66  ..6.f=P...r....f
    2890: 33 D2 8B D1 66 58 59 5B C3 66 52 B3 10 80 FA 14  3...fXY[.fR.....
    28A0: 74 25 B3 0F 80 FA 15 74 1E B3 00 66 F7 C2 00 00  t%.....t...f....
    28B0: FF FF 75 13 80 FD 13 74 0E 80 FD 14 74 09 B3 01  ..u....t....t...
    28C0: 80 FD 0E 74 02 B3 02 66 5A C3 B5 11 80 FA 23 74  ...t...fZ.....#t
    28D0: 07 80 FA 22 74 02 B5 00 C3 B5 02 80 FA 23 74 07  ..."t........#t.
    28E0: 80 FA 22 74 02 B3 01 C3 B1 01 80 FD 00 75 06 C7  .."t.........u..
    28F0: 46 00 0B 01 C3 50 33 C0 E8 88 01 04 14 89 46 00  F....P3.......F.
    2900: 58 C3 C3 C3 8B DA B7 22 80 FE 21 74 02 B7 21 C3  X......"..!t..!.
    2910: 0C 01 C3 E8 A6 09 66 C1 E8 10 0B C0 74 1A 53 83  ......f.....t.S.
    2920: C3 06 E8 97 09 5B 3D E0 01 72 0D 53 83 C3 18 E8  .....[=..r.S....
    2930: 8A 09 5B A9 10 00 74 03 32 C0 C3 0C 01 C3 B5 0C  ..[...t.2.......
    2940: C3 32 ED B5 02 C3 57 E8 04 01 8B 4D 06 5F C3 80  .2....W....M._..
    2950: FA 22 75 05 C7 46 00 78 69 C3 C3 E8 07 01 80 FD  ."u..F.xi.......
    2960: FF 74 35 83 EC 0C 8B EC 88 4E 01 88 6E 00 80 F9  .t5......N..n...
    2970: 0F 75 05 E8 24 00 EB 0F 80 F9 10 75 0A 8D 9C 48  .u..$......u...H
    2980: 03 E8 38 09 88 46 02 8C D0 66 C1 E0 10 8B C4 BB  ..8..F...f......
    2990: 04 00 E8 AD 04 83 C4 0C C3 C3 66 53 E8 CC E9 66  ..........fS...f
    29A0: 8B C2 66 33 D2 66 BB 8C 0A 00 00 66 F7 F3 66 5B  ..f3.f.....f..f[
    29B0: 8A E8 88 6E 09 8D 9C 40 03 E8 00 09 88 46 02 88  ...n...@.....F..
    29C0: 66 03 66 C1 E8 10 88 46 08 E8 8E E9 66 89 56 04  f.f....F....f.V.
    29D0: C3 80 F9 04 74 03 E8 67 E9 83 EC 10 8B EC 80 F9  ....t..g........
    29E0: 04 75 0A 88 4E 01 32 C0 88 46 00 EB 4C E8 93 00  .u..N.2..F..L...
    29F0: 88 46 00 88 4E 01 E8 C7 E9 88 56 0A 80 F9 01 74  .F..N.....V....t
    2A00: 11 80 F9 0B 75 33 8D 9C 5C 03 E8 AF 08 88 46 02  ....u3..\.....F.
    2A10: EB 27 E8 67 E9 88 6E 08 E8 3F E9 66 89 56 04 E8  .'.g..n..?.f.V..
    2A20: 69 E9 88 5E 03 E8 D6 E8 88 6E 02 51 E8 36 00 8A  i..^.....n.Q.6..
    2A30: CD B0 01 D2 E0 59 88 46 09 8C D0 66 C1 E0 10 8B  .....Y.F...f....
    2A40: C4 BB 4C 00 E8 FB 03 83 C4 10 C3 32 ED C3 E8 D5  ..L........2....
    2A50: 03 03 7D 04 83 3D FF 74 0B 3B 15 74 05 83 C7 0A  ..}..=.t.;.t....
    2A60: EB F2 0B FF C3 8D 9C 3C 03 E8 50 08 32 ED 3C 03  .......<..P.2.<.
    2A70: 74 0C 3C 09 72 09 3C 0E 77 05 2C 08 8A E8 C3 B5  t.<.r.<.w.,.....
    2A80: FF C3 C3 52 32 C0 80 EE 21 80 FA 1E 74 10 B0 02  ...R2...!...t...
    2A90: 80 FA 20 74 09 B0 04 80 FA 21 74 02 B0 06 02 C6  .. t.....!t.....
    2AA0: 5A C3 83 EC 08 8B EC 89 7E 00 89 5E 02 89 56 04  Z.......~..^..V.
    2AB0: 89 4E 06 8C D0 66 C1 E0 10 8B C4 BB 36 00 E8 81  .N...f......6...
    2AC0: 03 8B EC 8B 5E 02 8A 7E 01 83 C4 08 C3 56 33 F6  ....^..~.....V3.
    2AD0: 66 F7 C2 00 00 80 00 75 0A 50 33 C0 8A C6 8B F0  f......u.P3.....
    2AE0: 32 F6 58 53 BB 04 3E E8 32 07 66 8B C2 BB 00 3E  2.XS..>.2.f....>
    2AF0: E8 29 07 5B 66 F7 C2 00 00 10 00 75 02 33 DB 8B  .).[f......u.3..
    2B00: D3 66 C1 E2 10 BA 00 3E 83 EC 08 8B EC 66 89 56  .f.....>.....f.V
    2B10: 00 88 4E 04 8A C5 FE C8 88 46 07 C6 46 05 00 C6  ..N......F..F...
    2B20: 46 06 00 8C D0 66 C1 E0 10 8B C4 BB 4E 00 E8 11  F....f......N...
    2B30: 03 8B EC 8A 5E 05 8A 7E 06 83 C4 08 0A DB 74 32  ....^..~......t2
    2B40: 51 B9 90 01 80 FB 20 74 05 80 FB 80 75 13 B9 0A  Q..... t....u...
    2B50: 00 8B C6 0A C0 74 0A B9 90 01 3C 01 74 03 B9 E8  .....t....<.t...
    2B60: 03 E8 DB 03 59 8B C6 FE C4 8B F0 80 FC 06 76 98  ....Y.........v.
    2B70: 0A DB 5E C3 8D 5C 04 E8 42 07 8B D0 B5 02 E8 14  ..^..\..B.......
    2B80: 00 74 11 B5 01 80 FA 13 75 0A E8 61 00 80 FA 13  .t......u..a....
    2B90: 75 02 B5 02 C3 80 FA 14 C3 E8 F9 FF 74 03 80 FA  u...........t...
    2BA0: 0E C3 80 FA 05 C3 80 FA 02 74 03 80 FA 04 C3 80  .........t......
    2BB0: FA 01 74 03 80 FA 02 C3 80 FA 02 75 03 B2 01 C3  ..t........u....
    2BC0: 80 FA 04 75 03 B2 03 C3 C3 B5 08 E8 D8 FF 74 02  ...u..........t.
    2BD0: B5 04 C3 8D 5C 09 E8 E3 06 8A C8 0A C9 75 03 32  ....\........u.2
    2BE0: C0 C3 B5 02 E8 DD 02 8A C5 24 02 D0 E8 C3 8D 5C  .........$.....\
    2BF0: 08 E8 C8 06 8A D0 B6 01 83 EC 08 8B EC 89 56 02  ..............V.
    2C00: 8C D0 66 C1 E0 10 8B C4 BB 4F 00 E8 34 02 8B EC  ..f......O..4...
    2C10: 8A 56 04 83 C4 08 C3 53 81 C3 C9 05 E8 6B 06 5B  .V.....S.....k.[
    2C20: C3 53 81 C3 C9 05 E8 BC 05 5B C3 66 53 81 C3 00  .S.......[.fS...
    2C30: 10 E8 56 06 66 5B C3 57 E8 AB 01 8A 45 2D B4 FF  ..V.f[.W....E-..
    2C40: F7 45 50 20 00 5F C3 50 56 0F BC D8 8D 36 EE 2B  .EP ._.PV....6.+
    2C50: E8 8C 03 5E 58 C3 00 20 00 24 00 00 00 28 00 2C  ...^X.. .$...(.,
    2C60: 00 30 00 34 00 38 00 00 00 3C 00 40 00 44 53 56  .0.4.8...<.@.DSV
    2C70: 51 8B F7 B3 00 E8 30 00 0B F6 74 16 49 0B C9 75  Q.....0...t.I..u
    2C80: 04 33 FF EB 0D 8B DF 03 7D 02 3B F3 74 04 E2 F5  .3......}.;.t...
    2C90: 33 FF 0B FF 59 5E 5B C3 0E 00 00 00 0A 00 06 00  3...Y^[.........
    2CA0: 08 00 0C 00 0E 00 10 00 56 8D 36 30 2C E8 2F 03  ........V.60,./.
    2CB0: E8 3C 01 03 DE 8B 3F 0B FF 74 0B 03 FE 33 C9 8A  .<....?..t...3..
    2CC0: 0D 83 C7 04 0B FF 5E C3 51 56 53 C1 EB 0C E8 D7  ......^.QVS.....
    2CD0: FF 5B 75 04 33 FF EB 0B 3B 1D 74 07 83 C7 08 E2  .[u.3...;.t.....
    2CE0: F7 33 FF 0B FF 5E 59 C3 57 E8 DC FF 75 04 33 DB  .3...^Y.W...u.3.
    2CF0: 5F C3 E8 02 00 5F C3 52 51 8B 5D 04 0B DB 74 1B  _...._.RQ.]...t.
    2D00: 56 E8 EB 00 03 DE 5E 33 C9 8A 4F 01 80 3F FF 74  V.....^3..O..?.t
    2D10: 08 3A 07 74 06 03 D9 EB F0 33 DB 0B DB 59 5A C3  .:.t.....3...YZ.
    2D20: 50 8D 1C E8 F6 04 8B D8 E8 72 00 23 C3 74 6C 33  P........r.#.tl3
    2D30: FF E8 3A FF 0B FF 74 63 39 05 75 F5 66 33 C0 8B  ..:...tc9.u.f3..
    2D40: 45 08 8B 4D 02 83 F9 0A 74 18 8B 4D 0A 8B D1 81  E..M....t..M....
    2D50: E2 00 70 80 FE 20 75 0A 66 C1 C8 10 8B C1 66 C1  ..p.. u.f.....f.
    2D60: C8 10 8D 5C 0C E8 B4 04 66 33 C0 8B 45 04 8D 5C  ...\....f3..E..\
    2D70: 04 E8 A8 04 33 C9 8B D8 50 B0 01 E8 6A FF 58 74  ....3...P...j.Xt
    2D80: 0F 8A 4F 02 8B D8 B0 02 E8 5D FF 74 03 8A 6F 02  ..O......].t..o.
    2D90: 8D 5C 08 66 33 C0 8B C1 E8 81 04 58 C3 56 E8 4E  .\.f3......X.V.N
    2DA0: 00 8B 44 04 5E C3 56 E8 45 00 89 44 04 5E C3 C3  ..D.^.V.E..D.^..
    2DB0: E8 15 FF 74 23 56 8B 5D 02 E8 33 00 03 DE 5E 0B  ...t#V.]..3...^.
    2DC0: C0 74 07 C6 47 03 01 89 47 04 66 C1 E8 10 0B C0  .t..G...G.f.....
    2DD0: 74 06 C6 07 01 89 47 01 C3 8B DA B0 14 E8 08 FF  t.....G.........
    2DE0: 74 03 8B 5F 02 C3 BF 44 02 8B 3D 8B 7D 0C C3 BE  t.._...D..=.}...
    2DF0: 44 02 8B 34 8B 74 30 C3 1E 0E 1F BF 44 02 8B 3D  D..4.t0.....D..=
    2E00: 8B 7D 0E 83 C7 04 1F C3 BE 44 02 8B 34 8B 74 10  .}.......D..4.t.
    2E10: C3 BF 44 02 8B 3D 8B 7D 26 83 C7 04 C3 BE 44 02  ..D..=.}&.....D.
    2E20: 8B 34 8B 74 1A C3 BF 44 02 8B 3D 8B 7D 3A C3 BF  .4.t...D..=.}:..
    2E30: 44 02 8B 3D 8B 7D 0A 83 C7 04 B9 08 00 C3 E8 01  D..=.}..........
    2E40: 00 CB 83 EC 06 8B EC 89 46 00 66 33 C0 C6 46 04  ........F.f3..F.
    2E50: 00 89 46 02 06 52 8A D3 8B C5 E8 8B 16 5A 07 83  ..F..R.......Z..
    2E60: C4 06 C3 E8 80 FF F7 45 50 01 00 C3 E8 77 FF 83  .......EP....w..
    2E70: 4D 50 01 C3 E8 6F FF 88 45 58 C3 66 53 83 EC 28  MP...o..EX.fS..(
    2E80: 8B EC 66 89 5E 00 66 89 4E 04 8C D0 66 C1 E0 10  ..f.^.f.N...f...
    2E90: 8B C4 BB 00 00 E8 AA FF 83 C4 28 66 5B E8 48 01  ..........(f[.H.
    2EA0: BB 04 00 E8 71 FD 66 C1 E8 10 E8 C7 FF C3 E8 35  ....q.f........5
    2EB0: FF 66 8B 5D 08 66 8B 4D 0C C3 57 E8 28 FF 66 8B  .f.].f.M..W.(.f.
    2EC0: 45 28 5F C3 83 EC 04 8B EC 89 4E 00 8C D0 66 C1  E(_.......N...f.
    2ED0: E0 10 8B C4 BB 38 00 E8 68 FF 8B EC 8A 6E 02 83  .....8..h....n..
    2EE0: C4 04 C3 C3 B0 06 C3 B0 02 C3 B0 06 C3 B0 08 C3  ................
    2EF0: E8 F3 FE 8B 45 56 0B C0 C3 53 66 50 66 33 C0 E8  ....EV...SfPf3..
    2F00: 1A 03 83 C3 04 E2 F8 66 58 5B C3 32 C0 C3 FC E8  .......fX[.2....
    2F10: AA 03 66 C1 CB 10 E8 03 03 66 C1 CB 10 66 81 C3  ..f......f...f..
    2F20: 04 00 04 00 E2 E9 C3 FC 66 AD E8 EF 02 83 C3 04  ........f.......
    2F30: E2 F6 C3 FC E8 85 03 66 AB 83 C3 04 E2 F6 C3 66  .......f.......f
    2F40: 50 B8 19 00 E8 10 00 66 58 C3 66 50 B8 D4 30 D1  P......fX.fP..0.
    2F50: E1 E8 03 00 66 58 C3 52 F7 E1 8B CA E8 6B 01 66  ....fX.R.....k.f
    2F60: 53 8B D9 66 C1 E3 10 8B D8 66 B8 04 B1 03 00 B2  S..f.....f......
    2F70: 00 66 EF B2 04 66 33 C0 66 EF 66 B8 08 B1 03 00  .f...f3.f.f.....
    2F80: B2 00 66 EF B2 04 66 ED 33 C9 66 03 D8 73 0A 66  ..f...f.3.f..s.f
    2F90: ED 66 A9 00 00 00 80 75 F6 66 ED 66 3B C3 73 0C  .f.....u.f.f;.s.
    2FA0: 66 C1 E8 10 3B C1 72 04 8B C8 EB ED 66 5B 5A C3  f...;.r.....f[Z.
    2FB0: BB 42 EC E8 D4 02 66 33 D2 66 BB 19 00 00 00 66  .B....f3.f.....f
    2FC0: F7 F3 C3 66 50 53 BB 07 00 E8 4B FC 25 00 02 35  ...fPS....K.%..5
    2FD0: 00 02 0B C0 5B 66 58 C3 BB 0A 15 E8 AC 02 C3 32  ....[fX........2
    2FE0: FF D1 E3 03 F3 8B 1C C3 E8 ED FF 66 C1 E0 0A 66  ...........f...f
    2FF0: 83 E8 20 E8 27 FE 66 89 44 04 C7 44 08 20 00 C3  .. .'.f.D..D. ..
    3000: 56 1E 0E 1F E8 16 FE 66 8B 44 04 66 C1 E0 0A 1F  V......f.D.f....
    3010: 5E C3 C3 57 E8 CF FD 8B 45 52 5F C3 56 E8 E8 FD  ^..W....ER_.V...
    3020: 8B 4C 22 8A 44 29 5E C3 BE 44 02 8B 34 8B 74 1E  .L".D)^..D..4.t.
    3030: 83 C6 04 B9 29 00 C3 33 FF C3 56 E8 CA FD 8A 6C  ....)..3..V....l
    3040: 28 80 E5 70 C0 ED 04 5E C3 56 E8 BB FD 53 81 C3  (..p...^.V...S..
    3050: 09 01 E8 67 02 8A E8 5B 53 81 C3 00 01 E8 5C 02  ...g...[S.....\.
    3060: 5B 8A C5 66 89 44 3C 5E C3 56 E8 9B FD 66 8B 44  [..f.D<^.V...f.D
    3070: 3C 53 81 C3 00 01 E8 A3 01 5B 53 81 C3 08 01 B1  <S.......[S.....
    3080: 01 8A E8 E8 DA 01 5B 5E C3 56 E8 7B FD 8B FE 83  ......[^.V.{....
    3090: C7 04 5E C3 56 E8 70 FD 8A 44 28 80 FD 00 74 0E  ..^.V.p..D(...t.
    30A0: 24 8F C0 E5 04 0A C5 80 FD 20 75 02 0C 02 24 FE  $........ u...$.
    30B0: 81 7C 04 34 21 76 02 0C 01 88 44 28 E8 D6 FA 75  .|.4!v....D(...u
    30C0: 04 80 4C 30 01 5E C3 32 C0 C3 66 50 8C C8 3D 00  ..L0.^.2..fP..=.
    30D0: C0 75 10 BA C3 03 EC 8A F0 0A F6 74 06 B2 4C 66  .u.........t..Lf
    30E0: ED EB 17 53 2E 8B 1E 38 02 B2 20 E8 DD 00 A8 01  ...S...8.. .....
    30F0: 75 05 B2 14 E8 D4 00 8A F4 5B 32 D2 66 58 C3 2E  u........[2.fX..
    3100: 8B 1E 38 02 C3 0B C9 75 1A 4B 74 16 43 3B DA 77  ..8....u.Kt.C;.w
    3110: 09 8B C8 8B C2 2B D2 F7 F3 91 F7 F3 8B DA 8B D1  .....+..........
    3120: 2B C9 C3 3B CA 72 1A 75 10 3B D8 77 0C 2B C3 8B  +..;.r.u.;.w.+..
    3130: D8 2B C9 2B D2 B8 01 00 C3 2B C9 2B DB 93 87 CA  .+.+.....+.+....
    3140: C3 55 56 2B F6 8B EE 03 DB 13 C9 72 11 45 3B CA  .UV+.......r.E;.
    3150: 72 F5 77 04 3B D8 76 EF F8 13 F6 4D 78 20 D1 D9  r.w.;.v....Mx ..
    3160: D1 DB 2B C3 1B D1 F5 72 F0 03 F6 4D 78 0C D1 E9  ..+....r...Mx...
    3170: D1 DB 03 C3 13 D1 73 F1 EB DF 03 C3 13 D1 8B D8  ......s.........
    3180: 8B CA 8B C6 33 D2 5E 5D C3 93 50 92 0B C0 74 02  ....3.^]..P...t.
    3190: F7 E2 91 0B C0 74 04 F7 E3 03 C8 58 F7 E3 03 D1  .....t.....X....
    31A0: C3 52 66 50 B4 80 8A C7 66 C1 E0 10 8A E3 8A C2  .RfP....f.......
    31B0: 24 FC BA F8 0C 66 EF 66 58 5A C3 52 BA FC 0C 66  $....f.fXZ.R...f
    31C0: ED 5A C3 52 BA FC 0C 66 EF 5A C3 E8 31 FF 9C FA  .Z.R...f.Z..1...
    31D0: E8 CE FF E8 E5 FF 9D C3 E8 24 FF 9C FA E8 C1 FF  .........$......
    31E0: E8 E0 FF 9D C3 52 66 53 66 50 E8 06 00 66 58 66  .....RfSfP...fXf
    31F0: 5B 5A C3 66 C1 E3 10 66 C1 EB 0E E8 CC FE E8 75  [Z.f...f.......u
    3200: 01 C3 66 50 66 C1 E3 10 66 C1 EB 10 E8 F1 FD 66  ..fPf...f......f
    3210: 03 D8 66 81 CB 00 00 00 80 66 58 C3 52 66 53 E8  ..f......fX.RfS.
    3220: 04 00 66 5B 5A C3 66 50 E8 9F FE E8 D4 FF E8 45  ..f[Z.fP.......E
    3230: 01 66 58 C3 52 51 66 53 66 50 8A CB 80 E3 FC 80  .fX.RQfSfP......
    3240: E1 03 C0 E1 03 E8 82 FE E8 B7 FF E8 0F 01 66 D3  ..............f.
    3250: C8 58 50 66 D3 C0 E8 1D 01 66 58 66 5B 59 5A C3  .XPf.....fXf[YZ.
    3260: 66 50 51 C0 E1 03 E8 53 00 66 D3 C8 8A C5 66 D3  fPQ....S.f....f.
    3270: C0 E8 A8 FF 59 66 58 C3 66 50 51 C0 E1 03 E8 3B  ....YfX.fPQ....;
    3280: 00 66 D3 C8 59 8A E8 66 58 C3 E8 5F 00 C3 E8 39  .f..Y..fX.._...9
    3290: FE 66 C1 E3 10 66 C1 EB 0E E8 C1 00 C3 E8 2A FE  .f...f........*.
    32A0: 66 C1 E3 02 E8 B6 00 C3 52 66 53 E8 04 00 66 5B  f.......RfS...f[
    32B0: 5A C3 E8 15 FE E8 4A FF E8 A2 00 C3 51 66 52 8A  Z.....J.....QfR.
    32C0: EB 8A CB 80 E1 03 C0 E1 03 80 E3 FC E8 D9 FF 80  ................
    32D0: F9 00 74 14 66 8B D0 83 C3 04 E8 CB FF 83 EB 04  ..t.f...........
    32E0: 66 92 66 0F AD D0 8A DD 66 5A 59 C3 52 66 53 E8  f.f.....fZY.RfS.
    32F0: 9C FF 66 5B 5A C3 52 66 53 E8 A1 FF 66 5B 5A C3  ..f[Z.RfS...f[Z.
    3300: 66 50 55 52 66 50 8B EC 8B 56 0C 89 56 08 E8 B9  fPURfP...V..V...
    3310: FD 2E A1 8D 02 B2 18 EF B2 00 66 ED 66 89 46 0A  ..........f.f.F.
    3320: 66 58 5A 5D C3 66 50 55 52 8B EC E8 9C FD B2 00  fXZ].fPUR.......
    3330: 66 8B 46 0A 66 EF 8B 56 08 89 56 0C 66 8B 46 04  f.F.f..V..V.f.F.
    3340: 66 89 46 08 5A 5D 66 58 66 58 C3 66 50 52 E8 79  f.F.Z]fXfX.fPR.y
    3350: FD B2 18 66 ED 2E A3 8D 02 5A 66 58 C3 66 81 FB  ...f.....ZfX.f..
    3360: FF 00 00 00 77 04 8A D3 EB 09 66 8B C3 B2 00 66  ....w.....f....f
    3370: EF B2 04 66 ED C3 66 81 FB FF 00 00 00 77 04 8A  ...f..f......w..
    3380: D3 EB 0A 66 93 B2 00 66 EF 66 93 B2 04 66 EF C3  ...f...f.f...f..
    3390: C3 C3 C3 C3 C3 C3 C3 C3 C3 C3 55 8B EC 53 51 8B  ..........U..SQ.
    33A0: F0 26 8B 5C 14 26 8B 4C 16 E8 28 00 8D 66 FC 59  .&.\.&.L..(..f.Y
    33B0: 5B 5D C3 53 51 8B F0 26 8B 5C 24 33 C9 E8 14 00  [].SQ..&.\$3....
    33C0: 59 5B C3 55 8B EC 53 51 8B F0 26 8B 5C 08 26 8B  Y[.U..SQ..&.\.&.
    33D0: 4C 0A EB D5 52 56 57 C8 06 00 00 8B F0 89 4E FE  L...RVW.......N.
    33E0: 8C D0 8E C0 26 8B 7C 26 8A 45 01 32 E4 B9 20 00  ....&.|&.E.2.. .
    33F0: 2B C8 B8 FF FF 8B D0 E3 06 D1 EA D1 D8 E2 FA 8A  +...............
    3400: 4D 03 32 ED 8B FA E3 06 D1 E0 D1 D7 E2 FA F7 D0  M.2.............
    3410: F7 D7 26 21 44 1C 26 21 7C 1E 8C D0 8E C0 26 8B  ..&!D.&!|.....&.
    3420: 7C 26 8A 4D 01 32 ED B8 20 00 2B C1 8B C8 66 C7  |&.M.2.. .+...f.
    3430: 46 FA FF FF FF FF E3 08 D1 6E FC D1 5E FA E2 F8  F........n..^...
    3440: 8A 4D 02 32 ED 8B C3 8B 56 FE E3 06 D1 EA D1 D8  .M.2....V.......
    3450: E2 FA 23 46 FA 23 56 FC 8A 4D 03 32 ED E3 06 D1  ..#F.#V..M.2....
    3460: E0 D1 D2 E2 FA 26 09 44 1C 26 09 54 1E C9 5F 5E  .....&.D.&.T.._^
    3470: 5A C3 55 8B EC 53 51 52 57 50 8B D8 26 8B 7F 26  Z.U..SQRWP..&..&
    3480: 8A 45 01 32 E4 B9 20 00 2B C8 B8 FF FF 8B D0 E3  .E.2.. .+.......
    3490: 06 D1 EA D1 D8 E2 FA 8A 4D 02 88 4E F6 C6 46 F7  ........M..N..F.
    34A0: 00 8B FA 8B 4E F6 E3 06 D1 E0 D1 D7 E2 FA 26 09  ....N.........&.
    34B0: 47 1C 26 09 7F 1E 8D 66 F8 5F 5A E9 F1 FE 53 51  G.&....f._Z...SQ
    34C0: 52 57 8B D8 8C D0 8E C0 26 8B 77 26 8A 4C 01 32  RW......&.w&.L.2
    34D0: ED B8 20 00 2B C1 8B C8 BE FF FF 8B D6 E3 06 D1  .. .+...........
    34E0: EA D1 DE E2 FA 26 8B 7F 26 8A 4D 02 32 ED 8B C6  .....&..&.M.2...
    34F0: E3 06 D1 E0 D1 D2 E2 FA F7 D0 F7 D2 26 21 47 1C  ............&!G.
    3500: 26 21 57 1E 5F E9 CC 05 53 56 8B D8 8C D2 8E C2  &!W._...SV......
    3510: 26 8B 77 26 80 3C 00 74 73 80 3C 01 75 58 8A 44  &.w&.<.ts.<.uX.D
    3520: 01 32 E4 26 83 7F 1E 00 75 4C 26 3B 47 1C 75 46  .2.&....uL&;G.uF
    3530: 8A 04 6B F0 03 8A 84 E6 95 26 01 47 26 8C D0 8E  ..k......&.G&...
    3540: C0 26 8B 77 26 80 3C 09 74 17 8A 04 32 E4 6B F0  .&.w&.<.t...2.k.
    3550: 03 8B C3 FF 94 E4 95 26 8B 77 26 8A 04 32 E4 EB  .......&.w&..2..
    3560: D1 8B 44 01 26 29 47 26 26 FF 47 26 26 8B 47 1C  ..D.&)G&&.G&&.G.
    3570: 26 8B 77 1E EB 1A 26 8B 77 26 8A 04 32 E4 6B F0  &.w...&.w&..2.k.
    3580: 03 8A 84 E6 95 26 01 47 26 E9 80 FF 33 C0 33 F6  .....&.G&...3.3.
    3590: 8B D6 5E 5B C3 53 51 52 56 8B D8 8D 77 35 26 8B  ..^[.SQRV...w5&.
    35A0: 54 02 26 89 57 14 26 C7 47 16 00 00 8B F0 26 8B  T.&.W.&.G.....&.
    35B0: 47 20 33 D2 26 01 47 14 26 11 54 16 8C D1 8E C1  G 3.&.G.&.T.....
    35C0: 26 F6 47 2F 06 0F 85 0A 05 26 80 7F 34 00 75 22  &.G/.....&..4.u"
    35D0: 26 8B 77 16 26 0B 77 14 75 10 26 D1 67 08 26 D1  &.w.&.w.u.&.g.&.
    35E0: 57 0A 26 D1 67 08 26 D1 57 0A 8B C3 E8 79 11 E9  W.&.g.&.W....y..
    35F0: E1 04 26 8A 47 34 32 E4 05 80 00 99 26 89 47 1C  ..&.G42.....&.G.
    3600: 26 89 57 1E 8B C3 E8 FF FE E9 C7 04 53 56 8B D8  &.W.........SV..
    3610: 8D 77 35 26 8A 44 02 32 E4 C1 E0 02 26 8B 37 26  .w5&.D.2....&.7&
    3620: 8B 34 03 F0 26 8B 47 08 26 8B 5F 0A 26 89 04 26  .4..&.G.&._.&..&
    3630: 89 5C 02 5E 5B C3 53 52 56 8B D8 8C D0 8D 77 35  .\.^[.SRV.....w5
    3640: 8E C0 26 8A 54 02 80 FA 40 73 21 26 8B 77 02 32  ..&.T...@s!&.w.2
    3650: F6 C1 E2 02 26 8B 74 04 03 F2 26 8B 57 08 26 8B  ....&.t...&.W.&.
    3660: 47 0A 26 89 14 26 89 44 02 E9 7F 00 80 FA 41 75  G.&..&.D......Au
    3670: 12 26 8B 47 08 26 8B 57 0A 26 89 47 10 26 89 57  .&.G.&.W.&.G.&.W
    3680: 12 EB 68 80 FA 40 75 12 26 8B 47 08 26 8B 57 0A  ..h..@u.&.G.&.W.
    3690: 26 89 47 0C 26 89 57 0E EB 51 80 FA 42 75 0A 26  &.G.&.W..Q..Bu.&
    36A0: 8B 47 08 26 89 47 22 EB 42 80 FA 43 75 0A 26 8A  .G.&.G".B..Cu.&.
    36B0: 47 08 26 88 47 33 EB 33 80 FA 46 75 12 26 8B 57  G.&.G3.3..Fu.&.W
    36C0: 08 26 8B 47 0A 26 89 57 18 26 89 47 1A EB 1C 80  .&.G.&.W.&.G....
    36D0: FA 47 75 0A 26 8B 47 08 26 89 47 24 EB 0D 80 FA  .Gu.&.G.&.G$....
    36E0: 48 75 08 26 8B 47 08 26 89 47 20 5E 5A 5B C3 53  Hu.&.G.&.G ^Z[.S
    36F0: 56 8B D8 8D 77 35 26 8A 44 02 32 E4 26 89 47 14  V...w5&.D.2.&.G.
    3700: 26 C7 47 16 00 00 5E 5B C3 53 56 8B D8 26 8B 77  &.G...^[.SV..&.w
    3710: 02 26 8B 74 02 8A 04 32 E4 26 89 47 14 26 C7 47  .&.t...2.&.G.&.G
    3720: 16 00 00 26 8B 5F 02 26 FF 47 02 5E 5B C3 53 56  ...&._.&.G.^[.SV
    3730: 8B D8 26 8B 77 02 26 8B 74 02 8B 34 26 89 77 14  ..&.w.&.t..4&.w.
    3740: 26 C7 47 16 00 00 26 8B 5F 02 26 83 47 02 02 5E  &.G...&._.&.G..^
    3750: 5B C3 53 56 8B D8 26 8B 77 02 26 8B 74 02 8B 04  [.SV..&.w.&.t...
    3760: 8B 74 02 26 89 47 14 26 89 77 16 26 8B 5F 02 26  .t.&.G.&.w.&._.&
    3770: 83 47 02 04 5E 5B C3 53 52 56 8B D8 E8 70 FF 8B  .G..^[.SRV...p..
    3780: F3 26 8B 47 18 26 8B 57 1A D1 EA D1 D8 D1 EA D1  .&.G.&.W........
    3790: D8 26 01 47 14 26 11 54 16 8B C3 E8 2B 10 E9 4A  .&.G.&.T....+..J
    37A0: FF 53 8B D8 26 8B 5F 02 26 FF 47 02 5B C3 53 8B  .S..&._.&.G.[.S.
    37B0: D8 26 8B 5F 02 26 83 47 02 02 5B C3 53 56 8B D8  .&._.&.G..[.SV..
    37C0: E8 6B FF 8B F3 26 8B 57 20 33 C0 26 01 57 14 26  .k...&.W 3.&.W.&
    37D0: 11 44 16 8C D2 8E C2 26 8B 47 2E 32 C0 80 E4 06  .D.....&.G.2....
    37E0: 3D 00 02 75 07 32 E4 33 D2 5E 5B C3 26 8B 47 2E  =..u.2.3.^[.&.G.
    37F0: 32 C0 80 E4 06 3D 00 04 74 EB 26 80 7F 34 00 75  2....=..t.&..4.u
    3800: 08 8B C3 E8 2F 0F 5E 5B C3 26 8A 47 34 32 E4 26  ..../.^[.&.G42.&
    3810: 89 47 1C 26 C7 47 1E 00 00 8B C3 E8 EA FC 5E 5B  .G.&.G........^[
    3820: C3 53 8B D8 E8 E2 FE 26 8B 47 14 C1 E0 02 26 8B  .S.....&.G....&.
    3830: 1F 26 8B 1F 03 D8 26 8B 07 26 8B 57 02 5B C3 45  .&....&..&.W.[.E
    3840: 38 3A 38 50 38 9F 38 56 38 6E 38 88 38 93 38 99  8:8P8.8V8n8.8.8.
    3850: 38 53 51 56 8B D8 E8 B0 FE 8C D2 8E C2 26 83 7F  8SQV.........&..
    3860: 16 00 75 22 26 83 7F 14 40 73 1B 26 8B 77 02 26  ..u"&...@s.&.w.&
    3870: 8B 5F 14 C1 E3 02 26 8B 44 04 03 D8 26 8B 07 26  ._....&.D...&..&
    3880: 8B 57 02 E9 7B 05 26 8B 77 14 26 8B 47 16 83 C6  .W..{.&.w.&.G...
    3890: C0 83 D0 FF 75 71 83 FE 08 77 6C 03 F6 2E FF A4  ....uq...wl.....
    38A0: D7 37 26 8B 47 10 26 8B 57 12 E9 54 05 26 8B 47  .7&.G.&.W..T.&.G
    38B0: 0C 26 8B 57 0E E9 49 05 26 8B 47 22 EB 4B 26 8A  .&.W..I.&.G".K&.
    38C0: 4F 33 32 ED BB 01 00 33 D2 E3 06 D1 E3 D1 D2 E2  O32....3........
    38D0: FA 8B C3 E9 2B 05 26 8A 4F 33 32 ED B8 01 00 33  ....+.&.O32....3
    38E0: D2 E3 06 D1 E0 D1 D2 E2 FA F7 D0 F7 D2 E9 11 05  ................
    38F0: 26 8B 47 18 26 8B 57 1A E9 06 05 26 8B 47 24 EB  &.G.&.W....&.G$.
    3900: 08 26 8B 47 20 EB 02 33 C0 33 D2 E9 F3 04 53 56  .&.G ..3.3....SV
    3910: 8B D8 E8 F4 FD 8B F3 26 8B 47 18 26 8B 57 1A D1  .......&.G.&.W..
    3920: EA D1 D8 D1 EA D1 D8 26 01 47 14 26 11 54 16 8B  .......&.G.&.T..
    3930: C3 E8 16 0E 5E 5B C3 33 C0 33 D2 C3 53 56 8B D8  ....^[.3.3..SV..
    3940: E8 EB FD 26 8B 77 14 26 03 77 22 8B 04 8B 54 02  ...&.w.&.w"...T.
    3950: 5E 5B C3 53 8B D8 26 C6 47 2B 04 E8 AB FD 26 8B  ^[.S..&.G+....&.
    3960: 47 14 26 8B 57 16 5B C3 53 8B D8 26 C6 47 2B 01  G.&.W.[.S..&.G+.
    3970: E8 BB FD EB E9 53 8B D8 26 C6 47 2B 00 E8 D2 FD  .....S..&.G+....
    3980: EB DC 53 8B D8 83 C3 35 26 8A 5F 01 C0 EB 03 80  ..S....5&._.....
    3990: E3 07 32 FF 03 DB FF 97 74 95 5B C3 53 52 56 8B  ..2.....t.[.SRV.
    39A0: D8 26 8A 47 2C 32 E4 8B F0 03 F0 8B C3 FF 94 90  .&.G,2..........
    39B0: 95 26 89 47 08 26 89 57 0A 26 8A 47 2D 32 E4 8B  .&.G.&.W.&.G-2..
    39C0: F0 03 F0 8B C3 FF 94 A8 95 26 89 47 04 26 89 57  .........&.G.&.W
    39D0: 06 E9 17 FD 53 51 56 8B D8 26 8A 4F 2B 32 ED 8B  ....SQV..&.O+2..
    39E0: F1 8A 8C D8 95 E3 0A 26 D1 6F 06 26 D1 5F 04 E2  .......&.o.&._..
    39F0: F6 26 8A 4F 2B 32 ED 8B F1 C1 E6 02 8B 8C B8 95  .&.O+2..........
    3A00: 8B B4 BA 95 26 21 4F 04 26 21 77 06 26 8A 4F 2A  ....&!O.&!w.&.O*
    3A10: 32 ED 8B F1 8A 8C E0 95 E3 0A 26 D1 67 04 26 D1  2.........&.g.&.
    3A20: 57 06 E2 F6 26 8B 4F 08 26 8B 77 0A 26 89 4F 14  W...&.O.&.w.&.O.
    3A30: 26 89 77 16 E9 CA 03 53 51 52 56 57 8B D8 8C D0  &.w....SQRVW....
    3A40: 8E C0 26 8A 47 2B 32 E4 8B F0 C1 E6 02 26 8A 47  ..&.G+2......&.G
    3A50: 2A 8B F8 8A 8D E0 95 32 ED 8B 84 B8 95 8B 94 BA  *......2........
    3A60: 95 E3 06 D1 E0 D1 D2 E2 FA F7 D0 F7 D2 26 21 47  .............&!G
    3A70: 14 26 21 57 16 26 8A 47 2A 32 E4 8B F0 8A 8C E0  .&!W.&.G*2......
    3A80: 95 32 ED E3 0A 26 D1 6F 0A 26 D1 5F 08 E2 F6 26  .2...&.o.&._...&
    3A90: 8A 47 2B 8B F0 C1 E6 02 8B 84 B8 95 8B 94 BA 95  .G+.............
    3AA0: 26 21 47 08 26 21 57 0A 26 8A 47 2A 32 E4 8B F0  &!G.&!W.&.G*2...
    3AB0: 8A 8C E0 95 32 ED E3 0A 26 D1 67 08 26 D1 57 0A  ....2...&.g.&.W.
    3AC0: E2 F6 26 8B 47 14 26 8B 57 16 26 09 47 08 26 09  ..&.G.&.W.&.G.&.
    3AD0: 57 0A 5F 5E 5A 59 5B C3 53 51 56 8B D8 26 8A 4F  W._^ZY[.SQV..&.O
    3AE0: 2B 32 ED 8B F1 8A 8C D8 95 E3 0A 26 D1 6F 06 26  +2.........&.o.&
    3AF0: D1 5F 04 E2 F6 26 8A 4F 2B 32 ED 8B F1 C1 E6 02  ._...&.O+2......
    3B00: 8B 8C B8 95 8B B4 BA 95 26 21 4F 04 26 21 77 06  ........&!O.&!w.
    3B10: 26 8A 4F 2A 32 ED 8B F1 8A 8C E0 95 E3 0A 26 D1  &.O*2.........&.
    3B20: 6F 0A 26 D1 5F 08 E2 F6 26 8A 4F 2B 32 ED 8B F1  o.&._...&.O+2...
    3B30: C1 E6 02 8B 8C B8 95 8B B4 BA 95 26 21 4F 08 26  ...........&!O.&
    3B40: 21 77 0A E9 BB 02 51 52 57 8B D8 8C D0 8E C0 26  !w....QRW......&
    3B50: 80 7F 2B 00 74 1A 26 8A 47 2C 32 E4 8B F0 03 F0  ..+.t.&.G,2.....
    3B60: 8B C3 FF 94 90 95 26 89 47 08 26 89 57 0A EB 10  ......&.G.&.W...
    3B70: 26 8A 47 2C 32 E4 8B F0 03 F0 8B C3 FF 94 9C 95  &.G,2...........
    3B80: 26 8A 47 2D 32 E4 8B F0 03 F0 8B C3 FF 94 A8 95  &.G-2...........
    3B90: 26 89 47 04 26 89 57 06 8C D2 8E C2 26 80 7F 2B  &.G.&.W.....&..+
    3BA0: 00 74 4A 26 8A 47 2B 32 E4 8B F0 C1 E6 02 26 8A  .tJ&.G+2......&.
    3BB0: 47 2A 8B F8 8A 8D E0 95 32 ED 8B 84 B8 95 8B 94  G*......2.......
    3BC0: BA 95 E3 06 D1 E0 D1 D2 E2 FA F7 D0 F7 D2 26 21  ..............&!
    3BD0: 47 08 26 21 57 0A 8B C3 E8 F9 FD 26 8B 47 04 26  G.&!W......&.G.&
    3BE0: 8B 57 06 26 09 47 08 26 09 57 0A EB 10 26 8B 57  .W.&.G.&.W...&.W
    3BF0: 04 26 8B 47 06 26 89 57 08 26 89 47 0A 26 8A 47  .&.G.&.W.&.G.&.G
    3C00: 2C 32 E4 8B F0 03 F0 8B C3 FF 94 84 95 5F 5A 59  ,2..........._ZY
    3C10: C3 53 51 52 56 57 8B D8 26 8A 47 2A 32 E4 8B F0  .SQRVW..&.G*2...
    3C20: 8A 8C E0 95 32 ED E3 0A 26 D1 67 04 26 D1 57 06  ....2...&.g.&.W.
    3C30: E2 F6 8C D0 8E C0 26 8A 47 2B 32 E4 8B F0 C1 E6  ......&.G+2.....
    3C40: 02 26 8A 47 2A 8B F8 8A 8D E0 95 32 ED 8B 84 B8  .&.G*......2....
    3C50: 95 8B 94 BA 95 E3 06 D1 E0 D1 D2 E2 FA F7 D0 F7  ................
    3C60: D2 26 09 47 04 26 09 57 06 26 8B 47 04 26 8B 57  .&.G.&.W.&.G.&.W
    3C70: 06 26 21 47 08 26 21 57 0A E9 56 FE 55 8B EC 51  .&!G.&!W..V.U..Q
    3C80: 52 50 8B D8 26 8A 47 2C 32 E4 8B F0 03 F0 8B C3  RP..&.G,2.......
    3C90: FF 94 90 95 26 89 47 08 26 89 57 0A 26 8A 47 2B  ....&.G.&.W.&.G+
    3CA0: 88 46 FA 8B C3 E8 DA FC 26 89 47 04 26 89 57 06  .F......&.G.&.W.
    3CB0: 26 8A 4F 2D 32 ED 8B F1 03 F1 8B C3 FF 94 A8 95  &.O-2...........
    3CC0: 26 89 47 14 26 89 57 16 8B C3 E8 44 FF 8A 46 FA  &.G.&.W....D..F.
    3CD0: 32 E4 8B F0 8A 8C D8 95 E3 0A 26 D1 6F 16 26 D1  2.........&.o.&.
    3CE0: 5F 14 E2 F6 26 8A 57 2B 32 F6 8B F2 C1 E6 02 8B  _...&.W+2.......
    3CF0: 84 B8 95 8B 94 BA 95 26 21 47 14 26 21 57 16 26  .......&!G.&!W.&
    3D00: 8A 47 2A 32 E4 8B F0 8A 8C E0 95 32 ED E3 0A 26  .G*2.......2...&
    3D10: D1 67 14 26 D1 57 16 E2 F6 26 8B 47 14 26 8B 57  .g.&.W...&.G.&.W
    3D20: 16 26 09 47 08 26 09 57 0A 26 8A 47 2C 32 E4 8B  .&.G.&.W.&.G,2..
    3D30: F0 03 F0 8B C3 FF 94 84 95 8D 66 FC 5A 59 5D C3  ..........f.ZY].
    3D40: 51 8B D8 E8 56 FC 26 8A 4F 2B 32 ED 8B F1 8A 8C  Q...V.&.O+2.....
    3D50: D8 95 E3 0A 26 D1 6F 06 26 D1 5F 04 E2 F6 8B C3  ....&.o.&._.....
    3D60: E8 AE FE 26 8A 4F 2C 32 ED 8B F1 03 F1 8B C3 FF  ...&.O,2........
    3D70: 94 84 95 59 C3 8B D8 E8 22 FC 8B C3 E8 55 FC 26  ...Y...."....U.&
    3D80: 8B 47 04 26 8B 77 06 26 09 47 08 26 09 77 0A 26  .G.&.w.&.G.&.w.&
    3D90: 8A 47 2C 32 E4 8B F0 03 F0 8B C3 FF 94 84 95 C3  .G,2............
    3DA0: 53 56 8B D8 E8 F5 FB 8B C3 E8 28 FC 26 8B 47 04  SV........(.&.G.
    3DB0: 26 8B 77 06 26 31 47 08 26 31 77 0A 26 8A 47 2C  &.w.&1G.&1w.&.G,
    3DC0: 32 E4 8B F0 03 F0 8B C3 FF 94 84 95 5E 5B C3 53  2...........^[.S
    3DD0: 51 56 8B D8 E8 C5 FB 8B C3 E8 F8 FB 26 8B 4F 04  QV..........&.O.
    3DE0: E3 0A 26 D1 67 08 26 D1 57 0A E2 F6 8B C3 E8 46  ..&.g.&.W......F
    3DF0: FC 26 8A 4F 2C 32 ED 8B F1 03 F1 8B C3 FF 94 84  .&.O,2..........
    3E00: 95 5E 59 5B C3 53 51 56 8B D8 E8 8F FB 8B C3 E8  .^Y[.SQV........
    3E10: C2 FB 26 8B 4F 04 E3 0A 26 D1 6F 0A 26 D1 5F 08  ..&.O...&.o.&._.
    3E20: E2 F6 EB C8 52 8B D8 E8 72 FB 8B C3 E8 A5 FB 8B  ....R...r.......
    3E30: F3 26 8B 47 04 26 8B 57 06 26 01 47 08 26 11 54  .&.G.&.W.&.G.&.T
    3E40: 0A 8B C3 E8 F1 FB 26 8A 47 2C 32 E4 8B F0 03 F0  ......&.G,2.....
    3E50: 8B C3 FF 94 84 95 5A C3 52 8B D8 E8 3E FB 8B C3  ......Z.R...>...
    3E60: E8 71 FB 8B F3 26 8B 47 04 26 8B 57 06 26 29 47  .q...&.G.&.W.&)G
    3E70: 08 26 19 54 0A EB CA 51 52 8B F0 E8 1E FB 8B C6  .&.T...QR.......
    3E80: E8 55 FC 26 8B 44 08 26 8B 54 0A 26 8B 5C 04 26  .U.&.D.&.T.&.\.&
    3E90: 8B 4C 06 E8 F3 F2 26 89 44 0C 26 89 54 0E 5A 59  .L....&.D.&.T.ZY
    3EA0: C3 52 8B D0 E8 F5 FA 8B C2 E8 2C FC 8B C2 E8 5C  .R........,....\
    3EB0: 08 5A C3 51 52 57 8B F0 E8 E1 FA 8B C6 E8 18 FC  .Z.QRW..........
    3EC0: 26 8B 44 08 26 8B 54 0A 26 8B 5C 04 26 8B 4C 06  &.D.&.T.&.\.&.L.
    3ED0: E8 32 F2 26 89 44 0C 26 89 54 0E 8C D7 8E C7 26  .2.&.D.&.T.....&
    3EE0: 8B 44 08 26 8B 54 0A 26 8B 5C 04 26 8B 4C 06 E8  .D.&.T.&.\.&.L..
    3EF0: 13 F2 26 89 5C 10 26 89 4C 12 E9 10 FD 52 8B D0  ..&.\.&.L....R..
    3F00: E8 99 FA 8B C2 E8 D0 FB 8B C2 E8 D3 07 5A C3 51  .............Z.Q
    3F10: 52 8B D8 E8 86 FA 8B C3 E8 BD FB 8C D1 8E C1 26  R..............&
    3F20: 8B 47 08 26 8B 57 0A 26 3B 57 06 75 0E 26 3B 47  .G.&.W.&;W.u.&;G
    3F30: 04 75 08 26 C6 47 30 01 5A 59 C3 8B D0 26 8B 47  .u.&.G0.ZY...&.G
    3F40: 0A 26 3B 47 06 72 08 75 0A 26 3B 57 04 73 04 33  .&;G.r.u.&;W.s.3
    3F50: C0 EB 03 B8 02 00 26 88 47 30 5A 59 C3 51 52 57  ......&.G0ZY.QRW
    3F60: 8B D8 26 8A 47 2C 32 E4 8B F0 03 F0 8B C3 FF 94  ..&.G,2.........
    3F70: 90 95 26 89 47 08 26 89 57 0A 8C D0 8E C0 26 8A  ..&.G.&.W.....&.
    3F80: 47 2B 32 E4 8B F0 C1 E6 02 8B F8 8A 8D D8 95 32  G+2............2
    3F90: ED 8B 84 B8 95 8B 94 BA 95 E3 06 D1 E0 D1 D2 E2  ................
    3FA0: FA F7 D0 F7 D2 26 21 47 08 26 21 57 0A E9 4D FC  .....&!G.&!W..M.
    3FB0: 55 8B EC 51 52 57 83 EC 06 8B D8 26 8A 47 2B 32  U..QRW.....&.G+2
    3FC0: E4 8B F0 C1 E6 02 8B F8 8A 8D D8 95 32 ED 8B 84  ............2...
    3FD0: B8 95 89 46 F4 8B 84 BA 95 89 46 F6 E3 08 D1 66  ...F......F....f
    3FE0: F4 D1 56 F6 E2 F8 8B 7E F4 8B 46 F6 89 46 F8 26  ..V....~..F..F.&
    3FF0: 8A 47 2C 32 E4 8B F0 03 F0 8B C3 FF 94 90 95 26  .G,2...........&
    4000: 89 47 08 26 89 57 0A 8B C3 E8 47 F9 26 89 47 04  .G.&.W....G.&.G.
    4010: 26 89 57 06 8B C7 F7 D0 8B 56 F6 F7 D2 26 23 47  &.W......V...&#G
    4020: 08 26 23 57 0A 26 89 47 14 26 89 57 16 26 21 7F  .&#W.&.G.&.W.&!.
    4030: 08 8B 46 F6 26 21 47 0A 8C D1 8D 77 35 8E C1 26  ..F.&!G....w5..&
    4040: 80 3C 19 73 12 26 8B 4F 04 E3 0A 26 D1 67 08 26  .<.s.&.O...&.g.&
    4050: D1 57 0A E2 F6 EB 10 26 8B 4F 04 E3 0A 26 D1 6F  .W.....&.O...&.o
    4060: 0A 26 D1 5F 08 E2 F6 26 21 7F 08 8B 46 F8 26 21  .&._...&!...F.&!
    4070: 47 0A 26 8B 57 14 26 8B 47 16 26 09 57 08 26 09  G.&.W.&.G.&.W.&.
    4080: 47 0A 26 8A 47 2C 32 E4 8B F0 03 F0 8B C3 FF 94  G.&.G,2.........
    4090: 84 95 8D 66 FA 5F E9 A3 FC 52 8B D8 E8 FD F8 8B  ...f._...R......
    40A0: C3 E8 34 FA 26 8B 47 08 26 8B 57 0A 26 85 57 06  ..4.&.G.&.W.&.W.
    40B0: 75 06 26 85 47 04 74 05 B8 03 00 EB 03 B8 01 00  u.&.G.t.........
    40C0: 26 88 47 30 5A C3 53 51 52 56 8B D8 26 8A 4F 2D  &.G0Z.SQRV..&.O-
    40D0: 32 ED 8B F1 03 F1 FF 94 A8 95 26 89 47 04 26 89  2.........&.G.&.
    40E0: 57 06 26 8A 47 2B 32 E4 8B F0 8A 8C D8 95 E3 0A  W.&.G+2.........
    40F0: 26 D1 6F 06 26 D1 5F 04 E2 F6 26 8A 47 2B 8B F0  &.o.&._...&.G+..
    4100: C1 E6 02 8B 84 B8 95 8B 94 BA 95 26 21 47 04 26  ...........&!G.&
    4110: 21 57 06 E9 BD F9 52 8B D8 E8 AA FF 26 8B 47 04  !W....R.....&.G.
    4120: 26 8B 57 06 26 89 47 18 26 89 57 1A 5A C3 51 52  &.W.&.G.&.W.Z.QR
    4130: 8B D8 E8 91 FF 8C D0 8E C0 26 8B 77 02 26 8B 74  .........&.w.&.t
    4140: 02 81 3C 5A 5A 74 5B 26 8B 77 02 26 8B 74 02 80  ..<ZZt[&.w.&.t..
    4150: 3C 63 75 E1 26 8B 77 02 26 FF 44 02 8B C3 E8 21  <cu.&.w.&.D....!
    4160: F8 26 89 47 08 26 89 57 0A 8B C3 E8 FA F7 26 89  .&.G.&.W......&.
    4170: 47 14 26 89 57 16 8C D1 8E C1 26 8B 57 04 26 8B  G.&.W.....&.W.&.
    4180: 47 06 26 3B 47 0A 75 AD 26 3B 57 08 75 A7 26 8B  G.&;G.u.&;W.u.&.
    4190: 77 02 26 8B 04 26 03 47 14 8B DE 26 89 47 02 5A  w.&..&.G...&.G.Z
    41A0: 59 C3 26 8B 5F 02 26 83 47 02 02 5A 59 C3 52 57  Y.&._.&.G..ZY.RW
    41B0: 8B D8 8C D0 8E C0 26 8B 77 02 26 8B 74 02 8A 54  ......&.w.&.t..T
    41C0: 01 84 D2 75 08 26 C7 47 22 00 00 EB 2F 80 FA FF  ...u.&.G".../...
    41D0: 75 14 26 8B 77 02 26 8B 3F 26 8B 34 26 2B 75 02  u.&.w.&.?&.4&+u.
    41E0: 26 89 77 22 EB 16 26 8B 07 E8 E3 02 8B F0 8A C2  &.w"..&.........
    41F0: 32 E4 03 C0 03 F0 8B 04 26 89 47 22 26 8B 5F 02  2.......&.G"&._.
    4200: 26 83 47 02 02 5F 5A C3 8B D8 26 80 67 2F F9 26  &.G.._Z...&.g/.&
    4210: 8B 77 02 26 8B 74 02 8A 44 01 26 88 47 34 26 8B  .w.&.t..D.&.G4&.
    4220: 5F 02 26 83 47 02 03 C3 8B D8 26 8B 77 02 26 8B  _.&.G.....&.w.&.
    4230: 74 02 8B 74 01 26 89 77 20 EB E3 53 8B D8 26 8A  t..t.&.w ..S..&.
    4240: 47 2C 32 E4 24 03 26 80 67 2F F9 C1 E0 09 26 09  G,2.$.&.g/....&.
    4250: 47 2E E9 4F F5 8B D8 26 8B 77 02 26 8B 74 02 8A  G..O...&.w.&.t..
    4260: 44 01 32 E4 26 89 47 04 26 C7 47 06 00 00 8B C3  D.2.&.G.&.G.....
    4270: E8 40 04 26 8B 5F 02 26 83 47 02 02 C3 8B D8 26  .@.&._.&.G.....&
    4280: 8B 77 02 26 8B 74 02 8A 44 01 32 E4 26 89 47 04  .w.&.t..D.2.&.G.
    4290: 26 C7 47 06 00 00 8B C3 E8 08 04 EB D6 53 56 8B  &.G..........SV.
    42A0: D8 26 8B 77 02 26 8B 74 02 8A 44 01 32 E4 26 89  .&.w.&.t..D.2.&.
    42B0: 47 04 26 C7 47 06 00 00 8B C3 E8 06 04 E9 86 F4  G.&.G...........
    42C0: 53 56 8B D8 26 8B 77 02 26 8B 74 02 8A 44 01 32  SV..&.w.&.t..D.2
    42D0: E4 26 89 47 04 26 C7 47 06 00 00 8B C3 E8 F0 03  .&.G.&.G........
    42E0: E9 63 F4 53 56 8B D8 26 8B 77 02 8B DE 26 8B 5F  .c.SV..&.w...&._
    42F0: 02 8B 5F 01 83 C3 03 26 01 5C 02 5E 5B C3 51 52  .._....&.\.^[.QR
    4300: 8B D8 26 8B 77 02 26 83 44 02 02 26 8B 07 E8 A0  ..&.w.&.D..&....
    4310: 01 8B C8 26 8B 77 28 8A 44 01 32 E4 03 C0 8B F1  ...&.w(.D.2.....
    4320: 03 F0 83 3C 00 74 4F 26 8B 77 28 8A 54 01 32 F6  ...<.tO&.w(.T.2.
    4330: 8B C3 E8 B0 01 26 88 47 31 26 8B 77 02 26 8B 34  .....&.G1&.w.&.4
    4340: 8B 44 04 C1 E8 08 32 E4 24 7F C1 E8 02 32 E4 24  .D....2.$....2.$
    4350: 1F 26 80 67 2F 07 C1 E0 0B 26 09 47 2E 26 8B 37  .&.g/....&.G.&.7
    4360: 26 8B 47 2E C1 E8 0B C1 E0 02 26 01 04 26 C6 47  &.G.......&..&.G
    4370: 32 01 26 89 4F 28 5A 59 C3 53 8B D8 26 C6 47 32  2.&.O(ZY.S..&.G2
    4380: 82 5B C3 57 8B D8 8C D6 8E C6 26 80 7F 2C 05 74  .[.W......&..,.t
    4390: 0A 26 8A 47 2C 26 3A 47 30 75 1E 26 8B 77 02 26  .&.G,&:G0u.&.w.&
    43A0: 8B 74 02 26 8B 7F 02 26 8B 3D 8B 74 01 03 F7 26  .t.&...&.=.t...&
    43B0: 8B 5F 02 26 89 77 02 5F C3 26 8B 5F 02 26 83 47  ._.&.w._.&._.&.G
    43C0: 02 03 5F C3 53 56 57 8B D8 8C D6 8E C6 26 80 7F  .._.SVW......&..
    43D0: 30 01 74 0A 26 8A 47 30 26 3A 47 2C 75 20 26 8B  0.t.&.G0&:G,u &.
    43E0: 77 02 26 8B 74 02 26 8B 7F 02 26 8B 3D 8B 74 01  w.&.t.&...&.=.t.
    43F0: 03 F7 26 8B 5F 02 26 89 77 02 5F 5E 5B C3 26 8B  ..&._.&.w._^[.&.
    4400: 5F 02 26 83 47 02 03 EB F1 53 56 57 8B D8 8C D0  _.&.G....SVW....
    4410: 8E C0 26 80 7F 30 01 74 E5 EB C3 55 8B EC 53 51  ..&..0.t...U..SQ
    4420: 52 57 8B D8 26 8B 77 02 26 8B 74 02 8A 04 26 C6  RW..&.w.&.t...&.
    4430: 47 3D 00 8C D1 8E C1 26 80 7F 3D 08 73 20 26 8B  G=.....&..=.s &.
    4440: 77 02 26 8A 57 3D 32 F6 26 8B 7C 02 03 FA 8B F3  w.&.W=2.&.|.....
    4450: 03 F2 8A 15 26 88 54 35 26 FE 47 3D EB D5 26 8B  ....&.T5&.G=..&.
    4460: 7F 02 8A D0 32 F6 8B F2 C1 E6 02 8A 94 05 96 26  ....2..........&
    4470: 01 55 02 26 8B 7F 28 8A 55 01 80 E2 07 26 88 57  .U.&..(.U....&.W
    4480: 2D 26 8B 7F 28 8A 55 01 C0 EA 03 80 E2 07 26 88  -&..(.U.......&.
    4490: 57 2B 26 8B 7F 28 8A 55 01 C0 EA 06 26 88 57 2A  W+&..(.U....&.W*
    44A0: 8A 94 04 96 26 88 57 2C 8D 66 F8 5F 5A 59 5B 5D  ....&.W,.f._ZY[]
    44B0: C3 53 56 8B D8 26 8B 77 02 8B C6 8B 74 48 03 F0  .SV..&.w....tH..
    44C0: 8B D8 8B 74 1E 8B C6 03 C3 83 C0 04 5E 5B C3 53  ...t........^[.S
    44D0: 56 8B D8 26 8B 77 02 8B C6 8B 74 48 03 F0 8B D8  V..&.w....tH....
    44E0: 8B 74 20 EB E0 8A C2 C3 16 07 55 8B EC 53 51 56  .t .......U..SQV
    44F0: 57 83 EC 40 8B F8 89 46 B8 E8 D3 FF 8B D8 89 46  W..@...F.......F
    4500: E0 26 8B 45 02 8B 5F 2E 03 D8 89 5E DE 83 46 DE  .&.E.._....^..F.
    4510: 04 8B C7 E8 9B FF 89 46 E0 32 F6 8D 46 B8 E8 C4  .......F.2..F...
    4520: FF 8A D0 32 F6 03 D2 8B 5E E0 03 DA 83 3F 00 0F  ...2....^....?..
    4530: 84 65 01 88 46 E9 80 66 E7 F9 C6 46 EC 00 C7 46  .e..F..f...F...F
    4540: D8 00 00 66 C7 46 D0 00 00 00 00 C7 46 F6 00 00  ...f.F......F...
    4550: C6 46 EA 01 EB 06 3C 01 0F 85 8C 00 8A 56 E9 8A  .F....<......V..
    4560: C2 32 E4 03 C0 8B 5E E0 03 D8 83 3F 00 74 75 26  .2....^....?.tu&
    4570: 8B 45 02 8B 1F 03 D8 8B 47 04 32 E4 8B C8 83 C1  .E......G.2.....
    4580: 09 32 ED 80 E1 FE 83 F9 00 74 07 D1 E9 33 C0 50  .2.......t...3.P
    4590: E2 FD 8B C4 8B D8 89 46 BA 85 C0 74 41 83 C0 08  .......F...tA...
    45A0: 26 89 47 04 8A C2 32 E4 03 C0 8B 5E E0 03 D8 26  &.G...2....^...&
    45B0: 8B 45 02 03 07 8B 5E BA 26 89 07 8B 5E BA 26 8B  .E....^.&...^.&.
    45C0: 07 83 C0 06 26 89 47 02 8B 5E BA 8B 76 F6 26 89  ....&.G..^..v.&.
    45D0: 77 06 8B 5E BA 89 5E F6 C6 46 EA 00 EB 0A C6 46  w..^..^..F.....F
    45E0: EA 87 EB 04 C6 46 EA 83 8A 46 EA 32 E4 83 F8 10  .....F...F.2....
    45F0: 0F 8F 99 00 88 66 EA 8A 46 EA 32 E4 85 C0 0F 8F  .....f..F.2.....
    4600: 83 00 8C D0 8B 5E BA 8E C0 26 8B 5F 02 89 5E E0  .....^...&._..^.
    4610: 8B 5E BA 26 8B 5F 02 80 3F 5B 75 4A C6 46 EA 10  .^.&._..?[uJ.F..
    4620: 8B 5E BA 26 8B 5F 06 89 5E F6 8B 5E BA 26 8B 1F  .^.&._..^..^.&..
    4630: 8B 47 04 32 E4 8B C8 83 C1 09 32 ED 80 E1 FE 03  .G.2......2.....
    4640: E1 8B 5E F6 89 5E BA 85 DB 74 AC 26 8B 1F 8B 47  ..^..^...t.&...G
    4650: 04 C1 E8 08 32 E4 24 7F C1 E8 02 C1 E0 02 8B 5E  ....2.$........^
    4660: B8 26 29 07 EB 91 8D 46 B8 E8 AF FD 8A D0 8D 46  .&)....F.......F
    4670: B8 E8 2E 00 8A DA 32 FF C1 E3 02 8D 46 B8 FF 97  ......2.....F...
    4680: 02 96 E9 72 FF 83 7E F6 00 0F 85 C9 FE 80 7E EA  ...r..~.......~.
    4690: 10 74 05 8A 46 EA EB 02 32 C0 8D 66 F8 5F 5E E9  .t..F...2..f._^.
    46A0: 0B FE C3 53 51 8B D8 26 8A 4F 04 32 ED E8 8F E8  ...SQ..&.O.2....
    46B0: 59 5B C3 53 51 8B D8 26 8A 4F 04 32 ED E8 8A E8  Y[.SQ..&.O.2....
    46C0: 59 5B C3 53 8B D8 26 8A 47 04 32 E4 E6 80 5B C3  Y[.S..&.G.2...[.
    46D0: 53 51 8B D8 26 8A 4F 04 32 ED E8 BB D7 59 5B C3  SQ..&.O.2....Y[.
    46E0: 53 8B D8 66 50 66 52 66 51 66 26 8B 47 08 66 26  S..fPfRfQf&.G.f&
    46F0: 8B 57 10 66 26 8B 4F 04 66 F7 F1 66 26 89 47 0C  .W.f&.O.f..f&.G.
    4700: 66 26 89 57 10 66 59 66 5A 66 58 5B C3 53 8B D8  f&.W.fYfZfX[.S..
    4710: 66 50 66 52 66 51 66 26 8B 47 08 66 26 8B 4F 04  fPfRfQf&.G.f&.O.
    4720: 66 F7 E1 66 26 89 47 0C 66 26 89 57 10 66 59 66  f..f&.G.f&.W.fYf
    4730: 5A 66 58 5B C3 53 57 8B D8 26 8B 5F 14 E8 4E EB  ZfX[.SW..&._..N.
    4740: 8B D0 66 C1 E8 10 92 5F 5B C3 53 57 8B D8 26 8B  ..f...._[.SW..&.
    4750: 47 14 26 8B 57 16 8B D8 87 D3 66 C1 E3 10 8B DA  G.&.W.....f.....
    4760: C1 E3 02 E8 4C EB EB D8 53 52 57 8B D8 26 8B 47  ....L...SRW..&.G
    4770: 08 26 8B 57 0A 92 66 C1 E0 10 8B C2 26 8B 5F 14  .&.W..f.....&._.
    4780: E8 70 EA 5F 5A 5B C3 53 52 8B D8 26 8B 47 1C 26  .p._Z[.SR..&.G.&
    4790: 8B 57 1E 92 66 C1 E0 10 8B C2 26 8B 5F 26 8B 5F  .W..f.....&._&._
    47A0: 01 E8 4F EA 5A 5B C3 53 52 56 8B F0 26 8B 5C 26  ..O.Z[.SRV..&.\&
    47B0: 8B 5F 01 E8 D8 EA 8B D0 66 C1 E8 10 92 26 89 44  ._......f....&.D
    47C0: 1C 26 89 54 1E 5E 5A 5B C3 53 51 52 57 8B D8 26  .&.T.^Z[.SQRW..&
    47D0: 8B 47 08 26 8B 57 0A 92 66 C1 E0 10 8B C2 8B C8  .G.&.W..f.......
    47E0: 26 8B 47 14 26 8B 57 16 8B D8 87 D3 66 C1 E3 10  &.G.&.W.....f...
    47F0: 8B DA C1 E3 02 8B C1 E8 2C EA 5F 5A 59 5B C3 8B  ........,._ZY[..
    4800: D0 66 C1 E8 10 92 C3 00 1E 06 66 50 66 51 66 52  .f........fPfQfR
    4810: 66 53 66 55 66 56 66 57 0E 1F 0A C0 75 06 E8 37  fSfUfVfW....u..7
    4820: 01 E9 D8 00 3C 01 75 06 E8 67 01 E9 CE 00 3C 02  ....<.u..g....<.
    4830: 75 06 E8 9B 02 E9 C4 00 3C 03 75 0B E8 CF 03 8B  u.......<.u.....
    4840: EC 89 5E 0C E9 B5 00 3C 04 75 0B E8 DE 03 8B EC  ..^....<.u......
    4850: 89 5E 0C E9 A6 00 3C 05 75 0B E8 09 05 8B EC 89  .^....<.u.......
    4860: 56 10 E9 97 00 3C 06 75 11 E8 86 04 8B EC 89 5E  V....<.u.......^
    4870: 0C 89 4E 14 89 56 10 E9 82 00 3C 07 75 10 E8 78  ..N..V....<.u..x
    4880: 05 8B EC 88 7E 0D 89 4E 14 89 56 10 EB 6E 3C 08  ....~..N..V..n<.
    4890: 75 0A E8 BB 04 8B EC 88 7E 0D EB 60 3C 09 75 05  u.......~..`<.u.
    48A0: E8 B4 05 EB 57 3C 0A 75 10 E8 FC 05 8B EC 89 4E  ....W<.u.......N
    48B0: 14 89 7E 00 8C 46 1C EB 43 3C 0B 75 0B E8 F6 05  ..~..F..C<.u....
    48C0: 8B EC 66 89 4E 14 EB 34 3C 10 75 0A E8 F5 05 8B  ..f.N..4<.u.....
    48D0: EC 89 5E 0C EB 26 3C 11 75 0D E8 21 06 8B EC 89  ..^..&<.u..!....
    48E0: 5E 0C 89 4E 14 EB 15 3C 15 75 0F E8 4C 06 8B EC  ^..N...<.u..L...
    48F0: 89 5E 0C EB 07 B8 4F 01 EB 02 32 C0 8B EC 89 46  .^....O...2....F
    4900: 18 66 5F 66 5E 66 5D 66 5B 66 5A 66 59 66 58 07  .f_f^f]f[fZfYfX.
    4910: 1F C3 50 1E 2E 8E 1E D9 03 8C D8 A3 86 5B A3 96  ..P..........[..
    4920: 5B A3 A8 5B 2E 8E 1E D1 03 A3 AA 04 1F 58 CB 00  [..[.........X..
    4930: 30 31 2E 30 30 00 56 45 53 41 00 03 60 02 00 00  01.00.VESA..`...
    4940: 01 00 00 00 00 00 00 00 00 03 32 0F 75 01 00 00  ..........2.u...
    4950: 02 01 00 00 C8 48 00 00 B9 3F 00 8B DF 83 C7 04  .....H...?......
    4960: FC 66 33 C0 F3 66 AB 8B FB BE CE 48 B9 22 00 F3  .f3..f.....H."..
    4970: A4 06 1F 8C 4F 08 8C 47 10 8C 4F 18 8C 4F 1C 8C  ....O..G..O..O..
    4980: 4F 20 83 C7 22 89 7F 0E 0E 1F E8 B4 D3 B0 4F 32  O ..".........O2
    4990: E4 C3 56 51 57 B9 10 00 66 33 C0 F3 66 AB 5F 59  ..VQW...f3..f._Y
    49A0: 8C DB 06 1F C7 05 BB 00 C6 45 02 07 C7 45 04 40  .........E...E.@
    49B0: 00 C7 45 06 40 00 C6 45 1B 04 C6 45 18 01 C6 45  ..E.@..E...E...E
    49C0: 1A 01 C6 45 1E 01 66 C7 45 3E 00 84 D7 17 8E DB  ...E..f.E>......
    49D0: E8 AF BD 66 0B C0 0F 84 EE 00 06 1F 66 89 45 28  ...f........f.E(
    49E0: 8C C8 66 C1 E0 10 B8 5B 4D 66 89 45 0C 81 F9 FF  ..f....[Mf.E....
    49F0: 81 0F 84 CF 00 80 E5 03 B2 01 53 8E DB BE 80 1C  ..........S.....
    4A00: E8 60 D1 5B 06 1F 0F 84 BE 00 53 E8 DE D3 66 89  .`.[......S...f.
    4A10: 45 12 C7 45 16 08 10 8D 5C 0C E8 9F E8 66 89 45  E..E....\....f.E
    4A20: 1F 66 89 45 36 8D 5C 10 E8 91 E8 66 89 45 23 66  .f.E6.\....f.E#f
    4A30: 89 45 3A 8D 5C 08 E8 83 E8 0A C0 75 04 5B E9 87  .E:.\......u.[..
    4A40: 00 E8 A8 D3 66 C1 E8 10 3D 58 02 74 0D 3D 5E 01  ....f...=X.t.=^.
    4A50: 74 08 77 0A C6 45 17 08 EB 04 C6 45 17 0E E8 52  t.w..E.....E...R
    4A60: D3 80 F9 00 74 04 C6 45 1B 06 2E A1 D3 03 89 45  ....t..E.......E
    4A70: 08 8D 5C 04 E8 45 E8 66 8B C8 66 C1 E9 10 D3 E0  ..\..E.f..f.....
    4A80: 89 45 10 89 45 32 B0 08 D2 E0 88 45 19 8D 5C 14  .E..E2.....E..\.
    4A90: E8 29 E8 5B 3D 00 03 77 2F 53 8B D8 B8 00 03 33  .).[=..w/S.....3
    4AA0: D2 F7 F3 5B FE C8 88 45 1D 88 45 35 88 45 34 8E  ...[...E..E5.E4.
    4AB0: DB 57 53 BE 80 1C E8 20 BD 5B 5F 0B C9 75 05 06  .WS.... .[_..u..
    4AC0: 1F 83 25 FE 32 E4 EB 02 B4 03 B0 4F 8E DB 5E C3  ..%.2......O..^.
    4AD0: 81 FB FF 81 74 6A 0A FF 75 04 8B C3 EB 21 F6 C7  ....tj..u....!..
    4AE0: 08 75 63 8B CB B2 01 BE 20 1C E8 76 D0 74 57 E8  .uc..... ..v.tW.
    4AF0: D9 D2 0A C0 75 0E 66 C1 E8 10 80 E7 80 0A C7 E8  ....u.f.........
    4B00: 93 04 EB 3C E8 DB C0 74 05 E8 FD BD EB 00 E8 FD  ...<...t........
    4B10: C1 BE 20 1C E8 96 BC 74 2D E8 A5 00 E8 2C 00 66  .. ....t-....,.f
    4B20: BB 20 1C 00 1C E8 9A D2 BE 00 1C E8 9D D2 66 C1  . ............f.
    4B30: E8 10 8B D8 32 C0 F6 C7 80 74 02 B0 40 E8 D6 BC  ....2....t..@...
    4B40: B0 4F 32 E4 EB 04 B0 4F B4 03 C3 56 06 33 C0 8E  .O2....O...V.3..
    4B50: C0 BE 20 1C E8 95 D2 8B C8 66 C1 E8 10 8B D0 C1  .. ......f......
    4B60: E9 03 26 89 0E 4A 04 C1 EA 04 FE CA 26 88 16 84  ..&..J......&...
    4B70: 04 26 C6 06 51 04 00 26 C6 06 50 04 00 26 C6 06  .&..Q..&..P..&..
    4B80: 49 04 62 26 C7 06 4C 04 00 A0 26 C6 06 85 04 10  I.b&..L...&.....
    4B90: 26 C7 06 0C 01 57 65 8C C8 26 A3 0E 01 07 5E C3  &....We..&....^.
    4BA0: 01 0F 00 0A 00 00 00 00 00 40 05 0F FF 00 01 02  .........@......
    4BB0: 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 01 00 0F  ................
    4BC0: 00 FC BA C4 03 B8 00 01 EF B9 04 00 B4 01 BE 38  ...............8
    4BD0: 4B AC 86 E0 EF 8A E0 FE C4 E2 F6 B8 00 03 EF B9  K...............
    4BE0: 09 00 BA CE 03 32 E4 BE 3C 4B 8A C4 EE AC 42 EE  .....2..<K....B.
    4BF0: 4A FE C4 E2 F5 BA DA 03 EC B9 14 00 BA C0 03 32  J..............2
    4C00: E4 BE 45 4B 8A C4 EE AC EE FE C4 E2 F7 C3 BE 00  ..EK............
    4C10: 1C E8 B7 D1 66 C1 E8 10 8B D8 E8 87 D1 75 05 E8  ....f........u..
    4C20: 73 D1 75 04 B8 4F 00 C3 B8 4F 03 C3 83 E1 0F 0F  s.u..O...O......
    4C30: 84 BB 00 0A D2 75 0C B8 00 1C E8 1F 03 83 C3 11  .....u..........
    4C40: E9 A6 00 80 FA 01 75 33 8B FB BB C9 05 B9 08 00  ......u3........
    4C50: FC E8 36 E6 66 AB 43 E2 F8 66 C1 E7 10 66 C1 EF  ..6.f.C..f...f..
    4C60: 10 B9 00 01 BA 00 01 0E 1F E8 23 BE 06 1F B8 01  ..........#.....
    4C70: 1C B9 07 00 8B DF E8 E3 02 EB 6E 80 FA 02 75 6E  ..........n...un
    4C80: 8B F3 06 1F FC BB C9 05 B9 08 00 66 AD E8 55 E5  ...........f..U.
    4C90: 43 E2 F8 06 56 0E 1F BB D0 05 E8 ED E5 8A D0 80  C...V...........
    4CA0: E2 03 66 C1 E8 10 8B C8 BE 00 1C E8 B5 CE BB CE  ..f.............
    4CB0: 05 E8 D6 E5 8B C8 66 C1 E8 10 8B D0 B0 18 B7 01  ......f.........
    4CC0: E8 EC B7 5B 07 53 81 C3 00 04 B8 02 1C B9 07 00  ...[.S..........
    4CD0: E8 89 02 5E 8B FE 66 C1 E7 10 66 C1 EF 10 B9 00  ...^..f...f.....
    4CE0: 01 BA 00 01 0E 1F E8 F5 BD B0 4F 32 E4 C3 32 C0  ..........O2..2.
    4CF0: C3 00 E8 AF D0 74 53 BE 00 1C 80 FB 00 74 18 80  .....tS......t..
    4D00: FB 01 75 05 E8 ED D0 EB 1D 80 FB 02 75 10 8B C1  ..u.........u...
    4D10: E8 A0 D0 D3 E8 8B C8 E8 31 BD 74 2E EB 08 80 FB  ........1.t.....
    4D20: 03 75 24 E8 44 D0 E8 8A D0 8B D8 D3 E3 50 33 C0  .u$.D........P3.
    4D30: BA 00 03 3B DA 77 05 BA FF FF EB 04 F7 F3 8B D0  ...;.w..........
    4D40: 58 8B C8 B8 4F 00 C3 32 C0 C3 B0 4F B4 03 C3 00  X...O..2...O....
    4D50: 0A DB 75 07 8A EF E8 0B BF EB 05 E8 F0 BE 8A F8  ..u.............
    4D60: B0 4F 32 E4 C3 00 E8 3B D0 74 2C BE 00 1C E8 5A  .O2....;.t,....Z
    4D70: D0 66 C1 E8 10 F6 C4 40 75 1D 0A FF 75 05 E8 1E  .f.....@u...u...
    4D80: 00 EB 0F 80 FF 01 75 14 BB 13 00 E8 FC E4 D1 E8  ......u.........
    4D90: 8B D0 B0 4F 32 E4 C3 B0 4F B4 03 C3 32 C0 C3 52  ...O2...O...2..R
    4DA0: 53 66 50 81 E2 FF 02 D1 E2 8B C2 40 66 C1 E0 10  SfP........@f...
    4DB0: 8B C2 BB 13 00 E8 2D E4 BB 12 00 E8 27 E4 66 58  ......-.....'.fX
    4DC0: 5B 5A C3 9C 1E 06 66 50 66 51 66 52 66 53 66 55  [Z....fPfQfRfSfU
    4DD0: 66 56 66 57 0E 1F E8 27 E5 E8 8A FF E8 46 E5 8B  fVfW...'.....F..
    4DE0: EC 89 56 10 89 46 18 66 5F 66 5E 66 5D 66 5B 66  ..V..F.f_f^f]f[f
    4DF0: 5A 66 59 66 58 07 1F 9D CB E8 A8 CF 74 54 F6 C3  ZfYfX.......tT..
    4E00: 7F 75 38 53 BE 00 1C E8 EA CF F7 E2 66 C1 E2 10  .u8S........f...
    4E10: 8B D0 66 81 E1 FF FF 00 00 66 03 D1 E8 94 CF 80  ..f......f......
    4E20: E2 FC 66 D3 E2 66 81 E2 FF FF FF 02 8D 5C 18 66  ..f..f.......\.f
    4E30: 8B C2 E8 E7 E3 5B E8 FA BB EB 0F 80 FB 82 74 C3  .....[........t.
    4E40: 80 FB 01 75 0A E8 DF BB 32 FF B0 4F 32 E4 C3 32  ...u....2..O2..2
    4E50: C0 C3 B0 4F B4 03 C3 E8 4A CF 74 47 80 FF 20 74  ...O....J.tG.. t
    4E60: 08 66 C1 E7 10 66 C1 EF 10 81 F9 00 01 77 31 0A  .f...f.......w1.
    4E70: DB 74 05 80 FB 80 75 10 32 F6 E8 D1 BD 3C 06 74  .t....u.2....<.t
    4E80: 02 B6 01 E8 58 BC EB 13 80 FB 01 75 13 32 F6 E8  ....X......u.2..
    4E90: BC BD 3C 06 74 02 B6 01 E8 F4 BB B0 4F 32 E4 C3  ..<.t.......O2..
    4EA0: 32 C0 C3 B0 4F B4 03 C3 0E 07 BF 1E 93 2E 8B 0E  2...O...........
    4EB0: 1C 93 B8 4F 00 C3 0A DB 75 02 EB 03 32 C0 C3 B0  ...O....u...2...
    4EC0: 4F B4 03 C3 0A DB 75 06 B7 04 B3 10 EB 27 80 FB  O.....u......'..
    4ED0: 01 75 15 53 B1 01 0A FF 74 02 B1 00 E8 2C BD E8  .u.S....t....,..
    4EE0: 15 BE E8 FE BA 5B EB 0D 80 FB 02 75 0D E8 2D BD  .....[.....u..-.
    4EF0: 8A F8 C0 E7 02 B0 4F 32 E4 C3 B8 4F 03 C3 80 FB  ......O2...O....
    4F00: 01 75 09 33 C0 E8 93 BD 74 2B EB 24 80 FB 07 75  .u.3....t+.$...u
    4F10: 24 0A FF 75 0E B0 82 E8 95 B5 0A C9 74 12 B9 03  $..u........t...
    4F20: 03 EB 0D 0B C9 B1 00 74 02 B1 03 B0 82 E8 7F B5  .......t........
    4F30: B0 4F 32 E4 C3 B0 4F B4 03 C3 80 E3 01 0A DB 75  .O2...O........u
    4F40: 05 BB 02 01 EB 0C 33 C0 53 E8 AB BD E8 FA C4 5B  ......3.S......[
    4F50: 74 05 B0 4F 32 E4 C3 B0 4F B4 03 C3 80 FC 1D 72  t..O2...O......r
    4F60: 03 CD 42 C3 1E 06 66 50 66 51 66 52 66 53 66 55  ..B...fPfQfRfSfU
    4F70: 66 56 66 57 0E 1F 50 0F B6 C4 D1 E0 8B F0 58 2E  fVfW..P.......X.
    4F80: FF 94 3E 4F 66 5F 66 5E 66 5D 66 5B 66 5A 66 59  ..>Of_f^f]f[fZfY
    4F90: 66 58 07 1F C3 0E 1F 50 0F B6 C4 D1 E0 8B F0 58  fX.....P.......X
    4FA0: 2E FF 94 3E 4F C3 78 4F C2 89 DB 89 F8 89 6D 50  ...>O.xO......mP
    4FB0: FB 80 2D 81 A0 81 23 82 B1 83 B5 83 BE 86 8F 87  ..-...#.........
    4FC0: 12 88 79 88 14 8A 39 8A E2 8C 86 52 29 91 2C 4F  ..y...9....R).,O
    4FD0: 2C 4F 2C 4F 2C 4F 2C 4F 2C 4F F9 91 39 76 8D 77  ,O,O,O,O,O..9v.w
    4FE0: 2E 8E 1E D1 03 80 26 87 04 F3 50 8A E0 80 E4 7F  ......&...P.....
    4FF0: E8 C6 01 3B D3 75 02 58 C3 BA CC 03 EC B2 B4 B1  ...;.u.X........
    5000: 30 26 F6 47 09 01 74 0C B2 D4 B1 20 A8 01 75 49  0&.G..t.... ..uI
    5010: B5 09 EB 06 A8 01 74 41 B5 0B 53 E8 67 42 0A FF  ......tA..S.gB..
    5020: 5B 75 0B 80 26 88 04 F0 08 2E 88 04 EB 2B 58 80  [u..&........+X.
    5030: 0E 87 04 08 80 26 10 04 CF 08 0E 10 04 89 16 63  .....&.........c
    5040: 04 C7 06 85 04 08 00 C6 06 84 04 18 C7 06 0C 01  ................
    5050: 44 5D 8C 0E 0E 01 CD 42 C3 80 26 10 04 CF 08 0E  D].....B..&.....
    5060: 10 04 58 53 50 0E 1F 33 C9 8A C8 B2 08 BE 40 1C  ..XSP..3......@.
    5070: E8 F0 CA E8 6C BB 74 05 E8 8E B8 EB 00 E8 8E BC  ....l.t.........
    5080: BE 40 1C E8 27 B7 58 5B 0F 84 6C FF 2E 8E 1E D1  .@..'.X[..l.....
    5090: 03 0E 07 E8 4B 2A 0E 1F 53 66 BB 40 1C 00 1C E8  ....K*..Sf.@....
    50A0: 20 CD BE 00 1C B0 20 E8 6C B7 5B 2E 8E 1E D1 03   ..... .l.[.....
    50B0: 0E 07 E8 54 2F E8 24 00 E8 23 3E E8 D1 01 E8 8E  ...T/.$..#>.....
    50C0: 01 E8 A9 3F 0E 1F BE 00 1C B0 10 E8 48 B7 E8 2F  ...?........H../
    50D0: 2F E8 27 2F C3 8B EC C6 46 1B 00 C3 E8 2F 00 E8  /.'/....F..../..
    50E0: 0A 00 E8 BD 00 E8 52 00 E8 94 0B C3 53 83 C3 0A  ......R.....S...
    50F0: 8B 16 63 04 B9 19 00 B8 11 30 EF 32 C0 26 8A 27  ..c......0.2.&.'
    5100: EF 43 FE C0 E2 F7 5B 80 C2 06 32 C0 EE C3 53 BA  .C....[...2...S.
    5110: C4 03 83 C3 05 B9 04 00 B0 01 26 8A 27 3C 01 75  ..........&.'<.u
    5120: 03 80 CC 20 EF 43 FE C0 E2 F0 5B 26 8A 47 09 BA  ... .C....[&.G..
    5130: C2 03 EE B2 C4 B8 00 03 EF C3 8B F3 83 C6 23 BA  ..............#.
    5140: DA 03 26 F6 47 09 01 75 02 B2 BA F6 06 89 04 08  ..&.G..u........
    5150: 74 1D 83 C6 10 EC B9 04 00 B4 10 B2 C0 80 FC 11  t...............
    5160: 74 07 8A C4 EE 26 8A 04 EE 46 FE C4 E2 EF C3 53  t....&...F.....S
    5170: EC 8B DE B9 14 00 32 E4 B2 C0 8A C4 EE FE C4 26  ......2........&
    5180: 8A 07 EE 43 E2 F4 8A C4 EE 32 C0 EE 1E 06 E8 81  ...C.....2......
    5190: 2E 0B ED 74 09 1F 1E B9 10 00 F3 A4 46 A4 07 1F  ...t........F...
    51A0: 5B C3 53 83 C3 37 B9 09 00 32 C0 BA CE 03 26 8A  [.S..7...2....&.
    51B0: 27 EF 43 FE C0 E2 F7 5B C3 BB 44 54 0E 07 8B D3  '.C....[..DT....
    51C0: 0A E4 7D 01 C3 E8 01 00 C3 33 F6 80 FC 03 7F 3C  ..}......3.....<
    51D0: 4A F6 06 89 04 10 75 20 A0 88 04 24 0F 3C 02 7E  J.....u ...$.<.~
    51E0: 24 3C 08 74 20 3C 06 74 1C 3C 07 74 18 B0 40 F6  $<.t <.t.<.t..@.
    51F0: E4 03 D8 81 C3 C0 04 C3 B0 40 D0 EC F6 E4 03 D8  .........@......
    5200: 81 C3 C0 05 C3 B0 40 F6 E4 03 D8 C3 80 FC 07 75  ......@........u
    5210: 11 F6 06 89 04 10 75 05 81 C3 C0 01 C3 81 C3 40  ......u........@
    5220: 06 C3 BF C6 51 BE E7 51 33 C9 E8 4E 00 C3 04 00  ....Q..Q3..N....
    5230: 01 05 40 01 06 80 01 0D 40 03 0E 80 03 0F 40 04  ..@.....@.....@.
    5240: 10 80 04 11 80 06 12 C0 06 13 00 07 62 00 02 53  ............b..S
    5250: 8A 1E 49 04 80 FB 07 7F 10 32 FF D1 E3 2E 8B 87  ..I......2......
    5260: 03 52 A2 65 04 88 26 66 04 5B C3 2C 30 28 30 2D  .R.e..&f.[.,0(0-
    5270: 30 29 30 2A 30 2E 30 1E 3F 29 30 2E 38 25 75 07  0)0*0.0.?)0.8%u.
    5280: 2E 03 5D 01 33 F6 C3 83 C7 03 3B FE 75 ED C3 1E  ..].3.....;.u...
    5290: 06 2E 8E 1E D1 03 F6 06 87 04 80 75 49 83 3E 4C  ...........uI.>L
    52A0: 04 00 74 42 A0 49 04 B9 00 20 2E 8B 3E D7 03 26  ..tB.I... ..>..&
    52B0: F6 47 33 01 75 0E 26 F6 47 09 01 75 1B 2E 8B 3E  .G3.u.&.G..u...>
    52C0: D5 03 EB 14 3C 06 7E 0B 2E 8B 3E D3 03 26 8A 67  ....<.~...>..&.g
    52D0: 37 B5 40 66 33 C0 EB 06 66 B8 20 07 20 07 8E C7  7.@f3...f. . ...
    52E0: 66 33 FF F3 66 AB 80 26 87 04 7F 07 1F C3 2E 8E  f3..f..&........
    52F0: 1E D1 03 80 FB 10 75 03 E9 7A 01 80 FB 20 75 03  ......u..z... u.
    5300: E9 9B 01 80 FB 32 75 1F BA CC 03 0A C0 75 09 EC  .....2u......u..
    5310: 0C 02 B2 C2 EE E9 F3 00 FE C8 0F 85 F3 00 EC 24  ...............$
    5320: FD B2 C2 EE E9 E4 00 80 FB 35 75 28 3C 80 75 08  .........5u(<.u.
    5330: 80 0E 89 04 40 E9 D3 00 F6 06 89 04 40 0F 84 D0  ....@.......@...
    5340: 00 0A C0 0F 84 CA 00 FE C8 75 06 E8 D8 08 E9 BA  .........u......
    5350: 00 E9 BD 00 80 FB 30 74 03 E9 96 00 50 E8 25 3F  ......0t....P.%?
    5360: 8A EF BA CC 03 EC 8A C8 58 0A C0 75 30 B7 08 F6  ........X..u0...
    5370: C1 01 75 12 0A ED 75 0B A0 10 04 24 30 3C 30 75  ..u...u....$0<0u
    5380: 10 B7 02 E9 8B 00 A0 10 04 24 30 3C 30 75 02 B7  .........$0<0u..
    5390: 02 80 26 89 04 6F 80 0E 89 04 80 EB 36 3C 01 75  ..&..o......6<.u
    53A0: 41 80 26 89 04 6F B7 09 F6 C1 01 75 15 B7 0B A0  A.&..o.....u....
    53B0: 10 04 24 30 3C 30 74 1B B7 09 0A ED 74 15 B7 05  ..$0<0t.....t...
    53C0: EB 11 A0 10 04 24 30 3C 30 75 08 B7 0B 0A ED 74  .....$0<0u.....t
    53D0: 02 B7 03 8A 1E 88 04 80 E3 F0 0A DF 88 1E 88 04  ................
    53E0: EB 29 3C 02 75 2B 80 26 89 04 6F 80 0E 89 04 10  .)<.u+.&..o.....
    53F0: EB B4 80 FB 31 75 1B 0A C0 74 0B 3C 01 75 0C 80  ....1u...t.<.u..
    5400: 0E 89 04 08 EB 05 80 26 89 04 F7 8B EC C6 46 1A  .......&......F.
    5410: 12 C3 80 FB 33 75 16 3C 00 74 0B 3C 01 75 EC 80  ....3u.<.t.<.u..
    5420: 26 89 04 FD EB E5 80 0E 89 04 02 EB DE 80 FB 34  &..............4
    5430: 75 17 3C 00 75 07 80 26 87 04 FE EB CE 3C 01 75  u.<.u..&.....<.u
    5440: 07 80 0E 87 04 01 EB C3 C3 80 FB 36 75 26 BB 20  ...........6u&. 
    5450: FF 3C 01 74 09 BB 00 DF 3C 00 74 02 EB AD E8 02  .<.t....<.t.....
    5460: 00 EB A8 9C FA BA C4 03 B0 01 EE 42 EC 22 C7 0A  ...........B."..
    5470: C3 EE 9D C3 C3 B3 03 B7 00 BA CC 03 EC A8 01 75  ...............u
    5480: 02 B7 01 A0 88 04 8A E0 B1 04 D2 EC 25 0F 0F 8B  ............%...
    5490: C8 8B EC 89 5E 0E 89 4E 16 C6 46 1A 12 C3 9C FA  ....^..N..F.....
    54A0: C7 06 14 00 26 7B 8C 0E 16 00 9D C3 28 18 08 00  ....&{......(...
    54B0: 08 09 03 00 02 63 2D 27 28 90 2B A0 BF 1F 00 C7  .....c-'(.+.....
    54C0: 06 07 00 00 00 00 9C 8E 8F 14 1F 96 B9 A3 FF 00  ................
    54D0: 01 02 03 04 05 06 07 10 11 12 13 14 15 16 17 08  ................
    54E0: 00 0F 00 00 00 00 00 00 10 0E 00 FF 28 18 08 00  ............(...
    54F0: 08 09 03 00 02 63 2D 27 28 90 2B A0 BF 1F 00 C7  .....c-'(.+.....
    5500: 06 07 00 00 00 00 9C 8E 8F 14 1F 96 B9 A3 FF 00  ................
    5510: 01 02 03 04 05 06 07 10 11 12 13 14 15 16 17 08  ................
    5520: 00 0F 00 00 00 00 00 00 10 0E 00 FF 50 18 08 00  ............P...
    5530: 10 01 03 00 02 63 5F 4F 50 82 55 81 BF 1F 00 C7  .....c_OP.U.....
    5540: 06 07 00 00 00 00 9C 8E 8F 28 1F 96 B9 A3 FF 00  .........(......
    5550: 01 02 03 04 05 06 07 10 11 12 13 14 15 16 17 08  ................
    5560: 00 0F 00 00 00 00 00 00 10 0E 00 FF 50 18 08 00  ............P...
    5570: 10 01 03 00 02 63 5F 4F 50 82 55 81 BF 1F 00 C7  .....c_OP.U.....
    5580: 06 07 00 00 00 00 9C 8E 8F 28 1F 96 B9 A3 FF 00  .........(......
    5590: 01 02 03 04 05 06 07 10 11 12 13 14 15 16 17 08  ................
    55A0: 00 0F 00 00 00 00 00 00 10 0E 00 FF 28 18 08 00  ............(...
    55B0: 40 09 03 00 02 63 2D 27 28 90 2B 80 BF 1F 00 C1  @....c-'(.+.....
    55C0: 00 00 00 00 00 00 9C 8E 8F 14 00 96 B9 A2 FF 00  ................
    55D0: 13 15 17 02 04 06 07 10 11 12 13 14 15 16 17 01  ................
    55E0: 00 03 00 00 00 00 00 00 30 0F 00 FF 28 18 08 00  ........0...(...
    55F0: 40 09 03 00 02 63 2D 27 28 90 2B 80 BF 1F 00 C1  @....c-'(.+.....
    5600: 00 00 00 00 00 00 9C 8E 8F 14 00 96 B9 A2 FF 00  ................
    5610: 13 15 17 02 04 06 07 10 11 12 13 14 15 16 17 01  ................
    5620: 00 03 00 00 00 00 00 00 30 0F 00 FF 50 18 08 00  ........0...P...
    5630: 40 01 01 00 06 63 5F 4F 50 82 54 80 BF 1F 00 C1  @....c_OP.T.....
    5640: 00 00 00 00 00 00 9C 8E 8F 28 00 96 B9 C2 FF 00  .........(......
    5650: 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 01  ................
    5660: 00 01 00 00 00 00 00 00 00 0D 00 FF 50 18 0E 00  ............P...
    5670: 10 00 03 00 03 A6 5F 4F 50 82 55 81 BF 1F 00 4D  ......_OP.U....M
    5680: 0B 0C 00 00 00 00 83 85 5D 28 0D 63 BA A3 FF 00  ........](.c....
    5690: 08 08 08 08 08 08 08 10 18 18 18 18 18 18 18 0E  ................
    56A0: 00 0F 08 00 00 00 00 00 10 0A 00 FF 50 1D 10 00  ............P...
    56B0: A0 01 0F 00 0A E3 5F 4F 50 82 54 80 0B 3E 00 40  ......_OP.T..>.@
    56C0: 00 00 00 00 00 00 EA 8C DF 50 00 E7 04 E3 FF 00  .........P......
    56D0: 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 01  ................
    56E0: 00 0F 00 10 00 00 00 00 40 05 0F FF 00 05 11 1C  ........@.......
    56F0: 08 0B 14 28 0E 18 2D 32 20 24 38 3F 00 05 08 0B  ...(..-2 $8?....
    5700: 0E 11 14 18 1C 20 24 28 2D 32 38 3F 07 0C 10 15  ..... $(-28?....
    5710: 1A 18 16 15 13 1C 25 2F 38 33 2E 2A 25 27 29 2A  ......%/83.*%')*
    5720: 2C 23 19 10 23 25 27 2A 2C 2B 2A 29 29 2D 32 37  ,#..#%'*,+*))-27
    5730: 3B 39 37 34 32 33 34 35 35 31 2C 27 2F 30 32 33  ;974234551,'/023
    5740: 34 34 33 33 32 35 38 3A 3D 3C 3A 39 38 38 39 39  4433258:=<:98899
    5750: 3A 37 34 31 03 05 07 09 0B 0B 0A 09 08 0D 11 15  :741............
    5760: 19 17 15 13 11 11 12 13 14 0F 0B 07 10 10 12 13  ................
    5770: 14 13 13 13 12 14 16 18 1A 19 18 17 16 17 17 17  ................
    5780: 18 15 14 11 15 15 16 17 17 17 17 17 16 18 19 1A  ................
    5790: 1B 1B 1A 19 19 19 19 19 1A 18 17 16 02 03 04 05  ................
    57A0: 07 06 06 05 05 07 0A 0C 0E 0D 0C 0B 09 0A 0A 0B  ................
    57B0: 0B 09 06 04 09 09 0A 0B 0B 0B 0B 0B 0A 0C 0D 0E  ................
    57C0: 0F 0F 0E 0D 0D 0D 0D 0D 0E 0C 0B 0A 0C 0C 0C 0D  ................
    57D0: 0D 0D 0D 0D 0C 0D 0E 0F 0F 0F 0F 0E 0E 0E 0E 0E  ................
    57E0: 0E 0E 0D 0C 00 00 00 00 00 00 00 00 28 18 08 00  ............(...
    57F0: 20 09 0F 00 06 63 2D 27 28 90 2B 80 BF 1F 00 C0   ....c-'(.+.....
    5800: 00 00 00 00 00 00 9C 8E 8F 14 00 96 B9 E3 FF 00  ................
    5810: 01 02 03 04 05 06 07 10 11 12 13 14 15 16 17 01  ................
    5820: 00 0F 00 00 00 00 00 00 00 05 0F FF 50 18 08 00  ............P...
    5830: 40 01 0F 00 06 63 5F 4F 50 82 54 80 BF 1F 00 C0  @....c_OP.T.....
    5840: 00 00 00 00 00 00 9C 8E 8F 28 00 96 B9 E3 FF 00  .........(......
    5850: 01 02 03 04 05 06 07 10 11 12 13 14 15 16 17 01  ................
    5860: 00 0F 00 00 00 00 00 00 00 05 0F FF 00 05 11 1C  ................
    5870: 08 0B 25 28 02 07 1B 20 0F 14 28 2C 0C 11 25 2A  ..%(... ..(,..%*
    5880: 14 1E 32 36 0F 13 27 2C 1B 20 34 39 06 0B 1F 24  ..26..',. 49...$
    5890: 13 18 2C 30 09 0D 21 26 15 1A 2E 33 13 17 2B 30  ..,0..!&...3..+0
    58A0: 1F 24 38 3D 0E 18 2D 32 20 24 38 3F 00 05 11 1C  .$8=..-2 $8?....
    58B0: 08 0B 14 18 00 05 11 1C 08 0B 14 18 0E 18 2D 32  ..............-2
    58C0: 20 24 38 3F 0E 18 2D 32 20 24 38 3F 00 05 11 1C   $8?..-2 $8?....
    58D0: 08 0B 14 18 00 05 11 1C 08 0B 14 18 0E 18 2D 32  ..............-2
    58E0: 20 24 38 3F 0E 18 2D 32 20 24 38 3F 50 18 0E 00   $8?..-2 $8?P...
    58F0: 80 01 0F 00 06 A2 5F 4F 50 82 54 80 BF 1F 00 40  ......_OP.T....@
    5900: 00 00 00 00 00 00 83 85 5D 28 0F 63 BA E3 FF 00  ........](.c....
    5910: 08 00 00 18 18 00 00 00 08 00 00 00 18 00 00 0B  ................
    5920: 00 05 00 00 00 00 00 00 00 05 05 FF 50 18 0E 00  ............P...
    5930: 80 01 0F 00 06 A3 5F 4F 50 82 54 80 BF 1F 00 40  ......_OP.T....@
    5940: 00 00 00 00 00 00 83 85 5D 28 0F 63 BA E3 FF 00  ........](.c....
    5950: 01 02 03 04 05 14 07 38 39 3A 3B 3C 3D 3E 3F 01  .......89:;<=>?.
    5960: 00 0F 00 00 00 00 00 00 00 05 0F FF 28 18 0E 00  ............(...
    5970: 08 09 03 00 02 A3 2D 27 28 90 2B A0 BF 1F 00 4D  ......-'(.+....M
    5980: 0B 0C 00 00 00 00 83 85 5D 14 1F 63 BA A3 FF 00  ........]..c....
    5990: 01 02 03 04 05 14 07 38 39 3A 3B 3C 3D 3E 3F 08  .......89:;<=>?.
    59A0: 00 0F 00 00 00 00 00 00 10 0E 00 FF 28 18 0E 00  ............(...
    59B0: 08 09 03 00 02 A3 2D 27 28 90 2B A0 BF 1F 00 4D  ......-'(.+....M
    59C0: 0B 0C 00 00 00 00 83 85 5D 14 1F 63 BA A3 FF 00  ........]..c....
    59D0: 01 02 03 04 05 14 07 38 39 3A 3B 3C 3D 3E 3F 08  .......89:;<=>?.
    59E0: 00 0F 00 00 00 00 00 00 10 0E 00 FF 50 18 0E 00  ............P...
    59F0: 10 01 03 00 02 A3 5F 4F 50 82 55 81 BF 1F 00 4D  ......_OP.U....M
    5A00: 0B 0C 00 00 00 00 83 85 5D 28 1F 63 BA A3 FF 00  ........](.c....
    5A10: 01 02 03 04 05 14 07 38 39 3A 3B 3C 3D 3E 3F 08  .......89:;<=>?.
    5A20: 00 0F 00 00 00 00 00 00 10 0E 00 FF 50 18 0E 00  ............P...
    5A30: 10 01 03 00 02 A3 5F 4F 50 82 55 81 BF 1F 00 4D  ......_OP.U....M
    5A40: 0B 0C 00 00 00 00 83 85 5D 28 1F 63 BA A3 FF 00  ........](.c....
    5A50: 01 02 03 04 05 14 07 38 39 3A 3B 3C 3D 3E 3F 08  .......89:;<=>?.
    5A60: 00 0F 00 00 00 00 00 00 10 0E 00 FF 28 18 10 00  ............(...
    5A70: 08 08 03 00 02 67 2D 27 28 90 2B A0 BF 1F 00 4F  .....g-'(.+....O
    5A80: 0D 0E 00 00 00 00 9C 8E 8F 14 1F 96 B9 A3 FF 00  ................
    5A90: 01 02 03 04 05 14 07 38 39 3A 3B 3C 3D 3E 3F 0C  .......89:;<=>?.
    5AA0: 00 0F 08 00 00 00 00 00 10 0E 00 FF 50 18 10 00  ............P...
    5AB0: 10 00 03 00 02 67 5F 4F 50 82 55 81 BF 1F 00 4F  .....g_OP.U....O
    5AC0: 0D 0E 00 00 00 00 9C 8E 8F 28 1F 96 B9 A3 FF 00  .........(......
    5AD0: 01 02 03 04 05 14 07 38 39 3A 3B 3C 3D 3E 3F 0C  .......89:;<=>?.
    5AE0: 00 0F 08 00 00 00 00 00 10 0E 00 FF 50 18 10 00  ............P...
    5AF0: 10 00 03 00 02 66 5F 4F 50 82 55 81 BF 1F 00 4F  .....f_OP.U....O
    5B00: 0D 0E 00 00 00 00 9C 8E 8F 28 0F 96 B9 A3 FF 00  .........(......
    5B10: 08 08 08 08 08 08 08 10 18 18 18 18 18 18 18 0E  ................
    5B20: 00 0F 08 00 00 00 00 00 10 0A 00 FF 50 1D 10 00  ............P...
    5B30: A0 01 0F 00 06 E3 5F 4F 50 82 54 80 0B 3E 00 40  ......_OP.T..>.@
    5B40: 00 00 00 00 00 00 EA 8C DF 28 00 E7 04 C3 FF 00  .........(......
    5B50: 3F 3F 3F 3F 3F 3F 3F 3F 3F 3F 3F 3F 3F 3F 3F 01  ???????????????.
    5B60: 00 0F 00 00 00 00 00 00 00 05 01 FF 50 1D 10 00  ............P...
    5B70: A0 01 0F 00 06 E3 5F 4F 50 82 54 80 0B 3E 00 40  ......_OP.T..>.@
    5B80: 00 00 00 00 00 00 EA 8C DF 28 00 E7 04 E3 FF 00  .........(......
    5B90: 01 02 03 04 05 14 07 38 39 3A 3B 3C 3D 3E 3F 01  .......89:;<=>?.
    5BA0: 00 0F 00 00 00 00 00 00 00 05 0F FF 28 18 08 00  ............(...
    5BB0: 20 01 0F 00 0E 63 5F 4F 50 82 54 80 BF 1F 00 41   ....c_OP.T....A
    5BC0: 00 00 00 00 00 00 9C 8E 8F 28 40 96 B9 A3 FF 00  .........(@.....
    5BD0: 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 41  ...............A
    5BE0: 00 0F 00 00 00 00 00 00 40 05 0F FF 44 54 00 C0  ........@...DT..
    5BF0: 00 00 00 00 00 00 00 00 00 00 00 00 A4 5B 00 C0  .............[..
    5C00: 00 00 00 00 00 00 00 00 00 00 00 00 1A 00 F7 92  ................
    5C10: 00 C0 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5C20: 00 00 00 00 00 00 1E E8 10 00 2E 8E 1E D1 03 E8  ................
    5C30: B3 36 E8 8A 36 E8 68 1A 1F C3 2E 8E 1E D1 03 C7  .6..6.h.........
    5C40: 06 87 04 60 F9 C6 06 8A 04 0B A0 89 04 0C 11 24  ...`...........$
    5C50: 17 A2 89 04 B4 01 E8 65 1E A0 89 04 80 26 10 04  .......e.....&..
    5C60: CF 80 0E 10 04 20 C7 06 63 04 D4 03 B8 03 00 E8  ..... ..c.......
    5C70: 23 F3 C3 1E 2E 8E 1E D1 03 0E 07 EB 00 1F C3 F6  #...............
    5C80: 06 89 04 08 74 01 C3 53 BA C8 03 EC B0 FF B2 C6  ....t..S........
    5C90: EE B2 C8 80 3E 63 04 B4 75 2F BE F8 5C B9 40 00  ....>c..u/..\.@.
    5CA0: 33 DB 9C FA 8A C3 EE 8B FB C1 EF 03 83 E7 03 03  3...............
    5CB0: FE 2E 8A 05 42 EE 2E 8A 45 04 EE 2E 8A 45 08 EE  ....B...E....E..
    5CC0: FE C3 4A E2 DF 9D E9 85 00 26 8A 47 2B F6 06 89  ..J......&.G+...
    5CD0: 04 06 74 31 B9 F8 00 BF 84 56 3C 08 74 11 B9 40  ..t1.....V<.t..@
    5CE0: 00 BF 04 58 3C 38 74 07 3C 3F 74 03 BF 44 58 33  ...X<8t.<?t..DX3
    5CF0: DB 9C FA 8A C3 EE 2E 8A 01 42 EE EE EE FE C3 4A  .........B.....J
    5D00: E2 F1 9D EB 49 3C 08 74 25 3C 38 74 2E 3C 3F 74  ....I<.t%<8t.<?t
    5D10: 2A B9 08 00 33 DB 51 E8 DE D0 B9 08 00 F7 C3 10  *...3.Q.........
    5D20: 00 74 03 83 C7 18 E8 67 00 59 E2 EA EB 20 E8 C7  .t.....g.Y... ..
    5D30: D0 B9 10 00 33 DB E8 57 00 EB 13 B9 40 00 33 DB  ....3..W....@.3.
    5D40: 51 E8 28 00 8A C3 E8 7A 2F FE C3 59 E2 F2 5B C3  Q.(....z/..Y..[.
    5D50: 00 2A 00 2A 00 2A 00 2A 15 3F 15 3F 15 3F 15 3F  .*.*.*.*.?.?.?.?
    5D60: 00 2A 00 3F 00 2A 00 3F 00 2A 00 3F 8B FB C1 EF  .*.?.*.?.*.?....
    5D70: 02 83 E7 0F 2E 8A B5 E8 5C 8B FB D1 EF 83 E7 0F  ........\.......
    5D80: 2E 8A AD E8 5C 8B FB 83 E7 0F 2E 8A 8D E8 5C C3  ....\.........\.
    5D90: 9C 8A C3 FA EE 2E 8A 05 42 EE 47 2E 8A 05 EE 47  ........B.G....G
    5DA0: 2E 8A 05 EE 47 FE C3 4A E2 E7 9D C3 00 00 00 00  ....G..J........
    5DB0: 00 00 00 00 7E 81 A5 81 BD 99 81 7E 7C FE D6 BA  ....~......~|...
    5DC0: C6 FE 7C 00 C6 EE FE FE 7C 38 10 00 10 38 7C FE  ..|.....|8...8|.
    5DD0: 7C 38 10 00 10 38 10 EE EE 10 38 00 38 7C FE FE  |8...8....8.8|..
    5DE0: 6C 10 38 00 00 18 3C 7E 3C 18 00 00 FF E7 C3 81  l.8...<~<.......
    5DF0: C3 E7 FF FF 00 18 3C 66 66 3C 18 00 FF E7 C3 99  ......<ff<......
    5E00: 99 C3 E7 FF 1E 0E 1E 36 78 CC CC 78 7E C3 C3 7E  .......6x..x~..~
    5E10: 18 7E 18 18 1E 1A 1E 18 18 70 F0 60 3E 3E 36 36  .~.......p.`>>66
    5E20: F6 66 1E 0C DB 3C 66 E7 66 3C DB 00 80 C0 F0 F8  .f...<f.f<......
    5E30: F0 C0 80 00 02 06 1E 3E 1E 06 02 00 18 3C 7E 18  .......>.....<~.
    5E40: 7E 3C 18 00 66 66 66 66 66 00 66 00 7F DB 7B 3B  ~<..fffff.f...{;
    5E50: 1B 1B 1B 00 3C 66 38 6C 6C 38 CC 78 00 00 00 00  ....<f8ll8.x....
    5E60: FE FE FE 00 18 3C 7E 18 7E 3C 18 7E 18 3C 7E 18  .....<~.~<.~.<~.
    5E70: 18 18 18 00 18 18 18 18 7E 3C 18 00 00 18 1C FE  ........~<......
    5E80: 1C 18 00 00 00 30 70 FE 70 30 00 00 00 00 C0 C0  .....0p.p0......
    5E90: C0 FE 00 00 00 24 66 FF 66 24 00 00 00 10 38 7C  .....$f.f$....8|
    5EA0: 7C FE 00 00 00 FE 7C 7C 38 10 00 00 00 00 00 00  |.....||8.......
    5EB0: 00 00 00 00 18 3C 3C 18 18 00 18 00 6C 6C 6C 00  .....<<.....lll.
    5EC0: 00 00 00 00 6C 6C FE 6C FE 6C 6C 00 18 7E C0 7C  ....ll.l.ll..~.|
    5ED0: 06 FC 18 00 00 C6 0C 18 30 60 C6 00 38 6C 38 76  ........0`..8l8v
    5EE0: CC CC 76 00 18 18 30 00 00 00 00 00 18 30 60 60  ..v...0......0``
    5EF0: 60 30 18 00 60 30 18 18 18 30 60 00 00 EE 7C FE  `0..`0...0`...|.
    5F00: 7C EE 00 00 00 18 18 7E 18 18 00 00 00 00 00 00  |......~........
    5F10: 18 18 30 00 00 00 00 FE 00 00 00 00 00 00 00 00  ..0.............
    5F20: 00 38 38 00 06 0C 18 30 60 C0 80 00 7C C6 CE DE  .88....0`...|...
    5F30: F6 E6 7C 00 18 78 18 18 18 18 7E 00 7C C6 0C 18  ..|..x....~.|...
    5F40: 30 66 FE 00 7C C6 06 3C 06 C6 7C 00 0C 1C 3C 6C  0f..|..<..|...<l
    5F50: FE 0C 0C 00 FE C0 FC 06 06 C6 7C 00 7C C6 C0 FC  ..........|.|...
    5F60: C6 C6 7C 00 FE C6 06 0C 18 18 18 00 7C C6 C6 7C  ..|.........|..|
    5F70: C6 C6 7C 00 7C C6 C6 7E 06 C6 7C 00 00 1C 1C 00  ..|.|..~..|.....
    5F80: 00 1C 1C 00 00 18 18 00 00 18 18 30 0C 18 30 60  ...........0..0`
    5F90: 30 18 0C 00 00 00 FE 00 00 FE 00 00 60 30 18 0C  0...........`0..
    5FA0: 18 30 60 00 7C C6 06 0C 18 00 18 00 7C C6 C6 DE  .0`.|.......|...
    5FB0: DC C0 7E 00 38 6C C6 C6 FE C6 C6 00 FC 66 66 7C  ..~.8l.......ff|
    5FC0: 66 66 FC 00 3C 66 C0 C0 C0 66 3C 00 F8 6C 66 66  ff..<f...f<..lff
    5FD0: 66 6C F8 00 FE C2 C0 F8 C0 C2 FE 00 FE 62 60 7C  fl...........b`|
    5FE0: 60 60 F0 00 7C C6 C0 C0 DE C6 7C 00 C6 C6 C6 FE  ``..|.....|.....
    5FF0: C6 C6 C6 00 3C 18 18 18 18 18 3C 00 3C 18 18 18  ....<.....<.<...
    6000: D8 D8 70 00 C6 CC D8 F0 D8 CC C6 00 F0 60 60 60  ..p..........```
    6010: 60 62 FE 00 C6 EE FE D6 D6 C6 C6 00 C6 E6 E6 F6  `b..............
    6020: DE CE C6 00 7C C6 C6 C6 C6 C6 7C 00 FC 66 66 7C  ....|.....|..ff|
    6030: 60 60 F0 00 7C C6 C6 C6 C6 D6 7C 06 FC C6 C6 FC  ``..|.....|.....
    6040: D8 CC C6 00 7C C6 C0 7C 06 C6 7C 00 7E 5A 18 18  ....|..|..|.~Z..
    6050: 18 18 3C 00 C6 C6 C6 C6 C6 C6 7C 00 C6 C6 C6 C6  ..<.......|.....
    6060: 6C 38 10 00 C6 C6 D6 D6 FE EE C6 00 C6 6C 38 38  l8...........l88
    6070: 38 6C C6 00 66 66 66 3C 18 18 3C 00 FE 86 0C 18  8l..fff<..<.....
    6080: 30 62 FE 00 7C 60 60 60 60 60 7C 00 C0 60 30 18  0b..|`````|..`0.
    6090: 0C 06 02 00 7C 0C 0C 0C 0C 0C 7C 00 10 38 6C C6  ....|.....|..8l.
    60A0: 00 00 00 00 00 00 00 00 00 00 00 FF 30 30 18 00  ............00..
    60B0: 00 00 00 00 00 00 78 0C 7C CC 7E 00 E0 60 7C 66  ......x.|.~..`|f
    60C0: 66 66 FC 00 00 00 7C C6 C0 C6 7C 00 1C 0C 7C CC  ff....|...|...|.
    60D0: CC CC 7E 00 00 00 7C C6 FE C0 7C 00 1C 36 30 FC  ..~...|...|..60.
    60E0: 30 30 78 00 00 00 76 CE C6 7E 06 7C E0 60 7C 66  00x...v..~.|.`|f
    60F0: 66 66 E6 00 18 00 38 18 18 18 3C 00 0C 00 1C 0C  ff....8...<.....
    6100: 0C 0C CC 78 E0 60 66 6C 78 6C E6 00 18 18 18 18  ...x.`flxl......
    6110: 18 18 1C 00 00 00 6C FE D6 D6 C6 00 00 00 DC 66  ......l........f
    6120: 66 66 66 00 00 00 7C C6 C6 C6 7C 00 00 00 DC 66  fff...|...|....f
    6130: 66 7C 60 F0 00 00 76 CC CC 7C 0C 1E 00 00 DC 66  f|`...v..|.....f
    6140: 60 60 F0 00 00 00 7C C0 7C 06 7C 00 30 30 FC 30  ``....|.|.|.00.0
    6150: 30 36 1C 00 00 00 CC CC CC CC 76 00 00 00 C6 C6  06........v.....
    6160: 6C 38 10 00 00 00 C6 C6 D6 FE 6C 00 00 00 C6 6C  l8........l....l
    6170: 38 6C C6 00 00 00 C6 C6 CE 76 06 7C 00 00 FC 98  8l.......v.|....
    6180: 30 64 FC 00 0E 18 18 70 18 18 0E 00 18 18 18 00  0d.....p........
    6190: 18 18 18 00 70 18 18 0E 18 18 70 00 76 DC 00 00  ....p.....p.v...
    61A0: 00 00 00 00 00 10 38 38 6C 6C FE 00 3C 66 C0 66  ......88ll..<f.f
    61B0: 3C 18 CC 78 00 C6 00 C6 C6 CE 76 00 0E 00 7C C6  <..x......v...|.
    61C0: FE C0 7C 00 7C C6 78 0C 7C CC 7E 00 C6 00 78 0C  ..|.|.x.|.~...x.
    61D0: 7C CC 7E 00 E0 00 78 0C 7C CC 7E 00 38 38 78 0C  |.~...x.|.~.88x.
    61E0: 7C CC 7E 00 00 00 7C C0 7C 18 6C 38 7C C6 7C C6  |.~...|.|.l8|.|.
    61F0: FE C0 7C 00 C6 00 7C C6 FE C0 7C 00 E0 00 7C C6  ..|...|...|...|.
    6200: FE C0 7C 00 66 00 38 18 18 18 3C 00 7C C6 38 18  ..|.f.8...<.|.8.
    6210: 18 18 3C 00 00 00 38 18 18 18 3C 00 C6 38 6C C6  ..<...8...<..8l.
    6220: FE C6 C6 00 38 38 00 7C C6 FE C6 00 0E 00 FE C0  ....88.|........
    6230: F8 C0 FE 00 00 00 6C 9A 7E D8 6E 00 7E D8 D8 FE  ......l.~.n.~...
    6240: D8 D8 DE 00 7C C6 00 7C C6 C6 7C 00 00 C6 00 7C  ....|..|..|....|
    6250: C6 C6 7C 00 00 E0 00 7C C6 C6 7C 00 7C C6 00 C6  ..|....|..|.|...
    6260: C6 CE 76 00 00 E0 00 C6 C6 CE 76 00 18 00 3C 18  ..v.......v...<.
    6270: 18 18 3C 00 C6 38 6C C6 C6 6C 38 00 C6 00 C6 C6  ..<..8l..l8.....
    6280: C6 C6 7C 00 00 18 7E D8 D8 7E 18 00 38 6C 60 F0  ..|...~..~..8l`.
    6290: 66 F6 6C 00 C3 66 3C 7E 18 3C 18 00 3E 63 38 0E  f.l..f<~.<..>c8.
    62A0: 63 3E 00 1C 00 3E 61 3C 86 7C 00 1C 0E 00 78 0C  c>...>a<.|....x.
    62B0: 7C CC 7E 00 1C 00 38 18 18 18 3C 00 00 0E 00 7C  |.~...8...<....|
    62C0: C6 C6 7C 00 00 0E 00 CC CC DC 76 00 00 FC 00 BC  ..|.......v.....
    62D0: 66 66 E6 00 FE 00 C6 E6 F6 CE C6 00 3E 00 3E 60  ff..........>.>`
    62E0: 67 63 3D 00 3E 00 76 CE C6 7E 06 7C 18 00 18 30  gc=.>.v..~.|...0
    62F0: 60 66 3C 00 00 00 00 7C 60 60 00 00 00 00 00 7C  `f<....|``.....|
    6300: 0C 0C 00 00 C0 CC D8 30 7C 36 0C 3E C0 CC D8 30  .......0|6.>...0
    6310: 6C 3C 7E 0C 18 00 18 18 3C 3C 18 00 00 36 6C D8  l<~.....<<...6l.
    6320: 6C 36 00 00 00 D8 6C 36 6C D8 00 00 22 88 22 88  l6....l6l...".".
    6330: 22 88 22 88 55 AA 55 AA 55 AA 55 AA DD 77 DD 77  ".".U.U.U.U..w.w
    6340: DD 77 DD 77 18 18 18 18 18 18 18 18 18 18 18 18  .w.w............
    6350: F8 18 18 18 18 18 F8 18 F8 18 18 18 36 36 36 36  ............6666
    6360: F6 36 36 36 00 00 00 00 FE 36 36 36 00 00 F8 18  .666.....666....
    6370: F8 18 18 18 36 36 F6 06 F6 36 36 36 36 36 36 36  ....66...6666666
    6380: 36 36 36 36 00 00 FE 06 F6 36 36 36 36 36 F6 06  6666.....66666..
    6390: FE 00 00 00 36 36 36 36 FE 00 00 00 18 18 F8 18  ....6666........
    63A0: F8 00 00 00 00 00 00 00 F8 18 18 18 18 18 18 18  ................
    63B0: 1F 00 00 00 18 18 18 18 FF 00 00 00 00 00 00 00  ................
    63C0: FF 18 18 18 18 18 18 18 1F 18 18 18 00 00 00 00  ................
    63D0: FF 00 00 00 18 18 18 18 FF 18 18 18 18 18 1F 18  ................
    63E0: 1F 18 18 18 36 36 36 36 37 36 36 36 36 36 37 30  ....666676666670
    63F0: 3F 00 00 00 00 00 3F 30 37 36 36 36 36 36 F7 00  ?.....?0766666..
    6400: FF 00 00 00 00 00 FF 00 F7 36 36 36 36 36 37 30  .........6666670
    6410: 37 36 36 36 00 00 FF 00 FF 00 00 00 36 36 F7 00  7666........66..
    6420: F7 36 36 36 18 18 FF 00 FF 00 00 00 36 36 36 36  .666........6666
    6430: FF 00 00 00 00 00 FF 00 FF 18 18 18 00 00 00 00  ................
    6440: FF 36 36 36 36 36 36 36 3F 00 00 00 18 18 1F 18  .6666666?.......
    6450: 1F 00 00 00 00 00 1F 18 1F 18 18 18 00 00 00 00  ................
    6460: 3F 36 36 36 36 36 36 36 FF 36 36 36 18 18 FF 18  ?6666666.666....
    6470: FF 18 18 18 18 18 18 18 F8 00 00 00 00 00 00 00  ................
    6480: 1F 18 18 18 FF FF FF FF FF FF FF FF 00 00 00 00  ................
    6490: FF FF FF FF F0 F0 F0 F0 F0 F0 F0 F0 0F 0F 0F 0F  ................
    64A0: 0F 0F 0F 0F FF FF FF FF 00 00 00 00 00 00 66 DC  ..............f.
    64B0: D8 DC 66 00 00 78 CC F8 CC C6 CC 00 00 FE 62 60  ..f..x........b`
    64C0: 60 60 E0 00 00 FE 6C 6C 6C 6C 6C 00 FE C6 60 30  ``....lllll...`0
    64D0: 60 C6 FE 00 00 7E D8 CC CC D8 70 00 00 66 66 66  `....~....p..fff
    64E0: 66 7C C0 00 00 76 DC 18 18 18 38 00 FE 38 6C C6  f|...v....8..8l.
    64F0: 6C 38 FE 00 38 6C C6 FE C6 6C 38 00 38 6C C6 C6  l8..8l...l8.8l..
    6500: 6C 6C EE 00 3E 60 38 66 C6 CC 78 00 00 00 7E DB  ll..>`8f..x...~.
    6510: DB 7E 00 00 06 7C DE F6 E6 7C C0 00 38 60 C0 F8  .~...|...|..8`..
    6520: C0 60 38 00 7C C6 C6 C6 C6 C6 C6 00 00 FE 00 FE  .`8.|...........
    6530: 00 FE 00 00 18 18 7E 18 18 00 7E 00 30 18 0C 18  ......~...~.0...
    6540: 30 00 7E 00 0C 18 30 18 0C 00 7E 00 0C 1E 18 18  0.~...0...~.....
    6550: 18 18 18 18 18 18 18 18 18 78 30 00 00 00 18 00  .........x0.....
    6560: 7E 00 18 00 00 76 DC 00 76 DC 00 00 7C C6 C6 7C  ~....v..v...|..|
    6570: 00 00 00 00 00 00 00 18 18 00 00 00 00 00 00 00  ................
    6580: 18 00 00 00 1F 18 18 18 F8 38 18 00 D8 6C 6C 6C  .........8...lll
    6590: 00 00 00 00 70 D8 30 F8 00 00 00 00 00 00 7C 7C  ....p.0.......||
    65A0: 7C 7C 00 00 00 00 00 00 00 00 00 00 1D 00 00 00  ||..............
    65B0: 00 24 66 FF 66 24 00 00 00 00 00 00 00 10 00 00  .$f.f$..........
    65C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    65D0: 00 7E 81 A5 81 81 BD 99 81 81 7E 00 00 00 00 00  .~........~.....
    65E0: 00 7C FE FE D6 FE FE BA C6 FE 7C 00 00 00 00 00  .|........|.....
    65F0: 00 00 6C EE FE FE FE FE 7C 38 10 00 00 00 00 00  ..l.....|8......
    6600: 00 00 10 38 7C FE 7C 38 10 00 00 00 00 00 00 00  ...8|.|8........
    6610: 00 00 10 38 38 10 6C EE 6C 10 38 00 00 00 00 00  ...88.l.l.8.....
    6620: 00 10 38 7C 7C FE FE FE 6C 10 38 00 00 00 00 00  ..8||...l.8.....
    6630: 00 00 00 00 18 3C 3C 3C 18 00 00 00 00 00 00 FF  .....<<<........
    6640: FF FF FF FF E7 C3 C3 C3 E7 FF FF FF FF FF FF 00  ................
    6650: 00 00 00 18 3C 66 66 66 3C 18 00 00 00 00 00 FF  ....<fff<.......
    6660: FF FF FF E7 C3 99 99 99 C3 E7 FF FF FF FF FF 00  ................
    6670: 00 1E 0E 1E 36 78 CC CC CC CC 78 00 00 00 00 00  ....6x....x.....
    6680: 00 3C 66 66 66 3C 18 7E 18 18 18 00 00 00 00 00  .<fff<.~........
    6690: 00 1E 1A 1E 18 18 18 18 78 F8 70 00 00 00 00 00  ........x.p.....
    66A0: 00 3E 36 3E 36 36 76 F6 66 0E 1E 0C 00 00 00 00  .>6>66v.f.......
    66B0: 00 18 DB 7E 3C 66 66 3C 7E DB 18 00 00 00 00 00  ...~<ff<~.......
    66C0: 00 00 80 E0 F0 FC FE FC F0 E0 80 00 00 00 00 00  ................
    66D0: 00 00 02 0E 3E 7E FE 7E 3E 0E 02 00 00 00 00 00  ....>~.~>.......
    66E0: 00 18 3C 7E 18 18 18 18 7E 3C 18 00 00 00 00 00  ..<~....~<......
    66F0: 00 66 66 66 66 66 66 66 00 66 66 00 00 00 00 00  .fffffff.ff.....
    6700: 00 7F DB DB DB DB 7B 1B 1B 1B 1B 00 00 00 00 00  ......{.........
    6710: 00 7C C6 C6 60 7C F6 DE 7C 0C C6 C6 7C 00 00 00  .|..`|..|...|...
    6720: 00 00 00 00 00 00 00 FE FE FE FE 00 00 00 00 00  ................
    6730: 00 18 3C 7E 18 18 18 7E 3C 18 7E 00 00 00 00 00  ..<~...~<.~.....
    6740: 00 18 3C 7E 18 18 18 18 18 18 18 00 00 00 00 00  ..<~............
    6750: 00 18 18 18 18 18 18 18 7E 3C 18 00 00 00 00 00  ........~<......
    6760: 00 00 00 00 0C 0E FF 0E 0C 00 00 00 00 00 00 00  ................
    6770: 00 00 00 00 30 70 FE 70 30 00 00 00 00 00 00 00  ....0p.p0.......
    6780: 00 00 00 00 00 C0 C0 C0 FE 00 00 00 00 00 00 00  ................
    6790: 00 00 00 00 24 66 FF 66 24 00 00 00 00 00 00 00  ....$f.f$.......
    67A0: 00 00 10 38 38 38 7C 7C FE FE 00 00 00 00 00 00  ...888||........
    67B0: 00 00 FE FE 7C 7C 7C 38 38 10 00 00 00 00 00 00  ....|||88.......
    67C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    67D0: 00 18 3C 3C 3C 3C 18 18 00 18 18 00 00 00 00 00  ..<<<<..........
    67E0: 36 36 36 36 14 00 00 00 00 00 00 00 00 00 00 00  6666............
    67F0: 00 6C 6C 6C FE 6C 6C FE 6C 6C 6C 00 00 00 00 00  .lll.ll.lll.....
    6800: 00 18 18 7C C6 C0 78 3C 06 C6 7C 18 18 00 00 00  ...|..x<..|.....
    6810: 00 00 00 00 62 66 0C 18 30 66 C6 00 00 00 00 00  ....bf..0f......
    6820: 00 38 6C 38 30 76 7E CC CC CC 76 00 00 00 00 00  .8l80v~...v.....
    6830: 0C 0C 0C 18 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6840: 00 0C 18 30 30 30 30 30 30 18 0C 00 00 00 00 00  ...000000.......
    6850: 00 30 18 0C 0C 0C 0C 0C 0C 18 30 00 00 00 00 00  .0........0.....
    6860: 00 00 00 00 6C 38 FE 38 6C 00 00 00 00 00 00 00  ....l8.8l.......
    6870: 00 00 00 00 18 18 7E 18 18 00 00 00 00 00 00 00  ......~.........
    6880: 00 00 00 00 00 00 00 00 0C 0C 0C 18 00 00 00 00  ................
    6890: 00 00 00 00 00 00 FE 00 00 00 00 00 00 00 00 00  ................
    68A0: 00 00 00 00 00 00 00 00 00 18 18 00 00 00 00 00  ................
    68B0: 00 00 00 02 06 0C 18 30 60 C0 80 00 00 00 00 00  .......0`.......
    68C0: 00 7C C6 C6 CE DE F6 E6 C6 C6 7C 00 00 00 00 00  .|........|.....
    68D0: 00 18 78 18 18 18 18 18 18 18 7E 00 00 00 00 00  ..x.......~.....
    68E0: 00 7C C6 C6 06 0C 18 30 60 C6 FE 00 00 00 00 00  .|.....0`.......
    68F0: 00 7C C6 06 06 3C 06 06 06 C6 7C 00 00 00 00 00  .|...<....|.....
    6900: 00 0C 1C 3C 6C CC CC FE 0C 0C 1E 00 00 00 00 00  ...<l...........
    6910: 00 FE C0 C0 C0 FC 06 06 06 C6 7C 00 00 00 00 00  ..........|.....
    6920: 00 7C C6 C0 C0 FC C6 C6 C6 C6 7C 00 00 00 00 00  .|........|.....
    6930: 00 FE C6 06 0C 18 30 30 30 30 30 00 00 00 00 00  ......00000.....
    6940: 00 7C C6 C6 C6 7C C6 C6 C6 C6 7C 00 00 00 00 00  .|...|....|.....
    6950: 00 7C C6 C6 C6 C6 7E 06 06 C6 7C 00 00 00 00 00  .|....~...|.....
    6960: 00 00 00 00 0C 0C 00 00 0C 0C 00 00 00 00 00 00  ................
    6970: 00 00 00 00 0C 0C 00 00 0C 0C 0C 18 00 00 00 00  ................
    6980: 00 00 0C 18 30 60 C0 60 30 18 0C 00 00 00 00 00  ....0`.`0.......
    6990: 00 00 00 00 00 FE 00 FE 00 00 00 00 00 00 00 00  ................
    69A0: 00 00 60 30 18 0C 06 0C 18 30 60 00 00 00 00 00  ..`0.....0`.....
    69B0: 00 7C C6 C6 0C 18 18 18 00 18 18 00 00 00 00 00  .|..............
    69C0: 00 7C C6 C6 C6 DE DE DE DC C0 7E 00 00 00 00 00  .|........~.....
    69D0: 00 38 6C C6 C6 C6 FE C6 C6 C6 C6 00 00 00 00 00  .8l.............
    69E0: 00 FC 66 66 66 7C 66 66 66 66 FC 00 00 00 00 00  ..fff|ffff......
    69F0: 00 3C 66 C2 C0 C0 C0 C0 C2 66 3C 00 00 00 00 00  .<f......f<.....
    6A00: 00 F8 6C 66 66 66 66 66 66 6C F8 00 00 00 00 00  ..lffffffl......
    6A10: 00 FE 66 60 64 7C 64 60 60 66 FE 00 00 00 00 00  ..f`d|d``f......
    6A20: 00 FE 66 60 64 7C 64 60 60 60 F0 00 00 00 00 00  ..f`d|d```......
    6A30: 00 7C C6 C6 C0 C0 C0 CE C6 C6 7C 00 00 00 00 00  .|........|.....
    6A40: 00 C6 C6 C6 C6 FE C6 C6 C6 C6 C6 00 00 00 00 00  ................
    6A50: 00 3C 18 18 18 18 18 18 18 18 3C 00 00 00 00 00  .<........<.....
    6A60: 00 3C 18 18 18 18 18 18 D8 D8 70 00 00 00 00 00  .<........p.....
    6A70: 00 C6 C6 CC D8 F0 F0 D8 CC C6 C6 00 00 00 00 00  ................
    6A80: 00 F0 60 60 60 60 60 60 62 66 FE 00 00 00 00 00  ..``````bf......
    6A90: 00 C6 C6 EE EE FE D6 D6 D6 C6 C6 00 00 00 00 00  ................
    6AA0: 00 C6 C6 E6 E6 F6 DE CE CE C6 C6 00 00 00 00 00  ................
    6AB0: 00 7C C6 C6 C6 C6 C6 C6 C6 C6 7C 00 00 00 00 00  .|........|.....
    6AC0: 00 FC 66 66 66 66 7C 60 60 60 F0 00 00 00 00 00  ..ffff|```......
    6AD0: 00 7C C6 C6 C6 C6 C6 C6 D6 D6 7C 06 00 00 00 00  .|........|.....
    6AE0: 00 FC 66 66 66 7C 78 6C 66 66 E6 00 00 00 00 00  ..fff|xlff......
    6AF0: 00 7C C6 C0 C0 70 1C 06 06 C6 7C 00 00 00 00 00  .|...p....|.....
    6B00: 00 7E 5A 18 18 18 18 18 18 18 3C 00 00 00 00 00  .~Z.......<.....
    6B10: 00 C6 C6 C6 C6 C6 C6 C6 C6 C6 7C 00 00 00 00 00  ..........|.....
    6B20: 00 C6 C6 C6 C6 C6 C6 C6 6C 38 10 00 00 00 00 00  ........l8......
    6B30: 00 C6 C6 C6 D6 D6 D6 FE EE C6 C6 00 00 00 00 00  ................
    6B40: 00 C6 C6 C6 6C 38 38 6C C6 C6 C6 00 00 00 00 00  ....l88l........
    6B50: 00 66 66 66 66 66 3C 18 18 18 3C 00 00 00 00 00  .fffff<...<.....
    6B60: 00 FE C6 86 0C 18 30 60 C2 C6 FE 00 00 00 00 00  ......0`........
    6B70: 00 7C 60 60 60 60 60 60 60 60 7C 00 00 00 00 00  .|````````|.....
    6B80: 00 00 00 80 C0 60 30 18 0C 06 02 00 00 00 00 00  .....`0.........
    6B90: 00 7C 0C 0C 0C 0C 0C 0C 0C 0C 7C 00 00 00 00 00  .|........|.....
    6BA0: 10 38 6C C6 00 00 00 00 00 00 00 00 00 00 00 00  .8l.............
    6BB0: 00 00 00 00 00 00 00 00 00 00 00 00 FF 00 00 00  ................
    6BC0: 18 18 18 0C 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6BD0: 00 00 00 00 78 0C 7C CC CC DC 76 00 00 00 00 00  ....x.|...v.....
    6BE0: 00 E0 60 60 7C 66 66 66 66 66 FC 00 00 00 00 00  ..``|fffff......
    6BF0: 00 00 00 00 7C C6 C0 C0 C0 C6 7C 00 00 00 00 00  ....|.....|.....
    6C00: 00 1C 0C 0C 7C CC CC CC CC CC 7E 00 00 00 00 00  ....|.....~.....
    6C10: 00 00 00 00 7C C6 C6 FE C0 C6 7C 00 00 00 00 00  ....|.....|.....
    6C20: 00 1C 36 30 30 FC 30 30 30 30 78 00 00 00 00 00  ..600.0000x.....
    6C30: 00 00 00 00 76 CE C6 C6 CE 76 06 C6 7C 00 00 00  ....v....v..|...
    6C40: 00 E0 60 60 7C 66 66 66 66 66 E6 00 00 00 00 00  ..``|fffff......
    6C50: 00 18 18 00 38 18 18 18 18 18 3C 00 00 00 00 00  ....8.....<.....
    6C60: 00 0C 0C 00 1C 0C 0C 0C 0C 0C CC CC 78 00 00 00  ............x...
    6C70: 00 E0 60 60 66 66 6C 78 6C 66 E6 00 00 00 00 00  ..``fflxlf......
    6C80: 00 18 18 18 18 18 18 18 18 18 1C 00 00 00 00 00  ................
    6C90: 00 00 00 00 6C FE D6 D6 C6 C6 C6 00 00 00 00 00  ....l...........
    6CA0: 00 00 00 00 DC 66 66 66 66 66 66 00 00 00 00 00  .....ffffff.....
    6CB0: 00 00 00 00 7C C6 C6 C6 C6 C6 7C 00 00 00 00 00  ....|.....|.....
    6CC0: 00 00 00 00 DC 66 66 66 66 7C 60 60 F0 00 00 00  .....ffff|``....
    6CD0: 00 00 00 00 76 CC CC CC CC 7C 0C 0C 1E 00 00 00  ....v....|......
    6CE0: 00 00 00 00 DC 66 60 60 60 60 F0 00 00 00 00 00  .....f````......
    6CF0: 00 00 00 00 7C C6 C0 7C 06 C6 7C 00 00 00 00 00  ....|..|..|.....
    6D00: 00 30 30 30 FC 30 30 30 30 36 1C 00 00 00 00 00  .000.00006......
    6D10: 00 00 00 00 CC CC CC CC CC CC 76 00 00 00 00 00  ..........v.....
    6D20: 00 00 00 00 C6 C6 C6 C6 6C 38 10 00 00 00 00 00  ........l8......
    6D30: 00 00 00 00 C6 C6 D6 D6 D6 FE 6C 00 00 00 00 00  ..........l.....
    6D40: 00 00 00 00 C6 C6 6C 38 6C C6 C6 00 00 00 00 00  ......l8l.......
    6D50: 00 00 00 00 C6 C6 C6 C6 CE 76 06 C6 7C 00 00 00  .........v..|...
    6D60: 00 00 00 00 FE 86 0C 18 30 62 FE 00 00 00 00 00  ........0b......
    6D70: 00 0E 18 18 18 70 18 18 18 18 0E 00 00 00 00 00  .....p..........
    6D80: 00 18 18 18 18 00 18 18 18 18 18 00 00 00 00 00  ................
    6D90: 00 70 18 18 18 0E 18 18 18 18 70 00 00 00 00 00  .p........p.....
    6DA0: 00 76 DC 00 00 00 00 00 00 00 00 00 00 00 00 00  .v..............
    6DB0: 00 00 00 00 10 38 38 6C 6C FE 00 00 00 00 00 00  .....88ll.......
    6DC0: 00 3C 66 C0 C0 C0 C6 66 3C 18 0C CC 38 00 00 00  .<f....f<...8...
    6DD0: 00 C6 00 00 C6 C6 C6 C6 C6 CE 76 00 00 00 00 00  ..........v.....
    6DE0: 0C 18 30 00 7C C6 C6 FE C0 C6 7C 00 00 00 00 00  ..0.|.....|.....
    6DF0: 30 78 CC 00 78 0C 7C CC CC DC 76 00 00 00 00 00  0x..x.|...v.....
    6E00: 00 CC 00 00 78 0C 7C CC CC DC 76 00 00 00 00 00  ....x.|...v.....
    6E10: 60 30 18 00 78 0C 7C CC CC DC 76 00 00 00 00 00  `0..x.|...v.....
    6E20: 38 6C 38 00 78 0C 7C CC CC DC 76 00 00 00 00 00  8l8.x.|...v.....
    6E30: 00 00 00 7C C6 C0 C0 C6 7C 18 0C 6C 38 00 00 00  ...|....|..l8...
    6E40: 30 78 CC 00 7C C6 C6 FE C0 C6 7C 00 00 00 00 00  0x..|.....|.....
    6E50: 00 CC 00 00 7C C6 C6 FE C0 C6 7C 00 00 00 00 00  ....|.....|.....
    6E60: 30 18 0C 00 7C C6 C6 FE C0 C6 7C 00 00 00 00 00  0...|.....|.....
    6E70: 00 66 00 00 38 18 18 18 18 18 3C 00 00 00 00 00  .f..8.....<.....
    6E80: 18 3C 66 00 38 18 18 18 18 18 3C 00 00 00 00 00  .<f.8.....<.....
    6E90: 00 00 00 00 38 18 18 18 18 18 3C 00 00 00 00 00  ....8.....<.....
    6EA0: C6 00 38 6C C6 C6 C6 FE C6 C6 C6 00 00 00 00 38  ..8l...........8
    6EB0: 6C 38 00 38 6C C6 C6 FE C6 C6 C6 00 00 00 00 0C  l8.8l...........
    6EC0: 18 30 00 FE 60 60 7C 60 60 60 FE 00 00 00 00 00  .0..``|```......
    6ED0: 00 00 00 66 DB 1B 7F D8 D8 DF 76 00 00 00 00 00  ...f......v.....
    6EE0: 00 7E D8 D8 D8 D8 FE D8 D8 D8 DE 00 00 00 00 00  .~..............
    6EF0: 30 78 CC 00 7C C6 C6 C6 C6 C6 7C 00 00 00 00 00  0x..|.....|.....
    6F00: 00 C6 00 00 7C C6 C6 C6 C6 C6 7C 00 00 00 00 00  ....|.....|.....
    6F10: 30 18 0C 00 7C C6 C6 C6 C6 C6 7C 00 00 00 00 00  0...|.....|.....
    6F20: 30 78 CC 00 C6 C6 C6 C6 C6 CE 76 00 00 00 00 00  0x........v.....
    6F30: 60 30 18 00 C6 C6 C6 C6 C6 CE 76 00 00 00 00 00  `0........v.....
    6F40: 18 00 3C 18 18 18 18 18 18 18 3C 00 00 00 00 00  ..<.......<.....
    6F50: C6 00 7C C6 C6 C6 C6 C6 C6 C6 7C 00 00 00 00 00  ..|.......|.....
    6F60: C6 00 C6 C6 C6 C6 C6 C6 C6 C6 7C 00 00 00 00 00  ..........|.....
    6F70: 00 18 18 7C C6 C0 C0 C6 7C 18 18 00 00 00 00 00  ...|....|.......
    6F80: 38 6C 60 60 F0 60 60 60 66 F6 6C 00 00 00 00 00  8l``.```f.l.....
    6F90: 66 66 66 66 3C 18 7E 18 3C 18 18 00 00 00 00 00  ffff<.~.<.......
    6FA0: 00 3E 63 63 30 1C 06 63 63 3E 00 1C 00 00 00 00  .>cc0..cc>......
    6FB0: 00 00 00 00 3E 63 38 0E 63 3E 00 1C 00 00 00 00  ....>c8.c>......
    6FC0: 0C 18 30 00 78 0C 7C CC CC DC 76 00 00 00 00 00  ..0.x.|...v.....
    6FD0: 0C 18 30 00 38 18 18 18 18 18 3C 00 00 00 00 00  ..0.8.....<.....
    6FE0: 0C 18 30 00 7C C6 C6 C6 C6 C6 7C 00 00 00 00 00  ..0.|.....|.....
    6FF0: 18 30 60 00 CC CC CC CC CC DC 76 00 00 00 00 00  .0`.......v.....
    7000: 00 76 DC 00 BC 66 66 66 66 66 E6 00 00 00 00 00  .v...fffff......
    7010: 76 DC 00 C6 C6 E6 F6 DE CE C6 C6 00 00 00 00 00  v...............
    7020: 21 1E 00 1E 33 60 60 67 63 33 1D 00 00 00 00 00  !...3``gc3......
    7030: 42 3C 00 3B 66 66 66 3E 06 66 3C 00 00 00 00 00  B<.;fff>.f<.....
    7040: 00 30 30 00 30 30 30 60 C6 C6 7C 00 00 00 00 00  .00.000`..|.....
    7050: 00 00 00 00 00 00 7E 60 60 60 00 00 00 00 00 00  ......~```......
    7060: 00 00 00 00 00 00 7E 06 06 06 00 00 00 00 00 00  ......~.........
    7070: 60 60 62 66 6C 18 30 60 DC 36 0C 18 3E 00 00 00  ``bfl.0`.6..>...
    7080: 60 60 62 66 6C 18 36 6E DE 36 7E 06 06 00 00 00  ``bfl.6n.6~.....
    7090: 00 18 18 00 18 18 3C 3C 3C 3C 18 00 00 00 00 00  ......<<<<......
    70A0: 00 00 00 00 36 6C D8 6C 36 00 00 00 00 00 00 00  ....6l.l6.......
    70B0: 00 00 00 00 D8 6C 36 6C D8 00 00 00 00 00 00 11  .....l6l........
    70C0: 44 11 44 11 44 11 44 11 44 11 44 11 44 11 44 AA  D.D.D.D.D.D.D.D.
    70D0: 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 DD  U.U.U.U.U.U.U.U.
    70E0: 77 DD 77 DD 77 DD 77 DD 77 DD 77 DD 77 DD 77 18  w.w.w.w.w.w.w.w.
    70F0: 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18  ................
    7100: 18 18 18 18 18 18 F8 18 18 18 18 18 18 18 18 18  ................
    7110: 18 18 18 18 F8 18 F8 18 18 18 18 18 18 18 18 36  ...............6
    7120: 36 36 36 36 36 36 F6 36 36 36 36 36 36 36 36 00  666666.66666666.
    7130: 00 00 00 00 00 00 FE 36 36 36 36 36 36 36 36 00  .......66666666.
    7140: 00 00 00 00 F8 18 F8 18 18 18 18 18 18 18 18 36  ...............6
    7150: 36 36 36 36 F6 06 F6 36 36 36 36 36 36 36 36 36  6666...666666666
    7160: 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 00  666666666666666.
    7170: 00 00 00 00 FE 06 F6 36 36 36 36 36 36 36 36 36  .......666666666
    7180: 36 36 36 36 F6 06 FE 00 00 00 00 00 00 00 00 36  6666...........6
    7190: 36 36 36 36 36 36 FE 00 00 00 00 00 00 00 00 18  666666..........
    71A0: 18 18 18 18 F8 18 F8 00 00 00 00 00 00 00 00 00  ................
    71B0: 00 00 00 00 00 00 F8 18 18 18 18 18 18 18 18 18  ................
    71C0: 18 18 18 18 18 18 1F 00 00 00 00 00 00 00 00 18  ................
    71D0: 18 18 18 18 18 18 FF 00 00 00 00 00 00 00 00 00  ................
    71E0: 00 00 00 00 00 00 FF 18 18 18 18 18 18 18 18 18  ................
    71F0: 18 18 18 18 18 18 1F 18 18 18 18 18 18 18 18 00  ................
    7200: 00 00 00 00 00 00 FF 00 00 00 00 00 00 00 00 18  ................
    7210: 18 18 18 18 18 18 FF 18 18 18 18 18 18 18 18 18  ................
    7220: 18 18 18 18 1F 18 1F 18 18 18 18 18 18 18 18 36  ...............6
    7230: 36 36 36 36 36 36 37 36 36 36 36 36 36 36 36 36  6666667666666666
    7240: 36 36 36 36 37 30 3F 00 00 00 00 00 00 00 00 00  666670?.........
    7250: 00 00 00 00 3F 30 37 36 36 36 36 36 36 36 36 36  ....?07666666666
    7260: 36 36 36 36 F7 00 FF 00 00 00 00 00 00 00 00 00  6666............
    7270: 00 00 00 00 FF 00 F7 36 36 36 36 36 36 36 36 36  .......666666666
    7280: 36 36 36 36 37 30 37 36 36 36 36 36 36 36 36 00  666670766666666.
    7290: 00 00 00 00 FF 00 FF 00 00 00 00 00 00 00 00 36  ...............6
    72A0: 36 36 36 36 F7 00 F7 36 36 36 36 36 36 36 36 18  6666...66666666.
    72B0: 18 18 18 18 FF 00 FF 00 00 00 00 00 00 00 00 36  ...............6
    72C0: 36 36 36 36 36 36 FF 00 00 00 00 00 00 00 00 00  666666..........
    72D0: 00 00 00 00 FF 00 FF 18 18 18 18 18 18 18 18 00  ................
    72E0: 00 00 00 00 00 00 FF 36 36 36 36 36 36 36 36 36  .......666666666
    72F0: 36 36 36 36 36 36 3F 00 00 00 00 00 00 00 00 18  666666?.........
    7300: 18 18 18 18 1F 18 1F 00 00 00 00 00 00 00 00 00  ................
    7310: 00 00 00 00 1F 18 1F 18 18 18 18 18 18 18 18 00  ................
    7320: 00 00 00 00 00 00 3F 36 36 36 36 36 36 36 36 36  ......?666666666
    7330: 36 36 36 36 36 36 FF 36 36 36 36 36 36 36 36 18  666666.66666666.
    7340: 18 18 18 18 FF 18 FF 18 18 18 18 18 18 18 18 18  ................
    7350: 18 18 18 18 18 18 F8 00 00 00 00 00 00 00 00 00  ................
    7360: 00 00 00 00 00 00 1F 18 18 18 18 18 18 18 18 FF  ................
    7370: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 00  ................
    7380: 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF F0  ................
    7390: F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 0F  ................
    73A0: 0F 0F 0F 0F 0F 0F 0F 0F 0F 0F 0F 0F 0F 0F 0F FF  ................
    73B0: FF FF FF FF FF FF FF 00 00 00 00 00 00 00 00 00  ................
    73C0: 00 00 00 76 DC D8 D8 D8 D8 DC 76 00 00 00 00 00  ...v......v.....
    73D0: 00 78 CC CC D8 FC C6 C6 C6 C6 CC 00 00 00 00 00  .x..............
    73E0: 00 FE 66 62 60 60 60 60 60 60 60 00 00 00 00 00  ..fb```````.....
    73F0: 00 00 00 00 FE 6C 6C 6C 6C 6C 6C 00 00 00 00 00  .....llllll.....
    7400: 00 FE C6 62 30 18 18 30 62 C6 FE 00 00 00 00 00  ...b0..0b.......
    7410: 00 00 00 00 7E D8 CC CC CC D8 70 00 00 00 00 00  ....~.....p.....
    7420: 00 00 00 66 66 66 66 66 7C 60 C0 80 00 00 00 00  ...fffff|`......
    7430: 00 00 00 00 76 DC 18 18 18 18 18 00 00 00 00 00  ....v...........
    7440: 00 FE 38 38 6C C6 C6 6C 38 38 FE 00 00 00 00 00  ..88l..l88......
    7450: 00 00 38 6C C6 C6 FE C6 C6 6C 38 00 00 00 00 00  ..8l.....l8.....
    7460: 00 38 6C C6 C6 C6 C6 6C 6C 6C EE 00 00 00 00 00  .8l....lll......
    7470: 00 3E 60 60 3C 66 C6 C6 C6 CC 78 00 00 00 00 00  .>``<f....x.....
    7480: 00 00 00 00 7E DB DB DB 7E 00 00 00 00 00 00 00  ....~...~.......
    7490: 00 02 06 7C CE DE F6 F6 7C 60 C0 00 00 00 00 00  ...|....|`......
    74A0: 00 00 1C 30 60 60 7C 60 60 30 1C 00 00 00 00 00  ...0``|``0......
    74B0: 00 7C C6 C6 C6 C6 C6 C6 C6 C6 C6 00 00 00 00 00  .|..............
    74C0: 00 00 00 FE 00 00 FE 00 00 FE 00 00 00 00 00 00  ................
    74D0: 00 00 00 18 18 7E 18 18 00 00 7E 00 00 00 00 00  .....~....~.....
    74E0: 00 30 18 0C 06 0C 18 30 00 00 7E 00 00 00 00 00  .0.....0..~.....
    74F0: 00 0C 18 30 60 30 18 0C 00 00 7E 00 00 00 00 00  ...0`0....~.....
    7500: 00 00 00 0C 1E 1A 18 18 18 18 18 18 18 18 18 18  ................
    7510: 18 18 18 18 18 18 18 18 18 58 78 30 00 00 00 00  .........Xx0....
    7520: 00 00 00 18 18 00 7E 00 18 18 00 00 00 00 00 00  ......~.........
    7530: 00 00 00 00 00 76 DC 00 76 DC 00 00 00 00 00 00  .....v..v.......
    7540: 00 78 CC CC 78 00 00 00 00 00 00 00 00 00 00 00  .x..x...........
    7550: 00 00 00 00 00 00 18 18 00 00 00 00 00 00 00 00  ................
    7560: 00 00 00 00 00 00 00 18 00 00 00 00 00 00 00 00  ................
    7570: 00 1F 18 18 18 18 18 D8 D8 78 38 18 00 00 00 00  .........x8.....
    7580: 00 D8 6C 6C 6C 6C 6C 00 00 00 00 00 00 00 00 00  ..lllll.........
    7590: 00 70 D8 18 30 60 F8 00 00 00 00 00 00 00 00 00  .p..0`..........
    75A0: 00 00 00 00 7E 7E 7E 7E 7E 7E 00 00 00 00 00 00  ....~~~~~~......
    75B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 1D  ................
    75C0: 00 00 00 00 00 24 66 FF 66 24 00 00 00 00 00 00  .....$f.f$......
    75D0: 2F 00 00 00 01 03 06 0C 18 30 60 C0 80 00 00 00  /........0`.....
    75E0: 00 30 00 00 7E C3 C3 C3 DB DB C3 C3 C3 7E 00 00  .0..~........~..
    75F0: 00 00 4D 00 00 C3 C3 E7 FF FF DB DB C3 C3 C3 00  ..M.............
    7600: 00 00 00 54 00 00 FF 99 18 18 18 18 18 18 18 3C  ...T...........<
    7610: 00 00 00 00 56 00 00 C3 C3 C3 C3 C3 C3 C3 66 3C  ....V.........f<
    7620: 18 00 00 00 00 57 00 00 C3 C3 C3 C3 DB DB DB DB  .....W..........
    7630: FF 66 00 00 00 00 58 00 00 C3 C3 C3 66 3C 3C 66  .f....X.....f<<f
    7640: C3 C3 C3 00 00 00 00 59 00 00 C3 C3 C3 C3 66 3C  .......Y......f<
    7650: 18 18 18 3C 00 00 00 00 5C 00 00 00 80 C0 60 30  ...<....\.....`0
    7660: 18 0C 06 03 01 00 00 00 00 6D 00 00 00 00 00 66  .........m.....f
    7670: FF DB DB DB C3 C3 00 00 00 00 76 00 00 00 00 00  ..........v.....
    7680: C3 C3 C3 C3 66 3C 18 00 00 00 00 77 00 00 00 00  ....f<.....w....
    7690: 00 C3 C3 DB DB DB FF 66 00 00 00 00 00 00 57 65  .......f......We
    76A0: C3 0B DB 74 03 E9 46 01 57 32 C0 B9 40 00 F3 AA  ...t..F.W2..@...
    76B0: 5F BB E7 92 26 89 1D 26 8C 4D 02 2E 8E 1E D1 03  _...&..&.M......
    76C0: 57 BE 49 04 B9 1E 00 83 C7 04 FC 8A 04 26 88 05  W.I..........&..
    76D0: 46 47 E2 F7 5F A0 84 04 FE C0 26 88 45 22 A1 85  FG.._.....&.E"..
    76E0: 04 26 89 45 23 57 E8 9C 1B 5F 26 88 5D 25 26 88  .&.E#W..._&.]%&.
    76F0: 7D 26 8A 1E 49 04 E8 FC 05 74 05 80 FB 13 7F 1D  }&..I....t......
    7700: 32 FF D1 E3 2E 8A 87 BF 92 32 E4 0A C0 74 01 40  2........2...t.@
    7710: 26 89 45 27 2E 8A 87 C0 92 26 88 45 29 A1 85 04  &.E'.....&.E)...
    7720: 8A 16 84 04 FE C2 F6 E2 B2 00 3D C8 00 7E 15 B2  ..........=..~..
    7730: 01 3D 5E 01 7E 0E B2 02 3D 90 01 7E 07 B2 03 3D  .=^.~...=..~...=
    7740: E0 01 7E 00 26 88 55 2A 8A 26 87 04 8A C4 24 01  ..~.&.U*.&....$.
    7750: C0 E0 04 80 E4 02 D0 E4 0A E0 80 F4 10 A0 89 04  ................
    7760: 24 0A 0A E0 E8 94 08 B2 C0 B0 30 EE 42 EC 24 08  $.........0.B.$.
    7770: C0 E0 02 0A C4 0C 01 26 88 45 2D B0 03 26 88 45  .......&.E-..&.E
    7780: 31 E8 77 08 1E 06 32 D2 C4 1E A8 04 8C C1 8C CE  1.w...2.........
    7790: 3B CE 74 34 26 C5 77 04 8C D9 0B F1 74 03 80 CA  ;.t4&.w.....t...
    77A0: 10 26 C5 77 0C 8C D9 0B F1 74 03 80 CA 08 26 C5  .&.w.....t....&.
    77B0: 77 08 8C D9 0B F1 74 03 80 CA 04 26 C5 77 10 8C  w.....t....&.w..
    77C0: D9 0B F1 74 03 80 CA 01 07 1F 26 88 55 32 B0 03  ...t......&.U2..
    77D0: BA C4 03 E8 E4 04 8A E0 C0 EC 02 8A D4 8A F2 D0  ................
    77E0: EE 81 E2 04 04 25 03 03 0B C2 26 89 45 2B 8B EC  .....%....&.E+..
    77F0: C6 46 1A 1B C3 0A C0 74 0F FE C8 74 36 FE C8 74  .F.....t...t6..t
    7800: 56 8B EC C6 46 1A 00 C3 B8 20 00 F6 C1 01 74 03  V...F.... ....t.
    7810: 83 C0 60 F6 C1 02 74 03 83 C0 3A F6 C1 04 74 03  ..`...t...:...t.
    7820: 05 03 03 83 C0 3F C1 E8 06 8B EC 89 46 0E C6 46  .....?......F..F
    7830: 1A 1C C3 8B FB 83 C7 20 F6 C1 01 74 03 E8 85 00  ....... ...t....
    7840: F6 C1 02 74 03 E8 EF 00 F6 C1 04 74 03 E8 F8 01  ...t.......t....
    7850: 8B EC C6 46 1A 1C C3 F6 C1 01 74 06 E8 D9 14 E8  ...F......t.....
    7860: 25 01 F6 C1 02 74 03 E8 85 01 F6 C1 04 74 03 E8  %....t.......t..
    7870: 12 02 EB DC 8A C4 EE 42 EC AA FE C4 4A E2 F5 C3  .......B....J...
    7880: E8 6B 04 BD C0 03 B9 15 00 32 E4 EC 87 EA 8A C4  .k.......2......
    7890: EE 42 EC AA FE C4 4A 87 EA E2 F0 EC 87 EA B0 20  .B....J........ 
    78A0: EE C3 26 8A 05 88 04 47 46 E2 F7 C3 26 8A 25 EF  ..&....GF...&.%.
    78B0: 47 FE C0 E2 F7 C3 B2 C0 8A C4 EE 26 8A 05 47 FE  G..........&..G.
    78C0: C4 EE E2 F4 C3 9C FA 51 57 8B C7 2B C3 26 89 07  .......QW..+.&..
    78D0: 8B F7 E8 0A 04 EC 26 88 44 01 26 89 54 41 B2 CE  ......&.D.&.TA..
    78E0: EC 26 88 44 02 B2 CC EC 26 88 44 09 B2 CA EC 26  .&.D....&.D....&
    78F0: 88 44 04 B2 C4 EC 26 88 04 83 C7 05 B9 04 00 B4  .D....&.........
    7900: 01 E8 70 FF 26 8A 04 EE 8B FE 83 C7 0A 26 8B 54  ..p.&........&.T
    7910: 41 32 E4 B9 19 00 E8 5B FF 26 8A 44 01 EE E8 5F  A2.....[.&.D..._
    7920: FF B2 CE 32 E4 B9 09 00 E8 49 FF 26 8A 44 02 EE  ...2.....I.&.D..
    7930: 5F 59 83 C7 60 9D C3 9C FA 8B C7 2B C3 26 89 47  _Y..`......+.&.G
    7940: 02 51 57 2E 8E 1E D1 03 A0 10 04 24 30 AA BE 49  .QW........$0..I
    7950: 04 B9 1E 00 F3 A4 BE 84 04 B1 07 F3 A4 BE A8 04  ................
    7960: B1 04 F3 A4 BE 14 00 B1 04 F3 A4 BE 74 00 B1 04  ............t...
    7970: F3 A4 BE 7C 00 B1 04 F3 A4 BE 0C 01 B1 04 F3 A4  ...|............
    7980: 5F 59 83 C7 3A 9D C3 9C FA 26 8B 3F 03 FB 8B F7  _Y..:....&.?....
    7990: 51 8B FE 83 C7 05 BA C4 03 B8 00 01 EF B0 01 B9  Q...............
    79A0: 04 00 E8 07 FF 47 B2 C2 26 8A 44 09 EE B2 C4 B8  .....G..&.D.....
    79B0: 00 03 EF 26 8A 04 EE 26 8B 54 41 B8 11 00 EF B1  ...&...&.TA.....
    79C0: 19 32 C0 E8 E6 FE 26 8A 44 01 EE 80 C2 06 26 8A  .2....&.D.....&.
    79D0: 44 04 EE EC B1 15 32 E4 E8 DB FE B0 20 EE B1 09  D.....2..... ...
    79E0: 32 C0 B2 CE E8 C5 FE 26 8A 44 02 EE 59 9D C3 9C  2......&.D..Y...
    79F0: FA 26 8B 7F 02 03 FB 06 51 2E 8E 1E D1 03 26 8A  .&......Q.....&.
    7A00: 05 80 26 10 04 CF 08 06 10 04 47 BE 49 04 B9 1E  ..&.......G.I...
    7A10: 00 E8 8E FE BE 84 04 B1 07 E8 86 FE BE A8 04 B1  ................
    7A20: 04 E8 7E FE BE 14 00 B1 04 E8 76 FE BE 74 00 B1  ..~.......v..t..
    7A30: 04 E8 6E FE BE 7C 00 B1 04 E8 66 FE BE 0C 01 B1  ..n..|....f.....
    7A40: 04 E8 5E FE 59 07 9D C3 9C FA 8B C7 2B C3 26 89  ..^.Y.......+.&.
    7A50: 47 04 E8 A6 05 B2 C0 B0 34 EE 42 EC 26 88 05 BA  G.......4.B.&...
    7A60: C8 03 EC 26 88 45 01 50 4A 4A EC 26 88 45 02 83  ...&.E.PJJ.&.E..
    7A70: C7 03 B9 00 03 42 32 C0 EE 42 42 EC AA E2 FC 58  .....B2..BB....X
    7A80: 4A EE 9D C3 9C FA 26 8B 77 04 03 F3 E8 6C 05 B2  J.....&.w....l..
    7A90: C0 B0 34 EE 26 8A 04 EE BA C6 03 26 8A 44 02 EE  ..4.&......&.D..
    7AA0: 56 42 42 83 C6 03 32 C0 EE 42 B9 00 03 26 8A 04  VBB...2..B...&..
    7AB0: EE 46 E2 F9 5E FE CA 26 8A 44 01 EE 9D C3 BA CC  .F..^..&.D......
    7AC0: 03 EC 24 FE 0A C4 B2 C2 EE C3 E8 6B 12 B2 C0 86  ..$........k....
    7AD0: C4 EE EB 00 EB 00 86 C4 EE EB 00 EB 00 B0 20 EE  .............. .
    7AE0: C3 50 8A E0 80 E4 80 80 26 87 04 7F 08 26 87 04  .P......&....&..
    7AF0: 24 7F 8A E0 3C 07 7E 1E 26 F6 47 33 01 75 17 3C  $...<.~.&.G3.u.<
    7B00: 23 74 13 3C 32 74 0F 3C 33 74 0B B4 03 26 F6 47  #t.<2t.<3t...&.G
    7B10: 09 01 75 02 B4 07 88 26 49 04 BA B4 03 80 0E 87  ..u....&I.......
    7B20: 04 02 26 F6 47 09 01 74 07 B2 D4 80 26 87 04 FD  ..&.G..t....&...
    7B30: 89 16 63 04 C7 06 4E 04 00 00 C6 06 62 04 00 B9  ..c...N.....b...
    7B40: 08 00 BF 50 04 FC 06 1E 07 33 C0 F3 AB 07 26 8A  ...P.....3....&.
    7B50: 07 32 E4 A3 4A 04 26 8A 47 01 A2 84 04 26 8A 47  .2..J.&.G....&.G
    7B60: 02 A3 85 04 26 8B 47 03 A3 4C 04 26 8B 47 14 86  ....&.G..L.&.G..
    7B70: C4 A3 60 04 58 C3 52 32 E4 33 D2 B0 0D CD 17 F6  ..`.X.R2.3......
    7B80: C4 29 75 08 32 E4 33 D2 B0 0A CD 17 5A C3 06 1E  .)u.2.3.....Z...
    7B90: 60 2E 8E 1E D1 03 2E 83 0E DB 03 00 75 6E 80 3E  `...........un.>
    7BA0: 00 05 01 74 67 C6 06 00 05 01 8A 1E 62 04 32 FF  ...tg.......b.2.
    7BB0: D1 E3 8B FB 8B 85 50 04 8A 3E 62 04 50 32 F6 8A  ......P..>b.P2..
    7BC0: 0E 84 04 32 ED 41 51 8B 0E 4A 04 32 D2 E8 A6 FF  ...2.AQ..J.2....
    7BD0: F6 C4 29 75 3D 51 52 89 95 50 04 B4 08 E8 7C D3  ..)u=QR..P....|.
    7BE0: 0A C0 75 02 B0 20 33 D2 32 E4 CD 17 F6 C4 29 75  ..u.. 3.2.....)u
    7BF0: 1F 5A FE C2 59 E2 DE FE C6 59 E2 CA E8 77 FF 32  .Z..Y....Y...w.2
    7C00: C0 A2 00 05 58 89 85 50 04 E8 AF 03 61 1F 07 CF  ....X..P....a...
    7C10: 5A 59 59 B0 FF EB EA 52 2A F5 38 C6 7D 02 32 C0  ZYY....R*.8.}.2.
    7C20: 2E 8E 06 D3 03 5A C3 A0 85 04 F6 E3 8A F7 8B D8  .....Z..........
    7C30: 8B CA BA C4 03 B8 02 0F EF B4 02 E8 6D 00 8B D1  ............m...
    7C40: 32 ED 8A E6 8A C6 F3 AA 03 FD 8A CA 4B 75 F7 32  2...........Ku.2
    7C50: E4 E8 57 00 C3 53 8A 1E 62 04 0B C0 75 04 0A DB  ..W..S..b...u...
    7C60: 74 03 E8 35 03 5B 8B F8 2B D1 81 C2 01 01 8A C3  t..5.[..+.......
    7C70: 32 E4 C3 8A C6 32 F6 2B EA 0A DB 74 2A 2A C3 F6  2....2.+...t**..
    7C80: 26 85 04 8B C8 52 B4 01 E8 20 00 B2 C4 B8 02 0F  &....R... ......
    7C90: EF 5A 1E 06 1F 8B C1 8B CA F3 A4 03 F5 03 FD 48  .Z.............H
    7CA0: 75 F5 1F E8 81 FF C3 8A D8 EB F8 BA CE 03 B0 05  u...............
    7CB0: EE 42 EC 24 FC 0A C4 EE 4A C3 9C FA EE 42 EB 00  .B.$....J....B..
    7CC0: EC 4A 9D C3 1E 2E 8E 1E D1 03 8B 16 63 04 80 C2  .J..........c...
    7CD0: 06 1F C3 1E 2E 8E 1E D1 03 8B 16 63 04 1F C3 50  ...........c...P
    7CE0: BA CC 03 EC B2 D4 A8 01 75 02 B2 B4 58 C3 E8 EE  ........u...X...
    7CF0: FF 80 C2 06 C3 1E 2E 8E 1E D1 03 80 3E 49 04 03  ............>I..
    7D00: 74 13 80 3E 49 04 02 74 0C 80 3E 49 04 01 74 05  t..>I..t..>I..t.
    7D10: 80 3E 49 04 00 1F C3 50 2E 8E 06 D5 03 A0 10 04  .>I....P........
    7D20: 24 30 3C 30 74 05 2E 8E 06 D7 03 58 0B C0 74 03  $0<0t......X..t.
    7D30: E8 E1 01 03 06 4E 04 81 C2 01 01 2B D1 32 ED 8B  .....N.....+.2..
    7D40: 2E 4A 04 8B F8 8B F0 8B C5 F6 E3 D1 E0 D1 E5 0A  .J..............
    7D50: DB 75 02 8A DE 38 F3 7E 02 8A DE C3 FC 8A D8 8B  .u...8.~........
    7D60: C1 E8 B3 FF 03 F0 3A 16 4A 04 74 06 06 1F E8 1B  ......:.J.t.....
    7D70: 00 C3 06 1F E8 40 00 C3 FC 8A D8 8A C1 8A E6 E8  .....@..........
    7D80: 95 FF F7 DD 2B F0 06 1F E8 01 00 C3 53 8A CE 2A  ....+.......S..*
    7D90: CB 32 ED 32 F6 2B EA 2B EA E3 0E 8A E1 8B CA F3  .2.2.+.+........
    7DA0: A5 03 F5 03 FD FE CC 75 F4 58 B0 20 8A CA F3 AB  .......u.X. ....
    7DB0: 03 FD FE CB 75 F6 C3 53 8A C6 2A C3 74 06 F6 E2  ....u..S..*.t...
    7DC0: 8B C8 F3 A5 58 8B C8 F6 E2 91 B0 20 F3 AB C3 8B  ....X...... ....
    7DD0: D8 E8 2E 00 2E 8E 1E D7 03 8A C3 22 DF D3 E3 A8  ..........."....
    7DE0: 80 74 03 30 1C C3 F6 D7 8A 34 22 F7 0A DE 88 1C  .t.0.....4".....
    7DF0: C3 8A FC E8 0C 00 2E 8E 1E D7 03 8A 04 D2 E8 22  ..............."
    7E00: C7 C3 B0 28 F6 E2 F6 C2 01 74 03 05 D8 1F 8B F1  ...(.....t......
    7E10: C1 EE 02 80 FF 05 7F 0C 03 F0 F6 D1 80 E1 03 D0  ................
    7E20: E1 B7 03 C3 D1 EE 03 F0 F6 D1 80 E1 07 B7 01 C3  ................
    7E30: FC 8A D8 2E 8E 06 D7 03 8B C1 E8 86 00 75 02 8A  .............u..
    7E40: DE 03 F0 E8 24 00 C3 FC 8A D8 2E 8E 06 D7 03 8A  ....$...........
    7E50: C1 8A E6 E8 6D 00 75 02 8A DE F7 DD 81 C6 F0 00  ....m.u.........
    7E60: 81 C7 F0 00 2B F0 E8 01 00 C3 8A CE 2A CB E3 2C  ....+.......*..,
    7E70: 51 8A CA 56 57 D1 E9 F3 A5 13 C9 F3 A4 8A CA 2B  Q..VW..........+
    7E80: F1 2B F9 81 C6 00 20 81 C7 00 20 D1 E9 F3 A5 13  .+.... ... .....
    7E90: C9 F3 A4 5F 5E 03 F5 03 FD 59 E2 D4 8A C7 8A E7  ..._^....Y......
    7EA0: 8A CA 57 D1 E9 F3 AB 13 C9 F3 AA 8A CA 2B F9 81  ..W..........+..
    7EB0: C7 00 20 D1 E9 F3 AB 13 C9 F3 AA 5F 03 FD FE CB  .. ........_....
    7EC0: 75 DE C3 E8 B0 00 81 C2 01 01 2B D1 38 F3 76 02  u.........+.8.v.
    7ED0: 32 DB 51 B1 02 D2 E6 D2 E3 59 32 ED BD 50 00 80  2.Q......Y2..P..
    7EE0: 3E 49 04 06 74 04 D0 E2 D1 E0 06 1F 8B F8 8B F0  >I..t...........
    7EF0: B0 50 F6 E3 0A DB C3 52 53 8A DF 32 FF D1 E3 8B  .P.....RS..2....
    7F00: 87 50 04 E8 0E 00 50 D1 EB A1 4C 04 F7 E3 5B 03  .P....P...L...[.
    7F10: C3 5B 5A C3 52 8B D0 A0 4A 04 F6 E4 32 F6 03 C2  .[Z.R...J...2...
    7F20: D1 E0 5A C3 8B E8 83 E5 0F 2E 8A A6 D4 7E 8B E8  ..Z..........~..
    7F30: C1 ED 04 83 E5 0F 2E 8A 86 D4 7E C3 00 03 0C 0F  ..........~.....
    7F40: 30 33 3C 3F C0 C3 CC CF F0 F3 FC FF 26 8B 04 86  03<?........&...
    7F50: E0 BA 00 80 F6 C4 C0 74 02 0A D6 D0 EE C1 E0 02  .......t........
    7F60: 75 F2 88 56 00 45 C3 8B 16 63 04 8A C5 86 E0 EF  u..V.E...c......
    7F70: 8A E1 FE C0 EF C3 52 8B D0 8A C4 F6 26 4A 04 C1  ......R.....&J..
    7F80: E0 02 32 F6 03 C2 5A C3 53 8A DF 32 FF D1 E3 8B  ..2...Z.S..2....
    7F90: 87 50 04 D1 EB E8 02 00 5B C3 52 8B D0 32 F6 52  .P......[.R..2.R
    7FA0: 8A C4 F6 26 85 04 F7 26 4A 04 5A 03 C2 0A DB 74  ...&...&J.Z....t
    7FB0: 08 03 06 4C 04 FE CB 75 F8 5A C3 52 8B D0 A0 4A  ...L...u.Z.R...J
    7FC0: 04 F6 E4 32 F6 03 C2 D1 E0 03 06 4E 04 D1 F8 8B  ...2.......N....
    7FD0: C8 B4 0E E8 91 FF 5A C3 8B C2 F7 26 4A 04 8B F9  ......Z....&J...
    7FE0: C1 EF 03 03 F8 0A FF 74 0A 8A C7 32 E4 F7 26 4C  .......t...2..&L
    7FF0: 04 03 F8 80 E1 07 B4 80 D2 EC C3 E8 F0 FC EC C3  ................
    8000: E8 F8 FF B2 C0 B0 20 EE C3 E8 EF FF B2 C0 32 C0  ...... .......2.
    8010: EE C3 C4 3E A8 04 26 C4 7D 04 8C C5 0B EF C3 53  ...>..&.}......S
    8020: B0 0E E8 95 FC 8A E0 B0 0F E8 8E FC 8B D8 B8 0E  ................
    8030: AA EF B8 0F 55 EF B0 0E E8 7F FC 3C AA 74 0D B0  ....U......<.t..
    8040: 0F E8 76 FC 3C 55 74 04 32 C0 5B C3 B0 0E 8A E7  ..v.<Ut.2.[.....
    8050: EF FE C0 8A E3 EF B0 01 0A C0 5B C3 8A EE 8A 36  ..........[....6
    8060: 85 04 06 1F 0A DB 74 25 8A C5 2A C3 F6 E6 8B C8  ......t%..*.....
    8070: 52 32 F6 C1 E2 02 8B C2 D1 E2 2B D5 51 8B C8 F3  R2........+.Q...
    8080: A5 2B FA 2B F2 59 E2 F4 5A E8 05 00 C3 8A DD EB  .+.+.Y..Z.......
    8090: F8 8A C6 F6 E3 8B C8 8A C7 8A E0 32 F6 C1 E2 02  ...........2....
    80A0: 8B DA D1 E2 8B F1 2B D5 8B CB F3 AB 2B FA 4E 75  ......+.....+.Nu
    80B0: F7 C3 2E 8E 1E D1 03 89 0E 60 04 8A C5 24 60 A8  .........`...$`.
    80C0: 20 74 06 B9 00 1E E9 94 00 F6 06 87 04 01 0F 85   t..............
    80D0: 8B 00 80 3E 49 04 07 74 06 E8 19 FC 74 01 C3 F6  ...>I..t....t...
    80E0: 06 87 04 08 74 03 CD 42 C3 8A 36 85 04 8A D6 FE  ....t..B..6.....
    80F0: CA 38 CD 7E 1F 0A C9 74 64 8A E9 8A CE FE C9 EB  .8.~...td.......
    8100: 5C 38 D1 74 58 8A CE 80 FD 03 7C 04 8A E9 D0 ED  \8.tX.....|.....
    8110: FE C9 EB 49 80 F9 03 7E 44 8A E1 2A E5 0A E4 75  ...I...~D..*...u
    8120: 0A 38 CA 74 38 FE CA 38 CA 74 32 8A C5 0A C1 38  .8.t8..8.t2....8
    8130: F0 7E 0A 80 FC 02 7E 12 80 FD 02 7F C8 80 FC 03  .~....~.........
    8140: 7D BF 8A D6 FE CA 38 D1 74 13 8A CE FE C9 FE C9  }.....8.t.......
    8150: 8A E9 2A EC 80 FE 08 7F 04 FE C1 FE C5 B4 0A E8  ..*.............
    8160: 05 FE C3 2E 8E 1E D1 03 A2 62 04 32 E4 8B F0 F7  .........b.2....
    8170: 26 4C 04 A3 4E 04 8B C8 E8 7A FB 74 07 80 3E 49  &L..N....z.t..>I
    8180: 04 07 77 02 D1 F9 B4 0C E8 DC FD D1 E6 8B 84 50  ..w............P
    8190: 04 E8 27 FE C3 2E 8E 1E D1 03 8A 26 49 04 E8 F4  ..'........&I...
    81A0: 9B 74 07 C7 06 50 04 00 00 C3 E8 48 FB 74 0B 80  .t...P.....H.t..
    81B0: FC 07 74 06 77 08 E8 77 FC C3 E8 9F FB C3 80 FC  ..t.w..w........
    81C0: 13 7C 03 74 1F C3 E8 4E FA 8A D8 8B C1 E8 85 FA  .|.t...N........
    81D0: 8B 2E 4A 04 52 F6 26 85 04 F7 E5 8B F7 03 F0 5A  ..J.R.&........Z
    81E0: E8 90 FA C3 E8 30 FA 8A D8 8B C1 E8 67 FA C1 E7  .....0......g...
    81F0: 03 52 8B 2E 4A 04 C1 E5 03 F7 26 85 04 F7 E5 8B  .R..J.....&.....
    8200: F7 03 F0 5A E8 55 FE C3 2E 8E 1E D1 03 8A 26 49  ...Z.U........&I
    8210: 04 E8 E1 FA 74 0C 80 FC 07 74 07 77 40 80 FC 03  ....t....t.w@...
    8220: 7F 04 E8 53 FB C3 E8 1E FC C3 E8 EA F9 8A D8 8A  ...S............
    8230: C1 8A E6 FE C4 E8 1D FA 2B 3E 4A 04 C1 E7 03 52  ........+>J....R
    8240: F7 26 85 04 F7 26 4A 04 C1 E0 03 8B F7 2B F0 5A  .&...&J......+.Z
    8250: 8B 2E 4A 04 C1 E5 03 F7 DD E8 00 FE C3 80 FC 13  ..J.............
    8260: 7C 03 74 C6 C3 E8 AF F9 8A D8 8A C1 8A E6 FE C4  |.t.............
    8270: E8 E2 F9 52 8B 2E 4A 04 F7 26 85 04 F7 E5 2B FD  ...R..J..&....+.
    8280: 8B F7 2B F0 5A F7 DD E8 E9 F9 C3 2E 8E 1E D1 03  ..+.Z...........
    8290: 2E 8E 06 D7 03 E8 5D FA 74 11 80 3E 49 04 07 7C  ......].t..>I..|
    82A0: 18 2E 8E 06 D5 03 74 03 E9 B1 00 E8 49 FC 8B D8  ......t.....I...
    82B0: 26 8B 07 8B EC 89 46 1A C3 A1 50 04 E8 B7 FC 8B  &.....F...P.....
    82C0: F0 BB 08 00 2B E3 8B EC 80 3E 49 04 06 75 1F B9  ....+....>I..u..
    82D0: 04 00 26 8A 04 88 46 00 45 26 8A 84 00 20 88 46  ..&...F.E&... .F
    82E0: 00 45 83 C6 50 E2 EB B8 00 02 B2 80 EB 17 D1 E6  .E..P...........
    82F0: B9 04 00 E8 56 FC 81 C6 00 20 E8 4F FC 81 EE B0  ....V.... .O....
    8300: 1F E2 F0 EB E2 2B EB C4 3E 0C 01 32 F6 80 FB 0E  .....+..>..2....
    8310: 75 09 26 83 7D FE 10 75 02 B6 80 16 1F 8B F5 8B  u.&.}..u........
    8320: CB F6 C6 80 74 01 47 56 57 F3 A6 5F 5E 74 23 FE  ....t.GVW.._^t#.
    8330: C0 03 FB F6 C6 80 74 01 47 FE CA 75 E2 FE CC 74  ......t.G..u...t
    8340: 0F 2E 8E 1E D1 03 C4 3E 7C 00 B0 80 B2 80 EB CB  .......>|.......
    8350: 32 C0 8B E5 03 E3 8B EC 89 46 1A C3 80 3E 49 04  2........F...>I.
    8360: 13 7C 05 75 02 EB 5A C3 2E 8E 06 D3 03 E8 18 FC  .|.u..Z.........
    8370: 8B F0 8B 1E 85 04 2B E3 8B EC B8 05 08 B9 05 00  ......+.........
    8380: BA CE 03 80 3E 49 04 0F 72 1A F6 06 87 04 60 75  ....>I..r.....`u
    8390: 13 B4 0A F7 C6 01 00 75 02 B4 05 B0 07 EF B8 05  .......u........
    83A0: 18 B9 05 01 EF 51 8B CB 26 8A 04 F6 D0 88 46 00  .....Q..&.....F.
    83B0: 45 03 36 4A 04 E2 F1 58 EF B8 00 01 32 D2 E9 44  E.6J...X....2..D
    83C0: FF 2E 8E 06 D3 03 A1 50 04 8B D0 32 F6 52 8A C4  .......P...2.R..
    83D0: 32 E4 F7 26 4A 04 F7 26 85 04 5A 03 C2 8B F0 8B  2..&J..&..Z.....
    83E0: 1E 85 04 2B E3 8B EC 53 8B 3E 4A 04 4F C1 E7 03  ...+...S.>J.O...
    83F0: C1 E6 03 B9 08 00 32 E4 26 8A 04 D0 E4 0A C0 74  ......2.&......t
    8400: 03 80 CC 01 46 E2 F1 88 66 00 45 03 F7 4B 75 E3  ....F...f.E..Ku.
    8410: 5B B8 00 01 32 D2 E9 EC FE 33 ED EB 03 BD 01 00  [...2....3......
    8420: 2E 8E 1E D1 03 2E 8E 06 D7 03 8A 26 49 04 E8 C4  ...........&I...
    8430: F8 74 0F 2E 8E 06 D5 03 80 FC 07 74 05 7C 3D E9  .t.........t.|=.
    8440: 0B 02 8A E3 8B F0 8A DF 32 FF D1 E3 8B 87 50 04  ........2.....P.
    8450: 8B D0 A0 4A 04 F6 E4 32 F6 03 C2 8B F8 D1 E7 0A  ...J...2........
    8460: DB 74 0B D0 EB A1 4C 04 03 F8 FE CB 75 FA 8B C6  .t....L.....u...
    8470: 0B ED 75 03 F3 AB C3 AA 47 E2 FC C3 50 2E 8E 06  ..u.....G...P...
    8480: D7 03 A1 50 04 E8 EE FA 8B F8 A0 50 04 8A 26 4A  ...P.......P..&J
    8490: 04 8B E8 58 A8 80 74 08 24 7F C5 36 7C 00 EB 04  ...X..t.$..6|...
    84A0: C5 36 0C 01 8A FC 32 E4 C1 E0 03 03 F0 80 FF 06  .6....2.........
    84B0: 74 69 D1 E7 8A F3 B0 55 80 E3 03 F6 E3 8A D8 8A  ti.....U........
    84C0: F8 8B C5 50 B2 04 F6 C6 80 75 27 AC E8 55 FA 23  ...P.....u'..U.#
    84D0: C3 AB AC E8 4E FA 23 C3 26 89 85 FE 1F 83 C7 4E  ....N.#.&......N
    84E0: FE CA 75 E7 83 EE 08 81 EF 3E 01 58 E8 72 00 E2  ..u......>.X.r..
    84F0: D2 C3 AC E8 2E FA 23 C3 26 31 05 AC E8 25 FA 23  ......#.&1...%.#
    8500: C3 26 31 85 00 20 83 C7 50 FE CA 75 E5 83 EE 08  .&1.. ..P..u....
    8510: 81 EF 3E 01 58 E8 49 00 E2 A9 C3 8B C5 50 B2 04  ..>.X.I......P..
    8520: F6 C3 80 74 1F AC 26 30 05 AC 26 30 85 00 20 83  ...t..&0..&0.. .
    8530: C7 50 FE CA 7F EF 83 EE 08 81 EF 3F 01 58 E8 20  .P.........?.X. 
    8540: 00 E2 DA C3 AC AA AC 26 88 85 FF 1F 83 C7 4F FE  .......&......O.
    8550: CA 7F F1 83 EE 08 81 EF 3F 01 58 E8 03 00 E2 BD  ........?.X.....
    8560: C3 FE C0 38 E0 72 06 32 C0 81 C7 F0 00 C3 8A 16  ...8.r.2........
    8570: 85 04 F6 E2 8B F0 32 F6 8B EA 66 0F B6 06 51 04  ......2...f...Q.
    8580: F6 E2 66 0F B7 16 4A 04 83 FA 64 75 03 BA 68 00  ..f...J...du..h.
    8590: 83 FA 5A 75 03 BA 60 00 81 FA AF 00 75 03 BA B0  ..Zu..`.....u...
    85A0: 00 52 F7 E2 66 0F B7 F8 66 0F B6 06 50 04 66 03  .R..f...f...P.f.
    85B0: F8 66 C1 CF 10 03 FA 66 C1 C7 03 81 CF 00 FF 66  .f.....f.......f
    85C0: C1 C7 10 5A 8A E2 4A C1 E2 03 A0 50 04 50 C5 06  ...Z..J....P.P..
    85D0: 0C 01 03 F0 2E 8E 06 D3 03 58 57 51 50 9C FC 8B  .........XWQP...
    85E0: CD E8 3B 00 B5 08 AC 8A E0 8A C7 D0 E4 73 02 8A  ..;..........s..
    85F0: C3 26 88 05 66 47 FE CD 75 EF 66 03 FA E2 E2 9D  .&..fG..u.f.....
    8600: 58 59 5F 83 C7 08 FE C0 38 E0 72 0E 51 32 C0 8B  XY_.....8.r.Q2..
    8610: CD 49 03 FA 83 C7 08 E2 F9 59 2B F5 E2 BC C3 06  .I.......Y+.....
    8620: 52 33 C0 8E C0 66 C1 C7 10 8B C7 66 C1 C7 10 E8  R3...f.....f....
    8630: 63 97 74 16 38 E0 74 12 0F B6 D0 E8 61 C7 8A E0  c.t.8.t.....a...
    8640: 66 C1 C7 10 8B F8 66 C1 C7 10 5A 07 C3 80 FC 13  f.....f...Z.....
    8650: 7C 0B 0F 84 18 FF 80 FC 62 0F 84 11 FF E8 01 00  |.......b.......
    8660: C3 80 FC 11 75 06 80 E3 80 80 CB 0F 50 53 8A DF  ....u.......PS..
    8670: 32 FF D1 E3 8B 97 50 04 5B 2E 8E 06 D3 03 E8 07  2.....P.[.......
    8680: F9 8B F8 8B 2E 85 04 58 32 F6 52 8B 36 4A 04 56  .......X2.R.6J.V
    8690: 8A 26 85 04 C5 36 0C 01 80 FC 0E 75 09 83 7C FE  .&...6.....u..|.
    86A0: 10 75 03 B4 10 46 F6 E4 03 F0 B6 03 F6 C3 80 75  .u...F.........u
    86B0: 6D B2 C4 B8 02 0F EF 5A 58 50 52 4A 8A E0 57 51  m......ZXPRJ..WQ
    86C0: 51 57 8B CD 32 C0 AA 03 FA E2 FB 5F 47 FE C4 38  QW..2......_G..8
    86D0: D4 76 0A 32 E4 8B CD 49 03 FA 47 E2 FB 59 E2 E0  .v.2...I..G..Y..
    86E0: 59 5F BA C4 03 B0 02 8A E3 EF 5B 4B 5A 51 57 8B  Y_........[KZQW.
    86F0: CD AC 26 8A 25 AA 03 FB E2 F7 5F 47 2B F5 42 3B  ..&.%....._G+.B;
    8700: D3 76 0A 33 D2 8B CD 49 03 FB 47 E2 FB 59 E2 DD  .v.3...I..G..Y..
    8710: BA CE 03 B8 03 00 EF B2 C4 B8 02 0F EF C3 B2 CE  ................
    8720: B8 03 18 EF EB BC 2E 8E 1E D1 03 80 3E 63 04 B4  ............>c..
    8730: 74 0B BA CC 03 EC A8 01 75 04 CD 42 C3 C3 E8 D1  t.......u..B....
    8740: F8 0A FF 75 1C 8A E3 80 E4 1F 80 26 66 04 E0 08  ...u.......&f...
    8750: 26 66 04 E8 2D 00 8A 1E 66 04 80 E3 20 B1 05 D2  &f..-...f... ...
    8760: EB E8 91 F5 74 19 A0 66 04 24 DF 80 E3 01 74 02  ....t..f.$....t.
    8770: 0C 20 A2 66 04 24 10 0C 02 0A D8 E8 53 00 C3 E8  . .f.$......S...
    8780: 7E F8 C3 53 50 80 E3 0F 8A FB D0 E3 81 E3 10 07  ~..SP...........
    8790: 0A DF E8 60 F5 74 0E B4 00 8A C3 E8 2C F3 0B ED  ...`.t......,...
    87A0: 74 03 26 88 1D 8A C3 E8 0B 00 0B ED 74 04 26 88  t.&.........t.&.
    87B0: 5D 10 58 5B C3 8A E0 1E 2E 8E 1E D1 03 80 3E 49  ].X[..........>I
    87C0: 04 33 1F 7F 08 8A C4 B4 11 E8 FE F2 C3 E8 30 F8  .3............0.
    87D0: C3 9C FA E8 62 05 B2 C0 B9 03 00 B4 01 8A C4 EE  ....b...........
    87E0: 8A C3 EE 0B ED 74 04 47 26 88 1D FE C4 80 C3 02  .....t.G&.......
    87F0: E2 EB B0 20 EE 9D C3 2E 8E 1E D1 03 8A 26 49 04  ... .........&I.
    8800: E8 F2 F4 74 0A 80 FC 07 77 06 74 03 E8 C0 F5 C3  ...t....w.t.....
    8810: 80 FC 13 7C 03 74 4C C3 8A D8 E8 BB F7 BA CE 03  ...|.tL.........
    8820: B0 08 EF 2E 8E 1E D3 03 F6 C3 80 75 1C B2 C4 B8  ...........u....
    8830: 02 FF EF 8A 25 C6 05 00 8A E3 EF 8A 25 B4 FF 88  ....%.......%...
    8840: 25 EF B2 CE B8 08 FF EF C3 B8 03 18 EF B2 C4 B0  %...............
    8850: 02 8A E3 EF 8A 25 B4 FF 88 25 EF B2 CE B8 03 00  .....%...%......
    8860: EF EB E1 50 2E 8E 06 D3 03 A1 4A 04 C1 E0 03 F7  ...P......J.....
    8870: E2 03 C1 8B F8 58 26 88 05 C3 2E 8E 1E D1 03 8A  .....X&.........
    8880: 26 49 04 E8 6F F4 74 0F 80 FC 07 77 0B 74 08 E8  &I..o.t....w.t..
    8890: 5F F5 8B EC 89 46 1A C3 80 FC 13 7C 03 74 29 C3  _....F.....|.t).
    88A0: E8 35 F7 8A CC 2E 8E 1E D3 03 BA CE 03 32 FF B8  .5...........2..
    88B0: 04 03 EF D0 E7 8A 1D 22 D9 74 03 80 CF 01 FE CC  .......".t......
    88C0: 7D F0 8B EC 88 7E 1A C3 A1 4A 04 C1 E0 03 F7 E2  }....~...J......
    88D0: 03 C1 8B F8 2E 8E 1E D3 03 8A 05 8B EC 88 46 1A  ..............F.
    88E0: C3 2E 8E 1E D1 03 8A 3E 62 04 8A CF D0 E1 32 ED  .......>b.....2.
    88F0: BE 50 04 03 F1 8B 14 8A 0E 49 04 3C 0D 76 4A 2E  .P.......I.<.vJ.
    8900: 8E 06 D7 03 E8 EE F3 75 33 8A 1E 4A 04 8A F8 8A  .......u3..J....
    8910: C6 F6 E3 8A CA 03 C8 D1 E1 03 0E 4E 04 8B F9 8A  ...........N....
    8920: C7 AA D1 E9 41 FE C2 38 DA 73 59 89 14 8B 16 63  ....A..8.sY....c
    8930: 04 B0 0E 8A E5 EF 8A E1 FE C0 EF C3 2E 8E 06 D5  ................
    8940: 03 80 F9 07 74 C3 E9 83 00 75 04 32 D2 EB 0F 3C  ....t....u.2...<
    8950: 0A 75 1D 3A 36 84 04 75 03 E9 93 00 FE C6 89 14  .u.:6..u........
    8960: E8 92 F3 75 05 80 F9 07 7F 05 8B C2 E8 4C F6 C3  ...u.........L..
    8970: 3C 07 75 04 E8 8B 7D C3 3C 08 75 83 0A D2 74 DE  <.u...}.<.u...t.
    8980: FE CA EB DA 32 FF 32 D2 2B CB 3A 36 84 04 74 06  ....2.2.+.:6..t.
    8990: FE C6 03 CB EB 95 89 14 8B 16 63 04 B0 0E 8A E5  ..........c.....
    89A0: EF 8A E1 FE C0 EF 2B FB 2B FB 26 8A 65 02 50 8B  ......+.+.&.e.P.
    89B0: 3E 4E 04 8B F3 D1 E6 03 F7 A0 84 04 F6 E3 8B C8  >N..............
    89C0: 06 1F F3 A5 8B CB 58 B0 20 F3 AB C3 B9 01 00 B4  ......X. .......
    89D0: 0A E8 88 C5 FE C2 3A 16 4A 04 74 03 89 14 C3 32  ......:.J.t....2
    89E0: FF 32 D2 89 14 3A 36 84 04 74 2E FE C6 EB ED 89  .2...:6..t......
    89F0: 14 2E 8E 06 D7 03 E8 FC F2 74 0E 2E 8E 06 D5 03  .........t......
    8A00: 80 F9 07 74 04 32 FF EB 10 8B C2 E8 AD F5 8B F9  ...t.2..........
    8A10: D1 E7 4F 8B 1E 4A 04 EB 91 33 C9 8A 36 84 04 8A  ..O..J...3..6...
    8A20: 16 4A 04 FE CA B0 01 E9 70 F7 2E 8E 1E D1 03 F6  .J......p.......
    8A30: 06 87 04 08 74 03 CD 42 C3 E8 76 F6 8B EC C6 46  ....t..B..v....F
    8A40: 1B 00 C3 2E 8E 1E D1 03 8A DF 32 FF D1 E3 89 97  ..........2.....
    8A50: 50 04 D0 EB 38 1E 62 04 75 05 8B C2 E8 5C F5 C3  P...8.b.u....\..
    8A60: 2E 8E 1E D1 03 8A DF 32 FF D1 E3 8B 97 50 04 8B  .......2.....P..
    8A70: 0E 60 04 8B EC 89 4E 16 89 56 12 C3 2E 8E 1E D1  .`....N..V......
    8A80: 03 A0 87 04 24 80 0A 06 49 04 8A 26 4A 04 8A 3E  ....$...I..&J..>
    8A90: 62 04 8B EC 89 46 1A 89 5E 0E 89 4E 16 89 56 12  b....F..^..N..V.
    8AA0: C3 2E 8E 1E D1 03 3C 04 7F 1B 50 52 BA CC 03 EC  ......<...PR....
    8AB0: A8 01 5A 58 74 08 80 3E 63 04 D4 74 08 C3 80 3E  ..ZXt..>c..t...>
    8AC0: 63 04 B4 75 F8 3C 1C 73 F4 32 E4 8B E8 D1 E5 2E  c..u.<.s.2......
    8AD0: FF A6 6C 8A A4 8A C4 8A D6 8A 0B 8B 55 8A 55 8A  ..l.........U.U.
    8AE0: 55 8A 30 8B 48 8B 4C 8B 55 8A 55 8A 55 8A 55 8A  U.0.H.L.U.U.U.U.
    8AF0: 55 8A 55 8A 7A 8B 55 8A 7E 8B 99 8B 55 8A D8 8B  U.U.z.U.~...U...
    8B00: 55 8A E6 8B 01 8C 08 8C 14 8C 38 8C 80 3E 49 04  U.........8..>I.
    8B10: 13 74 15 E8 FC F4 8B C3 86 E0 E8 AD EF 0B ED 74  .t.............t
    8B20: 07 8A C7 32 FF 26 88 01 E8 D0 F4 C3 E8 E3 F4 8A  ...2.&..........
    8B30: C7 E8 81 FC 0B ED 74 F0 26 88 7D 11 EB EA 80 3E  ......t.&.}....>
    8B40: 49 04 13 74 E3 06 E8 C9 F4 1F 0B ED 74 07 8B F2  I..t........t...
    8B50: B9 11 00 F3 A4 8B F2 E8 DE 01 32 E4 B9 10 00 B2  ..........2.....
    8B60: C0 9C FA 8A C4 EE AC EE 9D FE C4 E2 F4 AC E8 44  ...............D
    8B70: FC EB B5 80 FB 01 77 B0 E8 80 F4 B2 C0 B0 30 E8  ......w.......0.
    8B80: 38 F1 24 F7 80 26 65 04 DF 80 FB 00 74 07 0C 08  8.$..&e.....t...
    8B90: 80 0E 65 04 20 EE EB 90 E8 9D 01 8A C3 B2 C0 E8  ..e. ...........
    8BA0: 18 F1 8B C8 EE B0 20 EE 8B EC 88 4E 0F E9 78 FF  ...... ....N..x.
    8BB0: B3 11 EB E4 8B FA E8 42 F4 B9 10 00 32 E4 B2 C0  .......B....2...
    8BC0: 8A C4 9C FA EE 42 EC 26 88 05 FE C4 4A EE 9D 47  .....B.&....J..G
    8BD0: E2 EE 9C FA B0 11 EE 42 EC 9D 26 88 05 E8 20 F4  .......B..&... .
    8BE0: EB 5A E8 CE 00 C3 8B FA 51 8B C3 26 8A 35 26 8A  .Z......Q..&.5&.
    8BF0: 6D 01 26 8A 4D 02 E8 CA 00 83 C7 03 43 59 E2 E8  m.&.M.......CY..
    8C00: C3 0A DB 75 1A E8 F3 F3 B2 C0 B0 30 E8 AB F0 24  ...u.......0...$
    8C10: 7F F6 C7 01 74 02 0C 80 B4 30 E8 AD EE EB 1D FE  ....t....0......
    8C20: CB 75 1C E8 D5 F3 B2 C0 B0 30 E8 8D F0 EE A8 80  .u.......0......
    8C30: 75 03 C0 E7 02 B4 34 8A C7 E8 8E EE E8 BC F3 C3  u.....4.........
    8C40: 8A C3 E8 D1 00 8B EC 89 4E 16 88 76 13 C3 8B FA  ........N..v....
    8C50: 51 8B C3 E8 C3 00 26 88 35 26 88 6D 01 26 88 4D  Q.....&.5&.m.&.M
    8C60: 02 83 C7 03 43 59 E2 E8 C3 BA C6 03 8A C3 EE C3  ....CY..........
    8C70: BA C6 03 EC 32 E4 8B EC 89 46 0E C3 E8 7C F3 B2  ....2....F...|..
    8C80: C0 B0 34 E8 34 F0 8A F8 EE B0 30 E8 2C F0 B3 01  ..4.4.....0.,...
    8C90: A8 80 75 05 B3 00 C0 EF 02 8B EC 89 5E 0E EB 9C  ..u.........^...
    8CA0: 51 8B C3 E8 73 00 E8 2A 00 8A C3 E8 52 00 43 59  Q...s..*....R.CY
    8CB0: E2 EE C3 F6 06 89 04 02 74 03 E8 16 00 8A C3 E8  ........t.......
    8CC0: 39 00 C3 F6 06 89 04 02 74 03 E8 06 00 8A C3 E8  9.......t.......
    8CD0: 2E 00 C3 50 B0 1E F6 E6 50 B0 3B F6 E5 50 B0 0B  ...P....P.;..P..
    8CE0: F6 E1 59 03 C1 59 03 C1 B1 64 F6 F1 80 FC 32 7C  ..Y..Y...d....2|
    8CF0: 02 FE C0 8A F0 8A E8 8A C8 58 C3 52 E8 39 00 5A  .........X.R.9.Z
    8D00: 53 8B DA BA C8 03 9C FA EE 42 8A C7 EE 8A C5 EE  S........B......
    8D10: 8A C1 EE 9D 5B C3 E8 1F 00 53 9C FA BA C7 03 EE  ....[....S......
    8D20: 42 42 EC 8A F8 EB 00 EB 00 EC 8A E8 EB 00 EB 00  BB..............
    8D30: EC 8A C8 8A F7 9D 5B C3 50 51 E8 BE F2 B9 FF 7F  ......[.PQ......
    8D40: EC A8 08 75 02 E2 F9 59 58 C3 2E 8E 1E D1 03 8B  ...u...YX.......
    8D50: F8 24 0F 81 E7 F0 00 C1 EF 03 83 FF 06 7F 18 2E  .$..............
    8D60: FF A5 FC 8C 04 8D 19 8D B7 8D 13 8E 3C 03 74 08  ............<.t.
    8D70: 3C 04 7F 03 E8 CF 01 C3 BA C4 03 B0 03 8A E3 EF  <...............
    8D80: C3 3C 04 77 F2 50 53 50 52 8B 16 63 04 B0 07 E8  .<.w.PSPR..c....
    8D90: 28 EF 8A E0 D0 EC 80 E4 01 A8 40 74 03 80 CC 02  (.........@t....
    8DA0: B0 12 E8 15 EF 40 A3 85 04 B0 09 E8 0C EF A8 80  .....@..........
    8DB0: 74 04 D1 2E 85 04 A1 85 04 8B D0 3D F4 01 73 1B  t..........=..s.
    8DC0: BA E0 01 3D C2 01 73 13 BA 90 01 3D 7C 01 73 0B  ...=..s....=|.s.
    8DD0: BA 5E 01 3D 4A 01 73 03 BA C8 00 89 16 85 04 5A  .^.=J.s........Z
    8DE0: 58 C6 06 84 04 FF E8 5D 01 5B 58 8A DF 32 FF 0A  X......].[X..2..
    8DF0: C0 74 0E B3 0E 3C 01 74 08 B3 08 3C 02 74 02 B3  .t...<.t...<.t..
    8E00: 10 8A CB 8A E9 81 E9 01 02 80 F9 08 7E 04 81 E9  ............~...
    8E10: 01 01 87 1E 85 04 53 E8 98 F2 5B E8 85 02 C3 0A  ......S...[.....
    8E20: C0 74 11 FE C8 74 1A FE C8 74 38 FE C8 74 3C FE  .t...t...t8..t<.
    8E30: C8 74 40 C3 89 2E 7C 00 8C 06 7E 00 C3 8C C8 8E  .t@...|...~.....
    8E40: C0 FE CA 0A DB 74 07 32 FF 2E 8A 97 F7 8D 89 0E  .....t.2........
    8E50: 85 04 88 16 84 04 89 2E 0C 01 8C 06 0E 01 C3 00  ................
    8E60: 0D 18 2A E8 09 03 B9 0E 00 EB D6 BD 44 5D B9 08  ..*.........D]..
    8E70: 00 EB CA BD 57 65 B9 10 00 EB C2 0A C0 75 BD 8B  ....We.......u..
    8E80: 0E 85 04 8A 16 84 04 80 FF 07 77 35 80 FF 01 77  ..........w5...w
    8E90: 10 0A FF 75 06 C4 2E 7C 00 EB 26 C4 2E 0C 01 EB  ...u...|..&.....
    8EA0: 20 80 FF 02 75 0B 8C CD 8E C5 2E 8B 2E 36 76 EB   ...u........6v.
    8EB0: 10 0E 07 8A DF 32 FF 80 EB 02 D1 E3 2E 8B AF 6A  .....2.........j
    8EC0: 8E 8B C5 8B EC 89 4E 16 89 56 12 89 46 0A 8C 46  ......N..V..F..F
    8ED0: 1E C3 57 65 44 5D 44 61 44 65 57 65 57 75 53 06  ..WeD]DaDeWeWuS.
    8EE0: 8A 26 49 04 E8 D2 C2 26 8A 47 02 26 8A 67 33 F6  .&I....&.G.&.g3.
    8EF0: C4 01 74 22 BD 57 65 3C 10 7D 0E E8 71 02 8C 06  ..t".We<.}..q...
    8F00: 0E 01 3C 0E 7D 07 BD 44 5D 8C 0E 0E 01 89 2E 0C  ..<.}..D].......
    8F10: 01 E8 10 01 EB 2D B4 84 3C 10 7D 13 B4 81 3C 0E  .....-..<.}...<.
    8F20: 74 0D 7F 15 B4 02 3C 08 74 05 80 CC 80 EB 0A 26  t.....<.t......&
    8F30: F6 47 05 01 74 03 80 E4 7F 86 C4 32 DB E8 06 00  .G..t......2....
    8F40: E8 C9 01 07 5B C3 8B F8 8B F2 BA CE 03 EC B8 05  ....[...........
    8F50: 00 EF B8 06 04 EF B2 C4 EC B8 02 04 EF B8 04 07  ................
    8F60: EF 8B D6 8B C7 50 24 7F 0A C0 74 22 0E 07 33 D2  .....P$...t"..3.
    8F70: B9 00 01 3C 04 75 07 B7 10 BD 57 65 EB 10 FE C8  ...<.u....We....
    8F80: 75 07 B7 0E E8 E8 01 EB 05 B7 08 BD 44 5D E8 2D  u...........D].-
    8F90: 00 58 A8 80 74 00 BA C4 03 B8 02 03 EF B8 04 02  .X..t...........
    8FA0: EF B2 CC EC A8 01 B8 06 0E 75 02 B4 0A B2 CE 50  .........u.....P
    8FB0: EC 58 EF B0 04 EE 32 C0 EE B8 05 10 EF C3 FC 0B  .X....2.........
    8FC0: C9 75 01 C3 80 FF 0E 75 0A 26 83 7E FE 10 75 03  .u.....u.&.~..u.
    8FD0: 80 CD 80 1E 06 1F 2E 8E 06 D3 03 8B FA C1 E7 05  ................
    8FE0: B0 40 53 80 E3 03 F6 E3 5B F6 C3 04 74 02 04 20  .@S.....[...t.. 
    8FF0: 86 E0 8B D0 03 FA 8B F5 E3 28 32 C0 86 FB 32 FF  .........(2...2.
    9000: 51 F6 C5 80 74 01 46 8B CB F3 A4 83 FB 20 74 07  Q...t.F...... t.
    9010: B9 20 00 2B CB F3 AA 59 F6 C5 80 74 01 46 FE C9  . .+...Y...t.F..
    9020: 75 DE 1F C3 8A 26 49 04 50 06 57 C4 3E A8 04 26  u....&I.P.W.>..&
    9030: C4 7D 0C 8C C5 0B EF 74 30 8B EF 83 C7 07 26 8A  .}.....t0.....&.
    9040: 05 3C FF 74 24 38 E0 74 03 47 EB F2 8B FD 26 8A  .<.t$8.t.G....&.
    9050: 05 FE C8 A2 84 04 26 8B 45 01 A3 85 04 26 C4 7D  ......&.E....&.}
    9060: 03 89 3E 0C 01 8C 06 0E 01 5F 07 58 C3 26 F6 47  ..>......_.X.&.G
    9070: 33 01 74 01 C3 C4 1E A8 04 26 C4 5F 08 8C C0 0B  3.t......&._....
    9080: C3 74 1F BF 0B 00 26 8A 01 3C FF 74 15 47 38 06  .t....&..<.t.G8.
    9090: 49 04 75 F2 26 8A 07 32 E4 87 06 85 04 8B D8 E8  I.u.&..2........
    90A0: 01 00 C3 8B 16 63 04 8A 26 85 04 FE CC 80 E4 1F  .....c..&.......
    90B0: 9C FA 80 FA D4 74 0B B0 14 EE 42 EC 24 E0 0A C4  .....t....B.$...
    90C0: EE 4A B0 09 EE 42 EC 24 E0 0A C4 EE 9D 8A C8 8B  .J...B.$........
    90D0: C3 8A 16 85 04 F6 F2 80 3E 84 04 FF 75 07 A2 84  ........>...u...
    90E0: 04 FE 0E 84 04 F6 E2 F6 C1 80 74 02 D1 E0 48 8A  ..........t...H.
    90F0: E0 B0 12 8B 16 63 04 EF A0 4A 04 8A 26 84 04 FE  .....c...J..&...
    9100: C4 F6 E4 D1 E0 05 00 01 A3 4C 04 C3 8A 26 49 04  .........L...&I.
    9110: 50 06 57 C4 3E A8 04 26 C4 7D 08 8C C5 0B EF 74  P.W.>..&.}.....t
    9120: 4A 8B EF 83 C7 0B 26 8A 05 3C FF 74 3E 38 E0 74  J.....&..<.t>8.t
    9130: 03 47 EB F2 8B FD 26 8A 3D 26 8A 5D 01 26 8B 4D  .G....&.=&.].&.M
    9140: 02 26 8B 55 04 26 8A 45 0A 3C FF 74 02 FE C8 50  .&.U.&.E.<.t...P
    9150: A0 84 04 FE C0 F6 26 85 04 A3 85 04 58 A2 84 04  ......&.....X...
    9160: 26 C4 7D 06 8B EF 32 C0 E8 DB FD 5F 07 58 C3 50  &.}...2...._.X.P
    9170: 53 51 52 2E A1 DB 03 0B C0 74 09 2E 8B 2E 36 76  SQR......t....6v
    9180: 0E 07 EB 08 B8 30 11 B7 02 E8 D0 BD 5A 59 5B 58  .....0......ZY[X
    9190: C3 3C 04 7C 01 C3 E3 FD 53 2E 8E 1E D1 03 86 FB  .<.|....S.......
    91A0: 32 FF D1 E3 8B FB 81 C7 50 04 8B 35 5B 89 15 56  2.......P..5[..V
    91B0: 8B F0 51 53 26 8A 46 00 45 3C 0D 7F 1F 75 04 32  ..QS&.F.E<...u.2
    91C0: D2 EB 40 3C 0A 74 32 3C 07 75 05 E8 34 75 EB 62  ..@<.t2<.u..4u.b
    91D0: 3C 08 75 08 0A D2 74 5A FE CA EB 27 F7 C6 02 00  <.u...tZ...'....
    91E0: 74 05 26 8A 5E 00 45 B9 01 00 B4 09 E8 6D BD FE  t.&.^.E......m..
    91F0: C2 3A 16 4A 04 72 0C 32 D2 89 15 3A 36 84 04 73  .:.J.r.2...:6..s
    9200: 06 FE C6 89 15 EB 2B 50 E8 EA EA 75 08 B8 00 08  ......+P...u....
    9210: E8 49 BD EB 09 80 3E 49 04 07 74 F1 32 E4 86 3E  .I....>I..t.2..>
    9220: 62 04 53 8A FC 55 E8 25 00 5D 5B 86 3E 62 04 58  b.S..U.%.][.>b.X
    9230: 8B 15 5B 59 E2 15 5A F7 C6 01 00 75 02 89 15 8B  ..[Y..Z....u....
    9240: 05 3A 3E 62 04 75 03 E8 71 ED C3 E9 64 FF 33 C9  .:>b.u..q...d.3.
    9250: 8A 36 84 04 8A 16 4A 04 FE CA B8 01 06 E8 FC BC  .6....J.........
    9260: C3 2E 8E 1E D1 03 0A C0 75 0D E8 18 00 8B EC 89  ........u.......
    9270: 5E 0E C6 46 1A 1A C3 3C 01 75 09 E8 41 00 8B EC  ^..F...<.u..A...
    9280: C6 46 1A 1A C3 A0 8A 04 BF F7 92 2E 3A 05 72 04  .F..........:.r.
    9290: BB FF FF C3 32 E4 D1 E0 03 F8 2E 8B 5D 04 0A DB  ....2.......]...
    92A0: 74 05 0A FF 75 04 C3 86 FB C3 A0 10 04 24 30 3C  t...u........$0<
    92B0: 30 74 06 F6 C3 01 75 EF C3 F6 C3 01 74 E9 C3 BF  0t....u.....t...
    92C0: F7 92 2E 8A 0D 32 C0 83 C7 04 2E 3B 1D 74 12 86  .....2.....;.t..
    92D0: FB 2E 3B 1D 74 0B 83 C7 02 FE C0 38 C8 7E EB B0  ..;.t......8.~..
    92E0: FF A2 8A 04 C3 BB 08 00 F6 06 89 04 02 74 0E BB  .............t..
    92F0: 07 00 BA CC 03 EC A8 01 74 18 BB 08 00 BA B4 03  ........t.......
    9300: E8 1C ED 74 21 B7 01 E8 C9 E9 80 FA D4 74 17 86  ...t!........t..
    9310: FB C3 BA D4 03 E8 07 ED 74 0C B7 02 E8 B4 E9 80  ........t.......
    9320: FA B4 74 02 86 FB C3 0F 08 0F 08 0F 08 0F 08 03  ..t.............
    9330: 01 03 01 01 01 00 08 01 01 01 01 01 01 01 01 0F  ................
    9340: 01 0F 08 0F 04 00 02 0F 02 01 01 0F 01 FF 01 FF  ................
    9350: E0 0F 00 00 00 00 07 02 08 FF 0E 00 00 3F 00 10  .............?..
    9360: 01 08 00 00 00 00 01 00 02 02 01 00 04 04 01 00  ................
    9370: 05 02 05 00 06 01 06 05 06 00 08 01 08 00 07 02  ................
    9380: 07 06 07 00 55 02 34 00 90 00 D2 00 00 00 00 00  ....U.4.........
    9390: 00 00 5F 57 C3 90 50 66 52 E8 F4 FF FF FF 81 EF  .._W..PfR.......
    93A0: 10 00 00 00 2E 8B 07 66 BA F8 0C EF 66 BA FC 0C  .......f....f...
    93B0: ED 32 C0 66 8B F8 66 5A 58 C3 66 B8 4F 03 66 52  .2.f..fZX.f.O.fR
    93C0: 66 56 53 57 50 0A FF 75 44 E8 C8 FF FF FF 66 33  fVSWP..uD.....f3
    93D0: F6 66 BB D0 05 E8 00 01 00 00 C1 E8 10 F6 C4 40  .f.............@
    93E0: 75 2B 66 81 E2 FF 02 66 D1 E2 66 8B C2 66 40 C1  u+f....f..f..f@.
    93F0: E0 10 66 8B C2 66 BB 13 00 E8 E8 00 00 00 66 BB  ..f..f........f.
    9400: 12 00 E8 DF 00 00 00 66 58 32 E4 66 50 58 5F 5B  .......fX2.fPX_[
    9410: 66 5E 66 5A C3 90 66 B8 4F 03 52 51 53 57 66 56  f^fZ..f.O.RQSWfV
    9420: 50 8A FB 80 E3 7F 0A DB 75 26 E8 67 FF FF FF C1  P.......u&.g....
    9430: E2 10 66 8B D1 C1 E2 02 66 BE 00 00 E8 C7 00 00  ..f.....f.......
    9440: 00 66 BE 00 02 E8 BE 00 00 00 66 58 32 E4 66 50  .f........fX2.fP
    9450: 58 66 5E 5F 5B 59 5A C3 66 B8 4F 03 66 51 57 56  Xf^_[YZ.f.O.fQWV
    9460: 53 52 50 8A FB 80 E3 7F 0A DB 75 39 8A DA 57 5A  SRP.......u9..WZ
    9470: E8 21 FF FF FF 66 33 F6 66 53 66 BB D0 05 E8 57  .!...f3.fSf....W
    9480: 00 00 00 80 E4 01 66 5B 80 E7 FE 0A FC 66 BE 00  ......f[.....f..
    9490: 00 E8 DE 00 00 00 66 BE 00 02 E8 D5 00 00 00 66  ......f........f
    94A0: 58 32 E4 66 50 58 5A 5B 5E 5F 66 59 C3 90 53 50  X2.fPXZ[^_fY..SP
    94B0: 51 F6 C7 80 74 20 66 BB 9C 1B E8 1B 00 00 00 A8  Q...t f.........
    94C0: 01 74 13 66 B9 FF FF 66 BB A3 1B E8 0A 00 00 00  .t.f...f........
    94D0: A8 01 75 02 E2 F1 59 58 5B C3 66 52 E8 11 00 00  ..u...YX[.fR....
    94E0: 00 ED 66 5A C3 90 66 52 E8 05 00 00 00 EF 66 5A  ..fZ..fR......fZ
    94F0: C3 90 66 8B D7 50 33 C0 66 8B C3 66 03 C6 C1 E0  ..f..P3.f..f....
    9500: 02 EF 66 83 C2 04 58 C3 52 E8 A0 FF FF FF 81 E2  ..f...X.R.......
    9510: FF FF FF 02 66 BB 04 1A E8 BD FF FF FF 25 00 00  ....f........%..
    9520: 00 FD 03 C2 66 25 00 F0 E8 B9 FF FF FF 66 BB 05  ....f%.......f..
    9530: 1A E8 B0 FF FF FF 66 81 E2 FF 0F 66 BB 01 1A E8  ......f....f....
    9540: 96 FF FF FF 24 03 8A C8 66 D3 EA 66 BB 06 1A E8  ....$...f..f....
    9550: 86 FF FF FF 66 03 C2 66 BB 0D 1A E8 86 FF FF FF  ....f..f........
    9560: 66 8B C2 24 FC C1 E0 10 66 BB 5C 1B E8 75 FF FF  f..$....f.\..u..
    9570: FF 5A C3 90 52 66 53 66 51 E8 30 FF FF FF 33 C0  .Z..RfSfQ.0...3.
    9580: 8A C3 66 53 66 BB 79 1A E8 59 FF FF FF 66 5B 66  ..fSf.y..Y...f[f
    9590: 49 66 81 E1 FF 00 66 41 32 C0 66 53 66 BB 78 1A  If....fA2.fSf.x.
    95A0: E8 41 FF FF FF 66 5B 26 8A 42 02 C1 E0 0A 26 8A  .A...f[&.B....&.
    95B0: 42 01 C1 E0 0A 26 8A 02 C1 E0 02 F6 C7 01 75 03  B....&........u.
    95C0: C1 E0 02 66 53 66 BB 7C 1A E8 18 FF FF FF 66 5B  ...fSf.|......f[
    95D0: 83 C2 04 E2 D2 66 59 66 5B 5A C3 00 0D 39 00 39  .....fYf[Z...9.9
    95E0: 00 39 00 39 EB 38 EB 38 EB 38 EB 38 2D 35 A4 35  .9.9.8.8.8.8-5.5
    95F0: CE 35 0F 37 0E 37 0E 37 54 37 B9 37 E9 37 A6 38  .5.7.7.7T7.7.7.8
    9600: CF 38 CF 38 46 37 39 37 39 37 39 37 39 37 39 37  .8.8F79797979797
    9610: 54 37 B9 37 E9 37 A6 38 D4 38 1A 39 CF 38 CF 38  T7.7.7.8.8.9.8.8
    9620: FF FF FF FF FF FF 00 00 FF FF 00 00 FF FF 00 00  ................
    9630: FF 00 00 00 FF 00 00 00 FF 00 00 00 FF 00 00 00  ................
    9640: 00 00 08 10 00 08 10 18 00 08 10 18 31 33 01 31  ............13.1
    9650: 33 02 3F 47 03 1F 47 03 56 34 03 0A 34 03 32 33  3.?G..G.V4..4.23
    9660: 04 4B 33 04 5B 33 04 31 33 03 00 00 00 00 DE 3A  .K3.[3.13......:
    9670: 00 02 DE 3A 01 02 DE 3A 02 02 DE 3A 03 02 DE 3A  ...:...:...:...:
    9680: 04 02 DE 3A 05 02 D8 3C 00 02 D8 3C 01 02 D8 3C  ...:...<...<...<
    9690: 02 02 D8 3C 03 02 D8 3C 04 02 D8 3C 05 02 0D 3D  ...<...<...<...=
    96A0: 00 02 0D 3D 01 02 0D 3D 02 02 0D 3D 03 02 0D 3D  ...=...=...=...=
    96B0: 04 02 0D 3D 05 02 48 3F 00 02 48 3F 01 02 48 3F  ...=..H?..H?..H?
    96C0: 02 02 48 3F 03 02 48 3F 04 02 48 3F 05 02 48 3F  ..H?..H?..H?..H?
    96D0: 00 02 48 3F 01 02 48 3F 02 02 48 3F 03 02 48 3F  ..H?..H?..H?..H?
    96E0: 04 02 48 3F 05 02 0F 3E 00 02 0F 3E 01 02 0F 3E  ..H?...>...>...>
    96F0: 02 02 0F 3E 03 02 0F 3E 04 02 0F 3E 05 02 4B 3E  ...>...>...>..K>
    9700: 00 02 4B 3E 01 02 4B 3E 02 02 4B 3E 03 02 4B 3E  ..K>..K>..K>..K>
    9710: 04 02 4B 3E 05 02 BC 3D 00 02 BC 3D 01 02 BC 3D  ..K>...=...=...=
    9720: 02 02 BC 3D 03 02 BC 3D 04 02 BC 3D 05 02 F0 3D  ...=...=...=...=
    9730: 00 02 F0 3D 01 02 F0 3D 02 02 F0 3D 03 02 F0 3D  ...=...=...=...=
    9740: 04 02 F0 3D 05 02 A0 41 00 00 D3 41 01 00 D3 41  ...=...A...A...A
    9750: 02 00 C0 41 00 00 AE 40 00 02 A7 3E 00 02 A7 3E  ...A...@...>...>
    9760: 01 02 A7 3E 02 02 A7 3E 03 02 A7 3E 04 02 A7 3E  ...>...>...>...>
    9770: 05 02 C6 40 00 02 1B 43 05 00 1B 43 01 00 1B 43  ...@...C...C...C
    9780: 00 00 1B 43 02 00 5C 43 00 00 5C 43 02 00 A1 43  ...C..\C..\C...C
    9790: 00 00 31 40 00 02 31 40 01 02 31 40 02 02 31 40  ..1@..1@..1@..1@
    97A0: 03 02 31 40 04 02 31 40 05 02 ED 41 00 00 15 42  ..1@..1@...A...B
    97B0: 00 00 96 42 00 00 11 43 00 00 F5 3E 00 02 F5 3E  ...B...C...>...>
    97C0: 01 02 F5 3E 02 02 F5 3E 03 02 F5 3E 04 02 F5 3E  ...>...>...>...>
    97D0: 05 02 10 43 00 01 10 43 00 01 14 3C 00 02 14 3C  ...C...C...<...<
    97E0: 01 02 14 3C 02 02 14 3C 03 02 14 3C 04 02 14 3C  ...<...<...<...<
    97F0: 05 02 35 42 00 00 11 43 00 00 11 43 00 00 11 43  ..5B...C...C...C
    9800: 00 00 46 41 00 00 38 3D 00 02 38 3D 01 02 38 3D  ..FA..8=..8=..8=
    9810: 02 02 38 3D 03 02 38 3D 04 02 38 3D 05 02 67 3D  ..8=..8=..8=..g=
    9820: 00 02 67 3D 01 02 67 3D 02 02 67 3D 03 02 67 3D  ..g=..g=..g=..g=
    9830: 04 02 67 3D 05 02 9D 3D 00 02 9D 3D 01 02 9D 3D  ..g=...=...=...=
    9840: 02 02 9D 3D 03 02 9D 3D 04 02 9D 3D 05 02 58 42  ...=...=...=..XB
    9850: 00 00 7B 42 00 00 39 3E 01 02 39 3E 02 02 95 3E  ..{B..9>..9>...>
    9860: 01 02 95 3E 02 02 A6 00 01 01 48 AB CE AB 26 AC  ...>......H...&.
    9870: FE C8 2E D3 DE AC 00 00 08 C9 00 00 EA AD EA AE  ................
    9880: 96 B0 B8 B1 06 B6 92 B7 9A B7 A4 D0 D6 D0 AE BB  ................
    9890: C0 BC E2 BC 00 00 00 00 00 00 00 00 00 00 00 00  ................
    98A0: 70 BD 00 00 00 00 E6 DC 7C DD 00 00 30 C0 A8 C0  p.......|...0...
    98B0: 1C C1 00 00 5A C1 86 C1 00 00 A8 C1 C2 C1 42 C2  ....Z.........B.
    98C0: 08 C3 B8 C4 06 C5 00 E3 E0 C5 1E C6 EC C6 00 00  ................
    98D0: EC DF 40 C8 30 E2 22 C9 06 DF 54 CB B4 CB BE CB  ..@.0."...T.....
    98E0: C8 CB 04 CC B4 CD 96 D5 BC CD 0C CF 0C D0 00 00  ................
    98F0: E6 D0 00 00 BE E1 00 00 24 B8 5C BB 00 00 00 00  ........$.\.....
    9900: 00 00 C0 D5 06 D7 3E DA 8A DC AA D2 4A 00 01 01  ......>.....J...
    9910: 00 00 00 00 00 00 EE 98 D2 99 3E 9A 72 9A 00 00  ..........>.r...
    9920: BA AA 00 00 C0 9A 9C 9B A8 9B C8 9B 70 9C 7C 9C  ............p.|.
    9930: 00 00 A2 AA 00 00 B0 9F 00 00 00 00 B6 9F E8 A3  ................
    9940: 14 A1 00 00 16 AA 3E AA 66 A4 00 00 00 00 C8 A8  ......>.f.......
    9950: D4 A9 00 00 F2 AA E4 00 01 02 4E 0C 80 02 C0 00  ..........N.....
    9960: 90 01 2D 00 20 00 40 00 01 00 03 00 00 00 00 00  ..-. .@.........
    9970: 00 00 02 00 E6 55 D6 09 80 02 A0 00 E0 01 2D 00  .....U........-.
    9980: 10 00 60 00 0A 00 02 00 00 00 00 00 08 08 06 00  ..`.............
    9990: 12 3C A0 0F 20 03 00 01 58 02 1C 00 28 00 80 00  .<.. ...X...(...
    99A0: 01 00 04 00 00 00 00 00 00 00 00 00 6A 3C 64 19  ............j<d.
    99B0: 00 04 40 01 00 03 26 00 18 00 88 00 03 00 06 00  ..@...&.........
    99C0: 00 00 00 00 00 00 06 00 55 3C 30 2A 00 05 08 02  ........U<0*....
    99D0: C0 03 28 00 60 00 70 00 01 00 03 00 00 00 00 00  ..(.`.p.........
    99E0: 00 00 00 00 E9 3C 30 2A 00 05 98 01 00 04 2A 00  .....<0*......*.
    99F0: 30 00 70 00 01 00 03 00 00 00 00 00 00 00 00 00  0.p.............
    9A00: EA 3C 8F 2F 78 05 D0 01 1A 04 27 00 58 00 90 00  .<./x.....'.X...
    9A10: 03 00 04 00 00 00 00 00 00 00 02 00 EB 3C 48 3F  .............<H?
    9A20: 40 06 30 02 B0 04 32 00 40 00 C0 00 01 00 03 00  @.0...2.@.......
    9A30: 00 00 00 00 00 00 00 00 EC 3C 6C 00 02 02 00 00  .........<l.....
    9A40: 32 0F 30 75 00 00 30 75 00 00 00 00 00 00 40 7E  2.0u..0u......@~
    9A50: 05 00 00 00 00 00 00 00 00 00 C0 27 09 00 00 00  ...........'....
    9A60: 00 00 92 F4 00 00 00 00 84 03 9A 0B 70 17 00 00  ............p...
    9A70: 00 00 28 88 04 00 00 00 00 00 00 00 00 00 00 00  ..(.............
    9A80: 00 00 40 9C C4 09 10 27 52 03 1F 40 10 27 10 27  ..@....'R..@.'.'
    9A90: 10 27 00 00 00 00 00 00 00 00 00 00 00 00 00 00  .'..............
    9AA0: 00 00 00 00 00 00 34 00 02 01 00 00 00 00 00 2A  ......4........*
    9AB0: 00 2A 00 00 2A 2A 2A 00 00 2A 00 2A 2A 15 00 2A  .*..***..*.**..*
    9AC0: 2A 2A 15 15 15 15 15 3F 15 3F 15 15 3F 3F 3F 15  **.....?.?..???.
    9AD0: 15 3F 15 3F 3F 3F 15 3F 3F 3F 4E 00 01 03 00 00  .?.???.???N.....
    9AE0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9AF0: 00 00 00 00 00 00 06 00 00 00 00 00 20 00 00 00  ............ ...
    9B00: 00 00 1D 3C 01 00 00 00 00 00 00 48 C8 00 07 5A  ...<.......H...Z
    9B10: 5A 07 7D 00 00 00 00 00 00 00 00 00 00 00 00 00  Z.}.............
    9B20: 00 00 00 00 00 00 00 00 DC 00 01 01 68 48 6A 48  ............hHjH
    9B30: 6B 48 69 48 68 48 6A 48 6B 48 69 48 90 00 00 00  kHiHhHjHkHiH....
    9B40: 00 08 08 08 08 00 00 6C 48 6E 48 6F 48 6D 48 6C  .......lHnHoHmHl
    9B50: 48 6E 48 6F 48 6D 48 91 00 00 00 00 08 08 08 08  HnHoHmH.........
    9B60: 00 00 70 48 72 48 73 48 71 48 70 48 72 48 73 48  ..pHrHsHqHpHrHsH
    9B70: 71 48 92 00 00 00 00 08 08 08 08 00 00 74 48 76  qH...........tHv
    9B80: 48 77 48 75 48 74 48 76 48 77 48 75 48 93 00 00  HwHuHtHvHwHuH...
    9B90: 00 00 08 08 08 08 00 00 78 48 7A 48 7B 48 79 48  ........xHzH{HyH
    9BA0: 78 48 7A 48 7B 48 79 48 94 00 00 00 00 08 08 08  xHzH{HyH........
    9BB0: 08 00 00 7C 48 7E 48 7F 48 7D 48 7C 48 7E 48 7F  ...|H~H.H}H|H~H.
    9BC0: 48 7D 48 95 00 00 00 00 08 08 08 08 00 00 98 48  H}H............H
    9BD0: 9A 48 9B 48 99 48 98 48 9A 48 9B 48 99 48 96 00  .H.H.H.H.H.H.H..
    9BE0: 00 00 00 01 01 01 01 00 00 80 48 82 48 83 48 81  ..........H.H.H.
    9BF0: 48 80 48 82 48 83 48 81 48 97 00 00 00 00 08 08  H.H.H.H.H.......
    9C00: 08 08 00 00 0C 00 01 05 E0 FF 3F 00 20 00 20 00  ..........?. . .
    9C10: 20 00 01 01 8D 48 00 01 8D 48 08 02 8D 48 10 03   ....H...H...H..
    9C20: 8D 48 18 04 8D 48 1A 05 8D 48 1C 06 83 01 05 3D  .H...H...H.....=
    9C30: A8 00 01 01 00 01 02 E6 01 01 02 12 03 01 02 6A  ...............j
    9C40: 05 01 02 55 07 01 02 EA 10 01 06 12 11 01 16 12  ...U............
    9C50: 13 01 06 6A 14 01 16 6A 16 01 06 55 17 01 16 55  ...j...j...U...U
    9C60: 19 01 06 EA 1A 01 16 EA 63 01 02 E9 65 01 16 E9  ........c...e...
    9C70: 66 01 0A E9 21 01 0A 12 22 01 0A 6A 23 01 0A 55  f...!..."..j#..U
    9C80: 24 01 0A EA 43 01 02 EB 45 01 16 EB 46 01 0A EB  $...C...E...F...
    9C90: 73 01 02 EC 75 01 16 EC 76 01 0A EC D1 01 02 70  s...u...v......p
    9CA0: D2 01 16 70 D4 01 0A 70 D7 01 02 71 D8 01 16 71  ...p...p...q...q
    9CB0: D9 01 0A 71 E1 01 02 72 E2 01 16 72 E4 01 0A 72  ...q...r...r...r
    9CC0: E7 01 02 73 E8 01 16 73 E9 01 0A 73 F3 01 02 74  ...s...s...s...t
    9CD0: F5 01 16 74 F6 01 0A 74 0C 00 02 01 01 08 04 08  ...t...t........
    9CE0: 09 01 02 08 34 03 07 01 00 4D 00 4D 06 00 00 7F  ....4....M.M....
    9CF0: 24 00 00 19 00 00 00 00 80 02 01 40 0D 03 00 E8  $..........@....
    9D00: 6E 03 00 32 00 32 00 4D 00 94 02 8B 02 00 00 B5  n..2.2.M........
    9D10: 01 3B 01 77 00 F9 00 D1 01 F9 02 00 00 C4 02 00  .;.w............
    9D20: 00 13 03 2D 03 00 00 00 00 00 00 00 00 00 00 00  ...-............
    9D30: 00 01 02 00 00 00 00 00 00 00 00 08 00 00 00 00  ................
    9D40: 00 00 00 00 00 00 00 07 00 01 00 00 00 00 00 05  ................
    9D50: 00 00 00 00 00 00 00 00 00 00 00 00 10 20 03 00  ............. ..
    9D60: 00 00 00 00 00 02 FF 00 00 00 00 00 00 03 FF 00  ................
    9D70: 00 00 00 00 00 04 FF 00 00 00 00 00 00 05 FF 00  ................
    9D80: 00 00 00 00 00 06 FF 00 00 00 00 00 00 07 FF 00  ................
    9D90: 00 00 00 00 00 08 FF 00 00 00 00 00 00 52 03 00  .............R..
    9DA0: 00 00 00 00 00 84 03 00 00 00 00 00 00 B6 03 00  ................
    9DB0: 00 00 00 00 00 E8 03 00 00 00 00 00 00 1A 04 00  ................
    9DC0: 00 00 00 00 00 4C 04 00 00 00 00 00 00 7E 04 00  .....L.......~..
    9DD0: 00 00 00 00 00 CF 03 00 00 00 00 00 00 00 08 84  ................
    9DE0: 03 00 00 00 00 00 00 02 FF 00 00 00 00 00 00 03  ................
    9DF0: FF 00 00 00 00 00 00 04 FF 00 00 00 00 00 00 05  ................
    9E00: FF 00 00 00 00 00 00 06 FF 00 00 00 00 00 00 07  ................
    9E10: FF 00 00 00 00 00 00 08 FF 00 00 00 00 00 00 01  ................
    9E20: 08 00 00 00 30 75 00 00 00 00 00 80 00 00 00 00  ....0u..........
    9E30: 01 E6 FF 80 ED 00 00 00 00 00 00 00 00 00 00 02  ................
    9E40: E6 FF 78 63 01 00 00 00 00 00 88 13 00 00 03 E6  ..xc............
    9E50: FF B4 A4 01 00 00 00 00 00 00 00 00 00 04 E6 FF  ................
    9E60: 44 BF 01 00 00 00 00 00 00 00 00 00 05 E6 FF 3C  D..............<
    9E70: D1 01 00 00 00 00 00 00 00 00 00 06 E6 FF D0 E2  ................
    9E80: 01 00 00 00 00 00 00 00 00 00 07 00 00 FC FC 01  ................
    9E90: 00 00 00 00 00 00 00 00 00 00 02 00 52 03 00 00  ............R...
    9EA0: E8 03 30 75 00 00 00 00 0F B6 03 00 00 E8 03 98  ..0u............
    9EB0: AB 02 00 00 00 00 08 00 00 00 90 E2 00 00 F8 24  ...............$
    9EC0: 01 00 18 F6 00 00 00 00 00 00 A8 DE 00 00 08 B4  ................
    9ED0: FF 18 F6 00 00 80 38 01 00 88 0D 01 00 00 00 00  ......8.........
    9EE0: 00 00 FA 00 00 09 9B FF A0 09 01 00 08 4C 01 00  .............L..
    9EF0: F8 24 01 00 00 00 00 00 70 11 01 00 0A 82 FF 28  .$......p......(
    9F00: 1D 01 00 A8 5B 01 00 68 3C 01 00 00 00 00 00 E0  ....[..h<.......
    9F10: 28 01 00 0B 69 FF C8 2C 01 00 60 67 01 00 F0 4F  (...i..,..`g...O
    9F20: 01 00 00 00 00 00 68 3C 01 00 0C 37 FF 80 38 01  ......h<...7..8.
    9F30: 00 18 73 01 00 78 63 01 00 00 00 00 00 08 4C 01  ..s..xc.......L.
    9F40: 00 0D 05 FF 38 44 01 00 D0 7E 01 00 00 77 01 00  ....8D...~...w..
    9F50: 00 00 00 00 C0 57 01 00 0E 00 00 F0 4F 01 00 A0  .....W......O...
    9F60: 86 01 00 A0 86 01 00 00 00 00 00 78 63 01 00 01  ...........xc...
    9F70: 17 00 00 02 00 1D 00 00 09 03 A0 0F 64 19 34 21  ............d.4!
    9F80: D0 07 A0 0F 70 17 94 2A 01 64 00 E4 12 60 09 78  ....p..*.d...`.x
    9F90: 63 01 00 49 12 64 00 64 00 64 00 64 00 64 00 64  c..I.d.d.d.d.d.d
    9FA0: 00 64 00 01 3B 3C 00 00 04 6E 00 00 00 B4 00 6E  .d..;<...n.....n
    9FB0: 00 6E 00 00 00 00 00 B4 00 5A 00 00 00 00 00 5E  .n.......Z.....^
    9FC0: 00 02 00 69 00 50 00 50 00 73 00 73 00 5F 00 00  ...i.P.P.s.s._..
    9FD0: 00 90 10 96 00 90 00 00 06 00 00 00 00 01 06 00  ................
    9FE0: 00 01 01 00 01 01 01 00 02 01 01 00 02 01 01 00  ................
    9FF0: 02 01 01 00 02 01 01 01 03 00 10 00 00 00 00 00  ................
    A000: 00 00 10 00 00 00 00 00 00 02 10 00 00 00 00 00  ................
    A010: 00 00 01 00 00 00 00 00 05 00 01 01 96 00 5E 01  ..............^.
    A020: 01 03 88 0E 48 00 00 00 FB 00 00 00 12 00 00 00  ....H...........
    A030: 05 01 00 00 08 00 0A 00 13 31 00 11 21 21 80 00  .........1..!!..
    A040: 0A 00 13 32 00 11 21 22 00 02 0A 00 0C 31 00 11  ...2..!".....1..
    A050: 20 21 00 04 0A 00 0C 32 00 11 20 22 00 08 0A 00   !.....2.. "....
    A060: 04 31 00 11 1E 21 05 00 00 00 13 31 74 00 7A 00  .1...!.....1t.z.
    A070: 00 00 13 32 8F 00 95 00 00 00 0C 31 AA 00 B0 00  ...2.......1....
    A080: 00 00 0C 32 C5 00 CB 00 00 00 04 31 E0 00 E6 00  ...2.......1....
    A090: 00 00 01 21 21 00 00 00 04 0C 01 00 10 02 00 00  ...!!...........
    A0A0: 08 00 00 00 01 04 90 00 02 04 06 00 FF 01 21 22  ..............!"
    A0B0: 00 00 00 04 0C 01 00 20 02 00 00 80 00 00 00 01  ....... ........
    A0C0: 04 92 00 02 04 04 00 FF 01 20 21 00 00 00 04 0C  ......... !.....
    A0D0: 01 00 30 02 00 00 00 02 00 00 01 04 91 00 02 04  ..0.............
    A0E0: 01 00 FF 01 20 22 00 00 00 04 0C 01 00 40 02 00  .... ".......@..
    A0F0: 00 00 04 00 00 01 04 93 00 02 04 05 00 FF 01 1E  ................
    A100: 21 00 00 00 04 0C 01 00 50 02 00 00 00 08 00 00  !.......P.......
    A110: 01 04 95 00 02 04 03 00 FF 05 00 00 00 21 21 27  .............!!'
    A120: 01 2D 01 00 00 21 22 32 01 38 01 00 00 20 21 3D  .-...!"2.8... !=
    A130: 01 43 01 00 00 20 22 48 01 4E 01 00 00 1E 21 53  .C... "H.N....!S
    A140: 01 59 01 00 00 01 00 11 01 13 31 14 04 0F 00 FF  .Y........1.....
    A150: 01 00 11 01 13 32 14 04 0F 00 FF 01 00 11 01 0C  .....2..........
    A160: 31 14 04 0F 00 FF 01 00 11 01 0C 32 14 04 0F 00  1..........2....
    A170: FF 01 00 11 01 04 31 14 04 0F 00 FF D4 02 02 01  ......1.........
    A180: 10 D6 B4 00 00 80 03 00 99 1F 00 00 14 00 00 00  ................
    A190: DC 0C 14 00 00 00 D5 0C 33 03 00 00 D4 0C 00 02  ........3.......
    A1A0: 0C 00 00 0B 29 00 20 0F D3 0B E0 1F 12 00 ED 09  ....). .........
    A1B0: 10 A8 08 00 92 09 00 04 0C 00 94 09 00 04 0C 00  ................
    A1C0: 93 09 00 04 0C 00 6D 09 1F 10 14 01 2E 08 00 04  ......m.........
    A1D0: 0C 00 30 08 80 0C 0C 00 2F 08 00 04 0C 00 4F 09  ..0...../.....O.
    A1E0: B4 00 01 00 1E 09 00 04 0C 00 F3 09 1B 90 00 00  ................
    A1F0: E9 09 5A 8A FF 00 EA 09 7A AE FF 08 EE 09 10 0C  ..Z.....z.......
    A200: 00 00 EF 09 10 0C 00 00 E5 09 FC FD FC FC E6 09  ................
    A210: FD F8 FC FC E7 09 FC FC F3 FC E8 09 FC FC FC F5  ................
    A220: F0 09 08 6F C3 00 F1 09 05 29 C3 00 DA 09 11 40  ...o.....).....@
    A230: 04 00 D6 09 03 F8 6F 00 F2 09 10 10 87 01 F4 09  ......o.........
    A240: 45 4F 70 08 F5 09 16 3A 02 03 DB 09 03 03 00 00  EOp....:........
    A250: E1 09 00 00 00 00 E2 09 04 00 00 00 74 09 C9 00  ............t...
    A260: 00 00 76 09 00 30 00 00 7F 09 49 9A 24 00 80 09  ..v..0....I.$...
    A270: 51 12 25 02 3B 08 1C 3C 00 70 56 08 3F 40 00 00  Q.%.;..<.pV.?@..
    A280: 57 08 10 10 00 00 5A 08 97 09 00 00 E7 0D 99 00  W.....Z.........
    A290: C1 50 E8 0D 99 01 C1 50 E9 0D 89 00 C1 50 EA 0D  .P.....P.....P..
    A2A0: 19 03 C1 50 51 08 99 00 C1 50 52 08 99 00 C1 50  ...PQ....PR....P
    A2B0: 53 08 99 00 C1 50 54 08 99 00 C1 50 5C 08 91 09  S....PT....P\...
    A2C0: 00 00 83 08 91 01 00 00 59 08 91 51 00 00 5B 08  ........Y..Q..[.
    A2D0: 91 29 00 00 5D 08 91 09 00 00 58 08 91 09 00 00  .)..].....X.....
    A2E0: 64 08 13 00 00 00 84 08 95 09 00 00 3D 08 49 92  d...........=.I.
    A2F0: 24 00 80 08 91 09 00 00 35 08 1E 00 F9 00 41 08  $.......5.....A.
    A300: 12 68 8F F8 42 08 13 6A 91 F6 77 08 91 13 00 00  .h..B..j..w.....
    A310: 70 08 11 0B 00 00 EB 0D 3D 90 80 40 EC 0D 35 50  p.......=..@..5P
    A320: 54 40 ED 0D 3D 50 1C 40 EE 0D 35 B0 6A 40 66 08  T@..=P.@..5.j@f.
    A330: 45 90 80 40 67 08 55 50 80 40 68 08 3D 50 4C 40  E..@g.UP.@h.=PL@
    A340: 69 08 3D 70 80 40 6D 08 91 09 01 00 71 08 15 24  i.=p.@m.....q..$
    A350: 00 00 88 08 91 11 00 00 78 08 91 12 00 00 6B 08  ........x.....k.
    A360: A1 09 00 00 72 08 91 09 00 00 6C 08 01 09 00 00  ....r.....l.....
    A370: 74 08 95 51 00 00 4D 08 11 09 00 00 4E 08 11 2A  t..Q..M.....N..*
    A380: 00 00 73 08 13 0F 00 00 75 08 91 09 00 00 7D 08  ..s.....u.....}.
    A390: 91 09 00 00 89 08 91 01 00 00 3E 08 49 92 CC 00  ..........>.I...
    A3A0: 7F 08 91 11 00 00 7E 08 91 21 03 00 6F 08 91 29  ......~..!..o..)
    A3B0: 00 00 3C 08 07 00 00 80 81 09 91 0C 00 00 82 09  ..<.............
    A3C0: 95 09 00 00 85 09 11 01 00 00 83 09 91 09 00 00  ................
    A3D0: 84 09 11 8C 00 00 86 09 91 09 00 00 87 09 11 09  ................
    A3E0: 00 00 88 09 91 89 00 00 7B 09 91 49 00 00 7C 09  ........{..I..|.
    A3F0: A1 09 00 00 70 05 00 04 0C 00 8E 0C 00 00 00 00  ....p...........
    A400: 83 08 91 01 00 00 84 08 95 09 00 00 85 08 97 09  ................
    A410: 00 00 88 08 91 11 00 00 89 08 91 01 00 00 8A 08  ................
    A420: 93 09 00 00 50 08 91 09 02 00 3F 08 28 28 72 72  ....P.....?.((rr
    A430: 40 08 50 50 28 28 43 08 80 80 00 00 CD 09 10 00  @.PP((C.........
    A440: 00 00 C0 09 40 0F 50 00 60 08 E1 09 02 00 00 00  ....@.P.`.......
    A450: 7D 00 01 01 01 02 04 20 00 06 20 00 00 03 91 0A  }...... .. .....
    A460: 02 92 0A 09 10 00 01 82 04 20 00 06 20 00 00 03  ......... .. ...
    A470: 91 0A 08 20 00 00 03 92 0A 09 26 00 01 03 02 0E  ... ......&.....
    A480: 00 06 10 00 00 03 0E 00 02 0F 00 09 38 00 01 83  ............8...
    A490: 02 0E 00 06 10 00 00 03 0E 00 08 20 00 00 03 0F  ........... ....
    A4A0: 00 09 4E 00 01 05 02 82 00 06 10 00 00 03 82 00  ..N.............
    A4B0: 02 83 00 09 60 00 01 85 02 82 00 06 10 00 00 03  ....`...........
    A4C0: 82 00 08 20 00 00 03 83 00 09 76 00 00 00 62 04  ... ......v...b.
    A4D0: 02 02 4C 00 5B 00 FD 02 B3 03 2B 03 00 00 01 01  ..L.[.....+.....
    A4E0: 08 04 32 10 54 76 38 00 62 60 FF 00 00 50 03 05  ..2.Tv8.b`...P..
    A4F0: 53 09 04 00 00 00 00 10 00 0B 00 40 00 61 66 02  S..........@.af.
    A500: 02 00 00 00 00 00 43 65 07 00 00 00 00 00 48 35  ......Ce......H5
    A510: 47 43 34 48 32 34 41 4A 52 00 03 00 04 00 FF FF  GC4H24AJR.......
    A520: 00 FF FF FF 00 00 00 00 00 2A 00 34 00 2F 0A 04  .........*.4./..
    A530: 30 0A 00 D5 0A 04 2C 0A 04 28 0A 04 29 0A 04 2A  0.....,..(..)..*
    A540: 0A 04 2B 0A 04 81 0A 04 8B 0A 04 5F 0A 04 DD 09  ..+........_....
    A550: 84 DE 09 84 FF FF 00 40 9C 00 00 55 50 00 00 00  .......@...UP...
    A560: 00 00 00 22 DD 1C 00 84 94 12 12 F0 54 0B 07 95  ..."........T...
    A570: 84 71 02 00 20 41 00 1B 04 14 20 9A 88 00 A0 00  .q.. A.... .....
    A580: 00 31 20 06 05 0D 0E 27 0F 16 0E 80 38 01 00 77  .1 ....'....8..w
    A590: 70 00 00 00 00 00 00 22 DD 1C 00 E7 AC 35 22 10  p......".....5".
    A5A0: 55 0D 0A 20 C7 F2 04 00 24 81 00 34 09 14 20 9A  U.. ....$..4.. .
    A5B0: 88 00 A0 00 00 31 20 0C 08 17 1B 4F 17 21 10 90  .....1 ....O.!..
    A5C0: 5F 01 00 77 70 00 00 00 00 00 00 22 DD 1C 00 29  _..wp......"...)
    A5D0: 31 46 26 20 55 0E 0B A2 07 93 05 00 26 A2 00 3C  1F& U.......&..<
    A5E0: 0A 14 20 AA 88 00 A0 00 00 31 20 0D 0A 1A 1D 59  .. ......1 ....Y
    A5F0: 19 23 11 A0 86 01 00 77 70 00 00 00 00 00 00 22  .#.....wp......"
    A600: DD 1C 00 29 B5 46 29 30 55 0E 0C 24 48 23 06 00  ...).F)0U..$H#..
    A610: 26 A2 00 44 0B 14 20 AA 88 00 A0 00 00 31 20 0E  &..D.. ......1 .
    A620: 0A 1C 20 62 1B 25 11 74 B7 01 00 77 70 00 00 00  .. b.%.t...wp...
    A630: 00 00 00 22 FF 1C 00 6B BD 57 2F 40 55 0F 0D 28  ..."...k.W/@U..(
    A640: C9 F3 06 00 48 C5 00 4C 0D 14 20 5A 89 00 A0 00  ....H..L.. Z....
    A650: 00 31 20 10 0C 20 24 6F 1E 29 12 48 E8 01 00 77  .1 .. $o.).H...w
    A660: 70 00 00 00 00 00 00 22 FF 1C 00 8C C5 58 34 60  p......".....X4`
    A670: 55 0F 0F 2C 4A B4 07 00 48 C5 00 5C 0F 14 20 5A  U..,J...H..\.. Z
    A680: 89 00 A0 00 00 31 20 12 0D 23 28 7B 22 2D 13 1C  .....1 ..#({"-..
    A690: 19 02 00 77 70 00 00 00 00 00 00 22 33 9D 00 CE  ...wp......"3...
    A6A0: CD 59 39 80 55 11 11 AE 8A 84 08 00 48 C6 00 6C  .Y9.U.......H..l
    A6B0: 00 14 20 6A 89 00 A0 02 00 31 20 14 0F 26 2B 88  .. j.....1 ..&+.
    A6C0: 25 2F 15 A4 2C 02 00 77 70 00 00 00 00 00 00 22  %/..,..wp......"
    A6D0: 33 9D 00 CE 51 6A 3B 80 55 11 11 2F CB D4 08 00  3...Qj;.U../....
    A6E0: 4A E6 00 6C 00 14 20 6A 89 00 A0 02 00 31 20 15  J..l.. j.....1 .
    A6F0: 0F 27 2D 8D 26 30 15 F0 49 02 00 77 70 00 00 00  .'-.&0..I..wp...
    A700: 00 00 00 22 33 9D 00 CE 51 6A 3D 90 55 11 12 30  ..."3...Qj=.U..0
    A710: CB 44 09 00 4A E6 00 74 01 14 20 6A 89 00 A0 02  .D..J..t.. j....
    A720: 00 31 20 15 0F 29 2F 94 27 31 16 C4 7A 02 00 99  .1 ..)/.'1..z...
    A730: 90 00 00 00 00 00 00 22 55 9D 00 10 DE 7B 44 80  ......."U....{D.
    A740: 55 13 12 B7 8C 45 0A 00 4C 06 01 75 04 14 20 6A  U....E..L..u.. j
    A750: 89 00 A0 02 00 31 20 18 11 2D 34 A4 2A 38 16 98  .....1 ..-4.*8..
    A760: AB 02 00 99 90 00 00 00 00 00 00 22 55 9D 00 31  ..........."U..1
    A770: 62 7C 48 90 55 13 13 39 CD D5 0A 00 4C 06 01 7D  b|H.U..9....L..}
    A780: 05 14 20 6A 89 00 A0 02 00 31 20 19 12 30 37 AD  .. j.....1 ..07.
    A790: 2C 3A 17 40 0D 03 00 BB B0 00 00 00 00 00 00 22  ,:.@..........."
    A7A0: 88 9D 00 73 EE 8D 53 80 55 15 13 3E CF 56 0C 00  ...s..S.U..>.V..
    A7B0: 4E 26 01 7E 05 14 20 6A 89 00 A0 02 00 31 20 1C  N&.~.. j.....1 .
    A7C0: 14 38 40 C5 30 3F 17 00 00 00 00 06 00 08 00 0E  .8@.0?..........
    A7D0: 00 44 FF FF 00 FF FF FF 00 1F 00 00 00 FF FF FF  .D..............
    A7E0: 01 1F 00 00 00 FF FF FF 02 1F 00 00 00 FF FF FF  ................
    A7F0: 03 1F 00 00 00 00 00 00 00 E1 B4 88 D6 9B 00 A5  ................
    A800: 3F 21 00 FD 02 D1 00 81 F6 D2 00 88 D6 9B 00 66  ?!.............f
    A810: 3F 05 00 F4 9B 41 00 A6 B0 E6 00 4E 1E 6F 06 D1  ?....A.....N.o..
    A820: 00 42 D6 D3 00 AC 3F 05 00 81 56 9F 00 E6 BB 40  .B....?...V....@
    A830: 00 16 B1 F4 00 88 D6 9B 00 E5 3D 28 00 E1 B1 11  ..........=(....
    A840: E6 B3 00 F4 3B 05 00 6F 06 CA 00 42 D6 D3 00 BC  ....;..o...B....
    A850: AB 21 00 88 76 97 00 E6 BB 08 00 A6 B0 F4 00 4B  .!..v..........K
    A860: 1E 4F 07 D1 00 C2 D2 D3 00 88 F6 D2 00 F4 3B 05  .O............;.
    A870: 00 66 3F 21 00 A6 90 BD 00 81 76 B3 00 F4 3B 05  .f?!......v...;.
    A880: 00 4B 00 5C 00 80 0A 04 8C 0A 04 95 0A 04 96 0A  .K.\............
    A890: 04 99 0A 04 82 0A 04 74 0A 04 75 0A 04 00 00 44  .......t..u....D
    A8A0: 01 00 44 02 00 44 03 00 44 04 00 44 05 00 44 09  ..D..D..D..D..D.
    A8B0: 00 44 0A 00 44 0B 00 44 0C 00 44 0D 00 44 0F 00  .D..D..D..D..D..
    A8C0: 44 4E 0A 04 54 0A 00 97 0A 04 98 0A 00 FF FF 00  DN..T...........
    A8D0: FF FF FF 00 72 21 60 50 F8 CF 00 E0 5A 4E 6F A0  ....r!`P....ZNo.
    A8E0: 0C F0 8C 30 00 E0 03 70 13 46 03 61 00 00 00 00  ...0...p.F.a....
    A8F0: 66 66 00 00 FF FF 0C 0C 04 00 05 03 20 3C 00 00  ff.......... <..
    A900: 00 03 00 63 04 06 00 00 23 00 00 00 00 00 00 00  ...c....#.......
    A910: 98 00 02 00 85 08 00 00 00 00 1E 01 30 00 00 00  ............0...
    A920: 00 00 00 00 AA AA AA 00 5D C7 02 00 00 00 00 00  ........].......
    A930: 0C 01 03 06 FC CA 01 00 80 38 01 00 38 00 06 0A  .........8..8...
    A940: 6A 24 09 00 80 1A 06 00 E8 03 00 00 0C 01 18 08  j$..............
    A950: 20 03 00 00 B0 04 00 00 38 C1 01 00 38 C1 01 00   .......8...8...
    A960: 00 00 00 00 00 00 00 00 00 00 00 00 34 C4 01 00  ............4...
    A970: 43 01 00 00 00 00 00 00 00 00 00 00 C0 FF 08 0F  C...............
    A980: 08 31 AC 10 00 00 00 00 00 00 01 00 00 00 00 00  .1..............
    A990: 00 00 00 00 4B 00 00 00 00 00 00 00 2B 00 00 00  ....K.......+...
    A9A0: 00 00 00 00 10 00 00 00 00 00 00 00 9B 02 00 00  ................
    A9B0: 03 00 00 00 B8 01 00 00 76 02 00 00 2A 03 00 00  ........v...*...
    A9C0: 84 03 00 00 FC 03 00 00 56 04 00 00 BA 04 00 00  ........V.......
    A9D0: 14 05 00 00 00 35 0C 00 00 35 0C 00 98 E0 0E 00  .....5...5......
    A9E0: 90 05 10 00 38 67 10 00 E0 C8 10 00 88 2A 11 00  ....8g.......*..
    A9F0: 30 8C 11 00 A7 00 00 00 A2 04 00 00 BE 01 00 00  0...............
    AA00: 1B 00 00 00 00 00 0C 05 FE FF B5 9C 05 00 CE FF  ................
    AA10: FF FF 00 00 00 00 F3 0D 03 00 80 60 FE FF FD F8  ...........`....
    AA20: FF FF 0A 03 CD FF FF FF 00 00 00 00 8A 00 F1 FF  ................
    AA30: FF FF 5C 12 00 01 00 01 00 01 00 00 42 00 03 01  ..\.........B...
    AA40: 01 03 0E 00 08 96 10 00 00 00 00 00 FF 00 01 07  ................
    AA50: 0C 00 06 00 00 00 00 00 00 00 04 00 24 00 00 04  ............$...
    AA60: 00 00 02 80 10 00 00 00 10 00 52 03 02 00 00 00  ..........R.....
    AA70: 84 03 02 00 10 00 B6 03 00 80 10 00 E8 03 28 00  ..............(.
    AA80: 03 01 FF FF FF 00 4B 00 B8 0B 01 00 00 00 FF FF  ......K.........
    AA90: FF 00 32 00 4E 0C 02 00 00 00 FF FF FF 00 7C 01  ..2.N.........|.
    AAA0: 45 0C 07 12 00 00 64 00 02 03 14 00 00 00 D6 2D  E.....d........-
    AAB0: 00 00 70 06 02 06 00 00 00 00 1E 21 52 00 4C 00  ..p........!R.L.
    AAC0: 03 FF FF 00 1E 22 55 00 4C 00 09 FF FF 00 20 21  ....."U.L..... !
    AAD0: 58 00 4C 00 0A FF FF 00 20 22 5B 00 4C 00 0B FF  X.L..... "[.L...
    AAE0: FF 00 21 21 5E 00 4C 00 0C FF FF 00 21 22 61 00  ..!!^.L.....!"a.
    AAF0: 4C 00 0D FF FF 00 FF FF 14 04 FF 15 04 FF 16 04  L...............
    AB00: FF 17 04 FF 18 04 FF 19 04 FF 18 00 02 01 02 00  ................
    AB10: 08 00 80 00 00 02 00 04 00 08 40 00 01 00 10 00  ..........@.....
    AB20: FF FF 38 00 02 01 04 4A 00 00 7C 92 00 00 01 04  ..8....J..|.....
    AB30: 1E 00 3C 00 00 00 F8 24 01 00 01 03 1E 00 3C 00  ..<....$......<.
    AB40: 1E 00 F0 49 02 00 01 02 1E 00 3C 00 1E 00 E0 93  ...I......<.....
    AB50: 04 00 01 01 1E 00 00 00 1E 00 55 00 01 01 01 10  ..........U.....
    AB60: 02 00 79 02 10 00 11 02 00 01 00 21 00 01 00 26  ..y........!...&
    AB70: 93 04 00 45 00 02 00 50 00 14 00 70 00 84 00 58  ...E...P...p...X
    AB80: 02 02 00 5D 02 01 00 38 02 02 00 3A 02 02 00 3C  ...]...8...:...<
    AB90: 02 02 00 3E 02 02 00 6D 02 40 00 22 9A 02 00 2A  ...>...m.@."...*
    ABA0: 9A 01 00 A0 9B 08 00 F8 E5 08 00 00 00 00 00 00  ................
    ABB0: 85 00 01 02 00 08 02 01 02 00 52 47 52 02 02 65  ..........RGR..e
    ABC0: 02 07 52 0D 55 00 02 52 0D 52 23 2C 25 02 01 3D  ..R.U..R.R#,%..=
    ABD0: 25 02 06 45 17 00 51 02 52 3D 52 39 02 0D 02 01  %..E..Q.R=R9....
    ABE0: 03 52 43 66 04 02 8C 02 2E 00 02 0D 02 01 00 52  .RCf...........R
    ABF0: 43 02 05 02 04 00 52 03 52 43 02 F9 02 01 52 05  C.....R.RC....R.
    AC00: 02 01 02 00 0E E5 02 08 52 0A 02 05 02 04 00 52  ........R......R
    AC10: 03 52 43 02 05 02 30 75 00 40 52 0B 02 05 02 04  .RC...0u.@R.....
    AC20: 00 52 03 52 43 02 01 02 01 0E E5 02 08 52 0B 0D  .R.RC........R..
    AC30: 65 D0 05 02 5B 00 57 00 01 02 00 00 37 00 00 52  e...[.W.....7..R
    AC40: 14 02 08 00 0D 1A 32 08 00 0B 1A 02 88 00 0E 1A  ......2.........
    AC50: 32 88 00 0C 1A 03 00 46 04 1A 09 05 46 FF FF FF  2......F....F...
    AC60: 02 56 00 40 03 20 40 01 1A 09 25 40 03 75 02 46  .V.@. @...%@.u.F
    AC70: 40 03 18 40 5C 1B 2D 02 46 40 27 00 46 06 1A 2D  @..@\.-.F@'.F..-
    AC80: 08 40 5C 1B 02 0A 01 41 02 8A 01 40 5B 00 B7 00  .@\....A...@[...
    AC90: 01 01 04 00 37 00 00 01 05 0E 00 02 00 40 01 37  ....7........@.7
    ACA0: 03 00 5C 05 02 00 FC 7F FF FF 02 00 00 00 5C 05  ..\...........\.
    ACB0: 10 00 FF FF 9D FF 00 09 41 00 5C 05 21 00 7F FF  ........A.\.!...
    ACC0: FF FF 80 00 00 00 5C 05 40 00 BE 3F FF FF 40 40  ......\.@..?..@@
    ACD0: 01 00 37 00 00 01 05 0E 00 70 00 01 10 37 03 00  ..7......p...7..
    ACE0: 01 05 70 00 00 40 00 01 5C 05 A0 00 0F FF FE DF  ..p..@..\.......
    ACF0: 10 00 01 60 5C 05 A2 00 7F F3 97 FF 86 04 88 5A  ...`\..........Z
    AD00: 5C 05 A4 00 1B F0 FF FF 20 0D 40 04 5C 05 B1 00  \....... .@.\...
    AD10: FF 2D FF FF 80 50 18 96 37 00 00 54 00 06 00 01  .-...P..7..T....
    AD20: 25 C5 14 02 01 05 C2 14 7F 00 00 00 01 05 E8 15  %...............
    AD30: 70 3D 29 0A 01 05 E9 15 9C A4 0D 20 01 05 EA 15  p=)........ ....
    AD40: 20 95 87 00 5B 00 0B 01 01 01 04 00 37 00 00 03   ...[.......7...
    AD50: 01 00 00 54 20 24 15 01 25 00 08 0F 01 25 28 08  ...T $..%....%(.
    AD60: 0F 5C 25 2B 08 F8 01 55 00 00 52 34 52 3E 03 24  .\%+...U..R4R>.$
    AD70: 40 0C 00 15 25 40 04 5C 62 01 08 0F 40 01 04 D7  @...%@.\b...@...
    AD80: 09 24 00 01 04 02 08 00 00 01 04 1C 08 20 00 66  .$........... .f
    AD90: 18 2D 0C 42 10 00 56 00 40 03 0C 40 00 00 3E 0D  .-.B..V.@..@..>.
    ADA0: 40 00 00 44 73 00 01 02 00 00 40 01 04 01 00 02  @..Ds.....@.....
    ADB0: 00 2D 0D 42 06 00 43 53 00 0D 25 68 15 03 54 00  .-.B..CS..%h..T.
    ADC0: 34 FE 01 05 35 FE 03 0A 03 0A 01 05 35 FE 04 0A  4...5.......5...
    ADD0: 04 0A 01 00 03 0A 69 15 01 00 04 0A 69 15 5C 25  ......i.....i.\%
    ADE0: D5 09 FB 01 54 00 34 FE 01 05 35 FE 03 0A 0C 00  ....T.4...5.....
    ADF0: 01 05 35 FE 04 0A 0C 00 52 0F 66 1C 2D 0C 42 0A  ..5.....R.f.-.B.
    AE00: 00 55 00 00 52 12 66 1C 2D 0C 42 0C 00 02 0D 00  .U..R.f.-.B.....
    AE10: 01 00 52 1F 52 1E 02 05 00 30 75 00 00 52 10 4C  ..R.R....0u..R.L
    AE20: E5 00 20 44 E5 00 0D 25 80 0A 18 02 25 00 FF 52  .. D...%....%..R
    AE30: 40 4A 65 80 0A 0F 49 06 01 52 03 03 20 00 80 0A  @Je...I..R.. ...
    AE40: 09 25 00 FC 52 1E 5C 22 80 0A 03 00 52 07 52 48  .%..R.\"....R.RH
    AE50: 5B 00 FF 00 02 01 00 04 37 00 00 66 0C 03 0C 41  [.......7..f...A
    AE60: 00 00 2D 0A 41 42 2D 0D 42 04 00 3D 24 00 03 00  ..-.AB-.B..=$...
    AE70: 44 30 00 2D 0D 42 04 00 3E 0A 42 41 44 FB 00 43  D0.-.B..>.BAD..C
    AE80: 19 00 56 00 43 03 A4 41 02 00 03 F2 41 41 03 0C  ..V.C..A....AA..
    AE90: 41 00 00 3E 0D 41 00 00 44 FB 00 3E 0D 41 61 48  A..>.A..D..>.AaH
    AEA0: 49 6B 00 3E E5 41 10 46 5F 00 1B 3D 41 01 43 6B  Ik.>.A.F_..=A.Ck
    AEB0: 00 09 E5 41 03 15 3D 41 02 2D E5 41 0C 03 3A 43  ...A..=A.-.A..:C
    AEC0: 41 54 00 00 00 33 0D 41 01 00 01 0A 00 00 41 0D  AT...3.A......A.
    AED0: 02 01 00 44 2D 0D 41 02 00 01 0A 00 00 41 03 32  ...D-.A......A.2
    AEE0: 43 41 4B E5 00 01 49 D7 00 07 02 01 00 45 2D 0D  CAK...I......E-.
    AEF0: 41 01 00 01 0A 00 00 41 4A 02 01 00 44 44 B9 00  A......AJ...DD..
    AF00: 03 29 43 00 0E A2 00 44 43 C1 00 03 29 43 00 08  .)C....DC...)C..
    AF10: A2 00 45 33 0D 41 03 00 01 0A 00 00 41 03 3A 43  ..E3.A......A.:C
    AF20: 41 07 02 01 00 45 43 FA 00 0D 02 01 00 44 33 0D  A....EC......D3.
    AF30: 41 01 00 01 0A 00 00 41 3D A5 00 01 44 F5 00 07  A......A=...D...
    AF40: 02 01 00 45 43 FA 00 0D 02 01 00 44 5B 55 20 00  ...EC......D[U .
    AF50: 5B 00 AC 01 01 02 14 00 37 00 00 4B E5 00 08 44  [.......7..K...D
    AF60: 23 00 01 05 82 00 70 03 00 80 3C 05 83 00 00 00  #.....p...<.....
    AF70: 02 00 46 68 01 03 01 04 00 02 E5 00 01 52 3C 01  ..Fh.........R<.
    AF80: 05 82 00 40 01 50 C0 0D 25 83 00 08 66 FF 2D 0D  ...@.P..%...f.-.
    AF90: 42 6C 01 01 05 82 00 40 03 50 C0 4A 25 83 00 01  Bl.....@.P.J%...
    AFA0: 44 56 00 2D 0D 42 20 00 03 04 00 08 00 03 04 01  DV.-.B .........
    AFB0: 0C 00 03 04 02 10 00 03 04 03 14 00 01 04 82 00  ................
    AFC0: 04 00 4A 05 83 00 80 00 00 00 44 97 00 2D 05 00  ..J.......D..-..
    AFD0: 10 00 00 00 2D 05 01 10 00 00 00 2D 05 02 10 00  ....-......-....
    AFE0: 00 00 2D 05 03 10 00 00 00 4A 25 83 00 02 44 B8  ..-......J%...D.
    AFF0: 00 01 04 82 00 1C 00 0D 25 83 00 10 01 04 82 00  ........%.......
    B000: 04 00 4A 25 83 00 01 44 AA 00 01 04 82 00 18 00  ..J%...D........
    B010: 01 21 83 00 02 01 02 82 00 00 01 01 83 00 01 56  .!.............V
    B020: 00 40 03 29 40 02 15 25 40 06 01 04 82 00 00 00  .@.)@..%@.......
    B030: 5C 8A 83 00 3F 00 40 01 02 82 00 01 01 99 83 00  \...?.@.........
    B040: 04 01 02 82 00 03 01 99 83 00 05 01 04 82 00 1C  ................
    B050: 00 0D A5 83 00 10 01 02 82 00 01 0D E5 83 00 04  ................
    B060: 01 02 82 00 02 01 01 83 00 03 01 02 82 00 01 01  ................
    B070: 09 83 00 05 0D E5 83 00 02 01 04 82 00 1C 00 0D  ................
    B080: 25 83 00 01 01 04 82 00 04 00 4A 25 83 00 02 44  %.........J%...D
    B090: 32 01 01 05 82 00 40 01 50 C0 07 25 83 00 F7 02  2.....@.P..%....
    B0A0: 02 00 04 4C E5 04 08 49 68 01 52 2F 02 01 01 00  ...L...Ih.R/....
    B0B0: 02 02 00 04 02 E5 00 02 52 3F 5B 7A 40 00 68 02  ........R?[z@.h.
    B0C0: 50 C0 78 02 50 C0 8C 02 50 C0 90 02 50 C0 94 02  P.x.P...P...P...
    B0D0: 50 C0 98 02 50 C0 AC 02 50 C0 B0 02 50 C0 E4 02  P...P...P...P...
    B0E0: 50 C0 F4 02 50 C0 08 03 50 C0 0C 03 50 C0 10 03  P...P...P...P...
    B0F0: 50 C0 14 03 50 C0 28 03 50 C0 2C 03 50 C0 22 01  P...P.(.P.,.P.".
    B100: 02 01 0C 04 37 00 00 5C 25 2B 08 F8 01 54 20 24  ....7..\%+...T $
    B110: 15 07 25 EB 09 FE 4B E5 00 40 44 A1 00 01 05 91  ..%...K..@D.....
    B120: 0A 0D 00 00 00 03 B0 01 92 0A 52 3B 03 01 00 00  ..........R;....
    B130: 56 38 00 3E 01 00 01 45 62 00 3E 01 00 02 45 53  V8.>...Eb.>...ES
    B140: 00 01 05 91 0A 0D 00 00 00 07 A5 92 0A F7 43 A1  ..............C.
    B150: 00 01 05 91 0A 0D 00 00 00 54 38 92 0A 43 A1 00  .........T8..C..
    B160: 03 00 02 96 0A 03 F8 01 99 0A 01 05 91 0A 00 00  ................
    B170: 00 00 03 08 01 92 0A 01 05 91 0A 0D 00 00 00 5C  ...............\
    B180: 8D 92 0A 00 00 80 00 07 E5 99 0A BF 07 65 96 0A  .............e..
    B190: F0 01 05 91 0A 00 00 00 00 01 0D 92 0A 77 77 02  .............ww.
    B1A0: 01 01 00 52 10 02 01 01 00 02 E5 01 01 52 3F 52  ...R.........R?R
    B1B0: 30 02 E5 01 02 02 01 02 00 52 3F 07 25 F3 09 FC  0........R?.%...
    B1C0: 55 00 01 4A 25 80 0A 08 49 D1 00 02 25 01 07 52  U..J%...I...%..R
    B1D0: 40 4B E5 00 40 44 12 01 01 05 91 0A 0D 00 00 00  @K..@D..........
    B1E0: 4C A5 01 80 49 ED 00 54 38 92 0A 01 B2 92 0A 01  L...I..T8.......
    B1F0: 52 3B 3E 01 00 01 46 12 01 01 FA 99 0A 01 01 6A  R;>...F........j
    B200: 96 0A 02 01 05 91 0A 00 00 00 00 01 0A 92 0A 01  ................
    B210: 0D 25 EB 09 01 07 25 2B 08 F8 0D 25 24 15 03 5B  .%....%+...%$..[
    B220: 4D 04 01 07 08 08 37 00 00 3D 25 01 FF 44 17 04  M.....7..=%..D..
    B230: 3D 25 01 19 46 13 04 3D 25 01 02 47 13 04 3D 25  =%..F..=%..G..=%
    B240: 01 14 45 17 04 3D 05 00 00 00 00 00 44 DA 01 4B  ..E..=......D..K
    B250: E5 01 02 49 5D 00 02 A9 02 02 55 28 02 3D 05 00  ...I].....U(.=..
    B260: 40 4B 4C 00 45 5D 00 0D A5 C2 9D 40 03 21 41 01  @KL.E].....@.!A.
    B270: 33 25 41 14 03 22 43 41 0D E2 C1 48 44 66 FF 2D  3%A.."CA...HDf.-
    B280: 0D 42 2D 04 03 39 40 01 09 0D 40 30 00 1B 0D 40  .B-..9@...@0...@
    B290: 02 2D 0A 42 40 56 00 00 56 00 01 02 05 03 40 01  .-.B@V..V.....@.
    B2A0: 00 00 02 65 01 01 20 05 00 0A 00 00 00 03 02 46  ...e.. ........F
    B2B0: 40 3D 05 00 80 8D 5B 00 47 A2 00 0E E5 01 08 55  @=....[.G......U
    B2C0: 28 01 4B E5 01 08 44 AD 00 1B 05 46 01 3E 05 46  (.K...D....F.>.F
    B2D0: A0 2F C5 01 48 C2 00 2C 65 01 01 15 05 46 01 43  ./..H..,e....F.C
    B2E0: AD 00 14 2D 01 05 03 05 01 00 00 01 00 4B E5 01  ...-.........K..
    B2F0: 02 49 28 01 27 04 46 00 00 3E 05 41 00 00 00 00  .I(.'.F..>.A....
    B300: 44 3A 01 03 04 40 00 00 03 02 00 41 27 02 40 41  D:...@.....A'.@A
    B310: 03 02 40 00 3E 05 41 00 00 00 00 49 E8 00 7C 05  ..@.>.A....I..|.
    B320: 00 00 00 01 00 7E 04 40 00 00 7C 04 40 00 00 7E  .....~.@..|.@..~
    B330: 02 40 00 03 02 01 40 3E 05 01 33 F3 00 00 48 28  .@....@>..3...H(
    B340: 01 03 05 01 00 00 01 00 27 04 46 00 00 7C 02 01  ........'.F..|..
    B350: 41 7E 04 40 00 00 03 0A 00 40 27 04 46 00 00 03  A~.@.....@'.F...
    B360: 8A 00 40 56 18 01 66 FF 2D 0D 42 21 04 56 00 40  ..@V..f.-.B!.V.@
    B370: 03 21 40 01 33 25 40 14 15 25 40 01 2D 0A 42 40  .!@.3%@..%@.-.B@
    B380: 03 0C 48 00 00 4A 65 E2 48 10 44 95 02 03 39 41  ..H..Je.H.D...9A
    B390: 01 09 0D 41 30 00 1B 0D 41 04 3C 22 5E 49 41 49  ...A0...A.<"^IAI
    B3A0: B9 01 3C 21 23 49 03 49 B9 01 3C 29 25 49 03 49  ..<!#I.I..<)%I.I
    B3B0: B9 01 03 20 41 5F 49 09 25 41 E0 3E 29 41 01 49  ... A_I.%A.>)A.I
    B3C0: B9 01 4B E5 01 40 49 8D 02 3C 02 20 49 00 49 B9  ..K..@I..<. I.I.
    B3D0: 01 3C 0A 22 49 01 44 BD 01 0E E5 01 01 3A 00 00  .<."I.D......:..
    B3E0: 4B E5 01 01 44 EB 03 4B E5 01 02 49 DA 01 3D 25  K...D..K...I..=%
    B3F0: 02 05 46 DA 01 55 28 02 52 23 56 00 40 03 21 40  ..F..U(.R#V.@.!@
    B400: 01 33 25 40 14 03 0A 48 40 07 25 60 01 FE 66 FF  .3%@...H@.%`..f.
    B410: 2D 0D 42 21 04 56 00 40 03 21 40 01 33 25 40 14  -.B!.V.@.!@.3%@.
    B420: 15 25 40 01 2D 0A 42 40 03 0C 48 00 00 07 65 23  .%@.-.B@..H...e#
    B430: 49 FE 54 00 21 49 54 00 22 49 07 65 E2 48 EF 4A  I.T.!IT."I.e.H.J
    B440: 65 E2 48 20 49 1F 02 07 65 F2 48 EF 4A 65 F2 48  e.H I...e.H.Je.H
    B450: 20 49 2C 02 3D 05 00 00 00 00 00 49 95 02 4A A5   I,.=......I..J.
    B460: C1 48 80 44 69 02 56 00 41 5C 25 E0 48 F8 06 51  .H.Di.V.A\%.H..Q
    B470: 02 4A 65 E0 48 01 44 51 02 2D A5 41 01 2D 0D 48  .Je.H.DQ.-.A.-.H
    B480: 10 00 3E A5 41 04 45 49 02 56 08 48 03 21 41 01  ..>.A.EI.V.H.!A.
    B490: 33 25 41 14 03 22 43 41 07 E2 C1 48 45 4A E5 C1  3%A.."CA...HEJ..
    B4A0: 48 3F 49 13 04 07 A5 C2 9D BF 43 13 04 01 02 20  H?I.......C.... 
    B4B0: 49 00 43 AE 03 01 05 DA 48 80 88 01 00 3D A5 01  I.C.....H....=..
    B4C0: 00 49 B6 02 3D 05 00 E0 3B 66 00 45 B6 02 07 25  .I..=...;f.E...%
    B4D0: DB 48 FE 43 D6 02 0D 25 DB 48 01 3D A5 01 02 49  .H.C...%.H.=...I
    B4E0: D6 02 4B E5 01 08 44 D6 02 01 05 7A 49 80 88 01  ..K...D....zI...
    B4F0: 00 0D 25 7B 49 01 0D 25 5F 49 01 03 39 40 01 09  ..%{I..%_I..9@..
    B500: 0D 40 30 00 1B 0D 40 04 01 22 5E 49 40 0D 65 5F  .@0...@.."^I@.e_
    B510: 49 80 3E 25 40 02 44 FD 02 03 65 40 04 5C 6A 5F  I.>%@.D...e@.\j_
    B520: 49 FB 40 66 FF 56 00 40 2D 0D 42 3D 04 03 21 40  I.@f.V.@-.B=..!@
    B530: 03 09 0D 40 03 00 15 0D 40 02 2D 0A 42 40 01 0C  ...@....@.-.B@..
    B540: 24 49 00 00 01 E4 26 49 02 00 0D 25 26 49 02 01  $I....&I...%&I..
    B550: 21 23 49 03 01 A5 23 49 E8 01 02 20 49 00 54 00  !#I...#I... I.T.
    B560: 21 49 01 02 22 49 01 4B E5 01 08 44 56 03 07 65  !I.."I.K...DV..e
    B570: 5F 49 FE 43 5B 03 0D 65 5F 49 01 5C 29 5F 49 1F  _I.C[..e_I.\)_I.
    B580: 01 01 8D 2B 49 20 03 01 29 25 49 03 07 65 5F 49  ...+I ..)%I..e_I
    B590: 7F 5C 65 E2 48 E3 04 4A 65 E2 48 20 49 77 03 0D  .\e.H..Je.H Iw..
    B5A0: 65 E2 48 10 4A 65 E2 48 20 44 84 03 4B E5 01 02  e.H.Je.H D..K...
    B5B0: 49 AE 03 5C 65 F2 48 E3 04 4A 65 F2 48 20 49 99  I..\e.H..Je.H I.
    B5C0: 03 0D 65 F2 48 10 4A 65 F2 48 20 44 A6 03 03 01  ..e.H.Je.H D....
    B5D0: 00 02 02 B1 02 01 52 41 02 02 02 00 0D 65 5F 49  ......RA.....e_I
    B5E0: 40 4A 65 5F 49 20 44 C1 03 07 65 5F 49 BF 56 00  @Je_I D...e_I.V.
    B5F0: 40 03 21 40 01 33 25 40 14 03 0A 48 40 0D 25 60  @.!@.3%@...H@.%`
    B600: 01 01 51 01 4B E5 01 02 49 13 04 3A 00 00 3D 25  ..Q.K...I..:..=%
    B610: 02 05 46 13 04 02 25 03 02 02 E1 03 02 02 61 03  ..F...%.......a.
    B620: 01 02 B9 03 01 08 A5 03 04 0E B1 03 02 02 01 02  ................
    B630: 00 52 2E 3A 00 00 5B 02 25 01 0B 43 EB 03 7A 2C  .R.:..[.%..C..z,
    B640: 00 00 00 A0 00 40 51 E0 51 80 52 20 53 40 42 0F  .....@Q.Q.R S@B.
    B650: 00 40 42 0F 00 40 42 0F 00 40 42 0F 00 A1 83 64  .@B..@B..@B....d
    B660: 00 24 83 32 00 A3 76 19 00 A3 76 0C 00 00 8C 01  .$.2..v...v.....
    B670: 02 01 00 00 37 00 00 3D 65 00 07 44 BC 00 56 00  ....7..=e..D..V.
    B680: 40 20 25 00 03 03 0A 48 40 3D 65 00 01 44 BB 00  @ %....H@=e..D..
    B690: 56 08 48 03 21 48 00 01 0D FA 02 02 00 52 14 01  V.H.!H.......R..
    B6A0: 05 8D 1A 00 00 40 00 01 25 BE 1B 02 01 A5 CC 1A  .....@..%.......
    B6B0: C0 01 0D 91 1A 45 01 5C 05 DA 1A F0 FF FF FF 02  .....E.\........
    B6C0: 00 00 00 07 25 03 1B FB 0D 25 7D 1A 01 01 05 34  ....%....%}....4
    B6D0: 1B 01 00 00 00 5C 05 36 1B EE FE 00 00 11 01 FF  .....\.6........
    B6E0: 7F 01 25 3A 1B 11 5C 05 32 1B F8 F8 F8 FF 00 00  ..%:..\.2.......
    B6F0: 00 00 01 0D 33 1B FF 7F 01 05 B3 1B 07 40 00 00  ....3........@..
    B700: 0D A5 B6 1B 01 01 05 31 1B 00 08 00 04 01 0D 86  .......1........
    B710: 1B 04 00 01 0D E7 1B 01 00 5C 05 00 1B FF FF FD  .........\......
    B720: FF 00 00 02 00 3A 00 00 5B 5B 5C 05 F6 02 FF 00  .....:..[[\.....
    B730: FE 9F 04 FC 00 20 01 05 F9 02 10 27 02 00 01 05  ..... .....'....
    B740: 14 03 00 08 00 20 01 05 0C 03 00 90 00 10 01 25  ..... .........%
    B750: 09 01 01 01 05 3B 01 64 02 12 00 01 05 30 01 A0  .....;.d.....0..
    B760: 86 11 00 01 E5 09 17 64 01 05 22 17 00 00 9B 02  .......d..".....
    B770: 01 05 06 17 21 84 20 00 01 8D E5 17 64 00 01 25  ....!. .....d..%
    B780: E4 17 01 01 05 31 01 3C 00 01 08 5C 65 D4 00 FC  .....1.<...\e...
    B790: 02 01 0D FC 00 00 01 01 05 2F 48 00 00 00 00 01  ........./H.....
    B7A0: 05 04 48 00 00 00 00 01 05 3A 48 0F 00 00 00 0D  ..H......:H.....
    B7B0: E5 CB 05 10 01 05 F8 16 00 00 00 30 01 25 32 01  ...........0.%2.
    B7C0: 00 55 00 00 52 4E 02 25 00 07 52 33 02 0D 00 00  .U..RN.%..R3....
    B7D0: 07 02 05 00 00 07 00 00 52 4D 2C 25 00 01 3D 25  ........RM,%..=%
    B7E0: 00 06 45 6A 01 66 16 03 0C 41 04 00 4C 0D 41 02  ..Ej.f...A..L.A.
    B7F0: 00 44 B7 00 0D A5 C9 05 04 5B 07 00 01 01 00 00  .D.......[......
    B800: 5B 00 8A 00 01 01 00 00 37 00 00 01 05 03 2B 54  [.......7.....+T
    B810: 10 76 32 56 00 41 03 50 41 9F 03 56 00 40 66 FF  .v2V.A.PA..V.@f.
    B820: 2D 0D 42 4A 00 4C 65 41 10 44 46 00 09 65 41 07  -.BJ.LeA.DF..eA.
    B830: 03 2A 40 41 15 0D 40 03 2D 0A 42 40 01 04 02 08  .*@A..@.-.B@....
    B840: 00 00 01 04 03 2B 04 00 5B 7A 40 00 23 10 54 76  .....+..[z@.#.Tv
    B850: 45 10 76 32 32 10 54 76 54 10 76 32 03 21 54 76  E.v22.TvT.v2.!Tv
    B860: 05 41 76 32 13 20 54 76 15 40 76 32 32 10 45 76  .Av2. Tv.@v22.Ev
    B870: 54 10 67 32 32 10 54 76 54 10 76 32 32 10 65 47  T.g22.TvT.v22.eG
    B880: 54 10 27 63 32 10 75 46 54 10 37 62 37 03 01 01  T.'c2.uFT.7b7...
    B890: 08 00 37 00 00 01 05 82 00 00 00 20 C0 07 A5 83  ..7........ ....
    B8A0: 00 FC 01 05 82 00 2C 01 50 C0 37 05 00 01 0D 2C  ......,.P.7....,
    B8B0: 01 06 02 01 05 A4 01 09 00 40 00 01 05 A0 01 03  .........@......
    B8C0: 00 00 00 01 0D B0 01 02 04 01 E5 98 01 00 4A 25  ..............J%
    B8D0: 00 00 01 49 E6 00 5C 25 0C 00 80 64 5C 25 10 00  ...I..\%...d\%..
    B8E0: 80 64 5C 25 14 00 80 64 5C 25 18 00 80 64 5C 25  .d\%...d\%...d\%
    B8F0: 1C 00 80 64 5C 25 24 00 80 18 5C 25 28 00 80 64  ...d\%$...\%(..d
    B900: 0D 25 2C 00 01 0D 25 20 00 01 0D 25 00 00 01 01  .%,...% ...%....
    B910: 05 D8 01 B8 29 E8 00 01 05 DC 01 B8 29 E8 00 01  ....).......)...
    B920: 05 E0 01 B8 29 E8 00 01 05 E4 01 B8 29 E8 00 01  ....).......)...
    B930: E5 14 02 64 01 05 74 01 00 00 24 00 37 00 00 01  ...d..t...$.7...
    B940: 05 82 00 14 00 00 C0 0D 65 83 00 01 51 FA 01 05  ........e...Q...
    B950: 82 00 00 00 00 C0 0D 25 83 00 01 01 05 82 00 70  .......%.......p
    B960: 01 50 C0 37 05 00 54 00 18 01 01 05 A8 01 20 40  .P.7..T....... @
    B970: 00 00 01 E5 60 02 64 01 E5 DC 02 64 01 25 44 03  ....`.d....d.%D.
    B980: 00 37 00 00 07 A5 97 01 F7 54 00 92 01 01 05 82  .7.......T......
    B990: 00 78 03 20 C0 01 0D 83 00 19 00 01 05 82 00 00  .x. ............
    B9A0: 00 60 C0 5C 05 83 00 FD FF FF FF 02 00 00 00 01  .`.\............
    B9B0: 05 82 00 10 00 00 C0 01 05 83 00 02 00 80 2A 01  ..............*.
    B9C0: 05 82 00 70 03 00 80 3C 05 83 00 00 00 02 00 46  ...p...<.......F
    B9D0: 0B 03 01 05 82 00 60 03 20 C0 37 05 00 5C 05 60  ......`. .7..\.`
    B9E0: 03 10 01 18 F0 20 A4 62 00 5C 05 64 03 FF FF 00  ..... .b.\.d....
    B9F0: FC 00 00 01 01 5C 05 6C 03 10 01 08 F0 20 A4 62  .....\.l..... .b
    BA00: 00 5C 05 70 03 FF FF 00 FC 00 00 01 01 5C 05 50  .\.p.........\.P
    BA10: 03 87 00 7C 00 19 52 9D 7F 5C 05 54 03 07 0C 80  ...|..R..\.T....
    BA20: FF 38 20 01 00 5C 05 E4 01 BF FF FF DF BF FF 01  .8 ..\..........
    BA30: 20 5C 05 84 00 FF FD FF FF FF 7D A0 00 37 00 00   \........}..7..
    BA40: 01 05 82 00 04 00 30 C0 37 05 00 01 05 04 00 02  ......0.7.......
    BA50: 00 91 06 01 05 0C 00 60 6A 00 08 01 05 10 00 01  .......`j.......
    BA60: 00 00 00 01 05 1C 00 4D 00 C0 AC 01 05 20 00 EC  .......M..... ..
    BA70: A7 78 31 01 05 24 00 00 21 00 00 01 05 28 00 FF  .x1..$..!....(..
    BA80: FF FF FF 01 05 64 00 96 43 81 01 01 05 68 00 87  .....d..C....h..
    BA90: 25 09 40 01 05 6C 00 35 14 BF 02 01 05 70 00 01  %.@..l.5.....p..
    BAA0: 80 00 00 01 05 2C 00 00 21 00 00 01 05 30 00 FF  .....,..!....0..
    BAB0: FF FF FF 01 05 10 00 01 00 00 00 4A E5 80 00 04  ...........J....
    BAC0: 44 52 02 01 05 10 00 01 00 00 02 03 00 41 20 00  DR...........A .
    BAD0: 54 00 20 00 50 08 0D 25 24 00 01 43 62 02 03 00  T. .P..%$..Cb...
    BAE0: 41 20 00 54 00 20 00 50 08 0D 25 2C 00 01 01 02  A .T. .P..%,....
    BAF0: 20 00 41 37 00 00 03 05 00 24 00 30 C0 03 05 01   .A7.....$.0....
    BB00: 44 00 30 C0 01 05 82 00 80 00 30 C0 03 38 40 83  D.0.......0..8@.
    BB10: 00 4C 25 40 04 49 E7 02 01 02 82 00 00 4A 25 83  .L%@.I.......J%.
    BB20: 00 01 49 E7 02 0D 65 83 00 04 66 FF 2D 0D 42 0F  ..I...e...f.-.B.
    BB30: 03 56 00 41 01 02 82 00 01 4A 25 83 00 01 49 A8  .V.A.....J%...I.
    BB40: 02 01 02 82 00 01 01 04 83 00 00 00 2D 0D 42 04  ............-.B.
    BB50: 00 2D 25 41 04 3E 25 41 28 45 A8 02 01 02 82 00  .-%A.>%A(E......
    BB60: 01 4A 25 83 00 01 49 D0 02 01 02 82 00 00 07 65  .J%...I........e
    BB70: 83 00 FB 2D 05 00 08 00 00 00 2D 05 01 08 00 00  ...-......-.....
    BB80: 00 1B 05 40 01 3E 05 00 2C 00 30 C0 44 85 02 01  ...@.>..,.0.D...
    BB90: 05 BD 00 00 9F 00 00 5B 7A 28 00 25 00 00 00 49  .......[z(.%...I
    BBA0: 20 20 00 4D 60 46 00 6D 40 20 00 71 80 40 00 75    .M`F.m@ .q.@.u
    BBB0: 00 00 00 79 00 00 00 7D 00 68 00 01 40 0F 00 0A  ...y...}.h..@...
    BBC0: 00 00 00 00 52 00 01 01 00 00 37 00 00 52 3E 03  ....R.....7..R>.
    BBD0: 0C 41 14 00 01 0A 0A 15 41 33 0D 41 01 00 1B 0D  .A......A3.A....
    BBE0: 41 04 15 05 41 10 2D 05 41 00 F4 00 F4 01 02 09  A...A.-.A.......
    BBF0: 08 41 33 8D 41 00 F4 1B 1D 41 07 01 1A 06 00 41  .A3.A....A.....A
    BC00: 01 05 01 0B 00 00 00 F4 01 25 C9 00 F4 01 05 C4  .........%......
    BC10: 00 00 00 00 00 5B 11 01 01 01 00 04 37 00 00 03  .....[......7...
    BC20: F9 46 00 08 E5 00 7F 03 0A 41 42 2D 0D 41 04 00  .F.......AB-.A..
    BC30: 03 8C 41 02 00 2D 0C 42 00 00 2D 0D 42 04 00 56  ..A..-.B..-.B..V
    BC40: 30 46 03 04 40 00 00 3E 05 40 00 00 00 00 44 49  0F..@..>.@....DI
    BC50: 00 3D FA 00 40 44 50 00 3E A5 46 01 49 5B 00 33  .=..@DP.>.F.I[.3
    BC60: 1A 42 41 43 62 00 03 A5 46 01 3D 02 00 40 47 62  .BACb...F.=..@Gb
    BC70: 00 2D 1A 42 41 43 2C 00 4C E5 46 80 44 6A 00 5B  .-.BAC,.L.F.Dj.[
    BC80: 03 8A 41 42 56 00 40 03 0A 42 41 03 8C 40 00 00  ..ABV.@..BA..@..
    BC90: 3E 8D 40 FF FF 44 10 01 03 24 42 02 00 03 22 46  >.@..D...$B..."F
    BCA0: 42 09 25 42 3F 3E 25 42 05 49 A6 00 03 1A 40 40  B.%B?>%B.I....@@
    BCB0: 03 0D 42 04 00 2D 1A 42 41 43 E1 00 3E 25 42 06  ..B..-.BAC..>%B.
    BCC0: 49 CD 00 33 0D 41 03 00 56 08 42 2D 0D 40 01 00  I..3.A..V.B-.@..
    BCD0: 3E 1A 40 40 47 9F 00 2D 1A 42 41 2D 0D 41 03 00  >.@@G..-.BA-.A..
    BCE0: 43 04 01 03 1A 40 40 09 0D 42 1F 00 2D 1A 42 41  C....@@..B..-.BA
    BCF0: 4C 25 46 80 49 04 01 56 18 40 4C 25 46 40 49 F9  L%F.I..V.@L%F@I.
    BD00: 00 01 02 00 00 40 01 04 01 00 00 00 43 04 01 01  .....@......C...
    BD10: 02 91 0A 40 01 04 92 0A 00 00 2D 0D 41 03 00 03  ...@......-.A...
    BD20: 8A 41 42 43 71 00 5B 00 21 00 02 01 00 04 37 00  .ABCq.[.!.....7.
    BD30: 00 01 01 A4 00 01 01 01 94 00 00 3C 25 95 00 01  ...........<%...
    BD40: 49 13 00 02 00 01 A4 00 5B 00 8E 00 01 02 00 04  I.......[.......
    BD50: 66 FF 56 08 47 2D 0D 42 5C 00 03 21 47 00 09 25  f.V.G-.B\..!G..%
    BD60: 47 F0 42 22 47 63 00 43 00 63 80 36 00 63 60 3E  G.B"Gc.C.c.6.c`>
    BD70: 00 63 20 2E 00 5A 5A 5B 2D 0D 42 26 00 43 43 00  .c ..ZZ[-.B&.CC.
    BD80: 2D 0D 42 0C 00 43 43 00 2D 0D 42 18 00 03 21 47  -.B..CC.-.B...!G
    BD90: 00 09 25 47 07 2D 0A 42 47 2D 0A 42 47 03 0C 48  ..%G.-.BG-.BG..H
    BDA0: 00 00 5B 7A 32 00 00 00 00 02 00 04 00 26 00 28  ..[z2........&.(
    BDB0: 00 2A 00 00 02 00 2C 00 2D 00 2E 00 2F 00 00 00  .*....,.-.../...
    BDC0: 00 01 00 02 00 03 00 04 00 05 00 0A 00 00 A0 00  ................
    BDD0: 40 51 E0 51 80 52 20 53 BF 02 02 02 1C 04 20 05  @Q.Q.R S...... .
    BDE0: 01 64 00 00 00 03 02 02 40 66 1F 02 04 01 0C 00  .d......@f......
    BDF0: 52 45 08 05 01 FF 03 00 00 3D 0D 01 00 00 49 2F  RE.......=....I/
    BE00: 00 02 04 00 28 00 5B 02 04 01 1C 00 52 45 08 05  ....(.[.....RE..
    BE10: 01 FF 00 00 00 20 05 01 A0 86 01 00 7C 04 40 20  ..... ......|.@ 
    BE20: 00 7E 05 40 FF 00 00 00 03 02 01 40 03 04 40 24  .~.@.......@..@$
    BE30: 00 21 05 40 A0 86 01 00 2D 02 01 40 02 E5 00 01  .!.@....-..@....
    BE40: 56 00 03 02 0D 03 02 00 56 00 04 7C 04 02 3C 00  V.......V..|..<.
    BE50: 7E 05 40 10 27 00 00 02 02 01 40 02 04 02 4C 00  ~.@.'.....@...L.
    BE60: 02 A4 03 56 00 02 E4 03 5A 00 52 37 03 01 05 01  ...V....Z.R7....
    BE70: 03 71 03 03 03 04 40 64 00 21 05 40 A0 86 01 00  .q....@d.!.@....
    BE80: 02 02 01 40 55 18 03 02 04 02 50 00 02 E4 03 5B  ...@U.....P....[
    BE90: 00 52 37 7C 04 02 40 00 7E 05 40 10 27 00 00 02  .R7|..@.~.@.'...
    BEA0: 02 02 40 02 E4 03 57 00 52 37 02 E5 03 01 02 02  ..@...W.R7......
    BEB0: 02 01 52 37 03 01 06 01 03 B1 03 03 7C 05 06 A0  ..R7........|...
    BEC0: 86 01 00 7E 02 40 05 03 02 03 40 03 02 05 40 43  ...~.@....@...@C
    BED0: FA 00 3D E5 00 00 44 66 02 3E 04 03 04 00 47 21  ..=...Df.>....G!
    BEE0: 01 03 02 03 05 3E 04 03 04 00 47 21 01 03 04 03  .....>....G!....
    BEF0: 04 00 2D 05 03 71 02 00 00 03 04 40 7C 00 3E 05  ..-..q.....@|.>.
    BF00: 40 00 00 00 00 44 D9 01 33 04 03 7C 00 7C 02 03  @....D..3..|.|..
    BF10: 03 7E 05 40 A0 86 01 00 03 02 46 40 02 04 01 50  .~.@......F@...P
    BF20: 00 03 04 40 64 00 21 05 40 A0 86 01 00 02 02 02  ...@d.!.@.......
    BF30: 40 02 05 03 02 00 00 00 02 A4 03 5B 00 52 37 7C  @..........[.R7|
    BF40: 04 03 4C 00 7E 05 40 A0 86 01 00 02 02 02 40 02  ..L.~.@.......@.
    BF50: E4 03 5A 00 52 37 02 02 02 01 02 E5 03 01 52 37  ..Z.R7........R7
    BF60: 03 01 04 01 02 04 01 40 00 02 A4 03 57 00 7C 04  .......@....W.|.
    BF70: 03 3C 00 7E 05 40 A0 86 01 00 02 02 02 40 02 E4  .<.~.@.......@..
    BF80: 03 56 00 52 37 7C 05 04 10 27 00 00 7E 01 40 01  .V.R7|...'..~.@.
    BF90: 03 02 04 40 03 02 05 02 3E 02 05 04 45 CE 01 33  ...@....>...E..3
    BFA0: 02 05 04 43 E0 01 33 02 04 05 03 02 05 04 43 E0  ...C..3.......C.
    BFB0: 01 03 02 04 02 56 00 05 7C 04 02 74 00 7E 05 40  .....V..|..t.~.@
    BFC0: 10 27 00 00 03 02 04 40 7C 02 40 40 02 02 01 40  .'.....@|.@@...@
    BFD0: 02 02 02 41 7C 04 02 78 00 7E 05 40 10 27 00 00  ...A|..x.~.@.'..
    BFE0: 7C 02 40 40 02 25 03 01 52 37 7C 02 05 05 52 37  |.@@.%..R7|...R7
    BFF0: 02 25 03 03 52 37 03 04 40 68 00 21 05 40 0A 00  .%..R7..@h.!.@..
    C000: 00 00 2C 02 01 40 7C 04 02 6C 00 7E 05 40 10 27  ..,..@|..l.~.@.'
    C010: 00 00 2C 02 01 40 7C 04 02 70 00 7E 05 40 10 27  ..,..@|..p.~.@.'
    C020: 00 00 2C 02 01 40 26 05 01 64 00 00 00 21 05 40  ..,..@&..d...!.@
    C030: 64 00 00 00 2D 02 02 40 55 38 00 43 68 00 2D 05  d...-..@U8.Ch.-.
    C040: 05 70 02 00 00 27 05 05 71 02 00 00 21 05 40 71  .p...'..q...!.@q
    C050: 02 00 00 3E 04 40 04 00 47 89 02 02 04 00 2C 00  ...>.@..G.....,.
    C060: 5B 56 00 00 03 31 00 00 33 25 00 01 02 02 00 40  [V...1..3%.....@
    C070: 03 04 46 08 00 03 04 40 80 00 15 25 00 02 2D 0A  ..F....@...%..-.
    C080: 42 00 21 04 40 84 00 2D 02 46 40 3D 02 00 46 48  B.!.@..-.F@=..FH
    C090: BE 02 02 02 00 46 5B 00 78 00 01 01 00 00 37 00  .....F[.x.....7.
    C0A0: 00 52 14 0D A5 51 1B 01 54 20 54 1B 07 25 44 1B  .R...Q..T T..%D.
    C0B0: FE 54 20 45 1B 42 29 00 63 00 31 00 63 01 39 00  .T E.B).c.1.c.9.
    C0C0: 63 02 4D 00 5A 5A 43 70 00 01 25 45 1B 02 43 3E  c.M.ZZCp..%E..C>
    C0D0: 00 01 25 45 1B 01 54 20 42 1B 54 00 43 1B 54 00  ..%E..T B.T.C.T.
    C0E0: 47 1B 43 70 00 01 0D 43 1B 01 01 01 05 47 1B 01  G.Cp...C.....G..
    C0F0: 00 01 00 0D 65 48 1B 01 0D 65 4B 1B 01 01 0D 53  ....eH...eK....S
    C100: 1B 10 10 01 25 42 1B 01 54 30 51 1B 3A 00 00 5B  ....%B..T0Q.:..[
    C110: 74 00 01 01 00 00 37 00 00 4A A5 CB 05 01 44 15  t.....7..J....D.
    C120: 00 02 65 00 01 0E 25 00 80 52 14 03 00 46 CC 00  ..e...%..R...F..
    C130: 08 25 00 0F 52 14 54 30 9D 1B 3C 69 9D 1B 00 44  .%..R.T0..<i...D
    C140: 65 00 01 69 9D 1B 00 3D 65 00 00 44 65 00 4A A5  e..i...=e..De.J.
    C150: 9C 1B 01 44 65 00 4C 25 46 01 44 69 00 4A 25 A3  ...De.L%F.Di.J%.
    C160: 1B 01 49 4D 00 4A 25 A3 1B 01 44 55 00 4A 25 A3  ..IM.J%...DU.J%.
    C170: 1B 01 49 5D 00 3A 00 00 5B 4A 25 9D 1B 01 44 69  ..I].:..[J%...Di
    C180: 00 43 65 00 3E 00 01 01 00 00 37 00 00 52 14 3D  .Ce.>.....7..R.=
    C190: 65 00 01 44 30 00 0D 65 9C 1B 03 07 25 9C 1B FE  e..D0..e....%...
    C1A0: 4A A5 9C 1B 01 49 1C 00 07 E5 00 1B 7F 54 20 A9  J....I.......T .
    C1B0: 1B 43 3A 00 0D E5 00 1B 80 0D 25 9C 1B 01 3A 00  .C:.......%...:.
    C1C0: 00 5B 2C 00 02 01 00 00 37 00 00 3C 21 FC 00 00  .[,.....7..<!...
    C1D0: 49 19 00 0D A5 C0 00 01 43 26 00 3C 61 FC 00 00  I.......C&.<a...
    C1E0: 49 26 00 0D A5 C0 00 02 0D A5 C1 00 01 5B 22 00  I&...........[".
    C1F0: 01 01 04 04 03 39 00 00 55 38 00 20 02 00 00 03  .....9..U8. ....
    C200: 04 41 00 00 56 38 41 27 02 40 41 02 E2 00 40 5B  .A..V8A'.@A...@[
    C210: 19 00 01 01 00 08 37 00 00 52 14 01 01 5E 1B 00  ......7..R...^..
    C220: 01 01 5F 1B 01 3A 00 00 5B 00 80 00 02 01 00 00  .._..:..[.......
    C230: 56 00 40 03 39 40 00 55 38 00 66 FF 2D 0D 42 50  V.@.9@.U8.f.-.BP
    C240: 00 3E 0C 40 02 00 47 27 00 2D 0D 42 08 00 43 17  .>.@..G'.-.B..C.
    C250: 00 33 0C 40 04 00 21 0C 40 06 00 2D 0C 40 00 00  .3.@..!.@..-.@..
    C260: 56 18 40 03 02 46 40 7B 05 00 40 42 0F 00 7E 02  V.@..F@{..@B..~.
    C270: 40 46 02 02 00 40 5B 7A 30 00 64 00 00 00 00 00  @F...@[z0.d.....
    C280: 00 00 FF FF 07 00 01 00 00 00 C8 00 3F 00 08 00  ............?...
    C290: 19 00 40 06 5F 00 40 00 32 00 80 0C 7E 00 60 00  ..@._.@.2...~.`.
    C2A0: 64 00 00 32 7F 00 7F 00 64 00 C6 00 01 03 04 00  d..2....d.......
    C2B0: 37 00 00 56 00 46 56 00 00 03 21 00 00 55 20 00  7..V.FV...!..U .
    C2C0: 3D 65 00 03 44 2C 00 3D 65 00 0D 46 BB 00 02 29  =e..D,.=e..F...)
    C2D0: 00 00 32 25 00 08 0E 25 00 60 52 14 5C 22 00 4A  ..2%...%.`R.\".J
    C2E0: F8 00 02 22 00 00 52 14 03 08 41 C0 1A 09 0D 41  ..."..R...A....A
    C2F0: 03 00 66 FF 2D 0D 42 C2 00 2D 0A 42 41 03 24 00  ..f.-.B..-.BA.$.
    C300: 00 00 3D E2 00 00 48 A7 00 3E 25 00 04 44 76 00  ..=...H..>%..Dv.
    C310: 03 22 46 00 33 25 46 01 15 25 46 04 0F 25 46 01  ."F.3%F..%F..%F.
    C320: 33 39 00 00 3E 25 00 01 44 93 00 3E 25 00 02 44  39..>%..D..>%..D
    C330: 8C 00 03 25 46 21 03 65 00 2F 43 97 00 03 65 00  ...%F!.e./C...e.
    C340: 13 03 79 46 00 33 65 46 01 15 2D 46 03 0F 65 46  ..yF.3eF..-F..eF
    C350: 01 52 14 01 02 F2 1B 46 01 52 EE 1B 00 54 00 F9  .R.....F.R...T..
    C360: 1B 54 00 ED 1B 3A 00 00 5B 7A 04 00 03 02 01 04  .T...:..[z......
    C370: AF 01 01 04 00 08 37 00 00 3D 65 02 01 49 44 01  ......7..=e..ID.
    C380: 4B A5 02 03 49 5D 00 02 05 00 00 03 00 05 02 05  K...I]..........
    C390: 01 00 05 02 00 3C 21 FC 00 02 49 57 00 01 8D C0  .....<!...IW....
    C3A0: 00 00 02 51 02 01 05 C6 00 00 00 10 00 01 05 C8  ...Q............
    C3B0: 00 00 00 50 00 01 0D C3 00 02 00 54 20 CA 00 01  ...P.......T ...
    C3C0: 05 C2 00 00 01 00 00 56 20 40 43 83 00 0E 25 02  .......V @C...%.
    C3D0: 80 52 14 54 00 CC 00 56 08 48 08 25 02 07 0D 25  .R.T...V.H.%...%
    C3E0: CA 00 01 01 25 C2 00 01 54 00 C6 00 54 00 C8 00  ....%...T...T...
    C3F0: 56 20 40 3D A5 01 00 49 8F 00 0D 25 C2 00 10 07  V @=...I...%....
    C400: 65 D0 05 FE 3D A5 01 01 47 A0 00 0D 65 D0 05 01  e...=...G...e...
    C410: 03 A0 40 C9 00 03 00 46 C4 00 03 02 41 46 2D 00  ..@....F....AF-.
    C420: 46 C6 00 2D 00 41 C8 00 52 14 01 32 07 1A 40 01  F..-.A..R..2..@.
    C430: 32 08 1A 40 01 02 04 1A 46 01 02 05 1A 41 54 30  2..@....F....AT0
    C440: C1 1A 54 00 5C 1B 01 01 5D 1B 00 54 08 09 1A 54  ..T.\...]..T...T
    C450: 08 0A 1A 54 08 0B 1A 54 08 0C 1A 01 09 0E 1A 00  ...T...T........
    C460: 01 19 0D 1A 00 5C 19 01 1A FC F8 01 5C A5 01 1A  .....\......\...
    C470: 0F 10 01 09 06 1A 01 01 25 00 1A 01 0D 25 B3 1B  ........%....%..
    C480: 04 5C 62 B3 1B FE 40 54 20 35 1A 54 20 3C 1A 54  .\b...@T 5.T <.T
    C490: 00 CA 1B 54 00 C8 1B 54 00 CC 1B 4B A5 02 03 49  ...T...T...K...I
    C4A0: 40 01 0E 25 02 80 52 14 01 05 CC 00 01 00 00 00  @..%..R.........
    C4B0: 3A 00 00 5B 52 14 3D 65 02 00 49 61 01 54 20 00  :..[R.=e..Ia.T .
    C4C0: 1A 3A 00 00 3C 21 FC 00 02 49 60 01 54 08 C1 00  .:..<!...I`.T...
    C4D0: 5B 3D 65 02 10 44 6E 01 01 09 06 1A 01 5B 03 00  [=e..Dn......[..
    C4E0: 40 04 1A 09 05 40 00 00 00 FD 2D 01 40 00 09 0D  @....@....-.@...
    C4F0: 40 00 F0 01 02 04 1A 40 08 0D 00 FF 0F 56 00 41  @......@.....V.A
    C500: 03 31 41 01 74 0A 00 41 2C 09 01 00 08 25 00 FC  .1A.t..A,....%..
    C510: 14 05 00 10 01 01 5C 1B 00 01 09 0D 1A 01 5B 00  ......\.......[.
    C520: 4E 00 01 01 00 00 37 00 00 52 14 07 65 B6 1B FE  N.....7..R..e...
    C530: 3D 65 00 01 44 37 00 54 30 6E 1A 54 30 11 1A 54  =e..D7.T0n.T0..T
    C540: 20 B5 1B 54 20 BD 1B 54 30 BD 1B 4A 25 B6 1B 01   ..T ..T0..J%...
    C550: 49 2B 00 3A 00 00 5B 0D 25 BD 1B 01 54 00 9E 1B  I+.:..[.%...T...
    C560: 07 25 C0 1A F4 0D 25 03 1B 04 3A 00 00 5B D9 00  .%....%...:..[..
    C570: 01 03 00 00 37 00 00 52 14 54 20 78 1A 54 00 80  ....7..R.T x.T..
    C580: 1A 3D 65 00 01 49 9A 00 4A 25 01 1A 03 44 59 00  .=e..I..J%...DY.
    C590: 0D 25 7E 1A 07 01 25 7F 1A 01 51 01 4A 25 7F 1A  .%~...%...Q.J%..
    C5A0: 02 44 2C 00 54 20 7F 1A 54 08 81 1A 54 08 82 1A  .D,.T ..T...T...
    C5B0: 54 08 83 1A 01 0D 84 1A FF FF 01 0D 85 1A FF FF  T...............
    C5C0: 01 0D 86 1A FF FF 5B 54 00 79 1A 66 05 2D 0D 42  ......[T.y.f.-.B
    C5D0: 04 00 56 00 41 03 24 40 00 00 15 05 40 0A 03 24  ..V.A.$@....@..$
    C5E0: 40 01 00 15 05 40 0A 03 24 40 02 00 15 05 40 04  @....@..$@....@.
    C5F0: 01 02 7C 1A 40 2D 0D 42 03 00 2D 0D 41 01 00 3E  ..|.@-.B..-.A..>
    C600: 0D 41 00 01 45 67 00 5B 01 31 79 1A 00 56 00 41  .A..Eg.[.1y..V.A
    C610: 03 19 41 01 3B 02 41 3D 65 00 02 49 BC 00 03 00  ..A.;.A=e..I....
    C620: 40 7C 1A 04 02 00 40 43 C5 00 03 03 40 00 01 02  @|....@C....@...
    C630: 7C 1A 40 2D 05 46 04 00 00 00 2D 8D 41 01 00 3E  |.@-.F....-.A..>
    C640: 89 41 01 45 A9 00 5B 00 3D 00 01 01 00 04 37 00  .A.E..[.=.....7.
    C650: 00 56 00 40 03 38 40 9A 0A 21 05 40 E2 04 00 00  .V.@.8@..!.@....
    C660: 02 02 00 40 03 00 40 99 0A 1B 05 40 14 09 0D 40  ...@..@....@...@
    C670: 07 00 21 05 40 09 3D 00 00 27 05 40 64 00 00 00  ..!.@.=..'.@d...
    C680: 2C 02 00 40 5B 00 CD 00 01 01 0C 00 37 00 00 01  ,..@[.......7...
    C690: 05 82 00 2C 00 50 C0 4A 25 83 00 01 49 30 00 02  ...,.P.J%...I0..
    C6A0: 05 00 40 7E 05 00 01 05 82 00 B4 00 50 C0 02 E8  ..@~........P...
    C6B0: 00 83 00 52 29 5B 03 05 00 AC 02 50 C0 03 05 01  ...R)[.....P....
    C6C0: 8C 02 50 C0 03 05 02 78 02 50 C0 01 05 82 00 40  ..P....x.P.....@
    C6D0: 03 50 C0 4A 25 83 00 01 44 6A 00 03 05 00 28 03  .P.J%...Dj....(.
    C6E0: 50 C0 03 05 01 08 03 50 C0 03 05 02 F4 02 50 C0  P......P......P.
    C6F0: 01 02 82 00 02 4A 05 83 00 80 00 00 00 44 81 00  .....J.......D..
    C700: 2D 05 01 10 00 00 00 01 02 82 00 01 56 00 40 03  -...........V.@.
    C710: 18 40 83 00 21 05 40 10 27 00 00 03 02 46 40 56  .@..!.@.'....F@V
    C720: 00 40 03 08 40 83 00 21 05 40 10 27 00 00 27 05  .@..@..!.@.'..'.
    C730: 40 00 00 01 00 2D 02 46 40 01 02 82 00 00 56 00  @....-.F@.....V.
    C740: 40 03 20 40 83 00 09 25 40 0F 75 02 46 40 02 02  @. @...%@.u.F@..
    C750: 00 46 5B 00 53 01 02 03 00 18 37 00 00 66 FF 2D  .F[.S.....7..f.-
    C760: 0D 42 47 01 55 28 05 2D 09 42 05 2D 09 42 05 03  .BG.U(.-.B.-.B..
    C770: 0C 48 00 00 03 09 41 03 2D 19 41 03 3E 0D 41 03  .H....A.-.A.>.A.
    C780: 00 46 3F 00 5C 05 B3 1B FB 0F F0 FF 00 30 00 00  .F?.\........0..
    C790: 43 4B 00 5C 05 B3 1B FF 0F F0 FF 04 40 00 00 03  CK.\........@...
    C7A0: 09 41 00 2D 19 41 00 33 0D 41 01 00 01 0A 80 1B  .A.-.A.3.A......
    C7B0: 41 54 08 82 1B 01 99 82 1B 02 03 19 41 00 33 09  AT..........A.3.
    C7C0: 41 02 56 18 41 03 B1 41 04 33 1A 41 41 01 8A 81  A.V.A..A.3.AA...
    C7D0: 1B 41 03 19 41 00 33 09 41 02 2D 1A 41 41 2D 09  .A..A.3.A.-.AA-.
    C7E0: 41 00 4B 25 04 10 44 99 00 2D 09 41 00 01 0A 81  A.K%..D..-.A....
    C7F0: 1B 41 03 21 41 04 09 25 41 02 1B 25 41 01 01 22  .A.!A..%A..%A.."
    C800: 83 1B 41 54 00 5E 1B 01 31 5E 1B 04 01 B1 5E 1B  ..AT.^..1^....^.
    C810: 04 03 09 41 01 2D 19 41 01 33 0D 41 01 00 01 0A  ...A.-.A.3.A....
    C820: 87 1B 41 54 08 8E 1B 01 99 8E 1B 03 03 19 41 01  ..AT..........A.
    C830: 33 09 41 03 56 18 41 03 B9 41 04 33 1A 41 41 01  3.A.V.A..A.3.AA.
    C840: 8A 8D 1B 41 03 19 41 01 33 09 41 03 2D 1A 41 41  ...A..A.3.A.-.AA
    C850: 2D 09 41 01 4B 25 04 20 44 0B 01 2D 09 41 01 01  -.A.K%. D..-.A..
    C860: 0A 8D 1B 41 03 21 41 04 09 25 41 04 1B 25 41 02  ...A.!A..%A..%A.
    C870: 01 22 8F 1B 41 54 00 5F 1B 01 39 5F 1B 04 01 B9  ."..AT._..9_....
    C880: 5F 1B 04 03 21 41 04 09 25 41 80 1B 25 41 07 01  _...!A..%A..%A..
    C890: 22 9E 1B 41 3A 00 00 5B 7A 0C 00 00 00 00 02 00  "..A:..[z.......
    C8A0: 04 00 26 00 28 00 2A 00 BE 00 01 01 00 04 37 00  ..&.(.*.......7.
    C8B0: 00 03 A1 40 00 3D A5 00 00 49 49 00 66 04 03 24  ...@.=...II.f..$
    C8C0: 40 58 00 3E 25 40 FF 49 AE 00 55 00 01 02 25 01  @X.>%@.I..U...%.
    C8D0: 28 52 09 02 0D 01 29 01 52 09 02 0D 01 2A 02 52  (R....).R....*.R
    C8E0: 09 02 0D 01 2B 03 52 09 03 B1 40 01 01 B1 0A 15  ....+.R...@.....
    C8F0: 01 66 1C 03 64 40 10 00 56 20 40 2D 0D 42 14 00  .f..d@..V @-.B..
    C900: 54 30 CD 05 3E A4 40 0A 00 49 93 00 3D A5 00 00  T0..>.@..I..=...
    C910: 44 AE 00 03 24 41 1C 00 03 71 41 00 09 0D 41 0F  D...$A...qA...A.
    C920: 0F 3E 62 41 41 49 93 00 01 A2 CD 05 40 01 64 80  .>bAAI......@.d.
    C930: 0A 1C 00 3D A4 00 1C 00 44 AE 00 2D 0C 42 04 00  ...=....D..-.B..
    C940: 2D 25 40 01 3E 62 40 40 49 5C 00 01 F1 0A 15 00  -%@.>b@@I\......
    C950: 0D A5 0A 15 80 5B 01 A2 CD 05 40 01 64 80 0A 1C  .....[....@.d...
    C960: 00 54 18 0A 15 5B 0A 00 01 01 08 00 37 00 00 5B  .T...[......7..[
    C970: 1A 00 01 01 00 04 37 00 00 01 05 E5 09 FC FD FC  ......7.........
    C980: FC 01 05 E6 09 FD F8 FC FC 5B 31 02 01 01 00 08  .........[1.....
    C990: 37 00 00 0D 25 F4 16 08 07 25 62 18 FE 56 00 41  7...%....%b..V.A
    C9A0: 03 39 41 01 09 25 41 0F 03 0A 40 42 66 FF 2D 0D  .9A..%A...@Bf.-.
    C9B0: 42 11 02 15 25 41 02 2D 0A 42 41 03 0C 41 00 00  B...%A.-.BA..A..
    C9C0: 01 02 00 00 41 07 A5 01 00 FE 54 08 01 00 01 0C  ....A.....T.....
    C9D0: FB 16 02 00 03 0A 42 40 03 05 40 50 C3 00 00 56  ......B@..@P...V
    C9E0: 00 41 03 21 41 00 27 02 40 41 01 8A F7 16 40 01  .A.!A.'.@A....@.
    C9F0: 25 F7 16 02 0D 25 F5 16 02 01 A9 F9 16 01 4B 25  %....%........K%
    CA00: 01 01 49 7F 00 54 30 F9 16 01 0D F9 16 00 31 2B  ..I..T0.......1+
    CA10: A5 F9 16 01 4B 25 01 02 44 96 00 2B A5 F9 16 01  ....K%..D..+....
    CA20: 56 00 41 03 71 41 01 0F E5 41 80 01 02 FA 16 41  V.A.qA...A.....A
    CA30: 03 69 41 00 2D A5 41 01 01 02 FA 16 41 4B 25 01  .iA.-.A.....AK%.
    CA40: 02 44 C6 00 56 28 41 2D A5 41 01 01 02 FA 16 41  .D..V(A-.A.....A
    CA50: 4B 25 01 01 44 E7 00 03 71 41 00 2D A5 41 01 01  K%..D...qA.-.A..
    CA60: 02 FA 16 41 03 79 41 00 2D A5 41 01 01 02 FA 16  ...A.yA.-.A.....
    CA70: 41 0D 25 F4 16 01 03 A5 41 01 43 BA 01 03 29 40  A.%.....A.C...)@
    CA80: 01 03 65 40 01 03 99 40 00 56 00 41 03 71 41 01  ..e@...@.V.A.qA.
    CA90: 0F 65 41 01 0F E5 41 80 01 02 FA 16 41 01 A5 F9  .eA...A.....A...
    CAA0: 16 04 3D 65 01 04 47 28 01 01 0D F9 16 01 13 43  ..=e..G(.......C
    CAB0: 57 01 01 A2 F9 16 40 01 0D F9 16 01 31 43 57 01  W.....@.....1CW.
    CAC0: 07 65 F9 16 EF 01 A5 F9 16 03 3E 25 40 04 46 57  .e........>%@.FW
    CAD0: 01 01 A2 F9 16 40 31 A5 F9 16 01 5C 65 F9 16 FD  .....@1....\e...
    CAE0: 20 0D 25 F4 16 01 03 A5 41 00 43 BA 01 03 05 41   .%.....A.C....A
    CAF0: 01 00 00 80 03 AA 41 40 01 02 FA 16 41 3D 65 01  ......A@....A=e.
    CB00: 01 49 82 01 02 A8 00 FA 16 43 F9 01 56 00 41 03  .I.......C..V.A.
    CB10: 1A 41 40 3B 02 41 03 28 41 FA 16 03 68 41 FA 16  .A@;.A.(A...hA..
    CB20: 03 A8 41 FA 16 03 E8 41 FA 16 04 02 00 41 56 28  ..A....A.....AV(
    CB30: 40 2D 8D 40 04 00 3E 25 40 04 47 F9 01 33 25 40  @-.@..>%@.G..3%@
    CB40: 04 43 36 01 02 65 00 02 03 0D 41 64 00 33 0D 41  .C6..e....Ad.3.A
    CB50: 01 00 3E 0D 41 00 00 44 F9 01 51 64 4A 25 F6 16  ..>.A..D..QdJ%..
    CB60: 10 44 C3 01 4A 65 F6 16 06 49 F9 01 02 65 00 01  .D..Je...I...e..
    CB70: 0D 25 F5 16 02 3E A5 41 00 44 63 01 4B 25 01 01  .%...>.A.Dc.K%..
    CB80: 44 F3 00 0D 25 F5 16 02 01 25 F4 16 02 51 01 54  D...%....%...Q.T
    CB90: 00 F4 16 54 00 FB 16 5B 7A 20 00 68 48 01 00 6C  ...T...[z .hH..l
    CBA0: 48 03 02 70 48 05 04 74 48 42 41 78 48 49 48 7C  H..pH..tHBAxHIH|
    CBB0: 48 4B 4A 98 48 29 28 80 48 4D 4C 00 5F 00 02 02  HKJ.H)(.HML._...
    CBC0: 00 04 37 00 00 3D 65 00 01 44 54 00 55 30 00 3D  ..7..=e..DT.U0.=
    CBD0: 25 00 06 46 50 00 32 25 00 01 20 25 00 08 56 08  %..FP.2%.. %..V.
    CBE0: 48 03 22 48 40 0D A5 99 18 01 02 A0 00 98 18 08  H."H@...........
    CBF0: A5 00 03 4A 25 98 18 02 44 4A 00 5C 0D 99 18 FF  ...J%...DJ.\....
    CC00: FE 01 00 43 50 00 0D 0D 99 18 01 01 3A 00 00 5B  ...CP.......:..[
    CC10: 0D 65 CF 05 08 0D 25 80 01 01 5B 00 0A 00 01 02  .e....%...[.....
    CC20: 00 00 5B 7A 00 00 0A 00 01 01 00 04 55 00 00 5B  ..[z........U..[
    CC30: 3C 00 01 01 00 00 55 00 00 55 00 01 01 05 91 0A  <.....U..U......
    CC40: 03 00 00 00 02 38 00 92 0A 02 21 01 00 08 25 00  .....8....!...%.
    CC50: 0F 08 25 01 F0 20 05 00 20 4E 00 00 02 02 00 40  ..%.. .. N.....@
    CC60: 20 05 01 E2 04 00 00 02 02 01 40 5B AF 01 01 06   .........@[....
    CC70: 04 18 03 05 46 00 51 25 02 3D E5 00 01 49 F3 00  ....F.Q%.=...I..
    CC80: 55 38 00 66 08 03 24 41 04 00 2D 0D 42 08 00 55  U8.f..$A..-.B..U
    CC90: 00 02 3D 04 00 00 00 47 42 00 2C A5 02 01 2D 0D  ..=....GB.,...-.
    CCA0: 42 0C 00 3D A2 02 41 45 26 00 55 00 01 5B 02 24  B..=..AE&.U..[.$
    CCB0: 02 05 00 02 64 02 04 00 03 01 46 00 56 00 40 03  ....d.....F.V.@.
    CCC0: 21 40 02 6F 02 46 40 7C 05 46 00 40 00 00 7E 05  !@.o.F@|.F.@..~.
    CCD0: 40 C4 09 00 00 02 02 01 40 02 E5 02 01 7B 05 01  @.......@....{..
    CCE0: 32 00 00 00 7E 05 40 10 27 00 00 7C 05 40 4E 0C  2...~.@.'..|.@N.
    CCF0: 00 00 7E 05 40 40 4B 4C 00 02 0A 05 40 21 05 40  ..~.@@KL....@!.@
    CD00: 40 4B 4C 00 27 05 40 4E 0C 00 00 02 01 03 01 32  @KL.'.@N.......2
    CD10: 02 03 40 21 05 46 D0 07 00 00 27 05 40 10 27 00  ..@!.F....'.@.'.
    CD20: 00 03 02 00 46 33 02 00 40 27 05 00 10 27 00 00  ....F3..@'...'..
    CD30: 3E 0C 40 06 00 48 D1 00 03 0C 40 06 00 55 00 04  >.@..H....@..U..
    CD40: 02 8A 04 40 03 01 40 01 33 01 40 04 21 05 40 32  ...@..@.3.@.!.@2
    CD50: 00 00 00 27 05 40 50 C3 00 00 02 8A 05 40 5B 55  ...'.@P......@[U
    CD60: 38 00 03 05 40 00 32 00 00 3D 05 00 00 00 00 00  8...@.2..=......
    CD70: 44 3C 01 03 02 40 46 2D 01 40 00 33 05 40 01 00  D<...@F-.@.3.@..
    CD80: 00 00 27 01 40 00 3E 05 40 9C 18 00 00 47 2B 01  ..'.@.>.@....G+.
    CD90: 03 05 40 00 32 00 00 3E 05 40 C8 00 00 00 46 3C  ..@.2..>.@....F<
    CDA0: 01 03 05 40 C8 00 00 00 66 FF 2D 0D 42 8F 01 3E  ...@....f.-.B..>
    CDB0: 0C 40 02 00 47 53 01 2D 0D 42 08 00 43 43 01 33  .@..GS.-.B..CC.3
    CDC0: 0C 40 00 00 2D 0C 40 06 00 33 0D 40 01 00 27 0C  .@..-.@..3.@..'.
    CDD0: 40 06 00 2D 0C 40 04 00 02 E2 00 40 33 0C 40 04  @..-.@.....@3.@.
    CDE0: 00 21 0C 40 06 00 2D 0C 40 00 00 27 02 46 40 02  .!.@..-.@..'.F@.
    CDF0: 0A 00 40 02 B2 00 40 5B 7A 20 00 C8 00 40 06 08  ..@...@[z ...@..
    CE00: 00 19 00 40 06 80 0C 40 00 32 00 80 0C 38 18 60  ...@...@.2...8.`
    CE10: 00 64 00 00 32 00 32 7F 00 64 00 00 07 00 02 01  .d..2.2..d......
    CE20: 00 00 5B 00 50 01 02 01 04 04 37 00 00 66 1C 2D  ..[.P.....7..f.-
    CE30: 0C 42 06 00 3D E5 00 02 44 4B 00 3D E5 00 03 44  .B..=...DK.=...D
    CE40: F7 00 03 38 00 2F 0A 09 25 00 20 02 01 01 00 02  ...8./..%. .....
    CE50: F0 01 CD 05 52 12 01 08 AB 0A 81 0A 01 18 83 0A  ....R...........
    CE60: 81 0A 5C E2 2F 0A DF 00 5C E2 30 0A DF 00 5B 02  ..\./...\.0...[.
    CE70: F0 01 CD 05 0E E5 01 80 52 12 02 01 01 00 02 E4  ........R.......
    CE80: 01 2C 00 52 26 01 39 DD 09 01 02 EC 01 2C 00 52  .,.R&.9......,.R
    CE90: 26 01 79 DD 09 01 02 F4 01 2C 00 52 26 01 B9 DD  &.y......,.R&...
    CEA0: 09 01 02 FC 01 2C 00 52 26 01 F9 DD 09 01 02 E4  .....,.R&.......
    CEB0: 01 30 00 52 26 01 39 DE 09 01 02 EC 01 30 00 52  .0.R&.9......0.R
    CEC0: 26 01 79 DE 09 01 02 F4 01 30 00 52 26 01 B9 DE  &.y......0.R&...
    CED0: 09 01 02 FC 01 30 00 52 26 01 F9 DE 09 01 31 05  .....0.R&.....1.
    CEE0: DE 09 01 01 01 00 02 E5 01 08 52 26 3D E5 01 04  ..........R&=...
    CEF0: 46 D3 00 02 E5 01 04 3D E5 01 08 46 E1 00 32 E5  F......=...F..2.
    CF00: 01 04 43 F0 00 1A 3D 01 01 3D E5 01 12 45 F0 00  ..C...=..=...E..
    CF10: 02 E5 01 12 5C 39 02 0A E0 01 5B 52 3B 03 05 00  ....\9....[R;...
    CF20: 10 00 00 00 55 38 00 3D 01 00 01 45 1B 01 03 0D  ....U8.=...E....
    CF30: 00 18 00 3D 01 00 02 45 1B 01 03 0D 00 20 00 02  ...=...E..... ..
    CF40: 01 01 00 02 F0 01 CD 05 0E E5 01 80 52 12 56 00  ............R.V.
    CF50: 41 01 02 91 0A 00 01 04 92 0A 10 00 2D 05 00 01  A...........-...
    CF60: 00 00 00 2D 25 41 01 2D 0D 42 04 00 3E 25 41 07  ...-%A.-.B..>%A.
    CF70: 45 2D 01 5B 00 01 01 02 04 04 37 00 00 3D 25 00  E-.[......7..=%.
    CF80: FF 49 EC 00 02 20 00 80 0A 4A 25 80 0A 08 49 26  .I... ...J%...I&
    CF90: 00 08 25 00 10 07 25 80 0A EF 01 05 32 0A 08 00  ..%...%.....2...
    CFA0: 00 00 01 05 32 0A 10 00 00 00 01 05 82 00 10 00  ....2...........
    CFB0: 60 C0 01 05 83 00 00 80 03 00 01 05 82 00 14 00  `...............
    CFC0: 60 C0 03 00 40 83 00 66 18 3E 04 40 04 00 49 EB  `...@..f.>.@..I.
    CFD0: 00 03 00 40 83 00 03 00 00 83 00 03 00 41 83 00  ...@.........A..
    CFE0: 3E 05 40 00 00 00 00 44 EB 00 01 00 91 0A 83 00  >.@....D........
    CFF0: 01 00 92 0A 83 00 33 0D 40 01 00 3E 0D 40 00 00  ......3.@..>.@..
    D000: 49 76 00 01 05 64 C0 0C 02 00 00 54 00 65 C0 01  Iv...d.....T.e..
    D010: 05 66 C0 CC 28 00 00 54 00 67 C0 15 05 00 02 2D  .f..(..T.g.....-
    D020: 05 00 00 00 00 7C 01 02 E8 C0 00 51 32 4A E5 A0  .....|.....Q2J..
    D030: 21 80 49 B9 00 01 05 32 0A 08 00 00 00 01 05 32  !.I....2.......2
    D040: 0A 04 00 00 00 01 05 32 0A 01 00 00 00 51 32 50  .......2.....Q2P
    D050: 02 4A 25 80 0A 80 44 DD 00 5C 21 80 0A EF 00 5B  .J%...D..\!....[
    D060: 01 65 E7 0A FF 01 21 E7 0A 00 02 05 01 04 00 00  .e....!.........
    D070: 00 52 1F 5B 98 00 01 04 00 00 03 05 40 7C 01 00  .R.[........@|..
    D080: 00 3D A5 00 00 44 15 00 5B 03 00 46 20 49 7C 02  .=...D..[..F I|.
    D090: 40 46 7E 05 40 A0 86 01 00 03 00 41 23 49 09 05  @F~.@......A#I..
    D0A0: 41 03 00 00 00 6F 02 40 41 7C 05 40 45 0C 00 00  A....o.@A|.@E...
    D0B0: 7E 05 40 40 4B 4C 00 3E 05 40 00 00 00 00 49 51  ~.@@KL.>.@....IQ
    D0C0: 00 03 25 40 01 01 8A 22 49 40 7C 05 40 40 4B 4C  ..%@..."I@|.@@KL
    D0D0: 00 7E 05 40 45 0C 00 00 03 00 41 23 49 09 05 41  .~.@E.....A#I..A
    D0E0: 03 00 00 00 75 02 40 41 03 00 46 20 49 43 85 00  ....u.@A..F IC..
    D0F0: 1B 05 40 01 2B 02 20 49 40 33 02 46 40 01 02 21  ..@.+. I@3.F@..!
    D100: 49 46 51 01 0D 65 23 49 01 51 01 5B 31 00 01 03  IFQ..e#I.Q.[1...
    D110: 04 00 37 00 00 55 38 00 26 05 00 E2 04 00 00 01  ..7..U8.&.......
    D120: E2 9A 0A 40 21 05 41 64 00 00 00 27 05 40 09 3D  ...@!.Ad...'.@.=
    D130: 00 00 15 25 40 04 5C A2 99 0A 8F 40 5B 00 10 00  ...%@.\....@[...
    D140: 01 03 00 08 37 00 00 55 18 00 55 08 01 5B C3 01  ....7..U..U..[..
    D150: 01 04 00 04 37 00 00 3D 65 00 08 49 23 00 02 05  ....7..=e..I#...
    D160: 01 38 00 06 0A 52 45 08 0D 01 FF 03 02 89 00 01  .8...RE.........
    D170: 5B 3D 65 00 03 44 70 01 02 01 01 00 02 65 01 07  [=e..Dp......e..
    D180: 52 50 3D 05 02 00 00 00 00 44 0B 01 37 00 00 01  RP=......D..7...
    D190: 05 82 00 7C 02 20 C0 01 05 82 00 94 02 20 C0 4A  ...|. ....... .J
    D1A0: A5 83 00 06 49 49 00 01 05 82 00 7C 02 20 C0 0D  ....II.....|. ..
    D1B0: 65 83 00 04 01 05 82 00 7C 02 20 C0 03 00 46 83  e.......|. ...F.
    D1C0: 00 37 00 00 01 05 82 00 80 02 20 C0 5E 65 46 FC  .7........ .^eF.
    D1D0: 01 3D 25 00 01 44 96 00 09 65 46 FC 01 05 82 00  .=%..D...eF.....
    D1E0: 84 02 20 C0 3C 0C 83 00 04 00 44 C6 00 07 0D 83  .. .<.....D.....
    D1F0: 00 9F FF 51 3C 03 0C 41 04 00 4C 25 41 20 49 BE  ...Q<..A..L%A I.
    D200: 00 0F 25 41 20 01 0A 83 00 41 51 3C 01 0C 83 00  ..%A ....AQ<....
    D210: 04 00 51 3C 56 00 40 03 19 40 00 21 05 40 64 00  ..Q<V.@..@.!.@d.
    D220: 00 00 03 05 41 78 5D 02 00 33 02 41 40 27 05 41  ....Ax]..3.A@'.A
    D230: 71 02 00 00 03 22 46 40 01 05 82 00 7C 02 20 C0  q...."F@....|. .
    D240: 01 02 83 00 46 01 05 82 00 94 02 20 C0 4A A5 83  ....F...... .J..
    D250: 00 02 49 F7 00 37 00 00 5B 02 01 01 00 52 50 3D  ..I..7..[....RP=
    D260: 05 02 00 00 00 00 44 6C 01 4B E5 02 40 44 2F 01  ......Dl.K..@D/.
    D270: 01 05 82 00 F8 01 60 C0 0D 25 83 00 1F 4B 25 02  ......`..%...K%.
    D280: 80 44 3B 01 0D A5 90 48 01 03 05 41 FF FF FF FF  .D;....H...A....
    D290: 69 01 41 02 01 05 82 00 E4 01 60 C0 09 00 41 83  i.A.......`...A.
    D2A0: 00 0F 01 41 01 01 02 83 00 41 01 05 82 00 F4 01  ...A.....A......
    D2B0: 60 C0 0D 01 83 00 02 51 32 5B 55 00 00 5B 02 01  `......Q2[U..[..
    D2C0: 01 00 52 50 3D 05 02 00 00 00 00 44 6C 01 02 E4  ..RP=......Dl...
    D2D0: 00 05 00 02 A4 00 06 00 02 0D 02 01 01 03 24 41  ..............$A
    D2E0: 08 00 4C 25 41 01 44 9F 01 02 65 02 02 02 25 01  ..L%A.D...e...%.
    D2F0: 32 02 64 01 0C 00 02 8C 01 0E 00 3D 65 01 FF 44  2.d........=e..D
    D300: C2 01 02 99 02 00 52 36 2D 0D 42 04 00 43 A3 01  ......R6-.B..C..
    D310: 5B 00 83 00 01 03 04 00 37 00 00 3D 65 00 09 44  [.......7..=e..D
    D320: 80 00 03 0A 00 42 66 20 03 0C 41 00 00 2D 0A 41  .....Bf ..A..-.A
    D330: 42 2D 0D 42 04 00 3E 0A 42 41 44 7C 00 3D 0C 00  B-.B..>.BAD|.=..
    D340: 00 00 44 3B 00 2D 0C 42 02 00 43 24 00 02 0A 01  ..D;.-.B..C$....
    D350: 42 3D 65 00 03 44 7B 00 3D 65 00 07 44 7B 00 03  B=e..D{.=e..D{..
    D360: E4 41 05 00 02 04 01 08 00 3E E5 41 00 44 7C 00  .A.......>.A.D|.
    D370: 3D 8C 00 10 00 47 72 00 2D 0D 42 06 00 33 E5 41  =....Gr.-.B..3.A
    D380: 01 43 57 00 02 04 00 0C 00 03 0A 42 00 5B 55 00  .CW........B.[U.
    D390: 01 5B 52 1B 5B 00 67 02 01 05 00 00 37 00 00 03  .[R.[.g.....7...
    D3A0: 20 46 CF 05 0E 25 00 60 52 14 08 25 00 0F 42 29   F...%.`R..%..B)
    D3B0: 00 63 0F 58 00 63 11 4E 01 63 12 CC 01 63 01 24  .c.X.c.N.c...c.$
    D3C0: 02 63 00 4D 02 63 08 18 01 63 09 F9 00 63 0A 00  .c.M.c...c...c..
    D3D0: 01 63 13 08 01 63 14 10 01 63 0B 20 01 63 0C 14  .c...c...c. .c..
    D3E0: 02 63 0D 28 01 63 10 41 01 5A 5A 43 F5 00 54 00  .c.(.c.A.ZZC..T.
    D3F0: 72 4A 3D A5 00 00 44 71 00 3D A5 00 02 44 E3 00  rJ=...Dq.=...D..
    D400: 3D A5 00 05 49 EB 00 54 08 A1 4A 3D 25 02 00 49  =...I..T..J=%..I
    D410: 80 00 02 25 02 02 32 25 02 01 01 E1 A1 4A 02 4A  ...%..2%.....J.J
    D420: 25 A4 4A 01 49 C6 00 7B 05 01 00 80 00 00 7E 05  %.J.I..{......~.
    D430: 40 8C 0A 00 00 56 00 46 03 29 46 02 27 02 40 46  @....V.F.)F.'.@F
    D440: 07 65 A8 4A FE 01 05 A9 4A 00 80 00 00 01 02 AA  .e.J....J.......
    D450: 4A 40 0D E5 AB 4A 10 0D 65 00 4A 04 02 20 00 00  J@...J..e.J.. ..
    D460: 4A 08 25 00 07 0E 25 00 00 52 14 14 3D 00 04 5C  J.%...%..R..=..\
    D470: B9 9C 1B 8F 00 3A 00 00 5B 01 05 72 4A 01 00 00  .....:..[..rJ...
    D480: 00 07 E5 00 4A 2F 0D 65 00 4A 04 3A 00 00 5B 54  ....J/.e.J.:..[T
    D490: 20 B0 4A 43 F5 00 01 25 B0 4A 01 43 F5 00 01 25   .JC...%.J.C...%
    D4A0: B0 4A 02 43 F5 00 01 25 B0 4A 03 43 F5 00 07 25  .J.C...%.J.C...%
    D4B0: A0 4A EF 43 F5 00 0D 25 A0 4A 10 43 F5 00 0D 65  .J.C...%.J.C...e
    D4C0: A8 4A 01 51 0A 07 25 A5 4A FE 51 0A 01 0D A4 4A  .J.Q..%.J.Q....J
    D4D0: 01 02 51 C8 43 F5 00 0D 25 B6 4A 10 01 31 A7 4A  ..Q.C...%.J..1.J
    D4E0: 00 43 F5 00 01 0D 03 4A 1F 00 01 69 47 4A 02 4C  .C.....J...iGJ.L
    D4F0: 25 46 10 49 77 01 3D A5 00 03 49 77 01 4A 25 0D  %F.Iw.=...Iw.J%.
    D500: 4A 10 49 77 01 01 A5 47 4A 02 43 7C 01 01 B1 47  J.Iw...GJ.C|...G
    D510: 4A 00 3D 25 02 00 44 91 01 32 25 02 01 14 25 02  J.=%..D..2%...%.
    D520: 04 5C E1 47 4A 8F 02 3D E5 00 04 47 A0 01 0D 25  .\.GJ..=...G...%
    D530: 47 4A 01 43 A5 01 07 25 47 4A FE 3D A5 00 05 44  GJ.C...%GJ.=...D
    D540: B3 01 3D A5 00 00 49 C4 01 02 A5 00 00 03 39 40  ..=...I.......9@
    D550: 00 33 25 40 01 01 22 A3 4A 40 02 E0 02 48 4A 43  .3%@..".J@...HJC
    D560: F5 00 02 E0 02 48 4A 4B E5 02 01 44 F5 00 02 B0  .....HJK...D....
    D570: 00 47 4A 02 E5 00 04 4A 25 47 4A 01 44 ED 01 02  .GJ....J%GJ.D...
    D580: E5 00 08 3D A5 00 02 44 FB 01 3D A5 00 03 49 04  ...=...D..=...I.
    D590: 02 54 00 48 4A 50 02 43 F5 00 02 A5 00 00 03 31  .T.HJP.C.......1
    D5A0: 43 00 4A 62 47 4A 44 44 F5 00 54 08 A4 4A 51 C8  C.JbGJDD..T..JQ.
    D5B0: 0D 25 A5 4A 01 51 32 43 F5 00 0D 25 48 4A 01 3D  .%.J.Q2C...%HJ.=
    D5C0: A5 00 00 44 39 02 01 0D 79 4A 0F 01 43 F5 00 03  ...D9...yJ..C...
    D5D0: 39 43 00 03 02 40 44 33 25 40 01 01 0A 79 4A 40  9C...@D3%@...yJ@
    D5E0: 43 F5 00 54 00 79 4A 07 25 48 4A FE 07 0D 47 4A  C..T.yJ.%HJ...GJ
    D5F0: FE 80 54 20 A0 4A 54 20 B0 4A 43 F5 00 00 29 00  ..T .JT .JC...).
    D600: 01 01 00 00 37 00 00 66 1C 2D 0D 42 14 00 03 30  ....7..f.-.B...0
    D610: 40 CD 05 3E 25 40 00 44 28 00 33 25 40 01 2D 0C  @..>%@.D(.3%@.-.
    D620: 42 04 00 43 15 00 5B 00 46 01 01 06 00 00 37 00  B..C..[.F.....7.
    D630: 00 42 29 00 63 07 24 01 63 01 25 00 63 00 C0 00  .B).c.$.c.%.c...
    D640: 63 0B 27 01 63 04 2C 01 5A 5A 43 3F 01 02 65 00  c.'.c.,.ZZC?..e.
    D650: 11 52 04 4B E5 02 01 49 20 01 02 65 00 0A 55 08  .R.K...I ..e..U.
    D660: 02 52 4D 3D E5 00 04 47 50 00 68 25 00 01 02 25  .RM=...GP.h%...%
    D670: 02 01 52 4D 68 25 00 01 3D A5 00 00 49 82 00 20  ..RMh%..=...I.. 
    D680: 05 01 64 00 00 00 02 05 01 14 1E 00 02 2C 21 01  ..d..........,!.
    D690: 00 02 01 02 00 02 02 00 40 52 0C 26 05 00 64 00  ........@R.&..d.
    D6A0: 00 00 02 02 01 40 02 01 00 02 02 65 00 01 55 08  .....@.....e..U.
    D6B0: 02 52 4D 3D E5 00 04 47 A0 00 68 25 00 01 02 25  .RM=...G..h%...%
    D6C0: 02 01 52 4D 68 25 00 01 51 05 02 65 00 01 52 04  ..RMh%..Q..e..R.
    D6D0: 51 0A 02 65 00 09 52 4D 3D E5 00 04 47 20 01 68  Q..e..RM=...G .h
    D6E0: 25 00 01 52 4D 43 20 01 02 65 00 12 52 04 4B E5  %..RMC ..e..R.K.
    D6F0: 02 01 44 20 01 02 65 00 08 52 4D 3D E5 00 04 47  ..D ..e..RM=...G
    D700: E4 00 68 25 00 01 52 4D 68 25 00 01 02 65 00 00  ..h%..RMh%...e..
    D710: 52 04 02 65 00 00 52 4D 3D E5 00 04 47 01 01 68  R..e..RM=...G..h
    D720: 25 00 01 52 4D 68 25 00 01 3D A5 00 00 49 20 01  %..RMh%..=...I .
    D730: 02 01 02 00 02 05 01 14 00 00 00 2C 21 01 00 55  ...........,!..U
    D740: 00 00 52 0C 02 01 00 02 3A 00 00 5B 43 20 01 52  ..R.....:..[C .R
    D750: 4D 43 20 01 66 06 02 29 00 00 02 68 00 CB 05 02  MC .f..)...h....
    D760: 8C 00 32 00 52 33 5B 02 29 00 00 52 33 5B 38 03  ..2.R3[.)..R3[8.
    D770: 02 01 00 00 37 00 00 0E 25 00 20 52 14 08 25 00  ....7...%. R..%.
    D780: 0F 42 29 00 63 07 35 00 63 0A 3D 00 63 01 21 01  .B).c.5.c.=.c.!.
    D790: 63 00 7B 01 63 09 BB 01 63 08 E9 01 63 0B 01 02  c.{.c...c...c...
    D7A0: 5A 5A 5B 0D 65 C4 48 08 43 AD 02 03 0A 46 48 66  ZZ[.e.H.C....FHf
    D7B0: FF 2D 0D 42 1A 03 56 00 40 20 25 00 05 2D 0A 42  .-.B..V.@ %..-.B
    D7C0: 40 20 25 00 02 03 0A 48 40 01 04 06 48 00 00 01  @ %....H@...H...
    D7D0: 64 05 48 04 00 07 E5 05 48 FC 07 A5 05 48 8F 03  d.H.....H....H..
    D7E0: 0A 48 46 56 00 41 3D E5 00 04 47 96 00 03 05 41  .HFV.A=...G....A
    D7F0: 00 80 01 01 4B 25 02 01 44 96 00 09 4D 41 7F FF  ....K%..D...MA..
    D800: 03 E5 41 02 5C FA D3 48 FC 41 5C 52 C5 48 7F FE  ..A.\..H.A\R.H..
    D810: 41 3D A5 00 00 49 CC 00 07 A5 C1 48 7F 66 FF 2D  A=...I.....H.f.-
    D820: 0D 42 DE 02 2D 0D 42 06 00 56 00 41 3D A5 02 14  .B..-.B..V.A=...
    D830: 49 49 02 03 25 41 20 43 49 02 0D A5 C1 48 80 66  II..%A CI....H.f
    D840: FF 2D 0D 42 B6 02 03 04 40 00 00 3E 05 40 00 00  .-.B....@..>.@..
    D850: 00 00 44 AD 02 03 21 43 00 03 E2 41 44 4C E4 41  ..D...!C...ADL.A
    D860: 05 00 44 07 01 3D A4 00 04 00 49 07 01 3D 04 01  ..D..=....I..=..
    D870: 00 00 47 0F 01 2D 0D 42 0C 00 43 D8 00 03 04 40  ..G..-.B..C....@
    D880: 06 00 03 24 41 0A 00 03 64 41 0B 00 43 52 02 07  ...$A...dA..CR..
    D890: 65 C4 48 F7 03 0A 46 48 56 00 41 3D E5 00 04 47  e.H...FHV.A=...G
    D8A0: 3C 01 07 25 E2 48 F9 43 42 01 5C 25 E2 48 F9 02  <..%.H.CB.\%.H..
    D8B0: 4A 65 E0 48 01 44 42 01 07 25 E0 48 F8 4A 65 E0  Je.H.DB..%.H.Je.
    D8C0: 48 01 44 4F 01 2D E5 41 01 2D 0D 48 10 00 3E E5  H.DO.-.A.-.H..>.
    D8D0: 41 04 45 2D 01 03 0A 48 46 0D 25 D1 48 02 4A 25  A.E-...HF.%.H.J%
    D8E0: D1 48 04 44 70 01 43 AD 02 07 25 D1 48 FD 4A 25  .H.Dp.C...%.H.J%
    D8F0: D1 48 04 49 80 01 0D 65 C4 48 08 56 00 41 4A 65  .H.I...e.H.V.AJe
    D900: E0 48 01 44 90 01 5C 25 E0 48 F8 04 51 02 4A 65  .H.D..\%.H..Q.Je
    D910: E0 48 01 44 A0 01 2D A5 41 01 2D 0D 48 10 00 3E  .H.D..-.A.-.H..>
    D920: A5 41 04 45 90 01 43 AD 02 03 0A 46 48 56 08 48  .A.E..C....FHV.H
    D930: 20 25 00 02 03 22 48 40 0D 25 05 48 01 0D E5 06   %..."H@.%.H....
    D940: 48 10 03 0A 48 46 0D A5 D3 48 01 51 14 0D 25 D3  H...HF...H.Q..%.
    D950: 48 01 51 14 43 AD 02 07 A5 D3 48 FE 56 00 40 20  H.Q.C.....H.V.@ 
    D960: 25 00 02 03 0A 48 40 07 E5 06 48 EF 43 AD 02 08  %....H@...H.C...
    D970: A5 00 1B 66 FF 2D 0D 42 DE 02 03 21 43 00 03 A2  ...f.-.B...!C...
    D980: 40 44 03 0C 40 02 00 4C A4 40 00 00 49 29 02 2D  @D..@..L.@..I).-
    D990: 0C 42 04 00 43 14 02 2D 0D 42 06 00 3D A4 00 00  .B..C..-.B..=...
    D9A0: 00 44 49 02 03 24 41 00 00 3E 25 41 FF 44 49 02  .DI..$A..>%A.DI.
    D9B0: 2D 0A 42 40 43 2E 02 03 04 40 01 00 03 65 41 08  -.B@C....@...eA.
    D9C0: 01 0A C3 48 40 01 05 DA 48 88 88 01 00 01 F2 DB  ...H@...H.......
    D9D0: 48 40 01 BA E2 48 40 01 BA F2 48 40 01 BA 02 49  H@...H@...H@...I
    D9E0: 40 01 BA 12 49 40 01 25 E1 48 20 01 25 F1 48 20  @...I@.%.H .%.H 
    D9F0: 01 25 01 49 20 01 25 11 49 20 01 2A E1 48 41 01  .%.I .%.I .*.HA.
    DA00: 2A F1 48 41 01 2A 01 49 41 01 2A 11 49 41 3D 65  *.HA.*.IA.*.IA=e
    DA10: 00 0B 44 AD 02 5C A2 C8 48 DF 41 3A 00 00 5B 7A  ..D..\..H.A:..[z
    DA20: 84 00 0C 00 FF FF FF 00 02 3F 00 00 00 5F 00 08  .........?..._..
    DA30: 40 9C 00 00 03 3F 00 00 00 5F 00 08 FF FF FF 00  @....?..._......
    DA40: 03 3F 00 00 2A 57 20 10 00 00 00 00 3F 00 05 00  .?..*W .....?...
    DA50: 39 00 00 4B 00 00 80 01 3A 00 00 80 02 1B 00 00  9..K....:.......
    DA60: 80 03 00 00 00 80 08 34 25 00 80 09 1C 25 00 80  .......4%....%..
    DA70: 0A 00 1B 00 9F 10 14 3F 00 80 11 01 38 00 9F 18  .......?....8...
    DA80: 00 4A 00 9F FF 00 00 FF 03 02 01 00 01 03 02 01  .J..............
    DA90: 00 01 03 02 01 00 01 03 02 01 00 01 03 02 01 00  ................
    DAA0: 01 03 02 01 00 01 4C 02 01 02 00 08 37 00 00 3D  ......L.....7..=
    DAB0: 0D 00 00 00 44 CE 01 56 00 41 03 21 41 01 09 25  ....D..V.A.!A..%
    DAC0: 41 0F 15 0D 41 02 03 0A 40 42 66 FF 2D 0D 42 34  A...A...@Bf.-.B4
    DAD0: 02 2D 0A 42 41 03 0C 48 02 00 0D A5 68 48 01 54  .-.BA..H....hH.T
    DAE0: 08 68 48 03 0C 48 00 00 03 F9 41 01 15 3D 41 04  .hH..H....A..=A.
    DAF0: 5C BA 00 5C 8F 41 03 0A 42 40 4A 25 00 5C 01 49  \..\.A..B@J%.\.I
    DB00: 81 00 0D 0D 00 5C 01 01 0D 25 00 5C 10 4A 25 00  .....\...%.\.J%.
    DB10: 5C 20 44 67 00 07 25 00 5C EF 4A 25 00 5C 20 49  \ Dg..%.\.J%.\ I
    DB20: 74 00 0D 25 03 5C 40 56 00 41 03 09 41 00 3B 02  t..%.\@V.A..A.;.
    DB30: 41 03 3B 41 00 1B 25 41 04 01 A2 01 5C 41 03 69  A.;A..%A....\A.i
    DB40: 41 01 15 2D 41 04 01 2A 01 5C 41 56 00 40 0F E5  A..-A..*.\AV.@..
    DB50: 40 80 03 73 40 00 01 02 06 5C 40 56 00 40 03 6B  @..s@....\@V.@.k
    DB60: 40 00 01 02 06 5C 40 03 63 40 00 01 02 06 5C 40  @....\@.c@....\@
    DB70: 03 7B 40 00 09 65 40 0F 01 02 06 5C 40 3E 25 41  .{@..e@....\@>%A
    DB80: 04 47 10 01 33 25 41 04 2D 05 46 04 00 00 00 03  .G..3%A.-.F.....
    DB90: 63 40 00 01 02 06 5C 40 03 6B 40 00 01 02 06 5C  c@....\@.k@....\
    DBA0: 40 03 73 40 00 01 02 06 5C 40 03 7B 40 00 01 02  @.s@....\@.{@...
    DBB0: 06 5C 40 43 D7 00 0D 25 03 5C 02 0D 25 01 5C 01  .\@C...%.\..%.\.
    DBC0: 03 29 40 01 21 25 40 0A 2D 25 40 32 4A 25 04 5C  .)@.!%@.-%@2J%.\
    DBD0: 01 49 42 01 51 0A 33 25 40 01 3E 25 40 00 49 26  .IB.Q.3%@.>%@.I&
    DBE0: 01 02 65 01 01 43 CA 01 4A 05 04 5C F0 8F FF 00  ..e..C..J..\....
    DBF0: 44 54 01 02 65 01 02 43 CA 01 01 05 06 5C 01 00  DT..e..C.....\..
    DC00: 00 80 03 00 40 06 5C 02 6A 01 40 02 B8 01 04 5C  ....@.\.j.@....\
    DC10: 08 A5 01 1F 3D A5 01 00 46 7C 01 02 65 01 03 43  ....=...F|..e..C
    DC20: CA 01 32 A5 01 01 3D 8D 00 00 00 44 CA 01 3D A5  ..2...=....D..=.
    DC30: 01 00 44 CA 01 03 31 41 01 03 19 40 00 56 18 40  ..D...1A...@.V.@
    DC40: 3B 02 40 03 28 40 06 5C 03 68 40 06 5C 03 A8 40  ;.@.(@.\.h@.\..@
    DC50: 06 5C 03 E8 40 06 5C 04 02 00 40 3E 25 41 04 47  .\..@.\...@>%A.G
    DC60: CA 01 33 25 41 04 2D 05 46 04 00 00 00 43 9D 01  ..3%A.-.F....C..
    DC70: 3A 00 00 5B 66 FF 2D 0D 42 34 02 03 0C 48 00 00  :..[f.-.B4...H..
    DC80: 01 8D 08 5C 32 00 01 05 09 5C 00 1C 02 00 01 05  ...\2....\......
    DC90: 0A 5C 10 11 3D 12 2D 0D 42 04 00 2C 25 00 01 3D  .\..=.-.B..,%..=
    DCA0: 25 00 06 49 D5 01 56 08 48 03 25 41 10 0D 65 97  %..I..V.H.%A..e.
    DCB0: 48 40 07 65 97 48 BF 33 25 41 01 3E 25 41 00 49  H@.e.H.3%A.>%A.I
    DCC0: 07 02 0D 25 3B 48 01 54 30 3B 48 0D 25 3C 48 01  ...%;H.T0;H.%<H.
    DCD0: 54 30 3C 48 51 32 5B 7A 18 00 00 00 00 00 1C 00  T0<HQ2[z........
    DCE0: 04 00 38 00 08 00 54 00 0C 00 70 00 10 00 8C 00  ..8...T...p.....
    DCF0: 14 00 5C 00 01 02 00 04 02 25 01 04 03 31 41 00  ..\......%...1A.
    DD00: 09 0D 41 0F 00 15 0D 41 01 66 FF 2D 0D 42 50 00  ..A....A.f.-.BP.
    DD10: 2D 0A 42 41 03 0C 48 00 00 07 A5 68 48 FE 01 0D  -.BA..H....hH...
    DD20: 68 48 11 11 50 02 4A 0D 6B 48 01 00 49 41 00 02  hH..P.J.kH..IA..
    DD30: 25 01 13 54 08 68 48 54 00 6A 48 3A 00 00 5B 7A  %..T.hHT.jH:..[z
    DD40: 0C 00 00 00 04 00 08 00 0C 00 10 00 14 00 96 00  ................
    DD50: 01 01 04 00 37 00 00 52 3E 55 00 00 02 E4 00 16  ....7..R>U......
    DD60: 00 66 1C 2D 0C 42 04 00 52 12 52 3E 01 0C D8 09  .f.-.B..R.R>....
    DD70: 06 00 01 64 80 0A 1C 00 02 05 00 08 00 00 00 02  ...d............
    DD80: 0C 01 08 00 52 1F 03 08 41 80 0A 09 0D 41 03 00  ....R...A....A..
    DD90: 66 FF 2D 0D 42 92 00 2D 0A 42 41 03 24 41 00 00  f.-.B..-.BA.$A..
    DDA0: 01 05 82 00 0C 00 20 C0 5C 0A 83 00 00 FC 41 02  ...... .\.....A.
    DDB0: 05 00 30 75 00 03 52 3F 02 05 00 A0 86 01 03 52  ..0u..R?.......R
    DDC0: 3F 02 05 00 48 E8 01 03 52 3F 02 05 00 30 75 00  ?...H...R?...0u.
    DDD0: 03 52 3F 02 05 00 98 AB 02 03 52 3F 5B 7A 04 00  .R?.......R?[z..
    DDE0: 18 10 08 04 89 01 01 01 08 00 37 00 00 03 88 00  ..........7.....
    DDF0: 28 08 03 09 00 00 03 2A 41 00 03 22 43 41 01 22  (......*A.."CA."
    DE00: 28 08 44 5C 62 28 08 F8 41 42 22 00 63 01 39 00  (.D\b(..AB".c.9.
    DE10: 63 08 7E 00 63 04 E4 00 5A 5A 43 83 01 01 24 93  c.~.c...ZZC...$.
    DE20: 0A 00 00 01 24 94 0A 01 00 01 04 A3 0A 02 00 01  ....$...........
    DE30: 04 A4 0A 06 00 01 04 A5 0A 0A 00 01 04 A6 0A 0E  ................
    DE40: 00 01 04 A7 0A 12 00 01 04 A8 0A 16 00 01 04 A9  ................
    DE50: 0A 1A 00 01 04 AA 0A 1E 00 2D 0D 42 22 00 43 78  .........-.B".Cx
    DE60: 01 5B 21 65 00 02 03 22 43 40 03 0A 41 44 52 3E  .[!e..."C@..ADR>
    DE70: 37 02 00 4C 09 41 01 49 9E 00 54 20 00 00 54 30  7..L.A.I..T ..T0
    DE80: 00 00 15 0D 41 01 4C 09 41 01 49 B1 00 54 28 00  ....A.L.A.I..T(.
    DE90: 00 54 38 00 00 37 00 00 03 24 40 16 00 21 25 40  .T8..7...$@..!%@
    DEA0: 04 55 00 00 02 EA 00 00 2C E2 00 40 66 1C 03 0C  .U......,..@f...
    DEB0: 40 08 00 3E 0D 40 00 00 44 DE 00 2D 0C 42 08 00  @..>.@..D..-.B..
    DEC0: 52 12 37 00 00 43 78 01 01 05 91 0A 00 00 00 00  R.7..Cx.........
    DED0: 3C 0D 92 0A 00 00 44 78 01 3C 25 E7 0A 07 49 16  <.....Dx.<%...I.
    DEE0: 01 01 05 91 0A 0E 00 00 00 03 00 01 92 0A 5C 05  ..............\.
    DEF0: 92 0A 00 FF 00 FF 0F 00 FF 00 01 05 32 0A 05 00  ............2...
    DF00: 00 00 51 0A 01 05 32 0A 01 00 00 00 03 00 41 E7  ..Q...2.......A.
    DF10: 0A 3E 62 41 41 49 28 01 51 0A 3E 25 41 00 44 51  .>bAAI(.Q.>%A.DQ
    DF20: 01 3E 25 41 07 49 78 01 01 05 91 0A 0E 00 00 00  .>%A.Ix.........
    DF30: 01 02 92 0A 01 01 05 91 0A 03 00 00 00 03 38 41  ..............8A
    DF40: 92 0A 15 25 41 04 3C E2 9A 0A 41 45 78 01 4A E5  ...%A.<...AEx.J.
    DF50: 99 0A 04 44 78 01 5C 25 F3 09 FE 22 2D 65 00 01  ...Dx.\%..."-e..
    DF60: 3E 65 00 04 45 12 00 01 1A 28 08 00 5B 00 E5 00  >e..E....(..[...
    DF70: 02 02 14 00 3D 25 02 01 44 1C 00 3D 25 02 02 44  ....=%..D..=%..D
    DF80: 3E 00 3D 25 02 03 44 63 00 5B 2C 02 01 41 03 05  >.=%..Dc.[,..A..
    DF90: 00 FF FF FF FF 33 02 00 40 3E 01 00 00 48 39 00  .....3..@>...H9.
    DFA0: 2C 05 01 01 00 00 00 2C 02 00 40 5B 3D B9 02 02  ,......,..@[=...
    DFB0: 44 5E 00 3D 01 00 01 45 51 00 32 01 00 01 5B 32  D^.=...EQ.2...[2
    DFC0: 01 01 00 02 01 00 01 02 B9 02 02 5B 2C 01 00 01  ...........[,...
    DFD0: 5B 3D 05 00 00 00 00 00 49 77 00 3D 05 01 00 00  [=......Iw.=....
    DFE0: 00 00 44 E0 00 56 00 43 03 0D 40 1F 00 03 01 00  ..D..V.C..@.....
    DFF0: 00 3D 05 01 00 00 00 00 44 95 00 03 01 00 01 03  .=......D.......
    E000: 65 40 20 03 22 43 40 4C 02 00 44 49 A7 00 33 25  e@ ."C@L..DI..3%
    E010: 40 01 43 95 00 2D 2A 40 40 1B 25 40 01 03 22 43  @.C..-*@@.%@.."C
    E020: 40 03 02 00 44 03 01 41 01 7D 02 00 00 27 05 40  @...D..A.}...'.@
    E030: 02 00 00 00 2D 02 41 00 1B 05 41 01 2D 02 41 40  ....-.A...A.-.A@
    E040: 3E 02 00 41 44 E0 00 03 02 00 41 43 B7 00 02 02  >..AD.....AC....
    E050: 00 00 5B 00 D1 01 02 01 04 04 37 00 00 42 21 00  ..[.......7..B!.
    E060: 63 07 29 00 63 03 66 00 63 02 D5 00 63 04 FA 00  c.).c.f.c...c...
    E070: 63 0C 85 01 63 0D A8 01 5A 5A 43 D0 01 01 0D 1D  c...c...ZZC.....
    E080: 48 9F 0F 01 05 1E 48 00 00 00 00 01 05 1F 48 7D  H.....H.......H}
    E090: 00 00 00 66 06 01 4C 1F 48 39 00 03 24 46 42 00  ...f..L.H9..$FB.
    E0A0: 3E 25 46 00 44 58 00 01 25 1F 48 00 4A 25 1B 48  >%F.DX..%.H.J%.H
    E0B0: 10 49 D0 01 0D E5 1B 48 02 5B 4A A5 CB 05 01 49  .I.....H.[J....I
    E0C0: D0 01 4A 25 1B 48 01 44 D0 01 4A 25 1C 48 10 44  ..J%.H.D..J%.H.D
    E0D0: 76 00 4A E5 1B 48 02 49 91 00 4A 25 1C 48 08 49  v.J..H.I..J%.H.I
    E0E0: D0 01 43 C5 00 4A E5 1B 48 01 49 D0 01 4A 25 1B  ..C..J..H.I..J%.
    E0F0: 48 10 44 C5 00 0D A5 1B 48 03 0D 65 1B 48 03 01  H.D.....H..e.H..
    E100: 0D 1D 48 00 00 5C 25 1B 48 EF 01 4A 25 1C 48 10  ..H..\%.H..J%.H.
    E110: 44 B7 00 01 0D 1D 48 9F 0F 07 E5 1B 48 FC 0D E5  D.....H.....H...
    E120: 1F 48 01 0D 25 1B 48 11 5B 66 06 03 24 46 42 00  .H..%.H.[f..$FB.
    E130: 3E 25 46 00 49 D0 01 4A 25 1B 48 01 44 D0 01 4A  >%F.I..J%.H.D..J
    E140: 25 1C 48 10 44 EB 00 5C E5 1B 48 FE 02 5B 4A 65  %.H.D..\..H..[Je
    E150: D0 05 02 44 07 01 0D 25 23 48 01 3D 8D 00 00 00  ...D...%#H.=....
    E160: 44 84 01 03 05 46 80 F0 FA 02 56 00 41 03 19 41  D....F....V.A..A
    E170: 00 21 05 41 FF 0F 00 00 27 02 46 40 3E 05 41 00  .!.A....'.F@>.A.
    E180: 00 00 00 44 37 01 2D 0D 40 01 00 01 8A 1D 48 40  ...D7.-.@.....H@
    E190: 56 00 41 03 19 41 00 21 02 40 41 27 02 46 40 01  V.A..A.!.@A'.F@.
    E1A0: A5 22 48 0C 01 0A 22 48 40 15 05 40 04 56 00 41  ."H..."H@..@.V.A
    E1B0: 03 29 41 00 2D 0D 41 01 00 21 02 40 41 1B 05 40  .)A.-.A..!.@A..@
    E1C0: 08 01 0A 20 48 40 0D E5 20 48 C0 07 25 23 48 FE  ... H@.. H..%#H.
    E1D0: 4A 65 23 48 01 49 7C 01 5B 4A 25 1B 48 01 44 9D  Je#H.I|.[J%.H.D.
    E1E0: 01 4A 25 1B 48 10 49 D0 01 4A 25 1C 48 10 44 95  .J%.H.I..J%.H.D.
    E1F0: 01 07 E5 1F 48 FE 0D 25 1B 48 11 5B 4A 25 1B 48  ....H..%.H.[J%.H
    E200: 01 44 D0 01 4A 25 1B 48 10 44 D0 01 4A 25 1C 48  .D..J%.H.D..J%.H
    E210: 10 44 B8 01 07 A5 1B 48 FC 07 65 1B 48 FC 5C 25  .D.....H..e.H.\%
    E220: 1B 48 EF 01 5B 00 71 00 03 01 08 00 37 00 00 56  .H..[.q.....7..V
    E230: 00 01 3D E5 00 20 48 1B 00 03 39 43 00 03 02 01  ..=.. H...9C....
    E240: 44 03 05 00 00 00 10 C0 2D 09 00 00 01 02 82 00  D.......-.......
    E250: 00 03 00 40 83 00 56 00 41 03 31 41 00 75 02 40  ...@..V.A.1A.u.@
    E260: 41 03 25 41 20 33 31 41 00 3D E2 00 41 47 61 00  A.%A 31A.=..AGa.
    E270: 2D 0D 00 04 00 01 02 82 00 00 02 00 00 83 00 6E  -..............n
    E280: 02 00 41 0F 01 40 00 02 02 00 40 33 05 01 01 00  ..A..@....@3....
    E290: 00 00 08 02 00 01 5B 00 CF 00 03 01 00 10 37 00  ......[.......7.
    E2A0: 00 56 00 40 4A 25 00 EC 01 44 31 00 4A 20 05 EC  .V.@J%...D1.J ..
    E2B0: 1E 00 49 31 00 03 25 40 01 01 05 05 EC 03 00 00  ..I1..%@........
    E2C0: 00 4A 65 05 EC 0F 49 29 00 3D 65 02 00 49 3D 00  .Je...I).=e..I=.
    E2D0: 2C 28 02 09 08 3D E5 02 00 49 49 00 2C A8 02 09  ,(...=...II.,...
    E2E0: 08 3D 65 02 02 49 6C 00 01 05 82 00 10 00 60 C0  .=e..Il.......`.
    E2F0: 01 01 83 00 00 01 05 82 00 14 00 60 C0 02 05 00  ...........`....
    E300: 0C 02 00 00 3D E5 02 03 49 82 00 01 01 82 00 01  ....=...I.......
    E310: 02 05 01 0C 02 00 00 43 82 00 54 00 63 C0 01 01  .......C..T.c...
    E320: 64 C0 00 01 21 65 C0 02 01 01 66 C0 01 01 31 67  d...!e....f...1g
    E330: C0 02 01 01 E8 C0 03 3D 65 02 01 44 AF 00 3D E5  .......=e..D..=.
    E340: 02 01 44 AF 00 51 02 4A E5 A0 21 80 49 AF 00 3E  ..D..Q.J..!.I..>
    E350: 25 40 01 49 CE 00 01 05 05 EC 01 00 00 00 4A 65  %@.I..........Je
    E360: 05 EC 0F 49 C6 00 5B 00 F9 02 02 01 00 00 37 00  ...I..[.......7.
    E370: 00 3D 25 01 01 44 7B 00 3D 25 01 02 44 68 01 3D  .=%..D{.=%..Dh.=
    E380: 25 01 00 49 CA 02 3D 05 00 00 00 00 00 49 39 00  %..I..=......I9.
    E390: 3A 00 00 0D 25 68 18 01 4A 65 68 18 01 44 30 00  :...%h..Jeh..D0.
    E3A0: 5B 54 20 68 18 52 3C 03 00 40 24 01 3E 39 40 00  [T h.R<..@$.>9@.
    E3B0: 44 77 00 4A A5 24 01 08 44 4B 00 03 39 40 00 3E  Dw.J.$..DK..9@.>
    E3C0: E5 40 00 49 62 00 03 E5 40 20 01 02 24 01 40 4A  .@.Ib...@ ..$.@J
    E3D0: A5 24 01 08 44 67 00 4A A5 24 01 10 44 6F 00 55  .$..Dg.J.$..Do.U
    E3E0: 38 00 5B 3D 65 01 02 44 D7 00 02 05 00 60 EA 00  8.[=e..D.....`..
    E3F0: 00 52 3C 3C F9 24 01 00 44 C1 00 07 25 15 01 FE  .R<<.$..D...%...
    E400: 4A A5 24 01 10 44 98 00 03 00 40 24 01 03 F9 40  J.$..D....@$...@
    E410: 00 3E 25 40 00 49 B4 00 03 25 40 68 01 02 24 01  .>%@.I...%@h..$.
    E420: 40 4A A5 24 01 10 44 B9 00 5D 05 00 00 00 00 FF  @J.$..D..]......
    E430: 40 7E 05 00 52 29 07 0D 18 01 F8 FE 43 3A 01 02  @~..R)......C:..
    E440: 05 00 00 46 C3 23 07 25 15 01 FE 4A A5 01 17 03  ...F.#.%...J....
    E450: 44 3A 01 56 08 40 03 31 40 01 15 0D 40 0E 0F 0D  D:.V.@.1@...@...
    E460: 40 0F 04 01 0A 18 17 40 5C B1 19 17 FC 01 51 05  @......@\.....Q.
    E470: 07 A5 01 17 FC 01 25 05 17 40 01 05 02 17 00 00  ......%..@......
    E480: 3C 00 01 65 1C 17 01 54 08 04 17 01 A5 05 17 E8  <..e...T........
    E490: 0D A5 19 17 10 4A 65 24 17 02 44 2D 01 0D 65 19  .....Je$..D-..e.
    E4A0: 17 03 01 01 42 01 00 01 01 46 01 00 01 01 4A 01  ....B....F....J.
    E4B0: 00 01 01 4E 01 00 01 01 52 01 00 01 01 56 01 00  ...N....R....V..
    E4C0: 3D 65 01 02 49 67 01 5C 0D 18 01 F8 FF 01 01 5B  =e..Ig.\.......[
    E4D0: 56 00 41 03 31 41 01 09 25 41 03 15 25 41 02 66  V.A.1A..%A..%A.f
    E4E0: FF 2D 0D 42 D1 02 2D 0A 42 41 26 05 00 0A 00 00  .-.B..-.BA&.....
    E4F0: 00 03 04 41 00 00 27 02 41 40 3E 05 40 00 00 01  ...A..'.A@>.@...
    E500: 00 45 A1 01 03 0D 40 FF FF 66 FF 2D 0D 42 E1 02  .E....@..f.-.B..
    E510: 56 00 41 03 39 41 01 15 25 41 02 2D 0A 42 41 03  V.A.9A..%A.-.BA.
    E520: 0C 48 00 00 01 0A 30 1B 40 3A 00 00 3D 65 01 0B  .H....0.@:..=e..
    E530: 49 2C 02 20 05 00 64 00 00 00 03 0C 48 02 00 03  I,. ..d.....H...
    E540: 00 41 40 01 0F 25 41 10 09 0D 41 DF F7 4B A5 01  .A@..%A...A..K..
    E550: 04 44 F0 01 0F 65 41 08 03 0C 48 00 00 4A 05 9C  .D...eA...H..J..
    E560: 1B 01 00 00 00 44 15 02 03 0C 48 02 00 3C 02 41  .....D....H..<.A
    E570: 01 40 49 15 02 3C 02 40 01 41 44 CA 02 03 0C 48  .@I..<.@.AD....H
    E580: 02 00 07 25 40 01 EF 01 02 41 01 40 01 0A 40 01  ...%@....A.@..@.
    E590: 41 43 CA 02 56 00 40 03 8D 40 0C 00 3D 65 01 18  AC..V.@..@..=e..
    E5A0: 44 4F 02 03 8D 40 3E 00 3D 65 01 19 44 4F 02 03  DO...@>.=e..DO..
    E5B0: A9 40 01 33 A5 40 14 03 31 40 01 09 25 40 03 15  .@.3.@..1@..%@..
    E5C0: 25 40 04 0F 0D 40 01 01 4B A5 01 04 44 6C 02 0F  %@...@..K...Dl..
    E5D0: 0D 40 00 02 56 00 41 03 29 41 01 33 25 41 14 03  .@..V.A.)A.3%A..
    E5E0: 0C 48 00 00 4A 05 9C 1B 01 00 00 00 44 A8 02 03  .H..J.......D...
    E5F0: 0C 48 02 00 4A 25 40 01 10 49 A8 02 3C 22 43 01  .H..J%@..I..<"C.
    E600: 41 49 A8 02 03 1A 48 40 3C 0A 00 01 40 44 CA 02  AI....H@<...@D..
    E610: 03 1A 48 40 07 25 00 01 FE 03 0C 48 02 00 01 22  ..H@.%.....H..."
    E620: 43 01 41 07 0D 40 01 EF F7 03 1A 48 40 01 0A 00  C.A..@.....H@...
    E630: 01 40 3A 00 00 5B 7A 28 00 00 CA 9A 3B 80 7C 81  .@:..[z(....;.|.
    E640: 4A 00 2F 68 59 00 94 35 77 00 00 00 00 00 02 04  J./hY..5w.......
    E650: 00 00 04 08 00 00 26 0C 00 00 28 10 00 00 2A 14  ......&...(...*.
    E660: 00 FF FF FF FF FF FF FF 00 00 00 00 00 00 00 00  ................
    E670: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E680: 00 00 00 00                                      ....

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 4E 04 00 00 02 DF 41 4D 44 00 41 6D  SSDTN.....AMD.Am
    0010: 41 6D 64 54 61 62 6C 65 01 00 00 00 49 4E 54 4C  AmdTable....INTL
    0020: 31 03 23 20 10 49 42 5C 5F 53 42 5F 08 54 47 50  1.# .IB\_SB_.TGP
    0030: 49 0A 0F 5B 82 47 05 50 54 49 4F 08 5F 48 49 44  I..[.G.PTIO._HID
    0040: 0D 41 4D 44 49 46 30 33 31 00 08 5F 43 49 44 0D  .AMDIF031.._CID.
    0050: 41 4D 44 49 46 30 33 31 00 08 5F 55 49 44 00 14  AMDIF031.._UID..
    0060: 22 5F 43 52 53 00 08 52 42 55 46 11 11 0A 0E 86  "_CRS..RBUF.....
    0070: 09 00 01 00 00 C4 FE 00 10 00 00 79 00 A4 52 42  ...........y..RB
    0080: 55 46 14 09 5F 53 54 41 00 A4 0A 0F 5B 82 40 3C  UF.._STA....[.@<
    0090: 41 53 4D 54 08 5F 41 44 52 00 08 5F 48 49 44 0D  ASMT._ADR.._HID.
    00A0: 41 53 4D 54 30 30 30 31 00 08 5F 43 49 44 0D 41  ASMT0001.._CID.A
    00B0: 53 4D 54 30 30 30 31 00 08 5F 55 49 44 00 14 49  SMT0001.._UID..I
    00C0: 37 5F 43 52 53 00 08 52 42 55 46 11 47 36 0B 62  7_CRS..RBUF.G6.b
    00D0: 03 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    00E0: 00 00 19 00 23 00 01 00 00 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    00F0: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    0100: 00 00 00 17 00 00 19 00 23 00 01 00 01 00 5C 5F  ........#.....\_
    0110: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    0120: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    0130: 02 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    0140: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    0150: 23 00 01 00 03 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    0160: 01 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    0170: 00 00 19 00 23 00 01 00 04 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    0180: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    0190: 00 00 00 17 00 00 19 00 23 00 01 00 05 00 5C 5F  ........#.....\_
    01A0: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    01B0: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    01C0: 06 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    01D0: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    01E0: 23 00 01 00 07 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    01F0: 01 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    0200: 00 00 19 00 23 00 01 00 08 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    0210: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    0220: 00 00 00 17 00 00 19 00 23 00 01 00 09 00 5C 5F  ........#.....\_
    0230: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    0240: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    0250: 0A 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    0260: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    0270: 23 00 01 00 0B 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    0280: 01 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    0290: 00 00 19 00 23 00 01 00 0C 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    02A0: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    02B0: 00 00 00 17 00 00 19 00 23 00 01 00 0D 00 5C 5F  ........#.....\_
    02C0: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    02D0: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    02E0: 0E 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    02F0: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    0300: 23 00 01 00 0F 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    0310: 01 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    0320: 00 00 19 00 23 00 01 00 10 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    0330: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    0340: 00 00 00 17 00 00 19 00 23 00 01 00 11 00 5C 5F  ........#.....\_
    0350: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    0360: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    0370: 12 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    0380: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    0390: 23 00 01 00 13 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    03A0: 01 8C 21 00 01 01 01 00 00 00 01 00 00 00 00 17  ..!.............
    03B0: 00 00 19 00 23 00 01 00 14 00 5C 5F 53 42 2E 50  ....#.....\_SB.P
    03C0: 54 49 4F 00 01 8C 21 00 01 01 01 00 00 00 01 00  TIO...!.........
    03D0: 00 00 00 17 00 00 19 00 23 00 01 00 15 00 5C 5F  ........#.....\_
    03E0: 53 42 2E 50 54 49 4F 00 01 8C 21 00 01 01 01 00  SB.PTIO...!.....
    03F0: 00 00 01 00 00 00 00 17 00 00 19 00 23 00 01 00  ............#...
    0400: 16 00 5C 5F 53 42 2E 50 54 49 4F 00 01 8C 21 00  ..\_SB.PTIO...!.
    0410: 01 01 01 00 00 00 01 00 00 00 00 17 00 00 19 00  ................
    0420: 23 00 01 00 17 00 5C 5F 53 42 2E 50 54 49 4F 00  #.....\_SB.PTIO.
    0430: 01 79 00 A4 52 42 55 46 14 15 5F 53 54 41 00 A0  .y..RBUF.._STA..
    0440: 0A 93 54 47 50 49 01 A4 0A 0F A1 03 A4 00        ..TGPI........

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 0E A4 00 00 02 C0 41 4D 44 00 00 00  SSDT......AMD...
    0010: 41 4D 44 20 43 50 55 00 01 00 00 00 41 4D 44 20  AMD CPU.....AMD 
    0020: 01 00 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  .....G5\/._SB_PL
    0030: 54 46 43 30 30 30 08 5F 50 43 54 12 2C 02 11 14  TFC000._PCT.,...
    0040: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    0050: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    0060: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    0070: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    0080: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    0090: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    00A0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    00B0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    00C0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    00D0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    00E0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    00F0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0100: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    0110: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0120: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    0130: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    0140: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    0150: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0160: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    0170: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    0180: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    0190: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    01A0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    01B0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    01C0: 0A 05 0A 00 0C 00 00 00 00 0C FE 00 00 00 0C 02  ................
    01D0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    01E0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    01F0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    0200: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    0210: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    0220: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    0230: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    0240: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    0250: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    0260: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    0270: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    0280: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    0290: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    02A0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    02B0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    02C0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    02D0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    02E0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    02F0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    0300: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    0310: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    0320: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    0330: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    0340: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    0350: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    0360: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0370: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    0380: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 31 08 5F  /._SB_PLTFC001._
    0390: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    03A0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    03B0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    03C0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    03D0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    03E0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    03F0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    0400: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    0410: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    0420: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    0430: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    0440: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    0450: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0460: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0470: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    0480: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    0490: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    04A0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    04B0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    04C0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    04D0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    04E0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    04F0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0500: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    0510: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 00 00 00  SD..............
    0520: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    0530: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    0540: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    0550: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    0560: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    0570: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    0580: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    0590: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    05A0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    05B0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    05C0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    05D0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    05E0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    05F0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    0600: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    0610: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    0620: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0630: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    0640: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    0650: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    0660: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    0670: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    0680: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    0690: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    06A0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    06B0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    06C0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    06D0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    06E0: 54 46 43 30 30 32 08 5F 50 43 54 12 2C 02 11 14  TFC002._PCT.,...
    06F0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    0700: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    0710: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    0720: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    0730: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    0740: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    0750: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    0760: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    0770: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    0780: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    0790: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    07A0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    07B0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    07C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    07D0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    07E0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    07F0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    0800: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0810: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    0820: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    0830: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    0840: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    0850: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0860: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    0870: 0A 05 0A 00 0C 01 00 00 00 0C FE 00 00 00 0C 02  ................
    0880: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    0890: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    08A0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    08B0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    08C0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    08D0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    08E0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    08F0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    0900: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    0910: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    0920: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    0930: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    0940: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    0950: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    0960: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    0970: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    0980: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    0990: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    09A0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    09B0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    09C0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    09D0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    09E0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    09F0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    0A00: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    0A10: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0A20: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    0A30: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 33 08 5F  /._SB_PLTFC003._
    0A40: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    0A50: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    0A60: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    0A70: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    0A80: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    0A90: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    0AA0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    0AB0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    0AC0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    0AD0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    0AE0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    0AF0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    0B00: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0B10: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0B20: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    0B30: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    0B40: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    0B50: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    0B60: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0B70: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    0B80: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    0B90: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    0BA0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0BB0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    0BC0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 01 00 00  SD..............
    0BD0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    0BE0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    0BF0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    0C00: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    0C10: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    0C20: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    0C30: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    0C40: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    0C50: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    0C60: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    0C70: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    0C80: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    0C90: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    0CA0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    0CB0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    0CC0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    0CD0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0CE0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    0CF0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    0D00: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    0D10: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    0D20: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    0D30: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    0D40: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    0D50: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    0D60: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    0D70: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    0D80: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    0D90: 54 46 43 30 30 34 08 5F 50 43 54 12 2C 02 11 14  TFC004._PCT.,...
    0DA0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    0DB0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    0DC0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    0DD0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    0DE0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    0DF0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    0E00: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    0E10: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    0E20: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    0E30: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    0E40: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    0E50: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0E60: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    0E70: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0E80: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    0E90: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    0EA0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    0EB0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    0EC0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    0ED0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    0EE0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    0EF0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    0F00: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    0F10: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    0F20: 0A 05 0A 00 0C 02 00 00 00 0C FE 00 00 00 0C 02  ................
    0F30: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    0F40: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    0F50: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    0F60: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    0F70: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    0F80: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    0F90: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    0FA0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    0FB0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    0FC0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    0FD0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    0FE0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    0FF0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    1000: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    1010: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    1020: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    1030: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    1040: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    1050: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    1060: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    1070: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    1080: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    1090: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    10A0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    10B0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    10C0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    10D0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    10E0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 35 08 5F  /._SB_PLTFC005._
    10F0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    1100: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    1110: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    1120: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    1130: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    1140: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    1150: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    1160: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    1170: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    1180: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    1190: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    11A0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    11B0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    11C0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    11D0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    11E0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    11F0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    1200: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    1210: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1220: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    1230: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1240: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    1250: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1260: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    1270: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 02 00 00  SD..............
    1280: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    1290: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    12A0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    12B0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    12C0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    12D0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    12E0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    12F0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    1300: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    1310: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    1320: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    1330: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    1340: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    1350: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    1360: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    1370: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    1380: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1390: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    13A0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    13B0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    13C0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    13D0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    13E0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    13F0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    1400: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    1410: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    1420: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    1430: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    1440: 54 46 43 30 30 36 08 5F 50 43 54 12 2C 02 11 14  TFC006._PCT.,...
    1450: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    1460: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    1470: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    1480: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    1490: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    14A0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    14B0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    14C0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    14D0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    14E0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    14F0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    1500: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1510: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    1520: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1530: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    1540: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1550: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    1560: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1570: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    1580: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    1590: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    15A0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    15B0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    15C0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    15D0: 0A 05 0A 00 0C 03 00 00 00 0C FE 00 00 00 0C 02  ................
    15E0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    15F0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    1600: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    1610: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    1620: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    1630: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    1640: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    1650: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    1660: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    1670: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    1680: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    1690: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    16A0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    16B0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    16C0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    16D0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    16E0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    16F0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    1700: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    1710: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    1720: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    1730: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    1740: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    1750: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    1760: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    1770: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1780: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    1790: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 37 08 5F  /._SB_PLTFC007._
    17A0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    17B0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    17C0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    17D0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    17E0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    17F0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    1800: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    1810: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    1820: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    1830: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    1840: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    1850: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1860: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1870: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1880: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    1890: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    18A0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    18B0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    18C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    18D0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    18E0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    18F0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    1900: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1910: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    1920: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 03 00 00  SD..............
    1930: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    1940: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    1950: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    1960: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    1970: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    1980: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    1990: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    19A0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    19B0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    19C0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    19D0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    19E0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    19F0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    1A00: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    1A10: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    1A20: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    1A30: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1A40: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    1A50: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    1A60: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    1A70: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    1A80: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    1A90: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    1AA0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    1AB0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    1AC0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    1AD0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    1AE0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    1AF0: 54 46 43 30 30 38 08 5F 50 43 54 12 2C 02 11 14  TFC008._PCT.,...
    1B00: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    1B10: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    1B20: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    1B30: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    1B40: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    1B50: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    1B60: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    1B70: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    1B80: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    1B90: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    1BA0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    1BB0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1BC0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    1BD0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1BE0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    1BF0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1C00: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    1C10: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1C20: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    1C30: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    1C40: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    1C50: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    1C60: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1C70: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    1C80: 0A 05 0A 00 0C 04 00 00 00 0C FE 00 00 00 0C 02  ................
    1C90: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    1CA0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    1CB0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    1CC0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    1CD0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    1CE0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    1CF0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    1D00: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    1D10: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    1D20: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    1D30: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    1D40: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    1D50: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    1D60: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    1D70: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    1D80: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    1D90: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    1DA0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    1DB0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    1DC0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    1DD0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    1DE0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    1DF0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    1E00: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    1E10: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    1E20: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1E30: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    1E40: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 39 08 5F  /._SB_PLTFC009._
    1E50: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    1E60: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    1E70: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    1E80: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    1E90: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    1EA0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    1EB0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    1EC0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    1ED0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    1EE0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    1EF0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    1F00: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1F10: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1F20: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1F30: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    1F40: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    1F50: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    1F60: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    1F70: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    1F80: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    1F90: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    1FA0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    1FB0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    1FC0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    1FD0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 04 00 00  SD..............
    1FE0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    1FF0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    2000: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    2010: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    2020: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    2030: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    2040: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    2050: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    2060: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    2070: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    2080: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    2090: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    20A0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    20B0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    20C0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    20D0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    20E0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    20F0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    2100: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    2110: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    2120: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    2130: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    2140: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    2150: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    2160: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    2170: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    2180: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    2190: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    21A0: 54 46 43 30 30 41 08 5F 50 43 54 12 2C 02 11 14  TFC00A._PCT.,...
    21B0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    21C0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    21D0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    21E0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    21F0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    2200: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    2210: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    2220: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    2230: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    2240: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    2250: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    2260: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2270: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    2280: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2290: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    22A0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    22B0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    22C0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    22D0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    22E0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    22F0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    2300: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    2310: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2320: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    2330: 0A 05 0A 00 0C 05 00 00 00 0C FE 00 00 00 0C 02  ................
    2340: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    2350: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    2360: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    2370: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    2380: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    2390: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    23A0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    23B0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    23C0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    23D0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    23E0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    23F0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    2400: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    2410: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    2420: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    2430: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    2440: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    2450: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    2460: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    2470: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    2480: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    2490: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    24A0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    24B0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    24C0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    24D0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    24E0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    24F0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 42 08 5F  /._SB_PLTFC00B._
    2500: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    2510: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    2520: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    2530: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    2540: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    2550: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    2560: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    2570: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    2580: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    2590: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    25A0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    25B0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    25C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    25D0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    25E0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    25F0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    2600: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    2610: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    2620: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2630: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    2640: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    2650: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    2660: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2670: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    2680: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 05 00 00  SD..............
    2690: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    26A0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    26B0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    26C0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    26D0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    26E0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    26F0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    2700: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    2710: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    2720: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    2730: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    2740: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    2750: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    2760: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    2770: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    2780: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    2790: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    27A0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    27B0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    27C0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    27D0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    27E0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    27F0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    2800: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    2810: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    2820: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    2830: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    2840: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    2850: 54 46 43 30 30 43 08 5F 50 43 54 12 2C 02 11 14  TFC00C._PCT.,...
    2860: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    2870: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    2880: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    2890: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    28A0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    28B0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    28C0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    28D0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    28E0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    28F0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    2900: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    2910: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2920: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    2930: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2940: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    2950: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    2960: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    2970: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2980: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    2990: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    29A0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    29B0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    29C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    29D0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    29E0: 0A 05 0A 00 0C 06 00 00 00 0C FE 00 00 00 0C 02  ................
    29F0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    2A00: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    2A10: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    2A20: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    2A30: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    2A40: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    2A50: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    2A60: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    2A70: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    2A80: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    2A90: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    2AA0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    2AB0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    2AC0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    2AD0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    2AE0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    2AF0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    2B00: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    2B10: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    2B20: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    2B30: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    2B40: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    2B50: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    2B60: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    2B70: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    2B80: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2B90: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    2BA0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 44 08 5F  /._SB_PLTFC00D._
    2BB0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    2BC0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    2BD0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    2BE0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    2BF0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    2C00: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    2C10: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    2C20: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    2C30: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    2C40: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    2C50: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    2C60: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    2C70: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2C80: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2C90: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    2CA0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    2CB0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    2CC0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    2CD0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2CE0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    2CF0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    2D00: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    2D10: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2D20: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    2D30: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 06 00 00  SD..............
    2D40: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    2D50: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    2D60: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    2D70: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    2D80: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    2D90: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    2DA0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    2DB0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    2DC0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    2DD0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    2DE0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    2DF0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    2E00: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    2E10: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    2E20: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    2E30: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    2E40: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2E50: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    2E60: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    2E70: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    2E80: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    2E90: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    2EA0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    2EB0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    2EC0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    2ED0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    2EE0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    2EF0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    2F00: 54 46 43 30 30 45 08 5F 50 43 54 12 2C 02 11 14  TFC00E._PCT.,...
    2F10: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    2F20: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    2F30: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    2F40: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    2F50: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    2F60: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    2F70: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    2F80: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    2F90: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    2FA0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    2FB0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    2FC0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    2FD0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    2FE0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    2FF0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    3000: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    3010: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    3020: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3030: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    3040: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    3050: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    3060: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    3070: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3080: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    3090: 0A 05 0A 00 0C 07 00 00 00 0C FE 00 00 00 0C 02  ................
    30A0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    30B0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    30C0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    30D0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    30E0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    30F0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    3100: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    3110: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    3120: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    3130: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    3140: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    3150: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    3160: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    3170: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    3180: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    3190: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    31A0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    31B0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    31C0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    31D0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    31E0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    31F0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    3200: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    3210: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    3220: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    3230: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3240: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    3250: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 46 08 5F  /._SB_PLTFC00F._
    3260: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    3270: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    3280: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    3290: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    32A0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    32B0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    32C0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    32D0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    32E0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    32F0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    3300: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    3310: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    3320: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3330: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3340: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    3350: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    3360: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    3370: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    3380: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3390: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    33A0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    33B0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    33C0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    33D0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    33E0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 07 00 00  SD..............
    33F0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    3400: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    3410: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    3420: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    3430: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    3440: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    3450: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    3460: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    3470: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    3480: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    3490: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    34A0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    34B0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    34C0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    34D0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    34E0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    34F0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3500: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    3510: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    3520: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    3530: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    3540: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    3550: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    3560: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    3570: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    3580: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    3590: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    35A0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    35B0: 54 46 43 30 31 30 08 5F 50 43 54 12 2C 02 11 14  TFC010._PCT.,...
    35C0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    35D0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    35E0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    35F0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    3600: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    3610: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    3620: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    3630: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    3640: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    3650: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    3660: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    3670: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3680: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    3690: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    36A0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    36B0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    36C0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    36D0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    36E0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    36F0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    3700: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    3710: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    3720: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3730: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    3740: 0A 05 0A 00 0C 08 00 00 00 0C FE 00 00 00 0C 02  ................
    3750: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    3760: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    3770: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    3780: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    3790: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    37A0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    37B0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    37C0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    37D0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    37E0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    37F0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    3800: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    3810: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    3820: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    3830: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    3840: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    3850: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    3860: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    3870: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    3880: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    3890: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    38A0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    38B0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    38C0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    38D0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    38E0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    38F0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    3900: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 31 08 5F  /._SB_PLTFC011._
    3910: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    3920: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    3930: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    3940: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    3950: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    3960: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    3970: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    3980: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    3990: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    39A0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    39B0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    39C0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    39D0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    39E0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    39F0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    3A00: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    3A10: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    3A20: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    3A30: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3A40: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    3A50: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    3A60: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    3A70: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3A80: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    3A90: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 08 00 00  SD..............
    3AA0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    3AB0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    3AC0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    3AD0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    3AE0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    3AF0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    3B00: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    3B10: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    3B20: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    3B30: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    3B40: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    3B50: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    3B60: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    3B70: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    3B80: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    3B90: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    3BA0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3BB0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    3BC0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    3BD0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    3BE0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    3BF0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    3C00: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    3C10: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    3C20: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    3C30: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    3C40: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    3C50: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    3C60: 54 46 43 30 31 32 08 5F 50 43 54 12 2C 02 11 14  TFC012._PCT.,...
    3C70: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    3C80: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    3C90: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    3CA0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    3CB0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    3CC0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    3CD0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    3CE0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    3CF0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    3D00: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    3D10: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    3D20: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3D30: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    3D40: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3D50: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    3D60: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    3D70: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    3D80: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    3D90: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    3DA0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    3DB0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    3DC0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    3DD0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    3DE0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    3DF0: 0A 05 0A 00 0C 09 00 00 00 0C FE 00 00 00 0C 02  ................
    3E00: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    3E10: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    3E20: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    3E30: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    3E40: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    3E50: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    3E60: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    3E70: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    3E80: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    3E90: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    3EA0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    3EB0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    3EC0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    3ED0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    3EE0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    3EF0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    3F00: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    3F10: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    3F20: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    3F30: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    3F40: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    3F50: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    3F60: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    3F70: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    3F80: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    3F90: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3FA0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    3FB0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 33 08 5F  /._SB_PLTFC013._
    3FC0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    3FD0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    3FE0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    3FF0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    4000: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    4010: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    4020: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    4030: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    4040: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    4050: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    4060: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    4070: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4080: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4090: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    40A0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    40B0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    40C0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    40D0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    40E0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    40F0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    4100: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4110: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    4120: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4130: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    4140: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 09 00 00  SD..............
    4150: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    4160: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    4170: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    4180: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    4190: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    41A0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    41B0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    41C0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    41D0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    41E0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    41F0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    4200: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    4210: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    4220: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    4230: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    4240: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    4250: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4260: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    4270: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    4280: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    4290: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    42A0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    42B0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    42C0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    42D0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    42E0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    42F0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    4300: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    4310: 54 46 43 30 31 34 08 5F 50 43 54 12 2C 02 11 14  TFC014._PCT.,...
    4320: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    4330: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    4340: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    4350: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    4360: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    4370: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    4380: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    4390: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    43A0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    43B0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    43C0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    43D0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    43E0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    43F0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4400: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    4410: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4420: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    4430: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4440: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    4450: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    4460: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    4470: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    4480: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4490: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    44A0: 0A 05 0A 00 0C 0A 00 00 00 0C FE 00 00 00 0C 02  ................
    44B0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    44C0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    44D0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    44E0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    44F0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    4500: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    4510: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    4520: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    4530: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    4540: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    4550: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    4560: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    4570: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    4580: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    4590: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    45A0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    45B0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    45C0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    45D0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    45E0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    45F0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    4600: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    4610: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    4620: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    4630: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    4640: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4650: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    4660: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 35 08 5F  /._SB_PLTFC015._
    4670: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    4680: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    4690: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    46A0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    46B0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    46C0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    46D0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    46E0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    46F0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    4700: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    4710: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    4720: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4730: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4740: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4750: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    4760: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    4770: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    4780: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    4790: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    47A0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    47B0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    47C0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    47D0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    47E0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    47F0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0A 00 00  SD..............
    4800: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    4810: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    4820: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    4830: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    4840: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    4850: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    4860: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    4870: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    4880: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    4890: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    48A0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    48B0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    48C0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    48D0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    48E0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    48F0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    4900: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4910: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    4920: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    4930: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    4940: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    4950: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    4960: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    4970: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    4980: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    4990: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    49A0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    49B0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    49C0: 54 46 43 30 31 36 08 5F 50 43 54 12 2C 02 11 14  TFC016._PCT.,...
    49D0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    49E0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    49F0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    4A00: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    4A10: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    4A20: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    4A30: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    4A40: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    4A50: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    4A60: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    4A70: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    4A80: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4A90: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    4AA0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4AB0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    4AC0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4AD0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    4AE0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4AF0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    4B00: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    4B10: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    4B20: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    4B30: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4B40: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    4B50: 0A 05 0A 00 0C 0B 00 00 00 0C FE 00 00 00 0C 02  ................
    4B60: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    4B70: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    4B80: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    4B90: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    4BA0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    4BB0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    4BC0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    4BD0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    4BE0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    4BF0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    4C00: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    4C10: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    4C20: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    4C30: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    4C40: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    4C50: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    4C60: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    4C70: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    4C80: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    4C90: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    4CA0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    4CB0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    4CC0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    4CD0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    4CE0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    4CF0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4D00: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    4D10: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 37 08 5F  /._SB_PLTFC017._
    4D20: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    4D30: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    4D40: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    4D50: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    4D60: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    4D70: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    4D80: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    4D90: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    4DA0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    4DB0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    4DC0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    4DD0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4DE0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4DF0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4E00: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    4E10: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    4E20: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    4E30: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    4E40: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    4E50: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    4E60: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    4E70: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    4E80: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    4E90: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    4EA0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0B 00 00  SD..............
    4EB0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    4EC0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    4ED0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    4EE0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    4EF0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    4F00: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    4F10: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    4F20: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    4F30: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    4F40: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    4F50: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    4F60: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    4F70: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    4F80: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    4F90: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    4FA0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    4FB0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4FC0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    4FD0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    4FE0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    4FF0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    5000: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    5010: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    5020: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    5030: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    5040: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    5050: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    5060: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    5070: 54 46 43 30 31 38 08 5F 50 43 54 12 2C 02 11 14  TFC018._PCT.,...
    5080: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    5090: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    50A0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    50B0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    50C0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    50D0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    50E0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    50F0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    5100: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    5110: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    5120: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    5130: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5140: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    5150: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5160: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    5170: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5180: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    5190: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    51A0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    51B0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    51C0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    51D0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    51E0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    51F0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    5200: 0A 05 0A 00 0C 0C 00 00 00 0C FE 00 00 00 0C 02  ................
    5210: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    5220: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    5230: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    5240: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    5250: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    5260: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    5270: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    5280: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    5290: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    52A0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    52B0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    52C0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    52D0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    52E0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    52F0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    5300: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    5310: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    5320: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    5330: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    5340: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    5350: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    5360: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    5370: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    5380: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    5390: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    53A0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    53B0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    53C0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 39 08 5F  /._SB_PLTFC019._
    53D0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    53E0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    53F0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    5400: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    5410: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    5420: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    5430: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    5440: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    5450: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    5460: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    5470: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    5480: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5490: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    54A0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    54B0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    54C0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    54D0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    54E0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    54F0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5500: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    5510: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5520: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    5530: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5540: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    5550: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0C 00 00  SD..............
    5560: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    5570: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    5580: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    5590: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    55A0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    55B0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    55C0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    55D0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    55E0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    55F0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    5600: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    5610: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    5620: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    5630: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    5640: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    5650: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    5660: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5670: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    5680: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    5690: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    56A0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    56B0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    56C0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    56D0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    56E0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    56F0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    5700: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    5710: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    5720: 54 46 43 30 31 41 08 5F 50 43 54 12 2C 02 11 14  TFC01A._PCT.,...
    5730: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    5740: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    5750: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    5760: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    5770: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    5780: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    5790: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    57A0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    57B0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    57C0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    57D0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    57E0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    57F0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    5800: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5810: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    5820: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5830: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    5840: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5850: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    5860: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    5870: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    5880: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    5890: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    58A0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    58B0: 0A 05 0A 00 0C 0D 00 00 00 0C FE 00 00 00 0C 02  ................
    58C0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    58D0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    58E0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    58F0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    5900: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    5910: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    5920: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    5930: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    5940: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    5950: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    5960: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    5970: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    5980: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    5990: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    59A0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    59B0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    59C0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    59D0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    59E0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    59F0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    5A00: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    5A10: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    5A20: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    5A30: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    5A40: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    5A50: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5A60: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    5A70: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 42 08 5F  /._SB_PLTFC01B._
    5A80: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    5A90: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    5AA0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    5AB0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    5AC0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    5AD0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    5AE0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    5AF0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    5B00: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    5B10: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    5B20: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    5B30: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5B40: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5B50: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5B60: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    5B70: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    5B80: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    5B90: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    5BA0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5BB0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    5BC0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5BD0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    5BE0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5BF0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    5C00: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0D 00 00  SD..............
    5C10: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    5C20: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    5C30: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    5C40: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    5C50: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    5C60: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    5C70: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    5C80: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    5C90: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    5CA0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    5CB0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    5CC0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    5CD0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    5CE0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    5CF0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    5D00: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    5D10: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5D20: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    5D30: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    5D40: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    5D50: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    5D60: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    5D70: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    5D80: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    5D90: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    5DA0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    5DB0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    5DC0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    5DD0: 54 46 43 30 31 43 08 5F 50 43 54 12 2C 02 11 14  TFC01C._PCT.,...
    5DE0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    5DF0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    5E00: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    5E10: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    5E20: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    5E30: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    5E40: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    5E50: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    5E60: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    5E70: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    5E80: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    5E90: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5EA0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    5EB0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5EC0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    5ED0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    5EE0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    5EF0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    5F00: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    5F10: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    5F20: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    5F30: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    5F40: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    5F50: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    5F60: 0A 05 0A 00 0C 0E 00 00 00 0C FE 00 00 00 0C 02  ................
    5F70: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    5F80: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    5F90: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    5FA0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    5FB0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    5FC0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    5FD0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    5FE0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    5FF0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    6000: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    6010: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    6020: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    6030: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    6040: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    6050: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    6060: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    6070: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    6080: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    6090: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    60A0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    60B0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    60C0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    60D0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    60E0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    60F0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    6100: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6110: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    6120: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 44 08 5F  /._SB_PLTFC01D._
    6130: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    6140: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    6150: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    6160: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    6170: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    6180: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    6190: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    61A0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    61B0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    61C0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    61D0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    61E0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    61F0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6200: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6210: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    6220: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    6230: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    6240: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    6250: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6260: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    6270: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6280: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    6290: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    62A0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    62B0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0E 00 00  SD..............
    62C0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    62D0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    62E0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    62F0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    6300: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    6310: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    6320: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    6330: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    6340: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    6350: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    6360: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    6370: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    6380: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    6390: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    63A0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    63B0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    63C0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    63D0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    63E0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    63F0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    6400: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    6410: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    6420: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    6430: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    6440: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    6450: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    6460: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    6470: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    6480: 54 46 43 30 31 45 08 5F 50 43 54 12 2C 02 11 14  TFC01E._PCT.,...
    6490: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    64A0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    64B0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    64C0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    64D0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    64E0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    64F0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    6500: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    6510: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    6520: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    6530: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    6540: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6550: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    6560: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6570: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    6580: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6590: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    65A0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    65B0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    65C0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    65D0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    65E0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    65F0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6600: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    6610: 0A 05 0A 00 0C 0F 00 00 00 0C FE 00 00 00 0C 02  ................
    6620: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    6630: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    6640: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    6650: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    6660: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    6670: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    6680: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    6690: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    66A0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    66B0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    66C0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    66D0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    66E0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    66F0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    6700: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    6710: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    6720: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    6730: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    6740: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    6750: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    6760: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    6770: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    6780: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    6790: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    67A0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    67B0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    67C0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    67D0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 46 08 5F  /._SB_PLTFC01F._
    67E0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    67F0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    6800: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    6810: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    6820: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    6830: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    6840: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    6850: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    6860: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    6870: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    6880: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    6890: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    68A0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    68B0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    68C0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    68D0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    68E0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    68F0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    6900: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6910: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    6920: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6930: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    6940: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6950: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    6960: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 0F 00 00  SD..............
    6970: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    6980: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    6990: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    69A0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    69B0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    69C0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    69D0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    69E0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    69F0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    6A00: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    6A10: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    6A20: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    6A30: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    6A40: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    6A50: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    6A60: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    6A70: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6A80: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    6A90: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    6AA0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    6AB0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    6AC0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    6AD0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    6AE0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    6AF0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    6B00: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    6B10: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    6B20: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    6B30: 54 46 43 30 32 30 08 5F 50 43 54 12 2C 02 11 14  TFC020._PCT.,...
    6B40: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    6B50: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    6B60: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    6B70: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    6B80: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    6B90: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    6BA0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    6BB0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    6BC0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    6BD0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    6BE0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    6BF0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6C00: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    6C10: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6C20: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    6C30: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6C40: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    6C50: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6C60: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    6C70: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    6C80: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    6C90: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    6CA0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6CB0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    6CC0: 0A 05 0A 00 0C 10 00 00 00 0C FE 00 00 00 0C 02  ................
    6CD0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    6CE0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    6CF0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    6D00: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    6D10: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    6D20: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    6D30: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    6D40: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    6D50: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    6D60: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    6D70: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    6D80: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    6D90: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    6DA0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    6DB0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    6DC0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    6DD0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    6DE0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    6DF0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    6E00: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    6E10: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    6E20: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    6E30: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    6E40: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    6E50: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    6E60: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6E70: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    6E80: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 31 08 5F  /._SB_PLTFC021._
    6E90: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    6EA0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    6EB0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    6EC0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    6ED0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    6EE0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    6EF0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    6F00: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    6F10: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    6F20: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    6F30: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    6F40: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6F50: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6F60: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    6F70: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    6F80: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    6F90: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    6FA0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    6FB0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    6FC0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    6FD0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    6FE0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    6FF0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7000: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    7010: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 10 00 00  SD..............
    7020: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    7030: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    7040: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    7050: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    7060: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    7070: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    7080: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    7090: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    70A0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    70B0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    70C0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    70D0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    70E0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    70F0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    7100: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    7110: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    7120: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7130: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    7140: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    7150: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    7160: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    7170: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    7180: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    7190: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    71A0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    71B0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    71C0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    71D0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    71E0: 54 46 43 30 32 32 08 5F 50 43 54 12 2C 02 11 14  TFC022._PCT.,...
    71F0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    7200: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    7210: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    7220: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    7230: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    7240: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    7250: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    7260: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    7270: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    7280: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    7290: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    72A0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    72B0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    72C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    72D0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    72E0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    72F0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    7300: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7310: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    7320: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    7330: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    7340: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    7350: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7360: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    7370: 0A 05 0A 00 0C 11 00 00 00 0C FE 00 00 00 0C 02  ................
    7380: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    7390: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    73A0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    73B0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    73C0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    73D0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    73E0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    73F0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    7400: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    7410: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    7420: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    7430: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    7440: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    7450: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    7460: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    7470: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    7480: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    7490: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    74A0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    74B0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    74C0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    74D0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    74E0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    74F0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    7500: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    7510: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7520: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    7530: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 33 08 5F  /._SB_PLTFC023._
    7540: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    7550: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    7560: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    7570: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    7580: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    7590: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    75A0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    75B0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    75C0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    75D0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    75E0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    75F0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    7600: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7610: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7620: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    7630: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    7640: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    7650: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    7660: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7670: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    7680: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    7690: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    76A0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    76B0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    76C0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 11 00 00  SD..............
    76D0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    76E0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    76F0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    7700: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    7710: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    7720: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    7730: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    7740: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    7750: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    7760: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    7770: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    7780: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    7790: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    77A0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    77B0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    77C0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    77D0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    77E0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    77F0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    7800: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    7810: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    7820: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    7830: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    7840: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    7850: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    7860: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    7870: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    7880: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    7890: 54 46 43 30 32 34 08 5F 50 43 54 12 2C 02 11 14  TFC024._PCT.,...
    78A0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    78B0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    78C0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    78D0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    78E0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    78F0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    7900: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    7910: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    7920: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    7930: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    7940: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    7950: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7960: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    7970: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7980: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    7990: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    79A0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    79B0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    79C0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    79D0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    79E0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    79F0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    7A00: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7A10: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    7A20: 0A 05 0A 00 0C 12 00 00 00 0C FE 00 00 00 0C 02  ................
    7A30: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    7A40: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    7A50: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    7A60: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    7A70: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    7A80: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    7A90: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    7AA0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    7AB0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    7AC0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    7AD0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    7AE0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    7AF0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    7B00: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    7B10: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    7B20: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    7B30: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    7B40: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    7B50: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    7B60: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    7B70: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    7B80: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    7B90: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    7BA0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    7BB0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    7BC0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7BD0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    7BE0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 35 08 5F  /._SB_PLTFC025._
    7BF0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    7C00: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    7C10: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    7C20: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    7C30: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    7C40: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    7C50: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    7C60: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    7C70: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    7C80: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    7C90: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    7CA0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    7CB0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7CC0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7CD0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    7CE0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    7CF0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    7D00: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    7D10: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    7D20: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    7D30: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    7D40: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    7D50: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    7D60: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    7D70: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 12 00 00  SD..............
    7D80: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    7D90: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    7DA0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    7DB0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    7DC0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    7DD0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    7DE0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    7DF0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    7E00: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    7E10: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    7E20: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    7E30: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    7E40: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    7E50: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    7E60: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    7E70: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    7E80: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7E90: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    7EA0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    7EB0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    7EC0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    7ED0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    7EE0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    7EF0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    7F00: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    7F10: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    7F20: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    7F30: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    7F40: 54 46 43 30 32 36 08 5F 50 43 54 12 2C 02 11 14  TFC026._PCT.,...
    7F50: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    7F60: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    7F70: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    7F80: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    7F90: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    7FA0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    7FB0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    7FC0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    7FD0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    7FE0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    7FF0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    8000: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8010: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    8020: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8030: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    8040: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8050: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    8060: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8070: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    8080: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    8090: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    80A0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    80B0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    80C0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    80D0: 0A 05 0A 00 0C 13 00 00 00 0C FE 00 00 00 0C 02  ................
    80E0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    80F0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    8100: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    8110: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    8120: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    8130: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    8140: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    8150: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    8160: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    8170: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    8180: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    8190: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    81A0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    81B0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    81C0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    81D0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    81E0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    81F0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    8200: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    8210: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    8220: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    8230: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    8240: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    8250: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    8260: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    8270: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8280: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    8290: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 37 08 5F  /._SB_PLTFC027._
    82A0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    82B0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    82C0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    82D0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    82E0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    82F0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    8300: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    8310: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    8320: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    8330: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    8340: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    8350: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8360: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8370: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8380: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    8390: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    83A0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    83B0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    83C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    83D0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    83E0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    83F0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    8400: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8410: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    8420: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 13 00 00  SD..............
    8430: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    8440: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    8450: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    8460: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    8470: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    8480: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    8490: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    84A0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    84B0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    84C0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    84D0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    84E0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    84F0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    8500: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    8510: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    8520: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    8530: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8540: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    8550: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    8560: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    8570: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    8580: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    8590: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    85A0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    85B0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    85C0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    85D0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    85E0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    85F0: 54 46 43 30 32 38 08 5F 50 43 54 12 2C 02 11 14  TFC028._PCT.,...
    8600: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    8610: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    8620: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    8630: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    8640: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    8650: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    8660: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    8670: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    8680: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    8690: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    86A0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    86B0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    86C0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    86D0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    86E0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    86F0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8700: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    8710: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8720: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    8730: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    8740: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    8750: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    8760: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8770: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    8780: 0A 05 0A 00 0C 14 00 00 00 0C FE 00 00 00 0C 02  ................
    8790: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    87A0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    87B0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    87C0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    87D0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    87E0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    87F0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    8800: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    8810: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    8820: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    8830: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    8840: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    8850: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    8860: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    8870: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    8880: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    8890: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    88A0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    88B0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    88C0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    88D0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    88E0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    88F0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    8900: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    8910: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    8920: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8930: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    8940: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 39 08 5F  /._SB_PLTFC029._
    8950: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    8960: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    8970: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    8980: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    8990: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    89A0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    89B0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    89C0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    89D0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    89E0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    89F0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    8A00: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8A10: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8A20: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8A30: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    8A40: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    8A50: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    8A60: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    8A70: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8A80: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    8A90: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8AA0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    8AB0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8AC0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    8AD0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 14 00 00  SD..............
    8AE0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    8AF0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    8B00: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    8B10: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    8B20: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    8B30: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    8B40: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    8B50: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    8B60: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    8B70: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    8B80: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    8B90: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    8BA0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    8BB0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    8BC0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    8BD0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    8BE0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8BF0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    8C00: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    8C10: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    8C20: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    8C30: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    8C40: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    8C50: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    8C60: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    8C70: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    8C80: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    8C90: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    8CA0: 54 46 43 30 32 41 08 5F 50 43 54 12 2C 02 11 14  TFC02A._PCT.,...
    8CB0: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    8CC0: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    8CD0: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    8CE0: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    8CF0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    8D00: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    8D10: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    8D20: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    8D30: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    8D40: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    8D50: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    8D60: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8D70: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    8D80: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8D90: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    8DA0: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    8DB0: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    8DC0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    8DD0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    8DE0: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    8DF0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    8E00: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    8E10: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    8E20: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    8E30: 0A 05 0A 00 0C 15 00 00 00 0C FE 00 00 00 0C 02  ................
    8E40: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    8E50: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    8E60: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    8E70: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    8E80: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    8E90: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    8EA0: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    8EB0: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    8EC0: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    8ED0: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    8EE0: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    8EF0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    8F00: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    8F10: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    8F20: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    8F30: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    8F40: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    8F50: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    8F60: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    8F70: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    8F80: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    8F90: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    8FA0: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    8FB0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    8FC0: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    8FD0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8FE0: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    8FF0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 42 08 5F  /._SB_PLTFC02B._
    9000: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    9010: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    9020: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    9030: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    9040: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    9050: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    9060: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    9070: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    9080: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    9090: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    90A0: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    90B0: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    90C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    90D0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    90E0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    90F0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    9100: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    9110: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    9120: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9130: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    9140: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9150: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    9160: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9170: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    9180: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 15 00 00  SD..............
    9190: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    91A0: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    91B0: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    91C0: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    91D0: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    91E0: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    91F0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    9200: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    9210: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    9220: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    9230: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    9240: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    9250: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    9260: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    9270: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    9280: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    9290: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    92A0: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    92B0: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    92C0: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    92D0: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    92E0: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    92F0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    9300: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    9310: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    9320: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    9330: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    9340: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    9350: 54 46 43 30 32 43 08 5F 50 43 54 12 2C 02 11 14  TFC02C._PCT.,...
    9360: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    9370: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    9380: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    9390: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    93A0: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    93B0: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    93C0: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    93D0: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    93E0: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    93F0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    9400: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    9410: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9420: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    9430: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9440: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    9450: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9460: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    9470: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9480: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    9490: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    94A0: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    94B0: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    94C0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    94D0: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    94E0: 0A 05 0A 00 0C 16 00 00 00 0C FE 00 00 00 0C 02  ................
    94F0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    9500: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    9510: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    9520: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    9530: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    9540: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    9550: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    9560: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    9570: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    9580: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    9590: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    95A0: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    95B0: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    95C0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    95D0: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    95E0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    95F0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    9600: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    9610: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    9620: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    9630: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    9640: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    9650: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    9660: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    9670: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    9680: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9690: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    96A0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 44 08 5F  /._SB_PLTFC02D._
    96B0: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    96C0: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    96D0: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    96E0: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    96F0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    9700: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    9710: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    9720: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    9730: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    9740: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    9750: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    9760: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9770: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9780: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9790: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    97A0: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    97B0: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    97C0: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    97D0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    97E0: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    97F0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9800: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    9810: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9820: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    9830: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 16 00 00  SD..............
    9840: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    9850: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    9860: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    9870: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    9880: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    9890: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    98A0: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    98B0: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    98C0: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    98D0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    98E0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    98F0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    9900: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    9910: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    9920: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    9930: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    9940: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9950: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    9960: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    9970: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    9980: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    9990: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    99A0: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    99B0: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    99C0: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    99D0: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    99E0: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    99F0: 69 10 00 00 10 47 35 5C 2F 03 5F 53 42 5F 50 4C  i....G5\/._SB_PL
    9A00: 54 46 43 30 32 45 08 5F 50 43 54 12 2C 02 11 14  TFC02E._PCT.,...
    9A10: 0A 11 82 0C 00 7F 40 00 00 62 00 01 C0 00 00 00  ......@..b......
    9A20: 00 79 00 11 14 0A 11 82 0C 00 7F 40 00 00 63 00  .y.........@..c.
    9A30: 01 C0 00 00 00 00 79 00 08 5F 50 53 53 12 46 06  ......y.._PSS.F.
    9A40: 03 12 20 06 0C 68 10 00 00 0C B0 13 00 00 0C 00  .. ..h..........
    9A50: 00 00 00 0C 00 00 00 00 0C 00 00 00 00 0C 00 00  ................
    9A60: 00 00 12 20 06 0C 98 08 00 00 0C 04 06 00 00 0C  ... ............
    9A70: 00 00 00 00 0C 00 00 00 00 0C 01 00 00 00 0C 01  ................
    9A80: 00 00 00 12 20 06 0C DC 05 00 00 0C CF 03 00 00  .... ...........
    9A90: 0C 00 00 00 00 0C 00 00 00 00 0C 02 00 00 00 0C  ................
    9AA0: 02 00 00 00 08 58 50 53 53 12 4B 0D 03 12 47 04  .....XPSS.K...G.
    9AB0: 08 0C 68 10 00 00 0C B0 13 00 00 0C 00 00 00 00  ..h.............
    9AC0: 0C 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9AD0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 11 0B 0A  ................
    9AE0: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9AF0: 00 00 00 00 00 12 47 04 08 0C 98 08 00 00 0C 04  ......G.........
    9B00: 06 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9B10: 08 01 00 00 00 00 00 00 00 11 0B 0A 08 01 00 00  ................
    9B20: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9B30: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    9B40: 08 0C DC 05 00 00 0C CF 03 00 00 0C 00 00 00 00  ................
    9B50: 0C 00 00 00 00 11 0B 0A 08 02 00 00 00 00 00 00  ................
    9B60: 00 11 0B 0A 08 02 00 00 00 00 00 00 00 11 0B 0A  ................
    9B70: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9B80: 00 00 00 00 00 08 5F 50 53 44 12 18 01 12 15 05  ......_PSD......
    9B90: 0A 05 0A 00 0C 17 00 00 00 0C FE 00 00 00 0C 02  ................
    9BA0: 00 00 00 08 50 50 43 56 0A 00 14 0B 5F 50 50 43  ....PPCV...._PPC
    9BB0: 00 A4 50 50 43 56 08 5F 43 50 43 12 40 19 17 0A  ..PPCV._CPC.@...
    9BC0: 17 0A 03 11 14 0A 11 82 0C 00 7F 08 18 04 B0 02  ................
    9BD0: 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    9BE0: 08 10 04 B0 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    9BF0: 11 82 0C 00 7F 08 08 04 B0 02 01 C0 00 00 00 00  ................
    9C00: 79 00 11 14 0A 11 82 0C 00 7F 08 00 04 B0 02 01  y...............
    9C10: C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00  .....y..........
    9C20: 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    9C30: 82 0C 00 7F 08 10 04 B3 02 01 C0 00 00 00 00 79  ...............y
    9C40: 00 11 14 0A 11 82 0C 00 7F 08 08 04 B3 02 01 C0  ................
    9C50: 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 00  ....y...........
    9C60: 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .........y......
    9C70: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    9C80: 11 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00  ................
    9C90: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    9CA0: 00 00 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    9CB0: 00 7F 40 00 04 E7 00 00 00 00 00 00 00 79 00 11  ..@..........y..
    9CC0: 14 0A 11 82 0C 00 7F 40 00 04 E8 00 00 00 00 00  .......@........
    9CD0: 00 00 79 00 11 14 0A 11 82 0C 00 7F 02 00 04 B4  ..y.............
    9CE0: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    9CF0: 7F 01 00 04 B1 02 01 C0 00 00 00 00 79 00 0C 01  ............y...
    9D00: 00 00 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  ................
    9D10: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F  ......y.........
    9D20: 08 18 04 B3 02 01 C0 00 00 00 00 79 00 11 14 0A  ...........y....
    9D30: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9D40: 79 00 0C 21 02 00 00 0C 69 10 00 00 10 47 35 5C  y..!....i....G5\
    9D50: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 46 08 5F  /._SB_PLTFC02F._
    9D60: 50 43 54 12 2C 02 11 14 0A 11 82 0C 00 7F 40 00  PCT.,.........@.
    9D70: 00 62 00 01 C0 00 00 00 00 79 00 11 14 0A 11 82  .b.......y......
    9D80: 0C 00 7F 40 00 00 63 00 01 C0 00 00 00 00 79 00  ...@..c.......y.
    9D90: 08 5F 50 53 53 12 46 06 03 12 20 06 0C 68 10 00  ._PSS.F... ..h..
    9DA0: 00 0C B0 13 00 00 0C 00 00 00 00 0C 00 00 00 00  ................
    9DB0: 0C 00 00 00 00 0C 00 00 00 00 12 20 06 0C 98 08  ........... ....
    9DC0: 00 00 0C 04 06 00 00 0C 00 00 00 00 0C 00 00 00  ................
    9DD0: 00 0C 01 00 00 00 0C 01 00 00 00 12 20 06 0C DC  ............ ...
    9DE0: 05 00 00 0C CF 03 00 00 0C 00 00 00 00 0C 00 00  ................
    9DF0: 00 00 0C 02 00 00 00 0C 02 00 00 00 08 58 50 53  .............XPS
    9E00: 53 12 4B 0D 03 12 47 04 08 0C 68 10 00 00 0C B0  S.K...G...h.....
    9E10: 13 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9E20: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9E30: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9E40: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 12 47 04  ..............G.
    9E50: 08 0C 98 08 00 00 0C 04 06 00 00 0C 00 00 00 00  ................
    9E60: 0C 00 00 00 00 11 0B 0A 08 01 00 00 00 00 00 00  ................
    9E70: 00 11 0B 0A 08 01 00 00 00 00 00 00 00 11 0B 0A  ................
    9E80: 08 00 00 00 00 00 00 00 00 11 0B 0A 08 00 00 00  ................
    9E90: 00 00 00 00 00 12 47 04 08 0C DC 05 00 00 0C CF  ......G.........
    9EA0: 03 00 00 0C 00 00 00 00 0C 00 00 00 00 11 0B 0A  ................
    9EB0: 08 02 00 00 00 00 00 00 00 11 0B 0A 08 02 00 00  ................
    9EC0: 00 00 00 00 00 11 0B 0A 08 00 00 00 00 00 00 00  ................
    9ED0: 00 11 0B 0A 08 00 00 00 00 00 00 00 00 08 5F 50  .............._P
    9EE0: 53 44 12 18 01 12 15 05 0A 05 0A 00 0C 17 00 00  SD..............
    9EF0: 00 0C FE 00 00 00 0C 02 00 00 00 08 50 50 43 56  ............PPCV
    9F00: 0A 00 14 0B 5F 50 50 43 00 A4 50 50 43 56 08 5F  ...._PPC..PPCV._
    9F10: 43 50 43 12 40 19 17 0A 17 0A 03 11 14 0A 11 82  CPC.@...........
    9F20: 0C 00 7F 08 18 04 B0 02 01 C0 00 00 00 00 79 00  ..............y.
    9F30: 11 14 0A 11 82 0C 00 7F 08 10 04 B0 02 01 C0 00  ................
    9F40: 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 08 04  ...y............
    9F50: B0 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C  ........y.......
    9F60: 00 7F 08 00 04 B0 02 01 C0 00 00 00 00 79 00 11  .............y..
    9F70: 14 0A 11 82 0C 00 00 00 00 00 00 00 00 00 00 00  ................
    9F80: 00 00 79 00 11 14 0A 11 82 0C 00 7F 08 10 04 B3  ..y.............
    9F90: 02 01 C0 00 00 00 00 79 00 11 14 0A 11 82 0C 00  .......y........
    9FA0: 7F 08 08 04 B3 02 01 C0 00 00 00 00 79 00 11 14  ............y...
    9FB0: 0A 11 82 0C 00 7F 08 00 04 B3 02 01 C0 00 00 00  ................
    9FC0: 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00 00 00  .y..............
    9FD0: 00 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 00  ......y.........
    9FE0: 00 00 00 00 00 00 00 00 00 00 00 79 00 11 14 0A  ...........y....
    9FF0: 11 82 0C 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A000: 79 00 11 14 0A 11 82 0C 00 7F 40 00 04 E7 00 00  y.........@.....
    A010: 00 00 00 00 00 79 00 11 14 0A 11 82 0C 00 7F 40  .....y.........@
    A020: 00 04 E8 00 00 00 00 00 00 00 79 00 11 14 0A 11  ..........y.....
    A030: 82 0C 00 7F 02 00 04 B4 02 01 C0 00 00 00 00 79  ...............y
    A040: 00 11 14 0A 11 82 0C 00 7F 01 00 04 B1 02 01 C0  ................
    A050: 00 00 00 00 79 00 0C 01 00 00 00 11 14 0A 11 82  ....y...........
    A060: 0C 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00  ..............y.
    A070: 11 14 0A 11 82 0C 00 7F 08 18 04 B3 02 01 C0 00  ................
    A080: 00 00 00 79 00 11 14 0A 11 82 0C 00 00 00 00 00  ...y............
    A090: 00 00 00 00 00 00 00 00 79 00 0C 21 02 00 00 0C  ........y..!....
    A0A0: 69 10 00 00 14 C9 36 00 00 4E 46 50 43 00 86 5C  i.....6..NFPC..\
    A0B0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 30 0A 85  /._SB_PLTFC000..
    A0C0: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 31  .\/._SB_PLTFC001
    A0D0: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A0E0: 30 32 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  02...\/._SB_PLTF
    A0F0: 43 30 30 33 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C003...\/._SB_PL
    A100: 54 46 43 30 30 34 0A 85 86 5C 2F 03 5F 53 42 5F  TFC004...\/._SB_
    A110: 50 4C 54 46 43 30 30 35 0A 85 86 5C 2F 03 5F 53  PLTFC005...\/._S
    A120: 42 5F 50 4C 54 46 43 30 30 36 0A 85 86 5C 2F 03  B_PLTFC006...\/.
    A130: 5F 53 42 5F 50 4C 54 46 43 30 30 37 0A 85 86 5C  _SB_PLTFC007...\
    A140: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 38 0A 85  /._SB_PLTFC008..
    A150: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 30 39  .\/._SB_PLTFC009
    A160: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A170: 30 41 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  0A...\/._SB_PLTF
    A180: 43 30 30 42 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C00B...\/._SB_PL
    A190: 54 46 43 30 30 43 0A 85 86 5C 2F 03 5F 53 42 5F  TFC00C...\/._SB_
    A1A0: 50 4C 54 46 43 30 30 44 0A 85 86 5C 2F 03 5F 53  PLTFC00D...\/._S
    A1B0: 42 5F 50 4C 54 46 43 30 30 45 0A 85 86 5C 2F 03  B_PLTFC00E...\/.
    A1C0: 5F 53 42 5F 50 4C 54 46 43 30 30 46 0A 85 86 5C  _SB_PLTFC00F...\
    A1D0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 30 0A 85  /._SB_PLTFC010..
    A1E0: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 31  .\/._SB_PLTFC011
    A1F0: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A200: 31 32 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  12...\/._SB_PLTF
    A210: 43 30 31 33 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C013...\/._SB_PL
    A220: 54 46 43 30 31 34 0A 85 86 5C 2F 03 5F 53 42 5F  TFC014...\/._SB_
    A230: 50 4C 54 46 43 30 31 35 0A 85 86 5C 2F 03 5F 53  PLTFC015...\/._S
    A240: 42 5F 50 4C 54 46 43 30 31 36 0A 85 86 5C 2F 03  B_PLTFC016...\/.
    A250: 5F 53 42 5F 50 4C 54 46 43 30 31 37 0A 85 86 5C  _SB_PLTFC017...\
    A260: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 38 0A 85  /._SB_PLTFC018..
    A270: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 31 39  .\/._SB_PLTFC019
    A280: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A290: 31 41 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  1A...\/._SB_PLTF
    A2A0: 43 30 31 42 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C01B...\/._SB_PL
    A2B0: 54 46 43 30 31 43 0A 85 86 5C 2F 03 5F 53 42 5F  TFC01C...\/._SB_
    A2C0: 50 4C 54 46 43 30 31 44 0A 85 86 5C 2F 03 5F 53  PLTFC01D...\/._S
    A2D0: 42 5F 50 4C 54 46 43 30 31 45 0A 85 86 5C 2F 03  B_PLTFC01E...\/.
    A2E0: 5F 53 42 5F 50 4C 54 46 43 30 31 46 0A 85 86 5C  _SB_PLTFC01F...\
    A2F0: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 30 0A 85  /._SB_PLTFC020..
    A300: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 31  .\/._SB_PLTFC021
    A310: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A320: 32 32 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  22...\/._SB_PLTF
    A330: 43 30 32 33 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C023...\/._SB_PL
    A340: 54 46 43 30 32 34 0A 85 86 5C 2F 03 5F 53 42 5F  TFC024...\/._SB_
    A350: 50 4C 54 46 43 30 32 35 0A 85 86 5C 2F 03 5F 53  PLTFC025...\/._S
    A360: 42 5F 50 4C 54 46 43 30 32 36 0A 85 86 5C 2F 03  B_PLTFC026...\/.
    A370: 5F 53 42 5F 50 4C 54 46 43 30 32 37 0A 85 86 5C  _SB_PLTFC027...\
    A380: 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 38 0A 85  /._SB_PLTFC028..
    A390: 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30 32 39  .\/._SB_PLTFC029
    A3A0: 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46 43 30  ...\/._SB_PLTFC0
    A3B0: 32 41 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C 54 46  2A...\/._SB_PLTF
    A3C0: 43 30 32 42 0A 85 86 5C 2F 03 5F 53 42 5F 50 4C  C02B...\/._SB_PL
    A3D0: 54 46 43 30 32 43 0A 85 86 5C 2F 03 5F 53 42 5F  TFC02C...\/._SB_
    A3E0: 50 4C 54 46 43 30 32 44 0A 85 86 5C 2F 03 5F 53  PLTFC02D...\/._S
    A3F0: 42 5F 50 4C 54 46 43 30 32 45 0A 85 86 5C 2F 03  B_PLTFC02E...\/.
    A400: 5F 53 42 5F 50 4C 54 46 43 30 32 46 0A 85        _SB_PLTFC02F..

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 6A 09 00 00 02 7D 41 4D 44 00 00 00  SSDTj....}AMD...
    0010: 43 50 4D 4D 53 4F 53 43 01 00 00 00 49 4E 54 4C  CPMMSOSC....INTL
    0020: 31 03 23 20 A0 48 45 00 15 5C 4D 31 31 35 03 00  1.# .HE..\M115..
    0030: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0040: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0050: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0060: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0070: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0080: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    0090: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00A0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00B0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00C0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00D0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00E0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    00F0: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0100: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0110: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0120: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0130: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0140: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0150: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0160: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0170: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0180: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    0190: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01A0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01B0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01C0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01D0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01E0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    01F0: 15 5C 4D 32 33 32 08 03 15 5C 4D 30 34 36 01 00  .\M232...\M046..
    0200: 15 5C 4D 30 34 37 01 00 15 5C 4D 30 34 39 08 02  .\M047...\M049..
    0210: 15 5C 4D 32 35 31 05 00 15 5C 4D 33 31 30 05 00  .\M251...\M310..
    0220: 15 5C 4D 33 31 43 05 00 15 5C 4D 33 32 30 05 00  .\M31C...\M320..
    0230: 15 5C 4D 33 32 31 05 00 15 5C 4D 33 32 32 05 00  .\M321...\M322..
    0240: 15 5C 4D 33 32 33 05 00 15 5C 4D 33 32 34 05 00  .\M323...\M324..
    0250: 15 5C 4D 33 32 35 05 00 15 5C 4D 33 32 36 05 00  .\M325...\M326..
    0260: 15 5C 4D 33 32 37 05 00 15 5C 4D 33 32 38 05 00  .\M327...\M328..
    0270: 15 5C 4D 32 38 30 05 00 15 5C 4D 32 39 30 05 00  .\M280...\M290..
    0280: 15 5C 4D 33 37 38 05 00 15 5C 4D 33 37 39 05 00  .\M378...\M379..
    0290: 15 5C 4D 33 38 30 05 00 15 5C 4D 33 38 31 05 00  .\M380...\M381..
    02A0: 15 5C 4D 33 38 32 05 00 15 5C 4D 33 38 33 05 00  .\M382...\M383..
    02B0: 15 5C 4D 33 38 34 05 00 15 5C 4D 33 38 35 05 00  .\M384...\M385..
    02C0: 15 5C 4D 33 38 36 05 00 15 5C 4D 33 38 37 05 00  .\M386...\M387..
    02D0: 15 5C 4D 33 38 38 05 00 15 5C 4D 33 38 39 05 00  .\M388...\M389..
    02E0: 15 5C 4D 33 39 30 05 00 15 5C 4D 33 39 31 05 00  .\M390...\M391..
    02F0: 15 5C 4D 33 39 32 05 00 15 5C 4D 33 33 31 05 00  .\M392...\M331..
    0300: 15 5C 4D 36 32 30 05 00 15 5C 4D 34 30 34 03 00  .\M620...\M404..
    0310: 15 5C 4D 34 30 38 09 00 15 5C 4D 34 31 34 05 00  .\M408...\M414..
    0320: 15 5C 4D 34 34 34 05 00 15 5C 4D 34 35 33 05 00  .\M444...\M453..
    0330: 15 5C 4D 34 35 34 05 00 15 5C 4D 34 35 35 05 00  .\M454...\M455..
    0340: 15 5C 4D 34 35 36 05 00 15 5C 4D 34 35 37 05 00  .\M456...\M457..
    0350: 15 5C 4D 34 36 30 08 07 15 5C 4D 34 34 39 05 00  .\M460...\M449..
    0360: 15 5C 4D 34 43 30 05 00 15 5C 4D 32 33 41 05 00  .\M4C0...\M23A..
    0370: 15 5C 4D 34 46 30 05 00 15 5C 4D 36 31 30 05 00  .\M4F0...\M610..
    0380: 15 5C 4D 32 39 41 05 00 15 5C 4D 36 33 31 05 00  .\M29A...\M631..
    0390: 15 5C 4D 36 35 32 05 00 15 5C 4D 30 35 30 06 00  .\M652...\M050..
    03A0: 15 5C 4D 30 35 31 06 00 15 5C 4D 30 35 32 06 00  .\M051...\M052..
    03B0: 15 5C 4D 30 35 33 06 00 15 5C 4D 30 35 34 06 00  .\M053...\M054..
    03C0: 15 5C 4D 30 35 35 06 00 15 5C 4D 30 35 36 06 00  .\M055...\M056..
    03D0: 15 5C 4D 30 35 37 06 00 15 5C 4D 30 35 38 06 00  .\M057...\M058..
    03E0: 15 5C 4D 30 35 39 06 00 15 5C 4D 30 36 32 06 00  .\M059...\M062..
    03F0: 15 5C 4D 30 36 38 06 00 15 5C 4D 30 36 39 06 00  .\M068...\M069..
    0400: 15 5C 4D 30 37 30 06 00 15 5C 4D 30 37 31 06 00  .\M070...\M071..
    0410: 15 5C 4D 30 37 32 06 00 15 5C 4D 30 37 34 06 00  .\M072...\M074..
    0420: 15 5C 4D 30 37 35 06 00 15 5C 4D 30 37 36 06 00  .\M075...\M076..
    0430: 15 5C 4D 30 37 37 06 00 15 5C 4D 30 37 38 06 00  .\M077...\M078..
    0440: 15 5C 4D 30 37 39 06 00 15 5C 4D 30 38 30 06 00  .\M079...\M080..
    0450: 15 5C 4D 30 38 31 06 00 15 5C 4D 31 32 37 06 00  .\M081...\M127..
    0460: 15 5C 44 49 4D 53 01 00 15 5C 44 44 45 50 01 00  .\DIMS...\DDEP..
    0470: 15 5C 2E 5F 53 42 5F 4D 36 32 35 08 02 10 4C 4E  .\._SB_M625...LN
    0480: 5C 5F 53 42 5F 08 4D 36 33 30 0B 55 55 08 55 34  \_SB_.M630.UU.U4
    0490: 50 43 0A FF 14 45 4D 5F 4F 53 43 0C 08 4D 53 44  PC...EM_OSC..MSD
    04A0: 42 00 8A 68 00 55 49 44 30 8A 6B 00 43 44 57 31  B..h.UID0.k.CDW1
    04B0: A0 0E 92 95 6A 0A 02 8A 6B 0A 04 43 44 57 32 A0  ....j...k..CDW2.
    04C0: 0E 92 95 6A 0A 03 8A 6B 0A 08 43 44 57 33 A0 48  ...j...k..CDW3.H
    04D0: 04 93 6A 01 4D 34 36 30 0D 20 20 46 45 41 2D 41  ..j.M460.  FEA-A
    04E0: 53 4C 2D 5C 5F 53 42 2E 5F 4F 53 43 20 55 55 49  SL-\_SB._OSC UUI
    04F0: 44 20 30 78 25 58 20 53 74 61 72 74 20 20 43 44  D 0x%X Start  CD
    0500: 57 31 20 3D 20 30 78 25 58 0A 00 55 49 44 30 43  W1 = 0x%X..UID0C
    0510: 44 57 31 00 00 00 00 A1 4B 0C A0 4E 05 93 6A 0A  DW1.....K..N..j.
    0520: 02 70 43 44 57 32 62 4D 34 36 30 0D 20 20 46 45  .pCDW2bM460.  FE
    0530: 41 2D 41 53 4C 2D 5C 5F 53 42 2E 5F 4F 53 43 20  A-ASL-\_SB._OSC 
    0540: 55 55 49 44 20 30 78 25 58 20 53 74 61 72 74 20  UUID 0x%X Start 
    0550: 20 43 44 57 31 20 3D 20 30 78 25 58 20 43 44 57   CDW1 = 0x%X CDW
    0560: 32 20 3D 20 30 78 25 58 0A 00 55 49 44 30 43 44  2 = 0x%X..UID0CD
    0570: 57 31 43 44 57 32 00 00 00 A1 49 06 70 43 44 57  W1CDW2....I.pCDW
    0580: 33 63 4D 34 36 30 0D 20 20 46 45 41 2D 41 53 4C  3cM460.  FEA-ASL
    0590: 2D 5C 5F 53 42 2E 5F 4F 53 43 20 55 55 49 44 20  -\_SB._OSC UUID 
    05A0: 30 78 25 58 20 53 74 61 72 74 20 20 43 44 57 31  0x%X Start  CDW1
    05B0: 20 3D 20 30 78 25 58 20 43 44 57 32 20 3D 20 30   = 0x%X CDW2 = 0
    05C0: 78 25 58 20 43 44 57 33 20 3D 20 30 78 25 58 0A  x%X CDW3 = 0x%X.
    05D0: 00 55 49 44 30 43 44 57 31 43 44 57 32 43 44 57  .UID0CDW1CDW2CDW
    05E0: 33 00 00 A0 49 10 93 68 11 13 0A 10 3A D1 A0 23  3...I..h....:..#
    05F0: AB 26 6C 48 9C 5F 0F FA 52 5A 57 5A A0 43 0E 93  .&lH._..RZWZ.C..
    0600: 69 01 70 00 65 A0 29 92 93 5C 2E 5F 53 42 5F 55  i.p.e.)..\._SB_U
    0610: 34 50 43 0A FF 7B 5C 2E 5F 53 42 5F 55 34 50 43  4PC..{\._SB_U4PC
    0620: 0A 0F 65 7B 63 0C F0 FF FF FF 63 7D 63 65 63 A1  ..e{c.....c}cec.
    0630: 44 08 A0 41 08 90 5B 12 5C 2E 5F 53 42 5F 4D 36  D..A..[.\._SB_M6
    0640: 32 35 00 92 93 4D 36 32 30 00 A0 49 06 92 93 4D  25...M620..I...M
    0650: 30 34 39 4D 36 32 30 0A 10 00 A0 2D 93 5C 2E 5F  049M620....-.\._
    0660: 53 42 5F 4D 36 33 30 0B 55 55 70 5C 2E 5F 53 42  SB_M630.UUp\._SB
    0670: 5F 4D 36 32 35 0B 80 01 0B E8 03 61 70 61 5C 2E  _M625......apa\.
    0680: 5F 53 42 5F 4D 36 33 30 A1 0D 70 5C 2E 5F 53 42  _SB_M630..p\._SB
    0690: 5F 4D 36 33 30 61 A0 1D 93 7B 61 0A FF 00 00 7B  _M630a...{a....{
    06A0: 7A 61 0A 10 00 0A 0F 65 7B 63 0C F0 FF FF FF 63  za.....e{c.....c
    06B0: 7D 63 65 63 A0 0F 93 65 00 7D 43 44 57 31 0A 04  }cec...e.}CDW1..
    06C0: 43 44 57 31 A1 1B A0 19 92 93 63 43 44 57 33 70  CDW1......cCDW3p
    06D0: 63 43 44 57 33 7D 43 44 57 31 0A 10 43 44 57 31  cCDW3}CDW1..CDW1
    06E0: A1 0C 7D 43 44 57 31 0A 08 43 44 57 31 A1 41 17  ..}CDW1..CDW1.A.
    06F0: A0 41 16 93 68 11 13 0A 10 6E B0 11 08 27 4A F9  .A..h....n...'J.
    0700: 44 8D 60 3C BB C2 2E 7B 48 A0 4B 13 93 69 01 A0  D.`<...{H.K..i..
    0710: 4C 06 90 5B 12 5C 44 49 4D 53 00 5B 12 5C 44 44  L..[.\DIMS.[.\DD
    0720: 45 50 00 A0 48 05 90 93 5C 44 44 45 50 01 93 7B  EP..H...\DDEP..{
    0730: 43 44 57 32 0C 00 00 04 00 00 0C 00 00 04 00 4D  CDW2...........M
    0740: 34 36 30 0D 20 20 20 20 44 69 73 61 62 6C 65 20  460.    Disable 
    0750: 55 53 42 34 20 41 43 50 49 20 5F 44 45 50 0A 00  USB4 ACPI _DEP..
    0760: 00 00 00 00 00 00 70 5C 44 49 4D 53 61 4D 32 33  ......p\DIMSaM23
    0770: 32 61 0A 55 00 70 00 5C 44 44 45 50 7D 62 0A 04  2a.U.p.\DDEP}b..
    0780: 62 A0 0F 93 4D 53 44 42 01 7B 62 0C 7F FF FF FF  b...MSDB.{b.....
    0790: 62 A0 11 92 93 55 34 50 43 0A FF 7D 62 0C 00 00  b....U4PC..}b...
    07A0: 04 00 62 A1 2F A0 2D 92 93 4D 36 32 30 00 A0 24  ..b./.-..M620..$
    07B0: 92 93 4D 30 34 39 4D 36 32 30 0A 10 00 A0 15 93  ..M049M620......
    07C0: 4D 30 34 39 4D 36 32 30 0A 45 00 7B 62 0C FF FF  M049M620.E.{b...
    07D0: FB FF 62 A0 19 92 93 62 43 44 57 32 70 62 43 44  ..b....bCDW2pbCD
    07E0: 57 32 7D 43 44 57 31 0A 10 43 44 57 31 A0 47 05  W2}CDW1..CDW1.G.
    07F0: 90 92 93 7B 43 44 57 31 01 00 01 5B 12 5C 2E 5F  ...{CDW1...[.\._
    0800: 53 42 5F 4D 36 32 35 00 A0 3C 92 93 4D 36 32 30  SB_M625..<..M620
    0810: 00 A0 33 92 93 4D 30 34 39 4D 36 32 30 0A 10 00  ..3..M049M620...
    0820: 70 4D 30 34 39 4D 36 32 30 0A 43 64 70 5C 2E 5F  pM049M620.Cdp\._
    0830: 53 42 5F 4D 36 32 35 72 0B 02 01 79 64 0A 10 00  SB_M625r...yd...
    0840: 00 0B E8 03 61 A1 0C 7D 43 44 57 31 0A 08 43 44  ....a..}CDW1..CD
    0850: 57 31 A1 0C 7D 43 44 57 31 0A 04 43 44 57 31 A0  W1..}CDW1..CDW1.
    0860: 48 04 93 6A 01 4D 34 36 30 0D 20 20 46 45 41 2D  H..j.M460.  FEA-
    0870: 41 53 4C 2D 5C 5F 53 42 2E 5F 4F 53 43 20 55 55  ASL-\_SB._OSC UU
    0880: 49 44 20 30 78 25 58 20 52 65 74 75 72 6E 20 43  ID 0x%X Return C
    0890: 44 57 31 20 3D 20 30 78 25 58 0A 00 55 49 44 30  DW1 = 0x%X..UID0
    08A0: 43 44 57 31 00 00 00 00 A1 4F 0B A0 48 05 93 6A  CDW1.....O..H..j
    08B0: 0A 02 4D 34 36 30 0D 20 20 46 45 41 2D 41 53 4C  ..M460.  FEA-ASL
    08C0: 2D 5C 5F 53 42 2E 5F 4F 53 43 20 55 55 49 44 20  -\_SB._OSC UUID 
    08D0: 30 78 25 58 20 52 65 74 75 72 6E 20 43 44 57 31  0x%X Return CDW1
    08E0: 20 3D 20 30 78 25 58 20 43 44 57 32 20 3D 20 30   = 0x%X CDW2 = 0
    08F0: 78 25 58 0A 00 55 49 44 30 43 44 57 31 43 44 57  x%X..UID0CDW1CDW
    0900: 32 00 00 00 A1 43 06 4D 34 36 30 0D 20 20 46 45  2....C.M460.  FE
    0910: 41 2D 41 53 4C 2D 5C 5F 53 42 2E 5F 4F 53 43 20  A-ASL-\_SB._OSC 
    0920: 55 55 49 44 20 30 78 25 58 20 52 65 74 75 72 6E  UUID 0x%X Return
    0930: 20 43 44 57 31 20 3D 20 30 78 25 58 20 43 44 57   CDW1 = 0x%X CDW
    0940: 32 20 3D 20 30 78 25 58 20 43 44 57 33 20 3D 20  2 = 0x%X CDW3 = 
    0950: 30 78 25 58 0A 00 55 49 44 30 43 44 57 31 43 44  0x%X..UID0CDW1CD
    0960: 57 32 43 44 57 33 00 00 A4 6B                    W2CDW3...k

ERST @ 0x0000000000000000
    0000: 45 52 53 54 30 02 00 00 01 E1 41 4D 49 45 52 00  ERST0.....AMIER.
    0010: 41 4D 49 2E 45 52 53 54 00 00 00 00 41 4D 49 2E  AMI.ERST....AMI.
    0020: 00 00 00 00 0C 00 00 00 00 00 00 00 10 00 00 00  ................
    0030: 00 03 00 00 00 08 00 01 18 B0 48 A4 00 00 00 00  ..........H.....
    0040: 00 00 00 00 00 00 00 00 FF 00 00 00 00 00 00 00  ................
    0050: 01 03 00 00 00 08 00 01 18 B0 48 A4 00 00 00 00  ..........H.....
    0060: 01 00 00 00 00 00 00 00 FF 00 00 00 00 00 00 00  ................
    0070: 02 03 00 00 00 08 00 01 18 B0 48 A4 00 00 00 00  ..........H.....
    0080: 02 00 00 00 00 00 00 00 FF 00 00 00 00 00 00 00  ................
    0090: 03 03 00 00 00 08 00 01 19 B0 48 A4 00 00 00 00  ..........H.....
    00A0: 03 00 00 00 00 00 00 00 FF 00 00 00 00 00 00 00  ................
    00B0: 04 02 00 00 00 20 00 03 1C B0 48 A4 00 00 00 00  ..... ....H.....
    00C0: 00 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00  ................
    00D0: 05 03 00 00 01 08 00 01 B2 00 00 00 00 00 00 00  ................
    00E0: 70 00 00 00 00 00 00 00 FF 00 00 00 00 00 00 00  p...............
    00F0: 06 01 00 00 00 08 00 01 20 B0 48 A4 00 00 00 00  ........ .H.....
    0100: 01 00 00 00 00 00 00 00 FF 00 00 00 00 00 00 00  ................
    0110: 07 00 00 00 00 08 00 01 21 B0 48 A4 00 00 00 00  ........!.H.....
    0120: 00 00 00 00 00 00 00 00 FF 00 00 00 00 00 00 00  ................
    0130: 08 00 00 00 00 40 00 04 28 B0 48 A4 00 00 00 00  .....@..(.H.....
    0140: 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF  ................
    0150: 09 02 00 00 00 40 00 04 30 B0 48 A4 00 00 00 00  .....@..0.H.....
    0160: 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF  ................
    0170: 0A 00 00 00 00 10 00 02 38 B0 48 A4 00 00 00 00  ........8.H.....
    0180: 00 00 00 00 00 00 00 00 FF FF 00 00 00 00 00 00  ................
    0190: 0B 03 00 00 00 08 00 01 18 B0 48 A4 00 00 00 00  ..........H.....
    01A0: 0B 00 00 00 00 00 00 00 FF 00 00 00 00 00 00 00  ................
    01B0: 0C 04 00 00 00 08 00 01 00 00 00 00 00 00 00 00  ................
    01C0: 00 00 00 00 00 00 00 00 FF 00 00 00 00 00 00 00  ................
    01D0: 0D 00 00 00 00 40 00 04 40 B0 48 A4 00 00 00 00  .....@..@.H.....
    01E0: 00 00 00 00 00 00 00 00 FF FF FF FF FF FF FF FF  ................
    01F0: 0E 00 00 00 00 20 00 03 48 B0 48 A4 00 00 00 00  ..... ..H.H.....
    0200: 00 00 00 00 00 00 00 00 FF FF FF FF 00 00 00 00  ................
    0210: 0F 00 00 00 00 08 00 01 4C B0 48 A4 00 00 00 00  ........L.H.....
    0220: 00 00 00 00 00 00 00 00 FF 00 00 00 00 00 00 00  ................

IVRS @ 0x0000000000000000
    0000: 49 56 52 53 E8 01 00 00 02 BA 41 4D 44 20 20 00  IVRS......AMD  .
    0010: 41 6D 64 54 61 62 6C 65 01 00 00 00 41 4D 44 20  AmdTable....AMD 
    0020: 01 00 00 00 61 34 20 00 00 00 00 00 00 00 00 00  ....a4 .........
    0030: 10 B0 28 00 02 C0 40 00 00 00 10 DF 00 00 00 00  ..(...@.........
    0040: 00 00 00 00 6F 8F 04 90 03 03 C0 00 04 FE FF 00  ....o...........
    0050: 48 00 00 00 81 01 C0 01 11 30 38 00 02 C0 40 00  H........08...@.
    0060: 00 00 10 DF 00 00 00 00 00 00 00 00 00 80 04 00  ................
    0070: FE 5A 29 A2 2F 73 BF 25 1D 00 00 00 00 00 00 00  .Z)./s.%........
    0080: 03 03 C0 00 04 FE FF 00 48 00 00 00 81 01 C0 01  ........H.......
    0090: 10 B0 28 00 02 80 40 00 00 00 10 D3 00 00 00 00  ..(...@.........
    00A0: 00 00 00 00 6F 8F 04 90 03 03 80 00 04 FE BF 00  ....o...........
    00B0: 48 00 00 00 82 01 80 01 11 30 38 00 02 80 40 00  H........08...@.
    00C0: 00 00 10 D3 00 00 00 00 00 00 00 00 00 80 04 00  ................
    00D0: FE 5A 29 A2 2F 73 BF 25 1D 00 00 00 00 00 00 00  .Z)./s.%........
    00E0: 03 03 80 00 04 FE BF 00 48 00 00 00 82 01 80 01  ........H.......
    00F0: 10 B0 44 00 02 00 40 00 00 00 10 F7 00 00 00 00  ..D...@.........
    0100: 00 00 00 00 6F 8F 04 90 03 03 00 00 04 FE 3F 00  ....o.........?.
    0110: 43 00 FF 00 00 A5 00 00 04 FF FF 00 48 00 00 00  C...........H...
    0120: 00 A0 00 02 48 00 00 D7 80 A0 00 01 48 00 00 00  ....H.......H...
    0130: 83 01 00 01 11 30 54 00 02 00 40 00 00 00 10 F7  .....0T...@.....
    0140: 00 00 00 00 00 00 00 00 00 80 04 00 FE 5A 29 A2  .............Z).
    0150: 2F 73 BF 25 1D 00 00 00 00 00 00 00 03 03 00 00  /s.%............
    0160: 04 FE 3F 00 43 00 FF 00 00 A5 00 00 04 FF FF 00  ..?.C...........
    0170: 48 00 00 00 00 A0 00 02 48 00 00 D7 80 A0 00 01  H.......H.......
    0180: 48 00 00 00 83 01 00 01 10 B0 28 00 02 40 40 00  H.........(..@@.
    0190: 00 00 10 C9 00 00 00 00 00 00 00 00 6F 8F 04 90  ............o...
    01A0: 03 03 40 00 04 FE 7F 00 48 00 00 00 84 01 40 01  ..@.....H.....@.
    01B0: 11 30 38 00 02 40 40 00 00 00 10 C9 00 00 00 00  .08..@@.........
    01C0: 00 00 00 00 00 80 04 00 FE 5A 29 A2 2F 73 BF 25  .........Z)./s.%
    01D0: 1D 00 00 00 00 00 00 00 03 03 40 00 04 FE 7F 00  ..........@.....
    01E0: 48 00 00 00 84 01 40 01                          H.....@.

DSDT @ 0x0000000000000000
    0000: 44 53 44 54 F6 D2 00 00 02 14 41 4D 44 20 20 20  DSDT......AMD   
    0010: 41 20 4D 20 49 20 00 00 01 00 00 00 49 4E 54 4C  A M I ......INTL
    0020: 31 03 23 20 A0 4D 53 00 15 5C 2F 03 5F 53 42 5F  1.# .MS..\/._SB_
    0030: 50 43 49 33 50 4F 53 53 05 00 15 5C 2F 03 5F 53  PCI3POSS...\/._S
    0040: 42 5F 50 43 49 33 50 4F 53 43 05 00 15 5C 2F 03  B_PCI3POSC...\/.
    0050: 5F 53 42 5F 50 43 49 32 50 4F 53 53 05 00 15 5C  _SB_PCI2POSS...\
    0060: 2F 03 5F 53 42 5F 50 43 49 32 50 4F 53 43 05 00  /._SB_PCI2POSC..
    0070: 15 5C 2E 5F 53 42 5F 41 50 54 53 08 01 15 5C 2E  .\._SB_APTS...\.
    0080: 5F 53 42 5F 41 57 41 4B 08 01 15 5C 2F 03 5F 53  _SB_AWAK...\/._S
    0090: 42 5F 50 43 49 30 50 4F 53 53 05 00 15 5C 2F 03  B_PCI0POSS...\/.
    00A0: 5F 53 42 5F 50 43 49 30 50 4F 53 43 05 00 15 5C  _SB_PCI0POSC...\
    00B0: 2F 03 5F 53 42 5F 50 43 49 31 50 4F 53 53 05 00  /._SB_PCI1POSS..
    00C0: 15 5C 2F 03 5F 53 42 5F 50 43 49 31 50 4F 53 43  .\/._SB_PCI1POSC
    00D0: 05 00 15 5C 4D 31 31 35 03 00 15 5C 4D 31 31 36  ...\M115...\M116
    00E0: 0E 00 15 5C 4D 31 31 37 0E 00 15 5C 4D 31 31 38  ...\M117...\M118
    00F0: 0E 00 15 5C 4D 31 31 39 0E 00 15 5C 4D 31 32 30  ...\M119...\M120
    0100: 0E 00 15 5C 4D 30 33 37 06 00 15 5C 4D 32 32 37  ...\M037...\M227
    0110: 06 00 15 5C 4D 33 32 39 06 00 15 5C 4D 33 32 41  ...\M329...\M32A
    0120: 06 00 15 5C 4D 33 32 42 06 00 15 5C 4D 33 32 43  ...\M32B...\M32C
    0130: 06 00 15 5C 4D 33 33 30 06 00 15 5C 4D 30 38 32  ...\M330...\M082
    0140: 05 00 15 5C 4D 30 38 33 05 00 15 5C 4D 30 38 34  ...\M083...\M084
    0150: 05 00 15 5C 4D 30 38 35 05 00 15 5C 4D 32 32 31  ...\M085...\M221
    0160: 05 00 15 5C 4D 30 38 36 05 00 15 5C 4D 32 32 39  ...\M086...\M229
    0170: 05 00 15 5C 4D 32 33 31 05 00 15 5C 4D 32 33 35  ...\M231...\M235
    0180: 05 00 15 5C 4D 32 33 33 05 00 15 5C 4D 30 38 37  ...\M233...\M087
    0190: 05 00 15 5C 4D 30 38 38 05 00 15 5C 4D 30 38 39  ...\M088...\M089
    01A0: 05 00 15 5C 4D 30 39 30 05 00 15 5C 4D 30 39 31  ...\M090...\M091
    01B0: 05 00 15 5C 4D 30 39 32 05 00 15 5C 4D 30 39 33  ...\M092...\M093
    01C0: 05 00 15 5C 4D 30 39 34 05 00 15 5C 4D 30 39 35  ...\M094...\M095
    01D0: 05 00 15 5C 4D 30 39 36 05 00 15 5C 4D 30 39 37  ...\M096...\M097
    01E0: 05 00 15 5C 4D 30 39 38 05 00 15 5C 4D 30 39 39  ...\M098...\M099
    01F0: 05 00 15 5C 4D 31 30 30 05 00 15 5C 4D 31 30 31  ...\M100...\M101
    0200: 05 00 15 5C 4D 31 30 32 05 00 15 5C 4D 31 30 33  ...\M102...\M103
    0210: 05 00 15 5C 4D 31 30 34 05 00 15 5C 4D 31 30 35  ...\M104...\M105
    0220: 05 00 15 5C 4D 31 30 36 05 00 15 5C 4D 31 30 37  ...\M106...\M107
    0230: 05 00 15 5C 4D 31 32 38 05 00 15 5C 4D 31 30 38  ...\M128...\M108
    0240: 05 00 15 5C 4D 31 30 39 05 00 15 5C 4D 31 31 30  ...\M109...\M110
    0250: 05 00 15 5C 4D 31 32 32 05 00 15 5C 4D 31 33 31  ...\M122...\M131
    0260: 05 00 15 5C 4D 31 33 32 05 00 15 5C 4D 32 32 36  ...\M132...\M226
    0270: 05 00 15 5C 4D 31 33 33 05 00 15 5C 4D 31 33 34  ...\M133...\M134
    0280: 05 00 15 5C 4D 31 33 35 05 00 15 5C 4D 31 33 36  ...\M135...\M136
    0290: 05 00 15 5C 4D 32 32 30 05 00 15 5C 4D 30 34 36  ...\M220...\M046
    02A0: 01 00 15 5C 4D 30 34 37 01 00 15 5C 4D 32 35 31  ...\M047...\M251
    02B0: 05 00 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43  ...\M310...\M31C
    02C0: 05 00 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31  ...\M320...\M321
    02D0: 05 00 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33  ...\M322...\M323
    02E0: 05 00 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35  ...\M324...\M325
    02F0: 05 00 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37  ...\M326...\M327
    0300: 05 00 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30  ...\M328...\M280
    0310: 05 00 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38  ...\M290...\M378
    0320: 05 00 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30  ...\M379...\M380
    0330: 05 00 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32  ...\M381...\M382
    0340: 05 00 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34  ...\M383...\M384
    0350: 05 00 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36  ...\M385...\M386
    0360: 05 00 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38  ...\M387...\M388
    0370: 05 00 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30  ...\M389...\M390
    0380: 05 00 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32  ...\M391...\M392
    0390: 05 00 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30  ...\M331...\M620
    03A0: 05 00 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38  ...\M404...\M408
    03B0: 09 00 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34  ...\M414...\M444
    03C0: 05 00 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34  ...\M453...\M454
    03D0: 05 00 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36  ...\M455...\M456
    03E0: 05 00 15 5C 4D 34 35 37 05 00 15 5C 4D 34 34 39  ...\M457...\M449
    03F0: 05 00 15 5C 4D 34 43 30 05 00 15 5C 4D 32 33 41  ...\M4C0...\M23A
    0400: 05 00 15 5C 4D 34 46 30 05 00 15 5C 4D 36 31 30  ...\M4F0...\M610
    0410: 05 00 15 5C 4D 36 30 30 08 02 15 5C 4D 36 30 31  ...\M600...\M601
    0420: 08 06 15 5C 4D 32 39 41 05 00 15 5C 4D 36 33 31  ...\M29A...\M631
    0430: 05 00 15 5C 4D 36 35 32 05 00 15 5C 4D 30 35 30  ...\M652...\M050
    0440: 06 00 15 5C 4D 30 35 31 06 00 15 5C 4D 30 35 32  ...\M051...\M052
    0450: 06 00 15 5C 4D 30 35 33 06 00 15 5C 4D 30 35 34  ...\M053...\M054
    0460: 06 00 15 5C 4D 30 35 35 06 00 15 5C 4D 30 35 36  ...\M055...\M056
    0470: 06 00 15 5C 4D 30 35 37 06 00 15 5C 4D 30 35 38  ...\M057...\M058
    0480: 06 00 15 5C 4D 30 35 39 06 00 15 5C 4D 30 36 32  ...\M059...\M062
    0490: 06 00 15 5C 4D 30 36 38 06 00 15 5C 4D 30 36 39  ...\M068...\M069
    04A0: 06 00 15 5C 4D 30 37 30 06 00 15 5C 4D 30 37 31  ...\M070...\M071
    04B0: 06 00 15 5C 4D 30 37 32 06 00 15 5C 4D 30 37 34  ...\M072...\M074
    04C0: 06 00 15 5C 4D 30 37 35 06 00 15 5C 4D 30 37 36  ...\M075...\M076
    04D0: 06 00 15 5C 4D 30 37 37 06 00 15 5C 4D 30 37 38  ...\M077...\M078
    04E0: 06 00 15 5C 4D 30 37 39 06 00 15 5C 4D 30 38 30  ...\M079...\M080
    04F0: 06 00 15 5C 4D 30 38 31 06 00 15 5C 4D 31 32 37  ...\M081...\M127
    0500: 06 00 15 5C 4D 50 54 53 08 01 15 5C 4D 57 41 4B  ...\MPTS...\MWAK
    0510: 08 01 15 5C 2F 03 5F 53 42 5F 50 43 49 30 50 50  ...\/._SB_PCI0PP
    0520: 4D 45 08 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31  ME...\/._SB_PCI1
    0530: 50 50 4D 45 08 00 15 5C 2F 03 5F 53 42 5F 50 43  PPME...\/._SB_PC
    0540: 49 32 50 50 4D 45 08 00 15 5C 2F 03 5F 53 42 5F  I2PPME...\/._SB_
    0550: 50 43 49 33 50 50 4D 45 08 00 15 5C 43 52 42 49  PCI3PPME...\CRBI
    0560: 00 00 08 45 4E 54 4B 0A 87 08 45 58 54 4B 0A AA  ...ENTK...EXTK..
    0570: 08 49 4F 31 42 0B 90 02 08 49 4F 31 4C 0A 10 08  .IO1B....IO1L...
    0580: 49 4F 32 42 0B A0 02 08 49 4F 32 4C 0A 10 08 49  IO2B....IO2L...I
    0590: 4F 33 42 0B 90 02 08 49 4F 33 4C 0A 10 08 49 4F  O3B....IO3L...IO
    05A0: 34 42 0B A0 02 08 49 4F 34 4C 0A 10 08 53 50 31  4B....IO4L...SP1
    05B0: 4F 0A 2E 08 4B 42 46 47 00 08 4D 53 46 47 00 08  O...KBFG..MSFG..
    05C0: 49 4F 45 53 00 08 50 45 42 4C 0C 00 00 00 10 08  IOES..PEBL......
    05D0: 4E 42 54 53 0B 00 50 08 43 50 56 44 01 08 53 4D  NBTS..P.CPVD..SM
    05E0: 42 42 0B 20 0B 08 53 4D 42 4C 0A 20 08 53 4D 42  BB. ..SMBL. .SMB
    05F0: 30 0B 00 0B 08 53 4D 42 4D 0A 10 08 50 4D 42 53  0....SMBM...PMBS
    0600: 0B 00 08 08 50 4D 4C 4E 0A A0 08 53 4D 49 4F 0A  ....PMLN...SMIO.
    0610: B2 08 47 50 42 53 00 08 47 50 4C 4E 00 08 41 50  ..GPBS..GPLN..AP
    0620: 43 42 0C 00 00 C0 FE 08 41 50 43 4C 0B 00 10 08  CB......APCL....
    0630: 48 50 54 42 0C 00 00 D0 FE 08 57 44 54 42 00 08  HPTB......WDTB..
    0640: 57 44 54 4C 00 08 47 49 4F 42 0C 00 15 D8 FE 08  WDTL..GIOB......
    0650: 49 4F 4D 42 0C 00 0D D8 FE 08 53 53 4D 42 0C 00  IOMB......SSMB..
    0660: 02 D8 FE 08 55 54 44 42 00 08 4E 42 54 50 0C 00  ....UTDB..NBTP..
    0670: 00 C3 FE 08 41 53 53 42 00 08 41 4F 54 42 00 08  ....ASSB..AOTB..
    0680: 41 41 58 42 00 08 50 45 48 50 01 08 53 48 50 43  AAXB..PEHP..SHPC
    0690: 01 08 50 45 50 4D 01 08 50 45 45 52 01 08 50 45  ..PEPM..PEER..PE
    06A0: 43 53 01 08 49 54 4B 45 00 08 50 45 42 53 0C 00  CS..ITKE..PEBS..
    06B0: 00 00 E0 08 50 45 4C 4E 0C 00 00 00 10 08 43 53  ....PELN......CS
    06C0: 4D 49 0A 61 08 44 53 53 50 00 08 46 48 50 50 01  MI.a.DSSP..FHPP.
    06D0: 08 53 4D 49 41 0A B2 08 53 4D 49 42 0A B3 08 4F  .SMIA...SMIB...O
    06E0: 46 53 54 0A 35 08 54 52 53 54 0A 02 08 54 43 4D  FST.5.TRST...TCM
    06F0: 46 00 08 54 4D 46 31 00 08 54 4D 46 32 00 08 54  F..TMF1..TMF2..T
    0700: 4D 46 33 00 08 54 54 50 46 01 08 44 54 50 54 00  MF3..TTPF..DTPT.
    0710: 08 54 54 44 50 00 08 54 50 4D 42 0C FF FF FF FF  .TTDP..TPMB.....
    0720: 08 54 50 42 53 0B 00 10 08 54 50 4D 43 0C FF FF  .TPBS....TPMC...
    0730: FF FF 08 54 50 43 53 0B 00 10 08 54 50 4D 4D 0C  ...TPCS....TPMM.
    0740: 00 00 D4 FE 08 46 54 50 4D 0C FF FF FF FF 08 50  .....FTPM......P
    0750: 50 49 4D 0C 18 EA 47 A9 08 50 50 49 4C 0A 1C 08  PIM...G..PPIL...
    0760: 41 4D 44 54 00 08 54 50 4D 46 00 08 50 50 49 56  AMDT..TPMF..PPIV
    0770: 00 08 4D 42 45 43 00 14 27 5F 50 49 43 01 A0 1B  ..MBEC..'_PIC...
    0780: 68 5C 2E 5F 53 42 5F 44 53 50 49 5C 2F 03 5F 53  h\._SB_DSPI\/._S
    0790: 42 5F 50 43 49 30 4E 41 50 45 50 58 58 58 68 08  B_PCI0NAPEPXXXh.
    07A0: 50 49 43 4D 00 14 1F 50 58 58 58 01 A0 09 68 70  PICM...PXXX...hp
    07B0: 0A AA 44 42 47 38 A1 08 70 0A AC 44 42 47 38 70  ..DBG8..p..DBG8p
    07C0: 68 50 49 43 4D 08 4F 53 56 52 FF 14 45 28 4F 53  hPICM.OSVR..E(OS
    07D0: 46 4C 00 A0 0D 92 93 4F 53 56 52 FF A4 4F 53 56  FL.....OSVR..OSV
    07E0: 52 A0 0E 93 50 49 43 4D 00 70 0A AC 44 42 47 38  R...PICM.p..DBG8
    07F0: 70 0A 03 4F 53 56 52 A0 4A 16 5B 12 5C 5F 4F 53  p..OSVR.J.[.\_OS
    0800: 49 00 A0 1A 5F 4F 53 49 0D 57 69 6E 64 6F 77 73  I..._OSI.Windows
    0810: 20 32 30 30 31 00 70 0A 04 4F 53 56 52 A0 1C 5F   2001.p..OSVR.._
    0820: 4F 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 30 31  OSI.Windows 2001
    0830: 2E 31 00 70 0A 05 4F 53 56 52 A0 15 5F 4F 53 49  .1.p..OSVR.._OSI
    0840: 0D 46 72 65 65 42 53 44 00 70 0A 06 4F 53 56 52  .FreeBSD.p..OSVR
    0850: A0 13 5F 4F 53 49 0D 48 50 2D 55 58 00 70 0A 07  .._OSI.HP-UX.p..
    0860: 4F 53 56 52 A0 15 5F 4F 53 49 0D 4F 70 65 6E 56  OSVR.._OSI.OpenV
    0870: 4D 53 00 70 0A 08 4F 53 56 52 A0 1E 5F 4F 53 49  MS.p..OSVR.._OSI
    0880: 0D 57 69 6E 64 6F 77 73 20 32 30 30 31 20 53 50  .Windows 2001 SP
    0890: 31 00 70 0A 09 4F 53 56 52 A0 1E 5F 4F 53 49 0D  1.p..OSVR.._OSI.
    08A0: 57 69 6E 64 6F 77 73 20 32 30 30 31 20 53 50 32  Windows 2001 SP2
    08B0: 00 70 0A 0A 4F 53 56 52 A0 1E 5F 4F 53 49 0D 57  .p..OSVR.._OSI.W
    08C0: 69 6E 64 6F 77 73 20 32 30 30 31 20 53 50 33 00  indows 2001 SP3.
    08D0: 70 0A 0B 4F 53 56 52 A0 1A 5F 4F 53 49 0D 57 69  p..OSVR.._OSI.Wi
    08E0: 6E 64 6F 77 73 20 32 30 30 36 00 70 0A 0C 4F 53  ndows 2006.p..OS
    08F0: 56 52 A0 1E 5F 4F 53 49 0D 57 69 6E 64 6F 77 73  VR.._OSI.Windows
    0900: 20 32 30 30 36 20 53 50 31 00 70 0A 0D 4F 53 56   2006 SP1.p..OSV
    0910: 52 A0 1A 5F 4F 53 49 0D 57 69 6E 64 6F 77 73 20  R.._OSI.Windows 
    0920: 32 30 30 39 00 70 0A 0E 4F 53 56 52 A0 1A 5F 4F  2009.p..OSVR.._O
    0930: 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 31 32 00  SI.Windows 2012.
    0940: 70 0A 0F 4F 53 56 52 A0 1A 5F 4F 53 49 0D 57 69  p..OSVR.._OSI.Wi
    0950: 6E 64 6F 77 73 20 32 30 31 33 00 70 0A 10 4F 53  ndows 2013.p..OS
    0960: 56 52 A1 49 0E A0 25 4D 43 54 48 5F 4F 53 5F 0D  VR.I..%MCTH_OS_.
    0970: 4D 69 63 72 6F 73 6F 66 74 20 57 69 6E 64 6F 77  Microsoft Window
    0980: 73 20 4E 54 00 70 00 4F 53 56 52 A0 22 4D 43 54  s NT.p.OSVR."MCT
    0990: 48 5F 4F 53 5F 0D 4D 69 63 72 6F 73 6F 66 74 20  H_OS_.Microsoft 
    09A0: 57 69 6E 64 6F 77 73 00 70 01 4F 53 56 52 A0 39  Windows.p.OSVR.9
    09B0: 4D 43 54 48 5F 4F 53 5F 0D 4D 69 63 72 6F 73 6F  MCTH_OS_.Microso
    09C0: 66 74 20 57 69 6E 64 6F 77 73 4D 45 3A 20 4D 69  ft WindowsME: Mi
    09D0: 6C 6C 65 6E 6E 69 75 6D 20 45 64 69 74 69 6F 6E  llennium Edition
    09E0: 00 70 0A 02 4F 53 56 52 A0 17 4D 43 54 48 5F 4F  .p..OSVR..MCTH_O
    09F0: 53 5F 0D 4C 69 6E 75 78 00 70 0A 03 4F 53 56 52  S_.Linux.p..OSVR
    0A00: A0 19 4D 43 54 48 5F 4F 53 5F 0D 46 72 65 65 42  ..MCTH_OS_.FreeB
    0A10: 53 44 00 70 0A 06 4F 53 56 52 A0 17 4D 43 54 48  SD.p..OSVR..MCTH
    0A20: 5F 4F 53 5F 0D 48 50 2D 55 58 00 70 0A 07 4F 53  _OS_.HP-UX.p..OS
    0A30: 56 52 A0 19 4D 43 54 48 5F 4F 53 5F 0D 4F 70 65  VR..MCTH_OS_.Ope
    0A40: 6E 56 4D 53 00 70 0A 08 4F 53 56 52 A4 4F 53 56  nVMS.p..OSVR.OSV
    0A50: 52 14 4E 04 4D 43 54 48 02 A0 08 95 87 68 87 69  R.N.MCTH.....h.i
    0A60: A4 00 72 87 68 01 60 08 42 55 46 30 11 02 60 08  ..r.h.`.BUF0..`.
    0A70: 42 55 46 31 11 02 60 70 68 42 55 46 30 70 69 42  BUF1..`phBUF0piB
    0A80: 55 46 31 A2 1A 60 76 60 A0 15 92 93 83 88 42 55  UF1..`v`......BU
    0A90: 46 30 60 00 83 88 42 55 46 31 60 00 A4 00 A4 01  F0`...BUF1`.....
    0AA0: 08 50 52 57 50 12 04 02 00 00 14 4B 07 47 50 52  .PRWP......K.GPR
    0AB0: 57 02 70 68 88 50 52 57 50 00 00 70 79 53 53 31  W.ph.PRWP..pySS1
    0AC0: 5F 01 00 60 7D 60 79 53 53 32 5F 0A 02 00 60 7D  _..`}`ySS2_...`}
    0AD0: 60 79 53 53 33 5F 0A 03 00 60 7D 60 79 53 53 34  `ySS3_...`}`ySS4
    0AE0: 5F 0A 04 00 60 A0 11 7B 79 01 69 00 60 00 70 69  _...`..{y.i.`.pi
    0AF0: 88 50 52 57 50 01 00 A1 29 7A 60 01 60 A0 18 91  .PRWP...)z`.`...
    0B00: 93 4F 53 46 4C 01 93 4F 53 46 4C 0A 02 81 60 88  .OSFL..OSFL...`.
    0B10: 50 52 57 50 01 00 A1 0A 82 60 88 50 52 57 50 01  PRWP.....`.PRWP.
    0B20: 00 A4 50 52 57 50 08 57 41 4B 50 12 04 02 00 00  ..PRWP.WAKP.....
    0B30: 14 24 55 50 57 50 01 A0 12 83 88 57 41 4B 50 00  .$UPWP.....WAKP.
    0B40: 00 70 00 88 57 41 4B 50 01 00 A1 0A 70 68 88 57  .p..WAKP....ph.W
    0B50: 41 4B 50 01 00 5B 80 44 45 42 30 01 0A 80 01 5B  AKP..[.DEB0....[
    0B60: 81 0B 44 45 42 30 01 44 42 47 38 08 5B 80 44 45  ..DEB0.DBG8.[.DE
    0B70: 42 31 01 0A 90 0A 02 5B 81 0B 44 45 42 31 02 44  B1.....[..DEB1.D
    0B80: 42 47 39 10 08 53 53 31 5F 00 08 53 53 32 5F 00  BG9..SS1_..SS2_.
    0B90: 08 53 53 33 5F 01 08 53 53 34 5F 01 08 49 4F 53  .SS3_..SS4_..IOS
    0BA0: 54 0B 01 00 08 54 4F 50 4D 0C 00 00 00 00 08 52  T....TOPM......R
    0BB0: 4F 4D 53 0C 00 00 E0 FF 08 56 47 41 46 01 5B 80  OMS......VGAF.[.
    0BC0: 44 45 42 32 01 0A 80 0A 02 5B 81 0B 44 45 42 32  DEB2.....[..DEB2
    0BD0: 02 50 38 30 48 10 08 4F 53 54 59 FF 5B 80 41 43  .P80H..OSTY.[.AC
    0BE0: 4D 53 01 0A 72 0A 02 5B 81 10 41 43 4D 53 01 41  MS..r..[..ACMS.A
    0BF0: 43 4D 58 08 41 43 4D 41 08 5B 86 12 41 43 4D 58  CMX.ACMA.[..ACMX
    0C00: 41 43 4D 41 01 00 48 5C 49 4D 45 4E 08 5B 80 50  ACMA..H\IMEN.[.P
    0C10: 53 4D 49 01 53 4D 49 4F 0A 02 5B 81 10 50 53 4D  SMI.SMIO..[..PSM
    0C20: 49 01 41 50 4D 43 08 41 50 4D 44 08 5B 80 50 4D  I.APMC.APMD.[.PM
    0C30: 52 47 00 0C 00 03 D8 FE 0B 00 01 5B 81 27 50 4D  RG.........[.'PM
    0C40: 52 47 00 00 06 48 50 45 4E 01 00 49 2F 50 31 45  RG...HPEN..I/P1E
    0C50: 42 10 00 40 0F 53 49 33 52 01 00 4F 37 00 03 52  B..@.SI3R..O7..R
    0C60: 53 54 55 01 5B 80 47 53 4D 4D 00 0C 00 00 D8 FE  STU.[.GSMM......
    0C70: 0B 00 10 5B 81 37 47 53 4D 4D 00 00 80 44 01 00  ...[.7GSMM...D..
    0C80: 01 43 4C 50 53 01 00 4E 06 00 07 54 4D 53 45 01  .CLPS..N...TMSE.
    0C90: 00 48 0C 00 02 53 4C 50 53 02 00 44 85 00 06 50  .H...SLPS..D...P
    0CA0: 57 44 45 01 00 41 14 42 4C 4E 4B 02 5B 80 50 31  WDE..A.BLNK.[.P1
    0CB0: 45 30 01 50 31 45 42 0A 04 5B 81 1D 50 31 45 30  E0.P1EB..[..P1E0
    0CC0: 01 00 08 00 06 50 45 57 53 01 57 53 54 41 01 00  .....PEWS.WSTA..
    0CD0: 08 00 06 50 45 57 44 01 5B 80 49 4F 43 43 01 50  ...PEWD.[.IOCC.P
    0CE0: 4D 42 53 0A 80 5B 81 0F 49 4F 43 43 01 00 08 00  MBS..[..IOCC....
    0CF0: 02 52 54 43 53 01 14 4F 06 53 50 54 53 01 70 68  .RTCS..O.SPTS.ph
    0D00: 50 38 30 48 A0 0B 93 68 0A 03 70 01 42 4C 4E 4B  P80H...h..p.BLNK
    0D10: A0 10 91 93 68 0A 04 93 68 0A 05 70 00 42 4C 4E  ....h...h..p.BLN
    0D20: 4B A0 0B 93 68 0A 03 70 00 52 53 54 55 70 01 43  K...h..p.RSTUp.C
    0D30: 4C 50 53 70 01 53 4C 50 53 70 50 45 57 53 50 45  LPSp.SLPSpPEWSPE
    0D40: 57 53 A0 0B 93 68 0A 03 70 01 53 4C 50 53 A0 11  WS...h..p.SLPS..
    0D50: 93 68 0A 04 70 01 53 4C 50 53 70 01 52 53 54 55  .h..p.SLPSp.RSTU
    0D60: A0 05 93 68 0A 05 14 4B 06 53 57 41 4B 01 70 0A  ...h...K.SWAK.p.
    0D70: 03 42 4C 4E 4B A0 0B 93 68 0A 03 70 01 52 53 54  .BLNK...h..p.RST
    0D80: 55 70 50 45 57 53 50 45 57 53 70 00 50 45 57 44  UpPEWSPEWSp.PEWD
    0D90: A0 0F 50 49 43 4D 5C 2E 5F 53 42 5F 44 53 50 49  ..PICM\._SB_DSPI
    0DA0: A0 0B 54 4D 53 45 70 00 54 4D 53 45 A0 12 93 68  ..TMSEp.TMSE...h
    0DB0: 0A 03 86 5C 2E 5F 53 42 5F 50 57 52 42 0A 02 A0  ...\._SB_PWRB...
    0DC0: 12 93 68 0A 04 86 5C 2E 5F 53 42 5F 50 57 52 42  ..h...\._SB_PWRB
    0DD0: 0A 02 10 05 5F 47 50 45 10 8D 27 03 5F 53 42 5F  ...._GPE..'._SB_
    0DE0: 08 50 52 53 41 11 09 0A 06 23 B0 CC 18 79 00 06  .PRSA....#...y..
    0DF0: 50 52 53 41 50 52 53 42 06 50 52 53 41 50 52 53  PRSAPRSB.PRSAPRS
    0E00: 43 06 50 52 53 41 50 52 53 44 06 50 52 53 41 50  C.PRSAPRSD.PRSAP
    0E10: 52 53 45 06 50 52 53 41 50 52 53 46 06 50 52 53  RSE.PRSAPRSF.PRS
    0E20: 41 50 52 53 47 06 50 52 53 41 50 52 53 48 08 50  APRSG.PRSAPRSH.P
    0E30: 44 45 30 12 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B  DE0..........LNK
    0E40: 41 00 08 41 52 45 30 12 0C 01 12 09 04 0B FF FF  A..ARE0.........
    0E50: 00 00 0A 98 08 50 44 45 31 12 0E 01 12 0B 04 0B  .....PDE1.......
    0E60: FF FF 00 4C 4E 4B 41 00 08 41 52 45 31 12 0C 01  ...LNKA..ARE1...
    0E70: 12 09 04 0B FF FF 00 00 0A 98 08 50 44 45 32 12  ...........PDE2.
    0E80: 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 08 41  .........LNKA..A
    0E90: 52 45 32 12 0C 01 12 09 04 0B FF FF 00 00 0A 98  RE2.............
    0EA0: 08 50 44 45 33 12 0E 01 12 0B 04 0B FF FF 00 4C  .PDE3..........L
    0EB0: 4E 4B 41 00 08 41 52 45 33 12 0C 01 12 09 04 0B  NKA..ARE3.......
    0EC0: FF FF 00 00 0A 98 08 50 44 45 34 12 0E 01 12 0B  .......PDE4.....
    0ED0: 04 0B FF FF 00 4C 4E 4B 41 00 08 41 52 45 34 12  .....LNKA..ARE4.
    0EE0: 0C 01 12 09 04 0B FF FF 00 00 0A 98 08 50 44 45  .............PDE
    0EF0: 35 12 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B 41 00  5..........LNKA.
    0F00: 08 41 52 45 35 12 0C 01 12 09 04 0B FF FF 00 00  .ARE5...........
    0F10: 0A 98 08 50 44 45 36 12 0E 01 12 0B 04 0B FF FF  ...PDE6.........
    0F20: 00 4C 4E 4B 41 00 08 41 52 45 36 12 0C 01 12 09  .LNKA..ARE6.....
    0F30: 04 0B FF FF 00 00 0A 98 08 50 44 45 37 12 0E 01  .........PDE7...
    0F40: 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 08 41 52 45  .......LNKA..ARE
    0F50: 37 12 0C 01 12 09 04 0B FF FF 00 00 0A 98 08 50  7..............P
    0F60: 44 45 38 12 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B  DE8..........LNK
    0F70: 41 00 08 41 52 45 38 12 0C 01 12 09 04 0B FF FF  A..ARE8.........
    0F80: 00 00 0A 98 08 50 44 45 39 12 0E 01 12 0B 04 0B  .....PDE9.......
    0F90: FF FF 00 4C 4E 4B 41 00 08 41 52 45 39 12 0C 01  ...LNKA..ARE9...
    0FA0: 12 09 04 0B FF FF 00 00 0A 98 08 50 44 45 41 12  ...........PDEA.
    0FB0: 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 08 41  .........LNKA..A
    0FC0: 52 45 41 12 0C 01 12 09 04 0B FF FF 00 00 0A 98  REA.............
    0FD0: 08 50 44 45 42 12 0E 01 12 0B 04 0B FF FF 00 4C  .PDEB..........L
    0FE0: 4E 4B 41 00 08 41 52 45 42 12 0C 01 12 09 04 0B  NKA..AREB.......
    0FF0: FF FF 00 00 0A 98 08 50 44 45 43 12 0E 01 12 0B  .......PDEC.....
    1000: 04 0B FF FF 00 4C 4E 4B 41 00 08 41 52 45 43 12  .....LNKA..AREC.
    1010: 0C 01 12 09 04 0B FF FF 00 00 0A 98 08 50 44 45  .............PDE
    1020: 44 12 0E 01 12 0B 04 0B FF FF 00 4C 4E 4B 41 00  D..........LNKA.
    1030: 08 41 52 45 44 12 0C 01 12 09 04 0B FF FF 00 00  .ARED...........
    1040: 0A 98 08 50 44 45 45 12 0E 01 12 0B 04 0B FF FF  ...PDEE.........
    1050: 00 4C 4E 4B 41 00 08 41 52 45 45 12 0C 01 12 09  .LNKA..AREE.....
    1060: 04 0B FF FF 00 00 0A 98 08 50 44 45 46 12 0E 01  .........PDEF...
    1070: 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 08 41 52 45  .......LNKA..ARE
    1080: 46 12 0C 01 12 09 04 0B FF FF 00 00 0A 98 08 50  F..............P
    1090: 44 30 33 12 41 11 13 12 0B 04 0B FF FF 00 4C 4E  D03.A.........LN
    10A0: 4B 42 00 12 0D 04 0C FF FF 01 00 00 4C 4E 4B 41  KB..........LNKA
    10B0: 00 12 0D 04 0C FF FF 01 00 01 4C 4E 4B 41 00 12  ..........LNKA..
    10C0: 0E 04 0C FF FF 01 00 0A 02 4C 4E 4B 41 00 12 0E  .........LNKA...
    10D0: 04 0C FF FF 01 00 0A 03 4C 4E 4B 41 00 12 0D 04  ........LNKA....
    10E0: 0C FF FF 02 00 00 4C 4E 4B 41 00 12 0D 04 0C FF  ......LNKA......
    10F0: FF 02 00 01 4C 4E 4B 41 00 12 0D 04 0C FF FF 03  ....LNKA........
    1100: 00 00 4C 4E 4B 42 00 12 0D 04 0C FF FF 03 00 01  ..LNKB..........
    1110: 4C 4E 4B 42 00 12 0E 04 0C FF FF 03 00 0A 02 4C  LNKB...........L
    1120: 4E 4B 42 00 12 0E 04 0C FF FF 03 00 0A 03 4C 4E  NKB...........LN
    1130: 4B 42 00 12 0D 04 0C FF FF 04 00 00 4C 4E 4B 42  KB..........LNKB
    1140: 00 12 0D 04 0C FF FF 04 00 01 4C 4E 4B 42 00 12  ..........LNKB..
    1150: 0D 04 0C FF FF 05 00 00 4C 4E 4B 43 00 12 0D 04  ........LNKC....
    1160: 0C FF FF 05 00 01 4C 4E 4B 43 00 12 0E 04 0C FF  ......LNKC......
    1170: FF 05 00 0A 02 4C 4E 4B 43 00 12 0E 04 0C FF FF  .....LNKC.......
    1180: 05 00 0A 03 4C 4E 4B 43 00 12 0D 04 0C FF FF 07  ....LNKC........
    1190: 00 00 4C 4E 4B 44 00 12 0D 04 0C FF FF 07 00 01  ..LNKD..........
    11A0: 4C 4E 4B 44 00 08 41 52 30 33 12 4B 0E 13 12 09  LNKD..AR03.K....
    11B0: 04 0B FF FF 00 00 0A 79 12 0B 04 0C FF FF 01 00  .......y........
    11C0: 00 00 0A 78 12 0B 04 0C FF FF 01 00 01 00 0A 78  ...x...........x
    11D0: 12 0C 04 0C FF FF 01 00 0A 02 00 0A 78 12 0C 04  ............x...
    11E0: 0C FF FF 01 00 0A 03 00 0A 78 12 0B 04 0C FF FF  .........x......
    11F0: 02 00 00 00 0A 78 12 0B 04 0C FF FF 02 00 01 00  .....x..........
    1200: 0A 78 12 0B 04 0C FF FF 03 00 00 00 0A 79 12 0B  .x...........y..
    1210: 04 0C FF FF 03 00 01 00 0A 79 12 0C 04 0C FF FF  .........y......
    1220: 03 00 0A 02 00 0A 79 12 0C 04 0C FF FF 03 00 0A  ......y.........
    1230: 03 00 0A 79 12 0B 04 0C FF FF 04 00 00 00 0A 79  ...y...........y
    1240: 12 0B 04 0C FF FF 04 00 01 00 0A 79 12 0B 04 0C  ...........y....
    1250: FF FF 05 00 00 00 0A 7A 12 0B 04 0C FF FF 05 00  .......z........
    1260: 01 00 0A 7A 12 0C 04 0C FF FF 05 00 0A 02 00 0A  ...z............
    1270: 7A 12 0C 04 0C FF FF 05 00 0A 03 00 0A 7A 12 0B  z............z..
    1280: 04 0C FF FF 07 00 00 00 0A 7B 12 0B 04 0C FF FF  .........{......
    1290: 07 00 01 00 0A 7B 08 50 30 32 35 12 34 04 12 0B  .....{.P025.4...
    12A0: 04 0B FF FF 00 4C 4E 4B 41 00 12 0B 04 0B FF FF  .....LNKA.......
    12B0: 01 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKB.........LN
    12C0: 4B 43 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00  KC.........LNKD.
    12D0: 08 47 30 32 35 12 2C 04 12 09 04 0B FF FF 00 00  .G025.,.........
    12E0: 0A 78 12 09 04 0B FF FF 01 00 0A 79 12 0A 04 0B  .x.........y....
    12F0: FF FF 0A 02 00 0A 7A 12 0A 04 0B FF FF 0A 03 00  ......z.........
    1300: 0A 7B 08 50 30 32 36 12 34 04 12 0B 04 0B FF FF  .{.P026.4.......
    1310: 00 4C 4E 4B 45 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKE........LNK
    1320: 46 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 47 00 12  F.........LNKG..
    1330: 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00 08 47 30 32  .......LNKH..G02
    1340: 36 12 2C 04 12 09 04 0B FF FF 00 00 0A 7C 12 09  6.,..........|..
    1350: 04 0B FF FF 01 00 0A 7D 12 0A 04 0B FF FF 0A 02  .......}........
    1360: 00 0A 7E 12 0A 04 0B FF FF 0A 03 00 0A 7F 08 50  ..~............P
    1370: 30 32 37 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  027.4........LNK
    1380: 41 00 12 0B 04 0B FF FF 01 4C 4E 4B 42 00 12 0C  A........LNKB...
    1390: 04 0B FF FF 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF  ......LNKC......
    13A0: FF 0A 03 4C 4E 4B 44 00 08 47 30 32 37 12 2C 04  ...LNKD..G027.,.
    13B0: 12 09 04 0B FF FF 00 00 0A 80 12 09 04 0B FF FF  ................
    13C0: 01 00 0A 81 12 0A 04 0B FF FF 0A 02 00 0A 82 12  ................
    13D0: 0A 04 0B FF FF 0A 03 00 0A 83 08 50 30 32 38 12  ...........P028.
    13E0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 45 00 12 0B  4........LNKE...
    13F0: 04 0B FF FF 01 4C 4E 4B 46 00 12 0C 04 0B FF FF  .....LNKF.......
    1400: 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKG.........L
    1410: 4E 4B 48 00 08 47 30 32 38 12 2C 04 12 09 04 0B  NKH..G028.,.....
    1420: FF FF 00 00 0A 84 12 09 04 0B FF FF 01 00 0A 85  ................
    1430: 12 0A 04 0B FF FF 0A 02 00 0A 86 12 0A 04 0B FF  ................
    1440: FF 0A 03 00 0A 87 08 50 30 32 39 12 34 04 12 0B  .......P029.4...
    1450: 04 0B FF FF 00 4C 4E 4B 41 00 12 0B 04 0B FF FF  .....LNKA.......
    1460: 01 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKB.........LN
    1470: 4B 43 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00  KC.........LNKD.
    1480: 08 47 30 32 39 12 2C 04 12 09 04 0B FF FF 00 00  .G029.,.........
    1490: 0A 88 12 09 04 0B FF FF 01 00 0A 89 12 0A 04 0B  ................
    14A0: FF FF 0A 02 00 0A 8A 12 0A 04 0B FF FF 0A 03 00  ................
    14B0: 0A 8B 08 50 30 32 41 12 34 04 12 0B 04 0B FF FF  ...P02A.4.......
    14C0: 00 4C 4E 4B 43 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKC........LNK
    14D0: 44 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 41 00 12  D.........LNKA..
    14E0: 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00 08 47 30 32  .......LNKB..G02
    14F0: 41 12 2C 04 12 09 04 0B FF FF 00 00 0A 8A 12 09  A.,.............
    1500: 04 0B FF FF 01 00 0A 8B 12 0A 04 0B FF FF 0A 02  ................
    1510: 00 0A 88 12 0A 04 0B FF FF 0A 03 00 0A 89 08 50  ...............P
    1520: 30 32 42 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  02B.4........LNK
    1530: 47 00 12 0B 04 0B FF FF 01 4C 4E 4B 48 00 12 0C  G........LNKH...
    1540: 04 0B FF FF 0A 02 4C 4E 4B 45 00 12 0C 04 0B FF  ......LNKE......
    1550: FF 0A 03 4C 4E 4B 46 00 08 47 30 32 42 12 2C 04  ...LNKF..G02B.,.
    1560: 12 09 04 0B FF FF 00 00 0A 86 12 09 04 0B FF FF  ................
    1570: 01 00 0A 87 12 0A 04 0B FF FF 0A 02 00 0A 84 12  ................
    1580: 0A 04 0B FF FF 0A 03 00 0A 85 08 50 30 32 43 12  ...........P02C.
    1590: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 43 00 12 0B  4........LNKC...
    15A0: 04 0B FF FF 01 4C 4E 4B 44 00 12 0C 04 0B FF FF  .....LNKD.......
    15B0: 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKA.........L
    15C0: 4E 4B 42 00 08 47 30 32 43 12 2C 04 12 09 04 0B  NKB..G02C.,.....
    15D0: FF FF 00 00 0A 82 12 09 04 0B FF FF 01 00 0A 83  ................
    15E0: 12 0A 04 0B FF FF 0A 02 00 0A 80 12 0A 04 0B FF  ................
    15F0: FF 0A 03 00 0A 81 08 50 30 32 44 12 34 04 12 0B  .......P02D.4...
    1600: 04 0B FF FF 00 4C 4E 4B 47 00 12 0B 04 0B FF FF  .....LNKG.......
    1610: 01 4C 4E 4B 48 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKH.........LN
    1620: 4B 45 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 46 00  KE.........LNKF.
    1630: 08 47 30 32 44 12 2C 04 12 09 04 0B FF FF 00 00  .G02D.,.........
    1640: 0A 7E 12 09 04 0B FF FF 01 00 0A 7F 12 0A 04 0B  .~..............
    1650: FF FF 0A 02 00 0A 7C 12 0A 04 0B FF FF 0A 03 00  ......|.........
    1660: 0A 7D 08 50 30 32 45 12 34 04 12 0B 04 0B FF FF  .}.P02E.4.......
    1670: 00 4C 4E 4B 43 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKC........LNK
    1680: 44 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 41 00 12  D.........LNKA..
    1690: 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00 08 47 30 32  .......LNKB..G02
    16A0: 45 12 2C 04 12 09 04 0B FF FF 00 00 0A 7A 12 09  E.,..........z..
    16B0: 04 0B FF FF 01 00 0A 7B 12 0A 04 0B FF FF 0A 02  .......{........
    16C0: 00 0A 78 12 0A 04 0B FF FF 0A 03 00 0A 79 08 50  ..x..........y.P
    16D0: 30 32 46 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  02F.4........LNK
    16E0: 42 00 12 0B 04 0B FF FF 01 4C 4E 4B 43 00 12 0C  B........LNKC...
    16F0: 04 0B FF FF 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF  ......LNKD......
    1700: FF 0A 03 4C 4E 4B 41 00 08 47 30 32 46 12 2C 04  ...LNKA..G02F.,.
    1710: 12 09 04 0B FF FF 00 00 0A 79 12 09 04 0B FF FF  .........y......
    1720: 01 00 0A 7A 12 0A 04 0B FF FF 0A 02 00 0A 7B 12  ...z..........{.
    1730: 0A 04 0B FF FF 0A 03 00 0A 78 08 50 30 33 30 12  .........x.P030.
    1740: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 46 00 12 0B  4........LNKF...
    1750: 04 0B FF FF 01 4C 4E 4B 47 00 12 0C 04 0B FF FF  .....LNKG.......
    1760: 0A 02 4C 4E 4B 48 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKH.........L
    1770: 4E 4B 45 00 08 47 30 33 30 12 2C 04 12 09 04 0B  NKE..G030.,.....
    1780: FF FF 00 00 0A 7D 12 09 04 0B FF FF 01 00 0A 7E  .....}.........~
    1790: 12 0A 04 0B FF FF 0A 02 00 0A 7F 12 0A 04 0B FF  ................
    17A0: FF 0A 03 00 0A 7C 08 50 30 33 31 12 34 04 12 0B  .....|.P031.4...
    17B0: 04 0B FF FF 00 4C 4E 4B 42 00 12 0B 04 0B FF FF  .....LNKB.......
    17C0: 01 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKC.........LN
    17D0: 4B 44 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00  KD.........LNKA.
    17E0: 08 47 30 33 31 12 2C 04 12 09 04 0B FF FF 00 00  .G031.,.........
    17F0: 0A 81 12 09 04 0B FF FF 01 00 0A 82 12 0A 04 0B  ................
    1800: FF FF 0A 02 00 0A 83 12 0A 04 0B FF FF 0A 03 00  ................
    1810: 0A 80 08 50 30 33 32 12 34 04 12 0B 04 0B FF FF  ...P032.4.......
    1820: 00 4C 4E 4B 46 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKF........LNK
    1830: 47 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 48 00 12  G.........LNKH..
    1840: 0C 04 0B FF FF 0A 03 4C 4E 4B 45 00 08 47 30 33  .......LNKE..G03
    1850: 32 12 2C 04 12 09 04 0B FF FF 00 00 0A 85 12 09  2.,.............
    1860: 04 0B FF FF 01 00 0A 86 12 0A 04 0B FF FF 0A 02  ................
    1870: 00 0A 87 12 0A 04 0B FF FF 0A 03 00 0A 84 08 50  ...............P
    1880: 30 33 33 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  033.4........LNK
    1890: 42 00 12 0B 04 0B FF FF 01 4C 4E 4B 43 00 12 0C  B........LNKC...
    18A0: 04 0B FF FF 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF  ......LNKD......
    18B0: FF 0A 03 4C 4E 4B 41 00 08 47 30 33 33 12 2C 04  ...LNKA..G033.,.
    18C0: 12 09 04 0B FF FF 00 00 0A 89 12 09 04 0B FF FF  ................
    18D0: 01 00 0A 8A 12 0A 04 0B FF FF 0A 02 00 0A 8B 12  ................
    18E0: 0A 04 0B FF FF 0A 03 00 0A 88 08 50 30 33 34 12  ...........P034.
    18F0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 44 00 12 0B  4........LNKD...
    1900: 04 0B FF FF 01 4C 4E 4B 41 00 12 0C 04 0B FF FF  .....LNKA.......
    1910: 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKB.........L
    1920: 4E 4B 43 00 08 47 30 33 34 12 2C 04 12 09 04 0B  NKC..G034.,.....
    1930: FF FF 00 00 0A 8B 12 09 04 0B FF FF 01 00 0A 88  ................
    1940: 12 0A 04 0B FF FF 0A 02 00 0A 89 12 0A 04 0B FF  ................
    1950: FF 0A 03 00 0A 8A 08 50 30 33 35 12 34 04 12 0B  .......P035.4...
    1960: 04 0B FF FF 00 4C 4E 4B 48 00 12 0B 04 0B FF FF  .....LNKH.......
    1970: 01 4C 4E 4B 45 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKE.........LN
    1980: 4B 46 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 47 00  KF.........LNKG.
    1990: 08 47 30 33 35 12 2C 04 12 09 04 0B FF FF 00 00  .G035.,.........
    19A0: 0A 87 12 09 04 0B FF FF 01 00 0A 84 12 0A 04 0B  ................
    19B0: FF FF 0A 02 00 0A 85 12 0A 04 0B FF FF 0A 03 00  ................
    19C0: 0A 86 08 50 30 33 36 12 34 04 12 0B 04 0B FF FF  ...P036.4.......
    19D0: 00 4C 4E 4B 44 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKD........LNK
    19E0: 41 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 42 00 12  A.........LNKB..
    19F0: 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00 08 47 30 33  .......LNKC..G03
    1A00: 36 12 2C 04 12 09 04 0B FF FF 00 00 0A 83 12 09  6.,.............
    1A10: 04 0B FF FF 01 00 0A 80 12 0A 04 0B FF FF 0A 02  ................
    1A20: 00 0A 81 12 0A 04 0B FF FF 0A 03 00 0A 82 08 50  ...............P
    1A30: 30 33 37 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  037.4........LNK
    1A40: 48 00 12 0B 04 0B FF FF 01 4C 4E 4B 45 00 12 0C  H........LNKE...
    1A50: 04 0B FF FF 0A 02 4C 4E 4B 46 00 12 0C 04 0B FF  ......LNKF......
    1A60: FF 0A 03 4C 4E 4B 47 00 08 47 30 33 37 12 2C 04  ...LNKG..G037.,.
    1A70: 12 09 04 0B FF FF 00 00 0A 7F 12 09 04 0B FF FF  ................
    1A80: 01 00 0A 7C 12 0A 04 0B FF FF 0A 02 00 0A 7D 12  ...|..........}.
    1A90: 0A 04 0B FF FF 0A 03 00 0A 7E 08 50 30 33 38 12  .........~.P038.
    1AA0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 44 00 12 0B  4........LNKD...
    1AB0: 04 0B FF FF 01 4C 4E 4B 41 00 12 0C 04 0B FF FF  .....LNKA.......
    1AC0: 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKB.........L
    1AD0: 4E 4B 43 00 08 47 30 33 38 12 2C 04 12 09 04 0B  NKC..G038.,.....
    1AE0: FF FF 00 00 0A 7B 12 09 04 0B FF FF 01 00 0A 78  .....{.........x
    1AF0: 12 0A 04 0B FF FF 0A 02 00 0A 79 12 0A 04 0B FF  ..........y.....
    1B00: FF 0A 03 00 0A 7A 08 50 30 33 39 12 34 04 12 0B  .....z.P039.4...
    1B10: 04 0B FF FF 00 4C 4E 4B 41 00 12 0B 04 0B FF FF  .....LNKA.......
    1B20: 01 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKB.........LN
    1B30: 4B 43 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00  KC.........LNKD.
    1B40: 08 47 30 33 39 12 2C 04 12 09 04 0B FF FF 00 00  .G039.,.........
    1B50: 0A 78 12 09 04 0B FF FF 01 00 0A 79 12 0A 04 0B  .x.........y....
    1B60: FF FF 0A 02 00 0A 7A 12 0A 04 0B FF FF 0A 03 00  ......z.........
    1B70: 0A 7B 08 50 30 33 41 12 34 04 12 0B 04 0B FF FF  .{.P03A.4.......
    1B80: 00 4C 4E 4B 45 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKE........LNK
    1B90: 46 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 47 00 12  F.........LNKG..
    1BA0: 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00 08 47 30 33  .......LNKH..G03
    1BB0: 41 12 2C 04 12 09 04 0B FF FF 00 00 0A 7C 12 09  A.,..........|..
    1BC0: 04 0B FF FF 01 00 0A 7D 12 0A 04 0B FF FF 0A 02  .......}........
    1BD0: 00 0A 7E 12 0A 04 0B FF FF 0A 03 00 0A 7F 08 50  ..~............P
    1BE0: 30 33 42 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  03B.4........LNK
    1BF0: 41 00 12 0B 04 0B FF FF 01 4C 4E 4B 42 00 12 0C  A........LNKB...
    1C00: 04 0B FF FF 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF  ......LNKC......
    1C10: FF 0A 03 4C 4E 4B 44 00 08 47 30 33 42 12 2C 04  ...LNKD..G03B.,.
    1C20: 12 09 04 0B FF FF 00 00 0A 80 12 09 04 0B FF FF  ................
    1C30: 01 00 0A 81 12 0A 04 0B FF FF 0A 02 00 0A 82 12  ................
    1C40: 0A 04 0B FF FF 0A 03 00 0A 83 08 50 30 34 34 12  ...........P044.
    1C50: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 45 00 12 0B  4........LNKE...
    1C60: 04 0B FF FF 01 4C 4E 4B 46 00 12 0C 04 0B FF FF  .....LNKF.......
    1C70: 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKG.........L
    1C80: 4E 4B 48 00 08 47 30 34 34 12 2C 04 12 09 04 0B  NKH..G044.,.....
    1C90: FF FF 00 00 0A 84 12 09 04 0B FF FF 01 00 0A 85  ................
    1CA0: 12 0A 04 0B FF FF 0A 02 00 0A 86 12 0A 04 0B FF  ................
    1CB0: FF 0A 03 00 0A 87 08 50 44 30 32 12 41 11 13 12  .......PD02.A...
    1CC0: 0B 04 0B FF FF 00 4C 4E 4B 42 00 12 0D 04 0C FF  ......LNKB......
    1CD0: FF 01 00 00 4C 4E 4B 41 00 12 0D 04 0C FF FF 01  ....LNKA........
    1CE0: 00 01 4C 4E 4B 41 00 12 0E 04 0C FF FF 01 00 0A  ..LNKA..........
    1CF0: 02 4C 4E 4B 41 00 12 0E 04 0C FF FF 01 00 0A 03  .LNKA...........
    1D00: 4C 4E 4B 41 00 12 0D 04 0C FF FF 02 00 00 4C 4E  LNKA..........LN
    1D10: 4B 41 00 12 0D 04 0C FF FF 02 00 01 4C 4E 4B 41  KA..........LNKA
    1D20: 00 12 0D 04 0C FF FF 03 00 00 4C 4E 4B 42 00 12  ..........LNKB..
    1D30: 0D 04 0C FF FF 03 00 01 4C 4E 4B 42 00 12 0E 04  ........LNKB....
    1D40: 0C FF FF 03 00 0A 02 4C 4E 4B 42 00 12 0E 04 0C  .......LNKB.....
    1D50: FF FF 03 00 0A 03 4C 4E 4B 42 00 12 0D 04 0C FF  ......LNKB......
    1D60: FF 04 00 00 4C 4E 4B 42 00 12 0D 04 0C FF FF 04  ....LNKB........
    1D70: 00 01 4C 4E 4B 42 00 12 0D 04 0C FF FF 05 00 00  ..LNKB..........
    1D80: 4C 4E 4B 43 00 12 0D 04 0C FF FF 05 00 01 4C 4E  LNKC..........LN
    1D90: 4B 43 00 12 0E 04 0C FF FF 05 00 0A 02 4C 4E 4B  KC...........LNK
    1DA0: 43 00 12 0E 04 0C FF FF 05 00 0A 03 4C 4E 4B 43  C...........LNKC
    1DB0: 00 12 0D 04 0C FF FF 07 00 00 4C 4E 4B 44 00 12  ..........LNKD..
    1DC0: 0D 04 0C FF FF 07 00 01 4C 4E 4B 44 00 08 41 52  ........LNKD..AR
    1DD0: 30 32 12 4B 0E 13 12 09 04 0B FF FF 00 00 0A 59  02.K...........Y
    1DE0: 12 0B 04 0C FF FF 01 00 00 00 0A 58 12 0B 04 0C  ...........X....
    1DF0: FF FF 01 00 01 00 0A 58 12 0C 04 0C FF FF 01 00  .......X........
    1E00: 0A 02 00 0A 58 12 0C 04 0C FF FF 01 00 0A 03 00  ....X...........
    1E10: 0A 58 12 0B 04 0C FF FF 02 00 00 00 0A 58 12 0B  .X...........X..
    1E20: 04 0C FF FF 02 00 01 00 0A 58 12 0B 04 0C FF FF  .........X......
    1E30: 03 00 00 00 0A 59 12 0B 04 0C FF FF 03 00 01 00  .....Y..........
    1E40: 0A 59 12 0C 04 0C FF FF 03 00 0A 02 00 0A 59 12  .Y............Y.
    1E50: 0C 04 0C FF FF 03 00 0A 03 00 0A 59 12 0B 04 0C  ...........Y....
    1E60: FF FF 04 00 00 00 0A 59 12 0B 04 0C FF FF 04 00  .......Y........
    1E70: 01 00 0A 59 12 0B 04 0C FF FF 05 00 00 00 0A 5A  ...Y...........Z
    1E80: 12 0B 04 0C FF FF 05 00 01 00 0A 5A 12 0C 04 0C  ...........Z....
    1E90: FF FF 05 00 0A 02 00 0A 5A 12 0C 04 0C FF FF 05  ........Z.......
    1EA0: 00 0A 03 00 0A 5A 12 0B 04 0C FF FF 07 00 00 00  .....Z..........
    1EB0: 0A 5B 12 0B 04 0C FF FF 07 00 01 00 0A 5B 08 50  .[...........[.P
    1EC0: 30 34 41 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  04A.4........LNK
    1ED0: 41 00 12 0B 04 0B FF FF 01 4C 4E 4B 42 00 12 0C  A........LNKB...
    1EE0: 04 0B FF FF 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF  ......LNKC......
    1EF0: FF 0A 03 4C 4E 4B 44 00 08 47 30 34 41 12 2C 04  ...LNKD..G04A.,.
    1F00: 12 09 04 0B FF FF 00 00 0A 58 12 09 04 0B FF FF  .........X......
    1F10: 01 00 0A 59 12 0A 04 0B FF FF 0A 02 00 0A 5A 12  ...Y..........Z.
    1F20: 0A 04 0B FF FF 0A 03 00 0A 5B 08 50 30 34 42 12  .........[.P04B.
    1F30: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 45 00 12 0B  4........LNKE...
    1F40: 04 0B FF FF 01 4C 4E 4B 46 00 12 0C 04 0B FF FF  .....LNKF.......
    1F50: 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKG.........L
    1F60: 4E 4B 48 00 08 47 30 34 42 12 2C 04 12 09 04 0B  NKH..G04B.,.....
    1F70: FF FF 00 00 0A 5C 12 09 04 0B FF FF 01 00 0A 5D  .....\.........]
    1F80: 12 0A 04 0B FF FF 0A 02 00 0A 5E 12 0A 04 0B FF  ..........^.....
    1F90: FF 0A 03 00 0A 5F 08 50 30 34 43 12 34 04 12 0B  ....._.P04C.4...
    1FA0: 04 0B FF FF 00 4C 4E 4B 41 00 12 0B 04 0B FF FF  .....LNKA.......
    1FB0: 01 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKB.........LN
    1FC0: 4B 43 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00  KC.........LNKD.
    1FD0: 08 47 30 34 43 12 2C 04 12 09 04 0B FF FF 00 00  .G04C.,.........
    1FE0: 0A 60 12 09 04 0B FF FF 01 00 0A 61 12 0A 04 0B  .`.........a....
    1FF0: FF FF 0A 02 00 0A 62 12 0A 04 0B FF FF 0A 03 00  ......b.........
    2000: 0A 63 08 50 30 34 44 12 34 04 12 0B 04 0B FF FF  .c.P04D.4.......
    2010: 00 4C 4E 4B 45 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKE........LNK
    2020: 46 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 47 00 12  F.........LNKG..
    2030: 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00 08 47 30 34  .......LNKH..G04
    2040: 44 12 2C 04 12 09 04 0B FF FF 00 00 0A 64 12 09  D.,..........d..
    2050: 04 0B FF FF 01 00 0A 65 12 0A 04 0B FF FF 0A 02  .......e........
    2060: 00 0A 66 12 0A 04 0B FF FF 0A 03 00 0A 67 08 50  ..f..........g.P
    2070: 30 34 45 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  04E.4........LNK
    2080: 41 00 12 0B 04 0B FF FF 01 4C 4E 4B 42 00 12 0C  A........LNKB...
    2090: 04 0B FF FF 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF  ......LNKC......
    20A0: FF 0A 03 4C 4E 4B 44 00 08 47 30 34 45 12 2C 04  ...LNKD..G04E.,.
    20B0: 12 09 04 0B FF FF 00 00 0A 68 12 09 04 0B FF FF  .........h......
    20C0: 01 00 0A 69 12 0A 04 0B FF FF 0A 02 00 0A 6A 12  ...i..........j.
    20D0: 0A 04 0B FF FF 0A 03 00 0A 6B 08 50 30 34 46 12  .........k.P04F.
    20E0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 43 00 12 0B  4........LNKC...
    20F0: 04 0B FF FF 01 4C 4E 4B 44 00 12 0C 04 0B FF FF  .....LNKD.......
    2100: 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKA.........L
    2110: 4E 4B 42 00 08 47 30 34 46 12 2C 04 12 09 04 0B  NKB..G04F.,.....
    2120: FF FF 00 00 0A 6A 12 09 04 0B FF FF 01 00 0A 6B  .....j.........k
    2130: 12 0A 04 0B FF FF 0A 02 00 0A 68 12 0A 04 0B FF  ..........h.....
    2140: FF 0A 03 00 0A 69 08 50 30 35 30 12 34 04 12 0B  .....i.P050.4...
    2150: 04 0B FF FF 00 4C 4E 4B 47 00 12 0B 04 0B FF FF  .....LNKG.......
    2160: 01 4C 4E 4B 48 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKH.........LN
    2170: 4B 45 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 46 00  KE.........LNKF.
    2180: 08 47 30 35 30 12 2C 04 12 09 04 0B FF FF 00 00  .G050.,.........
    2190: 0A 66 12 09 04 0B FF FF 01 00 0A 67 12 0A 04 0B  .f.........g....
    21A0: FF FF 0A 02 00 0A 64 12 0A 04 0B FF FF 0A 03 00  ......d.........
    21B0: 0A 65 08 50 30 35 31 12 34 04 12 0B 04 0B FF FF  .e.P051.4.......
    21C0: 00 4C 4E 4B 43 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKC........LNK
    21D0: 44 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 41 00 12  D.........LNKA..
    21E0: 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00 08 47 30 35  .......LNKB..G05
    21F0: 31 12 2C 04 12 09 04 0B FF FF 00 00 0A 62 12 09  1.,..........b..
    2200: 04 0B FF FF 01 00 0A 63 12 0A 04 0B FF FF 0A 02  .......c........
    2210: 00 0A 60 12 0A 04 0B FF FF 0A 03 00 0A 61 08 50  ..`..........a.P
    2220: 30 35 32 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  052.4........LNK
    2230: 47 00 12 0B 04 0B FF FF 01 4C 4E 4B 48 00 12 0C  G........LNKH...
    2240: 04 0B FF FF 0A 02 4C 4E 4B 45 00 12 0C 04 0B FF  ......LNKE......
    2250: FF 0A 03 4C 4E 4B 46 00 08 47 30 35 32 12 2C 04  ...LNKF..G052.,.
    2260: 12 09 04 0B FF FF 00 00 0A 5E 12 09 04 0B FF FF  .........^......
    2270: 01 00 0A 5F 12 0A 04 0B FF FF 0A 02 00 0A 5C 12  ..._..........\.
    2280: 0A 04 0B FF FF 0A 03 00 0A 5D 08 50 30 35 33 12  .........].P053.
    2290: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 43 00 12 0B  4........LNKC...
    22A0: 04 0B FF FF 01 4C 4E 4B 44 00 12 0C 04 0B FF FF  .....LNKD.......
    22B0: 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKA.........L
    22C0: 4E 4B 42 00 08 47 30 35 33 12 2C 04 12 09 04 0B  NKB..G053.,.....
    22D0: FF FF 00 00 0A 5A 12 09 04 0B FF FF 01 00 0A 5B  .....Z.........[
    22E0: 12 0A 04 0B FF FF 0A 02 00 0A 58 12 0A 04 0B FF  ..........X.....
    22F0: FF 0A 03 00 0A 59 08 50 30 35 34 12 34 04 12 0B  .....Y.P054.4...
    2300: 04 0B FF FF 00 4C 4E 4B 42 00 12 0B 04 0B FF FF  .....LNKB.......
    2310: 01 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKC.........LN
    2320: 4B 44 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00  KD.........LNKA.
    2330: 08 47 30 35 34 12 2C 04 12 09 04 0B FF FF 00 00  .G054.,.........
    2340: 0A 59 12 09 04 0B FF FF 01 00 0A 5A 12 0A 04 0B  .Y.........Z....
    2350: FF FF 0A 02 00 0A 5B 12 0A 04 0B FF FF 0A 03 00  ......[.........
    2360: 0A 58 08 50 30 35 35 12 34 04 12 0B 04 0B FF FF  .X.P055.4.......
    2370: 00 4C 4E 4B 46 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKF........LNK
    2380: 47 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 48 00 12  G.........LNKH..
    2390: 0C 04 0B FF FF 0A 03 4C 4E 4B 45 00 08 47 30 35  .......LNKE..G05
    23A0: 35 12 2C 04 12 09 04 0B FF FF 00 00 0A 5D 12 09  5.,..........]..
    23B0: 04 0B FF FF 01 00 0A 5E 12 0A 04 0B FF FF 0A 02  .......^........
    23C0: 00 0A 5F 12 0A 04 0B FF FF 0A 03 00 0A 5C 08 50  .._..........\.P
    23D0: 30 35 36 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  056.4........LNK
    23E0: 42 00 12 0B 04 0B FF FF 01 4C 4E 4B 43 00 12 0C  B........LNKC...
    23F0: 04 0B FF FF 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF  ......LNKD......
    2400: FF 0A 03 4C 4E 4B 41 00 08 47 30 35 36 12 2C 04  ...LNKA..G056.,.
    2410: 12 09 04 0B FF FF 00 00 0A 61 12 09 04 0B FF FF  .........a......
    2420: 01 00 0A 62 12 0A 04 0B FF FF 0A 02 00 0A 63 12  ...b..........c.
    2430: 0A 04 0B FF FF 0A 03 00 0A 60 08 50 30 35 37 12  .........`.P057.
    2440: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 46 00 12 0B  4........LNKF...
    2450: 04 0B FF FF 01 4C 4E 4B 47 00 12 0C 04 0B FF FF  .....LNKG.......
    2460: 0A 02 4C 4E 4B 48 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKH.........L
    2470: 4E 4B 45 00 08 47 30 35 37 12 2C 04 12 09 04 0B  NKE..G057.,.....
    2480: FF FF 00 00 0A 65 12 09 04 0B FF FF 01 00 0A 66  .....e.........f
    2490: 12 0A 04 0B FF FF 0A 02 00 0A 67 12 0A 04 0B FF  ..........g.....
    24A0: FF 0A 03 00 0A 64 08 50 30 35 38 12 34 04 12 0B  .....d.P058.4...
    24B0: 04 0B FF FF 00 4C 4E 4B 42 00 12 0B 04 0B FF FF  .....LNKB.......
    24C0: 01 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKC.........LN
    24D0: 4B 44 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00  KD.........LNKA.
    24E0: 08 47 30 35 38 12 2C 04 12 09 04 0B FF FF 00 00  .G058.,.........
    24F0: 0A 69 12 09 04 0B FF FF 01 00 0A 6A 12 0A 04 0B  .i.........j....
    2500: FF FF 0A 02 00 0A 6B 12 0A 04 0B FF FF 0A 03 00  ......k.........
    2510: 0A 68 08 50 30 35 39 12 34 04 12 0B 04 0B FF FF  .h.P059.4.......
    2520: 00 4C 4E 4B 44 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKD........LNK
    2530: 41 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 42 00 12  A.........LNKB..
    2540: 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00 08 47 30 35  .......LNKC..G05
    2550: 39 12 2C 04 12 09 04 0B FF FF 00 00 0A 6B 12 09  9.,..........k..
    2560: 04 0B FF FF 01 00 0A 68 12 0A 04 0B FF FF 0A 02  .......h........
    2570: 00 0A 69 12 0A 04 0B FF FF 0A 03 00 0A 6A 08 50  ..i..........j.P
    2580: 30 35 41 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  05A.4........LNK
    2590: 48 00 12 0B 04 0B FF FF 01 4C 4E 4B 45 00 12 0C  H........LNKE...
    25A0: 04 0B FF FF 0A 02 4C 4E 4B 46 00 12 0C 04 0B FF  ......LNKF......
    25B0: FF 0A 03 4C 4E 4B 47 00 08 47 30 35 41 12 2C 04  ...LNKG..G05A.,.
    25C0: 12 09 04 0B FF FF 00 00 0A 67 12 09 04 0B FF FF  .........g......
    25D0: 01 00 0A 64 12 0A 04 0B FF FF 0A 02 00 0A 65 12  ...d..........e.
    25E0: 0A 04 0B FF FF 0A 03 00 0A 66 08 50 30 35 42 12  .........f.P05B.
    25F0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 44 00 12 0B  4........LNKD...
    2600: 04 0B FF FF 01 4C 4E 4B 41 00 12 0C 04 0B FF FF  .....LNKA.......
    2610: 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKB.........L
    2620: 4E 4B 43 00 08 47 30 35 42 12 2C 04 12 09 04 0B  NKC..G05B.,.....
    2630: FF FF 00 00 0A 63 12 09 04 0B FF FF 01 00 0A 60  .....c.........`
    2640: 12 0A 04 0B FF FF 0A 02 00 0A 61 12 0A 04 0B FF  ..........a.....
    2650: FF 0A 03 00 0A 62 08 50 30 35 43 12 34 04 12 0B  .....b.P05C.4...
    2660: 04 0B FF FF 00 4C 4E 4B 48 00 12 0B 04 0B FF FF  .....LNKH.......
    2670: 01 4C 4E 4B 45 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKE.........LN
    2680: 4B 46 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 47 00  KF.........LNKG.
    2690: 08 47 30 35 43 12 2C 04 12 09 04 0B FF FF 00 00  .G05C.,.........
    26A0: 0A 5F 12 09 04 0B FF FF 01 00 0A 5C 12 0A 04 0B  ._.........\....
    26B0: FF FF 0A 02 00 0A 5D 12 0A 04 0B FF FF 0A 03 00  ......].........
    26C0: 0A 5E 08 50 30 35 44 12 34 04 12 0B 04 0B FF FF  .^.P05D.4.......
    26D0: 00 4C 4E 4B 44 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKD........LNK
    26E0: 41 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 42 00 12  A.........LNKB..
    26F0: 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00 08 47 30 35  .......LNKC..G05
    2700: 44 12 2C 04 12 09 04 0B FF FF 00 00 0A 5B 12 09  D.,..........[..
    2710: 04 0B FF FF 01 00 0A 58 12 0A 04 0B FF FF 0A 02  .......X........
    2720: 00 0A 59 12 0A 04 0B FF FF 0A 03 00 0A 5A 08 50  ..Y..........Z.P
    2730: 30 35 45 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  05E.4........LNK
    2740: 41 00 12 0B 04 0B FF FF 01 4C 4E 4B 42 00 12 0C  A........LNKB...
    2750: 04 0B FF FF 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF  ......LNKC......
    2760: FF 0A 03 4C 4E 4B 44 00 08 47 30 35 45 12 2C 04  ...LNKD..G05E.,.
    2770: 12 09 04 0B FF FF 00 00 0A 58 12 09 04 0B FF FF  .........X......
    2780: 01 00 0A 59 12 0A 04 0B FF FF 0A 02 00 0A 5A 12  ...Y..........Z.
    2790: 0A 04 0B FF FF 0A 03 00 0A 5B 08 50 30 35 46 12  .........[.P05F.
    27A0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 45 00 12 0B  4........LNKE...
    27B0: 04 0B FF FF 01 4C 4E 4B 46 00 12 0C 04 0B FF FF  .....LNKF.......
    27C0: 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKG.........L
    27D0: 4E 4B 48 00 08 47 30 35 46 12 2C 04 12 09 04 0B  NKH..G05F.,.....
    27E0: FF FF 00 00 0A 5C 12 09 04 0B FF FF 01 00 0A 5D  .....\.........]
    27F0: 12 0A 04 0B FF FF 0A 02 00 0A 5E 12 0A 04 0B FF  ..........^.....
    2800: FF 0A 03 00 0A 5F 08 50 30 36 30 12 34 04 12 0B  ....._.P060.4...
    2810: 04 0B FF FF 00 4C 4E 4B 41 00 12 0B 04 0B FF FF  .....LNKA.......
    2820: 01 4C 4E 4B 42 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKB.........LN
    2830: 4B 43 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00  KC.........LNKD.
    2840: 08 47 30 36 30 12 2C 04 12 09 04 0B FF FF 00 00  .G060.,.........
    2850: 0A 60 12 09 04 0B FF FF 01 00 0A 61 12 0A 04 0B  .`.........a....
    2860: FF FF 0A 02 00 0A 62 12 0A 04 0B FF FF 0A 03 00  ......b.........
    2870: 0A 63 08 50 44 30 30 12 41 11 13 12 0B 04 0B FF  .c.PD00.A.......
    2880: FF 00 4C 4E 4B 42 00 12 0D 04 0C FF FF 01 00 00  ..LNKB..........
    2890: 4C 4E 4B 41 00 12 0D 04 0C FF FF 01 00 01 4C 4E  LNKA..........LN
    28A0: 4B 41 00 12 0E 04 0C FF FF 01 00 0A 02 4C 4E 4B  KA...........LNK
    28B0: 41 00 12 0E 04 0C FF FF 01 00 0A 03 4C 4E 4B 41  A...........LNKA
    28C0: 00 12 0D 04 0C FF FF 02 00 00 4C 4E 4B 41 00 12  ..........LNKA..
    28D0: 0D 04 0C FF FF 02 00 01 4C 4E 4B 41 00 12 0D 04  ........LNKA....
    28E0: 0C FF FF 03 00 00 4C 4E 4B 42 00 12 0D 04 0C FF  ......LNKB......
    28F0: FF 03 00 01 4C 4E 4B 42 00 12 0E 04 0C FF FF 03  ....LNKB........
    2900: 00 0A 02 4C 4E 4B 42 00 12 0E 04 0C FF FF 03 00  ...LNKB.........
    2910: 0A 03 4C 4E 4B 42 00 12 0D 04 0C FF FF 04 00 00  ..LNKB..........
    2920: 4C 4E 4B 42 00 12 0D 04 0C FF FF 04 00 01 4C 4E  LNKB..........LN
    2930: 4B 42 00 12 0D 04 0C FF FF 05 00 00 4C 4E 4B 43  KB..........LNKC
    2940: 00 12 0D 04 0C FF FF 05 00 01 4C 4E 4B 43 00 12  ..........LNKC..
    2950: 0E 04 0C FF FF 05 00 0A 02 4C 4E 4B 43 00 12 0E  .........LNKC...
    2960: 04 0C FF FF 05 00 0A 03 4C 4E 4B 43 00 12 0D 04  ........LNKC....
    2970: 0C FF FF 07 00 00 4C 4E 4B 44 00 12 0D 04 0C FF  ......LNKD......
    2980: FF 07 00 01 4C 4E 4B 44 00 08 41 52 30 30 12 4B  ....LNKD..AR00.K
    2990: 0E 13 12 09 04 0B FF FF 00 00 0A 19 12 0B 04 0C  ................
    29A0: FF FF 01 00 00 00 0A 18 12 0B 04 0C FF FF 01 00  ................
    29B0: 01 00 0A 18 12 0C 04 0C FF FF 01 00 0A 02 00 0A  ................
    29C0: 18 12 0C 04 0C FF FF 01 00 0A 03 00 0A 18 12 0B  ................
    29D0: 04 0C FF FF 02 00 00 00 0A 18 12 0B 04 0C FF FF  ................
    29E0: 02 00 01 00 0A 18 12 0B 04 0C FF FF 03 00 00 00  ................
    29F0: 0A 19 12 0B 04 0C FF FF 03 00 01 00 0A 19 12 0C  ................
    2A00: 04 0C FF FF 03 00 0A 02 00 0A 19 12 0C 04 0C FF  ................
    2A10: FF 03 00 0A 03 00 0A 19 12 0B 04 0C FF FF 04 00  ................
    2A20: 00 00 0A 19 12 0B 04 0C FF FF 04 00 01 00 0A 19  ................
    2A30: 12 0B 04 0C FF FF 05 00 00 00 0A 1A 12 0B 04 0C  ................
    2A40: FF FF 05 00 01 00 0A 1A 12 0C 04 0C FF FF 05 00  ................
    2A50: 0A 02 00 0A 1A 12 0C 04 0C FF FF 05 00 0A 03 00  ................
    2A60: 0A 1A 12 0B 04 0C FF FF 07 00 00 00 0A 1B 12 0B  ................
    2A70: 04 0C FF FF 07 00 01 00 0A 1B 08 50 30 36 39 12  ...........P069.
    2A80: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 12 0B  4........LNKA...
    2A90: 04 0B FF FF 01 4C 4E 4B 42 00 12 0C 04 0B FF FF  .....LNKB.......
    2AA0: 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKC.........L
    2AB0: 4E 4B 44 00 08 47 30 36 39 12 2C 04 12 09 04 0B  NKD..G069.,.....
    2AC0: FF FF 00 00 0A 18 12 09 04 0B FF FF 01 00 0A 19  ................
    2AD0: 12 0A 04 0B FF FF 0A 02 00 0A 1A 12 0A 04 0B FF  ................
    2AE0: FF 0A 03 00 0A 1B 08 50 30 36 41 12 34 04 12 0B  .......P06A.4...
    2AF0: 04 0B FF FF 00 4C 4E 4B 45 00 12 0B 04 0B FF FF  .....LNKE.......
    2B00: 01 4C 4E 4B 46 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKF.........LN
    2B10: 4B 47 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00  KG.........LNKH.
    2B20: 08 47 30 36 41 12 2C 04 12 09 04 0B FF FF 00 00  .G06A.,.........
    2B30: 0A 1C 12 09 04 0B FF FF 01 00 0A 1D 12 0A 04 0B  ................
    2B40: FF FF 0A 02 00 0A 1E 12 0A 04 0B FF FF 0A 03 00  ................
    2B50: 0A 1F 08 50 30 36 42 12 34 04 12 0B 04 0B FF FF  ...P06B.4.......
    2B60: 00 4C 4E 4B 41 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKA........LNK
    2B70: 42 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 43 00 12  B.........LNKC..
    2B80: 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00 08 47 30 36  .......LNKD..G06
    2B90: 42 12 2C 04 12 09 04 0B FF FF 00 00 0A 20 12 09  B.,.......... ..
    2BA0: 04 0B FF FF 01 00 0A 21 12 0A 04 0B FF FF 0A 02  .......!........
    2BB0: 00 0A 22 12 0A 04 0B FF FF 0A 03 00 0A 23 08 50  .."..........#.P
    2BC0: 30 36 43 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  06C.4........LNK
    2BD0: 45 00 12 0B 04 0B FF FF 01 4C 4E 4B 46 00 12 0C  E........LNKF...
    2BE0: 04 0B FF FF 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF  ......LNKG......
    2BF0: FF 0A 03 4C 4E 4B 48 00 08 47 30 36 43 12 2C 04  ...LNKH..G06C.,.
    2C00: 12 09 04 0B FF FF 00 00 0A 24 12 09 04 0B FF FF  .........$......
    2C10: 01 00 0A 25 12 0A 04 0B FF FF 0A 02 00 0A 26 12  ...%..........&.
    2C20: 0A 04 0B FF FF 0A 03 00 0A 27 08 50 30 36 44 12  .........'.P06D.
    2C30: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 12 0B  4........LNKA...
    2C40: 04 0B FF FF 01 4C 4E 4B 42 00 12 0C 04 0B FF FF  .....LNKB.......
    2C50: 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKC.........L
    2C60: 4E 4B 44 00 08 47 30 36 44 12 2C 04 12 09 04 0B  NKD..G06D.,.....
    2C70: FF FF 00 00 0A 28 12 09 04 0B FF FF 01 00 0A 29  .....(.........)
    2C80: 12 0A 04 0B FF FF 0A 02 00 0A 2A 12 0A 04 0B FF  ..........*.....
    2C90: FF 0A 03 00 0A 2B 08 50 30 36 45 12 34 04 12 0B  .....+.P06E.4...
    2CA0: 04 0B FF FF 00 4C 4E 4B 43 00 12 0B 04 0B FF FF  .....LNKC.......
    2CB0: 01 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKD.........LN
    2CC0: 4B 41 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00  KA.........LNKB.
    2CD0: 08 47 30 36 45 12 2C 04 12 09 04 0B FF FF 00 00  .G06E.,.........
    2CE0: 0A 2A 12 09 04 0B FF FF 01 00 0A 2B 12 0A 04 0B  .*.........+....
    2CF0: FF FF 0A 02 00 0A 28 12 0A 04 0B FF FF 0A 03 00  ......(.........
    2D00: 0A 29 08 50 30 36 46 12 34 04 12 0B 04 0B FF FF  .).P06F.4.......
    2D10: 00 4C 4E 4B 47 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKG........LNK
    2D20: 48 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 45 00 12  H.........LNKE..
    2D30: 0C 04 0B FF FF 0A 03 4C 4E 4B 46 00 08 47 30 36  .......LNKF..G06
    2D40: 46 12 2C 04 12 09 04 0B FF FF 00 00 0A 26 12 09  F.,..........&..
    2D50: 04 0B FF FF 01 00 0A 27 12 0A 04 0B FF FF 0A 02  .......'........
    2D60: 00 0A 24 12 0A 04 0B FF FF 0A 03 00 0A 25 08 50  ..$..........%.P
    2D70: 30 37 30 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  070.4........LNK
    2D80: 43 00 12 0B 04 0B FF FF 01 4C 4E 4B 44 00 12 0C  C........LNKD...
    2D90: 04 0B FF FF 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF  ......LNKA......
    2DA0: FF 0A 03 4C 4E 4B 42 00 08 47 30 37 30 12 2C 04  ...LNKB..G070.,.
    2DB0: 12 09 04 0B FF FF 00 00 0A 22 12 09 04 0B FF FF  ........."......
    2DC0: 01 00 0A 23 12 0A 04 0B FF FF 0A 02 00 0A 20 12  ...#.......... .
    2DD0: 0A 04 0B FF FF 0A 03 00 0A 21 08 50 30 37 31 12  .........!.P071.
    2DE0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 47 00 12 0B  4........LNKG...
    2DF0: 04 0B FF FF 01 4C 4E 4B 48 00 12 0C 04 0B FF FF  .....LNKH.......
    2E00: 0A 02 4C 4E 4B 45 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKE.........L
    2E10: 4E 4B 46 00 08 47 30 37 31 12 2C 04 12 09 04 0B  NKF..G071.,.....
    2E20: FF FF 00 00 0A 1E 12 09 04 0B FF FF 01 00 0A 1F  ................
    2E30: 12 0A 04 0B FF FF 0A 02 00 0A 1C 12 0A 04 0B FF  ................
    2E40: FF 0A 03 00 0A 1D 08 50 30 37 32 12 34 04 12 0B  .......P072.4...
    2E50: 04 0B FF FF 00 4C 4E 4B 43 00 12 0B 04 0B FF FF  .....LNKC.......
    2E60: 01 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKD.........LN
    2E70: 4B 41 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00  KA.........LNKB.
    2E80: 08 47 30 37 32 12 2C 04 12 09 04 0B FF FF 00 00  .G072.,.........
    2E90: 0A 1A 12 09 04 0B FF FF 01 00 0A 1B 12 0A 04 0B  ................
    2EA0: FF FF 0A 02 00 0A 18 12 0A 04 0B FF FF 0A 03 00  ................
    2EB0: 0A 19 08 50 30 37 33 12 34 04 12 0B 04 0B FF FF  ...P073.4.......
    2EC0: 00 4C 4E 4B 42 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKB........LNK
    2ED0: 43 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 44 00 12  C.........LNKD..
    2EE0: 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00 08 47 30 37  .......LNKA..G07
    2EF0: 33 12 2C 04 12 09 04 0B FF FF 00 00 0A 19 12 09  3.,.............
    2F00: 04 0B FF FF 01 00 0A 1A 12 0A 04 0B FF FF 0A 02  ................
    2F10: 00 0A 1B 12 0A 04 0B FF FF 0A 03 00 0A 18 08 50  ...............P
    2F20: 30 37 34 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  074.4........LNK
    2F30: 46 00 12 0B 04 0B FF FF 01 4C 4E 4B 47 00 12 0C  F........LNKG...
    2F40: 04 0B FF FF 0A 02 4C 4E 4B 48 00 12 0C 04 0B FF  ......LNKH......
    2F50: FF 0A 03 4C 4E 4B 45 00 08 47 30 37 34 12 2C 04  ...LNKE..G074.,.
    2F60: 12 09 04 0B FF FF 00 00 0A 1D 12 09 04 0B FF FF  ................
    2F70: 01 00 0A 1E 12 0A 04 0B FF FF 0A 02 00 0A 1F 12  ................
    2F80: 0A 04 0B FF FF 0A 03 00 0A 1C 08 50 30 37 35 12  ...........P075.
    2F90: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 42 00 12 0B  4........LNKB...
    2FA0: 04 0B FF FF 01 4C 4E 4B 43 00 12 0C 04 0B FF FF  .....LNKC.......
    2FB0: 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKD.........L
    2FC0: 4E 4B 41 00 08 47 30 37 35 12 2C 04 12 09 04 0B  NKA..G075.,.....
    2FD0: FF FF 00 00 0A 21 12 09 04 0B FF FF 01 00 0A 22  .....!........."
    2FE0: 12 0A 04 0B FF FF 0A 02 00 0A 23 12 0A 04 0B FF  ..........#.....
    2FF0: FF 0A 03 00 0A 20 08 50 30 37 36 12 34 04 12 0B  ..... .P076.4...
    3000: 04 0B FF FF 00 4C 4E 4B 46 00 12 0B 04 0B FF FF  .....LNKF.......
    3010: 01 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKG.........LN
    3020: 4B 48 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 45 00  KH.........LNKE.
    3030: 08 47 30 37 36 12 2C 04 12 09 04 0B FF FF 00 00  .G076.,.........
    3040: 0A 25 12 09 04 0B FF FF 01 00 0A 26 12 0A 04 0B  .%.........&....
    3050: FF FF 0A 02 00 0A 27 12 0A 04 0B FF FF 0A 03 00  ......'.........
    3060: 0A 24 08 50 30 37 37 12 34 04 12 0B 04 0B FF FF  .$.P077.4.......
    3070: 00 4C 4E 4B 42 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKB........LNK
    3080: 43 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 44 00 12  C.........LNKD..
    3090: 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00 08 47 30 37  .......LNKA..G07
    30A0: 37 12 2C 04 12 09 04 0B FF FF 00 00 0A 29 12 09  7.,..........)..
    30B0: 04 0B FF FF 01 00 0A 2A 12 0A 04 0B FF FF 0A 02  .......*........
    30C0: 00 0A 2B 12 0A 04 0B FF FF 0A 03 00 0A 28 08 50  ..+..........(.P
    30D0: 30 37 38 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  078.4........LNK
    30E0: 44 00 12 0B 04 0B FF FF 01 4C 4E 4B 41 00 12 0C  D........LNKA...
    30F0: 04 0B FF FF 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF  ......LNKB......
    3100: FF 0A 03 4C 4E 4B 43 00 08 47 30 37 38 12 2C 04  ...LNKC..G078.,.
    3110: 12 09 04 0B FF FF 00 00 0A 2B 12 09 04 0B FF FF  .........+......
    3120: 01 00 0A 28 12 0A 04 0B FF FF 0A 02 00 0A 29 12  ...(..........).
    3130: 0A 04 0B FF FF 0A 03 00 0A 2A 08 50 30 37 39 12  .........*.P079.
    3140: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 48 00 12 0B  4........LNKH...
    3150: 04 0B FF FF 01 4C 4E 4B 45 00 12 0C 04 0B FF FF  .....LNKE.......
    3160: 0A 02 4C 4E 4B 46 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKF.........L
    3170: 4E 4B 47 00 08 47 30 37 39 12 2C 04 12 09 04 0B  NKG..G079.,.....
    3180: FF FF 00 00 0A 27 12 09 04 0B FF FF 01 00 0A 24  .....'.........$
    3190: 12 0A 04 0B FF FF 0A 02 00 0A 25 12 0A 04 0B FF  ..........%.....
    31A0: FF 0A 03 00 0A 26 08 50 30 37 41 12 34 04 12 0B  .....&.P07A.4...
    31B0: 04 0B FF FF 00 4C 4E 4B 44 00 12 0B 04 0B FF FF  .....LNKD.......
    31C0: 01 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKA.........LN
    31D0: 4B 42 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00  KB.........LNKC.
    31E0: 08 47 30 37 41 12 2C 04 12 09 04 0B FF FF 00 00  .G07A.,.........
    31F0: 0A 23 12 09 04 0B FF FF 01 00 0A 20 12 0A 04 0B  .#......... ....
    3200: FF FF 0A 02 00 0A 21 12 0A 04 0B FF FF 0A 03 00  ......!.........
    3210: 0A 22 08 50 30 37 42 12 34 04 12 0B 04 0B FF FF  .".P07B.4.......
    3220: 00 4C 4E 4B 48 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKH........LNK
    3230: 45 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 46 00 12  E.........LNKF..
    3240: 0C 04 0B FF FF 0A 03 4C 4E 4B 47 00 08 47 30 37  .......LNKG..G07
    3250: 42 12 2C 04 12 09 04 0B FF FF 00 00 0A 1F 12 09  B.,.............
    3260: 04 0B FF FF 01 00 0A 1C 12 0A 04 0B FF FF 0A 02  ................
    3270: 00 0A 1D 12 0A 04 0B FF FF 0A 03 00 0A 1E 08 50  ...............P
    3280: 30 37 43 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  07C.4........LNK
    3290: 44 00 12 0B 04 0B FF FF 01 4C 4E 4B 41 00 12 0C  D........LNKA...
    32A0: 04 0B FF FF 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF  ......LNKB......
    32B0: FF 0A 03 4C 4E 4B 43 00 08 47 30 37 43 12 2C 04  ...LNKC..G07C.,.
    32C0: 12 09 04 0B FF FF 00 00 0A 1B 12 09 04 0B FF FF  ................
    32D0: 01 00 0A 18 12 0A 04 0B FF FF 0A 02 00 0A 19 12  ................
    32E0: 0A 04 0B FF FF 0A 03 00 0A 1A 08 50 30 37 44 12  ...........P07D.
    32F0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 12 0B  4........LNKA...
    3300: 04 0B FF FF 01 4C 4E 4B 42 00 12 0C 04 0B FF FF  .....LNKB.......
    3310: 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKC.........L
    3320: 4E 4B 44 00 08 47 30 37 44 12 2C 04 12 09 04 0B  NKD..G07D.,.....
    3330: FF FF 00 00 0A 18 12 09 04 0B FF FF 01 00 0A 19  ................
    3340: 12 0A 04 0B FF FF 0A 02 00 0A 1A 12 0A 04 0B FF  ................
    3350: FF 0A 03 00 0A 1B 08 50 30 37 45 12 34 04 12 0B  .......P07E.4...
    3360: 04 0B FF FF 00 4C 4E 4B 45 00 12 0B 04 0B FF FF  .....LNKE.......
    3370: 01 4C 4E 4B 46 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKF.........LN
    3380: 4B 47 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00  KG.........LNKH.
    3390: 08 47 30 37 45 12 2C 04 12 09 04 0B FF FF 00 00  .G07E.,.........
    33A0: 0A 1C 12 09 04 0B FF FF 01 00 0A 1D 12 0A 04 0B  ................
    33B0: FF FF 0A 02 00 0A 1E 12 0A 04 0B FF FF 0A 03 00  ................
    33C0: 0A 1F 08 50 30 37 46 12 34 04 12 0B 04 0B FF FF  ...P07F.4.......
    33D0: 00 4C 4E 4B 41 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKA........LNK
    33E0: 42 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 43 00 12  B.........LNKC..
    33F0: 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00 08 47 30 37  .......LNKD..G07
    3400: 46 12 2C 04 12 09 04 0B FF FF 00 00 0A 20 12 09  F.,.......... ..
    3410: 04 0B FF FF 01 00 0A 21 12 0A 04 0B FF FF 0A 02  .......!........
    3420: 00 0A 22 12 0A 04 0B FF FF 0A 03 00 0A 23 08 50  .."..........#.P
    3430: 30 38 38 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  088.4........LNK
    3440: 45 00 12 0B 04 0B FF FF 01 4C 4E 4B 46 00 12 0C  E........LNKF...
    3450: 04 0B FF FF 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF  ......LNKG......
    3460: FF 0A 03 4C 4E 4B 48 00 08 47 30 38 38 12 2C 04  ...LNKH..G088.,.
    3470: 12 09 04 0B FF FF 00 00 0A 24 12 09 04 0B FF FF  .........$......
    3480: 01 00 0A 25 12 0A 04 0B FF FF 0A 02 00 0A 26 12  ...%..........&.
    3490: 0A 04 0B FF FF 0A 03 00 0A 27 08 50 44 30 31 12  .........'.PD01.
    34A0: 41 11 13 12 0B 04 0B FF FF 00 4C 4E 4B 42 00 12  A.........LNKB..
    34B0: 0D 04 0C FF FF 01 00 00 4C 4E 4B 41 00 12 0D 04  ........LNKA....
    34C0: 0C FF FF 01 00 01 4C 4E 4B 41 00 12 0E 04 0C FF  ......LNKA......
    34D0: FF 01 00 0A 02 4C 4E 4B 41 00 12 0E 04 0C FF FF  .....LNKA.......
    34E0: 01 00 0A 03 4C 4E 4B 41 00 12 0D 04 0C FF FF 02  ....LNKA........
    34F0: 00 00 4C 4E 4B 41 00 12 0D 04 0C FF FF 02 00 01  ..LNKA..........
    3500: 4C 4E 4B 41 00 12 0D 04 0C FF FF 03 00 00 4C 4E  LNKA..........LN
    3510: 4B 42 00 12 0D 04 0C FF FF 03 00 01 4C 4E 4B 42  KB..........LNKB
    3520: 00 12 0E 04 0C FF FF 03 00 0A 02 4C 4E 4B 42 00  ...........LNKB.
    3530: 12 0E 04 0C FF FF 03 00 0A 03 4C 4E 4B 42 00 12  ..........LNKB..
    3540: 0D 04 0C FF FF 04 00 00 4C 4E 4B 42 00 12 0D 04  ........LNKB....
    3550: 0C FF FF 04 00 01 4C 4E 4B 42 00 12 0D 04 0C FF  ......LNKB......
    3560: FF 05 00 00 4C 4E 4B 43 00 12 0D 04 0C FF FF 05  ....LNKC........
    3570: 00 01 4C 4E 4B 43 00 12 0E 04 0C FF FF 05 00 0A  ..LNKC..........
    3580: 02 4C 4E 4B 43 00 12 0E 04 0C FF FF 05 00 0A 03  .LNKC...........
    3590: 4C 4E 4B 43 00 12 0D 04 0C FF FF 07 00 00 4C 4E  LNKC..........LN
    35A0: 4B 44 00 12 0D 04 0C FF FF 07 00 01 4C 4E 4B 44  KD..........LNKD
    35B0: 00 08 41 52 30 31 12 4B 0E 13 12 09 04 0B FF FF  ..AR01.K........
    35C0: 00 00 0A 39 12 0B 04 0C FF FF 01 00 00 00 0A 38  ...9...........8
    35D0: 12 0B 04 0C FF FF 01 00 01 00 0A 38 12 0C 04 0C  ...........8....
    35E0: FF FF 01 00 0A 02 00 0A 38 12 0C 04 0C FF FF 01  ........8.......
    35F0: 00 0A 03 00 0A 38 12 0B 04 0C FF FF 02 00 00 00  .....8..........
    3600: 0A 38 12 0B 04 0C FF FF 02 00 01 00 0A 38 12 0B  .8...........8..
    3610: 04 0C FF FF 03 00 00 00 0A 39 12 0B 04 0C FF FF  .........9......
    3620: 03 00 01 00 0A 39 12 0C 04 0C FF FF 03 00 0A 02  .....9..........
    3630: 00 0A 39 12 0C 04 0C FF FF 03 00 0A 03 00 0A 39  ..9............9
    3640: 12 0B 04 0C FF FF 04 00 00 00 0A 39 12 0B 04 0C  ...........9....
    3650: FF FF 04 00 01 00 0A 39 12 0B 04 0C FF FF 05 00  .......9........
    3660: 00 00 0A 3A 12 0B 04 0C FF FF 05 00 01 00 0A 3A  ...:...........:
    3670: 12 0C 04 0C FF FF 05 00 0A 02 00 0A 3A 12 0C 04  ............:...
    3680: 0C FF FF 05 00 0A 03 00 0A 3A 12 0B 04 0C FF FF  .........:......
    3690: 07 00 00 00 0A 3B 12 0B 04 0C FF FF 07 00 01 00  .....;..........
    36A0: 0A 3B 08 50 30 38 46 12 34 04 12 0B 04 0B FF FF  .;.P08F.4.......
    36B0: 00 4C 4E 4B 41 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKA........LNK
    36C0: 42 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 43 00 12  B.........LNKC..
    36D0: 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00 08 47 30 38  .......LNKD..G08
    36E0: 46 12 2C 04 12 09 04 0B FF FF 00 00 0A 38 12 09  F.,..........8..
    36F0: 04 0B FF FF 01 00 0A 39 12 0A 04 0B FF FF 0A 02  .......9........
    3700: 00 0A 3A 12 0A 04 0B FF FF 0A 03 00 0A 3B 08 50  ..:..........;.P
    3710: 30 39 30 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  090.4........LNK
    3720: 45 00 12 0B 04 0B FF FF 01 4C 4E 4B 46 00 12 0C  E........LNKF...
    3730: 04 0B FF FF 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF  ......LNKG......
    3740: FF 0A 03 4C 4E 4B 48 00 08 47 30 39 30 12 2C 04  ...LNKH..G090.,.
    3750: 12 09 04 0B FF FF 00 00 0A 3C 12 09 04 0B FF FF  .........<......
    3760: 01 00 0A 3D 12 0A 04 0B FF FF 0A 02 00 0A 3E 12  ...=..........>.
    3770: 0A 04 0B FF FF 0A 03 00 0A 3F 08 50 30 39 31 12  .........?.P091.
    3780: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 12 0B  4........LNKA...
    3790: 04 0B FF FF 01 4C 4E 4B 42 00 12 0C 04 0B FF FF  .....LNKB.......
    37A0: 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKC.........L
    37B0: 4E 4B 44 00 08 47 30 39 31 12 2C 04 12 09 04 0B  NKD..G091.,.....
    37C0: FF FF 00 00 0A 40 12 09 04 0B FF FF 01 00 0A 41  .....@.........A
    37D0: 12 0A 04 0B FF FF 0A 02 00 0A 42 12 0A 04 0B FF  ..........B.....
    37E0: FF 0A 03 00 0A 43 08 50 30 39 32 12 34 04 12 0B  .....C.P092.4...
    37F0: 04 0B FF FF 00 4C 4E 4B 45 00 12 0B 04 0B FF FF  .....LNKE.......
    3800: 01 4C 4E 4B 46 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKF.........LN
    3810: 4B 47 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 48 00  KG.........LNKH.
    3820: 08 47 30 39 32 12 2C 04 12 09 04 0B FF FF 00 00  .G092.,.........
    3830: 0A 44 12 09 04 0B FF FF 01 00 0A 45 12 0A 04 0B  .D.........E....
    3840: FF FF 0A 02 00 0A 46 12 0A 04 0B FF FF 0A 03 00  ......F.........
    3850: 0A 47 08 50 30 39 33 12 34 04 12 0B 04 0B FF FF  .G.P093.4.......
    3860: 00 4C 4E 4B 41 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKA........LNK
    3870: 42 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 43 00 12  B.........LNKC..
    3880: 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00 08 47 30 39  .......LNKD..G09
    3890: 33 12 2C 04 12 09 04 0B FF FF 00 00 0A 48 12 09  3.,..........H..
    38A0: 04 0B FF FF 01 00 0A 49 12 0A 04 0B FF FF 0A 02  .......I........
    38B0: 00 0A 4A 12 0A 04 0B FF FF 0A 03 00 0A 4B 08 50  ..J..........K.P
    38C0: 30 39 34 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  094.4........LNK
    38D0: 43 00 12 0B 04 0B FF FF 01 4C 4E 4B 44 00 12 0C  C........LNKD...
    38E0: 04 0B FF FF 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF  ......LNKA......
    38F0: FF 0A 03 4C 4E 4B 42 00 08 47 30 39 34 12 2C 04  ...LNKB..G094.,.
    3900: 12 09 04 0B FF FF 00 00 0A 4A 12 09 04 0B FF FF  .........J......
    3910: 01 00 0A 4B 12 0A 04 0B FF FF 0A 02 00 0A 48 12  ...K..........H.
    3920: 0A 04 0B FF FF 0A 03 00 0A 49 08 50 30 39 35 12  .........I.P095.
    3930: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 47 00 12 0B  4........LNKG...
    3940: 04 0B FF FF 01 4C 4E 4B 48 00 12 0C 04 0B FF FF  .....LNKH.......
    3950: 0A 02 4C 4E 4B 45 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKE.........L
    3960: 4E 4B 46 00 08 47 30 39 35 12 2C 04 12 09 04 0B  NKF..G095.,.....
    3970: FF FF 00 00 0A 46 12 09 04 0B FF FF 01 00 0A 47  .....F.........G
    3980: 12 0A 04 0B FF FF 0A 02 00 0A 44 12 0A 04 0B FF  ..........D.....
    3990: FF 0A 03 00 0A 45 08 50 30 39 36 12 34 04 12 0B  .....E.P096.4...
    39A0: 04 0B FF FF 00 4C 4E 4B 43 00 12 0B 04 0B FF FF  .....LNKC.......
    39B0: 01 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKD.........LN
    39C0: 4B 41 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 42 00  KA.........LNKB.
    39D0: 08 47 30 39 36 12 2C 04 12 09 04 0B FF FF 00 00  .G096.,.........
    39E0: 0A 42 12 09 04 0B FF FF 01 00 0A 43 12 0A 04 0B  .B.........C....
    39F0: FF FF 0A 02 00 0A 40 12 0A 04 0B FF FF 0A 03 00  ......@.........
    3A00: 0A 41 08 50 30 39 37 12 34 04 12 0B 04 0B FF FF  .A.P097.4.......
    3A10: 00 4C 4E 4B 47 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKG........LNK
    3A20: 48 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 45 00 12  H.........LNKE..
    3A30: 0C 04 0B FF FF 0A 03 4C 4E 4B 46 00 08 47 30 39  .......LNKF..G09
    3A40: 37 12 2C 04 12 09 04 0B FF FF 00 00 0A 3E 12 09  7.,..........>..
    3A50: 04 0B FF FF 01 00 0A 3F 12 0A 04 0B FF FF 0A 02  .......?........
    3A60: 00 0A 3C 12 0A 04 0B FF FF 0A 03 00 0A 3D 08 50  ..<..........=.P
    3A70: 30 39 38 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  098.4........LNK
    3A80: 43 00 12 0B 04 0B FF FF 01 4C 4E 4B 44 00 12 0C  C........LNKD...
    3A90: 04 0B FF FF 0A 02 4C 4E 4B 41 00 12 0C 04 0B FF  ......LNKA......
    3AA0: FF 0A 03 4C 4E 4B 42 00 08 47 30 39 38 12 2C 04  ...LNKB..G098.,.
    3AB0: 12 09 04 0B FF FF 00 00 0A 3A 12 09 04 0B FF FF  .........:......
    3AC0: 01 00 0A 3B 12 0A 04 0B FF FF 0A 02 00 0A 38 12  ...;..........8.
    3AD0: 0A 04 0B FF FF 0A 03 00 0A 39 08 50 30 39 39 12  .........9.P099.
    3AE0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 42 00 12 0B  4........LNKB...
    3AF0: 04 0B FF FF 01 4C 4E 4B 43 00 12 0C 04 0B FF FF  .....LNKC.......
    3B00: 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKD.........L
    3B10: 4E 4B 41 00 08 47 30 39 39 12 2C 04 12 09 04 0B  NKA..G099.,.....
    3B20: FF FF 00 00 0A 39 12 09 04 0B FF FF 01 00 0A 3A  .....9.........:
    3B30: 12 0A 04 0B FF FF 0A 02 00 0A 3B 12 0A 04 0B FF  ..........;.....
    3B40: FF 0A 03 00 0A 38 08 50 30 39 41 12 34 04 12 0B  .....8.P09A.4...
    3B50: 04 0B FF FF 00 4C 4E 4B 46 00 12 0B 04 0B FF FF  .....LNKF.......
    3B60: 01 4C 4E 4B 47 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKG.........LN
    3B70: 4B 48 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 45 00  KH.........LNKE.
    3B80: 08 47 30 39 41 12 2C 04 12 09 04 0B FF FF 00 00  .G09A.,.........
    3B90: 0A 3D 12 09 04 0B FF FF 01 00 0A 3E 12 0A 04 0B  .=.........>....
    3BA0: FF FF 0A 02 00 0A 3F 12 0A 04 0B FF FF 0A 03 00  ......?.........
    3BB0: 0A 3C 08 50 30 39 42 12 34 04 12 0B 04 0B FF FF  .<.P09B.4.......
    3BC0: 00 4C 4E 4B 42 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKB........LNK
    3BD0: 43 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 44 00 12  C.........LNKD..
    3BE0: 0C 04 0B FF FF 0A 03 4C 4E 4B 41 00 08 47 30 39  .......LNKA..G09
    3BF0: 42 12 2C 04 12 09 04 0B FF FF 00 00 0A 41 12 09  B.,..........A..
    3C00: 04 0B FF FF 01 00 0A 42 12 0A 04 0B FF FF 0A 02  .......B........
    3C10: 00 0A 43 12 0A 04 0B FF FF 0A 03 00 0A 40 08 50  ..C..........@.P
    3C20: 30 39 43 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  09C.4........LNK
    3C30: 46 00 12 0B 04 0B FF FF 01 4C 4E 4B 47 00 12 0C  F........LNKG...
    3C40: 04 0B FF FF 0A 02 4C 4E 4B 48 00 12 0C 04 0B FF  ......LNKH......
    3C50: FF 0A 03 4C 4E 4B 45 00 08 47 30 39 43 12 2C 04  ...LNKE..G09C.,.
    3C60: 12 09 04 0B FF FF 00 00 0A 45 12 09 04 0B FF FF  .........E......
    3C70: 01 00 0A 46 12 0A 04 0B FF FF 0A 02 00 0A 47 12  ...F..........G.
    3C80: 0A 04 0B FF FF 0A 03 00 0A 44 08 50 30 39 44 12  .........D.P09D.
    3C90: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 42 00 12 0B  4........LNKB...
    3CA0: 04 0B FF FF 01 4C 4E 4B 43 00 12 0C 04 0B FF FF  .....LNKC.......
    3CB0: 0A 02 4C 4E 4B 44 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKD.........L
    3CC0: 4E 4B 41 00 08 47 30 39 44 12 2C 04 12 09 04 0B  NKA..G09D.,.....
    3CD0: FF FF 00 00 0A 49 12 09 04 0B FF FF 01 00 0A 4A  .....I.........J
    3CE0: 12 0A 04 0B FF FF 0A 02 00 0A 4B 12 0A 04 0B FF  ..........K.....
    3CF0: FF 0A 03 00 0A 48 08 50 30 39 45 12 34 04 12 0B  .....H.P09E.4...
    3D00: 04 0B FF FF 00 4C 4E 4B 44 00 12 0B 04 0B FF FF  .....LNKD.......
    3D10: 01 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKA.........LN
    3D20: 4B 42 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00  KB.........LNKC.
    3D30: 08 47 30 39 45 12 2C 04 12 09 04 0B FF FF 00 00  .G09E.,.........
    3D40: 0A 4B 12 09 04 0B FF FF 01 00 0A 48 12 0A 04 0B  .K.........H....
    3D50: FF FF 0A 02 00 0A 49 12 0A 04 0B FF FF 0A 03 00  ......I.........
    3D60: 0A 4A 08 50 30 39 46 12 34 04 12 0B 04 0B FF FF  .J.P09F.4.......
    3D70: 00 4C 4E 4B 48 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKH........LNK
    3D80: 45 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 46 00 12  E.........LNKF..
    3D90: 0C 04 0B FF FF 0A 03 4C 4E 4B 47 00 08 47 30 39  .......LNKG..G09
    3DA0: 46 12 2C 04 12 09 04 0B FF FF 00 00 0A 47 12 09  F.,..........G..
    3DB0: 04 0B FF FF 01 00 0A 44 12 0A 04 0B FF FF 0A 02  .......D........
    3DC0: 00 0A 45 12 0A 04 0B FF FF 0A 03 00 0A 46 08 50  ..E..........F.P
    3DD0: 30 41 30 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  0A0.4........LNK
    3DE0: 44 00 12 0B 04 0B FF FF 01 4C 4E 4B 41 00 12 0C  D........LNKA...
    3DF0: 04 0B FF FF 0A 02 4C 4E 4B 42 00 12 0C 04 0B FF  ......LNKB......
    3E00: FF 0A 03 4C 4E 4B 43 00 08 47 30 41 30 12 2C 04  ...LNKC..G0A0.,.
    3E10: 12 09 04 0B FF FF 00 00 0A 43 12 09 04 0B FF FF  .........C......
    3E20: 01 00 0A 40 12 0A 04 0B FF FF 0A 02 00 0A 41 12  ...@..........A.
    3E30: 0A 04 0B FF FF 0A 03 00 0A 42 08 50 30 41 31 12  .........B.P0A1.
    3E40: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 48 00 12 0B  4........LNKH...
    3E50: 04 0B FF FF 01 4C 4E 4B 45 00 12 0C 04 0B FF FF  .....LNKE.......
    3E60: 0A 02 4C 4E 4B 46 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKF.........L
    3E70: 4E 4B 47 00 08 47 30 41 31 12 2C 04 12 09 04 0B  NKG..G0A1.,.....
    3E80: FF FF 00 00 0A 3F 12 09 04 0B FF FF 01 00 0A 3C  .....?.........<
    3E90: 12 0A 04 0B FF FF 0A 02 00 0A 3D 12 0A 04 0B FF  ..........=.....
    3EA0: FF 0A 03 00 0A 3E 08 50 30 41 32 12 34 04 12 0B  .....>.P0A2.4...
    3EB0: 04 0B FF FF 00 4C 4E 4B 44 00 12 0B 04 0B FF FF  .....LNKD.......
    3EC0: 01 4C 4E 4B 41 00 12 0C 04 0B FF FF 0A 02 4C 4E  .LNKA.........LN
    3ED0: 4B 42 00 12 0C 04 0B FF FF 0A 03 4C 4E 4B 43 00  KB.........LNKC.
    3EE0: 08 47 30 41 32 12 2C 04 12 09 04 0B FF FF 00 00  .G0A2.,.........
    3EF0: 0A 3B 12 09 04 0B FF FF 01 00 0A 38 12 0A 04 0B  .;.........8....
    3F00: FF FF 0A 02 00 0A 39 12 0A 04 0B FF FF 0A 03 00  ......9.........
    3F10: 0A 3A 08 50 30 41 33 12 34 04 12 0B 04 0B FF FF  .:.P0A3.4.......
    3F20: 00 4C 4E 4B 41 00 12 0B 04 0B FF FF 01 4C 4E 4B  .LNKA........LNK
    3F30: 42 00 12 0C 04 0B FF FF 0A 02 4C 4E 4B 43 00 12  B.........LNKC..
    3F40: 0C 04 0B FF FF 0A 03 4C 4E 4B 44 00 08 47 30 41  .......LNKD..G0A
    3F50: 33 12 2C 04 12 09 04 0B FF FF 00 00 0A 38 12 09  3.,..........8..
    3F60: 04 0B FF FF 01 00 0A 39 12 0A 04 0B FF FF 0A 02  .......9........
    3F70: 00 0A 3A 12 0A 04 0B FF FF 0A 03 00 0A 3B 08 50  ..:..........;.P
    3F80: 30 41 34 12 34 04 12 0B 04 0B FF FF 00 4C 4E 4B  0A4.4........LNK
    3F90: 45 00 12 0B 04 0B FF FF 01 4C 4E 4B 46 00 12 0C  E........LNKF...
    3FA0: 04 0B FF FF 0A 02 4C 4E 4B 47 00 12 0C 04 0B FF  ......LNKG......
    3FB0: FF 0A 03 4C 4E 4B 48 00 08 47 30 41 34 12 2C 04  ...LNKH..G0A4.,.
    3FC0: 12 09 04 0B FF FF 00 00 0A 3C 12 09 04 0B FF FF  .........<......
    3FD0: 01 00 0A 3D 12 0A 04 0B FF FF 0A 02 00 0A 3E 12  ...=..........>.
    3FE0: 0A 04 0B FF FF 0A 03 00 0A 3F 08 50 30 41 35 12  .........?.P0A5.
    3FF0: 34 04 12 0B 04 0B FF FF 00 4C 4E 4B 41 00 12 0B  4........LNKA...
    4000: 04 0B FF FF 01 4C 4E 4B 42 00 12 0C 04 0B FF FF  .....LNKB.......
    4010: 0A 02 4C 4E 4B 43 00 12 0C 04 0B FF FF 0A 03 4C  ..LNKC.........L
    4020: 4E 4B 44 00 08 47 30 41 35 12 2C 04 12 09 04 0B  NKD..G0A5.,.....
    4030: FF FF 00 00 0A 40 12 09 04 0B FF FF 01 00 0A 41  .....@.........A
    4040: 12 0A 04 0B FF FF 0A 02 00 0A 42 12 0A 04 0B FF  ..........B.....
    4050: FF 0A 03 00 0A 43 10 8A B6 05 5F 53 42 5F 5B 82  .....C...._SB_[.
    4060: 84 85 01 50 43 49 33 08 5F 48 49 44 0C 41 D0 0A  ...PCI3._HID.A..
    4070: 08 08 5F 43 49 44 0C 41 D0 0A 03 08 5F 41 44 52  .._CID.A...._ADR
    4080: 00 14 0A 5E 42 4E 30 33 00 A4 0A 03 14 0B 5F 42  ...^BN03......_B
    4090: 42 4E 00 A4 42 4E 30 33 08 5F 55 49 44 0A 03 14  BN..BN03._UID...
    40A0: 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 41 52 30  ._PRT...PICM.AR0
    40B0: 33 A4 50 44 30 33 08 43 50 52 42 01 08 4C 56 47  3.PD03.CPRB..LVG
    40C0: 41 0A 00 08 53 54 41 56 0A 0F 08 42 52 42 5F 0B  A...STAV...BRB_.
    40D0: C0 00 08 42 52 4C 5F 0B 40 00 08 49 4F 42 5F 0B  ...BRL_.@..IOB_.
    40E0: 00 A0 08 49 4F 4C 5F 0B 00 60 08 4D 42 42 5F 0C  ...IOL_..`.MBB_.
    40F0: 00 00 00 D4 08 4D 42 4C 5F 0C 00 00 00 02 08 4D  .....MBL_......M
    4100: 41 42 4C 0E 00 00 40 20 00 01 00 00 08 4D 41 42  ABL...@ .....MAB
    4110: 48 0C 00 00 01 00 08 4D 41 4D 4C 0C 00 00 01 00  H......MAML.....
    4120: 08 4D 41 4D 48 0C 00 00 01 00 08 4D 41 4C 4C 0E  .MAMH......MALL.
    4130: 00 00 00 93 59 00 00 00 08 4D 41 4C 48 0C 00 00  ....Y....MALH...
    4140: 01 00 08 50 52 58 4D 0B 00 00 08 43 52 53 32 11  ...PRXM....CRS2.
    4150: 48 09 0A 94 88 0D 00 02 0C 00 00 00 80 00 FF 00  H...............
    4160: 00 00 80 00 88 0D 00 01 0C 03 00 00 00 00 00 00  ................
    4170: 00 00 00 00 88 0D 00 01 0C 03 00 00 00 00 00 00  ................
    4180: 00 00 00 00 87 17 00 00 0C 03 00 00 00 00 00 00  ................
    4190: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 87 17  ................
    41A0: 00 00 0C 03 00 00 00 00 00 00 00 80 FF FF FF FF  ................
    41B0: 00 00 00 00 00 00 00 80 8A 2B 00 00 0C 03 00 00  .........+......
    41C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    41D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    41E0: 00 00 00 00 00 00 79 00 14 0B 5F 53 54 41 00 A4  ......y..._STA..
    41F0: 53 54 41 56 14 4A 19 5F 43 52 53 08 8B 43 52 53  STAV.J._CRS..CRS
    4200: 32 0A 08 4D 49 4E 32 8B 43 52 53 32 0A 0A 4D 41  2..MIN2.CRS2..MA
    4210: 58 32 8B 43 52 53 32 0A 0E 4C 45 4E 32 70 42 52  X2.CRS2..LEN2pBR
    4220: 42 5F 4D 49 4E 32 70 42 52 4C 5F 4C 45 4E 32 70  B_MIN2pBRL_LEN2p
    4230: 4C 45 4E 32 61 72 4D 49 4E 32 76 61 4D 41 58 32  LEN2arMIN2vaMAX2
    4240: 8B 43 52 53 32 0A 28 4D 49 4E 34 8B 43 52 53 32  .CRS2.(MIN4.CRS2
    4250: 0A 2A 4D 41 58 34 8B 43 52 53 32 0A 2E 4C 45 4E  .*MAX4.CRS2..LEN
    4260: 34 70 49 4F 42 5F 4D 49 4E 34 70 49 4F 4C 5F 4C  4pIOB_MIN4pIOL_L
    4270: 45 4E 34 70 4C 45 4E 34 61 72 4D 49 4E 34 76 61  EN4pLEN4arMIN4va
    4280: 4D 41 58 34 A0 4D 07 4C 56 47 41 8B 43 52 53 32  MAX4.M.LVGA.CRS2
    4290: 0A 18 49 4D 4E 32 8B 43 52 53 32 0A 1A 49 4D 58  ..IMN2.CRS2..IMX
    42A0: 32 8B 43 52 53 32 0A 1E 49 4C 4E 32 70 0B B0 03  2.CRS2..ILN2p...
    42B0: 49 4D 4E 32 70 0B DF 03 49 4D 58 32 70 0A 30 49  IMN2p...IMX2p.0I
    42C0: 4C 4E 32 8A 43 52 53 32 0A 3A 56 4D 4E 32 8A 43  LN2.CRS2.:VMN2.C
    42D0: 52 53 32 0A 3E 56 4D 58 32 8A 43 52 53 32 0A 46  RS2.>VMX2.CRS2.F
    42E0: 56 4C 4E 32 70 0C 00 00 0A 00 56 4D 4E 32 70 0C  VLN2p.....VMN2p.
    42F0: FF FF 0B 00 56 4D 58 32 70 0C 00 00 02 00 56 4C  ....VMX2p.....VL
    4300: 4E 32 8A 43 52 53 32 0A 54 4D 49 4E 35 8A 43 52  N2.CRS2.TMIN5.CR
    4310: 53 32 0A 58 4D 41 58 35 8A 43 52 53 32 0A 60 4C  S2.XMAX5.CRS2.`L
    4320: 45 4E 35 70 4D 42 42 5F 4D 49 4E 35 70 4D 42 4C  EN5pMBB_MIN5pMBL
    4330: 5F 4C 45 4E 35 70 4C 45 4E 35 61 72 4D 49 4E 35  _LEN5pLEN5arMIN5
    4340: 76 61 4D 41 58 35 8F 43 52 53 32 0A 72 4D 49 4E  vaMAX5.CRS2.rMIN
    4350: 39 8F 43 52 53 32 0A 7A 4D 41 58 39 8F 43 52 53  9.CRS2.zMAX9.CRS
    4360: 32 0A 8A 4C 45 4E 39 70 4D 41 42 4C 4D 49 4E 39  2..LEN9pMABLMIN9
    4370: 70 4D 41 4C 4C 4C 45 4E 39 70 4C 45 4E 39 60 72  pMALLLEN9pLEN9`r
    4380: 4D 49 4E 39 76 60 4D 41 58 39 A4 43 52 53 32 14  MIN9v`MAX9.CRS2.
    4390: 42 13 5F 4F 53 43 0C 08 53 55 50 50 00 08 43 54  B._OSC..SUPP..CT
    43A0: 52 4C 00 8A 6B 00 43 44 57 31 8A 6B 0A 04 43 44  RL..k.CDW1.k..CD
    43B0: 57 32 8A 6B 0A 08 43 44 57 33 A0 48 0F 93 68 11  W2.k..CDW3.H..h.
    43C0: 13 0A 10 5B 4D DB 33 F7 1F 1C 40 96 57 74 41 C0  ...[M.3...@.WtA.
    43D0: 3D D7 66 70 43 44 57 32 53 55 50 50 70 43 44 57  =.fpCDW2SUPPpCDW
    43E0: 33 43 54 52 4C A0 18 92 93 7B 53 55 50 50 0A 16  3CTRL....{SUPP..
    43F0: 00 0A 16 7B 43 54 52 4C 0A 1E 43 54 52 4C A0 11  ...{CTRL..CTRL..
    4400: 92 50 45 48 50 7B 43 54 52 4C 0A 1E 43 54 52 4C  .PEHP{CTRL..CTRL
    4410: A0 11 92 53 48 50 43 7B 43 54 52 4C 0A 1D 43 54  ...SHPC{CTRL..CT
    4420: 52 4C A0 11 92 50 45 50 4D 7B 43 54 52 4C 0A 1B  RL...PEPM{CTRL..
    4430: 43 54 52 4C A0 11 92 50 45 45 52 7B 43 54 52 4C  CTRL...PEER{CTRL
    4440: 0A 15 43 54 52 4C A0 11 92 50 45 43 53 7B 43 54  ..CTRL...PECS{CT
    4450: 52 4C 0A 0F 43 54 52 4C A0 10 92 93 69 01 7D 43  RL..CTRL....i.}C
    4460: 44 57 31 0A 08 43 44 57 31 A0 15 5B 12 50 4F 53  DW1..CDW1..[.POS
    4470: 43 00 7B 43 54 52 4C 50 4F 53 43 43 54 52 4C A0  C.{CTRLPOSCCTRL.
    4480: 16 92 93 43 44 57 33 43 54 52 4C 7D 43 44 57 31  ...CDW3CTRL}CDW1
    4490: 0A 10 43 44 57 31 70 43 54 52 4C 43 44 57 33 A0  ..CDW1pCTRLCDW3.
    44A0: 11 5B 12 50 4F 53 53 00 70 53 55 50 50 50 4F 53  .[.POSS.pSUPPPOS
    44B0: 53 A4 6B A1 0E 7D 43 44 57 31 0A 04 43 44 57 31  S.k..}CDW1..CDW1
    44C0: A4 6B 5B 82 0C 44 30 32 33 08 5F 41 44 52 0A 02  .k[..D023._ADR..
    44D0: 5B 82 0C 44 30 32 34 08 5F 41 44 52 0A 03 5B 82  [..D024._ADR..[.
    44E0: 46 04 47 50 50 30 08 5F 41 44 52 0C 01 00 01 00  F.GPP0._ADR.....
    44F0: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4500: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4510: 32 35 A4 50 30 32 35 5B 82 0D 44 30 42 33 08 5F  25.P025[..D0B3._
    4520: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 31 08 5F  ADR...[.F.GPP1._
    4530: 41 44 52 0C 02 00 01 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4540: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4550: 0A 50 49 43 4D A4 47 30 32 36 A4 50 30 32 36 5B  .PICM.G026.P026[
    4560: 82 0D 44 30 42 34 08 5F 41 44 52 0B FF FF 5B 82  ..D0B4._ADR...[.
    4570: 46 04 47 50 50 32 08 5F 41 44 52 0C 03 00 01 00  F.GPP2._ADR.....
    4580: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4590: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    45A0: 32 37 A4 50 30 32 37 5B 82 0D 44 30 42 35 08 5F  27.P027[..D0B5._
    45B0: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 33 08 5F  ADR...[.F.GPP3._
    45C0: 41 44 52 0C 04 00 01 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    45D0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    45E0: 0A 50 49 43 4D A4 47 30 32 38 A4 50 30 32 38 5B  .PICM.G028.P028[
    45F0: 82 0D 44 30 42 36 08 5F 41 44 52 0B FF FF 5B 82  ..D0B6._ADR...[.
    4600: 46 04 47 50 50 34 08 5F 41 44 52 0C 05 00 01 00  F.GPP4._ADR.....
    4610: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4620: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4630: 32 39 A4 50 30 32 39 5B 82 0D 44 30 42 37 08 5F  29.P029[..D0B7._
    4640: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 35 08 5F  ADR...[.F.GPP5._
    4650: 41 44 52 0C 06 00 01 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4660: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4670: 0A 50 49 43 4D A4 47 30 32 41 A4 50 30 32 41 5B  .PICM.G02A.P02A[
    4680: 82 0D 44 30 42 38 08 5F 41 44 52 0B FF FF 5B 82  ..D0B8._ADR...[.
    4690: 46 04 47 50 50 36 08 5F 41 44 52 0C 07 00 01 00  F.GPP6._ADR.....
    46A0: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    46B0: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    46C0: 32 42 A4 50 30 32 42 5B 82 0D 44 30 42 39 08 5F  2B.P02B[..D0B9._
    46D0: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 37 08 5F  ADR...[.F.GPP7._
    46E0: 41 44 52 0C 01 00 02 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    46F0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4700: 0A 50 49 43 4D A4 47 30 32 43 A4 50 30 32 43 5B  .PICM.G02C.P02C[
    4710: 82 0D 44 30 42 41 08 5F 41 44 52 0B FF FF 5B 82  ..D0BA._ADR...[.
    4720: 46 04 47 50 50 38 08 5F 41 44 52 0C 02 00 02 00  F.GPP8._ADR.....
    4730: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4740: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4750: 32 44 A4 50 30 32 44 5B 82 0D 44 30 42 44 08 5F  2D.P02D[..D0BD._
    4760: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 39 08 5F  ADR...[.F.GPP9._
    4770: 41 44 52 0C 01 00 03 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4780: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4790: 0A 50 49 43 4D A4 47 30 32 45 A4 50 30 32 45 5B  .PICM.G02E.P02E[
    47A0: 82 0D 44 30 41 42 08 5F 41 44 52 0B FF FF 5B 82  ..D0AB._ADR...[.
    47B0: 46 04 47 50 50 41 08 5F 41 44 52 0C 02 00 03 00  F.GPPA._ADR.....
    47C0: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    47D0: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    47E0: 32 46 A4 50 30 32 46 5B 82 0D 44 30 41 43 08 5F  2F.P02F[..D0AC._
    47F0: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 42 08 5F  ADR...[.F.GPPB._
    4800: 41 44 52 0C 03 00 03 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4810: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4820: 0A 50 49 43 4D A4 47 30 33 30 A4 50 30 33 30 5B  .PICM.G030.P030[
    4830: 82 0D 44 30 41 44 08 5F 41 44 52 0B FF FF 5B 82  ..D0AD._ADR...[.
    4840: 46 04 47 50 50 43 08 5F 41 44 52 0C 04 00 03 00  F.GPPC._ADR.....
    4850: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4860: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4870: 33 31 A4 50 30 33 31 5B 82 0D 44 30 41 45 08 5F  31.P031[..D0AE._
    4880: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 44 08 5F  ADR...[.F.GPPD._
    4890: 41 44 52 0C 05 00 03 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    48A0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    48B0: 0A 50 49 43 4D A4 47 30 33 32 A4 50 30 33 32 5B  .PICM.G032.P032[
    48C0: 82 0D 44 30 41 46 08 5F 41 44 52 0B FF FF 5B 82  ..D0AF._ADR...[.
    48D0: 46 04 47 50 50 45 08 5F 41 44 52 0C 06 00 03 00  F.GPPE._ADR.....
    48E0: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    48F0: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4900: 33 33 A4 50 30 33 33 5B 82 0D 44 30 42 30 08 5F  33.P033[..D0B0._
    4910: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 46 08 5F  ADR...[.F.GPPF._
    4920: 41 44 52 0C 07 00 03 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4930: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4940: 0A 50 49 43 4D A4 47 30 33 34 A4 50 30 33 34 5B  .PICM.G034.P034[
    4950: 82 0D 44 30 42 31 08 5F 41 44 52 0B FF FF 5B 82  ..D0B1._ADR...[.
    4960: 46 04 47 50 50 47 08 5F 41 44 52 0C 01 00 04 00  F.GPPG._ADR.....
    4970: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4980: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4990: 33 35 A4 50 30 33 35 5B 82 0D 44 30 42 32 08 5F  35.P035[..D0B2._
    49A0: 41 44 52 0B FF FF 5B 82 46 04 47 50 50 48 08 5F  ADR...[.F.GPPH._
    49B0: 41 44 52 0C 02 00 04 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    49C0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    49D0: 0A 50 49 43 4D A4 47 30 33 36 A4 50 30 33 36 5B  .PICM.G036.P036[
    49E0: 82 0D 44 30 42 45 08 5F 41 44 52 0B FF FF 5B 82  ..D0BE._ADR...[.
    49F0: 46 04 47 50 31 35 08 5F 41 44 52 0C 01 00 05 00  F.GP15._ADR.....
    4A00: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4A10: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4A20: 33 37 A4 50 30 33 37 5B 82 0D 44 30 42 42 08 5F  37.P037[..D0BB._
    4A30: 41 44 52 0B FF FF 5B 82 46 04 47 50 32 35 08 5F  ADR...[.F.GP25._
    4A40: 41 44 52 0C 02 00 05 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4A50: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4A60: 0A 50 49 43 4D A4 47 30 33 38 A4 50 30 33 38 5B  .PICM.G038.P038[
    4A70: 82 0D 44 30 42 43 08 5F 41 44 52 0B FF FF 5B 82  ..D0BC._ADR...[.
    4A80: 46 04 47 50 33 35 08 5F 41 44 52 0C 03 00 05 00  F.GP35._ADR.....
    4A90: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    4AA0: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4AB0: 33 39 A4 50 30 33 39 5B 82 0D 44 30 42 46 08 5F  39.P039[..D0BF._
    4AC0: 41 44 52 0B FF FF 5B 82 46 04 47 50 34 35 08 5F  ADR...[.F.GP45._
    4AD0: 41 44 52 0C 04 00 05 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    4AE0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    4AF0: 0A 50 49 43 4D A4 47 30 33 41 A4 50 30 33 41 5B  .PICM.G03A.P03A[
    4B00: 82 0D 44 30 43 30 08 5F 41 44 52 0B FF FF 5B 82  ..D0C0._ADR...[.
    4B10: 45 0A 47 50 31 37 08 5F 41 44 52 0C 01 00 07 00  E.GP17._ADR.....
    4B20: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 0B 0A 04  .._PRW..GPRW....
    4B30: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    4B40: 33 42 A4 50 30 33 42 5B 82 0B 44 30 33 43 08 5F  3B.P03B[..D03C._
    4B50: 41 44 52 00 5B 82 0B 44 30 33 44 08 5F 41 44 52  ADR.[..D03D._ADR
    4B60: 01 5B 82 0C 44 30 33 45 08 5F 41 44 52 0A 02 5B  .[..D03E._ADR..[
    4B70: 82 0C 44 30 33 46 08 5F 41 44 52 0A 03 5B 82 0C  ..D03F._ADR..[..
    4B80: 58 48 43 30 08 5F 41 44 52 0A 04 5B 82 0C 44 30  XHC0._ADR..[..D0
    4B90: 34 31 08 5F 41 44 52 0A 05 5B 82 0C 44 30 34 32  41._ADR..[..D042
    4BA0: 08 5F 41 44 52 0A 06 5B 82 0C 44 30 34 33 08 5F  ._ADR..[..D043._
    4BB0: 41 44 52 0A 07 5B 82 4D CF 47 50 32 37 08 5F 41  ADR..[.M.GP27._A
    4BC0: 44 52 0C 02 00 07 00 14 0F 5F 50 52 57 00 A4 47  DR......._PRW..G
    4BD0: 50 52 57 0A 0B 0A 04 14 16 5F 50 52 54 00 A0 0A  PRW......_PRT...
    4BE0: 50 49 43 4D A4 47 30 34 34 A4 50 30 34 34 5B 82  PICM.G044.P044[.
    4BF0: 41 66 53 41 54 41 08 5F 41 44 52 00 08 42 35 45  AfSATA._ADR..B5E
    4C00: 4E 00 08 42 41 5F 35 00 08 53 42 41 52 0C 00 F0  N..BA_5..SBAR...
    4C10: B6 F0 08 4F 53 56 52 00 5B 80 53 41 54 58 02 00  ...OSVR.[.SATX..
    4C20: 0A 44 5B 81 43 04 53 41 54 58 00 56 49 44 49 20  .D[.C.SATX.VIDI 
    4C30: 00 30 53 54 43 4C 10 00 40 0C 42 41 30 35 20 00  .0STCL..@.BA05 .
    4C40: 40 0C 57 54 45 4E 01 00 0F 44 49 53 30 01 44 49  @.WTEN...DIS0.DI
    4C50: 53 31 01 44 49 53 32 01 44 49 53 33 01 44 49 53  S1.DIS2.DIS3.DIS
    4C60: 34 01 44 49 53 35 01 5B 81 0E 53 41 54 58 00 00  4.DIS5.[..SATX..
    4C70: 40 21 44 49 53 50 06 14 39 47 42 41 41 08 70 42  @!DISP..9GBAA.pB
    4C80: 41 30 35 42 41 5F 35 A0 1C 91 93 42 41 5F 35 FF  A05BA_5....BA_5.
    4C90: 92 93 53 54 43 4C 0B 01 01 70 00 42 35 45 4E A4  ..STCL...p.B5EN.
    4CA0: 53 42 41 52 A1 0C 70 01 42 35 45 4E A4 42 41 5F  SBAR..p.B5EN.BA_
    4CB0: 35 5B 80 42 41 52 35 00 47 42 41 41 0B 00 10 5B  5[.BAR5.GBAA...[
    4CC0: 81 41 12 42 41 52 35 00 4E 4F 50 54 05 00 4B 05  .A.BAR5.NOPT..K.
    4CD0: 50 54 49 30 01 50 54 49 31 01 50 54 49 32 01 50  PTI0.PTI1.PTI2.P
    4CE0: 54 49 33 01 50 54 49 34 01 50 54 49 35 01 50 54  TI3.PTI4.PTI5.PT
    4CF0: 49 36 01 50 54 49 37 01 00 48 85 43 53 54 30 01  I6.PTI7..H.CST0.
    4D00: 00 4F 03 00 07 42 53 59 30 01 00 38 44 45 54 30  .O...BSY0..8DET0
    4D10: 04 00 04 49 50 4D 30 04 00 14 44 44 49 30 04 00  ...IPM0...DDI0..
    4D20: 4C 35 43 53 54 31 01 00 4F 03 00 07 42 53 59 31  L5CST1..O...BSY1
    4D30: 01 00 38 44 45 54 31 04 00 04 49 50 4D 31 04 00  ..8DET1...IPM1..
    4D40: 14 44 44 49 31 04 00 4C 35 43 53 54 32 01 00 4F  .DDI1..L5CST2..O
    4D50: 03 00 07 42 53 59 32 01 00 38 44 45 54 32 04 00  ...BSY2..8DET2..
    4D60: 04 49 50 4D 32 04 00 14 44 44 49 32 04 00 4C 35  .IPM2...DDI2..L5
    4D70: 43 53 54 33 01 00 4F 03 00 07 42 53 59 33 01 00  CST3..O...BSY3..
    4D80: 38 44 45 54 33 04 00 04 49 50 4D 33 04 00 14 44  8DET3...IPM3...D
    4D90: 44 49 33 04 00 4C 35 43 53 54 34 01 00 4F 03 00  DI3..L5CST4..O..
    4DA0: 07 42 53 59 34 01 00 38 44 45 54 34 04 00 04 49  .BSY4..8DET4...I
    4DB0: 50 4D 34 04 00 14 44 44 49 34 04 00 4C 35 43 53  PM4...DDI4..L5CS
    4DC0: 54 35 01 00 4F 03 00 07 42 53 59 35 01 00 38 44  T5..O...BSY5..8D
    4DD0: 45 54 35 04 00 04 49 50 4D 35 04 00 14 44 44 49  ET5...IPM5...DDI
    4DE0: 35 04 5B 81 0E 42 41 52 35 00 00 40 06 50 54 49  5.[..BAR5..@.PTI
    4DF0: 5F 06 14 0A 5F 49 4E 49 00 47 42 41 41 5B 82 4A  _..._INI.GBAA[.J
    4E00: 19 50 52 49 44 08 5F 41 44 52 00 08 53 50 54 4D  .PRID._ADR..SPTM
    4E10: 11 17 0A 14 78 00 00 00 0F 00 00 00 78 00 00 00  ....x.......x...
    4E20: 0F 00 00 00 1F 00 00 00 14 0B 5F 47 54 4D 00 A4  .........._GTM..
    4E30: 53 50 54 4D 14 0C 5F 53 54 4D 03 70 68 53 50 54  SPTM.._STM.phSPT
    4E40: 4D 14 3A 5F 50 53 30 00 47 42 41 41 A0 2F 90 91  M.:_PS0.GBAA./..
    4E50: 92 95 4F 53 56 52 0A 0C 93 4F 53 56 52 00 42 35  ..OSVR...OSVR.B5
    4E60: 45 4E A0 19 49 50 4D 32 70 0A 32 60 A2 0F 90 93  EN..IPM2p.2`....
    4E70: 42 53 59 32 01 60 5B 22 0A FA 76 60 14 06 5F 50  BSY2.`["..v`.._P
    4E80: 53 33 00 5B 82 49 08 50 5F 44 30 08 5F 41 44 52  S3.[.I.P_D0._ADR
    4E90: 00 14 24 5F 53 54 41 00 47 42 41 41 A0 09 93 42  ..$_STA.GBAA...B
    4EA0: 35 45 4E 00 A4 00 A0 0B 93 44 45 54 30 0A 03 A4  5EN......DET0...
    4EB0: 0A 0F A1 03 A4 00 08 53 31 32 50 00 14 34 5F 50  .......S12P..4_P
    4EC0: 53 30 00 47 42 41 41 A0 29 90 90 95 4F 53 56 52  S0.GBAA.)...OSVR
    4ED0: 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E 70 0A 32  ....OSVR.B5ENp.2
    4EE0: 60 A2 0F 90 93 42 53 59 30 01 60 5B 22 0A FA 76  `....BSY0.`["..v
    4EF0: 60 14 06 5F 50 53 33 00 14 15 5F 47 54 46 00 70  `.._PS3..._GTF.p
    4F00: 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4 60 5B 82  .....F.....`.`[.
    4F10: 49 08 50 5F 44 31 08 5F 41 44 52 01 14 24 5F 53  I.P_D1._ADR..$_S
    4F20: 54 41 00 47 42 41 41 A0 09 93 42 35 45 4E 00 A4  TA.GBAA...B5EN..
    4F30: 00 A0 0B 93 44 45 54 32 0A 03 A4 0A 0F A1 03 A4  ....DET2........
    4F40: 00 08 53 31 32 50 00 14 34 5F 50 53 30 00 47 42  ..S12P..4_PS0.GB
    4F50: 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F  AA.)...OSVR....O
    4F60: 53 56 52 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93  SVR.B5ENp.2`....
    4F70: 42 53 59 32 01 60 5B 22 0A FA 76 60 14 06 5F 50  BSY2.`["..v`.._P
    4F80: 53 33 00 14 15 5F 47 54 46 00 70 11 0A 0A 07 03  S3..._GTF.p.....
    4F90: 46 00 00 00 A0 EF 60 A4 60 5B 82 4B 1A 53 45 43  F.....`.`[.K.SEC
    4FA0: 44 08 5F 41 44 52 0A 02 08 53 50 54 4D 11 17 0A  D._ADR...SPTM...
    4FB0: 14 78 00 00 00 0F 00 00 00 78 00 00 00 0F 00 00  .x.......x......
    4FC0: 00 1F 00 00 00 14 0B 5F 47 54 4D 00 A4 53 50 54  ......._GTM..SPT
    4FD0: 4D 14 0C 5F 53 54 4D 03 70 68 53 50 54 4D 14 46  M.._STM.phSPTM.F
    4FE0: 05 5F 50 53 30 00 47 42 41 41 A0 4A 04 90 91 92  ._PS0.GBAA.J....
    4FF0: 95 4F 53 56 52 0A 0C 93 4F 53 56 52 00 42 35 45  .OSVR...OSVR.B5E
    5000: 4E A0 19 49 50 4D 31 70 0A 32 60 A2 0F 90 93 42  N..IPM1p.2`....B
    5010: 53 59 31 01 60 5B 22 0A FA 76 60 A0 19 49 50 4D  SY1.`["..v`..IPM
    5020: 33 70 0A 32 60 A2 0F 90 93 42 53 59 33 01 60 5B  3p.2`....BSY3.`[
    5030: 22 0A FA 76 60 14 06 5F 50 53 33 00 5B 82 43 08  "..v`.._PS3.[.C.
    5040: 53 5F 44 30 08 5F 41 44 52 00 14 24 5F 53 54 41  S_D0._ADR..$_STA
    5050: 00 47 42 41 41 A0 09 93 42 35 45 4E 00 A4 00 A0  .GBAA...B5EN....
    5060: 0B 93 44 45 54 31 0A 03 A4 0A 0F A1 03 A4 00 14  ..DET1..........
    5070: 34 5F 50 53 30 00 47 42 41 41 A0 29 90 90 95 4F  4_PS0.GBAA.)...O
    5080: 53 56 52 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E  SVR....OSVR.B5EN
    5090: 70 0A 32 60 A2 0F 90 93 42 53 59 31 01 60 5B 22  p.2`....BSY1.`["
    50A0: 0A FA 76 60 14 06 5F 50 53 33 00 14 15 5F 47 54  ..v`.._PS3..._GT
    50B0: 46 00 70 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4  F.p.....F.....`.
    50C0: 60 5B 82 43 08 53 5F 44 31 08 5F 41 44 52 01 14  `[.C.S_D1._ADR..
    50D0: 24 5F 53 54 41 00 47 42 41 41 A0 09 93 42 35 45  $_STA.GBAA...B5E
    50E0: 4E 00 A4 00 A0 0B 93 44 45 54 33 0A 03 A4 0A 0F  N......DET3.....
    50F0: A1 03 A4 00 14 34 5F 50 53 30 00 47 42 41 41 A0  .....4_PS0.GBAA.
    5100: 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F 53 56 52  )...OSVR....OSVR
    5110: 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93 42 53 59  .B5ENp.2`....BSY
    5120: 33 01 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00  3.`["..v`.._PS3.
    5130: 14 15 5F 47 54 46 00 70 11 0A 0A 07 03 46 00 00  .._GTF.p.....F..
    5140: 00 A0 EF 60 A4 60 14 4A 10 45 4E 50 5F 02 A0 0C  ...`.`.J.ENP_...
    5150: 93 68 00 70 80 69 00 44 49 53 30 A1 4F 04 A0 0C  .h.p.i.DIS0.O...
    5160: 93 68 01 70 80 69 00 44 49 53 31 A1 3F A0 0D 93  .h.p.i.DIS1.?...
    5170: 68 0A 02 70 80 69 00 44 49 53 32 A1 2F A0 0D 93  h..p.i.DIS2./...
    5180: 68 0A 03 70 80 69 00 44 49 53 33 A1 1F A0 0D 93  h..p.i.DIS3.....
    5190: 68 0A 04 70 80 69 00 44 49 53 34 A1 0F A0 0D 93  h..p.i.DIS4.....
    51A0: 68 0A 05 70 80 69 00 44 49 53 35 70 01 57 54 45  h..p.i.DIS5p.WTE
    51B0: 4E A0 0A 93 68 00 70 69 50 54 49 30 A1 45 04 A0  N...h.piPTI0.E..
    51C0: 0A 93 68 01 70 69 50 54 49 31 A1 37 A0 0B 93 68  ..h.piPTI1.7...h
    51D0: 0A 02 70 69 50 54 49 32 A1 29 A0 0B 93 68 0A 03  ..piPTI2.)...h..
    51E0: 70 69 50 54 49 33 A1 1B A0 0B 93 68 0A 04 70 69  piPTI3.....h..pi
    51F0: 50 54 49 34 A1 0D A0 0B 93 68 0A 05 70 69 50 54  PTI4.....h..piPT
    5200: 49 35 A0 0E 93 44 49 53 50 0A 3F 70 01 50 54 49  I5...DISP.?p.PTI
    5210: 30 A1 1A A0 18 90 44 49 53 30 7F 7B 44 49 53 50  0.....DIS0.{DISP
    5220: 0A 3E 00 0A 3E 00 70 00 50 54 49 30 70 50 54 49  .>..>.p.PTI0pPTI
    5230: 5F 60 70 00 61 A2 0E 60 A0 07 7B 60 01 00 75 61  _`p.a..`..{`..ua
    5240: 7A 60 01 60 70 76 61 4E 4F 50 54 70 00 57 54 45  z`.`pvaNOPTp.WTE
    5250: 4E 5B 82 41 66 53 41 54 32 08 5F 41 44 52 01 08  N[.AfSAT2._ADR..
    5260: 42 35 45 4E 00 08 42 41 5F 35 00 08 53 42 41 52  B5EN..BA_5..SBAR
    5270: 0C 00 F0 B6 F0 08 4F 53 56 52 00 5B 80 53 41 54  ......OSVR.[.SAT
    5280: 58 02 00 0A 44 5B 81 43 04 53 41 54 58 00 56 49  X...D[.C.SATX.VI
    5290: 44 49 20 00 30 53 54 43 4C 10 00 40 0C 42 41 30  DI .0STCL..@.BA0
    52A0: 35 20 00 40 0C 57 54 45 4E 01 00 0F 44 49 53 30  5 .@.WTEN...DIS0
    52B0: 01 44 49 53 31 01 44 49 53 32 01 44 49 53 33 01  .DIS1.DIS2.DIS3.
    52C0: 44 49 53 34 01 44 49 53 35 01 5B 81 0E 53 41 54  DIS4.DIS5.[..SAT
    52D0: 58 00 00 40 21 44 49 53 50 06 14 39 47 42 41 41  X..@!DISP..9GBAA
    52E0: 08 70 42 41 30 35 42 41 5F 35 A0 1C 91 93 42 41  .pBA05BA_5....BA
    52F0: 5F 35 FF 92 93 53 54 43 4C 0B 01 01 70 00 42 35  _5...STCL...p.B5
    5300: 45 4E A4 53 42 41 52 A1 0C 70 01 42 35 45 4E A4  EN.SBAR..p.B5EN.
    5310: 42 41 5F 35 5B 80 42 41 52 35 00 47 42 41 41 0B  BA_5[.BAR5.GBAA.
    5320: 00 10 5B 81 41 12 42 41 52 35 00 4E 4F 50 54 05  ..[.A.BAR5.NOPT.
    5330: 00 4B 05 50 54 49 30 01 50 54 49 31 01 50 54 49  .K.PTI0.PTI1.PTI
    5340: 32 01 50 54 49 33 01 50 54 49 34 01 50 54 49 35  2.PTI3.PTI4.PTI5
    5350: 01 50 54 49 36 01 50 54 49 37 01 00 48 85 43 53  .PTI6.PTI7..H.CS
    5360: 54 30 01 00 4F 03 00 07 42 53 59 30 01 00 38 44  T0..O...BSY0..8D
    5370: 45 54 30 04 00 04 49 50 4D 30 04 00 14 44 44 49  ET0...IPM0...DDI
    5380: 30 04 00 4C 35 43 53 54 31 01 00 4F 03 00 07 42  0..L5CST1..O...B
    5390: 53 59 31 01 00 38 44 45 54 31 04 00 04 49 50 4D  SY1..8DET1...IPM
    53A0: 31 04 00 14 44 44 49 31 04 00 4C 35 43 53 54 32  1...DDI1..L5CST2
    53B0: 01 00 4F 03 00 07 42 53 59 32 01 00 38 44 45 54  ..O...BSY2..8DET
    53C0: 32 04 00 04 49 50 4D 32 04 00 14 44 44 49 32 04  2...IPM2...DDI2.
    53D0: 00 4C 35 43 53 54 33 01 00 4F 03 00 07 42 53 59  .L5CST3..O...BSY
    53E0: 33 01 00 38 44 45 54 33 04 00 04 49 50 4D 33 04  3..8DET3...IPM3.
    53F0: 00 14 44 44 49 33 04 00 4C 35 43 53 54 34 01 00  ..DDI3..L5CST4..
    5400: 4F 03 00 07 42 53 59 34 01 00 38 44 45 54 34 04  O...BSY4..8DET4.
    5410: 00 04 49 50 4D 34 04 00 14 44 44 49 34 04 00 4C  ..IPM4...DDI4..L
    5420: 35 43 53 54 35 01 00 4F 03 00 07 42 53 59 35 01  5CST5..O...BSY5.
    5430: 00 38 44 45 54 35 04 00 04 49 50 4D 35 04 00 14  .8DET5...IPM5...
    5440: 44 44 49 35 04 5B 81 0E 42 41 52 35 00 00 40 06  DDI5.[..BAR5..@.
    5450: 50 54 49 5F 06 14 0A 5F 49 4E 49 00 47 42 41 41  PTI_..._INI.GBAA
    5460: 5B 82 4A 19 50 52 49 44 08 5F 41 44 52 00 08 53  [.J.PRID._ADR..S
    5470: 50 54 4D 11 17 0A 14 78 00 00 00 0F 00 00 00 78  PTM....x.......x
    5480: 00 00 00 0F 00 00 00 1F 00 00 00 14 0B 5F 47 54  ............._GT
    5490: 4D 00 A4 53 50 54 4D 14 0C 5F 53 54 4D 03 70 68  M..SPTM.._STM.ph
    54A0: 53 50 54 4D 14 3A 5F 50 53 30 00 47 42 41 41 A0  SPTM.:_PS0.GBAA.
    54B0: 2F 90 91 92 95 4F 53 56 52 0A 0C 93 4F 53 56 52  /....OSVR...OSVR
    54C0: 00 42 35 45 4E A0 19 49 50 4D 32 70 0A 32 60 A2  .B5EN..IPM2p.2`.
    54D0: 0F 90 93 42 53 59 32 01 60 5B 22 0A FA 76 60 14  ...BSY2.`["..v`.
    54E0: 06 5F 50 53 33 00 5B 82 49 08 50 5F 44 30 08 5F  ._PS3.[.I.P_D0._
    54F0: 41 44 52 00 14 24 5F 53 54 41 00 47 42 41 41 A0  ADR..$_STA.GBAA.
    5500: 09 93 42 35 45 4E 00 A4 00 A0 0B 93 44 45 54 30  ..B5EN......DET0
    5510: 0A 03 A4 0A 0F A1 03 A4 00 08 53 31 32 50 00 14  ..........S12P..
    5520: 34 5F 50 53 30 00 47 42 41 41 A0 29 90 90 95 4F  4_PS0.GBAA.)...O
    5530: 53 56 52 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E  SVR....OSVR.B5EN
    5540: 70 0A 32 60 A2 0F 90 93 42 53 59 30 01 60 5B 22  p.2`....BSY0.`["
    5550: 0A FA 76 60 14 06 5F 50 53 33 00 14 15 5F 47 54  ..v`.._PS3..._GT
    5560: 46 00 70 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4  F.p.....F.....`.
    5570: 60 5B 82 49 08 50 5F 44 31 08 5F 41 44 52 01 14  `[.I.P_D1._ADR..
    5580: 24 5F 53 54 41 00 47 42 41 41 A0 09 93 42 35 45  $_STA.GBAA...B5E
    5590: 4E 00 A4 00 A0 0B 93 44 45 54 32 0A 03 A4 0A 0F  N......DET2.....
    55A0: A1 03 A4 00 08 53 31 32 50 00 14 34 5F 50 53 30  .....S12P..4_PS0
    55B0: 00 47 42 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C  .GBAA.)...OSVR..
    55C0: 92 93 4F 53 56 52 00 42 35 45 4E 70 0A 32 60 A2  ..OSVR.B5ENp.2`.
    55D0: 0F 90 93 42 53 59 32 01 60 5B 22 0A FA 76 60 14  ...BSY2.`["..v`.
    55E0: 06 5F 50 53 33 00 14 15 5F 47 54 46 00 70 11 0A  ._PS3..._GTF.p..
    55F0: 0A 07 03 46 00 00 00 A0 EF 60 A4 60 5B 82 4B 1A  ...F.....`.`[.K.
    5600: 53 45 43 44 08 5F 41 44 52 0A 02 08 53 50 54 4D  SECD._ADR...SPTM
    5610: 11 17 0A 14 78 00 00 00 0F 00 00 00 78 00 00 00  ....x.......x...
    5620: 0F 00 00 00 1F 00 00 00 14 0B 5F 47 54 4D 00 A4  .........._GTM..
    5630: 53 50 54 4D 14 0C 5F 53 54 4D 03 70 68 53 50 54  SPTM.._STM.phSPT
    5640: 4D 14 46 05 5F 50 53 30 00 47 42 41 41 A0 4A 04  M.F._PS0.GBAA.J.
    5650: 90 91 92 95 4F 53 56 52 0A 0C 93 4F 53 56 52 00  ....OSVR...OSVR.
    5660: 42 35 45 4E A0 19 49 50 4D 31 70 0A 32 60 A2 0F  B5EN..IPM1p.2`..
    5670: 90 93 42 53 59 31 01 60 5B 22 0A FA 76 60 A0 19  ..BSY1.`["..v`..
    5680: 49 50 4D 33 70 0A 32 60 A2 0F 90 93 42 53 59 33  IPM3p.2`....BSY3
    5690: 01 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00 5B  .`["..v`.._PS3.[
    56A0: 82 43 08 53 5F 44 30 08 5F 41 44 52 00 14 24 5F  .C.S_D0._ADR..$_
    56B0: 53 54 41 00 47 42 41 41 A0 09 93 42 35 45 4E 00  STA.GBAA...B5EN.
    56C0: A4 00 A0 0B 93 44 45 54 31 0A 03 A4 0A 0F A1 03  .....DET1.......
    56D0: A4 00 14 34 5F 50 53 30 00 47 42 41 41 A0 29 90  ...4_PS0.GBAA.).
    56E0: 90 95 4F 53 56 52 0A 0C 92 93 4F 53 56 52 00 42  ..OSVR....OSVR.B
    56F0: 35 45 4E 70 0A 32 60 A2 0F 90 93 42 53 59 31 01  5ENp.2`....BSY1.
    5700: 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00 14 15  `["..v`.._PS3...
    5710: 5F 47 54 46 00 70 11 0A 0A 07 03 46 00 00 00 A0  _GTF.p.....F....
    5720: EF 60 A4 60 5B 82 43 08 53 5F 44 31 08 5F 41 44  .`.`[.C.S_D1._AD
    5730: 52 01 14 24 5F 53 54 41 00 47 42 41 41 A0 09 93  R..$_STA.GBAA...
    5740: 42 35 45 4E 00 A4 00 A0 0B 93 44 45 54 33 0A 03  B5EN......DET3..
    5750: A4 0A 0F A1 03 A4 00 14 34 5F 50 53 30 00 47 42  ........4_PS0.GB
    5760: 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F  AA.)...OSVR....O
    5770: 53 56 52 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93  SVR.B5ENp.2`....
    5780: 42 53 59 33 01 60 5B 22 0A FA 76 60 14 06 5F 50  BSY3.`["..v`.._P
    5790: 53 33 00 14 15 5F 47 54 46 00 70 11 0A 0A 07 03  S3..._GTF.p.....
    57A0: 46 00 00 00 A0 EF 60 A4 60 14 4A 10 45 4E 50 5F  F.....`.`.J.ENP_
    57B0: 02 A0 0C 93 68 00 70 80 69 00 44 49 53 30 A1 4F  ....h.p.i.DIS0.O
    57C0: 04 A0 0C 93 68 01 70 80 69 00 44 49 53 31 A1 3F  ....h.p.i.DIS1.?
    57D0: A0 0D 93 68 0A 02 70 80 69 00 44 49 53 32 A1 2F  ...h..p.i.DIS2./
    57E0: A0 0D 93 68 0A 03 70 80 69 00 44 49 53 33 A1 1F  ...h..p.i.DIS3..
    57F0: A0 0D 93 68 0A 04 70 80 69 00 44 49 53 34 A1 0F  ...h..p.i.DIS4..
    5800: A0 0D 93 68 0A 05 70 80 69 00 44 49 53 35 70 01  ...h..p.i.DIS5p.
    5810: 57 54 45 4E A0 0A 93 68 00 70 69 50 54 49 30 A1  WTEN...h.piPTI0.
    5820: 45 04 A0 0A 93 68 01 70 69 50 54 49 31 A1 37 A0  E....h.piPTI1.7.
    5830: 0B 93 68 0A 02 70 69 50 54 49 32 A1 29 A0 0B 93  ..h..piPTI2.)...
    5840: 68 0A 03 70 69 50 54 49 33 A1 1B A0 0B 93 68 0A  h..piPTI3.....h.
    5850: 04 70 69 50 54 49 34 A1 0D A0 0B 93 68 0A 05 70  .piPTI4.....h..p
    5860: 69 50 54 49 35 A0 0E 93 44 49 53 50 0A 3F 70 01  iPTI5...DISP.?p.
    5870: 50 54 49 30 A1 1A A0 18 90 44 49 53 30 7F 7B 44  PTI0.....DIS0.{D
    5880: 49 53 50 0A 3E 00 0A 3E 00 70 00 50 54 49 30 70  ISP.>..>.p.PTI0p
    5890: 50 54 49 5F 60 70 00 61 A2 0E 60 A0 07 7B 60 01  PTI_`p.a..`..{`.
    58A0: 00 75 61 7A 60 01 60 70 76 61 4E 4F 50 54 70 00  .uaz`.`pvaNOPTp.
    58B0: 57 54 45 4E 5B 82 4C B3 50 43 49 32 08 5F 48 49  WTEN[.L.PCI2._HI
    58C0: 44 0C 41 D0 0A 08 08 5F 43 49 44 0C 41 D0 0A 03  D.A...._CID.A...
    58D0: 08 5F 41 44 52 00 14 0A 5E 42 4E 30 32 00 A4 0A  ._ADR...^BN02...
    58E0: 02 14 0B 5F 42 42 4E 00 A4 42 4E 30 32 08 5F 55  ..._BBN..BN02._U
    58F0: 49 44 0A 02 14 16 5F 50 52 54 00 A0 0A 50 49 43  ID...._PRT...PIC
    5900: 4D A4 41 52 30 32 A4 50 44 30 32 08 43 50 52 42  M.AR02.PD02.CPRB
    5910: 01 08 4C 56 47 41 0A 00 08 53 54 41 56 0A 0F 08  ..LVGA...STAV...
    5920: 42 52 42 5F 0B 80 00 08 42 52 4C 5F 0B 40 00 08  BRB_....BRL_.@..
    5930: 49 4F 42 5F 0B 00 70 08 49 4F 4C 5F 0B 00 30 08  IOB_..p.IOL_..0.
    5940: 4D 42 42 5F 0C 00 00 00 CA 08 4D 42 4C 5F 0C 00  MBB_......MBL_..
    5950: 00 00 01 08 4D 41 42 4C 0E 00 00 40 20 C0 02 00  ....MABL...@ ...
    5960: 00 08 4D 41 42 48 0C 00 00 01 00 08 4D 41 4D 4C  ..MABH......MAML
    5970: 0C 00 00 01 00 08 4D 41 4D 48 0C 00 00 01 00 08  ......MAMH......
    5980: 4D 41 4C 4C 0E 00 00 00 93 59 00 00 00 08 4D 41  MALL.....Y....MA
    5990: 4C 48 0C 00 00 01 00 08 50 52 58 4D 0B 00 00 08  LH......PRXM....
    59A0: 43 52 53 32 11 48 09 0A 94 88 0D 00 02 0C 00 00  CRS2.H..........
    59B0: 00 80 00 FF 00 00 00 80 00 88 0D 00 01 0C 03 00  ................
    59C0: 00 00 00 00 00 00 00 00 00 88 0D 00 01 0C 03 00  ................
    59D0: 00 00 00 00 00 00 00 00 00 87 17 00 00 0C 03 00  ................
    59E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    59F0: 00 00 00 87 17 00 00 0C 03 00 00 00 00 00 00 00  ................
    5A00: 80 FF FF FF FF 00 00 00 00 00 00 00 80 8A 2B 00  ..............+.
    5A10: 00 0C 03 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5A20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5A30: 00 00 00 00 00 00 00 00 00 00 00 79 00 14 0B 5F  ...........y..._
    5A40: 53 54 41 00 A4 53 54 41 56 14 4A 19 5F 43 52 53  STA..STAV.J._CRS
    5A50: 08 8B 43 52 53 32 0A 08 4D 49 4E 32 8B 43 52 53  ..CRS2..MIN2.CRS
    5A60: 32 0A 0A 4D 41 58 32 8B 43 52 53 32 0A 0E 4C 45  2..MAX2.CRS2..LE
    5A70: 4E 32 70 42 52 42 5F 4D 49 4E 32 70 42 52 4C 5F  N2pBRB_MIN2pBRL_
    5A80: 4C 45 4E 32 70 4C 45 4E 32 61 72 4D 49 4E 32 76  LEN2pLEN2arMIN2v
    5A90: 61 4D 41 58 32 8B 43 52 53 32 0A 28 4D 49 4E 34  aMAX2.CRS2.(MIN4
    5AA0: 8B 43 52 53 32 0A 2A 4D 41 58 34 8B 43 52 53 32  .CRS2.*MAX4.CRS2
    5AB0: 0A 2E 4C 45 4E 34 70 49 4F 42 5F 4D 49 4E 34 70  ..LEN4pIOB_MIN4p
    5AC0: 49 4F 4C 5F 4C 45 4E 34 70 4C 45 4E 34 61 72 4D  IOL_LEN4pLEN4arM
    5AD0: 49 4E 34 76 61 4D 41 58 34 A0 4D 07 4C 56 47 41  IN4vaMAX4.M.LVGA
    5AE0: 8B 43 52 53 32 0A 18 49 4D 4E 32 8B 43 52 53 32  .CRS2..IMN2.CRS2
    5AF0: 0A 1A 49 4D 58 32 8B 43 52 53 32 0A 1E 49 4C 4E  ..IMX2.CRS2..ILN
    5B00: 32 70 0B B0 03 49 4D 4E 32 70 0B DF 03 49 4D 58  2p...IMN2p...IMX
    5B10: 32 70 0A 30 49 4C 4E 32 8A 43 52 53 32 0A 3A 56  2p.0ILN2.CRS2.:V
    5B20: 4D 4E 32 8A 43 52 53 32 0A 3E 56 4D 58 32 8A 43  MN2.CRS2.>VMX2.C
    5B30: 52 53 32 0A 46 56 4C 4E 32 70 0C 00 00 0A 00 56  RS2.FVLN2p.....V
    5B40: 4D 4E 32 70 0C FF FF 0B 00 56 4D 58 32 70 0C 00  MN2p.....VMX2p..
    5B50: 00 02 00 56 4C 4E 32 8A 43 52 53 32 0A 54 4D 49  ...VLN2.CRS2.TMI
    5B60: 4E 35 8A 43 52 53 32 0A 58 4D 41 58 35 8A 43 52  N5.CRS2.XMAX5.CR
    5B70: 53 32 0A 60 4C 45 4E 35 70 4D 42 42 5F 4D 49 4E  S2.`LEN5pMBB_MIN
    5B80: 35 70 4D 42 4C 5F 4C 45 4E 35 70 4C 45 4E 35 61  5pMBL_LEN5pLEN5a
    5B90: 72 4D 49 4E 35 76 61 4D 41 58 35 8F 43 52 53 32  rMIN5vaMAX5.CRS2
    5BA0: 0A 72 4D 49 4E 39 8F 43 52 53 32 0A 7A 4D 41 58  .rMIN9.CRS2.zMAX
    5BB0: 39 8F 43 52 53 32 0A 8A 4C 45 4E 39 70 4D 41 42  9.CRS2..LEN9pMAB
    5BC0: 4C 4D 49 4E 39 70 4D 41 4C 4C 4C 45 4E 39 70 4C  LMIN9pMALLLEN9pL
    5BD0: 45 4E 39 60 72 4D 49 4E 39 76 60 4D 41 58 39 A4  EN9`rMIN9v`MAX9.
    5BE0: 43 52 53 32 14 42 13 5F 4F 53 43 0C 08 53 55 50  CRS2.B._OSC..SUP
    5BF0: 50 00 08 43 54 52 4C 00 8A 6B 00 43 44 57 31 8A  P..CTRL..k.CDW1.
    5C00: 6B 0A 04 43 44 57 32 8A 6B 0A 08 43 44 57 33 A0  k..CDW2.k..CDW3.
    5C10: 48 0F 93 68 11 13 0A 10 5B 4D DB 33 F7 1F 1C 40  H..h....[M.3...@
    5C20: 96 57 74 41 C0 3D D7 66 70 43 44 57 32 53 55 50  .WtA.=.fpCDW2SUP
    5C30: 50 70 43 44 57 33 43 54 52 4C A0 18 92 93 7B 53  PpCDW3CTRL....{S
    5C40: 55 50 50 0A 16 00 0A 16 7B 43 54 52 4C 0A 1E 43  UPP.....{CTRL..C
    5C50: 54 52 4C A0 11 92 50 45 48 50 7B 43 54 52 4C 0A  TRL...PEHP{CTRL.
    5C60: 1E 43 54 52 4C A0 11 92 53 48 50 43 7B 43 54 52  .CTRL...SHPC{CTR
    5C70: 4C 0A 1D 43 54 52 4C A0 11 92 50 45 50 4D 7B 43  L..CTRL...PEPM{C
    5C80: 54 52 4C 0A 1B 43 54 52 4C A0 11 92 50 45 45 52  TRL..CTRL...PEER
    5C90: 7B 43 54 52 4C 0A 15 43 54 52 4C A0 11 92 50 45  {CTRL..CTRL...PE
    5CA0: 43 53 7B 43 54 52 4C 0A 0F 43 54 52 4C A0 10 92  CS{CTRL..CTRL...
    5CB0: 93 69 01 7D 43 44 57 31 0A 08 43 44 57 31 A0 15  .i.}CDW1..CDW1..
    5CC0: 5B 12 50 4F 53 43 00 7B 43 54 52 4C 50 4F 53 43  [.POSC.{CTRLPOSC
    5CD0: 43 54 52 4C A0 16 92 93 43 44 57 33 43 54 52 4C  CTRL....CDW3CTRL
    5CE0: 7D 43 44 57 31 0A 10 43 44 57 31 70 43 54 52 4C  }CDW1..CDW1pCTRL
    5CF0: 43 44 57 33 A0 11 5B 12 50 4F 53 53 00 70 53 55  CDW3..[.POSS.pSU
    5D00: 50 50 50 4F 53 53 A4 6B A1 0E 7D 43 44 57 31 0A  PPPOSS.k..}CDW1.
    5D10: 04 43 44 57 31 A4 6B 5B 82 0C 44 30 34 38 08 5F  .CDW1.k[..D048._
    5D20: 41 44 52 0A 02 5B 82 0C 44 30 34 39 08 5F 41 44  ADR..[..D049._AD
    5D30: 52 0A 03 5B 82 46 04 47 50 50 30 08 5F 41 44 52  R..[.F.GPP0._ADR
    5D40: 0C 01 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    5D50: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    5D60: 43 4D A4 47 30 34 41 A4 50 30 34 41 5B 82 0D 44  CM.G04A.P04A[..D
    5D70: 30 43 31 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0C1._ADR...[.F.G
    5D80: 50 50 31 08 5F 41 44 52 0C 02 00 01 00 14 0F 5F  PP1._ADR......._
    5D90: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    5DA0: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 34 42 A4  PRT...PICM.G04B.
    5DB0: 50 30 34 42 5B 82 0D 44 30 43 32 08 5F 41 44 52  P04B[..D0C2._ADR
    5DC0: 0B FF FF 5B 82 46 04 47 50 50 32 08 5F 41 44 52  ...[.F.GPP2._ADR
    5DD0: 0C 03 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    5DE0: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    5DF0: 43 4D A4 47 30 34 43 A4 50 30 34 43 5B 82 0D 44  CM.G04C.P04C[..D
    5E00: 30 43 33 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0C3._ADR...[.F.G
    5E10: 50 50 33 08 5F 41 44 52 0C 04 00 01 00 14 0F 5F  PP3._ADR......._
    5E20: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    5E30: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 34 44 A4  PRT...PICM.G04D.
    5E40: 50 30 34 44 5B 82 0D 44 30 43 34 08 5F 41 44 52  P04D[..D0C4._ADR
    5E50: 0B FF FF 5B 82 46 04 47 50 50 34 08 5F 41 44 52  ...[.F.GPP4._ADR
    5E60: 0C 05 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    5E70: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    5E80: 43 4D A4 47 30 34 45 A4 50 30 34 45 5B 82 0D 44  CM.G04E.P04E[..D
    5E90: 30 43 35 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0C5._ADR...[.F.G
    5EA0: 50 50 35 08 5F 41 44 52 0C 06 00 01 00 14 0F 5F  PP5._ADR......._
    5EB0: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    5EC0: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 34 46 A4  PRT...PICM.G04F.
    5ED0: 50 30 34 46 5B 82 0D 44 30 43 36 08 5F 41 44 52  P04F[..D0C6._ADR
    5EE0: 0B FF FF 5B 82 46 04 47 50 50 36 08 5F 41 44 52  ...[.F.GPP6._ADR
    5EF0: 0C 07 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    5F00: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    5F10: 43 4D A4 47 30 35 30 A4 50 30 35 30 5B 82 0D 44  CM.G050.P050[..D
    5F20: 30 43 37 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0C7._ADR...[.F.G
    5F30: 50 50 37 08 5F 41 44 52 0C 01 00 02 00 14 0F 5F  PP7._ADR......._
    5F40: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    5F50: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 31 A4  PRT...PICM.G051.
    5F60: 50 30 35 31 5B 82 0D 44 30 43 38 08 5F 41 44 52  P051[..D0C8._ADR
    5F70: 0B FF FF 5B 82 46 04 47 50 50 38 08 5F 41 44 52  ...[.F.GPP8._ADR
    5F80: 0C 02 00 02 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    5F90: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    5FA0: 43 4D A4 47 30 35 32 A4 50 30 35 32 5B 82 0D 44  CM.G052.P052[..D
    5FB0: 30 43 39 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0C9._ADR...[.F.G
    5FC0: 50 50 39 08 5F 41 44 52 0C 01 00 03 00 14 0F 5F  PP9._ADR......._
    5FD0: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    5FE0: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 33 A4  PRT...PICM.G053.
    5FF0: 50 30 35 33 5B 82 0D 44 30 43 41 08 5F 41 44 52  P053[..D0CA._ADR
    6000: 0B FF FF 5B 82 46 04 47 50 50 41 08 5F 41 44 52  ...[.F.GPPA._ADR
    6010: 0C 02 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    6020: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    6030: 43 4D A4 47 30 35 34 A4 50 30 35 34 5B 82 0D 44  CM.G054.P054[..D
    6040: 30 43 42 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0CB._ADR...[.F.G
    6050: 50 50 42 08 5F 41 44 52 0C 03 00 03 00 14 0F 5F  PPB._ADR......._
    6060: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    6070: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 35 A4  PRT...PICM.G055.
    6080: 50 30 35 35 5B 82 0D 44 30 43 43 08 5F 41 44 52  P055[..D0CC._ADR
    6090: 0B FF FF 5B 82 46 04 47 50 50 43 08 5F 41 44 52  ...[.F.GPPC._ADR
    60A0: 0C 04 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    60B0: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    60C0: 43 4D A4 47 30 35 36 A4 50 30 35 36 5B 82 0D 44  CM.G056.P056[..D
    60D0: 30 43 44 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0CD._ADR...[.F.G
    60E0: 50 50 44 08 5F 41 44 52 0C 05 00 03 00 14 0F 5F  PPD._ADR......._
    60F0: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    6100: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 37 A4  PRT...PICM.G057.
    6110: 50 30 35 37 5B 82 0D 44 30 43 45 08 5F 41 44 52  P057[..D0CE._ADR
    6120: 0B FF FF 5B 82 46 04 47 50 50 45 08 5F 41 44 52  ...[.F.GPPE._ADR
    6130: 0C 06 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    6140: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    6150: 43 4D A4 47 30 35 38 A4 50 30 35 38 5B 82 0D 44  CM.G058.P058[..D
    6160: 30 43 46 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0CF._ADR...[.F.G
    6170: 50 50 46 08 5F 41 44 52 0C 07 00 03 00 14 0F 5F  PPF._ADR......._
    6180: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    6190: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 39 A4  PRT...PICM.G059.
    61A0: 50 30 35 39 5B 82 0D 44 30 44 30 08 5F 41 44 52  P059[..D0D0._ADR
    61B0: 0B FF FF 5B 82 46 04 47 50 50 47 08 5F 41 44 52  ...[.F.GPPG._ADR
    61C0: 0C 01 00 04 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    61D0: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    61E0: 43 4D A4 47 30 35 41 A4 50 30 35 41 5B 82 0D 44  CM.G05A.P05A[..D
    61F0: 30 44 31 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0D1._ADR...[.F.G
    6200: 50 50 48 08 5F 41 44 52 0C 02 00 04 00 14 0F 5F  PPH._ADR......._
    6210: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    6220: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 42 A4  PRT...PICM.G05B.
    6230: 50 30 35 42 5B 82 0D 44 30 44 32 08 5F 41 44 52  P05B[..D0D2._ADR
    6240: 0B FF FF 5B 82 46 04 47 50 31 35 08 5F 41 44 52  ...[.F.GP15._ADR
    6250: 0C 01 00 05 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    6260: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    6270: 43 4D A4 47 30 35 43 A4 50 30 35 43 5B 82 0D 44  CM.G05C.P05C[..D
    6280: 30 44 33 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0D3._ADR...[.F.G
    6290: 50 32 35 08 5F 41 44 52 0C 02 00 05 00 14 0F 5F  P25._ADR......._
    62A0: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    62B0: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 44 A4  PRT...PICM.G05D.
    62C0: 50 30 35 44 5B 82 0D 44 30 44 34 08 5F 41 44 52  P05D[..D0D4._ADR
    62D0: 0B FF FF 5B 82 46 04 47 50 33 35 08 5F 41 44 52  ...[.F.GP35._ADR
    62E0: 0C 03 00 05 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    62F0: 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    6300: 43 4D A4 47 30 35 45 A4 50 30 35 45 5B 82 0D 44  CM.G05E.P05E[..D
    6310: 30 44 35 08 5F 41 44 52 0B FF FF 5B 82 46 04 47  0D5._ADR...[.F.G
    6320: 50 34 35 08 5F 41 44 52 0C 04 00 05 00 14 0F 5F  P45._ADR......._
    6330: 50 52 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F  PRW..GPRW......_
    6340: 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 35 46 A4  PRT...PICM.G05F.
    6350: 50 30 35 46 5B 82 0D 44 30 44 36 08 5F 41 44 52  P05F[..D0D6._ADR
    6360: 0B FF FF 5B 82 4C 07 47 50 31 37 08 5F 41 44 52  ...[.L.GP17._ADR
    6370: 0C 01 00 07 00 14 0F 5F 50 52 57 00 A4 47 50 52  ......._PRW..GPR
    6380: 57 0A 0B 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49  W......_PRT...PI
    6390: 43 4D A4 47 30 36 30 A4 50 30 36 30 5B 82 0B 44  CM.G060.P060[..D
    63A0: 30 36 31 08 5F 41 44 52 00 5B 82 0B 44 30 36 32  061._ADR.[..D062
    63B0: 08 5F 41 44 52 01 5B 82 0C 44 30 36 33 08 5F 41  ._ADR.[..D063._A
    63C0: 44 52 0A 02 5B 82 0C 44 30 36 34 08 5F 41 44 52  DR..[..D064._ADR
    63D0: 0A 03 5B 82 0D 44 30 44 37 08 5F 41 44 52 0B FF  ..[..D0D7._ADR..
    63E0: FF 5B 82 0F 47 50 32 37 08 5F 41 44 52 0C 02 00  .[..GP27._ADR...
    63F0: 07 00 5B 82 80 CA 02 50 43 49 30 08 5F 48 49 44  ..[....PCI0._HID
    6400: 0C 41 D0 0A 08 08 5F 43 49 44 0C 41 D0 0A 03 08  .A...._CID.A....
    6410: 5F 41 44 52 00 14 09 5E 42 4E 30 30 00 A4 00 14  _ADR...^BN00....
    6420: 0B 5F 42 42 4E 00 A4 42 4E 30 30 08 5F 55 49 44  ._BBN..BN00._UID
    6430: 00 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 41  ..._PRT...PICM.A
    6440: 52 30 30 A4 50 44 30 30 5B 80 4E 41 50 43 02 0A  R00.PD00[.NAPC..
    6450: B4 0A 0C 5B 81 15 4E 41 50 43 03 4E 41 45 58 20  ...[..NAPC.NAEX 
    6460: 4E 41 50 58 20 4E 41 50 44 20 5B 01 4E 41 50 4D  NAPX NAPD [.NAPM
    6470: 00 14 4C 08 4E 41 50 45 00 5B 23 4E 41 50 4D FF  ..L.NAPE.[#NAPM.
    6480: FF 70 00 4E 41 45 58 70 0C 84 41 00 49 4E 41 50  .p.NAEXp..A.INAP
    6490: 58 70 4E 41 50 44 60 7A 60 0A 08 60 7B 60 0A 0F  XpNAPD`z`..`{`..
    64A0: 60 A2 40 05 92 95 60 01 70 00 4E 41 45 58 74 60  `.@...`.p.NAEXt`
    64B0: 01 61 77 61 0C 00 00 10 00 61 A0 13 94 60 0A 04  .awa.....a...`..
    64C0: 70 01 4E 41 45 58 74 61 0C 00 00 40 00 61 72 61  p.NAEXta...@.ara
    64D0: 0C 00 00 30 14 61 70 61 4E 41 50 58 70 4E 41 50  ...0.apaNAPXpNAP
    64E0: 44 62 7B 62 0C EF FF FF FF 62 70 62 4E 41 50 44  Db{b.....bpbNAPD
    64F0: 76 60 70 00 4E 41 45 58 5B 27 4E 41 50 4D 5B 82  v`p.NAEX['NAPM[.
    6500: 49 06 41 4D 44 4E 08 5F 48 49 44 0C 41 D0 0C 01  I.AMDN._HID.A...
    6510: 08 5F 55 49 44 0A C8 08 5F 53 54 41 0A 0F 08 4E  ._UID..._STA...N
    6520: 50 54 52 11 11 0A 0E 86 09 00 01 00 00 00 00 00  PTR.............
    6530: 00 00 00 79 00 14 33 5F 43 52 53 00 8A 4E 50 54  ...y..3_CRS..NPT
    6540: 52 0A 08 50 4C 5F 5F 8A 4E 50 54 52 0A 04 50 42  R..PL__.NPTR..PB
    6550: 5F 5F 70 50 45 42 53 50 42 5F 5F 70 50 45 42 4C  __pPEBSPB__pPEBL
    6560: 50 4C 5F 5F A4 4E 50 54 52 14 0B 4E 50 54 53 01  PL__.NPTR..NPTS.
    6570: 41 50 54 53 68 14 15 4E 57 41 4B 01 41 57 41 4B  APTSh..NWAK.AWAK
    6580: 68 A0 09 50 49 43 4D 4E 41 50 45 08 43 50 52 42  h..PICMNAPE.CPRB
    6590: 01 08 4C 56 47 41 0A 01 08 53 54 41 56 0A 0F 08  ..LVGA...STAV...
    65A0: 42 52 42 5F 0B 00 00 08 42 52 4C 5F 0B 40 00 08  BRB_....BRL_.@..
    65B0: 50 52 58 4D 0B 00 00 08 49 4F 42 5F 0B 00 10 08  PRXM....IOB_....
    65C0: 49 4F 4C 5F 0B 00 30 08 4D 42 42 5F 0C 00 00 00  IOL_..0.MBB_....
    65D0: F0 08 4D 42 4C 5F 0C 00 00 00 01 08 4D 41 42 4C  ..MBL_......MABL
    65E0: 0E 00 00 40 20 80 04 00 00 08 4D 41 42 48 0C 00  ...@ .....MABH..
    65F0: 00 01 00 08 4D 41 4D 4C 0C 00 00 01 00 08 4D 41  ....MAML......MA
    6600: 4D 48 0C 00 00 01 00 08 4D 41 4C 4C 0E 00 00 00  MH......MALL....
    6610: 93 59 00 00 00 08 4D 41 4C 48 0C 00 00 01 00 08  .Y....MALH......
    6620: 43 52 53 31 11 4A 0E 0A E6 88 0D 00 02 0C 00 00  CRS1.J..........
    6630: 00 00 00 7F 00 00 00 80 00 47 01 F8 0C F8 0C 01  .........G......
    6640: 08 88 0D 00 01 0C 03 00 00 00 00 FF 02 00 00 00  ................
    6650: 03 88 0D 00 01 0C 03 00 00 00 03 AF 03 00 00 B0  ................
    6660: 00 88 0D 00 01 0C 03 00 00 E0 03 F7 0C 00 00 18  ................
    6670: 09 88 0D 00 01 0C 03 00 00 00 00 00 00 00 00 00  ................
    6680: 00 88 0D 00 01 0C 03 00 00 00 0D FF 0F 00 00 00  ................
    6690: 03 87 17 00 00 0C 03 00 00 00 00 00 00 00 00 00  ................
    66A0: 00 00 00 00 00 00 00 00 00 00 00 87 17 00 00 0C  ................
    66B0: 01 00 00 00 00 00 00 0C 00 FF FF 0D 00 00 00 00  ................
    66C0: 00 00 00 02 00 87 17 00 00 0C 03 00 00 00 00 00  ................
    66D0: 00 00 02 FF FF DF FF 00 00 00 00 00 00 E0 FD 8A  ................
    66E0: 2B 00 00 0C 03 00 00 00 00 00 00 00 00 00 00 00  +...............
    66F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6700: 00 00 00 00 00 00 00 00 00 00 00 00 00 79 00 08  .............y..
    6710: 43 52 53 32 11 48 09 0A 94 88 0D 00 02 0C 00 00  CRS2.H..........
    6720: 00 80 00 FF 00 00 00 80 00 88 0D 00 01 0C 03 00  ................
    6730: 00 00 00 00 00 00 00 00 00 88 0D 00 01 0C 03 00  ................
    6740: 00 00 00 00 00 00 00 00 00 87 17 00 00 0C 03 00  ................
    6750: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6760: 00 00 00 87 17 00 00 0C 03 00 00 00 00 00 00 00  ................
    6770: 80 FF FF FF FF 00 00 00 00 00 00 00 80 8A 2B 00  ..............+.
    6780: 00 0C 03 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6790: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    67A0: 00 00 00 00 00 00 00 00 00 00 00 79 00 14 0B 5F  ...........y..._
    67B0: 53 54 41 00 A4 53 54 41 56 14 48 3B 5F 43 52 53  STA..STAV.H;_CRS
    67C0: 08 A0 4A 21 43 50 52 42 8B 43 52 53 31 0A 08 4D  ..J!CPRB.CRS1..M
    67D0: 49 4E 30 8B 43 52 53 31 0A 0A 4D 41 58 30 8B 43  IN0.CRS1..MAX0.C
    67E0: 52 53 31 0A 0E 4C 45 4E 30 70 42 52 42 5F 4D 49  RS1..LEN0pBRB_MI
    67F0: 4E 30 70 42 52 4C 5F 4C 45 4E 30 70 4C 45 4E 30  N0pBRL_LEN0pLEN0
    6800: 60 72 4D 49 4E 30 76 60 4D 41 58 30 A0 49 06 91  `rMIN0v`MAX0.I..
    6810: 91 93 49 45 52 30 01 93 49 45 52 31 01 91 93 49  ..IER0..IER1...I
    6820: 45 52 32 01 93 49 45 52 33 01 8B 43 52 53 31 0A  ER2..IER3..CRS1.
    6830: 22 49 42 58 31 8B 43 52 53 31 0A 26 49 42 4C 31  "IBX1.CRS1.&IBL1
    6840: 70 0B E7 02 49 42 58 31 70 0B E8 02 49 42 4C 31  p...IBX1p...IBL1
    6850: 8B 43 52 53 31 0A 40 49 42 4D 32 8B 43 52 53 31  .CRS1.@IBM2.CRS1
    6860: 0A 46 49 42 4C 32 70 0B 00 04 49 42 4D 32 70 0B  .FIBL2p...IBM2p.
    6870: F8 08 49 42 4C 32 8B 43 52 53 31 0A 60 4D 49 4E  ..IBL2.CRS1.`MIN
    6880: 31 8B 43 52 53 31 0A 62 4D 41 58 31 8B 43 52 53  1.CRS1.bMAX1.CRS
    6890: 31 0A 66 4C 45 4E 31 70 49 4F 42 5F 4D 49 4E 31  1.fLEN1pIOB_MIN1
    68A0: 70 49 4F 4C 5F 4C 45 4E 31 70 4C 45 4E 31 60 72  pIOL_LEN1pLEN1`r
    68B0: 4D 49 4E 31 76 60 4D 41 58 31 A0 44 09 91 93 4C  MIN1v`MAX1.D...L
    68C0: 56 47 41 01 93 4C 56 47 41 0A 55 A0 43 08 56 47  VGA..LVGA.U.C.VG
    68D0: 41 46 8B 43 52 53 31 0A 50 49 4D 4E 31 8B 43 52  AF.CRS1.PIMN1.CR
    68E0: 53 31 0A 52 49 4D 58 31 8B 43 52 53 31 0A 56 49  S1.RIMX1.CRS1.VI
    68F0: 4C 4E 31 70 0B B0 03 49 4D 4E 31 70 0B DF 03 49  LN1p...IMN1p...I
    6900: 4D 58 31 70 0A 30 49 4C 4E 31 8A 43 52 53 31 0A  MX1p.0ILN1.CRS1.
    6910: 72 56 4D 4E 31 8A 43 52 53 31 0A 76 56 4D 58 31  rVMN1.CRS1.vVMX1
    6920: 8A 43 52 53 31 0A 7E 56 4C 4E 31 70 0C 00 00 0A  .CRS1.~VLN1p....
    6930: 00 56 4D 4E 31 70 0C FF FF 0B 00 56 4D 58 31 70  .VMN1p.....VMX1p
    6940: 0C 00 00 02 00 56 4C 4E 31 70 00 56 47 41 46 8A  .....VLN1p.VGAF.
    6950: 43 52 53 31 0A A6 4D 49 4E 33 8A 43 52 53 31 0A  CRS1..MIN3.CRS1.
    6960: AA 4D 41 58 33 8A 43 52 53 31 0A B2 4C 45 4E 33  .MAX3.CRS1..LEN3
    6970: 70 4D 42 42 5F 4D 49 4E 33 70 4D 42 4C 5F 4C 45  pMBB_MIN3pMBL_LE
    6980: 4E 33 70 4C 45 4E 33 60 72 4D 49 4E 33 76 60 4D  N3pLEN3`rMIN3v`M
    6990: 41 58 33 8F 43 52 53 31 0A C4 4D 49 4E 38 8F 43  AX3.CRS1..MIN8.C
    69A0: 52 53 31 0A CC 4D 41 58 38 8F 43 52 53 31 0A DC  RS1..MAX8.CRS1..
    69B0: 4C 45 4E 38 70 4D 41 42 4C 4D 49 4E 38 70 4D 41  LEN8pMABLMIN8pMA
    69C0: 4C 4C 4C 45 4E 38 70 4C 45 4E 38 60 72 4D 49 4E  LLLEN8pLEN8`rMIN
    69D0: 38 76 60 4D 41 58 38 A4 43 52 53 31 A1 45 19 8B  8v`MAX8.CRS1.E..
    69E0: 43 52 53 32 0A 08 4D 49 4E 32 8B 43 52 53 32 0A  CRS2..MIN2.CRS2.
    69F0: 0A 4D 41 58 32 8B 43 52 53 32 0A 0E 4C 45 4E 32  .MAX2.CRS2..LEN2
    6A00: 70 42 52 42 5F 4D 49 4E 32 70 42 52 4C 5F 4C 45  pBRB_MIN2pBRL_LE
    6A10: 4E 32 70 4C 45 4E 32 61 72 4D 49 4E 32 76 61 4D  N2pLEN2arMIN2vaM
    6A20: 41 58 32 8B 43 52 53 32 0A 28 4D 49 4E 34 8B 43  AX2.CRS2.(MIN4.C
    6A30: 52 53 32 0A 2A 4D 41 58 34 8B 43 52 53 32 0A 2E  RS2.*MAX4.CRS2..
    6A40: 4C 45 4E 34 70 49 4F 42 5F 4D 49 4E 34 70 49 4F  LEN4pIOB_MIN4pIO
    6A50: 4C 5F 4C 45 4E 34 70 4C 45 4E 34 61 72 4D 49 4E  L_LEN4pLEN4arMIN
    6A60: 34 76 61 4D 41 58 34 A0 4D 07 4C 56 47 41 8B 43  4vaMAX4.M.LVGA.C
    6A70: 52 53 32 0A 18 49 4D 4E 32 8B 43 52 53 32 0A 1A  RS2..IMN2.CRS2..
    6A80: 49 4D 58 32 8B 43 52 53 32 0A 1E 49 4C 4E 32 70  IMX2.CRS2..ILN2p
    6A90: 0B B0 03 49 4D 4E 32 70 0B DF 03 49 4D 58 32 70  ...IMN2p...IMX2p
    6AA0: 0A 30 49 4C 4E 32 8A 43 52 53 32 0A 3A 56 4D 4E  .0ILN2.CRS2.:VMN
    6AB0: 32 8A 43 52 53 32 0A 3E 56 4D 58 32 8A 43 52 53  2.CRS2.>VMX2.CRS
    6AC0: 32 0A 46 56 4C 4E 32 70 0C 00 00 0A 00 56 4D 4E  2.FVLN2p.....VMN
    6AD0: 32 70 0C FF FF 0B 00 56 4D 58 32 70 0C 00 00 02  2p.....VMX2p....
    6AE0: 00 56 4C 4E 32 8A 43 52 53 32 0A 54 4D 49 4E 35  .VLN2.CRS2.TMIN5
    6AF0: 8A 43 52 53 32 0A 58 4D 41 58 35 8A 43 52 53 32  .CRS2.XMAX5.CRS2
    6B00: 0A 60 4C 45 4E 35 70 4D 42 42 5F 4D 49 4E 35 70  .`LEN5pMBB_MIN5p
    6B10: 4D 42 4C 5F 4C 45 4E 35 70 4C 45 4E 35 61 72 4D  MBL_LEN5pLEN5arM
    6B20: 49 4E 35 76 61 4D 41 58 35 8F 43 52 53 32 0A 72  IN5vaMAX5.CRS2.r
    6B30: 4D 49 4E 39 8F 43 52 53 32 0A 7A 4D 41 58 39 8F  MIN9.CRS2.zMAX9.
    6B40: 43 52 53 32 0A 8A 4C 45 4E 39 70 4D 41 42 4C 4D  CRS2..LEN9pMABLM
    6B50: 49 4E 39 70 4D 41 4C 4C 4C 45 4E 39 70 4C 45 4E  IN9pMALLLEN9pLEN
    6B60: 39 60 72 4D 49 4E 39 76 60 4D 41 58 39 A4 43 52  9`rMIN9v`MAX9.CR
    6B70: 53 32 14 42 13 5F 4F 53 43 0C 08 53 55 50 50 00  S2.B._OSC..SUPP.
    6B80: 08 43 54 52 4C 00 8A 6B 00 43 44 57 31 8A 6B 0A  .CTRL..k.CDW1.k.
    6B90: 04 43 44 57 32 8A 6B 0A 08 43 44 57 33 A0 48 0F  .CDW2.k..CDW3.H.
    6BA0: 93 68 11 13 0A 10 5B 4D DB 33 F7 1F 1C 40 96 57  .h....[M.3...@.W
    6BB0: 74 41 C0 3D D7 66 70 43 44 57 32 53 55 50 50 70  tA.=.fpCDW2SUPPp
    6BC0: 43 44 57 33 43 54 52 4C A0 18 92 93 7B 53 55 50  CDW3CTRL....{SUP
    6BD0: 50 0A 16 00 0A 16 7B 43 54 52 4C 0A 1E 43 54 52  P.....{CTRL..CTR
    6BE0: 4C A0 11 92 50 45 48 50 7B 43 54 52 4C 0A 1E 43  L...PEHP{CTRL..C
    6BF0: 54 52 4C A0 11 92 53 48 50 43 7B 43 54 52 4C 0A  TRL...SHPC{CTRL.
    6C00: 1D 43 54 52 4C A0 11 92 50 45 50 4D 7B 43 54 52  .CTRL...PEPM{CTR
    6C10: 4C 0A 1B 43 54 52 4C A0 11 92 50 45 45 52 7B 43  L..CTRL...PEER{C
    6C20: 54 52 4C 0A 15 43 54 52 4C A0 11 92 50 45 43 53  TRL..CTRL...PECS
    6C30: 7B 43 54 52 4C 0A 0F 43 54 52 4C A0 10 92 93 69  {CTRL..CTRL....i
    6C40: 01 7D 43 44 57 31 0A 08 43 44 57 31 A0 15 5B 12  .}CDW1..CDW1..[.
    6C50: 50 4F 53 43 00 7B 43 54 52 4C 50 4F 53 43 43 54  POSC.{CTRLPOSCCT
    6C60: 52 4C A0 16 92 93 43 44 57 33 43 54 52 4C 7D 43  RL....CDW3CTRL}C
    6C70: 44 57 31 0A 10 43 44 57 31 70 43 54 52 4C 43 44  DW1..CDW1pCTRLCD
    6C80: 57 33 A0 11 5B 12 50 4F 53 53 00 70 53 55 50 50  W3..[.POSS.pSUPP
    6C90: 50 4F 53 53 A4 6B A1 0E 7D 43 44 57 31 0A 04 43  POSS.k..}CDW1..C
    6CA0: 44 57 31 A4 6B 5B 82 0C 44 30 36 37 08 5F 41 44  DW1.k[..D067._AD
    6CB0: 52 0A 02 5B 82 0C 44 30 36 38 08 5F 41 44 52 0A  R..[..D068._ADR.
    6CC0: 03 5B 82 46 04 47 50 50 30 08 5F 41 44 52 0C 01  .[.F.GPP0._ADR..
    6CD0: 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    6CE0: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    6CF0: A4 47 30 36 39 A4 50 30 36 39 5B 82 0D 44 30 44  .G069.P069[..D0D
    6D00: 38 08 5F 41 44 52 0B FF FF 5B 82 35 47 50 50 31  8._ADR...[.5GPP1
    6D10: 08 5F 41 44 52 0C 02 00 01 00 14 16 5F 50 52 54  ._ADR......._PRT
    6D20: 00 A0 0A 50 49 43 4D A4 47 30 36 41 A4 50 30 36  ...PICM.G06A.P06
    6D30: 41 5B 82 0D 44 30 44 39 08 5F 41 44 52 0B FF FF  A[..D0D9._ADR...
    6D40: 5B 82 46 04 47 50 50 32 08 5F 41 44 52 0C 03 00  [.F.GPP2._ADR...
    6D50: 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    6D60: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    6D70: 47 30 36 42 A4 50 30 36 42 5B 82 0D 44 30 44 41  G06B.P06B[..D0DA
    6D80: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 33  ._ADR...[.F.GPP3
    6D90: 08 5F 41 44 52 0C 04 00 01 00 14 0F 5F 50 52 57  ._ADR......._PRW
    6DA0: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    6DB0: 00 A0 0A 50 49 43 4D A4 47 30 36 43 A4 50 30 36  ...PICM.G06C.P06
    6DC0: 43 5B 82 0D 44 30 44 42 08 5F 41 44 52 0B FF FF  C[..D0DB._ADR...
    6DD0: 5B 82 46 04 47 50 50 34 08 5F 41 44 52 0C 05 00  [.F.GPP4._ADR...
    6DE0: 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    6DF0: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    6E00: 47 30 36 44 A4 50 30 36 44 5B 82 0D 44 30 44 43  G06D.P06D[..D0DC
    6E10: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 35  ._ADR...[.F.GPP5
    6E20: 08 5F 41 44 52 0C 06 00 01 00 14 0F 5F 50 52 57  ._ADR......._PRW
    6E30: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    6E40: 00 A0 0A 50 49 43 4D A4 47 30 36 45 A4 50 30 36  ...PICM.G06E.P06
    6E50: 45 5B 82 0D 44 30 44 44 08 5F 41 44 52 0B FF FF  E[..D0DD._ADR...
    6E60: 5B 82 46 04 47 50 50 36 08 5F 41 44 52 0C 07 00  [.F.GPP6._ADR...
    6E70: 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    6E80: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    6E90: 47 30 36 46 A4 50 30 36 46 5B 82 0D 44 30 44 45  G06F.P06F[..D0DE
    6EA0: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 37  ._ADR...[.F.GPP7
    6EB0: 08 5F 41 44 52 0C 01 00 02 00 14 0F 5F 50 52 57  ._ADR......._PRW
    6EC0: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    6ED0: 00 A0 0A 50 49 43 4D A4 47 30 37 30 A4 50 30 37  ...PICM.G070.P07
    6EE0: 30 5B 82 0D 44 30 44 46 08 5F 41 44 52 0B FF FF  0[..D0DF._ADR...
    6EF0: 5B 82 46 04 47 50 50 38 08 5F 41 44 52 0C 02 00  [.F.GPP8._ADR...
    6F00: 02 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    6F10: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    6F20: 47 30 37 31 A4 50 30 37 31 5B 82 0D 44 30 45 38  G071.P071[..D0E8
    6F30: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 39  ._ADR...[.F.GPP9
    6F40: 08 5F 41 44 52 0C 01 00 03 00 14 0F 5F 50 52 57  ._ADR......._PRW
    6F50: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    6F60: 00 A0 0A 50 49 43 4D A4 47 30 37 32 A4 50 30 37  ...PICM.G072.P07
    6F70: 32 5B 82 0D 44 30 45 30 08 5F 41 44 52 0B FF FF  2[..D0E0._ADR...
    6F80: 5B 82 46 04 47 50 50 41 08 5F 41 44 52 0C 02 00  [.F.GPPA._ADR...
    6F90: 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    6FA0: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    6FB0: 47 30 37 33 A4 50 30 37 33 5B 82 0D 44 30 45 31  G073.P073[..D0E1
    6FC0: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 42  ._ADR...[.F.GPPB
    6FD0: 08 5F 41 44 52 0C 03 00 03 00 14 0F 5F 50 52 57  ._ADR......._PRW
    6FE0: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    6FF0: 00 A0 0A 50 49 43 4D A4 47 30 37 34 A4 50 30 37  ...PICM.G074.P07
    7000: 34 5B 82 0D 44 30 45 32 08 5F 41 44 52 0B FF FF  4[..D0E2._ADR...
    7010: 5B 82 46 04 47 50 50 43 08 5F 41 44 52 0C 04 00  [.F.GPPC._ADR...
    7020: 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    7030: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    7040: 47 30 37 35 A4 50 30 37 35 5B 82 0D 44 30 45 33  G075.P075[..D0E3
    7050: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 44  ._ADR...[.F.GPPD
    7060: 08 5F 41 44 52 0C 05 00 03 00 14 0F 5F 50 52 57  ._ADR......._PRW
    7070: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    7080: 00 A0 0A 50 49 43 4D A4 47 30 37 36 A4 50 30 37  ...PICM.G076.P07
    7090: 36 5B 82 0D 44 30 45 34 08 5F 41 44 52 0B FF FF  6[..D0E4._ADR...
    70A0: 5B 82 46 04 47 50 50 45 08 5F 41 44 52 0C 06 00  [.F.GPPE._ADR...
    70B0: 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    70C0: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    70D0: 47 30 37 37 A4 50 30 37 37 5B 82 0D 44 30 45 35  G077.P077[..D0E5
    70E0: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 46  ._ADR...[.F.GPPF
    70F0: 08 5F 41 44 52 0C 07 00 03 00 14 0F 5F 50 52 57  ._ADR......._PRW
    7100: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    7110: 00 A0 0A 50 49 43 4D A4 47 30 37 38 A4 50 30 37  ...PICM.G078.P07
    7120: 38 5B 82 0D 44 30 45 36 08 5F 41 44 52 0B FF FF  8[..D0E6._ADR...
    7130: 5B 82 46 04 47 50 50 47 08 5F 41 44 52 0C 01 00  [.F.GPPG._ADR...
    7140: 04 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    7150: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    7160: 47 30 37 39 A4 50 30 37 39 5B 82 0D 44 30 45 37  G079.P079[..D0E7
    7170: 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50 48  ._ADR...[.F.GPPH
    7180: 08 5F 41 44 52 0C 02 00 04 00 14 0F 5F 50 52 57  ._ADR......._PRW
    7190: 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54  ..GPRW......_PRT
    71A0: 00 A0 0A 50 49 43 4D A4 47 30 37 41 A4 50 30 37  ...PICM.G07A.P07
    71B0: 41 5B 82 0D 44 30 45 39 08 5F 41 44 52 0B FF FF  A[..D0E9._ADR...
    71C0: 5B 82 44 04 47 50 31 35 08 5F 41 44 52 0C 01 00  [.D.GP15._ADR...
    71D0: 05 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08  ...._PRW..GPRW..
    71E0: 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  ...._PRT...PICM.
    71F0: 47 30 37 42 A4 50 30 37 42 5B 82 0B 44 30 45 44  G07B.P07B[..D0ED
    7200: 08 5F 41 44 52 00 5B 82 46 04 47 50 32 35 08 5F  ._ADR.[.F.GP25._
    7210: 41 44 52 0C 02 00 05 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    7220: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    7230: 0A 50 49 43 4D A4 47 30 37 43 A4 50 30 37 43 5B  .PICM.G07C.P07C[
    7240: 82 0D 44 30 45 41 08 5F 41 44 52 0B FF FF 5B 82  ..D0EA._ADR...[.
    7250: 46 04 47 50 33 35 08 5F 41 44 52 0C 03 00 05 00  F.GP35._ADR.....
    7260: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 08 0A 04  .._PRW..GPRW....
    7270: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    7280: 37 44 A4 50 30 37 44 5B 82 0D 44 30 45 42 08 5F  7D.P07D[..D0EB._
    7290: 41 44 52 0B FF FF 5B 82 46 04 47 50 34 35 08 5F  ADR...[.F.GP45._
    72A0: 41 44 52 0C 04 00 05 00 14 0F 5F 50 52 57 00 A4  ADR......._PRW..
    72B0: 47 50 52 57 0A 08 0A 04 14 16 5F 50 52 54 00 A0  GPRW......_PRT..
    72C0: 0A 50 49 43 4D A4 47 30 37 45 A4 50 30 37 45 5B  .PICM.G07E.P07E[
    72D0: 82 0D 44 30 45 43 08 5F 41 44 52 0B FF FF 5B 82  ..D0EC._ADR...[.
    72E0: 4D 10 47 50 31 37 08 5F 41 44 52 0C 01 00 07 00  M.GP17._ADR.....
    72F0: 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A 0B 0A 04  .._PRW..GPRW....
    7300: 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30  .._PRT...PICM.G0
    7310: 37 46 A4 50 30 37 46 5B 82 0B 44 30 38 30 08 5F  7F.P07F[..D080._
    7320: 41 44 52 00 5B 82 0B 44 30 38 31 08 5F 41 44 52  ADR.[..D081._ADR
    7330: 01 5B 82 0C 44 30 38 32 08 5F 41 44 52 0A 02 5B  .[..D082._ADR..[
    7340: 82 0C 44 30 38 33 08 5F 41 44 52 0A 03 5B 82 0C  ..D083._ADR..[..
    7350: 58 48 43 30 08 5F 41 44 52 0A 04 5B 82 44 07 50  XHC0._ADR..[.D.P
    7360: 53 50 5F 08 5F 41 44 52 0A 05 08 5F 48 49 44 0C  SP_._ADR..._HID.
    7370: 41 D0 0C 02 08 50 53 50 42 0C 00 00 20 DF 08 5F  A....PSPB... .._
    7380: 53 54 41 0A 0F 08 43 52 53 5F 11 11 0A 0E 86 09  STA...CRS_......
    7390: 00 01 00 00 00 00 00 00 00 00 79 00 14 34 5F 43  ..........y..4_C
    73A0: 52 53 00 8A 43 52 53 5F 0A 04 50 42 41 53 8A 43  RS..CRS_..PBAS.C
    73B0: 52 53 5F 0A 08 50 4C 45 4E 70 50 53 50 42 50 42  RS_..PLENpPSPBPB
    73C0: 41 53 70 0C 00 00 10 00 50 4C 45 4E A4 43 52 53  ASp.....PLEN.CRS
    73D0: 5F 5B 82 0C 41 43 50 5F 08 5F 41 44 52 0A 06 5B  _[..ACP_._ADR..[
    73E0: 82 0C 41 5A 41 4C 08 5F 41 44 52 0A 07 5B 82 4D  ..AZAL._ADR..[.M
    73F0: CE 47 50 32 37 08 5F 41 44 52 0C 02 00 07 00 14  .GP27._ADR......
    7400: 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4 47 30 38  ._PRT...PICM.G08
    7410: 38 A4 50 30 38 38 5B 82 41 66 53 41 54 41 08 5F  8.P088[.AfSATA._
    7420: 41 44 52 00 08 42 35 45 4E 00 08 42 41 5F 35 00  ADR..B5EN..BA_5.
    7430: 08 53 42 41 52 0C 00 F0 B6 F0 08 4F 53 56 52 00  .SBAR......OSVR.
    7440: 5B 80 53 41 54 58 02 00 0A 44 5B 81 43 04 53 41  [.SATX...D[.C.SA
    7450: 54 58 00 56 49 44 49 20 00 30 53 54 43 4C 10 00  TX.VIDI .0STCL..
    7460: 40 0C 42 41 30 35 20 00 40 0C 57 54 45 4E 01 00  @.BA05 .@.WTEN..
    7470: 0F 44 49 53 30 01 44 49 53 31 01 44 49 53 32 01  .DIS0.DIS1.DIS2.
    7480: 44 49 53 33 01 44 49 53 34 01 44 49 53 35 01 5B  DIS3.DIS4.DIS5.[
    7490: 81 0E 53 41 54 58 00 00 40 21 44 49 53 50 06 14  ..SATX..@!DISP..
    74A0: 39 47 42 41 41 08 70 42 41 30 35 42 41 5F 35 A0  9GBAA.pBA05BA_5.
    74B0: 1C 91 93 42 41 5F 35 FF 92 93 53 54 43 4C 0B 01  ...BA_5...STCL..
    74C0: 01 70 00 42 35 45 4E A4 53 42 41 52 A1 0C 70 01  .p.B5EN.SBAR..p.
    74D0: 42 35 45 4E A4 42 41 5F 35 5B 80 42 41 52 35 00  B5EN.BA_5[.BAR5.
    74E0: 47 42 41 41 0B 00 10 5B 81 41 12 42 41 52 35 00  GBAA...[.A.BAR5.
    74F0: 4E 4F 50 54 05 00 4B 05 50 54 49 30 01 50 54 49  NOPT..K.PTI0.PTI
    7500: 31 01 50 54 49 32 01 50 54 49 33 01 50 54 49 34  1.PTI2.PTI3.PTI4
    7510: 01 50 54 49 35 01 50 54 49 36 01 50 54 49 37 01  .PTI5.PTI6.PTI7.
    7520: 00 48 85 43 53 54 30 01 00 4F 03 00 07 42 53 59  .H.CST0..O...BSY
    7530: 30 01 00 38 44 45 54 30 04 00 04 49 50 4D 30 04  0..8DET0...IPM0.
    7540: 00 14 44 44 49 30 04 00 4C 35 43 53 54 31 01 00  ..DDI0..L5CST1..
    7550: 4F 03 00 07 42 53 59 31 01 00 38 44 45 54 31 04  O...BSY1..8DET1.
    7560: 00 04 49 50 4D 31 04 00 14 44 44 49 31 04 00 4C  ..IPM1...DDI1..L
    7570: 35 43 53 54 32 01 00 4F 03 00 07 42 53 59 32 01  5CST2..O...BSY2.
    7580: 00 38 44 45 54 32 04 00 04 49 50 4D 32 04 00 14  .8DET2...IPM2...
    7590: 44 44 49 32 04 00 4C 35 43 53 54 33 01 00 4F 03  DDI2..L5CST3..O.
    75A0: 00 07 42 53 59 33 01 00 38 44 45 54 33 04 00 04  ..BSY3..8DET3...
    75B0: 49 50 4D 33 04 00 14 44 44 49 33 04 00 4C 35 43  IPM3...DDI3..L5C
    75C0: 53 54 34 01 00 4F 03 00 07 42 53 59 34 01 00 38  ST4..O...BSY4..8
    75D0: 44 45 54 34 04 00 04 49 50 4D 34 04 00 14 44 44  DET4...IPM4...DD
    75E0: 49 34 04 00 4C 35 43 53 54 35 01 00 4F 03 00 07  I4..L5CST5..O...
    75F0: 42 53 59 35 01 00 38 44 45 54 35 04 00 04 49 50  BSY5..8DET5...IP
    7600: 4D 35 04 00 14 44 44 49 35 04 5B 81 0E 42 41 52  M5...DDI5.[..BAR
    7610: 35 00 00 40 06 50 54 49 5F 06 14 0A 5F 49 4E 49  5..@.PTI_..._INI
    7620: 00 47 42 41 41 5B 82 4A 19 50 52 49 44 08 5F 41  .GBAA[.J.PRID._A
    7630: 44 52 00 08 53 50 54 4D 11 17 0A 14 78 00 00 00  DR..SPTM....x...
    7640: 0F 00 00 00 78 00 00 00 0F 00 00 00 1F 00 00 00  ....x...........
    7650: 14 0B 5F 47 54 4D 00 A4 53 50 54 4D 14 0C 5F 53  .._GTM..SPTM.._S
    7660: 54 4D 03 70 68 53 50 54 4D 14 3A 5F 50 53 30 00  TM.phSPTM.:_PS0.
    7670: 47 42 41 41 A0 2F 90 91 92 95 4F 53 56 52 0A 0C  GBAA./....OSVR..
    7680: 93 4F 53 56 52 00 42 35 45 4E A0 19 49 50 4D 32  .OSVR.B5EN..IPM2
    7690: 70 0A 32 60 A2 0F 90 93 42 53 59 32 01 60 5B 22  p.2`....BSY2.`["
    76A0: 0A FA 76 60 14 06 5F 50 53 33 00 5B 82 49 08 50  ..v`.._PS3.[.I.P
    76B0: 5F 44 30 08 5F 41 44 52 00 14 24 5F 53 54 41 00  _D0._ADR..$_STA.
    76C0: 47 42 41 41 A0 09 93 42 35 45 4E 00 A4 00 A0 0B  GBAA...B5EN.....
    76D0: 93 44 45 54 30 0A 03 A4 0A 0F A1 03 A4 00 08 53  .DET0..........S
    76E0: 31 32 50 00 14 34 5F 50 53 30 00 47 42 41 41 A0  12P..4_PS0.GBAA.
    76F0: 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F 53 56 52  )...OSVR....OSVR
    7700: 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93 42 53 59  .B5ENp.2`....BSY
    7710: 30 01 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00  0.`["..v`.._PS3.
    7720: 14 15 5F 47 54 46 00 70 11 0A 0A 07 03 46 00 00  .._GTF.p.....F..
    7730: 00 A0 EF 60 A4 60 5B 82 49 08 50 5F 44 31 08 5F  ...`.`[.I.P_D1._
    7740: 41 44 52 01 14 24 5F 53 54 41 00 47 42 41 41 A0  ADR..$_STA.GBAA.
    7750: 09 93 42 35 45 4E 00 A4 00 A0 0B 93 44 45 54 32  ..B5EN......DET2
    7760: 0A 03 A4 0A 0F A1 03 A4 00 08 53 31 32 50 00 14  ..........S12P..
    7770: 34 5F 50 53 30 00 47 42 41 41 A0 29 90 90 95 4F  4_PS0.GBAA.)...O
    7780: 53 56 52 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E  SVR....OSVR.B5EN
    7790: 70 0A 32 60 A2 0F 90 93 42 53 59 32 01 60 5B 22  p.2`....BSY2.`["
    77A0: 0A FA 76 60 14 06 5F 50 53 33 00 14 15 5F 47 54  ..v`.._PS3..._GT
    77B0: 46 00 70 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4  F.p.....F.....`.
    77C0: 60 5B 82 4B 1A 53 45 43 44 08 5F 41 44 52 0A 02  `[.K.SECD._ADR..
    77D0: 08 53 50 54 4D 11 17 0A 14 78 00 00 00 0F 00 00  .SPTM....x......
    77E0: 00 78 00 00 00 0F 00 00 00 1F 00 00 00 14 0B 5F  .x............._
    77F0: 47 54 4D 00 A4 53 50 54 4D 14 0C 5F 53 54 4D 03  GTM..SPTM.._STM.
    7800: 70 68 53 50 54 4D 14 46 05 5F 50 53 30 00 47 42  phSPTM.F._PS0.GB
    7810: 41 41 A0 4A 04 90 91 92 95 4F 53 56 52 0A 0C 93  AA.J.....OSVR...
    7820: 4F 53 56 52 00 42 35 45 4E A0 19 49 50 4D 31 70  OSVR.B5EN..IPM1p
    7830: 0A 32 60 A2 0F 90 93 42 53 59 31 01 60 5B 22 0A  .2`....BSY1.`[".
    7840: FA 76 60 A0 19 49 50 4D 33 70 0A 32 60 A2 0F 90  .v`..IPM3p.2`...
    7850: 93 42 53 59 33 01 60 5B 22 0A FA 76 60 14 06 5F  .BSY3.`["..v`.._
    7860: 50 53 33 00 5B 82 43 08 53 5F 44 30 08 5F 41 44  PS3.[.C.S_D0._AD
    7870: 52 00 14 24 5F 53 54 41 00 47 42 41 41 A0 09 93  R..$_STA.GBAA...
    7880: 42 35 45 4E 00 A4 00 A0 0B 93 44 45 54 31 0A 03  B5EN......DET1..
    7890: A4 0A 0F A1 03 A4 00 14 34 5F 50 53 30 00 47 42  ........4_PS0.GB
    78A0: 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F  AA.)...OSVR....O
    78B0: 53 56 52 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93  SVR.B5ENp.2`....
    78C0: 42 53 59 31 01 60 5B 22 0A FA 76 60 14 06 5F 50  BSY1.`["..v`.._P
    78D0: 53 33 00 14 15 5F 47 54 46 00 70 11 0A 0A 07 03  S3..._GTF.p.....
    78E0: 46 00 00 00 A0 EF 60 A4 60 5B 82 43 08 53 5F 44  F.....`.`[.C.S_D
    78F0: 31 08 5F 41 44 52 01 14 24 5F 53 54 41 00 47 42  1._ADR..$_STA.GB
    7900: 41 41 A0 09 93 42 35 45 4E 00 A4 00 A0 0B 93 44  AA...B5EN......D
    7910: 45 54 33 0A 03 A4 0A 0F A1 03 A4 00 14 34 5F 50  ET3..........4_P
    7920: 53 30 00 47 42 41 41 A0 29 90 90 95 4F 53 56 52  S0.GBAA.)...OSVR
    7930: 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E 70 0A 32  ....OSVR.B5ENp.2
    7940: 60 A2 0F 90 93 42 53 59 33 01 60 5B 22 0A FA 76  `....BSY3.`["..v
    7950: 60 14 06 5F 50 53 33 00 14 15 5F 47 54 46 00 70  `.._PS3..._GTF.p
    7960: 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4 60 14 4A  .....F.....`.`.J
    7970: 10 45 4E 50 5F 02 A0 0C 93 68 00 70 80 69 00 44  .ENP_....h.p.i.D
    7980: 49 53 30 A1 4F 04 A0 0C 93 68 01 70 80 69 00 44  IS0.O....h.p.i.D
    7990: 49 53 31 A1 3F A0 0D 93 68 0A 02 70 80 69 00 44  IS1.?...h..p.i.D
    79A0: 49 53 32 A1 2F A0 0D 93 68 0A 03 70 80 69 00 44  IS2./...h..p.i.D
    79B0: 49 53 33 A1 1F A0 0D 93 68 0A 04 70 80 69 00 44  IS3.....h..p.i.D
    79C0: 49 53 34 A1 0F A0 0D 93 68 0A 05 70 80 69 00 44  IS4.....h..p.i.D
    79D0: 49 53 35 70 01 57 54 45 4E A0 0A 93 68 00 70 69  IS5p.WTEN...h.pi
    79E0: 50 54 49 30 A1 45 04 A0 0A 93 68 01 70 69 50 54  PTI0.E....h.piPT
    79F0: 49 31 A1 37 A0 0B 93 68 0A 02 70 69 50 54 49 32  I1.7...h..piPTI2
    7A00: A1 29 A0 0B 93 68 0A 03 70 69 50 54 49 33 A1 1B  .)...h..piPTI3..
    7A10: A0 0B 93 68 0A 04 70 69 50 54 49 34 A1 0D A0 0B  ...h..piPTI4....
    7A20: 93 68 0A 05 70 69 50 54 49 35 A0 0E 93 44 49 53  .h..piPTI5...DIS
    7A30: 50 0A 3F 70 01 50 54 49 30 A1 1A A0 18 90 44 49  P.?p.PTI0.....DI
    7A40: 53 30 7F 7B 44 49 53 50 0A 3E 00 0A 3E 00 70 00  S0.{DISP.>..>.p.
    7A50: 50 54 49 30 70 50 54 49 5F 60 70 00 61 A2 0E 60  PTI0pPTI_`p.a..`
    7A60: A0 07 7B 60 01 00 75 61 7A 60 01 60 70 76 61 4E  ..{`..uaz`.`pvaN
    7A70: 4F 50 54 70 00 57 54 45 4E 5B 82 41 66 53 41 54  OPTp.WTEN[.AfSAT
    7A80: 32 08 5F 41 44 52 00 08 42 35 45 4E 00 08 42 41  2._ADR..B5EN..BA
    7A90: 5F 35 00 08 53 42 41 52 0C 00 F0 B6 F0 08 4F 53  _5..SBAR......OS
    7AA0: 56 52 00 5B 80 53 41 54 58 02 00 0A 44 5B 81 43  VR.[.SATX...D[.C
    7AB0: 04 53 41 54 58 00 56 49 44 49 20 00 30 53 54 43  .SATX.VIDI .0STC
    7AC0: 4C 10 00 40 0C 42 41 30 35 20 00 40 0C 57 54 45  L..@.BA05 .@.WTE
    7AD0: 4E 01 00 0F 44 49 53 30 01 44 49 53 31 01 44 49  N...DIS0.DIS1.DI
    7AE0: 53 32 01 44 49 53 33 01 44 49 53 34 01 44 49 53  S2.DIS3.DIS4.DIS
    7AF0: 35 01 5B 81 0E 53 41 54 58 00 00 40 21 44 49 53  5.[..SATX..@!DIS
    7B00: 50 06 14 39 47 42 41 41 08 70 42 41 30 35 42 41  P..9GBAA.pBA05BA
    7B10: 5F 35 A0 1C 91 93 42 41 5F 35 FF 92 93 53 54 43  _5....BA_5...STC
    7B20: 4C 0B 01 01 70 00 42 35 45 4E A4 53 42 41 52 A1  L...p.B5EN.SBAR.
    7B30: 0C 70 01 42 35 45 4E A4 42 41 5F 35 5B 80 42 41  .p.B5EN.BA_5[.BA
    7B40: 52 35 00 47 42 41 41 0B 00 10 5B 81 41 12 42 41  R5.GBAA...[.A.BA
    7B50: 52 35 00 4E 4F 50 54 05 00 4B 05 50 54 49 30 01  R5.NOPT..K.PTI0.
    7B60: 50 54 49 31 01 50 54 49 32 01 50 54 49 33 01 50  PTI1.PTI2.PTI3.P
    7B70: 54 49 34 01 50 54 49 35 01 50 54 49 36 01 50 54  TI4.PTI5.PTI6.PT
    7B80: 49 37 01 00 48 85 43 53 54 30 01 00 4F 03 00 07  I7..H.CST0..O...
    7B90: 42 53 59 30 01 00 38 44 45 54 30 04 00 04 49 50  BSY0..8DET0...IP
    7BA0: 4D 30 04 00 14 44 44 49 30 04 00 4C 35 43 53 54  M0...DDI0..L5CST
    7BB0: 31 01 00 4F 03 00 07 42 53 59 31 01 00 38 44 45  1..O...BSY1..8DE
    7BC0: 54 31 04 00 04 49 50 4D 31 04 00 14 44 44 49 31  T1...IPM1...DDI1
    7BD0: 04 00 4C 35 43 53 54 32 01 00 4F 03 00 07 42 53  ..L5CST2..O...BS
    7BE0: 59 32 01 00 38 44 45 54 32 04 00 04 49 50 4D 32  Y2..8DET2...IPM2
    7BF0: 04 00 14 44 44 49 32 04 00 4C 35 43 53 54 33 01  ...DDI2..L5CST3.
    7C00: 00 4F 03 00 07 42 53 59 33 01 00 38 44 45 54 33  .O...BSY3..8DET3
    7C10: 04 00 04 49 50 4D 33 04 00 14 44 44 49 33 04 00  ...IPM3...DDI3..
    7C20: 4C 35 43 53 54 34 01 00 4F 03 00 07 42 53 59 34  L5CST4..O...BSY4
    7C30: 01 00 38 44 45 54 34 04 00 04 49 50 4D 34 04 00  ..8DET4...IPM4..
    7C40: 14 44 44 49 34 04 00 4C 35 43 53 54 35 01 00 4F  .DDI4..L5CST5..O
    7C50: 03 00 07 42 53 59 35 01 00 38 44 45 54 35 04 00  ...BSY5..8DET5..
    7C60: 04 49 50 4D 35 04 00 14 44 44 49 35 04 5B 81 0E  .IPM5...DDI5.[..
    7C70: 42 41 52 35 00 00 40 06 50 54 49 5F 06 14 0A 5F  BAR5..@.PTI_..._
    7C80: 49 4E 49 00 47 42 41 41 5B 82 4A 19 50 52 49 44  INI.GBAA[.J.PRID
    7C90: 08 5F 41 44 52 00 08 53 50 54 4D 11 17 0A 14 78  ._ADR..SPTM....x
    7CA0: 00 00 00 0F 00 00 00 78 00 00 00 0F 00 00 00 1F  .......x........
    7CB0: 00 00 00 14 0B 5F 47 54 4D 00 A4 53 50 54 4D 14  ....._GTM..SPTM.
    7CC0: 0C 5F 53 54 4D 03 70 68 53 50 54 4D 14 3A 5F 50  ._STM.phSPTM.:_P
    7CD0: 53 30 00 47 42 41 41 A0 2F 90 91 92 95 4F 53 56  S0.GBAA./....OSV
    7CE0: 52 0A 0C 93 4F 53 56 52 00 42 35 45 4E A0 19 49  R...OSVR.B5EN..I
    7CF0: 50 4D 32 70 0A 32 60 A2 0F 90 93 42 53 59 32 01  PM2p.2`....BSY2.
    7D00: 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00 5B 82  `["..v`.._PS3.[.
    7D10: 49 08 50 5F 44 30 08 5F 41 44 52 00 14 24 5F 53  I.P_D0._ADR..$_S
    7D20: 54 41 00 47 42 41 41 A0 09 93 42 35 45 4E 00 A4  TA.GBAA...B5EN..
    7D30: 00 A0 0B 93 44 45 54 30 0A 03 A4 0A 0F A1 03 A4  ....DET0........
    7D40: 00 08 53 31 32 50 00 14 34 5F 50 53 30 00 47 42  ..S12P..4_PS0.GB
    7D50: 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C 92 93 4F  AA.)...OSVR....O
    7D60: 53 56 52 00 42 35 45 4E 70 0A 32 60 A2 0F 90 93  SVR.B5ENp.2`....
    7D70: 42 53 59 30 01 60 5B 22 0A FA 76 60 14 06 5F 50  BSY0.`["..v`.._P
    7D80: 53 33 00 14 15 5F 47 54 46 00 70 11 0A 0A 07 03  S3..._GTF.p.....
    7D90: 46 00 00 00 A0 EF 60 A4 60 5B 82 49 08 50 5F 44  F.....`.`[.I.P_D
    7DA0: 31 08 5F 41 44 52 01 14 24 5F 53 54 41 00 47 42  1._ADR..$_STA.GB
    7DB0: 41 41 A0 09 93 42 35 45 4E 00 A4 00 A0 0B 93 44  AA...B5EN......D
    7DC0: 45 54 32 0A 03 A4 0A 0F A1 03 A4 00 08 53 31 32  ET2..........S12
    7DD0: 50 00 14 34 5F 50 53 30 00 47 42 41 41 A0 29 90  P..4_PS0.GBAA.).
    7DE0: 90 95 4F 53 56 52 0A 0C 92 93 4F 53 56 52 00 42  ..OSVR....OSVR.B
    7DF0: 35 45 4E 70 0A 32 60 A2 0F 90 93 42 53 59 32 01  5ENp.2`....BSY2.
    7E00: 60 5B 22 0A FA 76 60 14 06 5F 50 53 33 00 14 15  `["..v`.._PS3...
    7E10: 5F 47 54 46 00 70 11 0A 0A 07 03 46 00 00 00 A0  _GTF.p.....F....
    7E20: EF 60 A4 60 5B 82 4B 1A 53 45 43 44 08 5F 41 44  .`.`[.K.SECD._AD
    7E30: 52 0A 02 08 53 50 54 4D 11 17 0A 14 78 00 00 00  R...SPTM....x...
    7E40: 0F 00 00 00 78 00 00 00 0F 00 00 00 1F 00 00 00  ....x...........
    7E50: 14 0B 5F 47 54 4D 00 A4 53 50 54 4D 14 0C 5F 53  .._GTM..SPTM.._S
    7E60: 54 4D 03 70 68 53 50 54 4D 14 46 05 5F 50 53 30  TM.phSPTM.F._PS0
    7E70: 00 47 42 41 41 A0 4A 04 90 91 92 95 4F 53 56 52  .GBAA.J.....OSVR
    7E80: 0A 0C 93 4F 53 56 52 00 42 35 45 4E A0 19 49 50  ...OSVR.B5EN..IP
    7E90: 4D 31 70 0A 32 60 A2 0F 90 93 42 53 59 31 01 60  M1p.2`....BSY1.`
    7EA0: 5B 22 0A FA 76 60 A0 19 49 50 4D 33 70 0A 32 60  ["..v`..IPM3p.2`
    7EB0: A2 0F 90 93 42 53 59 33 01 60 5B 22 0A FA 76 60  ....BSY3.`["..v`
    7EC0: 14 06 5F 50 53 33 00 5B 82 43 08 53 5F 44 30 08  .._PS3.[.C.S_D0.
    7ED0: 5F 41 44 52 00 14 24 5F 53 54 41 00 47 42 41 41  _ADR..$_STA.GBAA
    7EE0: A0 09 93 42 35 45 4E 00 A4 00 A0 0B 93 44 45 54  ...B5EN......DET
    7EF0: 31 0A 03 A4 0A 0F A1 03 A4 00 14 34 5F 50 53 30  1..........4_PS0
    7F00: 00 47 42 41 41 A0 29 90 90 95 4F 53 56 52 0A 0C  .GBAA.)...OSVR..
    7F10: 92 93 4F 53 56 52 00 42 35 45 4E 70 0A 32 60 A2  ..OSVR.B5ENp.2`.
    7F20: 0F 90 93 42 53 59 31 01 60 5B 22 0A FA 76 60 14  ...BSY1.`["..v`.
    7F30: 06 5F 50 53 33 00 14 15 5F 47 54 46 00 70 11 0A  ._PS3..._GTF.p..
    7F40: 0A 07 03 46 00 00 00 A0 EF 60 A4 60 5B 82 43 08  ...F.....`.`[.C.
    7F50: 53 5F 44 31 08 5F 41 44 52 01 14 24 5F 53 54 41  S_D1._ADR..$_STA
    7F60: 00 47 42 41 41 A0 09 93 42 35 45 4E 00 A4 00 A0  .GBAA...B5EN....
    7F70: 0B 93 44 45 54 33 0A 03 A4 0A 0F A1 03 A4 00 14  ..DET3..........
    7F80: 34 5F 50 53 30 00 47 42 41 41 A0 29 90 90 95 4F  4_PS0.GBAA.)...O
    7F90: 53 56 52 0A 0C 92 93 4F 53 56 52 00 42 35 45 4E  SVR....OSVR.B5EN
    7FA0: 70 0A 32 60 A2 0F 90 93 42 53 59 33 01 60 5B 22  p.2`....BSY3.`["
    7FB0: 0A FA 76 60 14 06 5F 50 53 33 00 14 15 5F 47 54  ..v`.._PS3..._GT
    7FC0: 46 00 70 11 0A 0A 07 03 46 00 00 00 A0 EF 60 A4  F.p.....F.....`.
    7FD0: 60 14 4A 10 45 4E 50 5F 02 A0 0C 93 68 00 70 80  `.J.ENP_....h.p.
    7FE0: 69 00 44 49 53 30 A1 4F 04 A0 0C 93 68 01 70 80  i.DIS0.O....h.p.
    7FF0: 69 00 44 49 53 31 A1 3F A0 0D 93 68 0A 02 70 80  i.DIS1.?...h..p.
    8000: 69 00 44 49 53 32 A1 2F A0 0D 93 68 0A 03 70 80  i.DIS2./...h..p.
    8010: 69 00 44 49 53 33 A1 1F A0 0D 93 68 0A 04 70 80  i.DIS3.....h..p.
    8020: 69 00 44 49 53 34 A1 0F A0 0D 93 68 0A 05 70 80  i.DIS4.....h..p.
    8030: 69 00 44 49 53 35 70 01 57 54 45 4E A0 0A 93 68  i.DIS5p.WTEN...h
    8040: 00 70 69 50 54 49 30 A1 45 04 A0 0A 93 68 01 70  .piPTI0.E....h.p
    8050: 69 50 54 49 31 A1 37 A0 0B 93 68 0A 02 70 69 50  iPTI1.7...h..piP
    8060: 54 49 32 A1 29 A0 0B 93 68 0A 03 70 69 50 54 49  TI2.)...h..piPTI
    8070: 33 A1 1B A0 0B 93 68 0A 04 70 69 50 54 49 34 A1  3.....h..piPTI4.
    8080: 0D A0 0B 93 68 0A 05 70 69 50 54 49 35 A0 0E 93  ....h..piPTI5...
    8090: 44 49 53 50 0A 3F 70 01 50 54 49 30 A1 1A A0 18  DISP.?p.PTI0....
    80A0: 90 44 49 53 30 7F 7B 44 49 53 50 0A 3E 00 0A 3E  .DIS0.{DISP.>..>
    80B0: 00 70 00 50 54 49 30 70 50 54 49 5F 60 70 00 61  .p.PTI0pPTI_`p.a
    80C0: A2 0E 60 A0 07 7B 60 01 00 75 61 7A 60 01 60 70  ..`..{`..uaz`.`p
    80D0: 76 61 4E 4F 50 54 70 00 57 54 45 4E 5B 82 0F 53  vaNOPTp.WTEN[..S
    80E0: 4D 42 52 08 5F 41 44 52 0C 00 00 14 00 5B 82 44  MBR._ADR.....[.D
    80F0: F9 53 42 52 47 08 5F 41 44 52 0C 03 00 14 00 5B  .SBRG._ADR.....[
    8100: 82 2B 50 49 43 5F 08 5F 48 49 44 0B 41 D0 08 5F  .+PIC_._HID.A.._
    8110: 43 52 53 11 18 0A 15 47 01 20 00 20 00 00 02 47  CRS....G. . ...G
    8120: 01 A0 00 A0 00 00 02 22 04 00 79 00 5B 82 4E 04  ......."..y.[.N.
    8130: 44 4D 41 44 08 5F 48 49 44 0C 41 D0 02 00 08 5F  DMAD._HID.A...._
    8140: 43 52 53 11 38 0A 35 2A 10 04 47 01 00 00 00 00  CRS.8.5*..G.....
    8150: 00 10 47 01 81 00 81 00 00 03 47 01 87 00 87 00  ..G.......G.....
    8160: 00 01 47 01 89 00 89 00 00 03 47 01 8F 00 8F 00  ..G.......G.....
    8170: 00 01 47 01 C0 00 C0 00 00 20 79 00 5B 82 25 54  ..G...... y.[.%T
    8180: 4D 52 5F 08 5F 48 49 44 0C 41 D0 01 00 08 5F 43  MR_._HID.A...._C
    8190: 52 53 11 10 0A 0D 47 01 40 00 40 00 00 04 22 01  RS....G.@.@...".
    81A0: 00 79 00 5B 82 42 05 52 54 43 30 08 5F 48 49 44  .y.[.B.RTC0._HID
    81B0: 0C 41 D0 0B 00 08 42 55 46 30 11 0D 0A 0A 47 01  .A....BUF0....G.
    81C0: 70 00 70 00 00 02 79 00 08 42 55 46 31 11 10 0A  p.p...y..BUF1...
    81D0: 0D 47 01 70 00 70 00 00 02 22 00 01 79 00 14 18  .G.p.p..."..y...
    81E0: 5F 43 52 53 08 A0 0C 93 48 50 45 4E 01 A4 42 55  _CRS....HPEN..BU
    81F0: 46 30 A4 42 55 46 31 5B 82 22 53 50 4B 52 08 5F  F0.BUF1[."SPKR._
    8200: 48 49 44 0C 41 D0 08 00 08 5F 43 52 53 11 0D 0A  HID.A...._CRS...
    8210: 0A 47 01 61 00 61 00 00 01 79 00 5B 80 53 4D 49  .G.a.a...y.[.SMI
    8220: 30 01 53 4D 49 4F 01 5B 81 0B 53 4D 49 30 01 53  0.SMIO.[..SMI0.S
    8230: 4D 49 43 08 10 47 30 5C 5F 53 42 5F 10 4F 2F 50  MIC..G0\_SB_.O/P
    8240: 43 49 30 5B 82 47 2F 53 39 30 30 08 5F 48 49 44  CI0[.G/S900._HID
    8250: 0C 41 D0 0C 02 08 5F 55 49 44 0B 00 07 08 5F 53  .A...._UID...._S
    8260: 54 41 0A 0F 08 43 52 53 5F 11 43 15 0B 4E 01 47  TA...CRS_.C..N.G
    8270: 01 10 00 10 00 00 10 47 01 22 00 22 00 00 1E 47  .......G."."...G
    8280: 01 63 00 63 00 00 01 47 01 65 00 65 00 00 01 47  .c.c...G.e.e...G
    8290: 01 67 00 67 00 00 09 47 01 72 00 72 00 00 0E 47  .g.g...G.r.r...G
    82A0: 01 80 00 80 00 00 01 47 01 84 00 84 00 00 03 47  .......G.......G
    82B0: 01 88 00 88 00 00 01 47 01 8C 00 8C 00 00 03 47  .......G.......G
    82C0: 01 90 00 90 00 00 10 47 01 A2 00 A2 00 00 1E 47  .......G.......G
    82D0: 01 B1 00 B1 00 00 01 47 01 E0 00 E0 00 00 10 47  .......G.......G
    82E0: 01 D0 04 D0 04 00 02 47 01 0B 04 0B 04 00 01 47  .......G.......G
    82F0: 01 D6 04 D6 04 00 01 47 01 00 0C 00 0C 00 02 47  .......G.......G
    8300: 01 14 0C 14 0C 00 01 47 01 50 0C 50 0C 00 02 47  .......G.P.P...G
    8310: 01 52 0C 52 0C 00 01 47 01 6C 0C 6C 0C 00 01 47  .R.R...G.l.l...G
    8320: 01 6F 0C 6F 0C 00 01 47 01 D8 0C D8 0C 00 08 47  .o.o...G.......G
    8330: 01 00 00 00 00 00 00 47 01 00 00 00 00 00 00 47  .......G.......G
    8340: 01 00 00 00 00 00 00 47 01 00 09 00 09 00 10 47  .......G.......G
    8350: 01 10 09 10 09 00 10 47 01 60 00 60 00 00 00 47  .......G.`.`...G
    8360: 01 64 00 64 00 00 00 86 09 00 01 00 00 00 00 00  .d.d............
    8370: 00 00 00 86 09 00 01 00 00 DC FE 00 10 00 00 86  ................
    8380: 09 00 01 00 00 E0 FE 00 10 00 00 86 09 00 01 00  ................
    8390: 00 D8 FE 00 00 01 00 86 09 00 01 00 00 00 00 00  ................
    83A0: 00 00 00 86 09 00 01 00 00 00 00 00 00 00 00 86  ................
    83B0: 09 00 01 00 00 00 00 00 00 00 00 79 00 14 4E 17  ...........y..N.
    83C0: 5F 43 52 53 00 8B 43 52 53 5F 0A C2 50 42 42 5F  _CRS..CRS_..PBB_
    83D0: 8B 43 52 53 5F 0A C4 50 42 48 5F 8C 43 52 53 5F  .CRS_..PBH_.CRS_
    83E0: 0A C7 50 4D 4C 5F 70 50 4D 42 53 50 42 42 5F 70  ..PML_pPMBSPBB_p
    83F0: 50 4D 42 53 50 42 48 5F 70 50 4D 4C 4E 50 4D 4C  PMBSPBH_pPMLNPML
    8400: 5F A0 4E 07 53 4D 42 42 8B 43 52 53 5F 0A D2 53  _.N.SMBB.CRS_..S
    8410: 4D 42 31 8B 43 52 53 5F 0A D4 53 4D 48 31 8C 43  MB1.CRS_..SMH1.C
    8420: 52 53 5F 0A D7 53 4D 4C 31 70 53 4D 42 42 53 4D  RS_..SML1pSMBBSM
    8430: 42 31 70 53 4D 42 42 53 4D 48 31 70 53 4D 42 4C  B1pSMBBSMH1pSMBL
    8440: 53 4D 4C 31 8B 43 52 53 5F 0A CA 53 4D 42 5A 8B  SML1.CRS_..SMBZ.
    8450: 43 52 53 5F 0A CC 53 4D 48 30 8C 43 52 53 5F 0A  CRS_..SMH0.CRS_.
    8460: CF 53 4D 4C 30 70 53 4D 42 30 53 4D 42 5A 70 53  .SML0pSMB0SMBZpS
    8470: 4D 42 30 53 4D 48 30 70 53 4D 42 4D 53 4D 4C 30  MB0SMH0pSMBMSML0
    8480: A0 2E 41 50 43 42 8A 43 52 53 5F 0A FC 41 50 42  ..APCB.CRS_..APB
    8490: 5F 8A 43 52 53 5F 0B 00 01 41 50 4C 5F 70 41 50  _.CRS_...APL_pAP
    84A0: 43 42 41 50 42 5F 70 41 50 43 4C 41 50 4C 5F 8A  CBAPB_pAPCLAPL_.
    84B0: 43 52 53 5F 0B 2C 01 53 50 49 42 8A 43 52 53 5F  CRS_.,.SPIB.CRS_
    84C0: 0B 30 01 53 50 49 4C 70 0C 00 00 C1 FE 53 50 49  .0.SPILp.....SPI
    84D0: 42 70 0B 00 10 53 50 49 4C A0 31 57 44 54 42 8A  Bp...SPIL.1WDTB.
    84E0: 43 52 53 5F 0B 38 01 57 44 54 42 8A 43 52 53 5F  CRS_.8.WDTB.CRS_
    84F0: 0B 3C 01 57 44 54 4C 70 5C 57 44 54 42 57 44 54  .<.WDTLp\WDTBWDT
    8500: 42 70 5C 57 44 54 4C 57 44 54 4C 8A 43 52 53 5F  Bp\WDTLWDTL.CRS_
    8510: 0B 44 01 52 4F 4D 42 8A 43 52 53 5F 0B 48 01 52  .D.ROMB.CRS_.H.R
    8520: 4F 4D 4C 70 0C 00 00 00 FF 52 4F 4D 42 70 0C 00  OMLp.....ROMBp..
    8530: 00 00 01 52 4F 4D 4C A4 43 52 53 5F 10 32 5C 5F  ...ROML.CRS_.2\_
    8540: 53 42 5F 10 2B 50 43 49 30 10 25 53 42 52 47 14  SB_.+PCI0.%SBRG.
    8550: 0F 52 52 49 4F 04 70 0D 52 52 49 4F 00 5B 31 14  .RRIO.p.RRIO.[1.
    8560: 0F 52 44 4D 41 03 70 0D 72 44 4D 41 00 5B 31 5B  .RDMA.p.rDMA.[1[
    8570: 82 47 A0 53 49 4F 31 08 5F 48 49 44 0C 41 D0 0C  .G.SIO1._HID.A..
    8580: 02 08 5F 55 49 44 00 08 43 52 53 5F 11 2D 0A 2A  .._UID..CRS_.-.*
    8590: 47 01 00 00 00 00 00 00 47 01 00 00 00 00 00 00  G.......G.......
    85A0: 47 01 00 00 00 00 00 00 47 01 00 00 00 00 00 00  G.......G.......
    85B0: 47 01 00 00 00 00 00 00 79 00 14 45 16 5F 43 52  G.......y..E._CR
    85C0: 53 00 A0 4C 04 90 95 53 50 31 4F 0B F0 03 94 53  S..L...SP1O....S
    85D0: 50 31 4F 0A F0 8B 43 52 53 5F 0A 02 47 50 49 30  P1O...CRS_..GPI0
    85E0: 8B 43 52 53 5F 0A 04 47 50 49 31 8C 43 52 53 5F  .CRS_..GPI1.CRS_
    85F0: 0A 07 47 50 49 4C 70 53 50 31 4F 47 50 49 30 70  ..GPILpSP1OGPI0p
    8600: 53 50 31 4F 47 50 49 31 70 0A 02 47 50 49 4C A0  SP1OGPI1p..GPIL.
    8610: 42 04 49 4F 31 42 8B 43 52 53 5F 0A 0A 47 50 31  B.IO1B.CRS_..GP1
    8620: 30 8B 43 52 53 5F 0A 0C 47 50 31 31 8C 43 52 53  0.CRS_..GP11.CRS
    8630: 5F 0A 0F 47 50 4C 31 70 49 4F 31 42 47 50 31 30  _..GPL1pIO1BGP10
    8640: 70 49 4F 31 42 47 50 31 31 70 49 4F 31 4C 47 50  pIO1BGP11pIO1LGP
    8650: 4C 31 A0 42 04 49 4F 32 42 8B 43 52 53 5F 0A 12  L1.B.IO2B.CRS_..
    8660: 47 50 32 30 8B 43 52 53 5F 0A 14 47 50 32 31 8C  GP20.CRS_..GP21.
    8670: 43 52 53 5F 0A 17 47 50 4C 32 70 49 4F 32 42 47  CRS_..GPL2pIO2BG
    8680: 50 32 30 70 49 4F 32 42 47 50 32 31 70 49 4F 32  P20pIO2BGP21pIO2
    8690: 4C 47 50 4C 32 A0 42 04 49 4F 33 42 8B 43 52 53  LGPL2.B.IO3B.CRS
    86A0: 5F 0A 1A 47 50 33 30 8B 43 52 53 5F 0A 1C 47 50  _..GP30.CRS_..GP
    86B0: 33 31 8C 43 52 53 5F 0A 1F 47 50 4C 33 70 49 4F  31.CRS_..GPL3pIO
    86C0: 33 42 47 50 33 30 70 49 4F 33 42 47 50 33 31 70  3BGP30pIO3BGP31p
    86D0: 49 4F 33 4C 47 50 4C 33 A0 42 04 49 4F 34 42 8B  IO3LGPL3.B.IO4B.
    86E0: 43 52 53 5F 0A 22 47 50 34 30 8B 43 52 53 5F 0A  CRS_."GP40.CRS_.
    86F0: 24 47 50 34 31 8C 43 52 53 5F 0A 27 47 50 4C 34  $GP41.CRS_.'GPL4
    8700: 70 49 4F 34 42 47 50 34 30 70 49 4F 34 42 47 50  pIO4BGP40pIO4BGP
    8710: 34 31 70 49 4F 34 4C 47 50 4C 34 A4 43 52 53 5F  41pIO4LGPL4.CRS_
    8720: 08 44 43 41 54 12 2B 15 0A 02 0A 03 01 0A FF 0A  .DCAT.+.........
    8730: FF 0A FF 0A FF 0A FF 0A FF 0A FF 0A 05 0A FF 0A  ................
    8740: FF 0A FF 0A 05 0A FF 0A 06 0A FF 0A FF 0A FF 0A  ................
    8750: FF 5B 01 4D 55 54 30 00 14 26 45 4E 46 47 01 5B  .[.MUT0..&ENFG.[
    8760: 23 4D 55 54 30 FF 0F 70 45 4E 54 4B 49 4E 44 58  #MUT0..pENTKINDX
    8770: 70 45 4E 54 4B 49 4E 44 58 70 68 4C 44 4E 5F 14  pENTKINDXphLDN_.
    8780: 15 45 58 46 47 00 70 45 58 54 4B 49 4E 44 58 5B  .EXFG.pEXTKINDX[
    8790: 27 4D 55 54 30 14 1D 4C 50 54 4D 01 45 4E 46 47  'MUT0..LPTM.ENFG
    87A0: 43 47 4C 44 68 7B 4F 50 54 30 0A 02 60 45 58 46  CGLDh{OPT0..`EXF
    87B0: 47 A4 60 14 2C 55 48 49 44 01 45 4E 46 47 43 47  G.`.,UHID.ENFGCG
    87C0: 4C 44 68 7B 4F 50 54 31 0A 10 60 45 58 46 47 A0  LDh{OPT1..`EXFG.
    87D0: 08 60 A4 0C 41 D0 05 10 A1 07 A4 0C 41 D0 05 01  .`..A.......A...
    87E0: 5B 80 49 4F 49 44 01 53 50 31 4F 0A 02 5B 81 10  [.IOID.SP1O..[..
    87F0: 49 4F 49 44 01 49 4E 44 58 08 44 41 54 41 08 5B  IOID.INDX.DATA.[
    8800: 86 4D 0E 49 4E 44 58 44 41 54 41 01 00 38 4C 44  .M.INDXDATA..8LD
    8810: 4E 5F 08 00 48 0C 53 43 46 31 08 00 00 53 43 46  N_..H.SCF1...SCF
    8820: 32 08 00 00 53 43 46 33 08 00 00 53 43 46 34 08  2...SCF3...SCF4.
    8830: 00 00 53 43 46 35 08 00 00 53 43 46 36 08 00 10  ..SCF5...SCF6...
    8840: 43 4B 43 46 08 00 18 43 52 32 44 08 00 08 53 43  CKCF...CR2D...SC
    8850: 46 46 08 00 00 41 43 54 52 08 00 48 17 49 4F 41  FF...ACTR..H.IOA
    8860: 48 08 49 4F 41 4C 08 49 4F 48 32 08 49 4F 4C 32  H.IOAL.IOH2.IOL2
    8870: 08 00 40 06 49 4E 54 52 04 49 4E 54 54 04 00 18  ..@.INTR.INTT...
    8880: 44 4D 43 48 08 00 48 35 52 47 45 30 08 52 47 45  DMCH..H5RGE0.RGE
    8890: 31 08 52 47 45 32 08 52 47 45 33 08 52 47 45 34  1.RGE2.RGE3.RGE4
    88A0: 08 52 47 45 35 08 52 47 45 36 08 52 47 45 37 08  .RGE5.RGE6.RGE7.
    88B0: 52 47 45 38 08 52 47 45 39 08 00 30 4F 50 54 30  RGE8.RGE9..0OPT0
    88C0: 08 4F 50 54 31 08 4F 50 54 32 08 4F 50 54 33 08  .OPT1.OPT2.OPT3.
    88D0: 4F 50 54 34 08 4F 50 54 35 08 4F 50 54 36 08 4F  OPT4.OPT5.OPT6.O
    88E0: 50 54 37 08 4F 50 54 38 08 4F 50 54 39 08 14 0F  PT7.OPT8.OPT9...
    88F0: 43 47 4C 44 01 A4 83 88 44 43 41 54 68 00 14 4E  CGLD....DCATh..N
    8900: 05 44 53 54 41 01 45 4E 46 47 43 47 4C 44 68 70  .DSTA.ENFGCGLDhp
    8910: 41 43 54 52 60 45 58 46 47 A0 07 93 60 0A FF A4  ACTR`EXFG...`...
    8920: 00 7B 60 01 60 A0 12 95 68 0A 10 7D 49 4F 53 54  .{`.`...h..}IOST
    8930: 79 60 68 00 49 4F 53 54 A0 05 60 A4 0A 0F A1 1E  y`h.IOST..`.....
    8940: A0 18 95 68 0A 10 A0 0E 7B 79 01 68 00 49 4F 53  ...h....{y.h.IOS
    8950: 54 00 A4 0A 0D A1 03 A4 00 A1 03 A4 00 14 46 06  T.............F.
    8960: 45 53 54 41 01 45 4E 46 47 43 47 4C 44 68 70 41  ESTA.ENFGCGLDhpA
    8970: 43 54 52 60 45 58 46 47 A0 07 93 60 0A FF A4 00  CTR`EXFG...`....
    8980: 7B 60 01 60 A0 16 94 68 0A 0F 7D 49 4F 45 53 79  {`.`...h..}IOESy
    8990: 60 7B 68 0A 0F 00 00 49 4F 45 53 A0 05 60 A4 0A  `{h....IOES..`..
    89A0: 0F A1 22 A0 1C 94 68 0A 0F A0 12 7B 79 01 7B 68  .."...h....{y.{h
    89B0: 0A 0F 00 00 49 4F 45 53 00 A4 0A 0D A1 03 A4 00  ....IOES........
    89C0: A1 03 A4 00 14 4F 04 44 43 4E 54 02 45 4E 46 47  .....O.DCNT.ENFG
    89D0: 43 47 4C 44 68 A0 1C 90 95 44 4D 43 48 0A 04 92  CGLDh....DMCH...
    89E0: 93 7B 44 4D 43 48 0A 03 61 00 52 44 4D 41 68 69  .{DMCH..a.RDMAhi
    89F0: 75 61 70 69 41 43 54 52 79 49 4F 41 48 0A 08 61  uapiACTRyIOAH..a
    8A00: 7D 49 4F 41 4C 61 61 52 52 49 4F 68 69 61 0A 08  }IOALaaRRIOhia..
    8A10: 45 58 46 47 08 43 52 53 31 11 13 0A 10 47 01 00  EXFG.CRS1....G..
    8A20: 00 00 00 01 00 22 00 00 2A 00 00 79 00 8B 43 52  ....."..*..y..CR
    8A30: 53 31 0A 09 49 52 51 4D 8C 43 52 53 31 0A 0C 44  S1..IRQM.CRS1..D
    8A40: 4D 41 4D 8B 43 52 53 31 0A 02 49 4F 31 31 8B 43  MAM.CRS1..IO11.C
    8A50: 52 53 31 0A 04 49 4F 31 32 8C 43 52 53 31 0A 07  RS1..IO12.CRS1..
    8A60: 4C 45 4E 31 08 43 52 53 32 11 1B 0A 18 47 01 00  LEN1.CRS2....G..
    8A70: 00 00 00 01 00 47 01 00 00 00 00 01 00 22 00 00  .....G......."..
    8A80: 2A 00 00 79 00 8B 43 52 53 32 0A 11 49 52 51 45  *..y..CRS2..IRQE
    8A90: 8C 43 52 53 32 0A 14 44 4D 41 45 8B 43 52 53 32  .CRS2..DMAE.CRS2
    8AA0: 0A 02 49 4F 32 31 8B 43 52 53 32 0A 04 49 4F 32  ..IO21.CRS2..IO2
    8AB0: 32 8C 43 52 53 32 0A 07 4C 45 4E 32 8B 43 52 53  2.CRS2..LEN2.CRS
    8AC0: 32 0A 0A 49 4F 33 31 8B 43 52 53 32 0A 0C 49 4F  2..IO31.CRS2..IO
    8AD0: 33 32 8C 43 52 53 32 0A 0F 4C 45 4E 33 08 43 52  32.CRS2..LEN3.CR
    8AE0: 53 33 11 14 0A 11 47 01 00 00 00 00 01 00 23 00  S3....G.......#.
    8AF0: 00 18 2A 00 00 79 00 8B 43 52 53 33 0A 09 49 52  ..*..y..CRS3..IR
    8B00: 51 54 8C 43 52 53 33 0A 0B 49 52 51 53 8C 43 52  QT.CRS3..IRQS.CR
    8B10: 53 33 0A 0D 44 4D 41 54 8B 43 52 53 33 0A 02 49  S3..DMAT.CRS3..I
    8B20: 4F 34 31 8B 43 52 53 33 0A 04 49 4F 34 32 8C 43  O41.CRS3..IO42.C
    8B30: 52 53 33 0A 07 4C 45 4E 34 14 4D 07 44 43 52 53  RS3..LEN4.M.DCRS
    8B40: 02 45 4E 46 47 43 47 4C 44 68 79 49 4F 41 48 0A  .ENFGCGLDhyIOAH.
    8B50: 08 49 4F 31 31 7D 49 4F 41 4C 49 4F 31 31 49 4F  .IO11}IOALIO11IO
    8B60: 31 31 70 49 4F 31 31 49 4F 31 32 70 0A 08 4C 45  11pIO11IO12p..LE
    8B70: 4E 31 A0 0F 49 4E 54 52 79 01 49 4E 54 52 49 52  N1..INTRy.INTRIR
    8B80: 51 4D A1 07 70 00 49 52 51 4D A0 12 91 94 44 4D  QM..p.IRQM....DM
    8B90: 43 48 0A 03 93 69 00 70 00 44 4D 41 4D A1 10 7B  CH...i.p.DMAM..{
    8BA0: 44 4D 43 48 0A 03 61 79 01 61 44 4D 41 4D 45 58  DMCH..ay.aDMAMEX
    8BB0: 46 47 A4 43 52 53 31 14 45 0A 44 43 52 32 02 45  FG.CRS1.E.DCR2.E
    8BC0: 4E 46 47 43 47 4C 44 68 79 49 4F 41 48 0A 08 49  NFGCGLDhyIOAH..I
    8BD0: 4F 32 31 7D 49 4F 41 4C 49 4F 32 31 49 4F 32 31  O21}IOALIO21IO21
    8BE0: 70 49 4F 32 31 49 4F 32 32 70 0A 08 4C 45 4E 32  pIO21IO22p..LEN2
    8BF0: 79 49 4F 48 32 0A 08 49 4F 33 31 7D 49 4F 4C 32  yIOH2..IO31}IOL2
    8C00: 49 4F 33 31 49 4F 33 31 70 49 4F 33 31 49 4F 33  IO31IO31pIO31IO3
    8C10: 32 70 0A 08 4C 45 4E 33 A0 0F 49 4E 54 52 79 01  2p..LEN3..INTRy.
    8C20: 49 4E 54 52 49 52 51 45 A1 07 70 00 49 52 51 45  INTRIRQE..p.IRQE
    8C30: A0 12 91 94 44 4D 43 48 0A 03 93 69 00 70 00 44  ....DMCH...i.p.D
    8C40: 4D 41 45 A1 10 7B 44 4D 43 48 0A 03 61 79 01 61  MAE..{DMCH..ay.a
    8C50: 44 4D 41 45 45 58 46 47 A4 43 52 53 32 14 4D 07  DMAEEXFG.CRS2.M.
    8C60: 44 43 52 33 02 45 4E 46 47 43 47 4C 44 68 79 49  DCR3.ENFGCGLDhyI
    8C70: 4F 41 48 0A 08 49 4F 34 31 7D 49 4F 41 4C 49 4F  OAH..IO41}IOALIO
    8C80: 34 31 49 4F 34 31 70 49 4F 34 31 49 4F 34 32 70  41IO41pIO41IO42p
    8C90: 0A 08 4C 45 4E 34 A0 0F 49 4E 54 52 79 01 49 4E  ..LEN4..INTRy.IN
    8CA0: 54 52 49 52 51 54 A1 07 70 00 49 52 51 54 A0 12  TRIRQT..p.IRQT..
    8CB0: 91 94 44 4D 43 48 0A 03 93 69 00 70 00 44 4D 41  ..DMCH...i.p.DMA
    8CC0: 54 A1 10 7B 44 4D 43 48 0A 03 61 79 01 61 44 4D  T..{DMCH..ay.aDM
    8CD0: 41 54 45 58 46 47 A4 43 52 53 33 14 45 09 44 53  ATEXFG.CRS3.E.DS
    8CE0: 52 53 02 A0 12 7B 93 69 0A 02 4C 50 54 4D 69 00  RS...{.i..LPTMi.
    8CF0: 44 53 52 32 68 69 A1 4A 07 8B 68 0A 09 49 52 51  DSR2hi.J..h..IRQ
    8D00: 4D 8C 68 0A 0C 44 4D 41 4D 8B 68 0A 02 49 4F 31  M.h..DMAM.h..IO1
    8D10: 31 45 4E 46 47 43 47 4C 44 69 7B 49 4F 31 31 0A  1ENFGCGLDi{IO11.
    8D20: FF 49 4F 41 4C 7A 49 4F 31 31 0A 08 49 4F 41 48  .IOALzIO11..IOAH
    8D30: A0 12 49 52 51 4D 82 49 52 51 4D 60 74 60 01 49  ..IRQM.IRQM`t`.I
    8D40: 4E 54 52 A1 07 70 00 49 4E 54 52 A0 12 44 4D 41  NTR..p.INTR..DMA
    8D50: 4D 82 44 4D 41 4D 60 74 60 01 44 4D 43 48 A1 08  M.DMAM`t`.DMCH..
    8D60: 70 0A 04 44 4D 43 48 45 58 46 47 44 43 4E 54 69  p..DMCHEXFGDCNTi
    8D70: 01 14 4D 09 44 53 52 32 02 8B 68 0A 11 49 52 51  ..M.DSR2..h..IRQ
    8D80: 45 8C 68 0A 14 44 4D 41 45 8B 68 0A 02 49 4F 32  E.h..DMAE.h..IO2
    8D90: 31 8B 68 0A 0A 49 4F 33 31 45 4E 46 47 43 47 4C  1.h..IO31ENFGCGL
    8DA0: 44 69 7B 49 4F 32 31 0A FF 49 4F 41 4C 7A 49 4F  Di{IO21..IOALzIO
    8DB0: 32 31 0A 08 49 4F 41 48 7B 49 4F 33 31 0A FF 49  21..IOAH{IO31..I
    8DC0: 4F 4C 32 7A 49 4F 33 31 0A 08 49 4F 48 32 A0 12  OL2zIO31..IOH2..
    8DD0: 49 52 51 45 82 49 52 51 45 60 74 60 01 49 4E 54  IRQE.IRQE`t`.INT
    8DE0: 52 A1 07 70 00 49 4E 54 52 A0 12 44 4D 41 45 82  R..p.INTR..DMAE.
    8DF0: 44 4D 41 45 60 74 60 01 44 4D 43 48 A1 08 70 0A  DMAE`t`.DMCH..p.
    8E00: 04 44 4D 43 48 45 58 46 47 44 43 4E 54 69 01 14  .DMCHEXFGDCNTi..
    8E10: 47 08 44 53 52 33 02 8B 68 0A 02 49 4F 34 31 8B  G.DSR3..h..IO41.
    8E20: 68 0A 09 49 52 51 54 8C 68 0A 0B 49 52 51 53 8C  h..IRQT.h..IRQS.
    8E30: 68 0A 0D 44 4D 41 54 45 4E 46 47 43 47 4C 44 69  h..DMATENFGCGLDi
    8E40: 7B 49 4F 34 31 0A FF 49 4F 41 4C 7A 49 4F 34 31  {IO41..IOALzIO41
    8E50: 0A 08 49 4F 41 48 A0 12 49 52 51 54 82 49 52 51  ..IOAH..IRQT.IRQ
    8E60: 54 60 74 60 01 49 4E 54 52 A1 07 70 00 49 4E 54  T`t`.INTR..p.INT
    8E70: 52 A0 12 44 4D 41 54 82 44 4D 41 54 60 74 60 01  R..DMAT.DMAT`t`.
    8E80: 44 4D 43 48 A1 08 70 0A 04 44 4D 43 48 45 58 46  DMCH..p..DMCHEXF
    8E90: 47 44 43 4E 54 69 01 08 50 4D 46 47 00 14 45 08  GDCNTi..PMFG..E.
    8EA0: 53 49 4F 53 01 70 0D 53 49 4F 53 00 5B 31 A0 44  SIOS.p.SIOS.[1.D
    8EB0: 07 92 93 0A 05 68 45 4E 46 47 0A 0A 70 00 4F 50  .....hENFG..p.OP
    8EC0: 54 36 70 00 4F 50 54 37 A0 10 4B 42 46 47 7D 4F  T6p.OPT7..KBFG}O
    8ED0: 50 54 36 0A 10 4F 50 54 36 A1 0C 7B 4F 50 54 36  PT6..OPT6..{OPT6
    8EE0: 0A EF 4F 50 54 36 A0 10 4D 53 46 47 7D 4F 50 54  ..OPT6..MSFG}OPT
    8EF0: 36 0A 20 4F 50 54 36 A1 0C 7B 4F 50 54 36 0A DF  6. OPT6..{OPT6..
    8F00: 4F 50 54 36 70 0A FF 4F 50 54 33 70 0A FF 4F 50  OPT6p..OPT3p..OP
    8F10: 54 34 7D 01 4F 50 54 32 60 70 60 4F 50 54 32 45  T4}.OPT2`p`OPT2E
    8F20: 58 46 47 14 3D 53 49 4F 57 01 70 0D 53 49 4F 57  XFG.=SIOW.p.SIOW
    8F30: 00 5B 31 45 4E 46 47 0A 0A 70 0A FF 4F 50 54 33  .[1ENFG..p..OPT3
    8F40: 70 0A FF 4F 50 54 34 7B 4F 50 54 36 0A CF 4F 50  p..OPT4{OPT6..OP
    8F50: 54 36 7B 4F 50 54 32 0A FE 4F 50 54 32 45 58 46  T6{OPT2..OPT2EXF
    8F60: 47 14 06 53 49 4F 48 00 14 0F 5F 50 52 57 00 A4  G..SIOH..._PRW..
    8F70: 47 50 52 57 0A 1D 0A 03 5B 82 42 0E 55 41 52 31  GPRW....[.B.UAR1
    8F80: 08 5F 48 49 44 0C 41 D0 05 01 08 5F 55 49 44 00  ._HID.A...._UID.
    8F90: 08 4C 44 4E 5F 0A 02 14 13 5F 53 54 41 00 A4 5E  .LDN_...._STA..^
    8FA0: 5E 2E 53 49 4F 31 44 53 54 41 00 14 13 5F 44 49  ^.SIO1DSTA..._DI
    8FB0: 53 00 5E 5E 2E 53 49 4F 31 44 43 4E 54 00 00 14  S.^^.SIO1DCNT...
    8FC0: 14 5F 43 52 53 00 A4 5E 5E 2E 53 49 4F 31 44 43  ._CRS..^^.SIO1DC
    8FD0: 52 53 00 00 14 13 5F 53 52 53 01 5E 5E 2E 53 49  RS...._SRS.^^.SI
    8FE0: 4F 31 44 53 52 53 68 00 08 5F 44 44 4E 0D 43 4F  O1DSRSh.._DDN.CO
    8FF0: 4D 31 00 08 5F 50 52 53 11 43 05 0A 4F 31 00 47  M1.._PRS.C..O1.G
    9000: 01 F8 03 F8 03 01 08 22 10 00 2A 00 00 30 47 01  ......."..*..0G.
    9010: F8 03 F8 03 01 08 22 10 00 2A 00 00 30 47 01 F8  ......"..*..0G..
    9020: 02 F8 02 01 08 22 08 00 2A 00 00 30 47 01 E8 03  ....."..*..0G...
    9030: E8 03 01 08 22 10 00 2A 00 00 30 47 01 E8 02 E8  ...."..*..0G....
    9040: 02 01 08 22 08 00 2A 00 00 38 79 00 14 0F 5F 50  ..."..*..8y..._P
    9050: 52 57 00 A4 47 50 52 57 0A 03 0A 04 5B 82 25 48  RW..GPRW....[.%H
    9060: 48 4D 44 08 5F 48 49 44 0C 41 D0 0C 08 08 5F 55  HMD._HID.A...._U
    9070: 49 44 01 08 4C 44 4E 5F 0A 0B 14 08 5F 53 54 41  ID..LDN_...._STA
    9080: 00 A4 00 5B 82 0F 44 30 30 38 08 5F 41 44 52 0C  ...[..D008._ADR.
    9090: 06 00 14 00 5B 82 4B B2 50 43 49 31 08 5F 48 49  ....[.K.PCI1._HI
    90A0: 44 0C 41 D0 0A 08 08 5F 43 49 44 0C 41 D0 0A 03  D.A...._CID.A...
    90B0: 08 5F 41 44 52 00 14 09 5E 42 4E 30 31 00 A4 01  ._ADR...^BN01...
    90C0: 14 0B 5F 42 42 4E 00 A4 42 4E 30 31 08 5F 55 49  .._BBN..BN01._UI
    90D0: 44 01 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D A4  D..._PRT...PICM.
    90E0: 41 52 30 31 A4 50 44 30 31 08 43 50 52 42 01 08  AR01.PD01.CPRB..
    90F0: 4C 56 47 41 0A 00 08 53 54 41 56 0A 0F 08 42 52  LVGA...STAV...BR
    9100: 42 5F 0B 40 00 08 42 52 4C 5F 0B 40 00 08 49 4F  B_.@..BRL_.@..IO
    9110: 42 5F 0B 00 40 08 49 4F 4C 5F 0B 00 30 08 4D 42  B_..@.IOL_..0.MB
    9120: 42 5F 0C 00 00 00 C0 08 4D 42 4C 5F 0C 00 00 00  B_......MBL_....
    9130: 01 08 4D 41 42 4C 0E 00 00 40 20 40 06 00 00 08  ..MABL...@ @....
    9140: 4D 41 42 48 0C 00 00 01 00 08 4D 41 4D 4C 0C 00  MABH......MAML..
    9150: 00 01 00 08 4D 41 4D 48 0C 00 00 01 00 08 4D 41  ....MAMH......MA
    9160: 4C 4C 0E 00 00 00 93 59 00 00 00 08 4D 41 4C 48  LL.....Y....MALH
    9170: 0C 00 00 01 00 08 50 52 58 4D 0B 00 00 08 43 52  ......PRXM....CR
    9180: 53 32 11 48 09 0A 94 88 0D 00 02 0C 00 00 00 80  S2.H............
    9190: 00 FF 00 00 00 80 00 88 0D 00 01 0C 03 00 00 00  ................
    91A0: 00 00 00 00 00 00 00 88 0D 00 01 0C 03 00 00 00  ................
    91B0: 00 00 00 00 00 00 00 87 17 00 00 0C 03 00 00 00  ................
    91C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    91D0: 00 87 17 00 00 0C 03 00 00 00 00 00 00 00 80 FF  ................
    91E0: FF FF FF 00 00 00 00 00 00 00 80 8A 2B 00 00 0C  ............+...
    91F0: 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9210: 00 00 00 00 00 00 00 00 00 79 00 14 0B 5F 53 54  .........y..._ST
    9220: 41 00 A4 53 54 41 56 14 4A 19 5F 43 52 53 08 8B  A..STAV.J._CRS..
    9230: 43 52 53 32 0A 08 4D 49 4E 32 8B 43 52 53 32 0A  CRS2..MIN2.CRS2.
    9240: 0A 4D 41 58 32 8B 43 52 53 32 0A 0E 4C 45 4E 32  .MAX2.CRS2..LEN2
    9250: 70 42 52 42 5F 4D 49 4E 32 70 42 52 4C 5F 4C 45  pBRB_MIN2pBRL_LE
    9260: 4E 32 70 4C 45 4E 32 61 72 4D 49 4E 32 76 61 4D  N2pLEN2arMIN2vaM
    9270: 41 58 32 8B 43 52 53 32 0A 28 4D 49 4E 34 8B 43  AX2.CRS2.(MIN4.C
    9280: 52 53 32 0A 2A 4D 41 58 34 8B 43 52 53 32 0A 2E  RS2.*MAX4.CRS2..
    9290: 4C 45 4E 34 70 49 4F 42 5F 4D 49 4E 34 70 49 4F  LEN4pIOB_MIN4pIO
    92A0: 4C 5F 4C 45 4E 34 70 4C 45 4E 34 61 72 4D 49 4E  L_LEN4pLEN4arMIN
    92B0: 34 76 61 4D 41 58 34 A0 4D 07 4C 56 47 41 8B 43  4vaMAX4.M.LVGA.C
    92C0: 52 53 32 0A 18 49 4D 4E 32 8B 43 52 53 32 0A 1A  RS2..IMN2.CRS2..
    92D0: 49 4D 58 32 8B 43 52 53 32 0A 1E 49 4C 4E 32 70  IMX2.CRS2..ILN2p
    92E0: 0B B0 03 49 4D 4E 32 70 0B DF 03 49 4D 58 32 70  ...IMN2p...IMX2p
    92F0: 0A 30 49 4C 4E 32 8A 43 52 53 32 0A 3A 56 4D 4E  .0ILN2.CRS2.:VMN
    9300: 32 8A 43 52 53 32 0A 3E 56 4D 58 32 8A 43 52 53  2.CRS2.>VMX2.CRS
    9310: 32 0A 46 56 4C 4E 32 70 0C 00 00 0A 00 56 4D 4E  2.FVLN2p.....VMN
    9320: 32 70 0C FF FF 0B 00 56 4D 58 32 70 0C 00 00 02  2p.....VMX2p....
    9330: 00 56 4C 4E 32 8A 43 52 53 32 0A 54 4D 49 4E 35  .VLN2.CRS2.TMIN5
    9340: 8A 43 52 53 32 0A 58 4D 41 58 35 8A 43 52 53 32  .CRS2.XMAX5.CRS2
    9350: 0A 60 4C 45 4E 35 70 4D 42 42 5F 4D 49 4E 35 70  .`LEN5pMBB_MIN5p
    9360: 4D 42 4C 5F 4C 45 4E 35 70 4C 45 4E 35 61 72 4D  MBL_LEN5pLEN5arM
    9370: 49 4E 35 76 61 4D 41 58 35 8F 43 52 53 32 0A 72  IN5vaMAX5.CRS2.r
    9380: 4D 49 4E 39 8F 43 52 53 32 0A 7A 4D 41 58 39 8F  MIN9.CRS2.zMAX9.
    9390: 43 52 53 32 0A 8A 4C 45 4E 39 70 4D 41 42 4C 4D  CRS2..LEN9pMABLM
    93A0: 49 4E 39 70 4D 41 4C 4C 4C 45 4E 39 70 4C 45 4E  IN9pMALLLEN9pLEN
    93B0: 39 60 72 4D 49 4E 39 76 60 4D 41 58 39 A4 43 52  9`rMIN9v`MAX9.CR
    93C0: 53 32 14 42 13 5F 4F 53 43 0C 08 53 55 50 50 00  S2.B._OSC..SUPP.
    93D0: 08 43 54 52 4C 00 8A 6B 00 43 44 57 31 8A 6B 0A  .CTRL..k.CDW1.k.
    93E0: 04 43 44 57 32 8A 6B 0A 08 43 44 57 33 A0 48 0F  .CDW2.k..CDW3.H.
    93F0: 93 68 11 13 0A 10 5B 4D DB 33 F7 1F 1C 40 96 57  .h....[M.3...@.W
    9400: 74 41 C0 3D D7 66 70 43 44 57 32 53 55 50 50 70  tA.=.fpCDW2SUPPp
    9410: 43 44 57 33 43 54 52 4C A0 18 92 93 7B 53 55 50  CDW3CTRL....{SUP
    9420: 50 0A 16 00 0A 16 7B 43 54 52 4C 0A 1E 43 54 52  P.....{CTRL..CTR
    9430: 4C A0 11 92 50 45 48 50 7B 43 54 52 4C 0A 1E 43  L...PEHP{CTRL..C
    9440: 54 52 4C A0 11 92 53 48 50 43 7B 43 54 52 4C 0A  TRL...SHPC{CTRL.
    9450: 1D 43 54 52 4C A0 11 92 50 45 50 4D 7B 43 54 52  .CTRL...PEPM{CTR
    9460: 4C 0A 1B 43 54 52 4C A0 11 92 50 45 45 52 7B 43  L..CTRL...PEER{C
    9470: 54 52 4C 0A 15 43 54 52 4C A0 11 92 50 45 43 53  TRL..CTRL...PECS
    9480: 7B 43 54 52 4C 0A 0F 43 54 52 4C A0 10 92 93 69  {CTRL..CTRL....i
    9490: 01 7D 43 44 57 31 0A 08 43 44 57 31 A0 15 5B 12  .}CDW1..CDW1..[.
    94A0: 50 4F 53 43 00 7B 43 54 52 4C 50 4F 53 43 43 54  POSC.{CTRLPOSCCT
    94B0: 52 4C A0 16 92 93 43 44 57 33 43 54 52 4C 7D 43  RL....CDW3CTRL}C
    94C0: 44 57 31 0A 10 43 44 57 31 70 43 54 52 4C 43 44  DW1..CDW1pCTRLCD
    94D0: 57 33 A0 11 5B 12 50 4F 53 53 00 70 53 55 50 50  W3..[.POSS.pSUPP
    94E0: 50 4F 53 53 A4 6B A1 0E 7D 43 44 57 31 0A 04 43  POSS.k..}CDW1..C
    94F0: 44 57 31 A4 6B 5B 82 0C 44 30 38 43 08 5F 41 44  DW1.k[..D08C._AD
    9500: 52 0A 02 5B 82 0C 44 30 38 44 08 5F 41 44 52 0A  R..[..D08D._ADR.
    9510: 03 5B 82 46 04 47 50 50 30 08 5F 41 44 52 0C 01  .[.F.GPP0._ADR..
    9520: 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9530: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9540: A4 47 30 38 46 A4 50 30 38 46 5B 82 0D 44 30 46  .G08F.P08F[..D0F
    9550: 36 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  6._ADR...[.F.GPP
    9560: 31 08 5F 41 44 52 0C 02 00 01 00 14 0F 5F 50 52  1._ADR......._PR
    9570: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9580: 54 00 A0 0A 50 49 43 4D A4 47 30 39 30 A4 50 30  T...PICM.G090.P0
    9590: 39 30 5B 82 0D 44 30 46 37 08 5F 41 44 52 0B FF  90[..D0F7._ADR..
    95A0: FF 5B 82 46 04 47 50 50 32 08 5F 41 44 52 0C 03  .[.F.GPP2._ADR..
    95B0: 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    95C0: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    95D0: A4 47 30 39 31 A4 50 30 39 31 5B 82 0D 44 30 46  .G091.P091[..D0F
    95E0: 38 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  8._ADR...[.F.GPP
    95F0: 33 08 5F 41 44 52 0C 04 00 01 00 14 0F 5F 50 52  3._ADR......._PR
    9600: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9610: 54 00 A0 0A 50 49 43 4D A4 47 30 39 32 A4 50 30  T...PICM.G092.P0
    9620: 39 32 5B 82 0D 44 30 46 39 08 5F 41 44 52 0B FF  92[..D0F9._ADR..
    9630: FF 5B 82 46 04 47 50 50 34 08 5F 41 44 52 0C 05  .[.F.GPP4._ADR..
    9640: 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9650: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9660: A4 47 30 39 33 A4 50 30 39 33 5B 82 0D 44 30 46  .G093.P093[..D0F
    9670: 41 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  A._ADR...[.F.GPP
    9680: 35 08 5F 41 44 52 0C 06 00 01 00 14 0F 5F 50 52  5._ADR......._PR
    9690: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    96A0: 54 00 A0 0A 50 49 43 4D A4 47 30 39 34 A4 50 30  T...PICM.G094.P0
    96B0: 39 34 5B 82 0D 44 30 46 42 08 5F 41 44 52 0B FF  94[..D0FB._ADR..
    96C0: FF 5B 82 46 04 47 50 50 36 08 5F 41 44 52 0C 07  .[.F.GPP6._ADR..
    96D0: 00 01 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    96E0: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    96F0: A4 47 30 39 35 A4 50 30 39 35 5B 82 0D 44 30 46  .G095.P095[..D0F
    9700: 43 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  C._ADR...[.F.GPP
    9710: 37 08 5F 41 44 52 0C 01 00 02 00 14 0F 5F 50 52  7._ADR......._PR
    9720: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9730: 54 00 A0 0A 50 49 43 4D A4 47 30 39 36 A4 50 30  T...PICM.G096.P0
    9740: 39 36 5B 82 0D 44 30 46 44 08 5F 41 44 52 0B FF  96[..D0FD._ADR..
    9750: FF 5B 82 46 04 47 50 50 38 08 5F 41 44 52 0C 02  .[.F.GPP8._ADR..
    9760: 00 02 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9770: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9780: A4 47 30 39 37 A4 50 30 39 37 5B 82 0D 44 30 46  .G097.P097[..D0F
    9790: 45 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  E._ADR...[.F.GPP
    97A0: 39 08 5F 41 44 52 0C 01 00 03 00 14 0F 5F 50 52  9._ADR......._PR
    97B0: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    97C0: 54 00 A0 0A 50 49 43 4D A4 47 30 39 38 A4 50 30  T...PICM.G098.P0
    97D0: 39 38 5B 82 0D 44 30 45 45 08 5F 41 44 52 0B FF  98[..D0EE._ADR..
    97E0: FF 5B 82 46 04 47 50 50 41 08 5F 41 44 52 0C 02  .[.F.GPPA._ADR..
    97F0: 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9800: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9810: A4 47 30 39 39 A4 50 30 39 39 5B 82 0D 44 30 45  .G099.P099[..D0E
    9820: 46 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  F._ADR...[.F.GPP
    9830: 42 08 5F 41 44 52 0C 03 00 03 00 14 0F 5F 50 52  B._ADR......._PR
    9840: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9850: 54 00 A0 0A 50 49 43 4D A4 47 30 39 41 A4 50 30  T...PICM.G09A.P0
    9860: 39 41 5B 82 0D 44 30 46 30 08 5F 41 44 52 0B FF  9A[..D0F0._ADR..
    9870: FF 5B 82 46 04 47 50 50 43 08 5F 41 44 52 0C 04  .[.F.GPPC._ADR..
    9880: 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9890: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    98A0: A4 47 30 39 42 A4 50 30 39 42 5B 82 0D 44 30 46  .G09B.P09B[..D0F
    98B0: 31 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  1._ADR...[.F.GPP
    98C0: 44 08 5F 41 44 52 0C 05 00 03 00 14 0F 5F 50 52  D._ADR......._PR
    98D0: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    98E0: 54 00 A0 0A 50 49 43 4D A4 47 30 39 43 A4 50 30  T...PICM.G09C.P0
    98F0: 39 43 5B 82 0D 44 30 46 32 08 5F 41 44 52 0B FF  9C[..D0F2._ADR..
    9900: FF 5B 82 46 04 47 50 50 45 08 5F 41 44 52 0C 06  .[.F.GPPE._ADR..
    9910: 00 03 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9920: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9930: A4 47 30 39 44 A4 50 30 39 44 5B 82 0D 44 30 46  .G09D.P09D[..D0F
    9940: 33 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  3._ADR...[.F.GPP
    9950: 46 08 5F 41 44 52 0C 07 00 03 00 14 0F 5F 50 52  F._ADR......._PR
    9960: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9970: 54 00 A0 0A 50 49 43 4D A4 47 30 39 45 A4 50 30  T...PICM.G09E.P0
    9980: 39 45 5B 82 0D 44 30 46 34 08 5F 41 44 52 0B FF  9E[..D0F4._ADR..
    9990: FF 5B 82 46 04 47 50 50 47 08 5F 41 44 52 0C 01  .[.F.GPPG._ADR..
    99A0: 00 04 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    99B0: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    99C0: A4 47 30 39 46 A4 50 30 39 46 5B 82 0D 44 30 46  .G09F.P09F[..D0F
    99D0: 35 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 50  5._ADR...[.F.GPP
    99E0: 48 08 5F 41 44 52 0C 02 00 04 00 14 0F 5F 50 52  H._ADR......._PR
    99F0: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9A00: 54 00 A0 0A 50 49 43 4D A4 47 30 41 30 A4 50 30  T...PICM.G0A0.P0
    9A10: 41 30 5B 82 0D 44 30 46 46 08 5F 41 44 52 0B FF  A0[..D0FF._ADR..
    9A20: FF 5B 82 46 04 47 50 31 35 08 5F 41 44 52 0C 01  .[.F.GP15._ADR..
    9A30: 00 05 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9A40: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9A50: A4 47 30 41 31 A4 50 30 41 31 5B 82 0D 44 30 30  .G0A1.P0A1[..D00
    9A60: 30 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 32  0._ADR...[.F.GP2
    9A70: 35 08 5F 41 44 52 0C 02 00 05 00 14 0F 5F 50 52  5._ADR......._PR
    9A80: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9A90: 54 00 A0 0A 50 49 43 4D A4 47 30 41 32 A4 50 30  T...PICM.G0A2.P0
    9AA0: 41 32 5B 82 0D 44 30 30 31 08 5F 41 44 52 0B FF  A2[..D001._ADR..
    9AB0: FF 5B 82 46 04 47 50 33 35 08 5F 41 44 52 0C 03  .[.F.GP35._ADR..
    9AC0: 00 05 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9AD0: 08 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9AE0: A4 47 30 41 33 A4 50 30 41 33 5B 82 0D 44 30 30  .G0A3.P0A3[..D00
    9AF0: 32 08 5F 41 44 52 0B FF FF 5B 82 46 04 47 50 34  2._ADR...[.F.GP4
    9B00: 35 08 5F 41 44 52 0C 04 00 05 00 14 0F 5F 50 52  5._ADR......._PR
    9B10: 57 00 A4 47 50 52 57 0A 08 0A 04 14 16 5F 50 52  W..GPRW......_PR
    9B20: 54 00 A0 0A 50 49 43 4D A4 47 30 41 34 A4 50 30  T...PICM.G0A4.P0
    9B30: 41 34 5B 82 0D 44 30 30 33 08 5F 41 44 52 0B FF  A4[..D003._ADR..
    9B40: FF 5B 82 4D 06 47 50 31 37 08 5F 41 44 52 0C 01  .[.M.GP17._ADR..
    9B50: 00 07 00 14 0F 5F 50 52 57 00 A4 47 50 52 57 0A  ....._PRW..GPRW.
    9B60: 0B 0A 04 14 16 5F 50 52 54 00 A0 0A 50 49 43 4D  ....._PRT...PICM
    9B70: A4 47 30 41 35 A4 50 30 41 35 5B 82 0B 44 30 41  .G0A5.P0A5[..D0A
    9B80: 36 08 5F 41 44 52 00 5B 82 0B 44 30 41 37 08 5F  6._ADR.[..D0A7._
    9B90: 41 44 52 01 5B 82 0C 44 30 41 38 08 5F 41 44 52  ADR.[..D0A8._ADR
    9BA0: 0A 02 5B 82 0C 44 30 41 39 08 5F 41 44 52 0A 03  ..[..D0A9._ADR..
    9BB0: 5B 82 0F 47 50 32 37 08 5F 41 44 52 0C 02 00 07  [..GP27._ADR....
    9BC0: 00 10 48 6A 5F 47 50 45 14 42 63 5F 4C 30 38 00  ..Hj_GPE.Bc_L08.
    9BD0: 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 30  .\/._SB_PCI3GPP0
    9BE0: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  ...\/._SB_PCI3GP
    9BF0: 50 31 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33  P1...\/._SB_PCI3
    9C00: 47 50 50 32 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPP2...\/._SB_PC
    9C10: 49 33 47 50 50 33 0A 02 86 5C 2F 03 5F 53 42 5F  I3GPP3...\/._SB_
    9C20: 50 43 49 33 47 50 50 34 0A 02 86 5C 2F 03 5F 53  PCI3GPP4...\/._S
    9C30: 42 5F 50 43 49 33 47 50 50 35 0A 02 86 5C 2F 03  B_PCI3GPP5...\/.
    9C40: 5F 53 42 5F 50 43 49 33 47 50 50 36 0A 02 86 5C  _SB_PCI3GPP6...\
    9C50: 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 37 0A 02  /._SB_PCI3GPP7..
    9C60: 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 38  .\/._SB_PCI3GPP8
    9C70: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  ...\/._SB_PCI3GP
    9C80: 50 39 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33  P9...\/._SB_PCI3
    9C90: 47 50 50 41 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPPA...\/._SB_PC
    9CA0: 49 33 47 50 50 42 0A 02 86 5C 2F 03 5F 53 42 5F  I3GPPB...\/._SB_
    9CB0: 50 43 49 33 47 50 50 43 0A 02 86 5C 2F 03 5F 53  PCI3GPPC...\/._S
    9CC0: 42 5F 50 43 49 33 47 50 50 44 0A 02 86 5C 2F 03  B_PCI3GPPD...\/.
    9CD0: 5F 53 42 5F 50 43 49 33 47 50 50 45 0A 02 86 5C  _SB_PCI3GPPE...\
    9CE0: 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 46 0A 02  /._SB_PCI3GPPF..
    9CF0: 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 47  .\/._SB_PCI3GPPG
    9D00: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  ...\/._SB_PCI3GP
    9D10: 50 48 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 33  PH...\/._SB_PCI3
    9D20: 47 50 31 35 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GP15...\/._SB_PC
    9D30: 49 33 47 50 32 35 0A 02 86 5C 2F 03 5F 53 42 5F  I3GP25...\/._SB_
    9D40: 50 43 49 33 47 50 33 35 0A 02 86 5C 2F 03 5F 53  PCI3GP35...\/._S
    9D50: 42 5F 50 43 49 33 47 50 34 35 0A 02 86 5C 2F 03  B_PCI3GP45...\/.
    9D60: 5F 53 42 5F 50 43 49 32 47 50 50 30 0A 02 86 5C  _SB_PCI2GPP0...\
    9D70: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 31 0A 02  /._SB_PCI2GPP1..
    9D80: 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 32  .\/._SB_PCI2GPP2
    9D90: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  ...\/._SB_PCI2GP
    9DA0: 50 33 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32  P3...\/._SB_PCI2
    9DB0: 47 50 50 34 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPP4...\/._SB_PC
    9DC0: 49 32 47 50 50 35 0A 02 86 5C 2F 03 5F 53 42 5F  I2GPP5...\/._SB_
    9DD0: 50 43 49 32 47 50 50 36 0A 02 86 5C 2F 03 5F 53  PCI2GPP6...\/._S
    9DE0: 42 5F 50 43 49 32 47 50 50 37 0A 02 86 5C 2F 03  B_PCI2GPP7...\/.
    9DF0: 5F 53 42 5F 50 43 49 32 47 50 50 38 0A 02 86 5C  _SB_PCI2GPP8...\
    9E00: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 39 0A 02  /._SB_PCI2GPP9..
    9E10: 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 41  .\/._SB_PCI2GPPA
    9E20: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  ...\/._SB_PCI2GP
    9E30: 50 42 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32  PB...\/._SB_PCI2
    9E40: 47 50 50 43 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPPC...\/._SB_PC
    9E50: 49 32 47 50 50 44 0A 02 86 5C 2F 03 5F 53 42 5F  I2GPPD...\/._SB_
    9E60: 50 43 49 32 47 50 50 45 0A 02 86 5C 2F 03 5F 53  PCI2GPPE...\/._S
    9E70: 42 5F 50 43 49 32 47 50 50 46 0A 02 86 5C 2F 03  B_PCI2GPPF...\/.
    9E80: 5F 53 42 5F 50 43 49 32 47 50 50 47 0A 02 86 5C  _SB_PCI2GPPG...\
    9E90: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 48 0A 02  /._SB_PCI2GPPH..
    9EA0: 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 31 35  .\/._SB_PCI2GP15
    9EB0: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  ...\/._SB_PCI2GP
    9EC0: 32 35 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 32  25...\/._SB_PCI2
    9ED0: 47 50 33 35 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GP35...\/._SB_PC
    9EE0: 49 32 47 50 34 35 0A 02 86 5C 2F 03 5F 53 42 5F  I2GP45...\/._SB_
    9EF0: 50 43 49 30 47 50 50 30 0A 02 86 5C 2F 03 5F 53  PCI0GPP0...\/._S
    9F00: 42 5F 50 43 49 30 47 50 50 32 0A 02 86 5C 2F 03  B_PCI0GPP2...\/.
    9F10: 5F 53 42 5F 50 43 49 30 47 50 50 33 0A 02 86 5C  _SB_PCI0GPP3...\
    9F20: 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 34 0A 02  /._SB_PCI0GPP4..
    9F30: 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 35  .\/._SB_PCI0GPP5
    9F40: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50  ...\/._SB_PCI0GP
    9F50: 50 36 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 30  P6...\/._SB_PCI0
    9F60: 47 50 50 37 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPP7...\/._SB_PC
    9F70: 49 30 47 50 50 38 0A 02 86 5C 2F 03 5F 53 42 5F  I0GPP8...\/._SB_
    9F80: 50 43 49 30 47 50 50 39 0A 02 86 5C 2F 03 5F 53  PCI0GPP9...\/._S
    9F90: 42 5F 50 43 49 30 47 50 50 41 0A 02 86 5C 2F 03  B_PCI0GPPA...\/.
    9FA0: 5F 53 42 5F 50 43 49 30 47 50 50 42 0A 02 86 5C  _SB_PCI0GPPB...\
    9FB0: 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 43 0A 02  /._SB_PCI0GPPC..
    9FC0: 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 44  .\/._SB_PCI0GPPD
    9FD0: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50  ...\/._SB_PCI0GP
    9FE0: 50 45 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 30  PE...\/._SB_PCI0
    9FF0: 47 50 50 46 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPPF...\/._SB_PC
    A000: 49 30 47 50 50 47 0A 02 86 5C 2F 03 5F 53 42 5F  I0GPPG...\/._SB_
    A010: 50 43 49 30 47 50 50 48 0A 02 86 5C 2F 03 5F 53  PCI0GPPH...\/._S
    A020: 42 5F 50 43 49 30 47 50 31 35 0A 02 86 5C 2F 03  B_PCI0GP15...\/.
    A030: 5F 53 42 5F 50 43 49 30 47 50 32 35 0A 02 86 5C  _SB_PCI0GP25...\
    A040: 2F 03 5F 53 42 5F 50 43 49 30 47 50 33 35 0A 02  /._SB_PCI0GP35..
    A050: 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 34 35  .\/._SB_PCI0GP45
    A060: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  ...\/._SB_PCI1GP
    A070: 50 30 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31  P0...\/._SB_PCI1
    A080: 47 50 50 31 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPP1...\/._SB_PC
    A090: 49 31 47 50 50 32 0A 02 86 5C 2F 03 5F 53 42 5F  I1GPP2...\/._SB_
    A0A0: 50 43 49 31 47 50 50 33 0A 02 86 5C 2F 03 5F 53  PCI1GPP3...\/._S
    A0B0: 42 5F 50 43 49 31 47 50 50 34 0A 02 86 5C 2F 03  B_PCI1GPP4...\/.
    A0C0: 5F 53 42 5F 50 43 49 31 47 50 50 35 0A 02 86 5C  _SB_PCI1GPP5...\
    A0D0: 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 36 0A 02  /._SB_PCI1GPP6..
    A0E0: 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 37  .\/._SB_PCI1GPP7
    A0F0: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  ...\/._SB_PCI1GP
    A100: 50 38 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31  P8...\/._SB_PCI1
    A110: 47 50 50 39 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPP9...\/._SB_PC
    A120: 49 31 47 50 50 41 0A 02 86 5C 2F 03 5F 53 42 5F  I1GPPA...\/._SB_
    A130: 50 43 49 31 47 50 50 42 0A 02 86 5C 2F 03 5F 53  PCI1GPPB...\/._S
    A140: 42 5F 50 43 49 31 47 50 50 43 0A 02 86 5C 2F 03  B_PCI1GPPC...\/.
    A150: 5F 53 42 5F 50 43 49 31 47 50 50 44 0A 02 86 5C  _SB_PCI1GPPD...\
    A160: 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 45 0A 02  /._SB_PCI1GPPE..
    A170: 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 46  .\/._SB_PCI1GPPF
    A180: 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  ...\/._SB_PCI1GP
    A190: 50 47 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49 31  PG...\/._SB_PCI1
    A1A0: 47 50 50 48 0A 02 86 5C 2F 03 5F 53 42 5F 50 43  GPPH...\/._SB_PC
    A1B0: 49 31 47 50 31 35 0A 02 86 5C 2F 03 5F 53 42 5F  I1GP15...\/._SB_
    A1C0: 50 43 49 31 47 50 32 35 0A 02 86 5C 2F 03 5F 53  PCI1GP25...\/._S
    A1D0: 42 5F 50 43 49 31 47 50 33 35 0A 02 86 5C 2F 03  B_PCI1GP35...\/.
    A1E0: 5F 53 42 5F 50 43 49 31 47 50 34 35 0A 02 86 5C  _SB_PCI1GP45...\
    A1F0: 2E 5F 53 42 5F 50 57 52 42 0A 02 14 4E 06 5F 4C  ._SB_PWRB...N._L
    A200: 30 42 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47  0B..\/._SB_PCI3G
    A210: 50 31 37 0A 02 86 5C 2F 03 5F 53 42 5F 50 43 49  P17...\/._SB_PCI
    A220: 33 47 50 32 37 0A 02 86 5C 2F 03 5F 53 42 5F 50  3GP27...\/._SB_P
    A230: 43 49 32 47 50 31 37 0A 02 86 5C 2F 03 5F 53 42  CI2GP17...\/._SB
    A240: 5F 50 43 49 30 47 50 31 37 0A 02 86 5C 2F 03 5F  _PCI0GP17...\/._
    A250: 53 42 5F 50 43 49 31 47 50 31 37 0A 02 86 5C 2E  SB_PCI1GP17...\.
    A260: 5F 53 42 5F 50 57 52 42 0A 02 10 24 5F 53 42 5F  _SB_PWRB...$_SB_
    A270: 5B 82 1D 50 57 52 42 08 5F 48 49 44 0C 41 D0 0C  [..PWRB._HID.A..
    A280: 0C 08 5F 55 49 44 0A AA 08 5F 53 54 41 0A 0B 08  .._UID..._STA...
    A290: 5F 53 30 5F 12 06 04 00 00 00 00 08 5F 53 33 5F  _S0_........_S3_
    A2A0: 12 07 04 0A 03 00 00 00 08 5F 53 34 5F 12 07 04  ........._S4_...
    A2B0: 0A 04 00 00 00 08 5F 53 35 5F 12 07 04 0A 05 00  ......_S5_......
    A2C0: 00 00 14 42 05 5F 50 54 53 01 A0 4A 04 68 4C 45  ...B._PTS..J.hLE
    A2D0: 44 53 68 5C 2F 03 5F 53 42 5F 54 50 4D 5F 54 50  DSh\/._SB_TPM_TP
    A2E0: 54 53 68 4D 50 54 53 68 53 50 54 53 68 5C 2F 03  TShMPTShSPTSh\/.
    A2F0: 5F 53 42 5F 50 43 49 30 4E 50 54 53 68 5C 2F 05  _SB_PCI0NPTSh\/.
    A300: 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31  _SB_PCI0SBRGSIO1
    A310: 53 49 4F 53 68 14 43 05 5F 57 41 4B 01 5C 2F 05  SIOSh.C._WAK.\/.
    A320: 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31  _SB_PCI0SBRGSIO1
    A330: 53 49 4F 57 68 79 68 0A 04 44 42 47 38 5C 2F 03  SIOWhyh..DBG8\/.
    A340: 5F 53 42 5F 50 43 49 30 4E 57 41 4B 68 79 68 0A  _SB_PCI0NWAKhyh.
    A350: 04 44 42 47 38 53 57 41 4B 68 4D 57 41 4B 68 4C  .DBG8SWAKhMWAKhL
    A360: 45 44 57 68 A4 57 41 4B 50 10 22 2E 5F 53 42 5F  EDWh.WAKP."._SB_
    A370: 50 43 49 33 14 0B 42 4E 30 33 00 A4 42 52 42 5F  PCI3..BN03..BRB_
    A380: 14 0B 5F 50 58 4D 00 A4 50 52 58 4D 10 22 2E 5F  .._PXM..PRXM."._
    A390: 53 42 5F 50 43 49 32 14 0B 42 4E 30 32 00 A4 42  SB_PCI2..BN02..B
    A3A0: 52 42 5F 14 0B 5F 50 58 4D 00 A4 50 52 58 4D 10  RB_.._PXM..PRXM.
    A3B0: 22 2E 5F 53 42 5F 50 43 49 31 14 0B 42 4E 30 31  "._SB_PCI1..BN01
    A3C0: 00 A4 42 52 42 5F 14 0B 5F 50 58 4D 00 A4 50 52  ..BRB_.._PXM..PR
    A3D0: 58 4D 10 22 2E 5F 53 42 5F 50 43 49 30 14 0B 42  XM."._SB_PCI0..B
    A3E0: 4E 30 30 00 A4 42 52 42 5F 14 0B 5F 50 58 4D 00  N00..BRB_.._PXM.
    A3F0: A4 50 52 58 4D 10 49 63 5F 53 42 5F 5B 80 50 49  .PRXM.Ic_SB_[.PI
    A400: 52 51 01 0B 00 0C 0A 02 5B 81 10 50 49 52 51 01  RQ......[..PIRQ.
    A410: 50 49 44 58 08 50 44 41 54 08 5B 86 4E 0C 50 49  PIDX.PDAT.[.N.PI
    A420: 44 58 50 44 41 54 01 50 49 52 41 08 50 49 52 42  DXPDAT.PIRA.PIRB
    A430: 08 50 49 52 43 08 50 49 52 44 08 50 49 52 45 08  .PIRC.PIRD.PIRE.
    A440: 50 49 52 46 08 50 49 52 47 08 50 49 52 48 08 00  PIRF.PIRG.PIRH..
    A450: 20 53 49 52 41 08 53 49 52 42 08 53 49 52 43 08   SIRA.SIRB.SIRC.
    A460: 53 49 52 44 08 50 49 52 53 08 00 10 48 44 41 44  SIRD.PIRS...HDAD
    A470: 08 00 18 53 44 43 4C 08 00 10 53 44 49 4F 08 00  ...SDCL...SDIO..
    A480: 48 0A 55 53 42 31 08 00 18 55 53 42 33 08 00 40  H.USB1...USB3..@
    A490: 06 53 41 54 41 08 00 40 10 47 49 4F 43 08 00 48  .SATA..@.GIOC..H
    A4A0: 06 49 32 43 30 08 49 32 43 31 08 49 32 43 32 08  .I2C0.I2C1.I2C2.
    A4B0: 49 32 43 33 08 55 52 54 30 08 55 52 54 31 08 00  I2C3.URT0.URT1..
    A4C0: 40 05 41 49 52 41 08 41 49 52 42 08 41 49 52 43  @.AIRA.AIRB.AIRC
    A4D0: 08 41 49 52 44 08 41 49 52 45 08 41 49 52 46 08  .AIRD.AIRE.AIRF.
    A4E0: 41 49 52 47 08 41 49 52 48 08 5B 80 4B 42 44 44  AIRG.AIRH.[.KBDD
    A4F0: 01 0A 64 01 5B 81 0B 4B 42 44 44 01 49 4F 36 34  ..d.[..KBDD.IO64
    A500: 08 14 4F 07 44 53 50 49 00 49 4E 54 41 0A 1F 49  ..O.DSPI.INTA..I
    A510: 4E 54 42 0A 1F 49 4E 54 43 0A 1F 49 4E 54 44 0A  NTB..INTC..INTD.
    A520: 1F 70 49 4F 36 34 61 70 0A 1F 50 49 52 45 70 0A  .pIO64ap..PIREp.
    A530: 1F 50 49 52 46 70 0A 1F 50 49 52 47 70 0A 1F 50  .PIRFp..PIRGp..P
    A540: 49 52 48 70 49 4F 36 34 61 70 0A 10 41 49 52 41  IRHpIO64ap..AIRA
    A550: 70 0A 11 41 49 52 42 70 0A 12 41 49 52 43 70 0A  p..AIRBp..AIRCp.
    A560: 13 41 49 52 44 70 0A 14 41 49 52 45 70 0A 15 41  .AIRDp..AIREp..A
    A570: 49 52 46 70 0A 16 41 49 52 47 70 0A 17 41 49 52  IRFp..AIRGp..AIR
    A580: 48 14 12 49 4E 54 41 01 70 68 50 49 52 41 70 68  H..INTA.phPIRAph
    A590: 48 44 41 44 14 0C 49 4E 54 42 01 70 68 50 49 52  HDAD..INTB.phPIR
    A5A0: 42 14 18 49 4E 54 43 01 70 68 50 49 52 43 70 68  B..INTC.phPIRCph
    A5B0: 55 53 42 31 70 68 55 53 42 33 14 12 49 4E 54 44  USB1phUSB3..INTD
    A5C0: 01 70 68 50 49 52 44 70 68 53 41 54 41 08 42 55  .phPIRDphSATA.BU
    A5D0: 46 41 11 09 0A 06 23 00 80 18 79 00 08 49 50 52  FA....#...y..IPR
    A5E0: 41 11 09 0A 06 23 20 0C 18 79 00 08 49 50 52 42  A....# ..y..IPRB
    A5F0: 11 09 0A 06 23 20 0C 18 79 00 08 49 50 52 43 11  ....# ..y..IPRC.
    A600: 09 0A 06 23 20 0C 18 79 00 08 49 50 52 44 11 09  ...# ..y..IPRD..
    A610: 0A 06 23 20 0C 18 79 00 5B 82 4F 07 4C 4E 4B 41  ..# ..y.[.O.LNKA
    A620: 08 5F 48 49 44 0C 41 D0 0C 0F 08 5F 55 49 44 01  ._HID.A...._UID.
    A630: 14 14 5F 53 54 41 00 A0 08 50 49 52 41 A4 0A 0B  .._STA...PIRA...
    A640: A1 04 A4 0A 09 14 0B 5F 50 52 53 00 A4 50 52 53  ......._PRS..PRS
    A650: 41 14 0C 5F 44 49 53 00 49 4E 54 41 0A 1F 14 1F  A.._DIS.INTA....
    A660: 5F 43 52 53 00 8B 42 55 46 41 01 49 52 51 58 79  _CRS..BUFA.IRQXy
    A670: 01 50 49 52 41 49 52 51 58 A4 42 55 46 41 14 1A  .PIRAIRQX.BUFA..
    A680: 5F 53 52 53 01 8B 68 01 49 52 41 5F 82 49 52 41  _SRS..h.IRA_.IRA
    A690: 5F 60 76 60 49 4E 54 41 60 5B 82 40 08 4C 4E 4B  _`v`INTA`[.@.LNK
    A6A0: 42 08 5F 48 49 44 0C 41 D0 0C 0F 08 5F 55 49 44  B._HID.A...._UID
    A6B0: 0A 02 14 14 5F 53 54 41 00 A0 08 50 49 52 42 A4  ...._STA...PIRB.
    A6C0: 0A 0B A1 04 A4 0A 09 14 0B 5F 50 52 53 00 A4 50  ........._PRS..P
    A6D0: 52 53 42 14 0C 5F 44 49 53 00 49 4E 54 42 0A 1F  RSB.._DIS.INTB..
    A6E0: 14 1F 5F 43 52 53 00 8B 42 55 46 41 01 49 52 51  .._CRS..BUFA.IRQ
    A6F0: 58 79 01 50 49 52 42 49 52 51 58 A4 42 55 46 41  Xy.PIRBIRQX.BUFA
    A700: 14 1A 5F 53 52 53 01 8B 68 01 49 52 41 5F 82 49  .._SRS..h.IRA_.I
    A710: 52 41 5F 60 76 60 49 4E 54 42 60 5B 82 40 08 4C  RA_`v`INTB`[.@.L
    A720: 4E 4B 43 08 5F 48 49 44 0C 41 D0 0C 0F 08 5F 55  NKC._HID.A...._U
    A730: 49 44 0A 03 14 14 5F 53 54 41 00 A0 08 50 49 52  ID...._STA...PIR
    A740: 43 A4 0A 0B A1 04 A4 0A 09 14 0B 5F 50 52 53 00  C.........._PRS.
    A750: A4 50 52 53 43 14 0C 5F 44 49 53 00 49 4E 54 43  .PRSC.._DIS.INTC
    A760: 0A 1F 14 1F 5F 43 52 53 00 8B 42 55 46 41 01 49  ...._CRS..BUFA.I
    A770: 52 51 58 79 01 50 49 52 43 49 52 51 58 A4 42 55  RQXy.PIRCIRQX.BU
    A780: 46 41 14 1A 5F 53 52 53 01 8B 68 01 49 52 41 5F  FA.._SRS..h.IRA_
    A790: 82 49 52 41 5F 60 76 60 49 4E 54 43 60 5B 82 40  .IRA_`v`INTC`[.@
    A7A0: 08 4C 4E 4B 44 08 5F 48 49 44 0C 41 D0 0C 0F 08  .LNKD._HID.A....
    A7B0: 5F 55 49 44 0A 04 14 14 5F 53 54 41 00 A0 08 50  _UID...._STA...P
    A7C0: 49 52 44 A4 0A 0B A1 04 A4 0A 09 14 0B 5F 50 52  IRD.........._PR
    A7D0: 53 00 A4 50 52 53 44 14 0C 5F 44 49 53 00 49 4E  S..PRSD.._DIS.IN
    A7E0: 54 44 0A 1F 14 1F 5F 43 52 53 00 8B 42 55 46 41  TD...._CRS..BUFA
    A7F0: 01 49 52 51 58 79 01 50 49 52 44 49 52 51 58 A4  .IRQXy.PIRDIRQX.
    A800: 42 55 46 41 14 1A 5F 53 52 53 01 8B 68 01 49 52  BUFA.._SRS..h.IR
    A810: 41 5F 82 49 52 41 5F 60 76 60 49 4E 54 44 60 5B  A_.IRA_`v`INTD`[
    A820: 82 42 08 4C 4E 4B 45 08 5F 48 49 44 0C 41 D0 0C  .B.LNKE._HID.A..
    A830: 0F 08 5F 55 49 44 0A 05 14 14 5F 53 54 41 00 A0  .._UID...._STA..
    A840: 08 50 49 52 45 A4 0A 0B A1 04 A4 0A 09 14 0B 5F  .PIRE.........._
    A850: 50 52 53 00 A4 50 52 53 45 14 0D 5F 44 49 53 00  PRS..PRSE.._DIS.
    A860: 70 0A 1F 50 49 52 45 14 1F 5F 43 52 53 00 8B 42  p..PIRE.._CRS..B
    A870: 55 46 41 01 49 52 51 58 79 01 50 49 52 45 49 52  UFA.IRQXy.PIREIR
    A880: 51 58 A4 42 55 46 41 14 1B 5F 53 52 53 01 8B 68  QX.BUFA.._SRS..h
    A890: 01 49 52 41 5F 82 50 49 52 45 60 76 60 70 60 50  .IRA_.PIRE`v`p`P
    A8A0: 49 52 45 5B 82 42 08 4C 4E 4B 46 08 5F 48 49 44  IRE[.B.LNKF._HID
    A8B0: 0C 41 D0 0C 0F 08 5F 55 49 44 0A 06 14 14 5F 53  .A...._UID...._S
    A8C0: 54 41 00 A0 08 50 49 52 46 A4 0A 0B A1 04 A4 0A  TA...PIRF.......
    A8D0: 09 14 0B 5F 50 52 53 00 A4 50 52 53 46 14 0D 5F  ..._PRS..PRSF.._
    A8E0: 44 49 53 00 70 0A 1F 50 49 52 46 14 1F 5F 43 52  DIS.p..PIRF.._CR
    A8F0: 53 00 8B 42 55 46 41 01 49 52 51 58 79 01 50 49  S..BUFA.IRQXy.PI
    A900: 52 46 49 52 51 58 A4 42 55 46 41 14 1B 5F 53 52  RFIRQX.BUFA.._SR
    A910: 53 01 8B 68 01 49 52 41 5F 82 49 52 41 5F 60 76  S..h.IRA_.IRA_`v
    A920: 60 70 60 50 49 52 46 5B 82 42 08 4C 4E 4B 47 08  `p`PIRF[.B.LNKG.
    A930: 5F 48 49 44 0C 41 D0 0C 0F 08 5F 55 49 44 0A 07  _HID.A...._UID..
    A940: 14 14 5F 53 54 41 00 A0 08 50 49 52 47 A4 0A 0B  .._STA...PIRG...
    A950: A1 04 A4 0A 09 14 0B 5F 50 52 53 00 A4 50 52 53  ......._PRS..PRS
    A960: 47 14 0D 5F 44 49 53 00 70 0A 1F 50 49 52 47 14  G.._DIS.p..PIRG.
    A970: 1F 5F 43 52 53 00 8B 42 55 46 41 01 49 52 51 58  ._CRS..BUFA.IRQX
    A980: 79 01 50 49 52 47 49 52 51 58 A4 42 55 46 41 14  y.PIRGIRQX.BUFA.
    A990: 1B 5F 53 52 53 01 8B 68 01 49 52 41 5F 82 49 52  ._SRS..h.IRA_.IR
    A9A0: 41 5F 60 76 60 70 60 50 49 52 47 5B 82 42 08 4C  A_`v`p`PIRG[.B.L
    A9B0: 4E 4B 48 08 5F 48 49 44 0C 41 D0 0C 0F 08 5F 55  NKH._HID.A...._U
    A9C0: 49 44 0A 08 14 14 5F 53 54 41 00 A0 08 50 49 52  ID...._STA...PIR
    A9D0: 48 A4 0A 0B A1 04 A4 0A 09 14 0B 5F 50 52 53 00  H.........._PRS.
    A9E0: A4 50 52 53 48 14 0D 5F 44 49 53 00 70 0A 1F 50  .PRSH.._DIS.p..P
    A9F0: 49 52 48 14 1F 5F 43 52 53 00 8B 42 55 46 41 01  IRH.._CRS..BUFA.
    AA00: 49 52 51 58 79 01 50 49 52 48 49 52 51 58 A4 42  IRQXy.PIRHIRQX.B
    AA10: 55 46 41 14 1B 5F 53 52 53 01 8B 68 01 49 52 41  UFA.._SRS..h.IRA
    AA20: 5F 82 49 52 41 5F 60 76 60 70 60 50 49 52 48 5B  _.IRA_`v`p`PIRH[
    AA30: 82 4F 05 48 50 45 54 08 5F 48 49 44 0C 41 D0 01  .O.HPET._HID.A..
    AA40: 03 14 25 5F 53 54 41 00 A0 1C 93 48 50 45 4E 01  ..%_STA....HPEN.
    AA50: A0 0C 92 95 4F 53 56 52 0A 0C A4 0A 0F 70 00 48  ....OSVR.....p.H
    AA60: 50 45 4E A4 01 A4 01 14 28 5F 43 52 53 00 08 42  PEN.....(_CRS..B
    AA70: 55 46 30 11 17 0A 14 22 01 00 22 00 01 86 09 00  UF0...."..".....
    AA80: 00 00 00 D0 FE 00 04 00 00 79 00 A4 42 55 46 30  .........y..BUF0
    AA90: 10 4F 4E 2F 03 5F 53 42 5F 50 43 49 31 47 50 50  .ON/._SB_PCI1GPP
    AAA0: 42 5B 82 4D 4D 55 50 30 30 08 5F 41 44 52 00 5B  B[.MMUP00._ADR.[
    AAB0: 82 30 44 50 30 30 08 5F 41 44 52 00 08 5F 50 52  .0DP00._ADR.._PR
    AAC0: 57 12 06 02 0A 08 0A 04 5B 82 17 4C 4E 30 30 08  W.......[..LN00.
    AAD0: 5F 41 44 52 00 08 5F 50 52 57 12 06 02 0A 08 0A  _ADR.._PRW......
    AAE0: 04 5B 82 0F 44 50 32 30 08 5F 41 44 52 0C 00 00  .[..DP20._ADR...
    AAF0: 04 00 5B 82 0F 44 50 32 38 08 5F 41 44 52 0C 00  ..[..DP28._ADR..
    AB00: 00 05 00 5B 82 0F 44 50 33 30 08 5F 41 44 52 0C  ...[..DP30._ADR.
    AB10: 00 00 06 00 5B 82 0F 44 50 33 38 08 5F 41 44 52  ....[..DP38._ADR
    AB20: 0C 00 00 07 00 5B 82 34 44 50 34 30 08 5F 41 44  .....[.4DP40._AD
    AB30: 52 0C 00 00 08 00 08 5F 50 52 57 12 06 02 0A 08  R......_PRW.....
    AB40: 0A 04 5B 82 17 57 4E 30 30 08 5F 41 44 52 00 08  ..[..WN00._ADR..
    AB50: 5F 50 52 57 12 06 02 0A 08 0A 04 5B 82 34 44 50  _PRW.......[.4DP
    AB60: 38 38 08 5F 41 44 52 0C 00 00 0B 00 08 5F 50 52  88._ADR......_PR
    AB70: 57 12 06 02 0A 08 0A 04 5B 82 17 4C 4E 30 30 08  W.......[..LN00.
    AB80: 5F 41 44 52 00 08 5F 50 52 57 12 06 02 0A 08 0A  _ADR.._PRW......
    AB90: 04 5B 82 4F 3C 44 50 36 30 08 5F 41 44 52 0C 00  .[.O<DP60._ADR..
    ABA0: 00 0C 00 08 5F 50 52 57 12 06 02 0A 08 0A 04 5B  ...._PRW.......[
    ABB0: 82 41 3B 58 48 30 30 08 5F 41 44 52 00 08 5F 50  .A;XH00._ADR.._P
    ABC0: 52 57 12 06 02 0A 08 0A 04 5B 82 47 39 52 48 55  RW.......[.G9RHU
    ABD0: 42 08 5F 41 44 52 00 5B 82 30 53 53 30 31 08 5F  B._ADR.[.0SS01._
    ABE0: 41 44 52 01 14 0E 5F 55 50 43 00 A4 4D 36 30 30  ADR..._UPC..M600
    ABF0: 01 0A 09 14 15 5F 50 4C 44 00 A4 4D 36 30 31 01  ....._PLD..M601.
    AC00: 01 0B 01 01 0A 03 0A 15 00 5B 82 31 48 53 30 31  .........[.1HS01
    AC10: 08 5F 41 44 52 0A 07 14 0E 5F 55 50 43 00 A4 4D  ._ADR...._UPC..M
    AC20: 36 30 30 01 0A 09 14 15 5F 50 4C 44 00 A4 4D 36  600....._PLD..M6
    AC30: 30 31 01 01 0B 01 01 0A 03 0A 15 00 5B 82 31 53  01..........[.1S
    AC40: 53 30 32 08 5F 41 44 52 0A 02 14 0E 5F 55 50 43  S02._ADR...._UPC
    AC50: 00 A4 4D 36 30 30 01 0A 09 14 15 5F 50 4C 44 00  ..M600....._PLD.
    AC60: A4 4D 36 30 31 01 01 0B 02 01 0A 03 0A 15 00 5B  .M601..........[
    AC70: 82 31 48 53 30 32 08 5F 41 44 52 0A 08 14 0E 5F  .1HS02._ADR...._
    AC80: 55 50 43 00 A4 4D 36 30 30 01 0A 09 14 15 5F 50  UPC..M600....._P
    AC90: 4C 44 00 A4 4D 36 30 31 01 01 0B 02 01 0A 03 0A  LD..M601........
    ACA0: 15 00 5B 82 31 53 53 30 33 08 5F 41 44 52 0A 03  ..[.1SS03._ADR..
    ACB0: 14 0E 5F 55 50 43 00 A4 4D 36 30 30 01 0A 03 14  .._UPC..M600....
    ACC0: 15 5F 50 4C 44 00 A4 4D 36 30 31 00 01 0B 03 01  ._PLD..M601.....
    ACD0: 0A 03 0A 15 00 5B 82 30 48 53 30 33 08 5F 41 44  .....[.0HS03._AD
    ACE0: 52 0A 09 14 0D 5F 55 50 43 00 A4 4D 36 30 30 01  R...._UPC..M600.
    ACF0: 00 14 15 5F 50 4C 44 00 A4 4D 36 30 31 00 01 0B  ..._PLD..M601...
    AD00: 03 01 0A 03 0A 15 00 5B 82 31 53 53 30 34 08 5F  .......[.1SS04._
    AD10: 41 44 52 0A 04 14 0E 5F 55 50 43 00 A4 4D 36 30  ADR...._UPC..M60
    AD20: 30 01 0A 03 14 15 5F 50 4C 44 00 A4 4D 36 30 31  0....._PLD..M601
    AD30: 00 01 0B 04 01 0A 03 0A 15 00 5B 82 30 48 53 30  ..........[.0HS0
    AD40: 34 08 5F 41 44 52 0A 0A 14 0D 5F 55 50 43 00 A4  4._ADR...._UPC..
    AD50: 4D 36 30 30 01 00 14 15 5F 50 4C 44 00 A4 4D 36  M600...._PLD..M6
    AD60: 30 31 00 01 0B 03 01 0A 03 0A 15 00 5B 82 31 53  01..........[.1S
    AD70: 53 30 35 08 5F 41 44 52 0A 05 14 0E 5F 55 50 43  S05._ADR...._UPC
    AD80: 00 A4 4D 36 30 30 01 0A 03 14 15 5F 50 4C 44 00  ..M600....._PLD.
    AD90: A4 4D 36 30 31 00 01 0B 04 01 0A 03 0A 15 00 5B  .M601..........[
    ADA0: 82 30 48 53 30 35 08 5F 41 44 52 0A 0B 14 0D 5F  .0HS05._ADR...._
    ADB0: 55 50 43 00 A4 4D 36 30 30 01 00 14 15 5F 50 4C  UPC..M600...._PL
    ADC0: 44 00 A4 4D 36 30 31 00 01 0B 04 01 0A 03 0A 15  D..M601.........
    ADD0: 00 5B 82 31 53 53 30 36 08 5F 41 44 52 0A 06 14  .[.1SS06._ADR...
    ADE0: 0E 5F 55 50 43 00 A4 4D 36 30 30 01 0A 03 14 15  ._UPC..M600.....
    ADF0: 5F 50 4C 44 00 A4 4D 36 30 31 00 01 0B 05 01 0A  _PLD..M601......
    AE00: 03 0A 15 00 5B 82 30 48 53 30 36 08 5F 41 44 52  ....[.0HS06._ADR
    AE10: 0A 0C 14 0D 5F 55 50 43 00 A4 4D 36 30 30 01 00  ...._UPC..M600..
    AE20: 14 15 5F 50 4C 44 00 A4 4D 36 30 31 00 01 0B 05  .._PLD..M601....
    AE30: 01 0A 03 0A 15 00 5B 82 30 48 53 30 37 08 5F 41  ......[.0HS07._A
    AE40: 44 52 0A 0D 14 0D 5F 55 50 43 00 A4 4D 36 30 30  DR...._UPC..M600
    AE50: 01 00 14 15 5F 50 4C 44 00 A4 4D 36 30 31 00 01  ...._PLD..M601..
    AE60: 0B 0A 01 0A 03 0A 15 00 5B 82 30 48 53 30 38 08  ........[.0HS08.
    AE70: 5F 41 44 52 0A 0E 14 0D 5F 55 50 43 00 A4 4D 36  _ADR...._UPC..M6
    AE80: 30 30 01 00 14 15 5F 50 4C 44 00 A4 4D 36 30 31  00...._PLD..M601
    AE90: 00 01 0B 0B 01 0A 03 0A 15 00 5B 82 30 48 53 30  ..........[.0HS0
    AEA0: 39 08 5F 41 44 52 0A 0F 14 0D 5F 55 50 43 00 A4  9._ADR...._UPC..
    AEB0: 4D 36 30 30 00 00 14 15 5F 50 4C 44 00 A4 4D 36  M600...._PLD..M6
    AEC0: 30 31 00 00 0B 0C 01 0A 03 0A 15 00 5B 82 30 48  01..........[.0H
    AED0: 53 31 30 08 5F 41 44 52 0A 10 14 0D 5F 55 50 43  S10._ADR...._UPC
    AEE0: 00 A4 4D 36 30 30 00 00 14 15 5F 50 4C 44 00 A4  ..M600...._PLD..
    AEF0: 4D 36 30 31 00 00 0B 0D 01 0A 03 0A 15 00 5B 82  M601..........[.
    AF00: 30 48 53 31 31 08 5F 41 44 52 0A 11 14 0D 5F 55  0HS11._ADR...._U
    AF10: 50 43 00 A4 4D 36 30 30 01 00 14 15 5F 50 4C 44  PC..M600...._PLD
    AF20: 00 A4 4D 36 30 31 00 01 0B 0E 01 0A 03 0A 15 00  ..M601..........
    AF30: 5B 82 30 48 53 31 32 08 5F 41 44 52 0A 12 14 0D  [.0HS12._ADR....
    AF40: 5F 55 50 43 00 A4 4D 36 30 30 01 00 14 15 5F 50  _UPC..M600...._P
    AF50: 4C 44 00 A4 4D 36 30 31 00 01 0B 0F 01 0A 03 0A  LD..M601........
    AF60: 15 00 5B 82 1C 44 50 36 38 08 5F 41 44 52 0C 00  ..[..DP68._ADR..
    AF70: 00 0D 00 5B 82 0B 53 41 30 30 08 5F 41 44 52 00  ...[..SA00._ADR.
    AF80: 10 4A 09 5F 47 50 45 14 43 09 5F 45 31 30 00 A0  .J._GPE.C._E10..
    AF90: 22 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 30 50 50  "[.\/._SB_PCI0PP
    AFA0: 4D 45 00 5C 2F 03 5F 53 42 5F 50 43 49 30 50 50  ME.\/._SB_PCI0PP
    AFB0: 4D 45 A0 22 5B 12 5C 2F 03 5F 53 42 5F 50 43 49  ME."[.\/._SB_PCI
    AFC0: 31 50 50 4D 45 00 5C 2F 03 5F 53 42 5F 50 43 49  1PPME.\/._SB_PCI
    AFD0: 31 50 50 4D 45 A0 22 5B 12 5C 2F 03 5F 53 42 5F  1PPME."[.\/._SB_
    AFE0: 50 43 49 32 50 50 4D 45 00 5C 2F 03 5F 53 42 5F  PCI2PPME.\/._SB_
    AFF0: 50 43 49 32 50 50 4D 45 A0 22 5B 12 5C 2F 03 5F  PCI2PPME."[.\/._
    B000: 53 42 5F 50 43 49 33 50 50 4D 45 00 5C 2F 03 5F  SB_PCI3PPME.\/._
    B010: 53 42 5F 50 43 49 33 50 50 4D 45 08 54 53 4F 53  SB_PCI3PPME.TSOS
    B020: 0A 75 A0 3F 5B 12 5C 5F 4F 53 49 00 A0 1A 5F 4F  .u.?[.\_OSI..._O
    B030: 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 30 39 00  SI.Windows 2009.
    B040: 70 0A 50 54 53 4F 53 A0 1A 5F 4F 53 49 0D 57 69  p.PTSOS.._OSI.Wi
    B050: 6E 64 6F 77 73 20 32 30 31 35 00 70 0A 70 54 53  ndows 2015.p.pTS
    B060: 4F 53 10 48 F7 5F 53 42 5F 5B 80 45 43 4D 43 01  OS.H._SB_[.ECMC.
    B070: 0A 72 0A 02 5B 81 10 45 43 4D 43 00 45 43 4D 49  .r..[..ECMC.ECMI
    B080: 08 45 43 4D 44 08 5B 86 12 45 43 4D 49 45 43 4D  .ECMD.[..ECMIECM
    B090: 44 01 00 40 04 46 52 54 42 20 5B 80 46 52 54 50  D..@.FRTB [.FRTP
    B0A0: 00 46 52 54 42 0B 00 01 5B 81 46 12 46 52 54 50  .FRTB...[.F.FRTP
    B0B0: 00 50 45 42 41 40 04 00 00 00 04 4C 50 43 45 01  .PEBA@.....LPCE.
    B0C0: 49 43 30 45 01 49 43 31 45 01 49 43 32 45 01 49  IC0E.IC1E.IC2E.I
    B0D0: 43 33 45 01 49 43 34 45 01 49 43 35 45 01 55 54  C3E.IC4E.IC5E.UT
    B0E0: 30 45 01 55 54 31 45 01 00 01 00 01 53 54 5F 45  0E.UT1E.....ST_E
    B0F0: 01 55 54 32 45 01 00 01 45 4D 4D 44 02 00 03 58  .UT2E...EMMD...X
    B100: 48 43 45 01 00 01 00 01 55 54 33 45 01 45 53 50  HCE.....UT3E.ESP
    B110: 49 01 45 4D 4D 45 01 00 03 50 43 45 46 01 00 04  I.EMME...PCEF...
    B120: 49 43 30 44 01 49 43 31 44 01 49 43 32 44 01 49  IC0D.IC1D.IC2D.I
    B130: 43 33 44 01 49 43 34 44 01 49 43 35 44 01 55 54  C3D.IC4D.IC5D.UT
    B140: 30 44 01 55 54 31 44 01 00 01 00 01 53 54 5F 44  0D.UT1D.....ST_D
    B150: 01 55 54 32 44 01 00 01 45 48 43 44 01 00 04 58  .UT2D...EHCD...X
    B160: 48 43 44 01 53 44 5F 44 01 00 01 55 54 33 44 01  HCD.SD_D...UT3D.
    B170: 00 01 45 4D 44 33 01 00 02 53 30 33 44 01 00 00  ..EMD3...S03D...
    B180: 46 57 30 30 10 46 57 30 31 20 46 57 30 32 10 46  FW00.FW01 FW02.F
    B190: 57 30 33 20 53 44 53 30 08 53 44 53 31 08 00 40  W03 SDS0.SDS1..@
    B1A0: 08 55 54 30 49 01 55 54 31 49 01 55 54 32 49 01  .UT0I.UT1I.UT2I.
    B1B0: 55 54 33 49 01 55 54 34 49 01 00 03 55 4C 30 49  UT3I.UT4I...UL0I
    B1C0: 01 55 4C 31 49 01 55 4C 32 49 01 55 4C 33 49 01  .UL1I.UL2I.UL3I.
    B1D0: 5B 80 46 43 46 47 00 50 45 42 41 0C 00 00 00 01  [.FCFG.PEBA.....
    B1E0: 5B 81 2B 46 43 46 47 03 00 C0 22 18 05 49 50 44  [.+FCFG..."..IPD
    B1F0: 45 20 00 00 49 4D 50 45 20 00 40 16 00 02 4C 44  E ..IMPE .@...LD
    B200: 51 30 01 00 45 29 00 07 41 55 53 53 01 5B 80 49  Q0..E)..AUSS.[.I
    B210: 4F 4D 58 00 0C 00 0D D8 FE 0B 00 01 5B 81 45 07  OMX.........[.E.
    B220: 49 4F 4D 58 00 00 48 0A 49 4D 31 35 08 00 00 49  IOMX..H.IM15...I
    B230: 4D 31 36 08 00 40 04 49 4D 31 46 08 00 00 49 4D  M16..@.IM1F...IM
    B240: 32 30 08 00 48 11 49 4D 34 34 08 00 08 49 4D 34  20..H.IM44...IM4
    B250: 36 08 00 18 49 4D 34 41 08 00 00 49 4D 34 42 08  6...IM4A...IM4B.
    B260: 00 48 05 49 4D 35 37 08 00 00 49 4D 35 38 08 00  .H.IM57...IM58..
    B270: 48 07 49 4D 36 38 08 00 00 49 4D 36 39 08 00 00  H.IM68...IM69...
    B280: 49 4D 36 41 08 00 00 49 4D 36 42 08 00 08 49 4D  IM6A...IM6B...IM
    B290: 36 44 08 5B 80 46 41 43 52 00 0C 00 1E D8 FE 0B  6D.[.FACR.......
    B2A0: 00 01 5B 81 2A 46 41 43 52 00 00 40 40 00 1C 52  ..[.*FACR..@@..R
    B2B0: 44 32 38 01 00 01 52 51 54 59 01 00 01 00 1C 53  D28...RQTY.....S
    B2C0: 44 32 38 01 00 01 00 42 0C 50 43 31 41 01 5B 80  D28....B.PC1A.[.
    B2D0: 45 4D 4D 58 00 0C 00 58 DD FE 0B 30 01 5B 81 21  EMMX...X...0.[.!
    B2E0: 45 4D 4D 58 00 00 40 68 00 11 46 43 31 38 01 46  EMMX..@h..FC18.F
    B2F0: 43 33 33 01 00 07 43 44 5F 54 01 57 50 5F 54 01  C33...CD_T.WP_T.
    B300: 5B 80 45 4D 4D 42 00 0C 00 58 DD FE 0B 30 01 5B  [.EMMB...X...0.[
    B310: 81 2C 45 4D 4D 42 00 00 40 52 45 30 41 34 20 00  .,EMMB..@RE0A4 .
    B320: 00 45 30 41 38 20 00 20 45 30 42 30 20 00 40 0E  .E0A8 . E0B0 .@.
    B330: 45 30 44 30 20 00 40 21 45 31 31 36 20 08 53 56  E0D0 .@!E116 .SV
    B340: 42 46 11 05 0B 00 01 00 8A 53 56 42 46 00 53 30  BF.......SVBF.S0
    B350: 41 34 8A 53 56 42 46 0A 04 53 30 41 38 8A 53 56  A4.SVBF..S0A8.SV
    B360: 42 46 0A 08 53 30 42 30 8A 53 56 42 46 0A 0C 53  BF..S0B0.SVBF..S
    B370: 30 44 30 8A 53 56 42 46 0A 10 53 31 31 36 14 2A  0D0.SVBF..S116.*
    B380: 53 45 43 52 08 70 45 31 31 36 53 31 31 36 70 00  SECR.pE116S116p.
    B390: 52 51 54 59 70 01 52 44 32 38 70 53 44 32 38 60  RQTYp.RD28pSD28`
    B3A0: A2 08 60 70 53 44 32 38 60 14 0F 52 45 43 52 08  ..`pSD28`..RECR.
    B3B0: 70 53 31 31 36 45 31 31 36 5B 80 4C 55 49 45 00  pS116E116[.LUIE.
    B3C0: 0C 20 00 DC FE 0A 04 5B 81 43 04 4C 55 49 45 00  . .....[.C.LUIE.
    B3D0: 49 45 52 30 01 49 45 52 31 01 49 45 52 32 01 49  IER0.IER1.IER2.I
    B3E0: 45 52 33 01 55 4F 4C 30 01 55 4F 4C 31 01 55 4F  ER3.UOL0.UOL1.UO
    B3F0: 4C 32 01 55 4F 4C 33 01 57 55 52 30 02 57 55 52  L2.UOL3.WUR0.WUR
    B400: 31 02 57 55 52 32 02 57 55 52 33 02 14 47 05 46  1.WUR2.WUR3..G.F
    B410: 52 49 49 09 A0 09 93 68 00 A4 49 49 43 30 A1 45  RII....h..IIC0.E
    B420: 04 A0 09 93 68 01 A4 49 49 43 31 A1 38 A0 0A 93  ....h..IIC1.8...
    B430: 68 0A 02 A4 49 49 43 32 A1 2B A0 0A 93 68 0A 03  h...IIC2.+...h..
    B440: A4 49 49 43 33 A1 1E A0 0A 93 68 0A 04 A4 49 49  .IIC3.....h...II
    B450: 43 34 A1 11 A0 0A 93 68 0A 05 A4 49 49 43 35 A1  C4.....h...IIC5.
    B460: 04 A4 0A 0A 14 3B 46 52 55 49 09 A0 09 93 68 00  .....;FRUI....h.
    B470: A4 49 55 41 30 A1 2A A0 09 93 68 01 A4 49 55 41  .IUA0.*...h..IUA
    B480: 31 A1 1E A0 0A 93 68 0A 02 A4 49 55 41 32 A1 11  1.....h...IUA2..
    B490: A0 0A 93 68 0A 03 A4 49 55 41 33 A1 04 A4 0A 03  ...h...IUA3.....
    B4A0: 14 44 05 46 55 49 4F 09 A0 11 93 49 45 52 30 01  .D.FUIO....IER0.
    B4B0: A0 09 93 57 55 52 30 68 A4 00 A0 11 93 49 45 52  ...WUR0h.....IER
    B4C0: 31 01 A0 09 93 57 55 52 31 68 A4 01 A0 12 93 49  1....WUR1h.....I
    B4D0: 45 52 32 01 A0 0A 93 57 55 52 32 68 A4 0A 02 A0  ER2....WUR2h....
    B4E0: 12 93 49 45 52 33 01 A0 0A 93 57 55 52 33 68 A4  ..IER3....WUR3h.
    B4F0: 0A 03 A4 0A 0F 14 4B 06 53 52 41 44 0A 79 68 01  ......K.SRAD.yh.
    B500: 60 72 60 0C 40 1E D8 FE 60 5B 80 41 44 43 52 00  `r`.@...`[.ADCR.
    B510: 60 0A 02 5B 81 2E 41 44 43 52 01 41 44 54 44 02  `..[..ADCR.ADTD.
    B520: 41 44 50 53 01 41 44 50 44 01 41 44 53 4F 01 41  ADPS.ADPD.ADSO.A
    B530: 44 53 43 01 41 44 53 52 01 41 44 49 53 01 41 44  DSC.ADSR.ADIS.AD
    B540: 44 53 03 70 01 41 44 49 53 70 00 41 44 53 52 5B  DS.p.ADISp.ADSR[
    B550: 21 69 70 01 41 44 53 52 70 00 41 44 49 53 5B 21  !ip.ADSRp.ADIS[!
    B560: 69 14 40 0A 44 53 41 44 0A 79 68 01 60 72 60 0C  i.@.DSAD.yh.`r`.
    B570: 40 1E D8 FE 60 5B 80 41 44 43 52 00 60 0A 02 5B  @...`[.ADCR.`..[
    B580: 81 2E 41 44 43 52 01 41 44 54 44 02 41 44 50 53  ..ADCR.ADTD.ADPS
    B590: 01 41 44 50 44 01 41 44 53 4F 01 41 44 53 43 01  .ADPD.ADSO.ADSC.
    B5A0: 41 44 53 52 01 41 44 49 53 01 41 44 44 53 03 A0  ADSR.ADIS.ADDS..
    B5B0: 42 05 92 93 68 41 44 54 44 A0 23 93 69 00 70 00  B...hADTD.#.i.p.
    B5C0: 41 44 54 44 70 01 41 44 50 44 70 41 44 44 53 60  ADTDp.ADPDpADDS`
    B5D0: A2 0C 92 93 60 0A 07 70 41 44 44 53 60 A0 24 93  ....`..pADDS`.$.
    B5E0: 69 0A 03 70 00 41 44 50 44 70 41 44 44 53 60 A2  i..p.ADPDpADDS`.
    B5F0: 0B 92 93 60 00 70 41 44 44 53 60 70 0A 03 41 44  ...`.pADDS`p..AD
    B600: 54 44 14 45 0E 48 53 41 44 0A 79 68 01 60 72 60  TD.E.HSAD.yh.`r`
    B610: 0C 40 1E D8 FE 60 5B 80 41 44 43 52 00 60 0A 02  .@...`[.ADCR.`..
    B620: 5B 81 2E 41 44 43 52 01 41 44 54 44 02 41 44 50  [..ADCR.ADTD.ADP
    B630: 53 01 41 44 50 44 01 41 44 53 4F 01 41 44 53 43  S.ADPD.ADSO.ADSC
    B640: 01 41 44 53 52 01 41 44 49 53 01 41 44 44 53 03  .ADSR.ADIS.ADDS.
    B650: A0 47 09 92 93 69 41 44 54 44 A0 46 04 93 69 00  .G...iADTD.F..i.
    B660: 70 01 50 43 31 41 70 00 41 44 54 44 70 01 41 44  p.PC1Ap.ADTDp.AD
    B670: 50 44 70 41 44 44 53 60 A2 0C 92 93 60 0A 07 70  PDpADDS`....`..p
    B680: 41 44 44 53 60 70 01 52 51 54 59 70 01 52 44 32  ADDS`p.RQTYp.RD2
    B690: 38 70 53 44 32 38 60 A2 09 92 60 70 53 44 32 38  8pSD28`...`pSD28
    B6A0: 60 A0 46 04 93 69 0A 03 70 00 52 51 54 59 70 01  `.F..i..p.RQTYp.
    B6B0: 52 44 32 38 70 53 44 32 38 60 A2 08 60 70 53 44  RD28pSD28`..`pSD
    B6C0: 32 38 60 70 00 41 44 50 44 70 41 44 44 53 60 A2  28`p.ADPDpADDS`.
    B6D0: 0B 92 93 60 00 70 41 44 44 53 60 70 0A 03 41 44  ...`.pADDS`p..AD
    B6E0: 54 44 70 00 50 43 31 41 5B 80 46 50 49 43 01 0B  TDp.PC1A[.FPIC..
    B6F0: 00 0C 0A 02 5B 81 10 46 50 49 43 00 46 50 49 49  ....[..FPIC.FPII
    B700: 08 46 50 49 44 08 5B 86 3F 46 50 49 49 46 50 49  .FPID.[.?FPIIFPI
    B710: 44 01 00 40 78 49 49 43 30 08 49 49 43 31 08 49  D..@xIIC0.IIC1.I
    B720: 49 43 32 08 49 49 43 33 08 49 55 41 30 08 49 55  IC2.IIC3.IUA0.IU
    B730: 41 31 08 49 49 43 34 08 49 49 43 35 08 49 55 41  A1.IIC4.IIC5.IUA
    B740: 32 08 49 55 41 33 08 5B 82 4E 06 47 50 49 4F 08  2.IUA3.[.N.GPIO.
    B750: 5F 48 49 44 0D 41 4D 44 49 30 30 33 30 00 08 5F  _HID.AMDI0030.._
    B760: 43 49 44 0D 41 4D 44 49 30 30 33 30 00 08 5F 55  CID.AMDI0030.._U
    B770: 49 44 00 14 2B 5F 43 52 53 00 08 52 42 55 46 11  ID..+_CRS..RBUF.
    B780: 1A 0A 17 89 06 00 0D 01 07 00 00 00 86 09 00 01  ................
    B790: 00 15 D8 FE 00 04 00 00 79 00 A4 52 42 55 46 14  ........y..RBUF.
    B7A0: 17 5F 53 54 41 00 A0 0C 92 95 54 53 4F 53 0A 70  ._STA.....TSOS.p
    B7B0: A4 0A 0F A1 03 A4 00 5B 82 1E 50 50 4B 47 08 5F  .......[..PPKG._
    B7C0: 48 49 44 0D 41 4D 44 49 30 30 35 32 00 14 09 5F  HID.AMDI0052..._
    B7D0: 53 54 41 00 A4 0A 0F 5B 82 42 0A 46 55 52 30 08  STA....[.B.FUR0.
    B7E0: 5F 48 49 44 0D 41 4D 44 49 30 30 32 30 00 08 5F  _HID.AMDI0020.._
    B7F0: 55 49 44 00 14 4C 04 5F 43 52 53 08 08 42 55 46  UID..L._CRS..BUF
    B800: 30 11 26 0A 23 89 06 00 03 01 03 00 00 00 86 09  0.&.#...........
    B810: 00 01 00 90 DC FE 00 10 00 00 86 09 00 01 00 70  ...............p
    B820: DC FE 00 10 00 00 79 00 8B 42 55 46 30 0A 05 49  ......y..BUF0..I
    B830: 52 51 57 70 49 55 41 30 49 52 51 57 A4 42 55 46  RQWpIUA0IRQW.BUF
    B840: 30 14 39 5F 53 54 41 00 70 00 60 70 46 55 49 4F  0.9_STA.p.`pFUIO
    B850: 00 61 A0 1B 92 95 54 53 4F 53 0A 70 A0 11 93 55  .a....TSOS.p...U
    B860: 54 30 45 01 A0 09 93 61 0A 0F 70 0A 0F 60 A0 0A  T0E....a..p..`..
    B870: 93 55 54 30 49 01 70 00 60 A4 60 5B 82 42 0A 46  .UT0I.p.`.`[.B.F
    B880: 55 52 31 08 5F 48 49 44 0D 41 4D 44 49 30 30 32  UR1._HID.AMDI002
    B890: 30 00 08 5F 55 49 44 01 14 4C 04 5F 43 52 53 08  0.._UID..L._CRS.
    B8A0: 08 42 55 46 30 11 26 0A 23 89 06 00 03 01 0E 00  .BUF0.&.#.......
    B8B0: 00 00 86 09 00 01 00 A0 DC FE 00 10 00 00 86 09  ................
    B8C0: 00 01 00 80 DC FE 00 10 00 00 79 00 8B 42 55 46  ..........y..BUF
    B8D0: 30 0A 05 49 52 51 57 70 49 55 41 31 49 52 51 57  0..IRQWpIUA1IRQW
    B8E0: A4 42 55 46 30 14 39 5F 53 54 41 00 70 00 60 70  .BUF0.9_STA.p.`p
    B8F0: 46 55 49 4F 01 61 A0 1B 92 95 54 53 4F 53 0A 70  FUIO.a....TSOS.p
    B900: A0 11 93 55 54 31 45 01 A0 09 93 61 0A 0F 70 0A  ...UT1E....a..p.
    B910: 0F 60 A0 0A 93 55 54 31 49 01 70 00 60 A4 60 5B  .`...UT1I.p.`.`[
    B920: 82 44 0A 46 55 52 32 08 5F 48 49 44 0D 41 4D 44  .D.FUR2._HID.AMD
    B930: 49 30 30 32 30 00 08 5F 55 49 44 0A 02 14 4C 04  I0020.._UID...L.
    B940: 5F 43 52 53 08 08 42 55 46 30 11 26 0A 23 89 06  _CRS..BUF0.&.#..
    B950: 00 03 01 05 00 00 00 86 09 00 01 00 E0 DC FE 00  ................
    B960: 10 00 00 86 09 00 01 00 C0 DC FE 00 10 00 00 79  ...............y
    B970: 00 8B 42 55 46 30 0A 05 49 52 51 57 70 49 55 41  ..BUF0..IRQWpIUA
    B980: 32 49 52 51 57 A4 42 55 46 30 14 3A 5F 53 54 41  2IRQW.BUF0.:_STA
    B990: 00 70 00 60 70 46 55 49 4F 0A 02 61 A0 1B 92 95  .p.`pFUIO..a....
    B9A0: 54 53 4F 53 0A 70 A0 11 93 55 54 32 45 01 A0 09  TSOS.p...UT2E...
    B9B0: 93 61 0A 0F 70 0A 0F 60 A0 0A 93 55 54 32 49 01  .a..p..`...UT2I.
    B9C0: 70 00 60 A4 60 5B 82 44 0A 46 55 52 33 08 5F 48  p.`.`[.D.FUR3._H
    B9D0: 49 44 0D 41 4D 44 49 30 30 32 30 00 08 5F 55 49  ID.AMDI0020.._UI
    B9E0: 44 0A 03 14 4C 04 5F 43 52 53 08 08 42 55 46 30  D...L._CRS..BUF0
    B9F0: 11 26 0A 23 89 06 00 03 01 0F 00 00 00 86 09 00  .&.#............
    BA00: 01 00 F0 DC FE 00 10 00 00 86 09 00 01 00 D0 DC  ................
    BA10: FE 00 10 00 00 79 00 8B 42 55 46 30 0A 05 49 52  .....y..BUF0..IR
    BA20: 51 57 70 49 55 41 33 49 52 51 57 A4 42 55 46 30  QWpIUA3IRQW.BUF0
    BA30: 14 3A 5F 53 54 41 00 70 00 60 70 46 55 49 4F 0A  .:_STA.p.`pFUIO.
    BA40: 03 61 A0 1B 92 95 54 53 4F 53 0A 70 A0 11 93 55  .a....TSOS.p...U
    BA50: 54 33 45 01 A0 09 93 61 0A 0F 70 0A 0F 60 A0 0A  T3E....a..p..`..
    BA60: 93 55 54 33 49 01 70 00 60 A4 60 5B 82 4C 08 49  .UT3I.p.`.`[.L.I
    BA70: 32 43 41 08 5F 48 49 44 0D 41 4D 44 49 30 30 31  2CA._HID.AMDI001
    BA80: 30 00 08 5F 55 49 44 00 14 3F 5F 43 52 53 08 08  0.._UID..?_CRS..
    BA90: 42 55 46 30 11 1A 0A 17 89 06 00 03 01 0A 00 00  BUF0............
    BAA0: 00 86 09 00 01 00 20 DC FE 00 10 00 00 79 00 8B  ...... ......y..
    BAB0: 42 55 46 30 0A 05 49 52 51 57 70 49 49 43 30 49  BUF0..IRQWpIIC0I
    BAC0: 52 51 57 A4 42 55 46 30 14 21 5F 53 54 41 00 A0  RQW.BUF0.!_STA..
    BAD0: 16 92 95 54 53 4F 53 0A 70 A0 0A 93 49 43 30 45  ...TSOS.p...IC0E
    BAE0: 01 A4 0A 0F A4 00 A1 03 A4 00 14 0E 52 53 45 54  ............RSET
    BAF0: 00 53 52 41 44 0A 05 0A C8 5B 82 4C 08 49 32 43  .SRAD....[.L.I2C
    BB00: 42 08 5F 48 49 44 0D 41 4D 44 49 30 30 31 30 00  B._HID.AMDI0010.
    BB10: 08 5F 55 49 44 01 14 3F 5F 43 52 53 08 08 42 55  ._UID..?_CRS..BU
    BB20: 46 30 11 1A 0A 17 89 06 00 03 01 0B 00 00 00 86  F0..............
    BB30: 09 00 01 00 30 DC FE 00 10 00 00 79 00 8B 42 55  ....0......y..BU
    BB40: 46 30 0A 05 49 52 51 57 70 49 49 43 31 49 52 51  F0..IRQWpIIC1IRQ
    BB50: 57 A4 42 55 46 30 14 21 5F 53 54 41 00 A0 16 92  W.BUF0.!_STA....
    BB60: 95 54 53 4F 53 0A 70 A0 0A 93 49 43 31 45 01 A4  .TSOS.p...IC1E..
    BB70: 0A 0F A4 00 A1 03 A4 00 14 0E 52 53 45 54 00 53  ..........RSET.S
    BB80: 52 41 44 0A 06 0A C8 5B 82 4D 08 49 32 43 43 08  RAD....[.M.I2CC.
    BB90: 5F 48 49 44 0D 41 4D 44 49 30 30 31 30 00 08 5F  _HID.AMDI0010.._
    BBA0: 55 49 44 0A 02 14 3F 5F 43 52 53 08 08 42 55 46  UID...?_CRS..BUF
    BBB0: 30 11 1A 0A 17 89 06 00 03 01 04 00 00 00 86 09  0...............
    BBC0: 00 01 00 40 DC FE 00 10 00 00 79 00 8B 42 55 46  ...@......y..BUF
    BBD0: 30 0A 05 49 52 51 57 70 49 49 43 32 49 52 51 57  0..IRQWpIIC2IRQW
    BBE0: A4 42 55 46 30 14 21 5F 53 54 41 00 A0 16 92 95  .BUF0.!_STA.....
    BBF0: 54 53 4F 53 0A 70 A0 0A 93 49 43 32 45 01 A4 0A  TSOS.p...IC2E...
    BC00: 0F A4 00 A1 03 A4 00 14 0E 52 53 45 54 00 53 52  .........RSET.SR
    BC10: 41 44 0A 07 0A C8 5B 82 4D 08 49 32 43 44 08 5F  AD....[.M.I2CD._
    BC20: 48 49 44 0D 41 4D 44 49 30 30 31 30 00 08 5F 55  HID.AMDI0010.._U
    BC30: 49 44 0A 03 14 3F 5F 43 52 53 08 08 42 55 46 30  ID...?_CRS..BUF0
    BC40: 11 1A 0A 17 89 06 00 03 01 06 00 00 00 86 09 00  ................
    BC50: 01 00 50 DC FE 00 10 00 00 79 00 8B 42 55 46 30  ..P......y..BUF0
    BC60: 0A 05 49 52 51 57 70 49 49 43 33 49 52 51 57 A4  ..IRQWpIIC3IRQW.
    BC70: 42 55 46 30 14 21 5F 53 54 41 00 A0 16 92 95 54  BUF0.!_STA.....T
    BC80: 53 4F 53 0A 70 A0 0A 93 49 43 33 45 01 A4 0A 0F  SOS.p...IC3E....
    BC90: A4 00 A1 03 A4 00 14 0E 52 53 45 54 00 53 52 41  ........RSET.SRA
    BCA0: 44 0A 08 0A C8 5B 82 4D 08 49 32 43 45 08 5F 48  D....[.M.I2CE._H
    BCB0: 49 44 0D 41 4D 44 49 30 30 31 30 00 08 5F 55 49  ID.AMDI0010.._UI
    BCC0: 44 0A 04 14 3F 5F 43 52 53 08 08 42 55 46 30 11  D...?_CRS..BUF0.
    BCD0: 1A 0A 17 89 06 00 03 01 16 00 00 00 86 09 00 01  ................
    BCE0: 00 60 DC FE 00 10 00 00 79 00 8B 42 55 46 30 0A  .`......y..BUF0.
    BCF0: 05 49 52 51 57 70 49 49 43 34 49 52 51 57 A4 42  .IRQWpIIC4IRQW.B
    BD00: 55 46 30 14 21 5F 53 54 41 00 A0 16 92 95 54 53  UF0.!_STA.....TS
    BD10: 4F 53 0A 70 A0 0A 93 49 43 34 45 01 A4 0A 0F A4  OS.p...IC4E.....
    BD20: 00 A1 03 A4 00 14 0E 52 53 45 54 00 53 52 41 44  .......RSET.SRAD
    BD30: 0A 09 0A C8 5B 82 4D 08 49 32 43 46 08 5F 48 49  ....[.M.I2CF._HI
    BD40: 44 0D 41 4D 44 49 30 30 31 30 00 08 5F 55 49 44  D.AMDI0010.._UID
    BD50: 0A 05 14 3F 5F 43 52 53 08 08 42 55 46 30 11 1A  ...?_CRS..BUF0..
    BD60: 0A 17 89 06 00 03 01 17 00 00 00 86 09 00 01 00  ................
    BD70: B0 DC FE 00 10 00 00 79 00 8B 42 55 46 30 0A 05  .......y..BUF0..
    BD80: 49 52 51 57 70 49 49 43 35 49 52 51 57 A4 42 55  IRQWpIIC5IRQW.BU
    BD90: 46 30 14 21 5F 53 54 41 00 A0 16 92 95 54 53 4F  F0.!_STA.....TSO
    BDA0: 53 0A 70 A0 0A 93 49 43 35 45 01 A4 0A 0F A4 00  S.p...IC5E......
    BDB0: A1 03 A4 00 14 0E 52 53 45 54 00 53 52 41 44 0A  ......RSET.SRAD.
    BDC0: 0A 0A C8 14 4A 07 45 50 49 4E 00 70 00 49 50 44  ....J.EPIN.p.IPD
    BDD0: 45 70 00 49 4D 50 45 70 01 49 4D 31 35 70 01 49  Ep.IMPEp.IM15p.I
    BDE0: 4D 31 36 70 01 49 4D 32 30 70 01 49 4D 34 34 70  M16p.IM20p.IM44p
    BDF0: 01 49 4D 34 36 70 01 49 4D 36 38 70 01 49 4D 36  .IM46p.IM68p.IM6
    BE00: 39 70 01 49 4D 36 41 70 01 49 4D 36 42 70 01 49  9p.IM6Ap.IM6Bp.I
    BE10: 4D 31 46 A0 26 92 93 45 4D 4D 44 01 70 01 49 4D  M1F.&..EMMD.p.IM
    BE20: 34 41 70 01 49 4D 35 38 70 01 49 4D 34 42 70 01  4Ap.IM58p.IM4Bp.
    BE30: 49 4D 35 37 70 01 49 4D 36 44 53 45 43 52 08 4E  IM57p.IM6DSECR.N
    BE40: 43 52 53 11 1A 0A 17 89 06 00 0D 01 05 00 00 00  CRS.............
    BE50: 86 09 00 01 00 50 DD FE 00 10 00 00 79 00 08 44  .....P......y..D
    BE60: 43 52 53 11 41 06 0A 5D 89 06 00 0D 01 05 00 00  CRS.A..]........
    BE70: 00 86 09 00 01 00 50 DD FE 00 10 00 00 8C 20 00  ......P....... .
    BE80: 01 00 01 00 1D 00 01 00 00 B8 0B 17 00 00 19 00  ................
    BE90: 23 00 00 00 44 00 5C 5F 53 42 2E 47 50 49 4F 00  #...D.\_SB.GPIO.
    BEA0: 8C 20 00 01 01 01 00 08 00 01 00 00 00 00 17 00  . ..............
    BEB0: 00 19 00 23 00 00 00 44 00 5C 5F 53 42 2E 47 50  ...#...D.\_SB.GP
    BEC0: 49 4F 00 79 00 08 41 48 49 44 0D 41 4D 44 49 30  IO.y..AHID.AMDI0
    BED0: 30 34 30 00 08 41 43 49 44 0D 41 4D 44 49 30 30  040..ACID.AMDI00
    BEE0: 34 30 00 08 53 48 49 44 0C 41 D0 0D 40 08 53 43  40..SHID.A..@.SC
    BEF0: 49 44 0D 50 43 49 5C 43 43 5F 30 38 30 35 30 31  ID.PCI\CC_080501
    BF00: 00 5B 82 48 0D 45 4D 4D 30 14 18 5F 48 49 44 08  .[.H.EMM0.._HID.
    BF10: A0 0A 45 4D 4D 44 A4 53 48 49 44 A1 06 A4 41 48  ..EMMD.SHID...AH
    BF20: 49 44 14 18 5F 43 49 44 08 A0 0A 45 4D 4D 44 A4  ID.._CID...EMMD.
    BF30: 53 43 49 44 A1 06 A4 41 43 49 44 08 5F 55 49 44  SCID...ACID._UID
    BF40: 00 14 18 5F 43 52 53 08 A0 0A 45 4D 44 33 A4 44  ..._CRS...EMD3.D
    BF50: 43 52 53 A1 06 A4 4E 43 52 53 14 1F 5F 53 54 41  CRS...NCRS.._STA
    BF60: 00 A0 14 92 95 54 53 4F 53 0A 70 A0 08 45 4D 4D  .....TSOS.p..EMM
    BF70: 45 A4 0A 0F A4 00 A1 03 A4 00 14 10 5F 49 4E 49  E..........._INI
    BF80: 00 A0 09 45 4D 4D 45 45 50 49 4E 14 18 5F 53 30  ...EMMEEPIN.._S0
    BF90: 57 00 A0 0D 90 45 4D 44 33 45 4D 4D 45 A4 0A 04  W....EMD3EMME...
    BFA0: A1 03 A4 00 14 1C 5F 50 53 30 00 A0 15 90 45 4D  ......_PS0....EM
    BFB0: 44 33 45 4D 4D 45 48 53 41 44 0A 1C 00 52 45 43  D3EMMEHSAD...REC
    BFC0: 52 14 19 5F 50 53 33 00 A0 12 90 45 4D 44 33 45  R.._PS3....EMD3E
    BFD0: 4D 4D 45 48 53 41 44 0A 1C 0A 03 10 48 5B 2E 5F  MMEHSAD.....H[._
    BFE0: 53 42 5F 50 43 49 30 5B 82 47 16 55 41 52 31 08  SB_PCI0[.G.UAR1.
    BFF0: 5F 48 49 44 0C 41 D0 05 00 08 5F 55 49 44 01 08  _HID.A...._UID..
    C000: 5F 44 44 4E 0D 43 4F 4D 31 00 14 28 5F 53 54 41  _DDN.COM1..(_STA
    C010: 00 70 00 60 70 46 55 49 4F 00 61 A0 0A 92 93 61  .p.`pFUIO.a....a
    C020: 0A 0F 70 0A 0F 60 A0 0A 93 55 4C 30 49 01 70 00  ..p..`...UL0I.p.
    C030: 60 A4 60 14 4C 11 5F 43 52 53 08 08 5F 54 5F 30  `.`.L._CRS.._T_0
    C040: 00 08 42 55 46 30 11 10 0A 0D 47 01 E8 02 E8 02  ..BUF0....G.....
    C050: 01 08 22 08 00 79 00 8C 42 55 46 30 0A 02 49 4F  .."..y..BUF0..IO
    C060: 4C 4F 8C 42 55 46 30 0A 03 49 4F 48 49 8C 42 55  LO.BUF0..IOHI.BU
    C070: 46 30 0A 04 49 4F 52 4C 8C 42 55 46 30 0A 05 49  F0..IORL.BUF0..I
    C080: 4F 52 48 8B 42 55 46 30 0A 09 49 52 51 4C 70 46  ORH.BUF0..IRQLpF
    C090: 55 49 4F 00 60 A2 46 0A 01 70 99 60 00 5F 54 5F  UIO.`.F..p.`._T_
    C0A0: 30 A0 23 93 5F 54 5F 30 00 70 0A E8 49 4F 4C 4F  0.#._T_0.p..IOLO
    C0B0: 70 0A 02 49 4F 48 49 70 0A E8 49 4F 52 4C 70 0A  p..IOHIp..IORLp.
    C0C0: 02 49 4F 52 48 A1 45 07 A0 23 93 5F 54 5F 30 01  .IORH.E..#._T_0.
    C0D0: 70 0A F8 49 4F 4C 4F 70 0A 02 49 4F 48 49 70 0A  p..IOLOp..IOHIp.
    C0E0: F8 49 4F 52 4C 70 0A 02 49 4F 52 48 A1 4E 04 A0  .IORLp..IORH.N..
    C0F0: 24 93 5F 54 5F 30 0A 02 70 0A E8 49 4F 4C 4F 70  $._T_0..p..IOLOp
    C100: 0A 03 49 4F 48 49 70 0A E8 49 4F 52 4C 70 0A 03  ..IOHIp..IORLp..
    C110: 49 4F 52 48 A1 26 A0 24 93 5F 54 5F 30 0A 03 70  IORH.&.$._T_0..p
    C120: 0A F8 49 4F 4C 4F 70 0A 03 49 4F 48 49 70 0A F8  ..IOLOp..IOHIp..
    C130: 49 4F 52 4C 70 0A 03 49 4F 52 48 A5 79 01 7B 46  IORLp..IORH.y.{F
    C140: 52 55 49 00 0A 0F 00 49 52 51 4C A4 42 55 46 30  RUI....IRQL.BUF0
    C150: 5B 82 48 16 55 41 52 32 08 5F 48 49 44 0C 41 D0  [.H.UAR2._HID.A.
    C160: 05 00 08 5F 55 49 44 0A 02 08 5F 44 44 4E 0D 43  ..._UID..._DDN.C
    C170: 4F 4D 32 00 14 28 5F 53 54 41 00 70 00 60 70 46  OM2..(_STA.p.`pF
    C180: 55 49 4F 01 61 A0 0A 92 93 61 0A 0F 70 0A 0F 60  UIO.a....a..p..`
    C190: A0 0A 93 55 4C 31 49 01 70 00 60 A4 60 14 4C 11  ...UL1I.p.`.`.L.
    C1A0: 5F 43 52 53 08 08 5F 54 5F 30 00 08 42 55 46 30  _CRS.._T_0..BUF0
    C1B0: 11 10 0A 0D 47 01 F8 02 F8 02 01 08 22 10 00 79  ....G......."..y
    C1C0: 00 8C 42 55 46 30 0A 02 49 4F 4C 4F 8C 42 55 46  ..BUF0..IOLO.BUF
    C1D0: 30 0A 03 49 4F 48 49 8C 42 55 46 30 0A 04 49 4F  0..IOHI.BUF0..IO
    C1E0: 52 4C 8C 42 55 46 30 0A 05 49 4F 52 48 8B 42 55  RL.BUF0..IORH.BU
    C1F0: 46 30 0A 09 49 52 51 4C 70 46 55 49 4F 01 60 A2  F0..IRQLpFUIO.`.
    C200: 46 0A 01 70 99 60 00 5F 54 5F 30 A0 23 93 5F 54  F..p.`._T_0.#._T
    C210: 5F 30 00 70 0A E8 49 4F 4C 4F 70 0A 02 49 4F 48  _0.p..IOLOp..IOH
    C220: 49 70 0A E8 49 4F 52 4C 70 0A 02 49 4F 52 48 A1  Ip..IORLp..IORH.
    C230: 45 07 A0 23 93 5F 54 5F 30 01 70 0A F8 49 4F 4C  E..#._T_0.p..IOL
    C240: 4F 70 0A 02 49 4F 48 49 70 0A F8 49 4F 52 4C 70  Op..IOHIp..IORLp
    C250: 0A 02 49 4F 52 48 A1 4E 04 A0 24 93 5F 54 5F 30  ..IORH.N..$._T_0
    C260: 0A 02 70 0A E8 49 4F 4C 4F 70 0A 03 49 4F 48 49  ..p..IOLOp..IOHI
    C270: 70 0A E8 49 4F 52 4C 70 0A 03 49 4F 52 48 A1 26  p..IORLp..IORH.&
    C280: A0 24 93 5F 54 5F 30 0A 03 70 0A F8 49 4F 4C 4F  .$._T_0..p..IOLO
    C290: 70 0A 03 49 4F 48 49 70 0A F8 49 4F 52 4C 70 0A  p..IOHIp..IORLp.
    C2A0: 03 49 4F 52 48 A5 79 01 7B 46 52 55 49 01 0A 0F  .IORH.y.{FRUI...
    C2B0: 00 49 52 51 4C A4 42 55 46 30 5B 82 4B 16 55 41  .IRQL.BUF0[.K.UA
    C2C0: 52 33 08 5F 48 49 44 0C 41 D0 05 00 08 5F 55 49  R3._HID.A...._UI
    C2D0: 44 0A 03 08 5F 44 44 4E 0D 43 4F 4D 33 00 14 29  D..._DDN.COM3..)
    C2E0: 5F 53 54 41 00 70 00 60 70 46 55 49 4F 0A 02 61  _STA.p.`pFUIO..a
    C2F0: A0 0A 92 93 61 0A 0F 70 0A 0F 60 A0 0A 93 55 4C  ....a..p..`...UL
    C300: 32 49 01 70 00 60 A4 60 14 4E 11 5F 43 52 53 08  2I.p.`.`.N._CRS.
    C310: 08 5F 54 5F 30 00 08 42 55 46 30 11 10 0A 0D 47  ._T_0..BUF0....G
    C320: 01 E8 03 E8 03 01 08 22 08 00 79 00 8C 42 55 46  ......."..y..BUF
    C330: 30 0A 02 49 4F 4C 4F 8C 42 55 46 30 0A 03 49 4F  0..IOLO.BUF0..IO
    C340: 48 49 8C 42 55 46 30 0A 04 49 4F 52 4C 8C 42 55  HI.BUF0..IORL.BU
    C350: 46 30 0A 05 49 4F 52 48 8B 42 55 46 30 0A 09 49  F0..IORH.BUF0..I
    C360: 52 51 4C 70 46 55 49 4F 0A 02 60 A2 46 0A 01 70  RQLpFUIO..`.F..p
    C370: 99 60 00 5F 54 5F 30 A0 23 93 5F 54 5F 30 00 70  .`._T_0.#._T_0.p
    C380: 0A E8 49 4F 4C 4F 70 0A 02 49 4F 48 49 70 0A E8  ..IOLOp..IOHIp..
    C390: 49 4F 52 4C 70 0A 02 49 4F 52 48 A1 45 07 A0 23  IORLp..IORH.E..#
    C3A0: 93 5F 54 5F 30 01 70 0A F8 49 4F 4C 4F 70 0A 02  ._T_0.p..IOLOp..
    C3B0: 49 4F 48 49 70 0A F8 49 4F 52 4C 70 0A 02 49 4F  IOHIp..IORLp..IO
    C3C0: 52 48 A1 4E 04 A0 24 93 5F 54 5F 30 0A 02 70 0A  RH.N..$._T_0..p.
    C3D0: E8 49 4F 4C 4F 70 0A 03 49 4F 48 49 70 0A E8 49  .IOLOp..IOHIp..I
    C3E0: 4F 52 4C 70 0A 03 49 4F 52 48 A1 26 A0 24 93 5F  ORLp..IORH.&.$._
    C3F0: 54 5F 30 0A 03 70 0A F8 49 4F 4C 4F 70 0A 03 49  T_0..p..IOLOp..I
    C400: 4F 48 49 70 0A F8 49 4F 52 4C 70 0A 03 49 4F 52  OHIp..IORLp..IOR
    C410: 48 A5 79 01 7B 46 52 55 49 0A 02 0A 0F 00 49 52  H.y.{FRUI.....IR
    C420: 51 4C A4 42 55 46 30 5B 82 4B 16 55 41 52 34 08  QL.BUF0[.K.UAR4.
    C430: 5F 48 49 44 0C 41 D0 05 00 08 5F 55 49 44 0A 04  _HID.A...._UID..
    C440: 08 5F 44 44 4E 0D 43 4F 4D 34 00 14 29 5F 53 54  ._DDN.COM4..)_ST
    C450: 41 00 70 00 60 70 46 55 49 4F 0A 03 61 A0 0A 92  A.p.`pFUIO..a...
    C460: 93 61 0A 0F 70 0A 0F 60 A0 0A 93 55 4C 33 49 01  .a..p..`...UL3I.
    C470: 70 00 60 A4 60 14 4E 11 5F 43 52 53 08 08 5F 54  p.`.`.N._CRS.._T
    C480: 5F 30 00 08 42 55 46 30 11 10 0A 0D 47 01 F8 03  _0..BUF0....G...
    C490: F8 03 01 08 22 10 00 79 00 8C 42 55 46 30 0A 02  ...."..y..BUF0..
    C4A0: 49 4F 4C 4F 8C 42 55 46 30 0A 03 49 4F 48 49 8C  IOLO.BUF0..IOHI.
    C4B0: 42 55 46 30 0A 04 49 4F 52 4C 8C 42 55 46 30 0A  BUF0..IORL.BUF0.
    C4C0: 05 49 4F 52 48 8B 42 55 46 30 0A 09 49 52 51 4C  .IORH.BUF0..IRQL
    C4D0: 70 46 55 49 4F 0A 03 60 A2 46 0A 01 70 99 60 00  pFUIO..`.F..p.`.
    C4E0: 5F 54 5F 30 A0 23 93 5F 54 5F 30 00 70 0A E8 49  _T_0.#._T_0.p..I
    C4F0: 4F 4C 4F 70 0A 02 49 4F 48 49 70 0A E8 49 4F 52  OLOp..IOHIp..IOR
    C500: 4C 70 0A 02 49 4F 52 48 A1 45 07 A0 23 93 5F 54  Lp..IORH.E..#._T
    C510: 5F 30 01 70 0A F8 49 4F 4C 4F 70 0A 02 49 4F 48  _0.p..IOLOp..IOH
    C520: 49 70 0A F8 49 4F 52 4C 70 0A 02 49 4F 52 48 A1  Ip..IORLp..IORH.
    C530: 4E 04 A0 24 93 5F 54 5F 30 0A 02 70 0A E8 49 4F  N..$._T_0..p..IO
    C540: 4C 4F 70 0A 03 49 4F 48 49 70 0A E8 49 4F 52 4C  LOp..IOHIp..IORL
    C550: 70 0A 03 49 4F 52 48 A1 26 A0 24 93 5F 54 5F 30  p..IORH.&.$._T_0
    C560: 0A 03 70 0A F8 49 4F 4C 4F 70 0A 03 49 4F 48 49  ..p..IOLOp..IOHI
    C570: 70 0A F8 49 4F 52 4C 70 0A 03 49 4F 52 48 A5 79  p..IORLp..IORH.y
    C580: 01 7B 46 52 55 49 0A 03 0A 0F 00 49 52 51 4C A4  .{FRUI.....IRQL.
    C590: 42 55 46 30 5B 82 4D 54 2E 5F 53 42 5F 54 50 4D  BUF0[.MT._SB_TPM
    C5A0: 5F 08 54 4D 52 51 0C FF FF FF FF 08 54 4C 56 4C  _.TMRQ......TLVL
    C5B0: 0C FF FF FF FF 14 2F 5F 48 49 44 00 A0 0B 54 43  ....../_HID...TC
    C5C0: 4D 46 A4 0C 69 34 01 01 A1 1C A0 0D 93 54 54 44  MF..i4.......TTD
    C5D0: 50 00 A4 0C 41 D0 0C 31 A1 0C A4 0D 4D 53 46 54  P...A..1....MSFT
    C5E0: 30 31 30 31 00 5B 80 54 4D 4D 42 00 0C 00 00 D4  0101.[.TMMB.....
    C5F0: FE 0B 00 50 5B 81 41 04 54 4D 4D 42 11 41 43 43  ...P[.A.TMMB.ACC
    C600: 30 08 00 38 49 4E 54 45 20 49 4E 54 56 08 00 18  0..8INTE INTV...
    C610: 49 4E 54 53 20 49 4E 54 46 20 54 53 54 53 20 00  INTS INTF TSTS .
    C620: 40 04 46 49 46 4F 20 00 40 04 49 44 54 46 20 00  @.FIFO .@.IDTF .
    C630: 40 0C 53 43 4D 44 20 14 47 05 5F 53 54 52 00 A0  @.SCMD .G._STR..
    C640: 2A 93 54 54 44 50 00 A4 11 21 0A 1E 54 00 50 00  *.TTDP...!..T.P.
    C650: 4D 00 20 00 31 00 2E 00 32 00 20 00 44 00 65 00  M. .1...2. .D.e.
    C660: 76 00 69 00 63 00 65 00 00 00 A1 24 A4 11 21 0A  v.i.c.e....$..!.
    C670: 1E 54 00 50 00 4D 00 20 00 32 00 2E 00 30 00 20  .T.P.M. .2...0. 
    C680: 00 44 00 65 00 76 00 69 00 63 00 65 00 00 00 08  .D.e.v.i.c.e....
    C690: 5F 55 49 44 01 08 43 52 53 54 11 1D 0A 1A 86 09  _UID..CRST......
    C6A0: 00 00 00 00 00 00 00 10 00 00 86 09 00 00 00 00  ................
    C6B0: D7 FE 00 10 00 00 79 00 08 43 52 53 44 11 11 0A  ......y..CRSD...
    C6C0: 0E 86 09 00 01 00 00 D4 FE 00 50 00 00 79 00 08  ..........P..y..
    C6D0: 43 52 49 44 11 11 0A 0E 86 09 00 01 00 00 D4 FE  CRID............
    C6E0: 00 50 00 00 79 00 08 43 52 45 49 11 34 0A 31 86  .P..y..CREI.4.1.
    C6F0: 09 00 01 00 00 D4 FE 00 50 00 00 8C 20 00 01 00  ........P... ...
    C700: 01 00 12 00 03 00 00 00 00 17 00 00 19 00 23 00  ..............#.
    C710: 00 00 00 00 5C 5F 53 42 2E 47 50 49 4F 00 79 00  ....\_SB.GPIO.y.
    C720: 14 41 15 5F 43 52 53 08 A0 4D 05 93 41 4D 44 54  .A._CRS..M..AMDT
    C730: 01 8A 43 52 53 54 0A 04 4D 54 46 42 8A 43 52 53  ..CRST..MTFB.CRS
    C740: 54 0A 08 4C 54 46 42 70 54 50 4D 42 4D 54 46 42  T..LTFBpTPMBMTFB
    C750: 70 54 50 42 53 4C 54 46 42 8A 43 52 53 54 0A 10  pTPBSLTFB.CRST..
    C760: 4D 54 46 43 8A 43 52 53 54 0A 14 4C 54 46 43 70  MTFC.CRST..LTFCp
    C770: 54 50 4D 43 4D 54 46 43 70 54 50 43 53 4C 54 46  TPMCMTFCpTPCSLTF
    C780: 43 A4 43 52 53 54 A1 46 0E A0 34 93 44 54 50 54  C.CRST.F..4.DTPT
    C790: 01 8A 43 52 53 44 0A 04 4D 54 46 45 8A 43 52 53  ..CRSD..MTFE.CRS
    C7A0: 44 0A 08 4C 54 46 45 70 0C 00 00 D4 FE 4D 54 46  D..LTFEp.....MTF
    C7B0: 45 70 0B 00 50 4C 54 46 45 A4 43 52 53 44 A1 4D  Ep..PLTFE.CRSD.M
    C7C0: 09 A0 47 07 93 54 54 50 46 01 A0 3F 91 93 54 4D  ..G..TTPF..?..TM
    C7D0: 52 51 00 93 54 4D 52 51 0C FF FF FF FF 8A 43 52  RQ..TMRQ......CR
    C7E0: 49 44 0A 04 4D 54 46 44 8A 43 52 49 44 0A 08 4C  ID..MTFD.CRID..L
    C7F0: 54 46 44 70 0C 00 00 D4 FE 4D 54 46 44 70 0B 00  TFDp.....MTFDp..
    C800: 50 4C 54 46 44 A4 43 52 49 44 A1 2E 8B 43 52 45  PLTFD.CRID...CRE
    C810: 49 0A 23 4C 49 52 51 8D 43 52 45 49 0A 99 4C 4C  I.#LIRQ.CREI..LL
    C820: 56 4C 70 54 4D 52 51 4C 49 52 51 70 54 4C 56 4C  VLpTMRQLIRQpTLVL
    C830: 4C 4C 56 4C A4 43 52 45 49 A1 22 A0 20 93 54 54  LLVL.CREI.". .TT
    C840: 50 46 00 8A 43 52 53 54 0A 10 4D 54 46 46 70 46  PF..CRST..MTFFpF
    C850: 54 50 4D 4D 54 46 46 A4 43 52 53 54 70 00 4D 54  TPMMTFF.CRSTp.MT
    C860: 46 45 70 00 4C 54 46 45 A4 43 52 49 44 A4 43 52  FEp.LTFE.CRID.CR
    C870: 49 44 14 4F 0E 5F 53 52 53 09 A0 47 0E 90 92 93  ID.O._SRS..G....
    C880: 54 4D 52 51 00 92 93 54 4D 52 51 0C FF FF FF FF  TMRQ...TMRQ.....
    C890: 8B 68 0A 23 49 52 51 30 8B 43 52 45 49 0A 23 4C  .h.#IRQ0.CREI.#L
    C8A0: 49 52 51 70 49 52 51 30 4C 49 52 51 70 49 52 51  IRQpIRQ0LIRQpIRQ
    C8B0: 30 54 4D 52 51 8D 68 0A 98 49 54 52 47 8D 43 52  0TMRQ.h..ITRG.CR
    C8C0: 45 49 0A 98 4C 54 52 47 70 49 54 52 47 4C 54 52  EI..LTRGpITRGLTR
    C8D0: 47 8D 68 0A 99 49 4C 56 4C 8D 43 52 45 49 0A 99  G.h..ILVL.CREI..
    C8E0: 4C 4C 56 4C 70 49 4C 56 4C 4C 4C 56 4C A0 44 07  LLVLpILVLLLVL.D.
    C8F0: 91 93 7B 49 44 54 46 0A 0F 00 00 93 7B 49 44 54  ..{IDTF.....{IDT
    C900: 46 0A 0F 00 0A 0F A0 15 95 49 52 51 30 0A 10 70  F........IRQ0..p
    C910: 7B 49 52 51 30 0A 0F 00 49 4E 54 56 A0 12 93 49  {IRQ0...INTV...I
    C920: 54 52 47 01 7D 49 4E 54 45 0A 10 49 4E 54 45 A1  TRG.}INTE..INTE.
    C930: 0F 7B 49 4E 54 45 0C EF FF FF FF 49 4E 54 45 A0  .{INTE.....INTE.
    C940: 12 93 49 4C 56 4C 00 7D 49 4E 54 45 0A 08 49 4E  ..ILVL.}INTE..IN
    C950: 54 45 A1 0F 7B 49 4E 54 45 0C F7 FF FF FF 49 4E  TE..{INTE.....IN
    C960: 54 45 5B 80 43 52 42 44 00 54 50 4D 4D 0A 48 5B  TE[.CRBD.TPMM.H[
    C970: 81 1C 43 52 42 44 00 00 20 48 45 52 52 20 00 40  ..CRBD.. HERR .@
    C980: 1C 48 43 4D 44 20 00 00 48 53 54 53 20 14 30 5F  .HCMD ..HSTS .0_
    C990: 53 54 41 00 A0 12 93 54 54 44 50 00 A0 08 54 50  STA....TTDP...TP
    C9A0: 4D 46 A4 0A 0F A4 00 A1 14 A0 12 93 54 54 44 50  MF..........TTDP
    C9B0: 01 A0 08 54 50 4D 46 A4 0A 0F A4 00 A4 00 14 44  ...TPMF........D
    C9C0: 0C 53 54 52 54 0B 08 5F 54 5F 30 00 5B 80 54 50  .STRT.._T_0.[.TP
    C9D0: 4D 52 00 46 54 50 4D 0B 00 10 5B 81 14 54 50 4D  MR.FTPM...[..TPM
    C9E0: 52 00 00 20 46 45 52 52 20 00 20 42 45 47 4E 20  R.. FERR . BEGN 
    C9F0: 08 54 49 4D 52 00 A0 07 92 93 99 68 00 00 A2 42  .TIMR......h...B
    CA00: 08 01 70 99 69 00 5F 54 5F 30 A0 0C 93 5F 54 5F  ..p.i._T_0..._T_
    CA10: 30 00 A4 11 03 01 03 A1 48 06 A0 45 06 93 5F 54  0.......H..E.._T
    CA20: 5F 30 01 70 00 54 49 4D 52 A0 28 93 41 4D 44 54  _0.p.TIMR.(.AMDT
    CA30: 01 A2 20 90 93 42 45 47 4E 01 95 54 49 4D 52 0B  .. ..BEGN..TIMR.
    CA40: 00 02 A0 0F 93 42 45 47 4E 01 5B 22 01 75 54 49  .....BEGN.[".uTI
    CA50: 4D 52 A1 2B A0 1B 93 7D 7B 48 53 54 53 0A 02 00  MR.+...}{HSTS...
    CA60: 7B 48 53 54 53 01 00 00 0A 03 70 01 48 43 4D 44  {HSTS.....p.HCMD
    CA70: A1 0D 70 01 46 45 52 52 70 00 42 45 47 4E A4 00  ..p.FERRp.BEGN..
    CA80: A5 A4 01 14 4F 05 43 52 59 46 0B 08 5F 54 5F 30  ....O.CRYF.._T_0
    CA90: 00 A0 07 92 93 99 68 00 01 A2 44 04 01 70 99 69  ......h...D..p.i
    CAA0: 00 5F 54 5F 30 A0 0C 93 5F 54 5F 30 00 A4 11 03  ._T_0..._T_0....
    CAB0: 01 03 A1 2A A0 28 93 5F 54 5F 30 01 08 54 50 4D  ...*.(._T_0..TPM
    CAC0: 56 12 09 02 01 12 05 02 01 0A 20 A0 0C 93 5F 53  V......... ..._S
    CAD0: 54 41 00 A4 12 03 01 00 A4 54 50 4D 56 A5 A4 11  TA.......TPMV...
    CAE0: 03 01 00 10 4C 34 2E 5F 53 42 5F 54 50 4D 5F 5B  ....L4._SB_TPM_[
    CAF0: 80 54 53 4D 49 01 53 4D 49 41 0A 02 5B 81 0B 54  .TSMI.SMIA..[..T
    CB00: 53 4D 49 02 53 4D 49 5F 10 5B 80 41 54 4E 56 00  SMI.SMI_.[.ATNV.
    CB10: 50 50 49 4D 50 50 49 4C 5B 81 29 41 54 4E 56 00  PPIMPPIL[.)ATNV.
    CB20: 52 51 53 54 20 52 43 4E 54 20 45 52 52 4F 20 46  RQST RCNT ERRO F
    CB30: 4C 41 47 20 4D 49 53 43 20 4F 50 54 4E 20 53 52  LAG MISC OPTN SR
    CB40: 53 50 20 14 40 28 5F 44 53 4D 0C 08 5F 54 5F 31  SP .@(_DSM.._T_1
    CB50: 00 08 5F 54 5F 30 00 A0 47 1B 93 68 11 13 0A 10  .._T_0..G..h....
    CB60: A6 FA DD 3D 1B 36 B4 4E A4 24 8D 10 08 9D 16 53  ...=.6.N.$.....S
    CB70: A2 4E 19 01 70 99 6A 00 5F 54 5F 30 A0 0E 93 5F  .N..p.j._T_0..._
    CB80: 54 5F 30 00 A4 11 05 0A 02 FF 01 A1 42 18 A0 1D  T_0.........B...
    CB90: 93 5F 54 5F 30 01 A0 0D 93 50 50 49 56 00 A4 0D  ._T_0....PPIV...
    CBA0: 31 2E 32 00 A1 07 A4 0D 31 2E 33 00 A1 41 16 A0  1.2.....1.3..A..
    CBB0: 3C 93 5F 54 5F 30 0A 02 70 83 88 6B 00 00 52 51  <._T_0..p..k..RQ
    CBC0: 53 54 70 00 53 52 53 50 70 0A 02 46 4C 41 47 70  STp.SRSPp..FLAGp
    CBD0: 4F 46 53 54 54 4D 46 31 70 00 53 52 53 50 70 54  OFSTTMF1p.SRSPpT
    CBE0: 4D 46 31 53 4D 49 5F A4 53 52 53 50 A1 41 12 A0  MF1SMI_.SRSP.A..
    CBF0: 23 93 5F 54 5F 30 0A 03 08 50 50 49 31 12 04 02  #._T_0...PPI1...
    CC00: 00 00 70 52 51 53 54 88 50 50 49 31 01 00 A4 50  ..pRQST.PPI1...P
    CC10: 50 49 31 A1 4A 0F A0 0D 93 5F 54 5F 30 0A 04 A4  PI1.J...._T_0...
    CC20: 54 52 53 54 A1 49 0E A0 48 04 93 5F 54 5F 30 0A  TRST.I..H.._T_0.
    CC30: 05 08 50 50 49 32 12 05 03 00 00 00 70 00 53 52  ..PPI2......p.SR
    CC40: 53 50 70 0A 05 46 4C 41 47 70 4F 46 53 54 53 4D  SPp..FLAGpOFSTSM
    CC50: 49 5F 70 52 43 4E 54 88 50 50 49 32 01 00 70 45  I_pRCNT.PPI2..pE
    CC60: 52 52 4F 88 50 50 49 32 0A 02 00 A4 50 50 49 32  RRO.PPI2....PPI2
    CC70: A1 4D 09 A0 0B 93 5F 54 5F 30 0A 06 A4 0A 03 A1  .M...._T_0......
    CC80: 4E 08 A0 40 05 93 5F 54 5F 30 0A 07 70 83 88 6B  N..@.._T_0..p..k
    CC90: 00 00 52 51 53 54 70 0A 07 46 4C 41 47 70 00 4F  ..RQSTp..FLAGp.O
    CCA0: 50 54 4E A0 12 93 52 51 53 54 0A 17 99 83 88 6B  PTN...RQST.....k
    CCB0: 01 00 4F 50 54 4E 70 4F 46 53 54 54 4D 46 31 70  ..OPTNpOFSTTMF1p
    CCC0: 00 53 52 53 50 70 54 4D 46 31 53 4D 49 5F A4 53  .SRSPpTMF1SMI_.S
    CCD0: 52 53 50 A1 3A A0 36 93 5F 54 5F 30 0A 08 70 83  RSP.:.6._T_0..p.
    CCE0: 88 6B 00 00 52 51 53 54 70 0A 08 46 4C 41 47 70  .k..RQSTp..FLAGp
    CCF0: 4F 46 53 54 54 4D 46 31 70 00 53 52 53 50 70 54  OFSTTMF1p.SRSPpT
    CD00: 4D 46 31 53 4D 49 5F A4 53 52 53 50 A1 01 A5 A1  MF1SMI_.SRSP....
    CD10: 4F 06 A0 4C 06 93 68 11 13 0A 10 ED 54 60 37 13  O..L..h.....T`7.
    CD20: CC 75 46 90 1C 47 56 D7 F2 D4 5D A2 43 05 01 70  .uF..GV...].C..p
    CD30: 99 6A 00 5F 54 5F 31 A0 0C 93 5F 54 5F 31 00 A4  .j._T_1..._T_1..
    CD40: 11 03 01 03 A1 39 A0 35 93 5F 54 5F 31 01 70 83  .....9.5._T_1.p.
    CD50: 88 6B 00 00 52 51 53 54 70 0A 09 46 4C 41 47 70  .k..RQSTp..FLAGp
    CD60: 4F 46 53 54 54 4D 46 31 70 00 53 52 53 50 70 54  OFSTTMF1p.SRSPpT
    CD70: 4D 46 31 53 4D 49 5F A4 53 52 53 50 A1 01 A5 A0  MF1SMI_.SRSP....
    CD80: 1F 93 68 11 13 0A 10 A5 16 8E CF E8 C1 25 4E B7  ..h..........%N.
    CD90: 12 4F 54 A9 67 02 C8 A4 43 52 59 46 69 6A 6B A0  .OT.g...CRYFijk.
    CDA0: 1F 93 68 11 13 0A 10 AB 6C BF 6B 63 54 14 47 B7  ..h.....l.kcT.G.
    CDB0: CD F0 20 3C 03 68 D4 A4 53 54 52 54 69 6A 6B A4  .. <.h..STRTijk.
    CDC0: 11 03 01 00 14 4B 06 54 50 54 53 09 08 5F 54 5F  .....K.TPTS.._T_
    CDD0: 30 00 A2 48 05 01 70 99 68 00 5F 54 5F 30 A0 24  0..H..p.h._T_0.$
    CDE0: 93 5F 54 5F 30 0A 04 70 00 52 51 53 54 70 0A 09  ._T_0..p.RQSTp..
    CDF0: 46 4C 41 47 70 00 53 52 53 50 70 4F 46 53 54 53  FLAGp.SRSPpOFSTS
    CE00: 4D 49 5F A1 26 A0 24 93 5F 54 5F 30 0A 05 70 00  MI_.&.$._T_0..p.
    CE10: 52 51 53 54 70 0A 09 46 4C 41 47 70 00 53 52 53  RQSTp..FLAGp.SRS
    CE20: 50 70 4F 46 53 54 53 4D 49 5F A5 5B 22 0B 2C 01  PpOFSTSMI_.[".,.
    CE30: 10 05 5F 47 50 45 08 42 52 45 56 0A 02 08 4F 42  .._GPE.BREV...OB
    CE40: 44 50 0A 01 08 42 4C 45 44 0A 01 08 43 4C 45 44  DP...BLED...CLED
    CE50: 0A 01 14 42 0D 44 42 47 4C 01 A0 46 06 93 68 01  ...B.DBGL..F..h.
    CE60: 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53  \/._SB_PCI0SBRGS
    CE70: 49 4F 31 45 4E 46 47 0A 08 7D 5C 2F 05 5F 53 42  IO1ENFG..}\/._SB
    CE80: 5F 50 43 49 30 53 42 52 47 53 49 4F 31 53 43 46  _PCI0SBRGSIO1SCF
    CE90: 46 0A 02 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42  F..\/._SB_PCI0SB
    CEA0: 52 47 53 49 4F 31 53 43 46 46 5C 2F 05 5F 53 42  RGSIO1SCFF\/._SB
    CEB0: 5F 50 43 49 30 53 42 52 47 53 49 4F 31 45 58 46  _PCI0SBRGSIO1EXF
    CEC0: 47 A1 43 06 5C 2F 05 5F 53 42 5F 50 43 49 30 53  G.C.\/._SB_PCI0S
    CED0: 42 52 47 53 49 4F 31 45 4E 46 47 0A 08 7B 5C 2F  BRGSIO1ENFG..{\/
    CEE0: 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F  ._SB_PCI0SBRGSIO
    CEF0: 31 53 43 46 46 0A FD 5C 2F 05 5F 53 42 5F 50 43  1SCFF..\/._SB_PC
    CF00: 49 30 53 42 52 47 53 49 4F 31 53 43 46 46 5C 2F  I0SBRGSIO1SCFF\/
    CF10: 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F  ._SB_PCI0SBRGSIO
    CF20: 31 45 58 46 47 14 45 22 42 54 4E 4C 01 A0 43 11  1EXFG.E"BTNL..C.
    CF30: 93 68 01 A0 49 0A 93 42 52 45 56 0A 02 5C 2F 05  .h..I..BREV..\/.
    CF40: 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31  _SB_PCI0SBRGSIO1
    CF50: 45 4E 46 47 0A 07 7B 5C 2F 05 5F 53 42 5F 50 43  ENFG..{\/._SB_PC
    CF60: 49 30 53 42 52 47 53 49 4F 31 52 47 45 38 0E F7  I0SBRGSIO1RGE8..
    CF70: FF FF FF FF FF FF FF 5C 2F 05 5F 53 42 5F 50 43  .......\/._SB_PC
    CF80: 49 30 53 42 52 47 53 49 4F 31 52 47 45 38 7B 5C  I0SBRGSIO1RGE8{\
    CF90: 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49  /._SB_PCI0SBRGSI
    CFA0: 4F 31 52 47 45 39 0E F7 FF FF FF FF FF FF FF 5C  O1RGE9.........\
    CFB0: 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49  /._SB_PCI0SBRGSI
    CFC0: 4F 31 52 47 45 39 5C 2F 05 5F 53 42 5F 50 43 49  O1RGE9\/._SB_PCI
    CFD0: 30 53 42 52 47 53 49 4F 31 45 58 46 47 A1 43 06  0SBRGSIO1EXFG.C.
    CFE0: 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53  \/._SB_PCI0SBRGS
    CFF0: 49 4F 31 45 4E 46 47 0A 08 7B 5C 2F 05 5F 53 42  IO1ENFG..{\/._SB
    D000: 5F 50 43 49 30 53 42 52 47 53 49 4F 31 52 47 45  _PCI0SBRGSIO1RGE
    D010: 31 0A F7 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42  1..\/._SB_PCI0SB
    D020: 52 47 53 49 4F 31 52 47 45 31 5C 2F 05 5F 53 42  RGSIO1RGE1\/._SB
    D030: 5F 50 43 49 30 53 42 52 47 53 49 4F 31 45 58 46  _PCI0SBRGSIO1EXF
    D040: 47 A1 49 10 A0 42 0A 93 42 52 45 56 0A 02 5C 2F  G.I..B..BREV..\/
    D050: 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F  ._SB_PCI0SBRGSIO
    D060: 31 45 4E 46 47 0A 07 7B 5C 2F 05 5F 53 42 5F 50  1ENFG..{\/._SB_P
    D070: 43 49 30 53 42 52 47 53 49 4F 31 52 47 45 38 0E  CI0SBRGSIO1RGE8.
    D080: F7 FF FF FF FF FF FF FF 5C 2F 05 5F 53 42 5F 50  ........\/._SB_P
    D090: 43 49 30 53 42 52 47 53 49 4F 31 52 47 45 38 7D  CI0SBRGSIO1RGE8}
    D0A0: 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53  \/._SB_PCI0SBRGS
    D0B0: 49 4F 31 52 47 45 39 0A 08 5C 2F 05 5F 53 42 5F  IO1RGE9..\/._SB_
    D0C0: 50 43 49 30 53 42 52 47 53 49 4F 31 52 47 45 39  PCI0SBRGSIO1RGE9
    D0D0: 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53  \/._SB_PCI0SBRGS
    D0E0: 49 4F 31 45 58 46 47 A1 43 06 5C 2F 05 5F 53 42  IO1EXFG.C.\/._SB
    D0F0: 5F 50 43 49 30 53 42 52 47 53 49 4F 31 45 4E 46  _PCI0SBRGSIO1ENF
    D100: 47 0A 08 7D 5C 2F 05 5F 53 42 5F 50 43 49 30 53  G..}\/._SB_PCI0S
    D110: 42 52 47 53 49 4F 31 52 47 45 31 0A 08 5C 2F 05  BRGSIO1RGE1..\/.
    D120: 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31  _SB_PCI0SBRGSIO1
    D130: 52 47 45 31 5C 2F 05 5F 53 42 5F 50 43 49 30 53  RGE1\/._SB_PCI0S
    D140: 42 52 47 53 49 4F 31 45 58 46 47 14 43 10 43 43  BRGSIO1EXFG.C.CC
    D150: 4D 4C 01 A0 46 06 93 68 01 5C 2F 05 5F 53 42 5F  ML..F..h.\/._SB_
    D160: 50 43 49 30 53 42 52 47 53 49 4F 31 45 4E 46 47  PCI0SBRGSIO1ENFG
    D170: 0A 07 7D 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42  ..}\/._SB_PCI0SB
    D180: 52 47 53 49 4F 31 52 47 45 30 0A 02 5C 2F 05 5F  RGSIO1RGE0..\/._
    D190: 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31 52  SB_PCI0SBRGSIO1R
    D1A0: 47 45 30 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42  GE0\/._SB_PCI0SB
    D1B0: 52 47 53 49 4F 31 45 58 46 47 A1 44 09 5C 2F 05  RGSIO1EXFG.D.\/.
    D1C0: 5F 53 42 5F 50 43 49 30 53 42 52 47 53 49 4F 31  _SB_PCI0SBRGSIO1
    D1D0: 45 4E 46 47 0A 07 7B 5C 2F 05 5F 53 42 5F 50 43  ENFG..{\/._SB_PC
    D1E0: 49 30 53 42 52 47 53 49 4F 31 52 47 45 30 0A FD  I0SBRGSIO1RGE0..
    D1F0: 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47 53  \/._SB_PCI0SBRGS
    D200: 49 4F 31 52 47 45 30 7B 5C 2F 05 5F 53 42 5F 50  IO1RGE0{\/._SB_P
    D210: 43 49 30 53 42 52 47 53 49 4F 31 52 47 45 31 0A  CI0SBRGSIO1RGE1.
    D220: FD 5C 2F 05 5F 53 42 5F 50 43 49 30 53 42 52 47  .\/._SB_PCI0SBRG
    D230: 53 49 4F 31 52 47 45 31 5C 2F 05 5F 53 42 5F 50  SIO1RGE1\/._SB_P
    D240: 43 49 30 53 42 52 47 53 49 4F 31 45 58 46 47 14  CI0SBRGSIO1EXFG.
    D250: 43 04 4C 45 44 53 01 A0 0C 93 42 4C 45 44 01 44  C.LEDS....BLED.D
    D260: 42 47 4C 01 A1 06 44 42 47 4C 00 A0 0C 93 42 4C  BGL...DBGL....BL
    D270: 45 44 01 42 54 4E 4C 01 A1 06 42 54 4E 4C 00 A0  ED.BTNL...BTNL..
    D280: 0C 93 43 4C 45 44 01 43 43 4D 4C 01 A1 06 43 43  ..CLED.CCML...CC
    D290: 4D 4C 00 14 15 4C 45 44 57 01 44 42 47 4C 00 42  ML...LEDW.DBGL.B
    D2A0: 54 4E 4C 00 43 43 4D 4C 00 10 4C 04 2F 06 5F 53  TNL.CCML..L./._S
    D2B0: 42 5F 50 43 49 31 47 50 50 42 55 50 30 30 44 50  B_PCI1GPPBUP00DP
    D2C0: 30 30 4C 4E 30 30 14 2F 4D 54 43 4C 08 08 5A 46  00LN00./MTCL..ZF
    D2D0: 57 46 12 1E 13 0A 4D 0A 54 0A 43 0A 4C 0A 02 01  WF....M.T.C.L...
    D2E0: 0A FF 0A FF 0A FF 0A FF 00 00 01 00 00 00 00 00  ................
    D2F0: 00 A4 5A 46 57 46                                ..ZFWF

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 48 24 00 00 02 A9 41 4D 44 00 00 00  SSDTH$....AMD...
    0010: 47 50 50 5F 50 4D 45 5F 01 00 00 00 49 4E 54 4C  GPP_PME_....INTL
    0020: 31 03 23 20 A0 48 60 00 15 5C 4D 30 31 37 08 06  1.# .H`..\M017..
    0030: 15 5C 4D 30 31 38 08 07 15 5C 4D 31 31 35 03 00  .\M018...\M115..
    0040: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0050: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0060: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0070: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0080: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0090: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    00A0: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00B0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00C0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00D0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00E0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00F0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    0100: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0110: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0120: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0130: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0140: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0150: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0160: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0170: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0180: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0190: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    01A0: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01B0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01C0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01D0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01E0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01F0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    0200: 15 5C 4D 30 34 36 01 00 15 5C 4D 30 34 37 01 00  .\M046...\M047..
    0210: 15 5C 4D 30 34 39 08 02 15 5C 4D 32 35 31 05 00  .\M049...\M251..
    0220: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0230: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0240: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0250: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0260: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0270: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0280: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    0290: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02A0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02B0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02C0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02D0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02E0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    02F0: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0300: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0310: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0320: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0330: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0340: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0350: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 36 30 08 07  .\M457...\M460..
    0360: 15 5C 4D 34 34 39 05 00 15 5C 4D 34 43 30 05 00  .\M449...\M4C0..
    0370: 15 5C 4D 32 33 41 05 00 15 5C 4D 34 46 30 05 00  .\M23A...\M4F0..
    0380: 15 5C 4D 36 31 30 05 00 15 5C 4D 32 39 41 05 00  .\M610...\M29A..
    0390: 15 5C 4D 36 33 31 05 00 15 5C 4D 36 35 32 05 00  .\M631...\M652..
    03A0: 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06 00  .\M050...\M051..
    03B0: 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06 00  .\M052...\M053..
    03C0: 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06 00  .\M054...\M055..
    03D0: 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06 00  .\M056...\M057..
    03E0: 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06 00  .\M058...\M059..
    03F0: 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06 00  .\M062...\M068..
    0400: 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06 00  .\M069...\M070..
    0410: 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06 00  .\M071...\M072..
    0420: 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06 00  .\M074...\M075..
    0430: 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06 00  .\M076...\M077..
    0440: 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06 00  .\M078...\M079..
    0450: 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06 00  .\M080...\M081..
    0460: 15 5C 4D 31 32 37 06 00 15 5C 5F 42 42 4E 01 00  .\M127...\_BBN..
    0470: 15 5C 2E 5F 53 42 5F 50 43 49 32 06 00 15 5C 2F  .\._SB_PCI2...\/
    0480: 03 5F 53 42 5F 50 43 49 32 47 50 50 30 06 00 15  ._SB_PCI2GPP0...
    0490: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 31 06  \/._SB_PCI2GPP1.
    04A0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50  ..\/._SB_PCI2GPP
    04B0: 32 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47  2...\/._SB_PCI2G
    04C0: 50 50 33 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PP3...\/._SB_PCI
    04D0: 32 47 50 50 34 06 00 15 5C 2F 03 5F 53 42 5F 50  2GPP4...\/._SB_P
    04E0: 43 49 32 47 50 50 35 06 00 15 5C 2F 03 5F 53 42  CI2GPP5...\/._SB
    04F0: 5F 50 43 49 32 47 50 50 36 06 00 15 5C 2F 03 5F  _PCI2GPP6...\/._
    0500: 53 42 5F 50 43 49 32 47 50 50 37 06 00 15 5C 2F  SB_PCI2GPP7...\/
    0510: 03 5F 53 42 5F 50 43 49 32 47 50 50 38 06 00 15  ._SB_PCI2GPP8...
    0520: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 39 06  \/._SB_PCI2GPP9.
    0530: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50  ..\/._SB_PCI2GPP
    0540: 41 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47  A...\/._SB_PCI2G
    0550: 50 50 42 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PPB...\/._SB_PCI
    0560: 32 47 50 50 43 06 00 15 5C 2F 03 5F 53 42 5F 50  2GPPC...\/._SB_P
    0570: 43 49 32 47 50 50 44 06 00 15 5C 2F 03 5F 53 42  CI2GPPD...\/._SB
    0580: 5F 50 43 49 32 47 50 50 45 06 00 15 5C 2F 03 5F  _PCI2GPPE...\/._
    0590: 53 42 5F 50 43 49 32 47 50 50 46 06 00 15 5C 2F  SB_PCI2GPPF...\/
    05A0: 03 5F 53 42 5F 50 43 49 32 47 50 50 47 06 00 15  ._SB_PCI2GPPG...
    05B0: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 48 06  \/._SB_PCI2GPPH.
    05C0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 31  ..\/._SB_PCI2GP1
    05D0: 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 32 47  5...\/._SB_PCI2G
    05E0: 50 32 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  P25...\/._SB_PCI
    05F0: 32 47 50 33 35 06 00 15 5C 2F 03 5F 53 42 5F 50  2GP35...\/._SB_P
    0600: 43 49 32 47 50 34 35 06 00 15 5C 2F 03 5F 53 42  CI2GP45...\/._SB
    0610: 5F 50 43 49 32 47 50 31 37 06 00 15 5C 2F 03 5F  _PCI2GP17...\/._
    0620: 53 42 5F 50 43 49 32 47 50 32 37 06 00 10 8A E1  SB_PCI2GP27.....
    0630: 01 5C 2E 5F 53 42 5F 50 43 49 32 08 45 54 50 30  .\._SB_PCI2.ETP0
    0640: 0A 55 08 45 54 50 31 0A 55 08 45 54 50 32 0A 55  .U.ETP1.U.ETP2.U
    0650: 08 45 54 50 33 0A 55 08 45 54 50 34 0A 55 08 45  .ETP3.U.ETP4.U.E
    0660: 54 50 35 0A 55 08 45 54 50 36 0A 55 08 45 54 50  TP5.U.ETP6.U.ETP
    0670: 37 0A 55 08 45 54 50 38 0A 55 08 45 54 50 39 0A  7.U.ETP8.U.ETP9.
    0680: 55 08 45 54 50 41 0A 55 08 45 54 50 42 0A 55 08  U.ETPA.U.ETPB.U.
    0690: 45 54 50 43 0A 55 08 45 54 50 44 0A 55 08 45 54  ETPC.U.ETPD.U.ET
    06A0: 50 45 0A 55 08 45 54 50 46 0A 55 08 45 54 50 47  PE.U.ETPF.U.ETPG
    06B0: 0A 55 08 45 54 50 48 0A 55 08 45 54 31 35 0A 55  .U.ETPH.U.ET15.U
    06C0: 08 45 54 32 35 0A 55 08 45 54 33 35 0A 55 08 45  .ET25.U.ET35.U.E
    06D0: 54 34 35 0A 55 08 45 54 31 37 0A 55 08 45 54 32  T45.U.ET17.U.ET2
    06E0: 37 0A 55 14 84 D6 01 50 50 4D 45 00 4D 34 36 30  7.U....PPME.M460
    06F0: 0D 20 20 4F 45 4D 2D 41 53 4C 2D 5C 5F 53 42 2E  .  OEM-ASL-\_SB.
    0700: 50 43 49 32 2E 50 50 4D 45 0A 00 00 00 00 00 00  PCI2.PPME.......
    0710: 00 A0 4F 18 92 93 5C 2F 03 5F 53 42 5F 50 43 49  ..O...\/._SB_PCI
    0720: 32 45 54 50 30 0A FF 70 7A 4D 30 31 37 5F 42 42  2ETP0..pzM017_BB
    0730: 4E 01 01 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53  N...x......\/._S
    0740: 42 5F 50 43 49 32 45 54 50 30 A0 46 15 91 93 5C  B_PCI2ETP0.F...\
    0750: 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 30 01 93  /._SB_PCI2ETP0..
    0760: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 30 0A  \/._SB_PCI2ETP0.
    0770: 03 A0 4F 12 5B 12 5C 2F 03 5F 53 42 5F 50 43 49  ..O.[.\/._SB_PCI
    0780: 32 47 50 50 30 00 A0 49 06 92 93 4D 36 32 30 00  2GPP0..I...M620.
    0790: A0 4F 05 93 4D 30 34 39 4D 36 32 30 0A 10 01 A0  .O..M049M620....
    07A0: 40 05 93 7B 4D 30 34 39 4D 36 32 30 0A 52 0A 02  @..{M049M620.R..
    07B0: 00 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66  ..M460.    Notif
    07C0: 79 20 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50 50  y (\_SB.PCI2.GPP
    07D0: 30 2C 20 30 78 30 29 0A 00 00 00 00 00 00 00 86  0, 0x0).........
    07E0: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 30 00  \/._SB_PCI2GPP0.
    07F0: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    0800: 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50 50 30 2C  (\_SB.PCI2.GPP0,
    0810: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    0820: 03 5F 53 42 5F 50 43 49 32 47 50 50 30 0A 02 5B  ._SB_PCI2GPP0..[
    0830: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78  ".dpM017_BBN...x
    0840: 00 0A 20 60 A0 4C 05 92 93 7B 60 0C 00 00 03 00  .. `.L...{`.....
    0850: 00 00 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A  ..M018_BBN...x..
    0860: 20 60 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00   `pM017_BBN...x.
    0870: 0A 20 60 A0 2D 92 93 7B 60 0C 00 00 03 00 00 00  . `.-..{`.......
    0880: 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A 20 60  M018_BBN...x.. `
    0890: 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00 0A 20  pM017_BBN...x.. 
    08A0: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    08B0: 32 45 54 50 31 0A FF 70 7A 4D 30 31 37 5F 42 42  2ETP1..pzM017_BB
    08C0: 4E 01 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    08D0: 53 42 5F 50 43 49 32 45 54 50 31 A0 41 0F 91 93  SB_PCI2ETP1.A...
    08E0: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 31 01  \/._SB_PCI2ETP1.
    08F0: 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 31  .\/._SB_PCI2ETP1
    0900: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0910: 49 32 47 50 50 31 00 4D 34 36 30 0D 20 20 20 20  I2GPP1.M460.    
    0920: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0930: 32 2E 47 50 50 31 2C 20 30 78 32 29 0A 00 00 00  2.GPP1, 0x2)....
    0940: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    0950: 47 50 50 31 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP1..[".dpM017_
    0960: 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0970: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0980: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0990: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    09A0: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    09B0: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    09C0: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    09D0: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    09E0: 32 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 03  2..pzM017_BBN...
    09F0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0A00: 43 49 32 45 54 50 32 A0 41 0F 91 93 5C 2F 03 5F  CI2ETP2.A...\/._
    0A10: 53 42 5F 50 43 49 32 45 54 50 32 01 93 5C 2F 03  SB_PCI2ETP2..\/.
    0A20: 5F 53 42 5F 50 43 49 32 45 54 50 32 0A 03 A0 4A  _SB_PCI2ETP2...J
    0A30: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  .[.\/._SB_PCI2GP
    0A40: 50 32 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P2.M460.    Noti
    0A50: 66 79 20 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50  fy (\_SB.PCI2.GP
    0A60: 50 32 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P2, 0x2)........
    0A70: 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 32  .\/._SB_PCI2GPP2
    0A80: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0A90: 0A 03 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0AA0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AB0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AC0: 01 0A 03 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0AD0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AE0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AF0: 01 0A 03 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F  ....x.. `.K...\/
    0B00: 03 5F 53 42 5F 50 43 49 32 45 54 50 33 0A FF 70  ._SB_PCI2ETP3..p
    0B10: 7A 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78 00 0A  zM017_BBN....x..
    0B20: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45  ....\/._SB_PCI2E
    0B30: 54 50 33 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50  TP3.A...\/._SB_P
    0B40: 43 49 32 45 54 50 33 01 93 5C 2F 03 5F 53 42 5F  CI2ETP3..\/._SB_
    0B50: 50 43 49 32 45 54 50 33 0A 03 A0 4A 0C 5B 12 5C  PCI2ETP3...J.[.\
    0B60: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 33 00 4D  /._SB_PCI2GPP3.M
    0B70: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    0B80: 5C 5F 53 42 2E 50 43 49 32 2E 47 50 50 33 2C 20  \_SB.PCI2.GPP3, 
    0B90: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    0BA0: 5F 53 42 5F 50 43 49 32 47 50 50 33 0A 02 5B 22  _SB_PCI2GPP3..["
    0BB0: 0A 64 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78  .dpM017_BBN....x
    0BC0: 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00  .. `.@...{`.....
    0BD0: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0BE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0BF0: 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00  x.. `./..{`.....
    0C00: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0C10: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0C20: 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42  x.. `.K...\/._SB
    0C30: 5F 50 43 49 32 45 54 50 34 0A FF 70 7A 4D 30 31  _PCI2ETP4..pzM01
    0C40: 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 18 0A 10 00  7_BBN....x......
    0C50: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 34 A0  \/._SB_PCI2ETP4.
    0C60: 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45  A...\/._SB_PCI2E
    0C70: 54 50 34 01 93 5C 2F 03 5F 53 42 5F 50 43 49 32  TP4..\/._SB_PCI2
    0C80: 45 54 50 34 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53  ETP4...J.[.\/._S
    0C90: 42 5F 50 43 49 32 47 50 50 34 00 4D 34 36 30 0D  B_PCI2GPP4.M460.
    0CA0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    0CB0: 2E 50 43 49 32 2E 47 50 50 34 2C 20 30 78 32 29  .PCI2.GPP4, 0x2)
    0CC0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    0CD0: 50 43 49 32 47 50 50 34 0A 02 5B 22 0A 64 70 4D  PCI2GPP4..[".dpM
    0CE0: 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60  017_BBN....x.. `
    0CF0: A0 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  .@...{`.......M0
    0D00: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D10: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D20: 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  `./..{`.......M0
    0D30: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D40: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D50: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    0D60: 32 45 54 50 35 0A FF 70 7A 4D 30 31 37 5F 42 42  2ETP5..pzM017_BB
    0D70: 4E 01 0A 06 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    0D80: 53 42 5F 50 43 49 32 45 54 50 35 A0 41 0F 91 93  SB_PCI2ETP5.A...
    0D90: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 35 01  \/._SB_PCI2ETP5.
    0DA0: 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 35  .\/._SB_PCI2ETP5
    0DB0: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0DC0: 49 32 47 50 50 35 00 4D 34 36 30 0D 20 20 20 20  I2GPP5.M460.    
    0DD0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0DE0: 32 2E 47 50 50 35 2C 20 30 78 32 29 0A 00 00 00  2.GPP5, 0x2)....
    0DF0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    0E00: 47 50 50 35 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP5..[".dpM017_
    0E10: 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0E20: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E30: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E40: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    0E50: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E60: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E70: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    0E80: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    0E90: 36 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 07  6..pzM017_BBN...
    0EA0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0EB0: 43 49 32 45 54 50 36 A0 41 0F 91 93 5C 2F 03 5F  CI2ETP6.A...\/._
    0EC0: 53 42 5F 50 43 49 32 45 54 50 36 01 93 5C 2F 03  SB_PCI2ETP6..\/.
    0ED0: 5F 53 42 5F 50 43 49 32 45 54 50 36 0A 03 A0 4A  _SB_PCI2ETP6...J
    0EE0: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  .[.\/._SB_PCI2GP
    0EF0: 50 36 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P6.M460.    Noti
    0F00: 66 79 20 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50  fy (\_SB.PCI2.GP
    0F10: 50 36 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P6, 0x2)........
    0F20: 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 36  .\/._SB_PCI2GPP6
    0F30: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0F40: 0A 07 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0F50: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F60: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0F70: 01 0A 07 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0F80: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F90: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0FA0: 01 0A 07 0A 78 00 0A 20 60 A0 46 19 92 93 5C 2F  ....x.. `.F...\/
    0FB0: 03 5F 53 42 5F 50 43 49 32 45 54 50 37 0A FF 70  ._SB_PCI2ETP7..p
    0FC0: 7A 4D 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A  zM017_BBN....x..
    0FD0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45  ....\/._SB_PCI2E
    0FE0: 54 50 37 A0 4C 15 91 93 5C 2F 03 5F 53 42 5F 50  TP7.L...\/._SB_P
    0FF0: 43 49 32 45 54 50 37 01 93 5C 2F 03 5F 53 42 5F  CI2ETP7..\/._SB_
    1000: 50 43 49 32 45 54 50 37 0A 03 A0 45 13 5B 12 5C  PCI2ETP7...E.[.\
    1010: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 37 00 A0  /._SB_PCI2GPP7..
    1020: 4A 06 92 93 4D 36 32 30 00 A0 40 06 93 4D 30 34  J...M620..@..M04
    1030: 39 4D 36 32 30 0A 10 0A 02 A0 40 05 93 7B 4D 30  9M620.....@..{M0
    1040: 34 39 4D 36 32 30 0A 52 0A 02 00 00 4D 34 36 30  49M620.R....M460
    1050: 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53  .    Notify (\_S
    1060: 42 2E 50 43 49 32 2E 47 50 50 37 2C 20 30 78 30  B.PCI2.GPP7, 0x0
    1070: 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42  ).........\/._SB
    1080: 5F 50 43 49 32 47 50 50 37 00 4D 34 36 30 0D 20  _PCI2GPP7.M460. 
    1090: 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E     Notify (\_SB.
    10A0: 50 43 49 32 2E 47 50 50 37 2C 20 30 78 32 29 0A  PCI2.GPP7, 0x2).
    10B0: 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50  ........\/._SB_P
    10C0: 43 49 32 47 50 50 37 0A 02 5B 22 0A 64 70 4D 30  CI2GPP7..[".dpM0
    10D0: 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 A0  17_BBN....x.. `.
    10E0: 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  @...{`.......M01
    10F0: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1100: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1110: A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  ./..{`.......M01
    1120: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1130: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1140: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 32  .A...\/._SB_PCI2
    1150: 45 54 50 38 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETP8..pzM017_BBN
    1160: 0A 02 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1170: 53 42 5F 50 43 49 32 45 54 50 38 A0 46 0F 91 93  SB_PCI2ETP8.F...
    1180: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 38 01  \/._SB_PCI2ETP8.
    1190: 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 38  .\/._SB_PCI2ETP8
    11A0: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    11B0: 49 32 47 50 50 38 00 4D 34 36 30 0D 20 20 20 20  I2GPP8.M460.    
    11C0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    11D0: 32 2E 47 50 50 38 2C 20 30 78 32 29 0A 00 00 00  2.GPP8, 0x2)....
    11E0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    11F0: 47 50 50 38 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP8..[".dpM017_
    1200: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    1210: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1220: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    1230: 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    1240: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    1250: 38 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    1260: 4D 30 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A  M017_BBN.....x..
    1270: 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43   `.K...\/._SB_PC
    1280: 49 32 45 54 50 39 0A FF 70 7A 4D 30 31 37 5F 42  I2ETP9..pzM017_B
    1290: 42 4E 0A 03 01 0A 78 00 0A 18 0A 10 00 5C 2F 03  BN....x......\/.
    12A0: 5F 53 42 5F 50 43 49 32 45 54 50 39 A0 41 0F 91  _SB_PCI2ETP9.A..
    12B0: 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 39  .\/._SB_PCI2ETP9
    12C0: 01 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    12D0: 39 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50  9...J.[.\/._SB_P
    12E0: 43 49 32 47 50 50 39 00 4D 34 36 30 0D 20 20 20  CI2GPP9.M460.   
    12F0: 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43   Notify (\_SB.PC
    1300: 49 32 2E 47 50 50 39 2C 20 30 78 32 29 0A 00 00  I2.GPP9, 0x2)...
    1310: 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49  ......\/._SB_PCI
    1320: 32 47 50 50 39 0A 02 5B 22 0A 64 70 4D 30 31 37  2GPP9..[".dpM017
    1330: 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 40 06  _BBN....x.. `.@.
    1340: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1350: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1360: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 2F  7_BBN....x.. `./
    1370: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1380: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1390: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 41  7_BBN....x.. `.A
    13A0: 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54  ...\/._SB_PCI2ET
    13B0: 50 41 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 0A 03  PA..pzM017_BBN..
    13C0: 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42  ...x......\/._SB
    13D0: 5F 50 43 49 32 45 54 50 41 A0 46 0F 91 93 5C 2F  _PCI2ETPA.F...\/
    13E0: 03 5F 53 42 5F 50 43 49 32 45 54 50 41 01 93 5C  ._SB_PCI2ETPA..\
    13F0: 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 41 0A 03  /._SB_PCI2ETPA..
    1400: A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 32  .O.[.\/._SB_PCI2
    1410: 47 50 50 41 00 4D 34 36 30 0D 20 20 20 20 4E 6F  GPPA.M460.    No
    1420: 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49 32 2E  tify (\_SB.PCI2.
    1430: 47 50 50 41 2C 20 30 78 32 29 0A 00 00 00 00 00  GPPA, 0x2)......
    1440: 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50  ...\/._SB_PCI2GP
    1450: 50 41 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42  PA..[".dpM017_BB
    1460: 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 44 06 92 93  N.....x.. `.D...
    1470: 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42 42  {`.......M018_BB
    1480: 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  N.....x.. `pM017
    1490: 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 31  _BBN.....x.. `.1
    14A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    14B0: 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    14C0: 31 37 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    14D0: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 32  .A...\/._SB_PCI2
    14E0: 45 54 50 42 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETPB..pzM017_BBN
    14F0: 0A 03 0A 03 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1500: 53 42 5F 50 43 49 32 45 54 50 42 A0 46 0F 91 93  SB_PCI2ETPB.F...
    1510: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 42 01  \/._SB_PCI2ETPB.
    1520: 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 42  .\/._SB_PCI2ETPB
    1530: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    1540: 49 32 47 50 50 42 00 4D 34 36 30 0D 20 20 20 20  I2GPPB.M460.    
    1550: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    1560: 32 2E 47 50 50 42 2C 20 30 78 32 29 0A 00 00 00  2.GPPB, 0x2)....
    1570: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    1580: 47 50 50 42 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPPB..[".dpM017_
    1590: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    15A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    15B0: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    15C0: 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60  17_BBN.....x.. `
    15D0: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    15E0: 38 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    15F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A  M017_BBN.....x..
    1600: 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43   `.A...\/._SB_PC
    1610: 49 32 45 54 50 43 0A FF 70 7A 4D 30 31 37 5F 42  I2ETPC..pzM017_B
    1620: 42 4E 0A 03 0A 04 0A 78 00 0A 18 0A 10 00 5C 2F  BN.....x......\/
    1630: 03 5F 53 42 5F 50 43 49 32 45 54 50 43 A0 46 0F  ._SB_PCI2ETPC.F.
    1640: 91 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    1650: 43 01 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54  C..\/._SB_PCI2ET
    1660: 50 43 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F  PC...O.[.\/._SB_
    1670: 50 43 49 32 47 50 50 43 00 4D 34 36 30 0D 20 20  PCI2GPPC.M460.  
    1680: 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50    Notify (\_SB.P
    1690: 43 49 32 2E 47 50 50 43 2C 20 30 78 32 29 0A 00  CI2.GPPC, 0x2)..
    16A0: 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43  .......\/._SB_PC
    16B0: 49 32 47 50 50 43 0A 02 5B 22 0A 64 70 4D 30 31  I2GPPC..[".dpM01
    16C0: 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 A0  7_BBN.....x.. `.
    16D0: 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  D...{`.......M01
    16E0: 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    16F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A  M017_BBN.....x..
    1700: 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D   `.1..{`.......M
    1710: 30 31 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20  018_BBN.....x.. 
    1720: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78  `pM017_BBN.....x
    1730: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1740: 50 43 49 32 45 54 50 44 0A FF 70 7A 4D 30 31 37  PCI2ETPD..pzM017
    1750: 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1760: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 44 A0  \/._SB_PCI2ETPD.
    1770: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45  F...\/._SB_PCI2E
    1780: 54 50 44 01 93 5C 2F 03 5F 53 42 5F 50 43 49 32  TPD..\/._SB_PCI2
    1790: 45 54 50 44 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ETPD...O.[.\/._S
    17A0: 42 5F 50 43 49 32 47 50 50 44 00 4D 34 36 30 0D  B_PCI2GPPD.M460.
    17B0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    17C0: 2E 50 43 49 32 2E 47 50 50 44 2C 20 30 78 32 29  .PCI2.GPPD, 0x2)
    17D0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    17E0: 50 43 49 32 47 50 50 44 0A 02 5B 22 0A 64 70 4D  PCI2GPPD..[".dpM
    17F0: 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  017_BBN.....x.. 
    1800: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1810: 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  018_BBN.....x.. 
    1820: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78  `pM017_BBN.....x
    1830: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1840: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00  .M018_BBN.....x.
    1850: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05  . `pM017_BBN....
    1860: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1870: 42 5F 50 43 49 32 45 54 50 45 0A FF 70 7A 4D 30  B_PCI2ETPE..pzM0
    1880: 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00 0A 18 0A  17_BBN.....x....
    1890: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    18A0: 45 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  E.F...\/._SB_PCI
    18B0: 32 45 54 50 45 01 93 5C 2F 03 5F 53 42 5F 50 43  2ETPE..\/._SB_PC
    18C0: 49 32 45 54 50 45 0A 03 A0 4F 0C 5B 12 5C 2F 03  I2ETPE...O.[.\/.
    18D0: 5F 53 42 5F 50 43 49 32 47 50 50 45 00 4D 34 36  _SB_PCI2GPPE.M46
    18E0: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    18F0: 53 42 2E 50 43 49 32 2E 47 50 50 45 2C 20 30 78  SB.PCI2.GPPE, 0x
    1900: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1910: 42 5F 50 43 49 32 47 50 50 45 0A 02 5B 22 0A 64  B_PCI2GPPE..[".d
    1920: 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00  pM017_BBN.....x.
    1930: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1940: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A 78 00  .M018_BBN.....x.
    1950: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06  . `pM017_BBN....
    1960: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1970: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A  ...M018_BBN.....
    1980: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1990: 0A 06 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    19A0: 5F 53 42 5F 50 43 49 32 45 54 50 46 0A FF 70 7A  _SB_PCI2ETPF..pz
    19B0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A 78 00 0A  M017_BBN.....x..
    19C0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45  ....\/._SB_PCI2E
    19D0: 54 50 46 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  TPF.F...\/._SB_P
    19E0: 43 49 32 45 54 50 46 01 93 5C 2F 03 5F 53 42 5F  CI2ETPF..\/._SB_
    19F0: 50 43 49 32 45 54 50 46 0A 03 A0 4F 0C 5B 12 5C  PCI2ETPF...O.[.\
    1A00: 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 46 00 4D  /._SB_PCI2GPPF.M
    1A10: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    1A20: 5C 5F 53 42 2E 50 43 49 32 2E 47 50 50 46 2C 20  \_SB.PCI2.GPPF, 
    1A30: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    1A40: 5F 53 42 5F 50 43 49 32 47 50 50 46 0A 02 5B 22  _SB_PCI2GPPF..["
    1A50: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A  .dpM017_BBN.....
    1A60: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    1A70: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 07 0A  ...M018_BBN.....
    1A80: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1A90: 0A 07 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    1AA0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A  .....M018_BBN...
    1AB0: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    1AC0: 0A 03 0A 07 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    1AD0: 2F 03 5F 53 42 5F 50 43 49 32 45 54 50 47 0A FF  /._SB_PCI2ETPG..
    1AE0: 70 7A 4D 30 31 37 5F 42 42 4E 0A 04 01 0A 78 00  pzM017_BBN....x.
    1AF0: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    1B00: 45 54 50 47 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ETPG.A...\/._SB_
    1B10: 50 43 49 32 45 54 50 47 01 93 5C 2F 03 5F 53 42  PCI2ETPG..\/._SB
    1B20: 5F 50 43 49 32 45 54 50 47 0A 03 A0 4A 0C 5B 12  _PCI2ETPG...J.[.
    1B30: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 50 47 00  \/._SB_PCI2GPPG.
    1B40: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    1B50: 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50 50 47 2C  (\_SB.PCI2.GPPG,
    1B60: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    1B70: 03 5F 53 42 5F 50 43 49 32 47 50 50 47 0A 02 5B  ._SB_PCI2GPPG..[
    1B80: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 04 01 0A  ".dpM017_BBN....
    1B90: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    1BA0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BB0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BC0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    1BD0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BE0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BF0: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1C00: 42 5F 50 43 49 32 45 54 50 48 0A FF 70 7A 4D 30  B_PCI2ETPH..pzM0
    1C10: 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    1C20: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 50  ..\/._SB_PCI2ETP
    1C30: 48 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  H.F...\/._SB_PCI
    1C40: 32 45 54 50 48 01 93 5C 2F 03 5F 53 42 5F 50 43  2ETPH..\/._SB_PC
    1C50: 49 32 45 54 50 48 0A 03 A0 4F 0C 5B 12 5C 2F 03  I2ETPH...O.[.\/.
    1C60: 5F 53 42 5F 50 43 49 32 47 50 50 48 00 4D 34 36  _SB_PCI2GPPH.M46
    1C70: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    1C80: 53 42 2E 50 43 49 32 2E 47 50 50 48 2C 20 30 78  SB.PCI2.GPPH, 0x
    1C90: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1CA0: 42 5F 50 43 49 32 47 50 50 48 0A 02 5B 22 0A 64  B_PCI2GPPH..[".d
    1CB0: 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00  pM017_BBN.....x.
    1CC0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1CD0: 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A 78 00  .M018_BBN.....x.
    1CE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02  . `pM017_BBN....
    1CF0: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1D00: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A  ...M018_BBN.....
    1D10: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04  x.. `pM017_BBN..
    1D20: 0A 02 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03  ...x.. `.K...\/.
    1D30: 5F 53 42 5F 50 43 49 32 45 54 31 35 0A FF 70 7A  _SB_PCI2ET15..pz
    1D40: 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00 0A 18  M017_BBN....x...
    1D50: 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54  ...\/._SB_PCI2ET
    1D60: 31 35 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43  15.A...\/._SB_PC
    1D70: 49 32 45 54 31 35 01 93 5C 2F 03 5F 53 42 5F 50  I2ET15..\/._SB_P
    1D80: 43 49 32 45 54 31 35 0A 03 A0 4A 0C 5B 12 5C 2F  CI2ET15...J.[.\/
    1D90: 03 5F 53 42 5F 50 43 49 32 47 50 31 35 00 4D 34  ._SB_PCI2GP15.M4
    1DA0: 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C  60.    Notify (\
    1DB0: 5F 53 42 2E 50 43 49 32 2E 47 50 31 35 2C 20 30  _SB.PCI2.GP15, 0
    1DC0: 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F  x2).........\/._
    1DD0: 53 42 5F 50 43 49 32 47 50 31 35 0A 02 5B 22 0A  SB_PCI2GP15..[".
    1DE0: 64 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00  dpM017_BBN....x.
    1DF0: 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00 00  . `.@...{`......
    1E00: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E10: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E20: 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00  .. `./..{`......
    1E30: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E40: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E50: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1E60: 50 43 49 32 45 54 32 35 0A FF 70 7A 4D 30 31 37  PCI2ET25..pzM017
    1E70: 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1E80: 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 32 35 A0  \/._SB_PCI2ET25.
    1E90: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 32 45  F...\/._SB_PCI2E
    1EA0: 54 32 35 01 93 5C 2F 03 5F 53 42 5F 50 43 49 32  T25..\/._SB_PCI2
    1EB0: 45 54 32 35 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ET25...O.[.\/._S
    1EC0: 42 5F 50 43 49 32 47 50 32 35 00 4D 34 36 30 0D  B_PCI2GP25.M460.
    1ED0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    1EE0: 2E 50 43 49 32 2E 47 50 32 35 2C 20 30 78 32 29  .PCI2.GP25, 0x2)
    1EF0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    1F00: 50 43 49 32 47 50 32 35 0A 02 5B 22 0A 64 70 4D  PCI2GP25..[".dpM
    1F10: 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  017_BBN.....x.. 
    1F20: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1F30: 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  018_BBN.....x.. 
    1F40: 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78  `pM017_BBN.....x
    1F50: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1F60: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00  .M018_BBN.....x.
    1F70: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02  . `pM017_BBN....
    1F80: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1F90: 42 5F 50 43 49 32 45 54 33 35 0A FF 70 7A 4D 30  B_PCI2ET35..pzM0
    1FA0: 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00 0A 18 0A  17_BBN.....x....
    1FB0: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 33  ..\/._SB_PCI2ET3
    1FC0: 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  5.F...\/._SB_PCI
    1FD0: 32 45 54 33 35 01 93 5C 2F 03 5F 53 42 5F 50 43  2ET35..\/._SB_PC
    1FE0: 49 32 45 54 33 35 0A 03 A0 4F 0C 5B 12 5C 2F 03  I2ET35...O.[.\/.
    1FF0: 5F 53 42 5F 50 43 49 32 47 50 33 35 00 4D 34 36  _SB_PCI2GP35.M46
    2000: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    2010: 53 42 2E 50 43 49 32 2E 47 50 33 35 2C 20 30 78  SB.PCI2.GP35, 0x
    2020: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    2030: 42 5F 50 43 49 32 47 50 33 35 0A 02 5B 22 0A 64  B_PCI2GP35..[".d
    2040: 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00  pM017_BBN.....x.
    2050: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    2060: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A 78 00  .M018_BBN.....x.
    2070: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03  . `pM017_BBN....
    2080: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2090: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A  ...M018_BBN.....
    20A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    20B0: 0A 03 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    20C0: 5F 53 42 5F 50 43 49 32 45 54 34 35 0A FF 70 7A  _SB_PCI2ET45..pz
    20D0: 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A 78 00 0A  M017_BBN.....x..
    20E0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45  ....\/._SB_PCI2E
    20F0: 54 34 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  T45.F...\/._SB_P
    2100: 43 49 32 45 54 34 35 01 93 5C 2F 03 5F 53 42 5F  CI2ET45..\/._SB_
    2110: 50 43 49 32 45 54 34 35 0A 03 A0 4F 0C 5B 12 5C  PCI2ET45...O.[.\
    2120: 2F 03 5F 53 42 5F 50 43 49 32 47 50 34 35 00 4D  /._SB_PCI2GP45.M
    2130: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    2140: 5C 5F 53 42 2E 50 43 49 32 2E 47 50 34 35 2C 20  \_SB.PCI2.GP45, 
    2150: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    2160: 5F 53 42 5F 50 43 49 32 47 50 34 35 0A 02 5B 22  _SB_PCI2GP45..["
    2170: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A  .dpM017_BBN.....
    2180: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    2190: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 04 0A  ...M018_BBN.....
    21A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    21B0: 0A 04 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    21C0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A  .....M018_BBN...
    21D0: 04 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    21E0: 0A 05 0A 04 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    21F0: 2F 03 5F 53 42 5F 50 43 49 32 45 54 31 37 0A FF  /._SB_PCI2ET17..
    2200: 70 7A 4D 30 31 37 5F 42 42 4E 0A 07 01 0A 78 00  pzM017_BBN....x.
    2210: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32  .....\/._SB_PCI2
    2220: 45 54 31 37 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ET17.A...\/._SB_
    2230: 50 43 49 32 45 54 31 37 01 93 5C 2F 03 5F 53 42  PCI2ET17..\/._SB
    2240: 5F 50 43 49 32 45 54 31 37 0A 03 A0 4A 0C 5B 12  _PCI2ET17...J.[.
    2250: 5C 2F 03 5F 53 42 5F 50 43 49 32 47 50 31 37 00  \/._SB_PCI2GP17.
    2260: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    2270: 28 5C 5F 53 42 2E 50 43 49 32 2E 47 50 31 37 2C  (\_SB.PCI2.GP17,
    2280: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    2290: 03 5F 53 42 5F 50 43 49 32 47 50 31 37 0A 02 5B  ._SB_PCI2GP17..[
    22A0: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 07 01 0A  ".dpM017_BBN....
    22B0: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    22C0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    22D0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    22E0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    22F0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    2300: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    2310: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    2320: 42 5F 50 43 49 32 45 54 32 37 0A FF 70 7A 4D 30  B_PCI2ET27..pzM0
    2330: 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    2340: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 32 45 54 32  ..\/._SB_PCI2ET2
    2350: 37 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  7.F...\/._SB_PCI
    2360: 32 45 54 32 37 01 93 5C 2F 03 5F 53 42 5F 50 43  2ET27..\/._SB_PC
    2370: 49 32 45 54 32 37 0A 03 A0 4F 0C 5B 12 5C 2F 03  I2ET27...O.[.\/.
    2380: 5F 53 42 5F 50 43 49 32 47 50 32 37 00 4D 34 36  _SB_PCI2GP27.M46
    2390: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    23A0: 53 42 2E 50 43 49 32 2E 47 50 32 37 2C 20 30 78  SB.PCI2.GP27, 0x
    23B0: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    23C0: 42 5F 50 43 49 32 47 50 32 37 0A 02 5B 22 0A 64  B_PCI2GP27..[".d
    23D0: 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00  pM017_BBN.....x.
    23E0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    23F0: 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A 78 00  .M018_BBN.....x.
    2400: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02  . `pM017_BBN....
    2410: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2420: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A  ...M018_BBN.....
    2430: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07  x.. `pM017_BBN..
    2440: 0A 02 0A 78 00 0A 20 60                          ...x.. `

WSMT @ 0x0000000000000000
    0000: 57 53 4D 54 28 00 00 00 01 10 41 4D 44 20 20 20  WSMT(.....AMD   
    0010: 41 20 4D 20 49 20 00 00 01 00 00 00 41 4D 49 20  A M I ......AMI 
    0020: 13 00 01 00 07 00 00 00                          ........

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 87 23 00 00 02 0F 41 4D 44 00 00 00  SSDT.#....AMD...
    0010: 41 4F 44 20 20 20 20 20 01 00 00 00 49 4E 54 4C  AOD     ....INTL
    0020: 31 03 23 20 08 4F 42 49 44 12 44 39 C1 0A 40 0C  1.# .OBID.D9..@.
    0030: 01 00 04 00 0C 02 00 04 00 0C 27 00 02 00 0C 26  ..........'....&
    0040: 00 02 00 0C 01 00 02 00 0C 02 00 02 00 0C 06 00  ................
    0050: 02 00 0C 05 00 02 00 0C 09 00 02 00 0C 10 00 02  ................
    0060: 00 0C 0B 00 02 00 0C 15 00 02 00 0C 0F 00 02 00  ................
    0070: 0C 0E 00 02 00 0C 0D 00 02 00 0C 12 00 02 00 0C  ................
    0080: 11 00 02 00 0C 17 00 02 00 0C 16 00 02 00 0C 18  ................
    0090: 00 02 00 0C 19 00 02 00 0C 1B 00 02 00 0C 1A 00  ................
    00A0: 02 00 0C 1C 00 02 00 0C 1D 00 02 00 0C 1F 00 02  ................
    00B0: 00 0C 1E 00 02 00 0C 2D 00 02 00 0C 07 00 02 00  .......-........
    00C0: 0C 23 00 02 00 0C 24 00 02 00 0C 25 00 02 00 0C  .#....$....%....
    00D0: 36 00 02 00 0C 33 00 02 00 0C 35 00 02 00 0C 01  6....3....5.....
    00E0: 00 03 00 0C 31 00 02 00 0C 32 00 02 00 0C 34 00  ....1....2....4.
    00F0: 02 00 0C 30 00 02 00 0C 38 00 02 00 00 00 00 00  ...0....8.......
    0100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0110: 00 00 00 00 00 01 00 00 01 01 01 01 01 01 01 01  ................
    0120: 01 01 01 01 01 01 01 01 01 01 01 01 01 01 00 00  ................
    0130: 01 01 00 01 00 00 01 00 01 01 01 01 00 00 00 00  ................
    0140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0150: 00 00 00 0D 43 6F 6D 6D 61 6E 64 20 42 75 66 66  ....Command Buff
    0160: 65 72 20 53 74 61 72 74 00 0D 43 6F 6D 6D 61 6E  er Start..Comman
    0170: 64 20 42 75 66 66 65 72 20 45 6E 64 00 0D 53 6F  d Buffer End..So
    0180: 66 74 77 61 72 65 20 44 6F 77 6E 63 6F 72 65 20  ftware Downcore 
    0190: 43 6F 6E 66 69 67 00 0D 53 65 74 20 53 4D 54 45  Config..Set SMTE
    01A0: 6E 00 0D 53 65 74 20 4D 65 6D 20 43 6C 6F 63 6B  n..Set Mem Clock
    01B0: 00 0D 53 65 74 20 54 63 6C 00 0D 53 65 74 20 54  ..Set Tcl..Set T
    01C0: 72 70 00 0D 53 65 74 20 54 72 61 73 00 0D 53 65  rp..Set Tras..Se
    01D0: 74 20 54 72 63 00 0D 53 65 74 20 54 77 72 00 0D  t Trc..Set Twr..
    01E0: 53 65 74 20 54 72 66 63 32 00 0D 53 65 74 20 54  Set Trfc2..Set T
    01F0: 72 74 70 00 0D 53 65 74 20 54 72 72 64 4C 00 0D  rtp..Set TrrdL..
    0200: 53 65 74 20 54 72 72 64 53 00 0D 53 65 74 20 54  Set TrrdS..Set T
    0210: 66 61 77 00 0D 53 65 74 20 54 77 74 72 4C 00 0D  faw..Set TwtrL..
    0220: 53 65 74 20 54 77 74 72 53 00 0D 53 65 74 20 54  Set TwtrS..Set T
    0230: 72 64 72 64 53 63 4C 00 0D 53 65 74 20 54 72 64  rdrdScL..Set Trd
    0240: 72 64 53 63 00 0D 53 65 74 20 54 72 64 72 64 53  rdSc..Set TrdrdS
    0250: 64 00 0D 53 65 74 20 54 72 64 72 64 44 64 00 0D  d..Set TrdrdDd..
    0260: 53 65 74 20 54 77 72 77 72 53 63 4C 00 0D 53 65  Set TwrwrScL..Se
    0270: 74 20 54 77 72 77 72 53 63 00 0D 53 65 74 20 54  t TwrwrSc..Set T
    0280: 77 72 77 72 53 64 00 0D 53 65 74 20 54 77 72 77  wrwrSd..Set Twrw
    0290: 72 44 64 00 0D 53 65 74 20 54 77 72 72 64 00 0D  rDd..Set Twrrd..
    02A0: 53 65 74 20 54 72 64 77 72 00 0D 53 65 74 20 43  Set Trdwr..Set C
    02B0: 61 64 42 75 73 41 64 64 72 43 6D 64 44 72 76 53  adBusAddrCmdDrvS
    02C0: 74 72 65 6E 00 0D 53 65 74 20 50 72 6F 63 4F 44  tren..Set ProcOD
    02D0: 54 00 0D 53 65 74 20 52 74 74 57 72 00 0D 53 65  T..Set RttWr..Se
    02E0: 74 20 52 74 74 50 61 72 6B 00 0D 53 65 74 20 50  t RttPark..Set P
    02F0: 6F 77 65 72 44 77 6F 6E 45 6E 00 0D 53 65 74 20  owerDwonEn..Set 
    0300: 43 43 4C 4B 20 46 6D 61 78 00 0D 53 65 74 20 46  CCLK Fmax..Set F
    0310: 43 4C 4B 20 4F 43 20 4D 6F 64 65 00 0D 53 65 74  CLK OC Mode..Set
    0320: 20 46 43 4C 4B 20 46 72 65 71 75 65 6E 63 79 00   FCLK Frequency.
    0330: 0D 53 65 74 20 56 44 44 49 4F 00 0D 53 65 74 20  .Set VDDIO..Set 
    0340: 49 6E 74 65 72 6C 65 61 76 65 20 4D 6F 64 65 00  Interleave Mode.
    0350: 0D 53 65 74 20 49 6E 74 65 72 6C 65 61 76 65 20  .Set Interleave 
    0360: 53 69 7A 65 00 0D 53 65 74 20 53 4F 43 20 56 49  Size..Set SOC VI
    0370: 44 00 0D 53 65 74 20 43 4C 44 4F 5F 56 44 44 50  D..Set CLDO_VDDP
    0380: 00 0D 53 65 74 20 43 4C 44 4F 20 56 44 44 47 00  ..Set CLDO VDDG.
    0390: 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00  ................
    03A0: 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00  ................
    03B0: 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 08 4F  ...............O
    03C0: 42 49 45 12 4F 32 C1 0A 40 0C 03 00 01 00 0C 04  BIE.O2..@.......
    03D0: 00 01 00 0C 05 00 01 00 0C 06 00 01 00 0C 07 00  ................
    03E0: 01 00 0C 08 00 01 00 0C 0A 00 05 00 0C 3B 00 02  .............;..
    03F0: 00 0C 3C 00 02 00 0C 3D 00 02 00 0C 41 00 02 00  ..<....=....A...
    0400: 0C 42 00 02 00 0C 3E 00 02 00 0C 3F 00 02 00 0C  .B....>....?....
    0410: 40 00 02 00 0C 01 00 05 00 0C 02 00 05 00 0C 03  @...............
    0420: 00 05 00 0C 04 00 05 00 0C 07 00 03 00 0C 03 00  ................
    0430: 03 00 0C 04 00 03 00 0C 43 00 02 00 0C 06 00 03  ........C.......
    0440: 00 0C 0B 00 05 00 0C 44 00 02 00 0C 48 00 02 00  .......D....H...
    0450: 0C 06 00 05 00 0C 01 00 06 00 0C 08 00 05 00 00  ................
    0460: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0470: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0480: 00 01 01 01 01 01 01 01 01 01 01 00 00 01 01 01  ................
    0490: 01 01 01 01 01 01 01 01 01 01 00 00 00 01 00 00  ................
    04A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04C0: 00 0D 47 65 74 20 4F 43 20 44 69 73 61 62 6C 65  ..Get OC Disable
    04D0: 00 0D 47 65 74 20 4F 43 20 56 6F 6C 74 61 67 65  ..Get OC Voltage
    04E0: 20 4D 61 78 00 0D 47 65 74 20 4F 43 20 46 72 65   Max..Get OC Fre
    04F0: 71 75 65 6E 63 79 20 4D 61 78 00 0D 47 65 74 20  quency Max..Get 
    0500: 47 46 58 20 4F 43 20 56 6F 6C 74 61 67 65 20 4D  GFX OC Voltage M
    0510: 61 78 00 0D 47 65 74 20 47 46 58 20 4F 43 20 46  ax..Get GFX OC F
    0520: 72 65 71 75 65 6E 63 79 20 4D 61 78 00 0D 47 65  requency Max..Ge
    0530: 74 20 49 6E 74 65 72 6C 65 76 61 69 6E 67 20 43  t Interlevaing C
    0540: 61 70 00 0D 53 65 74 20 43 75 72 76 65 20 4F 70  ap..Set Curve Op
    0550: 74 69 6D 69 7A 65 72 00 0D 53 65 74 20 54 72 63  timizer..Set Trc
    0560: 64 00 0D 53 65 74 20 54 72 66 63 31 00 0D 53 65  d..Set Trfc1..Se
    0570: 74 20 54 72 66 63 53 62 00 0D 53 65 74 20 50 72  t TrfcSb..Set Pr
    0580: 6F 63 44 61 74 61 44 72 69 76 65 53 74 72 65 6E  ocDataDriveStren
    0590: 67 74 68 00 0D 53 65 74 20 44 52 41 4D 44 61 74  gth..Set DRAMDat
    05A0: 61 44 72 69 76 65 53 74 72 65 6E 67 74 68 00 0D  aDriveStrength..
    05B0: 53 65 74 20 52 74 74 4E 6F 6D 57 72 00 0D 53 65  Set RttNomWr..Se
    05C0: 74 20 52 74 74 4E 6F 6D 52 64 00 0D 53 65 74 20  t RttNomRd..Set 
    05D0: 52 74 74 50 61 72 6B 44 71 73 00 0D 53 65 74 20  RttParkDqs..Set 
    05E0: 50 50 54 20 4C 69 6D 69 74 00 0D 53 65 74 20 54  PPT Limit..Set T
    05F0: 44 43 20 4C 69 6D 69 74 00 0D 53 65 74 20 45 44  DC Limit..Set ED
    0600: 43 20 4C 69 6D 69 74 00 0D 53 65 74 20 53 63 61  C Limit..Set Sca
    0610: 6C 61 72 00 0D 53 65 74 20 44 49 4D 4D 20 56 44  lar..Set DIMM VD
    0620: 44 51 00 0D 53 65 74 20 56 50 50 00 0D 53 65 74  DQ..Set VPP..Set
    0630: 20 41 50 55 20 56 44 44 49 4F 00 0D 53 65 74 20   APU VDDIO..Set 
    0640: 4C 43 4C 4B 20 46 72 65 71 00 0D 53 65 74 20 56  LCLK Freq..Set V
    0650: 44 44 5F 4D 49 53 43 00 0D 53 65 74 20 56 44 44  DD_MISC..Set VDD
    0660: 47 20 49 4F 44 00 0D 53 65 74 20 55 43 4C 4B 20  G IOD..Set UCLK 
    0670: 44 49 56 31 00 0D 52 65 73 65 74 20 4D 65 6D 20  DIV1..Reset Mem 
    0680: 50 61 72 61 00 0D 53 65 74 20 47 61 6D 65 20 4D  Para..Set Game M
    0690: 6F 64 65 00 0D 53 65 74 20 4F 43 20 46 75 73 65  ode..Set OC Fuse
    06A0: 00 0D 53 65 74 20 4E 50 53 20 4D 6F 64 65 00 0D  ..Set NPS Mode..
    06B0: 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D  ................
    06C0: 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D  ................
    06D0: 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D  ................
    06E0: 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D 00 0D  ................
    06F0: 00 0D 00 08 4F 42 49 54 12 48 BD 46 0A 45 12 2B  ....OBIT.H.F.E.+
    0700: 04 0C 08 00 05 00 00 0A 46 11 20 0B 9C 01 08 00  ........F. .....
    0710: 05 00 01 00 00 00 04 00 00 00 01 00 00 00 02 00  ................
    0720: 00 00 03 00 00 00 FF 00 00 00 12 22 04 0C 01 00  ..........."....
    0730: 06 00 01 0A 45 11 17 0A 14 01 00 06 00 01 00 00  ....E...........
    0740: 00 00 00 00 00 07 00 00 00 01 00 00 00 12 23 04  ..............#.
    0750: 0C 06 00 05 00 00 0A 44 11 18 0B 9C 01 06 00 05  .......D........
    0760: 00 00 00 00 00 02 00 00 00 00 00 00 00 01 00 00  ................
    0770: 00 12 1F 04 0C 48 00 02 00 00 0A 43 11 14 0B 9C  .....H.....C....
    0780: 01 48 00 02 00 00 00 00 00 01 00 00 00 01 00 00  .H..............
    0790: 00 12 23 04 0C 44 00 02 00 00 0A 42 11 18 0B 9C  ..#..D.....B....
    07A0: 01 44 00 02 00 01 00 00 00 02 00 00 00 00 00 00  .D..............
    07B0: 00 01 00 00 00 12 22 04 0C 0B 00 05 00 01 0A 41  ......"........A
    07C0: 11 17 0A 14 0B 00 05 00 00 00 00 00 58 02 00 00  ............X...
    07D0: DC 05 00 00 0A 00 00 00 12 22 04 0C 38 00 02 00  ........."..8...
    07E0: 01 0A 40 11 17 0A 14 38 00 02 00 00 00 00 00 58  ..@....8.......X
    07F0: 02 00 00 DC 05 00 00 0A 00 00 00 12 22 04 0C 06  ............"...
    0800: 00 03 00 01 0A 3F 11 17 0A 14 06 00 03 00 00 00  .....?..........
    0810: 00 00 F4 01 00 00 E0 15 00 00 0A 00 00 00 12 22  ..............."
    0820: 04 0C 43 00 02 00 01 0A 3E 11 17 0A 14 43 00 02  ..C.....>....C..
    0830: 00 00 00 00 00 79 03 00 00 C4 09 00 00 01 00 00  .....y..........
    0840: 00 12 22 04 0C 30 00 02 00 01 0A 3D 11 17 0A 14  .."..0.....=....
    0850: 30 00 02 00 00 00 00 00 00 00 00 00 D0 07 00 00  0...............
    0860: 01 00 00 00 12 22 04 0C 34 00 02 00 01 0A 3C 11  ....."..4.....<.
    0870: 17 0A 14 34 00 02 00 00 00 00 00 00 00 00 00 D3  ...4............
    0880: 00 00 00 01 00 00 00 12 22 04 0C 32 00 02 00 01  ........"..2....
    0890: 0A 3B 11 17 0A 14 32 00 02 00 00 00 00 00 00 00  .;....2.........
    08A0: 00 00 03 00 00 00 01 00 00 00 12 1F 04 0C 31 00  ..............1.
    08B0: 02 00 00 0A 3A 11 14 0B 9C 01 31 00 02 00 00 00  ....:.....1.....
    08C0: 00 00 01 00 00 00 00 00 00 00 12 22 04 0C 04 00  ..........."....
    08D0: 03 00 01 0A 39 11 17 0A 14 04 00 03 00 00 00 00  ....9...........
    08E0: 00 BC 02 00 00 6C 0A 00 00 02 00 00 00 12 22 04  .....l........".
    08F0: 0C 03 00 03 00 01 0A 38 11 17 0A 14 03 00 03 00  .......8........
    0900: 08 07 00 00 DC 05 00 00 52 08 00 00 0A 00 00 00  ........R.......
    0910: 12 22 04 0C 07 00 03 00 01 0A 37 11 17 0A 14 07  ."........7.....
    0920: 00 03 00 4C 04 00 00 20 03 00 00 96 05 00 00 0A  ...L... ........
    0930: 00 00 00 12 22 04 0C 01 00 03 00 01 0A 36 11 17  ...."........6..
    0940: 0A 14 01 00 03 00 4C 04 00 00 20 03 00 00 96 05  ......L... .....
    0950: 00 00 0A 00 00 00 12 45 15 04 0C 35 00 02 00 00  .......E...5....
    0960: 0A 35 11 49 14 0B 9C 01 35 00 02 00 00 00 00 00  .5.I....5.......
    0970: 4E 00 00 00 64 00 00 00 C8 00 00 00 4D 01 00 00  N...d.......M...
    0980: 90 01 00 00 F4 01 00 00 15 02 00 00 9B 02 00 00  ................
    0990: 20 03 00 00 A5 03 00 00 1A 04 00 00 2A 04 00 00   ...........*...
    09A0: 2B 04 00 00 4C 04 00 00 60 04 00 00 77 04 00 00  +...L...`...w...
    09B0: B0 04 00 00 E2 04 00 00 E9 04 00 00 00 05 00 00  ................
    09C0: 14 05 00 00 28 05 00 00 35 05 00 00 57 05 00 00  ....(...5...W...
    09D0: 5B 05 00 00 78 05 00 00 99 05 00 00 A0 05 00 00  [...x...........
    09E0: BB 05 00 00 CD 05 00 00 DC 05 00 00 FD 05 00 00  ................
    09F0: 18 06 00 00 1F 06 00 00 40 06 00 00 61 06 00 00  ........@...a...
    0A00: 72 06 00 00 83 06 00 00 90 06 00 00 A4 06 00 00  r...............
    0A10: C5 06 00 00 D6 06 00 00 E0 06 00 00 E7 06 00 00  ................
    0A20: 08 07 00 00 29 07 00 00 4B 07 00 00 6C 07 00 00  ....)...K...l...
    0A30: 80 07 00 00 8D 07 00 00 9E 07 00 00 A8 07 00 00  ................
    0A40: AF 07 00 00 D0 07 00 00 F1 07 00 00 13 08 00 00  ................
    0A50: 34 08 00 00 55 08 00 00 77 08 00 00 98 08 00 00  4...U...w.......
    0A60: B9 08 00 00 DB 08 00 00 FC 08 00 00 1D 09 00 00  ................
    0A70: 3F 09 00 00 60 09 00 00 81 09 00 00 A3 09 00 00  ?...`...........
    0A80: C4 09 00 00 F6 09 00 00 28 0A 00 00 5A 0A 00 00  ........(...Z...
    0A90: 8C 0A 00 00 BE 0A 00 00 F0 0A 00 00 22 0B 00 00  ............"...
    0AA0: 54 0B 00 00 86 0B 00 00 B8 0B 00 00 12 23 04 0C  T............#..
    0AB0: 33 00 02 00 00 0A 34 11 18 0B 9C 01 33 00 02 00  3.....4.....3...
    0AC0: 00 00 00 00 02 00 00 00 00 00 00 00 01 00 00 00  ................
    0AD0: 12 22 04 0C 36 00 02 00 01 0A 33 11 17 0A 14 36  ."..6.....3....6
    0AE0: 00 02 00 00 00 00 00 2A 12 00 00 DA 16 00 00 19  .......*........
    0AF0: 00 00 00 12 22 04 0C 04 00 05 00 01 0A 32 11 17  ...."........2..
    0B00: 0A 14 04 00 05 00 00 00 00 00 00 00 00 00 E8 03  ................
    0B10: 00 00 64 00 00 00 12 22 04 0C 03 00 05 00 01 0A  ..d...."........
    0B20: 31 11 17 0A 14 03 00 05 00 00 00 00 00 00 00 00  1...............
    0B30: 00 20 A1 07 00 01 00 00 00 12 22 04 0C 02 00 05  . ........".....
    0B40: 00 01 0A 30 11 17 0A 14 02 00 05 00 00 00 00 00  ...0............
    0B50: 00 00 00 00 E0 04 07 00 01 00 00 00 12 22 04 0C  ............."..
    0B60: 01 00 05 00 01 0A 2F 11 17 0A 14 01 00 05 00 00  ....../.........
    0B70: 00 00 00 00 00 00 00 80 84 1E 00 01 00 00 00 12  ................
    0B80: 23 04 0C 25 00 02 00 00 0A 2E 11 18 0B 9C 01 25  #..%...........%
    0B90: 00 02 00 00 00 00 00 02 00 00 00 01 00 00 00 00  ................
    0BA0: 00 00 00 12 22 04 0C 40 00 02 00 01 0A 2D 11 17  ...."..@.....-..
    0BB0: 0A 14 40 00 02 00 03 00 00 00 00 00 00 00 07 00  ..@.............
    0BC0: 00 00 01 00 00 00 12 22 04 0C 24 00 02 00 01 0A  ......."..$.....
    0BD0: 2C 11 17 0A 14 24 00 02 00 04 00 00 00 00 00 00  ,....$..........
    0BE0: 00 07 00 00 00 01 00 00 00 12 22 04 0C 23 00 02  .........."..#..
    0BF0: 00 01 0A 2B 11 17 0A 14 23 00 02 00 01 00 00 00  ...+....#.......
    0C00: 00 00 00 00 07 00 00 00 01 00 00 00 12 22 04 0C  ............."..
    0C10: 3F 00 02 00 01 0A 2A 11 17 0A 14 3F 00 02 00 00  ?.....*....?....
    0C20: 00 00 00 00 00 00 00 07 00 00 00 01 00 00 00 12  ................
    0C30: 22 04 0C 3E 00 02 00 01 0A 29 11 17 0A 14 3E 00  "..>.....)....>.
    0C40: 02 00 00 00 00 00 00 00 00 00 07 00 00 00 01 00  ................
    0C50: 00 00 12 27 04 0C 42 00 02 00 00 0A 28 11 1C 0B  ...'..B.....(...
    0C60: 9C 01 42 00 02 00 00 00 00 00 03 00 00 00 00 00  ..B.............
    0C70: 00 00 01 00 00 00 02 00 00 00 12 4D 06 04 0C 07  ...........M....
    0C80: 00 02 00 00 0A 27 11 41 06 0B 9C 01 07 00 02 00  .....'.A........
    0C90: 07 00 00 00 14 00 00 00 00 00 00 00 01 00 00 00  ................
    0CA0: 02 00 00 00 03 00 00 00 04 00 00 00 05 00 00 00  ................
    0CB0: 06 00 00 00 07 00 00 00 0C 00 00 00 0D 00 00 00  ................
    0CC0: 0E 00 00 00 0F 00 00 00 1C 00 00 00 1D 00 00 00  ................
    0CD0: 1E 00 00 00 1F 00 00 00 3C 00 00 00 3D 00 00 00  ........<...=...
    0CE0: 3E 00 00 00 3F 00 00 00 12 3B 04 0C 41 00 02 00  >...?....;..A...
    0CF0: 00 0A 26 11 30 0B 9C 01 41 00 02 00 1E 00 00 00  ..&.0...A.......
    0D00: 08 00 00 00 00 00 00 00 02 00 00 00 04 00 00 00  ................
    0D10: 06 00 00 00 0C 00 00 00 0E 00 00 00 1C 00 00 00  ................
    0D20: 1E 00 00 00 12 2B 04 0C 2D 00 02 00 00 0A 25 11  .....+..-.....%.
    0D30: 20 0B 9C 01 2D 00 02 00 28 00 00 00 04 00 00 00   ...-...(.......
    0D40: 1E 00 00 00 28 00 00 00 3C 00 00 00 78 00 00 00  ....(...<...x...
    0D50: 12 22 04 0C 1E 00 02 00 01 0A 24 11 17 0A 14 1E  ."........$.....
    0D60: 00 02 00 13 00 00 00 01 00 00 00 1F 00 00 00 01  ................
    0D70: 00 00 00 12 22 04 0C 1F 00 02 00 01 0A 23 11 17  ...."........#..
    0D80: 0A 14 1F 00 02 00 05 00 00 00 01 00 00 00 0F 00  ................
    0D90: 00 00 01 00 00 00 12 22 04 0C 1D 00 02 00 01 0A  ......."........
    0DA0: 22 11 17 0A 14 1D 00 02 00 09 00 00 00 01 00 00  "...............
    0DB0: 00 0F 00 00 00 01 00 00 00 12 22 04 0C 1C 00 02  ..........".....
    0DC0: 00 01 0A 21 11 17 0A 14 1C 00 02 00 09 00 00 00  ...!............
    0DD0: 01 00 00 00 0F 00 00 00 01 00 00 00 12 22 04 0C  ............."..
    0DE0: 1A 00 02 00 01 0A 20 11 17 0A 14 1A 00 02 00 01  ...... .........
    0DF0: 00 00 00 01 00 00 00 0F 00 00 00 01 00 00 00 12  ................
    0E00: 22 04 0C 1B 00 02 00 01 0A 1F 11 17 0A 14 1B 00  "...............
    0E10: 02 00 29 00 00 00 01 00 00 00 3F 00 00 00 01 00  ..).......?.....
    0E20: 00 00 12 22 04 0C 19 00 02 00 01 0A 1E 11 17 0A  ..."............
    0E30: 14 19 00 02 00 08 00 00 00 01 00 00 00 0F 00 00  ................
    0E40: 00 01 00 00 00 12 22 04 0C 18 00 02 00 01 0A 1D  ......".........
    0E50: 11 17 0A 14 18 00 02 00 08 00 00 00 01 00 00 00  ................
    0E60: 0F 00 00 00 01 00 00 00 12 22 04 0C 16 00 02 00  ........."......
    0E70: 01 0A 1C 11 17 0A 14 16 00 02 00 01 00 00 00 01  ................
    0E80: 00 00 00 0F 00 00 00 01 00 00 00 12 22 04 0C 17  ............"...
    0E90: 00 02 00 01 0A 1B 11 17 0A 14 17 00 02 00 05 00  ................
    0EA0: 00 00 01 00 00 00 0F 00 00 00 01 00 00 00 12 22  ..............."
    0EB0: 04 0C 11 00 02 00 01 0A 1A 11 17 0A 14 11 00 02  ................
    0EC0: 00 06 00 00 00 02 00 00 00 10 00 00 00 01 00 00  ................
    0ED0: 00 12 22 04 0C 12 00 02 00 01 0A 19 11 17 0A 14  ..".............
    0EE0: 12 00 02 00 18 00 00 00 02 00 00 00 30 00 00 00  ............0...
    0EF0: 01 00 00 00 12 22 04 0C 0D 00 02 00 01 0A 18 11  ....."..........
    0F00: 17 0A 14 0D 00 02 00 20 00 00 00 06 00 00 00 50  ....... .......P
    0F10: 00 00 00 01 00 00 00 12 22 04 0C 0E 00 02 00 01  ........".......
    0F20: 0A 17 11 17 0A 14 0E 00 02 00 08 00 00 00 04 00  ................
    0F30: 00 00 14 00 00 00 01 00 00 00 12 22 04 0C 0F 00  ..........."....
    0F40: 02 00 01 0A 16 11 17 0A 14 0F 00 02 00 0C 00 00  ................
    0F50: 00 04 00 00 00 20 00 00 00 01 00 00 00 12 22 04  ..... ........".
    0F60: 0C 15 00 02 00 01 0A 15 11 17 0A 14 15 00 02 00  ................
    0F70: 12 00 00 00 05 00 00 00 1F 00 00 00 01 00 00 00  ................
    0F80: 12 22 04 0C 3D 00 02 00 01 0A 14 11 17 0A 14 3D  ."..=..........=
    0F90: 00 02 00 38 01 00 00 32 00 00 00 FF 07 00 00 01  ...8...2........
    0FA0: 00 00 00 12 22 04 0C 0B 00 02 00 01 0A 13 11 17  ...."...........
    0FB0: 0A 14 0B 00 02 00 80 01 00 00 32 00 00 00 FF 0F  ..........2.....
    0FC0: 00 00 01 00 00 00 12 22 04 0C 3C 00 02 00 01 0A  ......."..<.....
    0FD0: 12 11 17 0A 14 3C 00 02 00 C4 02 00 00 32 00 00  .....<.......2..
    0FE0: 00 FF 0F 00 00 01 00 00 00 12 22 04 0C 10 00 02  ..........".....
    0FF0: 00 01 0A 11 11 17 0A 14 10 00 02 00 48 00 00 00  ............H...
    1000: 30 00 00 00 84 00 00 00 06 00 00 00 12 22 04 0C  0............"..
    1010: 09 00 02 00 01 0A 10 11 17 0A 14 09 00 02 00 74  ...............t
    1020: 00 00 00 1D 00 00 00 FF 00 00 00 01 00 00 00 12  ................
    1030: 22 04 0C 05 00 02 00 01 0A 0F 11 17 0A 14 05 00  "...............
    1040: 02 00 4D 00 00 00 15 00 00 00 7E 00 00 00 01 00  ..M.......~.....
    1050: 00 00 12 22 04 0C 06 00 02 00 01 0A 0E 11 17 0A  ..."............
    1060: 14 06 00 02 00 27 00 00 00 08 00 00 00 3E 00 00  .....'.......>..
    1070: 00 01 00 00 00 12 22 04 0C 3B 00 02 00 01 0A 0D  ......"..;......
    1080: 11 17 0A 14 3B 00 02 00 27 00 00 00 08 00 00 00  ....;...'.......
    1090: 3E 00 00 00 01 00 00 00 12 22 04 0C 02 00 02 00  >........"......
    10A0: 01 0A 0C 11 17 0A 14 02 00 02 00 28 00 00 00 16  ...........(....
    10B0: 00 00 00 3E 00 00 00 02 00 00 00 12 49 0D 04 0C  ...>........I...
    10C0: 01 00 02 00 00 0A 0B 11 4D 0C 0B 9C 01 01 00 02  ........M.......
    10D0: 00 60 09 00 00 2F 00 00 00 E8 03 00 00 B0 04 00  .`.../..........
    10E0: 00 40 06 00 00 A4 06 00 00 08 07 00 00 6C 07 00  .@...........l..
    10F0: 00 D0 07 00 00 34 08 00 00 98 08 00 00 FC 08 00  .....4..........
    1100: 00 60 09 00 00 C4 09 00 00 28 0A 00 00 8C 0A 00  .`.......(......
    1110: 00 F0 0A 00 00 54 0B 00 00 B8 0B 00 00 1C 0C 00  .....T..........
    1120: 00 80 0C 00 00 E4 0C 00 00 48 0D 00 00 AC 0D 00  .........H......
    1130: 00 10 0E 00 00 74 0E 00 00 D8 0E 00 00 3C 0F 00  .....t.......<..
    1140: 00 A0 0F 00 00 04 10 00 00 68 10 00 00 CC 10 00  .........h......
    1150: 00 30 11 00 00 94 11 00 00 F8 11 00 00 5C 12 00  .0...........\..
    1160: 00 C0 12 00 00 24 13 00 00 88 13 00 00 EC 13 00  .....$..........
    1170: 00 50 14 00 00 B4 14 00 00 18 15 00 00 7C 15 00  .P...........|..
    1180: 00 E0 15 00 00 44 16 00 00 A8 16 00 00 0C 17 00  .....D..........
    1190: 00 70 17 00 00 12 23 04 0C 26 00 02 00 00 0A 0A  .p....#..&......
    11A0: 11 18 0B 9C 01 26 00 02 00 01 00 00 00 02 00 00  .....&..........
    11B0: 00 00 00 00 00 01 00 00 00 12 22 04 0C 0A 00 05  ..........".....
    11C0: 00 01 0A 09 11 17 0A 14 0A 00 05 00 00 00 00 00  ................
    11D0: 00 00 00 00 32 00 00 00 01 00 00 00 12 22 04 0C  ....2........"..
    11E0: 27 00 02 00 01 0A 08 11 17 0A 14 27 00 02 00 00  '..........'....
    11F0: 00 00 00 00 00 00 00 FF FF FF FF 01 00 00 00 12  ................
    1200: 22 04 0C 08 00 01 00 01 0A 07 11 17 0A 14 08 00  "...............
    1210: 01 00 00 00 00 00 00 00 00 00 FF FF FF FF 01 00  ................
    1220: 00 00 12 22 04 0C 07 00 01 00 01 0A 06 11 17 0A  ..."............
    1230: 14 07 00 01 00 00 00 00 00 00 00 00 00 FF FF FF  ................
    1240: FF 01 00 00 00 12 22 04 0C 06 00 01 00 01 0A 05  ......".........
    1250: 11 17 0A 14 06 00 01 00 F0 0A 00 00 00 00 00 00  ................
    1260: FF FF FF FF 01 00 00 00 12 22 04 0C 05 00 01 00  ........."......
    1270: 01 0A 04 11 17 0A 14 05 00 01 00 00 00 00 00 00  ................
    1280: 00 00 00 FF FF FF FF 01 00 00 00 12 22 04 0C 04  ............"...
    1290: 00 01 00 01 0A 03 11 17 0A 14 04 00 01 00 F0 0A  ................
    12A0: 00 00 00 00 00 00 FF FF FF FF 01 00 00 00 12 22  ..............."
    12B0: 04 0C 03 00 01 00 01 0A 02 11 17 0A 14 03 00 01  ................
    12C0: 00 00 00 00 00 00 00 00 00 FF FF FF FF 01 00 00  ................
    12D0: 00 A0 1A 00 15 5C 4F 42 49 44 04 00 15 5C 4F 42  .....\OBID...\OB
    12E0: 49 45 04 00 15 5C 4F 42 49 54 04 00 10 8A 09 01  IE...\OBIT......
    12F0: 5C 00 08 47 46 30 31 00 08 41 53 4D 49 0B B2 00  \..GF01..ASMI...
    1300: 08 49 53 4D 49 0A 9D 08 41 4F 44 56 0A 06 5B 80  .ISMI...AODV..[.
    1310: 41 4F 44 45 00 0C 18 F0 45 A9 0B AC 24 5B 81 35  AODE....E...$[.5
    1320: 41 4F 44 45 00 4F 55 54 42 40 62 41 51 56 53 20  AODE.OUTB@bAQVS 
    1330: 53 43 4D 49 20 53 43 4D 44 20 44 53 50 44 80 A2  SCMI SCMD DSPD..
    1340: 10 52 45 53 56 40 06 52 4D 50 44 40 46 57 43 4E  .RESV@.RMPD@FWCN
    1350: 53 80 00 01 5B 82 81 03 01 41 4F 44 5F 08 5F 48  S...[....AOD_._H
    1360: 49 44 0C 41 D0 0C 14 08 5F 55 49 44 0D 41 4F 44  ID.A...._UID.AOD
    1370: 00 14 15 41 4D 30 31 00 70 41 51 56 53 41 4F 44  ...AM01.pAQVSAOD
    1380: 56 A4 5C 41 4F 44 56 14 16 41 4D 30 32 00 A0 0D  V.\AODV..AM02...
    1390: 93 47 46 30 31 00 70 01 47 46 30 31 A4 00 14 0C  .GF01.p.GF01....
    13A0: 41 4D 30 33 00 A4 5C 4F 42 49 44 14 44 0B 41 4D  AM03..\OBID.D.AM
    13B0: 30 34 01 08 4C 4F 44 54 11 05 0B 9C 01 00 08 54  04..LODT.......T
    13C0: 45 4D 50 11 05 0B 00 02 00 70 68 60 70 83 88 5C  EMP......ph`p..\
    13D0: 4F 42 49 54 00 00 61 70 01 62 A2 40 08 92 94 62  OBIT..ap.b.@...b
    13E0: 61 70 83 88 83 88 5C 4F 42 49 54 62 00 00 00 63  ap....\OBITb...c
    13F0: 70 83 88 83 88 5C 4F 42 49 54 62 00 01 00 64 A0  p....\OBITb...d.
    1400: 49 05 90 93 63 60 93 64 00 70 83 88 83 88 5C 4F  I...c`.d.p....\O
    1410: 42 49 54 62 00 0A 03 00 4C 4F 44 54 70 57 43 4E  BITb....LODTpWCN
    1420: 53 54 45 4D 50 70 83 88 83 88 5C 4F 42 49 54 62  STEMPp....\OBITb
    1430: 00 0A 02 00 65 77 65 0A 04 65 8A 54 45 4D 50 65  ....ewe..e.TEMPe
    1440: 54 45 4D 31 8A 4C 4F 44 54 0A 04 43 52 55 54 70  TEM1.LODT..CRUTp
    1450: 54 45 4D 31 43 52 55 54 A5 75 62 A4 4C 4F 44 54  TEM1CRUT.ub.LODT
    1460: 5B 80 50 53 4D 49 01 41 53 4D 49 0A 02 5B 81 0B  [.PSMI.ASMI..[..
    1470: 50 53 4D 49 00 41 53 4D 4F 08 5B 01 53 4D 4C 4F  PSMI.ASMO.[.SMLO
    1480: 00 14 49 04 41 4D 30 35 01 08 4C 4F 44 54 11 04  ..I.AM05..LODT..
    1490: 0A C8 00 8A 68 00 44 43 4D 49 8A 68 0A 04 44 43  ....h.DCMI.h..DC
    14A0: 4D 44 70 44 43 4D 49 53 43 4D 49 70 44 43 4D 44  MDpDCMISCMIpDCMD
    14B0: 53 43 4D 44 70 49 53 4D 49 41 53 4D 4F 70 4F 55  SCMDpISMIASMOpOU
    14C0: 54 42 4C 4F 44 54 A4 4C 4F 44 54 14 42 0C 41 4D  TBLODT.LODT.B.AM
    14D0: 30 36 01 08 4C 4F 44 54 11 13 0A 14 00 00 00 00  06..LODT........
    14E0: 00 00 00 00 00 00 00 00 00 00 00 00 08 54 45 4D  .............TEM
    14F0: 50 11 05 0B 00 02 00 70 68 60 70 83 88 5C 4F 42  P......ph`p..\OB
    1500: 49 54 00 00 61 70 01 62 A2 40 08 92 94 62 61 70  IT..ap.b.@...bap
    1510: 83 88 83 88 5C 4F 42 49 54 62 00 00 00 63 70 83  ....\OBITb...cp.
    1520: 88 83 88 5C 4F 42 49 54 62 00 01 00 64 A0 49 05  ...\OBITb...d.I.
    1530: 90 93 63 60 93 64 01 70 83 88 83 88 5C 4F 42 49  ..c`.d.p....\OBI
    1540: 54 62 00 0A 03 00 4C 4F 44 54 70 57 43 4E 53 54  Tb....LODTpWCNST
    1550: 45 4D 50 70 83 88 83 88 5C 4F 42 49 54 62 00 0A  EMPp....\OBITb..
    1560: 02 00 65 77 65 0A 04 65 8A 54 45 4D 50 65 54 45  ..ewe..e.TEMPeTE
    1570: 4D 31 8A 4C 4F 44 54 0A 04 43 52 55 54 70 54 45  M1.LODT..CRUTpTE
    1580: 4D 31 43 52 55 54 A5 75 62 A4 4C 4F 44 54 14 41  M1CRUT.ub.LODT.A
    1590: 06 41 4D 30 37 01 08 42 53 50 44 11 04 0B 14 02  .AM07..BSPD.....
    15A0: A0 0A 94 68 0A 0F A4 42 53 50 44 A0 12 93 68 00  ...h...BSPD...h.
    15B0: 70 44 53 50 44 42 53 50 44 A4 42 53 50 44 70 00  pDSPDBSPD.BSPDp.
    15C0: 60 72 60 77 68 0B 14 02 00 60 70 0B 14 02 61 70  `r`wh....`p...ap
    15D0: 00 62 A2 18 61 70 83 88 44 53 50 44 60 00 88 42  .b..ap..DSPD`..B
    15E0: 53 50 44 62 00 76 61 75 60 75 62 A4 42 53 50 44  SPDb.vau`ub.BSPD
    15F0: 14 0C 41 4D 30 38 00 A4 5C 4F 42 49 45 14 1D 41  ..AM08..\OBIE..A
    1600: 4D 30 39 00 08 54 45 4D 50 11 03 0A 8C 70 52 4D  M09..TEMP....pRM
    1610: 50 44 54 45 4D 50 A4 54 45 4D 50 08 5F 57 44 47  PDTEMP.TEMP._WDG
    1620: 11 2B 0A 28 6A 0F BC AB A1 8E D1 11 00 A0 C9 06  .+.(j...........
    1630: 29 10 00 00 41 41 01 02 21 12 90 05 66 D5 D1 11  )...AA..!...f...
    1640: B2 F0 00 A0 C9 06 29 10 42 41 01 00 14 4F 0A 57  ......).BA...O.W
    1650: 4D 41 41 03 A0 45 0A 93 68 00 A0 18 91 91 92 93  MAA..E..h.......
    1660: 69 01 92 93 69 0A 02 92 93 69 0A 06 8A 6A 00 57  i...i....i...j.W
    1670: 49 49 44 A0 09 93 69 01 A4 41 4D 30 31 A1 4C 07  IID...i..AM01.L.
    1680: A0 0A 93 69 0A 02 A4 41 4D 30 32 A1 4E 06 A0 0A  ...i...AM02.N...
    1690: 93 69 0A 03 A4 41 4D 30 33 A1 40 06 A0 0E 93 69  .i...AM03.@....i
    16A0: 0A 04 A4 41 4D 30 34 57 49 49 44 A1 4E 04 A0 0B  ...AM04WIID.N...
    16B0: 93 69 0A 05 A4 41 4D 30 35 6A A1 3F A0 0E 93 69  .i...AM05j.?...i
    16C0: 0A 06 A4 41 4D 30 36 57 49 49 44 A1 2E A0 0E 93  ...AM06WIID.....
    16D0: 69 0A 07 A4 41 4D 30 37 57 49 49 44 A1 1D A0 0A  i...AM07WIID....
    16E0: 93 69 0A 08 A4 41 4D 30 38 A1 10 A0 0A 93 69 0A  .i...AM08.....i.
    16F0: 09 A4 41 4D 30 39 A1 03 A4 00 A4 00 08 57 51 42  ..AM09.......WQB
    1700: 41 11 45 C8 0B 80 0C 46 4F 4D 42 01 00 00 00 70  A.E....FOMB....p
    1710: 0C 00 00 6C 45 00 00 44 53 00 01 1A 7D DA 54 18  ...lE..DS...}.T.
    1720: D4 A1 00 01 06 18 42 10 11 10 22 21 30 34 32 0B  ......B..."!042.
    1730: 03 63 04 8A 0B 21 07 10 12 07 85 12 02 A1 FE 04  .c...!..........
    1740: F2 2B 00 E1 16 CA 14 60 50 80 53 04 11 F4 2A C0  .+.....`P.S...*.
    1750: A6 00 93 02 2C 0A D0 2E C0 B2 00 DD 02 A4 C3 12  ....,...........
    1760: 91 E0 28 31 E0 28 9D D8 C2 0D 1B BC 50 14 CD 20  ..(1.(......P.. 
    1770: 4A 82 CA 05 F8 46 10 78 B9 02 24 4F 40 9A 05 18  J....F.x..$O@...
    1780: 16 60 5D 80 EC 21 50 A9 43 40 C9 19 02 6A 00 AD  .`]..!P.C@...j..
    1790: 4E 40 F8 95 4E 09 49 10 CE 58 C5 E3 6B 16 4D CF  N@..N.I..X..k.M.
    17A0: 49 CE 31 E4 78 5C E8 41 F0 50 1A 40 98 FC 21 2B  I.1.x\.A.P.@..!+
    17B0: 06 0C 4A C2 58 A8 8B 51 A3 46 CA 06 64 88 D2 46  ..J.X..Q.F..d..F
    17C0: 8D 1E D0 F9 1D C9 D9 1D DD 91 24 30 EA 31 1D 63  ..........$0.1.c
    17D0: 61 33 12 6A 8C E6 A0 48 B8 41 A3 25 C2 6A 5C B1  a3.j...H.A.%.j\.
    17E0: CF CC C2 87 25 8C 23 38 B0 83 B5 68 18 A1 15 04  ....%.#8...h....
    17F0: A7 41 1C 45 94 30 0C CF 98 81 8E 92 21 85 09 7A  .A.E.0......!..z
    1800: 02 41 4E 9E 61 19 E2 0C 38 56 8C 50 21 31 03 09  .AN.a...8V.P!1..
    1810: FE FF 3F 81 AE 31 E4 19 88 DC 03 4E 20 48 F4 28  ..?..1.....N H.(
    1820: C1 8D 6B 54 36 A6 B3 C1 0D CC 04 71 0E 0F 23 03  ..kT6......q..#.
    1830: 42 13 88 1F 3B 7C 02 BB 3F 0E 48 21 82 2E 04 67  B...;|..?.H!...g
    1840: 5A A3 00 6B 67 07 D9 82 D0 59 20 56 63 28 82 88  Z..kg....Y Vc(..
    1850: 10 34 8A F1 22 84 0A 11 25 EA 39 07 A9 4D 80 32  .4.."...%.9..M.2
    1860: 10 A1 05 33 02 B3 7F 06 60 16 20 FE 08 2C E1 44  ...3....`. ..,.D
    1870: 20 23 A3 A1 87 05 9F 04 D8 01 C1 F3 39 35 13 38   #..........95.8
    1880: 30 84 78 25 40 D4 D1 82 12 58 CA D1 80 D8 1E 98  0.x%@....X......
    1890: EE 01 47 78 EE BE 1C 9C 9A 7F 1A 9E E6 43 02 66  ..Gx.........C.f
    18A0: 88 1E EB 41 04 3C 44 76 4A 30 20 DE FB B5 80 8C  ...A.<DvJ0 .....
    18B0: E0 25 C1 80 9E C4 03 02 58 0E 1A 07 7E 42 15 DF  .%......X...~B..
    18C0: 01 E8 91 80 CD 28 BE 09 CA 3A 3E A0 E7 1C ED D9  .....(...:>.....
    18D0: E1 65 A1 D9 2B 06 21 78 0D F0 4D C1 A7 11 8B 5A  .e..+.!x..M....Z
    18E0: 9D 9C AC CA 23 A6 E0 1E 02 97 01 A7 A1 7B BC E0  ....#........{..
    18F0: 50 30 5E FA FF 1F 2F B8 E7 75 BC 60 39 26 3C 6C  P0^.../..u.`9&<l
    1900: 54 05 A1 41 1C 70 F3 03 20 57 0B 8F 98 CD E5 AC  T..A.p.. W......
    1910: D8 11 85 0F 8F 0F C3 23 7E 6F 28 16 44 02 21 74  .......#~o(.D.!t
    1920: 66 38 72 B0 38 3B 41 88 C0 D2 86 8E 1E B2 47 F5  f8r.8;A.......G.
    1930: 12 63 8C 27 02 A3 9E D2 D1 83 0F D0 A3 07 7C FE  .c.'..........|.
    1940: FF 47 8F 93 34 66 89 18 3D FA 1C E1 E9 BC FD F0  .G..4f..=.......
    1950: A3 48 02 C7 87 D0 E8 C1 73 FA F1 E8 C1 3F 46 8F  .H......s....?F.
    1960: 1E 3C 63 38 37 DC D5 C6 23 07 FB 78 F1 F2 8E 5B  .<c87...#..x...[
    1970: A0 F0 39 7B 32 80 F7 20 DC 79 0B B8 8C 80 CB 3D  ..9{2.. .y.....=
    1980: 57 A1 04 1E AD 40 FB FF 3F 5A 01 4C B8 3F BC 5A  W....@..?Z.L.?.Z
    1990: 3D 5A 81 3D E2 73 40 3F 02 C7 86 90 93 A3 15 EA  =Z.=.s@?........
    19A0: 64 84 0B 7A B0 02 BA 07 0D DC F1 00 CE FF FF 78  d..z...........x
    19B0: C0 07 C6 4F 2F E0 3B B3 78 AC 38 68 86 79 20 A7  ...O/.;.x.8h.y .
    19C0: E6 6B 20 0B 3B 5A 50 1D AB 80 C3 B9 12 37 5A B8  .k .;ZP......7Z.
    19D0: 43 C3 8F 17 7C 22 4E 52 3E D4 41 3F 80 7A BC E0  C...|"NR>.A?.z..
    19E0: 39 48 01 87 43 1D F8 FE FF 87 3A 38 43 06 9F BC  9H..C.....:8C...
    19F0: B3 18 FA 3C E3 29 D4 7A 89 21 B0 07 E4 93 48 90  ...<.).z.!....H.
    1A00: 13 89 70 2E 3E 8D 81 ED 00 05 1C 4E 63 E0 B9 A4  ..p.>......Nc...
    1A10: B0 DB 18 18 0E 51 F0 26 E5 F1 83 EF D4 84 3B 44  .....Q.&......;D
    1A20: C1 F3 38 24 21 9F C7 4B 00 EE 1E 85 3F 47 81 F7  ..8$!..K....?G..
    1A30: FF 7F 8E 82 27 6B A1 F4 10 65 21 30 A8 73 14 C0  ....'k...e!0.s..
    1A40: 14 6F B7 0D DD A2 7C 1B 78 1A 78 8D 88 F2 1C E5  .o....|.x.x.....
    1A50: 8B D4 0B 41 84 28 C7 7B 02 11 1E A6 3C E1 30 E1  ...A.(.{....<.0.
    1A60: 4E 36 CA 4B 43 18 43 C7 0A 14 39 7E 08 5F 2A 7C  N6.KC.C...9~._*|
    1A70: 8E 62 51 CE 03 FA 11 F8 FC 61 23 67 11 D4 49 C0  .bQ......a#g..I.
    1A80: 87 0E 0F EA 09 01 13 FA 60 08 AA FF FF 49 0A 38  ........`....I.8
    1A90: 1F 40 E0 85 3C F3 82 EE 44 0F 8E 33 61 E4 B8 0F  .@..<...D..3a...
    1AA0: 34 D8 B3 07 F0 91 76 F0 40 89 39 7B 00 BA FE FF  4.....v.@.9{....
    1AB0: 67 0F C0 C2 65 E3 DD C3 97 9E 33 7D F6 F0 5C DF  g...e.....3}..\.
    1AC0: 39 7C 2A 34 8A 21 DE 3F 7C 28 88 12 F1 5C A3 1C  9|*4.!.?|(...\..
    1AD0: 72 94 B8 11 C2 3C 1E 1A 27 46 A8 08 0C F4 D9 83  r....<..'F......
    1AE0: C5 39 7B 40 C5 3E 9B 37 8E 08 AF 01 E7 78 3E 3E  .9{@.>.7.....x>>
    1AF0: 7B 00 DE A4 3C FD 74 F6 00 D7 09 18 77 F6 C0 FD  {...<.t.....w...
    1B00: FF CF 1E B8 71 63 4F 1F C0 4E 84 87 A3 07 26 F6  ....qcO..N....&.
    1B10: F9 16 A0 D0 E1 E3 F9 16 AC FF FF 83 14 17 FE B2  ................
    1B20: D4 A7 C0 C1 0F A9 E8 E1 F8 38 87 39 E0 02 6C 3E  .........8.9..l>
    1B30: 5A FB FF 7F B4 C6 03 87 F4 51 01 6C C7 5B E0 70  Z........Q.l.[.p
    1B40: 54 00 CF C0 F8 58 81 C5 C4 1E 5D 8E 15 6C 87 5A  T....X....]..l.Z
    1B50: E0 30 56 30 0D 8C 8D 15 7C 12 8E D5 E8 31 FA D6  .0V0....|....1..
    1B60: 73 40 9E 47 84 B0 BE C2 24 70 5C 08 FD FF 87 0B  s@.G....$p\.....
    1B70: 1E 50 0F 17 FC F2 86 0B 9A B1 C1 19 31 F8 4E 5E  .P..........1.N^
    1B80: 3E 06 83 E5 12 C1 CE 02 6C 3A F8 9B 30 FE C8 05  >.......l:..0...
    1B90: 8C 02 98 00 61 32 4F 07 92 0C 83 3A 72 01 A7 10  ....a2O....:r...
    1BA0: 07 02 28 FF FF 23 17 F0 53 3A 25 4D FA FD 1B 77  ..(..#..S:%M...w
    1BB0: CC 02 1B C2 63 16 BF 30 FA 98 05 46 31 4B D1 58  ....c..0...F1K.X
    1BC0: 2C E7 CC E8 53 07 EA 6C E1 33 C0 19 1E D8 B3 C6  ,...S..l.3......
    1BD0: F1 9E 42 ED C3 24 73 F5 75 FD 09 80 9F 1B 7D D6  ..B..$s.u.....}.
    1BE0: 02 AE 27 84 67 2D F0 DC 07 7C 0D E0 13 39 3E 38  ..'.g-...|...9>8
    1BF0: E7 46 F0 FC FF CF 52 96 35 6E B4 24 10 1D 32 22  .F....R.5n.$..2"
    1C00: 9E E9 41 BC D6 F9 04 FC 8A 10 FB 1D C3 37 05 4F  ..A..........7.O
    1C10: C4 F7 3A 13 8C 7E EC 02 BA A7 14 DC C0 E1 8E 0F  ..:..~..........
    1C20: 77 A4 C0 0F 11 CE D8 C1 25 FC 14 8B 3E 42 F0 61  w.......%...>B.a
    1C30: 60 B1 03 BF 13 60 E4 41 EB 24 0B 9E 33 18 70 88  `....`.A.$..3.p.
    1C40: 30 74 D0 DC 44 CE E2 FF 1F 2C 4E B4 93 38 9F 48  0t..D....,N..8.H
    1C50: E7 17 2C 4A 75 33 87 00 74 90 38 9C 37 1F 8F CE  ..,Ju3..t.8.7...
    1C60: 30 BE 61 B2 7B 00 BF EF 78 2E 07 E6 E3 2D BC 23  0.a.{...x....-.#
    1C70: 83 0F 03 E0 12 3D 7E 29 39 0C A0 06 69 D8 D3 39  .....=~)9...i..9
    1C80: FD 03 3B B2 E6 E1 35 AA D7 1D 9F 8C 1E 05 C0 76  ..;...5........v
    1C90: 44 03 0E 01 8E 02 40 68 9A 38 9C E3 C4 1C 5F 7D  D.....@h.8...._}
    1CA0: 0F 62 D7 15 63 BE 51 55 7F 12 80 7E F8 02 CF FF  .b..c.QU...~....
    1CB0: FF F2 F3 FA 93 C0 42 8F 02 50 A0 5F BD 7C AB 79  ......B..P._.|.y
    1CC0: 56 60 B8 A7 74 56 09 2C E9 28 00 AA E3 1B 70 B8  V`..tV.,.(....p.
    1CD0: 49 3D 0A 80 7F 8A 0C E4 18 B1 F7 0B 7E 6A B3 CB  I=..........~j..
    1CE0: 43 00 D0 39 4C 91 43 00 6A 98 9E 36 3F CE F2 13  C..9L.C.j..6?...
    1CF0: 00 78 40 7D 02 00 FF BD D7 27 00 38 FF FF 13 00  .x@}.....'.8....
    1D00: FE 8A 82 1F 1D 6E E0 F0 8E 1C 3E A5 80 EB C8 88  .....n....>.....
    1D10: 3B 17 C2 1B 12 3B 10 02 C3 A0 7A 8E 84 F4 70 20  ;....;....z...p 
    1D20: 51 EB A4 30 3E 0D F8 40 08 F7 E4 65 38 3E 42 0F  Q..0>..@...e8>B.
    1D30: FD 21 E2 C9 C7 F7 03 4F EE C9 10 C6 39 C1 77 15  .!.....O....9.w.
    1D40: 76 37 7B D6 F3 B9 CA 04 3E 2C 30 34 7E 4C 04 EB  v7{.....>,04~L..
    1D50: 8D C1 87 67 B0 DC 11 31 58 CF 1D 36 2A E0 FF 7F  ...g...1X..6*...
    1D60: 4B F7 5D C6 BE 86 A1 3B A7 0F 71 BE 74 F0 E3 3A  K.]....;..q.t..:
    1D70: EE 74 08 2E EC 67 7A B0 87 3A 70 D2 48 A3 41 1D  .t...gz..:p.H.A.
    1D80: 15 7C 28 F0 31 C5 03 7C A9 F0 09 C5 D3 7A 5C 78  .|(.1..|.....z\x
    1D90: 1A F0 B8 D9 35 C1 1F 04 1F 0F F0 07 88 80 AF 37  ....5..........7
    1DA0: 3E 7A C0 39 82 E0 8F 2A F0 C7 E3 63 80 8F B5 5C  >z.9...*...c...\
    1DB0: FE 20 50 07 78 3E D2 D3 7A 1B F0 21 E1 B0 D8 09  . P.x>..z..!....
    1DC0: 86 8F 07 FC 07 B2 87 0C 5F 19 3C 5F 1F DD B1 47  ........_.<_...G
    1DD0: 10 78 B7 0E 1F 1A 42 3D 75 78 06 EF 17 3E 81 60  .x....B=ux...>.`
    1DE0: FF FF 27 10 70 47 71 03 F1 73 6B A1 EB 94 8D B3  ..'.pGq..sk.....
    1DF0: 0E 3D 0F 58 EE 01 41 D7 08 CC 0D 22 88 8F 45 BE  .=.X..A...."..E.
    1E00: 51 30 82 02 01 75 F8 34 84 A5 51 48 18 84 46 E4  Q0...u.4..QH..F.
    1E10: A3 07 81 A3 20 1E BD 63 1E CF D1 43 F5 31 C0 93  .... ..c...C.1..
    1E20: C0 85 3A A4 D1 E3 02 1E EF 88 4E CD D3 F0 D8 71  ..:.......N....q
    1E30: 27 0F B8 E3 C0 9F 76 F0 17 80 57 20 13 B0 53 35  '.....v...W ..S5
    1E40: F8 04 1E 0E 40 01 E4 FB 80 0F 3C CF 04 6C 0E 21  ....@.....<..l.!
    1E50: C2 44 33 3C 26 F0 31 8C 9E 86 3C 2E 3E 4A 9F 61  .D3<&.1...<.>J.a
    1E60: D8 09 CE D7 62 0F F0 E5 E0 B9 16 03 EB 71 73 58  ....b........qsX
    1E70: A3 3D EE FA 8A F0 FF 7F 98 F3 A1 CB 57 27 C3 FA  .=..........W'..
    1E80: E4 01 8E B3 14 FC A1 E2 CE 02 70 0F E4 6C 0E 4F  ..........p..l.O
    1E90: 03 78 99 87 08 D4 40 2C 72 81 3A AE 78 24 26 F0  .x....@,r.:.x$&.
    1EA0: 51 D1 07 08 7E 7E F0 01 D7 07 08 2E 04 8E 82 F8  Q...~~..........
    1EB0: 00 E1 90 10 3A E7 E2 8E 03 3E C0 30 88 07 83 07  ....:....>.0....
    1EC0: 56 76 94 F1 01 02 78 8C 03 7F 80 80 7B FA 02 D7  Vv....x.....{...
    1ED0: F9 01 78 04 3F 3F A0 FF FF E7 07 F8 87 53 7E 7E  ..x.??.......S~~
    1EE0: 00 9E 03 7C 14 00 CB 99 8C CD E1 A5 E6 B5 D3 87  ...|............
    1EF0: 21 76 9C 67 47 7A AE 6B 04 24 E2 19 02 35 08 C7  !v.gGz.k.$...5..
    1F00: 39 36 E8 38 C1 6E D9 0F 41 55 A3 08 DE B7 02 16  96.8.n..AU......
    1F10: E1 18 81 12 4F 21 E9 C7 08 94 58 38 0A E2 51 FB  ....O!....X8..Q.
    1F20: 20 61 1B C7 08 D4 18 3D B0 77 3B 76 14 E0 A7 08   a.....=.w;v....
    1F30: F8 A7 30 DC D1 03 1C 17 B1 43 3B BB 47 4C 63 9E  ..0......C;.GLc.
    1F40: 41 C4 08 AF AE 46 F3 18 71 E7 4D 5F 0F 7D A4 F0  A....F..q.M_.}..
    1F50: A1 1D 73 A4 80 F7 FF 27 F0 B9 11 77 A4 80 33 93  ..s....'...w..3.
    1F60: F3 C0 DC 41 8F 25 BC AF 85 F8 83 05 F0 38 2E F9  ...A.%.......8..
    1F70: 60 01 2E 48 1F 2C 80 EB F9 C0 A7 03 B0 5E C8 F8  `..H.,.......^..
    1F80: FD 00 C6 09 03 C6 F9 00 73 C3 70 AC 95 EA 84 81  ........s.p.....
    1F90: 8B F5 A0 D0 40 D8 F0 9E 7F 9E 0C F9 61 86 45 81  ....@.......a.E.
    1FA0: D3 D1 C2 27 0B 87 A0 D0 41 CC 27 0C 2E E6 84 41  ...'....A.'....A
    1FB0: 41 0C E8 A4 10 FA FF 9F C3 70 A7 4D 1F 1B 58 B8  A........p.M..X.
    1FC0: FB 05 9D 8B E7 CC F1 7C 0E 31 AC 6F 26 E0 B9 52  .......|.1.o&..R
    1FD0: B0 33 8F 2F 04 BE 4D F2 03 27 3B 16 18 E5 78 5F  .3./..M..';...x_
    1FE0: 0B AD E6 AE 80 9A 11 86 C0 03 F6 49 0C 4C FA 6E  ...........I.L.n
    1FF0: 14 20 47 E7 67 6E 8F 9E 1F 00 7C B4 E3 A3 77 6C  . G.gn....|...wl
    2000: 08 1D 57 E0 1E EE 7C 86 02 BE 03 F3 0C 9F 50 C0  ..W...|.......P.
    2010: 75 7F E0 E7 C2 FF FF FB 03 E6 2C 0C E3 94 02 3C  u.........,....<
    2020: 46 EF 53 0A B8 0E 00 3E A5 00 D7 39 3E C8 83 07  F.S....>...9>...
    2030: C5 F7 5F 4F C4 C6 87 4F 2F 28 1E CB 9B 37 0F 75  .._O...O/(...7.u
    2040: 36 41 47 7B 3D 68 D0 0F 2A 9E 7D F8 E3 8B F0 7C  6AG{=h..*.}....|
    2050: EA 71 B1 38 67 13 54 10 0A 1D 3B 7D 9C E0 92 8E  .q.8g.T...;}....
    2060: 13 14 C4 80 CE 7B C4 F3 21 1E 7D EA F3 2D E1 38  .....{..!.}..-.8
    2070: 9E 40 12 CC 77 12 A0 97 13 78 A7 71 DC 48 71 FF  .@..w....x.q.Hq.
    2080: FF CB 09 8C 03 8D 67 C1 10 DE AC D9 71 1D 1E 8C  ......g.....q...
    2090: AF 27 30 EF 79 E0 3A 9E 00 0B 99 07 00 D4 B1 D1  .'0.y.:.........
    20A0: 07 47 7E 00 70 E8 E3 09 7A 26 3E 16 3D 95 F8 02  .G~.p...z&>.=...
    20B0: C0 CF 6E 3A 9F 80 E2 9C 09 9E 71 B0 2B 00 FE 84  ..n:......q.+...
    20C0: 02 FB 48 06 BE 89 F8 54 71 20 D8 D3 09 F8 FE FF  ..H....Tq ......
    20D0: 27 59 E0 01 CB 4F B2 80 8F DB 08 76 16 CF 24 8C  'Y...O.....v..$.
    20E0: 60 E4 A3 09 EA 88 EC A0 A7 30 C4 38 1F 2B 8C 11  `........0.8.+..
    20F0: B9 F8 51 6B 32 3E 9B F9 B2 CE 0E 3F 38 82 81 0E  ..Qk2>.....?8...
    2100: 28 A8 E3 98 CF 62 80 B3 FF FF 59 0C F8 9F DD 3D  (....b....Y....=
    2110: 7A 7E 6C E7 20 1E BD C3 9F C5 A0 87 3D 8B 01 6D  z~l. .......=..m
    2120: C1 67 31 50 DE 22 E0 9E 41 81 D7 DA 7C 42 81 FF  .g1P."..A...|B..
    2130: FF 3F A1 E0 EE 0C 3E A1 00 D7 23 00 EE 0C 0A 8E  .?....>...#.....
    2140: 13 00 F3 75 03 A0 20 8F 00 F8 2B BC 0F 26 B8 78  ...u.. ...+..&.x
    2150: 27 15 14 87 E3 9D 54 10 53 89 FC D6 E2 09 84 3F  '.....T.S......?
    2160: B8 38 EF 67 FC 54 06 43 D4 C1 02 25 E3 60 41 41  .8.g.T.C...%.`AA
    2170: 0C E8 8C A7 14 F4 A9 8C 5F 46 3C B0 04 33 5D 53  ........_F<..3]S
    2180: A0 5F 40 70 03 86 0B F6 20 61 84 D7 64 CF 03 73  ._@p.... a..d..s
    2190: 44 01 16 FF FF 23 0A F0 90 3C 74 94 C8 A1 53 10  D....#...<t...S.
    21A0: 0F DD 34 3E A2 E0 C6 CA 2E 04 B0 A2 9E 52 40 21  ..4>.........R@!
    21B0: 72 F8 A0 19 C7 D1 3D F5 78 1E FC 4E EC 63 1E DC  r.....=.x..N.c..
    21C0: 93 0A EE D4 88 3B A9 80 61 8E D8 53 19 F0 3A 82  .....;..a..S..:.
    21D0: 82 CF C3 21 05 14 FF FF 23 28 70 3E A4 F0 63 06  ...!....#(p>..c.
    21E0: E6 6A C0 8F A0 98 98 CF 07 9D 4F F8 D1 C0 81 5E  .j........O....^
    21F0: 05 02 67 67 7D DC E5 C0 27 0C 13 8C 70 9A A0 10  ..gg}...'...p...
    2200: 16 4F 21 E9 87 0A 94 58 38 0A E2 43 85 85 1C 2A  .O!....X8..C...*
    2210: D0 C7 28 7C F0 13 05 28 2E 00 8F EC E0 BD AF E3  ..(|...(........
    2220: 07 89 BB A8 78 C8 3E B0 63 E6 E9 A3 05 3C 02 9F  ....x.>.c....<..
    2230: 1E C1 07 EF C3 14 EE FF 7F 98 02 2E 67 3D 1F 2C  ............g=.,
    2240: C0 05 EE 83 05 70 BD FD F8 74 00 D6 D1 1E F3 F9  .....p...t......
    2250: C6 79 3F 80 71 53 79 88 F4 3D C0 F8 EC 7C 80 BD  .y?.qSy..=...|..
    2260: 12 F9 EC A0 33 06 6A 38 3E 57 78 24 EC 02 70 AE  ....3.j8>Wx$..p.
    2270: 3E 50 E1 0E 7D 3E 62 F0 23 BD 4F B9 E0 3A 62 E0  >P..}>b.#.O..:b.
    2280: 43 1E 31 40 F1 FF 3F 40 E0 46 0D 8E C9 3D 22 9C  C.1@..?@.F...=".
    2290: F2 99 E2 0E 16 C0 65 1E EC 60 01 BC 22 1F 80 40  ......e..`.."..@
    22A0: 67 E2 60 01 74 CF 04 C0 41 A1 4D 9F 1A 8D 5A 35  g.`.t...A.M...Z5
    22B0: 28 53 A3 4C 83 5A 7D 2A 35 46 F0 DC E3 B5 6A B0  (S.L.Z}*5F....j.
    22C0: 0E F5 66 10 88 E3 AE 58 03 26 0F 27 FD FF 41 2C  ..f....X.&.'..A,
    22D0: 44 05 08 93 B1 2E 81 58 CA BA 04 62 A1 EF 08 81  D......X...b....
    22E0: 38 C8 6B 40 20 8E F7 D6 13 88 83 6A 01 61 31 BD  8.k@ ......j.a1.
    22F0: 80 B0 70 6B 13 88 23 99 19 0A FD D6 09 C4 61 ED  ..pk..#.......a.
    2300: 80 30 09 7E 40 98 F4 05 0B 8C 18 02 61 A2 1C 81  .0.~@.......a...
    2310: 30 91 92 86 44 3D 81 B0 18 20 54 90 A9 D3 BE 40  0...D=... T....@
    2320: 24 0F 44 40 16 EC 0A 88 C9 07 11 90 43 DB 02 62  $.D@........C..b
    2330: 12 7E 22 02 72 86 27 B2 80 1C 08 44 40 8E B5 5E  .~".r.'....D@..^
    2340: 01 39 24 88 80 2C 50 1A 10 53 0B 22 20 0B B7 06  .9$..,P..S." ...
    2350: C4 62 80 08 C8 C9 BD 01 31 19 AF 57 01 59 8C 39  .b......1..W.Y.9
    2360: 20 26 0D 44 40 4E E7 0E 88 45 05 11 90 E3 CB 03   &.D@N...E......
    2370: 62 62 EC 0D 98 FA 03 62 01 41 04 64 89 0F 98 40  bb.....b.A.d...@
    2380: 44 30 88 80 FC FF 07                             D0.....

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 48 24 00 00 02 37 41 4D 44 00 00 00  SSDTH$...7AMD...
    0010: 47 50 50 5F 50 4D 45 5F 01 00 00 00 49 4E 54 4C  GPP_PME_....INTL
    0020: 31 03 23 20 A0 48 60 00 15 5C 4D 30 31 37 08 06  1.# .H`..\M017..
    0030: 15 5C 4D 30 31 38 08 07 15 5C 4D 31 31 35 03 00  .\M018...\M115..
    0040: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0050: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0060: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0070: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0080: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0090: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    00A0: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00B0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00C0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00D0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00E0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00F0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    0100: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0110: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0120: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0130: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0140: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0150: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0160: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0170: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0180: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0190: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    01A0: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01B0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01C0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01D0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01E0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01F0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    0200: 15 5C 4D 30 34 36 01 00 15 5C 4D 30 34 37 01 00  .\M046...\M047..
    0210: 15 5C 4D 30 34 39 08 02 15 5C 4D 32 35 31 05 00  .\M049...\M251..
    0220: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0230: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0240: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0250: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0260: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0270: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0280: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    0290: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02A0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02B0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02C0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02D0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02E0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    02F0: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0300: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0310: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0320: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0330: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0340: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0350: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 36 30 08 07  .\M457...\M460..
    0360: 15 5C 4D 34 34 39 05 00 15 5C 4D 34 43 30 05 00  .\M449...\M4C0..
    0370: 15 5C 4D 32 33 41 05 00 15 5C 4D 34 46 30 05 00  .\M23A...\M4F0..
    0380: 15 5C 4D 36 31 30 05 00 15 5C 4D 32 39 41 05 00  .\M610...\M29A..
    0390: 15 5C 4D 36 33 31 05 00 15 5C 4D 36 35 32 05 00  .\M631...\M652..
    03A0: 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06 00  .\M050...\M051..
    03B0: 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06 00  .\M052...\M053..
    03C0: 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06 00  .\M054...\M055..
    03D0: 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06 00  .\M056...\M057..
    03E0: 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06 00  .\M058...\M059..
    03F0: 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06 00  .\M062...\M068..
    0400: 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06 00  .\M069...\M070..
    0410: 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06 00  .\M071...\M072..
    0420: 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06 00  .\M074...\M075..
    0430: 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06 00  .\M076...\M077..
    0440: 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06 00  .\M078...\M079..
    0450: 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06 00  .\M080...\M081..
    0460: 15 5C 4D 31 32 37 06 00 15 5C 5F 42 42 4E 01 00  .\M127...\_BBN..
    0470: 15 5C 2E 5F 53 42 5F 50 43 49 30 06 00 15 5C 2F  .\._SB_PCI0...\/
    0480: 03 5F 53 42 5F 50 43 49 30 47 50 50 30 06 00 15  ._SB_PCI0GPP0...
    0490: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 31 06  \/._SB_PCI0GPP1.
    04A0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50  ..\/._SB_PCI0GPP
    04B0: 32 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47  2...\/._SB_PCI0G
    04C0: 50 50 33 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PP3...\/._SB_PCI
    04D0: 30 47 50 50 34 06 00 15 5C 2F 03 5F 53 42 5F 50  0GPP4...\/._SB_P
    04E0: 43 49 30 47 50 50 35 06 00 15 5C 2F 03 5F 53 42  CI0GPP5...\/._SB
    04F0: 5F 50 43 49 30 47 50 50 36 06 00 15 5C 2F 03 5F  _PCI0GPP6...\/._
    0500: 53 42 5F 50 43 49 30 47 50 50 37 06 00 15 5C 2F  SB_PCI0GPP7...\/
    0510: 03 5F 53 42 5F 50 43 49 30 47 50 50 38 06 00 15  ._SB_PCI0GPP8...
    0520: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 39 06  \/._SB_PCI0GPP9.
    0530: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50  ..\/._SB_PCI0GPP
    0540: 41 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47  A...\/._SB_PCI0G
    0550: 50 50 42 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PPB...\/._SB_PCI
    0560: 30 47 50 50 43 06 00 15 5C 2F 03 5F 53 42 5F 50  0GPPC...\/._SB_P
    0570: 43 49 30 47 50 50 44 06 00 15 5C 2F 03 5F 53 42  CI0GPPD...\/._SB
    0580: 5F 50 43 49 30 47 50 50 45 06 00 15 5C 2F 03 5F  _PCI0GPPE...\/._
    0590: 53 42 5F 50 43 49 30 47 50 50 46 06 00 15 5C 2F  SB_PCI0GPPF...\/
    05A0: 03 5F 53 42 5F 50 43 49 30 47 50 50 47 06 00 15  ._SB_PCI0GPPG...
    05B0: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 48 06  \/._SB_PCI0GPPH.
    05C0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 31  ..\/._SB_PCI0GP1
    05D0: 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 30 47  5...\/._SB_PCI0G
    05E0: 50 32 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  P25...\/._SB_PCI
    05F0: 30 47 50 33 35 06 00 15 5C 2F 03 5F 53 42 5F 50  0GP35...\/._SB_P
    0600: 43 49 30 47 50 34 35 06 00 15 5C 2F 03 5F 53 42  CI0GP45...\/._SB
    0610: 5F 50 43 49 30 47 50 31 37 06 00 15 5C 2F 03 5F  _PCI0GP17...\/._
    0620: 53 42 5F 50 43 49 30 47 50 32 37 06 00 10 8A E1  SB_PCI0GP27.....
    0630: 01 5C 2E 5F 53 42 5F 50 43 49 30 08 45 54 50 30  .\._SB_PCI0.ETP0
    0640: 0A 55 08 45 54 50 31 0A 55 08 45 54 50 32 0A 55  .U.ETP1.U.ETP2.U
    0650: 08 45 54 50 33 0A 55 08 45 54 50 34 0A 55 08 45  .ETP3.U.ETP4.U.E
    0660: 54 50 35 0A 55 08 45 54 50 36 0A 55 08 45 54 50  TP5.U.ETP6.U.ETP
    0670: 37 0A 55 08 45 54 50 38 0A 55 08 45 54 50 39 0A  7.U.ETP8.U.ETP9.
    0680: 55 08 45 54 50 41 0A 55 08 45 54 50 42 0A 55 08  U.ETPA.U.ETPB.U.
    0690: 45 54 50 43 0A 55 08 45 54 50 44 0A 55 08 45 54  ETPC.U.ETPD.U.ET
    06A0: 50 45 0A 55 08 45 54 50 46 0A 55 08 45 54 50 47  PE.U.ETPF.U.ETPG
    06B0: 0A 55 08 45 54 50 48 0A 55 08 45 54 31 35 0A 55  .U.ETPH.U.ET15.U
    06C0: 08 45 54 32 35 0A 55 08 45 54 33 35 0A 55 08 45  .ET25.U.ET35.U.E
    06D0: 54 34 35 0A 55 08 45 54 31 37 0A 55 08 45 54 32  T45.U.ET17.U.ET2
    06E0: 37 0A 55 14 84 D6 01 50 50 4D 45 00 4D 34 36 30  7.U....PPME.M460
    06F0: 0D 20 20 4F 45 4D 2D 41 53 4C 2D 5C 5F 53 42 2E  .  OEM-ASL-\_SB.
    0700: 50 43 49 30 2E 50 50 4D 45 0A 00 00 00 00 00 00  PCI0.PPME.......
    0710: 00 A0 4F 18 92 93 5C 2F 03 5F 53 42 5F 50 43 49  ..O...\/._SB_PCI
    0720: 30 45 54 50 30 0A FF 70 7A 4D 30 31 37 5F 42 42  0ETP0..pzM017_BB
    0730: 4E 01 01 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53  N...x......\/._S
    0740: 42 5F 50 43 49 30 45 54 50 30 A0 46 15 91 93 5C  B_PCI0ETP0.F...\
    0750: 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 30 01 93  /._SB_PCI0ETP0..
    0760: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 30 0A  \/._SB_PCI0ETP0.
    0770: 03 A0 4F 12 5B 12 5C 2F 03 5F 53 42 5F 50 43 49  ..O.[.\/._SB_PCI
    0780: 30 47 50 50 30 00 A0 49 06 92 93 4D 36 32 30 00  0GPP0..I...M620.
    0790: A0 4F 05 93 4D 30 34 39 4D 36 32 30 0A 10 01 A0  .O..M049M620....
    07A0: 40 05 93 7B 4D 30 34 39 4D 36 32 30 0A 52 0A 02  @..{M049M620.R..
    07B0: 00 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66  ..M460.    Notif
    07C0: 79 20 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50 50  y (\_SB.PCI0.GPP
    07D0: 30 2C 20 30 78 30 29 0A 00 00 00 00 00 00 00 86  0, 0x0).........
    07E0: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 30 00  \/._SB_PCI0GPP0.
    07F0: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    0800: 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50 50 30 2C  (\_SB.PCI0.GPP0,
    0810: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    0820: 03 5F 53 42 5F 50 43 49 30 47 50 50 30 0A 02 5B  ._SB_PCI0GPP0..[
    0830: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78  ".dpM017_BBN...x
    0840: 00 0A 20 60 A0 4C 05 92 93 7B 60 0C 00 00 03 00  .. `.L...{`.....
    0850: 00 00 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A  ..M018_BBN...x..
    0860: 20 60 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00   `pM017_BBN...x.
    0870: 0A 20 60 A0 2D 92 93 7B 60 0C 00 00 03 00 00 00  . `.-..{`.......
    0880: 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A 20 60  M018_BBN...x.. `
    0890: 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00 0A 20  pM017_BBN...x.. 
    08A0: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    08B0: 30 45 54 50 31 0A FF 70 7A 4D 30 31 37 5F 42 42  0ETP1..pzM017_BB
    08C0: 4E 01 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    08D0: 53 42 5F 50 43 49 30 45 54 50 31 A0 41 0F 91 93  SB_PCI0ETP1.A...
    08E0: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 31 01  \/._SB_PCI0ETP1.
    08F0: 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 31  .\/._SB_PCI0ETP1
    0900: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0910: 49 30 47 50 50 31 00 4D 34 36 30 0D 20 20 20 20  I0GPP1.M460.    
    0920: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0930: 30 2E 47 50 50 31 2C 20 30 78 32 29 0A 00 00 00  0.GPP1, 0x2)....
    0940: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    0950: 47 50 50 31 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP1..[".dpM017_
    0960: 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0970: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0980: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0990: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    09A0: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    09B0: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    09C0: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    09D0: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    09E0: 32 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 03  2..pzM017_BBN...
    09F0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0A00: 43 49 30 45 54 50 32 A0 41 0F 91 93 5C 2F 03 5F  CI0ETP2.A...\/._
    0A10: 53 42 5F 50 43 49 30 45 54 50 32 01 93 5C 2F 03  SB_PCI0ETP2..\/.
    0A20: 5F 53 42 5F 50 43 49 30 45 54 50 32 0A 03 A0 4A  _SB_PCI0ETP2...J
    0A30: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50  .[.\/._SB_PCI0GP
    0A40: 50 32 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P2.M460.    Noti
    0A50: 66 79 20 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50  fy (\_SB.PCI0.GP
    0A60: 50 32 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P2, 0x2)........
    0A70: 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 32  .\/._SB_PCI0GPP2
    0A80: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0A90: 0A 03 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0AA0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AB0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AC0: 01 0A 03 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0AD0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AE0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AF0: 01 0A 03 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F  ....x.. `.K...\/
    0B00: 03 5F 53 42 5F 50 43 49 30 45 54 50 33 0A FF 70  ._SB_PCI0ETP3..p
    0B10: 7A 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78 00 0A  zM017_BBN....x..
    0B20: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45  ....\/._SB_PCI0E
    0B30: 54 50 33 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50  TP3.A...\/._SB_P
    0B40: 43 49 30 45 54 50 33 01 93 5C 2F 03 5F 53 42 5F  CI0ETP3..\/._SB_
    0B50: 50 43 49 30 45 54 50 33 0A 03 A0 4A 0C 5B 12 5C  PCI0ETP3...J.[.\
    0B60: 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 33 00 4D  /._SB_PCI0GPP3.M
    0B70: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    0B80: 5C 5F 53 42 2E 50 43 49 30 2E 47 50 50 33 2C 20  \_SB.PCI0.GPP3, 
    0B90: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    0BA0: 5F 53 42 5F 50 43 49 30 47 50 50 33 0A 02 5B 22  _SB_PCI0GPP3..["
    0BB0: 0A 64 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78  .dpM017_BBN....x
    0BC0: 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00  .. `.@...{`.....
    0BD0: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0BE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0BF0: 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00  x.. `./..{`.....
    0C00: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0C10: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0C20: 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42  x.. `.K...\/._SB
    0C30: 5F 50 43 49 30 45 54 50 34 0A FF 70 7A 4D 30 31  _PCI0ETP4..pzM01
    0C40: 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 18 0A 10 00  7_BBN....x......
    0C50: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 34 A0  \/._SB_PCI0ETP4.
    0C60: 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45  A...\/._SB_PCI0E
    0C70: 54 50 34 01 93 5C 2F 03 5F 53 42 5F 50 43 49 30  TP4..\/._SB_PCI0
    0C80: 45 54 50 34 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53  ETP4...J.[.\/._S
    0C90: 42 5F 50 43 49 30 47 50 50 34 00 4D 34 36 30 0D  B_PCI0GPP4.M460.
    0CA0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    0CB0: 2E 50 43 49 30 2E 47 50 50 34 2C 20 30 78 32 29  .PCI0.GPP4, 0x2)
    0CC0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    0CD0: 50 43 49 30 47 50 50 34 0A 02 5B 22 0A 64 70 4D  PCI0GPP4..[".dpM
    0CE0: 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60  017_BBN....x.. `
    0CF0: A0 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  .@...{`.......M0
    0D00: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D10: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D20: 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  `./..{`.......M0
    0D30: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D40: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D50: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    0D60: 30 45 54 50 35 0A FF 70 7A 4D 30 31 37 5F 42 42  0ETP5..pzM017_BB
    0D70: 4E 01 0A 06 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    0D80: 53 42 5F 50 43 49 30 45 54 50 35 A0 41 0F 91 93  SB_PCI0ETP5.A...
    0D90: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 35 01  \/._SB_PCI0ETP5.
    0DA0: 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 35  .\/._SB_PCI0ETP5
    0DB0: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0DC0: 49 30 47 50 50 35 00 4D 34 36 30 0D 20 20 20 20  I0GPP5.M460.    
    0DD0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0DE0: 30 2E 47 50 50 35 2C 20 30 78 32 29 0A 00 00 00  0.GPP5, 0x2)....
    0DF0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    0E00: 47 50 50 35 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP5..[".dpM017_
    0E10: 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0E20: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E30: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E40: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    0E50: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E60: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E70: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    0E80: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    0E90: 36 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 07  6..pzM017_BBN...
    0EA0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0EB0: 43 49 30 45 54 50 36 A0 41 0F 91 93 5C 2F 03 5F  CI0ETP6.A...\/._
    0EC0: 53 42 5F 50 43 49 30 45 54 50 36 01 93 5C 2F 03  SB_PCI0ETP6..\/.
    0ED0: 5F 53 42 5F 50 43 49 30 45 54 50 36 0A 03 A0 4A  _SB_PCI0ETP6...J
    0EE0: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50  .[.\/._SB_PCI0GP
    0EF0: 50 36 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P6.M460.    Noti
    0F00: 66 79 20 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50  fy (\_SB.PCI0.GP
    0F10: 50 36 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P6, 0x2)........
    0F20: 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 36  .\/._SB_PCI0GPP6
    0F30: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0F40: 0A 07 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0F50: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F60: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0F70: 01 0A 07 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0F80: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F90: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0FA0: 01 0A 07 0A 78 00 0A 20 60 A0 46 19 92 93 5C 2F  ....x.. `.F...\/
    0FB0: 03 5F 53 42 5F 50 43 49 30 45 54 50 37 0A FF 70  ._SB_PCI0ETP7..p
    0FC0: 7A 4D 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A  zM017_BBN....x..
    0FD0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45  ....\/._SB_PCI0E
    0FE0: 54 50 37 A0 4C 15 91 93 5C 2F 03 5F 53 42 5F 50  TP7.L...\/._SB_P
    0FF0: 43 49 30 45 54 50 37 01 93 5C 2F 03 5F 53 42 5F  CI0ETP7..\/._SB_
    1000: 50 43 49 30 45 54 50 37 0A 03 A0 45 13 5B 12 5C  PCI0ETP7...E.[.\
    1010: 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 37 00 A0  /._SB_PCI0GPP7..
    1020: 4A 06 92 93 4D 36 32 30 00 A0 40 06 93 4D 30 34  J...M620..@..M04
    1030: 39 4D 36 32 30 0A 10 0A 02 A0 40 05 93 7B 4D 30  9M620.....@..{M0
    1040: 34 39 4D 36 32 30 0A 52 0A 02 00 00 4D 34 36 30  49M620.R....M460
    1050: 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53  .    Notify (\_S
    1060: 42 2E 50 43 49 30 2E 47 50 50 37 2C 20 30 78 30  B.PCI0.GPP7, 0x0
    1070: 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42  ).........\/._SB
    1080: 5F 50 43 49 30 47 50 50 37 00 4D 34 36 30 0D 20  _PCI0GPP7.M460. 
    1090: 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E     Notify (\_SB.
    10A0: 50 43 49 30 2E 47 50 50 37 2C 20 30 78 32 29 0A  PCI0.GPP7, 0x2).
    10B0: 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50  ........\/._SB_P
    10C0: 43 49 30 47 50 50 37 0A 02 5B 22 0A 64 70 4D 30  CI0GPP7..[".dpM0
    10D0: 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 A0  17_BBN....x.. `.
    10E0: 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  @...{`.......M01
    10F0: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1100: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1110: A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  ./..{`.......M01
    1120: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1130: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1140: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 30  .A...\/._SB_PCI0
    1150: 45 54 50 38 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETP8..pzM017_BBN
    1160: 0A 02 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1170: 53 42 5F 50 43 49 30 45 54 50 38 A0 46 0F 91 93  SB_PCI0ETP8.F...
    1180: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 38 01  \/._SB_PCI0ETP8.
    1190: 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 38  .\/._SB_PCI0ETP8
    11A0: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    11B0: 49 30 47 50 50 38 00 4D 34 36 30 0D 20 20 20 20  I0GPP8.M460.    
    11C0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    11D0: 30 2E 47 50 50 38 2C 20 30 78 32 29 0A 00 00 00  0.GPP8, 0x2)....
    11E0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    11F0: 47 50 50 38 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP8..[".dpM017_
    1200: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    1210: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1220: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    1230: 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    1240: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    1250: 38 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    1260: 4D 30 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A  M017_BBN.....x..
    1270: 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43   `.K...\/._SB_PC
    1280: 49 30 45 54 50 39 0A FF 70 7A 4D 30 31 37 5F 42  I0ETP9..pzM017_B
    1290: 42 4E 0A 03 01 0A 78 00 0A 18 0A 10 00 5C 2F 03  BN....x......\/.
    12A0: 5F 53 42 5F 50 43 49 30 45 54 50 39 A0 41 0F 91  _SB_PCI0ETP9.A..
    12B0: 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 39  .\/._SB_PCI0ETP9
    12C0: 01 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    12D0: 39 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50  9...J.[.\/._SB_P
    12E0: 43 49 30 47 50 50 39 00 4D 34 36 30 0D 20 20 20  CI0GPP9.M460.   
    12F0: 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43   Notify (\_SB.PC
    1300: 49 30 2E 47 50 50 39 2C 20 30 78 32 29 0A 00 00  I0.GPP9, 0x2)...
    1310: 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49  ......\/._SB_PCI
    1320: 30 47 50 50 39 0A 02 5B 22 0A 64 70 4D 30 31 37  0GPP9..[".dpM017
    1330: 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 40 06  _BBN....x.. `.@.
    1340: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1350: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1360: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 2F  7_BBN....x.. `./
    1370: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1380: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1390: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 41  7_BBN....x.. `.A
    13A0: 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54  ...\/._SB_PCI0ET
    13B0: 50 41 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 0A 03  PA..pzM017_BBN..
    13C0: 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42  ...x......\/._SB
    13D0: 5F 50 43 49 30 45 54 50 41 A0 46 0F 91 93 5C 2F  _PCI0ETPA.F...\/
    13E0: 03 5F 53 42 5F 50 43 49 30 45 54 50 41 01 93 5C  ._SB_PCI0ETPA..\
    13F0: 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 41 0A 03  /._SB_PCI0ETPA..
    1400: A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 30  .O.[.\/._SB_PCI0
    1410: 47 50 50 41 00 4D 34 36 30 0D 20 20 20 20 4E 6F  GPPA.M460.    No
    1420: 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49 30 2E  tify (\_SB.PCI0.
    1430: 47 50 50 41 2C 20 30 78 32 29 0A 00 00 00 00 00  GPPA, 0x2)......
    1440: 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50  ...\/._SB_PCI0GP
    1450: 50 41 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42  PA..[".dpM017_BB
    1460: 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 44 06 92 93  N.....x.. `.D...
    1470: 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42 42  {`.......M018_BB
    1480: 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  N.....x.. `pM017
    1490: 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 31  _BBN.....x.. `.1
    14A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    14B0: 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    14C0: 31 37 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    14D0: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 30  .A...\/._SB_PCI0
    14E0: 45 54 50 42 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETPB..pzM017_BBN
    14F0: 0A 03 0A 03 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1500: 53 42 5F 50 43 49 30 45 54 50 42 A0 46 0F 91 93  SB_PCI0ETPB.F...
    1510: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 42 01  \/._SB_PCI0ETPB.
    1520: 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 42  .\/._SB_PCI0ETPB
    1530: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    1540: 49 30 47 50 50 42 00 4D 34 36 30 0D 20 20 20 20  I0GPPB.M460.    
    1550: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    1560: 30 2E 47 50 50 42 2C 20 30 78 32 29 0A 00 00 00  0.GPPB, 0x2)....
    1570: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    1580: 47 50 50 42 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPPB..[".dpM017_
    1590: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    15A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    15B0: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    15C0: 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60  17_BBN.....x.. `
    15D0: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    15E0: 38 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    15F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A  M017_BBN.....x..
    1600: 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43   `.A...\/._SB_PC
    1610: 49 30 45 54 50 43 0A FF 70 7A 4D 30 31 37 5F 42  I0ETPC..pzM017_B
    1620: 42 4E 0A 03 0A 04 0A 78 00 0A 18 0A 10 00 5C 2F  BN.....x......\/
    1630: 03 5F 53 42 5F 50 43 49 30 45 54 50 43 A0 46 0F  ._SB_PCI0ETPC.F.
    1640: 91 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    1650: 43 01 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54  C..\/._SB_PCI0ET
    1660: 50 43 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F  PC...O.[.\/._SB_
    1670: 50 43 49 30 47 50 50 43 00 4D 34 36 30 0D 20 20  PCI0GPPC.M460.  
    1680: 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50    Notify (\_SB.P
    1690: 43 49 30 2E 47 50 50 43 2C 20 30 78 32 29 0A 00  CI0.GPPC, 0x2)..
    16A0: 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43  .......\/._SB_PC
    16B0: 49 30 47 50 50 43 0A 02 5B 22 0A 64 70 4D 30 31  I0GPPC..[".dpM01
    16C0: 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 A0  7_BBN.....x.. `.
    16D0: 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  D...{`.......M01
    16E0: 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    16F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A  M017_BBN.....x..
    1700: 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D   `.1..{`.......M
    1710: 30 31 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20  018_BBN.....x.. 
    1720: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78  `pM017_BBN.....x
    1730: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1740: 50 43 49 30 45 54 50 44 0A FF 70 7A 4D 30 31 37  PCI0ETPD..pzM017
    1750: 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1760: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 44 A0  \/._SB_PCI0ETPD.
    1770: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45  F...\/._SB_PCI0E
    1780: 54 50 44 01 93 5C 2F 03 5F 53 42 5F 50 43 49 30  TPD..\/._SB_PCI0
    1790: 45 54 50 44 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ETPD...O.[.\/._S
    17A0: 42 5F 50 43 49 30 47 50 50 44 00 4D 34 36 30 0D  B_PCI0GPPD.M460.
    17B0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    17C0: 2E 50 43 49 30 2E 47 50 50 44 2C 20 30 78 32 29  .PCI0.GPPD, 0x2)
    17D0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    17E0: 50 43 49 30 47 50 50 44 0A 02 5B 22 0A 64 70 4D  PCI0GPPD..[".dpM
    17F0: 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  017_BBN.....x.. 
    1800: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1810: 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  018_BBN.....x.. 
    1820: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78  `pM017_BBN.....x
    1830: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1840: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00  .M018_BBN.....x.
    1850: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05  . `pM017_BBN....
    1860: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1870: 42 5F 50 43 49 30 45 54 50 45 0A FF 70 7A 4D 30  B_PCI0ETPE..pzM0
    1880: 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00 0A 18 0A  17_BBN.....x....
    1890: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    18A0: 45 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  E.F...\/._SB_PCI
    18B0: 30 45 54 50 45 01 93 5C 2F 03 5F 53 42 5F 50 43  0ETPE..\/._SB_PC
    18C0: 49 30 45 54 50 45 0A 03 A0 4F 0C 5B 12 5C 2F 03  I0ETPE...O.[.\/.
    18D0: 5F 53 42 5F 50 43 49 30 47 50 50 45 00 4D 34 36  _SB_PCI0GPPE.M46
    18E0: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    18F0: 53 42 2E 50 43 49 30 2E 47 50 50 45 2C 20 30 78  SB.PCI0.GPPE, 0x
    1900: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1910: 42 5F 50 43 49 30 47 50 50 45 0A 02 5B 22 0A 64  B_PCI0GPPE..[".d
    1920: 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00  pM017_BBN.....x.
    1930: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1940: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A 78 00  .M018_BBN.....x.
    1950: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06  . `pM017_BBN....
    1960: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1970: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A  ...M018_BBN.....
    1980: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1990: 0A 06 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    19A0: 5F 53 42 5F 50 43 49 30 45 54 50 46 0A FF 70 7A  _SB_PCI0ETPF..pz
    19B0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A 78 00 0A  M017_BBN.....x..
    19C0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45  ....\/._SB_PCI0E
    19D0: 54 50 46 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  TPF.F...\/._SB_P
    19E0: 43 49 30 45 54 50 46 01 93 5C 2F 03 5F 53 42 5F  CI0ETPF..\/._SB_
    19F0: 50 43 49 30 45 54 50 46 0A 03 A0 4F 0C 5B 12 5C  PCI0ETPF...O.[.\
    1A00: 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 46 00 4D  /._SB_PCI0GPPF.M
    1A10: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    1A20: 5C 5F 53 42 2E 50 43 49 30 2E 47 50 50 46 2C 20  \_SB.PCI0.GPPF, 
    1A30: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    1A40: 5F 53 42 5F 50 43 49 30 47 50 50 46 0A 02 5B 22  _SB_PCI0GPPF..["
    1A50: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A  .dpM017_BBN.....
    1A60: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    1A70: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 07 0A  ...M018_BBN.....
    1A80: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1A90: 0A 07 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    1AA0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A  .....M018_BBN...
    1AB0: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    1AC0: 0A 03 0A 07 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    1AD0: 2F 03 5F 53 42 5F 50 43 49 30 45 54 50 47 0A FF  /._SB_PCI0ETPG..
    1AE0: 70 7A 4D 30 31 37 5F 42 42 4E 0A 04 01 0A 78 00  pzM017_BBN....x.
    1AF0: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    1B00: 45 54 50 47 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ETPG.A...\/._SB_
    1B10: 50 43 49 30 45 54 50 47 01 93 5C 2F 03 5F 53 42  PCI0ETPG..\/._SB
    1B20: 5F 50 43 49 30 45 54 50 47 0A 03 A0 4A 0C 5B 12  _PCI0ETPG...J.[.
    1B30: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 50 47 00  \/._SB_PCI0GPPG.
    1B40: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    1B50: 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50 50 47 2C  (\_SB.PCI0.GPPG,
    1B60: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    1B70: 03 5F 53 42 5F 50 43 49 30 47 50 50 47 0A 02 5B  ._SB_PCI0GPPG..[
    1B80: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 04 01 0A  ".dpM017_BBN....
    1B90: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    1BA0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BB0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BC0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    1BD0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BE0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BF0: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1C00: 42 5F 50 43 49 30 45 54 50 48 0A FF 70 7A 4D 30  B_PCI0ETPH..pzM0
    1C10: 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    1C20: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 50  ..\/._SB_PCI0ETP
    1C30: 48 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  H.F...\/._SB_PCI
    1C40: 30 45 54 50 48 01 93 5C 2F 03 5F 53 42 5F 50 43  0ETPH..\/._SB_PC
    1C50: 49 30 45 54 50 48 0A 03 A0 4F 0C 5B 12 5C 2F 03  I0ETPH...O.[.\/.
    1C60: 5F 53 42 5F 50 43 49 30 47 50 50 48 00 4D 34 36  _SB_PCI0GPPH.M46
    1C70: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    1C80: 53 42 2E 50 43 49 30 2E 47 50 50 48 2C 20 30 78  SB.PCI0.GPPH, 0x
    1C90: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1CA0: 42 5F 50 43 49 30 47 50 50 48 0A 02 5B 22 0A 64  B_PCI0GPPH..[".d
    1CB0: 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00  pM017_BBN.....x.
    1CC0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1CD0: 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A 78 00  .M018_BBN.....x.
    1CE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02  . `pM017_BBN....
    1CF0: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1D00: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A  ...M018_BBN.....
    1D10: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04  x.. `pM017_BBN..
    1D20: 0A 02 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03  ...x.. `.K...\/.
    1D30: 5F 53 42 5F 50 43 49 30 45 54 31 35 0A FF 70 7A  _SB_PCI0ET15..pz
    1D40: 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00 0A 18  M017_BBN....x...
    1D50: 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54  ...\/._SB_PCI0ET
    1D60: 31 35 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43  15.A...\/._SB_PC
    1D70: 49 30 45 54 31 35 01 93 5C 2F 03 5F 53 42 5F 50  I0ET15..\/._SB_P
    1D80: 43 49 30 45 54 31 35 0A 03 A0 4A 0C 5B 12 5C 2F  CI0ET15...J.[.\/
    1D90: 03 5F 53 42 5F 50 43 49 30 47 50 31 35 00 4D 34  ._SB_PCI0GP15.M4
    1DA0: 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C  60.    Notify (\
    1DB0: 5F 53 42 2E 50 43 49 30 2E 47 50 31 35 2C 20 30  _SB.PCI0.GP15, 0
    1DC0: 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F  x2).........\/._
    1DD0: 53 42 5F 50 43 49 30 47 50 31 35 0A 02 5B 22 0A  SB_PCI0GP15..[".
    1DE0: 64 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00  dpM017_BBN....x.
    1DF0: 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00 00  . `.@...{`......
    1E00: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E10: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E20: 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00  .. `./..{`......
    1E30: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E40: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E50: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1E60: 50 43 49 30 45 54 32 35 0A FF 70 7A 4D 30 31 37  PCI0ET25..pzM017
    1E70: 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1E80: 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 32 35 A0  \/._SB_PCI0ET25.
    1E90: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 30 45  F...\/._SB_PCI0E
    1EA0: 54 32 35 01 93 5C 2F 03 5F 53 42 5F 50 43 49 30  T25..\/._SB_PCI0
    1EB0: 45 54 32 35 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ET25...O.[.\/._S
    1EC0: 42 5F 50 43 49 30 47 50 32 35 00 4D 34 36 30 0D  B_PCI0GP25.M460.
    1ED0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    1EE0: 2E 50 43 49 30 2E 47 50 32 35 2C 20 30 78 32 29  .PCI0.GP25, 0x2)
    1EF0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    1F00: 50 43 49 30 47 50 32 35 0A 02 5B 22 0A 64 70 4D  PCI0GP25..[".dpM
    1F10: 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  017_BBN.....x.. 
    1F20: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1F30: 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  018_BBN.....x.. 
    1F40: 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78  `pM017_BBN.....x
    1F50: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1F60: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00  .M018_BBN.....x.
    1F70: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02  . `pM017_BBN....
    1F80: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1F90: 42 5F 50 43 49 30 45 54 33 35 0A FF 70 7A 4D 30  B_PCI0ET35..pzM0
    1FA0: 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00 0A 18 0A  17_BBN.....x....
    1FB0: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 33  ..\/._SB_PCI0ET3
    1FC0: 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  5.F...\/._SB_PCI
    1FD0: 30 45 54 33 35 01 93 5C 2F 03 5F 53 42 5F 50 43  0ET35..\/._SB_PC
    1FE0: 49 30 45 54 33 35 0A 03 A0 4F 0C 5B 12 5C 2F 03  I0ET35...O.[.\/.
    1FF0: 5F 53 42 5F 50 43 49 30 47 50 33 35 00 4D 34 36  _SB_PCI0GP35.M46
    2000: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    2010: 53 42 2E 50 43 49 30 2E 47 50 33 35 2C 20 30 78  SB.PCI0.GP35, 0x
    2020: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    2030: 42 5F 50 43 49 30 47 50 33 35 0A 02 5B 22 0A 64  B_PCI0GP35..[".d
    2040: 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00  pM017_BBN.....x.
    2050: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    2060: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A 78 00  .M018_BBN.....x.
    2070: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03  . `pM017_BBN....
    2080: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2090: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A  ...M018_BBN.....
    20A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    20B0: 0A 03 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    20C0: 5F 53 42 5F 50 43 49 30 45 54 34 35 0A FF 70 7A  _SB_PCI0ET45..pz
    20D0: 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A 78 00 0A  M017_BBN.....x..
    20E0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45  ....\/._SB_PCI0E
    20F0: 54 34 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  T45.F...\/._SB_P
    2100: 43 49 30 45 54 34 35 01 93 5C 2F 03 5F 53 42 5F  CI0ET45..\/._SB_
    2110: 50 43 49 30 45 54 34 35 0A 03 A0 4F 0C 5B 12 5C  PCI0ET45...O.[.\
    2120: 2F 03 5F 53 42 5F 50 43 49 30 47 50 34 35 00 4D  /._SB_PCI0GP45.M
    2130: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    2140: 5C 5F 53 42 2E 50 43 49 30 2E 47 50 34 35 2C 20  \_SB.PCI0.GP45, 
    2150: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    2160: 5F 53 42 5F 50 43 49 30 47 50 34 35 0A 02 5B 22  _SB_PCI0GP45..["
    2170: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A  .dpM017_BBN.....
    2180: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    2190: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 04 0A  ...M018_BBN.....
    21A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    21B0: 0A 04 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    21C0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A  .....M018_BBN...
    21D0: 04 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    21E0: 0A 05 0A 04 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    21F0: 2F 03 5F 53 42 5F 50 43 49 30 45 54 31 37 0A FF  /._SB_PCI0ET17..
    2200: 70 7A 4D 30 31 37 5F 42 42 4E 0A 07 01 0A 78 00  pzM017_BBN....x.
    2210: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30  .....\/._SB_PCI0
    2220: 45 54 31 37 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ET17.A...\/._SB_
    2230: 50 43 49 30 45 54 31 37 01 93 5C 2F 03 5F 53 42  PCI0ET17..\/._SB
    2240: 5F 50 43 49 30 45 54 31 37 0A 03 A0 4A 0C 5B 12  _PCI0ET17...J.[.
    2250: 5C 2F 03 5F 53 42 5F 50 43 49 30 47 50 31 37 00  \/._SB_PCI0GP17.
    2260: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    2270: 28 5C 5F 53 42 2E 50 43 49 30 2E 47 50 31 37 2C  (\_SB.PCI0.GP17,
    2280: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    2290: 03 5F 53 42 5F 50 43 49 30 47 50 31 37 0A 02 5B  ._SB_PCI0GP17..[
    22A0: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 07 01 0A  ".dpM017_BBN....
    22B0: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    22C0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    22D0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    22E0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    22F0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    2300: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    2310: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    2320: 42 5F 50 43 49 30 45 54 32 37 0A FF 70 7A 4D 30  B_PCI0ET27..pzM0
    2330: 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    2340: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 30 45 54 32  ..\/._SB_PCI0ET2
    2350: 37 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  7.F...\/._SB_PCI
    2360: 30 45 54 32 37 01 93 5C 2F 03 5F 53 42 5F 50 43  0ET27..\/._SB_PC
    2370: 49 30 45 54 32 37 0A 03 A0 4F 0C 5B 12 5C 2F 03  I0ET27...O.[.\/.
    2380: 5F 53 42 5F 50 43 49 30 47 50 32 37 00 4D 34 36  _SB_PCI0GP27.M46
    2390: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    23A0: 53 42 2E 50 43 49 30 2E 47 50 32 37 2C 20 30 78  SB.PCI0.GP27, 0x
    23B0: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    23C0: 42 5F 50 43 49 30 47 50 32 37 0A 02 5B 22 0A 64  B_PCI0GP27..[".d
    23D0: 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00  pM017_BBN.....x.
    23E0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    23F0: 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A 78 00  .M018_BBN.....x.
    2400: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02  . `pM017_BBN....
    2410: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2420: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A  ...M018_BBN.....
    2430: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07  x.. `pM017_BBN..
    2440: 0A 02 0A 78 00 0A 20 60                          ...x.. `

HEST @ 0x0000000000000000
    0000: 48 45 53 54 14 0A 03 00 01 87 41 4D 44 20 20 20  HEST......AMD   
    0010: 41 4D 44 20 48 45 53 54 01 00 00 00 41 4D 44 20  AMD HEST....AMD 
    0020: 01 00 00 00 0D 0C 00 00 00 00 01 00 00 00 04 01  ................
    0030: 01 00 00 00 01 00 00 00 20 01 00 00 00 00 00 00  ........ .......
    0040: EF FF FF FF 00 00 00 00 20 00 00 00 00 00 00 00  ........ .......
    0050: 00 00 02 00 00 20 00 C0 FF FF FF FF FF FF FF FF  ..... ..........
    0060: 01 20 00 C0 02 20 00 C0 03 20 00 C0 01 00 02 00  . ... ... ......
    0070: 10 20 00 C0 FF FF FF FF FF FF FF FF 11 20 00 C0  . ........... ..
    0080: 12 20 00 C0 13 20 00 C0 02 00 02 00 20 20 00 C0  . ... ......  ..
    0090: FF FF FF FF FF FF FF FF 21 20 00 C0 22 20 00 C0  ........! .." ..
    00A0: 23 20 00 C0 03 00 02 00 30 20 00 C0 FF FF FF FF  # ......0 ......
    00B0: FF FF FF FF 31 20 00 C0 32 20 00 C0 33 20 00 C0  ....1 ..2 ..3 ..
    00C0: 04 00 02 00 40 20 00 C0 00 00 00 00 00 00 00 00  ....@ ..........
    00D0: 41 20 00 C0 42 20 00 C0 43 20 00 C0 05 00 02 00  A ..B ..C ......
    00E0: 50 20 00 C0 FF FF FF FF FF FF FF FF 51 20 00 C0  P ..........Q ..
    00F0: 52 20 00 C0 53 20 00 C0 06 00 02 00 60 20 00 C0  R ..S ......` ..
    0100: FF FF FF FF FF FF FF FF 61 20 00 C0 62 20 00 C0  ........a ..b ..
    0110: 63 20 00 C0 07 00 02 00 70 20 00 C0 FF FF FF FF  c ......p ......
    0120: FF FF FF FF 71 20 00 C0 72 20 00 C0 73 20 00 C0  ....q ..r ..s ..
    0130: 08 00 02 00 80 20 00 C0 FF FF FF FF FF FF FF FF  ..... ..........
    0140: 81 20 00 C0 82 20 00 C0 83 20 00 C0 09 00 02 00  . ... ... ......
    0150: 90 20 00 C0 FF FF FF FF FF FF FF FF 91 20 00 C0  . ........... ..
    0160: 92 20 00 C0 93 20 00 C0 0A 00 02 00 A0 20 00 C0  . ... ....... ..
    0170: FF FF FF FF FF FF FF FF A1 20 00 C0 A2 20 00 C0  ......... ... ..
    0180: A3 20 00 C0 0B 00 02 00 B0 20 00 C0 FF FF FF FF  . ....... ......
    0190: FF FF FF FF B1 20 00 C0 B2 20 00 C0 B3 20 00 C0  ..... ... ... ..
    01A0: 0C 00 02 00 C0 20 00 C0 FF FF FF FF FF FF FF FF  ..... ..........
    01B0: C1 20 00 C0 C2 20 00 C0 C3 20 00 C0 0D 00 02 00  . ... ... ......
    01C0: D0 20 00 C0 FF FF FF FF FF FF FF FF D1 20 00 C0  . ........... ..
    01D0: D2 20 00 C0 D3 20 00 C0 0E 00 02 00 E0 20 00 C0  . ... ....... ..
    01E0: FF FF FF FF FF FF FF FF E1 20 00 C0 E2 20 00 C0  ......... ... ..
    01F0: E3 20 00 C0 0F 00 02 00 F0 20 00 C0 FF FF FF FF  . ....... ......
    0200: FF FF FF FF F1 20 00 C0 F2 20 00 C0 F3 20 00 C0  ..... ... ... ..
    0210: 10 00 02 00 00 21 00 C0 FF FF FF FF FF FF FF FF  .....!..........
    0220: 01 21 00 C0 02 21 00 C0 03 21 00 C0 11 00 02 00  .!...!...!......
    0230: 10 21 00 C0 FF FF FF FF FF FF FF FF 11 21 00 C0  .!...........!..
    0240: 12 21 00 C0 13 21 00 C0 12 00 02 00 20 21 00 C0  .!...!...... !..
    0250: FF FF FF FF FF FF FF FF 21 21 00 C0 22 21 00 C0  ........!!.."!..
    0260: 23 21 00 C0 13 00 02 00 30 21 00 C0 FF FF FF FF  #!......0!......
    0270: FF FF FF FF 31 21 00 C0 32 21 00 C0 33 21 00 C0  ....1!..2!..3!..
    0280: 14 00 02 00 40 21 00 C0 FF FF FF FF FF FF FF FF  ....@!..........
    0290: 41 21 00 C0 42 21 00 C0 43 21 00 C0 15 00 02 00  A!..B!..C!......
    02A0: 50 21 00 C0 FF FF FF FF FF FF FF FF 51 21 00 C0  P!..........Q!..
    02B0: 52 21 00 C0 53 21 00 C0 16 00 02 00 60 21 00 C0  R!..S!......`!..
    02C0: FF FF FF FF FF FF FF FF 61 21 00 C0 62 21 00 C0  ........a!..b!..
    02D0: 63 21 00 C0 17 00 02 00 70 21 00 C0 FF FF FF FF  c!......p!......
    02E0: FF FF FF FF 71 21 00 C0 72 21 00 C0 73 21 00 C0  ....q!..r!..s!..
    02F0: 18 00 02 00 80 21 00 C0 FF FF FF FF FF FF FF FF  .....!..........
    0300: 81 21 00 C0 82 21 00 C0 83 21 00 C0 19 00 02 00  .!...!...!......
    0310: 90 21 00 C0 FF FF FF FF FF FF FF FF 91 21 00 C0  .!...........!..
    0320: 92 21 00 C0 93 21 00 C0 1A 00 02 00 A0 21 00 C0  .!...!.......!..
    0330: FF FF FF FF FF FF FF FF A1 21 00 C0 A2 21 00 C0  .........!...!..
    0340: A3 21 00 C0 1B 00 02 00 B0 21 00 C0 FF FF FF FF  .!.......!......
    0350: FF FF FF FF B1 21 00 C0 B2 21 00 C0 B3 21 00 C0  .....!...!...!..
    0360: 1C 00 02 00 C0 21 00 C0 FF FF FF FF FF FF FF FF  .....!..........
    0370: C1 21 00 C0 C2 21 00 C0 C3 21 00 C0 1D 00 02 00  .!...!...!......
    0380: D0 21 00 C0 FF FF FF FF FF FF FF FF D1 21 00 C0  .!...........!..
    0390: D2 21 00 C0 D3 21 00 C0 1E 00 02 00 E0 21 00 C0  .!...!.......!..
    03A0: FF FF FF FF FF FF FF FF E1 21 00 C0 E2 21 00 C0  .........!...!..
    03B0: E3 21 00 C0 1F 00 02 00 F0 21 00 C0 FF FF FF FF  .!.......!......
    03C0: FF FF FF FF F1 21 00 C0 F2 21 00 C0 F3 21 00 C0  .....!...!...!..
    03D0: 01 00 02 00 00 00 04 01 01 00 00 00 01 00 00 00  ................
    03E0: 00 1C 00 00 88 13 00 00 00 00 00 00 00 00 00 00  ................
    03F0: 00 00 00 00 01 00 00 00 00 00 00 00 20 00 00 00  ............ ...
    0400: 00 00 02 00 00 20 00 C0 FF FF FF FF FF FF FF FF  ..... ..........
    0410: 01 20 00 C0 02 20 00 C0 03 20 00 C0 01 00 02 00  . ... ... ......
    0420: 10 20 00 C0 FF FF FF FF FF FF FF FF 11 20 00 C0  . ........... ..
    0430: 12 20 00 C0 13 20 00 C0 02 00 02 00 20 20 00 C0  . ... ......  ..
    0440: FF FF FF FF FF FF FF FF 21 20 00 C0 22 20 00 C0  ........! .." ..
    0450: 23 20 00 C0 03 00 02 00 30 20 00 C0 FF FF FF FF  # ......0 ......
    0460: FF FF FF FF 31 20 00 C0 32 20 00 C0 33 20 00 C0  ....1 ..2 ..3 ..
    0470: 04 00 02 00 40 20 00 C0 00 00 00 00 00 00 00 00  ....@ ..........
    0480: 41 20 00 C0 42 20 00 C0 43 20 00 C0 05 00 02 00  A ..B ..C ......
    0490: 50 20 00 C0 FF FF FF FF FF FF FF FF 51 20 00 C0  P ..........Q ..
    04A0: 52 20 00 C0 53 20 00 C0 06 00 02 00 60 20 00 C0  R ..S ......` ..
    04B0: FF FF FF FF FF FF FF FF 61 20 00 C0 62 20 00 C0  ........a ..b ..
    04C0: 63 20 00 C0 07 00 02 00 70 20 00 C0 FF FF FF FF  c ......p ......
    04D0: FF FF FF FF 71 20 00 C0 72 20 00 C0 73 20 00 C0  ....q ..r ..s ..
    04E0: 08 00 02 00 80 20 00 C0 FF FF FF FF FF FF FF FF  ..... ..........
    04F0: 81 20 00 C0 82 20 00 C0 83 20 00 C0 09 00 02 00  . ... ... ......
    0500: 90 20 00 C0 FF FF FF FF FF FF FF FF 91 20 00 C0  . ........... ..
    0510: 92 20 00 C0 93 20 00 C0 0A 00 02 00 A0 20 00 C0  . ... ....... ..
    0520: FF FF FF FF FF FF FF FF A1 20 00 C0 A2 20 00 C0  ......... ... ..
    0530: A3 20 00 C0 0B 00 02 00 B0 20 00 C0 FF FF FF FF  . ....... ......
    0540: FF FF FF FF B1 20 00 C0 B2 20 00 C0 B3 20 00 C0  ..... ... ... ..
    0550: 0C 00 02 00 C0 20 00 C0 FF FF FF FF FF FF FF FF  ..... ..........
    0560: C1 20 00 C0 C2 20 00 C0 C3 20 00 C0 0D 00 02 00  . ... ... ......
    0570: D0 20 00 C0 FF FF FF FF FF FF FF FF D1 20 00 C0  . ........... ..
    0580: D2 20 00 C0 D3 20 00 C0 0E 00 02 00 E0 20 00 C0  . ... ....... ..
    0590: FF FF FF FF FF FF FF FF E1 20 00 C0 E2 20 00 C0  ......... ... ..
    05A0: E3 20 00 C0 0F 00 02 00 F0 20 00 C0 FF FF FF FF  . ....... ......
    05B0: FF FF FF FF F1 20 00 C0 F2 20 00 C0 F3 20 00 C0  ..... ... ... ..
    05C0: 10 00 02 00 00 21 00 C0 FF FF FF FF FF FF FF FF  .....!..........
    05D0: 01 21 00 C0 02 21 00 C0 03 21 00 C0 11 00 02 00  .!...!...!......
    05E0: 10 21 00 C0 FF FF FF FF FF FF FF FF 11 21 00 C0  .!...........!..
    05F0: 12 21 00 C0 13 21 00 C0 12 00 02 00 20 21 00 C0  .!...!...... !..
    0600: FF FF FF FF FF FF FF FF 21 21 00 C0 22 21 00 C0  ........!!.."!..
    0610: 23 21 00 C0 13 00 02 00 30 21 00 C0 FF FF FF FF  #!......0!......
    0620: FF FF FF FF 31 21 00 C0 32 21 00 C0 33 21 00 C0  ....1!..2!..3!..
    0630: 14 00 02 00 40 21 00 C0 FF FF FF FF FF FF FF FF  ....@!..........
    0640: 41 21 00 C0 42 21 00 C0 43 21 00 C0 15 00 02 00  A!..B!..C!......
    0650: 50 21 00 C0 FF FF FF FF FF FF FF FF 51 21 00 C0  P!..........Q!..
    0660: 52 21 00 C0 53 21 00 C0 16 00 02 00 60 21 00 C0  R!..S!......`!..
    0670: FF FF FF FF FF FF FF FF 61 21 00 C0 62 21 00 C0  ........a!..b!..
    0680: 63 21 00 C0 17 00 02 00 70 21 00 C0 FF FF FF FF  c!......p!......
    0690: FF FF FF FF 71 21 00 C0 72 21 00 C0 73 21 00 C0  ....q!..r!..s!..
    06A0: 18 00 02 00 80 21 00 C0 FF FF FF FF FF FF FF FF  .....!..........
    06B0: 81 21 00 C0 82 21 00 C0 83 21 00 C0 19 00 02 00  .!...!...!......
    06C0: 90 21 00 C0 FF FF FF FF FF FF FF FF 91 21 00 C0  .!...........!..
    06D0: 92 21 00 C0 93 21 00 C0 1A 00 02 00 A0 21 00 C0  .!...!.......!..
    06E0: FF FF FF FF FF FF FF FF A1 21 00 C0 A2 21 00 C0  .........!...!..
    06F0: A3 21 00 C0 1B 00 02 00 B0 21 00 C0 FF FF FF FF  .!.......!......
    0700: FF FF FF FF B1 21 00 C0 B2 21 00 C0 B3 21 00 C0  .....!...!...!..
    0710: 1C 00 02 00 C0 21 00 C0 FF FF FF FF FF FF FF FF  .....!..........
    0720: C1 21 00 C0 C2 21 00 C0 C3 21 00 C0 1D 00 02 00  .!...!...!......
    0730: D0 21 00 C0 FF FF FF FF FF FF FF FF D1 21 00 C0  .!...........!..
    0740: D2 21 00 C0 D3 21 00 C0 1E 00 02 00 E0 21 00 C0  .!...!.......!..
    0750: FF FF FF FF FF FF FF FF E1 21 00 C0 E2 21 00 C0  .........!...!..
    0760: E3 21 00 C0 1F 00 02 00 F0 21 00 C0 FF FF FF FF  .!.......!......
    0770: FF FF FF FF F1 21 00 C0 F2 21 00 C0 F3 21 00 C0  .....!...!...!..
    0780: 09 00 01 03 FF FF 00 01 01 00 00 00 10 00 00 00  ................
    0790: 00 10 00 00 00 40 00 04 98 69 4E A6 00 00 00 00  .....@...iN.....
    07A0: 00 1C 00 00 88 13 00 00 00 00 00 00 00 00 00 00  ................
    07B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00  ................
    07C0: 09 00 00 03 FF FF 00 01 01 00 00 00 10 00 00 00  ................
    07D0: 00 10 00 00 00 40 00 04 98 6C 4E A6 00 00 00 00  .....@...lN.....
    07E0: 04 1C 00 00 88 13 00 00 00 00 00 00 00 00 00 00  ................
    07F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00  ................
    0800: 06 00 00 01 00 00 03 01 01 00 00 00 10 00 00 00  ................
    0810: 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00  ................
    0820: 30 60 4F 07 00 00 00 00 00 00 00 00 00 00 00 00  0`O.............
    0830: 07 00 01 01 00 00 03 01 01 00 00 00 10 00 00 00  ................
    0840: 00 00 00 00 00 00 00 00 07 00 00 00 00 00 10 00  ................
    0850: 30 60 4F 07 00 00 00 00 00 00 00 00 08 00 02 01  0`O.............
    0860: 00 00 03 01 01 00 00 00 10 00 00 00 00 00 00 00  ................
    0870: 00 00 00 00 07 00 00 00 00 00 10 00 30 60 4F 07  ............0`O.
    0880: 00 00 00 00 00 00 00 00 00 00 10 00 30 60 4F 07  ............0`O.
    0890: 00 00 00 00 09 00 00 02 00 01 00 01 01 00 00 00  ................
    08A0: 10 00 00 00 00 10 00 00 00 40 00 04 98 64 4E A6  .........@...dN.
    08B0: 00 00 00 00 00 1C 00 00 88 13 00 00 00 00 00 00  ................
    08C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    08D0: 00 10 00 00 09 00 01 02 00 01 00 01 01 00 00 00  ................
    08E0: 10 00 00 00 00 10 00 00 00 40 00 04 98 67 4E A6  .........@...gN.
    08F0: 00 00 00 00 04 1C 00 00 88 13 00 00 00 00 00 00  ................
    0900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0910: 00 10 00 00 09 00 02 02 01 01 00 01 01 00 00 00  ................
    0920: 10 00 00 00 00 10 00 00 00 40 00 04 18 68 4E A6  .........@...hN.
    0930: 00 00 00 00 00 1C 00 00 88 13 00 00 00 00 00 00  ................
    0940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0950: 00 10 00 00 09 00 03 02 01 01 00 01 01 00 00 00  ................
    0960: 10 00 00 00 00 10 00 00 00 40 00 04 18 65 4E A6  .........@...eN.
    0970: 00 00 00 00 04 1C 00 00 88 13 00 00 00 00 00 00  ................
    0980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0990: 00 10 00 00 09 00 04 02 02 01 00 01 01 00 00 00  ................
    09A0: 10 00 00 00 00 10 00 00 00 40 00 04 18 67 4E A6  .........@...gN.
    09B0: 00 00 00 00 00 1C 00 00 88 13 00 00 00 00 00 00  ................
    09C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    09D0: 00 10 00 00 09 00 05 02 02 01 00 01 01 00 00 00  ................
    09E0: 10 00 00 00 00 10 00 00 00 40 00 04 98 65 4E A6  .........@...eN.
    09F0: 00 00 00 00 04 1C 00 00 88 13 00 00 00 00 00 00  ................
    0A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0A10: 00 10 00 00 09 00 00 10 01 00 00 01 01 00 00 00  ................
    0A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 41 49 A6  .........@...AI.
    0A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0A50: 00 02 00 00 09 00 01 10 01 00 00 01 01 00 00 00  ................
    0A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 4B 49 A6  .........@...KI.
    0A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0A90: 00 02 00 00 09 00 02 10 01 00 00 01 01 00 00 00  ................
    0AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4B 49 A6  .........@...KI.
    0AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0AD0: 00 02 00 00 09 00 03 10 01 00 00 01 01 00 00 00  ................
    0AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 48 49 A6  .........@...HI.
    0AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0B10: 00 02 00 00 09 00 04 10 01 00 00 01 01 00 00 00  ................
    0B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 4A 49 A6  .........@...JI.
    0B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0B50: 00 02 00 00 09 00 05 10 01 00 00 01 01 00 00 00  ................
    0B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 49 49 A6  .........@...II.
    0B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0B90: 00 02 00 00 09 00 06 10 01 00 00 01 01 00 00 00  ................
    0BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 49 49 A6  .........@...II.
    0BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0BD0: 00 02 00 00 09 00 07 10 01 00 00 01 01 00 00 00  ................
    0BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4A 49 A6  .........@...JI.
    0BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0C10: 00 02 00 00 09 00 08 10 01 00 00 01 01 00 00 00  ................
    0C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 42 49 A6  .........@...BI.
    0C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0C50: 00 02 00 00 09 00 09 10 01 00 00 01 01 00 00 00  ................
    0C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 48 49 A6  .........@...HI.
    0C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0C90: 00 02 00 00 09 00 0A 10 01 00 00 01 01 00 00 00  ................
    0CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 46 49 A6  .........@...FI.
    0CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0CD0: 00 02 00 00 09 00 0B 10 01 00 00 01 01 00 00 00  ................
    0CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 47 49 A6  .........@...GI.
    0CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0D10: 00 02 00 00 09 00 0C 10 01 00 00 01 01 00 00 00  ................
    0D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 47 49 A6  .........@...GI.
    0D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0D50: 00 02 00 00 09 00 0D 10 01 00 00 01 01 00 00 00  ................
    0D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 42 49 A6  .........@...BI.
    0D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0D90: 00 02 00 00 09 00 0E 10 01 00 00 01 01 00 00 00  ................
    0DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 45 49 A6  .........@...EI.
    0DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0DD0: 00 02 00 00 09 00 0F 10 01 00 00 01 01 00 00 00  ................
    0DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 46 49 A6  .........@...FI.
    0DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0E10: 00 02 00 00 09 00 10 10 01 00 00 01 01 00 00 00  ................
    0E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 43 49 A6  .........@...CI.
    0E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0E50: 00 02 00 00 09 00 11 10 01 00 00 01 01 00 00 00  ................
    0E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 45 49 A6  .........@...EI.
    0E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0E90: 00 02 00 00 09 00 12 10 01 00 00 01 01 00 00 00  ................
    0EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 43 49 A6  .........@...CI.
    0EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0ED0: 00 02 00 00 09 00 13 10 01 00 00 01 01 00 00 00  ................
    0EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 44 49 A6  .........@...DI.
    0EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0F10: 00 02 00 00 09 00 14 10 01 00 00 01 01 00 00 00  ................
    0F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 44 49 A6  .........@...DI.
    0F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0F50: 00 02 00 00 09 00 15 10 01 00 00 01 01 00 00 00  ................
    0F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 50 4B A6  .........@...PK.
    0F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0F90: 00 02 00 00 09 00 16 10 01 00 00 01 01 00 00 00  ................
    0FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5F 4B A6  .........@..._K.
    0FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    0FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0FD0: 00 02 00 00 09 00 17 10 01 00 00 01 01 00 00 00  ................
    0FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5F 4B A6  .........@..._K.
    0FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1010: 00 02 00 00 09 00 18 10 01 00 00 01 01 00 00 00  ................
    1020: 10 00 00 00 00 02 00 00 00 40 00 04 18 5B 4B A6  .........@...[K.
    1030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1050: 00 02 00 00 09 00 19 10 01 00 00 01 01 00 00 00  ................
    1060: 10 00 00 00 00 02 00 00 00 40 00 04 18 5E 4B A6  .........@...^K.
    1070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1090: 00 02 00 00 09 00 1A 10 01 00 00 01 01 00 00 00  ................
    10A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5E 4B A6  .........@...^K.
    10B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    10C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    10D0: 00 02 00 00 09 00 1B 10 01 00 00 01 01 00 00 00  ................
    10E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5B 4B A6  .........@...[K.
    10F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1110: 00 02 00 00 09 00 1C 10 01 00 00 01 01 00 00 00  ................
    1120: 10 00 00 00 00 02 00 00 00 40 00 04 98 5D 4B A6  .........@...]K.
    1130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1150: 00 02 00 00 09 00 1D 10 01 00 00 01 01 00 00 00  ................
    1160: 10 00 00 00 00 02 00 00 00 40 00 04 18 5C 4B A6  .........@...\K.
    1170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1190: 00 02 00 00 09 00 1E 10 01 00 00 01 01 00 00 00  ................
    11A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5C 4B A6  .........@...\K.
    11B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    11C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    11D0: 00 02 00 00 09 00 1F 10 01 00 00 01 01 00 00 00  ................
    11E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5D 4B A6  .........@...]K.
    11F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1210: 00 02 00 00 09 00 20 10 01 00 00 01 01 00 00 00  ...... .........
    1220: 10 00 00 00 00 02 00 00 00 40 00 04 98 50 4B A6  .........@...PK.
    1230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1250: 00 02 00 00 09 00 21 10 01 00 00 01 01 00 00 00  ......!.........
    1260: 10 00 00 00 00 02 00 00 00 40 00 04 18 5A 4B A6  .........@...ZK.
    1270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1290: 00 02 00 00 09 00 22 10 01 00 00 01 01 00 00 00  ......".........
    12A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5A 4B A6  .........@...ZK.
    12B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    12C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    12D0: 00 02 00 00 09 00 23 10 01 00 00 01 01 00 00 00  ......#.........
    12E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 57 4B A6  .........@...WK.
    12F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1310: 00 02 00 00 09 00 24 10 01 00 00 01 01 00 00 00  ......$.........
    1320: 10 00 00 00 00 02 00 00 00 40 00 04 98 59 4B A6  .........@...YK.
    1330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1350: 00 02 00 00 09 00 25 10 01 00 00 01 01 00 00 00  ......%.........
    1360: 10 00 00 00 00 02 00 00 00 40 00 04 18 58 4B A6  .........@...XK.
    1370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1390: 00 02 00 00 09 00 26 10 01 00 00 01 01 00 00 00  ......&.........
    13A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 58 4B A6  .........@...XK.
    13B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    13C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    13D0: 00 02 00 00 09 00 27 10 01 00 00 01 01 00 00 00  ......'.........
    13E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 59 4B A6  .........@...YK.
    13F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1410: 00 02 00 00 09 00 28 10 01 00 00 01 01 00 00 00  ......(.........
    1420: 10 00 00 00 00 02 00 00 00 40 00 04 18 51 4B A6  .........@...QK.
    1430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1450: 00 02 00 00 09 00 29 10 01 00 00 01 01 00 00 00  ......).........
    1460: 10 00 00 00 00 02 00 00 00 40 00 04 18 57 4B A6  .........@...WK.
    1470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1490: 00 02 00 00 09 00 2A 10 01 00 00 01 01 00 00 00  ......*.........
    14A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 55 4B A6  .........@...UK.
    14B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    14C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    14D0: 00 02 00 00 09 00 2B 10 01 00 00 01 01 00 00 00  ......+.........
    14E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 56 4B A6  .........@...VK.
    14F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1510: 00 02 00 00 09 00 2C 10 01 00 00 01 01 00 00 00  ......,.........
    1520: 10 00 00 00 00 02 00 00 00 40 00 04 98 56 4B A6  .........@...VK.
    1530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1550: 00 02 00 00 09 00 2D 10 01 00 00 01 01 00 00 00  ......-.........
    1560: 10 00 00 00 00 02 00 00 00 40 00 04 98 51 4B A6  .........@...QK.
    1570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1590: 00 02 00 00 09 00 2E 10 01 00 00 01 01 00 00 00  ................
    15A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 54 4B A6  .........@...TK.
    15B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    15C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    15D0: 00 02 00 00 09 00 2F 10 01 00 00 01 01 00 00 00  ....../.........
    15E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 55 4B A6  .........@...UK.
    15F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1610: 00 02 00 00 09 00 30 10 01 00 00 01 01 00 00 00  ......0.........
    1620: 10 00 00 00 00 02 00 00 00 40 00 04 18 52 4B A6  .........@...RK.
    1630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1650: 00 02 00 00 09 00 31 10 01 00 00 01 01 00 00 00  ......1.........
    1660: 10 00 00 00 00 02 00 00 00 40 00 04 18 54 4B A6  .........@...TK.
    1670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1690: 00 02 00 00 09 00 32 10 01 00 00 01 01 00 00 00  ......2.........
    16A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 52 4B A6  .........@...RK.
    16B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    16C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    16D0: 00 02 00 00 09 00 33 10 01 00 00 01 01 00 00 00  ......3.........
    16E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 53 4B A6  .........@...SK.
    16F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1710: 00 02 00 00 09 00 34 10 01 00 00 01 01 00 00 00  ......4.........
    1720: 10 00 00 00 00 02 00 00 00 40 00 04 98 53 4B A6  .........@...SK.
    1730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1750: 00 02 00 00 09 00 35 10 01 00 00 01 01 00 00 00  ......5.........
    1760: 10 00 00 00 00 02 00 00 00 40 00 04 18 40 4B A6  .........@...@K.
    1770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1790: 00 02 00 00 09 00 36 10 01 00 00 01 01 00 00 00  ......6.........
    17A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4F 4B A6  .........@...OK.
    17B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    17C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    17D0: 00 02 00 00 09 00 37 10 01 00 00 01 01 00 00 00  ......7.........
    17E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4F 4B A6  .........@...OK.
    17F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1810: 00 02 00 00 09 00 38 10 01 00 00 01 01 00 00 00  ......8.........
    1820: 10 00 00 00 00 02 00 00 00 40 00 04 18 4B 4B A6  .........@...KK.
    1830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1850: 00 02 00 00 09 00 39 10 01 00 00 01 01 00 00 00  ......9.........
    1860: 10 00 00 00 00 02 00 00 00 40 00 04 18 4E 4B A6  .........@...NK.
    1870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1890: 00 02 00 00 09 00 3A 10 01 00 00 01 01 00 00 00  ......:.........
    18A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4E 4B A6  .........@...NK.
    18B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    18C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    18D0: 00 02 00 00 09 00 3B 10 01 00 00 01 01 00 00 00  ......;.........
    18E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4B 4B A6  .........@...KK.
    18F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1910: 00 02 00 00 09 00 3C 10 01 00 00 01 01 00 00 00  ......<.........
    1920: 10 00 00 00 00 02 00 00 00 40 00 04 98 4D 4B A6  .........@...MK.
    1930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1950: 00 02 00 00 09 00 3D 10 01 00 00 01 01 00 00 00  ......=.........
    1960: 10 00 00 00 00 02 00 00 00 40 00 04 18 4C 4B A6  .........@...LK.
    1970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1990: 00 02 00 00 09 00 3E 10 01 00 00 01 01 00 00 00  ......>.........
    19A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4C 4B A6  .........@...LK.
    19B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    19C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    19D0: 00 02 00 00 09 00 3F 10 01 00 00 01 01 00 00 00  ......?.........
    19E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4D 4B A6  .........@...MK.
    19F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1A10: 00 02 00 00 09 00 40 10 01 00 00 01 01 00 00 00  ......@.........
    1A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 40 4B A6  .........@...@K.
    1A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1A50: 00 02 00 00 09 00 41 10 01 00 00 01 01 00 00 00  ......A.........
    1A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 4A 4B A6  .........@...JK.
    1A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1A90: 00 02 00 00 09 00 42 10 01 00 00 01 01 00 00 00  ......B.........
    1AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4A 4B A6  .........@...JK.
    1AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1AD0: 00 02 00 00 09 00 43 10 01 00 00 01 01 00 00 00  ......C.........
    1AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 47 4B A6  .........@...GK.
    1AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1B10: 00 02 00 00 09 00 44 10 01 00 00 01 01 00 00 00  ......D.........
    1B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 49 4B A6  .........@...IK.
    1B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1B50: 00 02 00 00 09 00 45 10 01 00 00 01 01 00 00 00  ......E.........
    1B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 48 4B A6  .........@...HK.
    1B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1B90: 00 02 00 00 09 00 46 10 01 00 00 01 01 00 00 00  ......F.........
    1BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 48 4B A6  .........@...HK.
    1BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1BD0: 00 02 00 00 09 00 47 10 01 00 00 01 01 00 00 00  ......G.........
    1BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 49 4B A6  .........@...IK.
    1BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1C10: 00 02 00 00 09 00 48 10 01 00 00 01 01 00 00 00  ......H.........
    1C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 41 4B A6  .........@...AK.
    1C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1C50: 00 02 00 00 09 00 49 10 01 00 00 01 01 00 00 00  ......I.........
    1C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 47 4B A6  .........@...GK.
    1C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1C90: 00 02 00 00 09 00 4A 10 01 00 00 01 01 00 00 00  ......J.........
    1CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 45 4B A6  .........@...EK.
    1CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1CD0: 00 02 00 00 09 00 4B 10 01 00 00 01 01 00 00 00  ......K.........
    1CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 46 4B A6  .........@...FK.
    1CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1D10: 00 02 00 00 09 00 4C 10 01 00 00 01 01 00 00 00  ......L.........
    1D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 46 4B A6  .........@...FK.
    1D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1D50: 00 02 00 00 09 00 4D 10 01 00 00 01 01 00 00 00  ......M.........
    1D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 41 4B A6  .........@...AK.
    1D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1D90: 00 02 00 00 09 00 4E 10 01 00 00 01 01 00 00 00  ......N.........
    1DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 44 4B A6  .........@...DK.
    1DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1DD0: 00 02 00 00 09 00 4F 10 01 00 00 01 01 00 00 00  ......O.........
    1DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 45 4B A6  .........@...EK.
    1DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1E10: 00 02 00 00 09 00 50 10 01 00 00 01 01 00 00 00  ......P.........
    1E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 42 4B A6  .........@...BK.
    1E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1E50: 00 02 00 00 09 00 51 10 01 00 00 01 01 00 00 00  ......Q.........
    1E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 44 4B A6  .........@...DK.
    1E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1E90: 00 02 00 00 09 00 52 10 01 00 00 01 01 00 00 00  ......R.........
    1EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 42 4B A6  .........@...BK.
    1EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1ED0: 00 02 00 00 09 00 53 10 01 00 00 01 01 00 00 00  ......S.........
    1EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 43 4B A6  .........@...CK.
    1EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1F10: 00 02 00 00 09 00 54 10 01 00 00 01 01 00 00 00  ......T.........
    1F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 43 4B A6  .........@...CK.
    1F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1F50: 00 02 00 00 09 00 55 10 01 00 00 01 01 00 00 00  ......U.........
    1F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 70 45 A4  .........@...pE.
    1F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1F90: 00 02 00 00 09 00 56 10 01 00 00 01 01 00 00 00  ......V.........
    1FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7F 45 A4  .........@....E.
    1FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    1FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    1FD0: 00 02 00 00 09 00 57 10 01 00 00 01 01 00 00 00  ......W.........
    1FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7F 45 A4  .........@....E.
    1FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2010: 00 02 00 00 09 00 58 10 01 00 00 01 01 00 00 00  ......X.........
    2020: 10 00 00 00 00 02 00 00 00 40 00 04 18 7B 45 A4  .........@...{E.
    2030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2050: 00 02 00 00 09 00 59 10 01 00 00 01 01 00 00 00  ......Y.........
    2060: 10 00 00 00 00 02 00 00 00 40 00 04 18 7E 45 A4  .........@...~E.
    2070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2090: 00 02 00 00 09 00 5A 10 01 00 00 01 01 00 00 00  ......Z.........
    20A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7E 45 A4  .........@...~E.
    20B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    20C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    20D0: 00 02 00 00 09 00 5B 10 01 00 00 01 01 00 00 00  ......[.........
    20E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7B 45 A4  .........@...{E.
    20F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2110: 00 02 00 00 09 00 5C 10 01 00 00 01 01 00 00 00  ......\.........
    2120: 10 00 00 00 00 02 00 00 00 40 00 04 98 7D 45 A4  .........@...}E.
    2130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2150: 00 02 00 00 09 00 5D 10 01 00 00 01 01 00 00 00  ......].........
    2160: 10 00 00 00 00 02 00 00 00 40 00 04 18 7C 45 A4  .........@...|E.
    2170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2190: 00 02 00 00 09 00 5E 10 01 00 00 01 01 00 00 00  ......^.........
    21A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7C 45 A4  .........@...|E.
    21B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    21C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    21D0: 00 02 00 00 09 00 5F 10 01 00 00 01 01 00 00 00  ......_.........
    21E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7D 45 A4  .........@...}E.
    21F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2210: 00 02 00 00 09 00 60 10 01 00 00 01 01 00 00 00  ......`.........
    2220: 10 00 00 00 00 02 00 00 00 40 00 04 98 70 45 A4  .........@...pE.
    2230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2250: 00 02 00 00 09 00 61 10 01 00 00 01 01 00 00 00  ......a.........
    2260: 10 00 00 00 00 02 00 00 00 40 00 04 18 7A 45 A4  .........@...zE.
    2270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2290: 00 02 00 00 09 00 62 10 01 00 00 01 01 00 00 00  ......b.........
    22A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7A 45 A4  .........@...zE.
    22B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    22C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    22D0: 00 02 00 00 09 00 63 10 01 00 00 01 01 00 00 00  ......c.........
    22E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 77 45 A4  .........@...wE.
    22F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2310: 00 02 00 00 09 00 64 10 01 00 00 01 01 00 00 00  ......d.........
    2320: 10 00 00 00 00 02 00 00 00 40 00 04 98 79 45 A4  .........@...yE.
    2330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2350: 00 02 00 00 09 00 65 10 01 00 00 01 01 00 00 00  ......e.........
    2360: 10 00 00 00 00 02 00 00 00 40 00 04 18 78 45 A4  .........@...xE.
    2370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2390: 00 02 00 00 09 00 66 10 01 00 00 01 01 00 00 00  ......f.........
    23A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 78 45 A4  .........@...xE.
    23B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    23C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    23D0: 00 02 00 00 09 00 67 10 01 00 00 01 01 00 00 00  ......g.........
    23E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 79 45 A4  .........@...yE.
    23F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2410: 00 02 00 00 09 00 68 10 01 00 00 01 01 00 00 00  ......h.........
    2420: 10 00 00 00 00 02 00 00 00 40 00 04 18 71 45 A4  .........@...qE.
    2430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2450: 00 02 00 00 09 00 69 10 01 00 00 01 01 00 00 00  ......i.........
    2460: 10 00 00 00 00 02 00 00 00 40 00 04 18 77 45 A4  .........@...wE.
    2470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2490: 00 02 00 00 09 00 6A 10 01 00 00 01 01 00 00 00  ......j.........
    24A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 75 45 A4  .........@...uE.
    24B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    24C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    24D0: 00 02 00 00 09 00 6B 10 01 00 00 01 01 00 00 00  ......k.........
    24E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 76 45 A4  .........@...vE.
    24F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2510: 00 02 00 00 09 00 6C 10 01 00 00 01 01 00 00 00  ......l.........
    2520: 10 00 00 00 00 02 00 00 00 40 00 04 98 76 45 A4  .........@...vE.
    2530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2550: 00 02 00 00 09 00 6D 10 01 00 00 01 01 00 00 00  ......m.........
    2560: 10 00 00 00 00 02 00 00 00 40 00 04 98 71 45 A4  .........@...qE.
    2570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2590: 00 02 00 00 09 00 6E 10 01 00 00 01 01 00 00 00  ......n.........
    25A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 74 45 A4  .........@...tE.
    25B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    25C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    25D0: 00 02 00 00 09 00 6F 10 01 00 00 01 01 00 00 00  ......o.........
    25E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 75 45 A4  .........@...uE.
    25F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2610: 00 02 00 00 09 00 70 10 01 00 00 01 01 00 00 00  ......p.........
    2620: 10 00 00 00 00 02 00 00 00 40 00 04 18 72 45 A4  .........@...rE.
    2630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2650: 00 02 00 00 09 00 71 10 01 00 00 01 01 00 00 00  ......q.........
    2660: 10 00 00 00 00 02 00 00 00 40 00 04 18 74 45 A4  .........@...tE.
    2670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2690: 00 02 00 00 09 00 72 10 01 00 00 01 01 00 00 00  ......r.........
    26A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 72 45 A4  .........@...rE.
    26B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    26C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    26D0: 00 02 00 00 09 00 73 10 01 00 00 01 01 00 00 00  ......s.........
    26E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 73 45 A4  .........@...sE.
    26F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2710: 00 02 00 00 09 00 74 10 01 00 00 01 01 00 00 00  ......t.........
    2720: 10 00 00 00 00 02 00 00 00 40 00 04 98 73 45 A4  .........@...sE.
    2730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2750: 00 02 00 00 09 00 75 10 01 00 00 01 01 00 00 00  ......u.........
    2760: 10 00 00 00 00 02 00 00 00 40 00 04 18 60 45 A4  .........@...`E.
    2770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2790: 00 02 00 00 09 00 76 10 01 00 00 01 01 00 00 00  ......v.........
    27A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6F 45 A4  .........@...oE.
    27B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    27C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    27D0: 00 02 00 00 09 00 77 10 01 00 00 01 01 00 00 00  ......w.........
    27E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6F 45 A4  .........@...oE.
    27F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2810: 00 02 00 00 09 00 78 10 01 00 00 01 01 00 00 00  ......x.........
    2820: 10 00 00 00 00 02 00 00 00 40 00 04 18 6B 45 A4  .........@...kE.
    2830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2850: 00 02 00 00 09 00 79 10 01 00 00 01 01 00 00 00  ......y.........
    2860: 10 00 00 00 00 02 00 00 00 40 00 04 18 6E 45 A4  .........@...nE.
    2870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2890: 00 02 00 00 09 00 7A 10 01 00 00 01 01 00 00 00  ......z.........
    28A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6E 45 A4  .........@...nE.
    28B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    28C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    28D0: 00 02 00 00 09 00 7B 10 01 00 00 01 01 00 00 00  ......{.........
    28E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6B 45 A4  .........@...kE.
    28F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2910: 00 02 00 00 09 00 7C 10 01 00 00 01 01 00 00 00  ......|.........
    2920: 10 00 00 00 00 02 00 00 00 40 00 04 98 6D 45 A4  .........@...mE.
    2930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2950: 00 02 00 00 09 00 7D 10 01 00 00 01 01 00 00 00  ......}.........
    2960: 10 00 00 00 00 02 00 00 00 40 00 04 18 6C 45 A4  .........@...lE.
    2970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2990: 00 02 00 00 09 00 7E 10 01 00 00 01 01 00 00 00  ......~.........
    29A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6C 45 A4  .........@...lE.
    29B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    29C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    29D0: 00 02 00 00 09 00 7F 10 01 00 00 01 01 00 00 00  ................
    29E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6D 45 A4  .........@...mE.
    29F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2A10: 00 02 00 00 09 00 80 10 01 00 00 01 01 00 00 00  ................
    2A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 60 45 A4  .........@...`E.
    2A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2A50: 00 02 00 00 09 00 81 10 01 00 00 01 01 00 00 00  ................
    2A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 6A 45 A4  .........@...jE.
    2A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2A90: 00 02 00 00 09 00 82 10 01 00 00 01 01 00 00 00  ................
    2AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6A 45 A4  .........@...jE.
    2AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2AD0: 00 02 00 00 09 00 83 10 01 00 00 01 01 00 00 00  ................
    2AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 67 45 A4  .........@...gE.
    2AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2B10: 00 02 00 00 09 00 84 10 01 00 00 01 01 00 00 00  ................
    2B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 69 45 A4  .........@...iE.
    2B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2B50: 00 02 00 00 09 00 85 10 01 00 00 01 01 00 00 00  ................
    2B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 68 45 A4  .........@...hE.
    2B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2B90: 00 02 00 00 09 00 86 10 01 00 00 01 01 00 00 00  ................
    2BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 68 45 A4  .........@...hE.
    2BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2BD0: 00 02 00 00 09 00 87 10 01 00 00 01 01 00 00 00  ................
    2BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 69 45 A4  .........@...iE.
    2BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2C10: 00 02 00 00 09 00 88 10 01 00 00 01 01 00 00 00  ................
    2C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 61 45 A4  .........@...aE.
    2C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2C50: 00 02 00 00 09 00 89 10 01 00 00 01 01 00 00 00  ................
    2C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 67 45 A4  .........@...gE.
    2C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2C90: 00 02 00 00 09 00 8A 10 01 00 00 01 01 00 00 00  ................
    2CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 65 45 A4  .........@...eE.
    2CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2CD0: 00 02 00 00 09 00 8B 10 01 00 00 01 01 00 00 00  ................
    2CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 66 45 A4  .........@...fE.
    2CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2D10: 00 02 00 00 09 00 8C 10 01 00 00 01 01 00 00 00  ................
    2D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 66 45 A4  .........@...fE.
    2D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2D50: 00 02 00 00 09 00 8D 10 01 00 00 01 01 00 00 00  ................
    2D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 61 45 A4  .........@...aE.
    2D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2D90: 00 02 00 00 09 00 8E 10 01 00 00 01 01 00 00 00  ................
    2DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 64 45 A4  .........@...dE.
    2DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2DD0: 00 02 00 00 09 00 8F 10 01 00 00 01 01 00 00 00  ................
    2DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 65 45 A4  .........@...eE.
    2DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2E10: 00 02 00 00 09 00 90 10 01 00 00 01 01 00 00 00  ................
    2E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 62 45 A4  .........@...bE.
    2E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2E50: 00 02 00 00 09 00 91 10 01 00 00 01 01 00 00 00  ................
    2E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 64 45 A4  .........@...dE.
    2E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2E90: 00 02 00 00 09 00 92 10 01 00 00 01 01 00 00 00  ................
    2EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 62 45 A4  .........@...bE.
    2EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2ED0: 00 02 00 00 09 00 93 10 01 00 00 01 01 00 00 00  ................
    2EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 63 45 A4  .........@...cE.
    2EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2F10: 00 02 00 00 09 00 94 10 01 00 00 01 01 00 00 00  ................
    2F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 63 45 A4  .........@...cE.
    2F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2F50: 00 02 00 00 09 00 95 10 01 00 00 01 01 00 00 00  ................
    2F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 50 45 A4  .........@...PE.
    2F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2F90: 00 02 00 00 09 00 96 10 01 00 00 01 01 00 00 00  ................
    2FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5F 45 A4  .........@..._E.
    2FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    2FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    2FD0: 00 02 00 00 09 00 97 10 01 00 00 01 01 00 00 00  ................
    2FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5F 45 A4  .........@..._E.
    2FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3010: 00 02 00 00 09 00 98 10 01 00 00 01 01 00 00 00  ................
    3020: 10 00 00 00 00 02 00 00 00 40 00 04 18 5B 45 A4  .........@...[E.
    3030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3050: 00 02 00 00 09 00 99 10 01 00 00 01 01 00 00 00  ................
    3060: 10 00 00 00 00 02 00 00 00 40 00 04 18 5E 45 A4  .........@...^E.
    3070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3090: 00 02 00 00 09 00 9A 10 01 00 00 01 01 00 00 00  ................
    30A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5E 45 A4  .........@...^E.
    30B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    30C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    30D0: 00 02 00 00 09 00 9B 10 01 00 00 01 01 00 00 00  ................
    30E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5B 45 A4  .........@...[E.
    30F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3110: 00 02 00 00 09 00 9C 10 01 00 00 01 01 00 00 00  ................
    3120: 10 00 00 00 00 02 00 00 00 40 00 04 98 5D 45 A4  .........@...]E.
    3130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3150: 00 02 00 00 09 00 9D 10 01 00 00 01 01 00 00 00  ................
    3160: 10 00 00 00 00 02 00 00 00 40 00 04 18 5C 45 A4  .........@...\E.
    3170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3190: 00 02 00 00 09 00 9E 10 01 00 00 01 01 00 00 00  ................
    31A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5C 45 A4  .........@...\E.
    31B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    31C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    31D0: 00 02 00 00 09 00 9F 10 01 00 00 01 01 00 00 00  ................
    31E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5D 45 A4  .........@...]E.
    31F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3210: 00 02 00 00 09 00 A0 10 01 00 00 01 01 00 00 00  ................
    3220: 10 00 00 00 00 02 00 00 00 40 00 04 98 50 45 A4  .........@...PE.
    3230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3250: 00 02 00 00 09 00 A1 10 01 00 00 01 01 00 00 00  ................
    3260: 10 00 00 00 00 02 00 00 00 40 00 04 18 5A 45 A4  .........@...ZE.
    3270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3290: 00 02 00 00 09 00 A2 10 01 00 00 01 01 00 00 00  ................
    32A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5A 45 A4  .........@...ZE.
    32B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    32C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    32D0: 00 02 00 00 09 00 A3 10 01 00 00 01 01 00 00 00  ................
    32E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 57 45 A4  .........@...WE.
    32F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3310: 00 02 00 00 09 00 A4 10 01 00 00 01 01 00 00 00  ................
    3320: 10 00 00 00 00 02 00 00 00 40 00 04 98 59 45 A4  .........@...YE.
    3330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3350: 00 02 00 00 09 00 A5 10 01 00 00 01 01 00 00 00  ................
    3360: 10 00 00 00 00 02 00 00 00 40 00 04 18 58 45 A4  .........@...XE.
    3370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3390: 00 02 00 00 09 00 A6 10 01 00 00 01 01 00 00 00  ................
    33A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 58 45 A4  .........@...XE.
    33B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    33C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    33D0: 00 02 00 00 09 00 A7 10 01 00 00 01 01 00 00 00  ................
    33E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 59 45 A4  .........@...YE.
    33F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3410: 00 02 00 00 09 00 A8 10 01 00 00 01 01 00 00 00  ................
    3420: 10 00 00 00 00 02 00 00 00 40 00 04 18 51 45 A4  .........@...QE.
    3430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3450: 00 02 00 00 09 00 A9 10 01 00 00 01 01 00 00 00  ................
    3460: 10 00 00 00 00 02 00 00 00 40 00 04 18 57 45 A4  .........@...WE.
    3470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3490: 00 02 00 00 09 00 AA 10 01 00 00 01 01 00 00 00  ................
    34A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 55 45 A4  .........@...UE.
    34B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    34C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    34D0: 00 02 00 00 09 00 AB 10 01 00 00 01 01 00 00 00  ................
    34E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 56 45 A4  .........@...VE.
    34F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3510: 00 02 00 00 09 00 AC 10 01 00 00 01 01 00 00 00  ................
    3520: 10 00 00 00 00 02 00 00 00 40 00 04 98 56 45 A4  .........@...VE.
    3530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3550: 00 02 00 00 09 00 AD 10 01 00 00 01 01 00 00 00  ................
    3560: 10 00 00 00 00 02 00 00 00 40 00 04 98 51 45 A4  .........@...QE.
    3570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3590: 00 02 00 00 09 00 AE 10 01 00 00 01 01 00 00 00  ................
    35A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 54 45 A4  .........@...TE.
    35B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    35C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    35D0: 00 02 00 00 09 00 AF 10 01 00 00 01 01 00 00 00  ................
    35E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 55 45 A4  .........@...UE.
    35F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3610: 00 02 00 00 09 00 B0 10 01 00 00 01 01 00 00 00  ................
    3620: 10 00 00 00 00 02 00 00 00 40 00 04 18 52 45 A4  .........@...RE.
    3630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3650: 00 02 00 00 09 00 B1 10 01 00 00 01 01 00 00 00  ................
    3660: 10 00 00 00 00 02 00 00 00 40 00 04 18 54 45 A4  .........@...TE.
    3670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3690: 00 02 00 00 09 00 B2 10 01 00 00 01 01 00 00 00  ................
    36A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 52 45 A4  .........@...RE.
    36B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    36C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    36D0: 00 02 00 00 09 00 B3 10 01 00 00 01 01 00 00 00  ................
    36E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 53 45 A4  .........@...SE.
    36F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3710: 00 02 00 00 09 00 B4 10 01 00 00 01 01 00 00 00  ................
    3720: 10 00 00 00 00 02 00 00 00 40 00 04 98 53 45 A4  .........@...SE.
    3730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3750: 00 02 00 00 09 00 B5 10 01 00 00 01 01 00 00 00  ................
    3760: 10 00 00 00 00 02 00 00 00 40 00 04 18 40 45 A4  .........@...@E.
    3770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3790: 00 02 00 00 09 00 B6 10 01 00 00 01 01 00 00 00  ................
    37A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4F 45 A4  .........@...OE.
    37B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    37C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    37D0: 00 02 00 00 09 00 B7 10 01 00 00 01 01 00 00 00  ................
    37E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4F 45 A4  .........@...OE.
    37F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3810: 00 02 00 00 09 00 B8 10 01 00 00 01 01 00 00 00  ................
    3820: 10 00 00 00 00 02 00 00 00 40 00 04 18 4B 45 A4  .........@...KE.
    3830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3850: 00 02 00 00 09 00 B9 10 01 00 00 01 01 00 00 00  ................
    3860: 10 00 00 00 00 02 00 00 00 40 00 04 18 4E 45 A4  .........@...NE.
    3870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3890: 00 02 00 00 09 00 BA 10 01 00 00 01 01 00 00 00  ................
    38A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4E 45 A4  .........@...NE.
    38B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    38C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    38D0: 00 02 00 00 09 00 BB 10 01 00 00 01 01 00 00 00  ................
    38E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4B 45 A4  .........@...KE.
    38F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3910: 00 02 00 00 09 00 BC 10 01 00 00 01 01 00 00 00  ................
    3920: 10 00 00 00 00 02 00 00 00 40 00 04 98 4D 45 A4  .........@...ME.
    3930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3950: 00 02 00 00 09 00 BD 10 01 00 00 01 01 00 00 00  ................
    3960: 10 00 00 00 00 02 00 00 00 40 00 04 18 4C 45 A4  .........@...LE.
    3970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3990: 00 02 00 00 09 00 BE 10 01 00 00 01 01 00 00 00  ................
    39A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4C 45 A4  .........@...LE.
    39B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    39C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    39D0: 00 02 00 00 09 00 BF 10 01 00 00 01 01 00 00 00  ................
    39E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4D 45 A4  .........@...ME.
    39F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3A10: 00 02 00 00 09 00 C0 10 01 00 00 01 01 00 00 00  ................
    3A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 40 45 A4  .........@...@E.
    3A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3A50: 00 02 00 00 09 00 C1 10 01 00 00 01 01 00 00 00  ................
    3A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 4A 45 A4  .........@...JE.
    3A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3A90: 00 02 00 00 09 00 C2 10 01 00 00 01 01 00 00 00  ................
    3AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4A 45 A4  .........@...JE.
    3AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3AD0: 00 02 00 00 09 00 C3 10 01 00 00 01 01 00 00 00  ................
    3AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 47 45 A4  .........@...GE.
    3AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3B10: 00 02 00 00 09 00 C4 10 01 00 00 01 01 00 00 00  ................
    3B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 49 45 A4  .........@...IE.
    3B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3B50: 00 02 00 00 09 00 C5 10 01 00 00 01 01 00 00 00  ................
    3B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 48 45 A4  .........@...HE.
    3B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3B90: 00 02 00 00 09 00 C6 10 01 00 00 01 01 00 00 00  ................
    3BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 48 45 A4  .........@...HE.
    3BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3BD0: 00 02 00 00 09 00 C7 10 01 00 00 01 01 00 00 00  ................
    3BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 49 45 A4  .........@...IE.
    3BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3C10: 00 02 00 00 09 00 C8 10 01 00 00 01 01 00 00 00  ................
    3C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 41 45 A4  .........@...AE.
    3C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3C50: 00 02 00 00 09 00 C9 10 01 00 00 01 01 00 00 00  ................
    3C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 47 45 A4  .........@...GE.
    3C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3C90: 00 02 00 00 09 00 CA 10 01 00 00 01 01 00 00 00  ................
    3CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 45 45 A4  .........@...EE.
    3CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3CD0: 00 02 00 00 09 00 CB 10 01 00 00 01 01 00 00 00  ................
    3CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 46 45 A4  .........@...FE.
    3CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3D10: 00 02 00 00 09 00 CC 10 01 00 00 01 01 00 00 00  ................
    3D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 46 45 A4  .........@...FE.
    3D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3D50: 00 02 00 00 09 00 CD 10 01 00 00 01 01 00 00 00  ................
    3D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 41 45 A4  .........@...AE.
    3D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3D90: 00 02 00 00 09 00 CE 10 01 00 00 01 01 00 00 00  ................
    3DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 44 45 A4  .........@...DE.
    3DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3DD0: 00 02 00 00 09 00 CF 10 01 00 00 01 01 00 00 00  ................
    3DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 45 45 A4  .........@...EE.
    3DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3E10: 00 02 00 00 09 00 D0 10 01 00 00 01 01 00 00 00  ................
    3E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 42 45 A4  .........@...BE.
    3E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3E50: 00 02 00 00 09 00 D1 10 01 00 00 01 01 00 00 00  ................
    3E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 44 45 A4  .........@...DE.
    3E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3E90: 00 02 00 00 09 00 D2 10 01 00 00 01 01 00 00 00  ................
    3EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 42 45 A4  .........@...BE.
    3EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3ED0: 00 02 00 00 09 00 D3 10 01 00 00 01 01 00 00 00  ................
    3EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 43 45 A4  .........@...CE.
    3EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3F10: 00 02 00 00 09 00 D4 10 01 00 00 01 01 00 00 00  ................
    3F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 43 45 A4  .........@...CE.
    3F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3F50: 00 02 00 00 09 00 D5 10 01 00 00 01 01 00 00 00  ................
    3F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 30 45 A4  .........@...0E.
    3F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3F90: 00 02 00 00 09 00 D6 10 01 00 00 01 01 00 00 00  ................
    3FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3F 45 A4  .........@...?E.
    3FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    3FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    3FD0: 00 02 00 00 09 00 D7 10 01 00 00 01 01 00 00 00  ................
    3FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3F 45 A4  .........@...?E.
    3FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4010: 00 02 00 00 09 00 D8 10 01 00 00 01 01 00 00 00  ................
    4020: 10 00 00 00 00 02 00 00 00 40 00 04 18 3B 45 A4  .........@...;E.
    4030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4050: 00 02 00 00 09 00 D9 10 01 00 00 01 01 00 00 00  ................
    4060: 10 00 00 00 00 02 00 00 00 40 00 04 18 3E 45 A4  .........@...>E.
    4070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4090: 00 02 00 00 09 00 DA 10 01 00 00 01 01 00 00 00  ................
    40A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3E 45 A4  .........@...>E.
    40B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    40C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    40D0: 00 02 00 00 09 00 DB 10 01 00 00 01 01 00 00 00  ................
    40E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3B 45 A4  .........@...;E.
    40F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4110: 00 02 00 00 09 00 DC 10 01 00 00 01 01 00 00 00  ................
    4120: 10 00 00 00 00 02 00 00 00 40 00 04 98 3D 45 A4  .........@...=E.
    4130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4150: 00 02 00 00 09 00 DD 10 01 00 00 01 01 00 00 00  ................
    4160: 10 00 00 00 00 02 00 00 00 40 00 04 18 3C 45 A4  .........@...<E.
    4170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4190: 00 02 00 00 09 00 DE 10 01 00 00 01 01 00 00 00  ................
    41A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3C 45 A4  .........@...<E.
    41B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    41C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    41D0: 00 02 00 00 09 00 DF 10 01 00 00 01 01 00 00 00  ................
    41E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3D 45 A4  .........@...=E.
    41F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4210: 00 02 00 00 09 00 E0 10 01 00 00 01 01 00 00 00  ................
    4220: 10 00 00 00 00 02 00 00 00 40 00 04 98 30 45 A4  .........@...0E.
    4230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4250: 00 02 00 00 09 00 E1 10 01 00 00 01 01 00 00 00  ................
    4260: 10 00 00 00 00 02 00 00 00 40 00 04 18 3A 45 A4  .........@...:E.
    4270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4290: 00 02 00 00 09 00 E2 10 01 00 00 01 01 00 00 00  ................
    42A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3A 45 A4  .........@...:E.
    42B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    42C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    42D0: 00 02 00 00 09 00 E3 10 01 00 00 01 01 00 00 00  ................
    42E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 37 45 A4  .........@...7E.
    42F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4310: 00 02 00 00 09 00 E4 10 01 00 00 01 01 00 00 00  ................
    4320: 10 00 00 00 00 02 00 00 00 40 00 04 98 39 45 A4  .........@...9E.
    4330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4350: 00 02 00 00 09 00 E5 10 01 00 00 01 01 00 00 00  ................
    4360: 10 00 00 00 00 02 00 00 00 40 00 04 18 38 45 A4  .........@...8E.
    4370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4390: 00 02 00 00 09 00 E6 10 01 00 00 01 01 00 00 00  ................
    43A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 38 45 A4  .........@...8E.
    43B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    43C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    43D0: 00 02 00 00 09 00 E7 10 01 00 00 01 01 00 00 00  ................
    43E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 39 45 A4  .........@...9E.
    43F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4410: 00 02 00 00 09 00 E8 10 01 00 00 01 01 00 00 00  ................
    4420: 10 00 00 00 00 02 00 00 00 40 00 04 18 31 45 A4  .........@...1E.
    4430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4450: 00 02 00 00 09 00 E9 10 01 00 00 01 01 00 00 00  ................
    4460: 10 00 00 00 00 02 00 00 00 40 00 04 18 37 45 A4  .........@...7E.
    4470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4490: 00 02 00 00 09 00 EA 10 01 00 00 01 01 00 00 00  ................
    44A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 35 45 A4  .........@...5E.
    44B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    44C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    44D0: 00 02 00 00 09 00 EB 10 01 00 00 01 01 00 00 00  ................
    44E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 36 45 A4  .........@...6E.
    44F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4510: 00 02 00 00 09 00 EC 10 01 00 00 01 01 00 00 00  ................
    4520: 10 00 00 00 00 02 00 00 00 40 00 04 98 36 45 A4  .........@...6E.
    4530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4550: 00 02 00 00 09 00 ED 10 01 00 00 01 01 00 00 00  ................
    4560: 10 00 00 00 00 02 00 00 00 40 00 04 98 31 45 A4  .........@...1E.
    4570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4590: 00 02 00 00 09 00 EE 10 01 00 00 01 01 00 00 00  ................
    45A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 34 45 A4  .........@...4E.
    45B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    45C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    45D0: 00 02 00 00 09 00 EF 10 01 00 00 01 01 00 00 00  ................
    45E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 35 45 A4  .........@...5E.
    45F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4610: 00 02 00 00 09 00 F0 10 01 00 00 01 01 00 00 00  ................
    4620: 10 00 00 00 00 02 00 00 00 40 00 04 18 32 45 A4  .........@...2E.
    4630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4650: 00 02 00 00 09 00 F1 10 01 00 00 01 01 00 00 00  ................
    4660: 10 00 00 00 00 02 00 00 00 40 00 04 18 34 45 A4  .........@...4E.
    4670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4690: 00 02 00 00 09 00 F2 10 01 00 00 01 01 00 00 00  ................
    46A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 32 45 A4  .........@...2E.
    46B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    46C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    46D0: 00 02 00 00 09 00 F3 10 01 00 00 01 01 00 00 00  ................
    46E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 33 45 A4  .........@...3E.
    46F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4710: 00 02 00 00 09 00 F4 10 01 00 00 01 01 00 00 00  ................
    4720: 10 00 00 00 00 02 00 00 00 40 00 04 98 33 45 A4  .........@...3E.
    4730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4750: 00 02 00 00 09 00 F5 10 01 00 00 01 01 00 00 00  ................
    4760: 10 00 00 00 00 02 00 00 00 40 00 04 18 20 45 A4  .........@... E.
    4770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4790: 00 02 00 00 09 00 F6 10 01 00 00 01 01 00 00 00  ................
    47A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 2F 45 A4  .........@.../E.
    47B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    47C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    47D0: 00 02 00 00 09 00 F7 10 01 00 00 01 01 00 00 00  ................
    47E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2F 45 A4  .........@.../E.
    47F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4810: 00 02 00 00 09 00 F8 10 01 00 00 01 01 00 00 00  ................
    4820: 10 00 00 00 00 02 00 00 00 40 00 04 18 2B 45 A4  .........@...+E.
    4830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4850: 00 02 00 00 09 00 F9 10 01 00 00 01 01 00 00 00  ................
    4860: 10 00 00 00 00 02 00 00 00 40 00 04 18 2E 45 A4  .........@....E.
    4870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4890: 00 02 00 00 09 00 FA 10 01 00 00 01 01 00 00 00  ................
    48A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2E 45 A4  .........@....E.
    48B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    48C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    48D0: 00 02 00 00 09 00 FB 10 01 00 00 01 01 00 00 00  ................
    48E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2B 45 A4  .........@...+E.
    48F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4910: 00 02 00 00 09 00 FC 10 01 00 00 01 01 00 00 00  ................
    4920: 10 00 00 00 00 02 00 00 00 40 00 04 98 2D 45 A4  .........@...-E.
    4930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4950: 00 02 00 00 09 00 FD 10 01 00 00 01 01 00 00 00  ................
    4960: 10 00 00 00 00 02 00 00 00 40 00 04 18 2C 45 A4  .........@...,E.
    4970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4990: 00 02 00 00 09 00 FE 10 01 00 00 01 01 00 00 00  ................
    49A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2C 45 A4  .........@...,E.
    49B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    49C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    49D0: 00 02 00 00 09 00 FF 10 01 00 00 01 01 00 00 00  ................
    49E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 2D 45 A4  .........@...-E.
    49F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4A10: 00 02 00 00 09 00 00 11 01 00 00 01 01 00 00 00  ................
    4A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 20 45 A4  .........@... E.
    4A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4A50: 00 02 00 00 09 00 01 11 01 00 00 01 01 00 00 00  ................
    4A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 2A 45 A4  .........@...*E.
    4A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4A90: 00 02 00 00 09 00 02 11 01 00 00 01 01 00 00 00  ................
    4AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2A 45 A4  .........@...*E.
    4AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4AD0: 00 02 00 00 09 00 03 11 01 00 00 01 01 00 00 00  ................
    4AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 27 45 A4  .........@...'E.
    4AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4B10: 00 02 00 00 09 00 04 11 01 00 00 01 01 00 00 00  ................
    4B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 29 45 A4  .........@...)E.
    4B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4B50: 00 02 00 00 09 00 05 11 01 00 00 01 01 00 00 00  ................
    4B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 28 45 A4  .........@...(E.
    4B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4B90: 00 02 00 00 09 00 06 11 01 00 00 01 01 00 00 00  ................
    4BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 28 45 A4  .........@...(E.
    4BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4BD0: 00 02 00 00 09 00 07 11 01 00 00 01 01 00 00 00  ................
    4BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 29 45 A4  .........@...)E.
    4BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4C10: 00 02 00 00 09 00 08 11 01 00 00 01 01 00 00 00  ................
    4C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 21 45 A4  .........@...!E.
    4C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4C50: 00 02 00 00 09 00 09 11 01 00 00 01 01 00 00 00  ................
    4C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 27 45 A4  .........@...'E.
    4C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4C90: 00 02 00 00 09 00 0A 11 01 00 00 01 01 00 00 00  ................
    4CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 25 45 A4  .........@...%E.
    4CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4CD0: 00 02 00 00 09 00 0B 11 01 00 00 01 01 00 00 00  ................
    4CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 26 45 A4  .........@...&E.
    4CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4D10: 00 02 00 00 09 00 0C 11 01 00 00 01 01 00 00 00  ................
    4D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 26 45 A4  .........@...&E.
    4D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4D50: 00 02 00 00 09 00 0D 11 01 00 00 01 01 00 00 00  ................
    4D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 21 45 A4  .........@...!E.
    4D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4D90: 00 02 00 00 09 00 0E 11 01 00 00 01 01 00 00 00  ................
    4DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 24 45 A4  .........@...$E.
    4DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4DD0: 00 02 00 00 09 00 0F 11 01 00 00 01 01 00 00 00  ................
    4DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 25 45 A4  .........@...%E.
    4DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4E10: 00 02 00 00 09 00 10 11 01 00 00 01 01 00 00 00  ................
    4E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 22 45 A4  .........@..."E.
    4E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4E50: 00 02 00 00 09 00 11 11 01 00 00 01 01 00 00 00  ................
    4E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 24 45 A4  .........@...$E.
    4E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4E90: 00 02 00 00 09 00 12 11 01 00 00 01 01 00 00 00  ................
    4EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 22 45 A4  .........@..."E.
    4EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4ED0: 00 02 00 00 09 00 13 11 01 00 00 01 01 00 00 00  ................
    4EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 23 45 A4  .........@...#E.
    4EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4F10: 00 02 00 00 09 00 14 11 01 00 00 01 01 00 00 00  ................
    4F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 23 45 A4  .........@...#E.
    4F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4F50: 00 02 00 00 09 00 15 11 01 00 00 01 01 00 00 00  ................
    4F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 10 45 A4  .........@....E.
    4F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4F90: 00 02 00 00 09 00 16 11 01 00 00 01 01 00 00 00  ................
    4FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 1F 45 A4  .........@....E.
    4FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    4FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    4FD0: 00 02 00 00 09 00 17 11 01 00 00 01 01 00 00 00  ................
    4FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1F 45 A4  .........@....E.
    4FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5010: 00 02 00 00 09 00 18 11 01 00 00 01 01 00 00 00  ................
    5020: 10 00 00 00 00 02 00 00 00 40 00 04 18 1B 45 A4  .........@....E.
    5030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5050: 00 02 00 00 09 00 19 11 01 00 00 01 01 00 00 00  ................
    5060: 10 00 00 00 00 02 00 00 00 40 00 04 18 1E 45 A4  .........@....E.
    5070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5090: 00 02 00 00 09 00 1A 11 01 00 00 01 01 00 00 00  ................
    50A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1E 45 A4  .........@....E.
    50B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    50C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    50D0: 00 02 00 00 09 00 1B 11 01 00 00 01 01 00 00 00  ................
    50E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1B 45 A4  .........@....E.
    50F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5110: 00 02 00 00 09 00 1C 11 01 00 00 01 01 00 00 00  ................
    5120: 10 00 00 00 00 02 00 00 00 40 00 04 98 1D 45 A4  .........@....E.
    5130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5150: 00 02 00 00 09 00 1D 11 01 00 00 01 01 00 00 00  ................
    5160: 10 00 00 00 00 02 00 00 00 40 00 04 18 1C 45 A4  .........@....E.
    5170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5190: 00 02 00 00 09 00 1E 11 01 00 00 01 01 00 00 00  ................
    51A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1C 45 A4  .........@....E.
    51B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    51C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    51D0: 00 02 00 00 09 00 1F 11 01 00 00 01 01 00 00 00  ................
    51E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 1D 45 A4  .........@....E.
    51F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5210: 00 02 00 00 09 00 20 11 01 00 00 01 01 00 00 00  ...... .........
    5220: 10 00 00 00 00 02 00 00 00 40 00 04 98 10 45 A4  .........@....E.
    5230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5250: 00 02 00 00 09 00 21 11 01 00 00 01 01 00 00 00  ......!.........
    5260: 10 00 00 00 00 02 00 00 00 40 00 04 18 1A 45 A4  .........@....E.
    5270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5290: 00 02 00 00 09 00 22 11 01 00 00 01 01 00 00 00  ......".........
    52A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1A 45 A4  .........@....E.
    52B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    52C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    52D0: 00 02 00 00 09 00 23 11 01 00 00 01 01 00 00 00  ......#.........
    52E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 17 45 A4  .........@....E.
    52F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5310: 00 02 00 00 09 00 24 11 01 00 00 01 01 00 00 00  ......$.........
    5320: 10 00 00 00 00 02 00 00 00 40 00 04 98 19 45 A4  .........@....E.
    5330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5350: 00 02 00 00 09 00 25 11 01 00 00 01 01 00 00 00  ......%.........
    5360: 10 00 00 00 00 02 00 00 00 40 00 04 18 18 45 A4  .........@....E.
    5370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5390: 00 02 00 00 09 00 26 11 01 00 00 01 01 00 00 00  ......&.........
    53A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 18 45 A4  .........@....E.
    53B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    53C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    53D0: 00 02 00 00 09 00 27 11 01 00 00 01 01 00 00 00  ......'.........
    53E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 19 45 A4  .........@....E.
    53F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5410: 00 02 00 00 09 00 28 11 01 00 00 01 01 00 00 00  ......(.........
    5420: 10 00 00 00 00 02 00 00 00 40 00 04 18 11 45 A4  .........@....E.
    5430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5450: 00 02 00 00 09 00 29 11 01 00 00 01 01 00 00 00  ......).........
    5460: 10 00 00 00 00 02 00 00 00 40 00 04 18 17 45 A4  .........@....E.
    5470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5490: 00 02 00 00 09 00 2A 11 01 00 00 01 01 00 00 00  ......*.........
    54A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 15 45 A4  .........@....E.
    54B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    54C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    54D0: 00 02 00 00 09 00 2B 11 01 00 00 01 01 00 00 00  ......+.........
    54E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 16 45 A4  .........@....E.
    54F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5510: 00 02 00 00 09 00 2C 11 01 00 00 01 01 00 00 00  ......,.........
    5520: 10 00 00 00 00 02 00 00 00 40 00 04 98 16 45 A4  .........@....E.
    5530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5550: 00 02 00 00 09 00 2D 11 01 00 00 01 01 00 00 00  ......-.........
    5560: 10 00 00 00 00 02 00 00 00 40 00 04 98 11 45 A4  .........@....E.
    5570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5590: 00 02 00 00 09 00 2E 11 01 00 00 01 01 00 00 00  ................
    55A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 14 45 A4  .........@....E.
    55B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    55C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    55D0: 00 02 00 00 09 00 2F 11 01 00 00 01 01 00 00 00  ....../.........
    55E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 15 45 A4  .........@....E.
    55F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5610: 00 02 00 00 09 00 30 11 01 00 00 01 01 00 00 00  ......0.........
    5620: 10 00 00 00 00 02 00 00 00 40 00 04 18 12 45 A4  .........@....E.
    5630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5650: 00 02 00 00 09 00 31 11 01 00 00 01 01 00 00 00  ......1.........
    5660: 10 00 00 00 00 02 00 00 00 40 00 04 18 14 45 A4  .........@....E.
    5670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5690: 00 02 00 00 09 00 32 11 01 00 00 01 01 00 00 00  ......2.........
    56A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 12 45 A4  .........@....E.
    56B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    56C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    56D0: 00 02 00 00 09 00 33 11 01 00 00 01 01 00 00 00  ......3.........
    56E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 13 45 A4  .........@....E.
    56F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5710: 00 02 00 00 09 00 34 11 01 00 00 01 01 00 00 00  ......4.........
    5720: 10 00 00 00 00 02 00 00 00 40 00 04 98 13 45 A4  .........@....E.
    5730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5750: 00 02 00 00 09 00 35 11 01 00 00 01 01 00 00 00  ......5.........
    5760: 10 00 00 00 00 02 00 00 00 40 00 04 18 00 45 A4  .........@....E.
    5770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5790: 00 02 00 00 09 00 36 11 01 00 00 01 01 00 00 00  ......6.........
    57A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 0F 45 A4  .........@....E.
    57B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    57C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    57D0: 00 02 00 00 09 00 37 11 01 00 00 01 01 00 00 00  ......7.........
    57E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0F 45 A4  .........@....E.
    57F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5810: 00 02 00 00 09 00 38 11 01 00 00 01 01 00 00 00  ......8.........
    5820: 10 00 00 00 00 02 00 00 00 40 00 04 18 0B 45 A4  .........@....E.
    5830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5850: 00 02 00 00 09 00 39 11 01 00 00 01 01 00 00 00  ......9.........
    5860: 10 00 00 00 00 02 00 00 00 40 00 04 18 0E 45 A4  .........@....E.
    5870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5890: 00 02 00 00 09 00 3A 11 01 00 00 01 01 00 00 00  ......:.........
    58A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0E 45 A4  .........@....E.
    58B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    58C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    58D0: 00 02 00 00 09 00 3B 11 01 00 00 01 01 00 00 00  ......;.........
    58E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0B 45 A4  .........@....E.
    58F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5910: 00 02 00 00 09 00 3C 11 01 00 00 01 01 00 00 00  ......<.........
    5920: 10 00 00 00 00 02 00 00 00 40 00 04 98 0D 45 A4  .........@....E.
    5930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5950: 00 02 00 00 09 00 3D 11 01 00 00 01 01 00 00 00  ......=.........
    5960: 10 00 00 00 00 02 00 00 00 40 00 04 18 0C 45 A4  .........@....E.
    5970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5990: 00 02 00 00 09 00 3E 11 01 00 00 01 01 00 00 00  ......>.........
    59A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0C 45 A4  .........@....E.
    59B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    59C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    59D0: 00 02 00 00 09 00 3F 11 01 00 00 01 01 00 00 00  ......?.........
    59E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 0D 45 A4  .........@....E.
    59F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5A10: 00 02 00 00 09 00 40 11 01 00 00 01 01 00 00 00  ......@.........
    5A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 00 45 A4  .........@....E.
    5A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5A50: 00 02 00 00 09 00 41 11 01 00 00 01 01 00 00 00  ......A.........
    5A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 0A 45 A4  .........@....E.
    5A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5A90: 00 02 00 00 09 00 42 11 01 00 00 01 01 00 00 00  ......B.........
    5AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0A 45 A4  .........@....E.
    5AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5AD0: 00 02 00 00 09 00 43 11 01 00 00 01 01 00 00 00  ......C.........
    5AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 07 45 A4  .........@....E.
    5AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5B10: 00 02 00 00 09 00 44 11 01 00 00 01 01 00 00 00  ......D.........
    5B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 09 45 A4  .........@....E.
    5B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5B50: 00 02 00 00 09 00 45 11 01 00 00 01 01 00 00 00  ......E.........
    5B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 08 45 A4  .........@....E.
    5B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5B90: 00 02 00 00 09 00 46 11 01 00 00 01 01 00 00 00  ......F.........
    5BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 08 45 A4  .........@....E.
    5BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5BD0: 00 02 00 00 09 00 47 11 01 00 00 01 01 00 00 00  ......G.........
    5BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 09 45 A4  .........@....E.
    5BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5C10: 00 02 00 00 09 00 48 11 01 00 00 01 01 00 00 00  ......H.........
    5C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 01 45 A4  .........@....E.
    5C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5C50: 00 02 00 00 09 00 49 11 01 00 00 01 01 00 00 00  ......I.........
    5C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 07 45 A4  .........@....E.
    5C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5C90: 00 02 00 00 09 00 4A 11 01 00 00 01 01 00 00 00  ......J.........
    5CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 05 45 A4  .........@....E.
    5CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5CD0: 00 02 00 00 09 00 4B 11 01 00 00 01 01 00 00 00  ......K.........
    5CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 06 45 A4  .........@....E.
    5CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5D10: 00 02 00 00 09 00 4C 11 01 00 00 01 01 00 00 00  ......L.........
    5D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 06 45 A4  .........@....E.
    5D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5D50: 00 02 00 00 09 00 4D 11 01 00 00 01 01 00 00 00  ......M.........
    5D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 01 45 A4  .........@....E.
    5D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5D90: 00 02 00 00 09 00 4E 11 01 00 00 01 01 00 00 00  ......N.........
    5DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 04 45 A4  .........@....E.
    5DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5DD0: 00 02 00 00 09 00 4F 11 01 00 00 01 01 00 00 00  ......O.........
    5DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 05 45 A4  .........@....E.
    5DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5E10: 00 02 00 00 09 00 50 11 01 00 00 01 01 00 00 00  ......P.........
    5E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 02 45 A4  .........@....E.
    5E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5E50: 00 02 00 00 09 00 51 11 01 00 00 01 01 00 00 00  ......Q.........
    5E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 04 45 A4  .........@....E.
    5E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5E90: 00 02 00 00 09 00 52 11 01 00 00 01 01 00 00 00  ......R.........
    5EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 02 45 A4  .........@....E.
    5EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5ED0: 00 02 00 00 09 00 53 11 01 00 00 01 01 00 00 00  ......S.........
    5EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 03 45 A4  .........@....E.
    5EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5F10: 00 02 00 00 09 00 54 11 01 00 00 01 01 00 00 00  ......T.........
    5F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 03 45 A4  .........@....E.
    5F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5F50: 00 02 00 00 09 00 55 11 01 00 00 01 01 00 00 00  ......U.........
    5F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 F0 44 A4  .........@....D.
    5F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5F90: 00 02 00 00 09 00 56 11 01 00 00 01 01 00 00 00  ......V.........
    5FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 FF 44 A4  .........@....D.
    5FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    5FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    5FD0: 00 02 00 00 09 00 57 11 01 00 00 01 01 00 00 00  ......W.........
    5FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FF 44 A4  .........@....D.
    5FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6010: 00 02 00 00 09 00 58 11 01 00 00 01 01 00 00 00  ......X.........
    6020: 10 00 00 00 00 02 00 00 00 40 00 04 18 FB 44 A4  .........@....D.
    6030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6050: 00 02 00 00 09 00 59 11 01 00 00 01 01 00 00 00  ......Y.........
    6060: 10 00 00 00 00 02 00 00 00 40 00 04 18 FE 44 A4  .........@....D.
    6070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6090: 00 02 00 00 09 00 5A 11 01 00 00 01 01 00 00 00  ......Z.........
    60A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FE 44 A4  .........@....D.
    60B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    60C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    60D0: 00 02 00 00 09 00 5B 11 01 00 00 01 01 00 00 00  ......[.........
    60E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FB 44 A4  .........@....D.
    60F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6110: 00 02 00 00 09 00 5C 11 01 00 00 01 01 00 00 00  ......\.........
    6120: 10 00 00 00 00 02 00 00 00 40 00 04 98 FD 44 A4  .........@....D.
    6130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6150: 00 02 00 00 09 00 5D 11 01 00 00 01 01 00 00 00  ......].........
    6160: 10 00 00 00 00 02 00 00 00 40 00 04 18 FC 44 A4  .........@....D.
    6170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6190: 00 02 00 00 09 00 5E 11 01 00 00 01 01 00 00 00  ......^.........
    61A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FC 44 A4  .........@....D.
    61B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    61C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    61D0: 00 02 00 00 09 00 5F 11 01 00 00 01 01 00 00 00  ......_.........
    61E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 FD 44 A4  .........@....D.
    61F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6210: 00 02 00 00 09 00 60 11 01 00 00 01 01 00 00 00  ......`.........
    6220: 10 00 00 00 00 02 00 00 00 40 00 04 98 F0 44 A4  .........@....D.
    6230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6250: 00 02 00 00 09 00 61 11 01 00 00 01 01 00 00 00  ......a.........
    6260: 10 00 00 00 00 02 00 00 00 40 00 04 18 FA 44 A4  .........@....D.
    6270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6290: 00 02 00 00 09 00 62 11 01 00 00 01 01 00 00 00  ......b.........
    62A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FA 44 A4  .........@....D.
    62B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    62C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    62D0: 00 02 00 00 09 00 63 11 01 00 00 01 01 00 00 00  ......c.........
    62E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F7 44 A4  .........@....D.
    62F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6310: 00 02 00 00 09 00 64 11 01 00 00 01 01 00 00 00  ......d.........
    6320: 10 00 00 00 00 02 00 00 00 40 00 04 98 F9 44 A4  .........@....D.
    6330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6350: 00 02 00 00 09 00 65 11 01 00 00 01 01 00 00 00  ......e.........
    6360: 10 00 00 00 00 02 00 00 00 40 00 04 18 F8 44 A4  .........@....D.
    6370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6390: 00 02 00 00 09 00 66 11 01 00 00 01 01 00 00 00  ......f.........
    63A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F8 44 A4  .........@....D.
    63B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    63C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    63D0: 00 02 00 00 09 00 67 11 01 00 00 01 01 00 00 00  ......g.........
    63E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F9 44 A4  .........@....D.
    63F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6410: 00 02 00 00 09 00 68 11 01 00 00 01 01 00 00 00  ......h.........
    6420: 10 00 00 00 00 02 00 00 00 40 00 04 18 F1 44 A4  .........@....D.
    6430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6450: 00 02 00 00 09 00 69 11 01 00 00 01 01 00 00 00  ......i.........
    6460: 10 00 00 00 00 02 00 00 00 40 00 04 18 F7 44 A4  .........@....D.
    6470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6490: 00 02 00 00 09 00 6A 11 01 00 00 01 01 00 00 00  ......j.........
    64A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F5 44 A4  .........@....D.
    64B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    64C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    64D0: 00 02 00 00 09 00 6B 11 01 00 00 01 01 00 00 00  ......k.........
    64E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F6 44 A4  .........@....D.
    64F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6510: 00 02 00 00 09 00 6C 11 01 00 00 01 01 00 00 00  ......l.........
    6520: 10 00 00 00 00 02 00 00 00 40 00 04 98 F6 44 A4  .........@....D.
    6530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6550: 00 02 00 00 09 00 6D 11 01 00 00 01 01 00 00 00  ......m.........
    6560: 10 00 00 00 00 02 00 00 00 40 00 04 98 F1 44 A4  .........@....D.
    6570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6590: 00 02 00 00 09 00 6E 11 01 00 00 01 01 00 00 00  ......n.........
    65A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F4 44 A4  .........@....D.
    65B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    65C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    65D0: 00 02 00 00 09 00 6F 11 01 00 00 01 01 00 00 00  ......o.........
    65E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F5 44 A4  .........@....D.
    65F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6610: 00 02 00 00 09 00 70 11 01 00 00 01 01 00 00 00  ......p.........
    6620: 10 00 00 00 00 02 00 00 00 40 00 04 18 F2 44 A4  .........@....D.
    6630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6650: 00 02 00 00 09 00 71 11 01 00 00 01 01 00 00 00  ......q.........
    6660: 10 00 00 00 00 02 00 00 00 40 00 04 18 F4 44 A4  .........@....D.
    6670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6690: 00 02 00 00 09 00 72 11 01 00 00 01 01 00 00 00  ......r.........
    66A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F2 44 A4  .........@....D.
    66B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    66C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    66D0: 00 02 00 00 09 00 73 11 01 00 00 01 01 00 00 00  ......s.........
    66E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F3 44 A4  .........@....D.
    66F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6710: 00 02 00 00 09 00 74 11 01 00 00 01 01 00 00 00  ......t.........
    6720: 10 00 00 00 00 02 00 00 00 40 00 04 98 F3 44 A4  .........@....D.
    6730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6750: 00 02 00 00 09 00 75 11 01 00 00 01 01 00 00 00  ......u.........
    6760: 10 00 00 00 00 02 00 00 00 40 00 04 18 E0 44 A4  .........@....D.
    6770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6790: 00 02 00 00 09 00 76 11 01 00 00 01 01 00 00 00  ......v.........
    67A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 EF 44 A4  .........@....D.
    67B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    67C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    67D0: 00 02 00 00 09 00 77 11 01 00 00 01 01 00 00 00  ......w.........
    67E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EF 44 A4  .........@....D.
    67F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6810: 00 02 00 00 09 00 78 11 01 00 00 01 01 00 00 00  ......x.........
    6820: 10 00 00 00 00 02 00 00 00 40 00 04 18 EB 44 A4  .........@....D.
    6830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6850: 00 02 00 00 09 00 79 11 01 00 00 01 01 00 00 00  ......y.........
    6860: 10 00 00 00 00 02 00 00 00 40 00 04 18 EE 44 A4  .........@....D.
    6870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6890: 00 02 00 00 09 00 7A 11 01 00 00 01 01 00 00 00  ......z.........
    68A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EE 44 A4  .........@....D.
    68B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    68C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    68D0: 00 02 00 00 09 00 7B 11 01 00 00 01 01 00 00 00  ......{.........
    68E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EB 44 A4  .........@....D.
    68F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6910: 00 02 00 00 09 00 7C 11 01 00 00 01 01 00 00 00  ......|.........
    6920: 10 00 00 00 00 02 00 00 00 40 00 04 98 ED 44 A4  .........@....D.
    6930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6950: 00 02 00 00 09 00 7D 11 01 00 00 01 01 00 00 00  ......}.........
    6960: 10 00 00 00 00 02 00 00 00 40 00 04 18 EC 44 A4  .........@....D.
    6970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6990: 00 02 00 00 09 00 7E 11 01 00 00 01 01 00 00 00  ......~.........
    69A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EC 44 A4  .........@....D.
    69B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    69C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    69D0: 00 02 00 00 09 00 7F 11 01 00 00 01 01 00 00 00  ................
    69E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 ED 44 A4  .........@....D.
    69F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6A10: 00 02 00 00 09 00 80 11 01 00 00 01 01 00 00 00  ................
    6A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E0 44 A4  .........@....D.
    6A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6A50: 00 02 00 00 09 00 81 11 01 00 00 01 01 00 00 00  ................
    6A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 EA 44 A4  .........@....D.
    6A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6A90: 00 02 00 00 09 00 82 11 01 00 00 01 01 00 00 00  ................
    6AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EA 44 A4  .........@....D.
    6AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6AD0: 00 02 00 00 09 00 83 11 01 00 00 01 01 00 00 00  ................
    6AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E7 44 A4  .........@....D.
    6AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6B10: 00 02 00 00 09 00 84 11 01 00 00 01 01 00 00 00  ................
    6B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E9 44 A4  .........@....D.
    6B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6B50: 00 02 00 00 09 00 85 11 01 00 00 01 01 00 00 00  ................
    6B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E8 44 A4  .........@....D.
    6B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6B90: 00 02 00 00 09 00 86 11 01 00 00 01 01 00 00 00  ................
    6BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E8 44 A4  .........@....D.
    6BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6BD0: 00 02 00 00 09 00 87 11 01 00 00 01 01 00 00 00  ................
    6BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E9 44 A4  .........@....D.
    6BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6C10: 00 02 00 00 09 00 88 11 01 00 00 01 01 00 00 00  ................
    6C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 E1 44 A4  .........@....D.
    6C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6C50: 00 02 00 00 09 00 89 11 01 00 00 01 01 00 00 00  ................
    6C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E7 44 A4  .........@....D.
    6C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6C90: 00 02 00 00 09 00 8A 11 01 00 00 01 01 00 00 00  ................
    6CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E5 44 A4  .........@....D.
    6CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6CD0: 00 02 00 00 09 00 8B 11 01 00 00 01 01 00 00 00  ................
    6CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E6 44 A4  .........@....D.
    6CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6D10: 00 02 00 00 09 00 8C 11 01 00 00 01 01 00 00 00  ................
    6D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E6 44 A4  .........@....D.
    6D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6D50: 00 02 00 00 09 00 8D 11 01 00 00 01 01 00 00 00  ................
    6D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 E1 44 A4  .........@....D.
    6D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6D90: 00 02 00 00 09 00 8E 11 01 00 00 01 01 00 00 00  ................
    6DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E4 44 A4  .........@....D.
    6DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6DD0: 00 02 00 00 09 00 8F 11 01 00 00 01 01 00 00 00  ................
    6DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E5 44 A4  .........@....D.
    6DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6E10: 00 02 00 00 09 00 90 11 01 00 00 01 01 00 00 00  ................
    6E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 E2 44 A4  .........@....D.
    6E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6E50: 00 02 00 00 09 00 91 11 01 00 00 01 01 00 00 00  ................
    6E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E4 44 A4  .........@....D.
    6E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6E90: 00 02 00 00 09 00 92 11 01 00 00 01 01 00 00 00  ................
    6EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E2 44 A4  .........@....D.
    6EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6ED0: 00 02 00 00 09 00 93 11 01 00 00 01 01 00 00 00  ................
    6EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E3 44 A4  .........@....D.
    6EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6F10: 00 02 00 00 09 00 94 11 01 00 00 01 01 00 00 00  ................
    6F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E3 44 A4  .........@....D.
    6F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6F50: 00 02 00 00 09 00 95 11 01 00 00 01 01 00 00 00  ................
    6F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 D0 44 A4  .........@....D.
    6F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6F90: 00 02 00 00 09 00 96 11 01 00 00 01 01 00 00 00  ................
    6FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DF 44 A4  .........@....D.
    6FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    6FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    6FD0: 00 02 00 00 09 00 97 11 01 00 00 01 01 00 00 00  ................
    6FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DF 44 A4  .........@....D.
    6FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7010: 00 02 00 00 09 00 98 11 01 00 00 01 01 00 00 00  ................
    7020: 10 00 00 00 00 02 00 00 00 40 00 04 18 DB 44 A4  .........@....D.
    7030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7050: 00 02 00 00 09 00 99 11 01 00 00 01 01 00 00 00  ................
    7060: 10 00 00 00 00 02 00 00 00 40 00 04 18 DE 44 A4  .........@....D.
    7070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7090: 00 02 00 00 09 00 9A 11 01 00 00 01 01 00 00 00  ................
    70A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DE 44 A4  .........@....D.
    70B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    70C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    70D0: 00 02 00 00 09 00 9B 11 01 00 00 01 01 00 00 00  ................
    70E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DB 44 A4  .........@....D.
    70F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7110: 00 02 00 00 09 00 9C 11 01 00 00 01 01 00 00 00  ................
    7120: 10 00 00 00 00 02 00 00 00 40 00 04 98 DD 44 A4  .........@....D.
    7130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7150: 00 02 00 00 09 00 9D 11 01 00 00 01 01 00 00 00  ................
    7160: 10 00 00 00 00 02 00 00 00 40 00 04 18 DC 44 A4  .........@....D.
    7170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7190: 00 02 00 00 09 00 9E 11 01 00 00 01 01 00 00 00  ................
    71A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DC 44 A4  .........@....D.
    71B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    71C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    71D0: 00 02 00 00 09 00 9F 11 01 00 00 01 01 00 00 00  ................
    71E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DD 44 A4  .........@....D.
    71F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7210: 00 02 00 00 09 00 A0 11 01 00 00 01 01 00 00 00  ................
    7220: 10 00 00 00 00 02 00 00 00 40 00 04 98 D0 44 A4  .........@....D.
    7230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7250: 00 02 00 00 09 00 A1 11 01 00 00 01 01 00 00 00  ................
    7260: 10 00 00 00 00 02 00 00 00 40 00 04 18 DA 44 A4  .........@....D.
    7270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7290: 00 02 00 00 09 00 A2 11 01 00 00 01 01 00 00 00  ................
    72A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DA 44 A4  .........@....D.
    72B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    72C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    72D0: 00 02 00 00 09 00 A3 11 01 00 00 01 01 00 00 00  ................
    72E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D7 44 A4  .........@....D.
    72F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7310: 00 02 00 00 09 00 A4 11 01 00 00 01 01 00 00 00  ................
    7320: 10 00 00 00 00 02 00 00 00 40 00 04 98 D9 44 A4  .........@....D.
    7330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7350: 00 02 00 00 09 00 A5 11 01 00 00 01 01 00 00 00  ................
    7360: 10 00 00 00 00 02 00 00 00 40 00 04 18 D8 44 A4  .........@....D.
    7370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7390: 00 02 00 00 09 00 A6 11 01 00 00 01 01 00 00 00  ................
    73A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D8 44 A4  .........@....D.
    73B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    73C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    73D0: 00 02 00 00 09 00 A7 11 01 00 00 01 01 00 00 00  ................
    73E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D9 44 A4  .........@....D.
    73F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7410: 00 02 00 00 09 00 A8 11 01 00 00 01 01 00 00 00  ................
    7420: 10 00 00 00 00 02 00 00 00 40 00 04 18 D1 44 A4  .........@....D.
    7430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7450: 00 02 00 00 09 00 A9 11 01 00 00 01 01 00 00 00  ................
    7460: 10 00 00 00 00 02 00 00 00 40 00 04 18 D7 44 A4  .........@....D.
    7470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7490: 00 02 00 00 09 00 AA 11 01 00 00 01 01 00 00 00  ................
    74A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D5 44 A4  .........@....D.
    74B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    74C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    74D0: 00 02 00 00 09 00 AB 11 01 00 00 01 01 00 00 00  ................
    74E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D6 44 A4  .........@....D.
    74F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7510: 00 02 00 00 09 00 AC 11 01 00 00 01 01 00 00 00  ................
    7520: 10 00 00 00 00 02 00 00 00 40 00 04 98 D6 44 A4  .........@....D.
    7530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7550: 00 02 00 00 09 00 AD 11 01 00 00 01 01 00 00 00  ................
    7560: 10 00 00 00 00 02 00 00 00 40 00 04 98 D1 44 A4  .........@....D.
    7570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7590: 00 02 00 00 09 00 AE 11 01 00 00 01 01 00 00 00  ................
    75A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D4 44 A4  .........@....D.
    75B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    75C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    75D0: 00 02 00 00 09 00 AF 11 01 00 00 01 01 00 00 00  ................
    75E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D5 44 A4  .........@....D.
    75F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7610: 00 02 00 00 09 00 B0 11 01 00 00 01 01 00 00 00  ................
    7620: 10 00 00 00 00 02 00 00 00 40 00 04 18 D2 44 A4  .........@....D.
    7630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7650: 00 02 00 00 09 00 B1 11 01 00 00 01 01 00 00 00  ................
    7660: 10 00 00 00 00 02 00 00 00 40 00 04 18 D4 44 A4  .........@....D.
    7670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7690: 00 02 00 00 09 00 B2 11 01 00 00 01 01 00 00 00  ................
    76A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D2 44 A4  .........@....D.
    76B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    76C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    76D0: 00 02 00 00 09 00 B3 11 01 00 00 01 01 00 00 00  ................
    76E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D3 44 A4  .........@....D.
    76F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7710: 00 02 00 00 09 00 B4 11 01 00 00 01 01 00 00 00  ................
    7720: 10 00 00 00 00 02 00 00 00 40 00 04 98 D3 44 A4  .........@....D.
    7730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7750: 00 02 00 00 09 00 B5 11 01 00 00 01 01 00 00 00  ................
    7760: 10 00 00 00 00 02 00 00 00 40 00 04 18 C0 44 A4  .........@....D.
    7770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7790: 00 02 00 00 09 00 B6 11 01 00 00 01 01 00 00 00  ................
    77A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CF 44 A4  .........@....D.
    77B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    77C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    77D0: 00 02 00 00 09 00 B7 11 01 00 00 01 01 00 00 00  ................
    77E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CF 44 A4  .........@....D.
    77F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7810: 00 02 00 00 09 00 B8 11 01 00 00 01 01 00 00 00  ................
    7820: 10 00 00 00 00 02 00 00 00 40 00 04 18 CB 44 A4  .........@....D.
    7830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7850: 00 02 00 00 09 00 B9 11 01 00 00 01 01 00 00 00  ................
    7860: 10 00 00 00 00 02 00 00 00 40 00 04 18 CE 44 A4  .........@....D.
    7870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7890: 00 02 00 00 09 00 BA 11 01 00 00 01 01 00 00 00  ................
    78A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CE 44 A4  .........@....D.
    78B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    78C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    78D0: 00 02 00 00 09 00 BB 11 01 00 00 01 01 00 00 00  ................
    78E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CB 44 A4  .........@....D.
    78F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7910: 00 02 00 00 09 00 BC 11 01 00 00 01 01 00 00 00  ................
    7920: 10 00 00 00 00 02 00 00 00 40 00 04 98 CD 44 A4  .........@....D.
    7930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7950: 00 02 00 00 09 00 BD 11 01 00 00 01 01 00 00 00  ................
    7960: 10 00 00 00 00 02 00 00 00 40 00 04 18 CC 44 A4  .........@....D.
    7970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7990: 00 02 00 00 09 00 BE 11 01 00 00 01 01 00 00 00  ................
    79A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CC 44 A4  .........@....D.
    79B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    79C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    79D0: 00 02 00 00 09 00 BF 11 01 00 00 01 01 00 00 00  ................
    79E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CD 44 A4  .........@....D.
    79F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7A10: 00 02 00 00 09 00 C0 11 01 00 00 01 01 00 00 00  ................
    7A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C0 44 A4  .........@....D.
    7A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7A50: 00 02 00 00 09 00 C1 11 01 00 00 01 01 00 00 00  ................
    7A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 CA 44 A4  .........@....D.
    7A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7A90: 00 02 00 00 09 00 C2 11 01 00 00 01 01 00 00 00  ................
    7AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CA 44 A4  .........@....D.
    7AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7AD0: 00 02 00 00 09 00 C3 11 01 00 00 01 01 00 00 00  ................
    7AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C7 44 A4  .........@....D.
    7AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7B10: 00 02 00 00 09 00 C4 11 01 00 00 01 01 00 00 00  ................
    7B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C9 44 A4  .........@....D.
    7B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7B50: 00 02 00 00 09 00 C5 11 01 00 00 01 01 00 00 00  ................
    7B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C8 44 A4  .........@....D.
    7B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7B90: 00 02 00 00 09 00 C6 11 01 00 00 01 01 00 00 00  ................
    7BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C8 44 A4  .........@....D.
    7BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7BD0: 00 02 00 00 09 00 C7 11 01 00 00 01 01 00 00 00  ................
    7BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C9 44 A4  .........@....D.
    7BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7C10: 00 02 00 00 09 00 C8 11 01 00 00 01 01 00 00 00  ................
    7C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 C1 44 A4  .........@....D.
    7C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7C50: 00 02 00 00 09 00 C9 11 01 00 00 01 01 00 00 00  ................
    7C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C7 44 A4  .........@....D.
    7C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7C90: 00 02 00 00 09 00 CA 11 01 00 00 01 01 00 00 00  ................
    7CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C5 44 A4  .........@....D.
    7CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7CD0: 00 02 00 00 09 00 CB 11 01 00 00 01 01 00 00 00  ................
    7CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C6 44 A4  .........@....D.
    7CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7D10: 00 02 00 00 09 00 CC 11 01 00 00 01 01 00 00 00  ................
    7D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C6 44 A4  .........@....D.
    7D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7D50: 00 02 00 00 09 00 CD 11 01 00 00 01 01 00 00 00  ................
    7D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 C1 44 A4  .........@....D.
    7D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7D90: 00 02 00 00 09 00 CE 11 01 00 00 01 01 00 00 00  ................
    7DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C4 44 A4  .........@....D.
    7DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7DD0: 00 02 00 00 09 00 CF 11 01 00 00 01 01 00 00 00  ................
    7DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C5 44 A4  .........@....D.
    7DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7E10: 00 02 00 00 09 00 D0 11 01 00 00 01 01 00 00 00  ................
    7E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 C2 44 A4  .........@....D.
    7E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7E50: 00 02 00 00 09 00 D1 11 01 00 00 01 01 00 00 00  ................
    7E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C4 44 A4  .........@....D.
    7E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7E90: 00 02 00 00 09 00 D2 11 01 00 00 01 01 00 00 00  ................
    7EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C2 44 A4  .........@....D.
    7EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7ED0: 00 02 00 00 09 00 D3 11 01 00 00 01 01 00 00 00  ................
    7EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C3 44 A4  .........@....D.
    7EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7F10: 00 02 00 00 09 00 D4 11 01 00 00 01 01 00 00 00  ................
    7F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C3 44 A4  .........@....D.
    7F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7F50: 00 02 00 00 09 00 D5 11 01 00 00 01 01 00 00 00  ................
    7F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 B0 44 A4  .........@....D.
    7F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7F90: 00 02 00 00 09 00 D6 11 01 00 00 01 01 00 00 00  ................
    7FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BF 44 A4  .........@....D.
    7FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    7FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    7FD0: 00 02 00 00 09 00 D7 11 01 00 00 01 01 00 00 00  ................
    7FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BF 44 A4  .........@....D.
    7FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8010: 00 02 00 00 09 00 D8 11 01 00 00 01 01 00 00 00  ................
    8020: 10 00 00 00 00 02 00 00 00 40 00 04 18 BB 44 A4  .........@....D.
    8030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8050: 00 02 00 00 09 00 D9 11 01 00 00 01 01 00 00 00  ................
    8060: 10 00 00 00 00 02 00 00 00 40 00 04 18 BE 44 A4  .........@....D.
    8070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8090: 00 02 00 00 09 00 DA 11 01 00 00 01 01 00 00 00  ................
    80A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BE 44 A4  .........@....D.
    80B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    80C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    80D0: 00 02 00 00 09 00 DB 11 01 00 00 01 01 00 00 00  ................
    80E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BB 44 A4  .........@....D.
    80F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8110: 00 02 00 00 09 00 DC 11 01 00 00 01 01 00 00 00  ................
    8120: 10 00 00 00 00 02 00 00 00 40 00 04 98 BD 44 A4  .........@....D.
    8130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8150: 00 02 00 00 09 00 DD 11 01 00 00 01 01 00 00 00  ................
    8160: 10 00 00 00 00 02 00 00 00 40 00 04 18 BC 44 A4  .........@....D.
    8170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8190: 00 02 00 00 09 00 DE 11 01 00 00 01 01 00 00 00  ................
    81A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BC 44 A4  .........@....D.
    81B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    81C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    81D0: 00 02 00 00 09 00 DF 11 01 00 00 01 01 00 00 00  ................
    81E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BD 44 A4  .........@....D.
    81F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8210: 00 02 00 00 09 00 E0 11 01 00 00 01 01 00 00 00  ................
    8220: 10 00 00 00 00 02 00 00 00 40 00 04 98 B0 44 A4  .........@....D.
    8230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8250: 00 02 00 00 09 00 E1 11 01 00 00 01 01 00 00 00  ................
    8260: 10 00 00 00 00 02 00 00 00 40 00 04 18 BA 44 A4  .........@....D.
    8270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8290: 00 02 00 00 09 00 E2 11 01 00 00 01 01 00 00 00  ................
    82A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BA 44 A4  .........@....D.
    82B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    82C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    82D0: 00 02 00 00 09 00 E3 11 01 00 00 01 01 00 00 00  ................
    82E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B7 44 A4  .........@....D.
    82F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8310: 00 02 00 00 09 00 E4 11 01 00 00 01 01 00 00 00  ................
    8320: 10 00 00 00 00 02 00 00 00 40 00 04 98 B9 44 A4  .........@....D.
    8330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8350: 00 02 00 00 09 00 E5 11 01 00 00 01 01 00 00 00  ................
    8360: 10 00 00 00 00 02 00 00 00 40 00 04 18 B8 44 A4  .........@....D.
    8370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8390: 00 02 00 00 09 00 E6 11 01 00 00 01 01 00 00 00  ................
    83A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B8 44 A4  .........@....D.
    83B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    83C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    83D0: 00 02 00 00 09 00 E7 11 01 00 00 01 01 00 00 00  ................
    83E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B9 44 A4  .........@....D.
    83F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8410: 00 02 00 00 09 00 E8 11 01 00 00 01 01 00 00 00  ................
    8420: 10 00 00 00 00 02 00 00 00 40 00 04 18 B1 44 A4  .........@....D.
    8430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8450: 00 02 00 00 09 00 E9 11 01 00 00 01 01 00 00 00  ................
    8460: 10 00 00 00 00 02 00 00 00 40 00 04 18 B7 44 A4  .........@....D.
    8470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8490: 00 02 00 00 09 00 EA 11 01 00 00 01 01 00 00 00  ................
    84A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B5 44 A4  .........@....D.
    84B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    84C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    84D0: 00 02 00 00 09 00 EB 11 01 00 00 01 01 00 00 00  ................
    84E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B6 44 A4  .........@....D.
    84F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8510: 00 02 00 00 09 00 EC 11 01 00 00 01 01 00 00 00  ................
    8520: 10 00 00 00 00 02 00 00 00 40 00 04 98 B6 44 A4  .........@....D.
    8530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8550: 00 02 00 00 09 00 ED 11 01 00 00 01 01 00 00 00  ................
    8560: 10 00 00 00 00 02 00 00 00 40 00 04 98 B1 44 A4  .........@....D.
    8570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8590: 00 02 00 00 09 00 EE 11 01 00 00 01 01 00 00 00  ................
    85A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B4 44 A4  .........@....D.
    85B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    85C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    85D0: 00 02 00 00 09 00 EF 11 01 00 00 01 01 00 00 00  ................
    85E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B5 44 A4  .........@....D.
    85F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8610: 00 02 00 00 09 00 F0 11 01 00 00 01 01 00 00 00  ................
    8620: 10 00 00 00 00 02 00 00 00 40 00 04 18 B2 44 A4  .........@....D.
    8630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8650: 00 02 00 00 09 00 F1 11 01 00 00 01 01 00 00 00  ................
    8660: 10 00 00 00 00 02 00 00 00 40 00 04 18 B4 44 A4  .........@....D.
    8670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8690: 00 02 00 00 09 00 F2 11 01 00 00 01 01 00 00 00  ................
    86A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B2 44 A4  .........@....D.
    86B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    86C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    86D0: 00 02 00 00 09 00 F3 11 01 00 00 01 01 00 00 00  ................
    86E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B3 44 A4  .........@....D.
    86F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8710: 00 02 00 00 09 00 F4 11 01 00 00 01 01 00 00 00  ................
    8720: 10 00 00 00 00 02 00 00 00 40 00 04 98 B3 44 A4  .........@....D.
    8730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8750: 00 02 00 00 09 00 F5 11 01 00 00 01 01 00 00 00  ................
    8760: 10 00 00 00 00 02 00 00 00 40 00 04 18 A0 44 A4  .........@....D.
    8770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8790: 00 02 00 00 09 00 F6 11 01 00 00 01 01 00 00 00  ................
    87A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AF 44 A4  .........@....D.
    87B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    87C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    87D0: 00 02 00 00 09 00 F7 11 01 00 00 01 01 00 00 00  ................
    87E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AF 44 A4  .........@....D.
    87F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8810: 00 02 00 00 09 00 F8 11 01 00 00 01 01 00 00 00  ................
    8820: 10 00 00 00 00 02 00 00 00 40 00 04 18 AB 44 A4  .........@....D.
    8830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8850: 00 02 00 00 09 00 F9 11 01 00 00 01 01 00 00 00  ................
    8860: 10 00 00 00 00 02 00 00 00 40 00 04 18 AE 44 A4  .........@....D.
    8870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8890: 00 02 00 00 09 00 FA 11 01 00 00 01 01 00 00 00  ................
    88A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AE 44 A4  .........@....D.
    88B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    88C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    88D0: 00 02 00 00 09 00 FB 11 01 00 00 01 01 00 00 00  ................
    88E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AB 44 A4  .........@....D.
    88F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8910: 00 02 00 00 09 00 FC 11 01 00 00 01 01 00 00 00  ................
    8920: 10 00 00 00 00 02 00 00 00 40 00 04 98 AD 44 A4  .........@....D.
    8930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8950: 00 02 00 00 09 00 FD 11 01 00 00 01 01 00 00 00  ................
    8960: 10 00 00 00 00 02 00 00 00 40 00 04 18 AC 44 A4  .........@....D.
    8970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8990: 00 02 00 00 09 00 FE 11 01 00 00 01 01 00 00 00  ................
    89A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AC 44 A4  .........@....D.
    89B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    89C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    89D0: 00 02 00 00 09 00 FF 11 01 00 00 01 01 00 00 00  ................
    89E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AD 44 A4  .........@....D.
    89F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8A10: 00 02 00 00 09 00 00 12 01 00 00 01 01 00 00 00  ................
    8A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A0 44 A4  .........@....D.
    8A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8A50: 00 02 00 00 09 00 01 12 01 00 00 01 01 00 00 00  ................
    8A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 AA 44 A4  .........@....D.
    8A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8A90: 00 02 00 00 09 00 02 12 01 00 00 01 01 00 00 00  ................
    8AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AA 44 A4  .........@....D.
    8AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8AD0: 00 02 00 00 09 00 03 12 01 00 00 01 01 00 00 00  ................
    8AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A7 44 A4  .........@....D.
    8AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8B10: 00 02 00 00 09 00 04 12 01 00 00 01 01 00 00 00  ................
    8B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A9 44 A4  .........@....D.
    8B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8B50: 00 02 00 00 09 00 05 12 01 00 00 01 01 00 00 00  ................
    8B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A8 44 A4  .........@....D.
    8B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8B90: 00 02 00 00 09 00 06 12 01 00 00 01 01 00 00 00  ................
    8BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A8 44 A4  .........@....D.
    8BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8BD0: 00 02 00 00 09 00 07 12 01 00 00 01 01 00 00 00  ................
    8BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A9 44 A4  .........@....D.
    8BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8C10: 00 02 00 00 09 00 08 12 01 00 00 01 01 00 00 00  ................
    8C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 A1 44 A4  .........@....D.
    8C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8C50: 00 02 00 00 09 00 09 12 01 00 00 01 01 00 00 00  ................
    8C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A7 44 A4  .........@....D.
    8C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8C90: 00 02 00 00 09 00 0A 12 01 00 00 01 01 00 00 00  ................
    8CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A5 44 A4  .........@....D.
    8CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8CD0: 00 02 00 00 09 00 0B 12 01 00 00 01 01 00 00 00  ................
    8CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A6 44 A4  .........@....D.
    8CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8D10: 00 02 00 00 09 00 0C 12 01 00 00 01 01 00 00 00  ................
    8D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A6 44 A4  .........@....D.
    8D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8D50: 00 02 00 00 09 00 0D 12 01 00 00 01 01 00 00 00  ................
    8D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 A1 44 A4  .........@....D.
    8D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8D90: 00 02 00 00 09 00 0E 12 01 00 00 01 01 00 00 00  ................
    8DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A4 44 A4  .........@....D.
    8DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8DD0: 00 02 00 00 09 00 0F 12 01 00 00 01 01 00 00 00  ................
    8DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A5 44 A4  .........@....D.
    8DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8E10: 00 02 00 00 09 00 10 12 01 00 00 01 01 00 00 00  ................
    8E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 A2 44 A4  .........@....D.
    8E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8E50: 00 02 00 00 09 00 11 12 01 00 00 01 01 00 00 00  ................
    8E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A4 44 A4  .........@....D.
    8E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8E90: 00 02 00 00 09 00 12 12 01 00 00 01 01 00 00 00  ................
    8EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A2 44 A4  .........@....D.
    8EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8ED0: 00 02 00 00 09 00 13 12 01 00 00 01 01 00 00 00  ................
    8EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A3 44 A4  .........@....D.
    8EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8F10: 00 02 00 00 09 00 14 12 01 00 00 01 01 00 00 00  ................
    8F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A3 44 A4  .........@....D.
    8F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8F50: 00 02 00 00 09 00 15 12 01 00 00 01 01 00 00 00  ................
    8F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 90 44 A4  .........@....D.
    8F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8F90: 00 02 00 00 09 00 16 12 01 00 00 01 01 00 00 00  ................
    8FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9F 44 A4  .........@....D.
    8FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    8FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    8FD0: 00 02 00 00 09 00 17 12 01 00 00 01 01 00 00 00  ................
    8FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9F 44 A4  .........@....D.
    8FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9010: 00 02 00 00 09 00 18 12 01 00 00 01 01 00 00 00  ................
    9020: 10 00 00 00 00 02 00 00 00 40 00 04 18 9B 44 A4  .........@....D.
    9030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9050: 00 02 00 00 09 00 19 12 01 00 00 01 01 00 00 00  ................
    9060: 10 00 00 00 00 02 00 00 00 40 00 04 18 9E 44 A4  .........@....D.
    9070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9090: 00 02 00 00 09 00 1A 12 01 00 00 01 01 00 00 00  ................
    90A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9E 44 A4  .........@....D.
    90B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    90C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    90D0: 00 02 00 00 09 00 1B 12 01 00 00 01 01 00 00 00  ................
    90E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9B 44 A4  .........@....D.
    90F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9110: 00 02 00 00 09 00 1C 12 01 00 00 01 01 00 00 00  ................
    9120: 10 00 00 00 00 02 00 00 00 40 00 04 98 9D 44 A4  .........@....D.
    9130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9150: 00 02 00 00 09 00 1D 12 01 00 00 01 01 00 00 00  ................
    9160: 10 00 00 00 00 02 00 00 00 40 00 04 18 9C 44 A4  .........@....D.
    9170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9190: 00 02 00 00 09 00 1E 12 01 00 00 01 01 00 00 00  ................
    91A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9C 44 A4  .........@....D.
    91B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    91C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    91D0: 00 02 00 00 09 00 1F 12 01 00 00 01 01 00 00 00  ................
    91E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9D 44 A4  .........@....D.
    91F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9210: 00 02 00 00 09 00 20 12 01 00 00 01 01 00 00 00  ...... .........
    9220: 10 00 00 00 00 02 00 00 00 40 00 04 98 90 44 A4  .........@....D.
    9230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9250: 00 02 00 00 09 00 21 12 01 00 00 01 01 00 00 00  ......!.........
    9260: 10 00 00 00 00 02 00 00 00 40 00 04 18 9A 44 A4  .........@....D.
    9270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9290: 00 02 00 00 09 00 22 12 01 00 00 01 01 00 00 00  ......".........
    92A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9A 44 A4  .........@....D.
    92B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    92C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    92D0: 00 02 00 00 09 00 23 12 01 00 00 01 01 00 00 00  ......#.........
    92E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 97 44 A4  .........@....D.
    92F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9310: 00 02 00 00 09 00 24 12 01 00 00 01 01 00 00 00  ......$.........
    9320: 10 00 00 00 00 02 00 00 00 40 00 04 98 99 44 A4  .........@....D.
    9330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9350: 00 02 00 00 09 00 25 12 01 00 00 01 01 00 00 00  ......%.........
    9360: 10 00 00 00 00 02 00 00 00 40 00 04 18 98 44 A4  .........@....D.
    9370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9390: 00 02 00 00 09 00 26 12 01 00 00 01 01 00 00 00  ......&.........
    93A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 98 44 A4  .........@....D.
    93B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    93C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    93D0: 00 02 00 00 09 00 27 12 01 00 00 01 01 00 00 00  ......'.........
    93E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 99 44 A4  .........@....D.
    93F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9410: 00 02 00 00 09 00 28 12 01 00 00 01 01 00 00 00  ......(.........
    9420: 10 00 00 00 00 02 00 00 00 40 00 04 18 91 44 A4  .........@....D.
    9430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9450: 00 02 00 00 09 00 29 12 01 00 00 01 01 00 00 00  ......).........
    9460: 10 00 00 00 00 02 00 00 00 40 00 04 18 97 44 A4  .........@....D.
    9470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9490: 00 02 00 00 09 00 2A 12 01 00 00 01 01 00 00 00  ......*.........
    94A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 95 44 A4  .........@....D.
    94B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    94C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    94D0: 00 02 00 00 09 00 2B 12 01 00 00 01 01 00 00 00  ......+.........
    94E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 96 44 A4  .........@....D.
    94F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9510: 00 02 00 00 09 00 2C 12 01 00 00 01 01 00 00 00  ......,.........
    9520: 10 00 00 00 00 02 00 00 00 40 00 04 98 96 44 A4  .........@....D.
    9530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9550: 00 02 00 00 09 00 2D 12 01 00 00 01 01 00 00 00  ......-.........
    9560: 10 00 00 00 00 02 00 00 00 40 00 04 98 91 44 A4  .........@....D.
    9570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9590: 00 02 00 00 09 00 2E 12 01 00 00 01 01 00 00 00  ................
    95A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 94 44 A4  .........@....D.
    95B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    95C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    95D0: 00 02 00 00 09 00 2F 12 01 00 00 01 01 00 00 00  ....../.........
    95E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 95 44 A4  .........@....D.
    95F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9610: 00 02 00 00 09 00 30 12 01 00 00 01 01 00 00 00  ......0.........
    9620: 10 00 00 00 00 02 00 00 00 40 00 04 18 92 44 A4  .........@....D.
    9630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9650: 00 02 00 00 09 00 31 12 01 00 00 01 01 00 00 00  ......1.........
    9660: 10 00 00 00 00 02 00 00 00 40 00 04 18 94 44 A4  .........@....D.
    9670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9690: 00 02 00 00 09 00 32 12 01 00 00 01 01 00 00 00  ......2.........
    96A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 92 44 A4  .........@....D.
    96B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    96C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    96D0: 00 02 00 00 09 00 33 12 01 00 00 01 01 00 00 00  ......3.........
    96E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 93 44 A4  .........@....D.
    96F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9710: 00 02 00 00 09 00 34 12 01 00 00 01 01 00 00 00  ......4.........
    9720: 10 00 00 00 00 02 00 00 00 40 00 04 98 93 44 A4  .........@....D.
    9730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9750: 00 02 00 00 09 00 35 12 01 00 00 01 01 00 00 00  ......5.........
    9760: 10 00 00 00 00 02 00 00 00 40 00 04 18 80 44 A4  .........@....D.
    9770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9790: 00 02 00 00 09 00 36 12 01 00 00 01 01 00 00 00  ......6.........
    97A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8F 44 A4  .........@....D.
    97B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    97C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    97D0: 00 02 00 00 09 00 37 12 01 00 00 01 01 00 00 00  ......7.........
    97E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8F 44 A4  .........@....D.
    97F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9810: 00 02 00 00 09 00 38 12 01 00 00 01 01 00 00 00  ......8.........
    9820: 10 00 00 00 00 02 00 00 00 40 00 04 18 8B 44 A4  .........@....D.
    9830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9850: 00 02 00 00 09 00 39 12 01 00 00 01 01 00 00 00  ......9.........
    9860: 10 00 00 00 00 02 00 00 00 40 00 04 18 8E 44 A4  .........@....D.
    9870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9890: 00 02 00 00 09 00 3A 12 01 00 00 01 01 00 00 00  ......:.........
    98A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8E 44 A4  .........@....D.
    98B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    98C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    98D0: 00 02 00 00 09 00 3B 12 01 00 00 01 01 00 00 00  ......;.........
    98E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8B 44 A4  .........@....D.
    98F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9910: 00 02 00 00 09 00 3C 12 01 00 00 01 01 00 00 00  ......<.........
    9920: 10 00 00 00 00 02 00 00 00 40 00 04 98 8D 44 A4  .........@....D.
    9930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9950: 00 02 00 00 09 00 3D 12 01 00 00 01 01 00 00 00  ......=.........
    9960: 10 00 00 00 00 02 00 00 00 40 00 04 18 8C 44 A4  .........@....D.
    9970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9990: 00 02 00 00 09 00 3E 12 01 00 00 01 01 00 00 00  ......>.........
    99A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8C 44 A4  .........@....D.
    99B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    99C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    99D0: 00 02 00 00 09 00 3F 12 01 00 00 01 01 00 00 00  ......?.........
    99E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8D 44 A4  .........@....D.
    99F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9A10: 00 02 00 00 09 00 40 12 01 00 00 01 01 00 00 00  ......@.........
    9A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 80 44 A4  .........@....D.
    9A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9A50: 00 02 00 00 09 00 41 12 01 00 00 01 01 00 00 00  ......A.........
    9A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 8A 44 A4  .........@....D.
    9A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9A90: 00 02 00 00 09 00 42 12 01 00 00 01 01 00 00 00  ......B.........
    9AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8A 44 A4  .........@....D.
    9AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9AD0: 00 02 00 00 09 00 43 12 01 00 00 01 01 00 00 00  ......C.........
    9AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 87 44 A4  .........@....D.
    9AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9B10: 00 02 00 00 09 00 44 12 01 00 00 01 01 00 00 00  ......D.........
    9B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 89 44 A4  .........@....D.
    9B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9B50: 00 02 00 00 09 00 45 12 01 00 00 01 01 00 00 00  ......E.........
    9B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 88 44 A4  .........@....D.
    9B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9B90: 00 02 00 00 09 00 46 12 01 00 00 01 01 00 00 00  ......F.........
    9BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 88 44 A4  .........@....D.
    9BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9BD0: 00 02 00 00 09 00 47 12 01 00 00 01 01 00 00 00  ......G.........
    9BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 89 44 A4  .........@....D.
    9BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9C10: 00 02 00 00 09 00 48 12 01 00 00 01 01 00 00 00  ......H.........
    9C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 81 44 A4  .........@....D.
    9C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9C50: 00 02 00 00 09 00 49 12 01 00 00 01 01 00 00 00  ......I.........
    9C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 87 44 A4  .........@....D.
    9C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9C90: 00 02 00 00 09 00 4A 12 01 00 00 01 01 00 00 00  ......J.........
    9CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 85 44 A4  .........@....D.
    9CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9CD0: 00 02 00 00 09 00 4B 12 01 00 00 01 01 00 00 00  ......K.........
    9CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 86 44 A4  .........@....D.
    9CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9D10: 00 02 00 00 09 00 4C 12 01 00 00 01 01 00 00 00  ......L.........
    9D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 86 44 A4  .........@....D.
    9D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9D50: 00 02 00 00 09 00 4D 12 01 00 00 01 01 00 00 00  ......M.........
    9D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 81 44 A4  .........@....D.
    9D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9D90: 00 02 00 00 09 00 4E 12 01 00 00 01 01 00 00 00  ......N.........
    9DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 84 44 A4  .........@....D.
    9DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9DD0: 00 02 00 00 09 00 4F 12 01 00 00 01 01 00 00 00  ......O.........
    9DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 85 44 A4  .........@....D.
    9DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9E10: 00 02 00 00 09 00 50 12 01 00 00 01 01 00 00 00  ......P.........
    9E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 82 44 A4  .........@....D.
    9E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9E50: 00 02 00 00 09 00 51 12 01 00 00 01 01 00 00 00  ......Q.........
    9E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 84 44 A4  .........@....D.
    9E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9E90: 00 02 00 00 09 00 52 12 01 00 00 01 01 00 00 00  ......R.........
    9EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 82 44 A4  .........@....D.
    9EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9ED0: 00 02 00 00 09 00 53 12 01 00 00 01 01 00 00 00  ......S.........
    9EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 83 44 A4  .........@....D.
    9EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9F10: 00 02 00 00 09 00 54 12 01 00 00 01 01 00 00 00  ......T.........
    9F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 83 44 A4  .........@....D.
    9F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9F50: 00 02 00 00 09 00 55 12 01 00 00 01 01 00 00 00  ......U.........
    9F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 70 44 A4  .........@...pD.
    9F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9F90: 00 02 00 00 09 00 56 12 01 00 00 01 01 00 00 00  ......V.........
    9FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7F 44 A4  .........@....D.
    9FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    9FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    9FD0: 00 02 00 00 09 00 57 12 01 00 00 01 01 00 00 00  ......W.........
    9FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7F 44 A4  .........@....D.
    9FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A010: 00 02 00 00 09 00 58 12 01 00 00 01 01 00 00 00  ......X.........
    A020: 10 00 00 00 00 02 00 00 00 40 00 04 18 7B 44 A4  .........@...{D.
    A030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A050: 00 02 00 00 09 00 59 12 01 00 00 01 01 00 00 00  ......Y.........
    A060: 10 00 00 00 00 02 00 00 00 40 00 04 18 7E 44 A4  .........@...~D.
    A070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A090: 00 02 00 00 09 00 5A 12 01 00 00 01 01 00 00 00  ......Z.........
    A0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7E 44 A4  .........@...~D.
    A0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A0D0: 00 02 00 00 09 00 5B 12 01 00 00 01 01 00 00 00  ......[.........
    A0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7B 44 A4  .........@...{D.
    A0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A110: 00 02 00 00 09 00 5C 12 01 00 00 01 01 00 00 00  ......\.........
    A120: 10 00 00 00 00 02 00 00 00 40 00 04 98 7D 44 A4  .........@...}D.
    A130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A150: 00 02 00 00 09 00 5D 12 01 00 00 01 01 00 00 00  ......].........
    A160: 10 00 00 00 00 02 00 00 00 40 00 04 18 7C 44 A4  .........@...|D.
    A170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A190: 00 02 00 00 09 00 5E 12 01 00 00 01 01 00 00 00  ......^.........
    A1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7C 44 A4  .........@...|D.
    A1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A1D0: 00 02 00 00 09 00 5F 12 01 00 00 01 01 00 00 00  ......_.........
    A1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7D 44 A4  .........@...}D.
    A1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A210: 00 02 00 00 09 00 60 12 01 00 00 01 01 00 00 00  ......`.........
    A220: 10 00 00 00 00 02 00 00 00 40 00 04 98 70 44 A4  .........@...pD.
    A230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A250: 00 02 00 00 09 00 61 12 01 00 00 01 01 00 00 00  ......a.........
    A260: 10 00 00 00 00 02 00 00 00 40 00 04 18 7A 44 A4  .........@...zD.
    A270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A290: 00 02 00 00 09 00 62 12 01 00 00 01 01 00 00 00  ......b.........
    A2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7A 44 A4  .........@...zD.
    A2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A2D0: 00 02 00 00 09 00 63 12 01 00 00 01 01 00 00 00  ......c.........
    A2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 77 44 A4  .........@...wD.
    A2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A310: 00 02 00 00 09 00 64 12 01 00 00 01 01 00 00 00  ......d.........
    A320: 10 00 00 00 00 02 00 00 00 40 00 04 98 79 44 A4  .........@...yD.
    A330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A350: 00 02 00 00 09 00 65 12 01 00 00 01 01 00 00 00  ......e.........
    A360: 10 00 00 00 00 02 00 00 00 40 00 04 18 78 44 A4  .........@...xD.
    A370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A390: 00 02 00 00 09 00 66 12 01 00 00 01 01 00 00 00  ......f.........
    A3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 78 44 A4  .........@...xD.
    A3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A3D0: 00 02 00 00 09 00 67 12 01 00 00 01 01 00 00 00  ......g.........
    A3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 79 44 A4  .........@...yD.
    A3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A410: 00 02 00 00 09 00 68 12 01 00 00 01 01 00 00 00  ......h.........
    A420: 10 00 00 00 00 02 00 00 00 40 00 04 18 71 44 A4  .........@...qD.
    A430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A450: 00 02 00 00 09 00 69 12 01 00 00 01 01 00 00 00  ......i.........
    A460: 10 00 00 00 00 02 00 00 00 40 00 04 18 77 44 A4  .........@...wD.
    A470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A490: 00 02 00 00 09 00 6A 12 01 00 00 01 01 00 00 00  ......j.........
    A4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 75 44 A4  .........@...uD.
    A4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A4D0: 00 02 00 00 09 00 6B 12 01 00 00 01 01 00 00 00  ......k.........
    A4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 76 44 A4  .........@...vD.
    A4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A510: 00 02 00 00 09 00 6C 12 01 00 00 01 01 00 00 00  ......l.........
    A520: 10 00 00 00 00 02 00 00 00 40 00 04 98 76 44 A4  .........@...vD.
    A530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A550: 00 02 00 00 09 00 6D 12 01 00 00 01 01 00 00 00  ......m.........
    A560: 10 00 00 00 00 02 00 00 00 40 00 04 98 71 44 A4  .........@...qD.
    A570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A590: 00 02 00 00 09 00 6E 12 01 00 00 01 01 00 00 00  ......n.........
    A5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 74 44 A4  .........@...tD.
    A5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A5D0: 00 02 00 00 09 00 6F 12 01 00 00 01 01 00 00 00  ......o.........
    A5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 75 44 A4  .........@...uD.
    A5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A610: 00 02 00 00 09 00 70 12 01 00 00 01 01 00 00 00  ......p.........
    A620: 10 00 00 00 00 02 00 00 00 40 00 04 18 72 44 A4  .........@...rD.
    A630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A650: 00 02 00 00 09 00 71 12 01 00 00 01 01 00 00 00  ......q.........
    A660: 10 00 00 00 00 02 00 00 00 40 00 04 18 74 44 A4  .........@...tD.
    A670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A690: 00 02 00 00 09 00 72 12 01 00 00 01 01 00 00 00  ......r.........
    A6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 72 44 A4  .........@...rD.
    A6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A6D0: 00 02 00 00 09 00 73 12 01 00 00 01 01 00 00 00  ......s.........
    A6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 73 44 A4  .........@...sD.
    A6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A710: 00 02 00 00 09 00 74 12 01 00 00 01 01 00 00 00  ......t.........
    A720: 10 00 00 00 00 02 00 00 00 40 00 04 98 73 44 A4  .........@...sD.
    A730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A750: 00 02 00 00 09 00 75 12 01 00 00 01 01 00 00 00  ......u.........
    A760: 10 00 00 00 00 02 00 00 00 40 00 04 18 60 44 A4  .........@...`D.
    A770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A790: 00 02 00 00 09 00 76 12 01 00 00 01 01 00 00 00  ......v.........
    A7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6F 44 A4  .........@...oD.
    A7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A7D0: 00 02 00 00 09 00 77 12 01 00 00 01 01 00 00 00  ......w.........
    A7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6F 44 A4  .........@...oD.
    A7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A810: 00 02 00 00 09 00 78 12 01 00 00 01 01 00 00 00  ......x.........
    A820: 10 00 00 00 00 02 00 00 00 40 00 04 18 6B 44 A4  .........@...kD.
    A830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A850: 00 02 00 00 09 00 79 12 01 00 00 01 01 00 00 00  ......y.........
    A860: 10 00 00 00 00 02 00 00 00 40 00 04 18 6E 44 A4  .........@...nD.
    A870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A890: 00 02 00 00 09 00 7A 12 01 00 00 01 01 00 00 00  ......z.........
    A8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6E 44 A4  .........@...nD.
    A8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A8D0: 00 02 00 00 09 00 7B 12 01 00 00 01 01 00 00 00  ......{.........
    A8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6B 44 A4  .........@...kD.
    A8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A910: 00 02 00 00 09 00 7C 12 01 00 00 01 01 00 00 00  ......|.........
    A920: 10 00 00 00 00 02 00 00 00 40 00 04 98 6D 44 A4  .........@...mD.
    A930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A950: 00 02 00 00 09 00 7D 12 01 00 00 01 01 00 00 00  ......}.........
    A960: 10 00 00 00 00 02 00 00 00 40 00 04 18 6C 44 A4  .........@...lD.
    A970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A990: 00 02 00 00 09 00 7E 12 01 00 00 01 01 00 00 00  ......~.........
    A9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6C 44 A4  .........@...lD.
    A9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    A9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    A9D0: 00 02 00 00 09 00 7F 12 01 00 00 01 01 00 00 00  ................
    A9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6D 44 A4  .........@...mD.
    A9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AA10: 00 02 00 00 09 00 80 12 01 00 00 01 01 00 00 00  ................
    AA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 60 44 A4  .........@...`D.
    AA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AA50: 00 02 00 00 09 00 81 12 01 00 00 01 01 00 00 00  ................
    AA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 6A 44 A4  .........@...jD.
    AA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AA90: 00 02 00 00 09 00 82 12 01 00 00 01 01 00 00 00  ................
    AAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6A 44 A4  .........@...jD.
    AAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AAD0: 00 02 00 00 09 00 83 12 01 00 00 01 01 00 00 00  ................
    AAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 67 44 A4  .........@...gD.
    AAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AB10: 00 02 00 00 09 00 84 12 01 00 00 01 01 00 00 00  ................
    AB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 69 44 A4  .........@...iD.
    AB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AB50: 00 02 00 00 09 00 85 12 01 00 00 01 01 00 00 00  ................
    AB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 68 44 A4  .........@...hD.
    AB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AB90: 00 02 00 00 09 00 86 12 01 00 00 01 01 00 00 00  ................
    ABA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 68 44 A4  .........@...hD.
    ABB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    ABC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    ABD0: 00 02 00 00 09 00 87 12 01 00 00 01 01 00 00 00  ................
    ABE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 69 44 A4  .........@...iD.
    ABF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AC10: 00 02 00 00 09 00 88 12 01 00 00 01 01 00 00 00  ................
    AC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 61 44 A4  .........@...aD.
    AC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AC50: 00 02 00 00 09 00 89 12 01 00 00 01 01 00 00 00  ................
    AC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 67 44 A4  .........@...gD.
    AC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AC90: 00 02 00 00 09 00 8A 12 01 00 00 01 01 00 00 00  ................
    ACA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 65 44 A4  .........@...eD.
    ACB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    ACC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    ACD0: 00 02 00 00 09 00 8B 12 01 00 00 01 01 00 00 00  ................
    ACE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 66 44 A4  .........@...fD.
    ACF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AD10: 00 02 00 00 09 00 8C 12 01 00 00 01 01 00 00 00  ................
    AD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 66 44 A4  .........@...fD.
    AD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AD50: 00 02 00 00 09 00 8D 12 01 00 00 01 01 00 00 00  ................
    AD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 61 44 A4  .........@...aD.
    AD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AD90: 00 02 00 00 09 00 8E 12 01 00 00 01 01 00 00 00  ................
    ADA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 64 44 A4  .........@...dD.
    ADB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    ADC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    ADD0: 00 02 00 00 09 00 8F 12 01 00 00 01 01 00 00 00  ................
    ADE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 65 44 A4  .........@...eD.
    ADF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AE10: 00 02 00 00 09 00 90 12 01 00 00 01 01 00 00 00  ................
    AE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 62 44 A4  .........@...bD.
    AE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AE50: 00 02 00 00 09 00 91 12 01 00 00 01 01 00 00 00  ................
    AE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 64 44 A4  .........@...dD.
    AE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AE90: 00 02 00 00 09 00 92 12 01 00 00 01 01 00 00 00  ................
    AEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 62 44 A4  .........@...bD.
    AEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AED0: 00 02 00 00 09 00 93 12 01 00 00 01 01 00 00 00  ................
    AEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 63 44 A4  .........@...cD.
    AEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AF10: 00 02 00 00 09 00 94 12 01 00 00 01 01 00 00 00  ................
    AF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 63 44 A4  .........@...cD.
    AF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AF50: 00 02 00 00 09 00 95 12 01 00 00 01 01 00 00 00  ................
    AF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 50 44 A4  .........@...PD.
    AF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AF90: 00 02 00 00 09 00 96 12 01 00 00 01 01 00 00 00  ................
    AFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5F 44 A4  .........@..._D.
    AFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    AFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    AFD0: 00 02 00 00 09 00 97 12 01 00 00 01 01 00 00 00  ................
    AFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5F 44 A4  .........@..._D.
    AFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B010: 00 02 00 00 09 00 98 12 01 00 00 01 01 00 00 00  ................
    B020: 10 00 00 00 00 02 00 00 00 40 00 04 18 5B 44 A4  .........@...[D.
    B030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B050: 00 02 00 00 09 00 99 12 01 00 00 01 01 00 00 00  ................
    B060: 10 00 00 00 00 02 00 00 00 40 00 04 18 5E 44 A4  .........@...^D.
    B070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B090: 00 02 00 00 09 00 9A 12 01 00 00 01 01 00 00 00  ................
    B0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5E 44 A4  .........@...^D.
    B0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B0D0: 00 02 00 00 09 00 9B 12 01 00 00 01 01 00 00 00  ................
    B0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5B 44 A4  .........@...[D.
    B0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B110: 00 02 00 00 09 00 9C 12 01 00 00 01 01 00 00 00  ................
    B120: 10 00 00 00 00 02 00 00 00 40 00 04 98 5D 44 A4  .........@...]D.
    B130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B150: 00 02 00 00 09 00 9D 12 01 00 00 01 01 00 00 00  ................
    B160: 10 00 00 00 00 02 00 00 00 40 00 04 18 5C 44 A4  .........@...\D.
    B170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B190: 00 02 00 00 09 00 9E 12 01 00 00 01 01 00 00 00  ................
    B1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5C 44 A4  .........@...\D.
    B1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B1D0: 00 02 00 00 09 00 9F 12 01 00 00 01 01 00 00 00  ................
    B1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5D 44 A4  .........@...]D.
    B1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B210: 00 02 00 00 09 00 A0 12 01 00 00 01 01 00 00 00  ................
    B220: 10 00 00 00 00 02 00 00 00 40 00 04 98 50 44 A4  .........@...PD.
    B230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B250: 00 02 00 00 09 00 A1 12 01 00 00 01 01 00 00 00  ................
    B260: 10 00 00 00 00 02 00 00 00 40 00 04 18 5A 44 A4  .........@...ZD.
    B270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B290: 00 02 00 00 09 00 A2 12 01 00 00 01 01 00 00 00  ................
    B2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5A 44 A4  .........@...ZD.
    B2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B2D0: 00 02 00 00 09 00 A3 12 01 00 00 01 01 00 00 00  ................
    B2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 57 44 A4  .........@...WD.
    B2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B310: 00 02 00 00 09 00 A4 12 01 00 00 01 01 00 00 00  ................
    B320: 10 00 00 00 00 02 00 00 00 40 00 04 98 59 44 A4  .........@...YD.
    B330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B350: 00 02 00 00 09 00 A5 12 01 00 00 01 01 00 00 00  ................
    B360: 10 00 00 00 00 02 00 00 00 40 00 04 18 58 44 A4  .........@...XD.
    B370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B390: 00 02 00 00 09 00 A6 12 01 00 00 01 01 00 00 00  ................
    B3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 58 44 A4  .........@...XD.
    B3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B3D0: 00 02 00 00 09 00 A7 12 01 00 00 01 01 00 00 00  ................
    B3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 59 44 A4  .........@...YD.
    B3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B410: 00 02 00 00 09 00 A8 12 01 00 00 01 01 00 00 00  ................
    B420: 10 00 00 00 00 02 00 00 00 40 00 04 18 51 44 A4  .........@...QD.
    B430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B450: 00 02 00 00 09 00 A9 12 01 00 00 01 01 00 00 00  ................
    B460: 10 00 00 00 00 02 00 00 00 40 00 04 18 57 44 A4  .........@...WD.
    B470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B490: 00 02 00 00 09 00 AA 12 01 00 00 01 01 00 00 00  ................
    B4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 55 44 A4  .........@...UD.
    B4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B4D0: 00 02 00 00 09 00 AB 12 01 00 00 01 01 00 00 00  ................
    B4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 56 44 A4  .........@...VD.
    B4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B510: 00 02 00 00 09 00 AC 12 01 00 00 01 01 00 00 00  ................
    B520: 10 00 00 00 00 02 00 00 00 40 00 04 98 56 44 A4  .........@...VD.
    B530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B550: 00 02 00 00 09 00 AD 12 01 00 00 01 01 00 00 00  ................
    B560: 10 00 00 00 00 02 00 00 00 40 00 04 98 51 44 A4  .........@...QD.
    B570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B590: 00 02 00 00 09 00 AE 12 01 00 00 01 01 00 00 00  ................
    B5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 54 44 A4  .........@...TD.
    B5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B5D0: 00 02 00 00 09 00 AF 12 01 00 00 01 01 00 00 00  ................
    B5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 55 44 A4  .........@...UD.
    B5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B610: 00 02 00 00 09 00 B0 12 01 00 00 01 01 00 00 00  ................
    B620: 10 00 00 00 00 02 00 00 00 40 00 04 18 52 44 A4  .........@...RD.
    B630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B650: 00 02 00 00 09 00 B1 12 01 00 00 01 01 00 00 00  ................
    B660: 10 00 00 00 00 02 00 00 00 40 00 04 18 54 44 A4  .........@...TD.
    B670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B690: 00 02 00 00 09 00 B2 12 01 00 00 01 01 00 00 00  ................
    B6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 52 44 A4  .........@...RD.
    B6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B6D0: 00 02 00 00 09 00 B3 12 01 00 00 01 01 00 00 00  ................
    B6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 53 44 A4  .........@...SD.
    B6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B710: 00 02 00 00 09 00 B4 12 01 00 00 01 01 00 00 00  ................
    B720: 10 00 00 00 00 02 00 00 00 40 00 04 98 53 44 A4  .........@...SD.
    B730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B750: 00 02 00 00 09 00 B5 12 01 00 00 01 01 00 00 00  ................
    B760: 10 00 00 00 00 02 00 00 00 40 00 04 18 D0 33 A4  .........@....3.
    B770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B790: 00 02 00 00 09 00 B6 12 01 00 00 01 01 00 00 00  ................
    B7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DF 33 A4  .........@....3.
    B7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B7D0: 00 02 00 00 09 00 B7 12 01 00 00 01 01 00 00 00  ................
    B7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DF 33 A4  .........@....3.
    B7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B810: 00 02 00 00 09 00 B8 12 01 00 00 01 01 00 00 00  ................
    B820: 10 00 00 00 00 02 00 00 00 40 00 04 18 DB 33 A4  .........@....3.
    B830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B850: 00 02 00 00 09 00 B9 12 01 00 00 01 01 00 00 00  ................
    B860: 10 00 00 00 00 02 00 00 00 40 00 04 18 DE 33 A4  .........@....3.
    B870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B890: 00 02 00 00 09 00 BA 12 01 00 00 01 01 00 00 00  ................
    B8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DE 33 A4  .........@....3.
    B8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B8D0: 00 02 00 00 09 00 BB 12 01 00 00 01 01 00 00 00  ................
    B8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DB 33 A4  .........@....3.
    B8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B910: 00 02 00 00 09 00 BC 12 01 00 00 01 01 00 00 00  ................
    B920: 10 00 00 00 00 02 00 00 00 40 00 04 98 DD 33 A4  .........@....3.
    B930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B950: 00 02 00 00 09 00 BD 12 01 00 00 01 01 00 00 00  ................
    B960: 10 00 00 00 00 02 00 00 00 40 00 04 18 DC 33 A4  .........@....3.
    B970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B990: 00 02 00 00 09 00 BE 12 01 00 00 01 01 00 00 00  ................
    B9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DC 33 A4  .........@....3.
    B9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    B9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    B9D0: 00 02 00 00 09 00 BF 12 01 00 00 01 01 00 00 00  ................
    B9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DD 33 A4  .........@....3.
    B9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BA10: 00 02 00 00 09 00 C0 12 01 00 00 01 01 00 00 00  ................
    BA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 D0 33 A4  .........@....3.
    BA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BA50: 00 02 00 00 09 00 C1 12 01 00 00 01 01 00 00 00  ................
    BA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 DA 33 A4  .........@....3.
    BA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BA90: 00 02 00 00 09 00 C2 12 01 00 00 01 01 00 00 00  ................
    BAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DA 33 A4  .........@....3.
    BAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BAD0: 00 02 00 00 09 00 C3 12 01 00 00 01 01 00 00 00  ................
    BAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D7 33 A4  .........@....3.
    BAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BB10: 00 02 00 00 09 00 C4 12 01 00 00 01 01 00 00 00  ................
    BB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 D9 33 A4  .........@....3.
    BB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BB50: 00 02 00 00 09 00 C5 12 01 00 00 01 01 00 00 00  ................
    BB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 D8 33 A4  .........@....3.
    BB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BB90: 00 02 00 00 09 00 C6 12 01 00 00 01 01 00 00 00  ................
    BBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D8 33 A4  .........@....3.
    BBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BBD0: 00 02 00 00 09 00 C7 12 01 00 00 01 01 00 00 00  ................
    BBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D9 33 A4  .........@....3.
    BBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BC10: 00 02 00 00 09 00 C8 12 01 00 00 01 01 00 00 00  ................
    BC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 D1 33 A4  .........@....3.
    BC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BC50: 00 02 00 00 09 00 C9 12 01 00 00 01 01 00 00 00  ................
    BC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 D7 33 A4  .........@....3.
    BC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BC90: 00 02 00 00 09 00 CA 12 01 00 00 01 01 00 00 00  ................
    BCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D5 33 A4  .........@....3.
    BCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BCD0: 00 02 00 00 09 00 CB 12 01 00 00 01 01 00 00 00  ................
    BCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D6 33 A4  .........@....3.
    BCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BD10: 00 02 00 00 09 00 CC 12 01 00 00 01 01 00 00 00  ................
    BD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 D6 33 A4  .........@....3.
    BD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BD50: 00 02 00 00 09 00 CD 12 01 00 00 01 01 00 00 00  ................
    BD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 D1 33 A4  .........@....3.
    BD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BD90: 00 02 00 00 09 00 CE 12 01 00 00 01 01 00 00 00  ................
    BDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D4 33 A4  .........@....3.
    BDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BDD0: 00 02 00 00 09 00 CF 12 01 00 00 01 01 00 00 00  ................
    BDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D5 33 A4  .........@....3.
    BDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BE10: 00 02 00 00 09 00 D0 12 01 00 00 01 01 00 00 00  ................
    BE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 D2 33 A4  .........@....3.
    BE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BE50: 00 02 00 00 09 00 D1 12 01 00 00 01 01 00 00 00  ................
    BE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 D4 33 A4  .........@....3.
    BE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BE90: 00 02 00 00 09 00 D2 12 01 00 00 01 01 00 00 00  ................
    BEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D2 33 A4  .........@....3.
    BEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BED0: 00 02 00 00 09 00 D3 12 01 00 00 01 01 00 00 00  ................
    BEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D3 33 A4  .........@....3.
    BEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BF10: 00 02 00 00 09 00 D4 12 01 00 00 01 01 00 00 00  ................
    BF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 D3 33 A4  .........@....3.
    BF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BF50: 00 02 00 00 09 00 D5 12 01 00 00 01 01 00 00 00  ................
    BF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C0 33 A4  .........@....3.
    BF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BF90: 00 02 00 00 09 00 D6 12 01 00 00 01 01 00 00 00  ................
    BFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CF 33 A4  .........@....3.
    BFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    BFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    BFD0: 00 02 00 00 09 00 D7 12 01 00 00 01 01 00 00 00  ................
    BFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CF 33 A4  .........@....3.
    BFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C010: 00 02 00 00 09 00 D8 12 01 00 00 01 01 00 00 00  ................
    C020: 10 00 00 00 00 02 00 00 00 40 00 04 18 CB 33 A4  .........@....3.
    C030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C050: 00 02 00 00 09 00 D9 12 01 00 00 01 01 00 00 00  ................
    C060: 10 00 00 00 00 02 00 00 00 40 00 04 18 CE 33 A4  .........@....3.
    C070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C090: 00 02 00 00 09 00 DA 12 01 00 00 01 01 00 00 00  ................
    C0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CE 33 A4  .........@....3.
    C0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C0D0: 00 02 00 00 09 00 DB 12 01 00 00 01 01 00 00 00  ................
    C0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CB 33 A4  .........@....3.
    C0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C110: 00 02 00 00 09 00 DC 12 01 00 00 01 01 00 00 00  ................
    C120: 10 00 00 00 00 02 00 00 00 40 00 04 98 CD 33 A4  .........@....3.
    C130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C150: 00 02 00 00 09 00 DD 12 01 00 00 01 01 00 00 00  ................
    C160: 10 00 00 00 00 02 00 00 00 40 00 04 18 CC 33 A4  .........@....3.
    C170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C190: 00 02 00 00 09 00 DE 12 01 00 00 01 01 00 00 00  ................
    C1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CC 33 A4  .........@....3.
    C1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C1D0: 00 02 00 00 09 00 DF 12 01 00 00 01 01 00 00 00  ................
    C1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CD 33 A4  .........@....3.
    C1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C210: 00 02 00 00 09 00 E0 12 01 00 00 01 01 00 00 00  ................
    C220: 10 00 00 00 00 02 00 00 00 40 00 04 98 C0 33 A4  .........@....3.
    C230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C250: 00 02 00 00 09 00 E1 12 01 00 00 01 01 00 00 00  ................
    C260: 10 00 00 00 00 02 00 00 00 40 00 04 18 CA 33 A4  .........@....3.
    C270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C290: 00 02 00 00 09 00 E2 12 01 00 00 01 01 00 00 00  ................
    C2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CA 33 A4  .........@....3.
    C2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C2D0: 00 02 00 00 09 00 E3 12 01 00 00 01 01 00 00 00  ................
    C2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C7 33 A4  .........@....3.
    C2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C310: 00 02 00 00 09 00 E4 12 01 00 00 01 01 00 00 00  ................
    C320: 10 00 00 00 00 02 00 00 00 40 00 04 98 C9 33 A4  .........@....3.
    C330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C350: 00 02 00 00 09 00 E5 12 01 00 00 01 01 00 00 00  ................
    C360: 10 00 00 00 00 02 00 00 00 40 00 04 18 C8 33 A4  .........@....3.
    C370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C390: 00 02 00 00 09 00 E6 12 01 00 00 01 01 00 00 00  ................
    C3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C8 33 A4  .........@....3.
    C3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C3D0: 00 02 00 00 09 00 E7 12 01 00 00 01 01 00 00 00  ................
    C3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C9 33 A4  .........@....3.
    C3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C410: 00 02 00 00 09 00 E8 12 01 00 00 01 01 00 00 00  ................
    C420: 10 00 00 00 00 02 00 00 00 40 00 04 18 C1 33 A4  .........@....3.
    C430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C450: 00 02 00 00 09 00 E9 12 01 00 00 01 01 00 00 00  ................
    C460: 10 00 00 00 00 02 00 00 00 40 00 04 18 C7 33 A4  .........@....3.
    C470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C490: 00 02 00 00 09 00 EA 12 01 00 00 01 01 00 00 00  ................
    C4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C5 33 A4  .........@....3.
    C4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C4D0: 00 02 00 00 09 00 EB 12 01 00 00 01 01 00 00 00  ................
    C4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C6 33 A4  .........@....3.
    C4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C510: 00 02 00 00 09 00 EC 12 01 00 00 01 01 00 00 00  ................
    C520: 10 00 00 00 00 02 00 00 00 40 00 04 98 C6 33 A4  .........@....3.
    C530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C550: 00 02 00 00 09 00 ED 12 01 00 00 01 01 00 00 00  ................
    C560: 10 00 00 00 00 02 00 00 00 40 00 04 98 C1 33 A4  .........@....3.
    C570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C590: 00 02 00 00 09 00 EE 12 01 00 00 01 01 00 00 00  ................
    C5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C4 33 A4  .........@....3.
    C5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C5D0: 00 02 00 00 09 00 EF 12 01 00 00 01 01 00 00 00  ................
    C5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C5 33 A4  .........@....3.
    C5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C610: 00 02 00 00 09 00 F0 12 01 00 00 01 01 00 00 00  ................
    C620: 10 00 00 00 00 02 00 00 00 40 00 04 18 C2 33 A4  .........@....3.
    C630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C650: 00 02 00 00 09 00 F1 12 01 00 00 01 01 00 00 00  ................
    C660: 10 00 00 00 00 02 00 00 00 40 00 04 18 C4 33 A4  .........@....3.
    C670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C690: 00 02 00 00 09 00 F2 12 01 00 00 01 01 00 00 00  ................
    C6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C2 33 A4  .........@....3.
    C6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C6D0: 00 02 00 00 09 00 F3 12 01 00 00 01 01 00 00 00  ................
    C6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C3 33 A4  .........@....3.
    C6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C710: 00 02 00 00 09 00 F4 12 01 00 00 01 01 00 00 00  ................
    C720: 10 00 00 00 00 02 00 00 00 40 00 04 98 C3 33 A4  .........@....3.
    C730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C750: 00 02 00 00 09 00 F5 12 01 00 00 01 01 00 00 00  ................
    C760: 10 00 00 00 00 02 00 00 00 40 00 04 18 B0 33 A4  .........@....3.
    C770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C790: 00 02 00 00 09 00 F6 12 01 00 00 01 01 00 00 00  ................
    C7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BF 33 A4  .........@....3.
    C7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C7D0: 00 02 00 00 09 00 F7 12 01 00 00 01 01 00 00 00  ................
    C7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BF 33 A4  .........@....3.
    C7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C810: 00 02 00 00 09 00 F8 12 01 00 00 01 01 00 00 00  ................
    C820: 10 00 00 00 00 02 00 00 00 40 00 04 18 BB 33 A4  .........@....3.
    C830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C850: 00 02 00 00 09 00 F9 12 01 00 00 01 01 00 00 00  ................
    C860: 10 00 00 00 00 02 00 00 00 40 00 04 18 BE 33 A4  .........@....3.
    C870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C890: 00 02 00 00 09 00 FA 12 01 00 00 01 01 00 00 00  ................
    C8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BE 33 A4  .........@....3.
    C8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C8D0: 00 02 00 00 09 00 FB 12 01 00 00 01 01 00 00 00  ................
    C8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BB 33 A4  .........@....3.
    C8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C910: 00 02 00 00 09 00 FC 12 01 00 00 01 01 00 00 00  ................
    C920: 10 00 00 00 00 02 00 00 00 40 00 04 98 BD 33 A4  .........@....3.
    C930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C950: 00 02 00 00 09 00 FD 12 01 00 00 01 01 00 00 00  ................
    C960: 10 00 00 00 00 02 00 00 00 40 00 04 18 BC 33 A4  .........@....3.
    C970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C990: 00 02 00 00 09 00 FE 12 01 00 00 01 01 00 00 00  ................
    C9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BC 33 A4  .........@....3.
    C9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    C9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    C9D0: 00 02 00 00 09 00 FF 12 01 00 00 01 01 00 00 00  ................
    C9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BD 33 A4  .........@....3.
    C9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CA10: 00 02 00 00 09 00 00 13 01 00 00 01 01 00 00 00  ................
    CA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 B0 33 A4  .........@....3.
    CA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CA50: 00 02 00 00 09 00 01 13 01 00 00 01 01 00 00 00  ................
    CA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 BA 33 A4  .........@....3.
    CA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CA90: 00 02 00 00 09 00 02 13 01 00 00 01 01 00 00 00  ................
    CAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BA 33 A4  .........@....3.
    CAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CAD0: 00 02 00 00 09 00 03 13 01 00 00 01 01 00 00 00  ................
    CAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B7 33 A4  .........@....3.
    CAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CB10: 00 02 00 00 09 00 04 13 01 00 00 01 01 00 00 00  ................
    CB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 B9 33 A4  .........@....3.
    CB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CB50: 00 02 00 00 09 00 05 13 01 00 00 01 01 00 00 00  ................
    CB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 B8 33 A4  .........@....3.
    CB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CB90: 00 02 00 00 09 00 06 13 01 00 00 01 01 00 00 00  ................
    CBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B8 33 A4  .........@....3.
    CBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CBD0: 00 02 00 00 09 00 07 13 01 00 00 01 01 00 00 00  ................
    CBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B9 33 A4  .........@....3.
    CBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CC10: 00 02 00 00 09 00 08 13 01 00 00 01 01 00 00 00  ................
    CC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 B1 33 A4  .........@....3.
    CC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CC50: 00 02 00 00 09 00 09 13 01 00 00 01 01 00 00 00  ................
    CC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 B7 33 A4  .........@....3.
    CC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CC90: 00 02 00 00 09 00 0A 13 01 00 00 01 01 00 00 00  ................
    CCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B5 33 A4  .........@....3.
    CCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CCD0: 00 02 00 00 09 00 0B 13 01 00 00 01 01 00 00 00  ................
    CCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B6 33 A4  .........@....3.
    CCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CD10: 00 02 00 00 09 00 0C 13 01 00 00 01 01 00 00 00  ................
    CD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 B6 33 A4  .........@....3.
    CD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CD50: 00 02 00 00 09 00 0D 13 01 00 00 01 01 00 00 00  ................
    CD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 B1 33 A4  .........@....3.
    CD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CD90: 00 02 00 00 09 00 0E 13 01 00 00 01 01 00 00 00  ................
    CDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B4 33 A4  .........@....3.
    CDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CDD0: 00 02 00 00 09 00 0F 13 01 00 00 01 01 00 00 00  ................
    CDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B5 33 A4  .........@....3.
    CDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CE10: 00 02 00 00 09 00 10 13 01 00 00 01 01 00 00 00  ................
    CE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 B2 33 A4  .........@....3.
    CE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CE50: 00 02 00 00 09 00 11 13 01 00 00 01 01 00 00 00  ................
    CE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 B4 33 A4  .........@....3.
    CE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CE90: 00 02 00 00 09 00 12 13 01 00 00 01 01 00 00 00  ................
    CEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B2 33 A4  .........@....3.
    CEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CED0: 00 02 00 00 09 00 13 13 01 00 00 01 01 00 00 00  ................
    CEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B3 33 A4  .........@....3.
    CEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CF10: 00 02 00 00 09 00 14 13 01 00 00 01 01 00 00 00  ................
    CF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 B3 33 A4  .........@....3.
    CF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CF50: 00 02 00 00 09 00 15 13 01 00 00 01 01 00 00 00  ................
    CF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A0 33 A4  .........@....3.
    CF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CF90: 00 02 00 00 09 00 16 13 01 00 00 01 01 00 00 00  ................
    CFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AF 33 A4  .........@....3.
    CFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    CFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    CFD0: 00 02 00 00 09 00 17 13 01 00 00 01 01 00 00 00  ................
    CFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AF 33 A4  .........@....3.
    CFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D010: 00 02 00 00 09 00 18 13 01 00 00 01 01 00 00 00  ................
    D020: 10 00 00 00 00 02 00 00 00 40 00 04 18 AB 33 A4  .........@....3.
    D030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D050: 00 02 00 00 09 00 19 13 01 00 00 01 01 00 00 00  ................
    D060: 10 00 00 00 00 02 00 00 00 40 00 04 18 AE 33 A4  .........@....3.
    D070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D090: 00 02 00 00 09 00 1A 13 01 00 00 01 01 00 00 00  ................
    D0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AE 33 A4  .........@....3.
    D0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D0D0: 00 02 00 00 09 00 1B 13 01 00 00 01 01 00 00 00  ................
    D0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AB 33 A4  .........@....3.
    D0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D110: 00 02 00 00 09 00 1C 13 01 00 00 01 01 00 00 00  ................
    D120: 10 00 00 00 00 02 00 00 00 40 00 04 98 AD 33 A4  .........@....3.
    D130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D150: 00 02 00 00 09 00 1D 13 01 00 00 01 01 00 00 00  ................
    D160: 10 00 00 00 00 02 00 00 00 40 00 04 18 AC 33 A4  .........@....3.
    D170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D190: 00 02 00 00 09 00 1E 13 01 00 00 01 01 00 00 00  ................
    D1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AC 33 A4  .........@....3.
    D1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D1D0: 00 02 00 00 09 00 1F 13 01 00 00 01 01 00 00 00  ................
    D1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AD 33 A4  .........@....3.
    D1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D210: 00 02 00 00 09 00 20 13 01 00 00 01 01 00 00 00  ...... .........
    D220: 10 00 00 00 00 02 00 00 00 40 00 04 98 A0 33 A4  .........@....3.
    D230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D250: 00 02 00 00 09 00 21 13 01 00 00 01 01 00 00 00  ......!.........
    D260: 10 00 00 00 00 02 00 00 00 40 00 04 18 AA 33 A4  .........@....3.
    D270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D290: 00 02 00 00 09 00 22 13 01 00 00 01 01 00 00 00  ......".........
    D2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AA 33 A4  .........@....3.
    D2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D2D0: 00 02 00 00 09 00 23 13 01 00 00 01 01 00 00 00  ......#.........
    D2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A7 33 A4  .........@....3.
    D2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D310: 00 02 00 00 09 00 24 13 01 00 00 01 01 00 00 00  ......$.........
    D320: 10 00 00 00 00 02 00 00 00 40 00 04 98 A9 33 A4  .........@....3.
    D330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D350: 00 02 00 00 09 00 25 13 01 00 00 01 01 00 00 00  ......%.........
    D360: 10 00 00 00 00 02 00 00 00 40 00 04 18 A8 33 A4  .........@....3.
    D370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D390: 00 02 00 00 09 00 26 13 01 00 00 01 01 00 00 00  ......&.........
    D3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A8 33 A4  .........@....3.
    D3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D3D0: 00 02 00 00 09 00 27 13 01 00 00 01 01 00 00 00  ......'.........
    D3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A9 33 A4  .........@....3.
    D3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D410: 00 02 00 00 09 00 28 13 01 00 00 01 01 00 00 00  ......(.........
    D420: 10 00 00 00 00 02 00 00 00 40 00 04 18 A1 33 A4  .........@....3.
    D430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D450: 00 02 00 00 09 00 29 13 01 00 00 01 01 00 00 00  ......).........
    D460: 10 00 00 00 00 02 00 00 00 40 00 04 18 A7 33 A4  .........@....3.
    D470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D490: 00 02 00 00 09 00 2A 13 01 00 00 01 01 00 00 00  ......*.........
    D4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A5 33 A4  .........@....3.
    D4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D4D0: 00 02 00 00 09 00 2B 13 01 00 00 01 01 00 00 00  ......+.........
    D4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A6 33 A4  .........@....3.
    D4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D510: 00 02 00 00 09 00 2C 13 01 00 00 01 01 00 00 00  ......,.........
    D520: 10 00 00 00 00 02 00 00 00 40 00 04 98 A6 33 A4  .........@....3.
    D530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D550: 00 02 00 00 09 00 2D 13 01 00 00 01 01 00 00 00  ......-.........
    D560: 10 00 00 00 00 02 00 00 00 40 00 04 98 A1 33 A4  .........@....3.
    D570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D590: 00 02 00 00 09 00 2E 13 01 00 00 01 01 00 00 00  ................
    D5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A4 33 A4  .........@....3.
    D5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D5D0: 00 02 00 00 09 00 2F 13 01 00 00 01 01 00 00 00  ....../.........
    D5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A5 33 A4  .........@....3.
    D5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D610: 00 02 00 00 09 00 30 13 01 00 00 01 01 00 00 00  ......0.........
    D620: 10 00 00 00 00 02 00 00 00 40 00 04 18 A2 33 A4  .........@....3.
    D630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D650: 00 02 00 00 09 00 31 13 01 00 00 01 01 00 00 00  ......1.........
    D660: 10 00 00 00 00 02 00 00 00 40 00 04 18 A4 33 A4  .........@....3.
    D670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D690: 00 02 00 00 09 00 32 13 01 00 00 01 01 00 00 00  ......2.........
    D6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A2 33 A4  .........@....3.
    D6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D6D0: 00 02 00 00 09 00 33 13 01 00 00 01 01 00 00 00  ......3.........
    D6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A3 33 A4  .........@....3.
    D6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D710: 00 02 00 00 09 00 34 13 01 00 00 01 01 00 00 00  ......4.........
    D720: 10 00 00 00 00 02 00 00 00 40 00 04 98 A3 33 A4  .........@....3.
    D730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D750: 00 02 00 00 09 00 35 13 01 00 00 01 01 00 00 00  ......5.........
    D760: 10 00 00 00 00 02 00 00 00 40 00 04 18 90 33 A4  .........@....3.
    D770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D790: 00 02 00 00 09 00 36 13 01 00 00 01 01 00 00 00  ......6.........
    D7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9F 33 A4  .........@....3.
    D7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D7D0: 00 02 00 00 09 00 37 13 01 00 00 01 01 00 00 00  ......7.........
    D7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9F 33 A4  .........@....3.
    D7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D810: 00 02 00 00 09 00 38 13 01 00 00 01 01 00 00 00  ......8.........
    D820: 10 00 00 00 00 02 00 00 00 40 00 04 18 9B 33 A4  .........@....3.
    D830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D850: 00 02 00 00 09 00 39 13 01 00 00 01 01 00 00 00  ......9.........
    D860: 10 00 00 00 00 02 00 00 00 40 00 04 18 9E 33 A4  .........@....3.
    D870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D890: 00 02 00 00 09 00 3A 13 01 00 00 01 01 00 00 00  ......:.........
    D8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9E 33 A4  .........@....3.
    D8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D8D0: 00 02 00 00 09 00 3B 13 01 00 00 01 01 00 00 00  ......;.........
    D8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9B 33 A4  .........@....3.
    D8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D910: 00 02 00 00 09 00 3C 13 01 00 00 01 01 00 00 00  ......<.........
    D920: 10 00 00 00 00 02 00 00 00 40 00 04 98 9D 33 A4  .........@....3.
    D930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D950: 00 02 00 00 09 00 3D 13 01 00 00 01 01 00 00 00  ......=.........
    D960: 10 00 00 00 00 02 00 00 00 40 00 04 18 9C 33 A4  .........@....3.
    D970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D990: 00 02 00 00 09 00 3E 13 01 00 00 01 01 00 00 00  ......>.........
    D9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9C 33 A4  .........@....3.
    D9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    D9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    D9D0: 00 02 00 00 09 00 3F 13 01 00 00 01 01 00 00 00  ......?.........
    D9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9D 33 A4  .........@....3.
    D9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DA10: 00 02 00 00 09 00 40 13 01 00 00 01 01 00 00 00  ......@.........
    DA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 90 33 A4  .........@....3.
    DA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DA50: 00 02 00 00 09 00 41 13 01 00 00 01 01 00 00 00  ......A.........
    DA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 9A 33 A4  .........@....3.
    DA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DA90: 00 02 00 00 09 00 42 13 01 00 00 01 01 00 00 00  ......B.........
    DAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9A 33 A4  .........@....3.
    DAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DAD0: 00 02 00 00 09 00 43 13 01 00 00 01 01 00 00 00  ......C.........
    DAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 97 33 A4  .........@....3.
    DAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DB10: 00 02 00 00 09 00 44 13 01 00 00 01 01 00 00 00  ......D.........
    DB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 99 33 A4  .........@....3.
    DB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DB50: 00 02 00 00 09 00 45 13 01 00 00 01 01 00 00 00  ......E.........
    DB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 98 33 A4  .........@....3.
    DB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DB90: 00 02 00 00 09 00 46 13 01 00 00 01 01 00 00 00  ......F.........
    DBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 98 33 A4  .........@....3.
    DBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DBD0: 00 02 00 00 09 00 47 13 01 00 00 01 01 00 00 00  ......G.........
    DBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 99 33 A4  .........@....3.
    DBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DC10: 00 02 00 00 09 00 48 13 01 00 00 01 01 00 00 00  ......H.........
    DC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 91 33 A4  .........@....3.
    DC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DC50: 00 02 00 00 09 00 49 13 01 00 00 01 01 00 00 00  ......I.........
    DC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 97 33 A4  .........@....3.
    DC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DC90: 00 02 00 00 09 00 4A 13 01 00 00 01 01 00 00 00  ......J.........
    DCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 95 33 A4  .........@....3.
    DCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DCD0: 00 02 00 00 09 00 4B 13 01 00 00 01 01 00 00 00  ......K.........
    DCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 96 33 A4  .........@....3.
    DCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DD10: 00 02 00 00 09 00 4C 13 01 00 00 01 01 00 00 00  ......L.........
    DD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 96 33 A4  .........@....3.
    DD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DD50: 00 02 00 00 09 00 4D 13 01 00 00 01 01 00 00 00  ......M.........
    DD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 91 33 A4  .........@....3.
    DD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DD90: 00 02 00 00 09 00 4E 13 01 00 00 01 01 00 00 00  ......N.........
    DDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 94 33 A4  .........@....3.
    DDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DDD0: 00 02 00 00 09 00 4F 13 01 00 00 01 01 00 00 00  ......O.........
    DDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 95 33 A4  .........@....3.
    DDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DE10: 00 02 00 00 09 00 50 13 01 00 00 01 01 00 00 00  ......P.........
    DE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 92 33 A4  .........@....3.
    DE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DE50: 00 02 00 00 09 00 51 13 01 00 00 01 01 00 00 00  ......Q.........
    DE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 94 33 A4  .........@....3.
    DE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DE90: 00 02 00 00 09 00 52 13 01 00 00 01 01 00 00 00  ......R.........
    DEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 92 33 A4  .........@....3.
    DEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DED0: 00 02 00 00 09 00 53 13 01 00 00 01 01 00 00 00  ......S.........
    DEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 93 33 A4  .........@....3.
    DEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DF10: 00 02 00 00 09 00 54 13 01 00 00 01 01 00 00 00  ......T.........
    DF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 93 33 A4  .........@....3.
    DF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DF50: 00 02 00 00 09 00 55 13 01 00 00 01 01 00 00 00  ......U.........
    DF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 80 33 A4  .........@....3.
    DF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DF90: 00 02 00 00 09 00 56 13 01 00 00 01 01 00 00 00  ......V.........
    DFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8F 33 A4  .........@....3.
    DFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    DFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    DFD0: 00 02 00 00 09 00 57 13 01 00 00 01 01 00 00 00  ......W.........
    DFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8F 33 A4  .........@....3.
    DFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E010: 00 02 00 00 09 00 58 13 01 00 00 01 01 00 00 00  ......X.........
    E020: 10 00 00 00 00 02 00 00 00 40 00 04 18 8B 33 A4  .........@....3.
    E030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E050: 00 02 00 00 09 00 59 13 01 00 00 01 01 00 00 00  ......Y.........
    E060: 10 00 00 00 00 02 00 00 00 40 00 04 18 8E 33 A4  .........@....3.
    E070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E090: 00 02 00 00 09 00 5A 13 01 00 00 01 01 00 00 00  ......Z.........
    E0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8E 33 A4  .........@....3.
    E0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E0D0: 00 02 00 00 09 00 5B 13 01 00 00 01 01 00 00 00  ......[.........
    E0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8B 33 A4  .........@....3.
    E0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E110: 00 02 00 00 09 00 5C 13 01 00 00 01 01 00 00 00  ......\.........
    E120: 10 00 00 00 00 02 00 00 00 40 00 04 98 8D 33 A4  .........@....3.
    E130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E150: 00 02 00 00 09 00 5D 13 01 00 00 01 01 00 00 00  ......].........
    E160: 10 00 00 00 00 02 00 00 00 40 00 04 18 8C 33 A4  .........@....3.
    E170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E190: 00 02 00 00 09 00 5E 13 01 00 00 01 01 00 00 00  ......^.........
    E1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8C 33 A4  .........@....3.
    E1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E1D0: 00 02 00 00 09 00 5F 13 01 00 00 01 01 00 00 00  ......_.........
    E1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8D 33 A4  .........@....3.
    E1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E210: 00 02 00 00 09 00 60 13 01 00 00 01 01 00 00 00  ......`.........
    E220: 10 00 00 00 00 02 00 00 00 40 00 04 98 80 33 A4  .........@....3.
    E230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E250: 00 02 00 00 09 00 61 13 01 00 00 01 01 00 00 00  ......a.........
    E260: 10 00 00 00 00 02 00 00 00 40 00 04 18 8A 33 A4  .........@....3.
    E270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E290: 00 02 00 00 09 00 62 13 01 00 00 01 01 00 00 00  ......b.........
    E2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8A 33 A4  .........@....3.
    E2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E2D0: 00 02 00 00 09 00 63 13 01 00 00 01 01 00 00 00  ......c.........
    E2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 87 33 A4  .........@....3.
    E2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E310: 00 02 00 00 09 00 64 13 01 00 00 01 01 00 00 00  ......d.........
    E320: 10 00 00 00 00 02 00 00 00 40 00 04 98 89 33 A4  .........@....3.
    E330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E350: 00 02 00 00 09 00 65 13 01 00 00 01 01 00 00 00  ......e.........
    E360: 10 00 00 00 00 02 00 00 00 40 00 04 18 88 33 A4  .........@....3.
    E370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E390: 00 02 00 00 09 00 66 13 01 00 00 01 01 00 00 00  ......f.........
    E3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 88 33 A4  .........@....3.
    E3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E3D0: 00 02 00 00 09 00 67 13 01 00 00 01 01 00 00 00  ......g.........
    E3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 89 33 A4  .........@....3.
    E3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E410: 00 02 00 00 09 00 68 13 01 00 00 01 01 00 00 00  ......h.........
    E420: 10 00 00 00 00 02 00 00 00 40 00 04 18 81 33 A4  .........@....3.
    E430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E450: 00 02 00 00 09 00 69 13 01 00 00 01 01 00 00 00  ......i.........
    E460: 10 00 00 00 00 02 00 00 00 40 00 04 18 87 33 A4  .........@....3.
    E470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E490: 00 02 00 00 09 00 6A 13 01 00 00 01 01 00 00 00  ......j.........
    E4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 85 33 A4  .........@....3.
    E4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E4D0: 00 02 00 00 09 00 6B 13 01 00 00 01 01 00 00 00  ......k.........
    E4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 86 33 A4  .........@....3.
    E4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E510: 00 02 00 00 09 00 6C 13 01 00 00 01 01 00 00 00  ......l.........
    E520: 10 00 00 00 00 02 00 00 00 40 00 04 98 86 33 A4  .........@....3.
    E530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E550: 00 02 00 00 09 00 6D 13 01 00 00 01 01 00 00 00  ......m.........
    E560: 10 00 00 00 00 02 00 00 00 40 00 04 98 81 33 A4  .........@....3.
    E570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E590: 00 02 00 00 09 00 6E 13 01 00 00 01 01 00 00 00  ......n.........
    E5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 84 33 A4  .........@....3.
    E5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E5D0: 00 02 00 00 09 00 6F 13 01 00 00 01 01 00 00 00  ......o.........
    E5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 85 33 A4  .........@....3.
    E5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E610: 00 02 00 00 09 00 70 13 01 00 00 01 01 00 00 00  ......p.........
    E620: 10 00 00 00 00 02 00 00 00 40 00 04 18 82 33 A4  .........@....3.
    E630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E650: 00 02 00 00 09 00 71 13 01 00 00 01 01 00 00 00  ......q.........
    E660: 10 00 00 00 00 02 00 00 00 40 00 04 18 84 33 A4  .........@....3.
    E670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E690: 00 02 00 00 09 00 72 13 01 00 00 01 01 00 00 00  ......r.........
    E6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 82 33 A4  .........@....3.
    E6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E6D0: 00 02 00 00 09 00 73 13 01 00 00 01 01 00 00 00  ......s.........
    E6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 83 33 A4  .........@....3.
    E6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E710: 00 02 00 00 09 00 74 13 01 00 00 01 01 00 00 00  ......t.........
    E720: 10 00 00 00 00 02 00 00 00 40 00 04 98 83 33 A4  .........@....3.
    E730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E750: 00 02 00 00 09 00 75 13 01 00 00 01 01 00 00 00  ......u.........
    E760: 10 00 00 00 00 02 00 00 00 40 00 04 18 70 33 A4  .........@...p3.
    E770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E790: 00 02 00 00 09 00 76 13 01 00 00 01 01 00 00 00  ......v.........
    E7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7F 33 A4  .........@....3.
    E7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E7D0: 00 02 00 00 09 00 77 13 01 00 00 01 01 00 00 00  ......w.........
    E7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7F 33 A4  .........@....3.
    E7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E810: 00 02 00 00 09 00 78 13 01 00 00 01 01 00 00 00  ......x.........
    E820: 10 00 00 00 00 02 00 00 00 40 00 04 18 7B 33 A4  .........@...{3.
    E830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E850: 00 02 00 00 09 00 79 13 01 00 00 01 01 00 00 00  ......y.........
    E860: 10 00 00 00 00 02 00 00 00 40 00 04 18 7E 33 A4  .........@...~3.
    E870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E890: 00 02 00 00 09 00 7A 13 01 00 00 01 01 00 00 00  ......z.........
    E8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7E 33 A4  .........@...~3.
    E8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E8D0: 00 02 00 00 09 00 7B 13 01 00 00 01 01 00 00 00  ......{.........
    E8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7B 33 A4  .........@...{3.
    E8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E910: 00 02 00 00 09 00 7C 13 01 00 00 01 01 00 00 00  ......|.........
    E920: 10 00 00 00 00 02 00 00 00 40 00 04 98 7D 33 A4  .........@...}3.
    E930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E950: 00 02 00 00 09 00 7D 13 01 00 00 01 01 00 00 00  ......}.........
    E960: 10 00 00 00 00 02 00 00 00 40 00 04 18 7C 33 A4  .........@...|3.
    E970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E990: 00 02 00 00 09 00 7E 13 01 00 00 01 01 00 00 00  ......~.........
    E9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7C 33 A4  .........@...|3.
    E9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    E9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    E9D0: 00 02 00 00 09 00 7F 13 01 00 00 01 01 00 00 00  ................
    E9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7D 33 A4  .........@...}3.
    E9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EA10: 00 02 00 00 09 00 80 13 01 00 00 01 01 00 00 00  ................
    EA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 70 33 A4  .........@...p3.
    EA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EA50: 00 02 00 00 09 00 81 13 01 00 00 01 01 00 00 00  ................
    EA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 7A 33 A4  .........@...z3.
    EA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EA90: 00 02 00 00 09 00 82 13 01 00 00 01 01 00 00 00  ................
    EAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7A 33 A4  .........@...z3.
    EAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EAD0: 00 02 00 00 09 00 83 13 01 00 00 01 01 00 00 00  ................
    EAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 77 33 A4  .........@...w3.
    EAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EB10: 00 02 00 00 09 00 84 13 01 00 00 01 01 00 00 00  ................
    EB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 79 33 A4  .........@...y3.
    EB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EB50: 00 02 00 00 09 00 85 13 01 00 00 01 01 00 00 00  ................
    EB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 78 33 A4  .........@...x3.
    EB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EB90: 00 02 00 00 09 00 86 13 01 00 00 01 01 00 00 00  ................
    EBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 78 33 A4  .........@...x3.
    EBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EBD0: 00 02 00 00 09 00 87 13 01 00 00 01 01 00 00 00  ................
    EBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 79 33 A4  .........@...y3.
    EBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EC10: 00 02 00 00 09 00 88 13 01 00 00 01 01 00 00 00  ................
    EC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 71 33 A4  .........@...q3.
    EC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EC50: 00 02 00 00 09 00 89 13 01 00 00 01 01 00 00 00  ................
    EC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 77 33 A4  .........@...w3.
    EC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EC90: 00 02 00 00 09 00 8A 13 01 00 00 01 01 00 00 00  ................
    ECA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 75 33 A4  .........@...u3.
    ECB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    ECC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    ECD0: 00 02 00 00 09 00 8B 13 01 00 00 01 01 00 00 00  ................
    ECE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 76 33 A4  .........@...v3.
    ECF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    ED00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    ED10: 00 02 00 00 09 00 8C 13 01 00 00 01 01 00 00 00  ................
    ED20: 10 00 00 00 00 02 00 00 00 40 00 04 98 76 33 A4  .........@...v3.
    ED30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    ED40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    ED50: 00 02 00 00 09 00 8D 13 01 00 00 01 01 00 00 00  ................
    ED60: 10 00 00 00 00 02 00 00 00 40 00 04 98 71 33 A4  .........@...q3.
    ED70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    ED80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    ED90: 00 02 00 00 09 00 8E 13 01 00 00 01 01 00 00 00  ................
    EDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 74 33 A4  .........@...t3.
    EDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EDD0: 00 02 00 00 09 00 8F 13 01 00 00 01 01 00 00 00  ................
    EDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 75 33 A4  .........@...u3.
    EDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EE10: 00 02 00 00 09 00 90 13 01 00 00 01 01 00 00 00  ................
    EE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 72 33 A4  .........@...r3.
    EE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EE50: 00 02 00 00 09 00 91 13 01 00 00 01 01 00 00 00  ................
    EE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 74 33 A4  .........@...t3.
    EE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EE90: 00 02 00 00 09 00 92 13 01 00 00 01 01 00 00 00  ................
    EEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 72 33 A4  .........@...r3.
    EEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EED0: 00 02 00 00 09 00 93 13 01 00 00 01 01 00 00 00  ................
    EEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 73 33 A4  .........@...s3.
    EEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EF10: 00 02 00 00 09 00 94 13 01 00 00 01 01 00 00 00  ................
    EF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 73 33 A4  .........@...s3.
    EF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EF50: 00 02 00 00 09 00 95 13 01 00 00 01 01 00 00 00  ................
    EF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 60 33 A4  .........@...`3.
    EF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EF90: 00 02 00 00 09 00 96 13 01 00 00 01 01 00 00 00  ................
    EFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6F 33 A4  .........@...o3.
    EFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    EFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    EFD0: 00 02 00 00 09 00 97 13 01 00 00 01 01 00 00 00  ................
    EFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6F 33 A4  .........@...o3.
    EFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F010: 00 02 00 00 09 00 98 13 01 00 00 01 01 00 00 00  ................
    F020: 10 00 00 00 00 02 00 00 00 40 00 04 18 6B 33 A4  .........@...k3.
    F030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F050: 00 02 00 00 09 00 99 13 01 00 00 01 01 00 00 00  ................
    F060: 10 00 00 00 00 02 00 00 00 40 00 04 18 6E 33 A4  .........@...n3.
    F070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F090: 00 02 00 00 09 00 9A 13 01 00 00 01 01 00 00 00  ................
    F0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6E 33 A4  .........@...n3.
    F0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F0D0: 00 02 00 00 09 00 9B 13 01 00 00 01 01 00 00 00  ................
    F0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6B 33 A4  .........@...k3.
    F0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F110: 00 02 00 00 09 00 9C 13 01 00 00 01 01 00 00 00  ................
    F120: 10 00 00 00 00 02 00 00 00 40 00 04 98 6D 33 A4  .........@...m3.
    F130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F150: 00 02 00 00 09 00 9D 13 01 00 00 01 01 00 00 00  ................
    F160: 10 00 00 00 00 02 00 00 00 40 00 04 18 6C 33 A4  .........@...l3.
    F170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F190: 00 02 00 00 09 00 9E 13 01 00 00 01 01 00 00 00  ................
    F1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6C 33 A4  .........@...l3.
    F1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F1D0: 00 02 00 00 09 00 9F 13 01 00 00 01 01 00 00 00  ................
    F1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6D 33 A4  .........@...m3.
    F1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F210: 00 02 00 00 09 00 A0 13 01 00 00 01 01 00 00 00  ................
    F220: 10 00 00 00 00 02 00 00 00 40 00 04 98 60 33 A4  .........@...`3.
    F230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F250: 00 02 00 00 09 00 A1 13 01 00 00 01 01 00 00 00  ................
    F260: 10 00 00 00 00 02 00 00 00 40 00 04 18 6A 33 A4  .........@...j3.
    F270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F290: 00 02 00 00 09 00 A2 13 01 00 00 01 01 00 00 00  ................
    F2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6A 33 A4  .........@...j3.
    F2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F2D0: 00 02 00 00 09 00 A3 13 01 00 00 01 01 00 00 00  ................
    F2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 67 33 A4  .........@...g3.
    F2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F310: 00 02 00 00 09 00 A4 13 01 00 00 01 01 00 00 00  ................
    F320: 10 00 00 00 00 02 00 00 00 40 00 04 98 69 33 A4  .........@...i3.
    F330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F350: 00 02 00 00 09 00 A5 13 01 00 00 01 01 00 00 00  ................
    F360: 10 00 00 00 00 02 00 00 00 40 00 04 18 68 33 A4  .........@...h3.
    F370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F390: 00 02 00 00 09 00 A6 13 01 00 00 01 01 00 00 00  ................
    F3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 68 33 A4  .........@...h3.
    F3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F3D0: 00 02 00 00 09 00 A7 13 01 00 00 01 01 00 00 00  ................
    F3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 69 33 A4  .........@...i3.
    F3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F410: 00 02 00 00 09 00 A8 13 01 00 00 01 01 00 00 00  ................
    F420: 10 00 00 00 00 02 00 00 00 40 00 04 18 61 33 A4  .........@...a3.
    F430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F450: 00 02 00 00 09 00 A9 13 01 00 00 01 01 00 00 00  ................
    F460: 10 00 00 00 00 02 00 00 00 40 00 04 18 67 33 A4  .........@...g3.
    F470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F490: 00 02 00 00 09 00 AA 13 01 00 00 01 01 00 00 00  ................
    F4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 65 33 A4  .........@...e3.
    F4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F4D0: 00 02 00 00 09 00 AB 13 01 00 00 01 01 00 00 00  ................
    F4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 66 33 A4  .........@...f3.
    F4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F510: 00 02 00 00 09 00 AC 13 01 00 00 01 01 00 00 00  ................
    F520: 10 00 00 00 00 02 00 00 00 40 00 04 98 66 33 A4  .........@...f3.
    F530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F550: 00 02 00 00 09 00 AD 13 01 00 00 01 01 00 00 00  ................
    F560: 10 00 00 00 00 02 00 00 00 40 00 04 98 61 33 A4  .........@...a3.
    F570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F590: 00 02 00 00 09 00 AE 13 01 00 00 01 01 00 00 00  ................
    F5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 64 33 A4  .........@...d3.
    F5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F5D0: 00 02 00 00 09 00 AF 13 01 00 00 01 01 00 00 00  ................
    F5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 65 33 A4  .........@...e3.
    F5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F610: 00 02 00 00 09 00 B0 13 01 00 00 01 01 00 00 00  ................
    F620: 10 00 00 00 00 02 00 00 00 40 00 04 18 62 33 A4  .........@...b3.
    F630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F650: 00 02 00 00 09 00 B1 13 01 00 00 01 01 00 00 00  ................
    F660: 10 00 00 00 00 02 00 00 00 40 00 04 18 64 33 A4  .........@...d3.
    F670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F690: 00 02 00 00 09 00 B2 13 01 00 00 01 01 00 00 00  ................
    F6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 62 33 A4  .........@...b3.
    F6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F6D0: 00 02 00 00 09 00 B3 13 01 00 00 01 01 00 00 00  ................
    F6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 63 33 A4  .........@...c3.
    F6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F710: 00 02 00 00 09 00 B4 13 01 00 00 01 01 00 00 00  ................
    F720: 10 00 00 00 00 02 00 00 00 40 00 04 98 63 33 A4  .........@...c3.
    F730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F750: 00 02 00 00 09 00 B5 13 01 00 00 01 01 00 00 00  ................
    F760: 10 00 00 00 00 02 00 00 00 40 00 04 18 50 33 A4  .........@...P3.
    F770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F790: 00 02 00 00 09 00 B6 13 01 00 00 01 01 00 00 00  ................
    F7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5F 33 A4  .........@..._3.
    F7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F7D0: 00 02 00 00 09 00 B7 13 01 00 00 01 01 00 00 00  ................
    F7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5F 33 A4  .........@..._3.
    F7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F810: 00 02 00 00 09 00 B8 13 01 00 00 01 01 00 00 00  ................
    F820: 10 00 00 00 00 02 00 00 00 40 00 04 18 5B 33 A4  .........@...[3.
    F830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F850: 00 02 00 00 09 00 B9 13 01 00 00 01 01 00 00 00  ................
    F860: 10 00 00 00 00 02 00 00 00 40 00 04 18 5E 33 A4  .........@...^3.
    F870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F890: 00 02 00 00 09 00 BA 13 01 00 00 01 01 00 00 00  ................
    F8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5E 33 A4  .........@...^3.
    F8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F8D0: 00 02 00 00 09 00 BB 13 01 00 00 01 01 00 00 00  ................
    F8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5B 33 A4  .........@...[3.
    F8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F910: 00 02 00 00 09 00 BC 13 01 00 00 01 01 00 00 00  ................
    F920: 10 00 00 00 00 02 00 00 00 40 00 04 98 5D 33 A4  .........@...]3.
    F930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F950: 00 02 00 00 09 00 BD 13 01 00 00 01 01 00 00 00  ................
    F960: 10 00 00 00 00 02 00 00 00 40 00 04 18 5C 33 A4  .........@...\3.
    F970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F990: 00 02 00 00 09 00 BE 13 01 00 00 01 01 00 00 00  ................
    F9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5C 33 A4  .........@...\3.
    F9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    F9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    F9D0: 00 02 00 00 09 00 BF 13 01 00 00 01 01 00 00 00  ................
    F9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5D 33 A4  .........@...]3.
    F9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FA10: 00 02 00 00 09 00 C0 13 01 00 00 01 01 00 00 00  ................
    FA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 50 33 A4  .........@...P3.
    FA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FA50: 00 02 00 00 09 00 C1 13 01 00 00 01 01 00 00 00  ................
    FA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 5A 33 A4  .........@...Z3.
    FA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FA90: 00 02 00 00 09 00 C2 13 01 00 00 01 01 00 00 00  ................
    FAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5A 33 A4  .........@...Z3.
    FAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FAD0: 00 02 00 00 09 00 C3 13 01 00 00 01 01 00 00 00  ................
    FAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 57 33 A4  .........@...W3.
    FAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FB10: 00 02 00 00 09 00 C4 13 01 00 00 01 01 00 00 00  ................
    FB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 59 33 A4  .........@...Y3.
    FB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FB50: 00 02 00 00 09 00 C5 13 01 00 00 01 01 00 00 00  ................
    FB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 58 33 A4  .........@...X3.
    FB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FB90: 00 02 00 00 09 00 C6 13 01 00 00 01 01 00 00 00  ................
    FBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 58 33 A4  .........@...X3.
    FBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FBD0: 00 02 00 00 09 00 C7 13 01 00 00 01 01 00 00 00  ................
    FBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 59 33 A4  .........@...Y3.
    FBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FC10: 00 02 00 00 09 00 C8 13 01 00 00 01 01 00 00 00  ................
    FC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 51 33 A4  .........@...Q3.
    FC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FC50: 00 02 00 00 09 00 C9 13 01 00 00 01 01 00 00 00  ................
    FC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 57 33 A4  .........@...W3.
    FC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FC90: 00 02 00 00 09 00 CA 13 01 00 00 01 01 00 00 00  ................
    FCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 55 33 A4  .........@...U3.
    FCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FCD0: 00 02 00 00 09 00 CB 13 01 00 00 01 01 00 00 00  ................
    FCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 56 33 A4  .........@...V3.
    FCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FD10: 00 02 00 00 09 00 CC 13 01 00 00 01 01 00 00 00  ................
    FD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 56 33 A4  .........@...V3.
    FD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FD50: 00 02 00 00 09 00 CD 13 01 00 00 01 01 00 00 00  ................
    FD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 51 33 A4  .........@...Q3.
    FD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FD90: 00 02 00 00 09 00 CE 13 01 00 00 01 01 00 00 00  ................
    FDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 54 33 A4  .........@...T3.
    FDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FDD0: 00 02 00 00 09 00 CF 13 01 00 00 01 01 00 00 00  ................
    FDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 55 33 A4  .........@...U3.
    FDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FE10: 00 02 00 00 09 00 D0 13 01 00 00 01 01 00 00 00  ................
    FE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 52 33 A4  .........@...R3.
    FE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FE50: 00 02 00 00 09 00 D1 13 01 00 00 01 01 00 00 00  ................
    FE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 54 33 A4  .........@...T3.
    FE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FE90: 00 02 00 00 09 00 D2 13 01 00 00 01 01 00 00 00  ................
    FEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 52 33 A4  .........@...R3.
    FEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FED0: 00 02 00 00 09 00 D3 13 01 00 00 01 01 00 00 00  ................
    FEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 53 33 A4  .........@...S3.
    FEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FF10: 00 02 00 00 09 00 D4 13 01 00 00 01 01 00 00 00  ................
    FF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 53 33 A4  .........@...S3.
    FF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FF50: 00 02 00 00 09 00 D5 13 01 00 00 01 01 00 00 00  ................
    FF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 40 33 A4  .........@...@3.
    FF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FF90: 00 02 00 00 09 00 D6 13 01 00 00 01 01 00 00 00  ................
    FFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4F 33 A4  .........@...O3.
    FFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
    FFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    FFD0: 00 02 00 00 09 00 D7 13 01 00 00 01 01 00 00 00  ................
    FFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4F 33 A4  .........@...O3.
    FFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10010: 00 02 00 00 09 00 D8 13 01 00 00 01 01 00 00 00  ................
   10020: 10 00 00 00 00 02 00 00 00 40 00 04 18 4B 33 A4  .........@...K3.
   10030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10050: 00 02 00 00 09 00 D9 13 01 00 00 01 01 00 00 00  ................
   10060: 10 00 00 00 00 02 00 00 00 40 00 04 18 4E 33 A4  .........@...N3.
   10070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10090: 00 02 00 00 09 00 DA 13 01 00 00 01 01 00 00 00  ................
   100A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4E 33 A4  .........@...N3.
   100B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   100C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   100D0: 00 02 00 00 09 00 DB 13 01 00 00 01 01 00 00 00  ................
   100E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4B 33 A4  .........@...K3.
   100F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10110: 00 02 00 00 09 00 DC 13 01 00 00 01 01 00 00 00  ................
   10120: 10 00 00 00 00 02 00 00 00 40 00 04 98 4D 33 A4  .........@...M3.
   10130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10150: 00 02 00 00 09 00 DD 13 01 00 00 01 01 00 00 00  ................
   10160: 10 00 00 00 00 02 00 00 00 40 00 04 18 4C 33 A4  .........@...L3.
   10170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10190: 00 02 00 00 09 00 DE 13 01 00 00 01 01 00 00 00  ................
   101A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4C 33 A4  .........@...L3.
   101B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   101C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   101D0: 00 02 00 00 09 00 DF 13 01 00 00 01 01 00 00 00  ................
   101E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4D 33 A4  .........@...M3.
   101F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10210: 00 02 00 00 09 00 E0 13 01 00 00 01 01 00 00 00  ................
   10220: 10 00 00 00 00 02 00 00 00 40 00 04 98 40 33 A4  .........@...@3.
   10230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10250: 00 02 00 00 09 00 E1 13 01 00 00 01 01 00 00 00  ................
   10260: 10 00 00 00 00 02 00 00 00 40 00 04 18 4A 33 A4  .........@...J3.
   10270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10290: 00 02 00 00 09 00 E2 13 01 00 00 01 01 00 00 00  ................
   102A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4A 33 A4  .........@...J3.
   102B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   102C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   102D0: 00 02 00 00 09 00 E3 13 01 00 00 01 01 00 00 00  ................
   102E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 47 33 A4  .........@...G3.
   102F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10310: 00 02 00 00 09 00 E4 13 01 00 00 01 01 00 00 00  ................
   10320: 10 00 00 00 00 02 00 00 00 40 00 04 98 49 33 A4  .........@...I3.
   10330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10350: 00 02 00 00 09 00 E5 13 01 00 00 01 01 00 00 00  ................
   10360: 10 00 00 00 00 02 00 00 00 40 00 04 18 48 33 A4  .........@...H3.
   10370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10390: 00 02 00 00 09 00 E6 13 01 00 00 01 01 00 00 00  ................
   103A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 48 33 A4  .........@...H3.
   103B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   103C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   103D0: 00 02 00 00 09 00 E7 13 01 00 00 01 01 00 00 00  ................
   103E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 49 33 A4  .........@...I3.
   103F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10410: 00 02 00 00 09 00 E8 13 01 00 00 01 01 00 00 00  ................
   10420: 10 00 00 00 00 02 00 00 00 40 00 04 18 41 33 A4  .........@...A3.
   10430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10450: 00 02 00 00 09 00 E9 13 01 00 00 01 01 00 00 00  ................
   10460: 10 00 00 00 00 02 00 00 00 40 00 04 18 47 33 A4  .........@...G3.
   10470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10490: 00 02 00 00 09 00 EA 13 01 00 00 01 01 00 00 00  ................
   104A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 45 33 A4  .........@...E3.
   104B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   104C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   104D0: 00 02 00 00 09 00 EB 13 01 00 00 01 01 00 00 00  ................
   104E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 46 33 A4  .........@...F3.
   104F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10510: 00 02 00 00 09 00 EC 13 01 00 00 01 01 00 00 00  ................
   10520: 10 00 00 00 00 02 00 00 00 40 00 04 98 46 33 A4  .........@...F3.
   10530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10550: 00 02 00 00 09 00 ED 13 01 00 00 01 01 00 00 00  ................
   10560: 10 00 00 00 00 02 00 00 00 40 00 04 98 41 33 A4  .........@...A3.
   10570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10590: 00 02 00 00 09 00 EE 13 01 00 00 01 01 00 00 00  ................
   105A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 44 33 A4  .........@...D3.
   105B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   105C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   105D0: 00 02 00 00 09 00 EF 13 01 00 00 01 01 00 00 00  ................
   105E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 45 33 A4  .........@...E3.
   105F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10610: 00 02 00 00 09 00 F0 13 01 00 00 01 01 00 00 00  ................
   10620: 10 00 00 00 00 02 00 00 00 40 00 04 18 42 33 A4  .........@...B3.
   10630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10650: 00 02 00 00 09 00 F1 13 01 00 00 01 01 00 00 00  ................
   10660: 10 00 00 00 00 02 00 00 00 40 00 04 18 44 33 A4  .........@...D3.
   10670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10690: 00 02 00 00 09 00 F2 13 01 00 00 01 01 00 00 00  ................
   106A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 42 33 A4  .........@...B3.
   106B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   106C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   106D0: 00 02 00 00 09 00 F3 13 01 00 00 01 01 00 00 00  ................
   106E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 43 33 A4  .........@...C3.
   106F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10710: 00 02 00 00 09 00 F4 13 01 00 00 01 01 00 00 00  ................
   10720: 10 00 00 00 00 02 00 00 00 40 00 04 98 43 33 A4  .........@...C3.
   10730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10750: 00 02 00 00 09 00 F5 13 01 00 00 01 01 00 00 00  ................
   10760: 10 00 00 00 00 02 00 00 00 40 00 04 18 30 33 A4  .........@...03.
   10770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10790: 00 02 00 00 09 00 F6 13 01 00 00 01 01 00 00 00  ................
   107A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3F 33 A4  .........@...?3.
   107B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   107C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   107D0: 00 02 00 00 09 00 F7 13 01 00 00 01 01 00 00 00  ................
   107E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3F 33 A4  .........@...?3.
   107F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10810: 00 02 00 00 09 00 F8 13 01 00 00 01 01 00 00 00  ................
   10820: 10 00 00 00 00 02 00 00 00 40 00 04 18 3B 33 A4  .........@...;3.
   10830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10850: 00 02 00 00 09 00 F9 13 01 00 00 01 01 00 00 00  ................
   10860: 10 00 00 00 00 02 00 00 00 40 00 04 18 3E 33 A4  .........@...>3.
   10870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10890: 00 02 00 00 09 00 FA 13 01 00 00 01 01 00 00 00  ................
   108A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3E 33 A4  .........@...>3.
   108B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   108C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   108D0: 00 02 00 00 09 00 FB 13 01 00 00 01 01 00 00 00  ................
   108E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3B 33 A4  .........@...;3.
   108F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10910: 00 02 00 00 09 00 FC 13 01 00 00 01 01 00 00 00  ................
   10920: 10 00 00 00 00 02 00 00 00 40 00 04 98 3D 33 A4  .........@...=3.
   10930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10950: 00 02 00 00 09 00 FD 13 01 00 00 01 01 00 00 00  ................
   10960: 10 00 00 00 00 02 00 00 00 40 00 04 18 3C 33 A4  .........@...<3.
   10970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10990: 00 02 00 00 09 00 FE 13 01 00 00 01 01 00 00 00  ................
   109A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3C 33 A4  .........@...<3.
   109B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   109C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   109D0: 00 02 00 00 09 00 FF 13 01 00 00 01 01 00 00 00  ................
   109E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3D 33 A4  .........@...=3.
   109F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10A10: 00 02 00 00 09 00 00 14 01 00 00 01 01 00 00 00  ................
   10A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 30 33 A4  .........@...03.
   10A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10A50: 00 02 00 00 09 00 01 14 01 00 00 01 01 00 00 00  ................
   10A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 3A 33 A4  .........@...:3.
   10A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10A90: 00 02 00 00 09 00 02 14 01 00 00 01 01 00 00 00  ................
   10AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3A 33 A4  .........@...:3.
   10AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10AD0: 00 02 00 00 09 00 03 14 01 00 00 01 01 00 00 00  ................
   10AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 37 33 A4  .........@...73.
   10AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10B10: 00 02 00 00 09 00 04 14 01 00 00 01 01 00 00 00  ................
   10B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 39 33 A4  .........@...93.
   10B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10B50: 00 02 00 00 09 00 05 14 01 00 00 01 01 00 00 00  ................
   10B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 38 33 A4  .........@...83.
   10B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10B90: 00 02 00 00 09 00 06 14 01 00 00 01 01 00 00 00  ................
   10BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 38 33 A4  .........@...83.
   10BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10BD0: 00 02 00 00 09 00 07 14 01 00 00 01 01 00 00 00  ................
   10BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 39 33 A4  .........@...93.
   10BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10C10: 00 02 00 00 09 00 08 14 01 00 00 01 01 00 00 00  ................
   10C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 31 33 A4  .........@...13.
   10C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10C50: 00 02 00 00 09 00 09 14 01 00 00 01 01 00 00 00  ................
   10C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 37 33 A4  .........@...73.
   10C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10C90: 00 02 00 00 09 00 0A 14 01 00 00 01 01 00 00 00  ................
   10CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 35 33 A4  .........@...53.
   10CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10CD0: 00 02 00 00 09 00 0B 14 01 00 00 01 01 00 00 00  ................
   10CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 36 33 A4  .........@...63.
   10CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10D10: 00 02 00 00 09 00 0C 14 01 00 00 01 01 00 00 00  ................
   10D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 36 33 A4  .........@...63.
   10D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10D50: 00 02 00 00 09 00 0D 14 01 00 00 01 01 00 00 00  ................
   10D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 31 33 A4  .........@...13.
   10D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10D90: 00 02 00 00 09 00 0E 14 01 00 00 01 01 00 00 00  ................
   10DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 34 33 A4  .........@...43.
   10DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10DD0: 00 02 00 00 09 00 0F 14 01 00 00 01 01 00 00 00  ................
   10DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 35 33 A4  .........@...53.
   10DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10E10: 00 02 00 00 09 00 10 14 01 00 00 01 01 00 00 00  ................
   10E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 32 33 A4  .........@...23.
   10E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10E50: 00 02 00 00 09 00 11 14 01 00 00 01 01 00 00 00  ................
   10E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 34 33 A4  .........@...43.
   10E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10E90: 00 02 00 00 09 00 12 14 01 00 00 01 01 00 00 00  ................
   10EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 32 33 A4  .........@...23.
   10EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10ED0: 00 02 00 00 09 00 13 14 01 00 00 01 01 00 00 00  ................
   10EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 33 33 A4  .........@...33.
   10EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10F10: 00 02 00 00 09 00 14 14 01 00 00 01 01 00 00 00  ................
   10F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 33 33 A4  .........@...33.
   10F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10F50: 00 02 00 00 09 00 15 14 01 00 00 01 01 00 00 00  ................
   10F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 20 33 A4  .........@... 3.
   10F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10F90: 00 02 00 00 09 00 16 14 01 00 00 01 01 00 00 00  ................
   10FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 2F 33 A4  .........@.../3.
   10FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   10FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   10FD0: 00 02 00 00 09 00 17 14 01 00 00 01 01 00 00 00  ................
   10FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2F 33 A4  .........@.../3.
   10FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11010: 00 02 00 00 09 00 18 14 01 00 00 01 01 00 00 00  ................
   11020: 10 00 00 00 00 02 00 00 00 40 00 04 18 2B 33 A4  .........@...+3.
   11030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11050: 00 02 00 00 09 00 19 14 01 00 00 01 01 00 00 00  ................
   11060: 10 00 00 00 00 02 00 00 00 40 00 04 18 2E 33 A4  .........@....3.
   11070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11090: 00 02 00 00 09 00 1A 14 01 00 00 01 01 00 00 00  ................
   110A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2E 33 A4  .........@....3.
   110B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   110C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   110D0: 00 02 00 00 09 00 1B 14 01 00 00 01 01 00 00 00  ................
   110E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2B 33 A4  .........@...+3.
   110F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11110: 00 02 00 00 09 00 1C 14 01 00 00 01 01 00 00 00  ................
   11120: 10 00 00 00 00 02 00 00 00 40 00 04 98 2D 33 A4  .........@...-3.
   11130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11150: 00 02 00 00 09 00 1D 14 01 00 00 01 01 00 00 00  ................
   11160: 10 00 00 00 00 02 00 00 00 40 00 04 18 2C 33 A4  .........@...,3.
   11170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11190: 00 02 00 00 09 00 1E 14 01 00 00 01 01 00 00 00  ................
   111A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2C 33 A4  .........@...,3.
   111B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   111C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   111D0: 00 02 00 00 09 00 1F 14 01 00 00 01 01 00 00 00  ................
   111E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 2D 33 A4  .........@...-3.
   111F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11210: 00 02 00 00 09 00 20 14 01 00 00 01 01 00 00 00  ...... .........
   11220: 10 00 00 00 00 02 00 00 00 40 00 04 98 20 33 A4  .........@... 3.
   11230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11250: 00 02 00 00 09 00 21 14 01 00 00 01 01 00 00 00  ......!.........
   11260: 10 00 00 00 00 02 00 00 00 40 00 04 18 2A 33 A4  .........@...*3.
   11270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11290: 00 02 00 00 09 00 22 14 01 00 00 01 01 00 00 00  ......".........
   112A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2A 33 A4  .........@...*3.
   112B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   112C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   112D0: 00 02 00 00 09 00 23 14 01 00 00 01 01 00 00 00  ......#.........
   112E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 27 33 A4  .........@...'3.
   112F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11310: 00 02 00 00 09 00 24 14 01 00 00 01 01 00 00 00  ......$.........
   11320: 10 00 00 00 00 02 00 00 00 40 00 04 98 29 33 A4  .........@...)3.
   11330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11350: 00 02 00 00 09 00 25 14 01 00 00 01 01 00 00 00  ......%.........
   11360: 10 00 00 00 00 02 00 00 00 40 00 04 18 28 33 A4  .........@...(3.
   11370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11390: 00 02 00 00 09 00 26 14 01 00 00 01 01 00 00 00  ......&.........
   113A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 28 33 A4  .........@...(3.
   113B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   113C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   113D0: 00 02 00 00 09 00 27 14 01 00 00 01 01 00 00 00  ......'.........
   113E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 29 33 A4  .........@...)3.
   113F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11410: 00 02 00 00 09 00 28 14 01 00 00 01 01 00 00 00  ......(.........
   11420: 10 00 00 00 00 02 00 00 00 40 00 04 18 21 33 A4  .........@...!3.
   11430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11450: 00 02 00 00 09 00 29 14 01 00 00 01 01 00 00 00  ......).........
   11460: 10 00 00 00 00 02 00 00 00 40 00 04 18 27 33 A4  .........@...'3.
   11470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11490: 00 02 00 00 09 00 2A 14 01 00 00 01 01 00 00 00  ......*.........
   114A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 25 33 A4  .........@...%3.
   114B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   114C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   114D0: 00 02 00 00 09 00 2B 14 01 00 00 01 01 00 00 00  ......+.........
   114E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 26 33 A4  .........@...&3.
   114F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11510: 00 02 00 00 09 00 2C 14 01 00 00 01 01 00 00 00  ......,.........
   11520: 10 00 00 00 00 02 00 00 00 40 00 04 98 26 33 A4  .........@...&3.
   11530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11550: 00 02 00 00 09 00 2D 14 01 00 00 01 01 00 00 00  ......-.........
   11560: 10 00 00 00 00 02 00 00 00 40 00 04 98 21 33 A4  .........@...!3.
   11570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11590: 00 02 00 00 09 00 2E 14 01 00 00 01 01 00 00 00  ................
   115A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 24 33 A4  .........@...$3.
   115B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   115C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   115D0: 00 02 00 00 09 00 2F 14 01 00 00 01 01 00 00 00  ....../.........
   115E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 25 33 A4  .........@...%3.
   115F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11610: 00 02 00 00 09 00 30 14 01 00 00 01 01 00 00 00  ......0.........
   11620: 10 00 00 00 00 02 00 00 00 40 00 04 18 22 33 A4  .........@..."3.
   11630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11650: 00 02 00 00 09 00 31 14 01 00 00 01 01 00 00 00  ......1.........
   11660: 10 00 00 00 00 02 00 00 00 40 00 04 18 24 33 A4  .........@...$3.
   11670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11690: 00 02 00 00 09 00 32 14 01 00 00 01 01 00 00 00  ......2.........
   116A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 22 33 A4  .........@..."3.
   116B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   116C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   116D0: 00 02 00 00 09 00 33 14 01 00 00 01 01 00 00 00  ......3.........
   116E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 23 33 A4  .........@...#3.
   116F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11710: 00 02 00 00 09 00 34 14 01 00 00 01 01 00 00 00  ......4.........
   11720: 10 00 00 00 00 02 00 00 00 40 00 04 98 23 33 A4  .........@...#3.
   11730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11750: 00 02 00 00 09 00 35 14 01 00 00 01 01 00 00 00  ......5.........
   11760: 10 00 00 00 00 02 00 00 00 40 00 04 18 10 33 A4  .........@....3.
   11770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11790: 00 02 00 00 09 00 36 14 01 00 00 01 01 00 00 00  ......6.........
   117A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 1F 33 A4  .........@....3.
   117B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   117C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   117D0: 00 02 00 00 09 00 37 14 01 00 00 01 01 00 00 00  ......7.........
   117E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1F 33 A4  .........@....3.
   117F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11810: 00 02 00 00 09 00 38 14 01 00 00 01 01 00 00 00  ......8.........
   11820: 10 00 00 00 00 02 00 00 00 40 00 04 18 1B 33 A4  .........@....3.
   11830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11850: 00 02 00 00 09 00 39 14 01 00 00 01 01 00 00 00  ......9.........
   11860: 10 00 00 00 00 02 00 00 00 40 00 04 18 1E 33 A4  .........@....3.
   11870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11890: 00 02 00 00 09 00 3A 14 01 00 00 01 01 00 00 00  ......:.........
   118A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1E 33 A4  .........@....3.
   118B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   118C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   118D0: 00 02 00 00 09 00 3B 14 01 00 00 01 01 00 00 00  ......;.........
   118E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1B 33 A4  .........@....3.
   118F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11910: 00 02 00 00 09 00 3C 14 01 00 00 01 01 00 00 00  ......<.........
   11920: 10 00 00 00 00 02 00 00 00 40 00 04 98 1D 33 A4  .........@....3.
   11930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11950: 00 02 00 00 09 00 3D 14 01 00 00 01 01 00 00 00  ......=.........
   11960: 10 00 00 00 00 02 00 00 00 40 00 04 18 1C 33 A4  .........@....3.
   11970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11990: 00 02 00 00 09 00 3E 14 01 00 00 01 01 00 00 00  ......>.........
   119A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1C 33 A4  .........@....3.
   119B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   119C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   119D0: 00 02 00 00 09 00 3F 14 01 00 00 01 01 00 00 00  ......?.........
   119E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 1D 33 A4  .........@....3.
   119F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11A10: 00 02 00 00 09 00 40 14 01 00 00 01 01 00 00 00  ......@.........
   11A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 10 33 A4  .........@....3.
   11A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11A50: 00 02 00 00 09 00 41 14 01 00 00 01 01 00 00 00  ......A.........
   11A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 1A 33 A4  .........@....3.
   11A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11A90: 00 02 00 00 09 00 42 14 01 00 00 01 01 00 00 00  ......B.........
   11AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1A 33 A4  .........@....3.
   11AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11AD0: 00 02 00 00 09 00 43 14 01 00 00 01 01 00 00 00  ......C.........
   11AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 17 33 A4  .........@....3.
   11AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11B10: 00 02 00 00 09 00 44 14 01 00 00 01 01 00 00 00  ......D.........
   11B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 19 33 A4  .........@....3.
   11B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11B50: 00 02 00 00 09 00 45 14 01 00 00 01 01 00 00 00  ......E.........
   11B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 18 33 A4  .........@....3.
   11B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11B90: 00 02 00 00 09 00 46 14 01 00 00 01 01 00 00 00  ......F.........
   11BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 18 33 A4  .........@....3.
   11BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11BD0: 00 02 00 00 09 00 47 14 01 00 00 01 01 00 00 00  ......G.........
   11BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 19 33 A4  .........@....3.
   11BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11C10: 00 02 00 00 09 00 48 14 01 00 00 01 01 00 00 00  ......H.........
   11C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 11 33 A4  .........@....3.
   11C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11C50: 00 02 00 00 09 00 49 14 01 00 00 01 01 00 00 00  ......I.........
   11C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 17 33 A4  .........@....3.
   11C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11C90: 00 02 00 00 09 00 4A 14 01 00 00 01 01 00 00 00  ......J.........
   11CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 15 33 A4  .........@....3.
   11CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11CD0: 00 02 00 00 09 00 4B 14 01 00 00 01 01 00 00 00  ......K.........
   11CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 16 33 A4  .........@....3.
   11CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11D10: 00 02 00 00 09 00 4C 14 01 00 00 01 01 00 00 00  ......L.........
   11D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 16 33 A4  .........@....3.
   11D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11D50: 00 02 00 00 09 00 4D 14 01 00 00 01 01 00 00 00  ......M.........
   11D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 11 33 A4  .........@....3.
   11D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11D90: 00 02 00 00 09 00 4E 14 01 00 00 01 01 00 00 00  ......N.........
   11DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 14 33 A4  .........@....3.
   11DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11DD0: 00 02 00 00 09 00 4F 14 01 00 00 01 01 00 00 00  ......O.........
   11DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 15 33 A4  .........@....3.
   11DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11E10: 00 02 00 00 09 00 50 14 01 00 00 01 01 00 00 00  ......P.........
   11E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 12 33 A4  .........@....3.
   11E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11E50: 00 02 00 00 09 00 51 14 01 00 00 01 01 00 00 00  ......Q.........
   11E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 14 33 A4  .........@....3.
   11E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11E90: 00 02 00 00 09 00 52 14 01 00 00 01 01 00 00 00  ......R.........
   11EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 12 33 A4  .........@....3.
   11EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11ED0: 00 02 00 00 09 00 53 14 01 00 00 01 01 00 00 00  ......S.........
   11EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 13 33 A4  .........@....3.
   11EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11F10: 00 02 00 00 09 00 54 14 01 00 00 01 01 00 00 00  ......T.........
   11F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 13 33 A4  .........@....3.
   11F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11F50: 00 02 00 00 09 00 55 14 01 00 00 01 01 00 00 00  ......U.........
   11F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 00 33 A4  .........@....3.
   11F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11F90: 00 02 00 00 09 00 56 14 01 00 00 01 01 00 00 00  ......V.........
   11FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 0F 33 A4  .........@....3.
   11FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   11FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   11FD0: 00 02 00 00 09 00 57 14 01 00 00 01 01 00 00 00  ......W.........
   11FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0F 33 A4  .........@....3.
   11FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12010: 00 02 00 00 09 00 58 14 01 00 00 01 01 00 00 00  ......X.........
   12020: 10 00 00 00 00 02 00 00 00 40 00 04 18 0B 33 A4  .........@....3.
   12030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12050: 00 02 00 00 09 00 59 14 01 00 00 01 01 00 00 00  ......Y.........
   12060: 10 00 00 00 00 02 00 00 00 40 00 04 18 0E 33 A4  .........@....3.
   12070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12090: 00 02 00 00 09 00 5A 14 01 00 00 01 01 00 00 00  ......Z.........
   120A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0E 33 A4  .........@....3.
   120B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   120C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   120D0: 00 02 00 00 09 00 5B 14 01 00 00 01 01 00 00 00  ......[.........
   120E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0B 33 A4  .........@....3.
   120F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12110: 00 02 00 00 09 00 5C 14 01 00 00 01 01 00 00 00  ......\.........
   12120: 10 00 00 00 00 02 00 00 00 40 00 04 98 0D 33 A4  .........@....3.
   12130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12150: 00 02 00 00 09 00 5D 14 01 00 00 01 01 00 00 00  ......].........
   12160: 10 00 00 00 00 02 00 00 00 40 00 04 18 0C 33 A4  .........@....3.
   12170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12190: 00 02 00 00 09 00 5E 14 01 00 00 01 01 00 00 00  ......^.........
   121A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0C 33 A4  .........@....3.
   121B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   121C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   121D0: 00 02 00 00 09 00 5F 14 01 00 00 01 01 00 00 00  ......_.........
   121E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 0D 33 A4  .........@....3.
   121F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12210: 00 02 00 00 09 00 60 14 01 00 00 01 01 00 00 00  ......`.........
   12220: 10 00 00 00 00 02 00 00 00 40 00 04 98 00 33 A4  .........@....3.
   12230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12250: 00 02 00 00 09 00 61 14 01 00 00 01 01 00 00 00  ......a.........
   12260: 10 00 00 00 00 02 00 00 00 40 00 04 18 0A 33 A4  .........@....3.
   12270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12290: 00 02 00 00 09 00 62 14 01 00 00 01 01 00 00 00  ......b.........
   122A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0A 33 A4  .........@....3.
   122B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   122C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   122D0: 00 02 00 00 09 00 63 14 01 00 00 01 01 00 00 00  ......c.........
   122E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 07 33 A4  .........@....3.
   122F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12310: 00 02 00 00 09 00 64 14 01 00 00 01 01 00 00 00  ......d.........
   12320: 10 00 00 00 00 02 00 00 00 40 00 04 98 09 33 A4  .........@....3.
   12330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12350: 00 02 00 00 09 00 65 14 01 00 00 01 01 00 00 00  ......e.........
   12360: 10 00 00 00 00 02 00 00 00 40 00 04 18 08 33 A4  .........@....3.
   12370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12390: 00 02 00 00 09 00 66 14 01 00 00 01 01 00 00 00  ......f.........
   123A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 08 33 A4  .........@....3.
   123B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   123C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   123D0: 00 02 00 00 09 00 67 14 01 00 00 01 01 00 00 00  ......g.........
   123E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 09 33 A4  .........@....3.
   123F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12410: 00 02 00 00 09 00 68 14 01 00 00 01 01 00 00 00  ......h.........
   12420: 10 00 00 00 00 02 00 00 00 40 00 04 18 01 33 A4  .........@....3.
   12430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12450: 00 02 00 00 09 00 69 14 01 00 00 01 01 00 00 00  ......i.........
   12460: 10 00 00 00 00 02 00 00 00 40 00 04 18 07 33 A4  .........@....3.
   12470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12490: 00 02 00 00 09 00 6A 14 01 00 00 01 01 00 00 00  ......j.........
   124A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 05 33 A4  .........@....3.
   124B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   124C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   124D0: 00 02 00 00 09 00 6B 14 01 00 00 01 01 00 00 00  ......k.........
   124E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 06 33 A4  .........@....3.
   124F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12510: 00 02 00 00 09 00 6C 14 01 00 00 01 01 00 00 00  ......l.........
   12520: 10 00 00 00 00 02 00 00 00 40 00 04 98 06 33 A4  .........@....3.
   12530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12550: 00 02 00 00 09 00 6D 14 01 00 00 01 01 00 00 00  ......m.........
   12560: 10 00 00 00 00 02 00 00 00 40 00 04 98 01 33 A4  .........@....3.
   12570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12590: 00 02 00 00 09 00 6E 14 01 00 00 01 01 00 00 00  ......n.........
   125A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 04 33 A4  .........@....3.
   125B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   125C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   125D0: 00 02 00 00 09 00 6F 14 01 00 00 01 01 00 00 00  ......o.........
   125E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 05 33 A4  .........@....3.
   125F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12610: 00 02 00 00 09 00 70 14 01 00 00 01 01 00 00 00  ......p.........
   12620: 10 00 00 00 00 02 00 00 00 40 00 04 18 02 33 A4  .........@....3.
   12630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12650: 00 02 00 00 09 00 71 14 01 00 00 01 01 00 00 00  ......q.........
   12660: 10 00 00 00 00 02 00 00 00 40 00 04 18 04 33 A4  .........@....3.
   12670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12690: 00 02 00 00 09 00 72 14 01 00 00 01 01 00 00 00  ......r.........
   126A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 02 33 A4  .........@....3.
   126B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   126C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   126D0: 00 02 00 00 09 00 73 14 01 00 00 01 01 00 00 00  ......s.........
   126E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 03 33 A4  .........@....3.
   126F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12710: 00 02 00 00 09 00 74 14 01 00 00 01 01 00 00 00  ......t.........
   12720: 10 00 00 00 00 02 00 00 00 40 00 04 98 03 33 A4  .........@....3.
   12730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12750: 00 02 00 00 09 00 75 14 01 00 00 01 01 00 00 00  ......u.........
   12760: 10 00 00 00 00 02 00 00 00 40 00 04 18 F0 32 A4  .........@....2.
   12770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12790: 00 02 00 00 09 00 76 14 01 00 00 01 01 00 00 00  ......v.........
   127A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 FF 32 A4  .........@....2.
   127B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   127C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   127D0: 00 02 00 00 09 00 77 14 01 00 00 01 01 00 00 00  ......w.........
   127E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FF 32 A4  .........@....2.
   127F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12810: 00 02 00 00 09 00 78 14 01 00 00 01 01 00 00 00  ......x.........
   12820: 10 00 00 00 00 02 00 00 00 40 00 04 18 FB 32 A4  .........@....2.
   12830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12850: 00 02 00 00 09 00 79 14 01 00 00 01 01 00 00 00  ......y.........
   12860: 10 00 00 00 00 02 00 00 00 40 00 04 18 FE 32 A4  .........@....2.
   12870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12890: 00 02 00 00 09 00 7A 14 01 00 00 01 01 00 00 00  ......z.........
   128A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FE 32 A4  .........@....2.
   128B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   128C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   128D0: 00 02 00 00 09 00 7B 14 01 00 00 01 01 00 00 00  ......{.........
   128E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FB 32 A4  .........@....2.
   128F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12910: 00 02 00 00 09 00 7C 14 01 00 00 01 01 00 00 00  ......|.........
   12920: 10 00 00 00 00 02 00 00 00 40 00 04 98 FD 32 A4  .........@....2.
   12930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12950: 00 02 00 00 09 00 7D 14 01 00 00 01 01 00 00 00  ......}.........
   12960: 10 00 00 00 00 02 00 00 00 40 00 04 18 FC 32 A4  .........@....2.
   12970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12990: 00 02 00 00 09 00 7E 14 01 00 00 01 01 00 00 00  ......~.........
   129A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FC 32 A4  .........@....2.
   129B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   129C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   129D0: 00 02 00 00 09 00 7F 14 01 00 00 01 01 00 00 00  ................
   129E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 FD 32 A4  .........@....2.
   129F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12A10: 00 02 00 00 09 00 80 14 01 00 00 01 01 00 00 00  ................
   12A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 F0 32 A4  .........@....2.
   12A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12A50: 00 02 00 00 09 00 81 14 01 00 00 01 01 00 00 00  ................
   12A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 FA 32 A4  .........@....2.
   12A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12A90: 00 02 00 00 09 00 82 14 01 00 00 01 01 00 00 00  ................
   12AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FA 32 A4  .........@....2.
   12AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12AD0: 00 02 00 00 09 00 83 14 01 00 00 01 01 00 00 00  ................
   12AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F7 32 A4  .........@....2.
   12AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12B10: 00 02 00 00 09 00 84 14 01 00 00 01 01 00 00 00  ................
   12B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 F9 32 A4  .........@....2.
   12B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12B50: 00 02 00 00 09 00 85 14 01 00 00 01 01 00 00 00  ................
   12B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 F8 32 A4  .........@....2.
   12B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12B90: 00 02 00 00 09 00 86 14 01 00 00 01 01 00 00 00  ................
   12BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F8 32 A4  .........@....2.
   12BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12BD0: 00 02 00 00 09 00 87 14 01 00 00 01 01 00 00 00  ................
   12BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F9 32 A4  .........@....2.
   12BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12C10: 00 02 00 00 09 00 88 14 01 00 00 01 01 00 00 00  ................
   12C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 F1 32 A4  .........@....2.
   12C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12C50: 00 02 00 00 09 00 89 14 01 00 00 01 01 00 00 00  ................
   12C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 F7 32 A4  .........@....2.
   12C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12C90: 00 02 00 00 09 00 8A 14 01 00 00 01 01 00 00 00  ................
   12CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F5 32 A4  .........@....2.
   12CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12CD0: 00 02 00 00 09 00 8B 14 01 00 00 01 01 00 00 00  ................
   12CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F6 32 A4  .........@....2.
   12CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12D10: 00 02 00 00 09 00 8C 14 01 00 00 01 01 00 00 00  ................
   12D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 F6 32 A4  .........@....2.
   12D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12D50: 00 02 00 00 09 00 8D 14 01 00 00 01 01 00 00 00  ................
   12D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 F1 32 A4  .........@....2.
   12D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12D90: 00 02 00 00 09 00 8E 14 01 00 00 01 01 00 00 00  ................
   12DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F4 32 A4  .........@....2.
   12DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12DD0: 00 02 00 00 09 00 8F 14 01 00 00 01 01 00 00 00  ................
   12DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F5 32 A4  .........@....2.
   12DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12E10: 00 02 00 00 09 00 90 14 01 00 00 01 01 00 00 00  ................
   12E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 F2 32 A4  .........@....2.
   12E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12E50: 00 02 00 00 09 00 91 14 01 00 00 01 01 00 00 00  ................
   12E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 F4 32 A4  .........@....2.
   12E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12E90: 00 02 00 00 09 00 92 14 01 00 00 01 01 00 00 00  ................
   12EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F2 32 A4  .........@....2.
   12EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12ED0: 00 02 00 00 09 00 93 14 01 00 00 01 01 00 00 00  ................
   12EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F3 32 A4  .........@....2.
   12EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12F10: 00 02 00 00 09 00 94 14 01 00 00 01 01 00 00 00  ................
   12F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 F3 32 A4  .........@....2.
   12F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12F50: 00 02 00 00 09 00 95 14 01 00 00 01 01 00 00 00  ................
   12F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E0 32 A4  .........@....2.
   12F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12F90: 00 02 00 00 09 00 96 14 01 00 00 01 01 00 00 00  ................
   12FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 EF 32 A4  .........@....2.
   12FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   12FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   12FD0: 00 02 00 00 09 00 97 14 01 00 00 01 01 00 00 00  ................
   12FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EF 32 A4  .........@....2.
   12FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13010: 00 02 00 00 09 00 98 14 01 00 00 01 01 00 00 00  ................
   13020: 10 00 00 00 00 02 00 00 00 40 00 04 18 EB 32 A4  .........@....2.
   13030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13050: 00 02 00 00 09 00 99 14 01 00 00 01 01 00 00 00  ................
   13060: 10 00 00 00 00 02 00 00 00 40 00 04 18 EE 32 A4  .........@....2.
   13070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13090: 00 02 00 00 09 00 9A 14 01 00 00 01 01 00 00 00  ................
   130A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EE 32 A4  .........@....2.
   130B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   130C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   130D0: 00 02 00 00 09 00 9B 14 01 00 00 01 01 00 00 00  ................
   130E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EB 32 A4  .........@....2.
   130F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13110: 00 02 00 00 09 00 9C 14 01 00 00 01 01 00 00 00  ................
   13120: 10 00 00 00 00 02 00 00 00 40 00 04 98 ED 32 A4  .........@....2.
   13130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13150: 00 02 00 00 09 00 9D 14 01 00 00 01 01 00 00 00  ................
   13160: 10 00 00 00 00 02 00 00 00 40 00 04 18 EC 32 A4  .........@....2.
   13170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13190: 00 02 00 00 09 00 9E 14 01 00 00 01 01 00 00 00  ................
   131A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EC 32 A4  .........@....2.
   131B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   131C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   131D0: 00 02 00 00 09 00 9F 14 01 00 00 01 01 00 00 00  ................
   131E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 ED 32 A4  .........@....2.
   131F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13210: 00 02 00 00 09 00 A0 14 01 00 00 01 01 00 00 00  ................
   13220: 10 00 00 00 00 02 00 00 00 40 00 04 98 E0 32 A4  .........@....2.
   13230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13250: 00 02 00 00 09 00 A1 14 01 00 00 01 01 00 00 00  ................
   13260: 10 00 00 00 00 02 00 00 00 40 00 04 18 EA 32 A4  .........@....2.
   13270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13290: 00 02 00 00 09 00 A2 14 01 00 00 01 01 00 00 00  ................
   132A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EA 32 A4  .........@....2.
   132B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   132C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   132D0: 00 02 00 00 09 00 A3 14 01 00 00 01 01 00 00 00  ................
   132E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E7 32 A4  .........@....2.
   132F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13310: 00 02 00 00 09 00 A4 14 01 00 00 01 01 00 00 00  ................
   13320: 10 00 00 00 00 02 00 00 00 40 00 04 98 E9 32 A4  .........@....2.
   13330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13350: 00 02 00 00 09 00 A5 14 01 00 00 01 01 00 00 00  ................
   13360: 10 00 00 00 00 02 00 00 00 40 00 04 18 E8 32 A4  .........@....2.
   13370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13390: 00 02 00 00 09 00 A6 14 01 00 00 01 01 00 00 00  ................
   133A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E8 32 A4  .........@....2.
   133B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   133C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   133D0: 00 02 00 00 09 00 A7 14 01 00 00 01 01 00 00 00  ................
   133E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E9 32 A4  .........@....2.
   133F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13410: 00 02 00 00 09 00 A8 14 01 00 00 01 01 00 00 00  ................
   13420: 10 00 00 00 00 02 00 00 00 40 00 04 18 E1 32 A4  .........@....2.
   13430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13450: 00 02 00 00 09 00 A9 14 01 00 00 01 01 00 00 00  ................
   13460: 10 00 00 00 00 02 00 00 00 40 00 04 18 E7 32 A4  .........@....2.
   13470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13490: 00 02 00 00 09 00 AA 14 01 00 00 01 01 00 00 00  ................
   134A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E5 32 A4  .........@....2.
   134B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   134C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   134D0: 00 02 00 00 09 00 AB 14 01 00 00 01 01 00 00 00  ................
   134E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E6 32 A4  .........@....2.
   134F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13510: 00 02 00 00 09 00 AC 14 01 00 00 01 01 00 00 00  ................
   13520: 10 00 00 00 00 02 00 00 00 40 00 04 98 E6 32 A4  .........@....2.
   13530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13550: 00 02 00 00 09 00 AD 14 01 00 00 01 01 00 00 00  ................
   13560: 10 00 00 00 00 02 00 00 00 40 00 04 98 E1 32 A4  .........@....2.
   13570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13590: 00 02 00 00 09 00 AE 14 01 00 00 01 01 00 00 00  ................
   135A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E4 32 A4  .........@....2.
   135B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   135C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   135D0: 00 02 00 00 09 00 AF 14 01 00 00 01 01 00 00 00  ................
   135E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E5 32 A4  .........@....2.
   135F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13610: 00 02 00 00 09 00 B0 14 01 00 00 01 01 00 00 00  ................
   13620: 10 00 00 00 00 02 00 00 00 40 00 04 18 E2 32 A4  .........@....2.
   13630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13650: 00 02 00 00 09 00 B1 14 01 00 00 01 01 00 00 00  ................
   13660: 10 00 00 00 00 02 00 00 00 40 00 04 18 E4 32 A4  .........@....2.
   13670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13690: 00 02 00 00 09 00 B2 14 01 00 00 01 01 00 00 00  ................
   136A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E2 32 A4  .........@....2.
   136B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   136C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   136D0: 00 02 00 00 09 00 B3 14 01 00 00 01 01 00 00 00  ................
   136E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E3 32 A4  .........@....2.
   136F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13710: 00 02 00 00 09 00 B4 14 01 00 00 01 01 00 00 00  ................
   13720: 10 00 00 00 00 02 00 00 00 40 00 04 98 E3 32 A4  .........@....2.
   13730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13750: 00 02 00 00 09 00 B5 14 01 00 00 01 01 00 00 00  ................
   13760: 10 00 00 00 00 02 00 00 00 40 00 04 18 D0 32 A4  .........@....2.
   13770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13790: 00 02 00 00 09 00 B6 14 01 00 00 01 01 00 00 00  ................
   137A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DF 32 A4  .........@....2.
   137B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   137C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   137D0: 00 02 00 00 09 00 B7 14 01 00 00 01 01 00 00 00  ................
   137E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DF 32 A4  .........@....2.
   137F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13810: 00 02 00 00 09 00 B8 14 01 00 00 01 01 00 00 00  ................
   13820: 10 00 00 00 00 02 00 00 00 40 00 04 18 DB 32 A4  .........@....2.
   13830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13850: 00 02 00 00 09 00 B9 14 01 00 00 01 01 00 00 00  ................
   13860: 10 00 00 00 00 02 00 00 00 40 00 04 18 DE 32 A4  .........@....2.
   13870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13890: 00 02 00 00 09 00 BA 14 01 00 00 01 01 00 00 00  ................
   138A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DE 32 A4  .........@....2.
   138B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   138C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   138D0: 00 02 00 00 09 00 BB 14 01 00 00 01 01 00 00 00  ................
   138E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DB 32 A4  .........@....2.
   138F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13910: 00 02 00 00 09 00 BC 14 01 00 00 01 01 00 00 00  ................
   13920: 10 00 00 00 00 02 00 00 00 40 00 04 98 DD 32 A4  .........@....2.
   13930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13950: 00 02 00 00 09 00 BD 14 01 00 00 01 01 00 00 00  ................
   13960: 10 00 00 00 00 02 00 00 00 40 00 04 18 DC 32 A4  .........@....2.
   13970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13990: 00 02 00 00 09 00 BE 14 01 00 00 01 01 00 00 00  ................
   139A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DC 32 A4  .........@....2.
   139B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   139C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   139D0: 00 02 00 00 09 00 BF 14 01 00 00 01 01 00 00 00  ................
   139E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DD 32 A4  .........@....2.
   139F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13A10: 00 02 00 00 09 00 C0 14 01 00 00 01 01 00 00 00  ................
   13A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 D0 32 A4  .........@....2.
   13A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13A50: 00 02 00 00 09 00 C1 14 01 00 00 01 01 00 00 00  ................
   13A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 DA 32 A4  .........@....2.
   13A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13A90: 00 02 00 00 09 00 C2 14 01 00 00 01 01 00 00 00  ................
   13AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DA 32 A4  .........@....2.
   13AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13AD0: 00 02 00 00 09 00 C3 14 01 00 00 01 01 00 00 00  ................
   13AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D7 32 A4  .........@....2.
   13AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13B10: 00 02 00 00 09 00 C4 14 01 00 00 01 01 00 00 00  ................
   13B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 D9 32 A4  .........@....2.
   13B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13B50: 00 02 00 00 09 00 C5 14 01 00 00 01 01 00 00 00  ................
   13B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 D8 32 A4  .........@....2.
   13B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13B90: 00 02 00 00 09 00 C6 14 01 00 00 01 01 00 00 00  ................
   13BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D8 32 A4  .........@....2.
   13BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13BD0: 00 02 00 00 09 00 C7 14 01 00 00 01 01 00 00 00  ................
   13BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D9 32 A4  .........@....2.
   13BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13C10: 00 02 00 00 09 00 C8 14 01 00 00 01 01 00 00 00  ................
   13C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 D1 32 A4  .........@....2.
   13C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13C50: 00 02 00 00 09 00 C9 14 01 00 00 01 01 00 00 00  ................
   13C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 D7 32 A4  .........@....2.
   13C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13C90: 00 02 00 00 09 00 CA 14 01 00 00 01 01 00 00 00  ................
   13CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D5 32 A4  .........@....2.
   13CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13CD0: 00 02 00 00 09 00 CB 14 01 00 00 01 01 00 00 00  ................
   13CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D6 32 A4  .........@....2.
   13CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13D10: 00 02 00 00 09 00 CC 14 01 00 00 01 01 00 00 00  ................
   13D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 D6 32 A4  .........@....2.
   13D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13D50: 00 02 00 00 09 00 CD 14 01 00 00 01 01 00 00 00  ................
   13D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 D1 32 A4  .........@....2.
   13D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13D90: 00 02 00 00 09 00 CE 14 01 00 00 01 01 00 00 00  ................
   13DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D4 32 A4  .........@....2.
   13DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13DD0: 00 02 00 00 09 00 CF 14 01 00 00 01 01 00 00 00  ................
   13DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D5 32 A4  .........@....2.
   13DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13E10: 00 02 00 00 09 00 D0 14 01 00 00 01 01 00 00 00  ................
   13E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 D2 32 A4  .........@....2.
   13E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13E50: 00 02 00 00 09 00 D1 14 01 00 00 01 01 00 00 00  ................
   13E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 D4 32 A4  .........@....2.
   13E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13E90: 00 02 00 00 09 00 D2 14 01 00 00 01 01 00 00 00  ................
   13EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D2 32 A4  .........@....2.
   13EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13ED0: 00 02 00 00 09 00 D3 14 01 00 00 01 01 00 00 00  ................
   13EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D3 32 A4  .........@....2.
   13EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13F10: 00 02 00 00 09 00 D4 14 01 00 00 01 01 00 00 00  ................
   13F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 D3 32 A4  .........@....2.
   13F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13F50: 00 02 00 00 09 00 D5 14 01 00 00 01 01 00 00 00  ................
   13F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C0 32 A4  .........@....2.
   13F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13F90: 00 02 00 00 09 00 D6 14 01 00 00 01 01 00 00 00  ................
   13FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CF 32 A4  .........@....2.
   13FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   13FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   13FD0: 00 02 00 00 09 00 D7 14 01 00 00 01 01 00 00 00  ................
   13FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CF 32 A4  .........@....2.
   13FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14010: 00 02 00 00 09 00 D8 14 01 00 00 01 01 00 00 00  ................
   14020: 10 00 00 00 00 02 00 00 00 40 00 04 18 CB 32 A4  .........@....2.
   14030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14050: 00 02 00 00 09 00 D9 14 01 00 00 01 01 00 00 00  ................
   14060: 10 00 00 00 00 02 00 00 00 40 00 04 18 CE 32 A4  .........@....2.
   14070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14090: 00 02 00 00 09 00 DA 14 01 00 00 01 01 00 00 00  ................
   140A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CE 32 A4  .........@....2.
   140B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   140C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   140D0: 00 02 00 00 09 00 DB 14 01 00 00 01 01 00 00 00  ................
   140E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CB 32 A4  .........@....2.
   140F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14110: 00 02 00 00 09 00 DC 14 01 00 00 01 01 00 00 00  ................
   14120: 10 00 00 00 00 02 00 00 00 40 00 04 98 CD 32 A4  .........@....2.
   14130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14150: 00 02 00 00 09 00 DD 14 01 00 00 01 01 00 00 00  ................
   14160: 10 00 00 00 00 02 00 00 00 40 00 04 18 CC 32 A4  .........@....2.
   14170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14190: 00 02 00 00 09 00 DE 14 01 00 00 01 01 00 00 00  ................
   141A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CC 32 A4  .........@....2.
   141B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   141C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   141D0: 00 02 00 00 09 00 DF 14 01 00 00 01 01 00 00 00  ................
   141E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CD 32 A4  .........@....2.
   141F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14210: 00 02 00 00 09 00 E0 14 01 00 00 01 01 00 00 00  ................
   14220: 10 00 00 00 00 02 00 00 00 40 00 04 98 C0 32 A4  .........@....2.
   14230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14250: 00 02 00 00 09 00 E1 14 01 00 00 01 01 00 00 00  ................
   14260: 10 00 00 00 00 02 00 00 00 40 00 04 18 CA 32 A4  .........@....2.
   14270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14290: 00 02 00 00 09 00 E2 14 01 00 00 01 01 00 00 00  ................
   142A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CA 32 A4  .........@....2.
   142B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   142C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   142D0: 00 02 00 00 09 00 E3 14 01 00 00 01 01 00 00 00  ................
   142E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C7 32 A4  .........@....2.
   142F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14310: 00 02 00 00 09 00 E4 14 01 00 00 01 01 00 00 00  ................
   14320: 10 00 00 00 00 02 00 00 00 40 00 04 98 C9 32 A4  .........@....2.
   14330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14350: 00 02 00 00 09 00 E5 14 01 00 00 01 01 00 00 00  ................
   14360: 10 00 00 00 00 02 00 00 00 40 00 04 18 C8 32 A4  .........@....2.
   14370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14390: 00 02 00 00 09 00 E6 14 01 00 00 01 01 00 00 00  ................
   143A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C8 32 A4  .........@....2.
   143B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   143C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   143D0: 00 02 00 00 09 00 E7 14 01 00 00 01 01 00 00 00  ................
   143E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C9 32 A4  .........@....2.
   143F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14410: 00 02 00 00 09 00 E8 14 01 00 00 01 01 00 00 00  ................
   14420: 10 00 00 00 00 02 00 00 00 40 00 04 18 C1 32 A4  .........@....2.
   14430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14450: 00 02 00 00 09 00 E9 14 01 00 00 01 01 00 00 00  ................
   14460: 10 00 00 00 00 02 00 00 00 40 00 04 18 C7 32 A4  .........@....2.
   14470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14490: 00 02 00 00 09 00 EA 14 01 00 00 01 01 00 00 00  ................
   144A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C5 32 A4  .........@....2.
   144B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   144C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   144D0: 00 02 00 00 09 00 EB 14 01 00 00 01 01 00 00 00  ................
   144E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C6 32 A4  .........@....2.
   144F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14510: 00 02 00 00 09 00 EC 14 01 00 00 01 01 00 00 00  ................
   14520: 10 00 00 00 00 02 00 00 00 40 00 04 98 C6 32 A4  .........@....2.
   14530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14550: 00 02 00 00 09 00 ED 14 01 00 00 01 01 00 00 00  ................
   14560: 10 00 00 00 00 02 00 00 00 40 00 04 98 C1 32 A4  .........@....2.
   14570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14590: 00 02 00 00 09 00 EE 14 01 00 00 01 01 00 00 00  ................
   145A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C4 32 A4  .........@....2.
   145B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   145C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   145D0: 00 02 00 00 09 00 EF 14 01 00 00 01 01 00 00 00  ................
   145E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C5 32 A4  .........@....2.
   145F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14610: 00 02 00 00 09 00 F0 14 01 00 00 01 01 00 00 00  ................
   14620: 10 00 00 00 00 02 00 00 00 40 00 04 18 C2 32 A4  .........@....2.
   14630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14650: 00 02 00 00 09 00 F1 14 01 00 00 01 01 00 00 00  ................
   14660: 10 00 00 00 00 02 00 00 00 40 00 04 18 C4 32 A4  .........@....2.
   14670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14690: 00 02 00 00 09 00 F2 14 01 00 00 01 01 00 00 00  ................
   146A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C2 32 A4  .........@....2.
   146B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   146C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   146D0: 00 02 00 00 09 00 F3 14 01 00 00 01 01 00 00 00  ................
   146E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C3 32 A4  .........@....2.
   146F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14710: 00 02 00 00 09 00 F4 14 01 00 00 01 01 00 00 00  ................
   14720: 10 00 00 00 00 02 00 00 00 40 00 04 98 C3 32 A4  .........@....2.
   14730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14750: 00 02 00 00 09 00 F5 14 01 00 00 01 01 00 00 00  ................
   14760: 10 00 00 00 00 02 00 00 00 40 00 04 18 B0 32 A4  .........@....2.
   14770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14790: 00 02 00 00 09 00 F6 14 01 00 00 01 01 00 00 00  ................
   147A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BF 32 A4  .........@....2.
   147B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   147C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   147D0: 00 02 00 00 09 00 F7 14 01 00 00 01 01 00 00 00  ................
   147E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BF 32 A4  .........@....2.
   147F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14810: 00 02 00 00 09 00 F8 14 01 00 00 01 01 00 00 00  ................
   14820: 10 00 00 00 00 02 00 00 00 40 00 04 18 BB 32 A4  .........@....2.
   14830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14850: 00 02 00 00 09 00 F9 14 01 00 00 01 01 00 00 00  ................
   14860: 10 00 00 00 00 02 00 00 00 40 00 04 18 BE 32 A4  .........@....2.
   14870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14890: 00 02 00 00 09 00 FA 14 01 00 00 01 01 00 00 00  ................
   148A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BE 32 A4  .........@....2.
   148B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   148C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   148D0: 00 02 00 00 09 00 FB 14 01 00 00 01 01 00 00 00  ................
   148E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BB 32 A4  .........@....2.
   148F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14910: 00 02 00 00 09 00 FC 14 01 00 00 01 01 00 00 00  ................
   14920: 10 00 00 00 00 02 00 00 00 40 00 04 98 BD 32 A4  .........@....2.
   14930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14950: 00 02 00 00 09 00 FD 14 01 00 00 01 01 00 00 00  ................
   14960: 10 00 00 00 00 02 00 00 00 40 00 04 18 BC 32 A4  .........@....2.
   14970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14990: 00 02 00 00 09 00 FE 14 01 00 00 01 01 00 00 00  ................
   149A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BC 32 A4  .........@....2.
   149B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   149C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   149D0: 00 02 00 00 09 00 FF 14 01 00 00 01 01 00 00 00  ................
   149E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BD 32 A4  .........@....2.
   149F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14A10: 00 02 00 00 09 00 00 15 01 00 00 01 01 00 00 00  ................
   14A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 B0 32 A4  .........@....2.
   14A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14A50: 00 02 00 00 09 00 01 15 01 00 00 01 01 00 00 00  ................
   14A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 BA 32 A4  .........@....2.
   14A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14A90: 00 02 00 00 09 00 02 15 01 00 00 01 01 00 00 00  ................
   14AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BA 32 A4  .........@....2.
   14AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14AD0: 00 02 00 00 09 00 03 15 01 00 00 01 01 00 00 00  ................
   14AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B7 32 A4  .........@....2.
   14AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14B10: 00 02 00 00 09 00 04 15 01 00 00 01 01 00 00 00  ................
   14B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 B9 32 A4  .........@....2.
   14B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14B50: 00 02 00 00 09 00 05 15 01 00 00 01 01 00 00 00  ................
   14B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 B8 32 A4  .........@....2.
   14B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14B90: 00 02 00 00 09 00 06 15 01 00 00 01 01 00 00 00  ................
   14BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B8 32 A4  .........@....2.
   14BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14BD0: 00 02 00 00 09 00 07 15 01 00 00 01 01 00 00 00  ................
   14BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B9 32 A4  .........@....2.
   14BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14C10: 00 02 00 00 09 00 08 15 01 00 00 01 01 00 00 00  ................
   14C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 B1 32 A4  .........@....2.
   14C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14C50: 00 02 00 00 09 00 09 15 01 00 00 01 01 00 00 00  ................
   14C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 B7 32 A4  .........@....2.
   14C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14C90: 00 02 00 00 09 00 0A 15 01 00 00 01 01 00 00 00  ................
   14CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B5 32 A4  .........@....2.
   14CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14CD0: 00 02 00 00 09 00 0B 15 01 00 00 01 01 00 00 00  ................
   14CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B6 32 A4  .........@....2.
   14CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14D10: 00 02 00 00 09 00 0C 15 01 00 00 01 01 00 00 00  ................
   14D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 B6 32 A4  .........@....2.
   14D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14D50: 00 02 00 00 09 00 0D 15 01 00 00 01 01 00 00 00  ................
   14D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 B1 32 A4  .........@....2.
   14D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14D90: 00 02 00 00 09 00 0E 15 01 00 00 01 01 00 00 00  ................
   14DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B4 32 A4  .........@....2.
   14DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14DD0: 00 02 00 00 09 00 0F 15 01 00 00 01 01 00 00 00  ................
   14DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B5 32 A4  .........@....2.
   14DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14E10: 00 02 00 00 09 00 10 15 01 00 00 01 01 00 00 00  ................
   14E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 B2 32 A4  .........@....2.
   14E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14E50: 00 02 00 00 09 00 11 15 01 00 00 01 01 00 00 00  ................
   14E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 B4 32 A4  .........@....2.
   14E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14E90: 00 02 00 00 09 00 12 15 01 00 00 01 01 00 00 00  ................
   14EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B2 32 A4  .........@....2.
   14EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14ED0: 00 02 00 00 09 00 13 15 01 00 00 01 01 00 00 00  ................
   14EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B3 32 A4  .........@....2.
   14EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14F10: 00 02 00 00 09 00 14 15 01 00 00 01 01 00 00 00  ................
   14F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 B3 32 A4  .........@....2.
   14F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14F50: 00 02 00 00 09 00 15 15 01 00 00 01 01 00 00 00  ................
   14F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A0 32 A4  .........@....2.
   14F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14F90: 00 02 00 00 09 00 16 15 01 00 00 01 01 00 00 00  ................
   14FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AF 32 A4  .........@....2.
   14FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   14FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   14FD0: 00 02 00 00 09 00 17 15 01 00 00 01 01 00 00 00  ................
   14FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AF 32 A4  .........@....2.
   14FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15010: 00 02 00 00 09 00 18 15 01 00 00 01 01 00 00 00  ................
   15020: 10 00 00 00 00 02 00 00 00 40 00 04 18 AB 32 A4  .........@....2.
   15030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15050: 00 02 00 00 09 00 19 15 01 00 00 01 01 00 00 00  ................
   15060: 10 00 00 00 00 02 00 00 00 40 00 04 18 AE 32 A4  .........@....2.
   15070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15090: 00 02 00 00 09 00 1A 15 01 00 00 01 01 00 00 00  ................
   150A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AE 32 A4  .........@....2.
   150B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   150C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   150D0: 00 02 00 00 09 00 1B 15 01 00 00 01 01 00 00 00  ................
   150E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AB 32 A4  .........@....2.
   150F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15110: 00 02 00 00 09 00 1C 15 01 00 00 01 01 00 00 00  ................
   15120: 10 00 00 00 00 02 00 00 00 40 00 04 98 AD 32 A4  .........@....2.
   15130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15150: 00 02 00 00 09 00 1D 15 01 00 00 01 01 00 00 00  ................
   15160: 10 00 00 00 00 02 00 00 00 40 00 04 18 AC 32 A4  .........@....2.
   15170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15190: 00 02 00 00 09 00 1E 15 01 00 00 01 01 00 00 00  ................
   151A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AC 32 A4  .........@....2.
   151B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   151C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   151D0: 00 02 00 00 09 00 1F 15 01 00 00 01 01 00 00 00  ................
   151E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AD 32 A4  .........@....2.
   151F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15210: 00 02 00 00 09 00 20 15 01 00 00 01 01 00 00 00  ...... .........
   15220: 10 00 00 00 00 02 00 00 00 40 00 04 98 A0 32 A4  .........@....2.
   15230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15250: 00 02 00 00 09 00 21 15 01 00 00 01 01 00 00 00  ......!.........
   15260: 10 00 00 00 00 02 00 00 00 40 00 04 18 AA 32 A4  .........@....2.
   15270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15290: 00 02 00 00 09 00 22 15 01 00 00 01 01 00 00 00  ......".........
   152A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AA 32 A4  .........@....2.
   152B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   152C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   152D0: 00 02 00 00 09 00 23 15 01 00 00 01 01 00 00 00  ......#.........
   152E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A7 32 A4  .........@....2.
   152F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15310: 00 02 00 00 09 00 24 15 01 00 00 01 01 00 00 00  ......$.........
   15320: 10 00 00 00 00 02 00 00 00 40 00 04 98 A9 32 A4  .........@....2.
   15330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15350: 00 02 00 00 09 00 25 15 01 00 00 01 01 00 00 00  ......%.........
   15360: 10 00 00 00 00 02 00 00 00 40 00 04 18 A8 32 A4  .........@....2.
   15370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15390: 00 02 00 00 09 00 26 15 01 00 00 01 01 00 00 00  ......&.........
   153A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A8 32 A4  .........@....2.
   153B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   153C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   153D0: 00 02 00 00 09 00 27 15 01 00 00 01 01 00 00 00  ......'.........
   153E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A9 32 A4  .........@....2.
   153F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15410: 00 02 00 00 09 00 28 15 01 00 00 01 01 00 00 00  ......(.........
   15420: 10 00 00 00 00 02 00 00 00 40 00 04 18 A1 32 A4  .........@....2.
   15430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15450: 00 02 00 00 09 00 29 15 01 00 00 01 01 00 00 00  ......).........
   15460: 10 00 00 00 00 02 00 00 00 40 00 04 18 A7 32 A4  .........@....2.
   15470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15490: 00 02 00 00 09 00 2A 15 01 00 00 01 01 00 00 00  ......*.........
   154A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A5 32 A4  .........@....2.
   154B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   154C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   154D0: 00 02 00 00 09 00 2B 15 01 00 00 01 01 00 00 00  ......+.........
   154E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A6 32 A4  .........@....2.
   154F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15510: 00 02 00 00 09 00 2C 15 01 00 00 01 01 00 00 00  ......,.........
   15520: 10 00 00 00 00 02 00 00 00 40 00 04 98 A6 32 A4  .........@....2.
   15530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15550: 00 02 00 00 09 00 2D 15 01 00 00 01 01 00 00 00  ......-.........
   15560: 10 00 00 00 00 02 00 00 00 40 00 04 98 A1 32 A4  .........@....2.
   15570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15590: 00 02 00 00 09 00 2E 15 01 00 00 01 01 00 00 00  ................
   155A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A4 32 A4  .........@....2.
   155B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   155C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   155D0: 00 02 00 00 09 00 2F 15 01 00 00 01 01 00 00 00  ....../.........
   155E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A5 32 A4  .........@....2.
   155F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15610: 00 02 00 00 09 00 30 15 01 00 00 01 01 00 00 00  ......0.........
   15620: 10 00 00 00 00 02 00 00 00 40 00 04 18 A2 32 A4  .........@....2.
   15630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15650: 00 02 00 00 09 00 31 15 01 00 00 01 01 00 00 00  ......1.........
   15660: 10 00 00 00 00 02 00 00 00 40 00 04 18 A4 32 A4  .........@....2.
   15670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15690: 00 02 00 00 09 00 32 15 01 00 00 01 01 00 00 00  ......2.........
   156A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A2 32 A4  .........@....2.
   156B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   156C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   156D0: 00 02 00 00 09 00 33 15 01 00 00 01 01 00 00 00  ......3.........
   156E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A3 32 A4  .........@....2.
   156F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15710: 00 02 00 00 09 00 34 15 01 00 00 01 01 00 00 00  ......4.........
   15720: 10 00 00 00 00 02 00 00 00 40 00 04 98 A3 32 A4  .........@....2.
   15730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15750: 00 02 00 00 09 00 35 15 01 00 00 01 01 00 00 00  ......5.........
   15760: 10 00 00 00 00 02 00 00 00 40 00 04 18 90 32 A4  .........@....2.
   15770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15790: 00 02 00 00 09 00 36 15 01 00 00 01 01 00 00 00  ......6.........
   157A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9F 32 A4  .........@....2.
   157B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   157C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   157D0: 00 02 00 00 09 00 37 15 01 00 00 01 01 00 00 00  ......7.........
   157E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9F 32 A4  .........@....2.
   157F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15810: 00 02 00 00 09 00 38 15 01 00 00 01 01 00 00 00  ......8.........
   15820: 10 00 00 00 00 02 00 00 00 40 00 04 18 9B 32 A4  .........@....2.
   15830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15850: 00 02 00 00 09 00 39 15 01 00 00 01 01 00 00 00  ......9.........
   15860: 10 00 00 00 00 02 00 00 00 40 00 04 18 9E 32 A4  .........@....2.
   15870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15890: 00 02 00 00 09 00 3A 15 01 00 00 01 01 00 00 00  ......:.........
   158A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9E 32 A4  .........@....2.
   158B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   158C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   158D0: 00 02 00 00 09 00 3B 15 01 00 00 01 01 00 00 00  ......;.........
   158E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9B 32 A4  .........@....2.
   158F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15910: 00 02 00 00 09 00 3C 15 01 00 00 01 01 00 00 00  ......<.........
   15920: 10 00 00 00 00 02 00 00 00 40 00 04 98 9D 32 A4  .........@....2.
   15930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15950: 00 02 00 00 09 00 3D 15 01 00 00 01 01 00 00 00  ......=.........
   15960: 10 00 00 00 00 02 00 00 00 40 00 04 18 9C 32 A4  .........@....2.
   15970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15990: 00 02 00 00 09 00 3E 15 01 00 00 01 01 00 00 00  ......>.........
   159A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9C 32 A4  .........@....2.
   159B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   159C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   159D0: 00 02 00 00 09 00 3F 15 01 00 00 01 01 00 00 00  ......?.........
   159E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9D 32 A4  .........@....2.
   159F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15A10: 00 02 00 00 09 00 40 15 01 00 00 01 01 00 00 00  ......@.........
   15A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 90 32 A4  .........@....2.
   15A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15A50: 00 02 00 00 09 00 41 15 01 00 00 01 01 00 00 00  ......A.........
   15A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 9A 32 A4  .........@....2.
   15A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15A90: 00 02 00 00 09 00 42 15 01 00 00 01 01 00 00 00  ......B.........
   15AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9A 32 A4  .........@....2.
   15AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15AD0: 00 02 00 00 09 00 43 15 01 00 00 01 01 00 00 00  ......C.........
   15AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 97 32 A4  .........@....2.
   15AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15B10: 00 02 00 00 09 00 44 15 01 00 00 01 01 00 00 00  ......D.........
   15B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 99 32 A4  .........@....2.
   15B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15B50: 00 02 00 00 09 00 45 15 01 00 00 01 01 00 00 00  ......E.........
   15B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 98 32 A4  .........@....2.
   15B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15B90: 00 02 00 00 09 00 46 15 01 00 00 01 01 00 00 00  ......F.........
   15BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 98 32 A4  .........@....2.
   15BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15BD0: 00 02 00 00 09 00 47 15 01 00 00 01 01 00 00 00  ......G.........
   15BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 99 32 A4  .........@....2.
   15BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15C10: 00 02 00 00 09 00 48 15 01 00 00 01 01 00 00 00  ......H.........
   15C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 91 32 A4  .........@....2.
   15C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15C50: 00 02 00 00 09 00 49 15 01 00 00 01 01 00 00 00  ......I.........
   15C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 97 32 A4  .........@....2.
   15C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15C90: 00 02 00 00 09 00 4A 15 01 00 00 01 01 00 00 00  ......J.........
   15CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 95 32 A4  .........@....2.
   15CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15CD0: 00 02 00 00 09 00 4B 15 01 00 00 01 01 00 00 00  ......K.........
   15CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 96 32 A4  .........@....2.
   15CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15D10: 00 02 00 00 09 00 4C 15 01 00 00 01 01 00 00 00  ......L.........
   15D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 96 32 A4  .........@....2.
   15D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15D50: 00 02 00 00 09 00 4D 15 01 00 00 01 01 00 00 00  ......M.........
   15D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 91 32 A4  .........@....2.
   15D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15D90: 00 02 00 00 09 00 4E 15 01 00 00 01 01 00 00 00  ......N.........
   15DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 94 32 A4  .........@....2.
   15DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15DD0: 00 02 00 00 09 00 4F 15 01 00 00 01 01 00 00 00  ......O.........
   15DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 95 32 A4  .........@....2.
   15DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15E10: 00 02 00 00 09 00 50 15 01 00 00 01 01 00 00 00  ......P.........
   15E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 92 32 A4  .........@....2.
   15E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15E50: 00 02 00 00 09 00 51 15 01 00 00 01 01 00 00 00  ......Q.........
   15E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 94 32 A4  .........@....2.
   15E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15E90: 00 02 00 00 09 00 52 15 01 00 00 01 01 00 00 00  ......R.........
   15EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 92 32 A4  .........@....2.
   15EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15ED0: 00 02 00 00 09 00 53 15 01 00 00 01 01 00 00 00  ......S.........
   15EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 93 32 A4  .........@....2.
   15EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15F10: 00 02 00 00 09 00 54 15 01 00 00 01 01 00 00 00  ......T.........
   15F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 93 32 A4  .........@....2.
   15F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15F50: 00 02 00 00 09 00 55 15 01 00 00 01 01 00 00 00  ......U.........
   15F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 80 32 A4  .........@....2.
   15F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15F90: 00 02 00 00 09 00 56 15 01 00 00 01 01 00 00 00  ......V.........
   15FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8F 32 A4  .........@....2.
   15FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   15FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   15FD0: 00 02 00 00 09 00 57 15 01 00 00 01 01 00 00 00  ......W.........
   15FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8F 32 A4  .........@....2.
   15FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16010: 00 02 00 00 09 00 58 15 01 00 00 01 01 00 00 00  ......X.........
   16020: 10 00 00 00 00 02 00 00 00 40 00 04 18 8B 32 A4  .........@....2.
   16030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16050: 00 02 00 00 09 00 59 15 01 00 00 01 01 00 00 00  ......Y.........
   16060: 10 00 00 00 00 02 00 00 00 40 00 04 18 8E 32 A4  .........@....2.
   16070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16090: 00 02 00 00 09 00 5A 15 01 00 00 01 01 00 00 00  ......Z.........
   160A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8E 32 A4  .........@....2.
   160B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   160C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   160D0: 00 02 00 00 09 00 5B 15 01 00 00 01 01 00 00 00  ......[.........
   160E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8B 32 A4  .........@....2.
   160F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16110: 00 02 00 00 09 00 5C 15 01 00 00 01 01 00 00 00  ......\.........
   16120: 10 00 00 00 00 02 00 00 00 40 00 04 98 8D 32 A4  .........@....2.
   16130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16150: 00 02 00 00 09 00 5D 15 01 00 00 01 01 00 00 00  ......].........
   16160: 10 00 00 00 00 02 00 00 00 40 00 04 18 8C 32 A4  .........@....2.
   16170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16190: 00 02 00 00 09 00 5E 15 01 00 00 01 01 00 00 00  ......^.........
   161A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8C 32 A4  .........@....2.
   161B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   161C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   161D0: 00 02 00 00 09 00 5F 15 01 00 00 01 01 00 00 00  ......_.........
   161E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8D 32 A4  .........@....2.
   161F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16210: 00 02 00 00 09 00 60 15 01 00 00 01 01 00 00 00  ......`.........
   16220: 10 00 00 00 00 02 00 00 00 40 00 04 98 80 32 A4  .........@....2.
   16230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16250: 00 02 00 00 09 00 61 15 01 00 00 01 01 00 00 00  ......a.........
   16260: 10 00 00 00 00 02 00 00 00 40 00 04 18 8A 32 A4  .........@....2.
   16270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16290: 00 02 00 00 09 00 62 15 01 00 00 01 01 00 00 00  ......b.........
   162A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8A 32 A4  .........@....2.
   162B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   162C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   162D0: 00 02 00 00 09 00 63 15 01 00 00 01 01 00 00 00  ......c.........
   162E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 87 32 A4  .........@....2.
   162F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16310: 00 02 00 00 09 00 64 15 01 00 00 01 01 00 00 00  ......d.........
   16320: 10 00 00 00 00 02 00 00 00 40 00 04 98 89 32 A4  .........@....2.
   16330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16350: 00 02 00 00 09 00 65 15 01 00 00 01 01 00 00 00  ......e.........
   16360: 10 00 00 00 00 02 00 00 00 40 00 04 18 88 32 A4  .........@....2.
   16370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16390: 00 02 00 00 09 00 66 15 01 00 00 01 01 00 00 00  ......f.........
   163A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 88 32 A4  .........@....2.
   163B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   163C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   163D0: 00 02 00 00 09 00 67 15 01 00 00 01 01 00 00 00  ......g.........
   163E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 89 32 A4  .........@....2.
   163F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16410: 00 02 00 00 09 00 68 15 01 00 00 01 01 00 00 00  ......h.........
   16420: 10 00 00 00 00 02 00 00 00 40 00 04 18 81 32 A4  .........@....2.
   16430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16450: 00 02 00 00 09 00 69 15 01 00 00 01 01 00 00 00  ......i.........
   16460: 10 00 00 00 00 02 00 00 00 40 00 04 18 87 32 A4  .........@....2.
   16470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16490: 00 02 00 00 09 00 6A 15 01 00 00 01 01 00 00 00  ......j.........
   164A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 85 32 A4  .........@....2.
   164B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   164C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   164D0: 00 02 00 00 09 00 6B 15 01 00 00 01 01 00 00 00  ......k.........
   164E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 86 32 A4  .........@....2.
   164F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16510: 00 02 00 00 09 00 6C 15 01 00 00 01 01 00 00 00  ......l.........
   16520: 10 00 00 00 00 02 00 00 00 40 00 04 98 86 32 A4  .........@....2.
   16530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16550: 00 02 00 00 09 00 6D 15 01 00 00 01 01 00 00 00  ......m.........
   16560: 10 00 00 00 00 02 00 00 00 40 00 04 98 81 32 A4  .........@....2.
   16570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16590: 00 02 00 00 09 00 6E 15 01 00 00 01 01 00 00 00  ......n.........
   165A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 84 32 A4  .........@....2.
   165B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   165C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   165D0: 00 02 00 00 09 00 6F 15 01 00 00 01 01 00 00 00  ......o.........
   165E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 85 32 A4  .........@....2.
   165F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16610: 00 02 00 00 09 00 70 15 01 00 00 01 01 00 00 00  ......p.........
   16620: 10 00 00 00 00 02 00 00 00 40 00 04 18 82 32 A4  .........@....2.
   16630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16650: 00 02 00 00 09 00 71 15 01 00 00 01 01 00 00 00  ......q.........
   16660: 10 00 00 00 00 02 00 00 00 40 00 04 18 84 32 A4  .........@....2.
   16670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16690: 00 02 00 00 09 00 72 15 01 00 00 01 01 00 00 00  ......r.........
   166A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 82 32 A4  .........@....2.
   166B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   166C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   166D0: 00 02 00 00 09 00 73 15 01 00 00 01 01 00 00 00  ......s.........
   166E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 83 32 A4  .........@....2.
   166F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16710: 00 02 00 00 09 00 74 15 01 00 00 01 01 00 00 00  ......t.........
   16720: 10 00 00 00 00 02 00 00 00 40 00 04 98 83 32 A4  .........@....2.
   16730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16750: 00 02 00 00 09 00 75 15 01 00 00 01 01 00 00 00  ......u.........
   16760: 10 00 00 00 00 02 00 00 00 40 00 04 18 70 32 A4  .........@...p2.
   16770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16790: 00 02 00 00 09 00 76 15 01 00 00 01 01 00 00 00  ......v.........
   167A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7F 32 A4  .........@....2.
   167B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   167C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   167D0: 00 02 00 00 09 00 77 15 01 00 00 01 01 00 00 00  ......w.........
   167E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7F 32 A4  .........@....2.
   167F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16810: 00 02 00 00 09 00 78 15 01 00 00 01 01 00 00 00  ......x.........
   16820: 10 00 00 00 00 02 00 00 00 40 00 04 18 7B 32 A4  .........@...{2.
   16830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16850: 00 02 00 00 09 00 79 15 01 00 00 01 01 00 00 00  ......y.........
   16860: 10 00 00 00 00 02 00 00 00 40 00 04 18 7E 32 A4  .........@...~2.
   16870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16890: 00 02 00 00 09 00 7A 15 01 00 00 01 01 00 00 00  ......z.........
   168A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7E 32 A4  .........@...~2.
   168B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   168C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   168D0: 00 02 00 00 09 00 7B 15 01 00 00 01 01 00 00 00  ......{.........
   168E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7B 32 A4  .........@...{2.
   168F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16910: 00 02 00 00 09 00 7C 15 01 00 00 01 01 00 00 00  ......|.........
   16920: 10 00 00 00 00 02 00 00 00 40 00 04 98 7D 32 A4  .........@...}2.
   16930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16950: 00 02 00 00 09 00 7D 15 01 00 00 01 01 00 00 00  ......}.........
   16960: 10 00 00 00 00 02 00 00 00 40 00 04 18 7C 32 A4  .........@...|2.
   16970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16990: 00 02 00 00 09 00 7E 15 01 00 00 01 01 00 00 00  ......~.........
   169A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7C 32 A4  .........@...|2.
   169B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   169C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   169D0: 00 02 00 00 09 00 7F 15 01 00 00 01 01 00 00 00  ................
   169E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7D 32 A4  .........@...}2.
   169F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16A10: 00 02 00 00 09 00 80 15 01 00 00 01 01 00 00 00  ................
   16A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 70 32 A4  .........@...p2.
   16A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16A50: 00 02 00 00 09 00 81 15 01 00 00 01 01 00 00 00  ................
   16A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 7A 32 A4  .........@...z2.
   16A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16A90: 00 02 00 00 09 00 82 15 01 00 00 01 01 00 00 00  ................
   16AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7A 32 A4  .........@...z2.
   16AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16AD0: 00 02 00 00 09 00 83 15 01 00 00 01 01 00 00 00  ................
   16AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 77 32 A4  .........@...w2.
   16AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16B10: 00 02 00 00 09 00 84 15 01 00 00 01 01 00 00 00  ................
   16B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 79 32 A4  .........@...y2.
   16B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16B50: 00 02 00 00 09 00 85 15 01 00 00 01 01 00 00 00  ................
   16B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 78 32 A4  .........@...x2.
   16B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16B90: 00 02 00 00 09 00 86 15 01 00 00 01 01 00 00 00  ................
   16BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 78 32 A4  .........@...x2.
   16BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16BD0: 00 02 00 00 09 00 87 15 01 00 00 01 01 00 00 00  ................
   16BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 79 32 A4  .........@...y2.
   16BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16C10: 00 02 00 00 09 00 88 15 01 00 00 01 01 00 00 00  ................
   16C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 71 32 A4  .........@...q2.
   16C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16C50: 00 02 00 00 09 00 89 15 01 00 00 01 01 00 00 00  ................
   16C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 77 32 A4  .........@...w2.
   16C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16C90: 00 02 00 00 09 00 8A 15 01 00 00 01 01 00 00 00  ................
   16CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 75 32 A4  .........@...u2.
   16CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16CD0: 00 02 00 00 09 00 8B 15 01 00 00 01 01 00 00 00  ................
   16CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 76 32 A4  .........@...v2.
   16CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16D10: 00 02 00 00 09 00 8C 15 01 00 00 01 01 00 00 00  ................
   16D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 76 32 A4  .........@...v2.
   16D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16D50: 00 02 00 00 09 00 8D 15 01 00 00 01 01 00 00 00  ................
   16D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 71 32 A4  .........@...q2.
   16D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16D90: 00 02 00 00 09 00 8E 15 01 00 00 01 01 00 00 00  ................
   16DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 74 32 A4  .........@...t2.
   16DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16DD0: 00 02 00 00 09 00 8F 15 01 00 00 01 01 00 00 00  ................
   16DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 75 32 A4  .........@...u2.
   16DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16E10: 00 02 00 00 09 00 90 15 01 00 00 01 01 00 00 00  ................
   16E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 72 32 A4  .........@...r2.
   16E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16E50: 00 02 00 00 09 00 91 15 01 00 00 01 01 00 00 00  ................
   16E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 74 32 A4  .........@...t2.
   16E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16E90: 00 02 00 00 09 00 92 15 01 00 00 01 01 00 00 00  ................
   16EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 72 32 A4  .........@...r2.
   16EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16ED0: 00 02 00 00 09 00 93 15 01 00 00 01 01 00 00 00  ................
   16EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 73 32 A4  .........@...s2.
   16EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16F10: 00 02 00 00 09 00 94 15 01 00 00 01 01 00 00 00  ................
   16F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 73 32 A4  .........@...s2.
   16F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16F50: 00 02 00 00 09 00 95 15 01 00 00 01 01 00 00 00  ................
   16F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 60 32 A4  .........@...`2.
   16F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16F90: 00 02 00 00 09 00 96 15 01 00 00 01 01 00 00 00  ................
   16FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6F 32 A4  .........@...o2.
   16FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   16FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   16FD0: 00 02 00 00 09 00 97 15 01 00 00 01 01 00 00 00  ................
   16FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6F 32 A4  .........@...o2.
   16FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17010: 00 02 00 00 09 00 98 15 01 00 00 01 01 00 00 00  ................
   17020: 10 00 00 00 00 02 00 00 00 40 00 04 18 6B 32 A4  .........@...k2.
   17030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17050: 00 02 00 00 09 00 99 15 01 00 00 01 01 00 00 00  ................
   17060: 10 00 00 00 00 02 00 00 00 40 00 04 18 6E 32 A4  .........@...n2.
   17070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17090: 00 02 00 00 09 00 9A 15 01 00 00 01 01 00 00 00  ................
   170A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6E 32 A4  .........@...n2.
   170B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   170C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   170D0: 00 02 00 00 09 00 9B 15 01 00 00 01 01 00 00 00  ................
   170E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6B 32 A4  .........@...k2.
   170F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17110: 00 02 00 00 09 00 9C 15 01 00 00 01 01 00 00 00  ................
   17120: 10 00 00 00 00 02 00 00 00 40 00 04 98 6D 32 A4  .........@...m2.
   17130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17150: 00 02 00 00 09 00 9D 15 01 00 00 01 01 00 00 00  ................
   17160: 10 00 00 00 00 02 00 00 00 40 00 04 18 6C 32 A4  .........@...l2.
   17170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17190: 00 02 00 00 09 00 9E 15 01 00 00 01 01 00 00 00  ................
   171A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6C 32 A4  .........@...l2.
   171B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   171C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   171D0: 00 02 00 00 09 00 9F 15 01 00 00 01 01 00 00 00  ................
   171E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6D 32 A4  .........@...m2.
   171F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17210: 00 02 00 00 09 00 A0 15 01 00 00 01 01 00 00 00  ................
   17220: 10 00 00 00 00 02 00 00 00 40 00 04 98 60 32 A4  .........@...`2.
   17230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17250: 00 02 00 00 09 00 A1 15 01 00 00 01 01 00 00 00  ................
   17260: 10 00 00 00 00 02 00 00 00 40 00 04 18 6A 32 A4  .........@...j2.
   17270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17290: 00 02 00 00 09 00 A2 15 01 00 00 01 01 00 00 00  ................
   172A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6A 32 A4  .........@...j2.
   172B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   172C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   172D0: 00 02 00 00 09 00 A3 15 01 00 00 01 01 00 00 00  ................
   172E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 67 32 A4  .........@...g2.
   172F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17310: 00 02 00 00 09 00 A4 15 01 00 00 01 01 00 00 00  ................
   17320: 10 00 00 00 00 02 00 00 00 40 00 04 98 69 32 A4  .........@...i2.
   17330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17350: 00 02 00 00 09 00 A5 15 01 00 00 01 01 00 00 00  ................
   17360: 10 00 00 00 00 02 00 00 00 40 00 04 18 68 32 A4  .........@...h2.
   17370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17390: 00 02 00 00 09 00 A6 15 01 00 00 01 01 00 00 00  ................
   173A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 68 32 A4  .........@...h2.
   173B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   173C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   173D0: 00 02 00 00 09 00 A7 15 01 00 00 01 01 00 00 00  ................
   173E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 69 32 A4  .........@...i2.
   173F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17410: 00 02 00 00 09 00 A8 15 01 00 00 01 01 00 00 00  ................
   17420: 10 00 00 00 00 02 00 00 00 40 00 04 18 61 32 A4  .........@...a2.
   17430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17450: 00 02 00 00 09 00 A9 15 01 00 00 01 01 00 00 00  ................
   17460: 10 00 00 00 00 02 00 00 00 40 00 04 18 67 32 A4  .........@...g2.
   17470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17490: 00 02 00 00 09 00 AA 15 01 00 00 01 01 00 00 00  ................
   174A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 65 32 A4  .........@...e2.
   174B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   174C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   174D0: 00 02 00 00 09 00 AB 15 01 00 00 01 01 00 00 00  ................
   174E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 66 32 A4  .........@...f2.
   174F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17510: 00 02 00 00 09 00 AC 15 01 00 00 01 01 00 00 00  ................
   17520: 10 00 00 00 00 02 00 00 00 40 00 04 98 66 32 A4  .........@...f2.
   17530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17550: 00 02 00 00 09 00 AD 15 01 00 00 01 01 00 00 00  ................
   17560: 10 00 00 00 00 02 00 00 00 40 00 04 98 61 32 A4  .........@...a2.
   17570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17590: 00 02 00 00 09 00 AE 15 01 00 00 01 01 00 00 00  ................
   175A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 64 32 A4  .........@...d2.
   175B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   175C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   175D0: 00 02 00 00 09 00 AF 15 01 00 00 01 01 00 00 00  ................
   175E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 65 32 A4  .........@...e2.
   175F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17610: 00 02 00 00 09 00 B0 15 01 00 00 01 01 00 00 00  ................
   17620: 10 00 00 00 00 02 00 00 00 40 00 04 18 62 32 A4  .........@...b2.
   17630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17650: 00 02 00 00 09 00 B1 15 01 00 00 01 01 00 00 00  ................
   17660: 10 00 00 00 00 02 00 00 00 40 00 04 18 64 32 A4  .........@...d2.
   17670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17690: 00 02 00 00 09 00 B2 15 01 00 00 01 01 00 00 00  ................
   176A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 62 32 A4  .........@...b2.
   176B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   176C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   176D0: 00 02 00 00 09 00 B3 15 01 00 00 01 01 00 00 00  ................
   176E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 63 32 A4  .........@...c2.
   176F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17710: 00 02 00 00 09 00 B4 15 01 00 00 01 01 00 00 00  ................
   17720: 10 00 00 00 00 02 00 00 00 40 00 04 98 63 32 A4  .........@...c2.
   17730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17750: 00 02 00 00 09 00 B5 15 01 00 00 01 01 00 00 00  ................
   17760: 10 00 00 00 00 02 00 00 00 40 00 04 18 50 32 A4  .........@...P2.
   17770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17790: 00 02 00 00 09 00 B6 15 01 00 00 01 01 00 00 00  ................
   177A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5F 32 A4  .........@..._2.
   177B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   177C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   177D0: 00 02 00 00 09 00 B7 15 01 00 00 01 01 00 00 00  ................
   177E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5F 32 A4  .........@..._2.
   177F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17810: 00 02 00 00 09 00 B8 15 01 00 00 01 01 00 00 00  ................
   17820: 10 00 00 00 00 02 00 00 00 40 00 04 18 5B 32 A4  .........@...[2.
   17830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17850: 00 02 00 00 09 00 B9 15 01 00 00 01 01 00 00 00  ................
   17860: 10 00 00 00 00 02 00 00 00 40 00 04 18 5E 32 A4  .........@...^2.
   17870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17890: 00 02 00 00 09 00 BA 15 01 00 00 01 01 00 00 00  ................
   178A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5E 32 A4  .........@...^2.
   178B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   178C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   178D0: 00 02 00 00 09 00 BB 15 01 00 00 01 01 00 00 00  ................
   178E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5B 32 A4  .........@...[2.
   178F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17910: 00 02 00 00 09 00 BC 15 01 00 00 01 01 00 00 00  ................
   17920: 10 00 00 00 00 02 00 00 00 40 00 04 98 5D 32 A4  .........@...]2.
   17930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17950: 00 02 00 00 09 00 BD 15 01 00 00 01 01 00 00 00  ................
   17960: 10 00 00 00 00 02 00 00 00 40 00 04 18 5C 32 A4  .........@...\2.
   17970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17990: 00 02 00 00 09 00 BE 15 01 00 00 01 01 00 00 00  ................
   179A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5C 32 A4  .........@...\2.
   179B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   179C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   179D0: 00 02 00 00 09 00 BF 15 01 00 00 01 01 00 00 00  ................
   179E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5D 32 A4  .........@...]2.
   179F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17A10: 00 02 00 00 09 00 C0 15 01 00 00 01 01 00 00 00  ................
   17A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 50 32 A4  .........@...P2.
   17A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17A50: 00 02 00 00 09 00 C1 15 01 00 00 01 01 00 00 00  ................
   17A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 5A 32 A4  .........@...Z2.
   17A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17A90: 00 02 00 00 09 00 C2 15 01 00 00 01 01 00 00 00  ................
   17AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5A 32 A4  .........@...Z2.
   17AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17AD0: 00 02 00 00 09 00 C3 15 01 00 00 01 01 00 00 00  ................
   17AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 57 32 A4  .........@...W2.
   17AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17B10: 00 02 00 00 09 00 C4 15 01 00 00 01 01 00 00 00  ................
   17B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 59 32 A4  .........@...Y2.
   17B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17B50: 00 02 00 00 09 00 C5 15 01 00 00 01 01 00 00 00  ................
   17B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 58 32 A4  .........@...X2.
   17B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17B90: 00 02 00 00 09 00 C6 15 01 00 00 01 01 00 00 00  ................
   17BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 58 32 A4  .........@...X2.
   17BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17BD0: 00 02 00 00 09 00 C7 15 01 00 00 01 01 00 00 00  ................
   17BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 59 32 A4  .........@...Y2.
   17BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17C10: 00 02 00 00 09 00 C8 15 01 00 00 01 01 00 00 00  ................
   17C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 51 32 A4  .........@...Q2.
   17C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17C50: 00 02 00 00 09 00 C9 15 01 00 00 01 01 00 00 00  ................
   17C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 57 32 A4  .........@...W2.
   17C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17C90: 00 02 00 00 09 00 CA 15 01 00 00 01 01 00 00 00  ................
   17CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 55 32 A4  .........@...U2.
   17CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17CD0: 00 02 00 00 09 00 CB 15 01 00 00 01 01 00 00 00  ................
   17CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 56 32 A4  .........@...V2.
   17CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17D10: 00 02 00 00 09 00 CC 15 01 00 00 01 01 00 00 00  ................
   17D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 56 32 A4  .........@...V2.
   17D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17D50: 00 02 00 00 09 00 CD 15 01 00 00 01 01 00 00 00  ................
   17D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 51 32 A4  .........@...Q2.
   17D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17D90: 00 02 00 00 09 00 CE 15 01 00 00 01 01 00 00 00  ................
   17DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 54 32 A4  .........@...T2.
   17DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17DD0: 00 02 00 00 09 00 CF 15 01 00 00 01 01 00 00 00  ................
   17DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 55 32 A4  .........@...U2.
   17DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17E10: 00 02 00 00 09 00 D0 15 01 00 00 01 01 00 00 00  ................
   17E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 52 32 A4  .........@...R2.
   17E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17E50: 00 02 00 00 09 00 D1 15 01 00 00 01 01 00 00 00  ................
   17E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 54 32 A4  .........@...T2.
   17E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17E90: 00 02 00 00 09 00 D2 15 01 00 00 01 01 00 00 00  ................
   17EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 52 32 A4  .........@...R2.
   17EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17ED0: 00 02 00 00 09 00 D3 15 01 00 00 01 01 00 00 00  ................
   17EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 53 32 A4  .........@...S2.
   17EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17F10: 00 02 00 00 09 00 D4 15 01 00 00 01 01 00 00 00  ................
   17F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 53 32 A4  .........@...S2.
   17F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17F50: 00 02 00 00 09 00 D5 15 01 00 00 01 01 00 00 00  ................
   17F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 40 32 A4  .........@...@2.
   17F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17F90: 00 02 00 00 09 00 D6 15 01 00 00 01 01 00 00 00  ................
   17FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4F 32 A4  .........@...O2.
   17FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   17FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   17FD0: 00 02 00 00 09 00 D7 15 01 00 00 01 01 00 00 00  ................
   17FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4F 32 A4  .........@...O2.
   17FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18010: 00 02 00 00 09 00 D8 15 01 00 00 01 01 00 00 00  ................
   18020: 10 00 00 00 00 02 00 00 00 40 00 04 18 4B 32 A4  .........@...K2.
   18030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18050: 00 02 00 00 09 00 D9 15 01 00 00 01 01 00 00 00  ................
   18060: 10 00 00 00 00 02 00 00 00 40 00 04 18 4E 32 A4  .........@...N2.
   18070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18090: 00 02 00 00 09 00 DA 15 01 00 00 01 01 00 00 00  ................
   180A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4E 32 A4  .........@...N2.
   180B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   180C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   180D0: 00 02 00 00 09 00 DB 15 01 00 00 01 01 00 00 00  ................
   180E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4B 32 A4  .........@...K2.
   180F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18110: 00 02 00 00 09 00 DC 15 01 00 00 01 01 00 00 00  ................
   18120: 10 00 00 00 00 02 00 00 00 40 00 04 98 4D 32 A4  .........@...M2.
   18130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18150: 00 02 00 00 09 00 DD 15 01 00 00 01 01 00 00 00  ................
   18160: 10 00 00 00 00 02 00 00 00 40 00 04 18 4C 32 A4  .........@...L2.
   18170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18190: 00 02 00 00 09 00 DE 15 01 00 00 01 01 00 00 00  ................
   181A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4C 32 A4  .........@...L2.
   181B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   181C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   181D0: 00 02 00 00 09 00 DF 15 01 00 00 01 01 00 00 00  ................
   181E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4D 32 A4  .........@...M2.
   181F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18210: 00 02 00 00 09 00 E0 15 01 00 00 01 01 00 00 00  ................
   18220: 10 00 00 00 00 02 00 00 00 40 00 04 98 40 32 A4  .........@...@2.
   18230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18250: 00 02 00 00 09 00 E1 15 01 00 00 01 01 00 00 00  ................
   18260: 10 00 00 00 00 02 00 00 00 40 00 04 18 4A 32 A4  .........@...J2.
   18270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18290: 00 02 00 00 09 00 E2 15 01 00 00 01 01 00 00 00  ................
   182A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4A 32 A4  .........@...J2.
   182B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   182C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   182D0: 00 02 00 00 09 00 E3 15 01 00 00 01 01 00 00 00  ................
   182E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 47 32 A4  .........@...G2.
   182F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18310: 00 02 00 00 09 00 E4 15 01 00 00 01 01 00 00 00  ................
   18320: 10 00 00 00 00 02 00 00 00 40 00 04 98 49 32 A4  .........@...I2.
   18330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18350: 00 02 00 00 09 00 E5 15 01 00 00 01 01 00 00 00  ................
   18360: 10 00 00 00 00 02 00 00 00 40 00 04 18 48 32 A4  .........@...H2.
   18370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18390: 00 02 00 00 09 00 E6 15 01 00 00 01 01 00 00 00  ................
   183A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 48 32 A4  .........@...H2.
   183B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   183C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   183D0: 00 02 00 00 09 00 E7 15 01 00 00 01 01 00 00 00  ................
   183E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 49 32 A4  .........@...I2.
   183F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18410: 00 02 00 00 09 00 E8 15 01 00 00 01 01 00 00 00  ................
   18420: 10 00 00 00 00 02 00 00 00 40 00 04 18 41 32 A4  .........@...A2.
   18430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18450: 00 02 00 00 09 00 E9 15 01 00 00 01 01 00 00 00  ................
   18460: 10 00 00 00 00 02 00 00 00 40 00 04 18 47 32 A4  .........@...G2.
   18470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18490: 00 02 00 00 09 00 EA 15 01 00 00 01 01 00 00 00  ................
   184A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 45 32 A4  .........@...E2.
   184B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   184C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   184D0: 00 02 00 00 09 00 EB 15 01 00 00 01 01 00 00 00  ................
   184E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 46 32 A4  .........@...F2.
   184F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18510: 00 02 00 00 09 00 EC 15 01 00 00 01 01 00 00 00  ................
   18520: 10 00 00 00 00 02 00 00 00 40 00 04 98 46 32 A4  .........@...F2.
   18530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18550: 00 02 00 00 09 00 ED 15 01 00 00 01 01 00 00 00  ................
   18560: 10 00 00 00 00 02 00 00 00 40 00 04 98 41 32 A4  .........@...A2.
   18570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18590: 00 02 00 00 09 00 EE 15 01 00 00 01 01 00 00 00  ................
   185A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 44 32 A4  .........@...D2.
   185B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   185C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   185D0: 00 02 00 00 09 00 EF 15 01 00 00 01 01 00 00 00  ................
   185E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 45 32 A4  .........@...E2.
   185F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18610: 00 02 00 00 09 00 F0 15 01 00 00 01 01 00 00 00  ................
   18620: 10 00 00 00 00 02 00 00 00 40 00 04 18 42 32 A4  .........@...B2.
   18630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18650: 00 02 00 00 09 00 F1 15 01 00 00 01 01 00 00 00  ................
   18660: 10 00 00 00 00 02 00 00 00 40 00 04 18 44 32 A4  .........@...D2.
   18670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18690: 00 02 00 00 09 00 F2 15 01 00 00 01 01 00 00 00  ................
   186A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 42 32 A4  .........@...B2.
   186B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   186C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   186D0: 00 02 00 00 09 00 F3 15 01 00 00 01 01 00 00 00  ................
   186E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 43 32 A4  .........@...C2.
   186F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18710: 00 02 00 00 09 00 F4 15 01 00 00 01 01 00 00 00  ................
   18720: 10 00 00 00 00 02 00 00 00 40 00 04 98 43 32 A4  .........@...C2.
   18730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18750: 00 02 00 00 09 00 F5 15 01 00 00 01 01 00 00 00  ................
   18760: 10 00 00 00 00 02 00 00 00 40 00 04 18 30 32 A4  .........@...02.
   18770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18790: 00 02 00 00 09 00 F6 15 01 00 00 01 01 00 00 00  ................
   187A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3F 32 A4  .........@...?2.
   187B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   187C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   187D0: 00 02 00 00 09 00 F7 15 01 00 00 01 01 00 00 00  ................
   187E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3F 32 A4  .........@...?2.
   187F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18810: 00 02 00 00 09 00 F8 15 01 00 00 01 01 00 00 00  ................
   18820: 10 00 00 00 00 02 00 00 00 40 00 04 18 3B 32 A4  .........@...;2.
   18830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18850: 00 02 00 00 09 00 F9 15 01 00 00 01 01 00 00 00  ................
   18860: 10 00 00 00 00 02 00 00 00 40 00 04 18 3E 32 A4  .........@...>2.
   18870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18890: 00 02 00 00 09 00 FA 15 01 00 00 01 01 00 00 00  ................
   188A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3E 32 A4  .........@...>2.
   188B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   188C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   188D0: 00 02 00 00 09 00 FB 15 01 00 00 01 01 00 00 00  ................
   188E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3B 32 A4  .........@...;2.
   188F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18910: 00 02 00 00 09 00 FC 15 01 00 00 01 01 00 00 00  ................
   18920: 10 00 00 00 00 02 00 00 00 40 00 04 98 3D 32 A4  .........@...=2.
   18930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18950: 00 02 00 00 09 00 FD 15 01 00 00 01 01 00 00 00  ................
   18960: 10 00 00 00 00 02 00 00 00 40 00 04 18 3C 32 A4  .........@...<2.
   18970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18990: 00 02 00 00 09 00 FE 15 01 00 00 01 01 00 00 00  ................
   189A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3C 32 A4  .........@...<2.
   189B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   189C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   189D0: 00 02 00 00 09 00 FF 15 01 00 00 01 01 00 00 00  ................
   189E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3D 32 A4  .........@...=2.
   189F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18A10: 00 02 00 00 09 00 00 50 02 00 00 01 01 00 00 00  .......P........
   18A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 30 32 A4  .........@...02.
   18A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18A50: 00 02 00 00 09 00 01 50 02 00 00 01 01 00 00 00  .......P........
   18A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 3A 32 A4  .........@...:2.
   18A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18A90: 00 02 00 00 09 00 02 50 02 00 00 01 01 00 00 00  .......P........
   18AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3A 32 A4  .........@...:2.
   18AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18AD0: 00 02 00 00 09 00 03 50 02 00 00 01 01 00 00 00  .......P........
   18AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 37 32 A4  .........@...72.
   18AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18B10: 00 02 00 00 09 00 04 50 02 00 00 01 01 00 00 00  .......P........
   18B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 39 32 A4  .........@...92.
   18B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18B50: 00 02 00 00 09 00 05 50 02 00 00 01 01 00 00 00  .......P........
   18B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 38 32 A4  .........@...82.
   18B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18B90: 00 02 00 00 09 00 06 50 02 00 00 01 01 00 00 00  .......P........
   18BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 38 32 A4  .........@...82.
   18BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18BD0: 00 02 00 00 09 00 07 50 02 00 00 01 01 00 00 00  .......P........
   18BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 39 32 A4  .........@...92.
   18BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18C10: 00 02 00 00 09 00 08 50 02 00 00 01 01 00 00 00  .......P........
   18C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 31 32 A4  .........@...12.
   18C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18C50: 00 02 00 00 09 00 09 50 02 00 00 01 01 00 00 00  .......P........
   18C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 37 32 A4  .........@...72.
   18C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18C90: 00 02 00 00 09 00 0A 50 02 00 00 01 01 00 00 00  .......P........
   18CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 35 32 A4  .........@...52.
   18CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18CD0: 00 02 00 00 09 00 0B 50 02 00 00 01 01 00 00 00  .......P........
   18CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 36 32 A4  .........@...62.
   18CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18D10: 00 02 00 00 09 00 0C 50 02 00 00 01 01 00 00 00  .......P........
   18D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 36 32 A4  .........@...62.
   18D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18D50: 00 02 00 00 09 00 0D 50 02 00 00 01 01 00 00 00  .......P........
   18D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 31 32 A4  .........@...12.
   18D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18D90: 00 02 00 00 09 00 0E 50 02 00 00 01 01 00 00 00  .......P........
   18DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 34 32 A4  .........@...42.
   18DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18DD0: 00 02 00 00 09 00 0F 50 02 00 00 01 01 00 00 00  .......P........
   18DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 35 32 A4  .........@...52.
   18DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18E10: 00 02 00 00 09 00 10 50 02 00 00 01 01 00 00 00  .......P........
   18E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 32 32 A4  .........@...22.
   18E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18E50: 00 02 00 00 09 00 11 50 02 00 00 01 01 00 00 00  .......P........
   18E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 34 32 A4  .........@...42.
   18E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18E90: 00 02 00 00 09 00 12 50 02 00 00 01 01 00 00 00  .......P........
   18EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 32 32 A4  .........@...22.
   18EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18ED0: 00 02 00 00 09 00 13 50 02 00 00 01 01 00 00 00  .......P........
   18EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 33 32 A4  .........@...32.
   18EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18F10: 00 02 00 00 09 00 14 50 02 00 00 01 01 00 00 00  .......P........
   18F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 33 32 A4  .........@...32.
   18F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18F50: 00 02 00 00 09 00 15 50 02 00 00 01 01 00 00 00  .......P........
   18F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 10 26 A4  .........@....&.
   18F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18F90: 00 02 00 00 09 00 16 50 02 00 00 01 01 00 00 00  .......P........
   18FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 1F 26 A4  .........@....&.
   18FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   18FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   18FD0: 00 02 00 00 09 00 17 50 02 00 00 01 01 00 00 00  .......P........
   18FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1F 26 A4  .........@....&.
   18FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19010: 00 02 00 00 09 00 18 50 02 00 00 01 01 00 00 00  .......P........
   19020: 10 00 00 00 00 02 00 00 00 40 00 04 18 1B 26 A4  .........@....&.
   19030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19050: 00 02 00 00 09 00 19 50 02 00 00 01 01 00 00 00  .......P........
   19060: 10 00 00 00 00 02 00 00 00 40 00 04 18 1E 26 A4  .........@....&.
   19070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19090: 00 02 00 00 09 00 1A 50 02 00 00 01 01 00 00 00  .......P........
   190A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1E 26 A4  .........@....&.
   190B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   190C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   190D0: 00 02 00 00 09 00 1B 50 02 00 00 01 01 00 00 00  .......P........
   190E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1B 26 A4  .........@....&.
   190F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19110: 00 02 00 00 09 00 1C 50 02 00 00 01 01 00 00 00  .......P........
   19120: 10 00 00 00 00 02 00 00 00 40 00 04 98 1D 26 A4  .........@....&.
   19130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19150: 00 02 00 00 09 00 1D 50 02 00 00 01 01 00 00 00  .......P........
   19160: 10 00 00 00 00 02 00 00 00 40 00 04 18 1C 26 A4  .........@....&.
   19170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19190: 00 02 00 00 09 00 1E 50 02 00 00 01 01 00 00 00  .......P........
   191A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1C 26 A4  .........@....&.
   191B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   191C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   191D0: 00 02 00 00 09 00 1F 50 02 00 00 01 01 00 00 00  .......P........
   191E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 1D 26 A4  .........@....&.
   191F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19210: 00 02 00 00 09 00 20 50 02 00 00 01 01 00 00 00  ...... P........
   19220: 10 00 00 00 00 02 00 00 00 40 00 04 98 10 26 A4  .........@....&.
   19230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19250: 00 02 00 00 09 00 21 50 02 00 00 01 01 00 00 00  ......!P........
   19260: 10 00 00 00 00 02 00 00 00 40 00 04 18 1A 26 A4  .........@....&.
   19270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19290: 00 02 00 00 09 00 22 50 02 00 00 01 01 00 00 00  ......"P........
   192A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1A 26 A4  .........@....&.
   192B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   192C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   192D0: 00 02 00 00 09 00 23 50 02 00 00 01 01 00 00 00  ......#P........
   192E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 17 26 A4  .........@....&.
   192F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19310: 00 02 00 00 09 00 24 50 02 00 00 01 01 00 00 00  ......$P........
   19320: 10 00 00 00 00 02 00 00 00 40 00 04 98 19 26 A4  .........@....&.
   19330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19350: 00 02 00 00 09 00 25 50 02 00 00 01 01 00 00 00  ......%P........
   19360: 10 00 00 00 00 02 00 00 00 40 00 04 18 18 26 A4  .........@....&.
   19370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19390: 00 02 00 00 09 00 26 50 02 00 00 01 01 00 00 00  ......&P........
   193A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 18 26 A4  .........@....&.
   193B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   193C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   193D0: 00 02 00 00 09 00 27 50 02 00 00 01 01 00 00 00  ......'P........
   193E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 19 26 A4  .........@....&.
   193F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19410: 00 02 00 00 09 00 28 50 02 00 00 01 01 00 00 00  ......(P........
   19420: 10 00 00 00 00 02 00 00 00 40 00 04 18 11 26 A4  .........@....&.
   19430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19450: 00 02 00 00 09 00 29 50 02 00 00 01 01 00 00 00  ......)P........
   19460: 10 00 00 00 00 02 00 00 00 40 00 04 18 17 26 A4  .........@....&.
   19470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19490: 00 02 00 00 09 00 2A 50 02 00 00 01 01 00 00 00  ......*P........
   194A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 15 26 A4  .........@....&.
   194B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   194C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   194D0: 00 02 00 00 09 00 2B 50 02 00 00 01 01 00 00 00  ......+P........
   194E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 16 26 A4  .........@....&.
   194F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19510: 00 02 00 00 09 00 2C 50 02 00 00 01 01 00 00 00  ......,P........
   19520: 10 00 00 00 00 02 00 00 00 40 00 04 98 16 26 A4  .........@....&.
   19530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19550: 00 02 00 00 09 00 2D 50 02 00 00 01 01 00 00 00  ......-P........
   19560: 10 00 00 00 00 02 00 00 00 40 00 04 98 11 26 A4  .........@....&.
   19570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19590: 00 02 00 00 09 00 2E 50 02 00 00 01 01 00 00 00  .......P........
   195A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 14 26 A4  .........@....&.
   195B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   195C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   195D0: 00 02 00 00 09 00 2F 50 02 00 00 01 01 00 00 00  ....../P........
   195E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 15 26 A4  .........@....&.
   195F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19610: 00 02 00 00 09 00 30 50 02 00 00 01 01 00 00 00  ......0P........
   19620: 10 00 00 00 00 02 00 00 00 40 00 04 18 12 26 A4  .........@....&.
   19630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19650: 00 02 00 00 09 00 31 50 02 00 00 01 01 00 00 00  ......1P........
   19660: 10 00 00 00 00 02 00 00 00 40 00 04 18 14 26 A4  .........@....&.
   19670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19690: 00 02 00 00 09 00 32 50 02 00 00 01 01 00 00 00  ......2P........
   196A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 12 26 A4  .........@....&.
   196B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   196C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   196D0: 00 02 00 00 09 00 33 50 02 00 00 01 01 00 00 00  ......3P........
   196E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 13 26 A4  .........@....&.
   196F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19710: 00 02 00 00 09 00 34 50 02 00 00 01 01 00 00 00  ......4P........
   19720: 10 00 00 00 00 02 00 00 00 40 00 04 98 13 26 A4  .........@....&.
   19730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19750: 00 02 00 00 09 00 35 50 02 00 00 01 01 00 00 00  ......5P........
   19760: 10 00 00 00 00 02 00 00 00 40 00 04 18 00 26 A4  .........@....&.
   19770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19790: 00 02 00 00 09 00 36 50 02 00 00 01 01 00 00 00  ......6P........
   197A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 0F 26 A4  .........@....&.
   197B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   197C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   197D0: 00 02 00 00 09 00 37 50 02 00 00 01 01 00 00 00  ......7P........
   197E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0F 26 A4  .........@....&.
   197F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19810: 00 02 00 00 09 00 38 50 02 00 00 01 01 00 00 00  ......8P........
   19820: 10 00 00 00 00 02 00 00 00 40 00 04 18 0B 26 A4  .........@....&.
   19830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19850: 00 02 00 00 09 00 39 50 02 00 00 01 01 00 00 00  ......9P........
   19860: 10 00 00 00 00 02 00 00 00 40 00 04 18 0E 26 A4  .........@....&.
   19870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19890: 00 02 00 00 09 00 3A 50 02 00 00 01 01 00 00 00  ......:P........
   198A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0E 26 A4  .........@....&.
   198B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   198C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   198D0: 00 02 00 00 09 00 3B 50 02 00 00 01 01 00 00 00  ......;P........
   198E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0B 26 A4  .........@....&.
   198F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19910: 00 02 00 00 09 00 3C 50 02 00 00 01 01 00 00 00  ......<P........
   19920: 10 00 00 00 00 02 00 00 00 40 00 04 98 0D 26 A4  .........@....&.
   19930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19950: 00 02 00 00 09 00 3D 50 02 00 00 01 01 00 00 00  ......=P........
   19960: 10 00 00 00 00 02 00 00 00 40 00 04 18 0C 26 A4  .........@....&.
   19970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19990: 00 02 00 00 09 00 3E 50 02 00 00 01 01 00 00 00  ......>P........
   199A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0C 26 A4  .........@....&.
   199B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   199C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   199D0: 00 02 00 00 09 00 3F 50 02 00 00 01 01 00 00 00  ......?P........
   199E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 0D 26 A4  .........@....&.
   199F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19A10: 00 02 00 00 09 00 40 50 02 00 00 01 01 00 00 00  ......@P........
   19A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 00 26 A4  .........@....&.
   19A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19A50: 00 02 00 00 09 00 41 50 02 00 00 01 01 00 00 00  ......AP........
   19A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 0A 26 A4  .........@....&.
   19A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19A90: 00 02 00 00 09 00 42 50 02 00 00 01 01 00 00 00  ......BP........
   19AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0A 26 A4  .........@....&.
   19AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19AD0: 00 02 00 00 09 00 43 50 02 00 00 01 01 00 00 00  ......CP........
   19AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 07 26 A4  .........@....&.
   19AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19B10: 00 02 00 00 09 00 44 50 02 00 00 01 01 00 00 00  ......DP........
   19B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 09 26 A4  .........@....&.
   19B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19B50: 00 02 00 00 09 00 45 50 02 00 00 01 01 00 00 00  ......EP........
   19B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 08 26 A4  .........@....&.
   19B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19B90: 00 02 00 00 09 00 46 50 02 00 00 01 01 00 00 00  ......FP........
   19BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 08 26 A4  .........@....&.
   19BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19BD0: 00 02 00 00 09 00 47 50 02 00 00 01 01 00 00 00  ......GP........
   19BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 09 26 A4  .........@....&.
   19BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19C10: 00 02 00 00 09 00 48 50 02 00 00 01 01 00 00 00  ......HP........
   19C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 01 26 A4  .........@....&.
   19C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19C50: 00 02 00 00 09 00 49 50 02 00 00 01 01 00 00 00  ......IP........
   19C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 07 26 A4  .........@....&.
   19C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19C90: 00 02 00 00 09 00 4A 50 02 00 00 01 01 00 00 00  ......JP........
   19CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 05 26 A4  .........@....&.
   19CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19CD0: 00 02 00 00 09 00 4B 50 02 00 00 01 01 00 00 00  ......KP........
   19CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 06 26 A4  .........@....&.
   19CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19D10: 00 02 00 00 09 00 4C 50 02 00 00 01 01 00 00 00  ......LP........
   19D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 06 26 A4  .........@....&.
   19D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19D50: 00 02 00 00 09 00 4D 50 02 00 00 01 01 00 00 00  ......MP........
   19D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 01 26 A4  .........@....&.
   19D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19D90: 00 02 00 00 09 00 4E 50 02 00 00 01 01 00 00 00  ......NP........
   19DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 04 26 A4  .........@....&.
   19DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19DD0: 00 02 00 00 09 00 4F 50 02 00 00 01 01 00 00 00  ......OP........
   19DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 05 26 A4  .........@....&.
   19DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19E10: 00 02 00 00 09 00 50 50 02 00 00 01 01 00 00 00  ......PP........
   19E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 02 26 A4  .........@....&.
   19E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19E50: 00 02 00 00 09 00 51 50 02 00 00 01 01 00 00 00  ......QP........
   19E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 04 26 A4  .........@....&.
   19E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19E90: 00 02 00 00 09 00 52 50 02 00 00 01 01 00 00 00  ......RP........
   19EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 02 26 A4  .........@....&.
   19EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19ED0: 00 02 00 00 09 00 53 50 02 00 00 01 01 00 00 00  ......SP........
   19EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 03 26 A4  .........@....&.
   19EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19F10: 00 02 00 00 09 00 54 50 02 00 00 01 01 00 00 00  ......TP........
   19F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 03 26 A4  .........@....&.
   19F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19F50: 00 02 00 00 09 00 55 50 02 00 00 01 01 00 00 00  ......UP........
   19F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 F0 25 A4  .........@....%.
   19F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19F90: 00 02 00 00 09 00 56 50 02 00 00 01 01 00 00 00  ......VP........
   19FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 FF 25 A4  .........@....%.
   19FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   19FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   19FD0: 00 02 00 00 09 00 57 50 02 00 00 01 01 00 00 00  ......WP........
   19FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FF 25 A4  .........@....%.
   19FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A010: 00 02 00 00 09 00 58 50 02 00 00 01 01 00 00 00  ......XP........
   1A020: 10 00 00 00 00 02 00 00 00 40 00 04 18 FB 25 A4  .........@....%.
   1A030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A050: 00 02 00 00 09 00 59 50 02 00 00 01 01 00 00 00  ......YP........
   1A060: 10 00 00 00 00 02 00 00 00 40 00 04 18 FE 25 A4  .........@....%.
   1A070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A090: 00 02 00 00 09 00 5A 50 02 00 00 01 01 00 00 00  ......ZP........
   1A0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FE 25 A4  .........@....%.
   1A0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A0D0: 00 02 00 00 09 00 5B 50 02 00 00 01 01 00 00 00  ......[P........
   1A0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FB 25 A4  .........@....%.
   1A0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A110: 00 02 00 00 09 00 5C 50 02 00 00 01 01 00 00 00  ......\P........
   1A120: 10 00 00 00 00 02 00 00 00 40 00 04 98 FD 25 A4  .........@....%.
   1A130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A150: 00 02 00 00 09 00 5D 50 02 00 00 01 01 00 00 00  ......]P........
   1A160: 10 00 00 00 00 02 00 00 00 40 00 04 18 FC 25 A4  .........@....%.
   1A170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A190: 00 02 00 00 09 00 5E 50 02 00 00 01 01 00 00 00  ......^P........
   1A1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FC 25 A4  .........@....%.
   1A1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A1D0: 00 02 00 00 09 00 5F 50 02 00 00 01 01 00 00 00  ......_P........
   1A1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 FD 25 A4  .........@....%.
   1A1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A210: 00 02 00 00 09 00 60 50 02 00 00 01 01 00 00 00  ......`P........
   1A220: 10 00 00 00 00 02 00 00 00 40 00 04 98 F0 25 A4  .........@....%.
   1A230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A250: 00 02 00 00 09 00 61 50 02 00 00 01 01 00 00 00  ......aP........
   1A260: 10 00 00 00 00 02 00 00 00 40 00 04 18 FA 25 A4  .........@....%.
   1A270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A290: 00 02 00 00 09 00 62 50 02 00 00 01 01 00 00 00  ......bP........
   1A2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FA 25 A4  .........@....%.
   1A2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A2D0: 00 02 00 00 09 00 63 50 02 00 00 01 01 00 00 00  ......cP........
   1A2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F7 25 A4  .........@....%.
   1A2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A310: 00 02 00 00 09 00 64 50 02 00 00 01 01 00 00 00  ......dP........
   1A320: 10 00 00 00 00 02 00 00 00 40 00 04 98 F9 25 A4  .........@....%.
   1A330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A350: 00 02 00 00 09 00 65 50 02 00 00 01 01 00 00 00  ......eP........
   1A360: 10 00 00 00 00 02 00 00 00 40 00 04 18 F8 25 A4  .........@....%.
   1A370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A390: 00 02 00 00 09 00 66 50 02 00 00 01 01 00 00 00  ......fP........
   1A3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F8 25 A4  .........@....%.
   1A3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A3D0: 00 02 00 00 09 00 67 50 02 00 00 01 01 00 00 00  ......gP........
   1A3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F9 25 A4  .........@....%.
   1A3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A410: 00 02 00 00 09 00 68 50 02 00 00 01 01 00 00 00  ......hP........
   1A420: 10 00 00 00 00 02 00 00 00 40 00 04 18 F1 25 A4  .........@....%.
   1A430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A450: 00 02 00 00 09 00 69 50 02 00 00 01 01 00 00 00  ......iP........
   1A460: 10 00 00 00 00 02 00 00 00 40 00 04 18 F7 25 A4  .........@....%.
   1A470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A490: 00 02 00 00 09 00 6A 50 02 00 00 01 01 00 00 00  ......jP........
   1A4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F5 25 A4  .........@....%.
   1A4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A4D0: 00 02 00 00 09 00 6B 50 02 00 00 01 01 00 00 00  ......kP........
   1A4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F6 25 A4  .........@....%.
   1A4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A510: 00 02 00 00 09 00 6C 50 02 00 00 01 01 00 00 00  ......lP........
   1A520: 10 00 00 00 00 02 00 00 00 40 00 04 98 F6 25 A4  .........@....%.
   1A530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A550: 00 02 00 00 09 00 6D 50 02 00 00 01 01 00 00 00  ......mP........
   1A560: 10 00 00 00 00 02 00 00 00 40 00 04 98 F1 25 A4  .........@....%.
   1A570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A590: 00 02 00 00 09 00 6E 50 02 00 00 01 01 00 00 00  ......nP........
   1A5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F4 25 A4  .........@....%.
   1A5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A5D0: 00 02 00 00 09 00 6F 50 02 00 00 01 01 00 00 00  ......oP........
   1A5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F5 25 A4  .........@....%.
   1A5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A610: 00 02 00 00 09 00 70 50 02 00 00 01 01 00 00 00  ......pP........
   1A620: 10 00 00 00 00 02 00 00 00 40 00 04 18 F2 25 A4  .........@....%.
   1A630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A650: 00 02 00 00 09 00 71 50 02 00 00 01 01 00 00 00  ......qP........
   1A660: 10 00 00 00 00 02 00 00 00 40 00 04 18 F4 25 A4  .........@....%.
   1A670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A690: 00 02 00 00 09 00 72 50 02 00 00 01 01 00 00 00  ......rP........
   1A6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F2 25 A4  .........@....%.
   1A6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A6D0: 00 02 00 00 09 00 73 50 02 00 00 01 01 00 00 00  ......sP........
   1A6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F3 25 A4  .........@....%.
   1A6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A710: 00 02 00 00 09 00 74 50 02 00 00 01 01 00 00 00  ......tP........
   1A720: 10 00 00 00 00 02 00 00 00 40 00 04 98 F3 25 A4  .........@....%.
   1A730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A750: 00 02 00 00 09 00 75 50 02 00 00 01 01 00 00 00  ......uP........
   1A760: 10 00 00 00 00 02 00 00 00 40 00 04 18 E0 25 A4  .........@....%.
   1A770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A790: 00 02 00 00 09 00 76 50 02 00 00 01 01 00 00 00  ......vP........
   1A7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 EF 25 A4  .........@....%.
   1A7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A7D0: 00 02 00 00 09 00 77 50 02 00 00 01 01 00 00 00  ......wP........
   1A7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EF 25 A4  .........@....%.
   1A7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A810: 00 02 00 00 09 00 78 50 02 00 00 01 01 00 00 00  ......xP........
   1A820: 10 00 00 00 00 02 00 00 00 40 00 04 18 EB 25 A4  .........@....%.
   1A830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A850: 00 02 00 00 09 00 79 50 02 00 00 01 01 00 00 00  ......yP........
   1A860: 10 00 00 00 00 02 00 00 00 40 00 04 18 EE 25 A4  .........@....%.
   1A870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A890: 00 02 00 00 09 00 7A 50 02 00 00 01 01 00 00 00  ......zP........
   1A8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EE 25 A4  .........@....%.
   1A8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A8D0: 00 02 00 00 09 00 7B 50 02 00 00 01 01 00 00 00  ......{P........
   1A8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EB 25 A4  .........@....%.
   1A8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A910: 00 02 00 00 09 00 7C 50 02 00 00 01 01 00 00 00  ......|P........
   1A920: 10 00 00 00 00 02 00 00 00 40 00 04 98 ED 25 A4  .........@....%.
   1A930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A950: 00 02 00 00 09 00 7D 50 02 00 00 01 01 00 00 00  ......}P........
   1A960: 10 00 00 00 00 02 00 00 00 40 00 04 18 EC 25 A4  .........@....%.
   1A970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A990: 00 02 00 00 09 00 7E 50 02 00 00 01 01 00 00 00  ......~P........
   1A9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EC 25 A4  .........@....%.
   1A9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1A9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1A9D0: 00 02 00 00 09 00 7F 50 02 00 00 01 01 00 00 00  .......P........
   1A9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 ED 25 A4  .........@....%.
   1A9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AA10: 00 02 00 00 09 00 80 50 02 00 00 01 01 00 00 00  .......P........
   1AA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E0 25 A4  .........@....%.
   1AA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AA50: 00 02 00 00 09 00 81 50 02 00 00 01 01 00 00 00  .......P........
   1AA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 EA 25 A4  .........@....%.
   1AA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AA90: 00 02 00 00 09 00 82 50 02 00 00 01 01 00 00 00  .......P........
   1AAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EA 25 A4  .........@....%.
   1AAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AAD0: 00 02 00 00 09 00 83 50 02 00 00 01 01 00 00 00  .......P........
   1AAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E7 25 A4  .........@....%.
   1AAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AB10: 00 02 00 00 09 00 84 50 02 00 00 01 01 00 00 00  .......P........
   1AB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E9 25 A4  .........@....%.
   1AB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AB50: 00 02 00 00 09 00 85 50 02 00 00 01 01 00 00 00  .......P........
   1AB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E8 25 A4  .........@....%.
   1AB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AB90: 00 02 00 00 09 00 86 50 02 00 00 01 01 00 00 00  .......P........
   1ABA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E8 25 A4  .........@....%.
   1ABB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1ABC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1ABD0: 00 02 00 00 09 00 87 50 02 00 00 01 01 00 00 00  .......P........
   1ABE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E9 25 A4  .........@....%.
   1ABF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AC10: 00 02 00 00 09 00 88 50 02 00 00 01 01 00 00 00  .......P........
   1AC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 E1 25 A4  .........@....%.
   1AC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AC50: 00 02 00 00 09 00 89 50 02 00 00 01 01 00 00 00  .......P........
   1AC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E7 25 A4  .........@....%.
   1AC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AC90: 00 02 00 00 09 00 8A 50 02 00 00 01 01 00 00 00  .......P........
   1ACA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E5 25 A4  .........@....%.
   1ACB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1ACC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1ACD0: 00 02 00 00 09 00 8B 50 02 00 00 01 01 00 00 00  .......P........
   1ACE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E6 25 A4  .........@....%.
   1ACF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AD10: 00 02 00 00 09 00 8C 50 02 00 00 01 01 00 00 00  .......P........
   1AD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E6 25 A4  .........@....%.
   1AD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AD50: 00 02 00 00 09 00 8D 50 02 00 00 01 01 00 00 00  .......P........
   1AD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 E1 25 A4  .........@....%.
   1AD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AD90: 00 02 00 00 09 00 8E 50 02 00 00 01 01 00 00 00  .......P........
   1ADA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E4 25 A4  .........@....%.
   1ADB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1ADC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1ADD0: 00 02 00 00 09 00 8F 50 02 00 00 01 01 00 00 00  .......P........
   1ADE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E5 25 A4  .........@....%.
   1ADF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AE10: 00 02 00 00 09 00 90 50 02 00 00 01 01 00 00 00  .......P........
   1AE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 E2 25 A4  .........@....%.
   1AE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AE50: 00 02 00 00 09 00 91 50 02 00 00 01 01 00 00 00  .......P........
   1AE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E4 25 A4  .........@....%.
   1AE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AE90: 00 02 00 00 09 00 92 50 02 00 00 01 01 00 00 00  .......P........
   1AEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E2 25 A4  .........@....%.
   1AEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AED0: 00 02 00 00 09 00 93 50 02 00 00 01 01 00 00 00  .......P........
   1AEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E3 25 A4  .........@....%.
   1AEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AF10: 00 02 00 00 09 00 94 50 02 00 00 01 01 00 00 00  .......P........
   1AF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E3 25 A4  .........@....%.
   1AF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AF50: 00 02 00 00 09 00 95 50 02 00 00 01 01 00 00 00  .......P........
   1AF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 D0 25 A4  .........@....%.
   1AF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AF90: 00 02 00 00 09 00 96 50 02 00 00 01 01 00 00 00  .......P........
   1AFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DF 25 A4  .........@....%.
   1AFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1AFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1AFD0: 00 02 00 00 09 00 97 50 02 00 00 01 01 00 00 00  .......P........
   1AFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DF 25 A4  .........@....%.
   1AFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B010: 00 02 00 00 09 00 98 50 02 00 00 01 01 00 00 00  .......P........
   1B020: 10 00 00 00 00 02 00 00 00 40 00 04 18 DB 25 A4  .........@....%.
   1B030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B050: 00 02 00 00 09 00 99 50 02 00 00 01 01 00 00 00  .......P........
   1B060: 10 00 00 00 00 02 00 00 00 40 00 04 18 DE 25 A4  .........@....%.
   1B070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B090: 00 02 00 00 09 00 9A 50 02 00 00 01 01 00 00 00  .......P........
   1B0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DE 25 A4  .........@....%.
   1B0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B0D0: 00 02 00 00 09 00 9B 50 02 00 00 01 01 00 00 00  .......P........
   1B0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DB 25 A4  .........@....%.
   1B0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B110: 00 02 00 00 09 00 9C 50 02 00 00 01 01 00 00 00  .......P........
   1B120: 10 00 00 00 00 02 00 00 00 40 00 04 98 DD 25 A4  .........@....%.
   1B130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B150: 00 02 00 00 09 00 9D 50 02 00 00 01 01 00 00 00  .......P........
   1B160: 10 00 00 00 00 02 00 00 00 40 00 04 18 DC 25 A4  .........@....%.
   1B170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B190: 00 02 00 00 09 00 9E 50 02 00 00 01 01 00 00 00  .......P........
   1B1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DC 25 A4  .........@....%.
   1B1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B1D0: 00 02 00 00 09 00 9F 50 02 00 00 01 01 00 00 00  .......P........
   1B1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DD 25 A4  .........@....%.
   1B1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B210: 00 02 00 00 09 00 A0 50 02 00 00 01 01 00 00 00  .......P........
   1B220: 10 00 00 00 00 02 00 00 00 40 00 04 98 D0 25 A4  .........@....%.
   1B230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B250: 00 02 00 00 09 00 A1 50 02 00 00 01 01 00 00 00  .......P........
   1B260: 10 00 00 00 00 02 00 00 00 40 00 04 18 DA 25 A4  .........@....%.
   1B270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B290: 00 02 00 00 09 00 A2 50 02 00 00 01 01 00 00 00  .......P........
   1B2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DA 25 A4  .........@....%.
   1B2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B2D0: 00 02 00 00 09 00 A3 50 02 00 00 01 01 00 00 00  .......P........
   1B2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D7 25 A4  .........@....%.
   1B2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B310: 00 02 00 00 09 00 A4 50 02 00 00 01 01 00 00 00  .......P........
   1B320: 10 00 00 00 00 02 00 00 00 40 00 04 98 D9 25 A4  .........@....%.
   1B330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B350: 00 02 00 00 09 00 A5 50 02 00 00 01 01 00 00 00  .......P........
   1B360: 10 00 00 00 00 02 00 00 00 40 00 04 18 D8 25 A4  .........@....%.
   1B370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B390: 00 02 00 00 09 00 A6 50 02 00 00 01 01 00 00 00  .......P........
   1B3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D8 25 A4  .........@....%.
   1B3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B3D0: 00 02 00 00 09 00 A7 50 02 00 00 01 01 00 00 00  .......P........
   1B3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D9 25 A4  .........@....%.
   1B3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B410: 00 02 00 00 09 00 A8 50 02 00 00 01 01 00 00 00  .......P........
   1B420: 10 00 00 00 00 02 00 00 00 40 00 04 18 D1 25 A4  .........@....%.
   1B430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B450: 00 02 00 00 09 00 A9 50 02 00 00 01 01 00 00 00  .......P........
   1B460: 10 00 00 00 00 02 00 00 00 40 00 04 18 D7 25 A4  .........@....%.
   1B470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B490: 00 02 00 00 09 00 AA 50 02 00 00 01 01 00 00 00  .......P........
   1B4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D5 25 A4  .........@....%.
   1B4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B4D0: 00 02 00 00 09 00 AB 50 02 00 00 01 01 00 00 00  .......P........
   1B4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D6 25 A4  .........@....%.
   1B4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B510: 00 02 00 00 09 00 AC 50 02 00 00 01 01 00 00 00  .......P........
   1B520: 10 00 00 00 00 02 00 00 00 40 00 04 98 D6 25 A4  .........@....%.
   1B530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B550: 00 02 00 00 09 00 AD 50 02 00 00 01 01 00 00 00  .......P........
   1B560: 10 00 00 00 00 02 00 00 00 40 00 04 98 D1 25 A4  .........@....%.
   1B570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B590: 00 02 00 00 09 00 AE 50 02 00 00 01 01 00 00 00  .......P........
   1B5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D4 25 A4  .........@....%.
   1B5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B5D0: 00 02 00 00 09 00 AF 50 02 00 00 01 01 00 00 00  .......P........
   1B5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D5 25 A4  .........@....%.
   1B5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B610: 00 02 00 00 09 00 B0 50 02 00 00 01 01 00 00 00  .......P........
   1B620: 10 00 00 00 00 02 00 00 00 40 00 04 18 D2 25 A4  .........@....%.
   1B630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B650: 00 02 00 00 09 00 B1 50 02 00 00 01 01 00 00 00  .......P........
   1B660: 10 00 00 00 00 02 00 00 00 40 00 04 18 D4 25 A4  .........@....%.
   1B670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B690: 00 02 00 00 09 00 B2 50 02 00 00 01 01 00 00 00  .......P........
   1B6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D2 25 A4  .........@....%.
   1B6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B6D0: 00 02 00 00 09 00 B3 50 02 00 00 01 01 00 00 00  .......P........
   1B6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D3 25 A4  .........@....%.
   1B6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B710: 00 02 00 00 09 00 B4 50 02 00 00 01 01 00 00 00  .......P........
   1B720: 10 00 00 00 00 02 00 00 00 40 00 04 98 D3 25 A4  .........@....%.
   1B730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B750: 00 02 00 00 09 00 B5 50 02 00 00 01 01 00 00 00  .......P........
   1B760: 10 00 00 00 00 02 00 00 00 40 00 04 18 C0 25 A4  .........@....%.
   1B770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B790: 00 02 00 00 09 00 B6 50 02 00 00 01 01 00 00 00  .......P........
   1B7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CF 25 A4  .........@....%.
   1B7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B7D0: 00 02 00 00 09 00 B7 50 02 00 00 01 01 00 00 00  .......P........
   1B7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CF 25 A4  .........@....%.
   1B7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B810: 00 02 00 00 09 00 B8 50 02 00 00 01 01 00 00 00  .......P........
   1B820: 10 00 00 00 00 02 00 00 00 40 00 04 18 CB 25 A4  .........@....%.
   1B830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B850: 00 02 00 00 09 00 B9 50 02 00 00 01 01 00 00 00  .......P........
   1B860: 10 00 00 00 00 02 00 00 00 40 00 04 18 CE 25 A4  .........@....%.
   1B870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B890: 00 02 00 00 09 00 BA 50 02 00 00 01 01 00 00 00  .......P........
   1B8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CE 25 A4  .........@....%.
   1B8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B8D0: 00 02 00 00 09 00 BB 50 02 00 00 01 01 00 00 00  .......P........
   1B8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CB 25 A4  .........@....%.
   1B8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B910: 00 02 00 00 09 00 BC 50 02 00 00 01 01 00 00 00  .......P........
   1B920: 10 00 00 00 00 02 00 00 00 40 00 04 98 CD 25 A4  .........@....%.
   1B930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B950: 00 02 00 00 09 00 BD 50 02 00 00 01 01 00 00 00  .......P........
   1B960: 10 00 00 00 00 02 00 00 00 40 00 04 18 CC 25 A4  .........@....%.
   1B970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B990: 00 02 00 00 09 00 BE 50 02 00 00 01 01 00 00 00  .......P........
   1B9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CC 25 A4  .........@....%.
   1B9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1B9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1B9D0: 00 02 00 00 09 00 BF 50 02 00 00 01 01 00 00 00  .......P........
   1B9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CD 25 A4  .........@....%.
   1B9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BA10: 00 02 00 00 09 00 C0 50 02 00 00 01 01 00 00 00  .......P........
   1BA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C0 25 A4  .........@....%.
   1BA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BA50: 00 02 00 00 09 00 C1 50 02 00 00 01 01 00 00 00  .......P........
   1BA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 CA 25 A4  .........@....%.
   1BA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BA90: 00 02 00 00 09 00 C2 50 02 00 00 01 01 00 00 00  .......P........
   1BAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CA 25 A4  .........@....%.
   1BAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BAD0: 00 02 00 00 09 00 C3 50 02 00 00 01 01 00 00 00  .......P........
   1BAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C7 25 A4  .........@....%.
   1BAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BB10: 00 02 00 00 09 00 C4 50 02 00 00 01 01 00 00 00  .......P........
   1BB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C9 25 A4  .........@....%.
   1BB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BB50: 00 02 00 00 09 00 C5 50 02 00 00 01 01 00 00 00  .......P........
   1BB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C8 25 A4  .........@....%.
   1BB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BB90: 00 02 00 00 09 00 C6 50 02 00 00 01 01 00 00 00  .......P........
   1BBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C8 25 A4  .........@....%.
   1BBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BBD0: 00 02 00 00 09 00 C7 50 02 00 00 01 01 00 00 00  .......P........
   1BBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C9 25 A4  .........@....%.
   1BBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BC10: 00 02 00 00 09 00 C8 50 02 00 00 01 01 00 00 00  .......P........
   1BC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 C1 25 A4  .........@....%.
   1BC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BC50: 00 02 00 00 09 00 C9 50 02 00 00 01 01 00 00 00  .......P........
   1BC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C7 25 A4  .........@....%.
   1BC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BC90: 00 02 00 00 09 00 CA 50 02 00 00 01 01 00 00 00  .......P........
   1BCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C5 25 A4  .........@....%.
   1BCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BCD0: 00 02 00 00 09 00 CB 50 02 00 00 01 01 00 00 00  .......P........
   1BCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C6 25 A4  .........@....%.
   1BCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BD10: 00 02 00 00 09 00 CC 50 02 00 00 01 01 00 00 00  .......P........
   1BD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C6 25 A4  .........@....%.
   1BD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BD50: 00 02 00 00 09 00 CD 50 02 00 00 01 01 00 00 00  .......P........
   1BD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 C1 25 A4  .........@....%.
   1BD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BD90: 00 02 00 00 09 00 CE 50 02 00 00 01 01 00 00 00  .......P........
   1BDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C4 25 A4  .........@....%.
   1BDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BDD0: 00 02 00 00 09 00 CF 50 02 00 00 01 01 00 00 00  .......P........
   1BDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C5 25 A4  .........@....%.
   1BDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BE10: 00 02 00 00 09 00 D0 50 02 00 00 01 01 00 00 00  .......P........
   1BE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 C2 25 A4  .........@....%.
   1BE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BE50: 00 02 00 00 09 00 D1 50 02 00 00 01 01 00 00 00  .......P........
   1BE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C4 25 A4  .........@....%.
   1BE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BE90: 00 02 00 00 09 00 D2 50 02 00 00 01 01 00 00 00  .......P........
   1BEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C2 25 A4  .........@....%.
   1BEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BED0: 00 02 00 00 09 00 D3 50 02 00 00 01 01 00 00 00  .......P........
   1BEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C3 25 A4  .........@....%.
   1BEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BF10: 00 02 00 00 09 00 D4 50 02 00 00 01 01 00 00 00  .......P........
   1BF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C3 25 A4  .........@....%.
   1BF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BF50: 00 02 00 00 09 00 D5 50 02 00 00 01 01 00 00 00  .......P........
   1BF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 B0 25 A4  .........@....%.
   1BF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BF90: 00 02 00 00 09 00 D6 50 02 00 00 01 01 00 00 00  .......P........
   1BFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BF 25 A4  .........@....%.
   1BFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1BFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1BFD0: 00 02 00 00 09 00 D7 50 02 00 00 01 01 00 00 00  .......P........
   1BFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BF 25 A4  .........@....%.
   1BFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C010: 00 02 00 00 09 00 D8 50 02 00 00 01 01 00 00 00  .......P........
   1C020: 10 00 00 00 00 02 00 00 00 40 00 04 18 BB 25 A4  .........@....%.
   1C030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C050: 00 02 00 00 09 00 D9 50 02 00 00 01 01 00 00 00  .......P........
   1C060: 10 00 00 00 00 02 00 00 00 40 00 04 18 BE 25 A4  .........@....%.
   1C070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C090: 00 02 00 00 09 00 DA 50 02 00 00 01 01 00 00 00  .......P........
   1C0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BE 25 A4  .........@....%.
   1C0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C0D0: 00 02 00 00 09 00 DB 50 02 00 00 01 01 00 00 00  .......P........
   1C0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BB 25 A4  .........@....%.
   1C0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C110: 00 02 00 00 09 00 DC 50 02 00 00 01 01 00 00 00  .......P........
   1C120: 10 00 00 00 00 02 00 00 00 40 00 04 98 BD 25 A4  .........@....%.
   1C130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C150: 00 02 00 00 09 00 DD 50 02 00 00 01 01 00 00 00  .......P........
   1C160: 10 00 00 00 00 02 00 00 00 40 00 04 18 BC 25 A4  .........@....%.
   1C170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C190: 00 02 00 00 09 00 DE 50 02 00 00 01 01 00 00 00  .......P........
   1C1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BC 25 A4  .........@....%.
   1C1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C1D0: 00 02 00 00 09 00 DF 50 02 00 00 01 01 00 00 00  .......P........
   1C1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BD 25 A4  .........@....%.
   1C1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C210: 00 02 00 00 09 00 E0 50 02 00 00 01 01 00 00 00  .......P........
   1C220: 10 00 00 00 00 02 00 00 00 40 00 04 98 B0 25 A4  .........@....%.
   1C230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C250: 00 02 00 00 09 00 E1 50 02 00 00 01 01 00 00 00  .......P........
   1C260: 10 00 00 00 00 02 00 00 00 40 00 04 18 BA 25 A4  .........@....%.
   1C270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C290: 00 02 00 00 09 00 E2 50 02 00 00 01 01 00 00 00  .......P........
   1C2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BA 25 A4  .........@....%.
   1C2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C2D0: 00 02 00 00 09 00 E3 50 02 00 00 01 01 00 00 00  .......P........
   1C2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B7 25 A4  .........@....%.
   1C2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C310: 00 02 00 00 09 00 E4 50 02 00 00 01 01 00 00 00  .......P........
   1C320: 10 00 00 00 00 02 00 00 00 40 00 04 98 B9 25 A4  .........@....%.
   1C330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C350: 00 02 00 00 09 00 E5 50 02 00 00 01 01 00 00 00  .......P........
   1C360: 10 00 00 00 00 02 00 00 00 40 00 04 18 B8 25 A4  .........@....%.
   1C370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C390: 00 02 00 00 09 00 E6 50 02 00 00 01 01 00 00 00  .......P........
   1C3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B8 25 A4  .........@....%.
   1C3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C3D0: 00 02 00 00 09 00 E7 50 02 00 00 01 01 00 00 00  .......P........
   1C3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B9 25 A4  .........@....%.
   1C3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C410: 00 02 00 00 09 00 E8 50 02 00 00 01 01 00 00 00  .......P........
   1C420: 10 00 00 00 00 02 00 00 00 40 00 04 18 B1 25 A4  .........@....%.
   1C430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C450: 00 02 00 00 09 00 E9 50 02 00 00 01 01 00 00 00  .......P........
   1C460: 10 00 00 00 00 02 00 00 00 40 00 04 18 B7 25 A4  .........@....%.
   1C470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C490: 00 02 00 00 09 00 EA 50 02 00 00 01 01 00 00 00  .......P........
   1C4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B5 25 A4  .........@....%.
   1C4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C4D0: 00 02 00 00 09 00 EB 50 02 00 00 01 01 00 00 00  .......P........
   1C4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B6 25 A4  .........@....%.
   1C4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C510: 00 02 00 00 09 00 EC 50 02 00 00 01 01 00 00 00  .......P........
   1C520: 10 00 00 00 00 02 00 00 00 40 00 04 98 B6 25 A4  .........@....%.
   1C530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C550: 00 02 00 00 09 00 ED 50 02 00 00 01 01 00 00 00  .......P........
   1C560: 10 00 00 00 00 02 00 00 00 40 00 04 98 B1 25 A4  .........@....%.
   1C570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C590: 00 02 00 00 09 00 EE 50 02 00 00 01 01 00 00 00  .......P........
   1C5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B4 25 A4  .........@....%.
   1C5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C5D0: 00 02 00 00 09 00 EF 50 02 00 00 01 01 00 00 00  .......P........
   1C5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B5 25 A4  .........@....%.
   1C5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C610: 00 02 00 00 09 00 F0 50 02 00 00 01 01 00 00 00  .......P........
   1C620: 10 00 00 00 00 02 00 00 00 40 00 04 18 B2 25 A4  .........@....%.
   1C630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C650: 00 02 00 00 09 00 F1 50 02 00 00 01 01 00 00 00  .......P........
   1C660: 10 00 00 00 00 02 00 00 00 40 00 04 18 B4 25 A4  .........@....%.
   1C670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C690: 00 02 00 00 09 00 F2 50 02 00 00 01 01 00 00 00  .......P........
   1C6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B2 25 A4  .........@....%.
   1C6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C6D0: 00 02 00 00 09 00 F3 50 02 00 00 01 01 00 00 00  .......P........
   1C6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B3 25 A4  .........@....%.
   1C6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C710: 00 02 00 00 09 00 F4 50 02 00 00 01 01 00 00 00  .......P........
   1C720: 10 00 00 00 00 02 00 00 00 40 00 04 98 B3 25 A4  .........@....%.
   1C730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C750: 00 02 00 00 09 00 F5 50 02 00 00 01 01 00 00 00  .......P........
   1C760: 10 00 00 00 00 02 00 00 00 40 00 04 18 A0 25 A4  .........@....%.
   1C770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C790: 00 02 00 00 09 00 F6 50 02 00 00 01 01 00 00 00  .......P........
   1C7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AF 25 A4  .........@....%.
   1C7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C7D0: 00 02 00 00 09 00 F7 50 02 00 00 01 01 00 00 00  .......P........
   1C7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AF 25 A4  .........@....%.
   1C7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C810: 00 02 00 00 09 00 F8 50 02 00 00 01 01 00 00 00  .......P........
   1C820: 10 00 00 00 00 02 00 00 00 40 00 04 18 AB 25 A4  .........@....%.
   1C830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C850: 00 02 00 00 09 00 F9 50 02 00 00 01 01 00 00 00  .......P........
   1C860: 10 00 00 00 00 02 00 00 00 40 00 04 18 AE 25 A4  .........@....%.
   1C870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C890: 00 02 00 00 09 00 FA 50 02 00 00 01 01 00 00 00  .......P........
   1C8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AE 25 A4  .........@....%.
   1C8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C8D0: 00 02 00 00 09 00 FB 50 02 00 00 01 01 00 00 00  .......P........
   1C8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AB 25 A4  .........@....%.
   1C8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C910: 00 02 00 00 09 00 FC 50 02 00 00 01 01 00 00 00  .......P........
   1C920: 10 00 00 00 00 02 00 00 00 40 00 04 98 AD 25 A4  .........@....%.
   1C930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C950: 00 02 00 00 09 00 FD 50 02 00 00 01 01 00 00 00  .......P........
   1C960: 10 00 00 00 00 02 00 00 00 40 00 04 18 AC 25 A4  .........@....%.
   1C970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C990: 00 02 00 00 09 00 FE 50 02 00 00 01 01 00 00 00  .......P........
   1C9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AC 25 A4  .........@....%.
   1C9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1C9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1C9D0: 00 02 00 00 09 00 FF 50 02 00 00 01 01 00 00 00  .......P........
   1C9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AD 25 A4  .........@....%.
   1C9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CA10: 00 02 00 00 09 00 00 51 02 00 00 01 01 00 00 00  .......Q........
   1CA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A0 25 A4  .........@....%.
   1CA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CA50: 00 02 00 00 09 00 01 51 02 00 00 01 01 00 00 00  .......Q........
   1CA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 AA 25 A4  .........@....%.
   1CA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CA90: 00 02 00 00 09 00 02 51 02 00 00 01 01 00 00 00  .......Q........
   1CAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AA 25 A4  .........@....%.
   1CAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CAD0: 00 02 00 00 09 00 03 51 02 00 00 01 01 00 00 00  .......Q........
   1CAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A7 25 A4  .........@....%.
   1CAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CB10: 00 02 00 00 09 00 04 51 02 00 00 01 01 00 00 00  .......Q........
   1CB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A9 25 A4  .........@....%.
   1CB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CB50: 00 02 00 00 09 00 05 51 02 00 00 01 01 00 00 00  .......Q........
   1CB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A8 25 A4  .........@....%.
   1CB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CB90: 00 02 00 00 09 00 06 51 02 00 00 01 01 00 00 00  .......Q........
   1CBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A8 25 A4  .........@....%.
   1CBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CBD0: 00 02 00 00 09 00 07 51 02 00 00 01 01 00 00 00  .......Q........
   1CBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A9 25 A4  .........@....%.
   1CBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CC10: 00 02 00 00 09 00 08 51 02 00 00 01 01 00 00 00  .......Q........
   1CC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 A1 25 A4  .........@....%.
   1CC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CC50: 00 02 00 00 09 00 09 51 02 00 00 01 01 00 00 00  .......Q........
   1CC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A7 25 A4  .........@....%.
   1CC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CC90: 00 02 00 00 09 00 0A 51 02 00 00 01 01 00 00 00  .......Q........
   1CCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A5 25 A4  .........@....%.
   1CCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CCD0: 00 02 00 00 09 00 0B 51 02 00 00 01 01 00 00 00  .......Q........
   1CCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A6 25 A4  .........@....%.
   1CCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CD10: 00 02 00 00 09 00 0C 51 02 00 00 01 01 00 00 00  .......Q........
   1CD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A6 25 A4  .........@....%.
   1CD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CD50: 00 02 00 00 09 00 0D 51 02 00 00 01 01 00 00 00  .......Q........
   1CD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 A1 25 A4  .........@....%.
   1CD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CD90: 00 02 00 00 09 00 0E 51 02 00 00 01 01 00 00 00  .......Q........
   1CDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A4 25 A4  .........@....%.
   1CDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CDD0: 00 02 00 00 09 00 0F 51 02 00 00 01 01 00 00 00  .......Q........
   1CDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A5 25 A4  .........@....%.
   1CDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CE10: 00 02 00 00 09 00 10 51 02 00 00 01 01 00 00 00  .......Q........
   1CE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 A2 25 A4  .........@....%.
   1CE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CE50: 00 02 00 00 09 00 11 51 02 00 00 01 01 00 00 00  .......Q........
   1CE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A4 25 A4  .........@....%.
   1CE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CE90: 00 02 00 00 09 00 12 51 02 00 00 01 01 00 00 00  .......Q........
   1CEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A2 25 A4  .........@....%.
   1CEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CED0: 00 02 00 00 09 00 13 51 02 00 00 01 01 00 00 00  .......Q........
   1CEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A3 25 A4  .........@....%.
   1CEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CF10: 00 02 00 00 09 00 14 51 02 00 00 01 01 00 00 00  .......Q........
   1CF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A3 25 A4  .........@....%.
   1CF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CF50: 00 02 00 00 09 00 15 51 02 00 00 01 01 00 00 00  .......Q........
   1CF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 90 25 A4  .........@....%.
   1CF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CF90: 00 02 00 00 09 00 16 51 02 00 00 01 01 00 00 00  .......Q........
   1CFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9F 25 A4  .........@....%.
   1CFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1CFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1CFD0: 00 02 00 00 09 00 17 51 02 00 00 01 01 00 00 00  .......Q........
   1CFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9F 25 A4  .........@....%.
   1CFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D010: 00 02 00 00 09 00 18 51 02 00 00 01 01 00 00 00  .......Q........
   1D020: 10 00 00 00 00 02 00 00 00 40 00 04 18 9B 25 A4  .........@....%.
   1D030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D050: 00 02 00 00 09 00 19 51 02 00 00 01 01 00 00 00  .......Q........
   1D060: 10 00 00 00 00 02 00 00 00 40 00 04 18 9E 25 A4  .........@....%.
   1D070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D090: 00 02 00 00 09 00 1A 51 02 00 00 01 01 00 00 00  .......Q........
   1D0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9E 25 A4  .........@....%.
   1D0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D0D0: 00 02 00 00 09 00 1B 51 02 00 00 01 01 00 00 00  .......Q........
   1D0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9B 25 A4  .........@....%.
   1D0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D110: 00 02 00 00 09 00 1C 51 02 00 00 01 01 00 00 00  .......Q........
   1D120: 10 00 00 00 00 02 00 00 00 40 00 04 98 9D 25 A4  .........@....%.
   1D130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D150: 00 02 00 00 09 00 1D 51 02 00 00 01 01 00 00 00  .......Q........
   1D160: 10 00 00 00 00 02 00 00 00 40 00 04 18 9C 25 A4  .........@....%.
   1D170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D190: 00 02 00 00 09 00 1E 51 02 00 00 01 01 00 00 00  .......Q........
   1D1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9C 25 A4  .........@....%.
   1D1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D1D0: 00 02 00 00 09 00 1F 51 02 00 00 01 01 00 00 00  .......Q........
   1D1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9D 25 A4  .........@....%.
   1D1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D210: 00 02 00 00 09 00 20 51 02 00 00 01 01 00 00 00  ...... Q........
   1D220: 10 00 00 00 00 02 00 00 00 40 00 04 98 90 25 A4  .........@....%.
   1D230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D250: 00 02 00 00 09 00 21 51 02 00 00 01 01 00 00 00  ......!Q........
   1D260: 10 00 00 00 00 02 00 00 00 40 00 04 18 9A 25 A4  .........@....%.
   1D270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D290: 00 02 00 00 09 00 22 51 02 00 00 01 01 00 00 00  ......"Q........
   1D2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9A 25 A4  .........@....%.
   1D2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D2D0: 00 02 00 00 09 00 23 51 02 00 00 01 01 00 00 00  ......#Q........
   1D2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 97 25 A4  .........@....%.
   1D2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D310: 00 02 00 00 09 00 24 51 02 00 00 01 01 00 00 00  ......$Q........
   1D320: 10 00 00 00 00 02 00 00 00 40 00 04 98 99 25 A4  .........@....%.
   1D330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D350: 00 02 00 00 09 00 25 51 02 00 00 01 01 00 00 00  ......%Q........
   1D360: 10 00 00 00 00 02 00 00 00 40 00 04 18 98 25 A4  .........@....%.
   1D370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D390: 00 02 00 00 09 00 26 51 02 00 00 01 01 00 00 00  ......&Q........
   1D3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 98 25 A4  .........@....%.
   1D3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D3D0: 00 02 00 00 09 00 27 51 02 00 00 01 01 00 00 00  ......'Q........
   1D3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 99 25 A4  .........@....%.
   1D3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D410: 00 02 00 00 09 00 28 51 02 00 00 01 01 00 00 00  ......(Q........
   1D420: 10 00 00 00 00 02 00 00 00 40 00 04 18 91 25 A4  .........@....%.
   1D430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D450: 00 02 00 00 09 00 29 51 02 00 00 01 01 00 00 00  ......)Q........
   1D460: 10 00 00 00 00 02 00 00 00 40 00 04 18 97 25 A4  .........@....%.
   1D470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D490: 00 02 00 00 09 00 2A 51 02 00 00 01 01 00 00 00  ......*Q........
   1D4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 95 25 A4  .........@....%.
   1D4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D4D0: 00 02 00 00 09 00 2B 51 02 00 00 01 01 00 00 00  ......+Q........
   1D4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 96 25 A4  .........@....%.
   1D4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D510: 00 02 00 00 09 00 2C 51 02 00 00 01 01 00 00 00  ......,Q........
   1D520: 10 00 00 00 00 02 00 00 00 40 00 04 98 96 25 A4  .........@....%.
   1D530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D550: 00 02 00 00 09 00 2D 51 02 00 00 01 01 00 00 00  ......-Q........
   1D560: 10 00 00 00 00 02 00 00 00 40 00 04 98 91 25 A4  .........@....%.
   1D570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D590: 00 02 00 00 09 00 2E 51 02 00 00 01 01 00 00 00  .......Q........
   1D5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 94 25 A4  .........@....%.
   1D5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D5D0: 00 02 00 00 09 00 2F 51 02 00 00 01 01 00 00 00  ....../Q........
   1D5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 95 25 A4  .........@....%.
   1D5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D610: 00 02 00 00 09 00 30 51 02 00 00 01 01 00 00 00  ......0Q........
   1D620: 10 00 00 00 00 02 00 00 00 40 00 04 18 92 25 A4  .........@....%.
   1D630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D650: 00 02 00 00 09 00 31 51 02 00 00 01 01 00 00 00  ......1Q........
   1D660: 10 00 00 00 00 02 00 00 00 40 00 04 18 94 25 A4  .........@....%.
   1D670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D690: 00 02 00 00 09 00 32 51 02 00 00 01 01 00 00 00  ......2Q........
   1D6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 92 25 A4  .........@....%.
   1D6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D6D0: 00 02 00 00 09 00 33 51 02 00 00 01 01 00 00 00  ......3Q........
   1D6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 93 25 A4  .........@....%.
   1D6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D710: 00 02 00 00 09 00 34 51 02 00 00 01 01 00 00 00  ......4Q........
   1D720: 10 00 00 00 00 02 00 00 00 40 00 04 98 93 25 A4  .........@....%.
   1D730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D750: 00 02 00 00 09 00 35 51 02 00 00 01 01 00 00 00  ......5Q........
   1D760: 10 00 00 00 00 02 00 00 00 40 00 04 18 80 25 A4  .........@....%.
   1D770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D790: 00 02 00 00 09 00 36 51 02 00 00 01 01 00 00 00  ......6Q........
   1D7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8F 25 A4  .........@....%.
   1D7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D7D0: 00 02 00 00 09 00 37 51 02 00 00 01 01 00 00 00  ......7Q........
   1D7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8F 25 A4  .........@....%.
   1D7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D810: 00 02 00 00 09 00 38 51 02 00 00 01 01 00 00 00  ......8Q........
   1D820: 10 00 00 00 00 02 00 00 00 40 00 04 18 8B 25 A4  .........@....%.
   1D830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D850: 00 02 00 00 09 00 39 51 02 00 00 01 01 00 00 00  ......9Q........
   1D860: 10 00 00 00 00 02 00 00 00 40 00 04 18 8E 25 A4  .........@....%.
   1D870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D890: 00 02 00 00 09 00 3A 51 02 00 00 01 01 00 00 00  ......:Q........
   1D8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8E 25 A4  .........@....%.
   1D8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D8D0: 00 02 00 00 09 00 3B 51 02 00 00 01 01 00 00 00  ......;Q........
   1D8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8B 25 A4  .........@....%.
   1D8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D910: 00 02 00 00 09 00 3C 51 02 00 00 01 01 00 00 00  ......<Q........
   1D920: 10 00 00 00 00 02 00 00 00 40 00 04 98 8D 25 A4  .........@....%.
   1D930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D950: 00 02 00 00 09 00 3D 51 02 00 00 01 01 00 00 00  ......=Q........
   1D960: 10 00 00 00 00 02 00 00 00 40 00 04 18 8C 25 A4  .........@....%.
   1D970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D990: 00 02 00 00 09 00 3E 51 02 00 00 01 01 00 00 00  ......>Q........
   1D9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8C 25 A4  .........@....%.
   1D9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1D9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1D9D0: 00 02 00 00 09 00 3F 51 02 00 00 01 01 00 00 00  ......?Q........
   1D9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8D 25 A4  .........@....%.
   1D9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DA10: 00 02 00 00 09 00 40 51 02 00 00 01 01 00 00 00  ......@Q........
   1DA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 80 25 A4  .........@....%.
   1DA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DA50: 00 02 00 00 09 00 41 51 02 00 00 01 01 00 00 00  ......AQ........
   1DA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 8A 25 A4  .........@....%.
   1DA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DA90: 00 02 00 00 09 00 42 51 02 00 00 01 01 00 00 00  ......BQ........
   1DAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8A 25 A4  .........@....%.
   1DAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DAD0: 00 02 00 00 09 00 43 51 02 00 00 01 01 00 00 00  ......CQ........
   1DAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 87 25 A4  .........@....%.
   1DAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DB10: 00 02 00 00 09 00 44 51 02 00 00 01 01 00 00 00  ......DQ........
   1DB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 89 25 A4  .........@....%.
   1DB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DB50: 00 02 00 00 09 00 45 51 02 00 00 01 01 00 00 00  ......EQ........
   1DB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 88 25 A4  .........@....%.
   1DB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DB90: 00 02 00 00 09 00 46 51 02 00 00 01 01 00 00 00  ......FQ........
   1DBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 88 25 A4  .........@....%.
   1DBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DBD0: 00 02 00 00 09 00 47 51 02 00 00 01 01 00 00 00  ......GQ........
   1DBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 89 25 A4  .........@....%.
   1DBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DC10: 00 02 00 00 09 00 48 51 02 00 00 01 01 00 00 00  ......HQ........
   1DC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 81 25 A4  .........@....%.
   1DC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DC50: 00 02 00 00 09 00 49 51 02 00 00 01 01 00 00 00  ......IQ........
   1DC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 87 25 A4  .........@....%.
   1DC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DC90: 00 02 00 00 09 00 4A 51 02 00 00 01 01 00 00 00  ......JQ........
   1DCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 85 25 A4  .........@....%.
   1DCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DCD0: 00 02 00 00 09 00 4B 51 02 00 00 01 01 00 00 00  ......KQ........
   1DCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 86 25 A4  .........@....%.
   1DCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DD10: 00 02 00 00 09 00 4C 51 02 00 00 01 01 00 00 00  ......LQ........
   1DD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 86 25 A4  .........@....%.
   1DD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DD50: 00 02 00 00 09 00 4D 51 02 00 00 01 01 00 00 00  ......MQ........
   1DD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 81 25 A4  .........@....%.
   1DD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DD90: 00 02 00 00 09 00 4E 51 02 00 00 01 01 00 00 00  ......NQ........
   1DDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 84 25 A4  .........@....%.
   1DDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DDD0: 00 02 00 00 09 00 4F 51 02 00 00 01 01 00 00 00  ......OQ........
   1DDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 85 25 A4  .........@....%.
   1DDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DE10: 00 02 00 00 09 00 50 51 02 00 00 01 01 00 00 00  ......PQ........
   1DE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 82 25 A4  .........@....%.
   1DE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DE50: 00 02 00 00 09 00 51 51 02 00 00 01 01 00 00 00  ......QQ........
   1DE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 84 25 A4  .........@....%.
   1DE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DE90: 00 02 00 00 09 00 52 51 02 00 00 01 01 00 00 00  ......RQ........
   1DEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 82 25 A4  .........@....%.
   1DEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DED0: 00 02 00 00 09 00 53 51 02 00 00 01 01 00 00 00  ......SQ........
   1DEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 83 25 A4  .........@....%.
   1DEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DF10: 00 02 00 00 09 00 54 51 02 00 00 01 01 00 00 00  ......TQ........
   1DF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 83 25 A4  .........@....%.
   1DF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DF50: 00 02 00 00 09 00 55 51 02 00 00 01 01 00 00 00  ......UQ........
   1DF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 70 25 A4  .........@...p%.
   1DF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DF90: 00 02 00 00 09 00 56 51 02 00 00 01 01 00 00 00  ......VQ........
   1DFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7F 25 A4  .........@....%.
   1DFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1DFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1DFD0: 00 02 00 00 09 00 57 51 02 00 00 01 01 00 00 00  ......WQ........
   1DFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7F 25 A4  .........@....%.
   1DFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E010: 00 02 00 00 09 00 58 51 02 00 00 01 01 00 00 00  ......XQ........
   1E020: 10 00 00 00 00 02 00 00 00 40 00 04 18 7B 25 A4  .........@...{%.
   1E030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E050: 00 02 00 00 09 00 59 51 02 00 00 01 01 00 00 00  ......YQ........
   1E060: 10 00 00 00 00 02 00 00 00 40 00 04 18 7E 25 A4  .........@...~%.
   1E070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E090: 00 02 00 00 09 00 5A 51 02 00 00 01 01 00 00 00  ......ZQ........
   1E0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7E 25 A4  .........@...~%.
   1E0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E0D0: 00 02 00 00 09 00 5B 51 02 00 00 01 01 00 00 00  ......[Q........
   1E0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7B 25 A4  .........@...{%.
   1E0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E110: 00 02 00 00 09 00 5C 51 02 00 00 01 01 00 00 00  ......\Q........
   1E120: 10 00 00 00 00 02 00 00 00 40 00 04 98 7D 25 A4  .........@...}%.
   1E130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E150: 00 02 00 00 09 00 5D 51 02 00 00 01 01 00 00 00  ......]Q........
   1E160: 10 00 00 00 00 02 00 00 00 40 00 04 18 7C 25 A4  .........@...|%.
   1E170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E190: 00 02 00 00 09 00 5E 51 02 00 00 01 01 00 00 00  ......^Q........
   1E1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7C 25 A4  .........@...|%.
   1E1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E1D0: 00 02 00 00 09 00 5F 51 02 00 00 01 01 00 00 00  ......_Q........
   1E1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7D 25 A4  .........@...}%.
   1E1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E210: 00 02 00 00 09 00 60 51 02 00 00 01 01 00 00 00  ......`Q........
   1E220: 10 00 00 00 00 02 00 00 00 40 00 04 98 70 25 A4  .........@...p%.
   1E230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E250: 00 02 00 00 09 00 61 51 02 00 00 01 01 00 00 00  ......aQ........
   1E260: 10 00 00 00 00 02 00 00 00 40 00 04 18 7A 25 A4  .........@...z%.
   1E270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E290: 00 02 00 00 09 00 62 51 02 00 00 01 01 00 00 00  ......bQ........
   1E2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7A 25 A4  .........@...z%.
   1E2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E2D0: 00 02 00 00 09 00 63 51 02 00 00 01 01 00 00 00  ......cQ........
   1E2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 77 25 A4  .........@...w%.
   1E2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E310: 00 02 00 00 09 00 64 51 02 00 00 01 01 00 00 00  ......dQ........
   1E320: 10 00 00 00 00 02 00 00 00 40 00 04 98 79 25 A4  .........@...y%.
   1E330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E350: 00 02 00 00 09 00 65 51 02 00 00 01 01 00 00 00  ......eQ........
   1E360: 10 00 00 00 00 02 00 00 00 40 00 04 18 78 25 A4  .........@...x%.
   1E370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E390: 00 02 00 00 09 00 66 51 02 00 00 01 01 00 00 00  ......fQ........
   1E3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 78 25 A4  .........@...x%.
   1E3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E3D0: 00 02 00 00 09 00 67 51 02 00 00 01 01 00 00 00  ......gQ........
   1E3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 79 25 A4  .........@...y%.
   1E3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E410: 00 02 00 00 09 00 68 51 02 00 00 01 01 00 00 00  ......hQ........
   1E420: 10 00 00 00 00 02 00 00 00 40 00 04 18 71 25 A4  .........@...q%.
   1E430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E450: 00 02 00 00 09 00 69 51 02 00 00 01 01 00 00 00  ......iQ........
   1E460: 10 00 00 00 00 02 00 00 00 40 00 04 18 77 25 A4  .........@...w%.
   1E470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E490: 00 02 00 00 09 00 6A 51 02 00 00 01 01 00 00 00  ......jQ........
   1E4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 75 25 A4  .........@...u%.
   1E4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E4D0: 00 02 00 00 09 00 6B 51 02 00 00 01 01 00 00 00  ......kQ........
   1E4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 76 25 A4  .........@...v%.
   1E4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E510: 00 02 00 00 09 00 6C 51 02 00 00 01 01 00 00 00  ......lQ........
   1E520: 10 00 00 00 00 02 00 00 00 40 00 04 98 76 25 A4  .........@...v%.
   1E530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E550: 00 02 00 00 09 00 6D 51 02 00 00 01 01 00 00 00  ......mQ........
   1E560: 10 00 00 00 00 02 00 00 00 40 00 04 98 71 25 A4  .........@...q%.
   1E570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E590: 00 02 00 00 09 00 6E 51 02 00 00 01 01 00 00 00  ......nQ........
   1E5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 74 25 A4  .........@...t%.
   1E5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E5D0: 00 02 00 00 09 00 6F 51 02 00 00 01 01 00 00 00  ......oQ........
   1E5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 75 25 A4  .........@...u%.
   1E5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E610: 00 02 00 00 09 00 70 51 02 00 00 01 01 00 00 00  ......pQ........
   1E620: 10 00 00 00 00 02 00 00 00 40 00 04 18 72 25 A4  .........@...r%.
   1E630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E650: 00 02 00 00 09 00 71 51 02 00 00 01 01 00 00 00  ......qQ........
   1E660: 10 00 00 00 00 02 00 00 00 40 00 04 18 74 25 A4  .........@...t%.
   1E670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E690: 00 02 00 00 09 00 72 51 02 00 00 01 01 00 00 00  ......rQ........
   1E6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 72 25 A4  .........@...r%.
   1E6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E6D0: 00 02 00 00 09 00 73 51 02 00 00 01 01 00 00 00  ......sQ........
   1E6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 73 25 A4  .........@...s%.
   1E6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E710: 00 02 00 00 09 00 74 51 02 00 00 01 01 00 00 00  ......tQ........
   1E720: 10 00 00 00 00 02 00 00 00 40 00 04 98 73 25 A4  .........@...s%.
   1E730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E750: 00 02 00 00 09 00 75 51 02 00 00 01 01 00 00 00  ......uQ........
   1E760: 10 00 00 00 00 02 00 00 00 40 00 04 18 60 25 A4  .........@...`%.
   1E770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E790: 00 02 00 00 09 00 76 51 02 00 00 01 01 00 00 00  ......vQ........
   1E7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6F 25 A4  .........@...o%.
   1E7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E7D0: 00 02 00 00 09 00 77 51 02 00 00 01 01 00 00 00  ......wQ........
   1E7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6F 25 A4  .........@...o%.
   1E7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E810: 00 02 00 00 09 00 78 51 02 00 00 01 01 00 00 00  ......xQ........
   1E820: 10 00 00 00 00 02 00 00 00 40 00 04 18 6B 25 A4  .........@...k%.
   1E830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E850: 00 02 00 00 09 00 79 51 02 00 00 01 01 00 00 00  ......yQ........
   1E860: 10 00 00 00 00 02 00 00 00 40 00 04 18 6E 25 A4  .........@...n%.
   1E870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E890: 00 02 00 00 09 00 7A 51 02 00 00 01 01 00 00 00  ......zQ........
   1E8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6E 25 A4  .........@...n%.
   1E8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E8D0: 00 02 00 00 09 00 7B 51 02 00 00 01 01 00 00 00  ......{Q........
   1E8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6B 25 A4  .........@...k%.
   1E8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E910: 00 02 00 00 09 00 7C 51 02 00 00 01 01 00 00 00  ......|Q........
   1E920: 10 00 00 00 00 02 00 00 00 40 00 04 98 6D 25 A4  .........@...m%.
   1E930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E950: 00 02 00 00 09 00 7D 51 02 00 00 01 01 00 00 00  ......}Q........
   1E960: 10 00 00 00 00 02 00 00 00 40 00 04 18 6C 25 A4  .........@...l%.
   1E970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E990: 00 02 00 00 09 00 7E 51 02 00 00 01 01 00 00 00  ......~Q........
   1E9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6C 25 A4  .........@...l%.
   1E9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1E9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1E9D0: 00 02 00 00 09 00 7F 51 02 00 00 01 01 00 00 00  .......Q........
   1E9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6D 25 A4  .........@...m%.
   1E9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EA10: 00 02 00 00 09 00 80 51 02 00 00 01 01 00 00 00  .......Q........
   1EA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 60 25 A4  .........@...`%.
   1EA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EA50: 00 02 00 00 09 00 81 51 02 00 00 01 01 00 00 00  .......Q........
   1EA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 6A 25 A4  .........@...j%.
   1EA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EA90: 00 02 00 00 09 00 82 51 02 00 00 01 01 00 00 00  .......Q........
   1EAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6A 25 A4  .........@...j%.
   1EAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EAD0: 00 02 00 00 09 00 83 51 02 00 00 01 01 00 00 00  .......Q........
   1EAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 67 25 A4  .........@...g%.
   1EAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EB10: 00 02 00 00 09 00 84 51 02 00 00 01 01 00 00 00  .......Q........
   1EB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 69 25 A4  .........@...i%.
   1EB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EB50: 00 02 00 00 09 00 85 51 02 00 00 01 01 00 00 00  .......Q........
   1EB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 68 25 A4  .........@...h%.
   1EB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EB90: 00 02 00 00 09 00 86 51 02 00 00 01 01 00 00 00  .......Q........
   1EBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 68 25 A4  .........@...h%.
   1EBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EBD0: 00 02 00 00 09 00 87 51 02 00 00 01 01 00 00 00  .......Q........
   1EBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 69 25 A4  .........@...i%.
   1EBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EC10: 00 02 00 00 09 00 88 51 02 00 00 01 01 00 00 00  .......Q........
   1EC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 61 25 A4  .........@...a%.
   1EC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EC50: 00 02 00 00 09 00 89 51 02 00 00 01 01 00 00 00  .......Q........
   1EC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 67 25 A4  .........@...g%.
   1EC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EC90: 00 02 00 00 09 00 8A 51 02 00 00 01 01 00 00 00  .......Q........
   1ECA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 65 25 A4  .........@...e%.
   1ECB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1ECC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1ECD0: 00 02 00 00 09 00 8B 51 02 00 00 01 01 00 00 00  .......Q........
   1ECE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 66 25 A4  .........@...f%.
   1ECF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1ED00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1ED10: 00 02 00 00 09 00 8C 51 02 00 00 01 01 00 00 00  .......Q........
   1ED20: 10 00 00 00 00 02 00 00 00 40 00 04 98 66 25 A4  .........@...f%.
   1ED30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1ED40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1ED50: 00 02 00 00 09 00 8D 51 02 00 00 01 01 00 00 00  .......Q........
   1ED60: 10 00 00 00 00 02 00 00 00 40 00 04 98 61 25 A4  .........@...a%.
   1ED70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1ED80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1ED90: 00 02 00 00 09 00 8E 51 02 00 00 01 01 00 00 00  .......Q........
   1EDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 64 25 A4  .........@...d%.
   1EDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EDD0: 00 02 00 00 09 00 8F 51 02 00 00 01 01 00 00 00  .......Q........
   1EDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 65 25 A4  .........@...e%.
   1EDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EE10: 00 02 00 00 09 00 90 51 02 00 00 01 01 00 00 00  .......Q........
   1EE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 62 25 A4  .........@...b%.
   1EE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EE50: 00 02 00 00 09 00 91 51 02 00 00 01 01 00 00 00  .......Q........
   1EE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 64 25 A4  .........@...d%.
   1EE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EE90: 00 02 00 00 09 00 92 51 02 00 00 01 01 00 00 00  .......Q........
   1EEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 62 25 A4  .........@...b%.
   1EEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EED0: 00 02 00 00 09 00 93 51 02 00 00 01 01 00 00 00  .......Q........
   1EEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 63 25 A4  .........@...c%.
   1EEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EF10: 00 02 00 00 09 00 94 51 02 00 00 01 01 00 00 00  .......Q........
   1EF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 63 25 A4  .........@...c%.
   1EF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EF50: 00 02 00 00 09 00 95 51 02 00 00 01 01 00 00 00  .......Q........
   1EF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 50 25 A4  .........@...P%.
   1EF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EF90: 00 02 00 00 09 00 96 51 02 00 00 01 01 00 00 00  .......Q........
   1EFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5F 25 A4  .........@..._%.
   1EFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1EFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1EFD0: 00 02 00 00 09 00 97 51 02 00 00 01 01 00 00 00  .......Q........
   1EFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5F 25 A4  .........@..._%.
   1EFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F010: 00 02 00 00 09 00 98 51 02 00 00 01 01 00 00 00  .......Q........
   1F020: 10 00 00 00 00 02 00 00 00 40 00 04 18 5B 25 A4  .........@...[%.
   1F030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F050: 00 02 00 00 09 00 99 51 02 00 00 01 01 00 00 00  .......Q........
   1F060: 10 00 00 00 00 02 00 00 00 40 00 04 18 5E 25 A4  .........@...^%.
   1F070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F090: 00 02 00 00 09 00 9A 51 02 00 00 01 01 00 00 00  .......Q........
   1F0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5E 25 A4  .........@...^%.
   1F0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F0D0: 00 02 00 00 09 00 9B 51 02 00 00 01 01 00 00 00  .......Q........
   1F0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5B 25 A4  .........@...[%.
   1F0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F110: 00 02 00 00 09 00 9C 51 02 00 00 01 01 00 00 00  .......Q........
   1F120: 10 00 00 00 00 02 00 00 00 40 00 04 98 5D 25 A4  .........@...]%.
   1F130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F150: 00 02 00 00 09 00 9D 51 02 00 00 01 01 00 00 00  .......Q........
   1F160: 10 00 00 00 00 02 00 00 00 40 00 04 18 5C 25 A4  .........@...\%.
   1F170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F190: 00 02 00 00 09 00 9E 51 02 00 00 01 01 00 00 00  .......Q........
   1F1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5C 25 A4  .........@...\%.
   1F1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F1D0: 00 02 00 00 09 00 9F 51 02 00 00 01 01 00 00 00  .......Q........
   1F1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5D 25 A4  .........@...]%.
   1F1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F210: 00 02 00 00 09 00 A0 51 02 00 00 01 01 00 00 00  .......Q........
   1F220: 10 00 00 00 00 02 00 00 00 40 00 04 98 50 25 A4  .........@...P%.
   1F230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F250: 00 02 00 00 09 00 A1 51 02 00 00 01 01 00 00 00  .......Q........
   1F260: 10 00 00 00 00 02 00 00 00 40 00 04 18 5A 25 A4  .........@...Z%.
   1F270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F290: 00 02 00 00 09 00 A2 51 02 00 00 01 01 00 00 00  .......Q........
   1F2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5A 25 A4  .........@...Z%.
   1F2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F2D0: 00 02 00 00 09 00 A3 51 02 00 00 01 01 00 00 00  .......Q........
   1F2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 57 25 A4  .........@...W%.
   1F2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F310: 00 02 00 00 09 00 A4 51 02 00 00 01 01 00 00 00  .......Q........
   1F320: 10 00 00 00 00 02 00 00 00 40 00 04 98 59 25 A4  .........@...Y%.
   1F330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F350: 00 02 00 00 09 00 A5 51 02 00 00 01 01 00 00 00  .......Q........
   1F360: 10 00 00 00 00 02 00 00 00 40 00 04 18 58 25 A4  .........@...X%.
   1F370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F390: 00 02 00 00 09 00 A6 51 02 00 00 01 01 00 00 00  .......Q........
   1F3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 58 25 A4  .........@...X%.
   1F3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F3D0: 00 02 00 00 09 00 A7 51 02 00 00 01 01 00 00 00  .......Q........
   1F3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 59 25 A4  .........@...Y%.
   1F3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F410: 00 02 00 00 09 00 A8 51 02 00 00 01 01 00 00 00  .......Q........
   1F420: 10 00 00 00 00 02 00 00 00 40 00 04 18 51 25 A4  .........@...Q%.
   1F430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F450: 00 02 00 00 09 00 A9 51 02 00 00 01 01 00 00 00  .......Q........
   1F460: 10 00 00 00 00 02 00 00 00 40 00 04 18 57 25 A4  .........@...W%.
   1F470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F490: 00 02 00 00 09 00 AA 51 02 00 00 01 01 00 00 00  .......Q........
   1F4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 55 25 A4  .........@...U%.
   1F4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F4D0: 00 02 00 00 09 00 AB 51 02 00 00 01 01 00 00 00  .......Q........
   1F4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 56 25 A4  .........@...V%.
   1F4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F510: 00 02 00 00 09 00 AC 51 02 00 00 01 01 00 00 00  .......Q........
   1F520: 10 00 00 00 00 02 00 00 00 40 00 04 98 56 25 A4  .........@...V%.
   1F530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F550: 00 02 00 00 09 00 AD 51 02 00 00 01 01 00 00 00  .......Q........
   1F560: 10 00 00 00 00 02 00 00 00 40 00 04 98 51 25 A4  .........@...Q%.
   1F570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F590: 00 02 00 00 09 00 AE 51 02 00 00 01 01 00 00 00  .......Q........
   1F5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 54 25 A4  .........@...T%.
   1F5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F5D0: 00 02 00 00 09 00 AF 51 02 00 00 01 01 00 00 00  .......Q........
   1F5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 55 25 A4  .........@...U%.
   1F5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F610: 00 02 00 00 09 00 B0 51 02 00 00 01 01 00 00 00  .......Q........
   1F620: 10 00 00 00 00 02 00 00 00 40 00 04 18 52 25 A4  .........@...R%.
   1F630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F650: 00 02 00 00 09 00 B1 51 02 00 00 01 01 00 00 00  .......Q........
   1F660: 10 00 00 00 00 02 00 00 00 40 00 04 18 54 25 A4  .........@...T%.
   1F670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F690: 00 02 00 00 09 00 B2 51 02 00 00 01 01 00 00 00  .......Q........
   1F6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 52 25 A4  .........@...R%.
   1F6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F6D0: 00 02 00 00 09 00 B3 51 02 00 00 01 01 00 00 00  .......Q........
   1F6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 53 25 A4  .........@...S%.
   1F6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F710: 00 02 00 00 09 00 B4 51 02 00 00 01 01 00 00 00  .......Q........
   1F720: 10 00 00 00 00 02 00 00 00 40 00 04 98 53 25 A4  .........@...S%.
   1F730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F750: 00 02 00 00 09 00 B5 51 02 00 00 01 01 00 00 00  .......Q........
   1F760: 10 00 00 00 00 02 00 00 00 40 00 04 18 40 25 A4  .........@...@%.
   1F770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F790: 00 02 00 00 09 00 B6 51 02 00 00 01 01 00 00 00  .......Q........
   1F7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4F 25 A4  .........@...O%.
   1F7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F7D0: 00 02 00 00 09 00 B7 51 02 00 00 01 01 00 00 00  .......Q........
   1F7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4F 25 A4  .........@...O%.
   1F7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F810: 00 02 00 00 09 00 B8 51 02 00 00 01 01 00 00 00  .......Q........
   1F820: 10 00 00 00 00 02 00 00 00 40 00 04 18 4B 25 A4  .........@...K%.
   1F830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F850: 00 02 00 00 09 00 B9 51 02 00 00 01 01 00 00 00  .......Q........
   1F860: 10 00 00 00 00 02 00 00 00 40 00 04 18 4E 25 A4  .........@...N%.
   1F870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F890: 00 02 00 00 09 00 BA 51 02 00 00 01 01 00 00 00  .......Q........
   1F8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4E 25 A4  .........@...N%.
   1F8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F8D0: 00 02 00 00 09 00 BB 51 02 00 00 01 01 00 00 00  .......Q........
   1F8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4B 25 A4  .........@...K%.
   1F8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F910: 00 02 00 00 09 00 BC 51 02 00 00 01 01 00 00 00  .......Q........
   1F920: 10 00 00 00 00 02 00 00 00 40 00 04 98 4D 25 A4  .........@...M%.
   1F930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F950: 00 02 00 00 09 00 BD 51 02 00 00 01 01 00 00 00  .......Q........
   1F960: 10 00 00 00 00 02 00 00 00 40 00 04 18 4C 25 A4  .........@...L%.
   1F970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F990: 00 02 00 00 09 00 BE 51 02 00 00 01 01 00 00 00  .......Q........
   1F9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4C 25 A4  .........@...L%.
   1F9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1F9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1F9D0: 00 02 00 00 09 00 BF 51 02 00 00 01 01 00 00 00  .......Q........
   1F9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4D 25 A4  .........@...M%.
   1F9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FA10: 00 02 00 00 09 00 C0 51 02 00 00 01 01 00 00 00  .......Q........
   1FA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 40 25 A4  .........@...@%.
   1FA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FA50: 00 02 00 00 09 00 C1 51 02 00 00 01 01 00 00 00  .......Q........
   1FA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 4A 25 A4  .........@...J%.
   1FA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FA90: 00 02 00 00 09 00 C2 51 02 00 00 01 01 00 00 00  .......Q........
   1FAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4A 25 A4  .........@...J%.
   1FAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FAD0: 00 02 00 00 09 00 C3 51 02 00 00 01 01 00 00 00  .......Q........
   1FAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 47 25 A4  .........@...G%.
   1FAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FB10: 00 02 00 00 09 00 C4 51 02 00 00 01 01 00 00 00  .......Q........
   1FB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 49 25 A4  .........@...I%.
   1FB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FB50: 00 02 00 00 09 00 C5 51 02 00 00 01 01 00 00 00  .......Q........
   1FB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 48 25 A4  .........@...H%.
   1FB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FB90: 00 02 00 00 09 00 C6 51 02 00 00 01 01 00 00 00  .......Q........
   1FBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 48 25 A4  .........@...H%.
   1FBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FBD0: 00 02 00 00 09 00 C7 51 02 00 00 01 01 00 00 00  .......Q........
   1FBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 49 25 A4  .........@...I%.
   1FBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FC10: 00 02 00 00 09 00 C8 51 02 00 00 01 01 00 00 00  .......Q........
   1FC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 41 25 A4  .........@...A%.
   1FC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FC50: 00 02 00 00 09 00 C9 51 02 00 00 01 01 00 00 00  .......Q........
   1FC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 47 25 A4  .........@...G%.
   1FC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FC90: 00 02 00 00 09 00 CA 51 02 00 00 01 01 00 00 00  .......Q........
   1FCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 45 25 A4  .........@...E%.
   1FCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FCD0: 00 02 00 00 09 00 CB 51 02 00 00 01 01 00 00 00  .......Q........
   1FCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 46 25 A4  .........@...F%.
   1FCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FD10: 00 02 00 00 09 00 CC 51 02 00 00 01 01 00 00 00  .......Q........
   1FD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 46 25 A4  .........@...F%.
   1FD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FD50: 00 02 00 00 09 00 CD 51 02 00 00 01 01 00 00 00  .......Q........
   1FD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 41 25 A4  .........@...A%.
   1FD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FD90: 00 02 00 00 09 00 CE 51 02 00 00 01 01 00 00 00  .......Q........
   1FDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 44 25 A4  .........@...D%.
   1FDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FDD0: 00 02 00 00 09 00 CF 51 02 00 00 01 01 00 00 00  .......Q........
   1FDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 45 25 A4  .........@...E%.
   1FDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FE10: 00 02 00 00 09 00 D0 51 02 00 00 01 01 00 00 00  .......Q........
   1FE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 42 25 A4  .........@...B%.
   1FE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FE50: 00 02 00 00 09 00 D1 51 02 00 00 01 01 00 00 00  .......Q........
   1FE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 44 25 A4  .........@...D%.
   1FE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FE90: 00 02 00 00 09 00 D2 51 02 00 00 01 01 00 00 00  .......Q........
   1FEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 42 25 A4  .........@...B%.
   1FEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FED0: 00 02 00 00 09 00 D3 51 02 00 00 01 01 00 00 00  .......Q........
   1FEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 43 25 A4  .........@...C%.
   1FEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FF10: 00 02 00 00 09 00 D4 51 02 00 00 01 01 00 00 00  .......Q........
   1FF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 43 25 A4  .........@...C%.
   1FF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FF50: 00 02 00 00 09 00 D5 51 02 00 00 01 01 00 00 00  .......Q........
   1FF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 30 25 A4  .........@...0%.
   1FF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FF90: 00 02 00 00 09 00 D6 51 02 00 00 01 01 00 00 00  .......Q........
   1FFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3F 25 A4  .........@...?%.
   1FFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   1FFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   1FFD0: 00 02 00 00 09 00 D7 51 02 00 00 01 01 00 00 00  .......Q........
   1FFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3F 25 A4  .........@...?%.
   1FFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20010: 00 02 00 00 09 00 D8 51 02 00 00 01 01 00 00 00  .......Q........
   20020: 10 00 00 00 00 02 00 00 00 40 00 04 18 3B 25 A4  .........@...;%.
   20030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20050: 00 02 00 00 09 00 D9 51 02 00 00 01 01 00 00 00  .......Q........
   20060: 10 00 00 00 00 02 00 00 00 40 00 04 18 3E 25 A4  .........@...>%.
   20070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20090: 00 02 00 00 09 00 DA 51 02 00 00 01 01 00 00 00  .......Q........
   200A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3E 25 A4  .........@...>%.
   200B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   200C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   200D0: 00 02 00 00 09 00 DB 51 02 00 00 01 01 00 00 00  .......Q........
   200E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3B 25 A4  .........@...;%.
   200F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20110: 00 02 00 00 09 00 DC 51 02 00 00 01 01 00 00 00  .......Q........
   20120: 10 00 00 00 00 02 00 00 00 40 00 04 98 3D 25 A4  .........@...=%.
   20130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20150: 00 02 00 00 09 00 DD 51 02 00 00 01 01 00 00 00  .......Q........
   20160: 10 00 00 00 00 02 00 00 00 40 00 04 18 3C 25 A4  .........@...<%.
   20170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20190: 00 02 00 00 09 00 DE 51 02 00 00 01 01 00 00 00  .......Q........
   201A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3C 25 A4  .........@...<%.
   201B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   201C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   201D0: 00 02 00 00 09 00 DF 51 02 00 00 01 01 00 00 00  .......Q........
   201E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3D 25 A4  .........@...=%.
   201F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20210: 00 02 00 00 09 00 E0 51 02 00 00 01 01 00 00 00  .......Q........
   20220: 10 00 00 00 00 02 00 00 00 40 00 04 98 30 25 A4  .........@...0%.
   20230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20250: 00 02 00 00 09 00 E1 51 02 00 00 01 01 00 00 00  .......Q........
   20260: 10 00 00 00 00 02 00 00 00 40 00 04 18 3A 25 A4  .........@...:%.
   20270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20290: 00 02 00 00 09 00 E2 51 02 00 00 01 01 00 00 00  .......Q........
   202A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3A 25 A4  .........@...:%.
   202B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   202C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   202D0: 00 02 00 00 09 00 E3 51 02 00 00 01 01 00 00 00  .......Q........
   202E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 37 25 A4  .........@...7%.
   202F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20310: 00 02 00 00 09 00 E4 51 02 00 00 01 01 00 00 00  .......Q........
   20320: 10 00 00 00 00 02 00 00 00 40 00 04 98 39 25 A4  .........@...9%.
   20330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20350: 00 02 00 00 09 00 E5 51 02 00 00 01 01 00 00 00  .......Q........
   20360: 10 00 00 00 00 02 00 00 00 40 00 04 18 38 25 A4  .........@...8%.
   20370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20390: 00 02 00 00 09 00 E6 51 02 00 00 01 01 00 00 00  .......Q........
   203A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 38 25 A4  .........@...8%.
   203B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   203C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   203D0: 00 02 00 00 09 00 E7 51 02 00 00 01 01 00 00 00  .......Q........
   203E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 39 25 A4  .........@...9%.
   203F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20410: 00 02 00 00 09 00 E8 51 02 00 00 01 01 00 00 00  .......Q........
   20420: 10 00 00 00 00 02 00 00 00 40 00 04 18 31 25 A4  .........@...1%.
   20430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20450: 00 02 00 00 09 00 E9 51 02 00 00 01 01 00 00 00  .......Q........
   20460: 10 00 00 00 00 02 00 00 00 40 00 04 18 37 25 A4  .........@...7%.
   20470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20490: 00 02 00 00 09 00 EA 51 02 00 00 01 01 00 00 00  .......Q........
   204A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 35 25 A4  .........@...5%.
   204B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   204C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   204D0: 00 02 00 00 09 00 EB 51 02 00 00 01 01 00 00 00  .......Q........
   204E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 36 25 A4  .........@...6%.
   204F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20510: 00 02 00 00 09 00 EC 51 02 00 00 01 01 00 00 00  .......Q........
   20520: 10 00 00 00 00 02 00 00 00 40 00 04 98 36 25 A4  .........@...6%.
   20530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20550: 00 02 00 00 09 00 ED 51 02 00 00 01 01 00 00 00  .......Q........
   20560: 10 00 00 00 00 02 00 00 00 40 00 04 98 31 25 A4  .........@...1%.
   20570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20590: 00 02 00 00 09 00 EE 51 02 00 00 01 01 00 00 00  .......Q........
   205A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 34 25 A4  .........@...4%.
   205B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   205C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   205D0: 00 02 00 00 09 00 EF 51 02 00 00 01 01 00 00 00  .......Q........
   205E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 35 25 A4  .........@...5%.
   205F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20610: 00 02 00 00 09 00 F0 51 02 00 00 01 01 00 00 00  .......Q........
   20620: 10 00 00 00 00 02 00 00 00 40 00 04 18 32 25 A4  .........@...2%.
   20630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20650: 00 02 00 00 09 00 F1 51 02 00 00 01 01 00 00 00  .......Q........
   20660: 10 00 00 00 00 02 00 00 00 40 00 04 18 34 25 A4  .........@...4%.
   20670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20690: 00 02 00 00 09 00 F2 51 02 00 00 01 01 00 00 00  .......Q........
   206A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 32 25 A4  .........@...2%.
   206B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   206C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   206D0: 00 02 00 00 09 00 F3 51 02 00 00 01 01 00 00 00  .......Q........
   206E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 33 25 A4  .........@...3%.
   206F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20710: 00 02 00 00 09 00 F4 51 02 00 00 01 01 00 00 00  .......Q........
   20720: 10 00 00 00 00 02 00 00 00 40 00 04 98 33 25 A4  .........@...3%.
   20730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20750: 00 02 00 00 09 00 F5 51 02 00 00 01 01 00 00 00  .......Q........
   20760: 10 00 00 00 00 02 00 00 00 40 00 04 18 20 25 A4  .........@... %.
   20770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20790: 00 02 00 00 09 00 F6 51 02 00 00 01 01 00 00 00  .......Q........
   207A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 2F 25 A4  .........@.../%.
   207B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   207C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   207D0: 00 02 00 00 09 00 F7 51 02 00 00 01 01 00 00 00  .......Q........
   207E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2F 25 A4  .........@.../%.
   207F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20810: 00 02 00 00 09 00 F8 51 02 00 00 01 01 00 00 00  .......Q........
   20820: 10 00 00 00 00 02 00 00 00 40 00 04 18 2B 25 A4  .........@...+%.
   20830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20850: 00 02 00 00 09 00 F9 51 02 00 00 01 01 00 00 00  .......Q........
   20860: 10 00 00 00 00 02 00 00 00 40 00 04 18 2E 25 A4  .........@....%.
   20870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20890: 00 02 00 00 09 00 FA 51 02 00 00 01 01 00 00 00  .......Q........
   208A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2E 25 A4  .........@....%.
   208B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   208C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   208D0: 00 02 00 00 09 00 FB 51 02 00 00 01 01 00 00 00  .......Q........
   208E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2B 25 A4  .........@...+%.
   208F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20910: 00 02 00 00 09 00 FC 51 02 00 00 01 01 00 00 00  .......Q........
   20920: 10 00 00 00 00 02 00 00 00 40 00 04 98 2D 25 A4  .........@...-%.
   20930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20950: 00 02 00 00 09 00 FD 51 02 00 00 01 01 00 00 00  .......Q........
   20960: 10 00 00 00 00 02 00 00 00 40 00 04 18 2C 25 A4  .........@...,%.
   20970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20990: 00 02 00 00 09 00 FE 51 02 00 00 01 01 00 00 00  .......Q........
   209A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2C 25 A4  .........@...,%.
   209B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   209C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   209D0: 00 02 00 00 09 00 FF 51 02 00 00 01 01 00 00 00  .......Q........
   209E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 2D 25 A4  .........@...-%.
   209F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20A10: 00 02 00 00 09 00 00 52 02 00 00 01 01 00 00 00  .......R........
   20A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 20 25 A4  .........@... %.
   20A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20A50: 00 02 00 00 09 00 01 52 02 00 00 01 01 00 00 00  .......R........
   20A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 2A 25 A4  .........@...*%.
   20A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20A90: 00 02 00 00 09 00 02 52 02 00 00 01 01 00 00 00  .......R........
   20AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2A 25 A4  .........@...*%.
   20AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20AD0: 00 02 00 00 09 00 03 52 02 00 00 01 01 00 00 00  .......R........
   20AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 27 25 A4  .........@...'%.
   20AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20B10: 00 02 00 00 09 00 04 52 02 00 00 01 01 00 00 00  .......R........
   20B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 29 25 A4  .........@...)%.
   20B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20B50: 00 02 00 00 09 00 05 52 02 00 00 01 01 00 00 00  .......R........
   20B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 28 25 A4  .........@...(%.
   20B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20B90: 00 02 00 00 09 00 06 52 02 00 00 01 01 00 00 00  .......R........
   20BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 28 25 A4  .........@...(%.
   20BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20BD0: 00 02 00 00 09 00 07 52 02 00 00 01 01 00 00 00  .......R........
   20BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 29 25 A4  .........@...)%.
   20BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20C10: 00 02 00 00 09 00 08 52 02 00 00 01 01 00 00 00  .......R........
   20C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 21 25 A4  .........@...!%.
   20C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20C50: 00 02 00 00 09 00 09 52 02 00 00 01 01 00 00 00  .......R........
   20C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 27 25 A4  .........@...'%.
   20C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20C90: 00 02 00 00 09 00 0A 52 02 00 00 01 01 00 00 00  .......R........
   20CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 25 25 A4  .........@...%%.
   20CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20CD0: 00 02 00 00 09 00 0B 52 02 00 00 01 01 00 00 00  .......R........
   20CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 26 25 A4  .........@...&%.
   20CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20D10: 00 02 00 00 09 00 0C 52 02 00 00 01 01 00 00 00  .......R........
   20D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 26 25 A4  .........@...&%.
   20D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20D50: 00 02 00 00 09 00 0D 52 02 00 00 01 01 00 00 00  .......R........
   20D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 21 25 A4  .........@...!%.
   20D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20D90: 00 02 00 00 09 00 0E 52 02 00 00 01 01 00 00 00  .......R........
   20DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 24 25 A4  .........@...$%.
   20DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20DD0: 00 02 00 00 09 00 0F 52 02 00 00 01 01 00 00 00  .......R........
   20DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 25 25 A4  .........@...%%.
   20DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20E10: 00 02 00 00 09 00 10 52 02 00 00 01 01 00 00 00  .......R........
   20E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 22 25 A4  .........@..."%.
   20E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20E50: 00 02 00 00 09 00 11 52 02 00 00 01 01 00 00 00  .......R........
   20E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 24 25 A4  .........@...$%.
   20E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20E90: 00 02 00 00 09 00 12 52 02 00 00 01 01 00 00 00  .......R........
   20EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 22 25 A4  .........@..."%.
   20EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20ED0: 00 02 00 00 09 00 13 52 02 00 00 01 01 00 00 00  .......R........
   20EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 23 25 A4  .........@...#%.
   20EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20F10: 00 02 00 00 09 00 14 52 02 00 00 01 01 00 00 00  .......R........
   20F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 23 25 A4  .........@...#%.
   20F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20F50: 00 02 00 00 09 00 15 52 02 00 00 01 01 00 00 00  .......R........
   20F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 10 25 A4  .........@....%.
   20F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20F90: 00 02 00 00 09 00 16 52 02 00 00 01 01 00 00 00  .......R........
   20FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 1F 25 A4  .........@....%.
   20FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   20FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   20FD0: 00 02 00 00 09 00 17 52 02 00 00 01 01 00 00 00  .......R........
   20FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1F 25 A4  .........@....%.
   20FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21010: 00 02 00 00 09 00 18 52 02 00 00 01 01 00 00 00  .......R........
   21020: 10 00 00 00 00 02 00 00 00 40 00 04 18 1B 25 A4  .........@....%.
   21030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21050: 00 02 00 00 09 00 19 52 02 00 00 01 01 00 00 00  .......R........
   21060: 10 00 00 00 00 02 00 00 00 40 00 04 18 1E 25 A4  .........@....%.
   21070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21090: 00 02 00 00 09 00 1A 52 02 00 00 01 01 00 00 00  .......R........
   210A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1E 25 A4  .........@....%.
   210B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   210C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   210D0: 00 02 00 00 09 00 1B 52 02 00 00 01 01 00 00 00  .......R........
   210E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1B 25 A4  .........@....%.
   210F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21110: 00 02 00 00 09 00 1C 52 02 00 00 01 01 00 00 00  .......R........
   21120: 10 00 00 00 00 02 00 00 00 40 00 04 98 1D 25 A4  .........@....%.
   21130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21150: 00 02 00 00 09 00 1D 52 02 00 00 01 01 00 00 00  .......R........
   21160: 10 00 00 00 00 02 00 00 00 40 00 04 18 1C 25 A4  .........@....%.
   21170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21190: 00 02 00 00 09 00 1E 52 02 00 00 01 01 00 00 00  .......R........
   211A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1C 25 A4  .........@....%.
   211B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   211C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   211D0: 00 02 00 00 09 00 1F 52 02 00 00 01 01 00 00 00  .......R........
   211E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 1D 25 A4  .........@....%.
   211F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21210: 00 02 00 00 09 00 20 52 02 00 00 01 01 00 00 00  ...... R........
   21220: 10 00 00 00 00 02 00 00 00 40 00 04 98 10 25 A4  .........@....%.
   21230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21250: 00 02 00 00 09 00 21 52 02 00 00 01 01 00 00 00  ......!R........
   21260: 10 00 00 00 00 02 00 00 00 40 00 04 18 1A 25 A4  .........@....%.
   21270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21290: 00 02 00 00 09 00 22 52 02 00 00 01 01 00 00 00  ......"R........
   212A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1A 25 A4  .........@....%.
   212B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   212C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   212D0: 00 02 00 00 09 00 23 52 02 00 00 01 01 00 00 00  ......#R........
   212E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 17 25 A4  .........@....%.
   212F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21310: 00 02 00 00 09 00 24 52 02 00 00 01 01 00 00 00  ......$R........
   21320: 10 00 00 00 00 02 00 00 00 40 00 04 98 19 25 A4  .........@....%.
   21330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21350: 00 02 00 00 09 00 25 52 02 00 00 01 01 00 00 00  ......%R........
   21360: 10 00 00 00 00 02 00 00 00 40 00 04 18 18 25 A4  .........@....%.
   21370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21390: 00 02 00 00 09 00 26 52 02 00 00 01 01 00 00 00  ......&R........
   213A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 18 25 A4  .........@....%.
   213B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   213C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   213D0: 00 02 00 00 09 00 27 52 02 00 00 01 01 00 00 00  ......'R........
   213E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 19 25 A4  .........@....%.
   213F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21410: 00 02 00 00 09 00 28 52 02 00 00 01 01 00 00 00  ......(R........
   21420: 10 00 00 00 00 02 00 00 00 40 00 04 18 11 25 A4  .........@....%.
   21430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21450: 00 02 00 00 09 00 29 52 02 00 00 01 01 00 00 00  ......)R........
   21460: 10 00 00 00 00 02 00 00 00 40 00 04 18 17 25 A4  .........@....%.
   21470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21490: 00 02 00 00 09 00 2A 52 02 00 00 01 01 00 00 00  ......*R........
   214A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 15 25 A4  .........@....%.
   214B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   214C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   214D0: 00 02 00 00 09 00 2B 52 02 00 00 01 01 00 00 00  ......+R........
   214E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 16 25 A4  .........@....%.
   214F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21510: 00 02 00 00 09 00 2C 52 02 00 00 01 01 00 00 00  ......,R........
   21520: 10 00 00 00 00 02 00 00 00 40 00 04 98 16 25 A4  .........@....%.
   21530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21550: 00 02 00 00 09 00 2D 52 02 00 00 01 01 00 00 00  ......-R........
   21560: 10 00 00 00 00 02 00 00 00 40 00 04 98 11 25 A4  .........@....%.
   21570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21590: 00 02 00 00 09 00 2E 52 02 00 00 01 01 00 00 00  .......R........
   215A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 14 25 A4  .........@....%.
   215B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   215C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   215D0: 00 02 00 00 09 00 2F 52 02 00 00 01 01 00 00 00  ....../R........
   215E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 15 25 A4  .........@....%.
   215F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21610: 00 02 00 00 09 00 30 52 02 00 00 01 01 00 00 00  ......0R........
   21620: 10 00 00 00 00 02 00 00 00 40 00 04 18 12 25 A4  .........@....%.
   21630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21650: 00 02 00 00 09 00 31 52 02 00 00 01 01 00 00 00  ......1R........
   21660: 10 00 00 00 00 02 00 00 00 40 00 04 18 14 25 A4  .........@....%.
   21670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21690: 00 02 00 00 09 00 32 52 02 00 00 01 01 00 00 00  ......2R........
   216A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 12 25 A4  .........@....%.
   216B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   216C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   216D0: 00 02 00 00 09 00 33 52 02 00 00 01 01 00 00 00  ......3R........
   216E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 13 25 A4  .........@....%.
   216F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21710: 00 02 00 00 09 00 34 52 02 00 00 01 01 00 00 00  ......4R........
   21720: 10 00 00 00 00 02 00 00 00 40 00 04 98 13 25 A4  .........@....%.
   21730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21750: 00 02 00 00 09 00 35 52 02 00 00 01 01 00 00 00  ......5R........
   21760: 10 00 00 00 00 02 00 00 00 40 00 04 18 00 25 A4  .........@....%.
   21770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21790: 00 02 00 00 09 00 36 52 02 00 00 01 01 00 00 00  ......6R........
   217A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 0F 25 A4  .........@....%.
   217B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   217C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   217D0: 00 02 00 00 09 00 37 52 02 00 00 01 01 00 00 00  ......7R........
   217E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0F 25 A4  .........@....%.
   217F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21810: 00 02 00 00 09 00 38 52 02 00 00 01 01 00 00 00  ......8R........
   21820: 10 00 00 00 00 02 00 00 00 40 00 04 18 0B 25 A4  .........@....%.
   21830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21850: 00 02 00 00 09 00 39 52 02 00 00 01 01 00 00 00  ......9R........
   21860: 10 00 00 00 00 02 00 00 00 40 00 04 18 0E 25 A4  .........@....%.
   21870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21890: 00 02 00 00 09 00 3A 52 02 00 00 01 01 00 00 00  ......:R........
   218A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0E 25 A4  .........@....%.
   218B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   218C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   218D0: 00 02 00 00 09 00 3B 52 02 00 00 01 01 00 00 00  ......;R........
   218E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0B 25 A4  .........@....%.
   218F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21910: 00 02 00 00 09 00 3C 52 02 00 00 01 01 00 00 00  ......<R........
   21920: 10 00 00 00 00 02 00 00 00 40 00 04 98 0D 25 A4  .........@....%.
   21930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21950: 00 02 00 00 09 00 3D 52 02 00 00 01 01 00 00 00  ......=R........
   21960: 10 00 00 00 00 02 00 00 00 40 00 04 18 0C 25 A4  .........@....%.
   21970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21990: 00 02 00 00 09 00 3E 52 02 00 00 01 01 00 00 00  ......>R........
   219A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0C 25 A4  .........@....%.
   219B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   219C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   219D0: 00 02 00 00 09 00 3F 52 02 00 00 01 01 00 00 00  ......?R........
   219E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 0D 25 A4  .........@....%.
   219F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21A10: 00 02 00 00 09 00 40 52 02 00 00 01 01 00 00 00  ......@R........
   21A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 00 25 A4  .........@....%.
   21A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21A50: 00 02 00 00 09 00 41 52 02 00 00 01 01 00 00 00  ......AR........
   21A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 0A 25 A4  .........@....%.
   21A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21A90: 00 02 00 00 09 00 42 52 02 00 00 01 01 00 00 00  ......BR........
   21AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0A 25 A4  .........@....%.
   21AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21AD0: 00 02 00 00 09 00 43 52 02 00 00 01 01 00 00 00  ......CR........
   21AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 07 25 A4  .........@....%.
   21AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21B10: 00 02 00 00 09 00 44 52 02 00 00 01 01 00 00 00  ......DR........
   21B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 09 25 A4  .........@....%.
   21B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21B50: 00 02 00 00 09 00 45 52 02 00 00 01 01 00 00 00  ......ER........
   21B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 08 25 A4  .........@....%.
   21B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21B90: 00 02 00 00 09 00 46 52 02 00 00 01 01 00 00 00  ......FR........
   21BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 08 25 A4  .........@....%.
   21BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21BD0: 00 02 00 00 09 00 47 52 02 00 00 01 01 00 00 00  ......GR........
   21BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 09 25 A4  .........@....%.
   21BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21C10: 00 02 00 00 09 00 48 52 02 00 00 01 01 00 00 00  ......HR........
   21C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 01 25 A4  .........@....%.
   21C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21C50: 00 02 00 00 09 00 49 52 02 00 00 01 01 00 00 00  ......IR........
   21C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 07 25 A4  .........@....%.
   21C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21C90: 00 02 00 00 09 00 4A 52 02 00 00 01 01 00 00 00  ......JR........
   21CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 05 25 A4  .........@....%.
   21CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21CD0: 00 02 00 00 09 00 4B 52 02 00 00 01 01 00 00 00  ......KR........
   21CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 06 25 A4  .........@....%.
   21CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21D10: 00 02 00 00 09 00 4C 52 02 00 00 01 01 00 00 00  ......LR........
   21D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 06 25 A4  .........@....%.
   21D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21D50: 00 02 00 00 09 00 4D 52 02 00 00 01 01 00 00 00  ......MR........
   21D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 01 25 A4  .........@....%.
   21D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21D90: 00 02 00 00 09 00 4E 52 02 00 00 01 01 00 00 00  ......NR........
   21DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 04 25 A4  .........@....%.
   21DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21DD0: 00 02 00 00 09 00 4F 52 02 00 00 01 01 00 00 00  ......OR........
   21DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 05 25 A4  .........@....%.
   21DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21E10: 00 02 00 00 09 00 50 52 02 00 00 01 01 00 00 00  ......PR........
   21E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 02 25 A4  .........@....%.
   21E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21E50: 00 02 00 00 09 00 51 52 02 00 00 01 01 00 00 00  ......QR........
   21E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 04 25 A4  .........@....%.
   21E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21E90: 00 02 00 00 09 00 52 52 02 00 00 01 01 00 00 00  ......RR........
   21EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 02 25 A4  .........@....%.
   21EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21ED0: 00 02 00 00 09 00 53 52 02 00 00 01 01 00 00 00  ......SR........
   21EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 03 25 A4  .........@....%.
   21EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21F10: 00 02 00 00 09 00 54 52 02 00 00 01 01 00 00 00  ......TR........
   21F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 03 25 A4  .........@....%.
   21F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21F50: 00 02 00 00 09 00 55 52 02 00 00 01 01 00 00 00  ......UR........
   21F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 F0 24 A4  .........@....$.
   21F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21F90: 00 02 00 00 09 00 56 52 02 00 00 01 01 00 00 00  ......VR........
   21FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 FF 24 A4  .........@....$.
   21FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   21FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   21FD0: 00 02 00 00 09 00 57 52 02 00 00 01 01 00 00 00  ......WR........
   21FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FF 24 A4  .........@....$.
   21FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22010: 00 02 00 00 09 00 58 52 02 00 00 01 01 00 00 00  ......XR........
   22020: 10 00 00 00 00 02 00 00 00 40 00 04 18 FB 24 A4  .........@....$.
   22030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22050: 00 02 00 00 09 00 59 52 02 00 00 01 01 00 00 00  ......YR........
   22060: 10 00 00 00 00 02 00 00 00 40 00 04 18 FE 24 A4  .........@....$.
   22070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22090: 00 02 00 00 09 00 5A 52 02 00 00 01 01 00 00 00  ......ZR........
   220A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FE 24 A4  .........@....$.
   220B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   220C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   220D0: 00 02 00 00 09 00 5B 52 02 00 00 01 01 00 00 00  ......[R........
   220E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FB 24 A4  .........@....$.
   220F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22110: 00 02 00 00 09 00 5C 52 02 00 00 01 01 00 00 00  ......\R........
   22120: 10 00 00 00 00 02 00 00 00 40 00 04 98 FD 24 A4  .........@....$.
   22130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22150: 00 02 00 00 09 00 5D 52 02 00 00 01 01 00 00 00  ......]R........
   22160: 10 00 00 00 00 02 00 00 00 40 00 04 18 FC 24 A4  .........@....$.
   22170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22190: 00 02 00 00 09 00 5E 52 02 00 00 01 01 00 00 00  ......^R........
   221A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FC 24 A4  .........@....$.
   221B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   221C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   221D0: 00 02 00 00 09 00 5F 52 02 00 00 01 01 00 00 00  ......_R........
   221E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 FD 24 A4  .........@....$.
   221F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22210: 00 02 00 00 09 00 60 52 02 00 00 01 01 00 00 00  ......`R........
   22220: 10 00 00 00 00 02 00 00 00 40 00 04 98 F0 24 A4  .........@....$.
   22230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22250: 00 02 00 00 09 00 61 52 02 00 00 01 01 00 00 00  ......aR........
   22260: 10 00 00 00 00 02 00 00 00 40 00 04 18 FA 24 A4  .........@....$.
   22270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22290: 00 02 00 00 09 00 62 52 02 00 00 01 01 00 00 00  ......bR........
   222A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FA 24 A4  .........@....$.
   222B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   222C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   222D0: 00 02 00 00 09 00 63 52 02 00 00 01 01 00 00 00  ......cR........
   222E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F7 24 A4  .........@....$.
   222F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22310: 00 02 00 00 09 00 64 52 02 00 00 01 01 00 00 00  ......dR........
   22320: 10 00 00 00 00 02 00 00 00 40 00 04 98 F9 24 A4  .........@....$.
   22330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22350: 00 02 00 00 09 00 65 52 02 00 00 01 01 00 00 00  ......eR........
   22360: 10 00 00 00 00 02 00 00 00 40 00 04 18 F8 24 A4  .........@....$.
   22370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22390: 00 02 00 00 09 00 66 52 02 00 00 01 01 00 00 00  ......fR........
   223A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F8 24 A4  .........@....$.
   223B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   223C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   223D0: 00 02 00 00 09 00 67 52 02 00 00 01 01 00 00 00  ......gR........
   223E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F9 24 A4  .........@....$.
   223F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22410: 00 02 00 00 09 00 68 52 02 00 00 01 01 00 00 00  ......hR........
   22420: 10 00 00 00 00 02 00 00 00 40 00 04 18 F1 24 A4  .........@....$.
   22430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22450: 00 02 00 00 09 00 69 52 02 00 00 01 01 00 00 00  ......iR........
   22460: 10 00 00 00 00 02 00 00 00 40 00 04 18 F7 24 A4  .........@....$.
   22470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22490: 00 02 00 00 09 00 6A 52 02 00 00 01 01 00 00 00  ......jR........
   224A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F5 24 A4  .........@....$.
   224B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   224C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   224D0: 00 02 00 00 09 00 6B 52 02 00 00 01 01 00 00 00  ......kR........
   224E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F6 24 A4  .........@....$.
   224F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22510: 00 02 00 00 09 00 6C 52 02 00 00 01 01 00 00 00  ......lR........
   22520: 10 00 00 00 00 02 00 00 00 40 00 04 98 F6 24 A4  .........@....$.
   22530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22550: 00 02 00 00 09 00 6D 52 02 00 00 01 01 00 00 00  ......mR........
   22560: 10 00 00 00 00 02 00 00 00 40 00 04 98 F1 24 A4  .........@....$.
   22570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22590: 00 02 00 00 09 00 6E 52 02 00 00 01 01 00 00 00  ......nR........
   225A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F4 24 A4  .........@....$.
   225B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   225C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   225D0: 00 02 00 00 09 00 6F 52 02 00 00 01 01 00 00 00  ......oR........
   225E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F5 24 A4  .........@....$.
   225F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22610: 00 02 00 00 09 00 70 52 02 00 00 01 01 00 00 00  ......pR........
   22620: 10 00 00 00 00 02 00 00 00 40 00 04 18 F2 24 A4  .........@....$.
   22630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22650: 00 02 00 00 09 00 71 52 02 00 00 01 01 00 00 00  ......qR........
   22660: 10 00 00 00 00 02 00 00 00 40 00 04 18 F4 24 A4  .........@....$.
   22670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22690: 00 02 00 00 09 00 72 52 02 00 00 01 01 00 00 00  ......rR........
   226A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F2 24 A4  .........@....$.
   226B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   226C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   226D0: 00 02 00 00 09 00 73 52 02 00 00 01 01 00 00 00  ......sR........
   226E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F3 24 A4  .........@....$.
   226F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22710: 00 02 00 00 09 00 74 52 02 00 00 01 01 00 00 00  ......tR........
   22720: 10 00 00 00 00 02 00 00 00 40 00 04 98 F3 24 A4  .........@....$.
   22730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22750: 00 02 00 00 09 00 75 52 02 00 00 01 01 00 00 00  ......uR........
   22760: 10 00 00 00 00 02 00 00 00 40 00 04 18 E0 24 A4  .........@....$.
   22770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22790: 00 02 00 00 09 00 76 52 02 00 00 01 01 00 00 00  ......vR........
   227A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 EF 24 A4  .........@....$.
   227B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   227C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   227D0: 00 02 00 00 09 00 77 52 02 00 00 01 01 00 00 00  ......wR........
   227E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EF 24 A4  .........@....$.
   227F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22810: 00 02 00 00 09 00 78 52 02 00 00 01 01 00 00 00  ......xR........
   22820: 10 00 00 00 00 02 00 00 00 40 00 04 18 EB 24 A4  .........@....$.
   22830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22850: 00 02 00 00 09 00 79 52 02 00 00 01 01 00 00 00  ......yR........
   22860: 10 00 00 00 00 02 00 00 00 40 00 04 18 EE 24 A4  .........@....$.
   22870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22890: 00 02 00 00 09 00 7A 52 02 00 00 01 01 00 00 00  ......zR........
   228A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EE 24 A4  .........@....$.
   228B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   228C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   228D0: 00 02 00 00 09 00 7B 52 02 00 00 01 01 00 00 00  ......{R........
   228E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EB 24 A4  .........@....$.
   228F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22910: 00 02 00 00 09 00 7C 52 02 00 00 01 01 00 00 00  ......|R........
   22920: 10 00 00 00 00 02 00 00 00 40 00 04 98 ED 24 A4  .........@....$.
   22930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22950: 00 02 00 00 09 00 7D 52 02 00 00 01 01 00 00 00  ......}R........
   22960: 10 00 00 00 00 02 00 00 00 40 00 04 18 EC 24 A4  .........@....$.
   22970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22990: 00 02 00 00 09 00 7E 52 02 00 00 01 01 00 00 00  ......~R........
   229A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EC 24 A4  .........@....$.
   229B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   229C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   229D0: 00 02 00 00 09 00 7F 52 02 00 00 01 01 00 00 00  .......R........
   229E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 ED 24 A4  .........@....$.
   229F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22A10: 00 02 00 00 09 00 80 52 02 00 00 01 01 00 00 00  .......R........
   22A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E0 24 A4  .........@....$.
   22A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22A50: 00 02 00 00 09 00 81 52 02 00 00 01 01 00 00 00  .......R........
   22A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 EA 24 A4  .........@....$.
   22A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22A90: 00 02 00 00 09 00 82 52 02 00 00 01 01 00 00 00  .......R........
   22AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EA 24 A4  .........@....$.
   22AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22AD0: 00 02 00 00 09 00 83 52 02 00 00 01 01 00 00 00  .......R........
   22AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E7 24 A4  .........@....$.
   22AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22B10: 00 02 00 00 09 00 84 52 02 00 00 01 01 00 00 00  .......R........
   22B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E9 24 A4  .........@....$.
   22B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22B50: 00 02 00 00 09 00 85 52 02 00 00 01 01 00 00 00  .......R........
   22B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E8 24 A4  .........@....$.
   22B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22B90: 00 02 00 00 09 00 86 52 02 00 00 01 01 00 00 00  .......R........
   22BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E8 24 A4  .........@....$.
   22BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22BD0: 00 02 00 00 09 00 87 52 02 00 00 01 01 00 00 00  .......R........
   22BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E9 24 A4  .........@....$.
   22BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22C10: 00 02 00 00 09 00 88 52 02 00 00 01 01 00 00 00  .......R........
   22C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 E1 24 A4  .........@....$.
   22C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22C50: 00 02 00 00 09 00 89 52 02 00 00 01 01 00 00 00  .......R........
   22C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E7 24 A4  .........@....$.
   22C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22C90: 00 02 00 00 09 00 8A 52 02 00 00 01 01 00 00 00  .......R........
   22CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E5 24 A4  .........@....$.
   22CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22CD0: 00 02 00 00 09 00 8B 52 02 00 00 01 01 00 00 00  .......R........
   22CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E6 24 A4  .........@....$.
   22CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22D10: 00 02 00 00 09 00 8C 52 02 00 00 01 01 00 00 00  .......R........
   22D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E6 24 A4  .........@....$.
   22D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22D50: 00 02 00 00 09 00 8D 52 02 00 00 01 01 00 00 00  .......R........
   22D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 E1 24 A4  .........@....$.
   22D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22D90: 00 02 00 00 09 00 8E 52 02 00 00 01 01 00 00 00  .......R........
   22DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E4 24 A4  .........@....$.
   22DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22DD0: 00 02 00 00 09 00 8F 52 02 00 00 01 01 00 00 00  .......R........
   22DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E5 24 A4  .........@....$.
   22DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22E10: 00 02 00 00 09 00 90 52 02 00 00 01 01 00 00 00  .......R........
   22E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 E2 24 A4  .........@....$.
   22E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22E50: 00 02 00 00 09 00 91 52 02 00 00 01 01 00 00 00  .......R........
   22E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E4 24 A4  .........@....$.
   22E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22E90: 00 02 00 00 09 00 92 52 02 00 00 01 01 00 00 00  .......R........
   22EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E2 24 A4  .........@....$.
   22EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22ED0: 00 02 00 00 09 00 93 52 02 00 00 01 01 00 00 00  .......R........
   22EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E3 24 A4  .........@....$.
   22EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22F10: 00 02 00 00 09 00 94 52 02 00 00 01 01 00 00 00  .......R........
   22F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E3 24 A4  .........@....$.
   22F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22F50: 00 02 00 00 09 00 95 52 02 00 00 01 01 00 00 00  .......R........
   22F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 D0 24 A4  .........@....$.
   22F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22F90: 00 02 00 00 09 00 96 52 02 00 00 01 01 00 00 00  .......R........
   22FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DF 24 A4  .........@....$.
   22FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   22FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   22FD0: 00 02 00 00 09 00 97 52 02 00 00 01 01 00 00 00  .......R........
   22FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DF 24 A4  .........@....$.
   22FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23010: 00 02 00 00 09 00 98 52 02 00 00 01 01 00 00 00  .......R........
   23020: 10 00 00 00 00 02 00 00 00 40 00 04 18 DB 24 A4  .........@....$.
   23030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23050: 00 02 00 00 09 00 99 52 02 00 00 01 01 00 00 00  .......R........
   23060: 10 00 00 00 00 02 00 00 00 40 00 04 18 DE 24 A4  .........@....$.
   23070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23090: 00 02 00 00 09 00 9A 52 02 00 00 01 01 00 00 00  .......R........
   230A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DE 24 A4  .........@....$.
   230B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   230C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   230D0: 00 02 00 00 09 00 9B 52 02 00 00 01 01 00 00 00  .......R........
   230E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DB 24 A4  .........@....$.
   230F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23110: 00 02 00 00 09 00 9C 52 02 00 00 01 01 00 00 00  .......R........
   23120: 10 00 00 00 00 02 00 00 00 40 00 04 98 DD 24 A4  .........@....$.
   23130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23150: 00 02 00 00 09 00 9D 52 02 00 00 01 01 00 00 00  .......R........
   23160: 10 00 00 00 00 02 00 00 00 40 00 04 18 DC 24 A4  .........@....$.
   23170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23190: 00 02 00 00 09 00 9E 52 02 00 00 01 01 00 00 00  .......R........
   231A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DC 24 A4  .........@....$.
   231B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   231C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   231D0: 00 02 00 00 09 00 9F 52 02 00 00 01 01 00 00 00  .......R........
   231E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DD 24 A4  .........@....$.
   231F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23210: 00 02 00 00 09 00 A0 52 02 00 00 01 01 00 00 00  .......R........
   23220: 10 00 00 00 00 02 00 00 00 40 00 04 98 D0 24 A4  .........@....$.
   23230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23250: 00 02 00 00 09 00 A1 52 02 00 00 01 01 00 00 00  .......R........
   23260: 10 00 00 00 00 02 00 00 00 40 00 04 18 DA 24 A4  .........@....$.
   23270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23290: 00 02 00 00 09 00 A2 52 02 00 00 01 01 00 00 00  .......R........
   232A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DA 24 A4  .........@....$.
   232B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   232C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   232D0: 00 02 00 00 09 00 A3 52 02 00 00 01 01 00 00 00  .......R........
   232E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D7 24 A4  .........@....$.
   232F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23310: 00 02 00 00 09 00 A4 52 02 00 00 01 01 00 00 00  .......R........
   23320: 10 00 00 00 00 02 00 00 00 40 00 04 98 D9 24 A4  .........@....$.
   23330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23350: 00 02 00 00 09 00 A5 52 02 00 00 01 01 00 00 00  .......R........
   23360: 10 00 00 00 00 02 00 00 00 40 00 04 18 D8 24 A4  .........@....$.
   23370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23390: 00 02 00 00 09 00 A6 52 02 00 00 01 01 00 00 00  .......R........
   233A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D8 24 A4  .........@....$.
   233B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   233C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   233D0: 00 02 00 00 09 00 A7 52 02 00 00 01 01 00 00 00  .......R........
   233E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D9 24 A4  .........@....$.
   233F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23410: 00 02 00 00 09 00 A8 52 02 00 00 01 01 00 00 00  .......R........
   23420: 10 00 00 00 00 02 00 00 00 40 00 04 18 D1 24 A4  .........@....$.
   23430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23450: 00 02 00 00 09 00 A9 52 02 00 00 01 01 00 00 00  .......R........
   23460: 10 00 00 00 00 02 00 00 00 40 00 04 18 D7 24 A4  .........@....$.
   23470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23490: 00 02 00 00 09 00 AA 52 02 00 00 01 01 00 00 00  .......R........
   234A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D5 24 A4  .........@....$.
   234B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   234C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   234D0: 00 02 00 00 09 00 AB 52 02 00 00 01 01 00 00 00  .......R........
   234E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D6 24 A4  .........@....$.
   234F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23510: 00 02 00 00 09 00 AC 52 02 00 00 01 01 00 00 00  .......R........
   23520: 10 00 00 00 00 02 00 00 00 40 00 04 98 D6 24 A4  .........@....$.
   23530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23550: 00 02 00 00 09 00 AD 52 02 00 00 01 01 00 00 00  .......R........
   23560: 10 00 00 00 00 02 00 00 00 40 00 04 98 D1 24 A4  .........@....$.
   23570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23590: 00 02 00 00 09 00 AE 52 02 00 00 01 01 00 00 00  .......R........
   235A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D4 24 A4  .........@....$.
   235B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   235C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   235D0: 00 02 00 00 09 00 AF 52 02 00 00 01 01 00 00 00  .......R........
   235E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D5 24 A4  .........@....$.
   235F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23610: 00 02 00 00 09 00 B0 52 02 00 00 01 01 00 00 00  .......R........
   23620: 10 00 00 00 00 02 00 00 00 40 00 04 18 D2 24 A4  .........@....$.
   23630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23650: 00 02 00 00 09 00 B1 52 02 00 00 01 01 00 00 00  .......R........
   23660: 10 00 00 00 00 02 00 00 00 40 00 04 18 D4 24 A4  .........@....$.
   23670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23690: 00 02 00 00 09 00 B2 52 02 00 00 01 01 00 00 00  .......R........
   236A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D2 24 A4  .........@....$.
   236B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   236C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   236D0: 00 02 00 00 09 00 B3 52 02 00 00 01 01 00 00 00  .......R........
   236E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D3 24 A4  .........@....$.
   236F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23710: 00 02 00 00 09 00 B4 52 02 00 00 01 01 00 00 00  .......R........
   23720: 10 00 00 00 00 02 00 00 00 40 00 04 98 D3 24 A4  .........@....$.
   23730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23750: 00 02 00 00 09 00 B5 52 02 00 00 01 01 00 00 00  .......R........
   23760: 10 00 00 00 00 02 00 00 00 40 00 04 18 C0 24 A4  .........@....$.
   23770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23790: 00 02 00 00 09 00 B6 52 02 00 00 01 01 00 00 00  .......R........
   237A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CF 24 A4  .........@....$.
   237B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   237C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   237D0: 00 02 00 00 09 00 B7 52 02 00 00 01 01 00 00 00  .......R........
   237E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CF 24 A4  .........@....$.
   237F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23810: 00 02 00 00 09 00 B8 52 02 00 00 01 01 00 00 00  .......R........
   23820: 10 00 00 00 00 02 00 00 00 40 00 04 18 CB 24 A4  .........@....$.
   23830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23850: 00 02 00 00 09 00 B9 52 02 00 00 01 01 00 00 00  .......R........
   23860: 10 00 00 00 00 02 00 00 00 40 00 04 18 CE 24 A4  .........@....$.
   23870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23890: 00 02 00 00 09 00 BA 52 02 00 00 01 01 00 00 00  .......R........
   238A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CE 24 A4  .........@....$.
   238B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   238C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   238D0: 00 02 00 00 09 00 BB 52 02 00 00 01 01 00 00 00  .......R........
   238E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CB 24 A4  .........@....$.
   238F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23910: 00 02 00 00 09 00 BC 52 02 00 00 01 01 00 00 00  .......R........
   23920: 10 00 00 00 00 02 00 00 00 40 00 04 98 CD 24 A4  .........@....$.
   23930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23950: 00 02 00 00 09 00 BD 52 02 00 00 01 01 00 00 00  .......R........
   23960: 10 00 00 00 00 02 00 00 00 40 00 04 18 CC 24 A4  .........@....$.
   23970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23990: 00 02 00 00 09 00 BE 52 02 00 00 01 01 00 00 00  .......R........
   239A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CC 24 A4  .........@....$.
   239B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   239C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   239D0: 00 02 00 00 09 00 BF 52 02 00 00 01 01 00 00 00  .......R........
   239E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CD 24 A4  .........@....$.
   239F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23A10: 00 02 00 00 09 00 C0 52 02 00 00 01 01 00 00 00  .......R........
   23A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C0 24 A4  .........@....$.
   23A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23A50: 00 02 00 00 09 00 C1 52 02 00 00 01 01 00 00 00  .......R........
   23A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 CA 24 A4  .........@....$.
   23A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23A90: 00 02 00 00 09 00 C2 52 02 00 00 01 01 00 00 00  .......R........
   23AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CA 24 A4  .........@....$.
   23AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23AD0: 00 02 00 00 09 00 C3 52 02 00 00 01 01 00 00 00  .......R........
   23AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C7 24 A4  .........@....$.
   23AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23B10: 00 02 00 00 09 00 C4 52 02 00 00 01 01 00 00 00  .......R........
   23B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C9 24 A4  .........@....$.
   23B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23B50: 00 02 00 00 09 00 C5 52 02 00 00 01 01 00 00 00  .......R........
   23B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C8 24 A4  .........@....$.
   23B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23B90: 00 02 00 00 09 00 C6 52 02 00 00 01 01 00 00 00  .......R........
   23BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C8 24 A4  .........@....$.
   23BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23BD0: 00 02 00 00 09 00 C7 52 02 00 00 01 01 00 00 00  .......R........
   23BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C9 24 A4  .........@....$.
   23BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23C10: 00 02 00 00 09 00 C8 52 02 00 00 01 01 00 00 00  .......R........
   23C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 C1 24 A4  .........@....$.
   23C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23C50: 00 02 00 00 09 00 C9 52 02 00 00 01 01 00 00 00  .......R........
   23C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C7 24 A4  .........@....$.
   23C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23C90: 00 02 00 00 09 00 CA 52 02 00 00 01 01 00 00 00  .......R........
   23CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C5 24 A4  .........@....$.
   23CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23CD0: 00 02 00 00 09 00 CB 52 02 00 00 01 01 00 00 00  .......R........
   23CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C6 24 A4  .........@....$.
   23CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23D10: 00 02 00 00 09 00 CC 52 02 00 00 01 01 00 00 00  .......R........
   23D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C6 24 A4  .........@....$.
   23D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23D50: 00 02 00 00 09 00 CD 52 02 00 00 01 01 00 00 00  .......R........
   23D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 C1 24 A4  .........@....$.
   23D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23D90: 00 02 00 00 09 00 CE 52 02 00 00 01 01 00 00 00  .......R........
   23DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C4 24 A4  .........@....$.
   23DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23DD0: 00 02 00 00 09 00 CF 52 02 00 00 01 01 00 00 00  .......R........
   23DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C5 24 A4  .........@....$.
   23DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23E10: 00 02 00 00 09 00 D0 52 02 00 00 01 01 00 00 00  .......R........
   23E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 C2 24 A4  .........@....$.
   23E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23E50: 00 02 00 00 09 00 D1 52 02 00 00 01 01 00 00 00  .......R........
   23E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C4 24 A4  .........@....$.
   23E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23E90: 00 02 00 00 09 00 D2 52 02 00 00 01 01 00 00 00  .......R........
   23EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C2 24 A4  .........@....$.
   23EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23ED0: 00 02 00 00 09 00 D3 52 02 00 00 01 01 00 00 00  .......R........
   23EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C3 24 A4  .........@....$.
   23EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23F10: 00 02 00 00 09 00 D4 52 02 00 00 01 01 00 00 00  .......R........
   23F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C3 24 A4  .........@....$.
   23F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23F50: 00 02 00 00 09 00 D5 52 02 00 00 01 01 00 00 00  .......R........
   23F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 B0 24 A4  .........@....$.
   23F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23F90: 00 02 00 00 09 00 D6 52 02 00 00 01 01 00 00 00  .......R........
   23FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BF 24 A4  .........@....$.
   23FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   23FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   23FD0: 00 02 00 00 09 00 D7 52 02 00 00 01 01 00 00 00  .......R........
   23FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BF 24 A4  .........@....$.
   23FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24010: 00 02 00 00 09 00 D8 52 02 00 00 01 01 00 00 00  .......R........
   24020: 10 00 00 00 00 02 00 00 00 40 00 04 18 BB 24 A4  .........@....$.
   24030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24050: 00 02 00 00 09 00 D9 52 02 00 00 01 01 00 00 00  .......R........
   24060: 10 00 00 00 00 02 00 00 00 40 00 04 18 BE 24 A4  .........@....$.
   24070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24090: 00 02 00 00 09 00 DA 52 02 00 00 01 01 00 00 00  .......R........
   240A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BE 24 A4  .........@....$.
   240B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   240C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   240D0: 00 02 00 00 09 00 DB 52 02 00 00 01 01 00 00 00  .......R........
   240E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BB 24 A4  .........@....$.
   240F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24110: 00 02 00 00 09 00 DC 52 02 00 00 01 01 00 00 00  .......R........
   24120: 10 00 00 00 00 02 00 00 00 40 00 04 98 BD 24 A4  .........@....$.
   24130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24150: 00 02 00 00 09 00 DD 52 02 00 00 01 01 00 00 00  .......R........
   24160: 10 00 00 00 00 02 00 00 00 40 00 04 18 BC 24 A4  .........@....$.
   24170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24190: 00 02 00 00 09 00 DE 52 02 00 00 01 01 00 00 00  .......R........
   241A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BC 24 A4  .........@....$.
   241B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   241C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   241D0: 00 02 00 00 09 00 DF 52 02 00 00 01 01 00 00 00  .......R........
   241E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BD 24 A4  .........@....$.
   241F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24210: 00 02 00 00 09 00 E0 52 02 00 00 01 01 00 00 00  .......R........
   24220: 10 00 00 00 00 02 00 00 00 40 00 04 98 B0 24 A4  .........@....$.
   24230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24250: 00 02 00 00 09 00 E1 52 02 00 00 01 01 00 00 00  .......R........
   24260: 10 00 00 00 00 02 00 00 00 40 00 04 18 BA 24 A4  .........@....$.
   24270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24290: 00 02 00 00 09 00 E2 52 02 00 00 01 01 00 00 00  .......R........
   242A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BA 24 A4  .........@....$.
   242B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   242C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   242D0: 00 02 00 00 09 00 E3 52 02 00 00 01 01 00 00 00  .......R........
   242E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B7 24 A4  .........@....$.
   242F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24310: 00 02 00 00 09 00 E4 52 02 00 00 01 01 00 00 00  .......R........
   24320: 10 00 00 00 00 02 00 00 00 40 00 04 98 B9 24 A4  .........@....$.
   24330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24350: 00 02 00 00 09 00 E5 52 02 00 00 01 01 00 00 00  .......R........
   24360: 10 00 00 00 00 02 00 00 00 40 00 04 18 B8 24 A4  .........@....$.
   24370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24390: 00 02 00 00 09 00 E6 52 02 00 00 01 01 00 00 00  .......R........
   243A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B8 24 A4  .........@....$.
   243B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   243C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   243D0: 00 02 00 00 09 00 E7 52 02 00 00 01 01 00 00 00  .......R........
   243E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B9 24 A4  .........@....$.
   243F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24410: 00 02 00 00 09 00 E8 52 02 00 00 01 01 00 00 00  .......R........
   24420: 10 00 00 00 00 02 00 00 00 40 00 04 18 B1 24 A4  .........@....$.
   24430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24450: 00 02 00 00 09 00 E9 52 02 00 00 01 01 00 00 00  .......R........
   24460: 10 00 00 00 00 02 00 00 00 40 00 04 18 B7 24 A4  .........@....$.
   24470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24490: 00 02 00 00 09 00 EA 52 02 00 00 01 01 00 00 00  .......R........
   244A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B5 24 A4  .........@....$.
   244B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   244C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   244D0: 00 02 00 00 09 00 EB 52 02 00 00 01 01 00 00 00  .......R........
   244E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B6 24 A4  .........@....$.
   244F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24510: 00 02 00 00 09 00 EC 52 02 00 00 01 01 00 00 00  .......R........
   24520: 10 00 00 00 00 02 00 00 00 40 00 04 98 B6 24 A4  .........@....$.
   24530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24550: 00 02 00 00 09 00 ED 52 02 00 00 01 01 00 00 00  .......R........
   24560: 10 00 00 00 00 02 00 00 00 40 00 04 98 B1 24 A4  .........@....$.
   24570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24590: 00 02 00 00 09 00 EE 52 02 00 00 01 01 00 00 00  .......R........
   245A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B4 24 A4  .........@....$.
   245B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   245C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   245D0: 00 02 00 00 09 00 EF 52 02 00 00 01 01 00 00 00  .......R........
   245E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B5 24 A4  .........@....$.
   245F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24610: 00 02 00 00 09 00 F0 52 02 00 00 01 01 00 00 00  .......R........
   24620: 10 00 00 00 00 02 00 00 00 40 00 04 18 B2 24 A4  .........@....$.
   24630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24650: 00 02 00 00 09 00 F1 52 02 00 00 01 01 00 00 00  .......R........
   24660: 10 00 00 00 00 02 00 00 00 40 00 04 18 B4 24 A4  .........@....$.
   24670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24690: 00 02 00 00 09 00 F2 52 02 00 00 01 01 00 00 00  .......R........
   246A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B2 24 A4  .........@....$.
   246B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   246C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   246D0: 00 02 00 00 09 00 F3 52 02 00 00 01 01 00 00 00  .......R........
   246E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B3 24 A4  .........@....$.
   246F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24710: 00 02 00 00 09 00 F4 52 02 00 00 01 01 00 00 00  .......R........
   24720: 10 00 00 00 00 02 00 00 00 40 00 04 98 B3 24 A4  .........@....$.
   24730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24750: 00 02 00 00 09 00 F5 52 02 00 00 01 01 00 00 00  .......R........
   24760: 10 00 00 00 00 02 00 00 00 40 00 04 18 A0 24 A4  .........@....$.
   24770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24790: 00 02 00 00 09 00 F6 52 02 00 00 01 01 00 00 00  .......R........
   247A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AF 24 A4  .........@....$.
   247B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   247C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   247D0: 00 02 00 00 09 00 F7 52 02 00 00 01 01 00 00 00  .......R........
   247E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AF 24 A4  .........@....$.
   247F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24810: 00 02 00 00 09 00 F8 52 02 00 00 01 01 00 00 00  .......R........
   24820: 10 00 00 00 00 02 00 00 00 40 00 04 18 AB 24 A4  .........@....$.
   24830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24850: 00 02 00 00 09 00 F9 52 02 00 00 01 01 00 00 00  .......R........
   24860: 10 00 00 00 00 02 00 00 00 40 00 04 18 AE 24 A4  .........@....$.
   24870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24890: 00 02 00 00 09 00 FA 52 02 00 00 01 01 00 00 00  .......R........
   248A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AE 24 A4  .........@....$.
   248B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   248C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   248D0: 00 02 00 00 09 00 FB 52 02 00 00 01 01 00 00 00  .......R........
   248E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AB 24 A4  .........@....$.
   248F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24910: 00 02 00 00 09 00 FC 52 02 00 00 01 01 00 00 00  .......R........
   24920: 10 00 00 00 00 02 00 00 00 40 00 04 98 AD 24 A4  .........@....$.
   24930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24950: 00 02 00 00 09 00 FD 52 02 00 00 01 01 00 00 00  .......R........
   24960: 10 00 00 00 00 02 00 00 00 40 00 04 18 AC 24 A4  .........@....$.
   24970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24990: 00 02 00 00 09 00 FE 52 02 00 00 01 01 00 00 00  .......R........
   249A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AC 24 A4  .........@....$.
   249B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   249C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   249D0: 00 02 00 00 09 00 FF 52 02 00 00 01 01 00 00 00  .......R........
   249E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AD 24 A4  .........@....$.
   249F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24A10: 00 02 00 00 09 00 00 53 02 00 00 01 01 00 00 00  .......S........
   24A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A0 24 A4  .........@....$.
   24A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24A50: 00 02 00 00 09 00 01 53 02 00 00 01 01 00 00 00  .......S........
   24A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 AA 24 A4  .........@....$.
   24A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24A90: 00 02 00 00 09 00 02 53 02 00 00 01 01 00 00 00  .......S........
   24AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AA 24 A4  .........@....$.
   24AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24AD0: 00 02 00 00 09 00 03 53 02 00 00 01 01 00 00 00  .......S........
   24AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A7 24 A4  .........@....$.
   24AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24B10: 00 02 00 00 09 00 04 53 02 00 00 01 01 00 00 00  .......S........
   24B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A9 24 A4  .........@....$.
   24B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24B50: 00 02 00 00 09 00 05 53 02 00 00 01 01 00 00 00  .......S........
   24B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A8 24 A4  .........@....$.
   24B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24B90: 00 02 00 00 09 00 06 53 02 00 00 01 01 00 00 00  .......S........
   24BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A8 24 A4  .........@....$.
   24BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24BD0: 00 02 00 00 09 00 07 53 02 00 00 01 01 00 00 00  .......S........
   24BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A9 24 A4  .........@....$.
   24BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24C10: 00 02 00 00 09 00 08 53 02 00 00 01 01 00 00 00  .......S........
   24C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 A1 24 A4  .........@....$.
   24C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24C50: 00 02 00 00 09 00 09 53 02 00 00 01 01 00 00 00  .......S........
   24C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A7 24 A4  .........@....$.
   24C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24C90: 00 02 00 00 09 00 0A 53 02 00 00 01 01 00 00 00  .......S........
   24CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A5 24 A4  .........@....$.
   24CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24CD0: 00 02 00 00 09 00 0B 53 02 00 00 01 01 00 00 00  .......S........
   24CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A6 24 A4  .........@....$.
   24CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24D10: 00 02 00 00 09 00 0C 53 02 00 00 01 01 00 00 00  .......S........
   24D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A6 24 A4  .........@....$.
   24D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24D50: 00 02 00 00 09 00 0D 53 02 00 00 01 01 00 00 00  .......S........
   24D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 A1 24 A4  .........@....$.
   24D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24D90: 00 02 00 00 09 00 0E 53 02 00 00 01 01 00 00 00  .......S........
   24DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A4 24 A4  .........@....$.
   24DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24DD0: 00 02 00 00 09 00 0F 53 02 00 00 01 01 00 00 00  .......S........
   24DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A5 24 A4  .........@....$.
   24DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24E10: 00 02 00 00 09 00 10 53 02 00 00 01 01 00 00 00  .......S........
   24E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 A2 24 A4  .........@....$.
   24E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24E50: 00 02 00 00 09 00 11 53 02 00 00 01 01 00 00 00  .......S........
   24E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A4 24 A4  .........@....$.
   24E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24E90: 00 02 00 00 09 00 12 53 02 00 00 01 01 00 00 00  .......S........
   24EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A2 24 A4  .........@....$.
   24EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24ED0: 00 02 00 00 09 00 13 53 02 00 00 01 01 00 00 00  .......S........
   24EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A3 24 A4  .........@....$.
   24EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24F10: 00 02 00 00 09 00 14 53 02 00 00 01 01 00 00 00  .......S........
   24F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A3 24 A4  .........@....$.
   24F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24F50: 00 02 00 00 09 00 15 53 02 00 00 01 01 00 00 00  .......S........
   24F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 90 24 A4  .........@....$.
   24F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24F90: 00 02 00 00 09 00 16 53 02 00 00 01 01 00 00 00  .......S........
   24FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9F 24 A4  .........@....$.
   24FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   24FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   24FD0: 00 02 00 00 09 00 17 53 02 00 00 01 01 00 00 00  .......S........
   24FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9F 24 A4  .........@....$.
   24FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25010: 00 02 00 00 09 00 18 53 02 00 00 01 01 00 00 00  .......S........
   25020: 10 00 00 00 00 02 00 00 00 40 00 04 18 9B 24 A4  .........@....$.
   25030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25050: 00 02 00 00 09 00 19 53 02 00 00 01 01 00 00 00  .......S........
   25060: 10 00 00 00 00 02 00 00 00 40 00 04 18 9E 24 A4  .........@....$.
   25070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25090: 00 02 00 00 09 00 1A 53 02 00 00 01 01 00 00 00  .......S........
   250A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9E 24 A4  .........@....$.
   250B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   250C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   250D0: 00 02 00 00 09 00 1B 53 02 00 00 01 01 00 00 00  .......S........
   250E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9B 24 A4  .........@....$.
   250F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25110: 00 02 00 00 09 00 1C 53 02 00 00 01 01 00 00 00  .......S........
   25120: 10 00 00 00 00 02 00 00 00 40 00 04 98 9D 24 A4  .........@....$.
   25130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25150: 00 02 00 00 09 00 1D 53 02 00 00 01 01 00 00 00  .......S........
   25160: 10 00 00 00 00 02 00 00 00 40 00 04 18 9C 24 A4  .........@....$.
   25170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25190: 00 02 00 00 09 00 1E 53 02 00 00 01 01 00 00 00  .......S........
   251A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9C 24 A4  .........@....$.
   251B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   251C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   251D0: 00 02 00 00 09 00 1F 53 02 00 00 01 01 00 00 00  .......S........
   251E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9D 24 A4  .........@....$.
   251F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25210: 00 02 00 00 09 00 20 53 02 00 00 01 01 00 00 00  ...... S........
   25220: 10 00 00 00 00 02 00 00 00 40 00 04 98 90 24 A4  .........@....$.
   25230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25250: 00 02 00 00 09 00 21 53 02 00 00 01 01 00 00 00  ......!S........
   25260: 10 00 00 00 00 02 00 00 00 40 00 04 18 9A 24 A4  .........@....$.
   25270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25290: 00 02 00 00 09 00 22 53 02 00 00 01 01 00 00 00  ......"S........
   252A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9A 24 A4  .........@....$.
   252B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   252C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   252D0: 00 02 00 00 09 00 23 53 02 00 00 01 01 00 00 00  ......#S........
   252E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 97 24 A4  .........@....$.
   252F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25310: 00 02 00 00 09 00 24 53 02 00 00 01 01 00 00 00  ......$S........
   25320: 10 00 00 00 00 02 00 00 00 40 00 04 98 99 24 A4  .........@....$.
   25330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25350: 00 02 00 00 09 00 25 53 02 00 00 01 01 00 00 00  ......%S........
   25360: 10 00 00 00 00 02 00 00 00 40 00 04 18 98 24 A4  .........@....$.
   25370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25390: 00 02 00 00 09 00 26 53 02 00 00 01 01 00 00 00  ......&S........
   253A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 98 24 A4  .........@....$.
   253B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   253C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   253D0: 00 02 00 00 09 00 27 53 02 00 00 01 01 00 00 00  ......'S........
   253E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 99 24 A4  .........@....$.
   253F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25410: 00 02 00 00 09 00 28 53 02 00 00 01 01 00 00 00  ......(S........
   25420: 10 00 00 00 00 02 00 00 00 40 00 04 18 91 24 A4  .........@....$.
   25430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25450: 00 02 00 00 09 00 29 53 02 00 00 01 01 00 00 00  ......)S........
   25460: 10 00 00 00 00 02 00 00 00 40 00 04 18 97 24 A4  .........@....$.
   25470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25490: 00 02 00 00 09 00 2A 53 02 00 00 01 01 00 00 00  ......*S........
   254A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 95 24 A4  .........@....$.
   254B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   254C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   254D0: 00 02 00 00 09 00 2B 53 02 00 00 01 01 00 00 00  ......+S........
   254E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 96 24 A4  .........@....$.
   254F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25510: 00 02 00 00 09 00 2C 53 02 00 00 01 01 00 00 00  ......,S........
   25520: 10 00 00 00 00 02 00 00 00 40 00 04 98 96 24 A4  .........@....$.
   25530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25550: 00 02 00 00 09 00 2D 53 02 00 00 01 01 00 00 00  ......-S........
   25560: 10 00 00 00 00 02 00 00 00 40 00 04 98 91 24 A4  .........@....$.
   25570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25590: 00 02 00 00 09 00 2E 53 02 00 00 01 01 00 00 00  .......S........
   255A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 94 24 A4  .........@....$.
   255B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   255C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   255D0: 00 02 00 00 09 00 2F 53 02 00 00 01 01 00 00 00  ....../S........
   255E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 95 24 A4  .........@....$.
   255F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25610: 00 02 00 00 09 00 30 53 02 00 00 01 01 00 00 00  ......0S........
   25620: 10 00 00 00 00 02 00 00 00 40 00 04 18 92 24 A4  .........@....$.
   25630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25650: 00 02 00 00 09 00 31 53 02 00 00 01 01 00 00 00  ......1S........
   25660: 10 00 00 00 00 02 00 00 00 40 00 04 18 94 24 A4  .........@....$.
   25670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25690: 00 02 00 00 09 00 32 53 02 00 00 01 01 00 00 00  ......2S........
   256A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 92 24 A4  .........@....$.
   256B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   256C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   256D0: 00 02 00 00 09 00 33 53 02 00 00 01 01 00 00 00  ......3S........
   256E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 93 24 A4  .........@....$.
   256F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25710: 00 02 00 00 09 00 34 53 02 00 00 01 01 00 00 00  ......4S........
   25720: 10 00 00 00 00 02 00 00 00 40 00 04 98 93 24 A4  .........@....$.
   25730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25750: 00 02 00 00 09 00 35 53 02 00 00 01 01 00 00 00  ......5S........
   25760: 10 00 00 00 00 02 00 00 00 40 00 04 18 80 24 A4  .........@....$.
   25770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25790: 00 02 00 00 09 00 36 53 02 00 00 01 01 00 00 00  ......6S........
   257A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8F 24 A4  .........@....$.
   257B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   257C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   257D0: 00 02 00 00 09 00 37 53 02 00 00 01 01 00 00 00  ......7S........
   257E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8F 24 A4  .........@....$.
   257F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25810: 00 02 00 00 09 00 38 53 02 00 00 01 01 00 00 00  ......8S........
   25820: 10 00 00 00 00 02 00 00 00 40 00 04 18 8B 24 A4  .........@....$.
   25830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25850: 00 02 00 00 09 00 39 53 02 00 00 01 01 00 00 00  ......9S........
   25860: 10 00 00 00 00 02 00 00 00 40 00 04 18 8E 24 A4  .........@....$.
   25870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25890: 00 02 00 00 09 00 3A 53 02 00 00 01 01 00 00 00  ......:S........
   258A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8E 24 A4  .........@....$.
   258B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   258C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   258D0: 00 02 00 00 09 00 3B 53 02 00 00 01 01 00 00 00  ......;S........
   258E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8B 24 A4  .........@....$.
   258F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25910: 00 02 00 00 09 00 3C 53 02 00 00 01 01 00 00 00  ......<S........
   25920: 10 00 00 00 00 02 00 00 00 40 00 04 98 8D 24 A4  .........@....$.
   25930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25950: 00 02 00 00 09 00 3D 53 02 00 00 01 01 00 00 00  ......=S........
   25960: 10 00 00 00 00 02 00 00 00 40 00 04 18 8C 24 A4  .........@....$.
   25970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25990: 00 02 00 00 09 00 3E 53 02 00 00 01 01 00 00 00  ......>S........
   259A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8C 24 A4  .........@....$.
   259B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   259C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   259D0: 00 02 00 00 09 00 3F 53 02 00 00 01 01 00 00 00  ......?S........
   259E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8D 24 A4  .........@....$.
   259F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25A10: 00 02 00 00 09 00 40 53 02 00 00 01 01 00 00 00  ......@S........
   25A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 80 24 A4  .........@....$.
   25A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25A50: 00 02 00 00 09 00 41 53 02 00 00 01 01 00 00 00  ......AS........
   25A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 8A 24 A4  .........@....$.
   25A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25A90: 00 02 00 00 09 00 42 53 02 00 00 01 01 00 00 00  ......BS........
   25AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8A 24 A4  .........@....$.
   25AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25AD0: 00 02 00 00 09 00 43 53 02 00 00 01 01 00 00 00  ......CS........
   25AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 87 24 A4  .........@....$.
   25AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25B10: 00 02 00 00 09 00 44 53 02 00 00 01 01 00 00 00  ......DS........
   25B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 89 24 A4  .........@....$.
   25B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25B50: 00 02 00 00 09 00 45 53 02 00 00 01 01 00 00 00  ......ES........
   25B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 88 24 A4  .........@....$.
   25B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25B90: 00 02 00 00 09 00 46 53 02 00 00 01 01 00 00 00  ......FS........
   25BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 88 24 A4  .........@....$.
   25BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25BD0: 00 02 00 00 09 00 47 53 02 00 00 01 01 00 00 00  ......GS........
   25BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 89 24 A4  .........@....$.
   25BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25C10: 00 02 00 00 09 00 48 53 02 00 00 01 01 00 00 00  ......HS........
   25C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 81 24 A4  .........@....$.
   25C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25C50: 00 02 00 00 09 00 49 53 02 00 00 01 01 00 00 00  ......IS........
   25C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 87 24 A4  .........@....$.
   25C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25C90: 00 02 00 00 09 00 4A 53 02 00 00 01 01 00 00 00  ......JS........
   25CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 85 24 A4  .........@....$.
   25CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25CD0: 00 02 00 00 09 00 4B 53 02 00 00 01 01 00 00 00  ......KS........
   25CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 86 24 A4  .........@....$.
   25CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25D10: 00 02 00 00 09 00 4C 53 02 00 00 01 01 00 00 00  ......LS........
   25D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 86 24 A4  .........@....$.
   25D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25D50: 00 02 00 00 09 00 4D 53 02 00 00 01 01 00 00 00  ......MS........
   25D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 81 24 A4  .........@....$.
   25D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25D90: 00 02 00 00 09 00 4E 53 02 00 00 01 01 00 00 00  ......NS........
   25DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 84 24 A4  .........@....$.
   25DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25DD0: 00 02 00 00 09 00 4F 53 02 00 00 01 01 00 00 00  ......OS........
   25DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 85 24 A4  .........@....$.
   25DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25E10: 00 02 00 00 09 00 50 53 02 00 00 01 01 00 00 00  ......PS........
   25E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 82 24 A4  .........@....$.
   25E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25E50: 00 02 00 00 09 00 51 53 02 00 00 01 01 00 00 00  ......QS........
   25E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 84 24 A4  .........@....$.
   25E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25E90: 00 02 00 00 09 00 52 53 02 00 00 01 01 00 00 00  ......RS........
   25EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 82 24 A4  .........@....$.
   25EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25ED0: 00 02 00 00 09 00 53 53 02 00 00 01 01 00 00 00  ......SS........
   25EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 83 24 A4  .........@....$.
   25EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25F10: 00 02 00 00 09 00 54 53 02 00 00 01 01 00 00 00  ......TS........
   25F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 83 24 A4  .........@....$.
   25F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25F50: 00 02 00 00 09 00 55 53 02 00 00 01 01 00 00 00  ......US........
   25F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 70 24 A4  .........@...p$.
   25F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25F90: 00 02 00 00 09 00 56 53 02 00 00 01 01 00 00 00  ......VS........
   25FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7F 24 A4  .........@....$.
   25FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   25FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   25FD0: 00 02 00 00 09 00 57 53 02 00 00 01 01 00 00 00  ......WS........
   25FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7F 24 A4  .........@....$.
   25FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26010: 00 02 00 00 09 00 58 53 02 00 00 01 01 00 00 00  ......XS........
   26020: 10 00 00 00 00 02 00 00 00 40 00 04 18 7B 24 A4  .........@...{$.
   26030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26050: 00 02 00 00 09 00 59 53 02 00 00 01 01 00 00 00  ......YS........
   26060: 10 00 00 00 00 02 00 00 00 40 00 04 18 7E 24 A4  .........@...~$.
   26070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26090: 00 02 00 00 09 00 5A 53 02 00 00 01 01 00 00 00  ......ZS........
   260A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7E 24 A4  .........@...~$.
   260B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   260C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   260D0: 00 02 00 00 09 00 5B 53 02 00 00 01 01 00 00 00  ......[S........
   260E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7B 24 A4  .........@...{$.
   260F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26110: 00 02 00 00 09 00 5C 53 02 00 00 01 01 00 00 00  ......\S........
   26120: 10 00 00 00 00 02 00 00 00 40 00 04 98 7D 24 A4  .........@...}$.
   26130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26150: 00 02 00 00 09 00 5D 53 02 00 00 01 01 00 00 00  ......]S........
   26160: 10 00 00 00 00 02 00 00 00 40 00 04 18 7C 24 A4  .........@...|$.
   26170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26190: 00 02 00 00 09 00 5E 53 02 00 00 01 01 00 00 00  ......^S........
   261A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7C 24 A4  .........@...|$.
   261B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   261C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   261D0: 00 02 00 00 09 00 5F 53 02 00 00 01 01 00 00 00  ......_S........
   261E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7D 24 A4  .........@...}$.
   261F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26210: 00 02 00 00 09 00 60 53 02 00 00 01 01 00 00 00  ......`S........
   26220: 10 00 00 00 00 02 00 00 00 40 00 04 98 70 24 A4  .........@...p$.
   26230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26250: 00 02 00 00 09 00 61 53 02 00 00 01 01 00 00 00  ......aS........
   26260: 10 00 00 00 00 02 00 00 00 40 00 04 18 7A 24 A4  .........@...z$.
   26270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26290: 00 02 00 00 09 00 62 53 02 00 00 01 01 00 00 00  ......bS........
   262A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7A 24 A4  .........@...z$.
   262B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   262C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   262D0: 00 02 00 00 09 00 63 53 02 00 00 01 01 00 00 00  ......cS........
   262E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 77 24 A4  .........@...w$.
   262F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26310: 00 02 00 00 09 00 64 53 02 00 00 01 01 00 00 00  ......dS........
   26320: 10 00 00 00 00 02 00 00 00 40 00 04 98 79 24 A4  .........@...y$.
   26330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26350: 00 02 00 00 09 00 65 53 02 00 00 01 01 00 00 00  ......eS........
   26360: 10 00 00 00 00 02 00 00 00 40 00 04 18 78 24 A4  .........@...x$.
   26370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26390: 00 02 00 00 09 00 66 53 02 00 00 01 01 00 00 00  ......fS........
   263A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 78 24 A4  .........@...x$.
   263B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   263C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   263D0: 00 02 00 00 09 00 67 53 02 00 00 01 01 00 00 00  ......gS........
   263E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 79 24 A4  .........@...y$.
   263F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26410: 00 02 00 00 09 00 68 53 02 00 00 01 01 00 00 00  ......hS........
   26420: 10 00 00 00 00 02 00 00 00 40 00 04 18 71 24 A4  .........@...q$.
   26430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26450: 00 02 00 00 09 00 69 53 02 00 00 01 01 00 00 00  ......iS........
   26460: 10 00 00 00 00 02 00 00 00 40 00 04 18 77 24 A4  .........@...w$.
   26470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26490: 00 02 00 00 09 00 6A 53 02 00 00 01 01 00 00 00  ......jS........
   264A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 75 24 A4  .........@...u$.
   264B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   264C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   264D0: 00 02 00 00 09 00 6B 53 02 00 00 01 01 00 00 00  ......kS........
   264E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 76 24 A4  .........@...v$.
   264F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26510: 00 02 00 00 09 00 6C 53 02 00 00 01 01 00 00 00  ......lS........
   26520: 10 00 00 00 00 02 00 00 00 40 00 04 98 76 24 A4  .........@...v$.
   26530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26550: 00 02 00 00 09 00 6D 53 02 00 00 01 01 00 00 00  ......mS........
   26560: 10 00 00 00 00 02 00 00 00 40 00 04 98 71 24 A4  .........@...q$.
   26570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26590: 00 02 00 00 09 00 6E 53 02 00 00 01 01 00 00 00  ......nS........
   265A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 74 24 A4  .........@...t$.
   265B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   265C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   265D0: 00 02 00 00 09 00 6F 53 02 00 00 01 01 00 00 00  ......oS........
   265E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 75 24 A4  .........@...u$.
   265F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26610: 00 02 00 00 09 00 70 53 02 00 00 01 01 00 00 00  ......pS........
   26620: 10 00 00 00 00 02 00 00 00 40 00 04 18 72 24 A4  .........@...r$.
   26630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26650: 00 02 00 00 09 00 71 53 02 00 00 01 01 00 00 00  ......qS........
   26660: 10 00 00 00 00 02 00 00 00 40 00 04 18 74 24 A4  .........@...t$.
   26670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26690: 00 02 00 00 09 00 72 53 02 00 00 01 01 00 00 00  ......rS........
   266A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 72 24 A4  .........@...r$.
   266B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   266C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   266D0: 00 02 00 00 09 00 73 53 02 00 00 01 01 00 00 00  ......sS........
   266E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 73 24 A4  .........@...s$.
   266F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26710: 00 02 00 00 09 00 74 53 02 00 00 01 01 00 00 00  ......tS........
   26720: 10 00 00 00 00 02 00 00 00 40 00 04 98 73 24 A4  .........@...s$.
   26730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26750: 00 02 00 00 09 00 75 53 02 00 00 01 01 00 00 00  ......uS........
   26760: 10 00 00 00 00 02 00 00 00 40 00 04 18 60 24 A4  .........@...`$.
   26770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26790: 00 02 00 00 09 00 76 53 02 00 00 01 01 00 00 00  ......vS........
   267A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6F 24 A4  .........@...o$.
   267B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   267C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   267D0: 00 02 00 00 09 00 77 53 02 00 00 01 01 00 00 00  ......wS........
   267E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6F 24 A4  .........@...o$.
   267F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26810: 00 02 00 00 09 00 78 53 02 00 00 01 01 00 00 00  ......xS........
   26820: 10 00 00 00 00 02 00 00 00 40 00 04 18 6B 24 A4  .........@...k$.
   26830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26850: 00 02 00 00 09 00 79 53 02 00 00 01 01 00 00 00  ......yS........
   26860: 10 00 00 00 00 02 00 00 00 40 00 04 18 6E 24 A4  .........@...n$.
   26870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26890: 00 02 00 00 09 00 7A 53 02 00 00 01 01 00 00 00  ......zS........
   268A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6E 24 A4  .........@...n$.
   268B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   268C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   268D0: 00 02 00 00 09 00 7B 53 02 00 00 01 01 00 00 00  ......{S........
   268E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6B 24 A4  .........@...k$.
   268F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26910: 00 02 00 00 09 00 7C 53 02 00 00 01 01 00 00 00  ......|S........
   26920: 10 00 00 00 00 02 00 00 00 40 00 04 98 6D 24 A4  .........@...m$.
   26930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26950: 00 02 00 00 09 00 7D 53 02 00 00 01 01 00 00 00  ......}S........
   26960: 10 00 00 00 00 02 00 00 00 40 00 04 18 6C 24 A4  .........@...l$.
   26970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26990: 00 02 00 00 09 00 7E 53 02 00 00 01 01 00 00 00  ......~S........
   269A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6C 24 A4  .........@...l$.
   269B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   269C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   269D0: 00 02 00 00 09 00 7F 53 02 00 00 01 01 00 00 00  .......S........
   269E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6D 24 A4  .........@...m$.
   269F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26A10: 00 02 00 00 09 00 80 53 02 00 00 01 01 00 00 00  .......S........
   26A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 60 24 A4  .........@...`$.
   26A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26A50: 00 02 00 00 09 00 81 53 02 00 00 01 01 00 00 00  .......S........
   26A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 6A 24 A4  .........@...j$.
   26A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26A90: 00 02 00 00 09 00 82 53 02 00 00 01 01 00 00 00  .......S........
   26AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6A 24 A4  .........@...j$.
   26AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26AD0: 00 02 00 00 09 00 83 53 02 00 00 01 01 00 00 00  .......S........
   26AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 67 24 A4  .........@...g$.
   26AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26B10: 00 02 00 00 09 00 84 53 02 00 00 01 01 00 00 00  .......S........
   26B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 69 24 A4  .........@...i$.
   26B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26B50: 00 02 00 00 09 00 85 53 02 00 00 01 01 00 00 00  .......S........
   26B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 68 24 A4  .........@...h$.
   26B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26B90: 00 02 00 00 09 00 86 53 02 00 00 01 01 00 00 00  .......S........
   26BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 68 24 A4  .........@...h$.
   26BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26BD0: 00 02 00 00 09 00 87 53 02 00 00 01 01 00 00 00  .......S........
   26BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 69 24 A4  .........@...i$.
   26BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26C10: 00 02 00 00 09 00 88 53 02 00 00 01 01 00 00 00  .......S........
   26C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 61 24 A4  .........@...a$.
   26C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26C50: 00 02 00 00 09 00 89 53 02 00 00 01 01 00 00 00  .......S........
   26C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 67 24 A4  .........@...g$.
   26C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26C90: 00 02 00 00 09 00 8A 53 02 00 00 01 01 00 00 00  .......S........
   26CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 65 24 A4  .........@...e$.
   26CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26CD0: 00 02 00 00 09 00 8B 53 02 00 00 01 01 00 00 00  .......S........
   26CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 66 24 A4  .........@...f$.
   26CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26D10: 00 02 00 00 09 00 8C 53 02 00 00 01 01 00 00 00  .......S........
   26D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 66 24 A4  .........@...f$.
   26D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26D50: 00 02 00 00 09 00 8D 53 02 00 00 01 01 00 00 00  .......S........
   26D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 61 24 A4  .........@...a$.
   26D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26D90: 00 02 00 00 09 00 8E 53 02 00 00 01 01 00 00 00  .......S........
   26DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 64 24 A4  .........@...d$.
   26DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26DD0: 00 02 00 00 09 00 8F 53 02 00 00 01 01 00 00 00  .......S........
   26DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 65 24 A4  .........@...e$.
   26DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26E10: 00 02 00 00 09 00 90 53 02 00 00 01 01 00 00 00  .......S........
   26E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 62 24 A4  .........@...b$.
   26E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26E50: 00 02 00 00 09 00 91 53 02 00 00 01 01 00 00 00  .......S........
   26E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 64 24 A4  .........@...d$.
   26E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26E90: 00 02 00 00 09 00 92 53 02 00 00 01 01 00 00 00  .......S........
   26EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 62 24 A4  .........@...b$.
   26EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26ED0: 00 02 00 00 09 00 93 53 02 00 00 01 01 00 00 00  .......S........
   26EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 63 24 A4  .........@...c$.
   26EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26F10: 00 02 00 00 09 00 94 53 02 00 00 01 01 00 00 00  .......S........
   26F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 63 24 A4  .........@...c$.
   26F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26F50: 00 02 00 00 09 00 95 53 02 00 00 01 01 00 00 00  .......S........
   26F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 50 24 A4  .........@...P$.
   26F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26F90: 00 02 00 00 09 00 96 53 02 00 00 01 01 00 00 00  .......S........
   26FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5F 24 A4  .........@..._$.
   26FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   26FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   26FD0: 00 02 00 00 09 00 97 53 02 00 00 01 01 00 00 00  .......S........
   26FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5F 24 A4  .........@..._$.
   26FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27010: 00 02 00 00 09 00 98 53 02 00 00 01 01 00 00 00  .......S........
   27020: 10 00 00 00 00 02 00 00 00 40 00 04 18 5B 24 A4  .........@...[$.
   27030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27050: 00 02 00 00 09 00 99 53 02 00 00 01 01 00 00 00  .......S........
   27060: 10 00 00 00 00 02 00 00 00 40 00 04 18 5E 24 A4  .........@...^$.
   27070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27090: 00 02 00 00 09 00 9A 53 02 00 00 01 01 00 00 00  .......S........
   270A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5E 24 A4  .........@...^$.
   270B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   270C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   270D0: 00 02 00 00 09 00 9B 53 02 00 00 01 01 00 00 00  .......S........
   270E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5B 24 A4  .........@...[$.
   270F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27110: 00 02 00 00 09 00 9C 53 02 00 00 01 01 00 00 00  .......S........
   27120: 10 00 00 00 00 02 00 00 00 40 00 04 98 5D 24 A4  .........@...]$.
   27130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27150: 00 02 00 00 09 00 9D 53 02 00 00 01 01 00 00 00  .......S........
   27160: 10 00 00 00 00 02 00 00 00 40 00 04 18 5C 24 A4  .........@...\$.
   27170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27190: 00 02 00 00 09 00 9E 53 02 00 00 01 01 00 00 00  .......S........
   271A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5C 24 A4  .........@...\$.
   271B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   271C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   271D0: 00 02 00 00 09 00 9F 53 02 00 00 01 01 00 00 00  .......S........
   271E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5D 24 A4  .........@...]$.
   271F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27210: 00 02 00 00 09 00 A0 53 02 00 00 01 01 00 00 00  .......S........
   27220: 10 00 00 00 00 02 00 00 00 40 00 04 98 50 24 A4  .........@...P$.
   27230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27250: 00 02 00 00 09 00 A1 53 02 00 00 01 01 00 00 00  .......S........
   27260: 10 00 00 00 00 02 00 00 00 40 00 04 18 5A 24 A4  .........@...Z$.
   27270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27290: 00 02 00 00 09 00 A2 53 02 00 00 01 01 00 00 00  .......S........
   272A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5A 24 A4  .........@...Z$.
   272B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   272C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   272D0: 00 02 00 00 09 00 A3 53 02 00 00 01 01 00 00 00  .......S........
   272E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 57 24 A4  .........@...W$.
   272F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27310: 00 02 00 00 09 00 A4 53 02 00 00 01 01 00 00 00  .......S........
   27320: 10 00 00 00 00 02 00 00 00 40 00 04 98 59 24 A4  .........@...Y$.
   27330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27350: 00 02 00 00 09 00 A5 53 02 00 00 01 01 00 00 00  .......S........
   27360: 10 00 00 00 00 02 00 00 00 40 00 04 18 58 24 A4  .........@...X$.
   27370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27390: 00 02 00 00 09 00 A6 53 02 00 00 01 01 00 00 00  .......S........
   273A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 58 24 A4  .........@...X$.
   273B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   273C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   273D0: 00 02 00 00 09 00 A7 53 02 00 00 01 01 00 00 00  .......S........
   273E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 59 24 A4  .........@...Y$.
   273F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27410: 00 02 00 00 09 00 A8 53 02 00 00 01 01 00 00 00  .......S........
   27420: 10 00 00 00 00 02 00 00 00 40 00 04 18 51 24 A4  .........@...Q$.
   27430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27450: 00 02 00 00 09 00 A9 53 02 00 00 01 01 00 00 00  .......S........
   27460: 10 00 00 00 00 02 00 00 00 40 00 04 18 57 24 A4  .........@...W$.
   27470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27490: 00 02 00 00 09 00 AA 53 02 00 00 01 01 00 00 00  .......S........
   274A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 55 24 A4  .........@...U$.
   274B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   274C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   274D0: 00 02 00 00 09 00 AB 53 02 00 00 01 01 00 00 00  .......S........
   274E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 56 24 A4  .........@...V$.
   274F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27510: 00 02 00 00 09 00 AC 53 02 00 00 01 01 00 00 00  .......S........
   27520: 10 00 00 00 00 02 00 00 00 40 00 04 98 56 24 A4  .........@...V$.
   27530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27550: 00 02 00 00 09 00 AD 53 02 00 00 01 01 00 00 00  .......S........
   27560: 10 00 00 00 00 02 00 00 00 40 00 04 98 51 24 A4  .........@...Q$.
   27570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27590: 00 02 00 00 09 00 AE 53 02 00 00 01 01 00 00 00  .......S........
   275A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 54 24 A4  .........@...T$.
   275B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   275C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   275D0: 00 02 00 00 09 00 AF 53 02 00 00 01 01 00 00 00  .......S........
   275E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 55 24 A4  .........@...U$.
   275F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27610: 00 02 00 00 09 00 B0 53 02 00 00 01 01 00 00 00  .......S........
   27620: 10 00 00 00 00 02 00 00 00 40 00 04 18 52 24 A4  .........@...R$.
   27630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27650: 00 02 00 00 09 00 B1 53 02 00 00 01 01 00 00 00  .......S........
   27660: 10 00 00 00 00 02 00 00 00 40 00 04 18 54 24 A4  .........@...T$.
   27670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27690: 00 02 00 00 09 00 B2 53 02 00 00 01 01 00 00 00  .......S........
   276A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 52 24 A4  .........@...R$.
   276B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   276C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   276D0: 00 02 00 00 09 00 B3 53 02 00 00 01 01 00 00 00  .......S........
   276E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 53 24 A4  .........@...S$.
   276F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27710: 00 02 00 00 09 00 B4 53 02 00 00 01 01 00 00 00  .......S........
   27720: 10 00 00 00 00 02 00 00 00 40 00 04 98 53 24 A4  .........@...S$.
   27730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27750: 00 02 00 00 09 00 B5 53 02 00 00 01 01 00 00 00  .......S........
   27760: 10 00 00 00 00 02 00 00 00 40 00 04 18 40 24 A4  .........@...@$.
   27770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27790: 00 02 00 00 09 00 B6 53 02 00 00 01 01 00 00 00  .......S........
   277A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4F 24 A4  .........@...O$.
   277B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   277C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   277D0: 00 02 00 00 09 00 B7 53 02 00 00 01 01 00 00 00  .......S........
   277E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4F 24 A4  .........@...O$.
   277F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27810: 00 02 00 00 09 00 B8 53 02 00 00 01 01 00 00 00  .......S........
   27820: 10 00 00 00 00 02 00 00 00 40 00 04 18 4B 24 A4  .........@...K$.
   27830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27850: 00 02 00 00 09 00 B9 53 02 00 00 01 01 00 00 00  .......S........
   27860: 10 00 00 00 00 02 00 00 00 40 00 04 18 4E 24 A4  .........@...N$.
   27870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27890: 00 02 00 00 09 00 BA 53 02 00 00 01 01 00 00 00  .......S........
   278A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4E 24 A4  .........@...N$.
   278B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   278C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   278D0: 00 02 00 00 09 00 BB 53 02 00 00 01 01 00 00 00  .......S........
   278E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4B 24 A4  .........@...K$.
   278F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27910: 00 02 00 00 09 00 BC 53 02 00 00 01 01 00 00 00  .......S........
   27920: 10 00 00 00 00 02 00 00 00 40 00 04 98 4D 24 A4  .........@...M$.
   27930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27950: 00 02 00 00 09 00 BD 53 02 00 00 01 01 00 00 00  .......S........
   27960: 10 00 00 00 00 02 00 00 00 40 00 04 18 4C 24 A4  .........@...L$.
   27970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27990: 00 02 00 00 09 00 BE 53 02 00 00 01 01 00 00 00  .......S........
   279A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4C 24 A4  .........@...L$.
   279B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   279C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   279D0: 00 02 00 00 09 00 BF 53 02 00 00 01 01 00 00 00  .......S........
   279E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4D 24 A4  .........@...M$.
   279F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27A10: 00 02 00 00 09 00 C0 53 02 00 00 01 01 00 00 00  .......S........
   27A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 40 24 A4  .........@...@$.
   27A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27A50: 00 02 00 00 09 00 C1 53 02 00 00 01 01 00 00 00  .......S........
   27A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 4A 24 A4  .........@...J$.
   27A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27A90: 00 02 00 00 09 00 C2 53 02 00 00 01 01 00 00 00  .......S........
   27AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4A 24 A4  .........@...J$.
   27AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27AD0: 00 02 00 00 09 00 C3 53 02 00 00 01 01 00 00 00  .......S........
   27AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 47 24 A4  .........@...G$.
   27AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27B10: 00 02 00 00 09 00 C4 53 02 00 00 01 01 00 00 00  .......S........
   27B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 49 24 A4  .........@...I$.
   27B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27B50: 00 02 00 00 09 00 C5 53 02 00 00 01 01 00 00 00  .......S........
   27B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 48 24 A4  .........@...H$.
   27B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27B90: 00 02 00 00 09 00 C6 53 02 00 00 01 01 00 00 00  .......S........
   27BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 48 24 A4  .........@...H$.
   27BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27BD0: 00 02 00 00 09 00 C7 53 02 00 00 01 01 00 00 00  .......S........
   27BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 49 24 A4  .........@...I$.
   27BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27C10: 00 02 00 00 09 00 C8 53 02 00 00 01 01 00 00 00  .......S........
   27C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 41 24 A4  .........@...A$.
   27C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27C50: 00 02 00 00 09 00 C9 53 02 00 00 01 01 00 00 00  .......S........
   27C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 47 24 A4  .........@...G$.
   27C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27C90: 00 02 00 00 09 00 CA 53 02 00 00 01 01 00 00 00  .......S........
   27CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 45 24 A4  .........@...E$.
   27CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27CD0: 00 02 00 00 09 00 CB 53 02 00 00 01 01 00 00 00  .......S........
   27CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 46 24 A4  .........@...F$.
   27CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27D10: 00 02 00 00 09 00 CC 53 02 00 00 01 01 00 00 00  .......S........
   27D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 46 24 A4  .........@...F$.
   27D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27D50: 00 02 00 00 09 00 CD 53 02 00 00 01 01 00 00 00  .......S........
   27D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 41 24 A4  .........@...A$.
   27D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27D90: 00 02 00 00 09 00 CE 53 02 00 00 01 01 00 00 00  .......S........
   27DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 44 24 A4  .........@...D$.
   27DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27DD0: 00 02 00 00 09 00 CF 53 02 00 00 01 01 00 00 00  .......S........
   27DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 45 24 A4  .........@...E$.
   27DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27E10: 00 02 00 00 09 00 D0 53 02 00 00 01 01 00 00 00  .......S........
   27E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 42 24 A4  .........@...B$.
   27E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27E50: 00 02 00 00 09 00 D1 53 02 00 00 01 01 00 00 00  .......S........
   27E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 44 24 A4  .........@...D$.
   27E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27E90: 00 02 00 00 09 00 D2 53 02 00 00 01 01 00 00 00  .......S........
   27EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 42 24 A4  .........@...B$.
   27EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27ED0: 00 02 00 00 09 00 D3 53 02 00 00 01 01 00 00 00  .......S........
   27EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 43 24 A4  .........@...C$.
   27EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27F10: 00 02 00 00 09 00 D4 53 02 00 00 01 01 00 00 00  .......S........
   27F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 43 24 A4  .........@...C$.
   27F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27F50: 00 02 00 00 09 00 D5 53 02 00 00 01 01 00 00 00  .......S........
   27F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 30 24 A4  .........@...0$.
   27F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27F90: 00 02 00 00 09 00 D6 53 02 00 00 01 01 00 00 00  .......S........
   27FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3F 24 A4  .........@...?$.
   27FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   27FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   27FD0: 00 02 00 00 09 00 D7 53 02 00 00 01 01 00 00 00  .......S........
   27FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3F 24 A4  .........@...?$.
   27FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28010: 00 02 00 00 09 00 D8 53 02 00 00 01 01 00 00 00  .......S........
   28020: 10 00 00 00 00 02 00 00 00 40 00 04 18 3B 24 A4  .........@...;$.
   28030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28050: 00 02 00 00 09 00 D9 53 02 00 00 01 01 00 00 00  .......S........
   28060: 10 00 00 00 00 02 00 00 00 40 00 04 18 3E 24 A4  .........@...>$.
   28070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28090: 00 02 00 00 09 00 DA 53 02 00 00 01 01 00 00 00  .......S........
   280A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3E 24 A4  .........@...>$.
   280B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   280C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   280D0: 00 02 00 00 09 00 DB 53 02 00 00 01 01 00 00 00  .......S........
   280E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3B 24 A4  .........@...;$.
   280F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28110: 00 02 00 00 09 00 DC 53 02 00 00 01 01 00 00 00  .......S........
   28120: 10 00 00 00 00 02 00 00 00 40 00 04 98 3D 24 A4  .........@...=$.
   28130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28150: 00 02 00 00 09 00 DD 53 02 00 00 01 01 00 00 00  .......S........
   28160: 10 00 00 00 00 02 00 00 00 40 00 04 18 3C 24 A4  .........@...<$.
   28170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28190: 00 02 00 00 09 00 DE 53 02 00 00 01 01 00 00 00  .......S........
   281A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3C 24 A4  .........@...<$.
   281B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   281C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   281D0: 00 02 00 00 09 00 DF 53 02 00 00 01 01 00 00 00  .......S........
   281E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3D 24 A4  .........@...=$.
   281F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28210: 00 02 00 00 09 00 E0 53 02 00 00 01 01 00 00 00  .......S........
   28220: 10 00 00 00 00 02 00 00 00 40 00 04 98 30 24 A4  .........@...0$.
   28230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28250: 00 02 00 00 09 00 E1 53 02 00 00 01 01 00 00 00  .......S........
   28260: 10 00 00 00 00 02 00 00 00 40 00 04 18 3A 24 A4  .........@...:$.
   28270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28290: 00 02 00 00 09 00 E2 53 02 00 00 01 01 00 00 00  .......S........
   282A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3A 24 A4  .........@...:$.
   282B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   282C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   282D0: 00 02 00 00 09 00 E3 53 02 00 00 01 01 00 00 00  .......S........
   282E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 37 24 A4  .........@...7$.
   282F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28310: 00 02 00 00 09 00 E4 53 02 00 00 01 01 00 00 00  .......S........
   28320: 10 00 00 00 00 02 00 00 00 40 00 04 98 39 24 A4  .........@...9$.
   28330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28350: 00 02 00 00 09 00 E5 53 02 00 00 01 01 00 00 00  .......S........
   28360: 10 00 00 00 00 02 00 00 00 40 00 04 18 38 24 A4  .........@...8$.
   28370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28390: 00 02 00 00 09 00 E6 53 02 00 00 01 01 00 00 00  .......S........
   283A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 38 24 A4  .........@...8$.
   283B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   283C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   283D0: 00 02 00 00 09 00 E7 53 02 00 00 01 01 00 00 00  .......S........
   283E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 39 24 A4  .........@...9$.
   283F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28410: 00 02 00 00 09 00 E8 53 02 00 00 01 01 00 00 00  .......S........
   28420: 10 00 00 00 00 02 00 00 00 40 00 04 18 31 24 A4  .........@...1$.
   28430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28450: 00 02 00 00 09 00 E9 53 02 00 00 01 01 00 00 00  .......S........
   28460: 10 00 00 00 00 02 00 00 00 40 00 04 18 37 24 A4  .........@...7$.
   28470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28490: 00 02 00 00 09 00 EA 53 02 00 00 01 01 00 00 00  .......S........
   284A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 35 24 A4  .........@...5$.
   284B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   284C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   284D0: 00 02 00 00 09 00 EB 53 02 00 00 01 01 00 00 00  .......S........
   284E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 36 24 A4  .........@...6$.
   284F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28510: 00 02 00 00 09 00 EC 53 02 00 00 01 01 00 00 00  .......S........
   28520: 10 00 00 00 00 02 00 00 00 40 00 04 98 36 24 A4  .........@...6$.
   28530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28550: 00 02 00 00 09 00 ED 53 02 00 00 01 01 00 00 00  .......S........
   28560: 10 00 00 00 00 02 00 00 00 40 00 04 98 31 24 A4  .........@...1$.
   28570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28590: 00 02 00 00 09 00 EE 53 02 00 00 01 01 00 00 00  .......S........
   285A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 34 24 A4  .........@...4$.
   285B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   285C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   285D0: 00 02 00 00 09 00 EF 53 02 00 00 01 01 00 00 00  .......S........
   285E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 35 24 A4  .........@...5$.
   285F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28610: 00 02 00 00 09 00 F0 53 02 00 00 01 01 00 00 00  .......S........
   28620: 10 00 00 00 00 02 00 00 00 40 00 04 18 32 24 A4  .........@...2$.
   28630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28650: 00 02 00 00 09 00 F1 53 02 00 00 01 01 00 00 00  .......S........
   28660: 10 00 00 00 00 02 00 00 00 40 00 04 18 34 24 A4  .........@...4$.
   28670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28690: 00 02 00 00 09 00 F2 53 02 00 00 01 01 00 00 00  .......S........
   286A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 32 24 A4  .........@...2$.
   286B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   286C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   286D0: 00 02 00 00 09 00 F3 53 02 00 00 01 01 00 00 00  .......S........
   286E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 33 24 A4  .........@...3$.
   286F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28710: 00 02 00 00 09 00 F4 53 02 00 00 01 01 00 00 00  .......S........
   28720: 10 00 00 00 00 02 00 00 00 40 00 04 98 33 24 A4  .........@...3$.
   28730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28750: 00 02 00 00 09 00 F5 53 02 00 00 01 01 00 00 00  .......S........
   28760: 10 00 00 00 00 02 00 00 00 40 00 04 18 20 24 A4  .........@... $.
   28770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28790: 00 02 00 00 09 00 F6 53 02 00 00 01 01 00 00 00  .......S........
   287A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 2F 24 A4  .........@.../$.
   287B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   287C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   287D0: 00 02 00 00 09 00 F7 53 02 00 00 01 01 00 00 00  .......S........
   287E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2F 24 A4  .........@.../$.
   287F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28810: 00 02 00 00 09 00 F8 53 02 00 00 01 01 00 00 00  .......S........
   28820: 10 00 00 00 00 02 00 00 00 40 00 04 18 2B 24 A4  .........@...+$.
   28830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28850: 00 02 00 00 09 00 F9 53 02 00 00 01 01 00 00 00  .......S........
   28860: 10 00 00 00 00 02 00 00 00 40 00 04 18 2E 24 A4  .........@....$.
   28870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28890: 00 02 00 00 09 00 FA 53 02 00 00 01 01 00 00 00  .......S........
   288A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2E 24 A4  .........@....$.
   288B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   288C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   288D0: 00 02 00 00 09 00 FB 53 02 00 00 01 01 00 00 00  .......S........
   288E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2B 24 A4  .........@...+$.
   288F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28910: 00 02 00 00 09 00 FC 53 02 00 00 01 01 00 00 00  .......S........
   28920: 10 00 00 00 00 02 00 00 00 40 00 04 98 2D 24 A4  .........@...-$.
   28930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28950: 00 02 00 00 09 00 FD 53 02 00 00 01 01 00 00 00  .......S........
   28960: 10 00 00 00 00 02 00 00 00 40 00 04 18 2C 24 A4  .........@...,$.
   28970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28990: 00 02 00 00 09 00 FE 53 02 00 00 01 01 00 00 00  .......S........
   289A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2C 24 A4  .........@...,$.
   289B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   289C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   289D0: 00 02 00 00 09 00 FF 53 02 00 00 01 01 00 00 00  .......S........
   289E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 2D 24 A4  .........@...-$.
   289F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28A10: 00 02 00 00 09 00 00 54 02 00 00 01 01 00 00 00  .......T........
   28A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 20 24 A4  .........@... $.
   28A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28A50: 00 02 00 00 09 00 01 54 02 00 00 01 01 00 00 00  .......T........
   28A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 2A 24 A4  .........@...*$.
   28A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28A90: 00 02 00 00 09 00 02 54 02 00 00 01 01 00 00 00  .......T........
   28AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2A 24 A4  .........@...*$.
   28AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28AD0: 00 02 00 00 09 00 03 54 02 00 00 01 01 00 00 00  .......T........
   28AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 27 24 A4  .........@...'$.
   28AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28B10: 00 02 00 00 09 00 04 54 02 00 00 01 01 00 00 00  .......T........
   28B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 29 24 A4  .........@...)$.
   28B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28B50: 00 02 00 00 09 00 05 54 02 00 00 01 01 00 00 00  .......T........
   28B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 28 24 A4  .........@...($.
   28B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28B90: 00 02 00 00 09 00 06 54 02 00 00 01 01 00 00 00  .......T........
   28BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 28 24 A4  .........@...($.
   28BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28BD0: 00 02 00 00 09 00 07 54 02 00 00 01 01 00 00 00  .......T........
   28BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 29 24 A4  .........@...)$.
   28BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28C10: 00 02 00 00 09 00 08 54 02 00 00 01 01 00 00 00  .......T........
   28C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 21 24 A4  .........@...!$.
   28C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28C50: 00 02 00 00 09 00 09 54 02 00 00 01 01 00 00 00  .......T........
   28C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 27 24 A4  .........@...'$.
   28C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28C90: 00 02 00 00 09 00 0A 54 02 00 00 01 01 00 00 00  .......T........
   28CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 25 24 A4  .........@...%$.
   28CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28CD0: 00 02 00 00 09 00 0B 54 02 00 00 01 01 00 00 00  .......T........
   28CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 26 24 A4  .........@...&$.
   28CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28D10: 00 02 00 00 09 00 0C 54 02 00 00 01 01 00 00 00  .......T........
   28D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 26 24 A4  .........@...&$.
   28D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28D50: 00 02 00 00 09 00 0D 54 02 00 00 01 01 00 00 00  .......T........
   28D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 21 24 A4  .........@...!$.
   28D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28D90: 00 02 00 00 09 00 0E 54 02 00 00 01 01 00 00 00  .......T........
   28DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 24 24 A4  .........@...$$.
   28DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28DD0: 00 02 00 00 09 00 0F 54 02 00 00 01 01 00 00 00  .......T........
   28DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 25 24 A4  .........@...%$.
   28DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28E10: 00 02 00 00 09 00 10 54 02 00 00 01 01 00 00 00  .......T........
   28E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 22 24 A4  .........@..."$.
   28E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28E50: 00 02 00 00 09 00 11 54 02 00 00 01 01 00 00 00  .......T........
   28E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 24 24 A4  .........@...$$.
   28E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28E90: 00 02 00 00 09 00 12 54 02 00 00 01 01 00 00 00  .......T........
   28EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 22 24 A4  .........@..."$.
   28EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28ED0: 00 02 00 00 09 00 13 54 02 00 00 01 01 00 00 00  .......T........
   28EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 23 24 A4  .........@...#$.
   28EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28F10: 00 02 00 00 09 00 14 54 02 00 00 01 01 00 00 00  .......T........
   28F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 23 24 A4  .........@...#$.
   28F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28F50: 00 02 00 00 09 00 15 54 02 00 00 01 01 00 00 00  .......T........
   28F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 10 24 A4  .........@....$.
   28F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28F90: 00 02 00 00 09 00 16 54 02 00 00 01 01 00 00 00  .......T........
   28FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 1F 24 A4  .........@....$.
   28FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   28FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   28FD0: 00 02 00 00 09 00 17 54 02 00 00 01 01 00 00 00  .......T........
   28FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1F 24 A4  .........@....$.
   28FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29010: 00 02 00 00 09 00 18 54 02 00 00 01 01 00 00 00  .......T........
   29020: 10 00 00 00 00 02 00 00 00 40 00 04 18 1B 24 A4  .........@....$.
   29030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29050: 00 02 00 00 09 00 19 54 02 00 00 01 01 00 00 00  .......T........
   29060: 10 00 00 00 00 02 00 00 00 40 00 04 18 1E 24 A4  .........@....$.
   29070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29090: 00 02 00 00 09 00 1A 54 02 00 00 01 01 00 00 00  .......T........
   290A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1E 24 A4  .........@....$.
   290B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   290C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   290D0: 00 02 00 00 09 00 1B 54 02 00 00 01 01 00 00 00  .......T........
   290E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1B 24 A4  .........@....$.
   290F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29110: 00 02 00 00 09 00 1C 54 02 00 00 01 01 00 00 00  .......T........
   29120: 10 00 00 00 00 02 00 00 00 40 00 04 98 1D 24 A4  .........@....$.
   29130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29150: 00 02 00 00 09 00 1D 54 02 00 00 01 01 00 00 00  .......T........
   29160: 10 00 00 00 00 02 00 00 00 40 00 04 18 1C 24 A4  .........@....$.
   29170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29190: 00 02 00 00 09 00 1E 54 02 00 00 01 01 00 00 00  .......T........
   291A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1C 24 A4  .........@....$.
   291B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   291C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   291D0: 00 02 00 00 09 00 1F 54 02 00 00 01 01 00 00 00  .......T........
   291E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 1D 24 A4  .........@....$.
   291F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29210: 00 02 00 00 09 00 20 54 02 00 00 01 01 00 00 00  ...... T........
   29220: 10 00 00 00 00 02 00 00 00 40 00 04 98 10 24 A4  .........@....$.
   29230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29250: 00 02 00 00 09 00 21 54 02 00 00 01 01 00 00 00  ......!T........
   29260: 10 00 00 00 00 02 00 00 00 40 00 04 18 1A 24 A4  .........@....$.
   29270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29290: 00 02 00 00 09 00 22 54 02 00 00 01 01 00 00 00  ......"T........
   292A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 1A 24 A4  .........@....$.
   292B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   292C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   292D0: 00 02 00 00 09 00 23 54 02 00 00 01 01 00 00 00  ......#T........
   292E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 17 24 A4  .........@....$.
   292F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29310: 00 02 00 00 09 00 24 54 02 00 00 01 01 00 00 00  ......$T........
   29320: 10 00 00 00 00 02 00 00 00 40 00 04 98 19 24 A4  .........@....$.
   29330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29350: 00 02 00 00 09 00 25 54 02 00 00 01 01 00 00 00  ......%T........
   29360: 10 00 00 00 00 02 00 00 00 40 00 04 18 18 24 A4  .........@....$.
   29370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29390: 00 02 00 00 09 00 26 54 02 00 00 01 01 00 00 00  ......&T........
   293A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 18 24 A4  .........@....$.
   293B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   293C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   293D0: 00 02 00 00 09 00 27 54 02 00 00 01 01 00 00 00  ......'T........
   293E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 19 24 A4  .........@....$.
   293F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29410: 00 02 00 00 09 00 28 54 02 00 00 01 01 00 00 00  ......(T........
   29420: 10 00 00 00 00 02 00 00 00 40 00 04 18 11 24 A4  .........@....$.
   29430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29450: 00 02 00 00 09 00 29 54 02 00 00 01 01 00 00 00  ......)T........
   29460: 10 00 00 00 00 02 00 00 00 40 00 04 18 17 24 A4  .........@....$.
   29470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29490: 00 02 00 00 09 00 2A 54 02 00 00 01 01 00 00 00  ......*T........
   294A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 15 24 A4  .........@....$.
   294B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   294C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   294D0: 00 02 00 00 09 00 2B 54 02 00 00 01 01 00 00 00  ......+T........
   294E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 16 24 A4  .........@....$.
   294F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29510: 00 02 00 00 09 00 2C 54 02 00 00 01 01 00 00 00  ......,T........
   29520: 10 00 00 00 00 02 00 00 00 40 00 04 98 16 24 A4  .........@....$.
   29530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29550: 00 02 00 00 09 00 2D 54 02 00 00 01 01 00 00 00  ......-T........
   29560: 10 00 00 00 00 02 00 00 00 40 00 04 98 11 24 A4  .........@....$.
   29570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29590: 00 02 00 00 09 00 2E 54 02 00 00 01 01 00 00 00  .......T........
   295A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 14 24 A4  .........@....$.
   295B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   295C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   295D0: 00 02 00 00 09 00 2F 54 02 00 00 01 01 00 00 00  ....../T........
   295E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 15 24 A4  .........@....$.
   295F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29610: 00 02 00 00 09 00 30 54 02 00 00 01 01 00 00 00  ......0T........
   29620: 10 00 00 00 00 02 00 00 00 40 00 04 18 12 24 A4  .........@....$.
   29630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29650: 00 02 00 00 09 00 31 54 02 00 00 01 01 00 00 00  ......1T........
   29660: 10 00 00 00 00 02 00 00 00 40 00 04 18 14 24 A4  .........@....$.
   29670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29690: 00 02 00 00 09 00 32 54 02 00 00 01 01 00 00 00  ......2T........
   296A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 12 24 A4  .........@....$.
   296B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   296C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   296D0: 00 02 00 00 09 00 33 54 02 00 00 01 01 00 00 00  ......3T........
   296E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 13 24 A4  .........@....$.
   296F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29710: 00 02 00 00 09 00 34 54 02 00 00 01 01 00 00 00  ......4T........
   29720: 10 00 00 00 00 02 00 00 00 40 00 04 98 13 24 A4  .........@....$.
   29730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29750: 00 02 00 00 09 00 35 54 02 00 00 01 01 00 00 00  ......5T........
   29760: 10 00 00 00 00 02 00 00 00 40 00 04 18 00 24 A4  .........@....$.
   29770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29790: 00 02 00 00 09 00 36 54 02 00 00 01 01 00 00 00  ......6T........
   297A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 0F 24 A4  .........@....$.
   297B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   297C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   297D0: 00 02 00 00 09 00 37 54 02 00 00 01 01 00 00 00  ......7T........
   297E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0F 24 A4  .........@....$.
   297F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29810: 00 02 00 00 09 00 38 54 02 00 00 01 01 00 00 00  ......8T........
   29820: 10 00 00 00 00 02 00 00 00 40 00 04 18 0B 24 A4  .........@....$.
   29830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29850: 00 02 00 00 09 00 39 54 02 00 00 01 01 00 00 00  ......9T........
   29860: 10 00 00 00 00 02 00 00 00 40 00 04 18 0E 24 A4  .........@....$.
   29870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29890: 00 02 00 00 09 00 3A 54 02 00 00 01 01 00 00 00  ......:T........
   298A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0E 24 A4  .........@....$.
   298B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   298C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   298D0: 00 02 00 00 09 00 3B 54 02 00 00 01 01 00 00 00  ......;T........
   298E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0B 24 A4  .........@....$.
   298F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29910: 00 02 00 00 09 00 3C 54 02 00 00 01 01 00 00 00  ......<T........
   29920: 10 00 00 00 00 02 00 00 00 40 00 04 98 0D 24 A4  .........@....$.
   29930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29950: 00 02 00 00 09 00 3D 54 02 00 00 01 01 00 00 00  ......=T........
   29960: 10 00 00 00 00 02 00 00 00 40 00 04 18 0C 24 A4  .........@....$.
   29970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29990: 00 02 00 00 09 00 3E 54 02 00 00 01 01 00 00 00  ......>T........
   299A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0C 24 A4  .........@....$.
   299B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   299C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   299D0: 00 02 00 00 09 00 3F 54 02 00 00 01 01 00 00 00  ......?T........
   299E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 0D 24 A4  .........@....$.
   299F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29A10: 00 02 00 00 09 00 40 54 02 00 00 01 01 00 00 00  ......@T........
   29A20: 10 00 00 00 00 02 00 00 00 40 00 04 98 00 24 A4  .........@....$.
   29A30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29A40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29A50: 00 02 00 00 09 00 41 54 02 00 00 01 01 00 00 00  ......AT........
   29A60: 10 00 00 00 00 02 00 00 00 40 00 04 18 0A 24 A4  .........@....$.
   29A70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29A80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29A90: 00 02 00 00 09 00 42 54 02 00 00 01 01 00 00 00  ......BT........
   29AA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 0A 24 A4  .........@....$.
   29AB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29AC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29AD0: 00 02 00 00 09 00 43 54 02 00 00 01 01 00 00 00  ......CT........
   29AE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 07 24 A4  .........@....$.
   29AF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29B00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29B10: 00 02 00 00 09 00 44 54 02 00 00 01 01 00 00 00  ......DT........
   29B20: 10 00 00 00 00 02 00 00 00 40 00 04 98 09 24 A4  .........@....$.
   29B30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29B40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29B50: 00 02 00 00 09 00 45 54 02 00 00 01 01 00 00 00  ......ET........
   29B60: 10 00 00 00 00 02 00 00 00 40 00 04 18 08 24 A4  .........@....$.
   29B70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29B80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29B90: 00 02 00 00 09 00 46 54 02 00 00 01 01 00 00 00  ......FT........
   29BA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 08 24 A4  .........@....$.
   29BB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29BC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29BD0: 00 02 00 00 09 00 47 54 02 00 00 01 01 00 00 00  ......GT........
   29BE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 09 24 A4  .........@....$.
   29BF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29C00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29C10: 00 02 00 00 09 00 48 54 02 00 00 01 01 00 00 00  ......HT........
   29C20: 10 00 00 00 00 02 00 00 00 40 00 04 18 01 24 A4  .........@....$.
   29C30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29C40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29C50: 00 02 00 00 09 00 49 54 02 00 00 01 01 00 00 00  ......IT........
   29C60: 10 00 00 00 00 02 00 00 00 40 00 04 18 07 24 A4  .........@....$.
   29C70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29C80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29C90: 00 02 00 00 09 00 4A 54 02 00 00 01 01 00 00 00  ......JT........
   29CA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 05 24 A4  .........@....$.
   29CB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29CC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29CD0: 00 02 00 00 09 00 4B 54 02 00 00 01 01 00 00 00  ......KT........
   29CE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 06 24 A4  .........@....$.
   29CF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29D00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29D10: 00 02 00 00 09 00 4C 54 02 00 00 01 01 00 00 00  ......LT........
   29D20: 10 00 00 00 00 02 00 00 00 40 00 04 98 06 24 A4  .........@....$.
   29D30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29D40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29D50: 00 02 00 00 09 00 4D 54 02 00 00 01 01 00 00 00  ......MT........
   29D60: 10 00 00 00 00 02 00 00 00 40 00 04 98 01 24 A4  .........@....$.
   29D70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29D80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29D90: 00 02 00 00 09 00 4E 54 02 00 00 01 01 00 00 00  ......NT........
   29DA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 04 24 A4  .........@....$.
   29DB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29DC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29DD0: 00 02 00 00 09 00 4F 54 02 00 00 01 01 00 00 00  ......OT........
   29DE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 05 24 A4  .........@....$.
   29DF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29E00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29E10: 00 02 00 00 09 00 50 54 02 00 00 01 01 00 00 00  ......PT........
   29E20: 10 00 00 00 00 02 00 00 00 40 00 04 18 02 24 A4  .........@....$.
   29E30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29E40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29E50: 00 02 00 00 09 00 51 54 02 00 00 01 01 00 00 00  ......QT........
   29E60: 10 00 00 00 00 02 00 00 00 40 00 04 18 04 24 A4  .........@....$.
   29E70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29E80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29E90: 00 02 00 00 09 00 52 54 02 00 00 01 01 00 00 00  ......RT........
   29EA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 02 24 A4  .........@....$.
   29EB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29EC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29ED0: 00 02 00 00 09 00 53 54 02 00 00 01 01 00 00 00  ......ST........
   29EE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 03 24 A4  .........@....$.
   29EF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29F00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29F10: 00 02 00 00 09 00 54 54 02 00 00 01 01 00 00 00  ......TT........
   29F20: 10 00 00 00 00 02 00 00 00 40 00 04 98 03 24 A4  .........@....$.
   29F30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29F40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29F50: 00 02 00 00 09 00 55 54 02 00 00 01 01 00 00 00  ......UT........
   29F60: 10 00 00 00 00 02 00 00 00 40 00 04 18 F0 23 A4  .........@....#.
   29F70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29F80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29F90: 00 02 00 00 09 00 56 54 02 00 00 01 01 00 00 00  ......VT........
   29FA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 FF 23 A4  .........@....#.
   29FB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   29FC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   29FD0: 00 02 00 00 09 00 57 54 02 00 00 01 01 00 00 00  ......WT........
   29FE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FF 23 A4  .........@....#.
   29FF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A010: 00 02 00 00 09 00 58 54 02 00 00 01 01 00 00 00  ......XT........
   2A020: 10 00 00 00 00 02 00 00 00 40 00 04 18 FB 23 A4  .........@....#.
   2A030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A050: 00 02 00 00 09 00 59 54 02 00 00 01 01 00 00 00  ......YT........
   2A060: 10 00 00 00 00 02 00 00 00 40 00 04 18 FE 23 A4  .........@....#.
   2A070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A090: 00 02 00 00 09 00 5A 54 02 00 00 01 01 00 00 00  ......ZT........
   2A0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FE 23 A4  .........@....#.
   2A0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A0D0: 00 02 00 00 09 00 5B 54 02 00 00 01 01 00 00 00  ......[T........
   2A0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FB 23 A4  .........@....#.
   2A0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A110: 00 02 00 00 09 00 5C 54 02 00 00 01 01 00 00 00  ......\T........
   2A120: 10 00 00 00 00 02 00 00 00 40 00 04 98 FD 23 A4  .........@....#.
   2A130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A150: 00 02 00 00 09 00 5D 54 02 00 00 01 01 00 00 00  ......]T........
   2A160: 10 00 00 00 00 02 00 00 00 40 00 04 18 FC 23 A4  .........@....#.
   2A170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A190: 00 02 00 00 09 00 5E 54 02 00 00 01 01 00 00 00  ......^T........
   2A1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FC 23 A4  .........@....#.
   2A1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A1D0: 00 02 00 00 09 00 5F 54 02 00 00 01 01 00 00 00  ......_T........
   2A1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 FD 23 A4  .........@....#.
   2A1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A210: 00 02 00 00 09 00 60 54 02 00 00 01 01 00 00 00  ......`T........
   2A220: 10 00 00 00 00 02 00 00 00 40 00 04 98 F0 23 A4  .........@....#.
   2A230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A250: 00 02 00 00 09 00 61 54 02 00 00 01 01 00 00 00  ......aT........
   2A260: 10 00 00 00 00 02 00 00 00 40 00 04 18 FA 23 A4  .........@....#.
   2A270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A290: 00 02 00 00 09 00 62 54 02 00 00 01 01 00 00 00  ......bT........
   2A2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 FA 23 A4  .........@....#.
   2A2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A2D0: 00 02 00 00 09 00 63 54 02 00 00 01 01 00 00 00  ......cT........
   2A2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F7 23 A4  .........@....#.
   2A2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A310: 00 02 00 00 09 00 64 54 02 00 00 01 01 00 00 00  ......dT........
   2A320: 10 00 00 00 00 02 00 00 00 40 00 04 98 F9 23 A4  .........@....#.
   2A330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A350: 00 02 00 00 09 00 65 54 02 00 00 01 01 00 00 00  ......eT........
   2A360: 10 00 00 00 00 02 00 00 00 40 00 04 18 F8 23 A4  .........@....#.
   2A370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A390: 00 02 00 00 09 00 66 54 02 00 00 01 01 00 00 00  ......fT........
   2A3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F8 23 A4  .........@....#.
   2A3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A3D0: 00 02 00 00 09 00 67 54 02 00 00 01 01 00 00 00  ......gT........
   2A3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F9 23 A4  .........@....#.
   2A3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A410: 00 02 00 00 09 00 68 54 02 00 00 01 01 00 00 00  ......hT........
   2A420: 10 00 00 00 00 02 00 00 00 40 00 04 18 F1 23 A4  .........@....#.
   2A430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A450: 00 02 00 00 09 00 69 54 02 00 00 01 01 00 00 00  ......iT........
   2A460: 10 00 00 00 00 02 00 00 00 40 00 04 18 F7 23 A4  .........@....#.
   2A470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A490: 00 02 00 00 09 00 6A 54 02 00 00 01 01 00 00 00  ......jT........
   2A4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F5 23 A4  .........@....#.
   2A4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A4D0: 00 02 00 00 09 00 6B 54 02 00 00 01 01 00 00 00  ......kT........
   2A4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F6 23 A4  .........@....#.
   2A4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A510: 00 02 00 00 09 00 6C 54 02 00 00 01 01 00 00 00  ......lT........
   2A520: 10 00 00 00 00 02 00 00 00 40 00 04 98 F6 23 A4  .........@....#.
   2A530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A550: 00 02 00 00 09 00 6D 54 02 00 00 01 01 00 00 00  ......mT........
   2A560: 10 00 00 00 00 02 00 00 00 40 00 04 98 F1 23 A4  .........@....#.
   2A570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A590: 00 02 00 00 09 00 6E 54 02 00 00 01 01 00 00 00  ......nT........
   2A5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F4 23 A4  .........@....#.
   2A5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A5D0: 00 02 00 00 09 00 6F 54 02 00 00 01 01 00 00 00  ......oT........
   2A5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F5 23 A4  .........@....#.
   2A5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A610: 00 02 00 00 09 00 70 54 02 00 00 01 01 00 00 00  ......pT........
   2A620: 10 00 00 00 00 02 00 00 00 40 00 04 18 F2 23 A4  .........@....#.
   2A630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A650: 00 02 00 00 09 00 71 54 02 00 00 01 01 00 00 00  ......qT........
   2A660: 10 00 00 00 00 02 00 00 00 40 00 04 18 F4 23 A4  .........@....#.
   2A670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A690: 00 02 00 00 09 00 72 54 02 00 00 01 01 00 00 00  ......rT........
   2A6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 F2 23 A4  .........@....#.
   2A6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A6D0: 00 02 00 00 09 00 73 54 02 00 00 01 01 00 00 00  ......sT........
   2A6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 F3 23 A4  .........@....#.
   2A6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A710: 00 02 00 00 09 00 74 54 02 00 00 01 01 00 00 00  ......tT........
   2A720: 10 00 00 00 00 02 00 00 00 40 00 04 98 F3 23 A4  .........@....#.
   2A730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A750: 00 02 00 00 09 00 75 54 02 00 00 01 01 00 00 00  ......uT........
   2A760: 10 00 00 00 00 02 00 00 00 40 00 04 18 E0 23 A4  .........@....#.
   2A770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A790: 00 02 00 00 09 00 76 54 02 00 00 01 01 00 00 00  ......vT........
   2A7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 EF 23 A4  .........@....#.
   2A7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A7D0: 00 02 00 00 09 00 77 54 02 00 00 01 01 00 00 00  ......wT........
   2A7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EF 23 A4  .........@....#.
   2A7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A810: 00 02 00 00 09 00 78 54 02 00 00 01 01 00 00 00  ......xT........
   2A820: 10 00 00 00 00 02 00 00 00 40 00 04 18 EB 23 A4  .........@....#.
   2A830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A850: 00 02 00 00 09 00 79 54 02 00 00 01 01 00 00 00  ......yT........
   2A860: 10 00 00 00 00 02 00 00 00 40 00 04 18 EE 23 A4  .........@....#.
   2A870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A890: 00 02 00 00 09 00 7A 54 02 00 00 01 01 00 00 00  ......zT........
   2A8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EE 23 A4  .........@....#.
   2A8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A8D0: 00 02 00 00 09 00 7B 54 02 00 00 01 01 00 00 00  ......{T........
   2A8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EB 23 A4  .........@....#.
   2A8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A910: 00 02 00 00 09 00 7C 54 02 00 00 01 01 00 00 00  ......|T........
   2A920: 10 00 00 00 00 02 00 00 00 40 00 04 98 ED 23 A4  .........@....#.
   2A930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A950: 00 02 00 00 09 00 7D 54 02 00 00 01 01 00 00 00  ......}T........
   2A960: 10 00 00 00 00 02 00 00 00 40 00 04 18 EC 23 A4  .........@....#.
   2A970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A990: 00 02 00 00 09 00 7E 54 02 00 00 01 01 00 00 00  ......~T........
   2A9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EC 23 A4  .........@....#.
   2A9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2A9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2A9D0: 00 02 00 00 09 00 7F 54 02 00 00 01 01 00 00 00  .......T........
   2A9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 ED 23 A4  .........@....#.
   2A9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AA10: 00 02 00 00 09 00 80 54 02 00 00 01 01 00 00 00  .......T........
   2AA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E0 23 A4  .........@....#.
   2AA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AA50: 00 02 00 00 09 00 81 54 02 00 00 01 01 00 00 00  .......T........
   2AA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 EA 23 A4  .........@....#.
   2AA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AA90: 00 02 00 00 09 00 82 54 02 00 00 01 01 00 00 00  .......T........
   2AAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 EA 23 A4  .........@....#.
   2AAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AAD0: 00 02 00 00 09 00 83 54 02 00 00 01 01 00 00 00  .......T........
   2AAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E7 23 A4  .........@....#.
   2AAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AB10: 00 02 00 00 09 00 84 54 02 00 00 01 01 00 00 00  .......T........
   2AB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E9 23 A4  .........@....#.
   2AB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AB50: 00 02 00 00 09 00 85 54 02 00 00 01 01 00 00 00  .......T........
   2AB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E8 23 A4  .........@....#.
   2AB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AB90: 00 02 00 00 09 00 86 54 02 00 00 01 01 00 00 00  .......T........
   2ABA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E8 23 A4  .........@....#.
   2ABB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2ABC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2ABD0: 00 02 00 00 09 00 87 54 02 00 00 01 01 00 00 00  .......T........
   2ABE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E9 23 A4  .........@....#.
   2ABF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AC10: 00 02 00 00 09 00 88 54 02 00 00 01 01 00 00 00  .......T........
   2AC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 E1 23 A4  .........@....#.
   2AC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AC50: 00 02 00 00 09 00 89 54 02 00 00 01 01 00 00 00  .......T........
   2AC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E7 23 A4  .........@....#.
   2AC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AC90: 00 02 00 00 09 00 8A 54 02 00 00 01 01 00 00 00  .......T........
   2ACA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E5 23 A4  .........@....#.
   2ACB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2ACC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2ACD0: 00 02 00 00 09 00 8B 54 02 00 00 01 01 00 00 00  .......T........
   2ACE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E6 23 A4  .........@....#.
   2ACF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AD10: 00 02 00 00 09 00 8C 54 02 00 00 01 01 00 00 00  .......T........
   2AD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E6 23 A4  .........@....#.
   2AD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AD50: 00 02 00 00 09 00 8D 54 02 00 00 01 01 00 00 00  .......T........
   2AD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 E1 23 A4  .........@....#.
   2AD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AD90: 00 02 00 00 09 00 8E 54 02 00 00 01 01 00 00 00  .......T........
   2ADA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E4 23 A4  .........@....#.
   2ADB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2ADC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2ADD0: 00 02 00 00 09 00 8F 54 02 00 00 01 01 00 00 00  .......T........
   2ADE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E5 23 A4  .........@....#.
   2ADF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AE10: 00 02 00 00 09 00 90 54 02 00 00 01 01 00 00 00  .......T........
   2AE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 E2 23 A4  .........@....#.
   2AE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AE50: 00 02 00 00 09 00 91 54 02 00 00 01 01 00 00 00  .......T........
   2AE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 E4 23 A4  .........@....#.
   2AE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AE90: 00 02 00 00 09 00 92 54 02 00 00 01 01 00 00 00  .......T........
   2AEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 E2 23 A4  .........@....#.
   2AEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AED0: 00 02 00 00 09 00 93 54 02 00 00 01 01 00 00 00  .......T........
   2AEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 E3 23 A4  .........@....#.
   2AEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AF10: 00 02 00 00 09 00 94 54 02 00 00 01 01 00 00 00  .......T........
   2AF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 E3 23 A4  .........@....#.
   2AF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AF50: 00 02 00 00 09 00 95 54 02 00 00 01 01 00 00 00  .......T........
   2AF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 D0 23 A4  .........@....#.
   2AF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AF90: 00 02 00 00 09 00 96 54 02 00 00 01 01 00 00 00  .......T........
   2AFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DF 23 A4  .........@....#.
   2AFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2AFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2AFD0: 00 02 00 00 09 00 97 54 02 00 00 01 01 00 00 00  .......T........
   2AFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DF 23 A4  .........@....#.
   2AFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B010: 00 02 00 00 09 00 98 54 02 00 00 01 01 00 00 00  .......T........
   2B020: 10 00 00 00 00 02 00 00 00 40 00 04 18 DB 23 A4  .........@....#.
   2B030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B050: 00 02 00 00 09 00 99 54 02 00 00 01 01 00 00 00  .......T........
   2B060: 10 00 00 00 00 02 00 00 00 40 00 04 18 DE 23 A4  .........@....#.
   2B070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B090: 00 02 00 00 09 00 9A 54 02 00 00 01 01 00 00 00  .......T........
   2B0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DE 23 A4  .........@....#.
   2B0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B0D0: 00 02 00 00 09 00 9B 54 02 00 00 01 01 00 00 00  .......T........
   2B0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DB 23 A4  .........@....#.
   2B0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B110: 00 02 00 00 09 00 9C 54 02 00 00 01 01 00 00 00  .......T........
   2B120: 10 00 00 00 00 02 00 00 00 40 00 04 98 DD 23 A4  .........@....#.
   2B130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B150: 00 02 00 00 09 00 9D 54 02 00 00 01 01 00 00 00  .......T........
   2B160: 10 00 00 00 00 02 00 00 00 40 00 04 18 DC 23 A4  .........@....#.
   2B170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B190: 00 02 00 00 09 00 9E 54 02 00 00 01 01 00 00 00  .......T........
   2B1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DC 23 A4  .........@....#.
   2B1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B1D0: 00 02 00 00 09 00 9F 54 02 00 00 01 01 00 00 00  .......T........
   2B1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 DD 23 A4  .........@....#.
   2B1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B210: 00 02 00 00 09 00 A0 54 02 00 00 01 01 00 00 00  .......T........
   2B220: 10 00 00 00 00 02 00 00 00 40 00 04 98 D0 23 A4  .........@....#.
   2B230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B250: 00 02 00 00 09 00 A1 54 02 00 00 01 01 00 00 00  .......T........
   2B260: 10 00 00 00 00 02 00 00 00 40 00 04 18 DA 23 A4  .........@....#.
   2B270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B290: 00 02 00 00 09 00 A2 54 02 00 00 01 01 00 00 00  .......T........
   2B2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 DA 23 A4  .........@....#.
   2B2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B2D0: 00 02 00 00 09 00 A3 54 02 00 00 01 01 00 00 00  .......T........
   2B2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D7 23 A4  .........@....#.
   2B2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B310: 00 02 00 00 09 00 A4 54 02 00 00 01 01 00 00 00  .......T........
   2B320: 10 00 00 00 00 02 00 00 00 40 00 04 98 D9 23 A4  .........@....#.
   2B330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B350: 00 02 00 00 09 00 A5 54 02 00 00 01 01 00 00 00  .......T........
   2B360: 10 00 00 00 00 02 00 00 00 40 00 04 18 D8 23 A4  .........@....#.
   2B370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B390: 00 02 00 00 09 00 A6 54 02 00 00 01 01 00 00 00  .......T........
   2B3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D8 23 A4  .........@....#.
   2B3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B3D0: 00 02 00 00 09 00 A7 54 02 00 00 01 01 00 00 00  .......T........
   2B3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D9 23 A4  .........@....#.
   2B3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B410: 00 02 00 00 09 00 A8 54 02 00 00 01 01 00 00 00  .......T........
   2B420: 10 00 00 00 00 02 00 00 00 40 00 04 18 D1 23 A4  .........@....#.
   2B430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B450: 00 02 00 00 09 00 A9 54 02 00 00 01 01 00 00 00  .......T........
   2B460: 10 00 00 00 00 02 00 00 00 40 00 04 18 D7 23 A4  .........@....#.
   2B470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B490: 00 02 00 00 09 00 AA 54 02 00 00 01 01 00 00 00  .......T........
   2B4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D5 23 A4  .........@....#.
   2B4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B4D0: 00 02 00 00 09 00 AB 54 02 00 00 01 01 00 00 00  .......T........
   2B4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D6 23 A4  .........@....#.
   2B4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B510: 00 02 00 00 09 00 AC 54 02 00 00 01 01 00 00 00  .......T........
   2B520: 10 00 00 00 00 02 00 00 00 40 00 04 98 D6 23 A4  .........@....#.
   2B530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B550: 00 02 00 00 09 00 AD 54 02 00 00 01 01 00 00 00  .......T........
   2B560: 10 00 00 00 00 02 00 00 00 40 00 04 98 D1 23 A4  .........@....#.
   2B570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B590: 00 02 00 00 09 00 AE 54 02 00 00 01 01 00 00 00  .......T........
   2B5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D4 23 A4  .........@....#.
   2B5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B5D0: 00 02 00 00 09 00 AF 54 02 00 00 01 01 00 00 00  .......T........
   2B5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D5 23 A4  .........@....#.
   2B5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B610: 00 02 00 00 09 00 B0 54 02 00 00 01 01 00 00 00  .......T........
   2B620: 10 00 00 00 00 02 00 00 00 40 00 04 18 D2 23 A4  .........@....#.
   2B630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B650: 00 02 00 00 09 00 B1 54 02 00 00 01 01 00 00 00  .......T........
   2B660: 10 00 00 00 00 02 00 00 00 40 00 04 18 D4 23 A4  .........@....#.
   2B670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B690: 00 02 00 00 09 00 B2 54 02 00 00 01 01 00 00 00  .......T........
   2B6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 D2 23 A4  .........@....#.
   2B6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B6D0: 00 02 00 00 09 00 B3 54 02 00 00 01 01 00 00 00  .......T........
   2B6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 D3 23 A4  .........@....#.
   2B6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B710: 00 02 00 00 09 00 B4 54 02 00 00 01 01 00 00 00  .......T........
   2B720: 10 00 00 00 00 02 00 00 00 40 00 04 98 D3 23 A4  .........@....#.
   2B730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B750: 00 02 00 00 09 00 B5 54 02 00 00 01 01 00 00 00  .......T........
   2B760: 10 00 00 00 00 02 00 00 00 40 00 04 18 C0 23 A4  .........@....#.
   2B770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B790: 00 02 00 00 09 00 B6 54 02 00 00 01 01 00 00 00  .......T........
   2B7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CF 23 A4  .........@....#.
   2B7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B7D0: 00 02 00 00 09 00 B7 54 02 00 00 01 01 00 00 00  .......T........
   2B7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CF 23 A4  .........@....#.
   2B7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B810: 00 02 00 00 09 00 B8 54 02 00 00 01 01 00 00 00  .......T........
   2B820: 10 00 00 00 00 02 00 00 00 40 00 04 18 CB 23 A4  .........@....#.
   2B830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B850: 00 02 00 00 09 00 B9 54 02 00 00 01 01 00 00 00  .......T........
   2B860: 10 00 00 00 00 02 00 00 00 40 00 04 18 CE 23 A4  .........@....#.
   2B870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B890: 00 02 00 00 09 00 BA 54 02 00 00 01 01 00 00 00  .......T........
   2B8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CE 23 A4  .........@....#.
   2B8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B8D0: 00 02 00 00 09 00 BB 54 02 00 00 01 01 00 00 00  .......T........
   2B8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CB 23 A4  .........@....#.
   2B8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B910: 00 02 00 00 09 00 BC 54 02 00 00 01 01 00 00 00  .......T........
   2B920: 10 00 00 00 00 02 00 00 00 40 00 04 98 CD 23 A4  .........@....#.
   2B930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B950: 00 02 00 00 09 00 BD 54 02 00 00 01 01 00 00 00  .......T........
   2B960: 10 00 00 00 00 02 00 00 00 40 00 04 18 CC 23 A4  .........@....#.
   2B970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B990: 00 02 00 00 09 00 BE 54 02 00 00 01 01 00 00 00  .......T........
   2B9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CC 23 A4  .........@....#.
   2B9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2B9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2B9D0: 00 02 00 00 09 00 BF 54 02 00 00 01 01 00 00 00  .......T........
   2B9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 CD 23 A4  .........@....#.
   2B9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BA10: 00 02 00 00 09 00 C0 54 02 00 00 01 01 00 00 00  .......T........
   2BA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C0 23 A4  .........@....#.
   2BA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BA50: 00 02 00 00 09 00 C1 54 02 00 00 01 01 00 00 00  .......T........
   2BA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 CA 23 A4  .........@....#.
   2BA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BA90: 00 02 00 00 09 00 C2 54 02 00 00 01 01 00 00 00  .......T........
   2BAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 CA 23 A4  .........@....#.
   2BAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BAD0: 00 02 00 00 09 00 C3 54 02 00 00 01 01 00 00 00  .......T........
   2BAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C7 23 A4  .........@....#.
   2BAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BB10: 00 02 00 00 09 00 C4 54 02 00 00 01 01 00 00 00  .......T........
   2BB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C9 23 A4  .........@....#.
   2BB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BB50: 00 02 00 00 09 00 C5 54 02 00 00 01 01 00 00 00  .......T........
   2BB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C8 23 A4  .........@....#.
   2BB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BB90: 00 02 00 00 09 00 C6 54 02 00 00 01 01 00 00 00  .......T........
   2BBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C8 23 A4  .........@....#.
   2BBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BBD0: 00 02 00 00 09 00 C7 54 02 00 00 01 01 00 00 00  .......T........
   2BBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C9 23 A4  .........@....#.
   2BBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BC10: 00 02 00 00 09 00 C8 54 02 00 00 01 01 00 00 00  .......T........
   2BC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 C1 23 A4  .........@....#.
   2BC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BC50: 00 02 00 00 09 00 C9 54 02 00 00 01 01 00 00 00  .......T........
   2BC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C7 23 A4  .........@....#.
   2BC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BC90: 00 02 00 00 09 00 CA 54 02 00 00 01 01 00 00 00  .......T........
   2BCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C5 23 A4  .........@....#.
   2BCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BCD0: 00 02 00 00 09 00 CB 54 02 00 00 01 01 00 00 00  .......T........
   2BCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C6 23 A4  .........@....#.
   2BCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BD10: 00 02 00 00 09 00 CC 54 02 00 00 01 01 00 00 00  .......T........
   2BD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C6 23 A4  .........@....#.
   2BD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BD50: 00 02 00 00 09 00 CD 54 02 00 00 01 01 00 00 00  .......T........
   2BD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 C1 23 A4  .........@....#.
   2BD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BD90: 00 02 00 00 09 00 CE 54 02 00 00 01 01 00 00 00  .......T........
   2BDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C4 23 A4  .........@....#.
   2BDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BDD0: 00 02 00 00 09 00 CF 54 02 00 00 01 01 00 00 00  .......T........
   2BDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C5 23 A4  .........@....#.
   2BDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BE10: 00 02 00 00 09 00 D0 54 02 00 00 01 01 00 00 00  .......T........
   2BE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 C2 23 A4  .........@....#.
   2BE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BE50: 00 02 00 00 09 00 D1 54 02 00 00 01 01 00 00 00  .......T........
   2BE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 C4 23 A4  .........@....#.
   2BE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BE90: 00 02 00 00 09 00 D2 54 02 00 00 01 01 00 00 00  .......T........
   2BEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 C2 23 A4  .........@....#.
   2BEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BED0: 00 02 00 00 09 00 D3 54 02 00 00 01 01 00 00 00  .......T........
   2BEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 C3 23 A4  .........@....#.
   2BEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BF10: 00 02 00 00 09 00 D4 54 02 00 00 01 01 00 00 00  .......T........
   2BF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 C3 23 A4  .........@....#.
   2BF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BF50: 00 02 00 00 09 00 D5 54 02 00 00 01 01 00 00 00  .......T........
   2BF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 B0 23 A4  .........@....#.
   2BF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BF90: 00 02 00 00 09 00 D6 54 02 00 00 01 01 00 00 00  .......T........
   2BFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BF 23 A4  .........@....#.
   2BFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2BFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2BFD0: 00 02 00 00 09 00 D7 54 02 00 00 01 01 00 00 00  .......T........
   2BFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BF 23 A4  .........@....#.
   2BFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C010: 00 02 00 00 09 00 D8 54 02 00 00 01 01 00 00 00  .......T........
   2C020: 10 00 00 00 00 02 00 00 00 40 00 04 18 BB 23 A4  .........@....#.
   2C030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C050: 00 02 00 00 09 00 D9 54 02 00 00 01 01 00 00 00  .......T........
   2C060: 10 00 00 00 00 02 00 00 00 40 00 04 18 BE 23 A4  .........@....#.
   2C070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C090: 00 02 00 00 09 00 DA 54 02 00 00 01 01 00 00 00  .......T........
   2C0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BE 23 A4  .........@....#.
   2C0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C0D0: 00 02 00 00 09 00 DB 54 02 00 00 01 01 00 00 00  .......T........
   2C0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BB 23 A4  .........@....#.
   2C0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C110: 00 02 00 00 09 00 DC 54 02 00 00 01 01 00 00 00  .......T........
   2C120: 10 00 00 00 00 02 00 00 00 40 00 04 98 BD 23 A4  .........@....#.
   2C130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C150: 00 02 00 00 09 00 DD 54 02 00 00 01 01 00 00 00  .......T........
   2C160: 10 00 00 00 00 02 00 00 00 40 00 04 18 BC 23 A4  .........@....#.
   2C170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C190: 00 02 00 00 09 00 DE 54 02 00 00 01 01 00 00 00  .......T........
   2C1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BC 23 A4  .........@....#.
   2C1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C1D0: 00 02 00 00 09 00 DF 54 02 00 00 01 01 00 00 00  .......T........
   2C1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 BD 23 A4  .........@....#.
   2C1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C210: 00 02 00 00 09 00 E0 54 02 00 00 01 01 00 00 00  .......T........
   2C220: 10 00 00 00 00 02 00 00 00 40 00 04 98 B0 23 A4  .........@....#.
   2C230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C250: 00 02 00 00 09 00 E1 54 02 00 00 01 01 00 00 00  .......T........
   2C260: 10 00 00 00 00 02 00 00 00 40 00 04 18 BA 23 A4  .........@....#.
   2C270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C290: 00 02 00 00 09 00 E2 54 02 00 00 01 01 00 00 00  .......T........
   2C2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 BA 23 A4  .........@....#.
   2C2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C2D0: 00 02 00 00 09 00 E3 54 02 00 00 01 01 00 00 00  .......T........
   2C2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B7 23 A4  .........@....#.
   2C2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C310: 00 02 00 00 09 00 E4 54 02 00 00 01 01 00 00 00  .......T........
   2C320: 10 00 00 00 00 02 00 00 00 40 00 04 98 B9 23 A4  .........@....#.
   2C330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C350: 00 02 00 00 09 00 E5 54 02 00 00 01 01 00 00 00  .......T........
   2C360: 10 00 00 00 00 02 00 00 00 40 00 04 18 B8 23 A4  .........@....#.
   2C370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C390: 00 02 00 00 09 00 E6 54 02 00 00 01 01 00 00 00  .......T........
   2C3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B8 23 A4  .........@....#.
   2C3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C3D0: 00 02 00 00 09 00 E7 54 02 00 00 01 01 00 00 00  .......T........
   2C3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B9 23 A4  .........@....#.
   2C3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C410: 00 02 00 00 09 00 E8 54 02 00 00 01 01 00 00 00  .......T........
   2C420: 10 00 00 00 00 02 00 00 00 40 00 04 18 B1 23 A4  .........@....#.
   2C430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C450: 00 02 00 00 09 00 E9 54 02 00 00 01 01 00 00 00  .......T........
   2C460: 10 00 00 00 00 02 00 00 00 40 00 04 18 B7 23 A4  .........@....#.
   2C470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C490: 00 02 00 00 09 00 EA 54 02 00 00 01 01 00 00 00  .......T........
   2C4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B5 23 A4  .........@....#.
   2C4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C4D0: 00 02 00 00 09 00 EB 54 02 00 00 01 01 00 00 00  .......T........
   2C4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B6 23 A4  .........@....#.
   2C4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C510: 00 02 00 00 09 00 EC 54 02 00 00 01 01 00 00 00  .......T........
   2C520: 10 00 00 00 00 02 00 00 00 40 00 04 98 B6 23 A4  .........@....#.
   2C530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C550: 00 02 00 00 09 00 ED 54 02 00 00 01 01 00 00 00  .......T........
   2C560: 10 00 00 00 00 02 00 00 00 40 00 04 98 B1 23 A4  .........@....#.
   2C570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C590: 00 02 00 00 09 00 EE 54 02 00 00 01 01 00 00 00  .......T........
   2C5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B4 23 A4  .........@....#.
   2C5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C5D0: 00 02 00 00 09 00 EF 54 02 00 00 01 01 00 00 00  .......T........
   2C5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B5 23 A4  .........@....#.
   2C5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C610: 00 02 00 00 09 00 F0 54 02 00 00 01 01 00 00 00  .......T........
   2C620: 10 00 00 00 00 02 00 00 00 40 00 04 18 B2 23 A4  .........@....#.
   2C630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C650: 00 02 00 00 09 00 F1 54 02 00 00 01 01 00 00 00  .......T........
   2C660: 10 00 00 00 00 02 00 00 00 40 00 04 18 B4 23 A4  .........@....#.
   2C670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C690: 00 02 00 00 09 00 F2 54 02 00 00 01 01 00 00 00  .......T........
   2C6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 B2 23 A4  .........@....#.
   2C6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C6D0: 00 02 00 00 09 00 F3 54 02 00 00 01 01 00 00 00  .......T........
   2C6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 B3 23 A4  .........@....#.
   2C6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C710: 00 02 00 00 09 00 F4 54 02 00 00 01 01 00 00 00  .......T........
   2C720: 10 00 00 00 00 02 00 00 00 40 00 04 98 B3 23 A4  .........@....#.
   2C730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C750: 00 02 00 00 09 00 F5 54 02 00 00 01 01 00 00 00  .......T........
   2C760: 10 00 00 00 00 02 00 00 00 40 00 04 18 A0 23 A4  .........@....#.
   2C770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C790: 00 02 00 00 09 00 F6 54 02 00 00 01 01 00 00 00  .......T........
   2C7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AF 23 A4  .........@....#.
   2C7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C7D0: 00 02 00 00 09 00 F7 54 02 00 00 01 01 00 00 00  .......T........
   2C7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AF 23 A4  .........@....#.
   2C7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C810: 00 02 00 00 09 00 F8 54 02 00 00 01 01 00 00 00  .......T........
   2C820: 10 00 00 00 00 02 00 00 00 40 00 04 18 AB 23 A4  .........@....#.
   2C830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C850: 00 02 00 00 09 00 F9 54 02 00 00 01 01 00 00 00  .......T........
   2C860: 10 00 00 00 00 02 00 00 00 40 00 04 18 AE 23 A4  .........@....#.
   2C870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C890: 00 02 00 00 09 00 FA 54 02 00 00 01 01 00 00 00  .......T........
   2C8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AE 23 A4  .........@....#.
   2C8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C8D0: 00 02 00 00 09 00 FB 54 02 00 00 01 01 00 00 00  .......T........
   2C8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AB 23 A4  .........@....#.
   2C8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C910: 00 02 00 00 09 00 FC 54 02 00 00 01 01 00 00 00  .......T........
   2C920: 10 00 00 00 00 02 00 00 00 40 00 04 98 AD 23 A4  .........@....#.
   2C930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C950: 00 02 00 00 09 00 FD 54 02 00 00 01 01 00 00 00  .......T........
   2C960: 10 00 00 00 00 02 00 00 00 40 00 04 18 AC 23 A4  .........@....#.
   2C970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C990: 00 02 00 00 09 00 FE 54 02 00 00 01 01 00 00 00  .......T........
   2C9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AC 23 A4  .........@....#.
   2C9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2C9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2C9D0: 00 02 00 00 09 00 FF 54 02 00 00 01 01 00 00 00  .......T........
   2C9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 AD 23 A4  .........@....#.
   2C9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CA10: 00 02 00 00 09 00 00 55 02 00 00 01 01 00 00 00  .......U........
   2CA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A0 23 A4  .........@....#.
   2CA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CA50: 00 02 00 00 09 00 01 55 02 00 00 01 01 00 00 00  .......U........
   2CA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 AA 23 A4  .........@....#.
   2CA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CA90: 00 02 00 00 09 00 02 55 02 00 00 01 01 00 00 00  .......U........
   2CAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 AA 23 A4  .........@....#.
   2CAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CAD0: 00 02 00 00 09 00 03 55 02 00 00 01 01 00 00 00  .......U........
   2CAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A7 23 A4  .........@....#.
   2CAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CB10: 00 02 00 00 09 00 04 55 02 00 00 01 01 00 00 00  .......U........
   2CB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A9 23 A4  .........@....#.
   2CB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CB50: 00 02 00 00 09 00 05 55 02 00 00 01 01 00 00 00  .......U........
   2CB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A8 23 A4  .........@....#.
   2CB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CB90: 00 02 00 00 09 00 06 55 02 00 00 01 01 00 00 00  .......U........
   2CBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A8 23 A4  .........@....#.
   2CBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CBD0: 00 02 00 00 09 00 07 55 02 00 00 01 01 00 00 00  .......U........
   2CBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A9 23 A4  .........@....#.
   2CBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CC10: 00 02 00 00 09 00 08 55 02 00 00 01 01 00 00 00  .......U........
   2CC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 A1 23 A4  .........@....#.
   2CC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CC50: 00 02 00 00 09 00 09 55 02 00 00 01 01 00 00 00  .......U........
   2CC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A7 23 A4  .........@....#.
   2CC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CC90: 00 02 00 00 09 00 0A 55 02 00 00 01 01 00 00 00  .......U........
   2CCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A5 23 A4  .........@....#.
   2CCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CCD0: 00 02 00 00 09 00 0B 55 02 00 00 01 01 00 00 00  .......U........
   2CCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A6 23 A4  .........@....#.
   2CCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CD10: 00 02 00 00 09 00 0C 55 02 00 00 01 01 00 00 00  .......U........
   2CD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A6 23 A4  .........@....#.
   2CD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CD50: 00 02 00 00 09 00 0D 55 02 00 00 01 01 00 00 00  .......U........
   2CD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 A1 23 A4  .........@....#.
   2CD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CD90: 00 02 00 00 09 00 0E 55 02 00 00 01 01 00 00 00  .......U........
   2CDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A4 23 A4  .........@....#.
   2CDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CDD0: 00 02 00 00 09 00 0F 55 02 00 00 01 01 00 00 00  .......U........
   2CDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A5 23 A4  .........@....#.
   2CDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CE10: 00 02 00 00 09 00 10 55 02 00 00 01 01 00 00 00  .......U........
   2CE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 A2 23 A4  .........@....#.
   2CE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CE50: 00 02 00 00 09 00 11 55 02 00 00 01 01 00 00 00  .......U........
   2CE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 A4 23 A4  .........@....#.
   2CE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CE90: 00 02 00 00 09 00 12 55 02 00 00 01 01 00 00 00  .......U........
   2CEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 A2 23 A4  .........@....#.
   2CEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CED0: 00 02 00 00 09 00 13 55 02 00 00 01 01 00 00 00  .......U........
   2CEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 A3 23 A4  .........@....#.
   2CEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CF10: 00 02 00 00 09 00 14 55 02 00 00 01 01 00 00 00  .......U........
   2CF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 A3 23 A4  .........@....#.
   2CF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CF50: 00 02 00 00 09 00 15 55 02 00 00 01 01 00 00 00  .......U........
   2CF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 90 23 A4  .........@....#.
   2CF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CF90: 00 02 00 00 09 00 16 55 02 00 00 01 01 00 00 00  .......U........
   2CFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9F 23 A4  .........@....#.
   2CFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2CFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2CFD0: 00 02 00 00 09 00 17 55 02 00 00 01 01 00 00 00  .......U........
   2CFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9F 23 A4  .........@....#.
   2CFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D010: 00 02 00 00 09 00 18 55 02 00 00 01 01 00 00 00  .......U........
   2D020: 10 00 00 00 00 02 00 00 00 40 00 04 18 9B 23 A4  .........@....#.
   2D030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D050: 00 02 00 00 09 00 19 55 02 00 00 01 01 00 00 00  .......U........
   2D060: 10 00 00 00 00 02 00 00 00 40 00 04 18 9E 23 A4  .........@....#.
   2D070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D090: 00 02 00 00 09 00 1A 55 02 00 00 01 01 00 00 00  .......U........
   2D0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9E 23 A4  .........@....#.
   2D0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D0D0: 00 02 00 00 09 00 1B 55 02 00 00 01 01 00 00 00  .......U........
   2D0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9B 23 A4  .........@....#.
   2D0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D110: 00 02 00 00 09 00 1C 55 02 00 00 01 01 00 00 00  .......U........
   2D120: 10 00 00 00 00 02 00 00 00 40 00 04 98 9D 23 A4  .........@....#.
   2D130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D150: 00 02 00 00 09 00 1D 55 02 00 00 01 01 00 00 00  .......U........
   2D160: 10 00 00 00 00 02 00 00 00 40 00 04 18 9C 23 A4  .........@....#.
   2D170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D190: 00 02 00 00 09 00 1E 55 02 00 00 01 01 00 00 00  .......U........
   2D1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9C 23 A4  .........@....#.
   2D1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D1D0: 00 02 00 00 09 00 1F 55 02 00 00 01 01 00 00 00  .......U........
   2D1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 9D 23 A4  .........@....#.
   2D1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D210: 00 02 00 00 09 00 20 55 02 00 00 01 01 00 00 00  ...... U........
   2D220: 10 00 00 00 00 02 00 00 00 40 00 04 98 90 23 A4  .........@....#.
   2D230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D250: 00 02 00 00 09 00 21 55 02 00 00 01 01 00 00 00  ......!U........
   2D260: 10 00 00 00 00 02 00 00 00 40 00 04 18 9A 23 A4  .........@....#.
   2D270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D290: 00 02 00 00 09 00 22 55 02 00 00 01 01 00 00 00  ......"U........
   2D2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 9A 23 A4  .........@....#.
   2D2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D2D0: 00 02 00 00 09 00 23 55 02 00 00 01 01 00 00 00  ......#U........
   2D2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 97 23 A4  .........@....#.
   2D2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D310: 00 02 00 00 09 00 24 55 02 00 00 01 01 00 00 00  ......$U........
   2D320: 10 00 00 00 00 02 00 00 00 40 00 04 98 99 23 A4  .........@....#.
   2D330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D350: 00 02 00 00 09 00 25 55 02 00 00 01 01 00 00 00  ......%U........
   2D360: 10 00 00 00 00 02 00 00 00 40 00 04 18 98 23 A4  .........@....#.
   2D370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D390: 00 02 00 00 09 00 26 55 02 00 00 01 01 00 00 00  ......&U........
   2D3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 98 23 A4  .........@....#.
   2D3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D3D0: 00 02 00 00 09 00 27 55 02 00 00 01 01 00 00 00  ......'U........
   2D3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 99 23 A4  .........@....#.
   2D3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D410: 00 02 00 00 09 00 28 55 02 00 00 01 01 00 00 00  ......(U........
   2D420: 10 00 00 00 00 02 00 00 00 40 00 04 18 91 23 A4  .........@....#.
   2D430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D450: 00 02 00 00 09 00 29 55 02 00 00 01 01 00 00 00  ......)U........
   2D460: 10 00 00 00 00 02 00 00 00 40 00 04 18 97 23 A4  .........@....#.
   2D470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D490: 00 02 00 00 09 00 2A 55 02 00 00 01 01 00 00 00  ......*U........
   2D4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 95 23 A4  .........@....#.
   2D4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D4D0: 00 02 00 00 09 00 2B 55 02 00 00 01 01 00 00 00  ......+U........
   2D4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 96 23 A4  .........@....#.
   2D4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D510: 00 02 00 00 09 00 2C 55 02 00 00 01 01 00 00 00  ......,U........
   2D520: 10 00 00 00 00 02 00 00 00 40 00 04 98 96 23 A4  .........@....#.
   2D530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D550: 00 02 00 00 09 00 2D 55 02 00 00 01 01 00 00 00  ......-U........
   2D560: 10 00 00 00 00 02 00 00 00 40 00 04 98 91 23 A4  .........@....#.
   2D570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D590: 00 02 00 00 09 00 2E 55 02 00 00 01 01 00 00 00  .......U........
   2D5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 94 23 A4  .........@....#.
   2D5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D5D0: 00 02 00 00 09 00 2F 55 02 00 00 01 01 00 00 00  ....../U........
   2D5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 95 23 A4  .........@....#.
   2D5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D610: 00 02 00 00 09 00 30 55 02 00 00 01 01 00 00 00  ......0U........
   2D620: 10 00 00 00 00 02 00 00 00 40 00 04 18 92 23 A4  .........@....#.
   2D630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D650: 00 02 00 00 09 00 31 55 02 00 00 01 01 00 00 00  ......1U........
   2D660: 10 00 00 00 00 02 00 00 00 40 00 04 18 94 23 A4  .........@....#.
   2D670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D690: 00 02 00 00 09 00 32 55 02 00 00 01 01 00 00 00  ......2U........
   2D6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 92 23 A4  .........@....#.
   2D6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D6D0: 00 02 00 00 09 00 33 55 02 00 00 01 01 00 00 00  ......3U........
   2D6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 93 23 A4  .........@....#.
   2D6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D710: 00 02 00 00 09 00 34 55 02 00 00 01 01 00 00 00  ......4U........
   2D720: 10 00 00 00 00 02 00 00 00 40 00 04 98 93 23 A4  .........@....#.
   2D730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D750: 00 02 00 00 09 00 35 55 02 00 00 01 01 00 00 00  ......5U........
   2D760: 10 00 00 00 00 02 00 00 00 40 00 04 18 80 23 A4  .........@....#.
   2D770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D790: 00 02 00 00 09 00 36 55 02 00 00 01 01 00 00 00  ......6U........
   2D7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8F 23 A4  .........@....#.
   2D7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D7D0: 00 02 00 00 09 00 37 55 02 00 00 01 01 00 00 00  ......7U........
   2D7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8F 23 A4  .........@....#.
   2D7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D810: 00 02 00 00 09 00 38 55 02 00 00 01 01 00 00 00  ......8U........
   2D820: 10 00 00 00 00 02 00 00 00 40 00 04 18 8B 23 A4  .........@....#.
   2D830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D850: 00 02 00 00 09 00 39 55 02 00 00 01 01 00 00 00  ......9U........
   2D860: 10 00 00 00 00 02 00 00 00 40 00 04 18 8E 23 A4  .........@....#.
   2D870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D890: 00 02 00 00 09 00 3A 55 02 00 00 01 01 00 00 00  ......:U........
   2D8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8E 23 A4  .........@....#.
   2D8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D8D0: 00 02 00 00 09 00 3B 55 02 00 00 01 01 00 00 00  ......;U........
   2D8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8B 23 A4  .........@....#.
   2D8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D910: 00 02 00 00 09 00 3C 55 02 00 00 01 01 00 00 00  ......<U........
   2D920: 10 00 00 00 00 02 00 00 00 40 00 04 98 8D 23 A4  .........@....#.
   2D930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D950: 00 02 00 00 09 00 3D 55 02 00 00 01 01 00 00 00  ......=U........
   2D960: 10 00 00 00 00 02 00 00 00 40 00 04 18 8C 23 A4  .........@....#.
   2D970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D990: 00 02 00 00 09 00 3E 55 02 00 00 01 01 00 00 00  ......>U........
   2D9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8C 23 A4  .........@....#.
   2D9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2D9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2D9D0: 00 02 00 00 09 00 3F 55 02 00 00 01 01 00 00 00  ......?U........
   2D9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 8D 23 A4  .........@....#.
   2D9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DA10: 00 02 00 00 09 00 40 55 02 00 00 01 01 00 00 00  ......@U........
   2DA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 80 23 A4  .........@....#.
   2DA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DA50: 00 02 00 00 09 00 41 55 02 00 00 01 01 00 00 00  ......AU........
   2DA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 8A 23 A4  .........@....#.
   2DA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DA90: 00 02 00 00 09 00 42 55 02 00 00 01 01 00 00 00  ......BU........
   2DAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 8A 23 A4  .........@....#.
   2DAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DAD0: 00 02 00 00 09 00 43 55 02 00 00 01 01 00 00 00  ......CU........
   2DAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 87 23 A4  .........@....#.
   2DAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DB10: 00 02 00 00 09 00 44 55 02 00 00 01 01 00 00 00  ......DU........
   2DB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 89 23 A4  .........@....#.
   2DB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DB50: 00 02 00 00 09 00 45 55 02 00 00 01 01 00 00 00  ......EU........
   2DB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 88 23 A4  .........@....#.
   2DB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DB90: 00 02 00 00 09 00 46 55 02 00 00 01 01 00 00 00  ......FU........
   2DBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 88 23 A4  .........@....#.
   2DBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DBD0: 00 02 00 00 09 00 47 55 02 00 00 01 01 00 00 00  ......GU........
   2DBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 89 23 A4  .........@....#.
   2DBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DC10: 00 02 00 00 09 00 48 55 02 00 00 01 01 00 00 00  ......HU........
   2DC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 81 23 A4  .........@....#.
   2DC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DC50: 00 02 00 00 09 00 49 55 02 00 00 01 01 00 00 00  ......IU........
   2DC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 87 23 A4  .........@....#.
   2DC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DC90: 00 02 00 00 09 00 4A 55 02 00 00 01 01 00 00 00  ......JU........
   2DCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 85 23 A4  .........@....#.
   2DCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DCD0: 00 02 00 00 09 00 4B 55 02 00 00 01 01 00 00 00  ......KU........
   2DCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 86 23 A4  .........@....#.
   2DCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DD10: 00 02 00 00 09 00 4C 55 02 00 00 01 01 00 00 00  ......LU........
   2DD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 86 23 A4  .........@....#.
   2DD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DD50: 00 02 00 00 09 00 4D 55 02 00 00 01 01 00 00 00  ......MU........
   2DD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 81 23 A4  .........@....#.
   2DD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DD90: 00 02 00 00 09 00 4E 55 02 00 00 01 01 00 00 00  ......NU........
   2DDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 84 23 A4  .........@....#.
   2DDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DDD0: 00 02 00 00 09 00 4F 55 02 00 00 01 01 00 00 00  ......OU........
   2DDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 85 23 A4  .........@....#.
   2DDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DE10: 00 02 00 00 09 00 50 55 02 00 00 01 01 00 00 00  ......PU........
   2DE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 82 23 A4  .........@....#.
   2DE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DE50: 00 02 00 00 09 00 51 55 02 00 00 01 01 00 00 00  ......QU........
   2DE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 84 23 A4  .........@....#.
   2DE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DE90: 00 02 00 00 09 00 52 55 02 00 00 01 01 00 00 00  ......RU........
   2DEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 82 23 A4  .........@....#.
   2DEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DED0: 00 02 00 00 09 00 53 55 02 00 00 01 01 00 00 00  ......SU........
   2DEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 83 23 A4  .........@....#.
   2DEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DF10: 00 02 00 00 09 00 54 55 02 00 00 01 01 00 00 00  ......TU........
   2DF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 83 23 A4  .........@....#.
   2DF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DF50: 00 02 00 00 09 00 55 55 02 00 00 01 01 00 00 00  ......UU........
   2DF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 70 23 A4  .........@...p#.
   2DF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DF90: 00 02 00 00 09 00 56 55 02 00 00 01 01 00 00 00  ......VU........
   2DFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7F 23 A4  .........@....#.
   2DFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2DFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2DFD0: 00 02 00 00 09 00 57 55 02 00 00 01 01 00 00 00  ......WU........
   2DFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7F 23 A4  .........@....#.
   2DFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E010: 00 02 00 00 09 00 58 55 02 00 00 01 01 00 00 00  ......XU........
   2E020: 10 00 00 00 00 02 00 00 00 40 00 04 18 7B 23 A4  .........@...{#.
   2E030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E050: 00 02 00 00 09 00 59 55 02 00 00 01 01 00 00 00  ......YU........
   2E060: 10 00 00 00 00 02 00 00 00 40 00 04 18 7E 23 A4  .........@...~#.
   2E070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E090: 00 02 00 00 09 00 5A 55 02 00 00 01 01 00 00 00  ......ZU........
   2E0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7E 23 A4  .........@...~#.
   2E0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E0D0: 00 02 00 00 09 00 5B 55 02 00 00 01 01 00 00 00  ......[U........
   2E0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7B 23 A4  .........@...{#.
   2E0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E110: 00 02 00 00 09 00 5C 55 02 00 00 01 01 00 00 00  ......\U........
   2E120: 10 00 00 00 00 02 00 00 00 40 00 04 98 7D 23 A4  .........@...}#.
   2E130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E150: 00 02 00 00 09 00 5D 55 02 00 00 01 01 00 00 00  ......]U........
   2E160: 10 00 00 00 00 02 00 00 00 40 00 04 18 7C 23 A4  .........@...|#.
   2E170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E190: 00 02 00 00 09 00 5E 55 02 00 00 01 01 00 00 00  ......^U........
   2E1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7C 23 A4  .........@...|#.
   2E1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E1D0: 00 02 00 00 09 00 5F 55 02 00 00 01 01 00 00 00  ......_U........
   2E1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 7D 23 A4  .........@...}#.
   2E1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E210: 00 02 00 00 09 00 60 55 02 00 00 01 01 00 00 00  ......`U........
   2E220: 10 00 00 00 00 02 00 00 00 40 00 04 98 70 23 A4  .........@...p#.
   2E230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E250: 00 02 00 00 09 00 61 55 02 00 00 01 01 00 00 00  ......aU........
   2E260: 10 00 00 00 00 02 00 00 00 40 00 04 18 7A 23 A4  .........@...z#.
   2E270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E290: 00 02 00 00 09 00 62 55 02 00 00 01 01 00 00 00  ......bU........
   2E2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 7A 23 A4  .........@...z#.
   2E2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E2D0: 00 02 00 00 09 00 63 55 02 00 00 01 01 00 00 00  ......cU........
   2E2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 77 23 A4  .........@...w#.
   2E2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E310: 00 02 00 00 09 00 64 55 02 00 00 01 01 00 00 00  ......dU........
   2E320: 10 00 00 00 00 02 00 00 00 40 00 04 98 79 23 A4  .........@...y#.
   2E330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E350: 00 02 00 00 09 00 65 55 02 00 00 01 01 00 00 00  ......eU........
   2E360: 10 00 00 00 00 02 00 00 00 40 00 04 18 78 23 A4  .........@...x#.
   2E370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E390: 00 02 00 00 09 00 66 55 02 00 00 01 01 00 00 00  ......fU........
   2E3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 78 23 A4  .........@...x#.
   2E3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E3D0: 00 02 00 00 09 00 67 55 02 00 00 01 01 00 00 00  ......gU........
   2E3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 79 23 A4  .........@...y#.
   2E3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E410: 00 02 00 00 09 00 68 55 02 00 00 01 01 00 00 00  ......hU........
   2E420: 10 00 00 00 00 02 00 00 00 40 00 04 18 71 23 A4  .........@...q#.
   2E430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E450: 00 02 00 00 09 00 69 55 02 00 00 01 01 00 00 00  ......iU........
   2E460: 10 00 00 00 00 02 00 00 00 40 00 04 18 77 23 A4  .........@...w#.
   2E470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E490: 00 02 00 00 09 00 6A 55 02 00 00 01 01 00 00 00  ......jU........
   2E4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 75 23 A4  .........@...u#.
   2E4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E4D0: 00 02 00 00 09 00 6B 55 02 00 00 01 01 00 00 00  ......kU........
   2E4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 76 23 A4  .........@...v#.
   2E4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E510: 00 02 00 00 09 00 6C 55 02 00 00 01 01 00 00 00  ......lU........
   2E520: 10 00 00 00 00 02 00 00 00 40 00 04 98 76 23 A4  .........@...v#.
   2E530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E550: 00 02 00 00 09 00 6D 55 02 00 00 01 01 00 00 00  ......mU........
   2E560: 10 00 00 00 00 02 00 00 00 40 00 04 98 71 23 A4  .........@...q#.
   2E570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E590: 00 02 00 00 09 00 6E 55 02 00 00 01 01 00 00 00  ......nU........
   2E5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 74 23 A4  .........@...t#.
   2E5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E5D0: 00 02 00 00 09 00 6F 55 02 00 00 01 01 00 00 00  ......oU........
   2E5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 75 23 A4  .........@...u#.
   2E5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E610: 00 02 00 00 09 00 70 55 02 00 00 01 01 00 00 00  ......pU........
   2E620: 10 00 00 00 00 02 00 00 00 40 00 04 18 72 23 A4  .........@...r#.
   2E630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E650: 00 02 00 00 09 00 71 55 02 00 00 01 01 00 00 00  ......qU........
   2E660: 10 00 00 00 00 02 00 00 00 40 00 04 18 74 23 A4  .........@...t#.
   2E670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E690: 00 02 00 00 09 00 72 55 02 00 00 01 01 00 00 00  ......rU........
   2E6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 72 23 A4  .........@...r#.
   2E6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E6D0: 00 02 00 00 09 00 73 55 02 00 00 01 01 00 00 00  ......sU........
   2E6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 73 23 A4  .........@...s#.
   2E6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E710: 00 02 00 00 09 00 74 55 02 00 00 01 01 00 00 00  ......tU........
   2E720: 10 00 00 00 00 02 00 00 00 40 00 04 98 73 23 A4  .........@...s#.
   2E730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E750: 00 02 00 00 09 00 75 55 02 00 00 01 01 00 00 00  ......uU........
   2E760: 10 00 00 00 00 02 00 00 00 40 00 04 18 60 23 A4  .........@...`#.
   2E770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E790: 00 02 00 00 09 00 76 55 02 00 00 01 01 00 00 00  ......vU........
   2E7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6F 23 A4  .........@...o#.
   2E7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E7D0: 00 02 00 00 09 00 77 55 02 00 00 01 01 00 00 00  ......wU........
   2E7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6F 23 A4  .........@...o#.
   2E7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E810: 00 02 00 00 09 00 78 55 02 00 00 01 01 00 00 00  ......xU........
   2E820: 10 00 00 00 00 02 00 00 00 40 00 04 18 6B 23 A4  .........@...k#.
   2E830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E850: 00 02 00 00 09 00 79 55 02 00 00 01 01 00 00 00  ......yU........
   2E860: 10 00 00 00 00 02 00 00 00 40 00 04 18 6E 23 A4  .........@...n#.
   2E870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E890: 00 02 00 00 09 00 7A 55 02 00 00 01 01 00 00 00  ......zU........
   2E8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6E 23 A4  .........@...n#.
   2E8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E8D0: 00 02 00 00 09 00 7B 55 02 00 00 01 01 00 00 00  ......{U........
   2E8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6B 23 A4  .........@...k#.
   2E8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E910: 00 02 00 00 09 00 7C 55 02 00 00 01 01 00 00 00  ......|U........
   2E920: 10 00 00 00 00 02 00 00 00 40 00 04 98 6D 23 A4  .........@...m#.
   2E930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E950: 00 02 00 00 09 00 7D 55 02 00 00 01 01 00 00 00  ......}U........
   2E960: 10 00 00 00 00 02 00 00 00 40 00 04 18 6C 23 A4  .........@...l#.
   2E970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E990: 00 02 00 00 09 00 7E 55 02 00 00 01 01 00 00 00  ......~U........
   2E9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6C 23 A4  .........@...l#.
   2E9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2E9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2E9D0: 00 02 00 00 09 00 7F 55 02 00 00 01 01 00 00 00  .......U........
   2E9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 6D 23 A4  .........@...m#.
   2E9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EA10: 00 02 00 00 09 00 80 55 02 00 00 01 01 00 00 00  .......U........
   2EA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 60 23 A4  .........@...`#.
   2EA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EA50: 00 02 00 00 09 00 81 55 02 00 00 01 01 00 00 00  .......U........
   2EA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 6A 23 A4  .........@...j#.
   2EA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EA90: 00 02 00 00 09 00 82 55 02 00 00 01 01 00 00 00  .......U........
   2EAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 6A 23 A4  .........@...j#.
   2EAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EAD0: 00 02 00 00 09 00 83 55 02 00 00 01 01 00 00 00  .......U........
   2EAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 67 23 A4  .........@...g#.
   2EAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EB10: 00 02 00 00 09 00 84 55 02 00 00 01 01 00 00 00  .......U........
   2EB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 69 23 A4  .........@...i#.
   2EB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EB50: 00 02 00 00 09 00 85 55 02 00 00 01 01 00 00 00  .......U........
   2EB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 68 23 A4  .........@...h#.
   2EB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EB90: 00 02 00 00 09 00 86 55 02 00 00 01 01 00 00 00  .......U........
   2EBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 68 23 A4  .........@...h#.
   2EBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EBD0: 00 02 00 00 09 00 87 55 02 00 00 01 01 00 00 00  .......U........
   2EBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 69 23 A4  .........@...i#.
   2EBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EC10: 00 02 00 00 09 00 88 55 02 00 00 01 01 00 00 00  .......U........
   2EC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 61 23 A4  .........@...a#.
   2EC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EC50: 00 02 00 00 09 00 89 55 02 00 00 01 01 00 00 00  .......U........
   2EC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 67 23 A4  .........@...g#.
   2EC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EC90: 00 02 00 00 09 00 8A 55 02 00 00 01 01 00 00 00  .......U........
   2ECA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 65 23 A4  .........@...e#.
   2ECB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2ECC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2ECD0: 00 02 00 00 09 00 8B 55 02 00 00 01 01 00 00 00  .......U........
   2ECE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 66 23 A4  .........@...f#.
   2ECF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2ED00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2ED10: 00 02 00 00 09 00 8C 55 02 00 00 01 01 00 00 00  .......U........
   2ED20: 10 00 00 00 00 02 00 00 00 40 00 04 98 66 23 A4  .........@...f#.
   2ED30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2ED40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2ED50: 00 02 00 00 09 00 8D 55 02 00 00 01 01 00 00 00  .......U........
   2ED60: 10 00 00 00 00 02 00 00 00 40 00 04 98 61 23 A4  .........@...a#.
   2ED70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2ED80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2ED90: 00 02 00 00 09 00 8E 55 02 00 00 01 01 00 00 00  .......U........
   2EDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 64 23 A4  .........@...d#.
   2EDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EDD0: 00 02 00 00 09 00 8F 55 02 00 00 01 01 00 00 00  .......U........
   2EDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 65 23 A4  .........@...e#.
   2EDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EE10: 00 02 00 00 09 00 90 55 02 00 00 01 01 00 00 00  .......U........
   2EE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 62 23 A4  .........@...b#.
   2EE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EE50: 00 02 00 00 09 00 91 55 02 00 00 01 01 00 00 00  .......U........
   2EE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 64 23 A4  .........@...d#.
   2EE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EE90: 00 02 00 00 09 00 92 55 02 00 00 01 01 00 00 00  .......U........
   2EEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 62 23 A4  .........@...b#.
   2EEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EED0: 00 02 00 00 09 00 93 55 02 00 00 01 01 00 00 00  .......U........
   2EEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 63 23 A4  .........@...c#.
   2EEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EF10: 00 02 00 00 09 00 94 55 02 00 00 01 01 00 00 00  .......U........
   2EF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 63 23 A4  .........@...c#.
   2EF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EF50: 00 02 00 00 09 00 95 55 02 00 00 01 01 00 00 00  .......U........
   2EF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 50 23 A4  .........@...P#.
   2EF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EF90: 00 02 00 00 09 00 96 55 02 00 00 01 01 00 00 00  .......U........
   2EFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5F 23 A4  .........@..._#.
   2EFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2EFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2EFD0: 00 02 00 00 09 00 97 55 02 00 00 01 01 00 00 00  .......U........
   2EFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5F 23 A4  .........@..._#.
   2EFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F010: 00 02 00 00 09 00 98 55 02 00 00 01 01 00 00 00  .......U........
   2F020: 10 00 00 00 00 02 00 00 00 40 00 04 18 5B 23 A4  .........@...[#.
   2F030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F050: 00 02 00 00 09 00 99 55 02 00 00 01 01 00 00 00  .......U........
   2F060: 10 00 00 00 00 02 00 00 00 40 00 04 18 5E 23 A4  .........@...^#.
   2F070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F090: 00 02 00 00 09 00 9A 55 02 00 00 01 01 00 00 00  .......U........
   2F0A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5E 23 A4  .........@...^#.
   2F0B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F0C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F0D0: 00 02 00 00 09 00 9B 55 02 00 00 01 01 00 00 00  .......U........
   2F0E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5B 23 A4  .........@...[#.
   2F0F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F110: 00 02 00 00 09 00 9C 55 02 00 00 01 01 00 00 00  .......U........
   2F120: 10 00 00 00 00 02 00 00 00 40 00 04 98 5D 23 A4  .........@...]#.
   2F130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F150: 00 02 00 00 09 00 9D 55 02 00 00 01 01 00 00 00  .......U........
   2F160: 10 00 00 00 00 02 00 00 00 40 00 04 18 5C 23 A4  .........@...\#.
   2F170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F190: 00 02 00 00 09 00 9E 55 02 00 00 01 01 00 00 00  .......U........
   2F1A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5C 23 A4  .........@...\#.
   2F1B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F1C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F1D0: 00 02 00 00 09 00 9F 55 02 00 00 01 01 00 00 00  .......U........
   2F1E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 5D 23 A4  .........@...]#.
   2F1F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F210: 00 02 00 00 09 00 A0 55 02 00 00 01 01 00 00 00  .......U........
   2F220: 10 00 00 00 00 02 00 00 00 40 00 04 98 50 23 A4  .........@...P#.
   2F230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F250: 00 02 00 00 09 00 A1 55 02 00 00 01 01 00 00 00  .......U........
   2F260: 10 00 00 00 00 02 00 00 00 40 00 04 18 5A 23 A4  .........@...Z#.
   2F270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F290: 00 02 00 00 09 00 A2 55 02 00 00 01 01 00 00 00  .......U........
   2F2A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 5A 23 A4  .........@...Z#.
   2F2B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F2C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F2D0: 00 02 00 00 09 00 A3 55 02 00 00 01 01 00 00 00  .......U........
   2F2E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 57 23 A4  .........@...W#.
   2F2F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F310: 00 02 00 00 09 00 A4 55 02 00 00 01 01 00 00 00  .......U........
   2F320: 10 00 00 00 00 02 00 00 00 40 00 04 98 59 23 A4  .........@...Y#.
   2F330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F350: 00 02 00 00 09 00 A5 55 02 00 00 01 01 00 00 00  .......U........
   2F360: 10 00 00 00 00 02 00 00 00 40 00 04 18 58 23 A4  .........@...X#.
   2F370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F390: 00 02 00 00 09 00 A6 55 02 00 00 01 01 00 00 00  .......U........
   2F3A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 58 23 A4  .........@...X#.
   2F3B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F3C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F3D0: 00 02 00 00 09 00 A7 55 02 00 00 01 01 00 00 00  .......U........
   2F3E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 59 23 A4  .........@...Y#.
   2F3F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F410: 00 02 00 00 09 00 A8 55 02 00 00 01 01 00 00 00  .......U........
   2F420: 10 00 00 00 00 02 00 00 00 40 00 04 18 51 23 A4  .........@...Q#.
   2F430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F450: 00 02 00 00 09 00 A9 55 02 00 00 01 01 00 00 00  .......U........
   2F460: 10 00 00 00 00 02 00 00 00 40 00 04 18 57 23 A4  .........@...W#.
   2F470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F490: 00 02 00 00 09 00 AA 55 02 00 00 01 01 00 00 00  .......U........
   2F4A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 55 23 A4  .........@...U#.
   2F4B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F4C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F4D0: 00 02 00 00 09 00 AB 55 02 00 00 01 01 00 00 00  .......U........
   2F4E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 56 23 A4  .........@...V#.
   2F4F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F510: 00 02 00 00 09 00 AC 55 02 00 00 01 01 00 00 00  .......U........
   2F520: 10 00 00 00 00 02 00 00 00 40 00 04 98 56 23 A4  .........@...V#.
   2F530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F550: 00 02 00 00 09 00 AD 55 02 00 00 01 01 00 00 00  .......U........
   2F560: 10 00 00 00 00 02 00 00 00 40 00 04 98 51 23 A4  .........@...Q#.
   2F570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F590: 00 02 00 00 09 00 AE 55 02 00 00 01 01 00 00 00  .......U........
   2F5A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 54 23 A4  .........@...T#.
   2F5B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F5C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F5D0: 00 02 00 00 09 00 AF 55 02 00 00 01 01 00 00 00  .......U........
   2F5E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 55 23 A4  .........@...U#.
   2F5F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F610: 00 02 00 00 09 00 B0 55 02 00 00 01 01 00 00 00  .......U........
   2F620: 10 00 00 00 00 02 00 00 00 40 00 04 18 52 23 A4  .........@...R#.
   2F630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F650: 00 02 00 00 09 00 B1 55 02 00 00 01 01 00 00 00  .......U........
   2F660: 10 00 00 00 00 02 00 00 00 40 00 04 18 54 23 A4  .........@...T#.
   2F670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F690: 00 02 00 00 09 00 B2 55 02 00 00 01 01 00 00 00  .......U........
   2F6A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 52 23 A4  .........@...R#.
   2F6B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F6C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F6D0: 00 02 00 00 09 00 B3 55 02 00 00 01 01 00 00 00  .......U........
   2F6E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 53 23 A4  .........@...S#.
   2F6F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F710: 00 02 00 00 09 00 B4 55 02 00 00 01 01 00 00 00  .......U........
   2F720: 10 00 00 00 00 02 00 00 00 40 00 04 98 53 23 A4  .........@...S#.
   2F730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F750: 00 02 00 00 09 00 B5 55 02 00 00 01 01 00 00 00  .......U........
   2F760: 10 00 00 00 00 02 00 00 00 40 00 04 18 40 23 A4  .........@...@#.
   2F770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F790: 00 02 00 00 09 00 B6 55 02 00 00 01 01 00 00 00  .......U........
   2F7A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4F 23 A4  .........@...O#.
   2F7B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F7C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F7D0: 00 02 00 00 09 00 B7 55 02 00 00 01 01 00 00 00  .......U........
   2F7E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4F 23 A4  .........@...O#.
   2F7F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F810: 00 02 00 00 09 00 B8 55 02 00 00 01 01 00 00 00  .......U........
   2F820: 10 00 00 00 00 02 00 00 00 40 00 04 18 4B 23 A4  .........@...K#.
   2F830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F850: 00 02 00 00 09 00 B9 55 02 00 00 01 01 00 00 00  .......U........
   2F860: 10 00 00 00 00 02 00 00 00 40 00 04 18 4E 23 A4  .........@...N#.
   2F870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F890: 00 02 00 00 09 00 BA 55 02 00 00 01 01 00 00 00  .......U........
   2F8A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4E 23 A4  .........@...N#.
   2F8B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F8C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F8D0: 00 02 00 00 09 00 BB 55 02 00 00 01 01 00 00 00  .......U........
   2F8E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4B 23 A4  .........@...K#.
   2F8F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F910: 00 02 00 00 09 00 BC 55 02 00 00 01 01 00 00 00  .......U........
   2F920: 10 00 00 00 00 02 00 00 00 40 00 04 98 4D 23 A4  .........@...M#.
   2F930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F950: 00 02 00 00 09 00 BD 55 02 00 00 01 01 00 00 00  .......U........
   2F960: 10 00 00 00 00 02 00 00 00 40 00 04 18 4C 23 A4  .........@...L#.
   2F970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F990: 00 02 00 00 09 00 BE 55 02 00 00 01 01 00 00 00  .......U........
   2F9A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4C 23 A4  .........@...L#.
   2F9B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2F9C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2F9D0: 00 02 00 00 09 00 BF 55 02 00 00 01 01 00 00 00  .......U........
   2F9E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 4D 23 A4  .........@...M#.
   2F9F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FA00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FA10: 00 02 00 00 09 00 C0 55 02 00 00 01 01 00 00 00  .......U........
   2FA20: 10 00 00 00 00 02 00 00 00 40 00 04 98 40 23 A4  .........@...@#.
   2FA30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FA40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FA50: 00 02 00 00 09 00 C1 55 02 00 00 01 01 00 00 00  .......U........
   2FA60: 10 00 00 00 00 02 00 00 00 40 00 04 18 4A 23 A4  .........@...J#.
   2FA70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FA80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FA90: 00 02 00 00 09 00 C2 55 02 00 00 01 01 00 00 00  .......U........
   2FAA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 4A 23 A4  .........@...J#.
   2FAB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FAC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FAD0: 00 02 00 00 09 00 C3 55 02 00 00 01 01 00 00 00  .......U........
   2FAE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 47 23 A4  .........@...G#.
   2FAF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FB00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FB10: 00 02 00 00 09 00 C4 55 02 00 00 01 01 00 00 00  .......U........
   2FB20: 10 00 00 00 00 02 00 00 00 40 00 04 98 49 23 A4  .........@...I#.
   2FB30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FB40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FB50: 00 02 00 00 09 00 C5 55 02 00 00 01 01 00 00 00  .......U........
   2FB60: 10 00 00 00 00 02 00 00 00 40 00 04 18 48 23 A4  .........@...H#.
   2FB70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FB80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FB90: 00 02 00 00 09 00 C6 55 02 00 00 01 01 00 00 00  .......U........
   2FBA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 48 23 A4  .........@...H#.
   2FBB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FBC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FBD0: 00 02 00 00 09 00 C7 55 02 00 00 01 01 00 00 00  .......U........
   2FBE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 49 23 A4  .........@...I#.
   2FBF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FC00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FC10: 00 02 00 00 09 00 C8 55 02 00 00 01 01 00 00 00  .......U........
   2FC20: 10 00 00 00 00 02 00 00 00 40 00 04 18 41 23 A4  .........@...A#.
   2FC30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FC40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FC50: 00 02 00 00 09 00 C9 55 02 00 00 01 01 00 00 00  .......U........
   2FC60: 10 00 00 00 00 02 00 00 00 40 00 04 18 47 23 A4  .........@...G#.
   2FC70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FC80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FC90: 00 02 00 00 09 00 CA 55 02 00 00 01 01 00 00 00  .......U........
   2FCA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 45 23 A4  .........@...E#.
   2FCB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FCC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FCD0: 00 02 00 00 09 00 CB 55 02 00 00 01 01 00 00 00  .......U........
   2FCE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 46 23 A4  .........@...F#.
   2FCF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FD00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FD10: 00 02 00 00 09 00 CC 55 02 00 00 01 01 00 00 00  .......U........
   2FD20: 10 00 00 00 00 02 00 00 00 40 00 04 98 46 23 A4  .........@...F#.
   2FD30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FD40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FD50: 00 02 00 00 09 00 CD 55 02 00 00 01 01 00 00 00  .......U........
   2FD60: 10 00 00 00 00 02 00 00 00 40 00 04 98 41 23 A4  .........@...A#.
   2FD70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FD80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FD90: 00 02 00 00 09 00 CE 55 02 00 00 01 01 00 00 00  .......U........
   2FDA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 44 23 A4  .........@...D#.
   2FDB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FDC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FDD0: 00 02 00 00 09 00 CF 55 02 00 00 01 01 00 00 00  .......U........
   2FDE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 45 23 A4  .........@...E#.
   2FDF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FE00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FE10: 00 02 00 00 09 00 D0 55 02 00 00 01 01 00 00 00  .......U........
   2FE20: 10 00 00 00 00 02 00 00 00 40 00 04 18 42 23 A4  .........@...B#.
   2FE30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FE40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FE50: 00 02 00 00 09 00 D1 55 02 00 00 01 01 00 00 00  .......U........
   2FE60: 10 00 00 00 00 02 00 00 00 40 00 04 18 44 23 A4  .........@...D#.
   2FE70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FE80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FE90: 00 02 00 00 09 00 D2 55 02 00 00 01 01 00 00 00  .......U........
   2FEA0: 10 00 00 00 00 02 00 00 00 40 00 04 98 42 23 A4  .........@...B#.
   2FEB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FEC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FED0: 00 02 00 00 09 00 D3 55 02 00 00 01 01 00 00 00  .......U........
   2FEE0: 10 00 00 00 00 02 00 00 00 40 00 04 18 43 23 A4  .........@...C#.
   2FEF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FF00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FF10: 00 02 00 00 09 00 D4 55 02 00 00 01 01 00 00 00  .......U........
   2FF20: 10 00 00 00 00 02 00 00 00 40 00 04 98 43 23 A4  .........@...C#.
   2FF30: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FF40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FF50: 00 02 00 00 09 00 D5 55 02 00 00 01 01 00 00 00  .......U........
   2FF60: 10 00 00 00 00 02 00 00 00 40 00 04 18 30 23 A4  .........@...0#.
   2FF70: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FF80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FF90: 00 02 00 00 09 00 D6 55 02 00 00 01 01 00 00 00  .......U........
   2FFA0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3F 23 A4  .........@...?#.
   2FFB0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   2FFC0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   2FFD0: 00 02 00 00 09 00 D7 55 02 00 00 01 01 00 00 00  .......U........
   2FFE0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3F 23 A4  .........@...?#.
   2FFF0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30010: 00 02 00 00 09 00 D8 55 02 00 00 01 01 00 00 00  .......U........
   30020: 10 00 00 00 00 02 00 00 00 40 00 04 18 3B 23 A4  .........@...;#.
   30030: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30050: 00 02 00 00 09 00 D9 55 02 00 00 01 01 00 00 00  .......U........
   30060: 10 00 00 00 00 02 00 00 00 40 00 04 18 3E 23 A4  .........@...>#.
   30070: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30090: 00 02 00 00 09 00 DA 55 02 00 00 01 01 00 00 00  .......U........
   300A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3E 23 A4  .........@...>#.
   300B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   300C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   300D0: 00 02 00 00 09 00 DB 55 02 00 00 01 01 00 00 00  .......U........
   300E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3B 23 A4  .........@...;#.
   300F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30110: 00 02 00 00 09 00 DC 55 02 00 00 01 01 00 00 00  .......U........
   30120: 10 00 00 00 00 02 00 00 00 40 00 04 98 3D 23 A4  .........@...=#.
   30130: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30150: 00 02 00 00 09 00 DD 55 02 00 00 01 01 00 00 00  .......U........
   30160: 10 00 00 00 00 02 00 00 00 40 00 04 18 3C 23 A4  .........@...<#.
   30170: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30190: 00 02 00 00 09 00 DE 55 02 00 00 01 01 00 00 00  .......U........
   301A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3C 23 A4  .........@...<#.
   301B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   301C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   301D0: 00 02 00 00 09 00 DF 55 02 00 00 01 01 00 00 00  .......U........
   301E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 3D 23 A4  .........@...=#.
   301F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30210: 00 02 00 00 09 00 E0 55 02 00 00 01 01 00 00 00  .......U........
   30220: 10 00 00 00 00 02 00 00 00 40 00 04 98 30 23 A4  .........@...0#.
   30230: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30250: 00 02 00 00 09 00 E1 55 02 00 00 01 01 00 00 00  .......U........
   30260: 10 00 00 00 00 02 00 00 00 40 00 04 18 3A 23 A4  .........@...:#.
   30270: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30290: 00 02 00 00 09 00 E2 55 02 00 00 01 01 00 00 00  .......U........
   302A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 3A 23 A4  .........@...:#.
   302B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   302C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   302D0: 00 02 00 00 09 00 E3 55 02 00 00 01 01 00 00 00  .......U........
   302E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 37 23 A4  .........@...7#.
   302F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30310: 00 02 00 00 09 00 E4 55 02 00 00 01 01 00 00 00  .......U........
   30320: 10 00 00 00 00 02 00 00 00 40 00 04 98 39 23 A4  .........@...9#.
   30330: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30350: 00 02 00 00 09 00 E5 55 02 00 00 01 01 00 00 00  .......U........
   30360: 10 00 00 00 00 02 00 00 00 40 00 04 18 38 23 A4  .........@...8#.
   30370: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30390: 00 02 00 00 09 00 E6 55 02 00 00 01 01 00 00 00  .......U........
   303A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 38 23 A4  .........@...8#.
   303B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   303C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   303D0: 00 02 00 00 09 00 E7 55 02 00 00 01 01 00 00 00  .......U........
   303E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 39 23 A4  .........@...9#.
   303F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30410: 00 02 00 00 09 00 E8 55 02 00 00 01 01 00 00 00  .......U........
   30420: 10 00 00 00 00 02 00 00 00 40 00 04 18 31 23 A4  .........@...1#.
   30430: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30450: 00 02 00 00 09 00 E9 55 02 00 00 01 01 00 00 00  .......U........
   30460: 10 00 00 00 00 02 00 00 00 40 00 04 18 37 23 A4  .........@...7#.
   30470: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30490: 00 02 00 00 09 00 EA 55 02 00 00 01 01 00 00 00  .......U........
   304A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 35 23 A4  .........@...5#.
   304B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   304C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   304D0: 00 02 00 00 09 00 EB 55 02 00 00 01 01 00 00 00  .......U........
   304E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 36 23 A4  .........@...6#.
   304F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30510: 00 02 00 00 09 00 EC 55 02 00 00 01 01 00 00 00  .......U........
   30520: 10 00 00 00 00 02 00 00 00 40 00 04 98 36 23 A4  .........@...6#.
   30530: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30550: 00 02 00 00 09 00 ED 55 02 00 00 01 01 00 00 00  .......U........
   30560: 10 00 00 00 00 02 00 00 00 40 00 04 98 31 23 A4  .........@...1#.
   30570: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30590: 00 02 00 00 09 00 EE 55 02 00 00 01 01 00 00 00  .......U........
   305A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 34 23 A4  .........@...4#.
   305B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   305C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   305D0: 00 02 00 00 09 00 EF 55 02 00 00 01 01 00 00 00  .......U........
   305E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 35 23 A4  .........@...5#.
   305F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30600: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30610: 00 02 00 00 09 00 F0 55 02 00 00 01 01 00 00 00  .......U........
   30620: 10 00 00 00 00 02 00 00 00 40 00 04 18 32 23 A4  .........@...2#.
   30630: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30640: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30650: 00 02 00 00 09 00 F1 55 02 00 00 01 01 00 00 00  .......U........
   30660: 10 00 00 00 00 02 00 00 00 40 00 04 18 34 23 A4  .........@...4#.
   30670: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30680: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30690: 00 02 00 00 09 00 F2 55 02 00 00 01 01 00 00 00  .......U........
   306A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 32 23 A4  .........@...2#.
   306B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   306C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   306D0: 00 02 00 00 09 00 F3 55 02 00 00 01 01 00 00 00  .......U........
   306E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 33 23 A4  .........@...3#.
   306F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30710: 00 02 00 00 09 00 F4 55 02 00 00 01 01 00 00 00  .......U........
   30720: 10 00 00 00 00 02 00 00 00 40 00 04 98 33 23 A4  .........@...3#.
   30730: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30740: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30750: 00 02 00 00 09 00 F5 55 02 00 00 01 01 00 00 00  .......U........
   30760: 10 00 00 00 00 02 00 00 00 40 00 04 18 20 23 A4  .........@... #.
   30770: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30780: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30790: 00 02 00 00 09 00 F6 55 02 00 00 01 01 00 00 00  .......U........
   307A0: 10 00 00 00 00 02 00 00 00 40 00 04 18 2F 23 A4  .........@.../#.
   307B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   307C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   307D0: 00 02 00 00 09 00 F7 55 02 00 00 01 01 00 00 00  .......U........
   307E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2F 23 A4  .........@.../#.
   307F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30800: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30810: 00 02 00 00 09 00 F8 55 02 00 00 01 01 00 00 00  .......U........
   30820: 10 00 00 00 00 02 00 00 00 40 00 04 18 2B 23 A4  .........@...+#.
   30830: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30840: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30850: 00 02 00 00 09 00 F9 55 02 00 00 01 01 00 00 00  .......U........
   30860: 10 00 00 00 00 02 00 00 00 40 00 04 18 2E 23 A4  .........@....#.
   30870: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30880: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30890: 00 02 00 00 09 00 FA 55 02 00 00 01 01 00 00 00  .......U........
   308A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2E 23 A4  .........@....#.
   308B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   308C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   308D0: 00 02 00 00 09 00 FB 55 02 00 00 01 01 00 00 00  .......U........
   308E0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2B 23 A4  .........@...+#.
   308F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30910: 00 02 00 00 09 00 FC 55 02 00 00 01 01 00 00 00  .......U........
   30920: 10 00 00 00 00 02 00 00 00 40 00 04 98 2D 23 A4  .........@...-#.
   30930: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30940: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30950: 00 02 00 00 09 00 FD 55 02 00 00 01 01 00 00 00  .......U........
   30960: 10 00 00 00 00 02 00 00 00 40 00 04 18 2C 23 A4  .........@...,#.
   30970: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30980: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30990: 00 02 00 00 09 00 FE 55 02 00 00 01 01 00 00 00  .......U........
   309A0: 10 00 00 00 00 02 00 00 00 40 00 04 98 2C 23 A4  .........@...,#.
   309B0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   309C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   309D0: 00 02 00 00 09 00 FF 55 02 00 00 01 01 00 00 00  .......U........
   309E0: 10 00 00 00 00 02 00 00 00 40 00 04 18 2D 23 A4  .........@...-#.
   309F0: 00 00 00 00 00 1C 00 00 FF FF FF FF 00 00 00 00  ................
   30A00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
   30A10: 00 02 00 00                                      ....

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 D4 06 00 00 02 3A 41 4D 44 00 00 00  SSDT.....:AMD...
    0010: 43 50 4D 57 4C 52 43 00 01 00 00 00 49 4E 54 4C  CPMWLRC.....INTL
    0020: 31 03 23 20 A0 4F 48 00 15 5C 4D 30 30 30 08 01  1.# .OH..\M000..
    0030: 15 5C 4D 30 31 38 08 07 15 5C 4D 31 31 32 08 02  .\M018...\M112..
    0040: 15 5C 4D 31 31 35 03 00 15 5C 4D 31 31 36 0E 00  .\M115...\M116..
    0050: 15 5C 4D 31 31 37 0E 00 15 5C 4D 31 31 38 0E 00  .\M117...\M118..
    0060: 15 5C 4D 31 31 39 0E 00 15 5C 4D 31 32 30 0E 00  .\M119...\M120..
    0070: 15 5C 4D 30 33 37 06 00 15 5C 4D 32 32 37 06 00  .\M037...\M227..
    0080: 15 5C 4D 33 32 39 06 00 15 5C 4D 33 32 41 06 00  .\M329...\M32A..
    0090: 15 5C 4D 33 32 42 06 00 15 5C 4D 33 32 43 06 00  .\M32B...\M32C..
    00A0: 15 5C 4D 33 33 30 06 00 15 5C 4D 30 38 32 05 00  .\M330...\M082..
    00B0: 15 5C 4D 30 38 33 05 00 15 5C 4D 30 38 34 05 00  .\M083...\M084..
    00C0: 15 5C 4D 30 38 35 05 00 15 5C 4D 32 32 31 05 00  .\M085...\M221..
    00D0: 15 5C 4D 30 38 36 05 00 15 5C 4D 32 32 39 05 00  .\M086...\M229..
    00E0: 15 5C 4D 32 33 31 05 00 15 5C 4D 32 33 35 05 00  .\M231...\M235..
    00F0: 15 5C 4D 32 33 33 05 00 15 5C 4D 30 38 37 05 00  .\M233...\M087..
    0100: 15 5C 4D 30 38 38 05 00 15 5C 4D 30 38 39 05 00  .\M088...\M089..
    0110: 15 5C 4D 30 39 30 05 00 15 5C 4D 30 39 31 05 00  .\M090...\M091..
    0120: 15 5C 4D 30 39 32 05 00 15 5C 4D 30 39 33 05 00  .\M092...\M093..
    0130: 15 5C 4D 30 39 34 05 00 15 5C 4D 30 39 35 05 00  .\M094...\M095..
    0140: 15 5C 4D 30 39 36 05 00 15 5C 4D 30 39 37 05 00  .\M096...\M097..
    0150: 15 5C 4D 30 39 38 05 00 15 5C 4D 30 39 39 05 00  .\M098...\M099..
    0160: 15 5C 4D 31 30 30 05 00 15 5C 4D 31 30 31 05 00  .\M100...\M101..
    0170: 15 5C 4D 31 30 32 05 00 15 5C 4D 31 30 33 05 00  .\M102...\M103..
    0180: 15 5C 4D 31 30 34 05 00 15 5C 4D 31 30 35 05 00  .\M104...\M105..
    0190: 15 5C 4D 31 30 36 05 00 15 5C 4D 31 30 37 05 00  .\M106...\M107..
    01A0: 15 5C 4D 31 32 38 05 00 15 5C 4D 31 30 38 05 00  .\M128...\M108..
    01B0: 15 5C 4D 31 30 39 05 00 15 5C 4D 31 31 30 05 00  .\M109...\M110..
    01C0: 15 5C 4D 31 32 32 05 00 15 5C 4D 31 33 31 05 00  .\M122...\M131..
    01D0: 15 5C 4D 31 33 32 05 00 15 5C 4D 32 32 36 05 00  .\M132...\M226..
    01E0: 15 5C 4D 31 33 33 05 00 15 5C 4D 31 33 34 05 00  .\M133...\M134..
    01F0: 15 5C 4D 31 33 35 05 00 15 5C 4D 31 33 36 05 00  .\M135...\M136..
    0200: 15 5C 4D 32 32 30 05 00 15 5C 4D 30 34 36 01 00  .\M220...\M046..
    0210: 15 5C 4D 30 34 37 01 00 15 5C 4D 30 34 39 08 02  .\M047...\M049..
    0220: 15 5C 4D 30 34 42 08 02 15 5C 4D 32 35 31 05 00  .\M04B...\M251..
    0230: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0240: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0250: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0260: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0270: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0280: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0290: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    02A0: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02B0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02C0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02D0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02E0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02F0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    0300: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0310: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0320: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0330: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0340: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0350: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0360: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 34 39 05 00  .\M457...\M449..
    0370: 15 5C 4D 34 43 30 05 00 15 5C 4D 32 33 41 05 00  .\M4C0...\M23A..
    0380: 15 5C 4D 34 46 30 05 00 15 5C 4D 36 31 30 05 00  .\M4F0...\M610..
    0390: 15 5C 4D 32 39 41 05 00 15 5C 4D 36 33 31 05 00  .\M29A...\M631..
    03A0: 15 5C 4D 36 35 32 05 00 15 5C 4D 30 35 30 06 00  .\M652...\M050..
    03B0: 15 5C 4D 30 35 31 06 00 15 5C 4D 30 35 32 06 00  .\M051...\M052..
    03C0: 15 5C 4D 30 35 33 06 00 15 5C 4D 30 35 34 06 00  .\M053...\M054..
    03D0: 15 5C 4D 30 35 35 06 00 15 5C 4D 30 35 36 06 00  .\M055...\M056..
    03E0: 15 5C 4D 30 35 37 06 00 15 5C 4D 30 35 38 06 00  .\M057...\M058..
    03F0: 15 5C 4D 30 35 39 06 00 15 5C 4D 30 36 32 06 00  .\M059...\M062..
    0400: 15 5C 4D 30 36 38 06 00 15 5C 4D 30 36 39 06 00  .\M068...\M069..
    0410: 15 5C 4D 30 37 30 06 00 15 5C 4D 30 37 31 06 00  .\M070...\M071..
    0420: 15 5C 4D 30 37 32 06 00 15 5C 4D 30 37 34 06 00  .\M072...\M074..
    0430: 15 5C 4D 30 37 35 06 00 15 5C 4D 30 37 36 06 00  .\M075...\M076..
    0440: 15 5C 4D 30 37 37 06 00 15 5C 4D 30 37 38 06 00  .\M077...\M078..
    0450: 15 5C 4D 30 37 39 06 00 15 5C 4D 30 38 30 06 00  .\M079...\M080..
    0460: 15 5C 4D 30 38 31 06 00 15 5C 4D 31 32 37 06 00  .\M081...\M127..
    0470: 15 5C 2F 06 5F 53 42 5F 50 43 49 31 47 50 50 42  .\/._SB_PCI1GPPB
    0480: 55 50 30 30 44 50 34 30 57 4E 30 30 06 00 15 5C  UP00DP40WN00...\
    0490: 2F 08 5F 53 42 5F 50 43 49 31 47 50 50 42 55 50  /._SB_PCI1GPPBUP
    04A0: 30 30 44 50 36 30 58 48 30 30 52 48 55 42 48 53  00DP60XH00RHUBHS
    04B0: 31 31 06 00 08 44 53 50 42 0A 45 08 44 44 50 44  11...DSPB.E.DDPD
    04C0: 0A 08 08 57 4C 52 4D 0A 01 A0 48 05 5B 12 5C 2F  ...WLRM...H.[.\/
    04D0: 06 5F 53 42 5F 50 43 49 31 47 50 50 42 55 50 30  ._SB_PCI1GPPBUP0
    04E0: 30 44 50 34 30 57 4E 30 30 00 10 37 5C 2F 06 5F  0DP40WN00..7\/._
    04F0: 53 42 5F 50 43 49 31 47 50 50 42 55 50 30 30 44  SB_PCI1GPPBUP00D
    0500: 50 34 30 57 4E 30 30 08 5F 50 52 52 12 0C 01 5C  P40WN00._PRR...\
    0510: 2E 5F 53 42 5F 50 52 57 4C 14 08 5F 52 4D 56 00  ._SB_PRWL.._RMV.
    0520: A4 00 A0 4F 05 5B 12 5C 2F 08 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    0530: 49 31 47 50 50 42 55 50 30 30 44 50 36 30 58 48  I1GPPBUP00DP60XH
    0540: 30 30 52 48 55 42 48 53 31 31 00 10 36 5C 2F 08  00RHUBHS11..6\/.
    0550: 5F 53 42 5F 50 43 49 31 47 50 50 42 55 50 30 30  _SB_PCI1GPPBUP00
    0560: 44 50 36 30 58 48 30 30 52 48 55 42 48 53 31 31  DP60XH00RHUBHS11
    0570: 08 5F 50 52 52 12 0C 01 5C 2E 5F 53 42 5F 50 52  ._PRR...\._SB_PR
    0580: 57 42 10 41 15 5C 5F 53 42 5F 08 57 4C 50 53 01  WB.A.\_SB_.WLPS.
    0590: 5B 84 4B 0B 50 52 57 4C 00 00 00 14 4B 08 5F 52  [.K.PRWL....K._R
    05A0: 53 54 00 4D 30 30 30 0B C2 0D 70 4D 30 34 42 4D  ST.M000...pM04BM
    05B0: 32 39 30 0A 28 62 A0 49 06 92 93 62 0A 02 70 4D  290.(b.I...b..pM
    05C0: 30 34 39 4D 32 39 30 0A 16 60 70 4D 30 34 42 4D  049M290..`pM04BM
    05D0: 32 39 30 0A 12 61 A0 34 93 57 4C 52 4D 01 4D 30  290..a.4.WLRM.M0
    05E0: 31 38 44 53 50 42 44 44 50 44 00 0A 3E 0A 06 01  18DSPBDDPD..>...
    05F0: 01 5B 22 61 4D 30 31 38 44 53 50 42 44 44 50 44  .["aM018DSPBDDPD
    0600: 00 0A 3E 0A 06 01 00 5B 22 0A 64 A1 14 4D 31 31  ..>....[".d..M11
    0610: 32 60 00 5B 22 61 4D 31 31 32 60 01 5B 22 0A 64  2`.["aM112`.[".d
    0620: 4D 30 30 30 0B C3 0D 14 0B 5F 53 54 41 00 A4 57  M000....._STA..W
    0630: 4C 50 53 14 0C 5F 4F 4E 5F 00 70 01 57 4C 50 53  LPS.._ON_.p.WLPS
    0640: 14 0C 5F 4F 46 46 00 70 00 57 4C 50 53 08 42 4C  .._OFF.p.WLPS.BL
    0650: 50 53 01 5B 84 4F 07 50 52 57 42 00 00 00 14 4F  PS.[.O.PRWB....O
    0660: 04 5F 52 53 54 00 4D 30 30 30 0B DE 0D 70 4D 30  ._RST.M000...pM0
    0670: 34 42 4D 32 39 30 0A 45 62 A0 2D 92 93 62 0A 02  4BM290.Eb.-..b..
    0680: 70 4D 30 34 39 4D 32 39 30 0A 40 60 70 4D 30 34  pM049M290.@`pM04
    0690: 42 4D 32 39 30 0A 41 61 4D 31 31 32 60 00 5B 22  BM290.AaM112`.["
    06A0: 61 4D 31 31 32 60 01 4D 30 30 30 0B DF 0D 14 0B  aM112`.M000.....
    06B0: 5F 53 54 41 00 A4 42 4C 50 53 14 0C 5F 4F 4E 5F  _STA..BLPS.._ON_
    06C0: 00 70 01 42 4C 50 53 14 0C 5F 4F 46 46 00 70 00  .p.BLPS.._OFF.p.
    06D0: 42 4C 50 53                                      BLPS

BERT @ 0x0000000000000000
    0000: 42 45 52 54 30 00 00 00 01 4E 41 4D 44 20 20 20  BERT0....NAMD   
    0010: 41 4D 44 20 42 45 52 54 01 00 00 00 41 4D 44 20  AMD BERT....AMD 
    0020: 01 00 00 00 14 00 00 00 98 8E 2D A8 00 00 00 00  ..........-.....

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 C5 05 00 00 02 AF 41 4D 44 00 00 00  SSDT......AMD...
    0010: 43 50 55 53 53 44 54 00 01 00 00 00 41 4D 49 20  CPUSSDT.....AMI 
    0020: 01 00 00 00 10 C0 5A 00 00 5C 5F 53 42 5F 5B 82  ......Z..\_SB_[.
    0030: C5 59 00 00 50 4C 54 46 08 5F 48 49 44 0D 41 43  .Y..PLTF._HID.AC
    0040: 50 49 30 30 31 30 00 08 5F 43 49 44 0C 41 D0 0A  PI0010.._CID.A..
    0050: 05 08 5F 55 49 44 01 5B 82 1A 43 30 30 30 08 5F  .._UID.[..C000._
    0060: 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55  HID.ACPI0007.._U
    0070: 49 44 00 5B 82 1A 43 30 30 31 08 5F 48 49 44 0D  ID.[..C001._HID.
    0080: 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 01 5B  ACPI0007.._UID.[
    0090: 82 1B 43 30 30 32 08 5F 48 49 44 0D 41 43 50 49  ..C002._HID.ACPI
    00A0: 30 30 30 37 00 08 5F 55 49 44 0A 02 5B 82 1B 43  0007.._UID..[..C
    00B0: 30 30 33 08 5F 48 49 44 0D 41 43 50 49 30 30 30  003._HID.ACPI000
    00C0: 37 00 08 5F 55 49 44 0A 03 5B 82 1B 43 30 30 34  7.._UID..[..C004
    00D0: 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08  ._HID.ACPI0007..
    00E0: 5F 55 49 44 0A 04 5B 82 1B 43 30 30 35 08 5F 48  _UID..[..C005._H
    00F0: 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49  ID.ACPI0007.._UI
    0100: 44 0A 05 5B 82 1B 43 30 30 36 08 5F 48 49 44 0D  D..[..C006._HID.
    0110: 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A 06  ACPI0007.._UID..
    0120: 5B 82 1B 43 30 30 37 08 5F 48 49 44 0D 41 43 50  [..C007._HID.ACP
    0130: 49 30 30 30 37 00 08 5F 55 49 44 0A 07 5B 82 1B  I0007.._UID..[..
    0140: 43 30 30 38 08 5F 48 49 44 0D 41 43 50 49 30 30  C008._HID.ACPI00
    0150: 30 37 00 08 5F 55 49 44 0A 08 5B 82 1B 43 30 30  07.._UID..[..C00
    0160: 39 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00  9._HID.ACPI0007.
    0170: 08 5F 55 49 44 0A 09 5B 82 1B 43 30 30 41 08 5F  ._UID..[..C00A._
    0180: 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55  HID.ACPI0007.._U
    0190: 49 44 0A 0A 5B 82 1B 43 30 30 42 08 5F 48 49 44  ID..[..C00B._HID
    01A0: 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A  .ACPI0007.._UID.
    01B0: 0B 5B 82 1B 43 30 30 43 08 5F 48 49 44 0D 41 43  .[..C00C._HID.AC
    01C0: 50 49 30 30 30 37 00 08 5F 55 49 44 0A 0C 5B 82  PI0007.._UID..[.
    01D0: 1B 43 30 30 44 08 5F 48 49 44 0D 41 43 50 49 30  .C00D._HID.ACPI0
    01E0: 30 30 37 00 08 5F 55 49 44 0A 0D 5B 82 1B 43 30  007.._UID..[..C0
    01F0: 30 45 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37  0E._HID.ACPI0007
    0200: 00 08 5F 55 49 44 0A 0E 5B 82 1B 43 30 30 46 08  .._UID..[..C00F.
    0210: 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F  _HID.ACPI0007.._
    0220: 55 49 44 0A 0F 5B 82 1B 43 30 31 30 08 5F 48 49  UID..[..C010._HI
    0230: 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49 44  D.ACPI0007.._UID
    0240: 0A 10 5B 82 1B 43 30 31 31 08 5F 48 49 44 0D 41  ..[..C011._HID.A
    0250: 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A 11 5B  CPI0007.._UID..[
    0260: 82 1B 43 30 31 32 08 5F 48 49 44 0D 41 43 50 49  ..C012._HID.ACPI
    0270: 30 30 30 37 00 08 5F 55 49 44 0A 12 5B 82 1B 43  0007.._UID..[..C
    0280: 30 31 33 08 5F 48 49 44 0D 41 43 50 49 30 30 30  013._HID.ACPI000
    0290: 37 00 08 5F 55 49 44 0A 13 5B 82 1B 43 30 31 34  7.._UID..[..C014
    02A0: 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08  ._HID.ACPI0007..
    02B0: 5F 55 49 44 0A 14 5B 82 1B 43 30 31 35 08 5F 48  _UID..[..C015._H
    02C0: 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49  ID.ACPI0007.._UI
    02D0: 44 0A 15 5B 82 1B 43 30 31 36 08 5F 48 49 44 0D  D..[..C016._HID.
    02E0: 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A 16  ACPI0007.._UID..
    02F0: 5B 82 1B 43 30 31 37 08 5F 48 49 44 0D 41 43 50  [..C017._HID.ACP
    0300: 49 30 30 30 37 00 08 5F 55 49 44 0A 17 5B 82 1B  I0007.._UID..[..
    0310: 43 30 31 38 08 5F 48 49 44 0D 41 43 50 49 30 30  C018._HID.ACPI00
    0320: 30 37 00 08 5F 55 49 44 0A 18 5B 82 1B 43 30 31  07.._UID..[..C01
    0330: 39 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00  9._HID.ACPI0007.
    0340: 08 5F 55 49 44 0A 19 5B 82 1B 43 30 31 41 08 5F  ._UID..[..C01A._
    0350: 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55  HID.ACPI0007.._U
    0360: 49 44 0A 1A 5B 82 1B 43 30 31 42 08 5F 48 49 44  ID..[..C01B._HID
    0370: 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A  .ACPI0007.._UID.
    0380: 1B 5B 82 1B 43 30 31 43 08 5F 48 49 44 0D 41 43  .[..C01C._HID.AC
    0390: 50 49 30 30 30 37 00 08 5F 55 49 44 0A 1C 5B 82  PI0007.._UID..[.
    03A0: 1B 43 30 31 44 08 5F 48 49 44 0D 41 43 50 49 30  .C01D._HID.ACPI0
    03B0: 30 30 37 00 08 5F 55 49 44 0A 1D 5B 82 1B 43 30  007.._UID..[..C0
    03C0: 31 45 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37  1E._HID.ACPI0007
    03D0: 00 08 5F 55 49 44 0A 1E 5B 82 1B 43 30 31 46 08  .._UID..[..C01F.
    03E0: 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F  _HID.ACPI0007.._
    03F0: 55 49 44 0A 1F 5B 82 1B 43 30 32 30 08 5F 48 49  UID..[..C020._HI
    0400: 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49 44  D.ACPI0007.._UID
    0410: 0A 20 5B 82 1B 43 30 32 31 08 5F 48 49 44 0D 41  . [..C021._HID.A
    0420: 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A 21 5B  CPI0007.._UID.![
    0430: 82 1B 43 30 32 32 08 5F 48 49 44 0D 41 43 50 49  ..C022._HID.ACPI
    0440: 30 30 30 37 00 08 5F 55 49 44 0A 22 5B 82 1B 43  0007.._UID."[..C
    0450: 30 32 33 08 5F 48 49 44 0D 41 43 50 49 30 30 30  023._HID.ACPI000
    0460: 37 00 08 5F 55 49 44 0A 23 5B 82 1B 43 30 32 34  7.._UID.#[..C024
    0470: 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08  ._HID.ACPI0007..
    0480: 5F 55 49 44 0A 24 5B 82 1B 43 30 32 35 08 5F 48  _UID.$[..C025._H
    0490: 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49  ID.ACPI0007.._UI
    04A0: 44 0A 25 5B 82 1B 43 30 32 36 08 5F 48 49 44 0D  D.%[..C026._HID.
    04B0: 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A 26  ACPI0007.._UID.&
    04C0: 5B 82 1B 43 30 32 37 08 5F 48 49 44 0D 41 43 50  [..C027._HID.ACP
    04D0: 49 30 30 30 37 00 08 5F 55 49 44 0A 27 5B 82 1B  I0007.._UID.'[..
    04E0: 43 30 32 38 08 5F 48 49 44 0D 41 43 50 49 30 30  C028._HID.ACPI00
    04F0: 30 37 00 08 5F 55 49 44 0A 28 5B 82 1B 43 30 32  07.._UID.([..C02
    0500: 39 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00  9._HID.ACPI0007.
    0510: 08 5F 55 49 44 0A 29 5B 82 1B 43 30 32 41 08 5F  ._UID.)[..C02A._
    0520: 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F 55  HID.ACPI0007.._U
    0530: 49 44 0A 2A 5B 82 1B 43 30 32 42 08 5F 48 49 44  ID.*[..C02B._HID
    0540: 0D 41 43 50 49 30 30 30 37 00 08 5F 55 49 44 0A  .ACPI0007.._UID.
    0550: 2B 5B 82 1B 43 30 32 43 08 5F 48 49 44 0D 41 43  +[..C02C._HID.AC
    0560: 50 49 30 30 30 37 00 08 5F 55 49 44 0A 2C 5B 82  PI0007.._UID.,[.
    0570: 1B 43 30 32 44 08 5F 48 49 44 0D 41 43 50 49 30  .C02D._HID.ACPI0
    0580: 30 30 37 00 08 5F 55 49 44 0A 2D 5B 82 1B 43 30  007.._UID.-[..C0
    0590: 32 45 08 5F 48 49 44 0D 41 43 50 49 30 30 30 37  2E._HID.ACPI0007
    05A0: 00 08 5F 55 49 44 0A 2E 5B 82 1B 43 30 32 46 08  .._UID..[..C02F.
    05B0: 5F 48 49 44 0D 41 43 50 49 30 30 30 37 00 08 5F  _HID.ACPI0007.._
    05C0: 55 49 44 0A 2F                                   UID./

FACP @ 0x0000000000000000
    0000: 46 41 43 50 14 01 00 00 06 D3 41 4D 44 20 20 20  FACP......AMD   
    0010: 41 20 4D 20 49 20 00 00 01 00 00 00 41 4D 49 20  A M I ......AMI 
    0020: 13 00 01 00 00 A0 45 A9 00 E0 46 A7 00 03 09 00  ......E...F.....
    0030: B2 00 00 00 A0 A1 00 00 00 08 00 00 00 00 00 00  ................
    0040: 04 08 00 00 00 00 00 00 B4 00 00 00 08 08 00 00  ................
    0050: 20 08 00 00 00 00 00 00 04 02 01 04 08 00 00 00   ...............
    0060: 64 00 E9 03 00 04 10 00 01 03 0D 00 32 01 00 00  d...........2...
    0070: AD C5 03 00 01 08 00 00 B2 00 00 00 00 00 00 00  ................
    0080: BE 00 00 05 00 00 00 00 00 00 00 00 00 E0 46 A7  ..............F.
    0090: 00 00 00 00 01 20 00 02 00 08 00 00 00 00 00 00  ..... ..........
    00A0: 01 00 00 02 00 00 00 00 00 00 00 00 01 10 00 02  ................
    00B0: 04 08 00 00 00 00 00 00 01 00 00 02 00 00 00 00  ................
    00C0: 00 00 00 00 01 08 00 01 B4 00 00 00 00 00 00 00  ................
    00D0: 01 20 00 03 08 08 00 00 00 00 00 00 01 40 00 01  . ...........@..
    00E0: 20 08 00 00 00 00 00 00 01 00 00 01 00 00 00 00   ...............
    00F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0110: 00 00 00 00                                      ....

FPDT @ 0x0000000000000000
    0000: 46 50 44 54 44 00 00 00 01 1F 41 4D 44 20 20 20  FPDTD.....AMD   
    0010: 41 20 4D 20 49 20 00 00 09 20 07 01 41 4D 49 20  A M I ... ..AMI 
    0020: 13 00 00 01 00 00 10 01 00 00 00 00 00 50 4C A6  .............PL.
    0030: 00 00 00 00 01 00 10 01 00 00 00 00 00 70 4E A6  .............pN.
    0040: 00 00 00 00                                      ....

WPBT @ 0x0000000000000000
    0000: 57 50 42 54 36 00 00 00 01 7C 41 4D 44 00 00 00  WPBT6....|AMD...
    0010: 41 20 4D 20 49 00 00 00 01 00 00 00 4D 53 46 54  A M I.......MSFT
    0020: 13 00 01 00 E8 DE BE 00 36 F0 84 A6 00 00 00 00  ........6.......
    0030: 01 01 02 00 00 00                                ......

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 CC 09 00 00 02 E6 41 4D 44 00 00 00  SSDT......AMD...
    0010: 42 4F 55 4C 44 45 52 47 02 00 00 00 4D 53 46 54  BOULDERG....MSFT
    0020: 00 00 00 04 10 47 9A 5C 5F 53 42 5F 08 41 47 52  .....G.\_SB_.AGR
    0030: 42 0C 00 00 00 E0 08 41 44 42 47 11 04 0B 00 01  B......ADBG.....
    0040: 5B 01 41 4D 30 30 00 5B 80 41 30 30 31 01 0A 80  [.AM00.[.A001...
    0050: 0A 04 5B 81 0B 41 30 30 31 03 41 30 30 32 20 5B  ..[..A001.A002 [
    0060: 80 41 30 30 33 01 0A 80 0A 02 5B 81 0B 41 30 30  .A003.....[..A00
    0070: 33 02 41 30 30 34 10 5B 80 41 30 30 35 01 0A 80  3.A004.[.A005...
    0080: 0A 01 5B 81 0B 41 30 30 35 01 41 30 30 36 08 14  ..[..A005.A006..
    0090: 27 41 30 30 37 01 A0 20 93 83 88 5C 2E 5F 53 42  'A007.. ...\._SB
    00A0: 5F 41 44 41 54 0A 08 00 0A 01 70 7D 68 0C 00 00  _ADAT.....p}h...
    00B0: 00 B0 00 41 01 30 32 08 41 44 41 54 11 45 52 0B  ...A.02.ADAT.ER.
    00C0: 60 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00  `...............
    00D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    00F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0100: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0110: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0120: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0130: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0140: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0150: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0160: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0170: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0190: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    01F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0210: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0220: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0230: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0240: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0250: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0260: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0270: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0290: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    02F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0300: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0310: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0320: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0330: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0340: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0350: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0360: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0370: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0380: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0390: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    03F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0410: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0420: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0430: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0440: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0450: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0460: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0470: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0490: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04E0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    04F0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0510: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0520: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0530: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0540: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0550: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0560: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0570: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0580: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0590: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    05A0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    05B0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    05C0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    05D0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    05E0: 00 00 5B 80 41 30 33 32 00 41 47 52 42 0B 00 10  ..[.A032.AGRB...
    05F0: 5B 81 0E 41 30 33 32 13 00 40 5C 41 30 33 33 20  [..A032..@\A033 
    0600: 5B 87 17 41 30 33 32 41 30 33 33 0C 30 05 B1 03  [..A032A033.0...
    0610: 13 00 40 5E 41 30 33 31 20 5B 87 17 41 30 33 32  ..@^A031 [..A032
    0620: 41 30 33 33 0C 7C 05 B1 03 13 00 40 5E 41 30 32  A033.|.....@^A02
    0630: 34 20 5B 87 17 41 30 33 32 41 30 33 33 0C C4 09  4 [..A032A033...
    0640: B1 03 13 00 40 5E 41 30 32 35 20 5B 87 17 41 30  ....@^A025 [..A0
    0650: 33 32 41 30 33 33 0C C8 09 B1 03 13 00 40 5E 41  32A033.......@^A
    0660: 30 32 36 20 5B 87 17 41 30 33 32 41 30 33 33 0C  026 [..A032A033.
    0670: CC 09 B1 03 13 00 40 5E 41 30 32 37 20 5B 87 17  ......@^A027 [..
    0680: 41 30 33 32 41 30 33 33 0C D0 09 B1 03 13 00 40  A032A033.......@
    0690: 5E 41 30 32 38 20 5B 87 17 41 30 33 32 41 30 33  ^A028 [..A032A03
    06A0: 33 0C D4 09 B1 03 13 00 40 5E 41 30 32 39 20 5B  3.......@^A029 [
    06B0: 87 17 41 30 33 32 41 30 33 33 0C D8 09 B1 03 13  ..A032A033......
    06C0: 00 40 5E 41 30 33 30 20 14 47 0A 41 30 31 37 0A  .@^A030 .G.A017.
    06D0: 5B 23 5C 2E 5F 53 42 5F 41 4D 30 30 FF FF 8A 69  [#\._SB_AM00...i
    06E0: 0A 00 41 30 31 38 8A 69 0A 04 41 30 31 39 8A 69  ..A018.i..A019.i
    06F0: 0A 08 41 30 32 30 8A 69 0A 0C 41 30 32 31 8A 69  ..A020.i..A021.i
    0700: 0A 10 41 30 32 32 8A 69 0A 14 41 30 32 33 70 0A  ..A022.i..A023p.
    0710: 00 41 30 32 34 A2 09 92 93 41 30 32 34 0A 00 70  .A024....A024..p
    0720: 41 30 31 38 41 30 32 35 70 41 30 31 39 41 30 32  A018A025pA019A02
    0730: 36 70 41 30 32 30 41 30 32 37 70 41 30 32 31 41  6pA020A027pA021A
    0740: 30 32 38 70 41 30 32 32 41 30 32 39 70 41 30 32  028pA022A029pA02
    0750: 33 41 30 33 30 70 68 41 30 33 31 A2 08 93 41 30  3A030phA031...A0
    0760: 32 34 0A 00 5B 27 5C 2E 5F 53 42 5F 41 4D 30 30  24..['\._SB_AM00
    0770: 14 3A 41 4D 4E 52 01 5B 23 5C 2E 5F 53 42 5F 41  .:AMNR.[#\._SB_A
    0780: 4D 30 30 FF FF 5B 87 13 41 30 33 32 41 30 33 33  M00..[..A032A033
    0790: 68 03 00 40 5E 41 30 33 34 20 5B 27 5C 2E 5F 53  h..@^A034 ['\._S
    07A0: 42 5F 41 4D 30 30 A4 41 30 33 34 14 3B 41 4D 4E  B_AM00.A034.;AMN
    07B0: 57 02 5B 23 5C 2E 5F 53 42 5F 41 4D 30 30 FF FF  W.[#\._SB_AM00..
    07C0: 5B 87 13 41 30 33 32 41 30 33 33 68 03 00 40 5E  [..A032A033h..@^
    07D0: 41 30 33 35 20 70 69 41 30 33 35 5B 27 5C 2E 5F  A035 piA035['\._
    07E0: 53 42 5F 41 4D 30 30 14 47 11 41 30 31 36 09 8B  SB_AM00.G.A016..
    07F0: 68 0A 00 41 30 33 36 70 11 03 0A 18 67 8A 67 0A  h..A036p....g.g.
    0800: 00 41 30 33 37 8A 67 0A 04 41 30 33 38 8A 67 0A  .A037.g..A038.g.
    0810: 08 41 30 33 39 8A 67 0A 0C 41 30 34 30 8A 67 0A  .A039.g..A040.g.
    0820: 10 41 30 34 31 8A 67 0A 14 41 30 34 32 70 0A 02  .A041.g..A042p..
    0830: 60 A2 4D 0C 95 60 41 30 33 36 70 83 88 68 60 00  `.M..`A036p..h`.
    0840: 61 75 60 70 83 88 68 60 00 62 75 60 7D 79 83 88  au`p..h`.bu`}y..
    0850: 68 60 00 0A 08 00 62 62 75 60 7D 79 83 88 68 60  h`....bbu`}y..h`
    0860: 00 0A 10 00 62 62 75 60 7D 79 83 88 68 60 00 0A  ....bbu`}y..h`..
    0870: 18 00 62 62 75 60 70 0A 00 41 30 33 37 70 0A 00  ..bbu`p..A037p..
    0880: 41 30 33 38 70 0A 00 41 30 33 39 70 0A 00 41 30  A038p..A039p..A0
    0890: 34 30 70 0A 00 41 30 34 31 70 0A 00 41 30 34 32  40p..A041p..A042
    08A0: A0 12 93 61 0A 04 70 62 41 30 33 37 41 30 31 37  ...a..pbA037A017
    08B0: 0A 3E 67 A0 12 93 61 0A 0B 70 62 41 30 33 37 41  .>g...a..pbA037A
    08C0: 30 31 37 0A 3C 67 A0 12 93 61 0A 0C 70 62 41 30  017.<g...a..pbA0
    08D0: 33 37 41 30 31 37 0A 3D 67 A0 12 93 61 0A 10 70  37A017.=g...a..p
    08E0: 62 41 30 33 37 41 30 31 37 0A 3F 67 A0 12 93 61  bA037A017.?g...a
    08F0: 0A 11 70 62 41 30 33 37 41 30 31 37 0A 2F 67 08  ..pbA037A017./g.
    0900: 41 30 30 38 0A 01 08 41 30 30 39 0A 00 14 06 41  A008...A009....A
    0910: 50 54 53 01 14 06 41 57 41 4B 01 14 40 0B 41 4C  PTS...AWAK..@.AL
    0920: 49 42 02 A0 43 08 93 68 0A 00 41 30 30 37 0B 80  IB..C..h..A007..
    0930: AA 8B 69 0A 00 41 30 31 30 8B 69 0A 02 41 30 31  ..i..A010.i..A01
    0940: 31 8A 69 0A 04 41 30 31 32 70 11 04 0B 00 01 60  1.i..A012p.....`
    0950: 8B 60 0A 00 41 30 31 33 70 41 30 31 30 41 30 31  .`..A013pA010A01
    0960: 33 8B 60 0A 02 41 30 31 34 70 41 30 31 31 41 30  3.`..A014pA011A0
    0970: 31 34 8A 60 0A 04 41 30 31 35 70 41 30 31 32 41  14.`..A015pA012A
    0980: 30 31 35 7B 41 30 31 35 80 0A 0F 00 41 30 31 35  015{A015....A015
    0990: 70 0A 01 61 7D 41 30 31 35 61 41 30 31 35 41 30  p..a}A015aA015A0
    09A0: 30 37 0B 81 AA A4 60 A0 18 93 68 0A 0C 41 30 30  07....`...h..A00
    09B0: 37 0B 8E AA 41 30 31 36 69 41 30 30 37 0B 8F AA  7...A016iA007...
    09C0: 70 11 07 0B 00 01 03 00 00 60 A4 60              p........`.`

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 72 0B 00 00 02 22 41 4D 44 00 00 00  SSDTr...."AMD...
    0010: 43 50 4D 41 43 50 56 36 01 00 00 00 49 4E 54 4C  CPMACPV6....INTL
    0020: 31 03 23 20 A0 47 47 00 15 5C 4D 31 31 35 03 00  1.# .GG..\M115..
    0030: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0040: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0050: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0060: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0070: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0080: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    0090: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00A0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00B0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00C0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00D0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00E0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    00F0: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0100: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0110: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0120: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0130: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0140: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0150: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0160: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0170: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0180: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    0190: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01A0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01B0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01C0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01D0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01E0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    01F0: 15 5C 4D 30 34 36 01 00 15 5C 4D 30 34 37 01 00  .\M046...\M047..
    0200: 15 5C 4D 32 34 39 08 04 15 5C 4D 32 35 30 08 05  .\M249...\M250..
    0210: 15 5C 4D 32 35 31 05 00 15 5C 4D 33 31 30 05 00  .\M251...\M310..
    0220: 15 5C 4D 33 31 43 05 00 15 5C 4D 33 32 30 05 00  .\M31C...\M320..
    0230: 15 5C 4D 33 32 31 05 00 15 5C 4D 33 32 32 05 00  .\M321...\M322..
    0240: 15 5C 4D 33 32 33 05 00 15 5C 4D 33 32 34 05 00  .\M323...\M324..
    0250: 15 5C 4D 33 32 35 05 00 15 5C 4D 33 32 36 05 00  .\M325...\M326..
    0260: 15 5C 4D 33 32 37 05 00 15 5C 4D 33 32 38 05 00  .\M327...\M328..
    0270: 15 5C 4D 32 37 36 08 00 15 5C 4D 32 37 37 08 00  .\M276...\M277..
    0280: 15 5C 4D 32 38 30 05 00 15 5C 4D 32 39 30 05 00  .\M280...\M290..
    0290: 15 5C 4D 33 37 38 05 00 15 5C 4D 33 37 39 05 00  .\M378...\M379..
    02A0: 15 5C 4D 33 38 30 05 00 15 5C 4D 33 38 31 05 00  .\M380...\M381..
    02B0: 15 5C 4D 33 38 32 05 00 15 5C 4D 33 38 33 05 00  .\M382...\M383..
    02C0: 15 5C 4D 33 38 34 05 00 15 5C 4D 33 38 35 05 00  .\M384...\M385..
    02D0: 15 5C 4D 33 38 36 05 00 15 5C 4D 33 38 37 05 00  .\M386...\M387..
    02E0: 15 5C 4D 33 38 38 05 00 15 5C 4D 33 38 39 05 00  .\M388...\M389..
    02F0: 15 5C 4D 33 39 30 05 00 15 5C 4D 33 39 31 05 00  .\M390...\M391..
    0300: 15 5C 4D 33 39 32 05 00 15 5C 4D 33 33 31 05 00  .\M392...\M331..
    0310: 15 5C 4D 36 32 30 05 00 15 5C 4D 34 30 34 03 00  .\M620...\M404..
    0320: 15 5C 4D 34 30 38 09 00 15 5C 4D 34 31 34 05 00  .\M408...\M414..
    0330: 15 5C 4D 34 34 34 05 00 15 5C 4D 34 35 33 05 00  .\M444...\M453..
    0340: 15 5C 4D 34 35 34 05 00 15 5C 4D 34 35 35 05 00  .\M454...\M455..
    0350: 15 5C 4D 34 35 36 05 00 15 5C 4D 34 35 37 05 00  .\M456...\M457..
    0360: 15 5C 4D 34 36 30 08 07 15 5C 4D 34 34 39 05 00  .\M460...\M449..
    0370: 15 5C 4D 34 43 30 05 00 15 5C 4D 32 33 41 05 00  .\M4C0...\M23A..
    0380: 15 5C 4D 34 46 30 05 00 15 5C 4D 36 31 30 05 00  .\M4F0...\M610..
    0390: 15 5C 4D 32 39 41 05 00 15 5C 4D 36 33 31 05 00  .\M29A...\M631..
    03A0: 15 5C 4D 36 35 32 05 00 15 5C 4D 30 35 30 06 00  .\M652...\M050..
    03B0: 15 5C 4D 30 35 31 06 00 15 5C 4D 30 35 32 06 00  .\M051...\M052..
    03C0: 15 5C 4D 30 35 33 06 00 15 5C 4D 30 35 34 06 00  .\M053...\M054..
    03D0: 15 5C 4D 30 35 35 06 00 15 5C 4D 30 35 36 06 00  .\M055...\M056..
    03E0: 15 5C 4D 30 35 37 06 00 15 5C 4D 30 35 38 06 00  .\M057...\M058..
    03F0: 15 5C 4D 30 35 39 06 00 15 5C 4D 30 36 32 06 00  .\M059...\M062..
    0400: 15 5C 4D 30 36 38 06 00 15 5C 4D 30 36 39 06 00  .\M068...\M069..
    0410: 15 5C 4D 30 37 30 06 00 15 5C 4D 30 37 31 06 00  .\M070...\M071..
    0420: 15 5C 4D 30 37 32 06 00 15 5C 4D 30 37 34 06 00  .\M072...\M074..
    0430: 15 5C 4D 30 37 35 06 00 15 5C 4D 30 37 36 06 00  .\M075...\M076..
    0440: 15 5C 4D 30 37 37 06 00 15 5C 4D 30 37 38 06 00  .\M077...\M078..
    0450: 15 5C 4D 30 37 39 06 00 15 5C 4D 30 38 30 06 00  .\M079...\M080..
    0460: 15 5C 4D 30 38 31 06 00 15 5C 4D 31 32 37 06 00  .\M081...\M127..
    0470: 15 5C 2F 04 5F 53 42 5F 50 43 49 30 47 50 31 37  .\/._SB_PCI0GP17
    0480: 41 43 50 5F 06 00 15 5C 2F 04 5F 53 42 5F 50 43  ACP_...\/._SB_PC
    0490: 49 30 47 50 31 37 41 5A 41 4C 06 00 08 4D 32 37  I0GP17AZAL...M27
    04A0: 38 01 08 4D 32 37 39 01 08 4D 32 37 41 00 08 4D  8..M279..M27A..M
    04B0: 32 37 42 01 08 41 50 47 45 01 08 41 43 47 45 00  27B..APGE..ACGE.
    04C0: 5B 01 4D 32 37 45 00 14 4C 28 4D 32 37 36 08 4D  [.M27E..L(M276.M
    04D0: 34 36 30 0D 46 45 41 2D 41 53 4C 2D 43 70 6D 50  460.FEA-ASL-CpmP
    04E0: 6F 77 65 72 47 61 74 65 4F 6E 2D 53 74 61 72 74  owerGateOn-Start
    04F0: 0A 00 00 00 00 00 00 00 5B 23 4D 32 37 45 FF FF  ........[#M27E..
    0500: 4D 34 36 30 0D 20 20 43 70 6D 41 63 70 50 72 65  M460.  CpmAcpPre
    0510: 73 65 6E 74 53 74 61 74 65 20 20 20 20 3D 20 25  sentState    = %
    0520: 64 0A 00 4D 32 37 38 00 00 00 00 00 4D 34 36 30  d..M278.....M460
    0530: 0D 20 20 43 70 6D 41 7A 61 6C 69 61 50 72 65 73  .  CpmAzaliaPres
    0540: 65 6E 74 53 74 61 74 65 20 3D 20 25 64 0A 00 4D  entState = %d..M
    0550: 32 37 39 00 00 00 00 00 4D 34 36 30 0D 20 20 41  279.....M460.  A
    0560: 43 47 45 20 20 20 20 20 20 20 20 20 20 20 20 20  CGE             
    0570: 20 20 20 20 20 3D 20 25 64 0A 00 41 43 47 45 00       = %d..ACGE.
    0580: 00 00 00 00 4D 34 36 30 0D 20 20 41 50 47 45 20  ....M460.  APGE 
    0590: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20                  
    05A0: 20 3D 20 25 64 0A 00 41 50 47 45 00 00 00 00 00   = %d..APGE.....
    05B0: A0 3D 92 7F 4D 32 37 38 4D 32 37 39 00 4D 34 36  .=..M278M279.M46
    05C0: 30 0D 46 45 41 2D 41 53 4C 2D 43 70 6D 50 6F 77  0.FEA-ASL-CpmPow
    05D0: 65 72 47 61 74 65 4F 6E 2D 31 2D 45 6E 64 0A 00  erGateOn-1-End..
    05E0: 00 00 00 00 00 00 5B 27 4D 32 37 45 A4 00 A0 48  ......['M27E...H
    05F0: 13 93 41 43 47 45 01 70 4D 32 34 39 00 00 00 0C  ..ACGE.pM249....
    0600: E4 8A 05 00 64 70 0A 64 65 A2 41 05 93 64 00 70  ....dp.de.A..d.p
    0610: 4D 32 34 39 00 00 00 0C E4 8A 05 00 64 76 65 A0  M249........dve.
    0620: 37 93 65 00 4D 34 36 30 0D 20 20 57 61 69 74 20  7.e.M460.  Wait 
    0630: 41 43 4C 4B 20 43 6C 6F 63 6B 20 53 74 61 72 74  ACLK Clock Start
    0640: 20 73 74 61 74 75 73 20 74 69 6D 65 6F 75 74 00   status timeout.
    0650: 00 00 00 00 00 00 A5 5B 21 0A 63 A0 42 09 93 64  .......[!.c.B..d
    0660: 01 4D 32 35 30 00 00 00 0C E4 8A 05 00 00 4D 32  .M250.........M2
    0670: 35 30 00 00 00 0C E0 8A 05 00 0A C8 4D 32 35 30  50..........M250
    0680: 00 00 00 0C 30 8A 05 00 0A 03 70 4D 32 34 39 00  ....0.....pM249.
    0690: 00 00 0C E4 8A 05 00 64 70 0A 64 65 A2 41 05 93  .......dp.de.A..
    06A0: 64 00 70 4D 32 34 39 00 00 00 0C E4 8A 05 00 64  d.pM249........d
    06B0: 76 65 A0 37 93 65 00 4D 34 36 30 0D 20 20 57 61  ve.7.e.M460.  Wa
    06C0: 69 74 20 41 43 4C 4B 20 43 6C 6F 63 6B 20 53 74  it ACLK Clock St
    06D0: 61 72 74 20 73 74 61 74 75 73 20 74 69 6D 65 6F  art status timeo
    06E0: 75 74 00 00 00 00 00 00 00 A5 5B 21 0A 63 A1 38  ut........[!.c.8
    06F0: 4D 34 36 30 0D 46 45 41 2D 41 53 4C 2D 43 70 6D  M460.FEA-ASL-Cpm
    0700: 50 6F 77 65 72 47 61 74 65 4F 6E 2D 6D 6D 41 43  PowerGateOn-mmAC
    0710: 50 5F 52 45 53 50 5F 52 45 47 20 3D 20 25 64 0A  P_RESP_REG = %d.
    0720: 00 64 00 00 00 00 00 4D 34 36 30 0D 46 45 41 2D  .d.....M460.FEA-
    0730: 41 53 4C 2D 43 70 6D 50 6F 77 65 72 47 61 74 65  ASL-CpmPowerGate
    0740: 4F 6E 2D 45 6E 64 0A 00 00 00 00 00 00 00 5B 27  On-End........['
    0750: 4D 32 37 45 14 49 29 4D 32 37 37 08 4D 34 36 30  M27E.I)M277.M460
    0760: 0D 46 45 41 2D 41 53 4C 2D 43 70 6D 50 6F 77 65  .FEA-ASL-CpmPowe
    0770: 72 47 61 74 65 4F 66 66 2D 53 74 61 72 74 0A 00  rGateOff-Start..
    0780: 00 00 00 00 00 00 5B 23 4D 32 37 45 FF FF 4D 34  ......[#M27E..M4
    0790: 36 30 0D 20 20 43 70 6D 41 63 70 50 72 65 73 65  60.  CpmAcpPrese
    07A0: 6E 74 53 74 61 74 65 20 20 20 20 3D 20 25 64 0A  ntState    = %d.
    07B0: 00 4D 32 37 38 00 00 00 00 00 4D 34 36 30 0D 20  .M278.....M460. 
    07C0: 20 43 70 6D 41 7A 61 6C 69 61 50 72 65 73 65 6E   CpmAzaliaPresen
    07D0: 74 53 74 61 74 65 20 3D 20 25 64 0A 00 4D 32 37  tState = %d..M27
    07E0: 39 00 00 00 00 00 4D 34 36 30 0D 20 20 41 50 47  9.....M460.  APG
    07F0: 45 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20  E               
    0800: 20 20 20 3D 20 25 64 0A 00 41 50 47 45 00 00 00     = %d..APGE...
    0810: 00 00 4D 34 36 30 0D 20 20 41 43 47 45 20 20 20  ..M460.  ACGE   
    0820: 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 3D                 =
    0830: 20 25 64 0A 00 41 43 47 45 00 00 00 00 00 A0 42   %d..ACGE......B
    0840: 04 92 90 93 4D 32 37 38 00 93 4D 32 37 39 00 4D  ....M278..M279.M
    0850: 34 36 30 0D 46 45 41 2D 41 53 4C 2D 43 70 6D 50  460.FEA-ASL-CpmP
    0860: 6F 77 65 72 47 61 74 65 4F 66 66 2D 31 2D 45 6E  owerGateOff-1-En
    0870: 64 0A 00 00 00 00 00 00 00 5B 27 4D 32 37 45 A4  d........['M27E.
    0880: 00 A0 4E 13 93 41 43 47 45 01 70 4D 32 34 39 00  ..N..ACGE.pM249.
    0890: 00 00 0C E4 8A 05 00 64 70 0A 64 65 A2 41 05 93  .......dp.de.A..
    08A0: 64 00 70 4D 32 34 39 00 00 00 0C E4 8A 05 00 64  d.pM249........d
    08B0: 76 65 A0 37 93 65 00 4D 34 36 30 0D 20 20 57 61  ve.7.e.M460.  Wa
    08C0: 69 74 20 41 43 4C 4B 20 43 6C 6F 63 6B 20 53 74  it ACLK Clock St
    08D0: 61 72 74 20 73 74 61 74 75 73 20 74 69 6D 65 6F  art status timeo
    08E0: 75 74 00 00 00 00 00 00 00 A5 5B 21 0A 63 A0 48  ut........[!.c.H
    08F0: 09 93 64 01 4D 32 35 30 00 00 00 0C E4 8A 05 00  ..d.M250........
    0900: 00 4D 32 35 30 00 00 00 0C E0 8A 05 00 00 4D 32  .M250.........M2
    0910: 35 30 00 00 00 0C 30 8A 05 00 0A 03 70 4D 32 34  50....0.....pM24
    0920: 39 00 00 00 0C E4 8A 05 00 64 70 0A 64 65 A2 48  9........dp.de.H
    0930: 05 93 64 00 70 4D 32 34 39 00 00 00 0C E4 8A 05  ..d.pM249.......
    0940: 00 64 76 65 A0 3E 93 65 00 4D 34 36 30 0D 20 20  .dve.>.e.M460.  
    0950: 57 61 69 74 20 6D 6D 52 53 4D 55 5F 50 47 46 53  Wait mmRSMU_PGFS
    0960: 4D 5F 53 54 41 54 55 53 5F 41 43 50 20 73 74 61  M_STATUS_ACP sta
    0970: 74 75 73 20 74 69 6D 65 6F 75 74 00 00 00 00 00  tus timeout.....
    0980: 00 00 A5 5B 21 0A 63 A1 38 4D 34 36 30 0D 46 45  ...[!.c.8M460.FE
    0990: 41 2D 41 53 4C 2D 43 70 6D 50 6F 77 65 72 47 61  A-ASL-CpmPowerGa
    09A0: 74 65 4F 6E 2D 6D 6D 41 43 50 5F 52 45 53 50 5F  teOn-mmACP_RESP_
    09B0: 52 45 47 20 3D 20 25 64 0A 00 64 00 00 00 00 00  REG = %d..d.....
    09C0: 4D 34 36 30 0D 46 45 41 2D 41 53 4C 2D 43 70 6D  M460.FEA-ASL-Cpm
    09D0: 50 6F 77 65 72 47 61 74 65 4F 66 66 2D 45 6E 64  PowerGateOff-End
    09E0: 0A 00 00 00 00 00 00 00 5B 27 4D 32 37 45 10 4D  ........['M27E.M
    09F0: 0B 5C 2F 04 5F 53 42 5F 50 43 49 30 47 50 31 37  .\/._SB_PCI0GP17
    0A00: 41 43 50 5F 14 43 05 5F 50 53 30 00 4D 34 36 30  ACP_.C._PS0.M460
    0A10: 0D 46 45 41 2D 41 53 4C 2D 5C 5F 53 42 2E 50 43  .FEA-ASL-\_SB.PC
    0A20: 49 30 2E 50 42 43 2E 41 43 50 2E 5F 50 53 30 20  I0.PBC.ACP._PS0 
    0A30: 43 70 6D 41 63 70 50 72 65 73 65 6E 74 53 74 61  CpmAcpPresentSta
    0A40: 74 65 20 3D 20 31 0A 00 00 00 00 00 00 00 70 01  te = 1........p.
    0A50: 4D 32 37 38 4D 32 37 36 14 43 05 5F 50 53 33 00  M278M276.C._PS3.
    0A60: 4D 34 36 30 0D 46 45 41 2D 41 53 4C 2D 5C 5F 53  M460.FEA-ASL-\_S
    0A70: 42 2E 50 43 49 30 2E 50 42 43 2E 41 43 50 2E 5F  B.PCI0.PBC.ACP._
    0A80: 50 53 33 20 43 70 6D 41 63 70 50 72 65 73 65 6E  PS3 CpmAcpPresen
    0A90: 74 53 74 61 74 65 20 3D 20 30 0A 00 00 00 00 00  tState = 0......
    0AA0: 00 00 70 00 4D 32 37 38 4D 32 37 37 10 45 0C 5C  ..p.M278M277.E.\
    0AB0: 2F 04 5F 53 42 5F 50 43 49 30 47 50 31 37 41 5A  /._SB_PCI0GP17AZ
    0AC0: 41 4C 14 47 05 5F 50 53 30 00 4D 34 36 30 0D 46  AL.G._PS0.M460.F
    0AD0: 45 41 2D 41 53 4C 2D 5C 5F 53 42 2E 50 43 49 30  EA-ASL-\_SB.PCI0
    0AE0: 2E 50 42 43 2E 41 5A 41 4C 2E 5F 50 53 30 20 43  .PBC.AZAL._PS0 C
    0AF0: 70 6D 41 7A 61 6C 69 61 50 72 65 73 65 6E 74 53  pmAzaliaPresentS
    0B00: 74 61 74 65 20 3D 20 31 0A 00 00 00 00 00 00 00  tate = 1........
    0B10: 70 01 4D 32 37 39 4D 32 37 36 14 47 05 5F 50 53  p.M279M276.G._PS
    0B20: 33 00 4D 34 36 30 0D 46 45 41 2D 41 53 4C 2D 5C  3.M460.FEA-ASL-\
    0B30: 5F 53 42 2E 50 43 49 30 2E 50 42 43 2E 41 5A 41  _SB.PCI0.PBC.AZA
    0B40: 4C 2E 5F 50 53 33 20 43 70 6D 41 7A 61 6C 69 61  L._PS3 CpmAzalia
    0B50: 50 72 65 73 65 6E 74 53 74 61 74 65 20 3D 20 30  PresentState = 0
    0B60: 0A 00 00 00 00 00 00 00 70 00 4D 32 37 39 4D 32  ........p.M279M2
    0B70: 37 37                                            77

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 48 24 00 00 02 E2 41 4D 44 00 00 00  SSDTH$....AMD...
    0010: 47 50 50 5F 50 4D 45 5F 01 00 00 00 49 4E 54 4C  GPP_PME_....INTL
    0020: 31 03 23 20 A0 48 60 00 15 5C 4D 30 31 37 08 06  1.# .H`..\M017..
    0030: 15 5C 4D 30 31 38 08 07 15 5C 4D 31 31 35 03 00  .\M018...\M115..
    0040: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0050: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0060: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0070: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0080: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0090: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    00A0: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00B0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00C0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00D0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00E0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00F0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    0100: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0110: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0120: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0130: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0140: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0150: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0160: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0170: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0180: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0190: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    01A0: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01B0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01C0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01D0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01E0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01F0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    0200: 15 5C 4D 30 34 36 01 00 15 5C 4D 30 34 37 01 00  .\M046...\M047..
    0210: 15 5C 4D 30 34 39 08 02 15 5C 4D 32 35 31 05 00  .\M049...\M251..
    0220: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0230: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0240: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0250: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0260: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0270: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0280: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    0290: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02A0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02B0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02C0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02D0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02E0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    02F0: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0300: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0310: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0320: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0330: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0340: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0350: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 36 30 08 07  .\M457...\M460..
    0360: 15 5C 4D 34 34 39 05 00 15 5C 4D 34 43 30 05 00  .\M449...\M4C0..
    0370: 15 5C 4D 32 33 41 05 00 15 5C 4D 34 46 30 05 00  .\M23A...\M4F0..
    0380: 15 5C 4D 36 31 30 05 00 15 5C 4D 32 39 41 05 00  .\M610...\M29A..
    0390: 15 5C 4D 36 33 31 05 00 15 5C 4D 36 35 32 05 00  .\M631...\M652..
    03A0: 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06 00  .\M050...\M051..
    03B0: 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06 00  .\M052...\M053..
    03C0: 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06 00  .\M054...\M055..
    03D0: 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06 00  .\M056...\M057..
    03E0: 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06 00  .\M058...\M059..
    03F0: 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06 00  .\M062...\M068..
    0400: 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06 00  .\M069...\M070..
    0410: 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06 00  .\M071...\M072..
    0420: 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06 00  .\M074...\M075..
    0430: 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06 00  .\M076...\M077..
    0440: 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06 00  .\M078...\M079..
    0450: 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06 00  .\M080...\M081..
    0460: 15 5C 4D 31 32 37 06 00 15 5C 5F 42 42 4E 01 00  .\M127...\_BBN..
    0470: 15 5C 2E 5F 53 42 5F 50 43 49 33 06 00 15 5C 2F  .\._SB_PCI3...\/
    0480: 03 5F 53 42 5F 50 43 49 33 47 50 50 30 06 00 15  ._SB_PCI3GPP0...
    0490: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 31 06  \/._SB_PCI3GPP1.
    04A0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50  ..\/._SB_PCI3GPP
    04B0: 32 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47  2...\/._SB_PCI3G
    04C0: 50 50 33 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PP3...\/._SB_PCI
    04D0: 33 47 50 50 34 06 00 15 5C 2F 03 5F 53 42 5F 50  3GPP4...\/._SB_P
    04E0: 43 49 33 47 50 50 35 06 00 15 5C 2F 03 5F 53 42  CI3GPP5...\/._SB
    04F0: 5F 50 43 49 33 47 50 50 36 06 00 15 5C 2F 03 5F  _PCI3GPP6...\/._
    0500: 53 42 5F 50 43 49 33 47 50 50 37 06 00 15 5C 2F  SB_PCI3GPP7...\/
    0510: 03 5F 53 42 5F 50 43 49 33 47 50 50 38 06 00 15  ._SB_PCI3GPP8...
    0520: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 39 06  \/._SB_PCI3GPP9.
    0530: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50  ..\/._SB_PCI3GPP
    0540: 41 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47  A...\/._SB_PCI3G
    0550: 50 50 42 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PPB...\/._SB_PCI
    0560: 33 47 50 50 43 06 00 15 5C 2F 03 5F 53 42 5F 50  3GPPC...\/._SB_P
    0570: 43 49 33 47 50 50 44 06 00 15 5C 2F 03 5F 53 42  CI3GPPD...\/._SB
    0580: 5F 50 43 49 33 47 50 50 45 06 00 15 5C 2F 03 5F  _PCI3GPPE...\/._
    0590: 53 42 5F 50 43 49 33 47 50 50 46 06 00 15 5C 2F  SB_PCI3GPPF...\/
    05A0: 03 5F 53 42 5F 50 43 49 33 47 50 50 47 06 00 15  ._SB_PCI3GPPG...
    05B0: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 48 06  \/._SB_PCI3GPPH.
    05C0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 31  ..\/._SB_PCI3GP1
    05D0: 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 33 47  5...\/._SB_PCI3G
    05E0: 50 32 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  P25...\/._SB_PCI
    05F0: 33 47 50 33 35 06 00 15 5C 2F 03 5F 53 42 5F 50  3GP35...\/._SB_P
    0600: 43 49 33 47 50 34 35 06 00 15 5C 2F 03 5F 53 42  CI3GP45...\/._SB
    0610: 5F 50 43 49 33 47 50 31 37 06 00 15 5C 2F 03 5F  _PCI3GP17...\/._
    0620: 53 42 5F 50 43 49 33 47 50 32 37 06 00 10 8A E1  SB_PCI3GP27.....
    0630: 01 5C 2E 5F 53 42 5F 50 43 49 33 08 45 54 50 30  .\._SB_PCI3.ETP0
    0640: 0A 55 08 45 54 50 31 0A 55 08 45 54 50 32 0A 55  .U.ETP1.U.ETP2.U
    0650: 08 45 54 50 33 0A 55 08 45 54 50 34 0A 55 08 45  .ETP3.U.ETP4.U.E
    0660: 54 50 35 0A 55 08 45 54 50 36 0A 55 08 45 54 50  TP5.U.ETP6.U.ETP
    0670: 37 0A 55 08 45 54 50 38 0A 55 08 45 54 50 39 0A  7.U.ETP8.U.ETP9.
    0680: 55 08 45 54 50 41 0A 55 08 45 54 50 42 0A 55 08  U.ETPA.U.ETPB.U.
    0690: 45 54 50 43 0A 55 08 45 54 50 44 0A 55 08 45 54  ETPC.U.ETPD.U.ET
    06A0: 50 45 0A 55 08 45 54 50 46 0A 55 08 45 54 50 47  PE.U.ETPF.U.ETPG
    06B0: 0A 55 08 45 54 50 48 0A 55 08 45 54 31 35 0A 55  .U.ETPH.U.ET15.U
    06C0: 08 45 54 32 35 0A 55 08 45 54 33 35 0A 55 08 45  .ET25.U.ET35.U.E
    06D0: 54 34 35 0A 55 08 45 54 31 37 0A 55 08 45 54 32  T45.U.ET17.U.ET2
    06E0: 37 0A 55 14 84 D6 01 50 50 4D 45 00 4D 34 36 30  7.U....PPME.M460
    06F0: 0D 20 20 4F 45 4D 2D 41 53 4C 2D 5C 5F 53 42 2E  .  OEM-ASL-\_SB.
    0700: 50 43 49 33 2E 50 50 4D 45 0A 00 00 00 00 00 00  PCI3.PPME.......
    0710: 00 A0 4F 18 92 93 5C 2F 03 5F 53 42 5F 50 43 49  ..O...\/._SB_PCI
    0720: 33 45 54 50 30 0A FF 70 7A 4D 30 31 37 5F 42 42  3ETP0..pzM017_BB
    0730: 4E 01 01 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53  N...x......\/._S
    0740: 42 5F 50 43 49 33 45 54 50 30 A0 46 15 91 93 5C  B_PCI3ETP0.F...\
    0750: 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 30 01 93  /._SB_PCI3ETP0..
    0760: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 30 0A  \/._SB_PCI3ETP0.
    0770: 03 A0 4F 12 5B 12 5C 2F 03 5F 53 42 5F 50 43 49  ..O.[.\/._SB_PCI
    0780: 33 47 50 50 30 00 A0 49 06 92 93 4D 36 32 30 00  3GPP0..I...M620.
    0790: A0 4F 05 93 4D 30 34 39 4D 36 32 30 0A 10 01 A0  .O..M049M620....
    07A0: 40 05 93 7B 4D 30 34 39 4D 36 32 30 0A 52 0A 02  @..{M049M620.R..
    07B0: 00 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66  ..M460.    Notif
    07C0: 79 20 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50 50  y (\_SB.PCI3.GPP
    07D0: 30 2C 20 30 78 30 29 0A 00 00 00 00 00 00 00 86  0, 0x0).........
    07E0: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 30 00  \/._SB_PCI3GPP0.
    07F0: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    0800: 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50 50 30 2C  (\_SB.PCI3.GPP0,
    0810: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    0820: 03 5F 53 42 5F 50 43 49 33 47 50 50 30 0A 02 5B  ._SB_PCI3GPP0..[
    0830: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78  ".dpM017_BBN...x
    0840: 00 0A 20 60 A0 4C 05 92 93 7B 60 0C 00 00 03 00  .. `.L...{`.....
    0850: 00 00 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A  ..M018_BBN...x..
    0860: 20 60 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00   `pM017_BBN...x.
    0870: 0A 20 60 A0 2D 92 93 7B 60 0C 00 00 03 00 00 00  . `.-..{`.......
    0880: 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A 20 60  M018_BBN...x.. `
    0890: 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00 0A 20  pM017_BBN...x.. 
    08A0: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    08B0: 33 45 54 50 31 0A FF 70 7A 4D 30 31 37 5F 42 42  3ETP1..pzM017_BB
    08C0: 4E 01 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    08D0: 53 42 5F 50 43 49 33 45 54 50 31 A0 41 0F 91 93  SB_PCI3ETP1.A...
    08E0: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 31 01  \/._SB_PCI3ETP1.
    08F0: 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 31  .\/._SB_PCI3ETP1
    0900: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0910: 49 33 47 50 50 31 00 4D 34 36 30 0D 20 20 20 20  I3GPP1.M460.    
    0920: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0930: 33 2E 47 50 50 31 2C 20 30 78 32 29 0A 00 00 00  3.GPP1, 0x2)....
    0940: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    0950: 47 50 50 31 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP1..[".dpM017_
    0960: 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0970: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0980: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0990: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    09A0: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    09B0: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    09C0: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    09D0: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    09E0: 32 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 03  2..pzM017_BBN...
    09F0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0A00: 43 49 33 45 54 50 32 A0 41 0F 91 93 5C 2F 03 5F  CI3ETP2.A...\/._
    0A10: 53 42 5F 50 43 49 33 45 54 50 32 01 93 5C 2F 03  SB_PCI3ETP2..\/.
    0A20: 5F 53 42 5F 50 43 49 33 45 54 50 32 0A 03 A0 4A  _SB_PCI3ETP2...J
    0A30: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  .[.\/._SB_PCI3GP
    0A40: 50 32 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P2.M460.    Noti
    0A50: 66 79 20 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50  fy (\_SB.PCI3.GP
    0A60: 50 32 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P2, 0x2)........
    0A70: 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 32  .\/._SB_PCI3GPP2
    0A80: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0A90: 0A 03 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0AA0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AB0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AC0: 01 0A 03 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0AD0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AE0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AF0: 01 0A 03 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F  ....x.. `.K...\/
    0B00: 03 5F 53 42 5F 50 43 49 33 45 54 50 33 0A FF 70  ._SB_PCI3ETP3..p
    0B10: 7A 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78 00 0A  zM017_BBN....x..
    0B20: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45  ....\/._SB_PCI3E
    0B30: 54 50 33 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50  TP3.A...\/._SB_P
    0B40: 43 49 33 45 54 50 33 01 93 5C 2F 03 5F 53 42 5F  CI3ETP3..\/._SB_
    0B50: 50 43 49 33 45 54 50 33 0A 03 A0 4A 0C 5B 12 5C  PCI3ETP3...J.[.\
    0B60: 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 33 00 4D  /._SB_PCI3GPP3.M
    0B70: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    0B80: 5C 5F 53 42 2E 50 43 49 33 2E 47 50 50 33 2C 20  \_SB.PCI3.GPP3, 
    0B90: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    0BA0: 5F 53 42 5F 50 43 49 33 47 50 50 33 0A 02 5B 22  _SB_PCI3GPP3..["
    0BB0: 0A 64 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78  .dpM017_BBN....x
    0BC0: 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00  .. `.@...{`.....
    0BD0: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0BE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0BF0: 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00  x.. `./..{`.....
    0C00: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0C10: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0C20: 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42  x.. `.K...\/._SB
    0C30: 5F 50 43 49 33 45 54 50 34 0A FF 70 7A 4D 30 31  _PCI3ETP4..pzM01
    0C40: 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 18 0A 10 00  7_BBN....x......
    0C50: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 34 A0  \/._SB_PCI3ETP4.
    0C60: 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45  A...\/._SB_PCI3E
    0C70: 54 50 34 01 93 5C 2F 03 5F 53 42 5F 50 43 49 33  TP4..\/._SB_PCI3
    0C80: 45 54 50 34 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53  ETP4...J.[.\/._S
    0C90: 42 5F 50 43 49 33 47 50 50 34 00 4D 34 36 30 0D  B_PCI3GPP4.M460.
    0CA0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    0CB0: 2E 50 43 49 33 2E 47 50 50 34 2C 20 30 78 32 29  .PCI3.GPP4, 0x2)
    0CC0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    0CD0: 50 43 49 33 47 50 50 34 0A 02 5B 22 0A 64 70 4D  PCI3GPP4..[".dpM
    0CE0: 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60  017_BBN....x.. `
    0CF0: A0 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  .@...{`.......M0
    0D00: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D10: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D20: 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  `./..{`.......M0
    0D30: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D40: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D50: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    0D60: 33 45 54 50 35 0A FF 70 7A 4D 30 31 37 5F 42 42  3ETP5..pzM017_BB
    0D70: 4E 01 0A 06 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    0D80: 53 42 5F 50 43 49 33 45 54 50 35 A0 41 0F 91 93  SB_PCI3ETP5.A...
    0D90: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 35 01  \/._SB_PCI3ETP5.
    0DA0: 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 35  .\/._SB_PCI3ETP5
    0DB0: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0DC0: 49 33 47 50 50 35 00 4D 34 36 30 0D 20 20 20 20  I3GPP5.M460.    
    0DD0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0DE0: 33 2E 47 50 50 35 2C 20 30 78 32 29 0A 00 00 00  3.GPP5, 0x2)....
    0DF0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    0E00: 47 50 50 35 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP5..[".dpM017_
    0E10: 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0E20: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E30: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E40: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    0E50: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E60: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E70: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    0E80: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    0E90: 36 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 07  6..pzM017_BBN...
    0EA0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0EB0: 43 49 33 45 54 50 36 A0 41 0F 91 93 5C 2F 03 5F  CI3ETP6.A...\/._
    0EC0: 53 42 5F 50 43 49 33 45 54 50 36 01 93 5C 2F 03  SB_PCI3ETP6..\/.
    0ED0: 5F 53 42 5F 50 43 49 33 45 54 50 36 0A 03 A0 4A  _SB_PCI3ETP6...J
    0EE0: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  .[.\/._SB_PCI3GP
    0EF0: 50 36 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P6.M460.    Noti
    0F00: 66 79 20 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50  fy (\_SB.PCI3.GP
    0F10: 50 36 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P6, 0x2)........
    0F20: 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 36  .\/._SB_PCI3GPP6
    0F30: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0F40: 0A 07 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0F50: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F60: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0F70: 01 0A 07 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0F80: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F90: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0FA0: 01 0A 07 0A 78 00 0A 20 60 A0 46 19 92 93 5C 2F  ....x.. `.F...\/
    0FB0: 03 5F 53 42 5F 50 43 49 33 45 54 50 37 0A FF 70  ._SB_PCI3ETP7..p
    0FC0: 7A 4D 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A  zM017_BBN....x..
    0FD0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45  ....\/._SB_PCI3E
    0FE0: 54 50 37 A0 4C 15 91 93 5C 2F 03 5F 53 42 5F 50  TP7.L...\/._SB_P
    0FF0: 43 49 33 45 54 50 37 01 93 5C 2F 03 5F 53 42 5F  CI3ETP7..\/._SB_
    1000: 50 43 49 33 45 54 50 37 0A 03 A0 45 13 5B 12 5C  PCI3ETP7...E.[.\
    1010: 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 37 00 A0  /._SB_PCI3GPP7..
    1020: 4A 06 92 93 4D 36 32 30 00 A0 40 06 93 4D 30 34  J...M620..@..M04
    1030: 39 4D 36 32 30 0A 10 0A 02 A0 40 05 93 7B 4D 30  9M620.....@..{M0
    1040: 34 39 4D 36 32 30 0A 52 0A 02 00 00 4D 34 36 30  49M620.R....M460
    1050: 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53  .    Notify (\_S
    1060: 42 2E 50 43 49 33 2E 47 50 50 37 2C 20 30 78 30  B.PCI3.GPP7, 0x0
    1070: 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42  ).........\/._SB
    1080: 5F 50 43 49 33 47 50 50 37 00 4D 34 36 30 0D 20  _PCI3GPP7.M460. 
    1090: 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E     Notify (\_SB.
    10A0: 50 43 49 33 2E 47 50 50 37 2C 20 30 78 32 29 0A  PCI3.GPP7, 0x2).
    10B0: 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50  ........\/._SB_P
    10C0: 43 49 33 47 50 50 37 0A 02 5B 22 0A 64 70 4D 30  CI3GPP7..[".dpM0
    10D0: 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 A0  17_BBN....x.. `.
    10E0: 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  @...{`.......M01
    10F0: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1100: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1110: A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  ./..{`.......M01
    1120: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1130: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1140: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 33  .A...\/._SB_PCI3
    1150: 45 54 50 38 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETP8..pzM017_BBN
    1160: 0A 02 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1170: 53 42 5F 50 43 49 33 45 54 50 38 A0 46 0F 91 93  SB_PCI3ETP8.F...
    1180: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 38 01  \/._SB_PCI3ETP8.
    1190: 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 38  .\/._SB_PCI3ETP8
    11A0: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    11B0: 49 33 47 50 50 38 00 4D 34 36 30 0D 20 20 20 20  I3GPP8.M460.    
    11C0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    11D0: 33 2E 47 50 50 38 2C 20 30 78 32 29 0A 00 00 00  3.GPP8, 0x2)....
    11E0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    11F0: 47 50 50 38 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP8..[".dpM017_
    1200: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    1210: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1220: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    1230: 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    1240: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    1250: 38 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    1260: 4D 30 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A  M017_BBN.....x..
    1270: 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43   `.K...\/._SB_PC
    1280: 49 33 45 54 50 39 0A FF 70 7A 4D 30 31 37 5F 42  I3ETP9..pzM017_B
    1290: 42 4E 0A 03 01 0A 78 00 0A 18 0A 10 00 5C 2F 03  BN....x......\/.
    12A0: 5F 53 42 5F 50 43 49 33 45 54 50 39 A0 41 0F 91  _SB_PCI3ETP9.A..
    12B0: 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 39  .\/._SB_PCI3ETP9
    12C0: 01 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    12D0: 39 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50  9...J.[.\/._SB_P
    12E0: 43 49 33 47 50 50 39 00 4D 34 36 30 0D 20 20 20  CI3GPP9.M460.   
    12F0: 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43   Notify (\_SB.PC
    1300: 49 33 2E 47 50 50 39 2C 20 30 78 32 29 0A 00 00  I3.GPP9, 0x2)...
    1310: 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49  ......\/._SB_PCI
    1320: 33 47 50 50 39 0A 02 5B 22 0A 64 70 4D 30 31 37  3GPP9..[".dpM017
    1330: 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 40 06  _BBN....x.. `.@.
    1340: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1350: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1360: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 2F  7_BBN....x.. `./
    1370: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1380: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1390: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 41  7_BBN....x.. `.A
    13A0: 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54  ...\/._SB_PCI3ET
    13B0: 50 41 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 0A 03  PA..pzM017_BBN..
    13C0: 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42  ...x......\/._SB
    13D0: 5F 50 43 49 33 45 54 50 41 A0 46 0F 91 93 5C 2F  _PCI3ETPA.F...\/
    13E0: 03 5F 53 42 5F 50 43 49 33 45 54 50 41 01 93 5C  ._SB_PCI3ETPA..\
    13F0: 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 41 0A 03  /._SB_PCI3ETPA..
    1400: A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 33  .O.[.\/._SB_PCI3
    1410: 47 50 50 41 00 4D 34 36 30 0D 20 20 20 20 4E 6F  GPPA.M460.    No
    1420: 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49 33 2E  tify (\_SB.PCI3.
    1430: 47 50 50 41 2C 20 30 78 32 29 0A 00 00 00 00 00  GPPA, 0x2)......
    1440: 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50  ...\/._SB_PCI3GP
    1450: 50 41 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42  PA..[".dpM017_BB
    1460: 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 44 06 92 93  N.....x.. `.D...
    1470: 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42 42  {`.......M018_BB
    1480: 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  N.....x.. `pM017
    1490: 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 31  _BBN.....x.. `.1
    14A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    14B0: 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    14C0: 31 37 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    14D0: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 33  .A...\/._SB_PCI3
    14E0: 45 54 50 42 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETPB..pzM017_BBN
    14F0: 0A 03 0A 03 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1500: 53 42 5F 50 43 49 33 45 54 50 42 A0 46 0F 91 93  SB_PCI3ETPB.F...
    1510: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 42 01  \/._SB_PCI3ETPB.
    1520: 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 42  .\/._SB_PCI3ETPB
    1530: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    1540: 49 33 47 50 50 42 00 4D 34 36 30 0D 20 20 20 20  I3GPPB.M460.    
    1550: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    1560: 33 2E 47 50 50 42 2C 20 30 78 32 29 0A 00 00 00  3.GPPB, 0x2)....
    1570: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    1580: 47 50 50 42 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPPB..[".dpM017_
    1590: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    15A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    15B0: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    15C0: 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60  17_BBN.....x.. `
    15D0: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    15E0: 38 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    15F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A  M017_BBN.....x..
    1600: 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43   `.A...\/._SB_PC
    1610: 49 33 45 54 50 43 0A FF 70 7A 4D 30 31 37 5F 42  I3ETPC..pzM017_B
    1620: 42 4E 0A 03 0A 04 0A 78 00 0A 18 0A 10 00 5C 2F  BN.....x......\/
    1630: 03 5F 53 42 5F 50 43 49 33 45 54 50 43 A0 46 0F  ._SB_PCI3ETPC.F.
    1640: 91 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    1650: 43 01 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54  C..\/._SB_PCI3ET
    1660: 50 43 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F  PC...O.[.\/._SB_
    1670: 50 43 49 33 47 50 50 43 00 4D 34 36 30 0D 20 20  PCI3GPPC.M460.  
    1680: 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50    Notify (\_SB.P
    1690: 43 49 33 2E 47 50 50 43 2C 20 30 78 32 29 0A 00  CI3.GPPC, 0x2)..
    16A0: 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43  .......\/._SB_PC
    16B0: 49 33 47 50 50 43 0A 02 5B 22 0A 64 70 4D 30 31  I3GPPC..[".dpM01
    16C0: 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 A0  7_BBN.....x.. `.
    16D0: 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  D...{`.......M01
    16E0: 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    16F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A  M017_BBN.....x..
    1700: 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D   `.1..{`.......M
    1710: 30 31 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20  018_BBN.....x.. 
    1720: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78  `pM017_BBN.....x
    1730: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1740: 50 43 49 33 45 54 50 44 0A FF 70 7A 4D 30 31 37  PCI3ETPD..pzM017
    1750: 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1760: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 44 A0  \/._SB_PCI3ETPD.
    1770: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45  F...\/._SB_PCI3E
    1780: 54 50 44 01 93 5C 2F 03 5F 53 42 5F 50 43 49 33  TPD..\/._SB_PCI3
    1790: 45 54 50 44 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ETPD...O.[.\/._S
    17A0: 42 5F 50 43 49 33 47 50 50 44 00 4D 34 36 30 0D  B_PCI3GPPD.M460.
    17B0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    17C0: 2E 50 43 49 33 2E 47 50 50 44 2C 20 30 78 32 29  .PCI3.GPPD, 0x2)
    17D0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    17E0: 50 43 49 33 47 50 50 44 0A 02 5B 22 0A 64 70 4D  PCI3GPPD..[".dpM
    17F0: 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  017_BBN.....x.. 
    1800: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1810: 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  018_BBN.....x.. 
    1820: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78  `pM017_BBN.....x
    1830: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1840: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00  .M018_BBN.....x.
    1850: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05  . `pM017_BBN....
    1860: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1870: 42 5F 50 43 49 33 45 54 50 45 0A FF 70 7A 4D 30  B_PCI3ETPE..pzM0
    1880: 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00 0A 18 0A  17_BBN.....x....
    1890: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    18A0: 45 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  E.F...\/._SB_PCI
    18B0: 33 45 54 50 45 01 93 5C 2F 03 5F 53 42 5F 50 43  3ETPE..\/._SB_PC
    18C0: 49 33 45 54 50 45 0A 03 A0 4F 0C 5B 12 5C 2F 03  I3ETPE...O.[.\/.
    18D0: 5F 53 42 5F 50 43 49 33 47 50 50 45 00 4D 34 36  _SB_PCI3GPPE.M46
    18E0: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    18F0: 53 42 2E 50 43 49 33 2E 47 50 50 45 2C 20 30 78  SB.PCI3.GPPE, 0x
    1900: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1910: 42 5F 50 43 49 33 47 50 50 45 0A 02 5B 22 0A 64  B_PCI3GPPE..[".d
    1920: 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00  pM017_BBN.....x.
    1930: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1940: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A 78 00  .M018_BBN.....x.
    1950: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06  . `pM017_BBN....
    1960: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1970: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A  ...M018_BBN.....
    1980: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1990: 0A 06 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    19A0: 5F 53 42 5F 50 43 49 33 45 54 50 46 0A FF 70 7A  _SB_PCI3ETPF..pz
    19B0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A 78 00 0A  M017_BBN.....x..
    19C0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45  ....\/._SB_PCI3E
    19D0: 54 50 46 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  TPF.F...\/._SB_P
    19E0: 43 49 33 45 54 50 46 01 93 5C 2F 03 5F 53 42 5F  CI3ETPF..\/._SB_
    19F0: 50 43 49 33 45 54 50 46 0A 03 A0 4F 0C 5B 12 5C  PCI3ETPF...O.[.\
    1A00: 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 46 00 4D  /._SB_PCI3GPPF.M
    1A10: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    1A20: 5C 5F 53 42 2E 50 43 49 33 2E 47 50 50 46 2C 20  \_SB.PCI3.GPPF, 
    1A30: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    1A40: 5F 53 42 5F 50 43 49 33 47 50 50 46 0A 02 5B 22  _SB_PCI3GPPF..["
    1A50: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A  .dpM017_BBN.....
    1A60: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    1A70: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 07 0A  ...M018_BBN.....
    1A80: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1A90: 0A 07 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    1AA0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A  .....M018_BBN...
    1AB0: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    1AC0: 0A 03 0A 07 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    1AD0: 2F 03 5F 53 42 5F 50 43 49 33 45 54 50 47 0A FF  /._SB_PCI3ETPG..
    1AE0: 70 7A 4D 30 31 37 5F 42 42 4E 0A 04 01 0A 78 00  pzM017_BBN....x.
    1AF0: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    1B00: 45 54 50 47 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ETPG.A...\/._SB_
    1B10: 50 43 49 33 45 54 50 47 01 93 5C 2F 03 5F 53 42  PCI3ETPG..\/._SB
    1B20: 5F 50 43 49 33 45 54 50 47 0A 03 A0 4A 0C 5B 12  _PCI3ETPG...J.[.
    1B30: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 50 47 00  \/._SB_PCI3GPPG.
    1B40: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    1B50: 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50 50 47 2C  (\_SB.PCI3.GPPG,
    1B60: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    1B70: 03 5F 53 42 5F 50 43 49 33 47 50 50 47 0A 02 5B  ._SB_PCI3GPPG..[
    1B80: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 04 01 0A  ".dpM017_BBN....
    1B90: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    1BA0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BB0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BC0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    1BD0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BE0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BF0: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1C00: 42 5F 50 43 49 33 45 54 50 48 0A FF 70 7A 4D 30  B_PCI3ETPH..pzM0
    1C10: 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    1C20: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 50  ..\/._SB_PCI3ETP
    1C30: 48 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  H.F...\/._SB_PCI
    1C40: 33 45 54 50 48 01 93 5C 2F 03 5F 53 42 5F 50 43  3ETPH..\/._SB_PC
    1C50: 49 33 45 54 50 48 0A 03 A0 4F 0C 5B 12 5C 2F 03  I3ETPH...O.[.\/.
    1C60: 5F 53 42 5F 50 43 49 33 47 50 50 48 00 4D 34 36  _SB_PCI3GPPH.M46
    1C70: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    1C80: 53 42 2E 50 43 49 33 2E 47 50 50 48 2C 20 30 78  SB.PCI3.GPPH, 0x
    1C90: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1CA0: 42 5F 50 43 49 33 47 50 50 48 0A 02 5B 22 0A 64  B_PCI3GPPH..[".d
    1CB0: 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00  pM017_BBN.....x.
    1CC0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1CD0: 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A 78 00  .M018_BBN.....x.
    1CE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02  . `pM017_BBN....
    1CF0: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1D00: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A  ...M018_BBN.....
    1D10: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04  x.. `pM017_BBN..
    1D20: 0A 02 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03  ...x.. `.K...\/.
    1D30: 5F 53 42 5F 50 43 49 33 45 54 31 35 0A FF 70 7A  _SB_PCI3ET15..pz
    1D40: 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00 0A 18  M017_BBN....x...
    1D50: 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54  ...\/._SB_PCI3ET
    1D60: 31 35 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43  15.A...\/._SB_PC
    1D70: 49 33 45 54 31 35 01 93 5C 2F 03 5F 53 42 5F 50  I3ET15..\/._SB_P
    1D80: 43 49 33 45 54 31 35 0A 03 A0 4A 0C 5B 12 5C 2F  CI3ET15...J.[.\/
    1D90: 03 5F 53 42 5F 50 43 49 33 47 50 31 35 00 4D 34  ._SB_PCI3GP15.M4
    1DA0: 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C  60.    Notify (\
    1DB0: 5F 53 42 2E 50 43 49 33 2E 47 50 31 35 2C 20 30  _SB.PCI3.GP15, 0
    1DC0: 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F  x2).........\/._
    1DD0: 53 42 5F 50 43 49 33 47 50 31 35 0A 02 5B 22 0A  SB_PCI3GP15..[".
    1DE0: 64 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00  dpM017_BBN....x.
    1DF0: 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00 00  . `.@...{`......
    1E00: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E10: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E20: 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00  .. `./..{`......
    1E30: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E40: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E50: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1E60: 50 43 49 33 45 54 32 35 0A FF 70 7A 4D 30 31 37  PCI3ET25..pzM017
    1E70: 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1E80: 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 32 35 A0  \/._SB_PCI3ET25.
    1E90: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 33 45  F...\/._SB_PCI3E
    1EA0: 54 32 35 01 93 5C 2F 03 5F 53 42 5F 50 43 49 33  T25..\/._SB_PCI3
    1EB0: 45 54 32 35 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ET25...O.[.\/._S
    1EC0: 42 5F 50 43 49 33 47 50 32 35 00 4D 34 36 30 0D  B_PCI3GP25.M460.
    1ED0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    1EE0: 2E 50 43 49 33 2E 47 50 32 35 2C 20 30 78 32 29  .PCI3.GP25, 0x2)
    1EF0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    1F00: 50 43 49 33 47 50 32 35 0A 02 5B 22 0A 64 70 4D  PCI3GP25..[".dpM
    1F10: 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  017_BBN.....x.. 
    1F20: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1F30: 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  018_BBN.....x.. 
    1F40: 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78  `pM017_BBN.....x
    1F50: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1F60: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00  .M018_BBN.....x.
    1F70: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02  . `pM017_BBN....
    1F80: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1F90: 42 5F 50 43 49 33 45 54 33 35 0A FF 70 7A 4D 30  B_PCI3ET35..pzM0
    1FA0: 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00 0A 18 0A  17_BBN.....x....
    1FB0: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 33  ..\/._SB_PCI3ET3
    1FC0: 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  5.F...\/._SB_PCI
    1FD0: 33 45 54 33 35 01 93 5C 2F 03 5F 53 42 5F 50 43  3ET35..\/._SB_PC
    1FE0: 49 33 45 54 33 35 0A 03 A0 4F 0C 5B 12 5C 2F 03  I3ET35...O.[.\/.
    1FF0: 5F 53 42 5F 50 43 49 33 47 50 33 35 00 4D 34 36  _SB_PCI3GP35.M46
    2000: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    2010: 53 42 2E 50 43 49 33 2E 47 50 33 35 2C 20 30 78  SB.PCI3.GP35, 0x
    2020: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    2030: 42 5F 50 43 49 33 47 50 33 35 0A 02 5B 22 0A 64  B_PCI3GP35..[".d
    2040: 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00  pM017_BBN.....x.
    2050: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    2060: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A 78 00  .M018_BBN.....x.
    2070: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03  . `pM017_BBN....
    2080: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2090: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A  ...M018_BBN.....
    20A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    20B0: 0A 03 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    20C0: 5F 53 42 5F 50 43 49 33 45 54 34 35 0A FF 70 7A  _SB_PCI3ET45..pz
    20D0: 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A 78 00 0A  M017_BBN.....x..
    20E0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45  ....\/._SB_PCI3E
    20F0: 54 34 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  T45.F...\/._SB_P
    2100: 43 49 33 45 54 34 35 01 93 5C 2F 03 5F 53 42 5F  CI3ET45..\/._SB_
    2110: 50 43 49 33 45 54 34 35 0A 03 A0 4F 0C 5B 12 5C  PCI3ET45...O.[.\
    2120: 2F 03 5F 53 42 5F 50 43 49 33 47 50 34 35 00 4D  /._SB_PCI3GP45.M
    2130: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    2140: 5C 5F 53 42 2E 50 43 49 33 2E 47 50 34 35 2C 20  \_SB.PCI3.GP45, 
    2150: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    2160: 5F 53 42 5F 50 43 49 33 47 50 34 35 0A 02 5B 22  _SB_PCI3GP45..["
    2170: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A  .dpM017_BBN.....
    2180: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    2190: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 04 0A  ...M018_BBN.....
    21A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    21B0: 0A 04 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    21C0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A  .....M018_BBN...
    21D0: 04 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    21E0: 0A 05 0A 04 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    21F0: 2F 03 5F 53 42 5F 50 43 49 33 45 54 31 37 0A FF  /._SB_PCI3ET17..
    2200: 70 7A 4D 30 31 37 5F 42 42 4E 0A 07 01 0A 78 00  pzM017_BBN....x.
    2210: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33  .....\/._SB_PCI3
    2220: 45 54 31 37 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ET17.A...\/._SB_
    2230: 50 43 49 33 45 54 31 37 01 93 5C 2F 03 5F 53 42  PCI3ET17..\/._SB
    2240: 5F 50 43 49 33 45 54 31 37 0A 03 A0 4A 0C 5B 12  _PCI3ET17...J.[.
    2250: 5C 2F 03 5F 53 42 5F 50 43 49 33 47 50 31 37 00  \/._SB_PCI3GP17.
    2260: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    2270: 28 5C 5F 53 42 2E 50 43 49 33 2E 47 50 31 37 2C  (\_SB.PCI3.GP17,
    2280: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    2290: 03 5F 53 42 5F 50 43 49 33 47 50 31 37 0A 02 5B  ._SB_PCI3GP17..[
    22A0: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 07 01 0A  ".dpM017_BBN....
    22B0: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    22C0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    22D0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    22E0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    22F0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    2300: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    2310: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    2320: 42 5F 50 43 49 33 45 54 32 37 0A FF 70 7A 4D 30  B_PCI3ET27..pzM0
    2330: 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    2340: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 33 45 54 32  ..\/._SB_PCI3ET2
    2350: 37 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  7.F...\/._SB_PCI
    2360: 33 45 54 32 37 01 93 5C 2F 03 5F 53 42 5F 50 43  3ET27..\/._SB_PC
    2370: 49 33 45 54 32 37 0A 03 A0 4F 0C 5B 12 5C 2F 03  I3ET27...O.[.\/.
    2380: 5F 53 42 5F 50 43 49 33 47 50 32 37 00 4D 34 36  _SB_PCI3GP27.M46
    2390: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    23A0: 53 42 2E 50 43 49 33 2E 47 50 32 37 2C 20 30 78  SB.PCI3.GP27, 0x
    23B0: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    23C0: 42 5F 50 43 49 33 47 50 32 37 0A 02 5B 22 0A 64  B_PCI3GP27..[".d
    23D0: 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00  pM017_BBN.....x.
    23E0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    23F0: 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A 78 00  .M018_BBN.....x.
    2400: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02  . `pM017_BBN....
    2410: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2420: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A  ...M018_BBN.....
    2430: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07  x.. `pM017_BBN..
    2440: 0A 02 0A 78 00 0A 20 60                          ...x.. `

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 00 05 00 00 02 7E 41 4D 44 00 00 00  SSDT.....~AMD...
    0010: 4D 45 4D 54 4F 4F 4C 30 02 00 00 00 49 4E 54 4C  MEMTOOL0....INTL
    0020: 31 03 23 20 A0 43 44 00 15 5C 4D 31 31 35 03 00  1.# .CD..\M115..
    0030: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0040: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0050: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0060: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0070: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0080: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    0090: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00A0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00B0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00C0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00D0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00E0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    00F0: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0100: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0110: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0120: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0130: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0140: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0150: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0160: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0170: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0180: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    0190: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01A0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01B0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01C0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01D0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01E0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    01F0: 15 5C 4D 32 33 32 08 03 15 5C 4D 30 34 36 01 00  .\M232...\M046..
    0200: 15 5C 4D 30 34 37 01 00 15 5C 4D 30 34 39 08 02  .\M047...\M049..
    0210: 15 5C 4D 30 34 45 08 03 15 5C 4D 32 35 31 05 00  .\M04E...\M251..
    0220: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0230: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0240: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0250: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0260: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0270: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0280: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    0290: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02A0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02B0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02C0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02D0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02E0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    02F0: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0300: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0310: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0320: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0330: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0340: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0350: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 36 30 08 07  .\M457...\M460..
    0360: 15 5C 4D 34 34 39 05 00 15 5C 4D 34 43 30 05 00  .\M449...\M4C0..
    0370: 15 5C 4D 32 33 41 05 00 15 5C 4D 34 46 30 05 00  .\M23A...\M4F0..
    0380: 15 5C 4D 36 31 30 05 00 15 5C 4D 32 39 41 05 00  .\M610...\M29A..
    0390: 15 5C 4D 36 33 31 05 00 15 5C 4D 36 35 32 05 00  .\M631...\M652..
    03A0: 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06 00  .\M050...\M051..
    03B0: 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06 00  .\M052...\M053..
    03C0: 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06 00  .\M054...\M055..
    03D0: 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06 00  .\M056...\M057..
    03E0: 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06 00  .\M058...\M059..
    03F0: 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06 00  .\M062...\M068..
    0400: 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06 00  .\M069...\M070..
    0410: 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06 00  .\M071...\M072..
    0420: 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06 00  .\M074...\M075..
    0430: 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06 00  .\M076...\M077..
    0440: 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06 00  .\M078...\M079..
    0450: 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06 00  .\M080...\M081..
    0460: 15 5C 4D 31 32 37 06 00 14 47 09 4D 47 52 54 01  .\M127...G.MGRT.
    0470: 8A 68 00 4D 45 4D 49 8A 68 0A 04 4D 45 4D 44 4D  .h.MEMI.h..MEMDM
    0480: 34 36 30 0D 20 20 46 45 41 2D 41 53 4C 2D 4D 65  460.  FEA-ASL-Me
    0490: 6D 6F 72 79 20 4D 61 72 67 69 6E 20 54 6F 6F 6C  mory Margin Tool
    04A0: 20 43 6D 64 3A 30 78 25 58 20 56 61 6C 75 65 3A   Cmd:0x%X Value:
    04B0: 30 78 25 58 0A 00 4D 45 4D 49 4D 45 4D 44 00 00  0x%X..MEMIMEMD..
    04C0: 00 00 A0 3D 92 93 4D 36 31 30 00 70 4D 30 34 39  ...=..M610.pM049
    04D0: 4D 36 31 30 0A 10 62 70 4D 45 4D 49 63 70 4D 45  M610..bpMEMIcpME
    04E0: 4D 44 64 4D 30 34 45 4D 36 31 30 0A 11 63 4D 30  MDdM04EM610..cM0
    04F0: 34 45 4D 36 31 30 0A 15 64 4D 32 33 32 62 00 00  4EM610..dM232b..

HPET @ 0x0000000000000000
    0000: 48 50 45 54 38 00 00 00 01 67 41 4D 44 00 41 20  HPET8....gAMD.A 
    0010: 41 20 4D 20 49 00 00 00 01 00 00 00 41 4D 49 20  A M I.......AMI 
    0020: 05 00 00 00 01 82 22 10 00 40 00 00 00 00 D0 FE  ......"..@......
    0030: 00 00 00 00 00 EE 37 00                          ......7.

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 48 24 00 00 02 70 41 4D 44 00 00 00  SSDTH$...pAMD...
    0010: 47 50 50 5F 50 4D 45 5F 01 00 00 00 49 4E 54 4C  GPP_PME_....INTL
    0020: 31 03 23 20 A0 48 60 00 15 5C 4D 30 31 37 08 06  1.# .H`..\M017..
    0030: 15 5C 4D 30 31 38 08 07 15 5C 4D 31 31 35 03 00  .\M018...\M115..
    0040: 15 5C 4D 31 31 36 0E 00 15 5C 4D 31 31 37 0E 00  .\M116...\M117..
    0050: 15 5C 4D 31 31 38 0E 00 15 5C 4D 31 31 39 0E 00  .\M118...\M119..
    0060: 15 5C 4D 31 32 30 0E 00 15 5C 4D 30 33 37 06 00  .\M120...\M037..
    0070: 15 5C 4D 32 32 37 06 00 15 5C 4D 33 32 39 06 00  .\M227...\M329..
    0080: 15 5C 4D 33 32 41 06 00 15 5C 4D 33 32 42 06 00  .\M32A...\M32B..
    0090: 15 5C 4D 33 32 43 06 00 15 5C 4D 33 33 30 06 00  .\M32C...\M330..
    00A0: 15 5C 4D 30 38 32 05 00 15 5C 4D 30 38 33 05 00  .\M082...\M083..
    00B0: 15 5C 4D 30 38 34 05 00 15 5C 4D 30 38 35 05 00  .\M084...\M085..
    00C0: 15 5C 4D 32 32 31 05 00 15 5C 4D 30 38 36 05 00  .\M221...\M086..
    00D0: 15 5C 4D 32 32 39 05 00 15 5C 4D 32 33 31 05 00  .\M229...\M231..
    00E0: 15 5C 4D 32 33 35 05 00 15 5C 4D 32 33 33 05 00  .\M235...\M233..
    00F0: 15 5C 4D 30 38 37 05 00 15 5C 4D 30 38 38 05 00  .\M087...\M088..
    0100: 15 5C 4D 30 38 39 05 00 15 5C 4D 30 39 30 05 00  .\M089...\M090..
    0110: 15 5C 4D 30 39 31 05 00 15 5C 4D 30 39 32 05 00  .\M091...\M092..
    0120: 15 5C 4D 30 39 33 05 00 15 5C 4D 30 39 34 05 00  .\M093...\M094..
    0130: 15 5C 4D 30 39 35 05 00 15 5C 4D 30 39 36 05 00  .\M095...\M096..
    0140: 15 5C 4D 30 39 37 05 00 15 5C 4D 30 39 38 05 00  .\M097...\M098..
    0150: 15 5C 4D 30 39 39 05 00 15 5C 4D 31 30 30 05 00  .\M099...\M100..
    0160: 15 5C 4D 31 30 31 05 00 15 5C 4D 31 30 32 05 00  .\M101...\M102..
    0170: 15 5C 4D 31 30 33 05 00 15 5C 4D 31 30 34 05 00  .\M103...\M104..
    0180: 15 5C 4D 31 30 35 05 00 15 5C 4D 31 30 36 05 00  .\M105...\M106..
    0190: 15 5C 4D 31 30 37 05 00 15 5C 4D 31 32 38 05 00  .\M107...\M128..
    01A0: 15 5C 4D 31 30 38 05 00 15 5C 4D 31 30 39 05 00  .\M108...\M109..
    01B0: 15 5C 4D 31 31 30 05 00 15 5C 4D 31 32 32 05 00  .\M110...\M122..
    01C0: 15 5C 4D 31 33 31 05 00 15 5C 4D 31 33 32 05 00  .\M131...\M132..
    01D0: 15 5C 4D 32 32 36 05 00 15 5C 4D 31 33 33 05 00  .\M226...\M133..
    01E0: 15 5C 4D 31 33 34 05 00 15 5C 4D 31 33 35 05 00  .\M134...\M135..
    01F0: 15 5C 4D 31 33 36 05 00 15 5C 4D 32 32 30 05 00  .\M136...\M220..
    0200: 15 5C 4D 30 34 36 01 00 15 5C 4D 30 34 37 01 00  .\M046...\M047..
    0210: 15 5C 4D 30 34 39 08 02 15 5C 4D 32 35 31 05 00  .\M049...\M251..
    0220: 15 5C 4D 33 31 30 05 00 15 5C 4D 33 31 43 05 00  .\M310...\M31C..
    0230: 15 5C 4D 33 32 30 05 00 15 5C 4D 33 32 31 05 00  .\M320...\M321..
    0240: 15 5C 4D 33 32 32 05 00 15 5C 4D 33 32 33 05 00  .\M322...\M323..
    0250: 15 5C 4D 33 32 34 05 00 15 5C 4D 33 32 35 05 00  .\M324...\M325..
    0260: 15 5C 4D 33 32 36 05 00 15 5C 4D 33 32 37 05 00  .\M326...\M327..
    0270: 15 5C 4D 33 32 38 05 00 15 5C 4D 32 38 30 05 00  .\M328...\M280..
    0280: 15 5C 4D 32 39 30 05 00 15 5C 4D 33 37 38 05 00  .\M290...\M378..
    0290: 15 5C 4D 33 37 39 05 00 15 5C 4D 33 38 30 05 00  .\M379...\M380..
    02A0: 15 5C 4D 33 38 31 05 00 15 5C 4D 33 38 32 05 00  .\M381...\M382..
    02B0: 15 5C 4D 33 38 33 05 00 15 5C 4D 33 38 34 05 00  .\M383...\M384..
    02C0: 15 5C 4D 33 38 35 05 00 15 5C 4D 33 38 36 05 00  .\M385...\M386..
    02D0: 15 5C 4D 33 38 37 05 00 15 5C 4D 33 38 38 05 00  .\M387...\M388..
    02E0: 15 5C 4D 33 38 39 05 00 15 5C 4D 33 39 30 05 00  .\M389...\M390..
    02F0: 15 5C 4D 33 39 31 05 00 15 5C 4D 33 39 32 05 00  .\M391...\M392..
    0300: 15 5C 4D 33 33 31 05 00 15 5C 4D 36 32 30 05 00  .\M331...\M620..
    0310: 15 5C 4D 34 30 34 03 00 15 5C 4D 34 30 38 09 00  .\M404...\M408..
    0320: 15 5C 4D 34 31 34 05 00 15 5C 4D 34 34 34 05 00  .\M414...\M444..
    0330: 15 5C 4D 34 35 33 05 00 15 5C 4D 34 35 34 05 00  .\M453...\M454..
    0340: 15 5C 4D 34 35 35 05 00 15 5C 4D 34 35 36 05 00  .\M455...\M456..
    0350: 15 5C 4D 34 35 37 05 00 15 5C 4D 34 36 30 08 07  .\M457...\M460..
    0360: 15 5C 4D 34 34 39 05 00 15 5C 4D 34 43 30 05 00  .\M449...\M4C0..
    0370: 15 5C 4D 32 33 41 05 00 15 5C 4D 34 46 30 05 00  .\M23A...\M4F0..
    0380: 15 5C 4D 36 31 30 05 00 15 5C 4D 32 39 41 05 00  .\M610...\M29A..
    0390: 15 5C 4D 36 33 31 05 00 15 5C 4D 36 35 32 05 00  .\M631...\M652..
    03A0: 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06 00  .\M050...\M051..
    03B0: 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06 00  .\M052...\M053..
    03C0: 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06 00  .\M054...\M055..
    03D0: 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06 00  .\M056...\M057..
    03E0: 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06 00  .\M058...\M059..
    03F0: 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06 00  .\M062...\M068..
    0400: 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06 00  .\M069...\M070..
    0410: 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06 00  .\M071...\M072..
    0420: 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06 00  .\M074...\M075..
    0430: 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06 00  .\M076...\M077..
    0440: 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06 00  .\M078...\M079..
    0450: 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06 00  .\M080...\M081..
    0460: 15 5C 4D 31 32 37 06 00 15 5C 5F 42 42 4E 01 00  .\M127...\_BBN..
    0470: 15 5C 2E 5F 53 42 5F 50 43 49 31 06 00 15 5C 2F  .\._SB_PCI1...\/
    0480: 03 5F 53 42 5F 50 43 49 31 47 50 50 30 06 00 15  ._SB_PCI1GPP0...
    0490: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 31 06  \/._SB_PCI1GPP1.
    04A0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50  ..\/._SB_PCI1GPP
    04B0: 32 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47  2...\/._SB_PCI1G
    04C0: 50 50 33 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PP3...\/._SB_PCI
    04D0: 31 47 50 50 34 06 00 15 5C 2F 03 5F 53 42 5F 50  1GPP4...\/._SB_P
    04E0: 43 49 31 47 50 50 35 06 00 15 5C 2F 03 5F 53 42  CI1GPP5...\/._SB
    04F0: 5F 50 43 49 31 47 50 50 36 06 00 15 5C 2F 03 5F  _PCI1GPP6...\/._
    0500: 53 42 5F 50 43 49 31 47 50 50 37 06 00 15 5C 2F  SB_PCI1GPP7...\/
    0510: 03 5F 53 42 5F 50 43 49 31 47 50 50 38 06 00 15  ._SB_PCI1GPP8...
    0520: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 39 06  \/._SB_PCI1GPP9.
    0530: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50  ..\/._SB_PCI1GPP
    0540: 41 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47  A...\/._SB_PCI1G
    0550: 50 50 42 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  PPB...\/._SB_PCI
    0560: 31 47 50 50 43 06 00 15 5C 2F 03 5F 53 42 5F 50  1GPPC...\/._SB_P
    0570: 43 49 31 47 50 50 44 06 00 15 5C 2F 03 5F 53 42  CI1GPPD...\/._SB
    0580: 5F 50 43 49 31 47 50 50 45 06 00 15 5C 2F 03 5F  _PCI1GPPE...\/._
    0590: 53 42 5F 50 43 49 31 47 50 50 46 06 00 15 5C 2F  SB_PCI1GPPF...\/
    05A0: 03 5F 53 42 5F 50 43 49 31 47 50 50 47 06 00 15  ._SB_PCI1GPPG...
    05B0: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 48 06  \/._SB_PCI1GPPH.
    05C0: 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 31  ..\/._SB_PCI1GP1
    05D0: 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49 31 47  5...\/._SB_PCI1G
    05E0: 50 32 35 06 00 15 5C 2F 03 5F 53 42 5F 50 43 49  P25...\/._SB_PCI
    05F0: 31 47 50 33 35 06 00 15 5C 2F 03 5F 53 42 5F 50  1GP35...\/._SB_P
    0600: 43 49 31 47 50 34 35 06 00 15 5C 2F 03 5F 53 42  CI1GP45...\/._SB
    0610: 5F 50 43 49 31 47 50 31 37 06 00 15 5C 2F 03 5F  _PCI1GP17...\/._
    0620: 53 42 5F 50 43 49 31 47 50 32 37 06 00 10 8A E1  SB_PCI1GP27.....
    0630: 01 5C 2E 5F 53 42 5F 50 43 49 31 08 45 54 50 30  .\._SB_PCI1.ETP0
    0640: 0A 55 08 45 54 50 31 0A 55 08 45 54 50 32 0A 55  .U.ETP1.U.ETP2.U
    0650: 08 45 54 50 33 0A 55 08 45 54 50 34 0A 55 08 45  .ETP3.U.ETP4.U.E
    0660: 54 50 35 0A 55 08 45 54 50 36 0A 55 08 45 54 50  TP5.U.ETP6.U.ETP
    0670: 37 0A 55 08 45 54 50 38 0A 55 08 45 54 50 39 0A  7.U.ETP8.U.ETP9.
    0680: 55 08 45 54 50 41 0A 55 08 45 54 50 42 0A 55 08  U.ETPA.U.ETPB.U.
    0690: 45 54 50 43 0A 55 08 45 54 50 44 0A 55 08 45 54  ETPC.U.ETPD.U.ET
    06A0: 50 45 0A 55 08 45 54 50 46 0A 55 08 45 54 50 47  PE.U.ETPF.U.ETPG
    06B0: 0A 55 08 45 54 50 48 0A 55 08 45 54 31 35 0A 55  .U.ETPH.U.ET15.U
    06C0: 08 45 54 32 35 0A 55 08 45 54 33 35 0A 55 08 45  .ET25.U.ET35.U.E
    06D0: 54 34 35 0A 55 08 45 54 31 37 0A 55 08 45 54 32  T45.U.ET17.U.ET2
    06E0: 37 0A 55 14 84 D6 01 50 50 4D 45 00 4D 34 36 30  7.U....PPME.M460
    06F0: 0D 20 20 4F 45 4D 2D 41 53 4C 2D 5C 5F 53 42 2E  .  OEM-ASL-\_SB.
    0700: 50 43 49 31 2E 50 50 4D 45 0A 00 00 00 00 00 00  PCI1.PPME.......
    0710: 00 A0 4F 18 92 93 5C 2F 03 5F 53 42 5F 50 43 49  ..O...\/._SB_PCI
    0720: 31 45 54 50 30 0A FF 70 7A 4D 30 31 37 5F 42 42  1ETP0..pzM017_BB
    0730: 4E 01 01 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53  N...x......\/._S
    0740: 42 5F 50 43 49 31 45 54 50 30 A0 46 15 91 93 5C  B_PCI1ETP0.F...\
    0750: 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 30 01 93  /._SB_PCI1ETP0..
    0760: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 30 0A  \/._SB_PCI1ETP0.
    0770: 03 A0 4F 12 5B 12 5C 2F 03 5F 53 42 5F 50 43 49  ..O.[.\/._SB_PCI
    0780: 31 47 50 50 30 00 A0 49 06 92 93 4D 36 32 30 00  1GPP0..I...M620.
    0790: A0 4F 05 93 4D 30 34 39 4D 36 32 30 0A 10 01 A0  .O..M049M620....
    07A0: 40 05 93 7B 4D 30 34 39 4D 36 32 30 0A 52 0A 02  @..{M049M620.R..
    07B0: 00 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66  ..M460.    Notif
    07C0: 79 20 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50 50  y (\_SB.PCI1.GPP
    07D0: 30 2C 20 30 78 30 29 0A 00 00 00 00 00 00 00 86  0, 0x0).........
    07E0: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 30 00  \/._SB_PCI1GPP0.
    07F0: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    0800: 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50 50 30 2C  (\_SB.PCI1.GPP0,
    0810: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    0820: 03 5F 53 42 5F 50 43 49 31 47 50 50 30 0A 02 5B  ._SB_PCI1GPP0..[
    0830: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78  ".dpM017_BBN...x
    0840: 00 0A 20 60 A0 4C 05 92 93 7B 60 0C 00 00 03 00  .. `.L...{`.....
    0850: 00 00 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A  ..M018_BBN...x..
    0860: 20 60 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00   `pM017_BBN...x.
    0870: 0A 20 60 A0 2D 92 93 7B 60 0C 00 00 03 00 00 00  . `.-..{`.......
    0880: 4D 30 31 38 5F 42 42 4E 01 01 0A 78 00 0A 20 60  M018_BBN...x.. `
    0890: 70 4D 30 31 37 5F 42 42 4E 01 01 0A 78 00 0A 20  pM017_BBN...x.. 
    08A0: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    08B0: 31 45 54 50 31 0A FF 70 7A 4D 30 31 37 5F 42 42  1ETP1..pzM017_BB
    08C0: 4E 01 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    08D0: 53 42 5F 50 43 49 31 45 54 50 31 A0 41 0F 91 93  SB_PCI1ETP1.A...
    08E0: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 31 01  \/._SB_PCI1ETP1.
    08F0: 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 31  .\/._SB_PCI1ETP1
    0900: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0910: 49 31 47 50 50 31 00 4D 34 36 30 0D 20 20 20 20  I1GPP1.M460.    
    0920: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0930: 31 2E 47 50 50 31 2C 20 30 78 32 29 0A 00 00 00  1.GPP1, 0x2)....
    0940: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    0950: 47 50 50 31 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP1..[".dpM017_
    0960: 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0970: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0980: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0990: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    09A0: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    09B0: 42 4E 01 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    09C0: 5F 42 42 4E 01 0A 02 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    09D0: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    09E0: 32 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 03  2..pzM017_BBN...
    09F0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0A00: 43 49 31 45 54 50 32 A0 41 0F 91 93 5C 2F 03 5F  CI1ETP2.A...\/._
    0A10: 53 42 5F 50 43 49 31 45 54 50 32 01 93 5C 2F 03  SB_PCI1ETP2..\/.
    0A20: 5F 53 42 5F 50 43 49 31 45 54 50 32 0A 03 A0 4A  _SB_PCI1ETP2...J
    0A30: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  .[.\/._SB_PCI1GP
    0A40: 50 32 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P2.M460.    Noti
    0A50: 66 79 20 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50  fy (\_SB.PCI1.GP
    0A60: 50 32 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P2, 0x2)........
    0A70: 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 32  .\/._SB_PCI1GPP2
    0A80: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0A90: 0A 03 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0AA0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AB0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AC0: 01 0A 03 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0AD0: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0AE0: 03 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0AF0: 01 0A 03 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F  ....x.. `.K...\/
    0B00: 03 5F 53 42 5F 50 43 49 31 45 54 50 33 0A FF 70  ._SB_PCI1ETP3..p
    0B10: 7A 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78 00 0A  zM017_BBN....x..
    0B20: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45  ....\/._SB_PCI1E
    0B30: 54 50 33 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50  TP3.A...\/._SB_P
    0B40: 43 49 31 45 54 50 33 01 93 5C 2F 03 5F 53 42 5F  CI1ETP3..\/._SB_
    0B50: 50 43 49 31 45 54 50 33 0A 03 A0 4A 0C 5B 12 5C  PCI1ETP3...J.[.\
    0B60: 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 33 00 4D  /._SB_PCI1GPP3.M
    0B70: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    0B80: 5C 5F 53 42 2E 50 43 49 31 2E 47 50 50 33 2C 20  \_SB.PCI1.GPP3, 
    0B90: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    0BA0: 5F 53 42 5F 50 43 49 31 47 50 50 33 0A 02 5B 22  _SB_PCI1GPP3..["
    0BB0: 0A 64 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A 78  .dpM017_BBN....x
    0BC0: 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00  .. `.@...{`.....
    0BD0: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0BE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0BF0: 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00  x.. `./..{`.....
    0C00: 00 00 4D 30 31 38 5F 42 42 4E 01 0A 04 0A 78 00  ..M018_BBN....x.
    0C10: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 01 0A 04 0A  . `pM017_BBN....
    0C20: 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42  x.. `.K...\/._SB
    0C30: 5F 50 43 49 31 45 54 50 34 0A FF 70 7A 4D 30 31  _PCI1ETP4..pzM01
    0C40: 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 18 0A 10 00  7_BBN....x......
    0C50: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 34 A0  \/._SB_PCI1ETP4.
    0C60: 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45  A...\/._SB_PCI1E
    0C70: 54 50 34 01 93 5C 2F 03 5F 53 42 5F 50 43 49 31  TP4..\/._SB_PCI1
    0C80: 45 54 50 34 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53  ETP4...J.[.\/._S
    0C90: 42 5F 50 43 49 31 47 50 50 34 00 4D 34 36 30 0D  B_PCI1GPP4.M460.
    0CA0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    0CB0: 2E 50 43 49 31 2E 47 50 50 34 2C 20 30 78 32 29  .PCI1.GPP4, 0x2)
    0CC0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    0CD0: 50 43 49 31 47 50 50 34 0A 02 5B 22 0A 64 70 4D  PCI1GPP4..[".dpM
    0CE0: 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60  017_BBN....x.. `
    0CF0: A0 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  .@...{`.......M0
    0D00: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D10: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D20: 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30  `./..{`.......M0
    0D30: 31 38 5F 42 42 4E 01 0A 05 0A 78 00 0A 20 60 70  18_BBN....x.. `p
    0D40: 4D 30 31 37 5F 42 42 4E 01 0A 05 0A 78 00 0A 20  M017_BBN....x.. 
    0D50: 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43 49  `.K...\/._SB_PCI
    0D60: 31 45 54 50 35 0A FF 70 7A 4D 30 31 37 5F 42 42  1ETP5..pzM017_BB
    0D70: 4E 01 0A 06 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  N....x......\/._
    0D80: 53 42 5F 50 43 49 31 45 54 50 35 A0 41 0F 91 93  SB_PCI1ETP5.A...
    0D90: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 35 01  \/._SB_PCI1ETP5.
    0DA0: 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 35  .\/._SB_PCI1ETP5
    0DB0: 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...J.[.\/._SB_PC
    0DC0: 49 31 47 50 50 35 00 4D 34 36 30 0D 20 20 20 20  I1GPP5.M460.    
    0DD0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    0DE0: 31 2E 47 50 50 35 2C 20 30 78 32 29 0A 00 00 00  1.GPP5, 0x2)....
    0DF0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    0E00: 47 50 50 35 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP5..[".dpM017_
    0E10: 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 40 06 92  BBN....x.. `.@..
    0E20: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E30: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E40: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 2F 92  _BBN....x.. `./.
    0E50: 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42  .{`.......M018_B
    0E60: 42 4E 01 0A 06 0A 78 00 0A 20 60 70 4D 30 31 37  BN....x.. `pM017
    0E70: 5F 42 42 4E 01 0A 06 0A 78 00 0A 20 60 A0 4B 12  _BBN....x.. `.K.
    0E80: 92 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    0E90: 36 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 01 0A 07  6..pzM017_BBN...
    0EA0: 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50  .x......\/._SB_P
    0EB0: 43 49 31 45 54 50 36 A0 41 0F 91 93 5C 2F 03 5F  CI1ETP6.A...\/._
    0EC0: 53 42 5F 50 43 49 31 45 54 50 36 01 93 5C 2F 03  SB_PCI1ETP6..\/.
    0ED0: 5F 53 42 5F 50 43 49 31 45 54 50 36 0A 03 A0 4A  _SB_PCI1ETP6...J
    0EE0: 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  .[.\/._SB_PCI1GP
    0EF0: 50 36 00 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69  P6.M460.    Noti
    0F00: 66 79 20 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50  fy (\_SB.PCI1.GP
    0F10: 50 36 2C 20 30 78 32 29 0A 00 00 00 00 00 00 00  P6, 0x2)........
    0F20: 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 36  .\/._SB_PCI1GPP6
    0F30: 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42 4E 01  ..[".dpM017_BBN.
    0F40: 0A 07 0A 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C  ...x.. `.@...{`.
    0F50: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F60: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0F70: 01 0A 07 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C  ....x.. `./..{`.
    0F80: 00 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 01 0A  ......M018_BBN..
    0F90: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    0FA0: 01 0A 07 0A 78 00 0A 20 60 A0 46 19 92 93 5C 2F  ....x.. `.F...\/
    0FB0: 03 5F 53 42 5F 50 43 49 31 45 54 50 37 0A FF 70  ._SB_PCI1ETP7..p
    0FC0: 7A 4D 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A  zM017_BBN....x..
    0FD0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45  ....\/._SB_PCI1E
    0FE0: 54 50 37 A0 4C 15 91 93 5C 2F 03 5F 53 42 5F 50  TP7.L...\/._SB_P
    0FF0: 43 49 31 45 54 50 37 01 93 5C 2F 03 5F 53 42 5F  CI1ETP7..\/._SB_
    1000: 50 43 49 31 45 54 50 37 0A 03 A0 45 13 5B 12 5C  PCI1ETP7...E.[.\
    1010: 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 37 00 A0  /._SB_PCI1GPP7..
    1020: 4A 06 92 93 4D 36 32 30 00 A0 40 06 93 4D 30 34  J...M620..@..M04
    1030: 39 4D 36 32 30 0A 10 0A 02 A0 40 05 93 7B 4D 30  9M620.....@..{M0
    1040: 34 39 4D 36 32 30 0A 52 0A 02 00 00 4D 34 36 30  49M620.R....M460
    1050: 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53  .    Notify (\_S
    1060: 42 2E 50 43 49 31 2E 47 50 50 37 2C 20 30 78 30  B.PCI1.GPP7, 0x0
    1070: 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42  ).........\/._SB
    1080: 5F 50 43 49 31 47 50 50 37 00 4D 34 36 30 0D 20  _PCI1GPP7.M460. 
    1090: 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E     Notify (\_SB.
    10A0: 50 43 49 31 2E 47 50 50 37 2C 20 30 78 32 29 0A  PCI1.GPP7, 0x2).
    10B0: 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50  ........\/._SB_P
    10C0: 43 49 31 47 50 50 37 0A 02 5B 22 0A 64 70 4D 30  CI1GPP7..[".dpM0
    10D0: 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 A0  17_BBN....x.. `.
    10E0: 40 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  @...{`.......M01
    10F0: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1100: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1110: A0 2F 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  ./..{`.......M01
    1120: 38 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60 70 4D  8_BBN....x.. `pM
    1130: 30 31 37 5F 42 42 4E 0A 02 01 0A 78 00 0A 20 60  017_BBN....x.. `
    1140: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 31  .A...\/._SB_PCI1
    1150: 45 54 50 38 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETP8..pzM017_BBN
    1160: 0A 02 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1170: 53 42 5F 50 43 49 31 45 54 50 38 A0 46 0F 91 93  SB_PCI1ETP8.F...
    1180: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 38 01  \/._SB_PCI1ETP8.
    1190: 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 38  .\/._SB_PCI1ETP8
    11A0: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    11B0: 49 31 47 50 50 38 00 4D 34 36 30 0D 20 20 20 20  I1GPP8.M460.    
    11C0: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    11D0: 31 2E 47 50 50 38 2C 20 30 78 32 29 0A 00 00 00  1.GPP8, 0x2)....
    11E0: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    11F0: 47 50 50 38 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPP8..[".dpM017_
    1200: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    1210: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1220: 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    1230: 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    1240: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    1250: 38 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    1260: 4D 30 31 37 5F 42 42 4E 0A 02 0A 02 0A 78 00 0A  M017_BBN.....x..
    1270: 20 60 A0 4B 12 92 93 5C 2F 03 5F 53 42 5F 50 43   `.K...\/._SB_PC
    1280: 49 31 45 54 50 39 0A FF 70 7A 4D 30 31 37 5F 42  I1ETP9..pzM017_B
    1290: 42 4E 0A 03 01 0A 78 00 0A 18 0A 10 00 5C 2F 03  BN....x......\/.
    12A0: 5F 53 42 5F 50 43 49 31 45 54 50 39 A0 41 0F 91  _SB_PCI1ETP9.A..
    12B0: 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 39  .\/._SB_PCI1ETP9
    12C0: 01 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    12D0: 39 0A 03 A0 4A 0C 5B 12 5C 2F 03 5F 53 42 5F 50  9...J.[.\/._SB_P
    12E0: 43 49 31 47 50 50 39 00 4D 34 36 30 0D 20 20 20  CI1GPP9.M460.   
    12F0: 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43   Notify (\_SB.PC
    1300: 49 31 2E 47 50 50 39 2C 20 30 78 32 29 0A 00 00  I1.GPP9, 0x2)...
    1310: 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49  ......\/._SB_PCI
    1320: 31 47 50 50 39 0A 02 5B 22 0A 64 70 4D 30 31 37  1GPP9..[".dpM017
    1330: 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 40 06  _BBN....x.. `.@.
    1340: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1350: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1360: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 2F  7_BBN....x.. `./
    1370: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    1380: 42 42 4E 0A 03 01 0A 78 00 0A 20 60 70 4D 30 31  BBN....x.. `pM01
    1390: 37 5F 42 42 4E 0A 03 01 0A 78 00 0A 20 60 A0 41  7_BBN....x.. `.A
    13A0: 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54  ...\/._SB_PCI1ET
    13B0: 50 41 0A FF 70 7A 4D 30 31 37 5F 42 42 4E 0A 03  PA..pzM017_BBN..
    13C0: 0A 02 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F 53 42  ...x......\/._SB
    13D0: 5F 50 43 49 31 45 54 50 41 A0 46 0F 91 93 5C 2F  _PCI1ETPA.F...\/
    13E0: 03 5F 53 42 5F 50 43 49 31 45 54 50 41 01 93 5C  ._SB_PCI1ETPA..\
    13F0: 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 41 0A 03  /._SB_PCI1ETPA..
    1400: A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43 49 31  .O.[.\/._SB_PCI1
    1410: 47 50 50 41 00 4D 34 36 30 0D 20 20 20 20 4E 6F  GPPA.M460.    No
    1420: 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49 31 2E  tify (\_SB.PCI1.
    1430: 47 50 50 41 2C 20 30 78 32 29 0A 00 00 00 00 00  GPPA, 0x2)......
    1440: 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50  ...\/._SB_PCI1GP
    1450: 50 41 0A 02 5B 22 0A 64 70 4D 30 31 37 5F 42 42  PA..[".dpM017_BB
    1460: 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 44 06 92 93  N.....x.. `.D...
    1470: 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F 42 42  {`.......M018_BB
    1480: 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30 31 37  N.....x.. `pM017
    1490: 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 A0 31  _BBN.....x.. `.1
    14A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    14B0: 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    14C0: 31 37 5F 42 42 4E 0A 03 0A 02 0A 78 00 0A 20 60  17_BBN.....x.. `
    14D0: A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43 49 31  .A...\/._SB_PCI1
    14E0: 45 54 50 42 0A FF 70 7A 4D 30 31 37 5F 42 42 4E  ETPB..pzM017_BBN
    14F0: 0A 03 0A 03 0A 78 00 0A 18 0A 10 00 5C 2F 03 5F  .....x......\/._
    1500: 53 42 5F 50 43 49 31 45 54 50 42 A0 46 0F 91 93  SB_PCI1ETPB.F...
    1510: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 42 01  \/._SB_PCI1ETPB.
    1520: 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 42  .\/._SB_PCI1ETPB
    1530: 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F 50 43  ...O.[.\/._SB_PC
    1540: 49 31 47 50 50 42 00 4D 34 36 30 0D 20 20 20 20  I1GPPB.M460.    
    1550: 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50 43 49  Notify (\_SB.PCI
    1560: 31 2E 47 50 50 42 2C 20 30 78 32 29 0A 00 00 00  1.GPPB, 0x2)....
    1570: 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    1580: 47 50 50 42 0A 02 5B 22 0A 64 70 4D 30 31 37 5F  GPPB..[".dpM017_
    1590: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 A0 44 06  BBN.....x.. `.D.
    15A0: 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31 38 5F  ..{`.......M018_
    15B0: 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70 4D 30  BBN.....x.. `pM0
    15C0: 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60  17_BBN.....x.. `
    15D0: A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  .1..{`.......M01
    15E0: 38 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    15F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 03 0A 78 00 0A  M017_BBN.....x..
    1600: 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F 50 43   `.A...\/._SB_PC
    1610: 49 31 45 54 50 43 0A FF 70 7A 4D 30 31 37 5F 42  I1ETPC..pzM017_B
    1620: 42 4E 0A 03 0A 04 0A 78 00 0A 18 0A 10 00 5C 2F  BN.....x......\/
    1630: 03 5F 53 42 5F 50 43 49 31 45 54 50 43 A0 46 0F  ._SB_PCI1ETPC.F.
    1640: 91 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    1650: 43 01 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54  C..\/._SB_PCI1ET
    1660: 50 43 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53 42 5F  PC...O.[.\/._SB_
    1670: 50 43 49 31 47 50 50 43 00 4D 34 36 30 0D 20 20  PCI1GPPC.M460.  
    1680: 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42 2E 50    Notify (\_SB.P
    1690: 43 49 31 2E 47 50 50 43 2C 20 30 78 32 29 0A 00  CI1.GPPC, 0x2)..
    16A0: 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F 50 43  .......\/._SB_PC
    16B0: 49 31 47 50 50 43 0A 02 5B 22 0A 64 70 4D 30 31  I1GPPC..[".dpM01
    16C0: 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 A0  7_BBN.....x.. `.
    16D0: 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D 30 31  D...{`.......M01
    16E0: 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20 60 70  8_BBN.....x.. `p
    16F0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A  M017_BBN.....x..
    1700: 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00 00 4D   `.1..{`.......M
    1710: 30 31 38 5F 42 42 4E 0A 03 0A 04 0A 78 00 0A 20  018_BBN.....x.. 
    1720: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 04 0A 78  `pM017_BBN.....x
    1730: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1740: 50 43 49 31 45 54 50 44 0A FF 70 7A 4D 30 31 37  PCI1ETPD..pzM017
    1750: 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1760: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 44 A0  \/._SB_PCI1ETPD.
    1770: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45  F...\/._SB_PCI1E
    1780: 54 50 44 01 93 5C 2F 03 5F 53 42 5F 50 43 49 31  TPD..\/._SB_PCI1
    1790: 45 54 50 44 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ETPD...O.[.\/._S
    17A0: 42 5F 50 43 49 31 47 50 50 44 00 4D 34 36 30 0D  B_PCI1GPPD.M460.
    17B0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    17C0: 2E 50 43 49 31 2E 47 50 50 44 2C 20 30 78 32 29  .PCI1.GPPD, 0x2)
    17D0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    17E0: 50 43 49 31 47 50 50 44 0A 02 5B 22 0A 64 70 4D  PCI1GPPD..[".dpM
    17F0: 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  017_BBN.....x.. 
    1800: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1810: 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00 0A 20  018_BBN.....x.. 
    1820: 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05 0A 78  `pM017_BBN.....x
    1830: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1840: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 05 0A 78 00  .M018_BBN.....x.
    1850: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 05  . `pM017_BBN....
    1860: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1870: 42 5F 50 43 49 31 45 54 50 45 0A FF 70 7A 4D 30  B_PCI1ETPE..pzM0
    1880: 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00 0A 18 0A  17_BBN.....x....
    1890: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    18A0: 45 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  E.F...\/._SB_PCI
    18B0: 31 45 54 50 45 01 93 5C 2F 03 5F 53 42 5F 50 43  1ETPE..\/._SB_PC
    18C0: 49 31 45 54 50 45 0A 03 A0 4F 0C 5B 12 5C 2F 03  I1ETPE...O.[.\/.
    18D0: 5F 53 42 5F 50 43 49 31 47 50 50 45 00 4D 34 36  _SB_PCI1GPPE.M46
    18E0: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    18F0: 53 42 2E 50 43 49 31 2E 47 50 50 45 2C 20 30 78  SB.PCI1.GPPE, 0x
    1900: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1910: 42 5F 50 43 49 31 47 50 50 45 0A 02 5B 22 0A 64  B_PCI1GPPE..[".d
    1920: 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06 0A 78 00  pM017_BBN.....x.
    1930: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1940: 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A 78 00  .M018_BBN.....x.
    1950: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 06  . `pM017_BBN....
    1960: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1970: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 06 0A  ...M018_BBN.....
    1980: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1990: 0A 06 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    19A0: 5F 53 42 5F 50 43 49 31 45 54 50 46 0A FF 70 7A  _SB_PCI1ETPF..pz
    19B0: 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A 78 00 0A  M017_BBN.....x..
    19C0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45  ....\/._SB_PCI1E
    19D0: 54 50 46 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  TPF.F...\/._SB_P
    19E0: 43 49 31 45 54 50 46 01 93 5C 2F 03 5F 53 42 5F  CI1ETPF..\/._SB_
    19F0: 50 43 49 31 45 54 50 46 0A 03 A0 4F 0C 5B 12 5C  PCI1ETPF...O.[.\
    1A00: 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 46 00 4D  /._SB_PCI1GPPF.M
    1A10: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    1A20: 5C 5F 53 42 2E 50 43 49 31 2E 47 50 50 46 2C 20  \_SB.PCI1.GPPF, 
    1A30: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    1A40: 5F 53 42 5F 50 43 49 31 47 50 50 46 0A 02 5B 22  _SB_PCI1GPPF..["
    1A50: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 03 0A 07 0A  .dpM017_BBN.....
    1A60: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    1A70: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A 07 0A  ...M018_BBN.....
    1A80: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 03  x.. `pM017_BBN..
    1A90: 0A 07 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    1AA0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 03 0A  .....M018_BBN...
    1AB0: 07 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    1AC0: 0A 03 0A 07 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    1AD0: 2F 03 5F 53 42 5F 50 43 49 31 45 54 50 47 0A FF  /._SB_PCI1ETPG..
    1AE0: 70 7A 4D 30 31 37 5F 42 42 4E 0A 04 01 0A 78 00  pzM017_BBN....x.
    1AF0: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    1B00: 45 54 50 47 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ETPG.A...\/._SB_
    1B10: 50 43 49 31 45 54 50 47 01 93 5C 2F 03 5F 53 42  PCI1ETPG..\/._SB
    1B20: 5F 50 43 49 31 45 54 50 47 0A 03 A0 4A 0C 5B 12  _PCI1ETPG...J.[.
    1B30: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 50 47 00  \/._SB_PCI1GPPG.
    1B40: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    1B50: 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50 50 47 2C  (\_SB.PCI1.GPPG,
    1B60: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    1B70: 03 5F 53 42 5F 50 43 49 31 47 50 50 47 0A 02 5B  ._SB_PCI1GPPG..[
    1B80: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 04 01 0A  ".dpM017_BBN....
    1B90: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    1BA0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BB0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BC0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    1BD0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 01 0A 78  ...M018_BBN....x
    1BE0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 01  .. `pM017_BBN...
    1BF0: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1C00: 42 5F 50 43 49 31 45 54 50 48 0A FF 70 7A 4D 30  B_PCI1ETPH..pzM0
    1C10: 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    1C20: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 50  ..\/._SB_PCI1ETP
    1C30: 48 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  H.F...\/._SB_PCI
    1C40: 31 45 54 50 48 01 93 5C 2F 03 5F 53 42 5F 50 43  1ETPH..\/._SB_PC
    1C50: 49 31 45 54 50 48 0A 03 A0 4F 0C 5B 12 5C 2F 03  I1ETPH...O.[.\/.
    1C60: 5F 53 42 5F 50 43 49 31 47 50 50 48 00 4D 34 36  _SB_PCI1GPPH.M46
    1C70: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    1C80: 53 42 2E 50 43 49 31 2E 47 50 50 48 2C 20 30 78  SB.PCI1.GPPH, 0x
    1C90: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    1CA0: 42 5F 50 43 49 31 47 50 50 48 0A 02 5B 22 0A 64  B_PCI1GPPH..[".d
    1CB0: 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02 0A 78 00  pM017_BBN.....x.
    1CC0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    1CD0: 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A 78 00  .M018_BBN.....x.
    1CE0: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04 0A 02  . `pM017_BBN....
    1CF0: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    1D00: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 04 0A 02 0A  ...M018_BBN.....
    1D10: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 04  x.. `pM017_BBN..
    1D20: 0A 02 0A 78 00 0A 20 60 A0 4B 12 92 93 5C 2F 03  ...x.. `.K...\/.
    1D30: 5F 53 42 5F 50 43 49 31 45 54 31 35 0A FF 70 7A  _SB_PCI1ET15..pz
    1D40: 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00 0A 18  M017_BBN....x...
    1D50: 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54  ...\/._SB_PCI1ET
    1D60: 31 35 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F 50 43  15.A...\/._SB_PC
    1D70: 49 31 45 54 31 35 01 93 5C 2F 03 5F 53 42 5F 50  I1ET15..\/._SB_P
    1D80: 43 49 31 45 54 31 35 0A 03 A0 4A 0C 5B 12 5C 2F  CI1ET15...J.[.\/
    1D90: 03 5F 53 42 5F 50 43 49 31 47 50 31 35 00 4D 34  ._SB_PCI1GP15.M4
    1DA0: 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C  60.    Notify (\
    1DB0: 5F 53 42 2E 50 43 49 31 2E 47 50 31 35 2C 20 30  _SB.PCI1.GP15, 0
    1DC0: 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F  x2).........\/._
    1DD0: 53 42 5F 50 43 49 31 47 50 31 35 0A 02 5B 22 0A  SB_PCI1GP15..[".
    1DE0: 64 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78 00  dpM017_BBN....x.
    1DF0: 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03 00 00  . `.@...{`......
    1E00: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E10: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E20: 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03 00 00  .. `./..{`......
    1E30: 00 4D 30 31 38 5F 42 42 4E 0A 05 01 0A 78 00 0A  .M018_BBN....x..
    1E40: 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 01 0A 78   `pM017_BBN....x
    1E50: 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53 42 5F  .. `.A...\/._SB_
    1E60: 50 43 49 31 45 54 32 35 0A FF 70 7A 4D 30 31 37  PCI1ET25..pzM017
    1E70: 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 18 0A 10 00  _BBN.....x......
    1E80: 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 32 35 A0  \/._SB_PCI1ET25.
    1E90: 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49 31 45  F...\/._SB_PCI1E
    1EA0: 54 32 35 01 93 5C 2F 03 5F 53 42 5F 50 43 49 31  T25..\/._SB_PCI1
    1EB0: 45 54 32 35 0A 03 A0 4F 0C 5B 12 5C 2F 03 5F 53  ET25...O.[.\/._S
    1EC0: 42 5F 50 43 49 31 47 50 32 35 00 4D 34 36 30 0D  B_PCI1GP25.M460.
    1ED0: 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F 53 42      Notify (\_SB
    1EE0: 2E 50 43 49 31 2E 47 50 32 35 2C 20 30 78 32 29  .PCI1.GP25, 0x2)
    1EF0: 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53 42 5F  .........\/._SB_
    1F00: 50 43 49 31 47 50 32 35 0A 02 5B 22 0A 64 70 4D  PCI1GP25..[".dpM
    1F10: 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  017_BBN.....x.. 
    1F20: 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00 00 4D  `.D...{`.......M
    1F30: 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00 0A 20  018_BBN.....x.. 
    1F40: 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02 0A 78  `pM017_BBN.....x
    1F50: 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03 00 00  .. `.1..{`......
    1F60: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 02 0A 78 00  .M018_BBN.....x.
    1F70: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 02  . `pM017_BBN....
    1F80: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    1F90: 42 5F 50 43 49 31 45 54 33 35 0A FF 70 7A 4D 30  B_PCI1ET35..pzM0
    1FA0: 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00 0A 18 0A  17_BBN.....x....
    1FB0: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 33  ..\/._SB_PCI1ET3
    1FC0: 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  5.F...\/._SB_PCI
    1FD0: 31 45 54 33 35 01 93 5C 2F 03 5F 53 42 5F 50 43  1ET35..\/._SB_PC
    1FE0: 49 31 45 54 33 35 0A 03 A0 4F 0C 5B 12 5C 2F 03  I1ET35...O.[.\/.
    1FF0: 5F 53 42 5F 50 43 49 31 47 50 33 35 00 4D 34 36  _SB_PCI1GP35.M46
    2000: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    2010: 53 42 2E 50 43 49 31 2E 47 50 33 35 2C 20 30 78  SB.PCI1.GP35, 0x
    2020: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    2030: 42 5F 50 43 49 31 47 50 33 35 0A 02 5B 22 0A 64  B_PCI1GP35..[".d
    2040: 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03 0A 78 00  pM017_BBN.....x.
    2050: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    2060: 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A 78 00  .M018_BBN.....x.
    2070: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 03  . `pM017_BBN....
    2080: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2090: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 03 0A  ...M018_BBN.....
    20A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    20B0: 0A 03 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03  ...x.. `.A...\/.
    20C0: 5F 53 42 5F 50 43 49 31 45 54 34 35 0A FF 70 7A  _SB_PCI1ET45..pz
    20D0: 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A 78 00 0A  M017_BBN.....x..
    20E0: 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45  ....\/._SB_PCI1E
    20F0: 54 34 35 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50  T45.F...\/._SB_P
    2100: 43 49 31 45 54 34 35 01 93 5C 2F 03 5F 53 42 5F  CI1ET45..\/._SB_
    2110: 50 43 49 31 45 54 34 35 0A 03 A0 4F 0C 5B 12 5C  PCI1ET45...O.[.\
    2120: 2F 03 5F 53 42 5F 50 43 49 31 47 50 34 35 00 4D  /._SB_PCI1GP45.M
    2130: 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28  460.    Notify (
    2140: 5C 5F 53 42 2E 50 43 49 31 2E 47 50 34 35 2C 20  \_SB.PCI1.GP45, 
    2150: 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03  0x2).........\/.
    2160: 5F 53 42 5F 50 43 49 31 47 50 34 35 0A 02 5B 22  _SB_PCI1GP45..["
    2170: 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 05 0A 04 0A  .dpM017_BBN.....
    2180: 78 00 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03  x.. `.D...{`....
    2190: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A 04 0A  ...M018_BBN.....
    21A0: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 05  x.. `pM017_BBN..
    21B0: 0A 04 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00  ...x.. `.1..{`..
    21C0: 00 03 00 00 00 4D 30 31 38 5F 42 42 4E 0A 05 0A  .....M018_BBN...
    21D0: 04 0A 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E  ..x.. `pM017_BBN
    21E0: 0A 05 0A 04 0A 78 00 0A 20 60 A0 4B 12 92 93 5C  .....x.. `.K...\
    21F0: 2F 03 5F 53 42 5F 50 43 49 31 45 54 31 37 0A FF  /._SB_PCI1ET17..
    2200: 70 7A 4D 30 31 37 5F 42 42 4E 0A 07 01 0A 78 00  pzM017_BBN....x.
    2210: 0A 18 0A 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31  .....\/._SB_PCI1
    2220: 45 54 31 37 A0 41 0F 91 93 5C 2F 03 5F 53 42 5F  ET17.A...\/._SB_
    2230: 50 43 49 31 45 54 31 37 01 93 5C 2F 03 5F 53 42  PCI1ET17..\/._SB
    2240: 5F 50 43 49 31 45 54 31 37 0A 03 A0 4A 0C 5B 12  _PCI1ET17...J.[.
    2250: 5C 2F 03 5F 53 42 5F 50 43 49 31 47 50 31 37 00  \/._SB_PCI1GP17.
    2260: 4D 34 36 30 0D 20 20 20 20 4E 6F 74 69 66 79 20  M460.    Notify 
    2270: 28 5C 5F 53 42 2E 50 43 49 31 2E 47 50 31 37 2C  (\_SB.PCI1.GP17,
    2280: 20 30 78 32 29 0A 00 00 00 00 00 00 00 86 5C 2F   0x2).........\/
    2290: 03 5F 53 42 5F 50 43 49 31 47 50 31 37 0A 02 5B  ._SB_PCI1GP17..[
    22A0: 22 0A 64 70 4D 30 31 37 5F 42 42 4E 0A 07 01 0A  ".dpM017_BBN....
    22B0: 78 00 0A 20 60 A0 40 06 92 93 7B 60 0C 00 00 03  x.. `.@...{`....
    22C0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    22D0: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    22E0: 0A 78 00 0A 20 60 A0 2F 92 93 7B 60 0C 00 00 03  .x.. `./..{`....
    22F0: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 01 0A 78  ...M018_BBN....x
    2300: 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 01  .. `pM017_BBN...
    2310: 0A 78 00 0A 20 60 A0 41 13 92 93 5C 2F 03 5F 53  .x.. `.A...\/._S
    2320: 42 5F 50 43 49 31 45 54 32 37 0A FF 70 7A 4D 30  B_PCI1ET27..pzM0
    2330: 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00 0A 18 0A  17_BBN.....x....
    2340: 10 00 5C 2F 03 5F 53 42 5F 50 43 49 31 45 54 32  ..\/._SB_PCI1ET2
    2350: 37 A0 46 0F 91 93 5C 2F 03 5F 53 42 5F 50 43 49  7.F...\/._SB_PCI
    2360: 31 45 54 32 37 01 93 5C 2F 03 5F 53 42 5F 50 43  1ET27..\/._SB_PC
    2370: 49 31 45 54 32 37 0A 03 A0 4F 0C 5B 12 5C 2F 03  I1ET27...O.[.\/.
    2380: 5F 53 42 5F 50 43 49 31 47 50 32 37 00 4D 34 36  _SB_PCI1GP27.M46
    2390: 30 0D 20 20 20 20 4E 6F 74 69 66 79 20 28 5C 5F  0.    Notify (\_
    23A0: 53 42 2E 50 43 49 31 2E 47 50 32 37 2C 20 30 78  SB.PCI1.GP27, 0x
    23B0: 32 29 0A 00 00 00 00 00 00 00 86 5C 2F 03 5F 53  2).........\/._S
    23C0: 42 5F 50 43 49 31 47 50 32 37 0A 02 5B 22 0A 64  B_PCI1GP27..[".d
    23D0: 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02 0A 78 00  pM017_BBN.....x.
    23E0: 0A 20 60 A0 44 06 92 93 7B 60 0C 00 00 03 00 00  . `.D...{`......
    23F0: 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A 78 00  .M018_BBN.....x.
    2400: 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07 0A 02  . `pM017_BBN....
    2410: 0A 78 00 0A 20 60 A0 31 92 93 7B 60 0C 00 00 03  .x.. `.1..{`....
    2420: 00 00 00 4D 30 31 38 5F 42 42 4E 0A 07 0A 02 0A  ...M018_BBN.....
    2430: 78 00 0A 20 60 70 4D 30 31 37 5F 42 42 4E 0A 07  x.. `pM017_BBN..
    2440: 0A 02 0A 78 00 0A 20 60                          ...x.. `

FIDT @ 0x0000000000000000
    0000: 46 49 44 54 9C 00 00 00 01 91 41 4D 44 00 00 00  FIDT......AMD...
    0010: 41 20 4D 20 49 00 00 00 01 00 00 00 41 4D 49 20  A M I.......AMI 
    0020: 13 00 01 00 24 46 49 44 04 78 00 41 33 31 33 37  ....$FID.x.A3137
    0030: 37 30 38 00 D5 41 8F 5C 67 53 4F 4D 81 29 32 3A  708..A.\gSOM.)2:
    0040: AD 16 7E 23 30 35 00 33 32 00 30 37 00 30 38 00  ..~#05.32.07.08.
    0050: E8 07 01 10 11 03 30 FF FF 41 4D 44 00 00 00 41  ......0..AMD...A
    0060: 20 4D 20 49 00 00 00 31 00 00 00 FF FF FF FF FF   M I...1........
    0070: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF  ................
    0080: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF  ................
    0090: FF FF FF FF FF FF FF FF FF FF FF FF              ............

FACS @ 0x0000000000000000
    0000: 46 41 43 53 40 00 00 00 6E 05 51 B6 00 00 00 00  FACS@...n.Q.....
    0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0020: 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
    0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................

BGRT @ 0x0000000000000000
    0000: 42 47 52 54 38 00 00 00 01 73 41 4D 44 20 20 20  BGRT8....sAMD   
    0010: 41 20 4D 20 49 20 00 00 01 00 00 00 41 4D 49 20  A M I ......AMI 
    0020: 13 00 01 00 01 00 00 00 00 00 00 00 00 00 00 00  ................
    0030: 2C 04 00 00 BE 01 00 00                          ,.......

SSDT @ 0x0000000000000000
    0000: 53 53 44 54 2F 98 00 00 02 E5 41 4D 44 00 00 00  SSDT/.....AMD...
    0010: 43 50 4D 43 4D 4E 00 00 01 00 00 00 49 4E 54 4C  CPMCMN......INTL
    0020: 31 03 23 20 A0 43 63 00 15 5C 2E 5F 53 42 5F 41  1.# .Cc..\._SB_A
    0030: 4D 30 30 09 00 15 5C 2E 5F 53 42 5F 41 4C 49 42  M00...\._SB_ALIB
    0040: 08 02 15 5C 4E 46 50 43 08 00 15 5C 4D 4F 45 4D  ...\NFPC...\MOEM
    0050: 08 03 15 5C 2E 5F 53 42 5F 47 50 49 4F 06 00 15  ...\._SB_GPIO...
    0060: 5C 5F 47 50 45 06 00 15 5C 2E 5F 47 50 45 42 49  \_GPE...\._GPEBI
    0070: 45 30 08 00 15 5C 2E 5F 47 50 45 41 49 45 30 08  E0...\._GPEAIE0.
    0080: 00 15 5C 2E 5F 47 50 45 42 49 45 31 08 00 15 5C  ..\._GPEBIE1...\
    0090: 2E 5F 47 50 45 41 49 45 31 08 00 15 5C 2E 5F 47  ._GPEAIE1...\._G
    00A0: 50 45 42 49 45 32 08 00 15 5C 2E 5F 47 50 45 41  PEBIE2...\._GPEA
    00B0: 49 45 32 08 00 15 5C 2E 5F 47 50 45 42 49 45 33  IE2...\._GPEBIE3
    00C0: 08 00 15 5C 2E 5F 47 50 45 41 49 45 33 08 00 15  ...\._GPEAIE3...
    00D0: 5C 2E 5F 47 50 45 50 54 53 30 08 01 15 5C 2E 5F  \._GPEPTS0...\._
    00E0: 47 50 45 50 54 53 31 08 01 15 5C 2E 5F 47 50 45  GPEPTS1...\._GPE
    00F0: 50 54 53 32 08 01 15 5C 2E 5F 47 50 45 50 54 53  PTS2...\._GPEPTS
    0100: 33 08 01 15 5C 2E 5F 47 50 45 57 41 4B 30 08 01  3...\._GPEWAK0..
    0110: 15 5C 2E 5F 47 50 45 57 41 4B 31 08 01 15 5C 2E  .\._GPEWAK1...\.
    0120: 5F 47 50 45 57 41 4B 32 08 01 15 5C 2E 5F 47 50  _GPEWAK2...\._GP
    0130: 45 57 41 4B 33 08 01 15 5C 2E 5F 47 50 45 53 50  EWAK3...\._GPESP
    0140: 30 30 08 00 15 5C 2E 5F 47 50 45 53 50 30 31 08  00...\._GPESP01.
    0150: 00 15 5C 2E 5F 47 50 45 53 50 30 32 08 00 15 5C  ..\._GPESP02...\
    0160: 2E 5F 47 50 45 53 50 30 33 08 00 15 5C 2E 5F 47  ._GPESP03...\._G
    0170: 50 45 53 50 30 34 08 00 15 5C 2E 5F 47 50 45 53  PESP04...\._GPES
    0180: 50 30 35 08 00 15 5C 2E 5F 47 50 45 53 50 30 36  P05...\._GPESP06
    0190: 08 00 15 5C 2E 5F 47 50 45 53 50 30 37 08 00 15  ...\._GPESP07...
    01A0: 5C 2E 5F 47 50 45 53 50 31 30 08 00 15 5C 2E 5F  \._GPESP10...\._
    01B0: 47 50 45 53 50 31 31 08 00 15 5C 2E 5F 47 50 45  GPESP11...\._GPE
    01C0: 53 50 31 32 08 00 15 5C 2E 5F 47 50 45 53 50 31  SP12...\._GPESP1
    01D0: 33 08 00 15 5C 2E 5F 47 50 45 53 50 31 34 08 00  3...\._GPESP14..
    01E0: 15 5C 2E 5F 47 50 45 53 50 31 35 08 00 15 5C 2E  .\._GPESP15...\.
    01F0: 5F 47 50 45 53 50 31 36 08 00 15 5C 2E 5F 47 50  _GPESP16...\._GP
    0200: 45 53 50 31 37 08 00 15 5C 2E 5F 47 50 45 53 50  ESP17...\._GPESP
    0210: 32 30 08 00 15 5C 2E 5F 47 50 45 53 50 32 31 08  20...\._GPESP21.
    0220: 00 15 5C 2E 5F 47 50 45 53 50 32 32 08 00 15 5C  ..\._GPESP22...\
    0230: 2E 5F 47 50 45 53 50 32 33 08 00 15 5C 2E 5F 47  ._GPESP23...\._G
    0240: 50 45 53 50 32 34 08 00 15 5C 2E 5F 47 50 45 53  PESP24...\._GPES
    0250: 50 32 35 08 00 15 5C 2E 5F 47 50 45 53 50 32 36  P25...\._GPESP26
    0260: 08 00 15 5C 2E 5F 47 50 45 53 50 32 37 08 00 15  ...\._GPESP27...
    0270: 5C 2E 5F 47 50 45 53 50 33 30 08 00 15 5C 2E 5F  \._GPESP30...\._
    0280: 47 50 45 53 50 33 31 08 00 15 5C 2E 5F 47 50 45  GPESP31...\._GPE
    0290: 53 50 33 32 08 00 15 5C 2E 5F 47 50 45 53 50 33  SP32...\._GPESP3
    02A0: 33 08 00 15 5C 2E 5F 47 50 45 53 50 33 34 08 00  3...\._GPESP34..
    02B0: 15 5C 2E 5F 47 50 45 53 50 33 35 08 00 15 5C 2E  .\._GPESP35...\.
    02C0: 5F 47 50 45 53 50 33 36 08 00 15 5C 2E 5F 47 50  _GPESP36...\._GP
    02D0: 45 53 50 33 37 08 00 15 5C 2E 5F 47 50 45 53 50  ESP37...\._GPESP
    02E0: 34 30 08 00 15 5C 2E 5F 47 50 45 53 50 34 31 08  40...\._GPESP41.
    02F0: 00 15 5C 2E 5F 47 50 45 53 50 34 32 08 00 15 5C  ..\._GPESP42...\
    0300: 2E 5F 47 50 45 53 50 34 33 08 00 15 5C 2E 5F 47  ._GPESP43...\._G
    0310: 50 45 53 50 34 34 08 00 15 5C 2E 5F 47 50 45 53  PESP44...\._GPES
    0320: 50 34 35 08 00 15 5C 2E 5F 47 50 45 53 50 34 36  P45...\._GPESP46
    0330: 08 00 15 5C 2E 5F 47 50 45 53 50 34 37 08 00 15  ...\._GPESP47...
    0340: 5C 2E 5F 47 50 45 53 50 35 30 08 00 15 5C 2E 5F  \._GPESP50...\._
    0350: 47 50 45 53 50 35 31 08 00 15 5C 2E 5F 47 50 45  GPESP51...\._GPE
    0360: 53 50 35 32 08 00 15 5C 2E 5F 47 50 45 53 50 35  SP52...\._GPESP5
    0370: 33 08 00 15 5C 2E 5F 47 50 45 53 50 35 34 08 00  3...\._GPESP54..
    0380: 15 5C 2E 5F 47 50 45 53 50 35 35 08 00 15 5C 2E  .\._GPESP55...\.
    0390: 5F 47 50 45 53 50 35 36 08 00 15 5C 2E 5F 47 50  _GPESP56...\._GP
    03A0: 45 53 50 35 37 08 00 15 5C 2E 5F 47 50 45 53 50  ESP57...\._GPESP
    03B0: 36 30 08 00 15 5C 2E 5F 47 50 45 53 50 36 31 08  60...\._GPESP61.
    03C0: 00 15 5C 2E 5F 47 50 45 53 50 36 32 08 00 15 5C  ..\._GPESP62...\
    03D0: 2E 5F 47 50 45 53 50 36 33 08 00 15 5C 2E 5F 47  ._GPESP63...\._G
    03E0: 50 45 53 50 36 34 08 00 15 5C 2E 5F 47 50 45 53  PESP64...\._GPES
    03F0: 50 36 35 08 00 15 5C 2E 5F 47 50 45 53 50 36 36  P65...\._GPESP66
    0400: 08 00 15 5C 2E 5F 47 50 45 53 50 36 37 08 00 15  ...\._GPESP67...
    0410: 5C 2E 5F 47 50 45 53 50 37 30 08 00 15 5C 2E 5F  \._GPESP70...\._
    0420: 47 50 45 53 50 37 31 08 00 15 5C 2E 5F 47 50 45  GPESP71...\._GPE
    0430: 53 50 37 32 08 00 15 5C 2E 5F 47 50 45 53 50 37  SP72...\._GPESP7
    0440: 33 08 00 15 5C 2E 5F 47 50 45 53 50 37 34 08 00  3...\._GPESP74..
    0450: 15 5C 2E 5F 47 50 45 53 50 37 35 08 00 15 5C 2E  .\._GPESP75...\.
    0460: 5F 47 50 45 53 50 37 36 08 00 15 5C 2E 5F 47 50  _GPESP76...\._GP
    0470: 45 53 50 37 37 08 00 15 5C 2E 5F 53 42 5F 4F 50  ESP77...\._SB_OP
    0480: 54 53 08 01 15 5C 2E 5F 53 42 5F 4F 57 41 4B 08  TS...\._SB_OWAK.
    0490: 01 15 5C 4D 30 33 38 08 01 15 5C 4D 30 33 39 08  ..\M038...\M039.
    04A0: 02 15 5C 4D 30 35 30 06 00 15 5C 4D 30 35 31 06  ..\M050...\M051.
    04B0: 00 15 5C 4D 30 35 32 06 00 15 5C 4D 30 35 33 06  ..\M052...\M053.
    04C0: 00 15 5C 4D 30 35 34 06 00 15 5C 4D 30 35 35 06  ..\M054...\M055.
    04D0: 00 15 5C 4D 30 35 36 06 00 15 5C 4D 30 35 37 06  ..\M056...\M057.
    04E0: 00 15 5C 4D 30 35 38 06 00 15 5C 4D 30 35 39 06  ..\M058...\M059.
    04F0: 00 15 5C 4D 30 36 32 06 00 15 5C 4D 30 36 38 06  ..\M062...\M068.
    0500: 00 15 5C 4D 30 36 39 06 00 15 5C 4D 30 37 30 06  ..\M069...\M070.
    0510: 00 15 5C 4D 30 37 31 06 00 15 5C 4D 30 37 32 06  ..\M071...\M072.
    0520: 00 15 5C 4D 30 37 34 06 00 15 5C 4D 30 37 35 06  ..\M074...\M075.
    0530: 00 15 5C 4D 30 37 36 06 00 15 5C 4D 30 37 37 06  ..\M076...\M077.
    0540: 00 15 5C 4D 30 37 38 06 00 15 5C 4D 30 37 39 06  ..\M078...\M079.
    0550: 00 15 5C 4D 30 38 30 06 00 15 5C 4D 30 38 31 06  ..\M080...\M081.
    0560: 00 15 5C 2E 5F 53 42 5F 4D 32 36 33 08 01 15 5C  ..\._SB_M263...\
    0570: 2E 5F 53 42 5F 4D 32 36 34 08 01 15 5C 4D 31 32  ._SB_M264...\M12
    0580: 37 06 00 15 5C 2E 5F 53 42 5F 4D 32 38 34 08 01  7...\._SB_M284..
    0590: 15 5C 2E 5F 53 42 5F 49 50 54 53 08 01 15 5C 2E  .\._SB_IPTS...\.
    05A0: 5F 53 42 5F 49 57 41 4B 08 01 15 5C 2E 5F 53 42  _SB_IWAK...\._SB
    05B0: 5F 42 50 54 53 08 01 15 5C 2E 5F 53 42 5F 42 57  _BPTS...\._SB_BW
    05C0: 41 4B 08 01 15 5C 2F 04 5F 53 42 5F 50 43 58 58  AK...\/._SB_PCXX
    05D0: 53 41 58 58 54 50 54 53 08 01 15 5C 2F 04 5F 53  SAXXTPTS...\/._S
    05E0: 42 5F 50 43 58 58 53 41 58 58 54 57 41 4B 08 01  B_PCXXSAXXTWAK..
    05F0: 15 5C 2F 05 5F 53 42 5F 50 43 58 58 47 50 58 58  .\/._SB_PCXXGPXX
    0600: 53 41 58 58 54 50 54 53 08 01 15 5C 2F 05 5F 53  SAXXTPTS...\/._S
    0610: 42 5F 50 43 58 58 47 50 58 58 53 41 58 58 54 57  B_PCXXGPXXSAXXTW
    0620: 41 4B 08 01 15 5C 2F 05 5F 53 42 5F 50 43 49 30  AK...\/._SB_PCI0
    0630: 50 54 42 52 50 54 53 54 54 50 54 53 08 01 15 5C  PTBRPTSTTPTS...\
    0640: 2F 05 5F 53 42 5F 50 43 49 30 50 54 42 52 50 54  /._SB_PCI0PTBRPT
    0650: 53 54 54 57 41 4B 08 01 5B 80 43 50 4E 56 00 0C  STTWAK..[.CPNV..
    0660: 18 40 46 A9 0C 17 01 01 00 5B 81 40 20 43 50 4E  .@F......[.@ CPN
    0670: 56 10 4D 30 38 32 20 4D 30 38 33 20 4D 30 38 34  V.M082 M083 M084
    0680: 20 4D 30 38 35 08 4D 32 32 31 08 4D 30 38 36 10   M085.M221.M086.
    0690: 4D 32 32 39 08 4D 32 33 31 10 4D 32 33 35 08 4D  M229.M231.M235.M
    06A0: 32 33 33 20 00 01 00 02 00 01 00 01 00 01 00 01  233 ............
    06B0: 00 01 4D 30 38 37 01 00 01 00 16 4D 30 38 38 10  ..M087.....M088.
    06C0: 4D 30 38 39 10 4D 30 39 30 03 4D 30 39 31 05 4D  M089.M090.M091.M
    06D0: 30 39 32 08 4D 30 39 33 03 4D 30 39 34 05 4D 30  092.M093.M094.M0
    06E0: 39 35 08 4D 30 39 36 08 4D 30 39 37 08 4D 30 39  95.M096.M097.M09
    06F0: 38 20 4D 30 39 39 20 4D 31 30 30 20 4D 31 30 31  8 M099 M100 M101
    0700: 20 4D 31 30 32 20 4D 31 30 33 20 4D 31 30 34 40   M102 M103 M104@
    0710: 0E 4D 31 30 35 20 4D 31 30 36 80 00 08 4D 33 37  .M105 M106...M37
    0720: 38 80 00 08 4D 33 37 39 80 00 08 4D 33 38 30 80  8...M379...M380.
    0730: 00 08 4D 33 38 31 80 00 08 4D 33 38 32 80 00 08  ..M381...M382...
    0740: 4D 33 38 33 80 00 08 4D 33 38 34 80 00 08 4D 33  M383...M384...M3
    0750: 38 35 80 00 08 4D 33 38 36 80 00 08 4D 33 38 37  85...M386...M387
    0760: 80 00 08 4D 33 38 38 80 00 08 4D 33 38 39 80 00  ...M388...M389..
    0770: 08 4D 33 39 30 80 00 08 4D 33 39 31 80 00 08 4D  .M390...M391...M
    0780: 33 39 32 80 00 08 4D 31 30 37 40 04 4D 33 32 30  392...M107@.M320
    0790: 20 4D 33 32 31 20 4D 33 32 32 20 4D 33 32 33 20   M321 M322 M323 
    07A0: 4D 33 32 34 20 4D 33 32 35 20 4D 33 32 36 20 4D  M324 M325 M326 M
    07B0: 33 32 37 10 4D 33 32 38 08 4D 31 32 38 20 4D 31  327.M328.M128 M1
    07C0: 30 38 20 4D 31 30 39 20 4D 31 31 30 20 4D 31 32  08 M109 M110 M12
    07D0: 32 20 4D 31 33 31 20 4D 31 33 32 20 4D 31 33 33  2 M131 M132 M133
    07E0: 20 4D 31 33 34 20 4D 31 33 35 20 4D 31 33 36 20   M134 M135 M136 
    07F0: 4D 32 32 30 20 4D 32 32 36 20 4D 32 35 31 20 4D  M220 M226 M251 M
    0800: 33 31 30 20 4D 32 38 30 20 4D 32 39 30 20 4D 33  310 M280 M290 M3
    0810: 33 31 20 4D 34 31 34 10 4D 34 34 34 48 04 4D 34  31 M414.M444H.M4
    0820: 35 33 20 4D 34 35 34 10 4D 34 35 35 08 4D 34 35  53 M454.M455.M45
    0830: 36 08 4D 34 35 37 08 4D 34 34 39 48 04 4D 34 43  6.M457.M449H.M4C
    0840: 30 20 4D 32 33 41 08 4D 33 31 43 20 4D 34 46 30  0 M23A.M31C M4F0
    0850: 20 4D 36 31 30 20 4D 36 32 30 20 4D 32 39 41 40   M610 M620 M29A@
    0860: 08 4D 36 33 31 20 4D 36 35 32 20 08 43 54 4D 52  .M631 M652 .CTMR
    0870: 00 08 4D 32 38 35 11 07 0A 04 01 03 80 00 5B 80  ..M285........[.
    0880: 56 41 52 50 00 0C 08 08 D8 FE 0A 04 5B 81 0B 56  VARP........[..V
    0890: 41 52 50 03 56 41 50 31 20 14 41 21 4D 30 30 30  ARP.VAP1 .A!M000
    08A0: 09 8C 4D 32 38 35 00 4D 32 38 36 8C 4D 32 38 35  ..M285.M286.M285
    08B0: 01 4D 32 38 37 8B 4D 32 38 35 0A 02 4D 32 38 38  .M287.M285..M288
    08C0: 08 4D 34 35 30 11 08 0A 05 00 96 05 00 00 8A 4D  .M450..........M
    08D0: 34 35 30 00 4D 34 35 32 8C 4D 34 35 30 0A 04 4D  450.M452.M450..M
    08E0: 34 35 31 70 72 68 0C 00 00 00 B0 00 60 A0 46 09  451prh......`.F.
    08F0: 93 99 4D 32 38 36 00 01 70 99 4D 32 38 38 00 61  ..M286..p.M288.a
    0900: A0 27 93 99 4D 32 38 37 00 0A 03 5B 80 56 41 52  .'..M287...[.VAR
    0910: 4D 01 61 0A 04 5B 81 0B 56 41 52 4D 03 56 41 52  M.a..[..VARM.VAR
    0920: 52 20 70 60 56 41 52 52 A1 4B 05 A0 2C 93 99 4D  R p`VARR.K..,..M
    0930: 32 38 37 00 0A 02 5B 80 56 41 52 4E 01 61 0A 02  287...[.VARN.a..
    0940: 5B 81 0B 56 41 52 4E 02 56 41 52 53 10 70 7B 60  [..VARN.VARS.p{`
    0950: 0B FF FF 00 56 41 52 53 A1 2B A0 29 93 99 4D 32  ....VARS.+.)..M2
    0960: 38 37 00 01 5B 80 56 41 52 4F 01 61 01 5B 81 0B  87..[.VARO.a.[..
    0970: 56 41 52 4F 01 56 41 52 54 08 70 7B 60 0A FF 00  VARO.VART.p{`...
    0980: 56 41 52 54 A0 1A 93 99 4D 34 35 31 00 01 70 99  VART....M451..p.
    0990: 4D 34 35 32 00 62 4D 32 35 30 00 00 00 62 60 70  M452.bM250...b`p
    09A0: 56 41 50 31 61 A0 0F 92 95 61 43 54 4D 52 74 61  VAP1a....aCTMRta
    09B0: 43 54 4D 52 62 A1 12 72 61 72 74 0C FE FF FF FF  CTMRb..rart.....
    09C0: 43 54 4D 52 00 01 00 62 78 62 0A 19 63 62 78 77  CTMR...bxb..cbxw
    09D0: 62 0A 07 00 0B E8 03 63 62 A0 43 04 92 95 63 0A  b......cb.C...c.
    09E0: 64 4D 34 36 30 0D 20 20 50 4F 53 54 20 43 4F 44  dM460.  POST COD
    09F0: 45 3A 20 25 58 20 20 41 43 50 49 20 54 49 4D 45  E: %X  ACPI TIME
    0A00: 52 3A 20 25 58 20 20 54 49 4D 45 3A 20 25 64 2E  R: %X  TIME: %d.
    0A10: 25 64 20 6D 73 0A 00 60 61 62 63 00 00 A1 47 08  %d ms..`abc...G.
    0A20: A0 44 04 92 95 63 0A 0A 4D 34 36 30 0D 20 20 50  .D...c..M460.  P
    0A30: 4F 53 54 20 43 4F 44 45 3A 20 25 58 20 20 41 43  OST CODE: %X  AC
    0A40: 50 49 20 54 49 4D 45 52 3A 20 25 58 20 20 54 49  PI TIMER: %X  TI
    0A50: 4D 45 3A 20 25 64 2E 30 25 64 20 6D 73 0A 00 60  ME: %d.0%d ms..`
    0A60: 61 62 63 00 00 A1 3F 4D 34 36 30 0D 20 20 50 4F  abc...?M460.  PO
    0A70: 53 54 20 43 4F 44 45 3A 20 25 58 20 20 41 43 50  ST CODE: %X  ACP
    0A80: 49 20 54 49 4D 45 52 3A 20 25 58 20 20 54 49 4D  I TIMER: %X  TIM
    0A90: 45 3A 20 25 64 2E 30 30 25 64 20 6D 73 0A 00 60  E: %d.00%d ms..`
    0AA0: 61 62 63 00 00 70 61 43 54 4D 52 14 18 4D 30 33  abc..paCTMR..M03
    0AB0: 34 09 A4 4D 30 31 31 72 4D 30 38 34 0B 00 07 00  4..M011rM084....
    0AC0: 68 00 0A 08 14 18 4D 30 31 35 09 A4 4D 30 31 31  h.....M015..M011
    0AD0: 72 4D 30 38 34 0B 00 04 00 68 00 0A 08 14 18 4D  rM084....h.....M
    0AE0: 30 31 36 0A 4D 30 31 32 72 4D 30 38 34 0B 00 04  016.M012rM084...
    0AF0: 00 68 00 0A 08 69 14 13 4D 30 33 35 09 A4 4D 30  .h...i..M035..M0
    0B00: 31 31 4D 30 38 34 68 00 0A 08 14 13 4D 30 33 36  11M084h.....M036
    0B10: 0A 4D 30 31 32 4D 30 38 34 68 00 0A 08 69 14 14  .M012M084h...i..
    0B20: 4D 30 30 31 0A 70 00 60 A0 08 93 68 0A 15 70 01  M001.p.`...h..p.
    0B30: 60 A4 60 14 1A 4D 30 30 33 0B 79 68 0A 05 60 72  `.`..M003.yh..`r
    0B40: 60 69 61 79 61 0A 18 62 72 62 6A 63 A4 63 5B 80  `iaya..brbjc.c[.
    0B50: 56 41 52 51 01 0B D8 0C 0A 08 5B 81 0B 56 41 52  VARQ......[..VAR
    0B60: 51 03 56 41 51 31 20 14 22 4D 30 30 34 09 5B 87  Q.VAQ1 ."M004.[.
    0B70: 12 56 41 52 51 56 41 51 31 68 03 00 20 56 41 52  .VARQVAQ1h.. VAR
    0B80: 32 20 70 56 41 52 32 60 A4 60 14 20 4D 30 30 35  2 pVAR2`.`. M005
    0B90: 0A 5B 87 12 56 41 52 51 56 41 51 31 68 03 00 20  .[..VARQVAQ1h.. 
    0BA0: 56 41 52 32 20 70 69 56 41 52 32 14 18 4D 30 30  VAR2 piVAR2..M00
    0BB0: 36 0B 7B 4D 30 30 34 68 69 60 7D 60 6A 61 4D 30  6.{M004hi`}`jaM0
    0BC0: 30 35 68 61 14 41 1D 4D 30 30 32 0A A0 42 0B 93  05ha.A.M002..B..
    0BD0: 68 00 A0 29 93 69 00 4D 30 30 36 4D 30 30 33 0A  h..).i.M006M003.
    0BE0: 06 00 0A C0 0C FF EF FF FF 00 4D 30 30 36 4D 30  ..........M006M0
    0BF0: 30 33 01 00 0A 65 0C FE FE FF FF 00 A0 29 93 69  03...e.......).i
    0C00: 01 4D 30 30 36 4D 30 30 33 0A 06 00 0A C0 0C FF  .M006M003.......
    0C10: DF FF FF 00 4D 30 30 36 4D 30 30 33 01 00 0A 65  ....M006M003...e
    0C20: 0C FD FD FF FF 00 A0 2A 93 69 0A 02 4D 30 30 36  .......*.i..M006
    0C30: 4D 30 30 33 0A 06 00 0A C0 0C FF BF FF FF 00 4D  M003...........M
    0C40: 30 30 36 4D 30 30 33 01 00 0A 65 0C FB FB FF FF  006M003...e.....
    0C50: 00 A0 2A 93 69 0A 03 4D 30 30 36 4D 30 30 33 0A  ..*.i..M006M003.
    0C60: 06 00 0A C0 0C FF 7F FF FF 00 4D 30 30 36 4D 30  ..........M006M0
    0C70: 30 33 01 00 0A 65 0C F7 F7 FF FF 00 5B 22 01 A0  03...e......["..
    0C80: 42 0C 93 68 01 A0 2D 93 69 00 4D 30 30 36 4D 30  B..h..-.i.M006M0
    0C90: 30 33 0A 06 00 0A C0 0C FF EF FF FF 0B 00 10 4D  03.............M
    0CA0: 30 30 36 4D 30 30 33 01 00 0A 65 0C FE FE FF FF  006M003...e.....
    0CB0: 0B 01 01 A0 2D 93 69 01 4D 30 30 36 4D 30 30 33  ....-.i.M006M003
    0CC0: 0A 06 00 0A C0 0C FF DF FF FF 0B 00 20 4D 30 30  ............ M00
    0CD0: 36 4D 30 30 33 01 00 0A 65 0C FD FD FF FF 0B 02  6M003...e.......
    0CE0: 02 A0 2E 93 69 0A 02 4D 30 30 36 4D 30 30 33 0A  ....i..M006M003.
    0CF0: 06 00 0A C0 0C FF BF FF FF 0B 00 40 4D 30 30 36  ...........@M006
    0D00: 4D 30 30 33 01 00 0A 65 0C FB FB FF FF 0B 04 04  M003...e........
    0D10: A0 2E 93 69 0A 03 4D 30 30 36 4D 30 30 33 0A 06  ...i..M006M003..
    0D20: 00 0A C0 0C FF 7F FF FF 0B 00 80 4D 30 30 36 4D  ...........M006M
    0D30: 30 30 33 01 00 0A 65 0C F7 F7 FF FF 0B 08 08 5B  003...e........[
    0D40: 22 01 A0 43 05 93 68 00 4D 30 30 38 69 70 4D 30  "..C..h.M008ipM0
    0D50: 30 34 4D 30 30 33 0A 03 69 0A A5 60 7B 60 0A FF  04M003..i..`{`..
    0D60: 60 70 0B F4 01 61 A2 23 90 94 61 00 92 93 60 0A  `p...a.#..a...`.
    0D70: 10 70 4D 30 30 34 4D 30 30 33 0A 03 69 0A A5 60  .pM004M003..i..`
    0D80: 7B 60 0A FF 60 76 61 5B 22 01 A0 0B 92 93 60 0A  {`..`va[".....`.
    0D90: 10 4D 30 30 37 69 14 41 08 4D 30 30 38 09 70 4D  .M007i.A.M008.pM
    0DA0: 30 31 39 00 0A 15 68 0A 88 60 7D 7B 60 0C F0 FF  019...h..`}{`...
    0DB0: FF FF 00 0A 02 61 4D 30 32 30 00 0A 15 68 0A 88  .....aM020...h..
    0DC0: 61 4D 30 30 36 4D 30 30 33 0A 03 68 0A A4 0C FE  aM006M003..h....
    0DD0: FF FF FF 01 4D 30 30 36 4D 30 30 33 0A 03 68 0A  ....M006M003..h.
    0DE0: A2 0C FF DF FF FF 0B 00 20 4D 30 30 36 4D 30 30  ........ M006M00
    0DF0: 33 0A 03 68 0A C0 0C FF 7F FF FF 0B 00 80 4D 30  3..h..........M0
    0E00: 30 36 4D 30 30 33 0A 03 68 0A A4 0C FF FF FF DF  06M003..h.......
    0E10: 0C 00 00 00 20 5B 22 01 14 44 05 4D 30 30 37 09  .... ["..D.M007.
    0E20: 70 4D 30 31 39 00 0A 15 68 0A 88 60 7D 7B 60 0C  pM019...h..`}{`.
    0E30: F0 FF FF FF 00 01 61 4D 30 32 30 00 0A 15 68 0A  ......aM020...h.
    0E40: 88 61 4D 30 30 36 4D 30 30 33 0A 03 68 0A A4 0C  .aM006M003..h...
    0E50: FE FF FF FF 00 4D 30 30 36 4D 30 30 33 0A 03 68  .....M006M003..h
    0E60: 0A A2 0C FF DF FF FF 0B 00 20 5B 22 01 14 44 1A  ......... ["..D.
    0E70: 4D 31 31 31 0A 4D 34 36 30 0D 20 20 4B 45 52 2D  M111.M460.  KER-
    0E80: 41 53 4C 2D 43 70 6D 53 65 74 44 65 76 69 63 65  ASL-CpmSetDevice
    0E90: 50 6F 77 65 72 20 28 30 78 25 58 2C 20 30 78 25  Power (0x%X, 0x%
    0EA0: 58 29 0A 00 68 69 00 00 00 00 A0 47 16 92 93 68  X)..hi.....G...h
    0EB0: 00 70 4D 31 31 30 60 A0 4A 15 60 72 60 0A 10 60  .pM110`.J.`r`..`
    0EC0: 70 00 61 70 01 62 70 00 67 A2 48 14 90 92 93 62  p.ap.bp.g.H....b
    0ED0: 0A FF 92 93 62 00 70 4D 30 31 33 72 60 61 00 00  ....b.pM013r`a..
    0EE0: 00 0A 08 62 70 4D 30 31 33 72 60 61 00 01 00 0A  ...bpM013r`a....
    0EF0: 08 63 A0 47 10 90 93 62 68 93 63 7B 69 01 00 70  .c.G...bh.c{i..p
    0F00: 4D 30 31 33 72 60 61 00 0A 07 00 0A 08 63 A0 48  M013r`a......c.H
    0F10: 0E 92 93 63 00 70 4D 30 31 33 72 60 61 00 0A 02  ...c.pM013r`a...
    0F20: 00 0A 08 64 A0 49 04 93 64 00 70 4D 30 31 33 72  ...d.I..d.pM013r
    0F30: 60 61 00 0A 03 00 0A 20 65 70 4D 30 31 33 72 60  `a..... epM013r`
    0F40: 61 00 0A 03 0A 10 0A 08 66 4D 30 31 30 7B 65 0C  a.......fM010{e.
    0F50: FF FF 00 FF 00 66 A0 0E 93 7B 69 01 00 00 4D 30  .....f...{i...M0
    0F60: 30 30 0B D8 0D A1 08 4D 30 30 30 0B DB 0D A0 4D  00.....M000....M
    0F70: 04 93 64 01 70 4D 30 31 33 72 60 61 00 0A 03 00  ..d.pM013r`a....
    0F80: 0A 20 65 70 4D 30 31 33 72 60 61 00 0A 03 0A 10  . epM013r`a.....
    0F90: 0A 08 66 A2 10 92 93 4D 30 30 39 7B 65 0C FF FF  ..f....M009{e...
    0FA0: 00 FF 00 66 A0 0E 93 7B 69 01 00 00 4D 30 30 30  ...f...{i...M000
    0FB0: 0B D9 0D A1 08 4D 30 30 30 0B DC 0D A0 3A 93 64  .....M000....:.d
    0FC0: 0A 02 70 4D 30 31 33 72 60 61 00 0A 03 00 0A 20  ..pM013r`a..... 
    0FD0: 65 5B 22 78 72 65 0B E7 03 00 0B E8 03 00 00 A0  e["xre..........
    0FE0: 0E 93 7B 69 01 00 00 4D 30 30 30 0B DA 0D A1 08  ..{i...M000.....
    0FF0: 4D 30 30 30 0B DD 0D 70 01 67 A1 12 A0 10 90 93  M000...p.g......
    1000: 67 01 93 7B 69 0A 10 00 0A 10 70 00 62 72 61 0A  g..{i.....p.bra.
    1010: 08 61 14 4C 10 4D 34 37 30 0A 70 00 67 A0 48 0B  .a.L.M470.p.g.H.
    1020: 92 93 68 00 70 4D 31 31 30 60 A0 4B 0A 60 72 60  ..h.pM110`.K.`r`
    1030: 0A 10 60 70 00 61 70 4D 30 31 33 72 60 61 00 00  ..`p.apM013r`a..
    1040: 00 0A 08 62 A2 41 09 90 92 93 62 0A FF 92 93 62  ...b.A....b....b
    1050: 00 70 4D 30 31 33 72 60 61 00 01 00 0A 08 63 A0  .pM013r`a.....c.
    1060: 43 06 90 93 62 68 93 63 69 70 4D 30 31 33 72 60  C...bh.cipM013r`
    1070: 61 00 0A 02 00 0A 08 63 70 4D 30 31 33 72 60 61  a......cpM013r`a
    1080: 00 0A 07 00 0A 08 64 A0 3B 90 93 63 00 92 93 64  ......d.;..c...d
    1090: 00 70 4D 30 31 33 72 60 61 00 0A 03 00 0A 20 65  .pM013r`a..... e
    10A0: 70 4D 30 31 33 72 60 61 00 0A 03 0A 10 0A 08 66  pM013r`a.......f
    10B0: A0 12 93 4D 30 30 39 7B 65 0C FF FF 00 FF 00 66  ...M009{e......f
    10C0: 70 01 67 72 61 0A 08 61 70 4D 30 31 33 72 60 61  p.gra..apM013r`a
    10D0: 00 00 00 0A 08 62 4D 34 36 30 0D 20 20 4B 45 52  .....bM460.  KER
    10E0: 2D 41 53 4C 2D 43 70 6D 43 68 65 63 6B 44 65 76  -ASL-CpmCheckDev
    10F0: 69 63 65 50 6F 77 65 72 53 74 61 74 65 20 28 30  icePowerState (0
    1100: 78 25 58 2C 20 25 64 29 20 20 52 65 74 75 72 6E  x%X, %d)  Return
    1110: 20 28 25 64 29 0A 00 68 69 67 00 00 00 A4 67 14   (%d)..hig....g.
    1120: 4B 0F 4D 32 32 38 09 A0 43 0F 94 68 0A 03 70 4D  K.M228..C..h..pM
    1130: 31 31 30 60 A0 46 0E 60 72 60 0A 10 60 70 00 61  110`.F.`r`..`p.a
    1140: 70 4D 30 31 33 72 60 61 00 00 00 0A 08 62 A2 4C  pM013r`a.....b.L
    1150: 0C 90 92 93 62 0A FF 92 93 62 00 70 4D 30 31 33  ....b....b.pM013
    1160: 72 60 61 00 0A 07 00 0A 08 63 A0 4D 09 93 63 68  r`a......c.M..ch
    1170: 70 4D 30 31 33 72 60 61 00 0A 02 00 0A 08 64 A0  pM013r`a......d.
    1180: 30 93 64 00 70 4D 30 31 33 72 60 61 00 0A 03 00  0.d.pM013r`a....
    1190: 0A 20 65 70 4D 30 31 33 72 60 61 00 0A 03 0A 10  . epM013r`a.....
    11A0: 0A 08 66 4D 30 31 30 7B 65 0C FF FF 00 FF 00 66  ..fM010{e......f
    11B0: A0 34 93 64 01 70 4D 30 31 33 72 60 61 00 0A 03  .4.d.pM013r`a...
    11C0: 00 0A 20 65 70 4D 30 31 33 72 60 61 00 0A 03 0A  .. epM013r`a....
    11D0: 10 0A 08 66 A2 10 92 93 4D 30 30 39 7B 65 0C FF  ...f....M009{e..
    11E0: FF 00 FF 00 66 A0 22 93 64 0A 02 70 4D 30 31 33  ....f.".d..pM013
    11F0: 72 60 61 00 0A 03 00 0A 20 65 5B 22 78 72 65 0B  r`a..... e["xre.
    1200: E7 03 00 0B E8 03 00 00 72 61 0A 08 61 70 4D 30  ........ra..apM0
    1210: 31 33 72 60 61 00 00 00 0A 08 62 14 42 2A 4D 32  13r`a.....b.B*M2
    1220: 31 39 0A 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  19.M460.  KER-AS
    1230: 4C 2D 43 70 6D 53 65 74 44 65 76 69 63 65 43 6C  L-CpmSetDeviceCl
    1240: 6F 63 6B 20 28 30 78 25 58 2C 20 25 64 29 0A 00  ock (0x%X, %d)..
    1250: 68 69 00 00 00 00 A0 47 26 92 93 68 00 70 4D 32  hi.....G&..h.pM2
    1260: 32 31 60 A0 4A 25 7B 60 0A 02 00 70 4D 32 32 30  21`.J%{`...pM220
    1270: 60 A0 4C 24 60 72 60 0A 10 60 70 00 61 70 01 62  `.L$`r`..`p.ap.b
    1280: A2 4D 23 92 93 62 0A FF 70 4D 30 31 33 72 60 61  .M#..b..pM013r`a
    1290: 00 00 00 0A 08 62 70 4D 30 31 33 72 60 61 00 01  .....bpM013r`a..
    12A0: 00 0A 08 63 70 4D 30 31 33 72 60 61 00 0A 04 00  ...cpM013r`a....
    12B0: 0A 08 64 70 4D 30 31 33 72 60 61 00 0A 07 00 0A  ..dpM013r`a.....
    12C0: 08 65 70 4D 30 31 33 72 60 61 00 0A 08 00 0A 20  .epM013r`a..... 
    12D0: 67 A0 47 1E 93 64 68 A0 41 1E 90 95 62 0A 0A 7B  g.G..dh.A...b..{
    12E0: 65 0A 80 00 A0 07 93 69 00 70 00 63 A1 44 09 A0  e......i.p.c.D..
    12F0: 4B 07 7B 65 0A 04 00 A0 18 93 69 01 A0 0D 92 95  K.{e......i.....
    1300: 4D 30 38 35 0A 04 70 0A 03 63 A1 05 70 0A 0F 63  M085..p..c..p..c
    1310: A0 4A 05 93 69 0A 02 70 4D 30 31 37 00 4D 30 31  .J..i..pM017.M01
    1320: 33 72 60 61 00 0A 05 00 0A 08 4D 30 31 33 72 60  3r`a......M013r`
    1330: 61 00 0A 06 00 0A 08 0A 19 00 0A 08 66 A0 17 93  a...........f...
    1340: 4D 32 36 35 66 00 00 01 A0 0C 92 95 4D 30 38 35  M265f.......M085
    1350: 0A 04 70 01 63 A1 15 A0 0D 92 95 4D 30 38 35 0A  ..p.c......M085.
    1360: 04 70 0A 03 63 A1 05 70 0A 0F 63 A1 15 A0 0D 92  .p..c..p..c.....
    1370: 95 4D 30 38 35 0A 04 70 0A 03 63 A1 05 70 0A 0F  .M085..p..c..p..
    1380: 63 A0 40 0F 92 95 4D 30 38 35 0A 04 A0 4C 09 93  c.@...M085...L..
    1390: 4D 30 38 35 0A 08 A0 43 07 94 7B 67 0C 00 00 F0  M085...C..{g....
    13A0: 0F 00 00 70 4D 32 34 39 7B 7A 67 0A 18 00 0A 0F  ...pM249{zg.....
    13B0: 00 7B 7A 67 0A 14 00 0A 0F 00 7B 7A 67 0A 10 00  .{zg......{zg...
    13C0: 0A 0F 00 0C 00 1E D0 02 66 7B 66 7F 0C FF FF FF  ........f{f.....
    13D0: FF 79 0A 03 79 62 01 00 00 00 66 7D 66 79 63 79  .y..yb....f}fycy
    13E0: 62 01 00 00 66 4D 32 35 30 7B 7A 67 0A 18 00 0A  b...fM250{zg....
    13F0: 0F 00 7B 7A 67 0A 14 00 0A 0F 00 7B 7A 67 0A 10  ..{zg......{zg..
    1400: 00 0A 0F 00 0C 00 1E D0 02 66 A1 1E 4D 30 31 32  .........f..M012
    1410: 72 4D 30 38 34 0B 00 0E 00 7A 62 0A 02 00 79 7B  rM084....zb...y{
    1420: 62 0A 03 00 01 00 0A 02 63 A1 48 04 A0 26 93 7A  b.......c.H..&.z
    1430: 67 0A 1C 00 0A 02 4D 30 31 32 72 4D 30 38 34 0B  g.....M012rM084.
    1440: 00 13 00 7A 62 0A 02 00 79 7B 62 0A 03 00 01 00  ...zb...y{b.....
    1450: 0A 02 63 A1 1E 4D 30 31 32 72 4D 30 38 34 0B 00  ..c..M012rM084..
    1460: 0E 00 7A 62 0A 02 00 79 7B 62 0A 03 00 01 00 0A  ..zb...y{b......
    1470: 02 63 A1 1D 4D 30 31 32 72 4D 30 38 34 0B 00 0E  .c..M012rM084...
    1480: 00 7A 62 01 00 79 7B 62 01 00 0A 02 00 0A 04 63  .zb..y{b.......c
    1490: A0 0B 93 69 00 4D 30 30 30 0B E0 0D A0 0B 93 69  ...i.M000......i
    14A0: 01 4D 30 30 30 0B E1 0D A0 0C 93 69 0A 02 4D 30  .M000......i..M0
    14B0: 30 30 0B E2 0D 70 0A FF 62 72 61 0A 0C 61 14 4D  00...p..bra..a.M
    14C0: 19 4D 31 31 32 0A 4D 34 36 30 0D 20 20 4B 45 52  .M112.M460.  KER
    14D0: 2D 41 53 4C 2D 43 70 6D 53 65 74 44 65 76 69 63  -ASL-CpmSetDevic
    14E0: 65 52 65 73 65 74 20 28 30 78 25 58 2C 20 30 78  eReset (0x%X, 0x
    14F0: 25 58 29 0A 00 68 69 00 00 00 00 A0 40 16 92 93  %X)..hi.....@...
    1500: 68 00 70 4D 31 30 39 60 A0 43 15 60 72 60 0A 10  h.pM109`.C.`r`..
    1510: 60 70 00 61 70 01 62 70 00 67 A2 41 14 90 92 93  `p.ap.bp.g.A....
    1520: 62 0A FF 92 93 62 00 70 4D 30 31 33 72 60 61 00  b....b.pM013r`a.
    1530: 00 00 0A 08 62 70 4D 30 31 33 72 60 61 00 01 00  ....bpM013r`a...
    1540: 0A 08 63 A0 40 10 90 93 62 68 93 63 7B 69 0A 03  ..c.@...bh.c{i..
    1550: 00 A0 45 0C 95 63 0A 02 70 4D 30 31 33 72 60 61  ..E..c..pM013r`a
    1560: 00 0A 02 00 0A 08 64 A0 30 93 64 00 70 4D 30 31  ......d.0.d.pM01
    1570: 33 72 60 61 00 0A 03 00 0A 20 65 70 4D 30 31 33  3r`a..... epM013
    1580: 72 60 61 00 0A 03 0A 10 0A 08 66 4D 30 31 30 7B  r`a.......fM010{
    1590: 65 0C FF FF 00 FF 00 66 A0 46 06 93 64 01 70 4D  e......f.F..d.pM
    15A0: 30 31 33 72 60 61 00 0A 03 00 0A 20 65 70 4D 30  013r`a..... epM0
    15B0: 31 33 72 60 61 00 0A 03 0A 10 0A 08 66 4D 30 31  13r`a.......fM01
    15C0: 30 7B 65 0C FF FF 00 FF 00 66 70 4D 30 30 39 7B  0{e......fpM009{
    15D0: 65 0C FF FF 00 FF 00 67 70 0B F2 03 64 A2 21 90  e......gp...d.!.
    15E0: 94 64 00 92 93 67 66 70 74 64 01 00 64 5B 21 0A  .d...gfptd..d[!.
    15F0: 63 70 4D 30 30 39 7B 65 0C FF FF 00 FF 00 67 A0  cpM009{e......g.
    1600: 0B 93 63 00 4D 30 30 30 0B D5 0D A0 0B 93 63 01  ..c.M000......c.
    1610: 4D 30 30 30 0B D6 0D A0 29 93 63 0A 02 70 4D 30  M000....).c..pM0
    1620: 31 33 72 60 61 00 0A 03 00 0A 20 65 5B 22 78 72  13r`a..... e["xr
    1630: 65 0B E7 03 00 0B E8 03 00 00 4D 30 30 30 0B D7  e.........M000..
    1640: 0D 70 01 67 A1 12 A0 10 90 93 67 01 93 7B 69 0A  .p.g......g..{i.
    1650: 10 00 0A 10 70 00 62 72 61 0A 08 61 14 4F 0D 4D  ....p.bra..a.O.M
    1660: 32 37 35 0A 70 00 67 A0 4B 08 92 93 68 00 70 4D  275.p.g.K...h.pM
    1670: 31 30 39 60 A0 4E 07 60 72 60 0A 10 60 70 00 61  109`.N.`r`..`p.a
    1680: 70 01 62 A2 4F 06 90 92 93 62 0A FF 92 93 62 00  p.b.O....b....b.
    1690: 70 4D 30 31 33 72 60 61 00 00 00 0A 08 62 70 4D  pM013r`a.....bpM
    16A0: 30 31 33 72 60 61 00 01 00 0A 08 63 A0 41 04 90  013r`a.....c.A..
    16B0: 93 62 68 93 63 69 A0 37 95 63 0A 02 70 4D 30 31  .bh.ci.7.c..pM01
    16C0: 33 72 60 61 00 0A 03 00 0A 20 65 70 4D 30 31 33  3r`a..... epM013
    16D0: 72 60 61 00 0A 03 0A 10 0A 08 66 A0 12 93 4D 30  r`a.......f...M0
    16E0: 30 39 7B 65 0C FF FF 00 FF 00 66 70 01 67 72 61  09{e......fp.gra
    16F0: 0A 08 61 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  ..aM460.  KER-AS
    1700: 4C 2D 43 70 6D 43 68 65 63 6B 44 65 76 69 63 65  L-CpmCheckDevice
    1710: 52 65 73 65 74 53 74 61 74 65 20 28 30 78 25 58  ResetState (0x%X
    1720: 2C 20 25 64 29 20 20 52 65 74 75 72 6E 20 28 25  , %d)  Return (%
    1730: 64 29 0A 00 68 69 67 00 00 00 A4 67 14 4D 28 4D  d)..hig....g.M(M
    1740: 31 31 33 09 A0 48 27 92 93 68 00 70 4D 31 30 38  113..H'..h.pM108
    1750: 60 70 01 67 A0 48 26 60 72 60 0A 10 60 70 00 61  `p.g.H&`r`..`p.a
    1760: 70 01 62 A2 49 25 90 92 93 62 0A FF 92 93 62 00  p.b.I%...b....b.
    1770: 70 4D 30 31 33 72 60 61 00 00 00 0A 08 62 A0 47  pM013r`a.....b.G
    1780: 23 93 62 68 70 0A FF 62 70 4D 30 31 33 72 60 61  #.bhp..bpM013r`a
    1790: 00 01 00 0A 08 63 A0 32 93 63 00 70 4D 30 31 33  .....c.2.c.pM013
    17A0: 72 60 61 00 0A 02 00 0A 20 65 70 4D 30 31 33 72  r`a..... epM013r
    17B0: 60 61 00 0A 04 00 0A 08 66 70 93 4D 30 30 39 7B  `a......fp.M009{
    17C0: 65 0C FF FF 00 FF 00 66 67 A0 42 06 93 63 01 70  e......fg.B..c.p
    17D0: 4D 30 31 33 72 60 61 00 0A 02 00 0A 20 65 70 4D  M013r`a..... epM
    17E0: 30 31 33 72 60 61 00 0A 04 00 0A 08 66 70 93 4D  013r`a......fp.M
    17F0: 30 30 39 7B 65 0C FF FF 00 FF 00 66 67 70 4D 30  009{e......fgpM0
    1800: 31 33 72 60 61 00 0A 06 00 0A 20 65 70 4D 30 31  13r`a..... epM01
    1810: 33 72 60 61 00 0A 08 00 0A 08 66 7B 67 93 4D 30  3r`a......f{g.M0
    1820: 30 39 7B 65 0C FF FF 00 FF 00 66 67 A0 42 09 93  09{e......fg.B..
    1830: 63 0A 02 70 4D 30 31 33 72 60 61 00 0A 02 00 0A  c..pM013r`a.....
    1840: 20 65 70 4D 30 31 33 72 60 61 00 0A 04 00 0A 08   epM013r`a......
    1850: 66 70 93 4D 30 30 39 7B 65 0C FF FF 00 FF 00 66  fp.M009{e......f
    1860: 67 70 4D 30 31 33 72 60 61 00 0A 06 00 0A 20 65  gpM013r`a..... e
    1870: 70 4D 30 31 33 72 60 61 00 0A 08 00 0A 08 66 7B  pM013r`a......f{
    1880: 67 93 4D 30 30 39 7B 65 0C FF FF 00 FF 00 66 67  g.M009{e......fg
    1890: 70 4D 30 31 33 72 60 61 00 0A 0A 00 0A 20 65 70  pM013r`a..... ep
    18A0: 4D 30 31 33 72 60 61 00 0A 0C 00 0A 08 66 7B 67  M013r`a......f{g
    18B0: 93 4D 30 30 39 7B 65 0C FF FF 00 FF 00 66 67 A0  .M009{e......fg.
    18C0: 43 06 93 63 0A 03 70 4D 30 31 33 72 60 61 00 0A  C..c..pM013r`a..
    18D0: 02 00 0A 20 65 70 4D 30 31 33 72 60 61 00 0A 04  ... epM013r`a...
    18E0: 00 0A 08 66 70 93 4D 30 30 39 7B 65 0C FF FF 00  ...fp.M009{e....
    18F0: FF 00 66 67 70 4D 30 31 33 72 60 61 00 0A 06 00  ..fgpM013r`a....
    1900: 0A 20 65 70 4D 30 31 33 72 60 61 00 0A 08 00 0A  . epM013r`a.....
    1910: 08 66 7D 67 93 4D 30 30 39 7B 65 0C FF FF 00 FF  .f}g.M009{e.....
    1920: 00 66 67 A0 42 09 93 63 0A 04 70 4D 30 31 33 72  .fg.B..c..pM013r
    1930: 60 61 00 0A 02 00 0A 20 65 70 4D 30 31 33 72 60  `a..... epM013r`
    1940: 61 00 0A 04 00 0A 08 66 70 93 4D 30 30 39 7B 65  a......fp.M009{e
    1950: 0C FF FF 00 FF 00 66 67 70 4D 30 31 33 72 60 61  ......fgpM013r`a
    1960: 00 0A 06 00 0A 20 65 70 4D 30 31 33 72 60 61 00  ..... epM013r`a.
    1970: 0A 08 00 0A 08 66 7D 67 93 4D 30 30 39 7B 65 0C  .....f}g.M009{e.
    1980: FF FF 00 FF 00 66 67 70 4D 30 31 33 72 60 61 00  .....fgpM013r`a.
    1990: 0A 0A 00 0A 20 65 70 4D 30 31 33 72 60 61 00 0A  .... epM013r`a..
    19A0: 0C 00 0A 08 66 7D 67 93 4D 30 30 39 7B 65 0C FF  ....f}g.M009{e..
    19B0: FF 00 FF 00 66 67 A1 06 72 61 0A 0E 61 A1 04 70  ....fg..ra..a..p
    19C0: 00 67 A0 05 67 70 01 67 A4 67 08 4D 30 34 36 0A  .g..gp.g.g.M046.
    19D0: AA 08 4D 30 34 37 0A AA 14 4A 4B 4D 30 34 35 08  ..M047...JKM045.
    19E0: 70 00 60 A0 41 4A 91 93 4D 30 34 36 0A AA 93 4D  p.`.AJ..M046...M
    19F0: 30 34 37 0A AA 70 00 4D 30 34 36 A0 49 48 5B 12  047..p.M046.IH[.
    1A00: 5C 5F 4F 53 49 00 A0 45 05 5C 5F 4F 53 49 0D 44  \_OSI..E.\_OSI.D
    1A10: 69 73 70 6C 61 79 4D 75 78 00 70 01 4D 30 34 37  isplayMux.p.M047
    1A20: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5F  M460.  KER-ASL-_
    1A30: 4F 53 49 20 3D 20 54 68 69 73 20 4F 53 20 63 61  OSI = This OS ca
    1A40: 6E 20 73 75 70 70 6F 72 74 20 44 69 73 70 6C 61  n support Displa
    1A50: 79 4D 75 78 0A 00 00 00 00 00 00 00 A1 47 04 70  yMux.........G.p
    1A60: 00 4D 30 34 37 4D 34 36 30 0D 20 20 4B 45 52 2D  .M047M460.  KER-
    1A70: 41 53 4C 2D 5F 4F 53 49 20 3D 20 54 68 69 73 20  ASL-_OSI = This 
    1A80: 4F 53 20 63 61 6E 6E 6F 74 20 73 75 70 70 6F 72  OS cannot suppor
    1A90: 74 20 44 69 73 70 6C 61 79 4D 75 78 0A 00 00 00  t DisplayMux....
    1AA0: 00 00 00 00 A0 42 05 5C 5F 4F 53 49 0D 57 69 6E  .....B.\_OSI.Win
    1AB0: 64 6F 77 73 20 32 30 32 32 00 70 0A 0C 4D 30 34  dows 2022.p..M04
    1AC0: 36 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  6M460.  KER-ASL-
    1AD0: 5F 4F 53 49 20 3D 20 57 69 6E 64 6F 77 73 20 31  _OSI = Windows 1
    1AE0: 31 2C 20 76 65 72 73 69 6F 6E 20 32 32 48 32 0A  1, version 22H2.
    1AF0: 00 00 00 00 00 00 00 A1 4D 38 A0 44 04 5C 5F 4F  ........M8.D.\_O
    1B00: 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 32 31 00  SI.Windows 2021.
    1B10: 70 0A 0B 4D 30 34 36 4D 34 36 30 0D 20 20 4B 45  p..M046M460.  KE
    1B20: 52 2D 41 53 4C 2D 5F 4F 53 49 20 3D 20 57 69 6E  R-ASL-_OSI = Win
    1B30: 64 6F 77 73 20 31 31 0A 00 00 00 00 00 00 00 A1  dows 11.........
    1B40: 45 34 A0 42 05 5C 5F 4F 53 49 0D 57 69 6E 64 6F  E4.B.\_OSI.Windo
    1B50: 77 73 20 32 30 32 30 00 70 0A 0A 4D 30 34 36 4D  ws 2020.p..M046M
    1B60: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5F 4F  460.  KER-ASL-_O
    1B70: 53 49 20 3D 20 57 69 6E 64 6F 77 73 20 31 30 2C  SI = Windows 10,
    1B80: 20 76 65 72 73 69 6F 6E 20 32 30 30 34 0A 00 00   version 2004...
    1B90: 00 00 00 00 00 A1 4F 2E A0 42 05 5C 5F 4F 53 49  ......O..B.\_OSI
    1BA0: 0D 57 69 6E 64 6F 77 73 20 32 30 31 39 00 70 0A  .Windows 2019.p.
    1BB0: 09 4D 30 34 36 4D 34 36 30 0D 20 20 4B 45 52 2D  .M046M460.  KER-
    1BC0: 41 53 4C 2D 5F 4F 53 49 20 3D 20 57 69 6E 64 6F  ASL-_OSI = Windo
    1BD0: 77 73 20 31 30 2C 20 76 65 72 73 69 6F 6E 20 31  ws 10, version 1
    1BE0: 39 30 33 0A 00 00 00 00 00 00 00 A1 49 29 A0 44  903.........I).D
    1BF0: 05 5C 5F 4F 53 49 0D 57 69 6E 64 6F 77 73 20 32  .\_OSI.Windows 2
    1C00: 30 31 38 2E 32 00 70 0A 08 4D 30 34 36 4D 34 36  018.2.p..M046M46
    1C10: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5F 4F 53 49  0.  KER-ASL-_OSI
    1C20: 20 3D 20 57 69 6E 64 6F 77 73 20 31 30 2C 20 76   = Windows 10, v
    1C30: 65 72 73 69 6F 6E 20 31 38 30 39 0A 00 00 00 00  ersion 1809.....
    1C40: 00 00 00 A1 41 24 A0 42 05 5C 5F 4F 53 49 0D 57  ....A$.B.\_OSI.W
    1C50: 69 6E 64 6F 77 73 20 32 30 31 38 00 70 0A 07 4D  indows 2018.p..M
    1C60: 30 34 36 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  046M460.  KER-AS
    1C70: 4C 2D 5F 4F 53 49 20 3D 20 57 69 6E 64 6F 77 73  L-_OSI = Windows
    1C80: 20 31 30 2C 20 76 65 72 73 69 6F 6E 20 31 38 30   10, version 180
    1C90: 33 0A 00 00 00 00 00 00 00 A1 4B 1E A0 44 05 5C  3.........K..D.\
    1CA0: 5F 4F 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 31  _OSI.Windows 201
    1CB0: 37 2E 32 00 70 0A 06 4D 30 34 36 4D 34 36 30 0D  7.2.p..M046M460.
    1CC0: 20 20 4B 45 52 2D 41 53 4C 2D 5F 4F 53 49 20 3D    KER-ASL-_OSI =
    1CD0: 20 57 69 6E 64 6F 77 73 20 31 30 2C 20 76 65 72   Windows 10, ver
    1CE0: 73 69 6F 6E 20 31 37 30 39 0A 00 00 00 00 00 00  sion 1709.......
    1CF0: 00 A1 43 19 A0 42 05 5C 5F 4F 53 49 0D 57 69 6E  ..C..B.\_OSI.Win
    1D00: 64 6F 77 73 20 32 30 31 37 00 70 0A 05 4D 30 34  dows 2017.p..M04
    1D10: 36 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  6M460.  KER-ASL-
    1D20: 5F 4F 53 49 20 3D 20 57 69 6E 64 6F 77 73 20 31  _OSI = Windows 1
    1D30: 30 2C 20 76 65 72 73 69 6F 6E 20 31 37 30 33 0A  0, version 1703.
    1D40: 00 00 00 00 00 00 00 A1 4D 13 A0 42 05 5C 5F 4F  ........M..B.\_O
    1D50: 53 49 0D 57 69 6E 64 6F 77 73 20 32 30 31 36 00  SI.Windows 2016.
    1D60: 70 0A 04 4D 30 34 36 4D 34 36 30 0D 20 20 4B 45  p..M046M460.  KE
    1D70: 52 2D 41 53 4C 2D 5F 4F 53 49 20 3D 20 57 69 6E  R-ASL-_OSI = Win
    1D80: 64 6F 77 73 20 31 30 2C 20 76 65 72 73 69 6F 6E  dows 10, version
    1D90: 20 31 36 30 37 0A 00 00 00 00 00 00 00 A1 47 0E   1607.........G.
    1DA0: A0 44 04 5C 5F 4F 53 49 0D 57 69 6E 64 6F 77 73  .D.\_OSI.Windows
    1DB0: 20 32 30 31 35 00 70 0A 03 4D 30 34 36 4D 34 36   2015.p..M046M46
    1DC0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5F 4F 53 49  0.  KER-ASL-_OSI
    1DD0: 20 3D 20 57 69 6E 64 6F 77 73 20 31 30 0A 00 00   = Windows 10...
    1DE0: 00 00 00 00 00 A1 4F 09 A0 45 04 5C 5F 4F 53 49  ......O..E.\_OSI
    1DF0: 0D 57 69 6E 64 6F 77 73 20 32 30 31 33 00 70 0A  .Windows 2013.p.
    1E00: 02 4D 30 34 36 4D 34 36 30 0D 20 20 4B 45 52 2D  .M046M460.  KER-
    1E10: 41 53 4C 2D 5F 4F 53 49 20 3D 20 57 69 6E 64 6F  ASL-_OSI = Windo
    1E20: 77 73 20 38 2E 31 0A 00 00 00 00 00 00 00 A1 46  ws 8.1.........F
    1E30: 05 A0 43 05 5C 5F 4F 53 49 0D 57 69 6E 64 6F 77  ..C.\_OSI.Window
    1E40: 73 20 32 30 31 32 00 70 01 4D 30 34 36 4D 34 36  s 2012.p.M046M46
    1E50: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5F 4F 53 49  0.  KER-ASL-_OSI
    1E60: 20 3D 20 57 69 6E 64 6F 77 73 20 38 2C 20 57 69   = Windows 8, Wi
    1E70: 6E 20 53 65 72 76 65 72 20 32 30 31 32 0A 00 00  n Server 2012...
    1E80: 00 00 00 00 00 A0 0B 92 95 4D 30 34 36 01 70 01  .........M046.p.
    1E90: 60 A4 60 5B 80 56 41 52 57 00 0C 0C 02 D8 FE 0A  `.`[.VARW.......
    1EA0: 14 5B 81 18 56 41 52 57 03 56 41 30 43 20 00 40  .[..VARW.VA0C .@
    1EB0: 04 56 41 31 38 20 56 41 31 43 20 14 42 08 4D 32  .VA18 VA1C .B.M2
    1EC0: 32 41 09 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  2A.M460.  KER-AS
    1ED0: 4C 2D 43 70 6D 54 72 69 67 67 65 72 53 63 69 20  L-CpmTriggerSci 
    1EE0: 28 25 64 29 0A 00 68 00 00 00 00 00 79 01 68 60  (%d)..h.....y.h`
    1EF0: 70 0C FF FF FF 7F 61 7D 61 0C 00 00 00 80 61 7F  p.....a}a.....a.
    1F00: 61 60 61 7B 56 41 30 43 61 56 41 30 43 7D 7B 56  a`a{VA0CaVA0C}{V
    1F10: 41 31 38 61 00 60 56 41 31 38 7D 7B 56 41 31 43  A18a.`VA18}{VA1C
    1F20: 61 00 60 56 41 31 43 5B 22 01 7B 56 41 31 43 61  a.`VA1C[".{VA1Ca
    1F30: 56 41 31 43 7B 56 41 31 38 61 56 41 31 38 5B 01  VA1C{VA18aVA18[.
    1F40: 4D 32 33 30 00 14 49 08 4D 32 33 32 0B 70 68 60  M230..I.M232.ph`
    1F50: 70 69 61 70 6A 62 4D 34 36 30 0D 20 20 4B 45 52  piapjbM460.  KER
    1F60: 2D 41 53 4C 2D 43 70 6D 54 72 69 67 67 65 72 53  -ASL-CpmTriggerS
    1F70: 6D 69 20 28 30 78 25 58 2C 20 30 78 25 58 2C 20  mi (0x%X, 0x%X, 
    1F80: 25 64 29 0A 00 68 69 6A 00 00 00 5B 23 4D 32 33  %d)..hij...[#M23
    1F90: 30 FF FF 70 68 60 5B 80 56 41 52 4D 01 4D 32 33  0..ph`[.VARM.M23
    1FA0: 31 0A 02 5B 81 10 56 41 52 4D 01 56 41 52 31 08  1..[..VARM.VAR1.
    1FB0: 56 41 52 32 08 70 61 56 41 52 32 70 60 56 41 52  VAR2.paVAR2p`VAR
    1FC0: 31 A0 07 94 62 00 5B 22 62 5B 27 4D 32 33 30 14  1...b.["b['M230.
    1FD0: 1B 4D 30 34 33 0B A0 10 5B 12 4D 4F 45 4D 00 A4  .M043...[.MOEM..
    1FE0: 4D 4F 45 4D 68 69 6A A1 03 A4 00 14 41 08 4D 4C  MOEMhij.....A.ML
    1FF0: 49 42 0A 08 5F 54 5F 31 00 08 5F 54 5F 30 00 A2  IB.._T_1.._T_0..
    2000: 4D 06 01 70 99 68 00 5F 54 5F 30 A0 40 06 93 5F  M..p.h._T_0.@.._
    2010: 54 5F 30 00 70 83 88 69 0A 02 00 60 A2 4F 04 01  T_0.p..i...`.O..
    2020: 70 99 60 00 5F 54 5F 31 A0 14 93 5F 54 5F 31 0A  p.`._T_1..._T_1.
    2030: 03 4D 32 32 38 0A 04 4D 32 32 38 0A 05 A1 2D A0  .M228..M228...-.
    2040: 14 93 5F 54 5F 31 0A 04 4D 32 32 38 0A 04 4D 32  .._T_1..M228..M2
    2050: 32 38 0A 06 A1 16 A0 14 93 5F 54 5F 31 0A 05 4D  28......._T_1..M
    2060: 32 32 38 0A 04 4D 32 32 38 0A 07 A5 A5 14 49 10  228..M228.....I.
    2070: 4D 34 35 38 01 99 4D 34 35 33 60 A0 4E 07 94 60  M458..M453`.N..`
    2080: 0B FF FF 5B 80 56 41 52 4D 00 60 0A 20 5B 81 1A  ...[.VARM.`. [..
    2090: 56 41 52 4D 01 54 48 52 4D 08 00 48 09 4C 53 52  VARM.THRM..H.LSR
    20A0: 4D 08 00 18 4D 53 52 4D 08 70 0C 80 84 1E 00 61  M...MSRM.p.....a
    20B0: A2 15 90 94 61 00 92 93 7B 4C 53 52 4D 0A 60 00  ....a...{LSRM.`.
    20C0: 0A 60 74 61 01 61 A0 25 92 93 4D 34 35 37 00 70  .`ta.a.%..M457.p
    20D0: 0C 80 84 1E 00 62 A2 15 90 94 62 00 92 93 7B 4D  .....b....b...{M
    20E0: 53 52 4D 0A 10 00 0A 10 74 62 01 62 A0 0D 92 93  SRM.....tb.b....
    20F0: 61 00 70 68 54 48 52 4D A4 00 A1 49 07 A0 46 07  a.phTHRM...I..F.
    2100: 94 60 00 8B 4D 32 38 35 0A 02 4D 32 38 38 5B 80  .`..M285..M288[.
    2110: 56 41 52 4E 01 60 0A 08 5B 81 12 56 41 52 4E 01  VARN.`..[..VARN.
    2120: 54 48 52 49 08 00 20 4C 53 52 49 08 70 0C 80 84  THRI.. LSRI.p...
    2130: 1E 00 61 A0 32 92 93 99 4D 32 38 38 00 60 A2 27  ..a.2...M288.`.'
    2140: 90 94 61 00 92 93 7B 4C 53 52 49 0A E0 00 0A 60  ..a...{LSRI....`
    2150: A0 11 93 4C 53 52 49 0A FF 70 00 4D 34 35 33 70  ...LSRI..p.M453p
    2160: 01 61 74 61 01 61 A0 0D 92 93 61 00 70 68 54 48  .ata.a....a.phTH
    2170: 52 49 A4 00 A4 0A FF 14 44 0D 4D 34 35 39 02 99  RI......D.M459..
    2180: 4D 34 35 33 60 A0 07 93 60 00 A4 0A FF A1 41 09  M453`...`.....A.
    2190: A0 4E 08 94 60 0B FF FF 5B 80 56 41 52 4D 00 60  .N..`...[.VARM.`
    21A0: 0A 20 5B 81 27 56 41 52 4D 01 44 4C 4C 4D 08 00  . [.'VARM.DLLM..
    21B0: 18 44 4C 48 4D 08 00 18 46 43 52 4D 08 00 18 4C  .DLHM...FCRM...L
    21C0: 43 52 4D 08 00 18 4D 43 52 4D 08 A0 43 05 92 93  CRM...MCRM..C...
    21D0: 7B 4C 43 52 4D 0A 3F 00 4D 34 35 35 70 0A 80 4C  {LCRM.?.M455p..L
    21E0: 43 52 4D 7A 4D 34 35 34 0A 08 44 4C 48 4D 70 7B  CRMzM454..DLHMp{
    21F0: 4D 34 35 34 0A FF 00 44 4C 4C 4D 70 4D 34 35 35  M454...DLLMpM455
    2200: 4C 43 52 4D 70 00 46 43 52 4D 70 4D 34 35 36 46  LCRMp.FCRMpM456F
    2210: 43 52 4D 70 00 44 4C 48 4D 70 00 4D 43 52 4D 70  CRMp.DLHMp.MCRMp
    2220: 87 68 60 99 69 61 70 00 62 96 68 63 A0 1D 92 93  .h`.iap.b.hc....
    2230: 60 00 A2 17 90 94 60 61 93 62 00 70 4D 34 35 38  `.....`a.b.pM458
    2240: 83 88 63 61 00 62 72 61 01 61 A4 62 14 47 20 4D  ..ca.bra.a.b.G M
    2250: 34 36 30 0F 8B 4D 32 38 35 0A 02 4D 32 38 38 99  460..M285..M288.
    2260: 4D 34 35 33 67 A0 07 93 67 00 A4 0A FF A1 4E 0B  M453g...g.....N.
    2270: A0 4E 08 94 67 0B FF FF 5B 80 56 41 52 4D 00 67  .N..g...[.VARM.g
    2280: 0A 20 5B 81 27 56 41 52 4D 01 44 4C 4C 4D 08 00  . [.'VARM.DLLM..
    2290: 18 44 4C 48 4D 08 00 18 46 43 52 4D 08 00 18 4C  .DLHM...FCRM...L
    22A0: 43 52 4D 08 00 18 4D 43 52 4D 08 A0 43 05 92 93  CRM...MCRM..C...
    22B0: 7B 4C 43 52 4D 0A 3F 00 4D 34 35 35 70 0A 80 4C  {LCRM.?.M455p..L
    22C0: 43 52 4D 7A 4D 34 35 34 0A 08 44 4C 48 4D 70 7B  CRMzM454..DLHMp{
    22D0: 4D 34 35 34 0A FF 00 44 4C 4C 4D 70 4D 34 35 35  M454...DLLMpM455
    22E0: 4C 43 52 4D 70 00 46 43 52 4D 70 4D 34 35 36 46  LCRMp.FCRMpM456F
    22F0: 43 52 4D 70 00 44 4C 48 4D 70 00 4D 43 52 4D A1  CRMp.DLHMp.MCRM.
    2300: 2C A0 2A 93 99 4D 32 38 38 00 67 5B 80 56 41 52  ,.*..M288.g[.VAR
    2310: 53 01 67 0A 04 5B 81 0B 56 41 52 53 03 56 41 52  S.g..[..VARS.VAR
    2320: 54 20 70 0C 52 54 53 5F 56 41 52 54 70 87 68 60  T p.RTS_VARTp.h`
    2330: 70 00 61 70 00 62 70 01 65 96 68 63 A0 4A 0E 92  p.ap.bp.e.hc.J..
    2340: 93 60 00 A2 43 0E 90 94 60 61 93 62 00 70 83 88  .`..C...`a.b.p..
    2350: 63 61 00 64 A0 4D 0A 90 93 64 0A 25 94 0A 07 65  ca.d.M...d.%...e
    2360: A0 07 93 65 01 70 69 66 A1 36 A0 08 93 65 0A 02  ...e.pif.6...e..
    2370: 70 6A 66 A1 2B A0 08 93 65 0A 03 70 6B 66 A1 20  pjf.+...e..pkf. 
    2380: A0 08 93 65 0A 04 70 6C 66 A1 15 A0 08 93 65 0A  ...e..plf.....e.
    2390: 05 70 6D 66 A1 0A A0 08 93 65 0A 06 70 6E 66 72  .pmf.....e..pnfr
    23A0: 65 01 65 72 61 01 61 70 83 88 63 61 00 64 A0 15  e.era.ap..ca.d..
    23B0: 91 93 64 0A 58 93 64 0A 78 70 4D 34 35 39 98 66  ..d.X.d.xpM459.f
    23C0: 00 0A 02 62 A1 3D A0 14 91 93 64 0A 44 93 64 0A  ...b.=....d.D.d.
    23D0: 64 70 4D 34 35 39 97 66 00 00 62 A1 26 A0 12 91  dpM459.f..b.&...
    23E0: 93 64 0A 53 93 64 0A 73 70 4D 34 35 39 66 00 62  .d.S.d.spM459f.b
    23F0: A1 11 70 4D 34 35 38 0A 25 62 74 65 01 65 74 61  ..pM458.%bte.eta
    2400: 01 61 A1 20 A0 15 93 64 0A 0A 70 4D 34 35 38 0A  .a. ...d..pM458.
    2410: 0D 62 70 4D 34 35 38 0A 0A 62 A1 08 70 4D 34 35  .bpM458..b..pM45
    2420: 38 64 62 72 61 01 61 A0 2A 93 99 4D 32 38 38 00  8dbra.a.*..M288.
    2430: 67 5B 80 56 41 52 55 01 67 0A 04 5B 81 0B 56 41  g[.VARU.g..[..VA
    2440: 52 55 03 56 41 52 56 20 70 0C 44 4E 45 5F 56 41  RU.VARV p.DNE_VA
    2450: 52 56 A4 62 08 4D 34 30 34 11 0A 0A 07 00 02 06  RV.b.M404.......
    2460: 08 04 0A 0C 14 45 10 4D 34 30 35 0D A0 4B 09 92  .....E.M405..K..
    2470: 95 4D 30 38 35 0A 04 A0 40 05 93 4D 30 38 35 0A  .M085...@..M085.
    2480: 08 70 83 88 4D 34 30 34 6C 00 61 A0 1F 91 94 68  .p..M404l.a....h
    2490: 00 94 69 00 70 4D 32 34 39 68 69 6A 0C 00 1E D0  ..i.pM249hij....
    24A0: 02 60 7A 60 61 60 7B 60 0A 03 60 A1 1C 70 4D 30  .`z`a`{`..`..pM0
    24B0: 31 31 72 4D 30 38 34 0B 00 0E 00 7A 61 0A 08 00  11rM084....za...
    24C0: 7B 61 0A 07 00 0A 02 60 A1 3F A0 20 93 6B 0A 02  {a.....`.?. .k..
    24D0: 70 4D 30 31 31 72 4D 30 38 34 0B 00 13 00 7A 61  pM011rM084....za
    24E0: 0A 08 00 7B 61 0A 07 00 0A 02 60 A1 1C 70 4D 30  ...{a.....`..pM0
    24F0: 31 31 72 4D 30 38 34 0B 00 0E 00 7A 61 0A 08 00  11rM084....za...
    2500: 7B 61 0A 07 00 0A 02 60 A1 1E 70 4D 30 31 31 72  {a.....`..pM011r
    2510: 4D 30 38 34 0B 00 0E 00 7A 6C 01 00 79 7B 6C 01  M084....zl..y{l.
    2520: 00 0A 02 00 0A 04 60 4D 34 36 30 0D 20 20 4B 45  ......`M460.  KE
    2530: 52 2D 41 53 4C 2D 43 70 6D 52 65 61 64 43 6C 6B  R-ASL-CpmReadClk
    2540: 52 65 71 20 20 28 25 64 2C 20 25 64 2C 20 25 64  Req  (%d, %d, %d
    2550: 2C 20 25 64 2C 20 25 64 29 20 3D 20 30 78 25 58  , %d, %d) = 0x%X
    2560: 0A 00 68 69 6A 6B 6C 60 A4 60 14 48 11 4D 34 30  ..hijkl`.`.H.M40
    2570: 36 0E 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  6.M460.  KER-ASL
    2580: 2D 43 70 6D 57 72 69 74 65 43 6C 6B 52 65 71 20  -CpmWriteClkReq 
    2590: 28 25 64 2C 20 25 64 2C 20 25 64 2C 20 25 64 2C  (%d, %d, %d, %d,
    25A0: 20 25 64 2C 20 30 78 25 58 29 0A 00 68 69 6A 6B   %d, 0x%X)..hijk
    25B0: 6C 6D A0 42 0B 92 95 4D 30 38 35 0A 04 A0 49 06  lm.B...M085...I.
    25C0: 93 4D 30 38 35 0A 08 70 83 88 4D 34 30 34 6C 00  .M085..p..M404l.
    25D0: 61 A0 39 91 94 68 00 94 69 00 70 4D 32 34 39 68  a.9..h..i.pM249h
    25E0: 69 6A 0C 00 1E D0 02 60 7B 60 7F 0C FF FF FF FF  ij.....`{`......
    25F0: 79 0A 03 61 00 00 60 7D 60 79 6D 61 00 60 4D 32  y..a..`}`yma.`M2
    2600: 35 30 68 69 6A 0C 00 1E D0 02 60 A1 1B 4D 30 31  50hij.....`..M01
    2610: 32 72 4D 30 38 34 0B 00 0E 00 7A 61 0A 08 00 7B  2rM084....za...{
    2620: 61 0A 07 00 0A 02 6D A1 3D A0 1F 93 6B 0A 02 4D  a.....m.=...k..M
    2630: 30 31 32 72 4D 30 38 34 0B 00 13 00 7A 61 0A 08  012rM084....za..
    2640: 00 7B 61 0A 07 00 0A 02 6D A1 1B 4D 30 31 32 72  .{a.....m..M012r
    2650: 4D 30 38 34 0B 00 0E 00 7A 61 0A 08 00 7B 61 0A  M084....za...{a.
    2660: 07 00 0A 02 6D A1 1D 4D 30 31 32 72 4D 30 38 34  ....m..M012rM084
    2670: 0B 00 0E 00 7A 6C 01 00 79 7B 6C 01 00 0A 02 00  ....zl..y{l.....
    2680: 0A 04 6D 14 46 0B 4D 36 30 30 0A 08 54 45 4D 50  ..m.F.M600..TEMP
    2690: 12 08 04 0A FF 0A 09 00 00 A0 0D 93 68 00 70 00  ............h.p.
    26A0: 88 54 45 4D 50 00 00 A0 0F 92 93 69 0A 09 70 69  .TEMP......i..pi
    26B0: 88 54 45 4D 50 01 00 70 83 88 54 45 4D 50 00 00  .TEMP..p..TEMP..
    26C0: 60 70 83 88 54 45 4D 50 01 00 61 70 83 88 54 45  `p..TEMP..ap..TE
    26D0: 4D 50 0A 02 00 62 70 83 88 54 45 4D 50 0A 03 00  MP...bp..TEMP...
    26E0: 63 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  cM460.  KER-ASL-
    26F0: 43 70 6D 47 65 6E 65 72 61 74 65 55 50 43 20 28  CpmGenerateUPC (
    2700: 29 20 52 65 74 75 72 6E 20 50 61 63 6B 61 67 65  ) Return Package
    2710: 20 28 34 29 20 7B 30 78 25 58 2C 20 30 78 25 58   (4) {0x%X, 0x%X
    2720: 2C 20 30 78 25 58 2C 20 30 78 25 58 7D 0A 00 60  , 0x%X, 0x%X}..`
    2730: 61 62 63 00 00 A4 54 45 4D 50 14 4E 0C 4D 36 30  abc...TEMP.N.M60
    2740: 32 0B 08 54 45 4D 50 12 09 04 0A FF 0A 09 0A 3D  2..TEMP........=
    2750: 00 A0 0D 93 68 00 70 00 88 54 45 4D 50 00 00 A0  ....h.p..TEMP...
    2760: 0F 92 93 69 0A 09 70 69 88 54 45 4D 50 01 00 A0  ...i..pi.TEMP...
    2770: 10 92 93 6A 0A 3D 70 6A 88 54 45 4D 50 0A 02 00  ...j.=pj.TEMP...
    2780: 70 83 88 54 45 4D 50 00 00 60 70 83 88 54 45 4D  p..TEMP..`p..TEM
    2790: 50 01 00 61 70 83 88 54 45 4D 50 0A 02 00 62 70  P..ap..TEMP...bp
    27A0: 83 88 54 45 4D 50 0A 03 00 63 4D 34 36 30 0D 20  ..TEMP...cM460. 
    27B0: 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 47 65 6E 65   KER-ASL-CpmGene
    27C0: 72 61 74 65 41 63 70 69 36 35 55 50 43 20 28 29  rateAcpi65UPC ()
    27D0: 20 52 65 74 75 72 6E 20 50 61 63 6B 61 67 65 20   Return Package 
    27E0: 28 34 29 20 7B 30 78 25 58 2C 20 30 78 25 58 2C  (4) {0x%X, 0x%X,
    27F0: 20 30 78 25 58 2C 20 30 78 25 58 7D 0A 00 60 61   0x%X, 0x%X}..`a
    2800: 62 63 00 00 A4 54 45 4D 50 14 44 28 4D 36 30 31  bc...TEMP.D(M601
    2810: 0E 08 54 45 4D 50 12 1A 01 11 17 0A 14 82 00 00  ..TEMP..........
    2820: 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF FF  ................
    2830: FF 5B 13 83 88 54 45 4D 50 00 00 0A 20 0A 10 57  .[...TEMP... ..W
    2840: 49 44 48 5B 13 83 88 54 45 4D 50 00 00 0A 30 0A  IDH[...TEMP...0.
    2850: 10 48 49 47 54 5B 13 83 88 54 45 4D 50 00 00 0A  .HIGT[...TEMP...
    2860: 40 01 56 49 53 49 5B 13 83 88 54 45 4D 50 00 00  @.VISI[...TEMP..
    2870: 0A 42 01 46 4C 49 44 5B 13 83 88 54 45 4D 50 00  .B.FLID[...TEMP.
    2880: 00 0A 43 0A 03 50 41 4E 45 5B 13 83 88 54 45 4D  ..C..PANE[...TEM
    2890: 50 00 00 0A 46 0A 02 56 54 50 53 5B 13 83 88 54  P...F..VTPS[...T
    28A0: 45 4D 50 00 00 0A 48 0A 02 48 5A 50 53 5B 13 83  EMP...H..HZPS[..
    28B0: 88 54 45 4D 50 00 00 0A 4A 0A 04 53 48 41 50 5B  .TEMP...J..SHAP[
    28C0: 13 83 88 54 45 4D 50 00 00 0A 4F 0A 08 47 50 54  ...TEMP...O..GPT
    28D0: 4E 5B 13 83 88 54 45 4D 50 00 00 0A 57 0A 08 47  N[...TEMP...W..G
    28E0: 50 50 53 5B 13 83 88 54 45 4D 50 00 00 0A 60 0A  PPS[...TEMP...`.
    28F0: 02 45 4A 54 42 5B 13 83 88 54 45 4D 50 00 00 0A  .EJTB[...TEMP...
    2900: 73 0A 04 52 4F 54 4E 5B 13 83 88 54 45 4D 50 00  s..ROTN[...TEMP.
    2910: 00 0A 80 0A 20 4F 46 53 54 A0 1E 91 93 68 00 93  .... OFST....h..
    2920: 68 0A 02 70 0A 03 53 48 41 50 70 0A 08 57 49 44  h..p..SHAPp..WID
    2930: 48 70 0A 0E 48 49 47 54 A1 43 04 A0 1D 91 93 68  Hp..HIGT.C.....h
    2940: 01 93 68 0A 03 70 01 53 48 41 50 70 0A 03 57 49  ..h..p.SHAPp..WI
    2950: 44 48 70 0A 08 48 49 47 54 A1 22 A0 20 93 68 0A  DHp..HIGT.". .h.
    2960: 02 70 0A 02 53 48 41 50 70 0A 08 57 49 44 48 70  .p..SHAPp..WIDHp
    2970: 0A 08 48 49 47 54 70 01 46 4C 49 44 A0 11 91 93  ..HIGTp.FLID....
    2980: 68 0A 02 93 68 0A 03 70 0A 02 52 4F 54 4E 70 69  h...h..p..ROTNpi
    2990: 56 49 53 49 70 7B 7A 6A 0A 08 00 0A FF 00 47 50  VISIp{zj......GP
    29A0: 54 4E 70 7B 6A 0A FF 00 47 50 50 53 70 6B 45 4A  TNp{j...GPPSpkEJ
    29B0: 54 42 70 7B 6C 0A 07 00 50 41 4E 45 70 7B 7A 6C  TBp{l...PANEp{zl
    29C0: 0A 04 00 0A 03 00 56 54 50 53 70 7B 7A 6C 0A 08  ......VTPSp{zl..
    29D0: 00 0A 03 00 48 5A 50 53 A0 0B 92 93 6D 00 70 6D  ....HZPS....m.pm
    29E0: 4F 46 53 54 8A 83 88 54 45 4D 50 00 00 00 44 57  OFST...TEMP...DW
    29F0: 30 30 8A 83 88 54 45 4D 50 00 00 0A 04 44 57 30  00...TEMP....DW0
    2A00: 31 8A 83 88 54 45 4D 50 00 00 0A 08 44 57 30 32  1...TEMP....DW02
    2A10: 8A 83 88 54 45 4D 50 00 00 0A 0C 44 57 30 33 8A  ...TEMP....DW03.
    2A20: 83 88 54 45 4D 50 00 00 0A 10 44 57 30 34 4D 34  ..TEMP....DW04M4
    2A30: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D  60.  KER-ASL-Cpm
    2A40: 47 65 6E 65 72 61 74 65 50 4C 44 20 28 29 20 52  GeneratePLD () R
    2A50: 65 74 75 72 6E 20 30 78 25 58 2C 20 30 78 25 58  eturn 0x%X, 0x%X
    2A60: 2C 20 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78  , 0x%X, 0x%X, 0x
    2A70: 25 58 0A 00 44 57 30 30 44 57 30 31 44 57 30 32  %X..DW00DW01DW02
    2A80: 44 57 30 33 44 57 30 34 00 A4 54 45 4D 50 14 33  DW03DW04..TEMP.3
    2A90: 4D 36 34 33 09 99 68 60 70 00 61 A0 1A 92 93 60  M643..h`p.a....`
    2AA0: 00 A2 14 90 95 61 0A 20 93 7B 60 01 00 00 7A 60  .....a. .{`...z`
    2AB0: 01 60 72 61 01 61 A0 09 92 95 61 0A 20 70 00 61  .`ra.a....a. p.a
    2AC0: A4 61 14 49 46 4D 50 54 53 01 4D 34 36 30 0D 20  .a.IFMPTS.M460. 
    2AD0: 20 4B 45 52 2D 41 53 4C 2D 4D 50 54 53 20 28 25   KER-ASL-MPTS (%
    2AE0: 64 29 0A 00 68 00 00 00 00 00 4D 30 30 30 0B E7  d)..h.....M000..
    2AF0: 0D 4D 36 34 34 0C 00 02 D8 FE 0A 04 0A 20 4D 36  .M644........ M6
    2B00: 34 34 0C 40 02 D8 FE 0A 04 0A 40 70 4D 30 34 39  44.@......@pM049
    2B10: 4D 31 32 38 0A 67 60 A0 4F 15 93 7B 60 0A 03 00  M128.g`.O..{`...
    2B20: 0A 03 A0 4E 0E 92 95 4D 30 38 35 0A 08 A0 4F 06  ...N...M085...O.
    2B30: 5B 12 5C 2F 05 5F 53 42 5F 50 43 58 58 47 50 58  [.\/._SB_PCXXGPX
    2B40: 58 53 41 58 58 54 50 54 53 00 4D 34 36 30 0D 20  XSAXXTPTS.M460. 
    2B50: 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 20     KER-ASL-Call 
    2B60: 5C 5F 53 42 2E 50 43 58 58 2E 47 50 58 58 2E 53  \_SB.PCXX.GPXX.S
    2B70: 41 58 58 2E 54 50 54 53 20 28 25 64 29 0A 00 68  AXX.TPTS (%d)..h
    2B80: 00 00 00 00 00 5C 2F 05 5F 53 42 5F 50 43 58 58  .....\/._SB_PCXX
    2B90: 47 50 58 58 53 41 58 58 54 50 54 53 68 A0 43 07  GPXXSAXXTPTSh.C.
    2BA0: 5B 12 5C 2F 05 5F 53 42 5F 50 43 49 30 50 54 42  [.\/._SB_PCI0PTB
    2BB0: 52 50 54 53 54 54 50 54 53 00 4D 34 36 30 0D 20  RPTSTTPTS.M460. 
    2BC0: 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 20     KER-ASL-Call 
    2BD0: 5A 45 52 4F 5F 50 4F 57 52 5F 4F 44 44 5F 53 41  ZERO_POWR_ODD_SA
    2BE0: 54 41 5F 50 41 54 48 2E 54 50 54 53 20 28 25 64  TA_PATH.TPTS (%d
    2BF0: 29 0A 00 68 00 00 00 00 00 5C 2F 05 5F 53 42 5F  )..h.....\/._SB_
    2C00: 50 43 49 30 50 54 42 52 50 54 53 54 54 50 54 53  PCI0PTBRPTSTTPTS
    2C10: 68 A1 45 06 A0 42 06 5B 12 5C 2F 04 5F 53 42 5F  h.E..B.[.\/._SB_
    2C20: 50 43 58 58 53 41 58 58 54 50 54 53 00 4D 34 36  PCXXSAXXTPTS.M46
    2C30: 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61  0.    KER-ASL-Ca
    2C40: 6C 6C 20 5C 5F 53 42 2E 50 43 58 58 2E 53 41 58  ll \_SB.PCXX.SAX
    2C50: 58 2E 54 50 54 53 20 28 25 64 29 0A 00 68 00 00  X.TPTS (%d)..h..
    2C60: 00 00 00 5C 2F 04 5F 53 42 5F 50 43 58 58 53 41  ...\/._SB_PCXXSA
    2C70: 58 58 54 50 54 53 68 A0 43 06 92 93 4D 32 32 36  XXTPTSh.C...M226
    2C80: 00 A0 49 05 5B 12 5C 2E 5F 53 42 5F 4D 32 36 33  ..I.[.\._SB_M263
    2C90: 00 4D 34 36 30 0D 20 20 20 20 4B 45 52 2D 41 53  .M460.    KER-AS
    2CA0: 4C 2D 43 61 6C 6C 20 5C 5F 53 42 2E 43 70 6D 4F  L-Call \_SB.CpmO
    2CB0: 74 68 65 72 48 6F 74 70 6C 75 67 43 61 72 64 5F  therHotplugCard_
    2CC0: 50 54 53 20 28 25 64 29 0A 00 68 00 00 00 00 00  PTS (%d)..h.....
    2CD0: 5C 2E 5F 53 42 5F 4D 32 36 33 68 A0 44 07 92 93  \._SB_M263h.D...
    2CE0: 4D 33 33 31 00 70 4D 30 34 39 4D 33 33 31 0A 10  M331.pM049M331..
    2CF0: 60 70 4D 30 34 39 4D 33 33 31 0A 21 61 A0 42 05  `pM049M331.!a.B.
    2D00: 90 92 93 60 00 92 93 61 00 A0 46 04 5B 12 5C 2E  ...`...a..F.[.\.
    2D10: 5F 53 42 5F 49 50 54 53 00 4D 34 36 30 0D 20 20  _SB_IPTS.M460.  
    2D20: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C    KER-ASL-Call \
    2D30: 5F 53 42 2E 49 50 54 53 20 28 25 64 29 0A 00 68  _SB.IPTS (%d)..h
    2D40: 00 00 00 00 00 5C 2E 5F 53 42 5F 49 50 54 53 68  .....\._SB_IPTSh
    2D50: A0 43 06 92 93 4D 36 32 30 00 70 4D 30 34 39 4D  .C...M620.pM049M
    2D60: 36 32 30 0A 10 60 A0 4D 04 92 93 60 00 A0 46 04  620..`.M...`..F.
    2D70: 5B 12 5C 2E 5F 53 42 5F 42 50 54 53 00 4D 34 36  [.\._SB_BPTS.M46
    2D80: 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61  0.    KER-ASL-Ca
    2D90: 6C 6C 20 5C 5F 53 42 2E 42 50 54 53 20 28 25 64  ll \_SB.BPTS (%d
    2DA0: 29 0A 00 68 00 00 00 00 00 5C 2E 5F 53 42 5F 42  )..h.....\._SB_B
    2DB0: 50 54 53 68 A0 49 12 92 93 4D 34 46 30 00 A0 47  PTSh.I...M4F0..G
    2DC0: 04 5B 12 5C 2E 5F 47 50 45 50 54 53 30 00 4D 34  .[.\._GPEPTS0.M4
    2DD0: 36 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43  60.    KER-ASL-C
    2DE0: 61 6C 6C 20 5C 5F 47 50 45 2E 50 54 53 30 20 28  all \_GPE.PTS0 (
    2DF0: 25 64 29 0A 00 68 00 00 00 00 00 5C 2E 5F 47 50  %d)..h.....\._GP
    2E00: 45 50 54 53 30 68 A0 47 04 5B 12 5C 2E 5F 47 50  EPTS0h.G.[.\._GP
    2E10: 45 50 54 53 31 00 4D 34 36 30 0D 20 20 20 20 4B  EPTS1.M460.    K
    2E20: 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 47 50  ER-ASL-Call \_GP
    2E30: 45 2E 50 54 53 31 20 28 25 64 29 0A 00 68 00 00  E.PTS1 (%d)..h..
    2E40: 00 00 00 5C 2E 5F 47 50 45 50 54 53 31 68 A0 47  ...\._GPEPTS1h.G
    2E50: 04 5B 12 5C 2E 5F 47 50 45 50 54 53 32 00 4D 34  .[.\._GPEPTS2.M4
    2E60: 36 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43  60.    KER-ASL-C
    2E70: 61 6C 6C 20 5C 5F 47 50 45 2E 50 54 53 32 20 28  all \_GPE.PTS2 (
    2E80: 25 64 29 0A 00 68 00 00 00 00 00 5C 2E 5F 47 50  %d)..h.....\._GP
    2E90: 45 50 54 53 32 68 A0 47 04 5B 12 5C 2E 5F 47 50  EPTS2h.G.[.\._GP
    2EA0: 45 50 54 53 33 00 4D 34 36 30 0D 20 20 20 20 4B  EPTS3.M460.    K
    2EB0: 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 47 50  ER-ASL-Call \_GP
    2EC0: 45 2E 50 54 53 33 20 28 25 64 29 0A 00 68 00 00  E.PTS3 (%d)..h..
    2ED0: 00 00 00 5C 2E 5F 47 50 45 50 54 53 33 68 A0 46  ...\._GPEPTS3h.F
    2EE0: 04 5B 12 5C 2E 5F 53 42 5F 4F 50 54 53 00 4D 34  .[.\._SB_OPTS.M4
    2EF0: 36 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43  60.    KER-ASL-C
    2F00: 61 6C 6C 20 5C 5F 53 42 2E 4F 50 54 53 20 28 25  all \_SB.OPTS (%
    2F10: 64 29 0A 00 68 00 00 00 00 00 5C 2E 5F 53 42 5F  d)..h.....\._SB_
    2F20: 4F 50 54 53 68 4D 30 30 30 0B E8 0D 14 4D 4C 4D  OPTShM000....MLM
    2F30: 57 41 4B 01 4D 34 36 30 0D 20 20 4B 45 52 2D 41  WAK.M460.  KER-A
    2F40: 53 4C 2D 4D 57 41 4B 20 28 25 64 29 0A 00 68 00  SL-MWAK (%d)..h.
    2F50: 00 00 00 00 4D 30 30 30 0B E9 0D 4D 36 34 34 0C  ....M000...M644.
    2F60: 00 02 D8 FE 0A 04 0A 20 4D 36 34 34 0C 40 02 D8  ....... M644.@..
    2F70: FE 0A 04 0A 40 70 4D 30 34 39 4D 31 32 38 0A 67  ....@pM049M128.g
    2F80: 60 A0 4F 15 93 7B 60 0A 03 00 0A 03 A0 4E 0E 92  `.O..{`......N..
    2F90: 95 4D 30 38 35 0A 08 A0 4F 06 5B 12 5C 2F 05 5F  .M085...O.[.\/._
    2FA0: 53 42 5F 50 43 58 58 47 50 58 58 53 41 58 58 54  SB_PCXXGPXXSAXXT
    2FB0: 57 41 4B 00 4D 34 36 30 0D 20 20 20 20 4B 45 52  WAK.M460.    KER
    2FC0: 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 53 42 2E 50  -ASL-Call \_SB.P
    2FD0: 43 58 58 2E 47 50 58 58 2E 53 41 58 58 2E 54 57  CXX.GPXX.SAXX.TW
    2FE0: 41 4B 20 28 25 64 29 0A 00 68 00 00 00 00 00 5C  AK (%d)..h.....\
    2FF0: 2F 05 5F 53 42 5F 50 43 58 58 47 50 58 58 53 41  /._SB_PCXXGPXXSA
    3000: 58 58 54 57 41 4B 68 A0 43 07 5B 12 5C 2F 05 5F  XXTWAKh.C.[.\/._
    3010: 53 42 5F 50 43 49 30 50 54 42 52 50 54 53 54 54  SB_PCI0PTBRPTSTT
    3020: 57 41 4B 00 4D 34 36 30 0D 20 20 20 20 4B 45 52  WAK.M460.    KER
    3030: 2D 41 53 4C 2D 43 61 6C 6C 20 5A 45 52 4F 5F 50  -ASL-Call ZERO_P
    3040: 4F 57 52 5F 4F 44 44 5F 53 41 54 41 5F 50 41 54  OWR_ODD_SATA_PAT
    3050: 48 2E 54 57 41 4B 20 28 25 64 29 0A 00 68 00 00  H.TWAK (%d)..h..
    3060: 00 00 00 5C 2F 05 5F 53 42 5F 50 43 49 30 50 54  ...\/._SB_PCI0PT
    3070: 42 52 50 54 53 54 54 57 41 4B 68 A1 45 06 A0 42  BRPTSTTWAKh.E..B
    3080: 06 5B 12 5C 2F 04 5F 53 42 5F 50 43 58 58 53 41  .[.\/._SB_PCXXSA
    3090: 58 58 54 57 41 4B 00 4D 34 36 30 0D 20 20 20 20  XXTWAK.M460.    
    30A0: 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 53  KER-ASL-Call \_S
    30B0: 42 2E 50 43 58 58 2E 53 41 58 58 2E 54 57 41 4B  B.PCXX.SAXX.TWAK
    30C0: 20 28 25 64 29 0A 00 68 00 00 00 00 00 5C 2F 04   (%d)..h.....\/.
    30D0: 5F 53 42 5F 50 43 58 58 53 41 58 58 54 57 41 4B  _SB_PCXXSAXXTWAK
    30E0: 68 A0 43 06 92 93 4D 32 32 36 00 A0 49 05 5B 12  h.C...M226..I.[.
    30F0: 5C 2E 5F 53 42 5F 4D 32 36 34 00 4D 34 36 30 0D  \._SB_M264.M460.
    3100: 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C      KER-ASL-Call
    3110: 20 5C 5F 53 42 2E 43 70 6D 4F 74 68 65 72 48 6F   \_SB.CpmOtherHo
    3120: 74 70 6C 75 67 43 61 72 64 5F 57 41 4B 20 28 25  tplugCard_WAK (%
    3130: 64 29 0A 00 68 00 00 00 00 00 5C 2E 5F 53 42 5F  d)..h.....\._SB_
    3140: 4D 32 36 34 68 A0 43 06 92 93 4D 32 38 30 00 A0  M264h.C...M280..
    3150: 49 05 5B 12 5C 2E 5F 53 42 5F 4D 32 38 34 00 4D  I.[.\._SB_M284.M
    3160: 34 36 30 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D  460.    KER-ASL-
    3170: 43 61 6C 6C 20 5C 5F 53 42 2E 43 70 6D 4C 6F 77  Call \_SB.CpmLow
    3180: 50 6F 77 65 72 45 74 68 65 72 6E 65 74 5F 57 41  PowerEthernet_WA
    3190: 4B 20 28 25 64 29 0A 00 68 00 00 00 00 00 5C 2E  K (%d)..h.....\.
    31A0: 5F 53 42 5F 4D 32 38 34 68 A0 44 07 92 93 4D 33  _SB_M284h.D...M3
    31B0: 33 31 00 70 4D 30 34 39 4D 33 33 31 0A 10 60 70  31.pM049M331..`p
    31C0: 4D 30 34 39 4D 33 33 31 0A 21 61 A0 42 05 90 92  M049M331.!a.B...
    31D0: 93 60 00 92 93 61 00 A0 46 04 5B 12 5C 2E 5F 53  .`...a..F.[.\._S
    31E0: 42 5F 49 57 41 4B 00 4D 34 36 30 0D 20 20 20 20  B_IWAK.M460.    
    31F0: 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 53  KER-ASL-Call \_S
    3200: 42 2E 49 57 41 4B 20 28 25 64 29 0A 00 68 00 00  B.IWAK (%d)..h..
    3210: 00 00 00 5C 2E 5F 53 42 5F 49 57 41 4B 68 A0 43  ...\._SB_IWAKh.C
    3220: 06 92 93 4D 36 32 30 00 70 4D 30 34 39 4D 36 32  ...M620.pM049M62
    3230: 30 0A 10 60 A0 4D 04 92 93 60 00 A0 46 04 5B 12  0..`.M...`..F.[.
    3240: 5C 2E 5F 53 42 5F 42 57 41 4B 00 4D 34 36 30 0D  \._SB_BWAK.M460.
    3250: 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C      KER-ASL-Call
    3260: 20 5C 5F 53 42 2E 42 57 41 4B 20 28 25 64 29 0A   \_SB.BWAK (%d).
    3270: 00 68 00 00 00 00 00 5C 2E 5F 53 42 5F 42 57 41  .h.....\._SB_BWA
    3280: 4B 68 A0 49 12 92 93 4D 34 46 30 00 A0 47 04 5B  Kh.I...M4F0..G.[
    3290: 12 5C 2E 5F 47 50 45 57 41 4B 30 00 4D 34 36 30  .\._GPEWAK0.M460
    32A0: 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  .    KER-ASL-Cal
    32B0: 6C 20 5C 5F 47 50 45 2E 57 41 4B 30 20 28 25 64  l \_GPE.WAK0 (%d
    32C0: 29 0A 00 68 00 00 00 00 00 5C 2E 5F 47 50 45 57  )..h.....\._GPEW
    32D0: 41 4B 30 68 A0 47 04 5B 12 5C 2E 5F 47 50 45 57  AK0h.G.[.\._GPEW
    32E0: 41 4B 31 00 4D 34 36 30 0D 20 20 20 20 4B 45 52  AK1.M460.    KER
    32F0: 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 47 50 45 2E  -ASL-Call \_GPE.
    3300: 57 41 4B 31 20 28 25 64 29 0A 00 68 00 00 00 00  WAK1 (%d)..h....
    3310: 00 5C 2E 5F 47 50 45 57 41 4B 31 68 A0 47 04 5B  .\._GPEWAK1h.G.[
    3320: 12 5C 2E 5F 47 50 45 57 41 4B 32 00 4D 34 36 30  .\._GPEWAK2.M460
    3330: 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  .    KER-ASL-Cal
    3340: 6C 20 5C 5F 47 50 45 2E 57 41 4B 32 20 28 25 64  l \_GPE.WAK2 (%d
    3350: 29 0A 00 68 00 00 00 00 00 5C 2E 5F 47 50 45 57  )..h.....\._GPEW
    3360: 41 4B 32 68 A0 47 04 5B 12 5C 2E 5F 47 50 45 57  AK2h.G.[.\._GPEW
    3370: 41 4B 33 00 4D 34 36 30 0D 20 20 20 20 4B 45 52  AK3.M460.    KER
    3380: 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 47 50 45 2E  -ASL-Call \_GPE.
    3390: 57 41 4B 33 20 28 25 64 29 0A 00 68 00 00 00 00  WAK3 (%d)..h....
    33A0: 00 5C 2E 5F 47 50 45 57 41 4B 33 68 A0 46 04 5B  .\._GPEWAK3h.F.[
    33B0: 12 5C 2E 5F 53 42 5F 4F 57 41 4B 00 4D 34 36 30  .\._SB_OWAK.M460
    33C0: 0D 20 20 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  .    KER-ASL-Cal
    33D0: 6C 20 5C 5F 53 42 2E 4F 57 41 4B 20 28 25 64 29  l \_SB.OWAK (%d)
    33E0: 0A 00 68 00 00 00 00 00 5C 2E 5F 53 42 5F 4F 57  ..h.....\._SB_OW
    33F0: 41 4B 68 4D 30 30 30 0B EA 0D 14 12 4D 30 31 39  AKhM000.....M019
    3400: 0C A4 4D 30 31 37 68 69 6A 6B 00 0A 20 14 12 4D  ..M017hijk.. ..M
    3410: 30 32 30 0D 4D 30 31 38 68 69 6A 6B 00 0A 20 6C  020.M018hijk.. l
    3420: 14 47 0A 4D 30 32 31 0C 72 4D 30 38 33 79 68 0A  .G.M021.rM083yh.
    3430: 14 00 60 72 60 79 69 0A 0F 00 60 72 60 79 6A 0A  ..`r`yi...`r`yj.
    3440: 0C 00 60 72 0A E0 60 60 5B 80 56 41 52 4D 00 60  ..`r..``[.VARM.`
    3450: 0A 08 5B 81 0D 56 41 52 4D 03 00 00 56 41 52 31  ..[..VARM...VAR1
    3460: 20 5B 87 12 56 41 52 4D 56 41 52 31 6B 03 00 20   [..VARMVAR1k.. 
    3470: 56 41 52 32 20 70 56 41 52 32 60 4D 34 36 30 0D  VAR2 pVAR2`M460.
    3480: 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 52 65 61    KER-ASL-CpmRea
    3490: 64 50 63 69 65 52 65 67 69 73 74 65 72 20 20 28  dPcieRegister  (
    34A0: 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25 58  0x%X, 0x%X, 0x%X
    34B0: 2C 20 30 78 25 58 29 20 3D 20 30 78 25 58 0A 00  , 0x%X) = 0x%X..
    34C0: 68 69 6A 6B 60 00 A4 60 14 44 0A 4D 30 32 32 0D  hijk`..`.D.M022.
    34D0: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    34E0: 70 6D 57 72 69 74 65 50 63 69 65 52 65 67 69 73  pmWritePcieRegis
    34F0: 74 65 72 20 28 30 78 25 58 2C 20 30 78 25 58 2C  ter (0x%X, 0x%X,
    3500: 20 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25   0x%X, 0x%X, 0x%
    3510: 58 29 0A 00 68 69 6A 6B 6C 00 72 4D 30 38 33 79  X)..hijkl.rM083y
    3520: 68 0A 14 00 60 72 60 79 69 0A 0F 00 60 72 60 79  h...`r`yi...`r`y
    3530: 6A 0A 0C 00 60 72 0A E0 60 60 5B 80 56 41 52 4D  j...`r..``[.VARM
    3540: 00 60 0A 08 5B 81 0D 56 41 52 4D 03 00 00 56 41  .`..[..VARM...VA
    3550: 52 31 20 5B 87 12 56 41 52 4D 56 41 52 31 6B 03  R1 [..VARMVAR1k.
    3560: 00 20 56 41 52 32 20 70 6C 56 41 52 32 14 20 4D  . VAR2 plVAR2. M
    3570: 30 32 33 0B 4D 30 31 38 68 69 6A 0A 70 0A 03 01  023.M018hij.p...
    3580: 00 4D 30 31 38 68 69 6A 0A 70 0A 13 01 01 14 22  .M018hij.p....."
    3590: 4D 30 32 34 0B 70 4D 30 31 39 68 69 6A 0B 28 01  M024.pM019hij.(.
    35A0: 60 A0 0B 7B 60 0C 00 00 02 00 00 A4 FF A1 03 A4  `..{`...........
    35B0: 00 14 3B 4D 30 32 36 0B 70 4D 30 32 31 68 69 6A  ..;M026.pM021hij
    35C0: 0A A2 60 7B 60 0E F8 FF FF FF FF FF FF FF 60 7A  ..`{`.........`z
    35D0: 60 0A 04 61 7B 61 0A 07 61 7D 60 61 60 7D 60 0B  `..a{a..a}`a`}`.
    35E0: 00 01 60 4D 30 32 32 68 69 6A 0A A2 60 14 4F 06  ..`M022hij..`.O.
    35F0: 4D 30 32 35 0C 4D 34 32 39 68 69 6A 0A 68 0A 05  M025.M429hij.h..
    3600: 01 00 A0 0F 6B 4D 34 32 39 68 69 6A 0A 88 00 0A  ....kM429hij....
    3610: 04 6B 4D 34 32 39 68 69 6A 0A 68 0A 05 01 01 70  .kM429hij.h....p
    3620: 0A 64 61 70 01 62 A2 1F 90 61 62 5B 22 01 70 4D  .dap.b...ab[".pM
    3630: 34 33 30 68 69 6A 63 A0 09 7B 63 0B 00 08 00 76  430hijc..{c....v
    3640: 61 A1 04 70 00 62 4D 34 32 39 68 69 6A 0A 68 0A  a..p.bM429hij.h.
    3650: 05 01 00 A0 05 92 62 A4 FF A1 03 A4 00 14 17 4D  ......b........M
    3660: 34 33 30 0B 70 4D 30 31 37 68 69 6A 0A 68 0A 10  430.pM017hij.h..
    3670: 0A 10 60 A4 60 14 3F 4D 30 31 37 0E 70 4D 36 34  ..`.`.?M017.pM64
    3680: 35 68 69 6A 60 A0 21 93 60 00 70 0C FF FF FF 7F  5hij`.!.`.p.....
    3690: 63 7D 63 0C 00 00 00 80 63 7B 7A 63 6C 00 7A 63  c}c.....c{zcl.zc
    36A0: 74 0A 20 6D 00 00 61 A1 0B 70 4D 30 31 33 60 6B  t. m..a..pM013`k
    36B0: 6C 6D 61 A4 61 14 3B 4D 30 31 38 0F 70 4D 36 34  lma.a.;M018.pM64
    36C0: 35 68 69 6A 60 A0 2B 92 93 60 00 70 0C FF FF FF  5hij`.+..`.p....
    36D0: 7F 63 7D 63 0C 00 00 00 80 63 A0 16 92 93 4D 30  .c}c.....c....M0
    36E0: 31 33 60 00 00 0A 20 63 4D 30 31 34 60 6B 6C 6D  13`... cM014`klm
    36F0: 6E 14 34 4D 34 32 38 0E 70 4D 36 34 35 68 69 6A  n.4M428.pM645hij
    3700: 60 A0 16 93 60 00 70 0A FF 63 7B 7A 63 6C 00 7A  `...`.p..c{zcl.z
    3710: 63 74 0A 08 6D 00 00 61 A1 0B 70 4D 30 31 31 60  ct..m..a..pM011`
    3720: 6B 6C 6D 61 A4 61 14 3B 4D 34 32 39 0F 70 4D 36  klma.a.;M429.pM6
    3730: 34 35 68 69 6A 60 A0 2B 92 93 60 00 70 0C FF FF  45hij`.+..`.p...
    3740: FF 7F 63 7D 63 0C 00 00 00 80 63 A0 16 92 93 4D  ..c}c.....c....M
    3750: 30 31 33 60 00 00 0A 20 63 4D 30 31 32 60 6B 6C  013`... cM012`kl
    3760: 6D 6E 14 4E 04 4D 32 36 35 0B 70 00 60 70 4D 36  mn.N.M265.p.`pM6
    3770: 34 35 68 69 6A 61 70 4D 36 34 36 61 0A 10 62 A0  45hijapM646a..b.
    3780: 2F 92 93 62 00 70 4D 30 31 33 61 72 62 0A 0C 00  /..b.pM013arb...
    3790: 0A 12 01 63 70 4D 30 31 33 61 72 62 0A 10 00 0A  ...cpM013arb....
    37A0: 08 01 64 A0 0B 90 93 63 01 93 64 01 70 01 60 A4  ..d....c..d.p.`.
    37B0: 60 14 33 4D 30 33 33 0B 70 00 60 70 4D 36 34 35  `.3M033.p.`pM645
    37C0: 68 69 6A 61 70 4D 36 34 36 61 0A 10 62 A0 15 92  hijapM646a..b...
    37D0: 93 62 00 70 4D 30 31 33 61 72 62 0A 0C 00 0A 0A  .b.pM013arb.....
    37E0: 0A 02 60 A4 60 14 42 07 4D 30 32 37 0B 70 00 60  ..`.`.B.M027.p.`
    37F0: 70 4D 36 34 35 68 69 6A 61 70 4D 36 34 36 61 0A  pM645hijapM646a.
    3800: 10 62 A0 14 92 93 62 00 70 4D 30 31 33 61 72 62  .b....b.pM013arb
    3810: 0A 10 00 00 0A 02 60 4D 34 36 30 0D 20 20 4B 45  ......`M460.  KE
    3820: 52 2D 41 53 4C 2D 43 70 6D 47 65 74 50 63 69 65  R-ASL-CpmGetPcie
    3830: 41 73 70 6D 20 28 30 78 25 58 2C 20 30 78 25 58  Aspm (0x%X, 0x%X
    3840: 2C 20 30 78 25 58 29 20 3D 20 30 78 25 58 0A 00  , 0x%X) = 0x%X..
    3850: 68 69 6A 60 00 00 A4 60 14 4F 06 4D 30 32 38 0C  hij`...`.O.M028.
    3860: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    3870: 70 6D 53 65 74 50 63 69 65 41 73 70 6D 20 28 30  pmSetPcieAspm (0
    3880: 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25 58 2C  x%X, 0x%X, 0x%X,
    3890: 20 30 78 25 58 29 0A 00 68 69 6A 6B 00 00 70 4D   0x%X)..hijk..pM
    38A0: 36 34 35 68 69 6A 61 70 4D 36 34 36 61 0A 10 62  645hijapM646a..b
    38B0: A0 17 92 93 62 00 4D 30 31 34 61 72 62 0A 10 00  ....b.M014arb...
    38C0: 00 0A 02 7B 6B 0A 03 00 14 4D 14 4D 31 31 34 0C  ...{k....M.M114.
    38D0: 70 00 67 A0 48 0E 92 4D 30 30 31 68 69 08 4D 31  p.g.H..M001hi.M1
    38E0: 31 35 11 03 0A 05 8B 4D 31 31 35 00 4D 31 31 36  15.....M115.M116
    38F0: 5B 13 4D 31 31 35 0A 10 0A 03 4D 31 31 37 5B 13  [.M115....M117[.
    3900: 4D 31 31 35 0A 13 0A 05 4D 31 31 38 8C 4D 31 31  M115....M118.M11
    3910: 35 0A 03 4D 31 31 39 8C 4D 31 31 35 0A 04 4D 31  5..M119.M115..M1
    3920: 32 30 70 0A 05 4D 31 31 36 70 00 4D 31 31 39 70  20p..M116p.M119p
    3930: 68 4D 31 31 38 70 69 4D 31 31 37 A0 20 93 6A 00  hM118piM117. .j.
    3940: A0 1B 92 93 6B 01 70 00 4D 31 32 30 5C 2E 5F 53  ....k.p.M120\._S
    3950: 42 5F 41 4C 49 42 0A 06 4D 31 31 35 A1 4F 05 A0  B_ALIB..M115.O..
    3960: 1B 92 93 6B 01 70 01 4D 31 32 30 5C 2E 5F 53 42  ...k.p.M120\._SB
    3970: 5F 41 4C 49 42 0A 06 4D 31 31 35 70 4D 30 31 37  _ALIB..M115pM017
    3980: 00 68 69 0A 19 00 0A 08 60 A0 32 90 92 93 60 00  .hi.....`.2...`.
    3990: 92 93 60 0A FF 70 4D 30 31 39 60 00 00 00 61 70  ..`..pM019`...ap
    39A0: 0C FF FF FF 7F 62 7D 62 0C 00 00 00 80 62 A0 0D  .....b}b.....b..
    39B0: 90 92 93 61 00 92 93 61 62 70 01 67 A1 47 05 A0  ...a...abp.g.G..
    39C0: 0A 93 6A 00 4D 30 30 32 01 69 A1 49 04 4D 30 30  ..j.M002.i.I.M00
    39D0: 32 00 69 70 4D 30 31 37 00 68 69 0A 19 00 0A 08  2.ipM017.hi.....
    39E0: 60 A0 32 90 92 93 60 00 92 93 60 0A FF 70 4D 30  `.2...`...`..pM0
    39F0: 31 39 60 00 00 00 61 70 0C FF FF FF 7F 62 7D 62  19`...ap.....b}b
    3A00: 0C 00 00 00 80 62 A0 0D 90 92 93 61 00 92 93 61  .....b.....a...a
    3A10: 62 70 01 67 A4 67 14 45 0B 4D 32 34 38 09 A0 2B  bp.g.g.E.M248..+
    3A20: 93 4D 30 38 35 0A 08 A0 12 93 68 00 A4 4D 30 31  .M085.....h..M01
    3A30: 37 00 0A 07 01 0A 19 00 0A 08 A1 0F A4 4D 30 31  7............M01
    3A40: 37 00 0A 08 01 0A 19 00 0A 08 A1 41 08 A0 4A 04  7..........A..J.
    3A50: 92 95 4D 30 38 35 0A 0B A0 1A 92 95 4D 30 38 35  ..M085......M085
    3A60: 0A 0D A4 4D 30 31 37 00 0A 08 72 68 01 00 0A 19  ...M017...rh....
    3A70: 00 0A 08 A1 24 A0 12 93 68 00 A4 4D 30 31 37 00  ....$...h..M017.
    3A80: 0A 07 01 0A 19 00 0A 08 A1 0F A4 4D 30 31 37 00  ...........M017.
    3A90: 0A 08 68 0A 19 00 0A 08 A1 33 A0 2D 92 95 4D 30  ..h......3.-..M0
    3AA0: 38 35 0A 09 A0 12 93 68 00 A4 4D 30 31 37 00 0A  85.....h..M017..
    3AB0: 08 01 0A 19 00 0A 08 A1 10 A4 4D 30 31 37 00 0A  ..........M017..
    3AC0: 08 0A 02 0A 19 00 0A 08 A1 03 A4 00 14 49 15 4D  .............I.M
    3AD0: 34 30 31 0B 7B 4D 34 33 30 68 69 6A 0A 0F 60 A0  401.{M430hij..`.
    3AE0: 0C 91 93 60 0A 0F 93 60 00 A4 0A FF A0 24 90 92  ...`...`.....$..
    3AF0: 95 4D 30 38 35 0A 0B 92 94 4D 30 38 35 0A 0C A0  .M085....M085...
    3B00: 0B 92 94 68 0A 03 74 0A 06 68 63 A1 05 70 0A 06  ...h..t..hc..p..
    3B10: 63 A1 05 70 0A 03 63 72 0C 00 10 00 14 79 63 0A  c..p..cr.....yc.
    3B20: 14 00 63 7B 69 0A 1F 60 7D 79 60 0A 03 00 7B 6A  ..c{i..`}y`...{j
    3B30: 0A 07 00 60 70 00 61 A0 16 90 92 95 4D 30 38 35  ...`p.a.....M085
    3B40: 0A 09 92 94 4D 30 38 35 0A 0A 70 0A 09 62 A1 4C  ....M085..p..b.L
    3B50: 09 A0 16 90 92 95 4D 30 38 35 0A 0B 92 94 4D 30  ......M085....M0
    3B60: 38 35 0A 0C 70 0A 16 62 A1 42 08 A0 0C 93 4D 30  85..p..b.B....M0
    3B70: 38 35 0A 0D 70 0A 0D 62 A1 42 07 A0 0C 93 4D 30  85..p..b.B....M0
    3B80: 38 35 0A 0E 70 0A 0A 62 A1 42 06 A0 0C 93 4D 30  85..p..b.B....M0
    3B90: 38 35 0A 0F 70 0A 10 62 A1 42 05 A0 0C 93 4D 30  85..p..b.B....M0
    3BA0: 38 35 0A 10 70 0A 15 62 A1 42 04 A0 0C 93 4D 30  85..p..b.B....M0
    3BB0: 38 35 0A 12 70 0A 14 62 A1 32 A0 0C 93 4D 30 38  85..p..b.2...M08
    3BC0: 35 0A 13 70 0A 0D 62 A1 23 A0 0C 93 4D 30 38 35  5..p..b.#...M085
    3BD0: 0A 14 70 0A 12 62 A1 14 A0 0C 93 4D 30 38 35 0A  ..p..b.....M085.
    3BE0: 15 70 0A 12 62 A1 05 70 0A 12 62 70 4D 32 34 39  .p..b..p..bpM249
    3BF0: 00 00 00 72 77 61 0A 04 00 63 00 64 A2 1C 90 95  ...rwa...c.d....
    3C00: 61 62 92 93 64 60 75 61 70 4D 32 34 39 00 00 00  ab..d`uapM249...
    3C10: 72 77 61 0A 04 00 63 00 64 A0 07 92 94 61 62 A4  rwa...c.d....ab.
    3C20: 61 A1 04 A4 0A FF 14 45 1C 4D 34 37 31 0B A0 24  a......E.M471..$
    3C30: 90 92 95 4D 30 38 35 0A 0B 92 94 4D 30 38 35 0A  ...M085....M085.
    3C40: 0C A0 0B 92 94 68 0A 03 74 0A 04 68 65 A1 05 70  .....h..t..he..p
    3C50: 0A 04 65 A1 05 72 68 01 65 99 69 64 A0 22 90 92  ..e..rh.e.id."..
    3C60: 95 4D 30 38 35 0A 0D 92 94 4D 30 38 35 0A 0E A0  .M085....M085...
    3C70: 0F 92 95 64 0A 03 74 64 0A 03 64 72 65 01 65 A1  ...d..td..dre.e.
    3C80: 44 14 A0 3D 93 4D 30 38 35 0A 0F A0 10 92 95 64  D..=.M085......d
    3C90: 0A 0C 74 64 0A 0C 64 72 65 0A 03 65 A1 23 A0 0F  ..td..dre..e.#..
    3CA0: 93 64 0A 0B 74 64 0A 0B 64 72 65 0A 02 65 A1 11  .d..td..dre..e..
    3CB0: A0 0F 92 95 64 0A 05 74 64 0A 05 64 72 65 01 65  ....d..td..dre.e
    3CC0: A1 43 10 A0 3E 93 4D 30 38 35 0A 12 A0 10 92 95  .C..>.M085......
    3CD0: 64 0A 10 74 64 0A 10 64 72 65 0A 03 65 A1 24 A0  d..td..dre..e.$.
    3CE0: 10 92 95 64 0A 0C 74 64 0A 0C 64 72 65 0A 02 65  ...d..td..dre..e
    3CF0: A1 11 A0 0F 92 95 64 0A 06 74 64 0A 06 64 72 65  ......d..td..dre
    3D00: 01 65 A1 41 0C A0 18 93 4D 30 38 35 0A 10 A0 0F  .e.A....M085....
    3D10: 92 95 64 0A 09 74 64 0A 09 64 72 65 01 65 A1 45  ..d..td..dre.e.E
    3D20: 0A A0 18 93 4D 30 38 35 0A 13 A0 0F 92 95 64 0A  ....M085......d.
    3D30: 05 74 64 0A 05 64 72 65 01 65 A1 49 08 A0 2B 93  .td..dre.e.I..+.
    3D40: 4D 30 38 35 0A 14 A0 10 92 95 64 0A 09 74 64 0A  M085......d..td.
    3D50: 09 64 72 65 0A 02 65 A1 11 A0 0F 92 95 64 0A 03  .dre..e......d..
    3D60: 74 64 0A 03 64 72 65 01 65 A1 4A 05 A0 2B 93 4D  td..dre.e.J..+.M
    3D70: 30 38 35 0A 15 A0 10 92 95 64 0A 09 74 64 0A 09  085......d..td..
    3D80: 64 72 65 0A 02 65 A1 11 A0 0F 92 95 64 0A 03 74  dre..e......d..t
    3D90: 64 0A 03 64 72 65 01 65 A1 2B A0 29 92 95 64 0A  d..dre.e.+.)..d.
    3DA0: 08 74 64 0A 08 64 A0 17 90 92 95 4D 30 38 35 0A  .td..d.....M085.
    3DB0: 0B 92 94 4D 30 38 35 0A 0C 72 65 0A 04 65 A1 05  ...M085..re..e..
    3DC0: 72 65 01 65 72 0C 00 00 00 11 79 65 0A 14 00 66  re.er.....ye...f
    3DD0: 72 66 79 6A 0A 10 00 66 A0 11 91 93 6A 00 93 6A  rfyj...f....j..j
    3DE0: 0A 04 72 66 79 64 0A 0C 00 66 A4 66 14 47 1A 4D  ..rfyd...f.f.G.M
    3DF0: 34 30 32 0B 70 4D 34 30 31 68 69 6A 64 A0 46 19  402.pM401hijd.F.
    3E00: 92 93 64 0A FF A0 3F 90 92 95 4D 30 38 35 0A 08  ..d...?...M085..
    3E10: 92 94 4D 30 38 35 0A 0B 72 4D 34 37 31 68 64 0A  ..M085..rM471hd.
    3E20: 08 0B 88 01 67 70 4D 32 34 39 00 00 00 67 60 7B  ....gpM249...g`{
    3E30: 60 0C FF DF FF FF 60 4D 32 35 30 00 00 00 67 7D  `.....`M250...g}
    3E40: 60 0B 00 20 00 7B 4D 30 31 39 00 00 00 0A 84 0C  `.. .{M019......
    3E50: FF FC 00 FF 61 7D 79 69 0A 13 00 79 6A 0A 10 00  ....a}yi...yj...
    3E60: 62 7D 61 62 61 4D 30 32 30 00 00 00 0A 84 7D 61  b}abaM020.....}a
    3E70: 0B 00 01 00 4D 30 32 30 00 00 00 0A 84 7D 61 0B  ....M020.....}a.
    3E80: 00 03 00 A0 43 07 92 95 4D 30 38 35 0A 0C 70 4D  ....C...M085..pM
    3E90: 30 31 39 00 00 00 0A 84 63 70 0B EA 4E 65 70 4D  019.....cp..NepM
    3EA0: 34 35 33 66 70 00 4D 34 35 33 A2 46 04 90 94 65  453fp.M453.F...e
    3EB0: 00 92 93 7B 63 0B 00 04 00 0B 00 04 70 74 65 01  ...{c.......pte.
    3EC0: 00 65 5B 21 0A 63 A0 0F 93 7B 65 0B FF 03 00 00  .e[!.c...{e.....
    3ED0: 70 66 4D 34 35 33 70 4D 30 31 39 00 00 00 0A 84  pfM453pM019.....
    3EE0: 63 A0 0F 93 7B 65 0B FF 03 00 00 70 00 4D 34 35  c...{e.....p.M45
    3EF0: 33 70 66 4D 34 35 33 72 4D 34 37 31 68 64 0A 04  3pfM453rM471hd..
    3F00: 0B 94 02 66 70 4D 32 34 39 00 00 00 66 63 70 0B  ...fpM249...fcp.
    3F10: EA 4E 65 70 4D 34 35 33 64 70 00 4D 34 35 33 A2  .NepM453dp.M453.
    3F20: 43 04 90 94 65 00 92 93 7B 63 0A 3F 00 0A 1F 70  C...e...{c.?...p
    3F30: 74 65 01 00 65 5B 21 0A 63 A0 0F 93 7B 65 0B FF  te..e[!.c...{e..
    3F40: 03 00 00 70 64 4D 34 35 33 70 4D 32 34 39 00 00  ...pdM453pM249..
    3F50: 00 66 63 A0 0F 93 7B 65 0B FF 03 00 00 70 00 4D  .fc...{e.....p.M
    3F60: 34 35 33 70 64 4D 34 35 33 4D 30 32 30 00 00 00  453pdM453M020...
    3F70: 0A 84 7D 61 0B 00 01 00 A0 1B 90 92 95 4D 30 38  ..}a.........M08
    3F80: 35 0A 08 92 94 4D 30 38 35 0A 0B 4D 32 35 30 00  5....M085..M250.
    3F90: 00 00 67 60 14 4A 04 4D 34 30 33 0C 70 4D 34 30  ..g`.J.M403.pM40
    3FA0: 31 68 69 6A 64 A0 39 92 93 64 0A FF 72 4D 34 37  1hijd.9..d..rM47
    3FB0: 31 68 64 0A 04 0B 80 02 62 70 4D 32 34 39 00 00  1hd.....bpM249..
    3FC0: 00 62 60 7B 60 0C FF FF BF FF 60 70 6B 61 7D 60  .b`{`.....`pka}`
    3FD0: 79 61 0A 16 00 60 4D 32 35 30 00 00 00 62 60 14  ya...`M250...b`.
    3FE0: 49 13 4D 34 37 32 0C 70 4D 34 30 31 68 69 6A 64  I.M472.pM401hijd
    3FF0: A0 48 12 92 93 64 0A FF 72 4D 34 37 31 68 64 0A  .H...d..rM471hd.
    4000: 08 0B 28 04 67 A0 1E 90 92 95 4D 30 38 35 0A 0D  ..(.g.....M085..
    4010: 92 94 4D 30 38 35 0A 0E A0 0B 92 95 64 0A 03 74  ..M085......d..t
    4020: 64 0A 03 64 A1 48 0B A0 14 93 4D 30 38 35 0A 0F  d..d.H....M085..
    4030: A0 0B 92 95 64 0A 05 74 64 0A 05 64 A1 40 0A A0  ....d..td..d.@..
    4040: 14 93 4D 30 38 35 0A 12 A0 0B 92 95 64 0A 06 74  ..M085......d..t
    4050: 64 0A 06 64 A1 48 08 A0 14 93 4D 30 38 35 0A 13  d..d.H....M085..
    4060: A0 0B 92 95 64 0A 05 74 64 0A 05 64 A1 40 07 A0  ....d..td..d.@..
    4070: 14 93 4D 30 38 35 0A 10 A0 0B 92 95 64 0A 09 74  ..M085......d..t
    4080: 64 0A 09 64 A1 48 05 A0 22 93 4D 30 38 35 0A 14  d..d.H..".M085..
    4090: A0 0B 92 95 64 0A 09 74 64 0A 09 64 A1 0D A0 0B  ....d..td..d....
    40A0: 92 95 64 0A 03 74 64 0A 03 64 A1 32 A0 22 93 4D  ..d..td..d.2.".M
    40B0: 30 38 35 0A 15 A0 0B 92 95 64 0A 09 74 64 0A 09  085......d..td..
    40C0: 64 A1 0D A0 0B 92 95 64 0A 03 74 64 0A 03 64 A1  d......d..td..d.
    40D0: 0D A0 0B 92 95 64 0A 08 74 64 0A 08 64 70 4D 32  .....d..td..dpM2
    40E0: 34 39 00 00 00 67 60 79 01 64 61 79 6B 64 62 A0  49...g`y.daykdb.
    40F0: 29 92 93 7B 60 61 00 62 7B 60 7F 0C FF FF FF FF  )..{`a.b{`......
    4100: 61 00 63 4D 32 35 30 00 00 00 67 7D 63 62 00 70  a.cM250...g}cb.p
    4110: 4D 32 34 39 00 00 00 67 60 14 49 04 4D 36 34 35  M249...g`.I.M645
    4120: 0B 70 00 63 70 4D 30 38 33 60 7A 4D 30 38 33 0A  .p.cpM083`zM083.
    4130: 14 61 7B 61 0B 00 0F 62 72 62 0B 00 01 62 A0 0A  .a{a...brb...b..
    4140: 92 95 72 61 68 00 62 A4 63 72 79 68 0A 14 00 60  ..rah.b.cryh...`
    4150: 60 72 79 69 0A 0F 00 60 60 72 79 6A 0A 0C 00 60  `ryi...``ryj...`
    4160: 60 A4 60 14 44 08 4D 36 34 36 0A 70 00 60 70 4D  `.`.D.M646.p.`pM
    4170: 30 34 39 68 0A 34 61 A2 2C 92 93 61 00 70 4D 30  049h.4a.,..a.pM0
    4180: 34 39 68 61 62 A0 0A 91 93 62 00 93 62 0A FF A5  49hab....b..b...
    4190: A0 08 93 62 69 70 61 60 A5 70 4D 30 34 39 68 72  ...bipa`.pM049hr
    41A0: 61 01 00 61 4D 34 36 30 0D 20 20 46 45 41 2D 41  a..aM460.  FEA-A
    41B0: 53 4C 2D 43 70 6D 53 65 61 72 63 68 50 63 69 65  SL-CpmSearchPcie
    41C0: 43 61 70 61 62 69 6C 69 74 79 20 28 30 78 25 58  Capability (0x%X
    41D0: 2C 20 30 78 25 58 29 20 3D 20 30 78 25 58 0A 00  , 0x%X) = 0x%X..
    41E0: 68 69 60 00 00 00 A4 60 14 3A 4D 36 34 37 0A A0  hi`....`.:M647..
    41F0: 33 92 93 68 0C EE EE EE EE 70 4D 30 34 42 68 00  3..h.....pM04Bh.
    4200: 60 70 0C FF FF FF 7F 61 7D 61 0C 00 00 00 80 61  `p.....a}a.....a
    4210: A0 12 90 92 93 60 00 92 93 60 61 4D 36 34 34 68  .....`...`aM644h
    4220: 0A 04 69 14 48 0C 4D 36 34 38 0B 70 00 62 70 0C  ..i.H.M648.p.bp.
    4230: FF FF FF 7F 65 7D 65 0C 00 00 00 80 65 70 00 60  ....e}e.....ep.`
    4240: A2 40 06 92 94 60 69 70 00 61 A2 44 05 92 94 61  .@...`ip.a.D...a
    4250: 6A 7D 7B 79 68 0A 14 00 0C 00 00 F0 0F 00 7B 79  j}{yh.........{y
    4260: 60 0A 0F 00 0C 00 80 0F 00 00 63 7D 63 7B 79 61  `.........c}c{ya
    4270: 0A 0C 00 0B 00 70 00 63 70 4D 30 34 42 4D 30 38  .....p.cpM04BM08
    4280: 33 63 64 A0 11 90 92 93 64 65 92 93 64 00 7D 62  3cd.....de..d.}b
    4290: 79 01 60 00 62 A1 07 A0 05 93 61 00 A5 75 61 75  y.`.b.....a..uau
    42A0: 60 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  `M460.  KER-ASL-
    42B0: 43 70 6D 53 65 61 72 63 68 50 63 69 65 44 65 76  CpmSearchPcieDev
    42C0: 69 63 65 20 28 42 75 73 20 30 78 25 58 29 20 3D  ice (Bus 0x%X) =
    42D0: 20 44 65 76 69 63 65 20 30 78 25 58 20 45 78 69   Device 0x%X Exi
    42E0: 73 74 0A 00 68 62 00 00 00 00 A4 62 14 49 06 4D  st..hb.....b.I.M
    42F0: 36 34 39 09 70 00 60 A0 23 92 93 68 0C EE EE EE  649.p.`.#..h....
    4300: EE 70 4D 36 34 36 68 01 62 A0 11 92 93 62 00 70  .pM646h.b....b.p
    4310: 4D 30 34 41 68 72 62 0A 04 00 60 4D 34 36 30 0D  M04Ahrb...`M460.
    4320: 20 20 46 45 41 2D 41 53 4C 2D 43 70 6D 47 65 74    FEA-ASL-CpmGet
    4330: 50 43 49 65 50 6F 77 65 72 53 74 61 74 65 20 28  PCIePowerState (
    4340: 30 78 25 58 29 20 3D 20 30 78 25 58 0A 00 68 60  0x%X) = 0x%X..h`
    4350: 00 00 00 00 A4 60 14 41 0A 4D 36 35 30 0A 70 00  .....`.A.M650.p.
    4360: 60 70 00 61 A0 4A 04 92 93 68 0C EE EE EE EE 70  `p.a.J...h.....p
    4370: 4D 36 34 36 68 01 62 A0 37 92 93 62 00 70 4D 30  M646h.b.7..b.pM0
    4380: 34 41 68 72 62 0A 04 00 60 7B 60 0B FC 7F 61 7D  4Ahrb...`{`...a}
    4390: 61 7B 69 0B FF 7F 00 61 4D 30 34 44 68 72 62 0A  a{i....aM04Dhrb.
    43A0: 04 00 61 70 4D 30 34 41 68 72 62 0A 04 00 61 4D  ..apM04Ahrb...aM
    43B0: 34 36 30 0D 20 20 46 45 41 2D 41 53 4C 2D 43 70  460.  FEA-ASL-Cp
    43C0: 6D 53 65 74 50 43 49 65 50 6F 77 65 72 53 74 61  mSetPCIePowerSta
    43D0: 74 65 20 28 30 78 25 58 2C 20 30 78 25 58 29 20  te (0x%X, 0x%X) 
    43E0: 3D 20 30 78 25 58 20 2D 3E 20 30 78 25 58 0A 00  = 0x%X -> 0x%X..
    43F0: 68 69 60 61 00 00 A4 60 14 44 2A 4D 36 35 31 0C  hi`a...`.D*M651.
    4400: 70 4D 30 34 42 68 00 60 70 0C FF FF FF 7F 61 7D  pM04Bh.`p.....a}
    4410: 61 0C 00 00 00 80 61 A0 40 1A 90 90 92 93 69 00  a.....a.@.....i.
    4420: 92 93 68 0C EE EE EE EE 90 92 93 60 00 92 93 60  ..h........`...`
    4430: 61 4D 30 34 45 69 72 6A 00 00 4D 30 34 42 68 0A  aM04Eirj..M04Bh.
    4440: 18 4D 30 34 45 69 72 6A 0A 04 00 4D 30 34 42 68  .M04Eirj...M04Bh
    4450: 0A 1C 4D 30 34 45 69 72 6A 0A 08 00 4D 30 34 42  ..M04Eirj...M04B
    4460: 68 0A 20 4D 30 34 45 69 72 6A 0A 0C 00 4D 30 34  h. M04Eirj...M04
    4470: 42 68 0A 24 4D 30 34 45 69 72 6A 0A 10 00 4D 30  Bh.$M04Eirj...M0
    4480: 34 42 68 0A 28 4D 30 34 45 69 72 6A 0A 14 00 4D  4Bh.(M04Eirj...M
    4490: 30 34 42 68 0A 2C 4D 30 34 44 69 72 6A 0A 18 00  04Bh.,M04Dirj...
    44A0: 4D 30 34 41 68 0A 04 4D 30 34 43 69 72 6A 0A 1A  M04Ah..M04Cirj..
    44B0: 00 4D 30 34 39 68 0A 0C 4D 30 34 43 69 72 6A 0A  .M049h..M04Cirj.
    44C0: 1B 00 4D 30 34 39 68 0A 3C 72 68 4D 36 34 36 68  ..M049h.<rhM646h
    44D0: 01 60 A0 16 92 93 60 68 4D 30 34 44 69 72 6A 0A  .`....`hM04Dirj.
    44E0: 1C 00 4D 30 34 41 60 0A 04 A1 0C 4D 30 34 44 69  ..M04A`....M04Di
    44F0: 72 6A 0A 1C 00 00 A0 41 0C 93 6B 01 72 68 4D 36  rj.....A..k.rhM6
    4500: 34 36 68 0A 15 60 A0 4C 06 92 93 60 68 4D 30 34  46h..`.L...`hM04
    4510: 45 69 72 6A 0A 20 00 4D 30 34 42 60 0A 08 4D 30  Eirj. .M04B`..M0
    4520: 34 45 69 72 6A 0A 24 00 4D 30 34 42 60 0A 0C 4D  4Eirj.$.M04B`..M
    4530: 30 34 45 69 72 6A 0A 28 00 4D 30 34 42 60 0A 10  04Eirj.(.M04B`..
    4540: 4D 30 34 45 69 72 6A 0A 2C 00 4D 30 34 42 60 0A  M04Eirj.,.M04B`.
    4550: 14 4D 30 34 45 69 72 6A 0A 30 00 4D 30 34 42 60  .M04Eirj.0.M04B`
    4560: 0A 18 4D 30 34 45 69 72 6A 0A 34 00 4D 30 34 42  ..M04Eirj.4.M04B
    4570: 60 0A 1C A1 44 04 4D 30 34 45 69 72 6A 0A 20 00  `...D.M04Eirj. .
    4580: 00 4D 30 34 45 69 72 6A 0A 24 00 00 4D 30 34 45  .M04Eirj.$..M04E
    4590: 69 72 6A 0A 28 00 00 4D 30 34 45 69 72 6A 0A 2C  irj.(..M04Eirj.,
    45A0: 00 00 4D 30 34 45 69 72 6A 0A 30 00 00 4D 30 34  ..M04Eirj.0..M04
    45B0: 45 69 72 6A 0A 34 00 00 A1 41 0A 4D 30 34 45 69  Eirj.4...A.M04Ei
    45C0: 72 6A 00 00 00 4D 30 34 45 69 72 6A 0A 04 00 00  rj...M04Eirj....
    45D0: 4D 30 34 45 69 72 6A 0A 08 00 00 4D 30 34 45 69  M04Eirj....M04Ei
    45E0: 72 6A 0A 0C 00 00 4D 30 34 45 69 72 6A 0A 10 00  rj....M04Eirj...
    45F0: 00 4D 30 34 45 69 72 6A 0A 14 00 00 4D 30 34 45  .M04Eirj....M04E
    4600: 69 72 6A 0A 18 00 00 4D 30 34 45 69 72 6A 0A 1C  irj....M04Eirj..
    4610: 00 00 A0 47 04 93 6B 01 4D 30 34 45 69 72 6A 0A  ...G..k.M04Eirj.
    4620: 20 00 00 4D 30 34 45 69 72 6A 0A 24 00 00 4D 30   ..M04Eirj.$..M0
    4630: 34 45 69 72 6A 0A 28 00 00 4D 30 34 45 69 72 6A  4Eirj.(..M04Eirj
    4640: 0A 2C 00 00 4D 30 34 45 69 72 6A 0A 30 00 00 4D  .,..M04Eirj.0..M
    4650: 30 34 44 69 72 6A 0A 34 00 00 4D 34 36 30 0D 20  04Dirj.4..M460. 
    4660: 20 46 45 41 2D 41 53 4C 2D 43 70 6D 53 61 76 65   FEA-ASL-CpmSave
    4670: 50 63 69 65 42 72 69 64 67 65 44 61 74 61 20 28  PcieBridgeData (
    4680: 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25 58  0x%X, 0x%X, 0x%X
    4690: 2C 20 25 64 29 0A 00 68 69 6A 6B 00 00 5B 01 4D  , %d)..hijk..[.M
    46A0: 34 32 31 00 14 44 0C 4D 34 32 32 0C 70 4D 30 34  421..D.M422.pM04
    46B0: 39 4D 31 32 38 0A 81 60 A0 0A 93 60 00 A4 0C FF  9M128..`...`....
    46C0: FF FF FF 72 4D 30 38 33 79 60 0A 14 00 60 72 0A  ...rM083y`...`r.
    46D0: E0 60 60 5B 23 4D 34 32 31 FF FF 5B 80 56 41 52  .``[#M421..[.VAR
    46E0: 4D 00 60 0A 08 5B 81 0D 56 41 52 4D 03 00 00 56  M.`..[..VARM...V
    46F0: 41 52 31 20 5B 87 12 56 41 52 4D 56 41 52 31 6B  AR1 [..VARMVAR1k
    4700: 03 00 20 56 41 52 32 20 70 56 41 52 31 61 70 56  .. VAR2 pVAR1apV
    4710: 41 52 32 62 70 61 56 41 52 31 5B 27 4D 34 32 31  AR2bpaVAR1['M421
    4720: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    4730: 70 6D 52 65 61 64 42 78 62 53 6D 6E 52 65 67 69  pmReadBxbSmnRegi
    4740: 73 74 65 72 20 20 28 25 64 2C 20 25 64 2C 20 25  ster  (%d, %d, %
    4750: 64 2C 20 30 78 25 58 29 20 3D 20 30 78 25 58 0A  d, 0x%X) = 0x%X.
    4760: 00 68 69 6A 6B 62 00 A4 62 14 4D 0B 4D 34 32 33  .hijkb..b.M.M423
    4770: 0D 70 4D 30 34 39 4D 31 32 38 0A 81 60 A0 49 0A  .pM049M128..`.I.
    4780: 92 93 60 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41  ..`.M460.  KER-A
    4790: 53 4C 2D 43 70 6D 57 72 69 74 65 42 78 62 53 6D  SL-CpmWriteBxbSm
    47A0: 6E 52 65 67 69 73 74 65 72 20 28 25 64 2C 20 25  nRegister (%d, %
    47B0: 64 2C 20 25 64 2C 20 30 78 25 58 2C 20 30 78 25  d, %d, 0x%X, 0x%
    47C0: 58 29 0A 00 68 69 6A 6B 6C 00 72 4D 30 38 33 79  X)..hijkl.rM083y
    47D0: 60 0A 14 00 60 72 0A E0 60 60 5B 23 4D 34 32 31  `...`r..``[#M421
    47E0: FF FF 5B 80 56 41 52 4D 00 60 0A 08 5B 81 0D 56  ..[.VARM.`..[..V
    47F0: 41 52 4D 03 00 00 56 41 52 31 20 5B 87 12 56 41  ARM...VAR1 [..VA
    4800: 52 4D 56 41 52 31 6B 03 00 20 56 41 52 32 20 70  RMVAR1k.. VAR2 p
    4810: 56 41 52 31 61 70 6C 56 41 52 32 70 61 56 41 52  VAR1aplVAR2paVAR
    4820: 31 5B 27 4D 34 32 31 5B 01 4D 32 35 33 00 14 4E  1['M421[.M253..N
    4830: 10 4D 32 34 39 0C A0 0D 93 72 72 68 69 00 6A 00  .M249....rrhi.j.
    4840: 00 70 00 60 A1 0A 70 4D 32 35 32 68 69 6A 60 A0  .p.`..pM252hij`.
    4850: 0E 93 60 0C FF FF FF FF A4 0C FF FF FF FF 72 4D  ..`...........rM
    4860: 30 38 33 79 60 0A 14 00 60 72 0A B8 60 60 A0 1C  083y`...`r..``..
    4870: 5B 12 5C 2E 5F 53 42 5F 41 4D 30 30 00 5B 23 5C  [.\._SB_AM00.[#\
    4880: 2E 5F 53 42 5F 41 4D 30 30 FF FF A1 09 5B 23 4D  ._SB_AM00....[#M
    4890: 32 35 33 FF FF 5B 80 56 41 52 4D 00 60 0A 08 5B  253..[.VARM.`..[
    48A0: 81 0D 56 41 52 4D 03 00 00 56 41 52 31 20 5B 87  ..VARM...VAR1 [.
    48B0: 12 56 41 52 4D 56 41 52 31 6B 03 00 20 56 41 52  .VARMVAR1k.. VAR
    48C0: 32 20 70 56 41 52 31 61 70 56 41 52 32 62 70 61  2 pVAR1apVAR2bpa
    48D0: 56 41 52 31 A0 1A 5B 12 5C 2E 5F 53 42 5F 41 4D  VAR1..[.\._SB_AM
    48E0: 30 30 00 5B 27 5C 2E 5F 53 42 5F 41 4D 30 30 A1  00.['\._SB_AM00.
    48F0: 07 5B 27 4D 32 35 33 4D 34 36 30 0D 20 20 4B 45  .['M253M460.  KE
    4900: 52 2D 41 53 4C 2D 43 70 6D 52 65 61 64 53 6D 6E  R-ASL-CpmReadSmn
    4910: 52 65 67 69 73 74 65 72 20 20 28 25 64 2C 20 25  Register  (%d, %
    4920: 64 2C 20 25 64 2C 20 30 78 25 58 29 20 3D 20 30  d, %d, 0x%X) = 0
    4930: 78 25 58 0A 00 68 69 6A 6B 62 00 A4 62 14 47 10  x%X..hijkb..b.G.
    4940: 4D 32 35 30 0D A0 0D 93 72 72 68 69 00 6A 00 00  M250....rrhi.j..
    4950: 70 00 60 A1 0A 70 4D 32 35 32 68 69 6A 60 A0 46  p.`..pM252hij`.F
    4960: 0E 92 93 60 0C FF FF FF FF 4D 34 36 30 0D 20 20  ...`.....M460.  
    4970: 4B 45 52 2D 41 53 4C 2D 43 70 6D 57 72 69 74 65  KER-ASL-CpmWrite
    4980: 53 6D 6E 52 65 67 69 73 74 65 72 20 28 25 64 2C  SmnRegister (%d,
    4990: 20 25 64 2C 20 25 64 2C 20 30 78 25 58 2C 20 30   %d, %d, 0x%X, 0
    49A0: 78 25 58 29 0A 00 68 69 6A 6B 6C 00 72 4D 30 38  x%X)..hijkl.rM08
    49B0: 33 79 60 0A 14 00 60 72 0A B8 60 60 A0 1C 5B 12  3y`...`r..``..[.
    49C0: 5C 2E 5F 53 42 5F 41 4D 30 30 00 5B 23 5C 2E 5F  \._SB_AM00.[#\._
    49D0: 53 42 5F 41 4D 30 30 FF FF A1 09 5B 23 4D 32 35  SB_AM00....[#M25
    49E0: 33 FF FF 5B 80 56 41 52 4D 00 60 0A 08 5B 81 0D  3..[.VARM.`..[..
    49F0: 56 41 52 4D 03 00 00 56 41 52 31 20 5B 87 12 56  VARM...VAR1 [..V
    4A00: 41 52 4D 56 41 52 31 6B 03 00 20 56 41 52 32 20  ARMVAR1k.. VAR2 
    4A10: 70 56 41 52 31 61 70 6C 56 41 52 32 70 61 56 41  pVAR1aplVAR2paVA
    4A20: 52 31 A0 1A 5B 12 5C 2E 5F 53 42 5F 41 4D 30 30  R1..[.\._SB_AM00
    4A30: 00 5B 27 5C 2E 5F 53 42 5F 41 4D 30 30 A1 07 5B  .['\._SB_AM00..[
    4A40: 27 4D 32 35 33 14 4E 06 4D 30 31 33 0C 70 4D 30  'M253.N.M013.pM0
    4A50: 34 42 68 69 61 70 0C FF FF FF 7F 65 7D 65 0C 00  4Bhiap.....e}e..
    4A60: 00 00 80 65 7B 7A 61 6A 00 7A 65 74 0A 20 6B 00  ...e{zaj.zet. k.
    4A70: 00 62 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  .bM460.  KER-ASL
    4A80: 2D 43 70 6D 52 65 61 64 4D 65 6D 33 32 20 20 28  -CpmReadMem32  (
    4A90: 30 78 25 58 2C 20 30 78 25 58 2C 20 25 64 2C 20  0x%X, 0x%X, %d, 
    4AA0: 25 64 29 20 3D 20 30 78 25 58 0A 00 68 69 6A 6B  %d) = 0x%X..hijk
    4AB0: 62 00 A4 62 14 4C 08 4D 30 31 34 0D 4D 34 36 30  b..b.L.M014.M460
    4AC0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 57 72  .  KER-ASL-CpmWr
    4AD0: 69 74 65 4D 65 6D 33 32 20 28 30 78 25 58 2C 20  iteMem32 (0x%X, 
    4AE0: 30 78 25 58 2C 20 25 64 2C 20 25 64 2C 20 30 78  0x%X, %d, %d, 0x
    4AF0: 25 58 29 0A 00 68 69 6A 6B 6C 00 70 4D 30 34 42  %X)..hijkl.pM04B
    4B00: 68 69 61 70 0C FF FF FF 7F 65 7D 65 0C 00 00 00  hiap.....e}e....
    4B10: 80 65 72 6A 6B 62 74 0A 20 62 62 7A 7B 79 65 62  .erjkbt. bbz{yeb
    4B20: 00 65 00 62 62 79 7A 62 6A 00 6A 62 79 6C 6A 63  .e.bbyzbj.jbyljc
    4B30: 7D 7B 61 7F 65 62 00 00 63 64 4D 30 34 45 68 69  }{a.eb..cdM04Ehi
    4B40: 64 14 4F 05 4D 30 31 31 0C 70 4D 30 34 39 68 69  d.O.M011.pM049hi
    4B50: 61 7B 7A 61 6A 00 7A 0A FF 74 0A 08 6B 00 00 62  a{zaj.z..t..k..b
    4B60: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    4B70: 70 6D 52 65 61 64 4D 65 6D 38 20 20 28 30 78 25  pmReadMem8  (0x%
    4B80: 58 2C 20 30 78 25 58 2C 20 25 64 2C 20 25 64 29  X, 0x%X, %d, %d)
    4B90: 20 3D 20 30 78 25 58 0A 00 68 69 6A 6B 62 00 A4   = 0x%X..hijkb..
    4BA0: 62 14 4F 07 4D 30 31 32 0D 4D 34 36 30 0D 20 20  b.O.M012.M460.  
    4BB0: 4B 45 52 2D 41 53 4C 2D 43 70 6D 57 72 69 74 65  KER-ASL-CpmWrite
    4BC0: 4D 65 6D 38 20 28 30 78 25 58 2C 20 30 78 25 58  Mem8 (0x%X, 0x%X
    4BD0: 2C 20 25 64 2C 20 25 64 2C 20 30 78 25 58 29 0A  , %d, %d, 0x%X).
    4BE0: 00 68 69 6A 6B 6C 00 70 4D 30 34 39 68 69 61 72  .hijkl.pM049hiar
    4BF0: 6A 6B 62 74 0A 08 62 62 7A 7B 79 0A FF 62 00 0A  jkbt..bbz{y..b..
    4C00: FF 00 62 62 79 7A 62 6A 00 6A 62 79 6C 6A 63 7D  ..bbyzbj.jbyljc}
    4C10: 7B 61 7F 0A FF 62 00 00 63 64 4D 30 34 43 68 69  {a...b..cdM04Chi
    4C20: 64 14 44 08 4D 32 35 32 0B A0 46 07 92 95 4D 30  d.D.M252..F...M0
    4C30: 38 35 0A 08 70 4D 32 35 31 60 A0 45 06 60 72 60  85..pM251`.E.`r`
    4C40: 0A 10 60 70 00 61 70 00 62 A2 46 05 92 93 62 0A  ..`p.ap.b.F...b.
    4C50: FF 70 4D 30 31 31 72 60 61 00 00 00 0A 08 62 70  .pM011r`a.....bp
    4C60: 4D 30 31 31 72 60 61 00 01 00 0A 08 63 70 4D 30  M011r`a.....cpM0
    4C70: 31 31 72 60 61 00 0A 02 00 0A 08 64 70 4D 30 31  11r`a......dpM01
    4C80: 31 72 60 61 00 0A 03 00 0A 08 65 A0 0F 90 93 62  1r`a......e....b
    4C90: 68 93 63 69 A0 06 93 64 6A A4 65 72 61 0A 06 61  h.ci...dj.era..a
    4CA0: A4 0C FF FF FF FF 14 35 4D 36 32 34 09 70 00 60  .......5M624.p.`
    4CB0: A0 29 92 93 4D 32 35 31 00 72 0A 03 72 0A 10 77  .)..M251.r..r..w
    4CC0: 68 0A 06 00 00 61 70 4D 30 34 39 4D 32 35 31 61  h....apM049M251a
    4CD0: 60 A0 08 93 60 0A FF 70 00 60 A4 60 14 31 4D 30  `...`..p.`.`.1M0
    4CE0: 34 39 0A 70 00 60 A0 25 92 93 68 00 72 68 69 60  49.p.`.%..h.rhi`
    4CF0: 5B 80 56 41 52 4D 00 60 01 5B 81 0B 56 41 52 4D  [.VARM.`.[..VARM
    4D00: 01 56 41 52 52 08 70 56 41 52 52 60 A4 60 14 32  .VARR.pVARR`.`.2
    4D10: 4D 30 34 41 0A 70 00 60 A0 26 92 93 68 00 72 68  M04A.p.`.&..h.rh
    4D20: 69 60 5B 80 56 41 52 4D 00 60 0A 02 5B 81 0B 56  i`[.VARM.`..[..V
    4D30: 41 52 4D 02 56 41 52 52 10 70 56 41 52 52 60 A4  ARM.VARR.pVARR`.
    4D40: 60 14 32 4D 30 34 42 0A 70 00 60 A0 26 92 93 68  `.2M04B.p.`.&..h
    4D50: 00 72 68 69 60 5B 80 56 41 52 4D 00 60 0A 04 5B  .rhi`[.VARM.`..[
    4D60: 81 0B 56 41 52 4D 03 56 41 52 52 20 70 56 41 52  ..VARM.VARR pVAR
    4D70: 52 60 A4 60 14 2C 4D 30 34 43 0B A0 25 92 93 68  R`.`.,M04C..%..h
    4D80: 00 72 68 69 60 5B 80 56 41 52 4D 00 60 01 5B 81  .rhi`[.VARM.`.[.
    4D90: 0B 56 41 52 4D 01 56 41 52 52 08 70 6A 56 41 52  .VARM.VARR.pjVAR
    4DA0: 52 14 2D 4D 30 34 44 0B A0 26 92 93 68 00 72 68  R.-M04D..&..h.rh
    4DB0: 69 60 5B 80 56 41 52 4D 00 60 0A 02 5B 81 0B 56  i`[.VARM.`..[..V
    4DC0: 41 52 4D 02 56 41 52 52 10 70 6A 56 41 52 52 14  ARM.VARR.pjVARR.
    4DD0: 2D 4D 30 34 45 0B A0 26 92 93 68 00 72 68 69 60  -M04E..&..h.rhi`
    4DE0: 5B 80 56 41 52 4D 00 60 0A 04 5B 81 0B 56 41 52  [.VARM.`..[..VAR
    4DF0: 4D 03 56 41 52 52 20 70 6A 56 41 52 52 14 43 17  M.VARR pjVARR.C.
    4E00: 4D 36 34 34 0B 4D 34 36 30 0D 20 20 4B 45 52 2D  M644.M460.  KER-
    4E10: 41 53 4C 2D 43 70 6D 44 75 6D 70 44 61 74 61 20  ASL-CpmDumpData 
    4E20: 28 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25  (0x%X, 0x%X, 0x%
    4E30: 58 29 0A 00 68 69 6A 00 00 00 A0 3E 90 92 93 69  X)..hij....>...i
    4E40: 01 90 92 93 69 0A 02 92 93 69 0A 04 4D 34 36 30  ....i....i..M460
    4E50: 0D 20 20 41 72 67 31 3A 20 4F 6E 65 20 44 61 74  .  Arg1: One Dat
    4E60: 61 20 57 69 64 74 68 20 69 73 20 69 6C 6C 65 67  a Width is illeg
    4E70: 61 6C 00 00 00 00 00 00 00 A1 4A 0E A0 34 94 6A  al........J..4.j
    4E80: 0B 00 10 4D 34 36 30 0D 20 20 41 72 67 32 3A 20  ...M460.  Arg2: 
    4E90: 54 6F 74 61 6C 20 44 61 74 61 20 53 69 7A 65 20  Total Data Size 
    4EA0: 69 73 20 69 6C 6C 65 67 61 6C 00 00 00 00 00 00  is illegal......
    4EB0: 00 A1 42 0B 70 00 60 70 68 61 4D 34 36 30 0D 20  ..B.p.`phaM460. 
    4EC0: 20 30 78 25 58 3A 00 61 00 00 00 00 00 A2 46 09   0x%X:.a......F.
    4ED0: 95 60 6A A0 19 93 69 01 4D 34 36 30 0D 20 20 25  .`j...i.M460.  %
    4EE0: 58 00 4D 30 34 39 68 60 00 00 00 00 00 A1 39 A0  X.M049h`......9.
    4EF0: 1A 93 69 0A 02 4D 34 36 30 0D 20 20 25 58 00 4D  ..i..M460.  %X.M
    4F00: 30 34 41 68 60 00 00 00 00 00 A1 1C A0 1A 93 69  04Ah`..........i
    4F10: 0A 04 4D 34 36 30 0D 20 20 25 58 00 4D 30 34 42  ..M460.  %X.M04B
    4F20: 68 60 00 00 00 00 00 72 60 69 60 72 68 60 61 A0  h`.....r`i`rh`a.
    4F30: 34 93 7B 61 0A 0F 00 00 4D 34 36 30 0D 0A 00 00  4.{a....M460....
    4F40: 00 00 00 00 00 A0 1E 95 60 6A 4D 34 36 30 0D 20  ........`jM460. 
    4F50: 20 30 78 25 58 3A 00 7B 61 0C F0 FF FF FF 00 00   0x%X:.{a.......
    4F60: 00 00 00 00 4D 34 36 30 0D 0A 00 00 00 00 00 00  ....M460........
    4F70: 00 14 3B 4D 34 31 32 09 7A 68 0A 1F 60 7B 60 01  ..;M412.zh..`{`.
    4F80: 60 7A 68 0A 18 61 7B 61 0A 7F 61 7A 68 0A 04 63  `zh..a{a..azh..c
    4F90: 7B 63 0A 03 63 7B 68 0A 07 64 70 4D 34 30 39 60  {c..c{h..dpM409`
    4FA0: 61 63 65 7A 65 64 65 7B 65 01 65 A4 65 14 3C 4D  acezede{e.e.e.<M
    4FB0: 34 45 33 09 7A 68 0A 15 60 7B 60 0A 07 60 7A 68  4E3.zh..`{`..`zh
    4FC0: 0A 18 61 7B 61 0A 7F 61 7A 68 0A 04 63 7B 63 0A  ..a{a..azh..c{c.
    4FD0: 03 63 7B 68 0A 07 64 70 4D 34 45 31 60 61 63 65  .c{h..dpM4E1`ace
    4FE0: 7A 65 64 65 7B 65 01 65 A4 65 14 47 07 4D 34 31  zede{e.e.e.G.M41
    4FF0: 33 0A 7A 68 0A 1F 60 7B 60 01 60 7A 68 0A 18 61  3.zh..`{`.`zh..a
    5000: 7B 61 0A 7F 61 7A 68 0A 06 62 7B 62 0A 03 62 7A  {a..azh..b{b..bz
    5010: 68 0A 04 63 7B 63 0A 03 63 7B 68 0A 07 64 70 4D  h..c{c..c{h..dpM
    5020: 34 30 39 60 61 72 77 72 62 01 00 01 00 63 00 65  409`arwrb....c.e
    5030: 70 65 66 7B 65 7F 0C FF FF FF FF 79 01 64 00 00  pef{e......y.d..
    5040: 65 7D 65 79 7B 69 01 00 64 00 65 A0 16 92 93 65  e}ey{i..d.e....e
    5050: 66 4D 34 31 30 60 61 72 77 72 62 01 00 01 00 63  fM410`arwrb....c
    5060: 00 65 14 48 07 4D 34 45 34 0A 7A 68 0A 15 60 7B  .e.H.M4E4.zh..`{
    5070: 60 0A 07 60 7A 68 0A 18 61 7B 61 0A 7F 61 7A 68  `..`zh..a{a..azh
    5080: 0A 06 62 7B 62 0A 03 62 7A 68 0A 04 63 7B 63 0A  ..b{b..bzh..c{c.
    5090: 03 63 7B 68 0A 07 64 70 4D 34 45 31 60 61 72 77  .c{h..dpM4E1`arw
    50A0: 72 62 01 00 01 00 63 00 65 70 65 66 7B 65 7F 0C  rb....c.epef{e..
    50B0: FF FF FF FF 79 01 64 00 00 65 7D 65 79 7B 69 01  ....y.d..e}ey{i.
    50C0: 00 64 00 65 A0 16 92 93 65 66 4D 34 45 32 60 61  .d.e....efM4E2`a
    50D0: 72 77 72 62 01 00 01 00 63 00 65 14 45 4A 4D 34  rwrb....c.e.EJM4
    50E0: 33 41 09 70 00 60 70 4D 30 34 42 4D 31 32 38 0A  3A.p.`pM04BM128.
    50F0: 33 61 70 4D 30 34 42 4D 31 32 38 0A 72 62 A0 4F  3apM04BM128.rb.O
    5100: 06 91 93 61 00 93 62 00 4D 34 36 30 0D 20 20 4B  ...a..b.M460.  K
    5110: 45 52 2D 41 53 4C 2D 43 70 6D 47 65 74 50 74 47  ER-ASL-CpmGetPtG
    5120: 70 69 6F 4D 6D 69 6F 41 64 64 72 65 73 73 20 28  pioMmioAddress (
    5130: 25 64 29 20 20 4C 6F 63 61 6C 31 20 3D 20 30 78  %d)  Local1 = 0x
    5140: 25 58 20 20 4C 6F 63 61 6C 32 20 3D 20 30 78 25  %X  Local2 = 0x%
    5150: 58 20 20 45 52 52 4F 52 20 45 52 52 4F 52 20 45  X  ERROR ERROR E
    5160: 52 52 4F 52 0A 00 68 61 62 00 00 00 A4 60 70 4D  RROR..hab....`pM
    5170: 30 31 31 62 0A 19 00 0A 08 63 A0 45 06 91 93 63  011b.....c.E...c
    5180: 00 93 63 0A FF 4D 34 36 30 0D 20 20 4B 45 52 2D  ..c..M460.  KER-
    5190: 41 53 4C 2D 43 70 6D 47 65 74 50 74 47 70 69 6F  ASL-CpmGetPtGpio
    51A0: 4D 6D 69 6F 41 64 64 72 65 73 73 20 28 25 64 29  MmioAddress (%d)
    51B0: 20 20 4C 6F 63 61 6C 33 20 3D 20 30 78 25 58 20    Local3 = 0x%X 
    51C0: 20 45 52 52 4F 52 20 45 52 52 4F 52 20 45 52 52   ERROR ERROR ERR
    51D0: 4F 52 20 2D 20 31 0A 00 68 63 00 00 00 00 A4 60  OR - 1..hc.....`
    51E0: 72 61 79 63 0A 14 00 62 70 4D 30 31 33 62 0A 08  rayc...bpM013b..
    51F0: 0A 08 0A 18 63 A0 47 07 92 93 63 0C 00 04 06 00  ....c.G...c.....
    5200: A0 40 06 92 95 68 0A 08 4D 34 36 30 0D 20 20 4B  .@...h..M460.  K
    5210: 45 52 2D 41 53 4C 2D 43 70 6D 47 65 74 50 74 47  ER-ASL-CpmGetPtG
    5220: 70 69 6F 4D 6D 69 6F 41 64 64 72 65 73 73 20 28  pioMmioAddress (
    5230: 25 64 20 3E 3D 20 38 29 20 20 4E 6F 74 20 50 52  %d >= 8)  Not PR
    5240: 4F 4D 32 31 20 20 45 52 52 4F 52 20 45 52 52 4F  OM21  ERROR ERRO
    5250: 52 20 45 52 52 4F 52 0A 00 68 00 00 00 00 00 A4  R ERROR..h......
    5260: 60 70 0A 02 63 72 62 79 63 0A 0C 00 62 A1 46 17  `p..crbyc...b.F.
    5270: A0 43 17 92 95 68 0A 18 70 4D 30 34 39 4D 31 32  .C...h..pM049M12
    5280: 38 0A 93 64 A0 4C 05 93 64 00 4D 34 36 30 0D 20  8..d.L..d.M460. 
    5290: 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 47 65 74 50   KER-ASL-CpmGetP
    52A0: 74 47 70 69 6F 4D 6D 69 6F 41 64 64 72 65 73 73  tGpioMmioAddress
    52B0: 20 28 25 64 29 20 20 4C 6F 63 61 6C 34 20 3D 20   (%d)  Local4 = 
    52C0: 30 78 25 58 20 20 45 52 52 4F 52 20 45 52 52 4F  0x%X  ERROR ERRO
    52D0: 52 20 45 52 52 4F 52 0A 00 68 64 00 00 00 00 A4  R ERROR..hd.....
    52E0: 60 A1 06 7B 64 0A 1F 64 70 4D 30 31 31 62 0A 19  `..{d..dpM011b..
    52F0: 00 0A 08 63 A0 45 06 91 93 63 00 93 63 0A FF 4D  ...c.E...c..c..M
    5300: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70  460.  KER-ASL-Cp
    5310: 6D 47 65 74 50 74 47 70 69 6F 4D 6D 69 6F 41 64  mGetPtGpioMmioAd
    5320: 64 72 65 73 73 20 28 25 64 29 20 20 4C 6F 63 61  dress (%d)  Loca
    5330: 6C 33 20 3D 20 30 78 25 58 20 20 45 52 52 4F 52  l3 = 0x%X  ERROR
    5340: 20 45 52 52 4F 52 20 45 52 52 4F 52 20 2D 20 32   ERROR ERROR - 2
    5350: 0A 00 68 63 00 00 00 00 A4 60 72 61 79 63 0A 14  ..hc.....`rayc..
    5360: 00 62 72 62 79 64 0A 0F 00 62 70 4D 30 31 31 62  .brbyd...bpM011b
    5370: 0A 19 00 0A 08 63 A0 45 06 91 93 63 00 93 63 0A  .....c.E...c..c.
    5380: FF 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  .M460.  KER-ASL-
    5390: 43 70 6D 47 65 74 50 74 47 70 69 6F 4D 6D 69 6F  CpmGetPtGpioMmio
    53A0: 41 64 64 72 65 73 73 20 28 25 64 29 20 20 4C 6F  Address (%d)  Lo
    53B0: 63 61 6C 33 20 3D 20 30 78 25 58 20 20 45 52 52  cal3 = 0x%X  ERR
    53C0: 4F 52 20 45 52 52 4F 52 20 45 52 52 4F 52 20 2D  OR ERROR ERROR -
    53D0: 20 33 0A 00 68 63 00 00 00 00 A4 60 72 61 79 63   3..hc.....`rayc
    53E0: 0A 14 00 62 70 4D 30 31 31 62 0A 04 00 0A 08 63  ...bpM011b.....c
    53F0: A0 45 06 91 93 63 00 93 63 0A FF 4D 34 36 30 0D  .E...c..c..M460.
    5400: 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 47 65 74    KER-ASL-CpmGet
    5410: 50 74 47 70 69 6F 4D 6D 69 6F 41 64 64 72 65 73  PtGpioMmioAddres
    5420: 73 20 28 25 64 29 20 20 4C 6F 63 61 6C 33 20 3D  s (%d)  Local3 =
    5430: 20 30 78 25 58 20 20 45 52 52 4F 52 20 45 52 52   0x%X  ERROR ERR
    5440: 4F 52 20 45 52 52 4F 52 20 2D 20 34 0A 00 68 63  OR ERROR - 4..hc
    5450: 00 00 00 00 A4 60 A0 46 06 92 93 7B 63 0A 02 00  .....`.F...{c...
    5460: 0A 02 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  ..M460.  KER-ASL
    5470: 2D 43 70 6D 47 65 74 50 74 47 70 69 6F 4D 6D 69  -CpmGetPtGpioMmi
    5480: 6F 41 64 64 72 65 73 73 20 28 25 64 29 20 20 4C  oAddress (%d)  L
    5490: 6F 63 61 6C 33 20 3D 20 30 78 25 58 20 20 45 52  ocal3 = 0x%X  ER
    54A0: 52 4F 52 20 45 52 52 4F 52 20 45 52 52 4F 52 20  ROR ERROR ERROR 
    54B0: 2D 20 35 0A 00 68 63 00 00 00 00 A4 60 70 4D 30  - 5..hc.....`pM0
    54C0: 31 33 62 0A 40 00 0A 20 63 7B 63 0C FB FF FF FF  13b.@.. c{c.....
    54D0: 63 A0 48 06 91 93 63 00 93 63 0C FB FF FF FF 4D  c.H...c..c.....M
    54E0: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70  460.  KER-ASL-Cp
    54F0: 6D 47 65 74 50 74 47 70 69 6F 4D 6D 69 6F 41 64  mGetPtGpioMmioAd
    5500: 64 72 65 73 73 20 28 25 64 29 20 20 4C 6F 63 61  dress (%d)  Loca
    5510: 6C 33 20 3D 20 30 78 25 58 20 20 45 52 52 4F 52  l3 = 0x%X  ERROR
    5520: 20 45 52 52 4F 52 20 45 52 52 4F 52 20 2D 20 36   ERROR ERROR - 6
    5530: 0A 00 68 63 00 00 00 00 A4 60 A1 46 04 4D 34 36  ..hc.....`.F.M46
    5540: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 47  0.  KER-ASL-CpmG
    5550: 65 74 50 74 47 70 69 6F 4D 6D 69 6F 41 64 64 72  etPtGpioMmioAddr
    5560: 65 73 73 20 28 25 64 29 20 20 4C 6F 63 61 6C 33  ess (%d)  Local3
    5570: 20 3D 20 30 78 25 58 0A 00 68 63 00 00 00 00 A4   = 0x%X..hc.....
    5580: 63 14 47 0D 4D 34 34 30 09 70 4D 34 33 41 68 60  c.G.M440.pM43Ah`
    5590: A0 46 05 93 60 00 4D 34 36 30 0D 20 20 4B 45 52  .F..`.M460.  KER
    55A0: 2D 41 53 4C 2D 43 70 6D 50 74 52 65 61 64 47 70  -ASL-CpmPtReadGp
    55B0: 69 6F 20 20 28 25 64 29 20 3D 20 25 64 20 20 4D  io  (%d) = %d  M
    55C0: 4D 49 4F 20 3D 20 30 78 25 58 20 20 45 52 52 4F  MIO = 0x%X  ERRO
    55D0: 52 20 45 52 52 4F 52 20 45 52 52 4F 52 0A 00 68  R ERROR ERROR..h
    55E0: 60 60 00 00 00 A4 60 A0 0B 92 95 68 0A 18 74 68  ``....`....h..th
    55F0: 0A 18 61 A1 04 70 68 61 70 4D 30 31 33 60 00 61  ..a..phapM013`.a
    5600: 01 62 A0 0D 93 62 01 4D 30 31 34 60 00 61 01 00  .b...b.M014`.a..
    5610: 70 4D 30 31 33 60 0A 04 61 01 62 4D 34 36 30 0D  pM013`..a.bM460.
    5620: 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 50 74 52    KER-ASL-CpmPtR
    5630: 65 61 64 47 70 69 6F 20 20 28 25 64 29 20 3D 20  eadGpio  (%d) = 
    5640: 25 64 20 20 4D 4D 49 4F 20 3D 20 30 78 25 58 0A  %d  MMIO = 0x%X.
    5650: 00 68 62 60 00 00 00 A4 62 14 43 0D 4D 34 34 31  .hb`....b.C.M441
    5660: 0A 70 4D 34 33 41 68 60 A0 44 05 93 60 00 4D 34  .pM43Ah`.D..`.M4
    5670: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D  60.  KER-ASL-Cpm
    5680: 50 74 57 72 69 74 65 47 70 69 6F 20 28 25 64 2C  PtWriteGpio (%d,
    5690: 20 25 64 29 20 20 20 4D 4D 49 4F 20 3D 20 30 78   %d)   MMIO = 0x
    56A0: 25 58 20 20 45 52 52 4F 52 20 45 52 52 4F 52 20  %X  ERROR ERROR 
    56B0: 45 52 52 4F 52 0A 00 68 69 60 00 00 00 A0 0B 92  ERROR..hi`......
    56C0: 95 68 0A 18 74 68 0A 18 61 A1 04 70 68 61 70 4D  .h..th..a..phapM
    56D0: 30 31 33 60 00 61 01 62 A0 0E 92 93 62 01 4D 30  013`.a.b....b.M0
    56E0: 31 34 60 00 61 01 01 4D 30 31 34 60 0A 08 61 01  14`.a..M014`..a.
    56F0: 69 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  iM460.  KER-ASL-
    5700: 43 70 6D 50 74 57 72 69 74 65 47 70 69 6F 20 28  CpmPtWriteGpio (
    5710: 25 64 2C 20 25 64 29 20 20 20 4D 4D 49 4F 20 3D  %d, %d)   MMIO =
    5720: 20 30 78 25 58 0A 00 68 69 60 00 00 00 14 4B 1B   0x%X..hi`....K.
    5730: 4D 30 30 39 09 7A 68 0A 08 60 7B 60 0A 07 60 7B  M009.zh..`{`..`{
    5740: 68 0A FF 61 70 00 62 A0 4A 0B 91 93 60 00 93 60  h..ap.b.J...`..`
    5750: 01 A0 4B 09 92 95 4D 30 38 35 0A 02 A0 3E 93 7B  ..K...M085...>.{
    5760: 68 0C 00 00 00 F8 00 00 A0 1A 93 60 00 70 4D 30  h..........`.pM0
    5770: 31 31 72 4D 30 38 34 0B 02 15 00 77 61 0A 04 00  11rM084....wa...
    5780: 00 01 62 A1 17 70 4D 30 31 31 72 4D 30 38 34 0B  ..b..pM011rM084.
    5790: 02 12 00 77 61 0A 04 00 00 01 62 A1 41 05 7A 68  ...wa.....b.A.zh
    57A0: 0A 1F 63 7B 63 01 63 7A 68 0A 1D 64 7B 64 0A 03  ..c{c.czh..d{d..
    57B0: 64 7A 68 0A 1B 65 7B 65 0A 03 65 A0 10 93 60 00  dzh..e{e..e...`.
    57C0: 72 0C 00 25 D0 02 77 61 0A 04 00 66 A1 0D 72 0C  r..%..wa...f..r.
    57D0: 00 22 D0 02 77 61 0A 04 00 66 70 4D 32 34 39 63  ."..wa...fpM249c
    57E0: 64 65 66 62 7A 62 0A 10 62 7B 62 01 62 A1 14 70  defbzb..b{b.b..p
    57F0: 4D 30 31 31 72 4D 30 38 34 0B 00 01 00 61 0A 07  M011rM084....a..
    5800: 01 62 A1 43 0B A0 4B 05 91 93 60 0A 04 93 60 0A  .b.C..K...`...`.
    5810: 05 7A 68 0A 1F 63 7B 63 01 63 7A 68 0A 1D 64 7B  .zh..c{c.czh..d{
    5820: 64 0A 03 64 7A 68 0A 1B 65 7B 65 0A 03 65 A0 11  d..dzh..e{e..e..
    5830: 93 60 0A 04 72 0C 00 25 D0 02 77 61 0A 04 00 66  .`..r..%..wa...f
    5840: A1 0D 72 0C 00 22 D0 02 77 61 0A 04 00 66 70 4D  ..r.."..wa...fpM
    5850: 34 32 32 63 64 65 66 62 7A 62 0A 10 62 7B 62 01  422cdefbzb..b{b.
    5860: 62 A1 44 05 A0 24 93 60 0A 02 A0 18 93 4D 30 34  b.D..$.`.....M04
    5870: 39 4D 31 32 38 0A 77 01 70 4D 30 33 38 72 61 0A  9M128.w.pM038ra.
    5880: 08 00 62 A1 05 70 0A FF 62 A1 2C A0 0C 93 60 0A  ..b..p..b.,...`.
    5890: 03 70 4D 34 34 30 61 62 A1 1D A0 0C 93 60 0A 06  .pM440ab.....`..
    58A0: 70 4D 34 31 32 68 62 A1 0E A0 0C 93 60 0A 07 70  pM412hb.....`..p
    58B0: 4D 34 45 33 68 62 4D 34 36 30 0D 20 20 4B 45 52  M4E3hbM460.  KER
    58C0: 2D 41 53 4C 2D 43 70 6D 52 65 61 64 47 70 69 6F  -ASL-CpmReadGpio
    58D0: 20 20 28 30 78 25 58 29 20 3D 20 30 78 25 58 0A    (0x%X) = 0x%X.
    58E0: 00 68 62 00 00 00 00 A4 62 14 47 1F 4D 30 31 30  .hb.....b.G.M010
    58F0: 0A 7A 68 0A 08 60 7B 60 0A 07 60 7B 68 0A FF 61  .zh..`{`..`{h..a
    5900: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    5910: 70 6D 57 72 69 74 65 47 70 69 6F 20 28 30 78 25  pmWriteGpio (0x%
    5920: 58 2C 20 30 78 25 58 29 0A 00 68 69 00 00 00 00  X, 0x%X)..hi....
    5930: A0 4E 0E 91 93 60 00 93 60 01 A0 4E 0B 92 95 4D  .N...`..`..N...M
    5940: 30 38 35 0A 02 A0 49 04 93 7B 68 0C 00 00 00 F8  085...I..{h.....
    5950: 00 00 A0 1F 93 60 00 4D 30 31 32 72 4D 30 38 34  .....`.M012rM084
    5960: 0B 02 15 00 77 61 0A 04 00 0A 06 0A 02 7D 0A 02  ....wa.......}..
    5970: 69 00 A1 1C 4D 30 31 32 72 4D 30 38 34 0B 02 12  i...M012rM084...
    5980: 00 77 61 0A 04 00 0A 06 0A 02 7D 0A 02 69 00 A1  .wa.......}..i..
    5990: 49 06 7A 68 0A 1F 63 7B 63 01 63 7A 68 0A 1D 64  I.zh..c{c.czh..d
    59A0: 7B 64 0A 03 64 7A 68 0A 1B 65 7B 65 0A 03 65 A0  {d..dzh..e{e..e.
    59B0: 10 93 60 00 72 0C 00 25 D0 02 77 61 0A 04 00 66  ..`.r..%..wa...f
    59C0: A1 0D 72 0C 00 22 D0 02 77 61 0A 04 00 66 70 4D  ..r.."..wa...fpM
    59D0: 32 34 39 63 64 65 66 62 7B 62 0C FF FF 3F CF 62  249cdefb{b...?.b
    59E0: 7D 62 0C 00 00 80 00 62 7D 62 79 69 0A 16 00 62  }b.....b}byi...b
    59F0: 4D 32 35 30 63 64 65 66 62 A1 25 4D 30 31 32 72  M250cdefb.%M012r
    5A00: 4D 30 38 34 0B 00 01 00 61 0A 06 01 69 4D 30 31  M084....a...iM01
    5A10: 32 72 4D 30 38 34 0B 00 01 00 61 0A 05 01 00 A1  2rM084....a.....
    5A20: 41 0C A0 43 07 91 93 60 0A 04 93 60 0A 05 7A 68  A..C...`...`..zh
    5A30: 0A 1F 63 7B 63 01 63 7A 68 0A 1D 64 7B 64 0A 03  ..c{c.czh..d{d..
    5A40: 64 7A 68 0A 1B 65 7B 65 0A 03 65 A0 11 93 60 0A  dzh..e{e..e...`.
    5A50: 04 72 0C 00 25 D0 02 77 61 0A 04 00 66 A1 0D 72  .r..%..wa...f..r
    5A60: 0C 00 22 D0 02 77 61 0A 04 00 66 70 4D 34 32 32  .."..wa...fpM422
    5A70: 63 64 65 66 62 7B 62 0C FF FF 3F CF 62 7D 62 0C  cdefb{b...?.b}b.
    5A80: 00 00 80 00 62 7D 62 79 69 0A 16 00 62 4D 34 32  ....b}byi...bM42
    5A90: 33 63 64 65 66 62 A1 4A 04 A0 1D 93 60 0A 02 A0  3cdefb.J....`...
    5AA0: 17 93 4D 30 34 39 4D 31 32 38 0A 77 01 4D 30 33  ..M049M128.w.M03
    5AB0: 39 72 61 0A 08 00 69 A1 29 A0 0B 93 60 0A 03 4D  9ra...i.)...`..M
    5AC0: 34 34 31 61 69 A1 1B A0 0B 93 60 0A 06 4D 34 31  441ai.....`..M41
    5AD0: 33 68 69 A1 0D A0 0B 93 60 0A 07 4D 34 45 34 68  3hi.....`..M4E4h
    5AE0: 69 08 4D 30 33 37 11 1A 0A 17 7E 81 03 16 04 15  i.M037....~.....
    5AF0: 0E 05 02 20 06 07 10 11 12 18 17 19 0B 01 0F 0D  ... ............
    5B00: 09 08 4D 32 32 37 11 1B 0A 18 41 42 03 16 04 15  ..M227....AB....
    5B10: 0E 05 02 44 06 07 10 11 12 18 17 45 0B 01 0F 0D  ...D.......E....
    5B20: 09 08 08 4D 33 32 39 11 1B 0A 18 59 5A 03 16 04  ...M329....YZ...
    5B30: 15 5B 05 02 56 06 4C 10 11 12 18 17 81 54 01 28  .[..V.L......T.(
    5B40: 00 09 08 08 4D 33 32 41 11 1B 0A 18 59 5A 03 16  ....M32A....YZ..
    5B50: 04 15 5B 05 02 56 06 4C 10 11 1D 1E 17 81 54 01  ..[..V.L......T.
    5B60: 28 00 09 08 08 4D 33 33 30 11 1B 0A 18 59 5A 03  (....M330....YZ.
    5B70: 16 04 15 5B 05 02 56 06 07 10 11 12 18 17 81 54  ...[..V........T
    5B80: 01 28 00 09 08 08 4D 33 32 42 11 1B 0A 18 59 5A  .(....M32B....YZ
    5B90: 03 16 04 0B 5B 05 02 1D 06 07 10 11 12 18 17 20  ....[.......... 
    5BA0: 54 01 28 00 09 08 08 4D 33 32 43 11 1B 0A 18 59  T.(....M32C....Y
    5BB0: 73 03 16 04 15 74 05 02 56 06 4C 10 11 18 1A 17  s....t..V.L.....
    5BC0: 81 1C 01 68 00 69 6A 14 4B 24 4D 30 32 39 09 A0  ...h.ij.K$M029..
    5BD0: 24 93 4D 30 38 35 0A 02 A4 4D 30 31 31 72 4D 30  $.M085...M011rM0
    5BE0: 38 34 0B 02 15 00 77 83 88 4D 30 33 37 68 00 0A  84....w..M037h..
    5BF0: 04 00 00 01 A1 4C 21 A0 1A 95 4D 30 38 35 0A 02  .....L!...M085..
    5C00: A4 4D 30 31 31 72 4D 30 38 34 0B 60 01 00 68 0A  .M011rM084.`..h.
    5C10: 07 01 A1 4E 1F A0 2C 90 94 4D 30 38 35 0A 02 95  ...N..,..M085...
    5C20: 4D 30 38 35 0A 08 A4 4D 30 31 31 72 4D 30 38 34  M085...M011rM084
    5C30: 0B 02 15 00 77 83 88 4D 32 32 37 68 00 0A 04 00  ....w..M227h....
    5C40: 00 01 A1 4E 1C A0 24 93 4D 30 38 35 0A 08 A4 4D  ...N..$.M085...M
    5C50: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5C60: 33 32 39 68 00 0A 04 00 00 01 A1 46 1A A0 2C 91  329h.......F..,.
    5C70: 93 4D 30 38 35 0A 09 93 4D 30 38 35 0A 0A A4 4D  .M085...M085...M
    5C80: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5C90: 33 33 30 68 00 0A 04 00 00 01 A1 46 17 A0 2C 91  330h.......F..,.
    5CA0: 93 4D 30 38 35 0A 0B 93 4D 30 38 35 0A 0C A4 4D  .M085...M085...M
    5CB0: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5CC0: 33 32 41 68 00 0A 04 00 00 01 A1 46 14 A0 2C 91  32Ah.......F..,.
    5CD0: 93 4D 30 38 35 0A 0D 93 4D 30 38 35 0A 0E A4 4D  .M085...M085...M
    5CE0: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5CF0: 33 33 30 68 00 0A 04 00 00 01 A1 46 11 A0 24 93  330h.......F..$.
    5D00: 4D 30 38 35 0A 0F A4 4D 30 31 31 72 4D 30 38 34  M085...M011rM084
    5D10: 0B 02 15 00 77 83 88 4D 33 32 42 68 00 0A 04 00  ....w..M32Bh....
    5D20: 00 01 A1 4E 0E A0 24 93 4D 30 38 35 0A 10 A4 4D  ...N..$.M085...M
    5D30: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5D40: 33 32 42 68 00 0A 04 00 00 01 A1 46 0C A0 24 93  32Bh.......F..$.
    5D50: 4D 30 38 35 0A 12 A4 4D 30 31 31 72 4D 30 38 34  M085...M011rM084
    5D60: 0B 02 15 00 77 83 88 4D 33 32 42 68 00 0A 04 00  ....w..M32Bh....
    5D70: 00 01 A1 4E 09 A0 24 93 4D 30 38 35 0A 13 A4 4D  ...N..$.M085...M
    5D80: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5D90: 33 32 42 68 00 0A 04 00 00 01 A1 46 07 A0 24 93  32Bh.......F..$.
    5DA0: 4D 30 38 35 0A 14 A4 4D 30 31 31 72 4D 30 38 34  M085...M011rM084
    5DB0: 0B 02 15 00 77 83 88 4D 33 32 42 68 00 0A 04 00  ....w..M32Bh....
    5DC0: 00 01 A1 4E 04 A0 24 93 4D 30 38 35 0A 15 A4 4D  ...N..$.M085...M
    5DD0: 30 31 31 72 4D 30 38 34 0B 02 15 00 77 83 88 4D  011rM084....w..M
    5DE0: 33 32 42 68 00 0A 04 00 00 01 A1 26 A0 24 93 4D  32Bh.......&.$.M
    5DF0: 30 38 35 0A 11 A4 4D 30 31 31 72 4D 30 38 34 0B  085...M011rM084.
    5E00: 02 15 00 77 83 88 4D 33 32 43 68 00 0A 04 00 00  ...w..M32Ch.....
    5E10: 01 A4 00 14 33 4D 30 33 31 09 70 4D 30 31 31 72  ....3M031.pM011r
    5E20: 4D 30 38 34 0B 40 02 00 68 00 0A 05 60 A4 4D 30  M084.@..h...`.M0
    5E30: 31 31 72 4D 30 38 34 0B 08 02 00 78 60 0A 08 00  11rM084....x`...
    5E40: 00 7B 60 0A 07 00 01 14 33 4D 30 33 32 0A 70 4D  .{`.....3M032.pM
    5E50: 30 31 31 72 4D 30 38 34 0B 40 02 00 68 00 0A 05  011rM084.@..h...
    5E60: 60 4D 30 31 32 72 4D 30 38 34 0B 08 02 00 78 60  `M012rM084....x`
    5E70: 0A 08 00 00 7B 60 0A 07 00 01 69 14 4F 06 4D 34  ....{`....i.O.M4
    5E80: 37 37 0A A0 06 93 69 00 A4 00 5B 80 56 41 52 4D  77....i...[.VARM
    5E90: 01 68 0A 09 5B 81 0E 56 41 52 4D 01 00 40 04 53  .h..[..VARM..@.S
    5EA0: 4D 42 38 08 70 69 60 A2 41 04 94 60 00 7D 53 4D  MB8.pi`.A..`.}SM
    5EB0: 42 38 0A 40 53 4D 42 38 A0 1A 95 60 0C FF FF FF  B8.@SMB8...`....
    5EC0: 00 A0 0C 94 60 0A 05 70 74 60 0A 05 00 60 A1 04  ....`..pt`...`..
    5ED0: 70 00 60 5B 21 0A 05 70 53 4D 42 38 61 A0 0B 93  p.`[!..pSMB8a...
    5EE0: 7B 61 0A 50 00 0A 40 A4 00 A4 01 14 2B 4D 34 37  {a.P..@.....+M47
    5EF0: 38 09 5B 80 56 41 52 4D 01 68 0A 09 5B 81 0E 56  8.[.VARM.h..[..V
    5F00: 41 52 4D 01 00 40 04 53 4D 42 38 08 7D 53 4D 42  ARM..@.SMB8.}SMB
    5F10: 38 0A 80 53 4D 42 38 14 4F 0F 4D 34 37 39 0A 5B  8..SMB8.O.M479.[
    5F20: 80 56 41 52 4D 01 68 0A 03 5B 81 15 56 41 52 4D  .VARM.h..[..VARM
    5F30: 01 53 4D 42 30 08 53 4D 42 31 08 53 4D 42 32 08  .SMB0.SMB1.SMB2.
    5F40: 70 69 60 A2 4A 05 94 60 00 70 0A 64 61 70 01 62  pi`.J..`.p.dap.b
    5F50: A2 3A 90 94 61 00 92 93 7B 62 01 00 00 70 0A 1F  .:..a...{b...p..
    5F60: 53 4D 42 30 A0 1A 95 60 0C FF FF FF 00 A0 0C 94  SMB0...`........
    5F70: 60 0A 05 70 74 60 0A 05 00 60 A1 04 70 00 60 76  `..pt`...`..p.`v
    5F80: 61 5B 21 0A 05 70 53 4D 42 30 62 A0 0F 92 93 7B  a[!..pSMB0b....{
    5F90: 62 01 00 00 70 0A 02 53 4D 42 32 A1 02 A5 A0 0D  b...p..SMB2.....
    5FA0: 92 93 7B 53 4D 42 30 01 00 00 A4 01 A2 4A 05 94  ..{SMB0......J..
    5FB0: 60 00 70 0A 64 61 70 01 62 A2 3A 90 94 61 00 92  `.p.dap.b.:..a..
    5FC0: 93 7B 62 01 00 00 70 0A 3F 53 4D 42 31 A0 1A 95  .{b...p.?SMB1...
    5FD0: 60 0C FF FF FF 00 A0 0C 94 60 0A 05 70 74 60 0A  `........`..pt`.
    5FE0: 05 00 60 A1 04 70 00 60 76 61 5B 21 0A 05 70 53  ..`..p.`va[!..pS
    5FF0: 4D 42 31 62 A0 0F 92 93 7B 62 01 00 00 70 0A 02  MB1b....{b...p..
    6000: 53 4D 42 31 A1 02 A5 A0 0D 92 93 7B 53 4D 42 31  SMB1.......{SMB1
    6010: 01 00 00 A4 01 A4 00 5B 01 4D 34 30 38 00 14 40  .......[.M408..@
    6020: 6B 4D 34 37 41 0E 70 11 03 0A 22 60 8C 60 00 53  kM47A.p..."`.`.S
    6030: 54 41 54 8C 60 01 4C 45 4E 5F 8C 60 0A 02 44 41  TAT.`.LEN_.`..DA
    6040: 54 42 8B 60 0A 02 44 41 54 57 5B 13 60 0A 10 0B  TB.`..DATW[.`...
    6050: 00 01 44 54 42 46 70 0A FF 53 54 41 54 70 00 4C  ..DTBFp..STATp.L
    6060: 45 4E 5F 70 00 44 54 42 46 4D 30 30 30 0B E5 0D  EN_p.DTBFM000...
    6070: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    6080: 70 6D 53 6D 62 75 73 45 78 65 63 75 74 6F 72 20  pmSmbusExecutor 
    6090: 28 50 6F 72 74 25 64 2C 20 69 73 52 65 61 64 20  (Port%d, isRead 
    60A0: 25 64 2C 20 50 6F 74 63 6C 20 25 64 2C 20 44 65  %d, Potcl %d, De
    60B0: 76 41 64 64 72 20 30 78 25 58 2C 20 43 6D 64 20  vAddr 0x%X, Cmd 
    60C0: 30 78 25 58 29 0A 00 68 69 6A 6B 6C 00 70 4D 30  0x%X)..hijkl.pM0
    60D0: 34 39 4D 31 32 38 0A 94 61 A0 46 04 91 90 92 93  49M128..a.F.....
    60E0: 68 00 92 93 68 01 93 61 01 70 0A 80 53 54 41 54  h...h..a.p..STAT
    60F0: 4D 34 35 39 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M459.  KER-ASL-C
    6100: 70 6D 53 6D 62 75 73 45 78 65 63 75 74 6F 72 20  pmSmbusExecutor 
    6110: 72 65 74 75 72 6E 20 30 78 38 30 0A 00 00 A4 60  return 0x80....`
    6120: A0 42 04 90 92 93 69 00 92 93 69 01 70 0A 81 53  .B....i...i.p..S
    6130: 54 41 54 4D 34 35 39 0D 20 20 4B 45 52 2D 41 53  TATM459.  KER-AS
    6140: 4C 2D 43 70 6D 53 6D 62 75 73 45 78 65 63 75 74  L-CpmSmbusExecut
    6150: 6F 72 20 72 65 74 75 72 6E 20 30 78 38 31 0A 00  or return 0x81..
    6160: 00 A4 60 08 56 41 4C 50 12 0A 05 00 01 0A 02 0A  ..`.VALP........
    6170: 03 0A 05 A0 45 04 93 89 56 41 4C 50 01 6A 00 00  ....E...VALP.j..
    6180: 00 FF 70 0A 82 53 54 41 54 4D 34 35 39 0D 20 20  ..p..STATM459.  
    6190: 4B 45 52 2D 41 53 4C 2D 43 70 6D 53 6D 62 75 73  KER-ASL-CpmSmbus
    61A0: 45 78 65 63 75 74 6F 72 20 72 65 74 75 72 6E 20  Executor return 
    61B0: 30 78 38 32 0A 00 00 A4 60 A0 46 06 90 93 69 00  0x82....`.F...i.
    61C0: 93 6A 0A 05 70 6D 67 70 83 88 67 00 00 62 A0 41  .j..pmgp..g..b.A
    61D0: 05 91 95 62 01 94 62 0A 20 70 0A 83 53 54 41 54  ...b..b. p..STAT
    61E0: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    61F0: 70 6D 53 6D 62 75 73 45 78 65 63 75 74 6F 72 20  pmSmbusExecutor 
    6200: 72 65 74 75 72 6E 20 30 78 38 33 2C 20 4C 65 6E  return 0x83, Len
    6210: 67 74 68 20 25 64 0A 00 62 00 00 00 00 00 A4 60  gth %d..b......`
    6220: 5B 23 4D 34 30 38 FF FF 72 4D 34 31 34 79 68 0A  [#M408..rM414yh.
    6230: 05 00 64 A0 42 05 93 64 00 5B 27 4D 34 30 38 70  ..d.B..d.['M408p
    6240: 0A 84 53 54 41 54 4D 34 36 30 0D 20 20 4B 45 52  ..STATM460.  KER
    6250: 2D 41 53 4C 2D 43 70 6D 53 6D 62 75 73 45 78 65  -ASL-CpmSmbusExe
    6260: 63 75 74 6F 72 20 72 65 74 75 72 6E 20 30 78 38  cutor return 0x8
    6270: 34 2C 20 4C 6F 63 61 6C 34 20 25 64 0A 00 64 00  4, Local4 %d..d.
    6280: 00 00 00 00 A4 60 5B 80 56 41 52 4D 01 64 0A 09  .....`[.VARM.d..
    6290: 5B 81 33 56 41 52 4D 01 53 4D 42 30 08 53 4D 42  [.3VARM.SMB0.SMB
    62A0: 31 08 53 4D 42 32 08 53 4D 42 33 08 53 4D 42 34  1.SMB2.SMB3.SMB4
    62B0: 08 53 4D 42 35 08 53 4D 42 36 08 53 4D 42 37 08  .SMB5.SMB6.SMB7.
    62C0: 53 4D 42 38 08 70 4D 30 34 39 72 4D 30 38 34 0B  SMB8.pM049rM084.
    62D0: 00 03 00 0A 02 65 A0 1D 93 7B 65 01 00 00 4D 30  .....e...{e...M0
    62E0: 31 32 72 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08  12rM084.........
    62F0: 7D 65 01 00 A0 14 93 68 01 70 53 4D 42 32 66 70  }e.....h.pSMB2fp
    6300: 7B 66 0A 7F 00 53 4D 42 32 A0 4D 06 4D 34 37 37  {f...SMB2.M.M477
    6310: 64 0B 20 4E A0 0A 93 68 01 70 66 53 4D 42 32 A0  d. N...h.pfSMB2.
    6320: 1A 93 7B 65 01 00 00 4D 30 31 32 72 4D 30 38 34  ..{e...M012rM084
    6330: 0B 00 03 00 0A 02 00 0A 08 65 5B 27 4D 34 30 38  .........e['M408
    6340: 70 0A 85 53 54 41 54 4D 34 35 39 0D 20 20 4B 45  p..STATM459.  KE
    6350: 52 2D 41 53 4C 2D 43 70 6D 53 6D 62 75 73 45 78  R-ASL-CpmSmbusEx
    6360: 65 63 75 74 6F 72 20 72 65 74 75 72 6E 20 30 78  ecutor return 0x
    6370: 38 35 0A 00 00 A4 60 A0 42 07 4D 34 37 39 64 0B  85....`.B.M479d.
    6380: 20 4E A0 0A 93 68 01 70 66 53 4D 42 32 A0 1A 93   N...h.pfSMB2...
    6390: 7B 65 01 00 00 4D 30 31 32 72 4D 30 38 34 0B 00  {e...M012rM084..
    63A0: 03 00 0A 02 00 0A 08 65 4D 34 37 38 64 5B 27 4D  .......eM478d['M
    63B0: 34 30 38 70 0A 86 53 54 41 54 4D 34 35 39 0D 20  408p..STATM459. 
    63C0: 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 53 6D 62 75   KER-ASL-CpmSmbu
    63D0: 73 45 78 65 63 75 74 6F 72 20 72 65 74 75 72 6E  sExecutor return
    63E0: 20 30 78 38 36 0A 00 00 A4 60 70 6D 67 70 0A 03   0x86....`pmgp..
    63F0: 63 A2 41 21 94 63 00 70 0A 1F 53 4D 42 30 7D 79  c.A!.c.p..SMB0}y
    6400: 6B 01 00 69 53 4D 42 34 70 6C 53 4D 42 33 70 79  k..iSMB4plSMB3py
    6410: 6A 0A 02 00 53 4D 42 32 70 53 4D 42 32 61 A0 4C  j...SMB2pSMB2a.L
    6420: 05 93 69 00 A0 13 91 93 6A 01 93 6A 0A 02 70 83  ..i.....j..j..p.
    6430: 88 67 01 00 53 4D 42 35 A0 1A 93 6A 0A 03 70 83  .g..SMB5...j..p.
    6440: 88 67 0A 02 00 53 4D 42 36 70 83 88 67 01 00 53  .g...SMB6p..g..S
    6450: 4D 42 35 A0 27 93 6A 0A 05 70 83 88 67 00 00 62  MB5.'.j..p..g..b
    6460: 70 62 53 4D 42 35 70 01 61 A2 11 92 94 61 62 70  pbSMB5p.a....abp
    6470: 83 88 67 61 00 53 4D 42 37 75 61 A1 14 A0 12 93  ..ga.SMB7ua.....
    6480: 6A 0A 05 70 83 88 67 00 00 62 70 62 53 4D 42 35  j..p..g..bpbSMB5
    6490: 7D 79 6A 0A 02 00 0A 40 53 4D 42 32 A0 0A 93 6A  }yj....@SMB2...j
    64A0: 0A 05 70 0B 58 1B 61 A1 06 70 0B E8 03 61 70 01  ..p.X.a..p...ap.
    64B0: 62 A2 21 90 94 61 00 93 7B 62 0A 0E 00 00 A0 08  b.!..a..{b......
    64C0: 93 7B 62 01 00 00 A5 76 61 5B 21 0A 05 70 53 4D  .{b....va[!..pSM
    64D0: 42 30 62 A0 4C 07 90 93 61 00 92 93 7B 62 01 00  B0b.L...a...{b..
    64E0: 00 70 0A 02 53 4D 42 32 A0 0A 93 68 01 70 66 53  .p..SMB2...h.pfS
    64F0: 4D 42 32 A0 1A 93 7B 65 01 00 00 4D 30 31 32 72  MB2...{e...M012r
    6500: 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08 65 4D 34  M084.........eM4
    6510: 37 38 64 5B 27 4D 34 30 38 70 0A 87 53 54 41 54  78d['M408p..STAT
    6520: 4D 34 35 39 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M459.  KER-ASL-C
    6530: 70 6D 53 6D 62 75 73 45 78 65 63 75 74 6F 72 20  pmSmbusExecutor 
    6540: 72 65 74 75 72 6E 20 30 78 38 37 0A 00 00 A4 60  return 0x87....`
    6550: A0 0C 92 93 7B 62 0A 04 00 00 70 00 63 A1 45 0A  ....{b....p.c.E.
    6560: A0 12 92 93 7B 62 0A 08 00 00 70 0A 08 53 4D 42  ....{b....p..SMB
    6570: 30 76 63 A1 4F 08 70 00 63 70 00 53 54 41 54 A0  0vc.O.p.cp.STAT.
    6580: 43 08 92 93 69 00 A0 18 91 93 6A 01 93 6A 0A 02  C...i.....j..j..
    6590: 70 53 4D 42 35 44 41 54 42 70 01 4C 45 4E 5F A0  pSMB5DATBp.LEN_.
    65A0: 20 93 6A 0A 03 70 53 4D 42 36 88 60 0A 03 00 70   .j..pSMB6.`...p
    65B0: 53 4D 42 35 88 60 0A 02 00 70 0A 02 4C 45 4E 5F  SMB5.`...p..LEN_
    65C0: A0 42 04 93 6A 0A 05 70 53 4D 42 32 62 70 53 4D  .B..j..pSMB2bpSM
    65D0: 42 35 62 A0 09 94 62 0A 20 70 0A 20 62 70 62 4C  B5b...b. p. bpbL
    65E0: 45 4E 5F 70 0A 02 61 72 62 0A 02 62 A2 16 95 61  EN_p..arb..b...a
    65F0: 62 70 0A CC 88 60 61 00 70 53 4D 42 37 88 60 61  bp...`a.pSMB7.`a
    6600: 00 75 61 70 7B 53 4D 42 30 0A 1D 00 61 70 61 53  .uap{SMB0...apaS
    6610: 54 41 54 70 0A 1F 53 4D 42 30 A0 0A 93 68 01 70  TATp..SMB0...h.p
    6620: 66 53 4D 42 32 A0 1A 93 7B 65 01 00 00 4D 30 31  fSMB2...{e...M01
    6630: 32 72 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08 65  2rM084.........e
    6640: 4D 34 37 38 64 5B 27 4D 34 30 38 4D 34 36 30 0D  M478d['M408M460.
    6650: 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 53 6D 62    KER-ASL-CpmSmb
    6660: 75 73 45 78 65 63 75 74 6F 72 20 72 65 74 75 72  usExecutor retur
    6670: 6E 20 53 74 3A 20 30 78 25 58 2C 20 4C 65 6E 20  n St: 0x%X, Len 
    6680: 25 64 2C 20 44 61 74 61 3A 20 30 78 25 58 2C 20  %d, Data: 0x%X, 
    6690: 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78 25 58  0x%X, 0x%X, 0x%X
    66A0: 20 2E 2E 2E 0A 00 53 54 41 54 4C 45 4E 5F 83 88   .....STATLEN_..
    66B0: 60 0A 02 00 83 88 60 0A 03 00 83 88 60 0A 04 00  `.....`.....`...
    66C0: 83 88 60 0A 05 00 4D 30 30 30 0B E6 0D A4 60 14  ..`...M000....`.
    66D0: 18 4D 34 37 42 0B 70 4D 34 37 41 68 69 00 6A 00  .M47B.pM47Ahi.j.
    66E0: 00 60 A4 83 88 60 00 00 14 34 4D 34 37 43 0C 70  .`...`...4M47C.p
    66F0: 11 03 0A 02 60 8C 60 00 4C 45 4E 5F 8C 60 01 44  ....`.`.LEN_.`.D
    6700: 41 54 42 70 01 4C 45 4E 5F 70 6B 44 41 54 42 70  ATBp.LEN_pkDATBp
    6710: 4D 34 37 41 68 69 01 6A 00 60 61 A4 61 14 35 4D  M47Ahi.j.`a.a.5M
    6720: 34 37 44 0D 70 11 03 0A 02 60 8C 60 00 4C 45 4E  47D.p....`.`.LEN
    6730: 5F 8C 60 01 44 41 54 42 70 01 4C 45 4E 5F 70 6C  _.`.DATBp.LEN_pl
    6740: 44 41 54 42 70 4D 34 37 41 68 69 0A 02 6A 6B 60  DATBpM47Ahi..jk`
    6750: 61 A4 61 14 41 05 4D 34 37 45 0D 70 11 03 0A 03  a.a.A.M47E.p....
    6760: 60 8C 60 00 4C 45 4E 5F 8C 60 01 44 41 54 4C 8C  `.`.LEN_.`.DATL.
    6770: 60 0A 02 44 41 54 48 70 0A 02 4C 45 4E 5F 70 7B  `..DATHp..LEN_p{
    6780: 6C 0A FF 00 44 41 54 4C 70 7B 7A 6C 0A 08 00 0A  l...DATLp{zl....
    6790: FF 00 44 41 54 48 70 4D 34 37 41 68 69 0A 03 6A  ..DATHpM47Ahi..j
    67A0: 6B 60 61 A4 61 14 15 4D 34 37 46 0D 70 4D 34 37  k`a.a..M47F.pM47
    67B0: 41 68 69 0A 05 6A 6B 6C 61 A4 61 14 4D 47 4D 34  Ahi..jkla.a.MGM4
    67C0: 30 39 0B 70 4D 30 34 39 4D 31 32 38 0A 94 60 A0  09.pM049M128..`.
    67D0: 48 05 93 60 01 4D 34 36 30 0D 20 20 4B 45 52 2D  H..`.M460.  KER-
    67E0: 41 53 4C 2D 43 70 6D 52 65 61 64 53 6D 62 75 73  ASL-CpmReadSmbus
    67F0: 42 79 74 65 20 28 25 64 2C 20 30 78 25 58 2C 20  Byte (%d, 0x%X, 
    6800: 30 78 25 58 29 20 3D 20 30 20 53 6D 62 75 73 20  0x%X) = 0 Smbus 
    6810: 41 63 63 65 73 73 20 44 69 73 61 62 6C 65 0A 00  Access Disable..
    6820: 68 69 6A 00 00 00 A4 00 5B 23 4D 34 30 38 FF FF  hij.....[#M408..
    6830: 72 4D 34 31 34 79 68 0A 05 00 60 5B 80 56 41 52  rM414yh...`[.VAR
    6840: 4D 01 60 0A 09 5B 81 33 56 41 52 4D 01 53 4D 42  M.`..[.3VARM.SMB
    6850: 30 08 53 4D 42 31 08 53 4D 42 32 08 53 4D 42 33  0.SMB1.SMB2.SMB3
    6860: 08 53 4D 42 34 08 53 4D 42 35 08 53 4D 42 36 08  .SMB4.SMB5.SMB6.
    6870: 53 4D 42 37 08 53 4D 42 38 08 70 4D 30 34 39 72  SMB7.SMB8.pM049r
    6880: 4D 30 38 34 0B 00 03 00 0A 02 65 A0 1D 93 7B 65  M084......e...{e
    6890: 01 00 00 4D 30 31 32 72 4D 30 38 34 0B 00 03 00  ...M012rM084....
    68A0: 0A 02 00 0A 08 7D 65 01 00 A0 14 93 68 01 70 53  .....}e.....h.pS
    68B0: 4D 42 32 66 70 7B 66 0A 7F 00 53 4D 42 32 70 00  MB2fp{f...SMB2p.
    68C0: 61 70 0A 64 62 A2 29 90 94 62 00 92 93 7B 61 0A  ap.db.)..b...{a.
    68D0: 10 00 0A 10 7D 53 4D 42 38 0A 10 53 4D 42 38 70  ....}SMB8..SMB8p
    68E0: 74 62 01 00 62 5B 21 0A 05 70 53 4D 42 38 61 70  tb..b[!..pSMB8ap
    68F0: 0A 03 63 A2 47 04 94 63 00 70 01 61 70 0A 64 62  ..c.G..c.p.ap.db
    6900: A2 23 90 94 62 00 92 93 7B 61 01 00 00 70 0A 1F  .#..b...{a...p..
    6910: 53 4D 42 30 70 74 62 01 00 62 5B 21 0A 05 70 53  SMB0ptb..b[!..pS
    6920: 4D 42 30 61 A0 11 93 62 00 70 0A 02 53 4D 42 32  MB0a...b.p..SMB2
    6930: 70 74 63 01 00 63 A1 04 70 00 63 A0 4B 07 90 93  ptc..c..p.c.K...
    6940: 62 00 93 63 00 A0 0A 93 68 01 70 66 53 4D 42 32  b..c....h.pfSMB2
    6950: A0 1A 93 7B 65 01 00 00 4D 30 31 32 72 4D 30 38  ...{e...M012rM08
    6960: 34 0B 00 03 00 0A 02 00 0A 08 65 5B 27 4D 34 30  4.........e['M40
    6970: 38 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  8M460.  KER-ASL-
    6980: 43 70 6D 52 65 61 64 53 6D 62 75 73 42 79 74 65  CpmReadSmbusByte
    6990: 20 28 25 64 2C 20 30 78 25 58 2C 20 30 78 25 58   (%d, 0x%X, 0x%X
    69A0: 29 20 3D 20 30 20 45 52 52 4F 52 20 31 0A 00 68  ) = 0 ERROR 1..h
    69B0: 69 6A 00 00 00 A4 00 70 0A 03 63 A2 47 04 94 63  ij.....p..c.G..c
    69C0: 00 70 01 61 70 0A 64 62 A2 23 90 94 62 00 92 93  .p.ap.db.#..b...
    69D0: 7B 61 01 00 00 70 0A 3F 53 4D 42 31 70 74 62 01  {a...p.?SMB1ptb.
    69E0: 00 62 5B 21 0A 05 70 53 4D 42 31 61 A0 11 93 62  .b[!..pSMB1a...b
    69F0: 00 70 0A 02 53 4D 42 31 70 74 63 01 00 63 A1 04  .p..SMB1ptc..c..
    6A00: 70 00 63 A0 4B 07 90 93 62 00 93 63 00 A0 0A 93  p.c.K...b..c....
    6A10: 68 01 70 66 53 4D 42 32 A0 1A 93 7B 65 01 00 00  h.pfSMB2...{e...
    6A20: 4D 30 31 32 72 4D 30 38 34 0B 00 03 00 0A 02 00  M012rM084.......
    6A30: 0A 08 65 5B 27 4D 34 30 38 4D 34 36 30 0D 20 20  ..e['M408M460.  
    6A40: 4B 45 52 2D 41 53 4C 2D 43 70 6D 52 65 61 64 53  KER-ASL-CpmReadS
    6A50: 6D 62 75 73 42 79 74 65 20 28 25 64 2C 20 30 78  mbusByte (%d, 0x
    6A60: 25 58 2C 20 30 78 25 58 29 20 3D 20 30 20 45 52  %X, 0x%X) = 0 ER
    6A70: 52 4F 52 20 32 0A 00 68 69 6A 00 00 00 A4 00 70  ROR 2..hij.....p
    6A80: 0A 03 63 A2 4E 12 94 63 00 70 0A 1F 53 4D 42 30  ..c.N..c.p..SMB0
    6A90: 7D 79 69 01 00 01 53 4D 42 34 70 6A 53 4D 42 33  }yi...SMB4pjSMB3
    6AA0: 70 0A 08 53 4D 42 32 70 53 4D 42 32 61 70 0A 48  p..SMB2pSMB2ap.H
    6AB0: 53 4D 42 32 70 01 61 70 0B E8 03 64 A2 4E 0B 90  SMB2p.ap...d.N..
    6AC0: 94 64 00 93 7B 61 0A 0E 00 00 70 0B E8 03 62 A2  .d..{a....p...b.
    6AD0: 1C 90 94 62 00 92 93 7B 61 01 00 00 70 74 62 01  ...b...{a...ptb.
    6AE0: 00 62 5B 21 0A 05 70 53 4D 42 30 61 A0 4E 07 93  .b[!..pSMB0a.N..
    6AF0: 62 00 70 0A 02 53 4D 42 32 A0 0A 93 68 01 70 66  b.p..SMB2...h.pf
    6B00: 53 4D 42 32 A0 1A 93 7B 65 01 00 00 4D 30 31 32  SMB2...{e...M012
    6B10: 72 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08 65 5B  rM084.........e[
    6B20: 27 4D 34 30 38 4D 34 36 30 0D 20 20 4B 45 52 2D  'M408M460.  KER-
    6B30: 41 53 4C 2D 43 70 6D 52 65 61 64 53 6D 62 75 73  ASL-CpmReadSmbus
    6B40: 42 79 74 65 20 28 25 64 2C 20 30 78 25 58 2C 20  Byte (%d, 0x%X, 
    6B50: 30 78 25 58 29 20 3D 20 30 20 45 52 52 4F 52 20  0x%X) = 0 ERROR 
    6B60: 33 0A 00 68 69 6A 00 00 00 A4 00 70 74 64 01 00  3..hij.....ptd..
    6B70: 64 5B 21 0A 05 70 53 4D 42 30 61 A0 0F 92 93 7B  d[!..pSMB0a....{
    6B80: 61 0A 04 00 00 70 00 63 70 00 64 A1 26 A0 19 92  a....p.cp.d.&...
    6B90: 93 7B 61 0A 08 00 00 70 0A 08 53 4D 42 30 70 74  .{a....p..SMB0pt
    6BA0: 63 01 00 63 70 00 64 A1 0A 70 00 63 70 53 4D 42  c..cp.d..p.cpSMB
    6BB0: 35 64 70 0A 1F 53 4D 42 30 7D 53 4D 42 38 0A 20  5dp..SMB0}SMB8. 
    6BC0: 53 4D 42 38 A0 0A 93 68 01 70 66 53 4D 42 32 A0  SMB8...h.pfSMB2.
    6BD0: 1A 93 7B 65 01 00 00 4D 30 31 32 72 4D 30 38 34  ..{e...M012rM084
    6BE0: 0B 00 03 00 0A 02 00 0A 08 65 5B 27 4D 34 30 38  .........e['M408
    6BF0: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    6C00: 70 6D 52 65 61 64 53 6D 62 75 73 42 79 74 65 20  pmReadSmbusByte 
    6C10: 28 25 64 2C 20 30 78 25 58 2C 20 30 78 25 58 29  (%d, 0x%X, 0x%X)
    6C20: 20 3D 20 30 78 25 58 20 53 75 63 63 65 73 73 0A   = 0x%X Success.
    6C30: 00 68 69 6A 64 00 00 A4 64 14 4B 49 4D 34 31 30  .hijd...d.KIM410
    6C40: 0C 70 4D 30 34 39 4D 31 32 38 0A 94 60 A0 4F 05  .pM049M128..`.O.
    6C50: 93 60 01 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  .`.M460.  KER-AS
    6C60: 4C 2D 43 70 6D 57 72 69 74 65 53 6D 62 75 73 42  L-CpmWriteSmbusB
    6C70: 79 74 65 20 28 25 64 2C 20 30 78 25 58 2C 20 30  yte (%d, 0x%X, 0
    6C80: 78 25 58 2C 20 30 78 25 58 29 20 3D 20 30 20 53  x%X, 0x%X) = 0 S
    6C90: 6D 62 75 73 20 41 63 63 65 73 73 20 44 69 73 61  mbus Access Disa
    6CA0: 62 6C 65 0A 00 68 69 6A 6B 00 00 A4 00 5B 23 4D  ble..hijk....[#M
    6CB0: 34 30 38 FF FF 72 4D 34 31 34 79 68 0A 05 00 60  408..rM414yh...`
    6CC0: 5B 80 56 41 52 4D 01 60 0A 09 5B 81 33 56 41 52  [.VARM.`..[.3VAR
    6CD0: 4D 01 53 4D 42 30 08 53 4D 42 31 08 53 4D 42 32  M.SMB0.SMB1.SMB2
    6CE0: 08 53 4D 42 33 08 53 4D 42 34 08 53 4D 42 35 08  .SMB3.SMB4.SMB5.
    6CF0: 53 4D 42 36 08 53 4D 42 37 08 53 4D 42 38 08 70  SMB6.SMB7.SMB8.p
    6D00: 4D 30 34 39 72 4D 30 38 34 0B 00 03 00 0A 02 65  M049rM084......e
    6D10: A0 1D 93 7B 65 01 00 00 4D 30 31 32 72 4D 30 38  ...{e...M012rM08
    6D20: 34 0B 00 03 00 0A 02 00 0A 08 7D 65 01 00 A0 14  4.........}e....
    6D30: 93 68 01 70 53 4D 42 32 66 70 7B 66 0A 7F 00 53  .h.pSMB2fp{f...S
    6D40: 4D 42 32 70 00 61 70 0A 64 62 A2 29 90 94 62 00  MB2p.ap.db.)..b.
    6D50: 92 93 7B 61 0A 10 00 0A 10 7D 53 4D 42 38 0A 10  ..{a.....}SMB8..
    6D60: 53 4D 42 38 70 74 62 01 00 62 5B 21 0A 05 70 53  SMB8ptb..b[!..pS
    6D70: 4D 42 38 61 70 0A 03 63 A2 47 04 94 63 00 70 01  MB8ap..c.G..c.p.
    6D80: 61 70 0A 64 62 A2 23 90 94 62 00 92 93 7B 61 01  ap.db.#..b...{a.
    6D90: 00 00 70 0A 1F 53 4D 42 30 70 74 62 01 00 62 5B  ..p..SMB0ptb..b[
    6DA0: 21 0A 05 70 53 4D 42 30 61 A0 11 93 62 00 70 0A  !..pSMB0a...b.p.
    6DB0: 02 53 4D 42 32 70 74 63 01 00 63 A1 04 70 00 63  .SMB2ptc..c..p.c
    6DC0: A0 42 08 90 93 62 00 93 63 00 A0 0A 93 68 01 70  .B...b..c....h.p
    6DD0: 66 53 4D 42 32 A0 1A 93 7B 65 01 00 00 4D 30 31  fSMB2...{e...M01
    6DE0: 32 72 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08 65  2rM084.........e
    6DF0: 5B 27 4D 34 30 38 4D 34 36 30 0D 20 20 4B 45 52  ['M408M460.  KER
    6E00: 2D 41 53 4C 2D 43 70 6D 57 72 69 74 65 53 6D 62  -ASL-CpmWriteSmb
    6E10: 75 73 42 79 74 65 20 28 25 64 2C 20 30 78 25 58  usByte (%d, 0x%X
    6E20: 2C 20 30 78 25 58 2C 20 30 78 25 58 29 20 3D 20  , 0x%X, 0x%X) = 
    6E30: 30 20 45 52 52 4F 52 20 31 0A 00 68 69 6A 6B 00  0 ERROR 1..hijk.
    6E40: 00 A4 00 70 0A 03 63 A2 47 04 94 63 00 70 01 61  ...p..c.G..c.p.a
    6E50: 70 0A 64 62 A2 23 90 94 62 00 92 93 7B 61 01 00  p.db.#..b...{a..
    6E60: 00 70 0A 3F 53 4D 42 31 70 74 62 01 00 62 5B 21  .p.?SMB1ptb..b[!
    6E70: 0A 05 70 53 4D 42 31 61 A0 11 93 62 00 70 0A 02  ..pSMB1a...b.p..
    6E80: 53 4D 42 31 70 74 63 01 00 63 A1 04 70 00 63 A0  SMB1ptc..c..p.c.
    6E90: 42 08 90 93 62 00 93 63 00 A0 0A 93 68 01 70 66  B...b..c....h.pf
    6EA0: 53 4D 42 32 A0 1A 93 7B 65 01 00 00 4D 30 31 32  SMB2...{e...M012
    6EB0: 72 4D 30 38 34 0B 00 03 00 0A 02 00 0A 08 65 5B  rM084.........e[
    6EC0: 27 4D 34 30 38 4D 34 36 30 0D 20 20 4B 45 52 2D  'M408M460.  KER-
    6ED0: 41 53 4C 2D 43 70 6D 57 72 69 74 65 53 6D 62 75  ASL-CpmWriteSmbu
    6EE0: 73 42 79 74 65 20 28 25 64 2C 20 30 78 25 58 2C  sByte (%d, 0x%X,
    6EF0: 20 30 78 25 58 2C 20 30 78 25 58 29 20 3D 20 30   0x%X, 0x%X) = 0
    6F00: 20 45 52 52 4F 52 20 32 0A 00 68 69 6A 6B 00 00   ERROR 2..hijk..
    6F10: A4 00 70 0A 03 63 A2 47 13 94 63 00 70 0A 1F 53  ..p..c.G..c.p..S
    6F20: 4D 42 30 70 79 69 01 00 53 4D 42 34 70 6A 53 4D  MB0pyi..SMB4pjSM
    6F30: 42 33 70 0A 08 53 4D 42 32 70 53 4D 42 32 61 70  B3p..SMB2pSMB2ap
    6F40: 6B 53 4D 42 35 70 0A 48 53 4D 42 32 70 01 61 70  kSMB5p.HSMB2p.ap
    6F50: 0B E8 03 64 A2 45 0C 90 94 64 00 93 7B 61 0A 0E  ...d.E...d..{a..
    6F60: 00 00 70 0B E8 03 62 A2 1C 90 94 62 00 92 93 7B  ..p...b....b...{
    6F70: 61 01 00 00 70 74 62 01 00 62 5B 21 0A 05 70 53  a...ptb..b[!..pS
    6F80: 4D 42 30 61 A0 45 08 93 62 00 70 0A 02 53 4D 42  MB0a.E..b.p..SMB
    6F90: 32 A0 0A 93 68 01 70 66 53 4D 42 32 A0 1A 93 7B  2...h.pfSMB2...{
    6FA0: 65 01 00 00 4D 30 31 32 72 4D 30 38 34 0B 00 03  e...M012rM084...
    6FB0: 00 0A 02 00 0A 08 65 5B 27 4D 34 30 38 4D 34 36  ......e['M408M46
    6FC0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 57  0.  KER-ASL-CpmW
    6FD0: 72 69 74 65 53 6D 62 75 73 42 79 74 65 20 28 25  riteSmbusByte (%
    6FE0: 64 2C 20 30 78 25 58 2C 20 30 78 25 58 2C 20 30  d, 0x%X, 0x%X, 0
    6FF0: 78 25 58 29 20 3D 20 30 20 45 52 52 4F 52 20 33  x%X) = 0 ERROR 3
    7000: 0A 00 68 69 6A 6B 00 00 A4 00 70 74 64 01 00 64  ..hijk....ptd..d
    7010: 5B 21 0A 05 70 53 4D 42 30 61 A0 0F 92 93 7B 61  [!..pSMB0a....{a
    7020: 0A 04 00 00 70 00 63 70 00 64 A1 23 A0 19 92 93  ....p.cp.d.#....
    7030: 7B 61 0A 08 00 00 70 0A 08 53 4D 42 30 70 74 63  {a....p..SMB0ptc
    7040: 01 00 63 70 00 64 A1 07 70 00 63 70 00 64 70 0A  ..cp.d..p.cp.dp.
    7050: 1F 53 4D 42 30 7D 53 4D 42 38 0A 20 53 4D 42 38  .SMB0}SMB8. SMB8
    7060: A0 0A 93 68 01 70 66 53 4D 42 32 A0 1A 93 7B 65  ...h.pfSMB2...{e
    7070: 01 00 00 4D 30 31 32 72 4D 30 38 34 0B 00 03 00  ...M012rM084....
    7080: 0A 02 00 0A 08 65 5B 27 4D 34 30 38 4D 34 36 30  .....e['M408M460
    7090: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 57 72  .  KER-ASL-CpmWr
    70A0: 69 74 65 53 6D 62 75 73 42 79 74 65 20 28 25 64  iteSmbusByte (%d
    70B0: 2C 20 30 78 25 58 2C 20 30 78 25 58 2C 20 30 78  , 0x%X, 0x%X, 0x
    70C0: 25 58 29 20 53 75 63 63 65 73 73 0A 00 68 69 6A  %X) Success..hij
    70D0: 6B 00 00 A4 64 14 4B 14 4D 34 46 31 09 4D 34 36  k...d.K.M4F1.M46
    70E0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 43  0.  KER-ASL-CpmC
    70F0: 68 65 63 6B 45 78 70 61 6E 64 65 72 49 6E 70 75  heckExpanderInpu
    7100: 74 45 76 65 6E 74 20 28 30 78 25 58 29 20 53 74  tEvent (0x%X) St
    7110: 61 72 74 0A 00 68 00 00 00 00 00 70 00 65 A0 4D  art..h.....p.e.M
    7120: 0B 90 92 95 68 00 92 94 68 0A 03 70 4D 34 46 30  ....h...h..pM4F0
    7130: 60 A0 4A 0A 92 93 60 00 72 60 0A 10 60 72 60 77  `.J...`.r`..`r`w
    7140: 68 0A 26 00 60 A0 46 09 93 4D 30 34 39 60 00 68  h.&.`.F..M049`.h
    7150: 70 4D 30 34 39 60 0A 15 61 70 4D 30 34 39 60 0A  pM049`..apM049`.
    7160: 16 62 70 4D 30 34 39 60 0A 1E 63 70 4D 34 30 39  .bpM049`..cpM409
    7170: 61 62 00 64 4D 30 34 43 60 0A 1E 64 7F 63 64 64  ab.dM04C`..d.cdd
    7180: 7B 64 4D 30 34 39 60 0A 1C 64 7D 64 4D 30 34 39  {dM049`..d}dM049
    7190: 60 0A 1D 64 A0 43 04 92 95 4D 30 34 39 60 0A 17  `..d.C...M049`..
    71A0: 01 70 4D 30 34 39 60 0A 25 63 70 4D 34 30 39 61  .pM049`.%cpM409a
    71B0: 62 01 65 4D 30 34 43 60 0A 25 65 7F 63 65 65 7B  b.eM04C`.%e.cee{
    71C0: 65 4D 30 34 39 60 0A 23 65 7D 65 4D 30 34 39 60  eM049`.#e}eM049`
    71D0: 0A 24 65 79 65 0A 08 65 7D 64 65 65 4D 34 36 30  .$eye..e}deeM460
    71E0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 70 6D 43 68  .  KER-ASL-CpmCh
    71F0: 65 63 6B 45 78 70 61 6E 64 65 72 49 6E 70 75 74  eckExpanderInput
    7200: 45 76 65 6E 74 20 28 30 78 25 58 29 20 3D 20 30  Event (0x%X) = 0
    7210: 78 25 58 20 45 6E 64 0A 00 68 65 00 00 00 00 A4  x%X End..he.....
    7220: 65 5B 01 4D 34 45 35 00 08 4D 34 45 37 0A 5A 08  e[.M4E5..M4E7.Z.
    7230: 4D 34 45 38 0A 5A 08 4D 34 45 39 0A 5A 08 4D 34  M4E8.Z.M4E9.Z.M4
    7240: 45 41 0C 5A 5A 5A 5A 08 4D 34 45 42 0C 5A 5A 5A  EA.ZZZZ.M4EB.ZZZ
    7250: 5A 08 4D 34 45 43 12 44 11 03 0A 02 12 44 07 05  Z.M4EC.D.....D..
    7260: 12 10 07 0A 06 0A 0F 0A 13 0A 10 0A 12 0A 14 0A  ................
    7270: 15 12 17 06 0D 49 32 43 30 00 0A 91 0A 92 00 0C  .....I2C0.......
    7280: 4A 1E D8 FE 0C 00 20 DC FE 12 17 06 0D 49 32 43  J..... ......I2C
    7290: 31 00 0A 93 0A 94 00 0C 4C 1E D8 FE 0C 00 30 DC  1.......L.....0.
    72A0: FE 12 17 06 0D 49 32 43 32 00 0A 71 0A 72 01 0C  .....I2C2..q.r..
    72B0: 4E 1E D8 FE 0C 00 40 DC FE 12 17 06 0D 49 32 43  N.....@......I2C
    72C0: 33 00 0A 13 0A 14 01 0C 50 1E D8 FE 0C 00 50 DC  3.......P.....P.
    72D0: FE 12 49 09 07 12 05 02 01 0A 11 12 17 06 0D 49  ..I............I
    72E0: 32 43 30 00 0A 91 0A 92 01 0C 4A 1E D8 FE 0C 00  2C0.......J.....
    72F0: 20 DC FE 12 17 06 0D 49 32 43 31 00 0A 93 0A 94   ......I2C1.....
    7300: 01 0C 4C 1E D8 FE 0C 00 30 DC FE 12 17 06 0D 49  ..L.....0......I
    7310: 32 43 32 00 0A 95 0A 96 01 0C 4E 1E D8 FE 0C 00  2C2.......N.....
    7320: 40 DC FE 12 17 06 0D 49 32 43 33 00 0A 97 0A 98  @......I2C3.....
    7330: 01 0C 50 1E D8 FE 0C 00 50 DC FE 12 17 06 0D 49  ..P.....P......I
    7340: 32 43 34 00 0A 0D 0A 0E 00 0C 52 1E D8 FE 0C 00  2C4.......R.....
    7350: 60 DC FE 12 17 06 0D 49 32 43 35 00 0A 13 0A 14  `......I2C5.....
    7360: 00 0C 54 1E D8 FE 0C 00 B0 DC FE 14 47 14 4D 34  ..T.........G.M4
    7370: 45 36 09 08 5F 54 5F 30 00 70 4D 30 38 35 60 70  E6.._T_0.pM085`p
    7380: 83 88 4D 34 45 43 00 00 61 70 01 62 70 00 67 A2  ..M4EC..ap.bp.g.
    7390: 3D 92 94 62 61 70 83 88 4D 34 45 43 62 00 63 70  =..bap..M4ECb.cp
    73A0: 83 88 63 00 00 64 70 83 88 64 00 00 65 70 01 66  ..c..dp..d..ep.f
    73B0: A2 14 92 94 66 65 A0 0C 93 83 88 64 66 00 60 70  ....fe.....df.`p
    73C0: 01 67 A5 75 66 A0 05 93 01 67 A5 75 62 A0 06 94  .g.uf....g.ub...
    73D0: 62 61 A4 00 70 01 62 70 87 63 61 A2 4C 07 01 70  ba..p.bp.ca.L..p
    73E0: 99 68 00 5F 54 5F 30 A0 0F 93 5F 54 5F 30 00 70  .h._T_0..._T_0.p
    73F0: 0D 49 32 43 30 00 60 A1 4F 05 A0 0F 93 5F 54 5F  .I2C0.`.O...._T_
    7400: 30 01 70 0D 49 32 43 31 00 60 A1 4C 04 A0 10 93  0.p.I2C1.`.L....
    7410: 5F 54 5F 30 0A 02 70 0D 49 32 43 32 00 60 A1 38  _T_0..p.I2C2.`.8
    7420: A0 10 93 5F 54 5F 30 0A 03 70 0D 49 32 43 33 00  ..._T_0..p.I2C3.
    7430: 60 A1 25 A0 10 93 5F 54 5F 30 0A 04 70 0D 49 32  `.%..._T_0..p.I2
    7440: 43 34 00 60 A1 12 A0 10 93 5F 54 5F 30 0A 05 70  C4.`....._T_0..p
    7450: 0D 49 32 43 35 00 60 A5 A2 1B 92 94 62 61 70 83  .I2C5.`.....bap.
    7460: 88 63 62 00 64 70 83 88 64 00 00 65 A0 05 93 65  .cb.dp..d..e...e
    7470: 60 A5 75 62 A0 06 94 62 61 A4 00 70 83 88 64 01  `.ub...ba..p..d.
    7480: 00 4D 34 45 37 70 83 88 64 0A 02 00 4D 34 45 38  .M4E7p..d...M4E8
    7490: 70 83 88 64 0A 03 00 4D 34 45 39 70 83 88 64 0A  p..d...M4E9p..d.
    74A0: 04 00 4D 34 45 41 70 83 88 64 0A 05 00 4D 34 45  ..M4EAp..d...M4E
    74B0: 42 A4 01 14 46 69 4D 34 45 30 0D 70 4D 34 45 36  B...FiM4E0.pM4E6
    74C0: 68 60 A0 08 93 60 00 A4 0B 00 FF 08 52 54 46 46  h`...`......RTFF
    74D0: 11 05 0B 00 01 00 70 4D 34 45 41 60 70 4D 34 45  ......pM4EA`pM4E
    74E0: 42 61 5B 80 56 41 52 30 00 60 0A 02 5B 81 2E 56  Ba[.VAR0.`..[..V
    74F0: 41 52 30 01 41 44 54 44 02 41 44 50 53 01 41 44  AR0.ADTD.ADPS.AD
    7500: 50 44 01 41 44 53 4F 01 41 44 53 43 01 41 44 53  PD.ADSO.ADSC.ADS
    7510: 52 01 41 44 49 53 01 41 44 44 53 03 5B 80 56 41  R.ADIS.ADDS.[.VA
    7520: 52 31 00 61 0B 00 01 5B 81 4C 08 56 41 52 31 03  R1.a...[.L.VAR1.
    7530: 49 43 30 30 20 49 43 30 34 20 00 40 04 49 43 31  IC00 IC04 .@.IC1
    7540: 30 20 49 43 31 34 20 49 43 31 38 20 49 43 31 43  0 IC14 IC18 IC1C
    7550: 20 49 43 32 30 20 00 40 06 49 43 33 30 20 49 43   IC20 .@.IC30 IC
    7560: 33 34 20 49 43 33 38 20 49 43 33 43 20 49 43 34  34 IC38 IC3C IC4
    7570: 30 20 49 43 34 34 20 49 43 34 38 20 00 40 04 49  0 IC44 IC48 .@.I
    7580: 43 35 34 20 00 40 0A 49 43 36 43 20 49 43 37 30  C54 .@.IC6C IC70
    7590: 20 49 43 37 34 20 49 43 37 38 20 49 43 37 43 20   IC74 IC78 IC7C 
    75A0: 49 43 38 30 20 00 40 0C 49 43 39 43 20 00 40 2A  IC80 .@.IC9C .@*
    75B0: 49 43 46 34 20 08 42 55 46 46 11 06 0A 03 00 00  ICF4 .BUFF......
    75C0: 00 8C 42 55 46 46 00 41 4F 41 43 8C 42 55 46 46  ..BUFF.AOAC.BUFF
    75D0: 01 49 53 43 4C 8C 42 55 46 46 0A 02 49 53 44 41  .ISCL.BUFF..ISDA
    75E0: 5B 23 4D 34 45 35 FF FF 70 0C A0 86 01 00 61 70  [#M4E5..p.....ap
    75F0: 00 60 70 41 44 54 44 41 4F 41 43 70 4D 30 31 31  .`pADTDAOACpM011
    7600: 0C 00 0D D8 FE 4D 34 45 37 00 0A 08 49 53 43 4C  .....M4E7...ISCL
    7610: 70 4D 30 31 31 0C 00 0D D8 FE 4D 34 45 38 00 0A  pM011.....M4E8..
    7620: 08 49 53 44 41 4D 30 31 32 0C 00 0D D8 FE 4D 34  .ISDAM012.....M4
    7630: 45 37 00 0A 08 4D 34 45 39 4D 30 31 32 0C 00 0D  E7...M4E9M012...
    7640: D8 FE 4D 34 45 38 00 0A 08 4D 34 45 39 70 41 4F  ..M4E8...M4E9pAO
    7650: 41 43 62 A0 35 93 62 0A 03 70 00 41 44 54 44 70  ACb.5.b..p.ADTDp
    7660: 01 41 44 50 44 70 41 44 44 53 63 A2 1D 92 93 63  .ADPDpADDSc....c
    7670: 0A 07 76 61 5B 21 0A 0A 70 41 44 44 53 63 A0 0A  ..va[!..pADDSc..
    7680: 93 61 00 70 0B 01 FF 60 A5 A0 47 05 93 60 00 70  .a.p...`..G..`.p
    7690: 49 43 37 30 62 A2 4B 04 93 0A 20 7B 62 0A 20 00  IC70b.K... {b. .
    76A0: A0 34 93 61 00 4D 34 36 30 0D 20 20 49 32 63 54  .4.a.M460.  I2cT
    76B0: 69 6D 65 6F 75 74 20 66 6F 72 20 49 44 45 20 3A  imeout for IDE :
    76C0: 20 28 30 78 25 58 29 0A 00 62 00 00 00 00 00 70   (0x%X)..b.....p
    76D0: 0B 02 FF 60 A5 70 49 43 37 30 62 76 61 5B 21 0A  ...`.pIC70bva[!.
    76E0: 0A A0 44 06 93 60 00 70 00 49 43 36 43 70 49 43  ..D..`.p.IC6CpIC
    76F0: 39 43 62 A2 42 05 92 93 00 7B 62 01 00 A0 3C 93  9Cb.B....{b...<.
    7700: 61 00 4D 34 36 30 0D 20 20 49 32 63 54 69 6D 65  a.M460.  I2cTime
    7710: 6F 75 74 20 66 6F 72 20 66 49 32 63 44 69 73 61  out for fI2cDisa
    7720: 62 6C 65 20 3A 20 28 30 78 25 58 29 0A 00 62 00  ble : (0x%X)..b.
    7730: 00 00 00 00 70 0B 03 FF 60 A5 70 49 43 39 43 62  ....p...`.pIC9Cb
    7740: 76 61 5B 21 0A 0A A0 4A 04 93 60 00 70 0A 63 49  va[!...J..`.p.cI
    7750: 43 30 30 70 69 49 43 30 34 70 0B 85 02 49 43 31  C00piIC04p...IC1
    7760: 34 70 0B 57 03 49 43 31 38 70 0C 40 00 40 00 49  4p.W.IC18p.@.@.I
    7770: 43 37 43 70 00 49 43 33 38 70 00 49 43 33 34 70  C7Cp.IC38p.IC34p
    7780: 00 49 43 33 30 70 49 43 34 30 62 70 49 43 35 34  .IC30pIC40bpIC54
    7790: 62 A0 41 06 93 60 00 70 01 49 43 36 43 70 49 43  b.A..`.p.IC6CpIC
    77A0: 39 43 62 A2 4F 04 93 00 7B 62 01 00 A0 3A 93 61  9Cb.O...{b...:.a
    77B0: 00 4D 34 36 30 0D 20 20 49 32 63 54 69 6D 65 6F  .M460.  I2cTimeo
    77C0: 75 74 20 66 6F 72 20 49 32 63 45 6E 61 62 6C 65  ut for I2cEnable
    77D0: 20 3A 20 28 30 78 25 58 29 0A 00 62 00 00 00 00   : (0x%X)..b....
    77E0: 00 70 0B 04 FF 60 A5 70 49 43 39 43 62 76 61 5B  .p...`.pIC9Cbva[
    77F0: 21 0A 0A A0 40 1E 93 60 00 70 6B 63 70 6A 64 70  !...@..`.pkcpjdp
    7800: 00 65 70 00 66 70 0A 02 67 A2 4A 1C 94 72 63 64  .ep.fp..g.J..rcd
    7810: 00 00 A0 3A 93 61 00 4D 34 36 30 0D 20 20 49 32  ...:.a.M460.  I2
    7820: 63 54 69 6D 65 6F 75 74 20 66 6F 72 20 54 78 52  cTimeout for TxR
    7830: 78 3A 20 28 30 78 25 58 2C 20 30 78 25 58 29 0A  x: (0x%X, 0x%X).
    7840: 00 63 64 00 00 00 00 70 0B 06 FF 60 A5 70 49 43  .cd....p...`.pIC
    7850: 37 30 62 A0 16 92 93 7B 62 0A 08 00 00 70 49 43  70b....{b....pIC
    7860: 31 30 62 76 61 5B 21 0A 0A 9F 70 49 43 37 34 62  10bva[!...pIC74b
    7870: A0 0C 92 93 62 00 76 61 5B 21 0A 0A 9F A0 18 94  ....b.va[!......
    7880: 63 01 70 7B 99 83 88 6C 65 00 00 0A FF 00 49 43  c.p{...le.....IC
    7890: 31 30 76 63 75 65 A1 45 07 A0 1D 90 93 63 01 92  10vcue.E.....c..
    78A0: 93 64 00 70 7B 99 83 88 6C 65 00 00 0A FF 00 49  .d.p{...le.....I
    78B0: 43 31 30 76 63 75 65 A1 44 05 A0 21 90 93 63 01  C10vcue.D..!..c.
    78C0: 93 64 00 70 7D 7B 99 83 88 6C 65 00 00 0A FF 00  .d.p}{...le.....
    78D0: 0B 00 02 00 49 43 31 30 76 63 75 65 A1 2F A0 15  ....IC10vcue./..
    78E0: 90 93 63 00 94 64 01 70 0B 00 01 49 43 31 30 70  ..c..d.p...IC10p
    78F0: 01 66 76 64 A1 17 A0 15 90 93 63 00 93 64 01 70  .fvd......c..d.p
    7900: 0B 00 03 49 43 31 30 70 01 66 76 64 76 61 5B 21  ...IC10p.fvdva[!
    7910: 0A 0A 70 49 43 33 34 62 A0 44 04 92 93 00 7B 62  ..pIC34b.D....{b
    7920: 0A 40 00 70 49 43 35 34 67 70 49 43 38 30 62 4D  .@.pIC54gpIC80bM
    7930: 34 36 30 0D 20 20 49 32 63 54 58 20 41 62 72 74  460.  I2cTX Abrt
    7940: 20 53 6F 75 72 63 65 3A 20 28 30 78 25 58 29 0A   Source: (0x%X).
    7950: 00 62 00 00 00 00 00 70 0B 05 FF 60 A5 A0 48 05  .b.....p...`..H.
    7960: 92 93 66 00 70 49 43 37 30 62 A2 4B 04 92 93 7B  ..f.pIC70b.K...{
    7970: 62 0A 08 00 0A 08 70 49 43 37 30 62 A0 33 93 61  b.....pIC70b.3.a
    7980: 00 4D 34 36 30 0D 20 20 49 32 63 54 69 6D 65 6F  .M460.  I2cTimeo
    7990: 75 74 20 66 6F 72 20 52 78 20 3A 20 28 30 78 25  ut for Rx : (0x%
    79A0: 58 29 0A 00 62 00 00 00 00 00 70 0B 07 FF 60 A5  X)..b.....p...`.
    79B0: 76 61 5B 21 0A 0A A0 1D 92 93 66 00 70 49 43 31  va[!......f.pIC1
    79C0: 30 62 70 62 88 52 54 46 46 67 00 76 61 5B 21 0A  0bpb.RTFFg.va[!.
    79D0: 14 70 00 66 5B 27 4D 34 45 35 A0 48 05 93 60 00  .p.f['M4E5.H..`.
    79E0: 70 49 43 37 30 62 A2 4C 04 93 0A 20 7B 62 0A 20  pIC70b.L... {b. 
    79F0: 00 A0 35 93 61 00 4D 34 36 30 0D 20 20 49 32 63  ..5.a.M460.  I2c
    7A00: 54 69 6D 65 6F 75 74 20 66 6F 72 20 49 44 45 32  Timeout for IDE2
    7A10: 20 3A 20 28 30 78 25 58 29 0A 00 62 00 00 00 00   : (0x%X)..b....
    7A20: 00 70 0B 08 FF 60 A5 70 49 43 37 30 62 76 61 5B  .p...`.pIC70bva[
    7A30: 21 0A 0A A0 4C 06 90 94 60 0B 04 FF 95 60 0B 08  !...L...`....`..
    7A40: FF 70 00 49 43 36 43 70 49 43 39 43 62 A2 42 05  .p.IC6CpIC9Cb.B.
    7A50: 92 93 00 7B 62 01 00 A0 3C 93 61 00 4D 34 36 30  ...{b...<.a.M460
    7A60: 0D 20 20 49 32 63 54 69 6D 65 6F 75 74 20 66 6F  .  I2cTimeout fo
    7A70: 72 20 66 49 32 63 44 69 73 61 62 6C 65 20 3A 20  r fI2cDisable : 
    7A80: 28 30 78 25 58 29 0A 00 62 00 00 00 00 00 70 0B  (0x%X)..b.....p.
    7A90: 09 FF 60 A5 70 49 43 39 43 62 76 61 5B 21 0A 0A  ..`.pIC9Cbva[!..
    7AA0: 70 41 4F 41 43 63 A0 46 06 93 63 0A 03 70 00 41  pAOACc.F..c..p.A
    7AB0: 44 50 44 70 41 44 44 53 62 A2 4C 04 92 93 62 00  DPDpADDSb.L...b.
    7AC0: A0 39 93 61 00 4D 34 36 30 0D 20 20 49 32 63 54  .9.a.M460.  I2cT
    7AD0: 69 6D 65 6F 75 74 20 66 6F 72 20 41 4F 41 43 20  imeout for AOAC 
    7AE0: 4F 66 66 20 3A 20 28 30 78 25 58 29 0A 00 62 00  Off : (0x%X)..b.
    7AF0: 00 00 00 00 70 0B 10 FF 60 A5 76 61 5B 21 0A 0A  ....p...`.va[!..
    7B00: 70 41 44 44 53 62 70 0A 03 41 44 54 44 4D 30 31  pADDSbp..ADTDM01
    7B10: 32 0C 00 0D D8 FE 4D 34 45 37 00 0A 08 49 53 43  2.....M4E7...ISC
    7B20: 4C 4D 30 31 32 0C 00 0D D8 FE 4D 34 45 38 00 0A  LM012.....M4E8..
    7B30: 08 49 53 44 41 8B 52 54 46 46 00 53 54 41 54 70  .ISDA.RTFF.STATp
    7B40: 60 53 54 41 54 A4 52 54 46 46 14 46 09 4D 34 45  `STAT.RTFF.F.M4E
    7B50: 31 0B 08 52 54 46 46 11 05 0B 00 01 00 08 57 52  1..RTFF.......WR
    7B60: 46 46 11 03 01 00 8C 57 52 46 46 00 57 44 41 54  FF.....WRFF.WDAT
    7B70: 70 6A 57 44 41 54 70 4D 34 45 30 68 69 01 01 57  pjWDATpM4E0hi..W
    7B80: 52 46 46 52 54 46 46 8B 52 54 46 46 00 53 54 41  RFFRTFF.RTFF.STA
    7B90: 54 8C 52 54 46 46 0A 02 52 44 41 54 70 53 54 41  T.RTFF..RDATpSTA
    7BA0: 54 60 70 52 44 41 54 61 4D 34 36 30 0D 20 20 52  T`pRDATaM460.  R
    7BB0: 65 61 64 20 49 32 43 20 42 79 74 65 20 28 30 78  ead I2C Byte (0x
    7BC0: 25 58 2C 20 30 78 25 58 29 0A 00 60 61 00 00 00  %X, 0x%X)..`a...
    7BD0: 00 A0 0D 93 60 00 A4 7B 52 44 41 54 0A FF 00 A4  ....`..{RDAT....
    7BE0: 00 14 45 07 4D 34 45 32 0C 08 57 52 46 46 11 05  ..E.M4E2..WRFF..
    7BF0: 0A 02 00 00 8C 57 52 46 46 00 57 44 41 31 8C 57  .....WRFF.WDA1.W
    7C00: 52 46 46 01 57 44 41 32 70 6A 57 44 41 31 70 7B  RFF.WDA2pjWDA1p{
    7C10: 6B 0A FF 00 57 44 41 32 70 4D 34 45 30 68 69 00  k...WDA2pM4E0hi.
    7C20: 0A 02 57 52 46 46 60 8B 60 00 53 54 41 54 70 53  ..WRFF`.`.STATpS
    7C30: 54 41 54 61 4D 34 36 30 0D 20 20 57 72 69 74 65  TATaM460.  Write
    7C40: 20 49 32 43 20 42 79 74 65 28 30 78 25 58 29 0A   I2C Byte(0x%X).
    7C50: 00 61 00 00 00 00 00 10 47 08 5C 2E 5F 53 42 5F  .a......G.\._SB_
    7C60: 47 50 49 4F 14 4A 07 58 49 4E 49 00 4D 34 36 30  GPIO.J.XINI.M460
    7C70: 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F 53 42 2E  .  KER-ASL-\_SB.
    7C80: 47 50 49 4F 2E 5F 49 4E 49 20 53 74 61 72 74 0A  GPIO._INI Start.
    7C90: 00 00 00 00 00 00 00 A0 1E 92 93 4D 34 46 30 00  ...........M4F0.
    7CA0: 4D 34 46 31 00 4D 34 46 31 01 4D 34 46 31 0A 02  M4F1.M4F1.M4F1..
    7CB0: 4D 34 46 31 0A 03 4D 34 36 30 0D 20 20 4B 45 52  M4F1..M460.  KER
    7CC0: 2D 41 53 4C 2D 5C 5F 53 42 2E 47 50 49 4F 2E 5F  -ASL-\_SB.GPIO._
    7CD0: 49 4E 49 20 45 6E 64 0A 00 00 00 00 00 00 00 10  INI End.........
    7CE0: 8D 90 01 5C 5F 47 50 45 14 4E 5C 53 49 45 30 08  ...\_GPE.N\SIE0.
    7CF0: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C  M460.  KER-ASL-\
    7D00: 5F 47 50 45 2E 53 49 45 30 20 53 74 61 72 74 0A  _GPE.SIE0 Start.
    7D10: 00 00 00 00 00 00 00 A0 42 04 5B 12 5C 2E 5F 47  ........B.[.\._G
    7D20: 50 45 42 49 45 30 00 4D 34 36 30 0D 20 20 4B 45  PEBIE0.M460.  KE
    7D30: 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F  R-ASL-Callout \_
    7D40: 47 50 45 2E 42 49 45 30 0A 00 00 00 00 00 00 00  GPE.BIE0........
    7D50: 5C 2E 5F 47 50 45 42 49 45 30 70 4D 34 46 31 00  \._GPEBIE0pM4F1.
    7D60: 60 A0 4B 04 93 7B 60 01 00 01 A0 42 04 5B 12 5C  `.K..{`....B.[.\
    7D70: 2E 5F 47 50 45 53 50 30 30 00 4D 34 36 30 0D 20  ._GPESP00.M460. 
    7D80: 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74   KER-ASL-Callout
    7D90: 20 5C 5F 47 50 45 2E 53 50 30 30 0A 00 00 00 00   \_GPE.SP00.....
    7DA0: 00 00 00 5C 2E 5F 47 50 45 53 50 30 30 A0 4D 04  ...\._GPESP00.M.
    7DB0: 93 7B 60 0A 02 00 0A 02 A0 42 04 5B 12 5C 2E 5F  .{`......B.[.\._
    7DC0: 47 50 45 53 50 30 31 00 4D 34 36 30 0D 20 20 4B  GPESP01.M460.  K
    7DD0: 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C  ER-ASL-Callout \
    7DE0: 5F 47 50 45 2E 53 50 30 31 0A 00 00 00 00 00 00  _GPE.SP01.......
    7DF0: 00 5C 2E 5F 47 50 45 53 50 30 31 A0 4D 04 93 7B  .\._GPESP01.M..{
    7E00: 60 0A 04 00 0A 04 A0 42 04 5B 12 5C 2E 5F 47 50  `......B.[.\._GP
    7E10: 45 53 50 30 32 00 4D 34 36 30 0D 20 20 4B 45 52  ESP02.M460.  KER
    7E20: 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47  -ASL-Callout \_G
    7E30: 50 45 2E 53 50 30 32 0A 00 00 00 00 00 00 00 5C  PE.SP02........\
    7E40: 2E 5F 47 50 45 53 50 30 32 A0 4D 04 93 7B 60 0A  ._GPESP02.M..{`.
    7E50: 08 00 0A 08 A0 42 04 5B 12 5C 2E 5F 47 50 45 53  .....B.[.\._GPES
    7E60: 50 30 33 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41  P03.M460.  KER-A
    7E70: 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45  SL-Callout \_GPE
    7E80: 2E 53 50 30 33 0A 00 00 00 00 00 00 00 5C 2E 5F  .SP03........\._
    7E90: 47 50 45 53 50 30 33 A0 4D 04 93 7B 60 0A 10 00  GPESP03.M..{`...
    7EA0: 0A 10 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50 30  ...B.[.\._GPESP0
    7EB0: 34 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  4.M460.  KER-ASL
    7EC0: 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53  -Callout \_GPE.S
    7ED0: 50 30 34 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50  P04........\._GP
    7EE0: 45 53 50 30 34 A0 4D 04 93 7B 60 0A 20 00 0A 20  ESP04.M..{`. .. 
    7EF0: A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50 30 35 00  .B.[.\._GPESP05.
    7F00: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43  M460.  KER-ASL-C
    7F10: 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50 30  allout \_GPE.SP0
    7F20: 35 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 53  5........\._GPES
    7F30: 50 30 35 A0 4D 04 93 7B 60 0A 40 00 0A 40 A0 42  P05.M..{`.@..@.B
    7F40: 04 5B 12 5C 2E 5F 47 50 45 53 50 30 36 00 4D 34  .[.\._GPESP06.M4
    7F50: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  60.  KER-ASL-Cal
    7F60: 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50 30 36 0A  lout \_GPE.SP06.
    7F70: 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 30  .......\._GPESP0
    7F80: 36 A0 4D 04 93 7B 60 0A 80 00 0A 80 A0 42 04 5B  6.M..{`......B.[
    7F90: 12 5C 2E 5F 47 50 45 53 50 30 37 00 4D 34 36 30  .\._GPESP07.M460
    7FA0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    7FB0: 75 74 20 5C 5F 47 50 45 2E 53 50 30 37 0A 00 00  ut \_GPE.SP07...
    7FC0: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 30 37 A0  .....\._GPESP07.
    7FD0: 4F 04 93 7B 60 0B 00 01 00 0B 00 01 A0 42 04 5B  O..{`........B.[
    7FE0: 12 5C 2E 5F 47 50 45 53 50 31 30 00 4D 34 36 30  .\._GPESP10.M460
    7FF0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    8000: 75 74 20 5C 5F 47 50 45 2E 53 50 31 30 0A 00 00  ut \_GPE.SP10...
    8010: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 30 A0  .....\._GPESP10.
    8020: 4F 04 93 7B 60 0B 00 02 00 0B 00 02 A0 42 04 5B  O..{`........B.[
    8030: 12 5C 2E 5F 47 50 45 53 50 31 31 00 4D 34 36 30  .\._GPESP11.M460
    8040: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    8050: 75 74 20 5C 5F 47 50 45 2E 53 50 31 31 0A 00 00  ut \_GPE.SP11...
    8060: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 31 A0  .....\._GPESP11.
    8070: 4F 04 93 7B 60 0B 00 04 00 0B 00 04 A0 42 04 5B  O..{`........B.[
    8080: 12 5C 2E 5F 47 50 45 53 50 31 32 00 4D 34 36 30  .\._GPESP12.M460
    8090: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    80A0: 75 74 20 5C 5F 47 50 45 2E 53 50 31 32 0A 00 00  ut \_GPE.SP12...
    80B0: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 32 A0  .....\._GPESP12.
    80C0: 4F 04 93 7B 60 0B 00 08 00 0B 00 08 A0 42 04 5B  O..{`........B.[
    80D0: 12 5C 2E 5F 47 50 45 53 50 31 33 00 4D 34 36 30  .\._GPESP13.M460
    80E0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    80F0: 75 74 20 5C 5F 47 50 45 2E 53 50 31 33 0A 00 00  ut \_GPE.SP13...
    8100: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 33 A0  .....\._GPESP13.
    8110: 4F 04 93 7B 60 0B 00 10 00 0B 00 10 A0 42 04 5B  O..{`........B.[
    8120: 12 5C 2E 5F 47 50 45 53 50 31 34 00 4D 34 36 30  .\._GPESP14.M460
    8130: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    8140: 75 74 20 5C 5F 47 50 45 2E 53 50 31 34 0A 00 00  ut \_GPE.SP14...
    8150: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 34 A0  .....\._GPESP14.
    8160: 4F 04 93 7B 60 0B 00 20 00 0B 00 20 A0 42 04 5B  O..{`.. ... .B.[
    8170: 12 5C 2E 5F 47 50 45 53 50 31 35 00 4D 34 36 30  .\._GPESP15.M460
    8180: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    8190: 75 74 20 5C 5F 47 50 45 2E 53 50 31 35 0A 00 00  ut \_GPE.SP15...
    81A0: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 35 A0  .....\._GPESP15.
    81B0: 4F 04 93 7B 60 0B 00 40 00 0B 00 40 A0 42 04 5B  O..{`..@...@.B.[
    81C0: 12 5C 2E 5F 47 50 45 53 50 31 36 00 4D 34 36 30  .\._GPESP16.M460
    81D0: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    81E0: 75 74 20 5C 5F 47 50 45 2E 53 50 31 36 0A 00 00  ut \_GPE.SP16...
    81F0: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 36 A0  .....\._GPESP16.
    8200: 4F 04 93 7B 60 0B 00 80 00 0B 00 80 A0 42 04 5B  O..{`........B.[
    8210: 12 5C 2E 5F 47 50 45 53 50 31 37 00 4D 34 36 30  .\._GPESP17.M460
    8220: 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F  .  KER-ASL-Callo
    8230: 75 74 20 5C 5F 47 50 45 2E 53 50 31 37 0A 00 00  ut \_GPE.SP17...
    8240: 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 31 37 A0  .....\._GPESP17.
    8250: 42 04 5B 12 5C 2E 5F 47 50 45 41 49 45 30 00 4D  B.[.\._GPEAIE0.M
    8260: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61  460.  KER-ASL-Ca
    8270: 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 41 49 45 30  llout \_GPE.AIE0
    8280: 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 41 49  ........\._GPEAI
    8290: 45 30 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  E0M460.  KER-ASL
    82A0: 2D 5C 5F 47 50 45 2E 53 49 45 30 20 45 6E 64 0A  -\_GPE.SIE0 End.
    82B0: 00 00 00 00 00 00 00 14 4E 5C 53 49 45 31 08 4D  ........N\SIE1.M
    82C0: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F  460.  KER-ASL-\_
    82D0: 47 50 45 2E 53 49 45 31 20 53 74 61 72 74 0A 00  GPE.SIE1 Start..
    82E0: 00 00 00 00 00 00 A0 42 04 5B 12 5C 2E 5F 47 50  .......B.[.\._GP
    82F0: 45 42 49 45 31 00 4D 34 36 30 0D 20 20 4B 45 52  EBIE1.M460.  KER
    8300: 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47  -ASL-Callout \_G
    8310: 50 45 2E 42 49 45 31 0A 00 00 00 00 00 00 00 5C  PE.BIE1........\
    8320: 2E 5F 47 50 45 42 49 45 31 70 4D 34 46 31 01 60  ._GPEBIE1pM4F1.`
    8330: A0 4B 04 93 7B 60 01 00 01 A0 42 04 5B 12 5C 2E  .K..{`....B.[.\.
    8340: 5F 47 50 45 53 50 32 30 00 4D 34 36 30 0D 20 20  _GPESP20.M460.  
    8350: 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20  KER-ASL-Callout 
    8360: 5C 5F 47 50 45 2E 53 50 32 30 0A 00 00 00 00 00  \_GPE.SP20......
    8370: 00 00 5C 2E 5F 47 50 45 53 50 32 30 A0 4D 04 93  ..\._GPESP20.M..
    8380: 7B 60 0A 02 00 0A 02 A0 42 04 5B 12 5C 2E 5F 47  {`......B.[.\._G
    8390: 50 45 53 50 32 31 00 4D 34 36 30 0D 20 20 4B 45  PESP21.M460.  KE
    83A0: 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F  R-ASL-Callout \_
    83B0: 47 50 45 2E 53 50 32 31 0A 00 00 00 00 00 00 00  GPE.SP21........
    83C0: 5C 2E 5F 47 50 45 53 50 32 31 A0 4D 04 93 7B 60  \._GPESP21.M..{`
    83D0: 0A 04 00 0A 04 A0 42 04 5B 12 5C 2E 5F 47 50 45  ......B.[.\._GPE
    83E0: 53 50 32 32 00 4D 34 36 30 0D 20 20 4B 45 52 2D  SP22.M460.  KER-
    83F0: 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50  ASL-Callout \_GP
    8400: 45 2E 53 50 32 32 0A 00 00 00 00 00 00 00 5C 2E  E.SP22........\.
    8410: 5F 47 50 45 53 50 32 32 A0 4D 04 93 7B 60 0A 08  _GPESP22.M..{`..
    8420: 00 0A 08 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50  ....B.[.\._GPESP
    8430: 32 33 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  23.M460.  KER-AS
    8440: 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E  L-Callout \_GPE.
    8450: 53 50 32 33 0A 00 00 00 00 00 00 00 5C 2E 5F 47  SP23........\._G
    8460: 50 45 53 50 32 33 A0 4D 04 93 7B 60 0A 10 00 0A  PESP23.M..{`....
    8470: 10 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50 32 34  ..B.[.\._GPESP24
    8480: 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  .M460.  KER-ASL-
    8490: 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50  Callout \_GPE.SP
    84A0: 32 34 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45  24........\._GPE
    84B0: 53 50 32 34 A0 4D 04 93 7B 60 0A 20 00 0A 20 A0  SP24.M..{`. .. .
    84C0: 42 04 5B 12 5C 2E 5F 47 50 45 53 50 32 35 00 4D  B.[.\._GPESP25.M
    84D0: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61  460.  KER-ASL-Ca
    84E0: 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50 32 35  llout \_GPE.SP25
    84F0: 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50  ........\._GPESP
    8500: 32 35 A0 4D 04 93 7B 60 0A 40 00 0A 40 A0 42 04  25.M..{`.@..@.B.
    8510: 5B 12 5C 2E 5F 47 50 45 53 50 32 36 00 4D 34 36  [.\._GPESP26.M46
    8520: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C  0.  KER-ASL-Call
    8530: 6F 75 74 20 5C 5F 47 50 45 2E 53 50 32 36 0A 00  out \_GPE.SP26..
    8540: 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 32 36  ......\._GPESP26
    8550: A0 4D 04 93 7B 60 0A 80 00 0A 80 A0 42 04 5B 12  .M..{`......B.[.
    8560: 5C 2E 5F 47 50 45 53 50 32 37 00 4D 34 36 30 0D  \._GPESP27.M460.
    8570: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8580: 74 20 5C 5F 47 50 45 2E 53 50 32 37 0A 00 00 00  t \_GPE.SP27....
    8590: 00 00 00 00 5C 2E 5F 47 50 45 53 50 32 37 A0 4F  ....\._GPESP27.O
    85A0: 04 93 7B 60 0B 00 01 00 0B 00 01 A0 42 04 5B 12  ..{`........B.[.
    85B0: 5C 2E 5F 47 50 45 53 50 33 30 00 4D 34 36 30 0D  \._GPESP30.M460.
    85C0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    85D0: 74 20 5C 5F 47 50 45 2E 53 50 33 30 0A 00 00 00  t \_GPE.SP30....
    85E0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 30 A0 4F  ....\._GPESP30.O
    85F0: 04 93 7B 60 0B 00 02 00 0B 00 02 A0 42 04 5B 12  ..{`........B.[.
    8600: 5C 2E 5F 47 50 45 53 50 33 31 00 4D 34 36 30 0D  \._GPESP31.M460.
    8610: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8620: 74 20 5C 5F 47 50 45 2E 53 50 33 31 0A 00 00 00  t \_GPE.SP31....
    8630: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 31 A0 4F  ....\._GPESP31.O
    8640: 04 93 7B 60 0B 00 04 00 0B 00 04 A0 42 04 5B 12  ..{`........B.[.
    8650: 5C 2E 5F 47 50 45 53 50 33 32 00 4D 34 36 30 0D  \._GPESP32.M460.
    8660: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8670: 74 20 5C 5F 47 50 45 2E 53 50 33 32 0A 00 00 00  t \_GPE.SP32....
    8680: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 32 A0 4F  ....\._GPESP32.O
    8690: 04 93 7B 60 0B 00 08 00 0B 00 08 A0 42 04 5B 12  ..{`........B.[.
    86A0: 5C 2E 5F 47 50 45 53 50 33 33 00 4D 34 36 30 0D  \._GPESP33.M460.
    86B0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    86C0: 74 20 5C 5F 47 50 45 2E 53 50 33 33 0A 00 00 00  t \_GPE.SP33....
    86D0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 33 A0 4F  ....\._GPESP33.O
    86E0: 04 93 7B 60 0B 00 10 00 0B 00 10 A0 42 04 5B 12  ..{`........B.[.
    86F0: 5C 2E 5F 47 50 45 53 50 33 34 00 4D 34 36 30 0D  \._GPESP34.M460.
    8700: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8710: 74 20 5C 5F 47 50 45 2E 53 50 33 34 0A 00 00 00  t \_GPE.SP34....
    8720: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 34 A0 4F  ....\._GPESP34.O
    8730: 04 93 7B 60 0B 00 20 00 0B 00 20 A0 42 04 5B 12  ..{`.. ... .B.[.
    8740: 5C 2E 5F 47 50 45 53 50 33 35 00 4D 34 36 30 0D  \._GPESP35.M460.
    8750: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8760: 74 20 5C 5F 47 50 45 2E 53 50 33 35 0A 00 00 00  t \_GPE.SP35....
    8770: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 35 A0 4F  ....\._GPESP35.O
    8780: 04 93 7B 60 0B 00 40 00 0B 00 40 A0 42 04 5B 12  ..{`..@...@.B.[.
    8790: 5C 2E 5F 47 50 45 53 50 33 36 00 4D 34 36 30 0D  \._GPESP36.M460.
    87A0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    87B0: 74 20 5C 5F 47 50 45 2E 53 50 33 36 0A 00 00 00  t \_GPE.SP36....
    87C0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 36 A0 4F  ....\._GPESP36.O
    87D0: 04 93 7B 60 0B 00 80 00 0B 00 80 A0 42 04 5B 12  ..{`........B.[.
    87E0: 5C 2E 5F 47 50 45 53 50 33 37 00 4D 34 36 30 0D  \._GPESP37.M460.
    87F0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8800: 74 20 5C 5F 47 50 45 2E 53 50 33 37 0A 00 00 00  t \_GPE.SP37....
    8810: 00 00 00 00 5C 2E 5F 47 50 45 53 50 33 37 A0 42  ....\._GPESP37.B
    8820: 04 5B 12 5C 2E 5F 47 50 45 41 49 45 31 00 4D 34  .[.\._GPEAIE1.M4
    8830: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  60.  KER-ASL-Cal
    8840: 6C 6F 75 74 20 5C 5F 47 50 45 2E 41 49 45 31 0A  lout \_GPE.AIE1.
    8850: 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 41 49 45  .......\._GPEAIE
    8860: 31 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  1M460.  KER-ASL-
    8870: 5C 5F 47 50 45 2E 53 49 45 31 20 45 6E 64 0A 00  \_GPE.SIE1 End..
    8880: 00 00 00 00 00 00 14 4F 5C 53 49 45 32 08 4D 34  .......O\SIE2.M4
    8890: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F 47  60.  KER-ASL-\_G
    88A0: 50 45 2E 53 49 45 32 20 53 74 61 72 74 0A 00 00  PE.SIE2 Start...
    88B0: 00 00 00 00 00 A0 42 04 5B 12 5C 2E 5F 47 50 45  ......B.[.\._GPE
    88C0: 42 49 45 32 00 4D 34 36 30 0D 20 20 4B 45 52 2D  BIE2.M460.  KER-
    88D0: 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50  ASL-Callout \_GP
    88E0: 45 2E 42 49 45 32 0A 00 00 00 00 00 00 00 5C 2E  E.BIE2........\.
    88F0: 5F 47 50 45 42 49 45 32 70 4D 34 46 31 0A 02 60  _GPEBIE2pM4F1..`
    8900: A0 4B 04 93 7B 60 01 00 01 A0 42 04 5B 12 5C 2E  .K..{`....B.[.\.
    8910: 5F 47 50 45 53 50 34 30 00 4D 34 36 30 0D 20 20  _GPESP40.M460.  
    8920: 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20  KER-ASL-Callout 
    8930: 5C 5F 47 50 45 2E 53 50 34 30 0A 00 00 00 00 00  \_GPE.SP40......
    8940: 00 00 5C 2E 5F 47 50 45 53 50 34 30 A0 4D 04 93  ..\._GPESP40.M..
    8950: 7B 60 0A 02 00 0A 02 A0 42 04 5B 12 5C 2E 5F 47  {`......B.[.\._G
    8960: 50 45 53 50 34 31 00 4D 34 36 30 0D 20 20 4B 45  PESP41.M460.  KE
    8970: 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F  R-ASL-Callout \_
    8980: 47 50 45 2E 53 50 34 31 0A 00 00 00 00 00 00 00  GPE.SP41........
    8990: 5C 2E 5F 47 50 45 53 50 34 31 A0 4D 04 93 7B 60  \._GPESP41.M..{`
    89A0: 0A 04 00 0A 04 A0 42 04 5B 12 5C 2E 5F 47 50 45  ......B.[.\._GPE
    89B0: 53 50 34 32 00 4D 34 36 30 0D 20 20 4B 45 52 2D  SP42.M460.  KER-
    89C0: 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50  ASL-Callout \_GP
    89D0: 45 2E 53 50 34 32 0A 00 00 00 00 00 00 00 5C 2E  E.SP42........\.
    89E0: 5F 47 50 45 53 50 34 32 A0 4D 04 93 7B 60 0A 08  _GPESP42.M..{`..
    89F0: 00 0A 08 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50  ....B.[.\._GPESP
    8A00: 34 33 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  43.M460.  KER-AS
    8A10: 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E  L-Callout \_GPE.
    8A20: 53 50 34 33 0A 00 00 00 00 00 00 00 5C 2E 5F 47  SP43........\._G
    8A30: 50 45 53 50 34 33 A0 4D 04 93 7B 60 0A 10 00 0A  PESP43.M..{`....
    8A40: 10 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50 34 34  ..B.[.\._GPESP44
    8A50: 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  .M460.  KER-ASL-
    8A60: 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50  Callout \_GPE.SP
    8A70: 34 34 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45  44........\._GPE
    8A80: 53 50 34 34 A0 4D 04 93 7B 60 0A 20 00 0A 20 A0  SP44.M..{`. .. .
    8A90: 42 04 5B 12 5C 2E 5F 47 50 45 53 50 34 35 00 4D  B.[.\._GPESP45.M
    8AA0: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61  460.  KER-ASL-Ca
    8AB0: 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50 34 35  llout \_GPE.SP45
    8AC0: 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50  ........\._GPESP
    8AD0: 34 35 A0 4D 04 93 7B 60 0A 40 00 0A 40 A0 42 04  45.M..{`.@..@.B.
    8AE0: 5B 12 5C 2E 5F 47 50 45 53 50 34 36 00 4D 34 36  [.\._GPESP46.M46
    8AF0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C  0.  KER-ASL-Call
    8B00: 6F 75 74 20 5C 5F 47 50 45 2E 53 50 34 36 0A 00  out \_GPE.SP46..
    8B10: 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 34 36  ......\._GPESP46
    8B20: A0 4D 04 93 7B 60 0A 80 00 0A 80 A0 42 04 5B 12  .M..{`......B.[.
    8B30: 5C 2E 5F 47 50 45 53 50 34 37 00 4D 34 36 30 0D  \._GPESP47.M460.
    8B40: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8B50: 74 20 5C 5F 47 50 45 2E 53 50 34 37 0A 00 00 00  t \_GPE.SP47....
    8B60: 00 00 00 00 5C 2E 5F 47 50 45 53 50 34 37 A0 4F  ....\._GPESP47.O
    8B70: 04 93 7B 60 0B 00 01 00 0B 00 01 A0 42 04 5B 12  ..{`........B.[.
    8B80: 5C 2E 5F 47 50 45 53 50 35 30 00 4D 34 36 30 0D  \._GPESP50.M460.
    8B90: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8BA0: 74 20 5C 5F 47 50 45 2E 53 50 35 30 0A 00 00 00  t \_GPE.SP50....
    8BB0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 30 A0 4F  ....\._GPESP50.O
    8BC0: 04 93 7B 60 0B 00 02 00 0B 00 02 A0 42 04 5B 12  ..{`........B.[.
    8BD0: 5C 2E 5F 47 50 45 53 50 35 31 00 4D 34 36 30 0D  \._GPESP51.M460.
    8BE0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8BF0: 74 20 5C 5F 47 50 45 2E 53 50 35 31 0A 00 00 00  t \_GPE.SP51....
    8C00: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 31 A0 4F  ....\._GPESP51.O
    8C10: 04 93 7B 60 0B 00 04 00 0B 00 04 A0 42 04 5B 12  ..{`........B.[.
    8C20: 5C 2E 5F 47 50 45 53 50 35 32 00 4D 34 36 30 0D  \._GPESP52.M460.
    8C30: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8C40: 74 20 5C 5F 47 50 45 2E 53 50 35 32 0A 00 00 00  t \_GPE.SP52....
    8C50: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 32 A0 4F  ....\._GPESP52.O
    8C60: 04 93 7B 60 0B 00 08 00 0B 00 08 A0 42 04 5B 12  ..{`........B.[.
    8C70: 5C 2E 5F 47 50 45 53 50 35 33 00 4D 34 36 30 0D  \._GPESP53.M460.
    8C80: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8C90: 74 20 5C 5F 47 50 45 2E 53 50 35 33 0A 00 00 00  t \_GPE.SP53....
    8CA0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 33 A0 4F  ....\._GPESP53.O
    8CB0: 04 93 7B 60 0B 00 10 00 0B 00 10 A0 42 04 5B 12  ..{`........B.[.
    8CC0: 5C 2E 5F 47 50 45 53 50 35 34 00 4D 34 36 30 0D  \._GPESP54.M460.
    8CD0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8CE0: 74 20 5C 5F 47 50 45 2E 53 50 35 34 0A 00 00 00  t \_GPE.SP54....
    8CF0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 34 A0 4F  ....\._GPESP54.O
    8D00: 04 93 7B 60 0B 00 20 00 0B 00 20 A0 42 04 5B 12  ..{`.. ... .B.[.
    8D10: 5C 2E 5F 47 50 45 53 50 35 35 00 4D 34 36 30 0D  \._GPESP55.M460.
    8D20: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8D30: 74 20 5C 5F 47 50 45 2E 53 50 35 35 0A 00 00 00  t \_GPE.SP55....
    8D40: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 35 A0 4F  ....\._GPESP55.O
    8D50: 04 93 7B 60 0B 00 40 00 0B 00 40 A0 42 04 5B 12  ..{`..@...@.B.[.
    8D60: 5C 2E 5F 47 50 45 53 50 35 36 00 4D 34 36 30 0D  \._GPESP56.M460.
    8D70: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8D80: 74 20 5C 5F 47 50 45 2E 53 50 35 36 0A 00 00 00  t \_GPE.SP56....
    8D90: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 36 A0 4F  ....\._GPESP56.O
    8DA0: 04 93 7B 60 0B 00 80 00 0B 00 80 A0 42 04 5B 12  ..{`........B.[.
    8DB0: 5C 2E 5F 47 50 45 53 50 35 37 00 4D 34 36 30 0D  \._GPESP57.M460.
    8DC0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    8DD0: 74 20 5C 5F 47 50 45 2E 53 50 35 37 0A 00 00 00  t \_GPE.SP57....
    8DE0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 35 37 A0 42  ....\._GPESP57.B
    8DF0: 04 5B 12 5C 2E 5F 47 50 45 41 49 45 32 00 4D 34  .[.\._GPEAIE2.M4
    8E00: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  60.  KER-ASL-Cal
    8E10: 6C 6F 75 74 20 5C 5F 47 50 45 2E 41 49 45 32 0A  lout \_GPE.AIE2.
    8E20: 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 41 49 45  .......\._GPEAIE
    8E30: 32 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  2M460.  KER-ASL-
    8E40: 5C 5F 47 50 45 2E 53 49 45 32 20 45 6E 64 0A 00  \_GPE.SIE2 End..
    8E50: 00 00 00 00 00 00 14 4F 5C 53 49 45 33 08 4D 34  .......O\SIE3.M4
    8E60: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F 47  60.  KER-ASL-\_G
    8E70: 50 45 2E 53 49 45 33 20 53 74 61 72 74 0A 00 00  PE.SIE3 Start...
    8E80: 00 00 00 00 00 A0 42 04 5B 12 5C 2E 5F 47 50 45  ......B.[.\._GPE
    8E90: 42 49 45 33 00 4D 34 36 30 0D 20 20 4B 45 52 2D  BIE3.M460.  KER-
    8EA0: 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50  ASL-Callout \_GP
    8EB0: 45 2E 42 49 45 33 0A 00 00 00 00 00 00 00 5C 2E  E.BIE3........\.
    8EC0: 5F 47 50 45 42 49 45 33 70 4D 34 46 31 0A 03 60  _GPEBIE3pM4F1..`
    8ED0: A0 4B 04 93 7B 60 01 00 01 A0 42 04 5B 12 5C 2E  .K..{`....B.[.\.
    8EE0: 5F 47 50 45 53 50 36 30 00 4D 34 36 30 0D 20 20  _GPESP60.M460.  
    8EF0: 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20  KER-ASL-Callout 
    8F00: 5C 5F 47 50 45 2E 53 50 36 30 0A 00 00 00 00 00  \_GPE.SP60......
    8F10: 00 00 5C 2E 5F 47 50 45 53 50 36 30 A0 4D 04 93  ..\._GPESP60.M..
    8F20: 7B 60 0A 02 00 0A 02 A0 42 04 5B 12 5C 2E 5F 47  {`......B.[.\._G
    8F30: 50 45 53 50 36 31 00 4D 34 36 30 0D 20 20 4B 45  PESP61.M460.  KE
    8F40: 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F  R-ASL-Callout \_
    8F50: 47 50 45 2E 53 50 36 31 0A 00 00 00 00 00 00 00  GPE.SP61........
    8F60: 5C 2E 5F 47 50 45 53 50 36 31 A0 4D 04 93 7B 60  \._GPESP61.M..{`
    8F70: 0A 04 00 0A 04 A0 42 04 5B 12 5C 2E 5F 47 50 45  ......B.[.\._GPE
    8F80: 53 50 36 32 00 4D 34 36 30 0D 20 20 4B 45 52 2D  SP62.M460.  KER-
    8F90: 41 53 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50  ASL-Callout \_GP
    8FA0: 45 2E 53 50 36 32 0A 00 00 00 00 00 00 00 5C 2E  E.SP62........\.
    8FB0: 5F 47 50 45 53 50 36 32 A0 4D 04 93 7B 60 0A 08  _GPESP62.M..{`..
    8FC0: 00 0A 08 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50  ....B.[.\._GPESP
    8FD0: 36 33 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53  63.M460.  KER-AS
    8FE0: 4C 2D 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E  L-Callout \_GPE.
    8FF0: 53 50 36 33 0A 00 00 00 00 00 00 00 5C 2E 5F 47  SP63........\._G
    9000: 50 45 53 50 36 33 A0 4D 04 93 7B 60 0A 10 00 0A  PESP63.M..{`....
    9010: 10 A0 42 04 5B 12 5C 2E 5F 47 50 45 53 50 36 34  ..B.[.\._GPESP64
    9020: 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  .M460.  KER-ASL-
    9030: 43 61 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50  Callout \_GPE.SP
    9040: 36 34 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45  64........\._GPE
    9050: 53 50 36 34 A0 4D 04 93 7B 60 0A 20 00 0A 20 A0  SP64.M..{`. .. .
    9060: 42 04 5B 12 5C 2E 5F 47 50 45 53 50 36 35 00 4D  B.[.\._GPESP65.M
    9070: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61  460.  KER-ASL-Ca
    9080: 6C 6C 6F 75 74 20 5C 5F 47 50 45 2E 53 50 36 35  llout \_GPE.SP65
    9090: 0A 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50  ........\._GPESP
    90A0: 36 35 A0 4D 04 93 7B 60 0A 40 00 0A 40 A0 42 04  65.M..{`.@..@.B.
    90B0: 5B 12 5C 2E 5F 47 50 45 53 50 36 36 00 4D 34 36  [.\._GPESP66.M46
    90C0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C  0.  KER-ASL-Call
    90D0: 6F 75 74 20 5C 5F 47 50 45 2E 53 50 36 36 0A 00  out \_GPE.SP66..
    90E0: 00 00 00 00 00 00 5C 2E 5F 47 50 45 53 50 36 36  ......\._GPESP66
    90F0: A0 4D 04 93 7B 60 0A 80 00 0A 80 A0 42 04 5B 12  .M..{`......B.[.
    9100: 5C 2E 5F 47 50 45 53 50 36 37 00 4D 34 36 30 0D  \._GPESP67.M460.
    9110: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9120: 74 20 5C 5F 47 50 45 2E 53 50 36 37 0A 00 00 00  t \_GPE.SP67....
    9130: 00 00 00 00 5C 2E 5F 47 50 45 53 50 36 37 A0 4F  ....\._GPESP67.O
    9140: 04 93 7B 60 0B 00 01 00 0B 00 01 A0 42 04 5B 12  ..{`........B.[.
    9150: 5C 2E 5F 47 50 45 53 50 37 30 00 4D 34 36 30 0D  \._GPESP70.M460.
    9160: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9170: 74 20 5C 5F 47 50 45 2E 53 50 37 30 0A 00 00 00  t \_GPE.SP70....
    9180: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 30 A0 4F  ....\._GPESP70.O
    9190: 04 93 7B 60 0B 00 02 00 0B 00 02 A0 42 04 5B 12  ..{`........B.[.
    91A0: 5C 2E 5F 47 50 45 53 50 37 31 00 4D 34 36 30 0D  \._GPESP71.M460.
    91B0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    91C0: 74 20 5C 5F 47 50 45 2E 53 50 37 31 0A 00 00 00  t \_GPE.SP71....
    91D0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 31 A0 4F  ....\._GPESP71.O
    91E0: 04 93 7B 60 0B 00 04 00 0B 00 04 A0 42 04 5B 12  ..{`........B.[.
    91F0: 5C 2E 5F 47 50 45 53 50 37 32 00 4D 34 36 30 0D  \._GPESP72.M460.
    9200: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9210: 74 20 5C 5F 47 50 45 2E 53 50 37 32 0A 00 00 00  t \_GPE.SP72....
    9220: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 32 A0 4F  ....\._GPESP72.O
    9230: 04 93 7B 60 0B 00 08 00 0B 00 08 A0 42 04 5B 12  ..{`........B.[.
    9240: 5C 2E 5F 47 50 45 53 50 37 33 00 4D 34 36 30 0D  \._GPESP73.M460.
    9250: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9260: 74 20 5C 5F 47 50 45 2E 53 50 37 33 0A 00 00 00  t \_GPE.SP73....
    9270: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 33 A0 4F  ....\._GPESP73.O
    9280: 04 93 7B 60 0B 00 10 00 0B 00 10 A0 42 04 5B 12  ..{`........B.[.
    9290: 5C 2E 5F 47 50 45 53 50 37 34 00 4D 34 36 30 0D  \._GPESP74.M460.
    92A0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    92B0: 74 20 5C 5F 47 50 45 2E 53 50 37 34 0A 00 00 00  t \_GPE.SP74....
    92C0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 34 A0 4F  ....\._GPESP74.O
    92D0: 04 93 7B 60 0B 00 20 00 0B 00 20 A0 42 04 5B 12  ..{`.. ... .B.[.
    92E0: 5C 2E 5F 47 50 45 53 50 37 35 00 4D 34 36 30 0D  \._GPESP75.M460.
    92F0: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9300: 74 20 5C 5F 47 50 45 2E 53 50 37 35 0A 00 00 00  t \_GPE.SP75....
    9310: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 35 A0 4F  ....\._GPESP75.O
    9320: 04 93 7B 60 0B 00 40 00 0B 00 40 A0 42 04 5B 12  ..{`..@...@.B.[.
    9330: 5C 2E 5F 47 50 45 53 50 37 36 00 4D 34 36 30 0D  \._GPESP76.M460.
    9340: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    9350: 74 20 5C 5F 47 50 45 2E 53 50 37 36 0A 00 00 00  t \_GPE.SP76....
    9360: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 36 A0 4F  ....\._GPESP76.O
    9370: 04 93 7B 60 0B 00 80 00 0B 00 80 A0 42 04 5B 12  ..{`........B.[.
    9380: 5C 2E 5F 47 50 45 53 50 37 37 00 4D 34 36 30 0D  \._GPESP77.M460.
    9390: 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C 6C 6F 75    KER-ASL-Callou
    93A0: 74 20 5C 5F 47 50 45 2E 53 50 37 37 0A 00 00 00  t \_GPE.SP77....
    93B0: 00 00 00 00 5C 2E 5F 47 50 45 53 50 37 37 A0 42  ....\._GPESP77.B
    93C0: 04 5B 12 5C 2E 5F 47 50 45 41 49 45 33 00 4D 34  .[.\._GPEAIE3.M4
    93D0: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 43 61 6C  60.  KER-ASL-Cal
    93E0: 6C 6F 75 74 20 5C 5F 47 50 45 2E 41 49 45 33 0A  lout \_GPE.AIE3.
    93F0: 00 00 00 00 00 00 00 5C 2E 5F 47 50 45 41 49 45  .......\._GPEAIE
    9400: 33 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D  3M460.  KER-ASL-
    9410: 5C 5F 47 50 45 2E 53 49 45 33 20 45 6E 64 0A 00  \_GPE.SIE3 End..
    9420: 00 00 00 00 00 00 08 4D 34 44 32 11 03 0A 08 14  .......M4D2.....
    9430: 4D 1B 58 4C 30 42 08 70 11 03 0A 08 63 8B 63 00  M.XL0B.p....c.c.
    9440: 4D 32 35 34 8C 63 0A 02 4D 32 35 35 8A 63 0A 03  M254.c..M255.c..
    9450: 4D 32 35 36 70 00 4D 32 35 36 70 0A 07 4D 32 35  M256p.M256p..M25
    9460: 34 70 0A 30 4D 32 35 35 A0 44 18 5B 12 5C 2E 5F  4p.0M255.D.[.\._
    9470: 53 42 5F 41 4C 49 42 00 4D 34 36 30 0D 20 20 4B  SB_ALIB.M460.  K
    9480: 45 52 2D 41 53 4C 2D 43 61 6C 6C 20 5C 5F 53 42  ER-ASL-Call \_SB
    9490: 2E 41 4C 49 42 20 28 30 78 30 43 2C 20 30 78 25  .ALIB (0x0C, 0x%
    94A0: 58 29 0A 00 63 00 00 00 00 00 70 5C 2E 5F 53 42  X)..c.....p\._SB
    94B0: 5F 41 4C 49 42 0A 0C 63 64 70 64 4D 34 44 32 8A  _ALIB..cdpdM4D2.
    94C0: 4D 34 44 32 00 4D 34 44 30 8A 4D 34 44 32 0A 04  M4D2.M4D0.M4D2..
    94D0: 4D 34 44 31 99 4D 34 44 30 60 99 4D 34 44 31 61  M4D1.M4D0`.M4D1a
    94E0: 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 41  M460.  KER-ASL-A
    94F0: 4C 49 42 20 52 65 74 75 72 6E 20 44 61 74 61 20  LIB Return Data 
    9500: 28 30 78 25 58 2C 20 30 78 25 58 29 0A 00 60 61  (0x%X, 0x%X)..`a
    9510: 00 00 00 00 A0 42 06 93 60 00 A0 4C 05 5B 12 5C  .....B..`..L.[.\
    9520: 2E 5F 53 42 5F 41 50 41 44 00 70 61 88 5C 2F 03  ._SB_APAD.pa.\/.
    9530: 5F 53 42 5F 41 50 41 44 4D 34 34 36 01 00 4D 34  _SB_APADM446..M4
    9540: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 4E 6F 74  60.  KER-ASL-Not
    9550: 69 66 79 20 5C 5F 53 42 2E 41 50 41 44 20 30 78  ify \_SB.APAD 0x
    9560: 38 30 0A 00 00 00 00 00 00 00 86 5C 2E 5F 53 42  80.........\._SB
    9570: 5F 41 50 41 44 0A 80 A1 45 07 A0 30 93 60 01 4D  _APAD...E..0.`.M
    9580: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 4E 6F  460.  KER-ASL-No
    9590: 74 69 66 79 20 5C 5F 53 42 2E 41 50 41 44 20 30  tify \_SB.APAD 0
    95A0: 78 38 34 0A 00 00 00 00 00 00 00 A1 41 04 A0 3E  x84.........A..>
    95B0: 93 60 0A 02 4D 34 36 30 0D 20 20 4B 45 52 2D 41  .`..M460.  KER-A
    95C0: 53 4C 2D 4E 6F 74 69 66 79 20 5C 5F 53 42 2E 41  SL-Notify \_SB.A
    95D0: 50 41 44 20 30 78 38 35 0A 00 00 00 00 00 00 00  PAD 0x85........
    95E0: A0 0C 5B 12 4E 46 50 43 00 4E 46 50 43 10 41 24  ..[.NFPC.NFPC.A$
    95F0: 5C 5F 53 42 5F 08 4D 41 43 4F 00 5B 82 42 23 41  \_SB_.MACO.[.B#A
    9600: 50 41 44 08 5F 48 49 44 0D 41 43 50 49 30 30 30  PAD._HID.ACPI000
    9610: 43 00 08 4D 34 34 36 12 04 02 01 00 14 40 0D 5F  C..M446......@._
    9620: 53 54 41 00 A0 47 09 5C 5F 4F 53 49 0D 50 72 6F  STA..G.\_OSI.Pro
    9630: 63 65 73 73 6F 72 20 41 67 67 72 65 67 61 74 6F  cessor Aggregato
    9640: 72 20 44 65 76 69 63 65 00 70 4D 30 34 41 4D 31  r Device.pM04AM1
    9650: 32 38 0A 91 60 A0 37 93 7B 60 0A 80 00 0A 80 4D  28..`.7.{`.....M
    9660: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F  460.  KER-ASL-\_
    9670: 53 42 2E 41 50 41 44 2E 5F 53 54 41 20 3D 20 30  SB.APAD._STA = 0
    9680: 78 46 0A 00 00 00 00 00 00 00 A4 0A 0F A1 2E 4D  xF.............M
    9690: 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F  460.  KER-ASL-\_
    96A0: 53 42 2E 41 50 41 44 2E 5F 53 54 41 20 3D 20 30  SB.APAD._STA = 0
    96B0: 78 30 0A 00 00 00 00 00 00 00 A4 00 A1 30 4D 34  x0...........0M4
    96C0: 36 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 31 2D 5C  60.  KER-ASL-1-\
    96D0: 5F 53 42 2E 41 50 41 44 2E 5F 53 54 41 20 3D 20  _SB.APAD._STA = 
    96E0: 30 78 30 0A 00 00 00 00 00 00 00 A4 00 14 43 0D  0x0...........C.
    96F0: 5F 49 4E 49 00 4D 34 36 30 0D 20 20 4B 45 52 2D  _INI.M460.  KER-
    9700: 41 53 4C 2D 5C 5F 53 42 2E 41 50 41 44 2E 5F 49  ASL-\_SB.APAD._I
    9710: 4E 49 0A 00 00 00 00 00 00 00 70 4D 30 34 41 4D  NI........pM04AM
    9720: 31 32 38 0A 91 60 A0 4A 09 90 93 7B 60 0A C0 00  128..`.J...{`...
    9730: 0A C0 92 93 7B 60 0B 00 FF 00 0B 00 FF 70 11 03  ....{`.......p..
    9740: 0A 08 63 8B 63 00 4D 32 35 34 8C 63 0A 02 4D 32  ..c.c.M254.c..M2
    9750: 35 35 8A 63 0A 03 4D 32 35 36 70 7A 60 0A 08 00  55.c..M256pz`...
    9760: 4D 32 35 36 70 0A 07 4D 32 35 34 70 0A 31 4D 32  M256p..M254p.1M2
    9770: 35 35 A0 4E 04 5B 12 5C 2E 5F 53 42 5F 41 4C 49  55.N.[.\._SB_ALI
    9780: 42 00 4D 34 36 30 0D 20 20 4B 45 52 2D 41 53 4C  B.M460.  KER-ASL
    9790: 2D 43 61 6C 6C 20 5C 5F 53 42 2E 41 4C 49 42 20  -Call \_SB.ALIB 
    97A0: 28 30 78 30 43 2C 20 30 78 25 58 29 0A 00 63 00  (0x0C, 0x%X)..c.
    97B0: 00 00 00 00 5C 2E 5F 53 42 5F 41 4C 49 42 0A 0C  ....\._SB_ALIB..
    97C0: 63 14 4D 06 5F 50 55 52 00 99 83 88 4D 34 34 36  c.M._PUR....M446
    97D0: 00 00 60 99 83 88 4D 34 34 36 01 00 61 4D 34 36  ..`...M446..aM46
    97E0: 30 0D 20 20 4B 45 52 2D 41 53 4C 2D 5C 5F 53 42  0.  KER-ASL-\_SB
    97F0: 2E 41 50 41 44 2E 5F 50 55 52 20 52 65 74 75 72  .APAD._PUR Retur
    9800: 6E 20 50 61 63 6B 61 67 65 20 28 32 29 20 28 30  n Package (2) (0
    9810: 78 25 58 2C 20 30 78 25 58 29 20 74 6F 20 4F 53  x%X, 0x%X) to OS
    9820: 50 4D 0A 00 60 61 00 00 00 00 A4 4D 34 34 36     PM..`a.....M446


^ permalink raw reply	[relevance 1%]

* Re: ACPI VFCT table too short on PVH dom0 (was: Re: E820 memory allocation issue on Threadripper platforms)
  2024-01-19  7:44  1%                     ` Patrick Plenefisch
@ 2024-01-19 11:06  5%                       ` Roger Pau Monné
  2024-01-21  1:33  0%                         ` Patrick Plenefisch
  0 siblings, 1 reply; 200+ results
From: Roger Pau Monné @ 2024-01-19 11:06 UTC (permalink / raw)
  To: Patrick Plenefisch
  Cc: Jan Beulich, xen-devel, Juergen Gross, Huang Rui, Jiqian Chen

On Fri, Jan 19, 2024 at 02:44:35AM -0500, Patrick Plenefisch wrote:
> On Thu, Jan 18, 2024 at 7:41 AM Roger Pau Monné <roger.pau@citrix.com>
> wrote:
> 
> >
> > From that environment (PVH dom0) can you see if you can dump the
> > contents of the VFCT table?  I don't have a system with that table, so
> > not sure if this will work (because iasl is unlikely to know how to
> > decode it):
> >
> > # acpidump -n VFCT -o table.dump
> > # acpixtract -a table.dump
> > # iasl -d vfct.dat
> > # cat vfct.dsl
> >
> > Would be good if you can compare the output from what you get on a PV
> > dom0 or when running native Linux.
> >
> > I'm also adding some AMD folks, as IIRC they did some fixes to Linux
> > in order to get some AMD graphics cards running on a PVH dom0, maybe
> > they can provide some additional input.
> >
> >
> Well, this is pretty weird. I'll go into more details because it may be
> relevant.

Wow, you have certainly gone out of the beaten path here.

> I had been working with ASRock support ever since I got my brand
> new motherboard because I couldn't see the BIOS/UEFI screens. I could boot
> up, and once native linux took control amdgpu got the screens/gpu working
> fine. I finally managed to be able to see the UEFI/BIOS setup screens by
> patching my VBIOS: I extracted the VBIOS image of a cheap R5 430 OEM, ran
> GOPupd to update the VBIOS UEFI component (GOP) from version 1.60 to 1.67.
> That allowed the UEFI to actually initialize and use a screen. However, I
> later realized that only 1 monitor was lighting up in the bios: my monitor
> plugged into the Radeon RX 480 that was still on VBIOS GOP 1.60. It appears
> the GOP was initializing the RX 480 too, despite not being flashed with the
> latest itself. I am working on an email to asrock support about that. Once
> I get into linux (native or PV), both monitors light up as expected. Also,
> If I boot linux PVH from grub, they also work.

OK, that's good, so that would be UEFI -> grub -> Xen -> Linux PVH?

> Those usage scenarios have
> acpidump output as identical. Booting linux PVH directly from UEFI (no
> grub), the monitors go to sleep on the RX 480, and amdgpu errors out about
> VFCT, but the R5 430 OEM does still have output. Interestingly, there is a
> different screen mode booting UEFI+PVH, the characters are basically
> squares, with more vertical lines than "default", maybe close to native
> screen resolution, but horizontally it's still "default". Booting from grub
> gives everything in the "default" resolution.

Hm, maybe we are not passing the correct video information to Linux
dom0 when booted from UEFI.  I'm afraid I don't have such setup
myself, so it's going to be hard to test.

To clarify, the output from Xen is fine, is the video output from
Linux dom0 in PVH mode that's corrupt?

> 
> So what is in the VFCT Table? VFCT contains the non-GOP VIOS image of my
> Radeon RX 480 GPU. You can compare it to the VBIOS hosted at
> https://www.techpowerup.com/vgabios/185789/msi-rx480-4096-160720 (Compare
> the end at E667 in the VFCT table to E5ff in that vbios link). I find this
> extra suspicious due to the above.
> 
> Now for the extra horrible things:
> 
> UEFI-booted PVH Linux doesn't support keyboard getty input, and at least
> some of the USB devices are not in lsusb. It also decided to vanish one of
> my HDD's. The `reboot` command hangs. The Power button doesn't do anything.

Yes, it does seem Lunux has issues reserving some BARs:

[    6.520615] ahci 0000:07:00.1: version 3.0
[    6.520701] ahci 0000:07:00.1: BAR 5: can't reserve [mem 0xf0e00000-0xf0e007ff]
...
[   17.130099] ccp 0000:06:00.5: enabling device (0000 -> 0002)
[   17.137025] ccp 0000:06:00.5: BAR 2: can't reserve [mem 0xf0b00000-0xf0bfffff]
[   17.145210] ccp 0000:06:00.5: pcim_iomap_regions failed (-16)
[   17.151868] ccp 0000:06:00.5: initialization failed
[   17.157615] ccp: probe of 0000:06:00.5 failed with error -16
...
[   17.993532] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[   18.001207] snd_hda_intel 0000:01:00.1: Force to non-snoop mode
[   18.007997] snd_hda_intel 0000:01:00.1: BAR 0: can't reserve [mem 0xf0f60000-0xf0f63fff 64bit]
[   18.018053] snd_hda_intel 0000:06:00.7: enabling device (0000 -> 0002)
[   18.025723] snd_hda_intel 0000:06:00.7: BAR 0: can't reserve [mem 0xf0d00000-0xf0d07fff]
[   18.033679] snd_hda_intel 0000:41:00.1: enabling device (0000 -> 0002)
[   18.043165] snd_hda_intel 0000:41:00.1: Force to non-snoop mode

I bet this because Xen balloon driver has started picking up those
regions in order to map foreign pages.

> There are several stack traces in dmesg. But Alt-SysRq-B does reboot!
> Luckily I could ssh in and capture the ACPI tables. They are much smaller,
> and VFCT is empty.  Booting back to one of the working scenarios (direct
> linux, Grub PV, Grub PVH, UEFI PV), all of this is normal.
> 
> I've attached:
> 
> xenboot.log which is the serial log of xen+linux booting in UEFI PVH
> (kernel is debian's config, but patched to start at 2MiB)
> dmesg.txt which is the linux dmesg that contains some nice stack traces
> (kernel is debian's config, but patched to start at 2MiB)
> efipvh-tables.dump is ALL acpi tables from UEFI+PVH mode (acpidump -o
> efipvh-tables.dump)
> working-tables.dump is ALL acpi tables from the other modes (acpidump -o
> working-tables.dump)
> efipvh-vfct.dump is attached in spirit, as it is 0 bytes long (acpidump -n
> VFCT -o efipvh-vfct.dump)
> 
> I ran iasl, but it just said **** Unknown ACPI table signature [VFCT] and
> spat out the raw data table, nothing interesting
> 
> Something I can try, but have been nervous to try due to GOPupd warnings is
> to also flash the 1.67 GOP to the VBIOS on the RX 480. The R5 430 OEM had
> no such warnings.
> 
> Patrick

> [    0.000000] Linux version 6.1.69 (root@pollux) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #10 SMP PREEMPT_DYNAMIC Wed Jan 17 23:44:31 EST 2024
> [    0.000000] Command line: root=UUID=922b10f2-a826-47fb-ab38-836f9b397ff7 ro rootflags=subvol=@rootfs  earlyprintk=xen console=hvc0
> [    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-0x0000000003ffffff] usable
> [    0.000000] BIOS-e820: [mem 0x0000000004000000-0x0000000004045fff] ACPI NVS
> [    0.000000] BIOS-e820: [mem 0x0000000004046000-0x0000000009afefff] usable
> [    0.000000] BIOS-e820: [mem 0x0000000009aff000-0x0000000009ffffff] reserved
> [    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000affffff] usable
> [    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b020fff] reserved
> [    0.000000] BIOS-e820: [mem 0x000000000b021000-0x00000000a04e8fff] usable
> [    0.000000] BIOS-e820: [mem 0x00000000a04e9000-0x00000000a64e8fff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000a64e9000-0x00000000a747efff] ACPI data
> [    0.000000] BIOS-e820: [mem 0x00000000a747f000-0x00000000a947efff] ACPI NVS
> [    0.000000] BIOS-e820: [mem 0x00000000a947f000-0x00000000addfefff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000addff000-0x00000000afffab9b] usable
> [    0.000000] BIOS-e820: [mem 0x00000000afffab9c-0x00000000afffaf17] ACPI data
> [    0.000000] BIOS-e820: [mem 0x00000000afffb000-0x00000000bfffffff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000df200000-0x00000000df2fffff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000feafffff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
> [    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
> [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000025dee2fff] usable
> [    0.000000] BIOS-e820: [mem 0x000000025dee3000-0x000000403dbbffff] unusable
> [    0.000000] BIOS-e820: [mem 0x000000403dbc0000-0x000000403fffffff] reserved
> [    0.000000] printk: bootconsole [xenboot0] enabled
> [    0.000000] NX (Execute Disable) protection: active
> [    0.000000] efi: EFI v2.90 by American Megatrends
> [    0.000000] efi: ACPI=0xa9463000 ACPI 2.0=0xa9463014 SMBIOS=0xad9f4000 SMBIOS 3.0=0xad9f3000 MEMATTR=0x99e26698 ESRT=0xa7466018 
> [    0.000000] secureboot: Secure boot disabled
> [    0.000000] SMBIOS 3.6.0 present.
> [    0.000000] DMI: To Be Filled By O.E.M. TRX50 WS/TRX50 WS, BIOS 7.08 01/16/2024
> [    0.000000] Hypervisor detected: Xen HVM
> [    0.000000] Xen version 4.17.
> [    0.000003] HVMOP_pagetable_dying not supported
> [    0.043916] tsc: Fast TSC calibration failed
> [    0.048843] tsc: Detected 4199.960 MHz processor
> [    0.054365] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
> [    0.054368] e820: remove [mem 0x000a0000-0x000fffff] usable
> [    0.054375] last_pfn = 0x25dee3 max_arch_pfn = 0x400000000
> [    0.062033] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
> [    0.070417] CPU MTRRs all blank - virtualized system.
> [    0.076209] last_pfn = 0xafffa max_arch_pfn = 0x400000000
> [    0.085594] Using GB pages for direct mapping
> [    0.091184] RAMDISK: [mem 0x04046000-0x068cdfff]
> [    0.096533] ACPI: Early table checksum verification disabled
> [    0.103248] ACPI: RSDP 0x00000000AFFFAB9C 000024 (v02 AMD   )
> [    0.109716] ACPI: XSDT 0x00000000AFFFABC0 0000C4 (v01 AMD    A M I    00000001 AMI  01000013)
> [    0.119663] ACPI: APIC 0x00000000AFFFAC84 00037C (v04 AMD    A M I    00000001 AMI  00010013)
> [    0.129538] ACPI: FACP 0x00000000A747C000 000114 (v06 AMD    A M I    00000001 AMI  00010013)
> [    0.139250] ACPI: DSDT 0x00000000A746E000 00D2F6 (v02 AMD    A M I    00000001 INTL 20230331)
> [    0.148717] ACPI: FACS 0x00000000A945A000 000040
> [    0.153805] ACPI: SSDT 0x00000000A747E000 0009CC (v02 AMD    BOULDERG 00000002 MSFT 04000000)
> [    0.163309] ACPI: SSDT 0x00000000A747D000 000067 (v02 AMD    CPMDSM   00000001 INTL 20230331)
> [    0.172813] ACPI: MCFG 0x00000000A746C000 00003C (v01 AMD    A M I    00000001 MSFT 00010013)
> [    0.182351] ACPI: SSDT 0x00000000A746B000 0005C5 (v02 AMD    CPUSSDT  00000001 AMI  00000001)
> [    0.191806] ACPI: SSDT 0x00000000A7468000 001B53 (v02 AMD    CPMRAS   00000001 INTL 20230331)
> [    0.201308] ACPI: FPDT 0x00000000A7465000 000044 (v01 AMD    A M I    01072009 AMI  01000013)
> [    0.210819] ACPI: SSDT 0x00000000A7462000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)
> [    0.220343] ACPI: SSDT 0x00000000A745F000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)
> [    0.229884] ACPI: SSDT 0x00000000A745C000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)
> [    0.239351] ACPI: SSDT 0x00000000A7459000 002448 (v02 AMD    GPP_PME_ 00000001 INTL 20230331)
> [    0.248780] ACPI: SSDT 0x00000000A743E000 00A40E (v02 AMD    AMD CPU  00000001 AMD  00000001)
> [    0.258288] ACPI: SSDT 0x00000000A684C000 0006D4 (v02 AMD    CPMWLRC  00000001 INTL 20230331)
> [    0.267815] ACPI: SSDT 0x00000000A6842000 00982F (v02 AMD    CPMCMN   00000001 INTL 20230331)
> [    0.277339] ACPI: SSDT 0x00000000A683C000 002387 (v02 AMD    AOD      00000001 INTL 20230331)
> [    0.286840] ACPI: SSDT 0x00000000A683B000 000500 (v02 AMD    MEMTOOL0 00000002 INTL 20230331)
> [    0.296283] ACPI: SSDT 0x00000000A683A000 00096A (v02 AMD    CPMMSOSC 00000001 INTL 20230331)
> [    0.305841] ACPI: SSDT 0x00000000A6839000 000B72 (v02 AMD    CPMACPV6 00000001 INTL 20230331)
> [    0.315288] ACPI: SSDT 0x00000000A6838000 00044E (v02 AMD    AmdTable 00000001 INTL 20230331)
> [    0.324802] ACPI: Reserving APIC table memory at [mem 0xafffac84-0xafffafff]
> [    0.332592] ACPI: Reserving FACP table memory at [mem 0xa747c000-0xa747c113]
> [    0.340419] ACPI: Reserving DSDT table memory at [mem 0xa746e000-0xa747b2f5]
> [    0.348189] ACPI: Reserving FACS table memory at [mem 0xa945a000-0xa945a03f]
> [    0.356058] ACPI: Reserving SSDT table memory at [mem 0xa747e000-0xa747e9cb]
> [    0.363906] ACPI: Reserving SSDT table memory at [mem 0xa747d000-0xa747d066]
> [    0.371757] ACPI: Reserving MCFG table memory at [mem 0xa746c000-0xa746c03b]
> [    0.379576] ACPI: Reserving SSDT table memory at [mem 0xa746b000-0xa746b5c4]
> [    0.387437] ACPI: Reserving SSDT table memory at [mem 0xa7468000-0xa7469b52]
> [    0.395337] ACPI: Reserving FPDT table memory at [mem 0xa7465000-0xa7465043]
> [    0.403153] ACPI: Reserving SSDT table memory at [mem 0xa7462000-0xa7464447]
> [    0.410989] ACPI: Reserving SSDT table memory at [mem 0xa745f000-0xa7461447]
> [    0.418802] ACPI: Reserving SSDT table memory at [mem 0xa745c000-0xa745e447]
> [    0.426642] ACPI: Reserving SSDT table memory at [mem 0xa7459000-0xa745b447]
> [    0.434529] ACPI: Reserving SSDT table memory at [mem 0xa743e000-0xa744840d]
> [    0.442393] ACPI: Reserving SSDT table memory at [mem 0xa684c000-0xa684c6d3]
> [    0.450203] ACPI: Reserving SSDT table memory at [mem 0xa6842000-0xa684b82e]
> [    0.458038] ACPI: Reserving SSDT table memory at [mem 0xa683c000-0xa683e386]
> [    0.465853] ACPI: Reserving SSDT table memory at [mem 0xa683b000-0xa683b4ff]
> [    0.473805] ACPI: Reserving SSDT table memory at [mem 0xa683a000-0xa683a969]
> [    0.481626] ACPI: Reserving SSDT table memory at [mem 0xa6839000-0xa6839b71]
> [    0.489475] ACPI: Reserving SSDT table memory at [mem 0xa6838000-0xa683844d]

Weird, there's no VFCT listed here.

Thanks, Roger.


^ permalink raw reply	[relevance 5%]

* xenpm cpufrequency settings don't work
@ 2023-12-28 11:28  3% flamv3421
  0 siblings, 0 replies; 200+ results
From: flamv3421 @ 2023-12-28 11:28 UTC (permalink / raw)
  To: xen-devel

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

I used xenpm to disable turbo mode and set the maximum frequency to 800000 and governor to powersave, but my laptop fans are still running at full speed when I am using xen and the average frequency shown does not match the maximum frequency I set with xenpm which is 800000. Why are my fans running at full speed and why doesn't xenpm maximum frequency setting work? These are the logs of both dmesg and xenpm

$sudo xl dmesg
(XEN) Built-in command line: ept=exec-sp spec-ctrl=unpriv-mmio
(XEN) parameter "no-real-mode" unknown!
 Xen 4.14.5
(XEN) Xen version 4.14.5 (mockbuild@[unknown]) (gcc (GCC) 10.3.1 20210422 (Red Hat 10.3.1-1)) debug=n  Tue Mar  7 00:00:00 UTC 2023
(XEN) Latest ChangeSet:
(XEN) Bootloader: GRUB 2.04
(XEN) Command line: placeholder console=none dom0_mem=min:1024M dom0_mem=max:4096M ucode=scan gnttab_max_frames=2048 gnttab_max_maptrack_frames=4096 no-real-mode edd=off
(XEN) Xen image load base address: 0x95c00000
(XEN) Video information:
(XEN)  VGA is graphics mode 1920x1080, 32 bpp
(XEN) Disc information:
(XEN)  Found 0 MBR signatures
(XEN)  Found 2 EDD information structures
(XEN) EFI RAM map:
(XEN)  [0000000000000000, 000000000009efff] (usable)
(XEN)  [000000000009f000, 00000000000fffff] (reserved)
(XEN)  [0000000000100000, 0000000088d57fff] (usable)
(XEN)  [0000000088d58000, 0000000089657fff] (reserved)
(XEN)  [0000000089658000, 000000009786dfff] (usable)
(XEN)  [000000009786e000, 0000000098d6dfff] (reserved)
(XEN)  [0000000098d6e000, 0000000099bcdfff] (ACPI NVS)
(XEN)  [0000000099bce000, 0000000099c4dfff] (ACPI data)
(XEN)  [0000000099c4e000, 0000000099c4efff] (usable)
(XEN)  [0000000099c4f000, 000000009f7fffff] (reserved)
(XEN)  [00000000e0000000, 00000000efffffff] (reserved)
(XEN)  [00000000fe000000, 00000000fe010fff] (reserved)
(XEN)  [00000000fed10000, 00000000fed19fff] (reserved)
(XEN)  [00000000fed84000, 00000000fed84fff] (reserved)
(XEN)  [00000000fee00000, 00000000fee00fff] (reserved)
(XEN)  [00000000ff300000, 00000000ffffffff] (reserved)
(XEN)  [0000000100000000, 000000045e7fffff] (usable)
(XEN) ACPI: RSDP 99C4D014, 0024 (r2 ACRSYS)
(XEN) ACPI: XSDT 99C25188, 011C (r1 ACRSYS ACRPRDCT        2       1000013)
(XEN) ACPI: FACP 99C24000, 010C (r5 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: DSDT 99BDB000, 452F1 (r2 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: FACS 99B44000, 0040
(XEN) ACPI: UEFI 99BCD000, 0236 (r1 ACRSYS ACRPRDCT        1 1025    40000)
(XEN) ACPI: SSDT 99C47000, 497E (r2 ACRSYS ACRPRDCT     1000 1025    40000)
(XEN) ACPI: SSDT 99C46000, 0100 (r2 ACRSYS ACRPRDCT     3000 1025    40000)
(XEN) ACPI: SSDT 99C45000, 0834 (r2 ACRSYS ACRPRDCT     3000 1025    40000)
(XEN) ACPI: SSDT 99C42000, 20AD (r2 ACRSYS ACRPRDCT     3000 1025    40000)
(XEN) ACPI: SSDT 99C3E000, 31DA (r2 ACRSYS ACRPRDCT     3000 1025    40000)
(XEN) ACPI: SSDT 99C3B000, 2C48 (r2 ACRSYS ACRPRDCT     1000 1025    40000)
(XEN) ACPI: SSDT 99C3A000, 045A (r2 ACRSYS ACRPRDCT     1000 1025    40000)
(XEN) ACPI: SSDT 99C39000, 0046 (r2 ACRSYS ACRPRDCT     3000 1025    40000)
(XEN) ACPI: TPM2 99C38000, 0034 (r3 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: LPIT 99C37000, 0094 (r1 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: WSMT 99C36000, 0028 (r1 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: SSDT 99C35000, 0B70 (r2 ACRSYS ACRPRDCT     1000 1025    40000)
(XEN) ACPI: SSDT 99C32000, 256F (r2 ACRSYS ACRPRDCT        0 1025    40000)
(XEN) ACPI: DBGP 99C31000, 0034 (r1 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: DBG2 99C30000, 005C (r0 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: SSDT 99C2F000, 0B9F (r2 ACRSYS ACRPRDCT     1000 1025    40000)
(XEN) ACPI: MSDM 99C2E000, 0055 (r3 ACRSYS ACRPRDCT        1 1025    40000)
(XEN) ACPI: SSDT 99C26000, 7568 (r1 ACRSYS ACRPRDCT     1000 1025    40000)
(XEN) ACPI: NHLT 99C4C000, 02DF (r0 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: HPET 99C23000, 0038 (r1 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: APIC 99C22000, 0164 (r3 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: MCFG 99C21000, 003C (r1 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: SSDT 99BDA000, 01C4 (r2 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: SSDT 99BD6000, 2FEE (r1 ACRSYS ACRPRDCT     1000 1025    40000)
(XEN) ACPI: SSDT 99BD5000, 0161 (r2 ACRSYS ACRPRDCT     1000 1025    40000)
(XEN) ACPI: DMAR 99BD9000, 00A8 (r1 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: SSDT 99BD4000, 0164 (r1 ACRSYS ACRPRDCT     1000 1025    40000)
(XEN) ACPI: FPDT 99BD2000, 0044 (r1 ACRSYS ACRPRDCT        2 1025    40000)
(XEN) ACPI: BGRT 99BD3000, 0038 (r1 ACRSYS ACRPRDCT        1 1025    40000)
(XEN) System RAM: 16215MB (16604216kB)
(XEN) Domain heap initialised
(XEN) ACPI: 32/64X FACS address mismatch in FADT - 99b44000/0000000000000000, using 32
(XEN) IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
(XEN) Enabling APIC mode:  Phys.  Using 1 I/O APICs
(XEN) Switched to APIC driver x2apic_cluster
(XEN) microcode: CPU0 updated from revision 0xea to 0xf4, date = 2022-07-31
(XEN) CPU0: TSC: ratio: 216 / 2
(XEN) CPU0: bus: 100 MHz base: 2600 MHz max: 5000 MHz
(XEN) CPU0: 800 ... 2600 MHz
(XEN) xstate: size: 0xa88 and states: 0x21f
(XEN) Unrecognised CPU model 0xa5 - assuming vulnerable to LazyFPU
(XEN) Speculative mitigation facilities:
(XEN)   Hardware hints: RDCL_NO IBRS_ALL SKIP_L1DFL MDS_NO
(XEN)   Hardware features: IBPB IBRS STIBP SSBD L1D_FLUSH MD_CLEAR SRBDS_CTRL FB_CLEAR
(XEN)   Compiled-in support: INDIRECT_THUNK
(XEN)   Xen settings: BTI-Thunk JMP, SPEC_CTRL: IBRS+ STIBP+ SSBD-, Other: SRB_LOCK+ IBPB-ctxt VERW BRANCH_HARDEN
(XEN)   Support for HVM VMs: MSR_SPEC_CTRL RSB EAGER_FPU MD_CLEAR
(XEN)   Support for PV VMs: MSR_SPEC_CTRL EAGER_FPU MD_CLEAR
(XEN)   XPTI (64-bit PV only): Dom0 disabled, DomU disabled (with PCID)
(XEN)   PV L1TF shadowing: Dom0 disabled, DomU disabled
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN) Platform timer is 24.000MHz HPET
(XEN) Detected 2592.021 MHz processor.
(XEN) Unknown cachability for MFNs 0xa0-0xff
(XEN) Unknown cachability for MFNs 0x9b000-0x9f7ff
(XEN) Intel VT-d iommu 0 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d iommu 1 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d Snoop Control not enabled.
(XEN) Intel VT-d Dom0 DMA Passthrough not enabled.
(XEN) Intel VT-d Queued Invalidation enabled.
(XEN) Intel VT-d Interrupt Remapping enabled.
(XEN) Intel VT-d Posted Interrupt not enabled.
(XEN) Intel VT-d Shared EPT tables enabled.
(XEN) I/O virtualisation enabled
(XEN)  - Dom0 mode: Relaxed
(XEN) Interrupt remapping enabled
(XEN) Enabled directed EOI with ioapic_ack_old on!
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using old ACK method
(XEN) Allocated console ring of 32 KiB.
(XEN) VMX: Supported advanced features:
(XEN)  - APIC MMIO access virtualisation
(XEN)  - APIC TPR shadow
(XEN)  - Extended Page Tables (EPT)
(XEN)  - Virtual-Processor Identifiers (VPID)
(XEN)  - Virtual NMI
(XEN)  - MSR direct-access bitmap
(XEN)  - Unrestricted Guest
(XEN)  - APIC Register Virtualization
(XEN)  - Virtual Interrupt Delivery
(XEN)  - Posted Interrupt Processing
(XEN)  - VM Functions
(XEN)  - Virtualisation Exceptions
(XEN)  - Page Modification Logging
(XEN) HVM: ASIDs enabled.
(XEN) HVM: VMX enabled
(XEN) HVM: Hardware Assisted Paging (HAP) detected
(XEN) HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) microcode: CPU2 updated from revision 0xea to 0xf4, date = 2022-07-31
(XEN) microcode: CPU4 updated from revision 0xea to 0xf4, date = 2022-07-31
(XEN) microcode: CPU6 updated from revision 0xea to 0xf4, date = 2022-07-31
(XEN) microcode: CPU8 updated from revision 0xea to 0xf4, date = 2022-07-31
(XEN) microcode: CPU10 updated from revision 0xea to 0xf4, date = 2022-07-31
(XEN) Brought up 12 CPUs
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Dom0 has maximum 952 PIRQs
(XEN) CPU0: Temperature above threshold
(XEN) CPU1: Temperature above threshold
(XEN) CPU0: Running in modulated clock mode
(XEN) CPU1: Running in modulated clock mode
(XEN)  Xen  kernel: 64-bit, lsb, compat32
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x4000000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000440000000->0000000448000000 (1007619 pages to be allocated)
(XEN)  Init. ramdisk: 000000045c803000->000000045e7fff5f
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff84000000
(XEN)  Init. ramdisk: 0000000000000000->0000000000000000
(XEN)  Phys-Mach map: 0000008000000000->0000008000800000
(XEN)  Start info:    ffffffff84000000->ffffffff840004b8
(XEN)  Xenstore ring: 0000000000000000->0000000000000000
(XEN)  Console ring:  0000000000000000->0000000000000000
(XEN)  Page tables:   ffffffff84001000->ffffffff84026000
(XEN)  Boot stack:    ffffffff84026000->ffffffff84027000
(XEN)  TOTAL:         ffffffff80000000->ffffffff84400000
(XEN)  ENTRY ADDRESS: ffffffff830fe1c0
(XEN) Dom0 has maximum 12 VCPUs
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Scrubbing Free RAM in background
(XEN) Std. Loglevel: Errors and warnings
(XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings)
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 600kB init memory

$sudo dmesg
[    0.000000] Linux version 5.15.94-1.qubes.fc32.x86_64 (mockbuild@789905c09e0c4394afa45853cebe9fb2) (gcc (GCC) 10.3.1 20210422 (Red Hat 10.3.1-1), GNU ld version 2.34-6.fc32) #1 SMP Sun Feb 19 07:18:46 CET 2023
[    0.000000] Command line: placeholder root=UUID=9b80b9c9-5a63-48f6-8fff-dcdbc201b1dd ro rd.luks.uuid=luks-3699bfd9-b67e-41a2-83ee-c2b56fbae1a2 plymouth.ignore-serial-consoles rd.driver.pre=btrfs rhgb quiet usbcore.authorized_default=0
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] Released 0 page(s)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] Xen: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] Xen: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] Xen: [mem 0x0000000000100000-0x0000000088d57fff] usable
[    0.000000] Xen: [mem 0x0000000088d58000-0x0000000089657fff] reserved
[    0.000000] Xen: [mem 0x0000000089658000-0x000000009786dfff] usable
[    0.000000] Xen: [mem 0x000000009786e000-0x0000000098d6dfff] reserved
[    0.000000] Xen: [mem 0x0000000098d6e000-0x0000000099bcdfff] ACPI NVS
[    0.000000] Xen: [mem 0x0000000099bce000-0x0000000099c4dfff] ACPI data
[    0.000000] Xen: [mem 0x0000000099c4e000-0x0000000099c4efff] usable
[    0.000000] Xen: [mem 0x0000000099c4f000-0x000000009f7fffff] reserved
[    0.000000] Xen: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] Xen: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] Xen: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] Xen: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] Xen: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
[    0.000000] Xen: [mem 0x00000000fed90000-0x00000000fed91fff] reserved
[    0.000000] Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] Xen: [mem 0x00000000ff300000-0x00000000ffffffff] reserved
[    0.000000] Xen: [mem 0x0000000100000000-0x00000001690f1fff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.70 by INSYDE Corp.
[    0.000000] efi: ACPI=0x99c4d000 ACPI 2.0=0x99c4d014 TPMFinalLog=0x99b59000 ESRT=0x97de1018 SMBIOS=0x97de0000 SMBIOS 3.0=0x97dde000
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI: Acer Predator PH315-53/QX50_CMS, BIOS V2.04 08/20/2021
[    0.000000] Hypervisor detected: Xen PV
[    0.000531] tsc: Detected 2592.020 MHz processor
[    0.000543] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000546] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000553] last_pfn = 0x1690f2 max_arch_pfn = 0x400000000
[    0.000554] Disabled
[    0.000555] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[    0.000558] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.000559] last_pfn = 0x99c4f max_arch_pfn = 0x400000000
[    0.494474] Secure boot disabled
[    0.494476] RAMDISK: [mem 0x08000000-0x09ffcfff]
[    0.494480] ACPI: Early table checksum verification disabled
[    0.494485] ACPI: RSDP 0x0000000099C4D014 000024 (v02 ACRSYS)
[    0.494491] ACPI: XSDT 0x0000000099C25188 00011C (v01 ACRSYS ACRPRDCT 00000002      01000013)
[    0.494524] ACPI: FACP 0x0000000099C24000 00010C (v05 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494586] ACPI: DSDT 0x0000000099BDB000 0452F1 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494593] ACPI: FACS 0x0000000099B44000 000040
[    0.494602] ACPI: UEFI 0x0000000099BCD000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.494610] ACPI: SSDT 0x0000000099C47000 00497E (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
[    0.494618] ACPI: SSDT 0x0000000099C46000 000100 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
[    0.494627] ACPI: SSDT 0x0000000099C45000 000834 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
[    0.494635] ACPI: SSDT 0x0000000099C42000 0020AD (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
[    0.494643] ACPI: SSDT 0x0000000099C3E000 0031DA (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
[    0.494652] ACPI: SSDT 0x0000000099C3B000 002C48 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
[    0.494660] ACPI: SSDT 0x0000000099C3A000 00045A (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
[    0.494668] ACPI: SSDT 0x0000000099C39000 000046 (v02 ACRSYS ACRPRDCT 00003000 1025 00040000)
[    0.494678] ACPI: TPM2 0x0000000099C38000 000034 (v03 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494686] ACPI: LPIT 0x0000000099C37000 000094 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494695] ACPI: WSMT 0x0000000099C36000 000028 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494704] ACPI: SSDT 0x0000000099C35000 000B70 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
[    0.494712] ACPI: SSDT 0x0000000099C32000 00256F (v02 ACRSYS ACRPRDCT 00000000 1025 00040000)
[    0.494720] ACPI: DBGP 0x0000000099C31000 000034 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494728] ACPI: DBG2 0x0000000099C30000 00005C (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494737] ACPI: SSDT 0x0000000099C2F000 000B9F (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
[    0.494745] ACPI: MSDM 0x0000000099C2E000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.494753] ACPI: SSDT 0x0000000099C26000 007568 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
[    0.494762] ACPI: NHLT 0x0000000099C4C000 0002DF (v00 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494770] ACPI: HPET 0x0000000099C23000 000038 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494778] ACPI: APIC 0x0000000099C22000 000164 (v03 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494786] ACPI: MCFG 0x0000000099C21000 00003C (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494796] ACPI: SSDT 0x0000000099BDA000 0001C4 (v02 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494804] ACPI: SSDT 0x0000000099BD6000 002FEE (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
[    0.494813] ACPI: SSDT 0x0000000099BD5000 000161 (v02 ACRSYS ACRPRDCT 00001000 1025 00040000)
[    0.494821] ACPI: RMAD 0x0000000099BD9000 0000A8 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494829] ACPI: SSDT 0x0000000099BD4000 000164 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
[    0.494838] ACPI: FPDT 0x0000000099BD2000 000044 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
[    0.494846] ACPI: BGRT 0x0000000099BD3000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.494850] ACPI: Reserving FACP table memory at [mem 0x99c24000-0x99c2410b]
[    0.494852] ACPI: Reserving DSDT table memory at [mem 0x99bdb000-0x99c202f0]
[    0.494853] ACPI: Reserving FACS table memory at [mem 0x99b44000-0x99b4403f]
[    0.494854] ACPI: Reserving UEFI table memory at [mem 0x99bcd000-0x99bcd235]
[    0.494855] ACPI: Reserving SSDT table memory at [mem 0x99c47000-0x99c4b97d]
[    0.494856] ACPI: Reserving SSDT table memory at [mem 0x99c46000-0x99c460ff]
[    0.494856] ACPI: Reserving SSDT table memory at [mem 0x99c45000-0x99c45833]
[    0.494857] ACPI: Reserving SSDT table memory at [mem 0x99c42000-0x99c440ac]
[    0.494858] ACPI: Reserving SSDT table memory at [mem 0x99c3e000-0x99c411d9]
[    0.494858] ACPI: Reserving SSDT table memory at [mem 0x99c3b000-0x99c3dc47]
[    0.494859] ACPI: Reserving SSDT table memory at [mem 0x99c3a000-0x99c3a459]
[    0.494860] ACPI: Reserving SSDT table memory at [mem 0x99c39000-0x99c39045]
[    0.494860] ACPI: Reserving TPM2 table memory at [mem 0x99c38000-0x99c38033]
[    0.494861] ACPI: Reserving LPIT table memory at [mem 0x99c37000-0x99c37093]
[    0.494862] ACPI: Reserving WSMT table memory at [mem 0x99c36000-0x99c36027]
[    0.494862] ACPI: Reserving SSDT table memory at [mem 0x99c35000-0x99c35b6f]
[    0.494863] ACPI: Reserving SSDT table memory at [mem 0x99c32000-0x99c3456e]
[    0.494864] ACPI: Reserving DBGP table memory at [mem 0x99c31000-0x99c31033]
[    0.494864] ACPI: Reserving DBG2 table memory at [mem 0x99c30000-0x99c3005b]
[    0.494865] ACPI: Reserving SSDT table memory at [mem 0x99c2f000-0x99c2fb9e]
[    0.494866] ACPI: Reserving MSDM table memory at [mem 0x99c2e000-0x99c2e054]
[    0.494866] ACPI: Reserving SSDT table memory at [mem 0x99c26000-0x99c2d567]
[    0.494867] ACPI: Reserving NHLT table memory at [mem 0x99c4c000-0x99c4c2de]
[    0.494868] ACPI: Reserving HPET table memory at [mem 0x99c23000-0x99c23037]
[    0.494869] ACPI: Reserving APIC table memory at [mem 0x99c22000-0x99c22163]
[    0.494869] ACPI: Reserving MCFG table memory at [mem 0x99c21000-0x99c2103b]
[    0.494870] ACPI: Reserving SSDT table memory at [mem 0x99bda000-0x99bda1c3]
[    0.494871] ACPI: Reserving SSDT table memory at [mem 0x99bd6000-0x99bd8fed]
[    0.494872] ACPI: Reserving SSDT table memory at [mem 0x99bd5000-0x99bd5160]
[    0.494872] ACPI: Reserving RMAD table memory at [mem 0x99bd9000-0x99bd90a7]
[    0.494873] ACPI: Reserving SSDT table memory at [mem 0x99bd4000-0x99bd4163]
[    0.494874] ACPI: Reserving FPDT table memory at [mem 0x99bd2000-0x99bd2043]
[    0.494874] ACPI: Reserving BGRT table memory at [mem 0x99bd3000-0x99bd3037]
[    0.494899] Setting APIC routing to Xen PV.
[    0.494927] NUMA turned off
[    0.494928] Faking a node at [mem 0x0000000000000000-0x00000001690f1fff]
[    0.494937] NODE_DATA(0) allocated [mem 0x9706f000-0x97099fff]
[    0.511011] Zone ranges:
[    0.511013]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.511015]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.511016]   Normal   [mem 0x0000000100000000-0x00000001690f1fff]
[    0.511018]   Device   empty
[    0.511018] Movable zone start for each node
[    0.511020] Early memory node ranges
[    0.511021]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.511022]   node   0: [mem 0x0000000000100000-0x0000000088d57fff]
[    0.511023]   node   0: [mem 0x0000000089658000-0x000000009786dfff]
[    0.511024]   node   0: [mem 0x0000000099c4e000-0x0000000099c4efff]
[    0.511024]   node   0: [mem 0x0000000100000000-0x00000001690f1fff]
[    0.511026] Initmem setup node 0 [mem 0x0000000000001000-0x00000001690f1fff]
[    0.511029] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.511054] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.514924] On node 0, zone DMA32: 2304 pages in unavailable ranges
[    0.515018] On node 0, zone DMA32: 9184 pages in unavailable ranges
[    0.517995] On node 0, zone Normal: 25521 pages in unavailable ranges
[    0.518263] On node 0, zone Normal: 28430 pages in unavailable ranges
[    0.518264] p2m virtual area at (____ptrval____), size is 40000000
[    1.027004] Remapped 430322 page(s)
[    1.027132] Reserving Intel graphics memory at [mem 0x9b800000-0x9f7fffff]
[    1.027945] ACPI: PM-Timer IO Port: 0x1808
[    1.027994] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    1.027997] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    1.028002] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    1.028004] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    1.028006] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    1.028007] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    1.028008] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    1.028010] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    1.028011] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    1.028012] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    1.028013] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    1.028015] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    1.028016] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    1.028017] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    1.028018] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    1.028019] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    1.028021] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    1.028022] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    1.028023] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    1.028024] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    1.028091] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    1.028103] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    1.028106] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    1.028130] ACPI: Using ACPI (MADT) for SMP configuration information
[    1.028132] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    1.030436] smpboot: Allowing 12 CPUs, 0 hotplug CPUs
[    1.030455] [mem 0x9f800000-0xdfffffff] available for PCI devices
[    1.030457] Booting kernel on Xen
[    1.030458] Xen version: 4.14.5 (preserve-AD)
[    1.030460] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    1.034421] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
[    1.034650] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144
[    1.034656] pcpu-alloc: s212992 r8192 d28672 u262144 alloc=1*2097152
[    1.034659] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- --
[    1.034706] xen: PV spinlocks enabled
[    1.034710] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    1.034715] Built 1 zonelists, mobility grouping on.  Total pages: 1032031
[    1.034716] Policy zone: Normal
[    1.034717] Kernel command line: placeholder root=UUID=9b80b9c9-5a63-48f6-8fff-dcdbc201b1dd ro rd.luks.uuid=luks-3699bfd9-b67e-41a2-83ee-c2b56fbae1a2 plymouth.ignore-serial-consoles rd.driver.pre=btrfs rhgb quiet usbcore.authorized_default=0
[    1.034804] Unknown kernel command line parameters "placeholder rhgb", will be passed to user space.
[    1.034953] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    1.035022] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    1.035722] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:on
[    1.035724] mem auto-init: clearing system memory may take some time...
[    1.060991] software IO TLB: mapped [mem 0x0000000163800000-0x0000000167800000] (64MB)
[    1.357987] Memory: 3947544K/4194300K available (16393K kernel code, 3517K rwdata, 5700K rodata, 3604K init, 5784K bss, 246504K reserved, 0K cma-reserved)
[    1.358629] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[    1.359147] ftrace: allocating 51430 entries in 201 pages
[    1.376466] ftrace: allocated 201 pages with 4 groups
[    1.376738] rcu: Hierarchical RCU implementation.
[    1.376739] rcu:	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=12.
[    1.376740]	Trampoline variant of Tasks RCU enabled.
[    1.376740]	Rude variant of Tasks RCU enabled.
[    1.376741]	Tracing variant of Tasks RCU enabled.
[    1.376741] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    1.376742] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[    1.383761] Using NULL legacy PIC
[    1.383762] NR_IRQS: 524544, nr_irqs: 2152, preallocated irqs: 0
[    1.383800] xen:events: Using FIFO-based ABI
[    1.383820] xen: --> pirq=1 -> irq=1 (gsi=1)
[    1.383828] xen: --> pirq=2 -> irq=2 (gsi=2)
[    1.383835] xen: --> pirq=3 -> irq=3 (gsi=3)
[    1.383842] xen: --> pirq=4 -> irq=4 (gsi=4)
[    1.383848] xen: --> pirq=5 -> irq=5 (gsi=5)
[    1.383855] xen: --> pirq=6 -> irq=6 (gsi=6)
[    1.383862] xen: --> pirq=7 -> irq=7 (gsi=7)
[    1.383869] xen: --> pirq=8 -> irq=8 (gsi=8)
[    1.383876] xen: --> pirq=9 -> irq=9 (gsi=9)
[    1.383883] xen: --> pirq=10 -> irq=10 (gsi=10)
[    1.383890] xen: --> pirq=11 -> irq=11 (gsi=11)
[    1.383897] xen: --> pirq=12 -> irq=12 (gsi=12)
[    1.383904] xen: --> pirq=13 -> irq=13 (gsi=13)
[    1.383911] xen: --> pirq=14 -> irq=14 (gsi=14)
[    1.383918] xen: --> pirq=15 -> irq=15 (gsi=15)
[    1.383943] random: crng init done
[    1.383980] Console: colour dummy device 80x25
[    1.383990] printk: console [tty0] enabled
[    1.383999] printk: console [hvc0] enabled
[    1.384026] ACPI: Core revision 20210730
[    1.417683] ACPI BIOS Warning (bug): Incorrect checksum in table [BGRT] - 0x1A, should be 0x9C (20210730/tbprint-173)
[    1.417730] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    1.417733] Xen: using vcpuop timer interface
[    1.417736] installing Xen timer for CPU 0
[    1.417756] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x255cc9e229f, max_idle_ns: 440795272440 ns
[    1.417760] Calibrating delay loop (skipped), value calculated using timer frequency.. 5184.04 BogoMIPS (lpj=2592020)
[    1.417762] pid_max: default: 32768 minimum: 301
[    1.417807] LSM: Security Framework initializing
[    1.417815] Yama: becoming mindful.
[    1.417862] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    1.417864] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    1.418283] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    1.418285] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    1.418290] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.418292] Spectre V2 : Mitigation: Enhanced IBRS
[    1.418292] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    1.418293] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[    1.418293] RETBleed: Mitigation: Enhanced IBRS
[    1.418294] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.418296] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    1.418299] MMIO Stale Data: Vulnerable: Clear CPU buffers attempted, no microcode
[    1.418301] SRBDS: Unknown: Dependent on hypervisor status
[    1.432208] Freeing SMP alternatives memory: 44K
[    1.432816] cpu 0 spinlock event irq 121
[    1.432823] VPMU disabled by hypervisor.
[    1.433049] Performance Events: unsupported p6 CPU model 165 no PMU driver, software events only.
[    1.433100] rcu: Hierarchical SRCU implementation.
[    1.433429] NMI watchdog: Perf NMI watchdog permanently disabled
[    1.433570] smp: Bringing up secondary CPUs ...
[    1.433672] installing Xen timer for CPU 1
[    1.433839] cpu 1 spinlock event irq 131
[    1.434090] MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
[    1.434090] installing Xen timer for CPU 2
[    1.434090] cpu 2 spinlock event irq 137
[    1.434090] installing Xen timer for CPU 3
[    1.434090] cpu 3 spinlock event irq 143
[    1.434827] installing Xen timer for CPU 4
[    1.434956] cpu 4 spinlock event irq 149
[    1.434956] installing Xen timer for CPU 5
[    1.434991] cpu 5 spinlock event irq 155
[    1.434991] installing Xen timer for CPU 6
[    1.435011] cpu 6 spinlock event irq 161
[    1.435011] installing Xen timer for CPU 7
[    1.435786] cpu 7 spinlock event irq 167
[    1.435852] installing Xen timer for CPU 8
[    1.435987] cpu 8 spinlock event irq 173
[    1.435987] installing Xen timer for CPU 9
[    1.435987] cpu 9 spinlock event irq 179
[    1.435987] installing Xen timer for CPU 10
[    1.436043] cpu 10 spinlock event irq 185
[    1.436801] installing Xen timer for CPU 11
[    1.436943] cpu 11 spinlock event irq 191
[    1.436943] smp: Brought up 1 node, 12 CPUs
[    1.436943] smpboot: Max logical packages: 1
[    1.437023] devtmpfs: initialized
[    1.437023] x86/mm: Memory block size: 128MB
[    1.437100] ACPI: PM: Registering ACPI NVS region [mem 0x98d6e000-0x99bcdfff] (15073280 bytes)
[    1.437861] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    1.437864] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    1.437916] pinctrl core: initialized pinctrl subsystem
[    1.438267] PM: RTC time: 16:24:41, date: 2023-12-27
[    1.438391] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    1.438406] xen:grant_table: Grant tables using version 1 layout
[    1.438452] Grant table initialized
[    1.438617] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[    1.438620] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.438622] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    1.438629] audit: initializing netlink subsys (disabled)
[    1.438639] audit: type=2000 audit(1703694282.544:1): state=initialized audit_enabled=0 res=1
[    1.438810] thermal_sys: Registered thermal governor 'fair_share'
[    1.438811] thermal_sys: Registered thermal governor 'bang_bang'
[    1.438811] thermal_sys: Registered thermal governor 'step_wise'
[    1.438812] thermal_sys: Registered thermal governor 'user_space'
[    1.438857] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    1.438857] ACPI: bus type PCI registered
[    1.439001] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    1.439004] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    1.470663] PCI: Using configuration type 1 for base access
[    1.471728] Kprobes globally optimized
[    1.569917] cryptd: max_cpu_qlen set to 1000
[    1.576821] alg: No test for 842 (842-generic)
[    1.576821] alg: No test for 842 (842-scomp)
[    1.579008] raid6: skip pq benchmark and using algorithm avx2x4
[    1.579008] raid6: using avx2x2 recovery algorithm
[    1.579008] ACPI: Added _OSI(Module Device)
[    1.579008] ACPI: Added _OSI(Processor Device)
[    1.579008] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.579008] ACPI: Added _OSI(Processor Aggregator Device)
[    1.579008] ACPI: Added _OSI(Linux-Dell-Video)
[    1.579008] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    1.579008] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    1.638848] ACPI: 17 ACPI AML tables successfully acquired and loaded
[    1.640182] xen: registering gsi 9 triggering 0 polarity 0
[    1.648273] ACPI: Dynamic OEM Table Load:
[    1.648280] ACPI: SSDT 0xFFFF88810108A400 000400 (v02 PmRef  Cpu0Cst  00003001 INTL 20160422)
[    1.649152] ACPI: Dynamic OEM Table Load:
[    1.649157] ACPI: SSDT 0xFFFF888101026800 000581 (v02 PmRef  Cpu0Ist  00003000 INTL 20160422)
[    1.649933] ACPI: Dynamic OEM Table Load:
[    1.649938] ACPI: SSDT 0xFFFF88810020E400 0000FC (v02 PmRef  Cpu0Psd  00003000 INTL 20160422)
[    1.651215] ACPI: Dynamic OEM Table Load:
[    1.651220] ACPI: SSDT 0xFFFF888101023000 000778 (v02 PmRef  ApIst    00003000 INTL 20160422)
[    1.652339] ACPI: Dynamic OEM Table Load:
[    1.652346] ACPI: SSDT 0xFFFF888100183000 000D22 (v02 PmRef  ApPsd    00003000 INTL 20160422)
[    1.653632] ACPI: Dynamic OEM Table Load:
[    1.653637] ACPI: SSDT 0xFFFF888101088800 0003CA (v02 PmRef  ApCst    00003000 INTL 20160422)
[    1.659887] ACPI: EC: EC started
[    1.659888] ACPI: EC: interrupt blocked
[    1.660216] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    1.660218] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[    1.660219] ACPI: Interpreter enabled
[    1.660245] ACPI: PM: (supports S0 S3 S5)
[    1.660246] ACPI: Using IOAPIC for interrupt routing
[    1.660275] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.662211] ACPI: Enabled 7 GPEs in block 00 to 7F
[    1.663033] ACPI: PM: Power Resource [PG00]
[    1.666592] ACPI: PM: Power Resource [PG01]
[    1.666892] ACPI: PM: Power Resource [PG02]
[    1.670756] ACPI: PM: Power Resource [BTPR]
[    1.671318] ACPI: PM: Power Resource [USBC]
[    1.686067] ACPI: PM: Power Resource [V0PR]
[    1.686262] ACPI: PM: Power Resource [V1PR]
[    1.686456] ACPI: PM: Power Resource [V2PR]
[    1.689871] ACPI: PM: Power Resource [WRST]
[    1.690097] acpi ABCD0000:00: ACPI dock station (docks/bays count: 1)
[    1.692988] ACPI: PM: Power Resource [PIN]
[    1.693536] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    1.693541] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.695838] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability LTR DPC]
[    1.695839] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.697199] PCI host bridge to bus 0000:00
[    1.697201] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    1.697202] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    1.697203] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.697204] pci_bus 0000:00: root bus resource [mem 0x9f800000-0xdfffffff window]
[    1.697205] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    1.697206] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[    1.697207] pci_bus 0000:00: root bus resource [bus 00-fe]
[    1.698125] pci 0000:00:00.0: [8086:9b54] type 00 class 0x060000
[    1.700873] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
[    1.701006] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    1.703343] pci 0000:00:02.0: [8086:9bc4] type 00 class 0x030000
[    1.703371] pci 0000:00:02.0: reg 0x10: [mem 0x6013000000-0x6013ffffff 64bit]
[    1.703388] pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
[    1.703400] pci 0000:00:02.0: reg 0x20: [io  0x5000-0x503f]
[    1.703440] pci 0000:00:02.0: BAR 2: assigned to efifb
[    1.703446] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.705343] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
[    1.705371] pci 0000:00:04.0: reg 0x10: [mem 0x6012200000-0x6012207fff 64bit]
[    1.706585] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
[    1.706614] pci 0000:00:08.0: reg 0x10: [mem 0x6012218000-0x6012218fff 64bit]
[    1.708576] pci 0000:00:12.0: [8086:06f9] type 00 class 0x118000
[    1.708631] pci 0000:00:12.0: reg 0x10: [mem 0x6012217000-0x6012217fff 64bit]
[    1.711526] pci 0000:00:14.0: [8086:06ed] type 00 class 0x0c0330
[    1.711580] pci 0000:00:14.0: reg 0x10: [mem 0xa1480000-0xa148ffff 64bit]
[    1.711793] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    1.713046] pci 0000:00:14.2: [8086:06ef] type 00 class 0x050000
[    1.713098] pci 0000:00:14.2: reg 0x10: [mem 0x6012210000-0x6012211fff 64bit]
[    1.713133] pci 0000:00:14.2: reg 0x18: [mem 0x6012216000-0x6012216fff 64bit]
[    1.716024] pci 0000:00:14.3: [8086:06f0] type 00 class 0x028000
[    1.716241] pci 0000:00:14.3: reg 0x10: [mem 0x601220c000-0x601220ffff 64bit]
[    1.717200] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[    1.719353] pci 0000:00:15.0: [8086:06e8] type 00 class 0x0c8000
[    1.719403] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    1.721513] pci 0000:00:15.1: [8086:06e9] type 00 class 0x0c8000
[    1.721563] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    1.723731] pci 0000:00:16.0: [8086:06e0] type 00 class 0x078000
[    1.723780] pci 0000:00:16.0: reg 0x10: [mem 0x6012213000-0x6012213fff 64bit]
[    1.723962] pci 0000:00:16.0: PME# supported from D3hot
[    1.726188] pci 0000:00:17.0: [8086:06d3] type 00 class 0x010601
[    1.726241] pci 0000:00:17.0: reg 0x10: [mem 0xa1490000-0xa1491fff]
[    1.726269] pci 0000:00:17.0: reg 0x14: [mem 0xa1494000-0xa14940ff]
[    1.726298] pci 0000:00:17.0: reg 0x18: [io  0x5080-0x5087]
[    1.726326] pci 0000:00:17.0: reg 0x1c: [io  0x5088-0x508b]
[    1.726354] pci 0000:00:17.0: reg 0x20: [io  0x5060-0x507f]
[    1.726382] pci 0000:00:17.0: reg 0x24: [mem 0xa1493000-0xa14937ff]
[    1.726540] pci 0000:00:17.0: PME# supported from D3hot
[    1.728669] pci 0000:00:1b.0: [8086:06ac] type 01 class 0x060400
[    1.728963] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    1.729024] pci 0000:00:1b.0: PTM enabled (root), 4ns granularity
[    1.731534] pci 0000:00:1d.0: [8086:06b0] type 01 class 0x060400
[    1.731814] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.731872] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    1.734301] pci 0000:00:1d.5: [8086:06b5] type 01 class 0x060400
[    1.734577] pci 0000:00:1d.5: PME# supported from D0 D3hot D3cold
[    1.734631] pci 0000:00:1d.5: PTM enabled (root), 4ns granularity
[    1.737027] pci 0000:00:1f.0: [8086:068d] type 00 class 0x060100
[    1.739300] pci 0000:00:1f.3: [8086:06c8] type 00 class 0x040380
[    1.739368] pci 0000:00:1f.3: reg 0x10: [mem 0x6012208000-0x601220bfff 64bit]
[    1.739454] pci 0000:00:1f.3: reg 0x20: [mem 0x6012100000-0x60121fffff 64bit]
[    1.739625] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    1.742115] pci 0000:00:1f.4: [8086:06a3] type 00 class 0x0c0500
[    1.742296] pci 0000:00:1f.4: reg 0x10: [mem 0x6012212000-0x60122120ff 64bit]
[    1.742520] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    1.743852] pci 0000:00:1f.5: [8086:06a4] type 00 class 0x0c8000
[    1.743891] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    1.745030] pci 0000:01:00.0: [10de:1f14] type 00 class 0x030000
[    1.745056] pci 0000:01:00.0: reg 0x10: [mem 0xa0000000-0xa0ffffff]
[    1.745077] pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
[    1.745099] pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
[    1.745113] pci 0000:01:00.0: reg 0x24: [io  0x4000-0x407f]
[    1.745127] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    1.745220] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    1.745525] pci 0000:01:00.1: [10de:10f9] type 00 class 0x040300
[    1.745547] pci 0000:01:00.1: reg 0x10: [mem 0xa1000000-0xa1003fff]
[    1.745773] pci 0000:01:00.2: [10de:1ada] type 00 class 0x0c0330
[    1.745805] pci 0000:01:00.2: reg 0x10: [mem 0x6012000000-0x601203ffff 64bit pref]
[    1.745840] pci 0000:01:00.2: reg 0x1c: [mem 0x6012040000-0x601204ffff 64bit pref]
[    1.745951] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[    1.746052] pci 0000:01:00.3: [10de:1adb] type 00 class 0x0c8000
[    1.746074] pci 0000:01:00.3: reg 0x10: [mem 0xa1004000-0xa1004fff]
[    1.746214] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[    1.746337] pci 0000:00:01.0: PCI bridge to [bus 01-05]
[    1.746342] pci 0000:00:01.0:   bridge window [io  0x4000-0x4fff]
[    1.746346] pci 0000:00:01.0:   bridge window [mem 0xa0000000-0xa10fffff]
[    1.746353] pci 0000:00:01.0:   bridge window [mem 0x6000000000-0x60120fffff 64bit pref]
[    1.746659] pci 0000:06:00.0: [144d:a808] type 00 class 0x010802
[    1.746713] pci 0000:06:00.0: reg 0x10: [mem 0xa1300000-0xa1303fff 64bit]
[    1.747488] pci 0000:00:1b.0: PCI bridge to [bus 06]
[    1.747502] pci 0000:00:1b.0:   bridge window [mem 0xa1300000-0xa13fffff]
[    1.747662] pci 0000:07:00.0: [1344:5413] type 00 class 0x010802
[    1.747717] pci 0000:07:00.0: reg 0x10: [mem 0xa1200000-0xa1203fff 64bit]
[    1.748196] pci 0000:07:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:1d.0 (capable of 63.012 Gb/s with 16.0 GT/s PCIe x4 link)
[    1.748398] pci 0000:00:1d.0: PCI bridge to [bus 07]
[    1.748412] pci 0000:00:1d.0:   bridge window [mem 0xa1200000-0xa12fffff]
[    1.748567] pci 0000:08:00.0: [10ec:2600] type 00 class 0x020000
[    1.748608] pci 0000:08:00.0: reg 0x10: [io  0x3000-0x30ff]
[    1.748666] pci 0000:08:00.0: reg 0x18: [mem 0xa1104000-0xa1104fff 64bit]
[    1.748701] pci 0000:08:00.0: reg 0x20: [mem 0xa1100000-0xa1103fff 64bit]
[    1.748916] pci 0000:08:00.0: supports D1 D2
[    1.748916] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.749211] pci 0000:00:1d.5: PCI bridge to [bus 08]
[    1.749219] pci 0000:00:1d.5:   bridge window [io  0x3000-0x3fff]
[    1.749226] pci 0000:00:1d.5:   bridge window [mem 0xa1100000-0xa11fffff]
[    1.749540] xen: registering gsi 13 triggering 1 polarity 0
[    1.750185] xen: registering gsi 14 triggering 0 polarity 1
[    1.756827] ACPI: EC: interrupt unblocked
[    1.756828] ACPI: EC: event unblocked
[    1.756853] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    1.756854] ACPI: EC: GPE=0x14
[    1.756855] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[    1.756856] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[    1.756891] xen:balloon: Initialising balloon driver
[    1.756900] iommu: Default domain type: Translated
[    1.756900] iommu: DMA domain TLB invalidation policy: lazy mode
[    1.756900] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    1.756900] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.756900] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    1.756900] pci 0000:00:02.0: vgaarb: no bridge control possible
[    1.756900] pci 0000:01:00.0: vgaarb: bridge control possible
[    1.756900] vgaarb: loaded
[    1.756900] SCSI subsystem initialized
[    1.756900] libata version 3.00 loaded.
[    1.756900] ACPI: bus type USB registered
[    1.756900] usbcore: registered new interface driver usbfs
[    1.756900] usbcore: registered new interface driver hub
[    1.756900] usbcore: registered new device driver usb
[    1.756900] pps_core: LinuxPPS API ver. 1 registered
[    1.756900] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.756900] PTP clock support registered
[    1.756900] EDAC MC: Ver: 3.0.0
[    1.757153] Registered efivars operations
[    1.757797] NetLabel: Initializing
[    1.757798] NetLabel:  domain hash size = 128
[    1.757798] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.757808] NetLabel:  unlabeled traffic allowed by default
[    1.757811] PCI: Using ACPI for IRQ routing
[    1.841824] PCI: pci_cache_line_size set to 64 bytes
[    1.842348] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    1.842350] e820: reserve RAM buffer [mem 0x88d58000-0x8bffffff]
[    1.842350] e820: reserve RAM buffer [mem 0x9786e000-0x97ffffff]
[    1.842351] e820: reserve RAM buffer [mem 0x99c4f000-0x9bffffff]
[    1.842352] e820: reserve RAM buffer [mem 0x1690f2000-0x16bffffff]
[    1.842359] clocksource: Switched to clocksource tsc-early
[    1.848600] VFS: Disk quotas dquot_6.6.0
[    1.848608] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.848620] hugetlbfs: disabling because there are no supported hugepage sizes
[    1.848647] pnp: PnP ACPI init
[    1.848902] system 00:00: [io  0x1800-0x18fe] has been reserved
[    1.848905] system 00:00: [mem 0xfd000000-0xfd69ffff] has been reserved
[    1.848907] system 00:00: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[    1.848908] system 00:00: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    1.848909] system 00:00: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    1.848911] system 00:00: [mem 0xfe200000-0xfe7fffff] has been reserved
[    1.848912] system 00:00: [mem 0xfc7e0000-0xfc7e0fff] has been reserved
[    1.848913] system 00:00: [mem 0xff000000-0xffffffff] could not be reserved
[    1.849200] system 00:01: [io  0x2000-0x20fe] has been reserved
[    1.849282] system 00:02: [io  0x0680-0x069f] has been reserved
[    1.849284] system 00:02: [io  0x164e-0x164f] has been reserved
[    1.849284] system 00:02: [io  0xfd60-0xfd63] has been reserved
[    1.849313] xen: registering gsi 8 triggering 1 polarity 0
[    1.849462] system 00:04: [io  0x1854-0x1857] has been reserved
[    1.849484] xen: registering gsi 1 triggering 1 polarity 0
[    1.850354] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
[    1.850356] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
[    1.850358] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
[    1.850359] system 00:06: [mem 0xe0000000-0xefffffff] has been reserved
[    1.850360] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
[    1.850361] system 00:06: [mem 0xfed90000-0xfed93fff] could not be reserved
[    1.850362] system 00:06: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    1.850364] system 00:06: [mem 0xfee00000-0xfeefffff] has been reserved
[    1.850739] system 00:07: [mem 0xfe038000-0xfe038fff] has been reserved
[    1.851174] pnp: PnP ACPI: found 8 devices
[    1.858894] PM-Timer failed consistency check  (0xffffff) - aborting.
[    1.858927] NET: Registered PF_INET protocol family
[    1.858940] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.859262] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    1.859266] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    1.859269] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    1.859298] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    1.859337] TCP: Hash tables configured (established 32768 bind 32768)
[    1.859361] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[    1.859372] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    1.859378] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    1.859401] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.859404] NET: Registered PF_XDP protocol family
[    1.859406] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    1.859413] pci 0000:00:15.0: BAR 0: assigned [mem 0x4010000000-0x4010000fff 64bit]
[    1.859443] pci 0000:00:15.1: BAR 0: assigned [mem 0x4010001000-0x4010001fff 64bit]
[    1.859467] pci 0000:01:00.0: BAR 6: assigned [mem 0xa1080000-0xa10fffff pref]
[    1.859469] pci 0000:00:01.0: PCI bridge to [bus 01-05]
[    1.859471] pci 0000:00:01.0:   bridge window [io  0x4000-0x4fff]
[    1.859477] pci 0000:00:01.0:   bridge window [mem 0xa0000000-0xa10fffff]
[    1.859481] pci 0000:00:01.0:   bridge window [mem 0x6000000000-0x60120fffff 64bit pref]
[    1.859489] pci 0000:00:1b.0: PCI bridge to [bus 06]
[    1.859507] pci 0000:00:1b.0:   bridge window [mem 0xa1300000-0xa13fffff]
[    1.859527] pci 0000:00:1d.0: PCI bridge to [bus 07]
[    1.859537] pci 0000:00:1d.0:   bridge window [mem 0xa1200000-0xa12fffff]
[    1.859557] pci 0000:00:1d.5: PCI bridge to [bus 08]
[    1.859560] pci 0000:00:1d.5:   bridge window [io  0x3000-0x3fff]
[    1.859570] pci 0000:00:1d.5:   bridge window [mem 0xa1100000-0xa11fffff]
[    1.859590] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    1.859591] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    1.859592] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    1.859593] pci_bus 0000:00: resource 7 [mem 0x9f800000-0xdfffffff window]
[    1.859594] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[    1.859595] pci_bus 0000:00: resource 9 [mem 0xfc800000-0xfe7fffff window]
[    1.859596] pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
[    1.859596] pci_bus 0000:01: resource 1 [mem 0xa0000000-0xa10fffff]
[    1.859597] pci_bus 0000:01: resource 2 [mem 0x6000000000-0x60120fffff 64bit pref]
[    1.859598] pci_bus 0000:06: resource 1 [mem 0xa1300000-0xa13fffff]
[    1.859599] pci_bus 0000:07: resource 1 [mem 0xa1200000-0xa12fffff]
[    1.859600] pci_bus 0000:08: resource 0 [io  0x3000-0x3fff]
[    1.859600] pci_bus 0000:08: resource 1 [mem 0xa1100000-0xa11fffff]
[    1.859885] xen: registering gsi 16 triggering 0 polarity 1
[    1.859979] xen: --> pirq=16 -> irq=16 (gsi=16)
[    1.862079] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    1.862107] pci 0000:01:00.2: D0 power state depends on 0000:01:00.0
[    1.862184] xen: registering gsi 16 triggering 0 polarity 1
[    1.862187] Already setup the GSI :16
[    1.862231] xen: registering gsi 18 triggering 0 polarity 1
[    1.862240] xen: --> pirq=18 -> irq=18 (gsi=18)
[    1.862460] pci 0000:01:00.3: D0 power state depends on 0000:01:00.0
[    1.862634] PCI: CLS 64 bytes, default 64
[    1.862672] Trying to unpack rootfs image as initramfs...
[    1.862675] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x255cc9e229f, max_idle_ns: 440795272440 ns
[    1.862721] clocksource: Switched to clocksource tsc
[    1.873404] Initialise system trusted keyrings
[    1.873411] Key type blacklist registered
[    1.873453] workingset: timestamp_bits=36 max_order=20 bucket_order=0
[    1.874296] zbud: loaded
[    1.874586] integrity: Platform Keyring initialized
[    1.879940] NET: Registered PF_ALG protocol family
[    1.879945] xor: automatically using best checksumming function   avx
[    1.879948] Key type asymmetric registered
[    1.879949] Asymmetric key parser 'x509' registered
[    1.879966] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    1.880007] io scheduler mq-deadline registered
[    1.880008] io scheduler kyber registered
[    1.880022] io scheduler bfq registered
[    1.880789] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    1.880947] pcieport 0000:00:01.0: PME: Signaling with IRQ 194
[    1.881121] xen: registering gsi 16 triggering 0 polarity 1
[    1.881124] Already setup the GSI :16
[    1.881291] pcieport 0000:00:1b.0: PME: Signaling with IRQ 195
[    1.881418] pcieport 0000:00:1b.0: AER: enabled with IRQ 195
[    1.881488] pcieport 0000:00:1b.0: DPC: enabled with IRQ 195
[    1.881489] pcieport 0000:00:1b.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[    1.881714] xen: registering gsi 16 triggering 0 polarity 1
[    1.881716] Already setup the GSI :16
[    1.881877] pcieport 0000:00:1d.0: PME: Signaling with IRQ 196
[    1.881984] pcieport 0000:00:1d.0: AER: enabled with IRQ 196
[    1.882046] pcieport 0000:00:1d.0: DPC: enabled with IRQ 196
[    1.882047] pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[    1.882258] xen: registering gsi 17 triggering 0 polarity 1
[    1.882267] xen: --> pirq=17 -> irq=17 (gsi=17)
[    1.882477] pcieport 0000:00:1d.5: PME: Signaling with IRQ 197
[    1.882583] pcieport 0000:00:1d.5: AER: enabled with IRQ 197
[    1.882655] pcieport 0000:00:1d.5: DPC: enabled with IRQ 197
[    1.882657] pcieport 0000:00:1d.5: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[    1.882994] Monitor-Mwait will be used to enter C-1 state
[    1.883012] Monitor-Mwait will be used to enter C-2 state
[    1.883027] Monitor-Mwait will be used to enter C-3 state
[    1.883035] ACPI: \_SB_.PR00: Found 3 idle states
[    1.883040] intel_idle: intel_idle yielding to none
[    1.883149] ACPI: AC: AC Adapter [ACAD] (on-line)
[    1.883188] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:20/PNP0C0D:00/input/input0
[    1.883199] ACPI: button: Lid Switch [LID0]
[    1.883221] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    1.883230] ACPI: button: Sleep Button [SLPB]
[    1.883245] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[    1.883316] ACPI: button: Power Button [PWRB]
[    1.883341] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    1.883362] ACPI: button: Power Button [PWRF]
[    1.883502] ACPI: \_SB_.PR00: Found 3 idle states
[    1.883635] ACPI: \_SB_.PR01: Found 3 idle states
[    1.883777] ACPI: \_SB_.PR02: Found 3 idle states
[    1.883929] ACPI: \_SB_.PR03: Found 3 idle states
[    1.884139] ACPI: \_SB_.PR04: Found 3 idle states
[    1.884296] ACPI: \_SB_.PR05: Found 3 idle states
[    1.884493] ACPI: \_SB_.PR06: Found 3 idle states
[    1.884715] ACPI: \_SB_.PR07: Found 3 idle states
[    1.884942] ACPI: \_SB_.PR08: Found 3 idle states
[    1.885154] ACPI: \_SB_.PR09: Found 3 idle states
[    1.885673] ACPI: \_SB_.PR10: Found 3 idle states
[    1.885905] ACPI: \_SB_.PR11: Found 3 idle states
[    1.886500] thermal LNXTHERM:00: registered as thermal_zone0
[    1.886501] ACPI: thermal: Thermal Zone [TZ00] (82 C)
[    1.886908] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.887429] ACPI: battery: Slot [BAT1] (battery present)
[    1.888285] hpet_acpi_add: no address or irqs in _CRS
[    1.888323] Non-volatile memory driver v1.3
[    1.888347] Linux agpgart interface v0.103
[    1.908780] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[    1.908858] xen: registering gsi 16 triggering 0 polarity 1
[    1.908862] Already setup the GSI :16
[    1.925785] intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
[    1.925866] xen: registering gsi 17 triggering 0 polarity 1
[    1.925871] Already setup the GSI :17
[    1.930950] ahci 0000:00:17.0: version 3.0
[    1.931040] xen: registering gsi 16 triggering 0 polarity 1
[    1.931043] Already setup the GSI :16
[    1.931199] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    1.931202] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst
[    1.931385] scsi host0: ahci
[    1.931426] ata1: SATA max UDMA/133 abar m2048@0xa1493000 port 0xa1493100 irq 199
[    1.931577] usbcore: registered new interface driver usbserial_generic
[    1.931580] usbserial: USB Serial support registered for generic
[    1.931600] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    1.931601] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.932421] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.932474] mousedev: PS/2 mouse device common for all mice
[    1.932619] rtc_cmos 00:03: RTC can wake from S4
[    1.934281] rtc_cmos 00:03: registered as rtc0
[    1.934633] rtc_cmos 00:03: setting system clock to 2023-12-27T16:24:42 UTC (1703694282)
[    1.934674] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram
[    1.934686] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.934696] device-mapper: uevent: version 1.0.3
[    1.934739] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[    1.934804] intel_pstate: CPU model not supported
[    1.935041] efifb: probing for efifb
[    1.936066] efifb: No BGRT, not showing boot graphics
[    1.936067] efifb: framebuffer at 0x4000000000, using 8100k, total 8100k
[    1.936068] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    1.936069] efifb: scrolling: redraw
[    1.936069] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.936107] fbcon: Deferring console take-over
[    1.936108] fb0: EFI VGA frame buffer device
[    1.944098] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    1.973337] pstore: Registered efi as persistent store backend
[    1.973354] hid: raw HID events driver (C) Jiri Kosina
[    1.973381] usbcore: registered new interface driver usbhid
[    1.973382] usbhid: USB HID core driver
[    1.973451] intel_pmc_core INT33A1:00:  initialized
[    1.973553] drop_monitor: Initializing network drop monitor service
[    1.973596] Initializing XFRM netlink socket
[    1.973654] NET: Registered PF_INET6 protocol family
[    2.194133] Freeing initrd memory: 32756K
[    2.198439] Segment Routing with IPv6
[    2.198441] RPL Segment Routing with IPv6
[    2.198449] In-situ OAM (IOAM) with IPv6
[    2.198466] mip6: Mobile IPv6
[    2.198468] NET: Registered PF_PACKET protocol family
[    2.199003] IPI shorthand broadcast: enabled
[    2.199009] AVX2 version of gcm_enc/dec engaged.
[    2.199364] AES CTR mode by8 optimization enabled
[    2.226946] sched_clock: Marking stable (2193098732, 33830654)->(2234960075, -8030689)
[    2.227214] registered taskstats version 1
[    2.227640] Loading compiled-in X.509 certificates
[    2.228110] Loaded X.509 cert 'Build time autogenerated kernel key: 90fe2fa76ad832b7c3ae4247794ad0841b4b9aaa'
[    2.228513] zswap: loaded using pool lzo/zbud
[    2.228956] page_owner is disabled
[    2.229012] Key type .fscrypt registered
[    2.229013] Key type fscrypt-provisioning registered
[    2.229208] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=yes
[    2.229261] pstore: Using crash dump compression: deflate
[    2.229268] Key type big_key registered
[    2.232966] Key type encrypted registered
[    2.234698] Loading compiled-in module X.509 certificates
[    2.235086] Loaded X.509 cert 'Build time autogenerated kernel key: 90fe2fa76ad832b7c3ae4247794ad0841b4b9aaa'
[    2.235088] ima: Allocated hash algorithm: sha256
[    2.239137] ata1: SATA link down (SStatus 4 SControl 300)
[    2.252741] ima: No architecture policies found
[    2.252752] evm: Initialising EVM extended attributes:
[    2.252752] evm: security.selinux
[    2.252753] evm: security.SMACK64 (disabled)
[    2.252753] evm: security.SMACK64EXEC (disabled)
[    2.252754] evm: security.SMACK64TRANSMUTE (disabled)
[    2.252754] evm: security.SMACK64MMAP (disabled)
[    2.252755] evm: security.apparmor
[    2.252755] evm: security.ima
[    2.252755] evm: security.capability
[    2.252756] evm: HMAC attrs: 0x1
[    2.253005] PM:   Magic number: 3:140:440
[    2.253025] clockevents broadcast: hash matches
[    2.253048] acpi INT3519:00: hash matches
[    2.253128] RAS: Correctable Errors collector initialized.
[    2.254161] Freeing unused decrypted memory: 2036K
[    2.254952] Freeing unused kernel image (initmem) memory: 3604K
[    2.254954] Write protecting the kernel read-only data: 24576k
[    2.261644] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    2.261802] Freeing unused kernel image (rodata/data gap) memory: 444K
[    2.261806] rodata_test: all tests were successful
[    2.261810] Run /init as init process
[    2.261811]   with arguments:
[    2.261811]     /init
[    2.261812]     placeholder
[    2.261812]     rhgb
[    2.261813]   with environment:
[    2.261813]     HOME=/
[    2.261814]     TERM=linux
[    2.352153] systemd[1]: systemd v245.9-1.fc32 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
[    2.352261] systemd[1]: Detected architecture x86-64.
[    2.352263] systemd[1]: Running in initial RAM disk.
[    2.352287] systemd[1]: Set hostname to <dom0>.
[    2.419295] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice.
[    2.419353] systemd[1]: Reached target Local File Systems.
[    2.419364] systemd[1]: Reached target Slices.
[    2.419373] systemd[1]: Reached target Swap.
[    2.419379] systemd[1]: Reached target Timers.
[    2.419521] systemd[1]: Listening on Journal Audit Socket.
[    2.419612] systemd[1]: Listening on Journal Socket (/dev/log).
[    2.419706] systemd[1]: Listening on Journal Socket.
[    2.419795] systemd[1]: Listening on udev Control Socket.
[    2.419855] systemd[1]: Listening on udev Kernel Socket.
[    2.419863] systemd[1]: Reached target Sockets.
[    2.420806] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    2.422576] systemd[1]: Starting Journal Service...
[    2.423593] systemd[1]: Starting Load Kernel Modules...
[    2.424525] systemd[1]: Starting Setup Virtual Console...
[    2.425057] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    2.426162] systemd[1]: Starting Create Static Device Nodes in /dev...
[    2.433824] systemd[1]: Finished Create Static Device Nodes in /dev.
[    2.451365] xen:xen_evtchn: Event-channel device installed
[    2.456637] xen_pciback: backend is vpci
[    2.459374] xen_acpi_processor: Uploading Xen processor PM info
[    2.463755] systemd[1]: Finished Load Kernel Modules.
[    2.463800] audit: type=1130 audit(1703694283.028:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.464737] systemd[1]: Starting Apply Kernel Variables...
[    2.472267] systemd[1]: Started Journal Service.
[    2.472351] audit: type=1130 audit(1703694283.036:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.472801] audit: type=1130 audit(1703694283.037:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.484262] audit: type=1130 audit(1703694283.048:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.485240] audit: type=1130 audit(1703694283.049:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.551018] pciback 0000:00:14.3: xen_pciback: seizing device
[    2.552280] xen: registering gsi 16 triggering 0 polarity 1
[    2.552287] Already setup the GSI :16
[    2.661190] pciback 0000:08:00.0: xen_pciback: seizing device
[    2.661515] xen: registering gsi 17 triggering 0 polarity 1
[    2.661525] Already setup the GSI :17
[    3.719529] audit: type=1334 audit(1703694284.283:7): prog-id=5 op=UNLOAD
[    3.719629] audit: type=1334 audit(1703694284.283:8): prog-id=4 op=UNLOAD
[    3.719712] audit: type=1334 audit(1703694284.283:9): prog-id=3 op=UNLOAD
[    3.786527] audit: type=1334 audit(1703694284.350:10): prog-id=6 op=LOAD
[    4.034040] wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
[    4.034045] wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
[    4.034047] wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
[    4.034048] wmi_bus wmi_bus-PNP0C14:02: WQ data block query control method not found
[    4.034193] acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    4.034237] acpi PNP0C14:05: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    4.136945] input: ELAN050A:01 04F3:3158 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-ELAN050A:01/0018:04F3:3158.0001/input/input5
[    4.137045] input: ELAN050A:01 04F3:3158 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-ELAN050A:01/0018:04F3:3158.0001/input/input7
[    4.137137] hid-generic 0018:04F3:3158.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN050A:01 04F3:3158] on i2c-ELAN050A:01
[    4.141274] xen: registering gsi 16 triggering 0 polarity 1
[    4.141281] Already setup the GSI :16
[    4.141347] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    4.143351] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    4.144459] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[    4.148722] nvme 0000:06:00.0: platform quirk: setting simple suspend
[    4.148812] nvme nvme0: pci function 0000:06:00.0
[    4.149107] xen: registering gsi 16 triggering 0 polarity 1
[    4.149112] Already setup the GSI :16
[    4.149777] nvme 0000:07:00.0: platform quirk: setting simple suspend
[    4.150095] nvme nvme1: pci function 0000:07:00.0
[    4.150260] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    4.150320] xen: registering gsi 16 triggering 0 polarity 1
[    4.150326] Already setup the GSI :16
[    4.150420] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    4.150426] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    4.150511] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[    4.150514] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.150515] usb usb1: Product: xHCI Host Controller
[    4.150516] usb usb1: Manufacturer: Linux 5.15.94-1.qubes.fc32.x86_64 xhci-hcd
[    4.150518] usb usb1: SerialNumber: 0000:00:14.0
[    4.152366] hub 1-0:1.0: USB hub found
[    4.152405] hub 1-0:1.0: 16 ports detected
[    4.154064] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[    4.154066] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.154067] usb usb2: Product: xHCI Host Controller
[    4.154068] usb usb2: Manufacturer: Linux 5.15.94-1.qubes.fc32.x86_64 xhci-hcd
[    4.154069] usb usb2: SerialNumber: 0000:00:14.0
[    4.154174] hub 2-0:1.0: USB hub found
[    4.154194] hub 2-0:1.0: 8 ports detected
[    4.155210] usb: port power management may be unreliable
[    4.156072] xen: registering gsi 18 triggering 0 polarity 1
[    4.156077] Already setup the GSI :18
[    4.156128] xhci_hcd 0000:01:00.2: xHCI Host Controller
[    4.156177] xhci_hcd 0000:01:00.2: new USB bus registered, assigned bus number 3
[    4.156420] nvme nvme0: missing or invalid SUBNQN field.
[    4.156441] nvme nvme0: Shutdown timeout set to 8 seconds
[    4.156779] xhci_hcd 0000:01:00.2: hcc params 0x0180ff05 hci version 0x110 quirks 0x0000000000000010
[    4.156968] xhci_hcd 0000:01:00.2: xHCI Host Controller
[    4.157040] xhci_hcd 0000:01:00.2: new USB bus registered, assigned bus number 4
[    4.157042] xhci_hcd 0000:01:00.2: Host supports USB 3.1 Enhanced SuperSpeed
[    4.157119] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[    4.157120] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.157121] usb usb3: Product: xHCI Host Controller
[    4.157122] usb usb3: Manufacturer: Linux 5.15.94-1.qubes.fc32.x86_64 xhci-hcd
[    4.157123] usb usb3: SerialNumber: 0000:01:00.2
[    4.157216] hub 3-0:1.0: USB hub found
[    4.157236] hub 3-0:1.0: 2 ports detected
[    4.157505] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    4.157547] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[    4.157548] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.157549] usb usb4: Product: xHCI Host Controller
[    4.157550] usb usb4: Manufacturer: Linux 5.15.94-1.qubes.fc32.x86_64 xhci-hcd
[    4.157550] usb usb4: SerialNumber: 0000:01:00.2
[    4.157662] hub 4-0:1.0: USB hub found
[    4.157677] hub 4-0:1.0: 4 ports detected
[    4.171677] nvme nvme0: 12/0/0 default/read/poll queues
[    4.174853]  nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8
[    4.182944] nvme nvme1: allocated 64 MiB host memory buffer.
[    4.184209] input: ELAN050A:01 04F3:3158 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-ELAN050A:01/0018:04F3:3158.0001/input/input8
[    4.184303] input: ELAN050A:01 04F3:3158 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-ELAN050A:01/0018:04F3:3158.0001/input/input10
[    4.184380] hid-multitouch 0018:04F3:3158.0001: input,hidraw0: I2C HID v1.00 Mouse [ELAN050A:01 04F3:3158] on i2c-ELAN050A:01
[    4.204460] nvme nvme1: 12/0/0 default/read/poll queues
[    4.211470]  nvme1n1: p2 p3 p4 p5 p6
[    4.252267] ACPI Warning: \_SB.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20210730/nsarguments-61)
[    4.252314] ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20210730/nsarguments-61)
[    4.252486] pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
[    4.252489] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.PEG0.PEGP handle
[    4.252490] nouveau: detected PR support, will not use DSM
[    4.252517] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    4.252590] xen: registering gsi 16 triggering 0 polarity 1
[    4.252596] Already setup the GSI :16
[    4.259499] xen: registering gsi 16 triggering 0 polarity 1
[    4.259508] Already setup the GSI :16
[    4.261580] nouveau 0000:01:00.0: NVIDIA TU106 (166000a1)
[    4.287546] xen: registering gsi 16 triggering 0 polarity 1
[    4.287553] Already setup the GSI :16
[    4.289173] i915 0000:00:02.0: [drm] VT-d active for gfx access
[    4.289176] i915 0000:00:02.0: vgaarb: deactivate vga console
[    4.333605] nouveau 0000:01:00.0: bios: version 90.06.59.00.73
[    4.334005] nouveau 0000:01:00.0: pmu: firmware unavailable
[    4.334613] nouveau 0000:01:00.0: fb: 8192 MiB GDDR6
[    4.336514] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
[    4.336804] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[    4.346744] nouveau 0000:01:00.0: DRM: VRAM: 8192 MiB
[    4.346746] nouveau 0000:01:00.0: DRM: GART: 536870912 MiB
[    4.346747] nouveau 0000:01:00.0: DRM: BIT table 'A' not found
[    4.346748] nouveau 0000:01:00.0: DRM: BIT table 'L' not found
[    4.346749] nouveau 0000:01:00.0: DRM: TMDS table version 2.0
[    4.346750] nouveau 0000:01:00.0: DRM: DCB version 4.1
[    4.346751] nouveau 0000:01:00.0: DRM: DCB outp 00: 02002f52 00020010
[    4.346752] nouveau 0000:01:00.0: DRM: DCB outp 01: 01810f36 04600010
[    4.346753] nouveau 0000:01:00.0: DRM: DCB outp 02: 01810f32 00020010
[    4.346754] nouveau 0000:01:00.0: DRM: DCB conn 00: 00001046
[    4.346755] nouveau 0000:01:00.0: DRM: DCB conn 02: 00010261
[    4.347081] nouveau 0000:01:00.0: DRM: MM: using COPY for buffer copies
[    4.373371] i915 0000:00:02.0: [drm] Panel is missing HDR static metadata. Possible support for Intel HDR backlight interface is not used. If your backlight controls don't work try booting with i915.enable_dpcd_backlight=3. needs this, please file a _new_ bug report on drm/i915, see https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs for details.
[    4.373543] i915 0000:00:02.0: [drm] [ENCODER:102:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI clock, gate it
[    4.397808] usb 1-2: new full-speed USB device number 2 using xhci_hcd
[    4.401795] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
[    4.403250] [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.0 on minor 1
[    4.403253] nouveau 0000:01:00.0: DRM: Disabling PCI power management to avoid bug
[    4.454783] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
[    4.507801] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
[    4.530876] usb 1-2: New USB device found, idVendor=04d9, idProduct=fc49, bcdDevice= 3.30
[    4.530888] usb 1-2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    4.530894] usb 1-2: Product: USB Gaming Mouse
[    4.531117] usb 1-2: Device is not authorized for usage
[    4.535847] input: USB Gaming Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:04D9:FC49.0002/input/input11
[    4.536141] hid-generic 0003:04D9:FC49.0002: input,hidraw1: USB HID v1.10 Mouse [USB Gaming Mouse] on usb-0000:00:14.0-2/input0
[    4.538841] input: USB Gaming Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.1/0003:04D9:FC49.0003/input/input12
[    4.591201] hid-generic 0003:04D9:FC49.0003: input,hidraw2: USB HID v1.10 Keyboard [USB Gaming Mouse] on usb-0000:00:14.0-2/input1
[    4.596697] input: USB Gaming Mouse Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:04D9:FC49.0004/input/input13
[    4.644876] usb 1-5: new high-speed USB device number 3 using xhci_hcd
[    4.648353] input: USB Gaming Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:04D9:FC49.0004/input/input14
[    4.648973] hid-generic 0003:04D9:FC49.0004: input,hiddev96,hidraw3: USB HID v1.10 Device [USB Gaming Mouse] on usb-0000:00:14.0-2/input2
[    4.649066] usb 1-2: authorized to connect
[    4.782091] usb 1-5: New USB device found, idVendor=0408, idProduct=a061, bcdDevice= 0.04
[    4.782093] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.782094] usb 1-5: Product: HD User Facing
[    4.782095] usb 1-5: Manufacturer: SunplusIT Inc
[    4.782214] usb 1-5: Device is not authorized for usage
[    4.895886] usb 1-14: new full-speed USB device number 4 using xhci_hcd
[    5.025026] usb 1-14: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
[    5.025039] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.025332] usb 1-14: Device is not authorized for usage
[    5.515647] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[    5.517867] ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    5.517899] ACPI: video: Video Device [PEGP] (multi-head: yes  rom: no  post: no)
[    5.518405] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input15
[    5.523569] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.524150] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input16
[    5.524648] vga_switcheroo: enabled
[    5.561331] fbcon: i915drmfb (fb0) is primary device
[    5.561333] fbcon: Deferring console take-over
[    5.561334] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[   10.110753] Key type trusted registered
[   10.134379] kauditd_printk_skb: 44 callbacks suppressed
[   10.134381] audit: type=1130 audit(1703694290.698:55): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-cryptsetup@luks\x2d3699bfd9\x2db67e\x2d41a2\x2d83ee\x2dc2b56fbae1a2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   10.486273] audit: type=1130 audit(1703694291.050:56): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   10.520508] audit: type=1130 audit(1703694291.084:57): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   10.526781] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[   10.540429] audit: type=1334 audit(1703694291.104:58): prog-id=21 op=UNLOAD
[   10.540433] audit: type=1334 audit(1703694291.104:59): prog-id=20 op=UNLOAD
[   10.540434] audit: type=1334 audit(1703694291.104:60): prog-id=19 op=UNLOAD
[   10.541387] audit: type=1334 audit(1703694291.105:61): prog-id=18 op=UNLOAD
[   10.541388] audit: type=1334 audit(1703694291.105:62): prog-id=17 op=UNLOAD
[   10.541952] audit: type=1334 audit(1703694291.106:63): prog-id=16 op=UNLOAD
[   10.542052] audit: type=1334 audit(1703694291.106:64): prog-id=15 op=UNLOAD
[   10.747622] systemd-journald[287]: Received SIGTERM from PID 1 (systemd).
[   10.817588] systemd[1]: RTC configured in localtime, applying delta of -300 minutes to system time.
[   10.832887] systemd[1]: systemd v245.9-1.fc32 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
[   10.833000] systemd[1]: Detected architecture x86-64.
[   10.833347] systemd[1]: Set hostname to <dom0>.
[   10.890376] systemd[1]: /usr/lib/systemd/system/usbguard.service:15: PIDFile= references a path below legacy directory /var/run/, updating /var/run/usbguard.pid → /run/usbguard.pid; please update the unit file accordingly.
[   10.927392] systemd[1]: Configuration file /etc/systemd/system/qubes-vm@sys-usb.service.d/50_autostart.conf is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[   10.992039] systemd[1]: initrd-switch-root.service: Succeeded.
[   10.992227] systemd[1]: Stopped Switch Root.
[   10.992474] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[   10.992667] systemd[1]: Created slice system-getty.slice.
[   10.992870] systemd[1]: Created slice system-modprobe.slice.
[   10.993056] systemd[1]: Created slice system-qubes\x2dvm.slice.
[   10.993240] systemd[1]: Created slice system-serial\x2dgetty.slice.
[   10.993423] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[   10.993599] systemd[1]: Created slice User and Session Slice.
[   10.993626] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
[   10.993801] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   10.993839] systemd[1]: Reached target Block Device Preparation for /dev/mapper/luks-3699bfd9-b67e-41a2-83ee-c2b56fbae1a2.
[   10.993865] systemd[1]: Stopped target Switch Root.
[   10.993886] systemd[1]: Stopped target Initrd File Systems.
[   10.993903] systemd[1]: Stopped target Initrd Root File System.
[   10.993929] systemd[1]: Reached target Remote Encrypted Volumes.
[   10.993952] systemd[1]: Reached target Remote File Systems.
[   10.993976] systemd[1]: Reached target Slices.
[   10.994000] systemd[1]: Reached target Swap.
[   10.994073] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[   10.994920] systemd[1]: Listening on Process Core Dump Socket.
[   10.994985] systemd[1]: Listening on initctl Compatibility Named Pipe.
[   10.995087] systemd[1]: Listening on udev Control Socket.
[   10.995185] systemd[1]: Listening on udev Kernel Socket.
[   10.995285] systemd[1]: Listening on User Database Manager Socket.
[   10.995433] systemd[1]: Condition check resulted in Huge Pages File System being skipped.
[   10.996801] systemd[1]: Mounting POSIX Message Queue File System...
[   10.997984] systemd[1]: Mounting Mount /proc/xen files...
[   10.999244] systemd[1]: Mounting Kernel Debug File System...
[   11.000629] systemd[1]: Mounting Kernel Trace File System...
[   11.000980] systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
[   11.002158] systemd[1]: Mounting Temporary Directory (/tmp)...
[   11.003559] systemd[1]: Starting Create list of static device nodes for the current kernel...
[   11.004793] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   11.004899] systemd[1]: Condition check resulted in Load Kernel Module configfs being skipped.
[   11.006275] systemd[1]: Mounting Kernel Configuration File System...
[   11.006369] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
[   11.007741] systemd[1]: Starting Load Kernel Module fuse...
[   11.008000] systemd[1]: plymouth-switch-root.service: Succeeded.
[   11.008213] systemd[1]: Stopped Plymouth switch root service.
[   11.008782] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[   11.008836] systemd[1]: Stopped Journal Service.
[   11.010648] systemd[1]: Starting Journal Service...
[   11.012419] systemd[1]: Starting Load Kernel Modules...
[   11.013753] systemd[1]: Starting Remount Root and Kernel File Systems...
[   11.014785] fuse: init (API version 7.34)
[   11.015216] systemd[1]: Starting Repartition Root Disk...
[   11.016974] systemd[1]: Starting udev Coldplug all Devices...
[   11.018773] systemd[1]: sysroot.mount: Succeeded.
[   11.019282] systemd[1]: Mounted POSIX Message Queue File System.
[   11.019465] systemd[1]: Mounted Mount /proc/xen files.
[   11.019637] systemd[1]: Mounted Kernel Debug File System.
[   11.019813] systemd[1]: Mounted Kernel Trace File System.
[   11.019964] systemd[1]: Mounted Temporary Directory (/tmp).
[   11.020281] systemd[1]: Finished Create list of static device nodes for the current kernel.
[   11.020532] systemd[1]: Mounted Kernel Configuration File System.
[   11.020783] systemd[1]: modprobe@fuse.service: Succeeded.
[   11.020934] systemd[1]: Finished Load Kernel Module fuse.
[   11.022316] systemd[1]: Mounting FUSE Control File System...
[   11.025019] systemd[1]: Finished Load Kernel Modules.
[   11.026338] systemd[1]: Starting Apply Kernel Variables...
[   11.027606] systemd[1]: Finished Repartition Root Disk.
[   11.027871] systemd[1]: Mounted FUSE Control File System.
[   11.029733] EXT4-fs (dm-0): re-mounted. Opts: discard. Quota mode: none.
[   11.031340] systemd[1]: Finished Remount Root and Kernel File Systems.
[   11.031491] systemd[1]: Condition check resulted in First Boot Wizard being skipped.
[   11.032039] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[   11.032076] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[   11.033254] systemd[1]: Starting Load/Save Random Seed...
[   11.033338] systemd[1]: Condition check resulted in Create System Users being skipped.
[   11.034409] systemd[1]: Starting Create Static Device Nodes in /dev...
[   11.036724] systemd[1]: Finished Apply Kernel Variables.
[   11.044724] systemd[1]: Started Journal Service.
[   11.062303] systemd-journald[792]: Received client request to flush runtime journal.
[   11.156205] input: Acer Wireless Radio Control as /devices/LNXSYSTM:00/10251229:00/input/input17
[   11.232395] xen: registering gsi 16 triggering 0 polarity 1
[   11.232406] Already setup the GSI :16
[   11.244269] idma64 idma64.0: Found Intel integrated DMA 64-bit
[   11.245313] idma64 idma64.1: Found Intel integrated DMA 64-bit
[   11.261402] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[   11.261546] xen: registering gsi 16 triggering 0 polarity 1
[   11.261551] Already setup the GSI :16
[   11.300441] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   11.300651] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   11.302584] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[   11.302589] cfg80211: failed to load regulatory.db
[   11.330691] input: PC Speaker as /devices/platform/pcspkr/input/input18
[   11.643735] nvidia-gpu 0000:01:00.3: enabling device (0000 -> 0002)
[   11.643896] xen: registering gsi 19 triggering 0 polarity 1
[   11.643930] xen: --> pirq=19 -> irq=19 (gsi=19)
[   11.653953] acer_wmi: Acer Laptop ACPI-WMI Extras
[   11.654100] acer_wmi: Function bitmap for Communication Button: 0x800
[   11.664292] xen: registering gsi 16 triggering 0 polarity 1
[   11.664307] Already setup the GSI :16
[   11.664393] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[   11.664465] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[   11.665104] Intel(R) Wireless WiFi driver for Linux
[   11.667087] i2c i2c-26: 2/2 memory slots populated (from DMI)
[   11.667726] i2c i2c-26: Successfully instantiated SPD at 0x50
[   11.683143] xen: registering gsi 16 triggering 0 polarity 1
[   11.683153] Already setup the GSI :16
[   11.684444] intel_rapl_common: Found RAPL domain package
[   11.684447] intel_rapl_common: Found RAPL domain dram
[   11.684492] input: Acer WMI hotkeys as /devices/virtual/input/input19
[   11.740693] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   11.740767] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[   11.741092] xen: registering gsi 16 triggering 0 polarity 1
[   11.741100] Already setup the GSI :16
[   11.741170] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   11.741626] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[   11.741709] xen: registering gsi 17 triggering 0 polarity 1
[   11.741714] Already setup the GSI :17
[   11.741724] snd_hda_intel 0000:01:00.1: Disabling MSI
[   11.741732] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[   11.788404] snd_hda_intel 0000:01:00.1: bound 0000:01:00.0 (ops nv50_audio_component_bind_ops [nouveau])
[   11.797359] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input20
[   11.797601] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input21
[   11.797732] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input22
[   11.797888] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input23
[   11.797949] input: HDA NVidia HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input24
[   11.799549] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC295: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   11.799554] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   11.799556] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   11.799558] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   11.799559] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   11.799560] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x12
[   12.158740] iTCO_vendor_support: vendor-support=0
[   12.159782] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[   12.167539] ee1004 26-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[   12.176204] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[   12.176567] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   12.475463] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input25
[   12.475624] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input26
[   12.476326] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
[   12.476478] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
[   12.476603] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29
[   12.476720] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30
[   13.177916] nvidia-gpu 0000:01:00.3: i2c timeout error e0000000
[   13.177927] ucsi_ccg 25-0008: i2c_transfer failed -110
[   13.177934] ucsi_ccg 25-0008: ucsi_ccg_init failed - -110
[   13.177940] ucsi_ccg: probe of 25-0008 failed with error -110
[   13.290167] EXT4-fs (nvme0n1p7): mounted filesystem with ordered data mode. Opts: discard. Quota mode: none.
[   14.051243] xhci_hcd 0000:00:14.0: remove, state 4
[   14.051248] usb usb2: USB disconnect, device number 1
[   14.051438] xhci_hcd 0000:00:14.0: USB bus 2 deregistered
[   14.051534] xhci_hcd 0000:00:14.0: remove, state 1
[   14.051540] usb usb1: USB disconnect, device number 1
[   14.051541] usb 1-2: USB disconnect, device number 2
[   14.148840] usb 1-5: USB disconnect, device number 3
[   14.149016] usb 1-14: USB disconnect, device number 4
[   14.150989] xhci_hcd 0000:00:14.0: USB bus 1 deregistered
[   14.151536] pciback 0000:00:14.0: xen_pciback: seizing device
[   14.151855] xen: registering gsi 16 triggering 0 polarity 1
[   14.151865] Already setup the GSI :16
[   14.482809] xhci_hcd 0000:01:00.2: remove, state 4
[   14.482820] usb usb4: USB disconnect, device number 1
[   14.483418] xhci_hcd 0000:01:00.2: USB bus 4 deregistered
[   14.485643] xhci_hcd 0000:01:00.2: remove, state 4
[   14.485648] usb usb3: USB disconnect, device number 1
[   14.490844] xhci_hcd 0000:01:00.2: USB bus 3 deregistered
[   14.492288] pciback 0000:01:00.2: xen_pciback: seizing device
[   14.492431] xen: registering gsi 18 triggering 0 polarity 1
[   14.492441] Already setup the GSI :18
[   14.563115] loop: module loaded
[   14.563839] loop0: detected capacity change from 0 to 4194304
[   14.578201] loop1: detected capacity change from 0 to 4194304
[   14.624176] loop2: detected capacity change from 0 to 4194304
[   14.662236] loop3: detected capacity change from 0 to 20971520
[   14.679211] loop4: detected capacity change from 0 to 20971520
[   14.740739] loop5: detected capacity change from 0 to 20971520
[   14.906375] memmap_init_zone_device initialised 32768 pages in 0ms
[   15.228416] loop6: detected capacity change from 0 to 952192
[   15.302448] loop7: detected capacity change from 0 to 25165824
[   15.946727] loop8: detected capacity change from 0 to 25165824
[   16.032672] loop9: detected capacity change from 0 to 952192
[   16.109611] pciback 0000:00:14.0: xen_pciback: vpci: assign to virtual slot 0
[   16.110403] pciback 0000:00:14.0: registering for 2
[   16.110896] pciback 0000:01:00.2: xen_pciback: vpci: assign to virtual slot 1
[   16.111767] pciback 0000:01:00.2: registering for 2
[   16.279434] xen-blkback: backend/vbd/2/51712: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[   16.282197] xen: registering gsi 16 triggering 0 polarity 1
[   16.282210] Already setup the GSI :16
[   16.282799] xen: registering gsi 16 triggering 0 polarity 1
[   16.282803] Already setup the GSI :16
[   16.283214] xen: registering gsi 16 triggering 0 polarity 1
[   16.283218] Already setup the GSI :16
[   16.283594] xen: registering gsi 16 triggering 0 polarity 1
[   16.283600] Already setup the GSI :16
[   16.284052] xen: registering gsi 16 triggering 0 polarity 1
[   16.284057] Already setup the GSI :16
[   16.284485] xen: registering gsi 16 triggering 0 polarity 1
[   16.284489] Already setup the GSI :16
[   16.284929] xen: registering gsi 16 triggering 0 polarity 1
[   16.284933] Already setup the GSI :16
[   16.286447] xen: registering gsi 18 triggering 0 polarity 1
[   16.286453] Already setup the GSI :18
[   16.287100] xen: registering gsi 18 triggering 0 polarity 1
[   16.287105] Already setup the GSI :18
[   16.287588] xen: registering gsi 18 triggering 0 polarity 1
[   16.287593] Already setup the GSI :18
[   16.288155] xen: registering gsi 18 triggering 0 polarity 1
[   16.288160] Already setup the GSI :18
[   16.288634] xen: registering gsi 18 triggering 0 polarity 1
[   16.288637] Already setup the GSI :18
[   16.289115] xen: registering gsi 18 triggering 0 polarity 1
[   16.289118] Already setup the GSI :18
[   16.296369] xen-blkback: backend/vbd/2/51728: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[   16.308999] xen-blkback: backend/vbd/2/51744: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[   16.320638] xen-blkback: backend/vbd/2/51760: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[   17.159211] kauditd_printk_skb: 145 callbacks suppressed
[   17.159213] audit: type=1131 audit(1703712297.723:208): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   17.176804] audit: type=1103 audit(1703712297.741:209): pid=4999 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   17.177726] audit: type=1105 audit(1703712297.741:210): pid=4999 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   17.183174] loop10: detected capacity change from 0 to 4194304
[   17.185513] audit: type=1106 audit(1703712297.749:211): pid=4999 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   17.185533] audit: type=1104 audit(1703712297.749:212): pid=4999 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   17.201211] audit: type=1103 audit(1703712297.765:213): pid=5012 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   17.201465] audit: type=1105 audit(1703712297.765:214): pid=5012 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   17.203156] loop11: detected capacity change from 0 to 4194304
[   17.302402] loop12: detected capacity change from 0 to 20971520
[   18.241269] loop13: detected capacity change from 0 to 20971520
[   18.300213] loop14: detected capacity change from 0 to 952192
[   19.113743] loop15: detected capacity change from 0 to 952192
[   19.183598] loop16: detected capacity change from 0 to 20971520
[   19.575496] xen-blkback: backend/vbd/1/51712: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   19.593395] xen-blkback: backend/vbd/1/51728: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   19.620190] xen-blkback: backend/vbd/1/51744: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   19.636806] xen-blkback: backend/vbd/1/51760: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   20.423515] pciback 0000:08:00.0: xen_pciback: vpci: assign to virtual slot 0
[   20.424355] pciback 0000:08:00.0: registering for 4
[   20.424973] pciback 0000:00:14.3: xen_pciback: vpci: assign to virtual slot 1
[   20.425441] pciback 0000:00:14.3: registering for 4
[   20.608904] xen-blkback: backend/vbd/4/51712: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[   20.611995] xen: registering gsi 17 triggering 0 polarity 1
[   20.612001] Already setup the GSI :17
[   20.612277] xen: registering gsi 17 triggering 0 polarity 1
[   20.612280] Already setup the GSI :17
[   20.612464] xen: registering gsi 17 triggering 0 polarity 1
[   20.612467] Already setup the GSI :17
[   20.612703] xen: registering gsi 17 triggering 0 polarity 1
[   20.612705] Already setup the GSI :17
[   20.612987] xen: registering gsi 17 triggering 0 polarity 1
[   20.612989] Already setup the GSI :17
[   20.613206] xen: registering gsi 17 triggering 0 polarity 1
[   20.613208] Already setup the GSI :17
[   20.615871] xen: registering gsi 16 triggering 0 polarity 1
[   20.615874] Already setup the GSI :16
[   20.617466] xen: registering gsi 16 triggering 0 polarity 1
[   20.617469] Already setup the GSI :16
[   20.618230] xen: registering gsi 16 triggering 0 polarity 1
[   20.618232] Already setup the GSI :16
[   20.618993] xen: registering gsi 16 triggering 0 polarity 1
[   20.618995] Already setup the GSI :16
[   20.619763] xen: registering gsi 16 triggering 0 polarity 1
[   20.619765] Already setup the GSI :16
[   20.620432] xen: registering gsi 16 triggering 0 polarity 1
[   20.620435] Already setup the GSI :16
[   20.621377] xen: registering gsi 16 triggering 0 polarity 1
[   20.621379] Already setup the GSI :16
[   20.621699] pciback 0000:00:14.3: xen-pciback: Driver tried to write to a read-only configuration space field at offset 0x48, size 2. This may be harmless, but if you have problems with your device:
               1) see permissive attribute in sysfs
               2) report problems to the xen-devel mailing list along with details of your device obtained from lspci.
[   20.633170] xen-blkback: backend/vbd/4/51728: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[   20.653333] xen-blkback: backend/vbd/4/51744: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[   20.667831] xen-blkback: backend/vbd/4/51760: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[   20.971633] pciback 0000:00:14.0: xen_pciback: cannot enable memory-write-invalidate (-22)
[   21.664274] audit: type=1103 audit(1703712302.228:215): pid=5836 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   21.664559] audit: type=1105 audit(1703712302.228:216): pid=5836 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   21.672929] audit: type=1106 audit(1703712302.237:217): pid=5836 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   23.461776] kauditd_printk_skb: 3 callbacks suppressed
[   23.461778] audit: type=1106 audit(1703712304.025:221): pid=5012 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   23.461813] audit: type=1104 audit(1703712304.026:222): pid=5012 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   23.475973] audit: type=1130 audit(1703712304.040:223): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=qubes-vm@sys-usb comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   23.486482] audit: type=1130 audit(1703712304.050:224): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   23.488659] audit: type=1130 audit(1703712304.052:225): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=crond comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   23.539530] audit: type=1130 audit(1703712304.103:226): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   23.558536] input: sys-usb: USB Gaming Mouse Consumer Control as /devices/virtual/input/input31
[   23.559880] input: sys-usb: USB Gaming Mouse as /devices/virtual/input/input32
[   23.627892] audit: type=1130 audit(1703712304.192:227): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=polkit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   23.628802] audit: type=1130 audit(1703712304.193:228): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=accounts-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   24.008168] xen-blkback: backend/vbd/3/51712: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   24.029230] xen-blkback: backend/vbd/3/51728: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   24.058337] xen-blkback: backend/vbd/3/51744: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   24.074621] xen-blkback: backend/vbd/3/51760: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   24.719574] audit: type=1130 audit(1703712305.283:229): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=plymouth-quit-wait comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   24.721535] audit: type=1130 audit(1703712305.285:230): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=serial-getty@hvc0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   28.669664] kauditd_printk_skb: 14 callbacks suppressed
[   28.669666] audit: type=1100 audit(1703712309.233:243): pid=5997 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_unix acct="debian" exe="/usr/sbin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   28.669764] audit: type=1101 audit(1703712309.233:244): pid=5997 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_unix acct="debian" exe="/usr/sbin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   28.718627] audit: type=1106 audit(1703712309.282:245): pid=5955 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_unix,pam_systemd acct="lightdm" exe="/usr/sbin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   28.718676] audit: type=1104 audit(1703712309.282:246): pid=5955 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_env,pam_permit acct="lightdm" exe="/usr/sbin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   28.722616] audit: type=1103 audit(1703712309.286:247): pid=5997 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_unix acct="debian" exe="/usr/sbin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   28.722675] audit: type=1006 audit(1703712309.286:248): pid=5997 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
[   28.722677] audit: type=1300 audit(1703712309.286:248): arch=c000003e syscall=1 success=yes exit=4 a0=7 a1=7ffffe352800 a2=4 a3=7ffffe352514 items=0 ppid=5850 pid=5997 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=2 comm="lightdm" exe="/usr/sbin/lightdm" key=(null)
[   28.722679] audit: type=1327 audit(1703712309.286:248): proctitle=6C69676874646D002D2D73657373696F6E2D6368696C64003132003139
[   28.740607] audit: type=1130 audit(1703712309.304:249): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   28.746930] audit: type=1101 audit(1703712309.311:250): pid=6005 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_unix acct="debian" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   29.101469] loop17: detected capacity change from 0 to 20971520
[   29.173744] loop18: detected capacity change from 0 to 4194304
[   30.898046] loop19: detected capacity change from 0 to 25165824
[   30.993913] loop20: detected capacity change from 0 to 952192
[   33.825736] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=10413 end=10414) time 237 us, min 1053, max 1079, scanline start 1020, end 1084
[   34.128205] xen-blkback: backend/vbd/5/51712: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   34.156835] xen-blkback: backend/vbd/5/51728: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   34.181474] xen-blkback: backend/vbd/5/51744: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   34.201958] xen-blkback: backend/vbd/5/51760: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   35.647287] input: sys-usb: USB Gaming Mouse as /devices/virtual/input/input33
[   37.513133] kauditd_printk_skb: 91 callbacks suppressed
[   37.513135] audit: type=1106 audit(1703712318.077:340): pid=6711 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   37.513154] audit: type=1104 audit(1703712318.077:341): pid=6711 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   37.531645] audit: type=1130 audit(1703712318.095:342): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=qubes-vm@sys-firewall comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   37.541708] audit: type=1129 audit(1703712318.105:343): pid=6823 uid=0 auid=4294967295 ses=4294967295 msg='old-level=N new-level=5 comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
[   37.543273] audit: type=1130 audit(1703712318.107:344): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp-runlevel comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   37.543278] audit: type=1131 audit(1703712318.107:345): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp-runlevel comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   38.986527] audit: type=1131 audit(1703712319.550:346): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@994 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   38.998115] audit: type=1131 audit(1703712319.562:347): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@994 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   50.703285] loop21: detected capacity change from 0 to 41943040
[   50.738996] loop22: detected capacity change from 0 to 41943040
[   50.898517] loop23: detected capacity change from 0 to 20971520
[   52.428336] loop24: detected capacity change from 0 to 20971520
[   52.494719] loop25: detected capacity change from 0 to 952192
[   52.669052] audit: type=1103 audit(1703712333.233:348): pid=7378 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   52.669363] audit: type=1105 audit(1703712333.233:349): pid=7378 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   52.682561] audit: type=1106 audit(1703712333.246:350): pid=7378 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   52.682584] audit: type=1104 audit(1703712333.246:351): pid=7378 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   52.699567] audit: type=1103 audit(1703712333.263:352): pid=7382 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   52.699883] audit: type=1105 audit(1703712333.264:353): pid=7382 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   55.404707] xen-blkback: backend/vbd/6/51712: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   55.442705] xen-blkback: backend/vbd/6/51728: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   55.468427] xen-blkback: backend/vbd/6/51744: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   55.490652] xen-blkback: backend/vbd/6/51760: using 2 queues, protocol 1 (x86_64-abi) persistent grants
[   58.706650] audit: type=1106 audit(1703712339.270:354): pid=7382 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[   58.706669] audit: type=1104 audit(1703712339.270:355): pid=7382 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  176.703636] audit: type=1105 audit(1703712457.267:356): pid=7472 uid=1000 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/pkexec" hostname=? addr=? terminal=? res=success'
[  207.941279] audit: type=1101 audit(1703712488.505:357): pid=7499 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix acct="debian" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  207.941630] audit: type=1123 audit(1703712488.505:358): pid=7499 uid=1000 auid=1000 ses=2 msg='cwd="/home/debian" cmd="dmesg" exe="/usr/bin/sudo" terminal=pts/7 res=success'
[  207.942283] audit: type=1110 audit(1703712488.506:359): pid=7499 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  207.949747] audit: type=1105 audit(1703712488.513:360): pid=7499 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  208.023244] audit: type=1106 audit(1703712488.587:361): pid=7499 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  208.023498] audit: type=1104 audit(1703712488.587:362): pid=7499 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  279.669828] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=69416 end=69417) time 490 us, min 1053, max 1079, scanline start 960, end 1090
[  521.726547] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=127510 end=127511) time 271 us, min 1053, max 1079, scanline start 1026, end 1095
[  522.684921] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=127740 end=127741) time 363 us, min 1053, max 1079, scanline start 1038, end 20
[  523.359899] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=127902 end=127903) time 328 us, min 1053, max 1079, scanline start 1045, end 18
[  526.059994] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=128550 end=128551) time 434 us, min 1053, max 1079, scanline start 1046, end 43
[  533.259818] loop26: detected capacity change from 0 to 200802304
[  533.305046] loop27: detected capacity change from 0 to 200802304
[  533.393109] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=130310 end=130311) time 432 us, min 1053, max 1079, scanline start 1014, end 14
[  533.510680] loop28: detected capacity change from 0 to 20971520
[  533.566167] loop29: detected capacity change from 0 to 20971520
[  537.621524] loop30: detected capacity change from 0 to 20971520
[  541.365723] loop31: detected capacity change from 0 to 20971520
[  542.500760] xen-blkback: backend/vbd/8/51712: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[  542.605335] xen-blkback: backend/vbd/8/51728: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[  542.725976] xen-blkback: backend/vbd/8/51744: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[  544.079414] audit: type=1103 audit(1703712824.643:363): pid=8665 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  544.080806] audit: type=1105 audit(1703712824.645:364): pid=8665 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  544.150327] audit: type=1106 audit(1703712824.714:365): pid=8665 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  544.150440] audit: type=1104 audit(1703712824.714:366): pid=8665 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  544.240673] audit: type=1103 audit(1703712824.804:367): pid=8676 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  544.242209] audit: type=1105 audit(1703712824.806:368): pid=8676 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  544.260430] audit: type=1106 audit(1703712824.824:369): pid=8676 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  544.260562] audit: type=1104 audit(1703712824.824:370): pid=8676 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  553.092883] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=135038 end=135039) time 294 us, min 1053, max 1079, scanline start 1014, end 1088
[  558.392834] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=136310 end=136311) time 317 us, min 1053, max 1079, scanline start 1021, end 1105
[  559.409462] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=136554 end=136555) time 463 us, min 1053, max 1079, scanline start 979, end 1102
[  596.124913] loop26: detected capacity change from 0 to 200802304
[  596.154674] loop27: detected capacity change from 0 to 200802304
[  596.350311] loop28: detected capacity change from 0 to 20971520
[  596.373928] loop29: detected capacity change from 0 to 20971520
[  600.471786] loop30: detected capacity change from 0 to 20971520
[  603.350960] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=147100 end=147101) time 346 us, min 1053, max 1079, scanline start 1018, end 1103
[  604.815443] loop31: detected capacity change from 0 to 20971520
[  605.675885] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=147658 end=147659) time 270 us, min 1053, max 1079, scanline start 1051, end 11
[  606.111494] xen-blkback: backend/vbd/10/51712: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[  606.279556] xen-blkback: backend/vbd/10/51728: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[  606.535301] xen-blkback: backend/vbd/10/51744: using 1 queues, protocol 1 (x86_64-abi) persistent grants
[  606.650830] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=147892 end=147893) time 404 us, min 1053, max 1079, scanline start 993, end 1093
[  607.409125] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=148074 end=148075) time 405 us, min 1053, max 1079, scanline start 998, end 1106
[  608.273264] audit: type=1103 audit(1703712888.837:371): pid=9735 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  608.274900] audit: type=1105 audit(1703712888.839:372): pid=9735 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  608.328299] audit: type=1106 audit(1703712888.892:373): pid=9735 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  608.328483] audit: type=1104 audit(1703712888.892:374): pid=9735 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  608.456951] audit: type=1103 audit(1703712889.021:375): pid=9739 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  608.458987] audit: type=1105 audit(1703712889.023:376): pid=9739 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  608.479314] audit: type=1106 audit(1703712889.043:377): pid=9739 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_unix acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  608.479339] audit: type=1104 audit(1703712889.043:378): pid=9739 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_rootok acct="debian" exe="/usr/sbin/runuser" hostname=? addr=? terminal=? res=success'
[  611.800725] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=149128 end=149129) time 258 us, min 1053, max 1079, scanline start 1013, end 1078
[  611.925957] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=149158 end=149159) time 316 us, min 1053, max 1079, scanline start 1047, end 12
[  628.042262] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=153026 end=153027) time 172 us, min 1053, max 1079, scanline start 1048, end 1093
[  637.492220] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=155294 end=155295) time 258 us, min 1053, max 1079, scanline start 1033, end 1101
[  639.142179] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=155690 end=155691) time 361 us, min 1053, max 1079, scanline start 998, end 1087
[  639.538036] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=155785 end=155786) time 214 us, min 1053, max 1079, scanline start 1033, end 1087
[  645.642199] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=157250 end=157251) time 230 us, min 1053, max 1079, scanline start 1050, end 0
[  647.458795] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=157686 end=157687) time 196 us, min 1053, max 1079, scanline start 1043, end 1095
[  648.725515] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=157990 end=157991) time 454 us, min 1053, max 1079, scanline start 992, end 2
[  648.787994] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=158005 end=158006) time 183 us, min 1053, max 1079, scanline start 1045, end 1091
[  655.817162] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=159692 end=159693) time 433 us, min 1053, max 1079, scanline start 1006, end 10
[  659.887915] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=160669 end=160670) time 220 us, min 1053, max 1079, scanline start 1043, end 1102
[  677.633645] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=164928 end=164929) time 274 us, min 1053, max 1079, scanline start 1020, end 1090
[  685.395900] audit: type=1101 audit(1703712965.960:379): pid=10116 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix acct="debian" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/5 res=success'
[  685.396244] audit: type=1123 audit(1703712965.960:380): pid=10116 uid=1000 auid=1000 ses=2 msg='cwd="/home/debian" cmd=786C20646D657367 exe="/usr/bin/sudo" terminal=pts/5 res=success'
[  685.396835] audit: type=1110 audit(1703712965.961:381): pid=10116 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/5 res=success'
[  685.405764] audit: type=1105 audit(1703712965.970:382): pid=10116 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/5 res=success'
[  685.435010] audit: type=1106 audit(1703712965.999:383): pid=10116 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/5 res=success'
[  685.435213] audit: type=1104 audit(1703712965.999:384): pid=10116 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/5 res=success'
[  708.508463] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=172338 end=172339) time 302 us, min 1053, max 1079, scanline start 1040, end 9
[  722.574428] audit: type=1101 audit(1703713003.138:385): pid=10126 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix acct="debian" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  722.574773] audit: type=1123 audit(1703713003.139:386): pid=10126 uid=1000 auid=1000 ses=2 msg='cwd="/home/debian/test" cmd=6E616E6F20786C646D657367 exe="/usr/bin/sudo" terminal=pts/7 res=success'
[  722.575361] audit: type=1110 audit(1703713003.139:387): pid=10126 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  722.584563] audit: type=1105 audit(1703713003.148:388): pid=10126 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  726.612852] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=176683 end=176684) time 405 us, min 1053, max 1079, scanline start 1035, end 24
[  728.708178] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=177186 end=177187) time 206 us, min 1053, max 1079, scanline start 1029, end 1084
[  734.807264] audit: type=1106 audit(1703713015.371:389): pid=10126 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  734.807461] audit: type=1104 audit(1703713015.371:390): pid=10126 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  738.175005] i915 0000:00:02.0: [drm] *ERROR* Atomic update failure on pipe A (start=179458 end=179459) time 345 us, min 1053, max 1079, scanline start 1038, end 11
[  745.682889] audit: type=1101 audit(1703713026.247:391): pid=10137 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix acct="debian" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/5 res=success'
[  745.683276] audit: type=1123 audit(1703713026.247:392): pid=10137 uid=1000 auid=1000 ses=2 msg='cwd="/home/debian" cmd="dmesg" exe="/usr/bin/sudo" terminal=pts/5 res=success'
[  745.683798] audit: type=1110 audit(1703713026.248:393): pid=10137 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/5 res=success'
[  745.691000] audit: type=1105 audit(1703713026.255:394): pid=10137 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/5 res=success'
[  745.769275] audit: type=1106 audit(1703713026.333:395): pid=10137 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/5 res=success'
[  745.769662] audit: type=1104 audit(1703713026.334:396): pid=10137 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/5 res=success'
[  774.729621] audit: type=1101 audit(1703713055.294:397): pid=10165 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix acct="debian" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  774.729929] audit: type=1123 audit(1703713055.294:398): pid=10165 uid=1000 auid=1000 ses=2 msg='cwd="/home/debian/test" cmd=786C20646D657367 exe="/usr/bin/sudo" terminal=pts/7 res=success'
[  774.730424] audit: type=1110 audit(1703713055.294:399): pid=10165 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  774.738991] audit: type=1105 audit(1703713055.303:400): pid=10165 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  774.757547] audit: type=1106 audit(1703713055.321:401): pid=10165 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  774.757794] audit: type=1104 audit(1703713055.322:402): pid=10165 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  782.658741] audit: type=1101 audit(1703713063.223:403): pid=10176 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix acct="debian" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  782.659100] audit: type=1123 audit(1703713063.223:404): pid=10176 uid=1000 auid=1000 ses=2 msg='cwd="/home/debian/test" cmd="dmesg" exe="/usr/bin/sudo" terminal=pts/7 res=success'
[  782.659736] audit: type=1110 audit(1703713063.224:405): pid=10176 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'
[  782.666651] audit: type=1105 audit(1703713063.231:406): pid=10176 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/7 res=success'

$sudo xenpm get-cpuidle-states
All C-states allowed

cpu id               : 0
total C-states       : 4
idle time(ms)        : 711292
C0                   : transition [             1360357]
                       residency  [              218229 ms]
C1                   : transition [             1282616]
                       residency  [              509114 ms]
C2                   : transition [               76959]
                       residency  [              179846 ms]
C3                   : transition [                 781]
                       residency  [                9229 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [              146567 ms]

cpu id               : 1
total C-states       : 4
idle time(ms)        : 858864
C0                   : transition [              865566]
                       residency  [               66018 ms]
C1                   : transition [              707932]
                       residency  [              353235 ms]
C2                   : transition [              155856]
                       residency  [              483682 ms]
C3                   : transition [                1778]
                       residency  [               13483 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [              146567 ms]

cpu id               : 2
total C-states       : 4
idle time(ms)        : 718537
C0                   : transition [             1487675]
                       residency  [              212262 ms]
C1                   : transition [             1415235]
                       residency  [              564168 ms]
C2                   : transition [               72248]
                       residency  [              136435 ms]
C3                   : transition [                 191]
                       residency  [                3554 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [              110574 ms]

cpu id               : 3
total C-states       : 4
idle time(ms)        : 855506
C0                   : transition [             1098241]
                       residency  [               69519 ms]
C1                   : transition [              947675]
                       residency  [              486257 ms]
C2                   : transition [              149430]
                       residency  [              349808 ms]
C3                   : transition [                1136]
                       residency  [               10833 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [              110574 ms]

cpu id               : 4
total C-states       : 4
idle time(ms)        : 710811
C0                   : transition [             1596249]
                       residency  [              220335 ms]
C1                   : transition [             1532025]
                       residency  [              565087 ms]
C2                   : transition [               63806]
                       residency  [              125950 ms]
C3                   : transition [                 418]
                       residency  [                5046 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [               99993 ms]

cpu id               : 5
total C-states       : 4
idle time(ms)        : 846615
C0                   : transition [             1497816]
                       residency  [               78676 ms]
C1                   : transition [             1382222]
                       residency  [              584197 ms]
C2                   : transition [              113999]
                       residency  [              234520 ms]
C3                   : transition [                1594]
                       residency  [               19026 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [               99993 ms]

cpu id               : 6
total C-states       : 4
idle time(ms)        : 711509
C0                   : transition [             1885761]
                       residency  [              219996 ms]
C1                   : transition [             1831718]
                       residency  [              588585 ms]
C2                   : transition [               53720]
                       residency  [              103020 ms]
C3                   : transition [                 323]
                       residency  [                4817 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [               85825 ms]

cpu id               : 7
total C-states       : 4
idle time(ms)        : 853442
C0                   : transition [             1828597]
                       residency  [               72095 ms]
C1                   : transition [             1720895]
                       residency  [              613373 ms]
C2                   : transition [              106245]
                       residency  [              213792 ms]
C3                   : transition [                1457]
                       residency  [               17158 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [               85825 ms]

cpu id               : 8
total C-states       : 4
idle time(ms)        : 705633
C0                   : transition [             1893999]
                       residency  [              225772 ms]
C1                   : transition [             1834663]
                       residency  [              569137 ms]
C2                   : transition [               58940]
                       residency  [              116032 ms]
C3                   : transition [                 396]
                       residency  [                5477 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [               98618 ms]

cpu id               : 9
total C-states       : 4
idle time(ms)        : 855990
C0                   : transition [              372601]
                       residency  [               68219 ms]
C1                   : transition [              302300]
                       residency  [              188738 ms]
C2                   : transition [               56430]
                       residency  [              381190 ms]
C3                   : transition [               13871]
                       residency  [              278271 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [               98618 ms]

cpu id               : 10
total C-states       : 4
idle time(ms)        : 705249
C0                   : transition [             1156439]
                       residency  [              225436 ms]
C1                   : transition [             1074615]
                       residency  [              471138 ms]
C2                   : transition [               80354]
                       residency  [              201023 ms]
C3                   : transition [                1470]
                       residency  [               18822 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [              167566 ms]

cpu id               : 11
total C-states       : 4
idle time(ms)        : 848203
C0                   : transition [              591443]
                       residency  [               76372 ms]
C1                   : transition [              484357]
                       residency  [              226019 ms]
C2                   : transition [               96066]
                       residency  [              443279 ms]
C3                   : transition [               11019]
                       residency  [              170749 ms]
pc2                  : [                4464 ms]
pc3                  : [               10393 ms]
cc7                  : [              167566 ms]

$sudo xenpm get-cpufreq-states
cpu id               : 0
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 356]
                       residency  [               11230 ms]
P2         [2500 MHz]: transition [                  14]
                       residency  [                 115 ms]
P3         [2300 MHz]: transition [                  10]
                       residency  [                 106 ms]
P4         [2200 MHz]: transition [                   6]
                       residency  [                  41 ms]
P5         [2100 MHz]: transition [                   7]
                       residency  [                  41 ms]
P6         [2000 MHz]: transition [                  15]
                       residency  [                  92 ms]
P7         [1800 MHz]: transition [                  10]
                       residency  [                  45 ms]
P8         [1700 MHz]: transition [                  15]
                       residency  [                  50 ms]
P9         [1600 MHz]: transition [                  34]
                       residency  [                 182 ms]
P10        [1400 MHz]: transition [                  16]
                       residency  [                 132 ms]
P11        [1300 MHz]: transition [                  21]
                       residency  [                 116 ms]
P12        [1200 MHz]: transition [                  20]
                       residency  [                 100 ms]
P13        [1100 MHz]: transition [                  42]
                       residency  [                 205 ms]
P14        [ 900 MHz]: transition [                  32]
                       residency  [                 148 ms]
*P15       [ 800 MHz]: transition [                 271]
                       residency  [              200674 ms]

cpu id               : 1
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 151]
                       residency  [                4292 ms]
P2         [2500 MHz]: transition [                   5]
                       residency  [                  41 ms]
P3         [2300 MHz]: transition [                   3]
                       residency  [                  13 ms]
P4         [2200 MHz]: transition [                   1]
                       residency  [                  11 ms]
P5         [2100 MHz]: transition [                   1]
                       residency  [                   2 ms]
P6         [2000 MHz]: transition [                   8]
                       residency  [                  70 ms]
P7         [1800 MHz]: transition [                   6]
                       residency  [                  24 ms]
P8         [1700 MHz]: transition [                   8]
                       residency  [                  25 ms]
P9         [1600 MHz]: transition [                   6]
                       residency  [                  45 ms]
P10        [1400 MHz]: transition [                   8]
                       residency  [                  43 ms]
P11        [1300 MHz]: transition [                   5]
                       residency  [                  30 ms]
P12        [1200 MHz]: transition [                   7]
                       residency  [                  38 ms]
P13        [1100 MHz]: transition [                   8]
                       residency  [                  36 ms]
P14        [ 900 MHz]: transition [                   7]
                       residency  [                   8 ms]
*P15       [ 800 MHz]: transition [                 127]
                       residency  [               55549 ms]

cpu id               : 2
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 370]
                       residency  [               10528 ms]
P2         [2500 MHz]: transition [                  21]
                       residency  [                 151 ms]
P3         [2300 MHz]: transition [                   9]
                       residency  [                 137 ms]
P4         [2200 MHz]: transition [                  12]
                       residency  [                  91 ms]
P5         [2100 MHz]: transition [                  12]
                       residency  [                  73 ms]
P6         [2000 MHz]: transition [                  20]
                       residency  [                 158 ms]
P7         [1800 MHz]: transition [                  18]
                       residency  [                 134 ms]
P8         [1700 MHz]: transition [                  10]
                       residency  [                  59 ms]
P9         [1600 MHz]: transition [                  44]
                       residency  [                 250 ms]
P10        [1400 MHz]: transition [                  18]
                       residency  [                 144 ms]
P11        [1300 MHz]: transition [                  12]
                       residency  [                  74 ms]
P12        [1200 MHz]: transition [                  20]
                       residency  [                 104 ms]
P13        [1100 MHz]: transition [                  35]
                       residency  [                 193 ms]
P14        [ 900 MHz]: transition [                  35]
                       residency  [                 147 ms]
*P15       [ 800 MHz]: transition [                 268]
                       residency  [              194445 ms]

cpu id               : 3
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 153]
                       residency  [                3088 ms]
P2         [2500 MHz]: transition [                   6]
                       residency  [                  79 ms]
P3         [2300 MHz]: transition [                   2]
                       residency  [                   3 ms]
P4         [2200 MHz]: transition [                   2]
                       residency  [                   3 ms]
P5         [2100 MHz]: transition [                   4]
                       residency  [                   4 ms]
P6         [2000 MHz]: transition [                  10]
                       residency  [                  77 ms]
P7         [1800 MHz]: transition [                   7]
                       residency  [                  25 ms]
P8         [1700 MHz]: transition [                   5]
                       residency  [                  25 ms]
P9         [1600 MHz]: transition [                   7]
                       residency  [                  36 ms]
P10        [1400 MHz]: transition [                   7]
                       residency  [                  12 ms]
P11        [1300 MHz]: transition [                   7]
                       residency  [                  61 ms]
P12        [1200 MHz]: transition [                   3]
                       residency  [                  15 ms]
P13        [1100 MHz]: transition [                  13]
                       residency  [                  37 ms]
P14        [ 900 MHz]: transition [                   8]
                       residency  [                  29 ms]
*P15       [ 800 MHz]: transition [                 124]
                       residency  [               59871 ms]

cpu id               : 4
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 376]
                       residency  [               11894 ms]
P2         [2500 MHz]: transition [                  17]
                       residency  [                 185 ms]
P3         [2300 MHz]: transition [                  12]
                       residency  [                 120 ms]
P4         [2200 MHz]: transition [                  14]
                       residency  [                  75 ms]
P5         [2100 MHz]: transition [                  15]
                       residency  [                 135 ms]
P6         [2000 MHz]: transition [                  25]
                       residency  [                 156 ms]
P7         [1800 MHz]: transition [                  12]
                       residency  [                  95 ms]
P8         [1700 MHz]: transition [                  13]
                       residency  [                  81 ms]
P9         [1600 MHz]: transition [                  42]
                       residency  [                 304 ms]
P10        [1400 MHz]: transition [                  17]
                       residency  [                 115 ms]
P11        [1300 MHz]: transition [                  17]
                       residency  [                  97 ms]
P12        [1200 MHz]: transition [                  25]
                       residency  [                 146 ms]
P13        [1100 MHz]: transition [                  53]
                       residency  [                 284 ms]
P14        [ 900 MHz]: transition [                  26]
                       residency  [                 130 ms]
*P15       [ 800 MHz]: transition [                 276]
                       residency  [              201413 ms]

cpu id               : 5
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 137]
                       residency  [                2956 ms]
P2         [2500 MHz]: transition [                   6]
                       residency  [                  36 ms]
P3         [2300 MHz]: transition [                   3]
                       residency  [                   6 ms]
P4         [2200 MHz]: transition [                   2]
                       residency  [                   7 ms]
P5         [2100 MHz]: transition [                   5]
                       residency  [                  25 ms]
P6         [2000 MHz]: transition [                   5]
                       residency  [                  39 ms]
P7         [1800 MHz]: transition [                   2]
                       residency  [                  37 ms]
P8         [1700 MHz]: transition [                   6]
                       residency  [                  40 ms]
P9         [1600 MHz]: transition [                   4]
                       residency  [                  11 ms]
P10        [1400 MHz]: transition [                   3]
                       residency  [                  28 ms]
P11        [1300 MHz]: transition [                   3]
                       residency  [                  15 ms]
P12        [1200 MHz]: transition [                   8]
                       residency  [                  20 ms]
P13        [1100 MHz]: transition [                  12]
                       residency  [                  47 ms]
P14        [ 900 MHz]: transition [                   7]
                       residency  [                  34 ms]
*P15       [ 800 MHz]: transition [                 115]
                       residency  [               69464 ms]

cpu id               : 6
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 376]
                       residency  [               12335 ms]
P2         [2500 MHz]: transition [                  17]
                       residency  [                 176 ms]
P3         [2300 MHz]: transition [                   7]
                       residency  [                  51 ms]
P4         [2200 MHz]: transition [                   6]
                       residency  [                  35 ms]
P5         [2100 MHz]: transition [                  16]
                       residency  [                  86 ms]
P6         [2000 MHz]: transition [                  22]
                       residency  [                 157 ms]
P7         [1800 MHz]: transition [                  16]
                       residency  [                  84 ms]
P8         [1700 MHz]: transition [                  13]
                       residency  [                  84 ms]
P9         [1600 MHz]: transition [                  24]
                       residency  [                 169 ms]
P10        [1400 MHz]: transition [                  19]
                       residency  [                  86 ms]
P11        [1300 MHz]: transition [                  13]
                       residency  [                  82 ms]
P12        [1200 MHz]: transition [                  26]
                       residency  [                 100 ms]
P13        [1100 MHz]: transition [                  52]
                       residency  [                 241 ms]
P14        [ 900 MHz]: transition [                  34]
                       residency  [                 162 ms]
*P15       [ 800 MHz]: transition [                 286]
                       residency  [              199828 ms]

cpu id               : 7
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 131]
                       residency  [                4842 ms]
P2         [2500 MHz]: transition [                   4]
                       residency  [                  24 ms]
P3         [2300 MHz]: transition [                   3]
                       residency  [                  16 ms]
P4         [2200 MHz]: transition [                   1]
                       residency  [                  13 ms]
P5         [2100 MHz]: transition [                   2]
                       residency  [                   5 ms]
P6         [2000 MHz]: transition [                   4]
                       residency  [                  26 ms]
P7         [1800 MHz]: transition [                   4]
                       residency  [                  37 ms]
P8         [1700 MHz]: transition [                   6]
                       residency  [                  36 ms]
P9         [1600 MHz]: transition [                   9]
                       residency  [                  34 ms]
P10        [1400 MHz]: transition [                   4]
                       residency  [                  23 ms]
P11        [1300 MHz]: transition [                   3]
                       residency  [                   9 ms]
P12        [1200 MHz]: transition [                   7]
                       residency  [                  56 ms]
P13        [1100 MHz]: transition [                   7]
                       residency  [                  58 ms]
P14        [ 900 MHz]: transition [                  10]
                       residency  [                  39 ms]
*P15       [ 800 MHz]: transition [                 102]
                       residency  [               60476 ms]

cpu id               : 8
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 382]
                       residency  [               10979 ms]
P2         [2500 MHz]: transition [                  19]
                       residency  [                 156 ms]
P3         [2300 MHz]: transition [                   6]
                       residency  [                  53 ms]
P4         [2200 MHz]: transition [                  13]
                       residency  [                  96 ms]
P5         [2100 MHz]: transition [                  13]
                       residency  [                 120 ms]
P6         [2000 MHz]: transition [                  29]
                       residency  [                 264 ms]
P7         [1800 MHz]: transition [                  13]
                       residency  [                 108 ms]
P8         [1700 MHz]: transition [                  19]
                       residency  [                  88 ms]
P9         [1600 MHz]: transition [                  27]
                       residency  [                 161 ms]
P10        [1400 MHz]: transition [                  16]
                       residency  [                  97 ms]
P11        [1300 MHz]: transition [                  19]
                       residency  [                 101 ms]
P12        [1200 MHz]: transition [                  31]
                       residency  [                 190 ms]
P13        [1100 MHz]: transition [                  34]
                       residency  [                 146 ms]
P14        [ 900 MHz]: transition [                  25]
                       residency  [                 116 ms]
*P15       [ 800 MHz]: transition [                 276]
                       residency  [              208199 ms]

cpu id               : 9
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 141]
                       residency  [                3356 ms]
P2         [2500 MHz]: transition [                   6]
                       residency  [                  32 ms]
P3         [2300 MHz]: transition [                   3]
                       residency  [                   6 ms]
P4         [2200 MHz]: transition [                   4]
                       residency  [                  14 ms]
P5         [2100 MHz]: transition [                   2]
                       residency  [                  11 ms]
P6         [2000 MHz]: transition [                   4]
                       residency  [                  43 ms]
P7         [1800 MHz]: transition [                  11]
                       residency  [                  71 ms]
P8         [1700 MHz]: transition [                   4]
                       residency  [                   5 ms]
P9         [1600 MHz]: transition [                   5]
                       residency  [                  45 ms]
P10        [1400 MHz]: transition [                   6]
                       residency  [                  20 ms]
P11        [1300 MHz]: transition [                   3]
                       residency  [                  10 ms]
P12        [1200 MHz]: transition [                   4]
                       residency  [                  38 ms]
P13        [1100 MHz]: transition [                  10]
                       residency  [                  66 ms]
P14        [ 900 MHz]: transition [                   9]
                       residency  [                  22 ms]
*P15       [ 800 MHz]: transition [                 116]
                       residency  [               59740 ms]

cpu id               : 10
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 365]
                       residency  [               13262 ms]
P2         [2500 MHz]: transition [                  24]
                       residency  [                 193 ms]
P3         [2300 MHz]: transition [                  13]
                       residency  [                 103 ms]
P4         [2200 MHz]: transition [                  11]
                       residency  [                  50 ms]
P5         [2100 MHz]: transition [                  12]
                       residency  [                  85 ms]
P6         [2000 MHz]: transition [                  30]
                       residency  [                 222 ms]
P7         [1800 MHz]: transition [                   9]
                       residency  [                  71 ms]
P8         [1700 MHz]: transition [                  10]
                       residency  [                  52 ms]
P9         [1600 MHz]: transition [                  25]
                       residency  [                 134 ms]
P10        [1400 MHz]: transition [                  11]
                       residency  [                  73 ms]
P11        [1300 MHz]: transition [                  14]
                       residency  [                  70 ms]
P12        [1200 MHz]: transition [                  25]
                       residency  [                 123 ms]
P13        [1100 MHz]: transition [                  38]
                       residency  [                 160 ms]
P14        [ 900 MHz]: transition [                  31]
                       residency  [                 127 ms]
*P15       [ 800 MHz]: transition [                 280]
                       residency  [              205331 ms]

cpu id               : 11
total P-states       : 16
usable P-states      : 15
current frequency    : 800 MHz
P0         [2601 MHz]: transition [                   0]
                       residency  [                   0 ms]
P1         [2600 MHz]: transition [                 136]
                       residency  [                5283 ms]
P2         [2500 MHz]: transition [                   6]
                       residency  [                  41 ms]
P3         [2300 MHz]: transition [                   5]
                       residency  [                   8 ms]
P4         [2200 MHz]: transition [                   3]
                       residency  [                  31 ms]
P5         [2100 MHz]: transition [                   5]
                       residency  [                  24 ms]
P6         [2000 MHz]: transition [                   9]
                       residency  [                  36 ms]
P7         [1800 MHz]: transition [                   5]
                       residency  [                  32 ms]
P8         [1700 MHz]: transition [                   2]
                       residency  [                   7 ms]
P9         [1600 MHz]: transition [                   8]
                       residency  [                  70 ms]
P10        [1400 MHz]: transition [                   9]
                       residency  [                  50 ms]
P11        [1300 MHz]: transition [                   5]
                       residency  [                  19 ms]
P12        [1200 MHz]: transition [                   1]
                       residency  [                   0 ms]
P13        [1100 MHz]: transition [                  12]
                       residency  [                  55 ms]
P14        [ 900 MHz]: transition [                   7]
                       residency  [                  12 ms]
*P15       [ 800 MHz]: transition [                 108]
                       residency  [               64738 ms]

$sudo xenpm get-cpufreq-para
cpu id               : 0
affected_cpus        : 0
cpuinfo frequency    : max [2601000] min [800000] cur [2601000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

cpu id               : 1
affected_cpus        : 1
cpuinfo frequency    : max [2601000] min [800000] cur [2601000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

cpu id               : 2
affected_cpus        : 2
cpuinfo frequency    : max [2601000] min [800000] cur [2601000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

cpu id               : 3
affected_cpus        : 3
cpuinfo frequency    : max [2601000] min [800000] cur [2601000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

cpu id               : 4
affected_cpus        : 4
cpuinfo frequency    : max [2601000] min [800000] cur [2601000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

cpu id               : 5
affected_cpus        : 5
cpuinfo frequency    : max [2601000] min [800000] cur [2601000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

cpu id               : 6
affected_cpus        : 6
cpuinfo frequency    : max [2601000] min [800000] cur [2601000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

cpu id               : 7
affected_cpus        : 7
cpuinfo frequency    : max [2601000] min [800000] cur [2601000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

cpu id               : 8
affected_cpus        : 8
cpuinfo frequency    : max [2601000] min [800000] cur [900000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

cpu id               : 9
affected_cpus        : 9
cpuinfo frequency    : max [2601000] min [800000] cur [900000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

cpu id               : 10
affected_cpus        : 10
cpuinfo frequency    : max [2601000] min [800000] cur [900000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

cpu id               : 11
affected_cpus        : 11
cpuinfo frequency    : max [2601000] min [800000] cur [900000]
scaling_driver       : acpi-cpufreq
scaling_avail_gov    : hwp-internal userspace performance powersave ondemand
current_governor     : powersave
scaling_avail_freq   : 2601000 2600000 2500000 2300000 2200000 2100000 2000000 1800000 1700000 1600000 1400000 1300000 1200000 1100000 900000 *800000
scaling frequency    : max [800000] min [800000] cur [800000]
turbo mode           : disabled or n/a

$sudo xenpm get-cpufreq-average
cpu id               : 0
average cpu frequency: 1092420

cpu id               : 1
average cpu frequency: 1092420

cpu id               : 2
average cpu frequency: 1066410

cpu id               : 3
average cpu frequency: 1118430

cpu id               : 4
average cpu frequency: 1092420

cpu id               : 5
average cpu frequency: 1118430

cpu id               : 6
average cpu frequency: 1092420

cpu id               : 7
average cpu frequency: 1092420

cpu id               : 8
average cpu frequency: 1092420

cpu id               : 9
average cpu frequency: 1092420

cpu id               : 10
average cpu frequency: 1092420

cpu id               : 11
average cpu frequency: 1118430

[-- Attachment #2: Type: text/html, Size: 230441 bytes --]

^ permalink raw reply	[relevance 3%]

* Re: [BUG]i2c_hid_acpi broken with 4.17.2 on Framework Laptop 13 AMD
  @ 2023-12-20 16:34  3%                               ` Sébastien Chaumat
  0 siblings, 0 replies; 200+ results
From: Sébastien Chaumat @ 2023-12-20 16:34 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 1288 bytes --]

Le mer. 20 déc. 2023 à 11:06, Jan Beulich <jbeulich@suse.com> a écrit :

> On 20.12.2023 01:23, Sébastien Chaumat wrote:
> > I had to triple check:
> >
> > The first call is from xen_register_pirq()  and seem to originate from
> > early_irq_init()  : triggering is 1
> > in this first call the HYPERVISOR_physdev_ops is called with triggering 1
> > shareable 0
> >
> > The second call is from xen_register_pirq() called from
> xen_register_gsi() :
> >   trigger=0 polarity 1 at the start of  xen_register_pirq()
> > but then trigger=1 polarity=1 just before the call to
> PHYSDEVOPS_setup_gsi
>
> I'm sorry, but this is getting extremely confusing. Can you please supply
> a complete kernel log, where also other potentially relevant messages
> would be present (like those issued when PHYSDEVOP_setup_gsi has failed,
> as ought to happen when invoked the 2nd time for the same GSI)? It's fine
> if you want to leave your extra printk()s in place for this, but please
> be sure (perhaps by way of also supplying the patch you use) to make clear
> where exactly they live, so we can make sense of those extra log messages.
>
> Jan
>
>
Sorry for the confusion.
Here are the patches I made to xen and linux kernel
Plus dmesg (bare metal,xen) and "xl dmesg"

[-- Attachment #1.2: Type: text/html, Size: 1741 bytes --]

[-- Attachment #2: xen-debug_irq_setup.diff --]
[-- Type: text/x-patch, Size: 598 bytes --]

diff --git a/xen/arch/x86/physdev.c b/xen/arch/x86/physdev.c
index 2f1d955a96..4f264896d5 100644
--- a/xen/arch/x86/physdev.c
+++ b/xen/arch/x86/physdev.c
@@ -570,6 +570,7 @@ ret_t do_physdev_op(int cmd, XEN_GUEST_HANDLE_PARAM(void) arg)
 
         ret = mp_register_gsi(setup_gsi.gsi, setup_gsi.triggering,
                               setup_gsi.polarity);
+        printk(KERN_INFO "PHYSDEVOP_setup_gsi: setup_gsi.gsi: %d, setup_gsi.triggering: %u,setup_gsi.polarity: %u\n", setup_gsi.gsi, setup_gsi.triggering, setup_gsi.polarity);
         break; 
     }
     case PHYSDEVOP_get_free_pirq: {

[-- Attachment #3: dmesg-baremetal-6.6.7xen-irq-dbg-1+ --]
[-- Type: application/octet-stream, Size: 145254 bytes --]

[    0.000000] Linux version 6.6.7xen-irq-dbg-1+ (sch@fedora) (gcc (GCC) 13.2.1 20231205 (Red Hat 13.2.1-6), GNU ld version 2.40-13.fc39) #6 SMP PREEMPT_DYNAMIC Wed Dec 20 16:13:29 CET 2023
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.6.7xen-irq-dbg-1+ root=UUID=71b1dc59-ea00-484c-b5e4-ee77ede771db ro "dyndbg=file drivers/gpio/* +p; file drivers/pinctrl/* +p; file arch/x86/pci/xen.c +p"
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009afffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000009e00000-0x0000000009efffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009f00000-0x0000000009f3bfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000009f3c000-0x000000004235ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000042360000-0x000000004455ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000044560000-0x0000000044568fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000044569000-0x000000004456cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000004456d000-0x000000004456efff] usable
[    0.000000] BIOS-e820: [mem 0x000000004456f000-0x000000004456ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000044570000-0x000000005077efff] usable
[    0.000000] BIOS-e820: [mem 0x000000005077f000-0x0000000052f7efff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000052f7f000-0x000000005af7efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000005af7f000-0x000000005affefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000005afff000-0x000000005affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000005b000000-0x000000005bffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005d790000-0x000000005d7effff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005d7f5000-0x000000005fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c0300000-0x00000000c03fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000107e2fffff] usable
[    0.000000] BIOS-e820: [mem 0x0000001080000000-0x00000010c01fffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] e820: update [mem 0x44575018-0x44579257] usable ==> usable
[    0.000000] e820: update [mem 0x44575018-0x44579257] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009afffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000009e00000-0x0000000009efffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009f00000-0x0000000009f3bfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x0000000009f3c000-0x000000004235ffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000042360000-0x000000004455ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000044560000-0x0000000044568fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000044569000-0x000000004456cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000004456d000-0x000000004456efff] usable
[    0.000000] reserve setup_data: [mem 0x000000004456f000-0x000000004456ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000044570000-0x0000000044575017] usable
[    0.000000] reserve setup_data: [mem 0x0000000044575018-0x0000000044579257] usable
[    0.000000] reserve setup_data: [mem 0x0000000044579258-0x000000005077efff] usable
[    0.000000] reserve setup_data: [mem 0x000000005077f000-0x0000000052f7efff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000052f7f000-0x000000005af7efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000005af7f000-0x000000005affefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000005afff000-0x000000005affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000005b000000-0x000000005bffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000005d790000-0x000000005d7effff] reserved
[    0.000000] reserve setup_data: [mem 0x000000005d7f5000-0x000000005fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000c0300000-0x00000000c03fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000107e2fffff] usable
[    0.000000] reserve setup_data: [mem 0x0000001080000000-0x00000010c01fffff] reserved
[    0.000000] efi: EFI v2.8 by INSYDE Corp.
[    0.000000] efi: ACPI=0x5affe000 ACPI 2.0=0x5affe014 SMBIOS=0x51677000 SMBIOS 3.0=0x51674000 MEMATTR=0x4b7fe018 ESRT=0x4d16c898 MOKvar=0x5187c000 RNG=0x5af9d018 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem60: MMIO range=[0xc0300000-0xc03fffff] (1MB) from e820 map
[    0.000000] e820: remove [mem 0xc0300000-0xc03fffff] reserved
[    0.000000] efi: Not removing mem61: MMIO range=[0xfed80000-0xfed80fff] (4KB) from e820 map
[    0.000000] efi: Remove mem62: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[    0.000000] efi: Remove mem64: MMIO range=[0x10a0000000-0x10c01fffff] (514MB) from e820 map
[    0.000000] e820: remove [mem 0x10a0000000-0x10c01fffff] reserved
[    0.000000] SMBIOS 3.5.0 present.
[    0.000000] DMI: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP07, BIOS 03.03 10/17/2023
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3293.731 MHz processor
[    0.000123] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000125] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000130] last_pfn = 0x107e300 max_arch_pfn = 0x400000000
[    0.000135] MTRR map: 7 entries (3 fixed + 4 variable; max 20), built from 9 variable MTRRs
[    0.000136] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000523] last_pfn = 0x5b000 max_arch_pfn = 0x400000000
[    0.003061] esrt: Reserving ESRT space from 0x000000004d16c898 to 0x000000004d16c8d0.
[    0.003066] e820: update [mem 0x4d16c000-0x4d16cfff] usable ==> reserved
[    0.003081] Using GB pages for direct mapping
[    0.003651] Secure boot disabled
[    0.003651] RAMDISK: [mem 0x2468a000-0x3217efff]
[    0.003655] ACPI: Early table checksum verification disabled
[    0.003657] ACPI: RSDP 0x000000005AFFE014 000024 (v02 INSYDE)
[    0.003660] ACPI: XSDT 0x000000005AF9E228 00016C (v01 INSYDE EDK2     00000002      01000013)
[    0.003664] ACPI: FACP 0x000000005AFEF000 00010C (v05 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003666] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20230628/tbfadt-615)
[    0.003669] ACPI: DSDT 0x000000005AFDF000 0093A6 (v02 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003671] ACPI: FACS 0x000000005AEB7000 000040
[    0.003672] ACPI: UEFI 0x000000005AF67000 0001CF (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003674] ACPI: SSDT 0x000000005AFF4000 008416 (v02 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003675] ACPI: SSDT 0x000000005AFF2000 000ABD (v02 INSYDE EDK2     00001000 ACPI 00040000)
[    0.003676] ACPI: ASF! 0x000000005AFF1000 0000A5 (v32 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003678] ACPI: BOOT 0x000000005AFF0000 000028 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003679] ACPI: HPET 0x000000005AFEE000 000038 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003681] ACPI: APIC 0x000000005AFED000 000138 (v03 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003682] ACPI: MCFG 0x000000005AFEC000 00003C (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003683] ACPI: SLIC 0x000000005AFEB000 000176 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003684] ACPI: VFCT 0x000000005AFDA000 004284 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003686] ACPI: SSDT 0x000000005AFD9000 0000F8 (v02 INSYDE EDK2     00001000 ACPI 00040000)
[    0.003687] ACPI: SSDT 0x000000005AFD3000 00547E (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003688] ACPI: CRAT 0x000000005AFD2000 000F10 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003690] ACPI: CDIT 0x000000005AFD1000 000029 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003691] ACPI: SSDT 0x000000005AFD0000 000F8D (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003692] ACPI: SSDT 0x000000005AFCF000 000EC1 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003694] ACPI: SSDT 0x000000005AFCE000 000931 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003695] ACPI: SSDT 0x000000005AFCB000 0013EC (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003696] ACPI: SSDT 0x000000005AFFD000 00077A (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003698] ACPI: SSDT 0x000000005AFCA000 000737 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003699] ACPI: SSDT 0x000000005AFC8000 0015C8 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003700] ACPI: SSDT 0x000000005AFC5000 002A8F (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003701] ACPI: SSDT 0x000000005AFBB000 009821 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003703] ACPI: FPDT 0x000000005AFBA000 000044 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003704] ACPI: BGRT 0x000000005AFB9000 000038 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    0.003705] ACPI: WSMT 0x000000005AFB8000 000028 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003707] ACPI: MHSP 0x000000005AFEA000 0000C8 (v04 INSYDE EDK2     20505348 ACPI 00040000)
[    0.003708] ACPI: SSDT 0x000000005AFE9000 0000E5 (v02 INSYDE EDK2     00000004 ACPI 00040000)
[    0.003709] ACPI: IVRS 0x000000005AFB7000 0001A4 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003711] ACPI: SSDT 0x000000005AFB6000 000747 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003712] ACPI: SSDT 0x000000005AFB5000 000C88 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003713] ACPI: SSDT 0x000000005AFB4000 000057 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003715] ACPI: SSDT 0x000000005AFB2000 00170B (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003716] ACPI: SSDT 0x000000005AFB1000 000FF7 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003717] ACPI: SSDT 0x000000005AFA7000 0097E3 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003718] ACPI: SSDT 0x000000005AFA2000 004FEB (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003720] ACPI: SSDT 0x000000005AFA1000 000C7F (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003721] ACPI: SSDT 0x000000005AFA0000 000956 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003722] ACPI: SSDT 0x000000005AF9F000 00008D (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003724] ACPI: SSDT 0x000000005AFCD000 000EAD (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    0.003725] ACPI: Reserving FACP table memory at [mem 0x5afef000-0x5afef10b]
[    0.003725] ACPI: Reserving DSDT table memory at [mem 0x5afdf000-0x5afe83a5]
[    0.003726] ACPI: Reserving FACS table memory at [mem 0x5aeb7000-0x5aeb703f]
[    0.003726] ACPI: Reserving UEFI table memory at [mem 0x5af67000-0x5af671ce]
[    0.003727] ACPI: Reserving SSDT table memory at [mem 0x5aff4000-0x5affc415]
[    0.003727] ACPI: Reserving SSDT table memory at [mem 0x5aff2000-0x5aff2abc]
[    0.003727] ACPI: Reserving ASF! table memory at [mem 0x5aff1000-0x5aff10a4]
[    0.003728] ACPI: Reserving BOOT table memory at [mem 0x5aff0000-0x5aff0027]
[    0.003728] ACPI: Reserving HPET table memory at [mem 0x5afee000-0x5afee037]
[    0.003729] ACPI: Reserving APIC table memory at [mem 0x5afed000-0x5afed137]
[    0.003729] ACPI: Reserving MCFG table memory at [mem 0x5afec000-0x5afec03b]
[    0.003729] ACPI: Reserving SLIC table memory at [mem 0x5afeb000-0x5afeb175]
[    0.003730] ACPI: Reserving VFCT table memory at [mem 0x5afda000-0x5afde283]
[    0.003730] ACPI: Reserving SSDT table memory at [mem 0x5afd9000-0x5afd90f7]
[    0.003730] ACPI: Reserving SSDT table memory at [mem 0x5afd3000-0x5afd847d]
[    0.003731] ACPI: Reserving CRAT table memory at [mem 0x5afd2000-0x5afd2f0f]
[    0.003731] ACPI: Reserving CDIT table memory at [mem 0x5afd1000-0x5afd1028]
[    0.003731] ACPI: Reserving SSDT table memory at [mem 0x5afd0000-0x5afd0f8c]
[    0.003732] ACPI: Reserving SSDT table memory at [mem 0x5afcf000-0x5afcfec0]
[    0.003732] ACPI: Reserving SSDT table memory at [mem 0x5afce000-0x5afce930]
[    0.003733] ACPI: Reserving SSDT table memory at [mem 0x5afcb000-0x5afcc3eb]
[    0.003733] ACPI: Reserving SSDT table memory at [mem 0x5affd000-0x5affd779]
[    0.003733] ACPI: Reserving SSDT table memory at [mem 0x5afca000-0x5afca736]
[    0.003734] ACPI: Reserving SSDT table memory at [mem 0x5afc8000-0x5afc95c7]
[    0.003734] ACPI: Reserving SSDT table memory at [mem 0x5afc5000-0x5afc7a8e]
[    0.003734] ACPI: Reserving SSDT table memory at [mem 0x5afbb000-0x5afc4820]
[    0.003735] ACPI: Reserving FPDT table memory at [mem 0x5afba000-0x5afba043]
[    0.003735] ACPI: Reserving BGRT table memory at [mem 0x5afb9000-0x5afb9037]
[    0.003736] ACPI: Reserving WSMT table memory at [mem 0x5afb8000-0x5afb8027]
[    0.003736] ACPI: Reserving MHSP table memory at [mem 0x5afea000-0x5afea0c7]
[    0.003736] ACPI: Reserving SSDT table memory at [mem 0x5afe9000-0x5afe90e4]
[    0.003737] ACPI: Reserving IVRS table memory at [mem 0x5afb7000-0x5afb71a3]
[    0.003737] ACPI: Reserving SSDT table memory at [mem 0x5afb6000-0x5afb6746]
[    0.003738] ACPI: Reserving SSDT table memory at [mem 0x5afb5000-0x5afb5c87]
[    0.003738] ACPI: Reserving SSDT table memory at [mem 0x5afb4000-0x5afb4056]
[    0.003738] ACPI: Reserving SSDT table memory at [mem 0x5afb2000-0x5afb370a]
[    0.003739] ACPI: Reserving SSDT table memory at [mem 0x5afb1000-0x5afb1ff6]
[    0.003739] ACPI: Reserving SSDT table memory at [mem 0x5afa7000-0x5afb07e2]
[    0.003739] ACPI: Reserving SSDT table memory at [mem 0x5afa2000-0x5afa6fea]
[    0.003740] ACPI: Reserving SSDT table memory at [mem 0x5afa1000-0x5afa1c7e]
[    0.003740] ACPI: Reserving SSDT table memory at [mem 0x5afa0000-0x5afa0955]
[    0.003741] ACPI: Reserving SSDT table memory at [mem 0x5af9f000-0x5af9f08c]
[    0.003741] ACPI: Reserving SSDT table memory at [mem 0x5afcd000-0x5afcdeac]
[    0.003795] Zone ranges:
[    0.003796]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.003797]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.003798]   Normal   [mem 0x0000000100000000-0x000000107e2fffff]
[    0.003799]   Device   empty
[    0.003799] Movable zone start for each node
[    0.003800] Early memory node ranges
[    0.003800]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.003801]   node   0: [mem 0x0000000000100000-0x0000000009afffff]
[    0.003801]   node   0: [mem 0x0000000009e00000-0x0000000009efffff]
[    0.003802]   node   0: [mem 0x0000000009f3c000-0x000000004235ffff]
[    0.003802]   node   0: [mem 0x0000000044560000-0x0000000044568fff]
[    0.003803]   node   0: [mem 0x000000004456d000-0x000000004456efff]
[    0.003803]   node   0: [mem 0x0000000044570000-0x000000005077efff]
[    0.003803]   node   0: [mem 0x000000005afff000-0x000000005affffff]
[    0.003804]   node   0: [mem 0x0000000100000000-0x000000107e2fffff]
[    0.003807] Initmem setup node 0 [mem 0x0000000000001000-0x000000107e2fffff]
[    0.003811] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.003819] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.003884] On node 0, zone DMA32: 768 pages in unavailable ranges
[    0.004253] On node 0, zone DMA32: 60 pages in unavailable ranges
[    0.004277] On node 0, zone DMA32: 8704 pages in unavailable ranges
[    0.004277] On node 0, zone DMA32: 4 pages in unavailable ranges
[    0.004420] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.004552] On node 0, zone DMA32: 43136 pages in unavailable ranges
[    0.042211] On node 0, zone Normal: 20480 pages in unavailable ranges
[    0.042233] On node 0, zone Normal: 7424 pages in unavailable ranges
[    0.042516] ACPI: PM-Timer IO Port: 0x408
[    0.042522] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.042523] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.042523] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.042523] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.042524] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.042524] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.042525] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.042525] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.042525] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.042526] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.042526] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.042526] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.042527] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.042527] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.042527] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.042528] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.042541] IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
[    0.042545] IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
[    0.042546] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.042547] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.042550] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.042550] ACPI: HPET id: 0x10228210 base: 0xfed00000
[    0.042557] e820: update [mem 0x4b822000-0x4b870fff] usable ==> reserved
[    0.042566] smpboot: Allowing 16 CPUs, 0 hotplug CPUs
[    0.042580] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.042581] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000bffff]
[    0.042582] PM: hibernation: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.042583] PM: hibernation: Registered nosave memory: [mem 0x09b00000-0x09dfffff]
[    0.042584] PM: hibernation: Registered nosave memory: [mem 0x09f00000-0x09f3bfff]
[    0.042584] PM: hibernation: Registered nosave memory: [mem 0x42360000-0x4455ffff]
[    0.042585] PM: hibernation: Registered nosave memory: [mem 0x44569000-0x4456cfff]
[    0.042586] PM: hibernation: Registered nosave memory: [mem 0x4456f000-0x4456ffff]
[    0.042587] PM: hibernation: Registered nosave memory: [mem 0x44575000-0x44575fff]
[    0.042588] PM: hibernation: Registered nosave memory: [mem 0x44579000-0x44579fff]
[    0.042589] PM: hibernation: Registered nosave memory: [mem 0x4b822000-0x4b870fff]
[    0.042590] PM: hibernation: Registered nosave memory: [mem 0x4d16c000-0x4d16cfff]
[    0.042591] PM: hibernation: Registered nosave memory: [mem 0x5077f000-0x52f7efff]
[    0.042591] PM: hibernation: Registered nosave memory: [mem 0x52f7f000-0x5af7efff]
[    0.042592] PM: hibernation: Registered nosave memory: [mem 0x5af7f000-0x5affefff]
[    0.042592] PM: hibernation: Registered nosave memory: [mem 0x5b000000-0x5bffffff]
[    0.042593] PM: hibernation: Registered nosave memory: [mem 0x5c000000-0x5d78ffff]
[    0.042593] PM: hibernation: Registered nosave memory: [mem 0x5d790000-0x5d7effff]
[    0.042593] PM: hibernation: Registered nosave memory: [mem 0x5d7f0000-0x5d7f4fff]
[    0.042594] PM: hibernation: Registered nosave memory: [mem 0x5d7f5000-0x5fffffff]
[    0.042594] PM: hibernation: Registered nosave memory: [mem 0x60000000-0xfed7ffff]
[    0.042594] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed80fff]
[    0.042595] PM: hibernation: Registered nosave memory: [mem 0xfed81000-0xffffffff]
[    0.042596] [mem 0x60000000-0xfed7ffff] available for PCI devices
[    0.042597] Booting paravirtualized kernel on bare hardware
[    0.042598] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.046202] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[    0.046436] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
[    0.046440] pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
[    0.046441] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.046458] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.6.7xen-irq-dbg-1+ root=UUID=71b1dc59-ea00-484c-b5e4-ee77ede771db ro "dyndbg=file drivers/gpio/* +p; file drivers/pinctrl/* +p; file arch/x86/pci/xen.c +p"
[    0.046494] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.6.7xen-irq-dbg-1+", will be passed to user space.
[    0.048721] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[    0.049762] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.049798] Built 1 zonelists, mobility grouping on.  Total pages: 16306474
[    0.049877] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[    0.049923] software IO TLB: area num 16.
[    0.094595] Memory: 64692184K/66261876K available (18432K kernel code, 3168K rwdata, 14456K rodata, 3944K init, 3704K bss, 1569436K reserved, 0K cma-reserved)
[    0.094742] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.094759] ftrace: allocating 53307 entries in 209 pages
[    0.101822] ftrace: allocated 209 pages with 4 groups
[    0.102375] Dynamic Preempt: voluntary
[    0.102410] rcu: Preemptible hierarchical RCU implementation.
[    0.102411] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[    0.102411] 	Trampoline variant of Tasks RCU enabled.
[    0.102412] 	Rude variant of Tasks RCU enabled.
[    0.102412] 	Tracing variant of Tasks RCU enabled.
[    0.102412] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.102413] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[    0.104074] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    0.104265] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.104403] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.104428] Console: colour dummy device 80x25
[    0.104429] printk: console [tty0] enabled
[    0.104731] ACPI: Core revision 20230628
[    0.104918] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.104938] APIC: Switch to symmetric I/O mode setup
[    0.105543] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:160
[    0.105546] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:160
[    0.105547] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:160
[    0.105548] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:160
[    0.105550] AMD-Vi: Using global IVHD EFR:0x246577efa2254afa, EFR2:0x0
[    0.106124] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.106143] APIC: Switched APIC routing to: physical flat
[    0.106922] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.111943] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2f7a2ab2f4c, max_idle_ns: 440795361553 ns
[    0.111948] Calibrating delay loop (skipped), value calculated using timer frequency.. 6587.46 BogoMIPS (lpj=3293731)
[    0.111968] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.112012] LVT offset 1 assigned for vector 0xf9
[    0.112174] LVT offset 2 assigned for vector 0xf4
[    0.112212] process: using mwait in idle threads
[    0.112213] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    0.112215] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    0.112218] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.112221] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.112222] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.112225] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.112227] Spectre V2 : User space: Mitigation: STIBP always-on protection
[    0.112229] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.112231] Speculative Return Stack Overflow: IBPB-extending microcode not applied!
[    0.112232] Speculative Return Stack Overflow: WARNING: See https://kernel.org/doc/html/latest/admin-guide/hw-vuln/srso.html for mitigation options.
[    0.112233] Speculative Return Stack Overflow: Vulnerable: Safe RET, no microcode
[    0.112239] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.112241] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.112242] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.112244] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.112245] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.112246] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.112247] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.112249] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    0.112251] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.112252] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.112254] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.112255] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.112256] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.112257] x86/fpu: xstate_offset[11]: 2440, xstate_sizes[11]:   16
[    0.112259] x86/fpu: Enabled xstate features 0xae7, context size is 2456 bytes, using 'compacted' format.
[    0.128651] Freeing SMP alternatives memory: 48K
[    0.128655] pid_max: default: 32768 minimum: 301
[    0.130985] LSM: initializing lsm=lockdown,capability,yama,selinux,bpf,landlock,integrity
[    0.131003] Yama: becoming mindful.
[    0.131007] SELinux:  Initializing.
[    0.131045] LSM support for eBPF active
[    0.131048] landlock: Up and running.
[    0.131106] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.131150] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.234048] smpboot: CPU0: AMD Ryzen 7 7840U w/ Radeon  780M Graphics (family: 0x19, model: 0x74, stepping: 0x1)
[    0.234217] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.234233] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.234250] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.234269] Performance Events: Fam17h+ 16-deep LBR, core perfctr, AMD PMU driver.
[    0.234295] ... version:                2
[    0.234297] ... bit width:              48
[    0.234300] ... generic registers:      6
[    0.234302] ... value mask:             0000ffffffffffff
[    0.234305] ... max period:             00007fffffffffff
[    0.234307] ... fixed-purpose events:   0
[    0.234309] ... event mask:             000000000000003f
[    0.234375] signal: max sigframe size: 3376
[    0.234397] rcu: Hierarchical SRCU implementation.
[    0.234400] rcu: 	Max phase no-delay instances is 400.
[    0.236934] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.237066] smp: Bringing up secondary CPUs ...
[    0.237159] smpboot: x86: Booting SMP configuration:
[    0.237162] .... node  #0, CPUs:        #2  #4  #6  #8 #10 #12 #14  #1  #3  #5  #7  #9 #11 #13 #15
[    0.248033] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[    0.254977] smp: Brought up 1 node, 16 CPUs
[    0.254977] smpboot: Max logical packages: 1
[    0.254977] smpboot: Total of 16 processors activated (105399.39 BogoMIPS)
[    0.257999] devtmpfs: initialized
[    0.258000] x86/mm: Memory block size: 2048MB
[    0.258361] ACPI: PM: Registering ACPI NVS region [mem 0x09f00000-0x09f3bfff] (245760 bytes)
[    0.258361] ACPI: PM: Registering ACPI NVS region [mem 0x52f7f000-0x5af7efff] (134217728 bytes)
[    0.260323] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.260329] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.260393] pinctrl core: initialized pinctrl subsystem
[    0.260506] PM: RTC time: 16:27:16, date: 2023-12-20
[    0.260741] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.260859] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.260865] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.260870] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.260886] audit: initializing netlink subsys (disabled)
[    0.260895] audit: type=2000 audit(1703089636.154:1): state=initialized audit_enabled=0 res=1
[    0.260992] thermal_sys: Registered thermal governor 'fair_share'
[    0.260994] thermal_sys: Registered thermal governor 'bang_bang'
[    0.260997] thermal_sys: Registered thermal governor 'step_wise'
[    0.260999] thermal_sys: Registered thermal governor 'user_space'
[    0.261011] cpuidle: using governor menu
[    0.261047] Simple Boot Flag at 0x44 set to 0x80
[    0.261047] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.261087] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.261095] PCI: not using MMCONFIG
[    0.261098] PCI: Using configuration type 1 for base access
[    0.261101] PCI: Using configuration type 1 for extended access
[    0.261577] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.261997] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.261997] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.261997] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.261997] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.262046] cryptd: max_cpu_qlen set to 1000
[    0.262046] raid6: skipped pq benchmark and selected avx512x4
[    0.262046] raid6: using avx512x2 recovery algorithm
[    0.262046] fbcon: Taking over console
[    0.262072] ACPI: Added _OSI(Module Device)
[    0.262075] ACPI: Added _OSI(Processor Device)
[    0.262078] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.262082] ACPI: Added _OSI(Processor Aggregator Device)
[    0.286756] ACPI: 26 ACPI AML tables successfully acquired and loaded
[    0.304035] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[    0.304040] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[    0.304119] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[    0.304657] ACPI: EC: EC started
[    0.304659] ACPI: EC: interrupt blocked
[    0.304768] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.304772] ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC used to handle transactions
[    0.304776] ACPI: Interpreter enabled
[    0.304790] ACPI: PM: (supports S0 S4 S5)
[    0.304793] ACPI: Using IOAPIC for interrupt routing
[    0.306259] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.310365] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] not reserved in ACPI motherboard resources
[    0.310371] PCI: not using MMCONFIG
[    0.310375] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.310379] PCI: Ignoring E820 reservations for host bridge windows
[    0.310792] ACPI: Enabled 3 GPEs in block 00 to 1F
[    0.313818] ACPI: \_SB_.PCI0.GPP8.P0NV: New power resource
[    0.315950] ACPI: \_SB_.PCI0.GP11.PWRS: New power resource
[    0.317497] ACPI: \_SB_.PCI0.GP11.SWUS.PWRS: New power resource
[    0.319021] ACPI: \_SB_.PCI0.GP12.PWRS: New power resource
[    0.320484] ACPI: \_SB_.PCI0.GP12.SWUS.PWRS: New power resource
[    0.320759] ACPI: \_SB_.PCI0.GP17.PWRS: New power resource
[    0.321048] ACPI: \_SB_.PCI0.GP17.VGA_.PWRS: New power resource
[    0.321422] ACPI: \_SB_.PCI0.GP17.ACP_.PWRS: New power resource
[    0.322126] ACPI: \_SB_.PCI0.GP17.AZAL.PWRS: New power resource
[    0.322623] ACPI: \_SB_.PCI0.GP17.HDAU.PWRS: New power resource
[    0.323075] ACPI: \_SB_.PCI0.GP17.XHC0.PWRS: New power resource
[    0.326251] ACPI: \_SB_.PCI0.GP17.XHC1.PWRS: New power resource
[    0.328201] ACPI: \_SB_.PCI0.GP19.XHC2.PWRS: New power resource
[    0.329808] ACPI: \_SB_.PCI0.GP19.NHI0.PWRS: New power resource
[    0.330724] ACPI: \_SB_.PCI0.GP19.XHC3.PWRS: New power resource
[    0.332387] ACPI: \_SB_.PCI0.GP19.NHI1.PWRS: New power resource
[    0.333304] ACPI: \_SB_.PCI0.GP19.XHC4.PWRS: New power resource
[    0.340663] ACPI: \_SB_.PRWL: New power resource
[    0.340693] ACPI: \_SB_.PRWB: New power resource
[    0.341700] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.341707] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.341894] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER]
[    0.342245] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR DPC]
[    0.342738] PCI host bridge to bus 0000:00
[    0.342741] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.342745] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.342749] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.342753] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000cffff window]
[    0.342757] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000effff window]
[    0.342761] pci_bus 0000:00: root bus resource [mem 0x60000000-0x90bfffff window]
[    0.342765] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfec00000 window]
[    0.342768] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfed814ff window]
[    0.342772] pci_bus 0000:00: root bus resource [mem 0xfed81900-0xfed81fff window]
[    0.342776] pci_bus 0000:00: root bus resource [mem 0xfedc0000-0xfedc0fff window]
[    0.342780] pci_bus 0000:00: root bus resource [mem 0xfedc6000-0xfedc6fff window]
[    0.342783] pci_bus 0000:00: root bus resource [mem 0x10c0200000-0x891fffffff window]
[    0.342787] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.342808] pci 0000:00:00.0: [1022:14e8] type 00 class 0x060000
[    0.342873] pci 0000:00:00.2: [1022:14e9] type 00 class 0x080600
[    0.342955] pci 0000:00:01.0: [1022:14ea] type 00 class 0x060000
[    0.343022] pci 0000:00:02.0: [1022:14ea] type 00 class 0x060000
[    0.343088] pci 0000:00:02.2: [1022:14ee] type 01 class 0x060400
[    0.343147] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    0.343246] pci 0000:00:02.4: [1022:14ee] type 01 class 0x060400
[    0.343304] pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
[    0.343386] pci 0000:00:03.0: [1022:14ea] type 00 class 0x060000
[    0.343454] pci 0000:00:03.1: [1022:14ef] type 01 class 0x060400
[    0.343895] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.345017] pci 0000:00:04.0: [1022:14ea] type 00 class 0x060000
[    0.345086] pci 0000:00:04.1: [1022:14ef] type 01 class 0x060400
[    0.345517] pci 0000:00:04.1: PME# supported from D0 D3hot D3cold
[    0.346724] pci 0000:00:08.0: [1022:14ea] type 00 class 0x060000
[    0.347055] pci 0000:00:08.1: [1022:14eb] type 01 class 0x060400
[    0.347079] pci 0000:00:08.1: enabling Extended Tags
[    0.347105] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.347204] pci 0000:00:08.2: [1022:14eb] type 01 class 0x060400
[    0.347260] pci 0000:00:08.2: enabling Extended Tags
[    0.347285] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
[    0.347358] pci 0000:00:08.3: [1022:14eb] type 01 class 0x060400
[    0.347382] pci 0000:00:08.3: enabling Extended Tags
[    0.347407] pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
[    0.347659] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.347790] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.347938] pci 0000:00:18.0: [1022:14f0] type 00 class 0x060000
[    0.347974] pci 0000:00:18.1: [1022:14f1] type 00 class 0x060000
[    0.348008] pci 0000:00:18.2: [1022:14f2] type 00 class 0x060000
[    0.348042] pci 0000:00:18.3: [1022:14f3] type 00 class 0x060000
[    0.348076] pci 0000:00:18.4: [1022:14f4] type 00 class 0x060000
[    0.348110] pci 0000:00:18.5: [1022:14f5] type 00 class 0x060000
[    0.348145] pci 0000:00:18.6: [1022:14f6] type 00 class 0x060000
[    0.348179] pci 0000:00:18.7: [1022:14f7] type 00 class 0x060000
[    0.348307] pci 0000:01:00.0: [14c3:0616] type 00 class 0x028000
[    0.348329] pci 0000:01:00.0: reg 0x10: [mem 0x8810900000-0x88109fffff 64bit pref]
[    0.348345] pci 0000:01:00.0: reg 0x18: [mem 0x90b00000-0x90b07fff 64bit]
[    0.348420] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.348510] pci 0000:00:02.2: PCI bridge to [bus 01]
[    0.348517] pci 0000:00:02.2:   bridge window [mem 0x90b00000-0x90bfffff]
[    0.348523] pci 0000:00:02.2:   bridge window [mem 0x8810900000-0x88109fffff 64bit pref]
[    0.348806] pci 0000:02:00.0: [15b7:5030] type 00 class 0x010802
[    0.348824] pci 0000:02:00.0: reg 0x10: [mem 0x90a00000-0x90a03fff 64bit]
[    0.348971] pci 0000:00:02.4: PCI bridge to [bus 02]
[    0.348978] pci 0000:00:02.4:   bridge window [mem 0x90a00000-0x90afffff]
[    0.349088] pci 0000:00:03.1: PCI bridge to [bus 03-61]
[    0.349095] pci 0000:00:03.1:   bridge window [io  0x6000-0x9fff]
[    0.349100] pci 0000:00:03.1:   bridge window [mem 0x78000000-0x8fffffff]
[    0.349107] pci 0000:00:03.1:   bridge window [mem 0x7800000000-0x87ffffffff 64bit pref]
[    0.349216] pci 0000:00:04.1: PCI bridge to [bus 62-c0]
[    0.349223] pci 0000:00:04.1:   bridge window [io  0x2000-0x5fff]
[    0.349228] pci 0000:00:04.1:   bridge window [mem 0x60000000-0x77ffffff]
[    0.349235] pci 0000:00:04.1:   bridge window [mem 0x6800000000-0x77ffffffff 64bit pref]
[    0.349341] pci 0000:c1:00.0: [1002:15bf] type 00 class 0x030000
[    0.349356] pci 0000:c1:00.0: reg 0x10: [mem 0x8800000000-0x880fffffff 64bit pref]
[    0.349367] pci 0000:c1:00.0: reg 0x18: [mem 0x90000000-0x901fffff 64bit pref]
[    0.349375] pci 0000:c1:00.0: reg 0x20: [io  0x1000-0x10ff]
[    0.349383] pci 0000:c1:00.0: reg 0x24: [mem 0x90500000-0x9057ffff]
[    0.349395] pci 0000:c1:00.0: enabling Extended Tags
[    0.349405] pci 0000:c1:00.0: BAR 0: assigned to efifb
[    0.349435] pci 0000:c1:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.349525] pci 0000:c1:00.1: [1002:1640] type 00 class 0x040300
[    0.349535] pci 0000:c1:00.1: reg 0x10: [mem 0x905c8000-0x905cbfff]
[    0.349562] pci 0000:c1:00.1: enabling Extended Tags
[    0.349594] pci 0000:c1:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.349678] pci 0000:c1:00.2: [1022:15c7] type 00 class 0x108000
[    0.349695] pci 0000:c1:00.2: reg 0x18: [mem 0x90400000-0x904fffff]
[    0.349708] pci 0000:c1:00.2: reg 0x24: [mem 0x905cc000-0x905cdfff]
[    0.349718] pci 0000:c1:00.2: enabling Extended Tags
[    0.349832] pci 0000:c1:00.3: [1022:15b9] type 00 class 0x0c0330
[    0.349847] pci 0000:c1:00.3: reg 0x10: [mem 0x90200000-0x902fffff 64bit]
[    0.349877] pci 0000:c1:00.3: enabling Extended Tags
[    0.349911] pci 0000:c1:00.3: PME# supported from D0 D3hot D3cold
[    0.350254] pci 0000:c1:00.4: [1022:15ba] type 00 class 0x0c0330
[    0.350268] pci 0000:c1:00.4: reg 0x10: [mem 0x90300000-0x903fffff 64bit]
[    0.350299] pci 0000:c1:00.4: enabling Extended Tags
[    0.350333] pci 0000:c1:00.4: PME# supported from D0 D3hot D3cold
[    0.350665] pci 0000:c1:00.5: [1022:15e2] type 00 class 0x048000
[    0.350675] pci 0000:c1:00.5: reg 0x10: [mem 0x90580000-0x905bffff]
[    0.350688] pci 0000:c1:00.5: reg 0x18: [mem 0x8810000000-0x88107fffff 64bit pref]
[    0.350705] pci 0000:c1:00.5: enabling Extended Tags
[    0.350737] pci 0000:c1:00.5: PME# supported from D0 D3hot D3cold
[    0.350827] pci 0000:c1:00.6: [1022:15e3] type 00 class 0x040300
[    0.350838] pci 0000:c1:00.6: reg 0x10: [mem 0x905c0000-0x905c7fff]
[    0.350864] pci 0000:c1:00.6: enabling Extended Tags
[    0.350896] pci 0000:c1:00.6: PME# supported from D0 D3hot D3cold
[    0.351006] pci 0000:00:08.1: PCI bridge to [bus c1]
[    0.351011] pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
[    0.351015] pci 0000:00:08.1:   bridge window [mem 0x90000000-0x905fffff]
[    0.351020] pci 0000:00:08.1:   bridge window [mem 0x8800000000-0x88107fffff 64bit pref]
[    0.351078] pci 0000:c2:00.0: [1022:14ec] type 00 class 0x130000
[    0.351111] pci 0000:c2:00.0: enabling Extended Tags
[    0.351145] pci 0000:c2:00.0: PME# supported from D3hot D3cold
[    0.351203] pci 0000:c2:00.1: [1022:1502] type 00 class 0x118000
[    0.351221] pci 0000:c2:00.1: reg 0x10: [mem 0x90900000-0x9097ffff]
[    0.351228] pci 0000:c2:00.1: reg 0x14: [mem 0x909c0000-0x909c1fff]
[    0.351237] pci 0000:c2:00.1: reg 0x18: [mem 0x8810800000-0x881083ffff 64bit pref]
[    0.351244] pci 0000:c2:00.1: reg 0x20: [mem 0x90980000-0x909bffff]
[    0.351257] pci 0000:c2:00.1: enabling Extended Tags
[    0.351374] pci 0000:00:08.2: PCI bridge to [bus c2]
[    0.351380] pci 0000:00:08.2:   bridge window [mem 0x90900000-0x909fffff]
[    0.351385] pci 0000:00:08.2:   bridge window [mem 0x8810800000-0x88108fffff 64bit pref]
[    0.351465] pci 0000:c3:00.0: [1022:14ec] type 00 class 0x130000
[    0.351498] pci 0000:c3:00.0: enabling Extended Tags
[    0.351856] pci 0000:c3:00.3: [1022:15c0] type 00 class 0x0c0330
[    0.351871] pci 0000:c3:00.3: reg 0x10: [mem 0x90600000-0x906fffff 64bit]
[    0.351901] pci 0000:c3:00.3: enabling Extended Tags
[    0.351936] pci 0000:c3:00.3: PME# supported from D0 D3hot D3cold
[    0.352268] pci 0000:c3:00.4: [1022:15c1] type 00 class 0x0c0330
[    0.352283] pci 0000:c3:00.4: reg 0x10: [mem 0x90700000-0x907fffff 64bit]
[    0.352313] pci 0000:c3:00.4: enabling Extended Tags
[    0.352348] pci 0000:c3:00.4: PME# supported from D0 D3hot D3cold
[    0.352678] pci 0000:c3:00.5: [1022:1668] type 00 class 0x0c0340
[    0.352696] pci 0000:c3:00.5: reg 0x10: [mem 0x90800000-0x9087ffff 64bit]
[    0.352731] pci 0000:c3:00.5: Max Payload Size set to 128 (was 256, max 256)
[    0.352737] pci 0000:c3:00.5: enabling Extended Tags
[    0.352771] pci 0000:c3:00.5: PME# supported from D0 D3hot D3cold
[    0.352858] pci 0000:c3:00.6: [1022:1669] type 00 class 0x0c0340
[    0.352876] pci 0000:c3:00.6: reg 0x10: [mem 0x90880000-0x908fffff 64bit]
[    0.352911] pci 0000:c3:00.6: Max Payload Size set to 128 (was 256, max 256)
[    0.352916] pci 0000:c3:00.6: enabling Extended Tags
[    0.352952] pci 0000:c3:00.6: PME# supported from D0 D3hot D3cold
[    0.353053] pci 0000:00:08.3: PCI bridge to [bus c3]
[    0.353060] pci 0000:00:08.3:   bridge window [mem 0x90600000-0x908fffff]
[    0.353127] pci_bus 0000:00: on NUMA node 0
[    0.361415] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.361420] ACPI: PCI: Interrupt link LNKA disabled
[    0.361646] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.361649] ACPI: PCI: Interrupt link LNKB disabled
[    0.361859] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.361862] ACPI: PCI: Interrupt link LNKC disabled
[    0.362088] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.362091] ACPI: PCI: Interrupt link LNKD disabled
[    0.362311] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.362314] ACPI: PCI: Interrupt link LNKE disabled
[    0.362487] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.362490] ACPI: PCI: Interrupt link LNKF disabled
[    0.362662] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.362665] ACPI: PCI: Interrupt link LNKG disabled
[    0.362837] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.362840] ACPI: PCI: Interrupt link LNKH disabled
[    0.367648] Low-power S0 idle used by default for system suspend
[    0.367763] ACPI: EC: interrupt unblocked
[    0.367766] ACPI: EC: event unblocked
[    0.367774] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.367778] ACPI: EC: GPE=0xb
[    0.367781] ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC initialization complete
[    0.367786] ACPI: \_SB_.PCI0.LPC0.EC0_: EC: Used to handle transactions and events
[    0.367986] iommu: Default domain type: Translated
[    0.367986] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.368019] SCSI subsystem initialized
[    0.368019] libata version 3.00 loaded.
[    0.368019] ACPI: bus type USB registered
[    0.368019] usbcore: registered new interface driver usbfs
[    0.368019] usbcore: registered new interface driver hub
[    0.368019] usbcore: registered new device driver usb
[    0.375549] i2c_designware AMDI0010:00: using ACPI '\_SB.I2CA' for 'scl' GPIO lookup
[    0.375553] acpi AMDI0010:00: GPIO: looking up scl-gpios
[    0.375554] acpi AMDI0010:00: GPIO: looking up scl-gpio
[    0.375556] i2c_designware AMDI0010:00: using lookup tables for GPIO lookup
[    0.375557] i2c_designware AMDI0010:00: No GPIO consumer scl found
[    0.383854] i2c_designware AMDI0010:03: using ACPI '\_SB.I2CD' for 'scl' GPIO lookup
[    0.383857] acpi AMDI0010:03: GPIO: looking up scl-gpios
[    0.383858] acpi AMDI0010:03: GPIO: looking up scl-gpio
[    0.383859] i2c_designware AMDI0010:03: using lookup tables for GPIO lookup
[    0.383860] i2c_designware AMDI0010:03: No GPIO consumer scl found
[    0.384819] pps_core: LinuxPPS API ver. 1 registered
[    0.384823] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.384829] PTP clock support registered
[    0.384962] EDAC MC: Ver: 3.0.0
[    0.385201] efivars: Registered efivars operations
[    0.385201] NetLabel: Initializing
[    0.385201] NetLabel:  domain hash size = 128
[    0.385201] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.385201] NetLabel:  unlabeled traffic allowed by default
[    0.385201] mctp: management component transport protocol core
[    0.385201] NET: Registered PF_MCTP protocol family
[    0.385201] PCI: Using ACPI for IRQ routing
[    0.385201] PCI: pci_cache_line_size set to 64 bytes
[    0.385232] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.385233] e820: reserve RAM buffer [mem 0x09b00000-0x0bffffff]
[    0.385234] e820: reserve RAM buffer [mem 0x09f00000-0x0bffffff]
[    0.385235] e820: reserve RAM buffer [mem 0x42360000-0x43ffffff]
[    0.385236] e820: reserve RAM buffer [mem 0x44569000-0x47ffffff]
[    0.385236] e820: reserve RAM buffer [mem 0x4456f000-0x47ffffff]
[    0.385237] e820: reserve RAM buffer [mem 0x44575018-0x47ffffff]
[    0.385238] e820: reserve RAM buffer [mem 0x4b822000-0x4bffffff]
[    0.385239] e820: reserve RAM buffer [mem 0x4d16c000-0x4fffffff]
[    0.385239] e820: reserve RAM buffer [mem 0x5077f000-0x53ffffff]
[    0.385240] e820: reserve RAM buffer [mem 0x5b000000-0x5bffffff]
[    0.385241] e820: reserve RAM buffer [mem 0x107e300000-0x107fffffff]
[    0.385276] pci 0000:c1:00.0: vgaarb: setting as boot VGA device
[    0.385276] pci 0000:c1:00.0: vgaarb: bridge control possible
[    0.385276] pci 0000:c1:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.385276] vgaarb: loaded
[    0.385276] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.385276] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.387946] clocksource: Switched to clocksource tsc-early
[    0.390815] VFS: Disk quotas dquot_6.6.0
[    0.390829] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.390903] pnp: PnP ACPI init
[    0.391105] system 00:00: [mem 0xfec00000-0xfec01fff] could not be reserved
[    0.391111] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.395688] system 00:02: [io  0x0400-0x04cf] has been reserved
[    0.395693] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    0.395696] system 00:02: [io  0x04d6] has been reserved
[    0.395699] system 00:02: [io  0x0c00-0x0c01] has been reserved
[    0.395702] system 00:02: [io  0x0c14] has been reserved
[    0.395705] system 00:02: [io  0x0c50-0x0c52] has been reserved
[    0.395708] system 00:02: [io  0x0c6c] has been reserved
[    0.395711] system 00:02: [io  0x0c6f] has been reserved
[    0.395714] system 00:02: [io  0x0cd0-0x0cdb] has been reserved
[    0.395778] system 00:03: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.395782] system 00:03: [mem 0xfe000000-0xffffffff] could not be reserved
[    0.397258] pnp: PnP ACPI: found 5 devices
[    0.403135] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.403280] NET: Registered PF_INET protocol family
[    0.403393] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.405376] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    0.405403] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.405416] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.405616] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.405718] TCP: Hash tables configured (established 524288 bind 65536)
[    0.405864] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear)
[    0.405910] UDP hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[    0.405962] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[    0.406078] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.406085] NET: Registered PF_XDP protocol family
[    0.406095] pci 0000:00:02.2: PCI bridge to [bus 01]
[    0.406106] pci 0000:00:02.2:   bridge window [mem 0x90b00000-0x90bfffff]
[    0.406110] pci 0000:00:02.2:   bridge window [mem 0x8810900000-0x88109fffff 64bit pref]
[    0.406117] pci 0000:00:02.4: PCI bridge to [bus 02]
[    0.406122] pci 0000:00:02.4:   bridge window [mem 0x90a00000-0x90afffff]
[    0.406129] pci 0000:00:03.1: PCI bridge to [bus 03-61]
[    0.406133] pci 0000:00:03.1:   bridge window [io  0x6000-0x9fff]
[    0.406144] pci 0000:00:03.1:   bridge window [mem 0x78000000-0x8fffffff]
[    0.406156] pci 0000:00:03.1:   bridge window [mem 0x7800000000-0x87ffffffff 64bit pref]
[    0.406171] pci 0000:00:04.1: PCI bridge to [bus 62-c0]
[    0.406175] pci 0000:00:04.1:   bridge window [io  0x2000-0x5fff]
[    0.406185] pci 0000:00:04.1:   bridge window [mem 0x60000000-0x77ffffff]
[    0.406198] pci 0000:00:04.1:   bridge window [mem 0x6800000000-0x77ffffffff 64bit pref]
[    0.406214] pci 0000:00:08.1: PCI bridge to [bus c1]
[    0.406217] pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
[    0.406222] pci 0000:00:08.1:   bridge window [mem 0x90000000-0x905fffff]
[    0.406226] pci 0000:00:08.1:   bridge window [mem 0x8800000000-0x88107fffff 64bit pref]
[    0.406232] pci 0000:00:08.2: PCI bridge to [bus c2]
[    0.406236] pci 0000:00:08.2:   bridge window [mem 0x90900000-0x909fffff]
[    0.406241] pci 0000:00:08.2:   bridge window [mem 0x8810800000-0x88108fffff 64bit pref]
[    0.406246] pci 0000:00:08.3: PCI bridge to [bus c3]
[    0.406250] pci 0000:00:08.3:   bridge window [mem 0x90600000-0x908fffff]
[    0.406257] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.406260] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.406264] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.406267] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000cffff window]
[    0.406270] pci_bus 0000:00: resource 8 [mem 0x000d0000-0x000effff window]
[    0.406274] pci_bus 0000:00: resource 9 [mem 0x60000000-0x90bfffff window]
[    0.406277] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfec00000 window]
[    0.406281] pci_bus 0000:00: resource 11 [mem 0xfed45000-0xfed814ff window]
[    0.406284] pci_bus 0000:00: resource 12 [mem 0xfed81900-0xfed81fff window]
[    0.406287] pci_bus 0000:00: resource 13 [mem 0xfedc0000-0xfedc0fff window]
[    0.406291] pci_bus 0000:00: resource 14 [mem 0xfedc6000-0xfedc6fff window]
[    0.406294] pci_bus 0000:00: resource 15 [mem 0x10c0200000-0x891fffffff window]
[    0.406298] pci_bus 0000:01: resource 1 [mem 0x90b00000-0x90bfffff]
[    0.406301] pci_bus 0000:01: resource 2 [mem 0x8810900000-0x88109fffff 64bit pref]
[    0.406305] pci_bus 0000:02: resource 1 [mem 0x90a00000-0x90afffff]
[    0.406308] pci_bus 0000:03: resource 0 [io  0x6000-0x9fff]
[    0.406311] pci_bus 0000:03: resource 1 [mem 0x78000000-0x8fffffff]
[    0.406314] pci_bus 0000:03: resource 2 [mem 0x7800000000-0x87ffffffff 64bit pref]
[    0.406317] pci_bus 0000:62: resource 0 [io  0x2000-0x5fff]
[    0.406320] pci_bus 0000:62: resource 1 [mem 0x60000000-0x77ffffff]
[    0.406323] pci_bus 0000:62: resource 2 [mem 0x6800000000-0x77ffffffff 64bit pref]
[    0.406327] pci_bus 0000:c1: resource 0 [io  0x1000-0x1fff]
[    0.406330] pci_bus 0000:c1: resource 1 [mem 0x90000000-0x905fffff]
[    0.406333] pci_bus 0000:c1: resource 2 [mem 0x8800000000-0x88107fffff 64bit pref]
[    0.406336] pci_bus 0000:c2: resource 1 [mem 0x90900000-0x909fffff]
[    0.406339] pci_bus 0000:c2: resource 2 [mem 0x8810800000-0x88108fffff 64bit pref]
[    0.406343] pci_bus 0000:c3: resource 1 [mem 0x90600000-0x908fffff]
[    0.406675] pci 0000:c1:00.1: D0 power state depends on 0000:c1:00.0
[    0.407228] PCI: CLS 64 bytes, default 64
[    0.407238] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    0.407266] Trying to unpack rootfs image as initramfs...
[    0.407286] pci 0000:00:01.0: Adding to iommu group 0
[    0.407320] pci 0000:00:02.0: Adding to iommu group 1
[    0.407334] pci 0000:00:02.2: Adding to iommu group 1
[    0.407349] pci 0000:00:02.4: Adding to iommu group 1
[    0.407378] pci 0000:00:03.0: Adding to iommu group 2
[    0.407393] pci 0000:00:03.1: Adding to iommu group 2
[    0.407422] pci 0000:00:04.0: Adding to iommu group 3
[    0.407438] pci 0000:00:04.1: Adding to iommu group 3
[    0.407479] pci 0000:00:08.0: Adding to iommu group 4
[    0.407496] pci 0000:00:08.1: Adding to iommu group 4
[    0.407511] pci 0000:00:08.2: Adding to iommu group 4
[    0.407526] pci 0000:00:08.3: Adding to iommu group 4
[    0.407554] pci 0000:00:14.0: Adding to iommu group 5
[    0.407570] pci 0000:00:14.3: Adding to iommu group 5
[    0.407636] pci 0000:00:18.0: Adding to iommu group 6
[    0.407653] pci 0000:00:18.1: Adding to iommu group 6
[    0.407669] pci 0000:00:18.2: Adding to iommu group 6
[    0.407686] pci 0000:00:18.3: Adding to iommu group 6
[    0.407704] pci 0000:00:18.4: Adding to iommu group 6
[    0.407721] pci 0000:00:18.5: Adding to iommu group 6
[    0.407737] pci 0000:00:18.6: Adding to iommu group 6
[    0.407753] pci 0000:00:18.7: Adding to iommu group 6
[    0.407761] pci 0000:01:00.0: Adding to iommu group 1
[    0.407770] pci 0000:02:00.0: Adding to iommu group 1
[    0.407777] pci 0000:c1:00.0: Adding to iommu group 4
[    0.407784] pci 0000:c1:00.1: Adding to iommu group 4
[    0.407792] pci 0000:c1:00.2: Adding to iommu group 4
[    0.407799] pci 0000:c1:00.3: Adding to iommu group 4
[    0.407806] pci 0000:c1:00.4: Adding to iommu group 4
[    0.407814] pci 0000:c1:00.5: Adding to iommu group 4
[    0.407821] pci 0000:c1:00.6: Adding to iommu group 4
[    0.407830] pci 0000:c2:00.0: Adding to iommu group 4
[    0.407838] pci 0000:c2:00.1: Adding to iommu group 4
[    0.407846] pci 0000:c3:00.0: Adding to iommu group 4
[    0.407853] pci 0000:c3:00.3: Adding to iommu group 4
[    0.407861] pci 0000:c3:00.4: Adding to iommu group 4
[    0.407868] pci 0000:c3:00.5: Adding to iommu group 4
[    0.407876] pci 0000:c3:00.6: Adding to iommu group 4
[    0.409475] pci 0000:00:00.2: can't derive routing for PCI INT A
[    0.409481] pci 0000:00:00.2: PCI INT A: not connected
[    0.409607] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[    0.409612] AMD-Vi: Extended features (0x246577efa2254afa, 0x0): PPR NX GT [5] IA GA PC GA_vAPIC
[    0.409624] AMD-Vi: Interrupt remapping enabled
[    0.409737] AMD-Vi: Virtual APIC enabled
[    0.409790] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.409794] software IO TLB: mapped [mem 0x0000000046c56000-0x000000004ac56000] (64MB)
[    0.409840] LVT offset 0 assigned for vector 0x400
[    0.410041] perf: AMD IBS detected (0x00000bff)
[    0.410055] amd_uncore: 4  amd_df counters detected
[    0.410067] amd_uncore: 6  amd_l3 counters detected
[    0.414157] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.416258] Initialise system trusted keyrings
[    0.416269] Key type blacklist registered
[    0.416299] workingset: timestamp_bits=46 max_order=24 bucket_order=0
[    0.416313] zbud: loaded
[    0.416696] integrity: Platform Keyring initialized
[    0.416702] integrity: Machine keyring initialized
[    0.422258] NET: Registered PF_ALG protocol family
[    0.422262] xor: automatically using best checksumming function   avx       
[    0.422266] Key type asymmetric registered
[    0.422269] Asymmetric key parser 'x509' registered
[    1.417682] tsc: Refined TSC clocksource calibration: 3293.781 MHz
[    1.417703] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2f7a5979f7a, max_idle_ns: 440795279213 ns
[    1.417790] clocksource: Switched to clocksource tsc
[    1.959424] Freeing initrd memory: 224212K
[    1.964122] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    1.964177] io scheduler mq-deadline registered
[    1.964180] io scheduler kyber registered
[    1.964189] io scheduler bfq registered
[    1.965667] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    1.966022] amd_gpio AMDI0030:00: iomux not supported
[    1.966026] amd_gpio AMDI0030:00: try to register 183 pins ...
[    1.966028] pinctrl core: registered pin 0 (GPIO_0) on AMDI0030:00
[    1.966031] pinctrl core: registered pin 1 (GPIO_1) on AMDI0030:00
[    1.966033] pinctrl core: registered pin 2 (GPIO_2) on AMDI0030:00
[    1.966035] pinctrl core: registered pin 3 (GPIO_3) on AMDI0030:00
[    1.966037] pinctrl core: registered pin 4 (GPIO_4) on AMDI0030:00
[    1.966039] pinctrl core: registered pin 5 (GPIO_5) on AMDI0030:00
[    1.966040] pinctrl core: registered pin 6 (GPIO_6) on AMDI0030:00
[    1.966042] pinctrl core: registered pin 7 (GPIO_7) on AMDI0030:00
[    1.966044] pinctrl core: registered pin 8 (GPIO_8) on AMDI0030:00
[    1.966045] pinctrl core: registered pin 9 (GPIO_9) on AMDI0030:00
[    1.966047] pinctrl core: registered pin 10 (GPIO_10) on AMDI0030:00
[    1.966049] pinctrl core: registered pin 11 (GPIO_11) on AMDI0030:00
[    1.966051] pinctrl core: registered pin 12 (GPIO_12) on AMDI0030:00
[    1.966053] pinctrl core: registered pin 13 (GPIO_13) on AMDI0030:00
[    1.966055] pinctrl core: registered pin 14 (GPIO_14) on AMDI0030:00
[    1.966057] pinctrl core: registered pin 15 (GPIO_15) on AMDI0030:00
[    1.966058] pinctrl core: registered pin 16 (GPIO_16) on AMDI0030:00
[    1.966060] pinctrl core: registered pin 17 (GPIO_17) on AMDI0030:00
[    1.966062] pinctrl core: registered pin 18 (GPIO_18) on AMDI0030:00
[    1.966064] pinctrl core: registered pin 19 (GPIO_19) on AMDI0030:00
[    1.966065] pinctrl core: registered pin 20 (GPIO_20) on AMDI0030:00
[    1.966067] pinctrl core: registered pin 21 (GPIO_21) on AMDI0030:00
[    1.966069] pinctrl core: registered pin 22 (GPIO_22) on AMDI0030:00
[    1.966071] pinctrl core: registered pin 23 (GPIO_23) on AMDI0030:00
[    1.966072] pinctrl core: registered pin 24 (GPIO_24) on AMDI0030:00
[    1.966074] pinctrl core: registered pin 25 (GPIO_25) on AMDI0030:00
[    1.966076] pinctrl core: registered pin 26 (GPIO_26) on AMDI0030:00
[    1.966078] pinctrl core: registered pin 27 (GPIO_27) on AMDI0030:00
[    1.966079] pinctrl core: registered pin 28 (GPIO_28) on AMDI0030:00
[    1.966081] pinctrl core: registered pin 29 (GPIO_29) on AMDI0030:00
[    1.966083] pinctrl core: registered pin 30 (GPIO_30) on AMDI0030:00
[    1.966085] pinctrl core: registered pin 31 (GPIO_31) on AMDI0030:00
[    1.966086] pinctrl core: registered pin 32 (GPIO_32) on AMDI0030:00
[    1.966090] pinctrl core: registered pin 33 (GPIO_33) on AMDI0030:00
[    1.966091] pinctrl core: registered pin 34 (GPIO_34) on AMDI0030:00
[    1.966093] pinctrl core: registered pin 35 (GPIO_35) on AMDI0030:00
[    1.966095] pinctrl core: registered pin 36 (GPIO_36) on AMDI0030:00
[    1.966097] pinctrl core: registered pin 37 (GPIO_37) on AMDI0030:00
[    1.966098] pinctrl core: registered pin 38 (GPIO_38) on AMDI0030:00
[    1.966100] pinctrl core: registered pin 39 (GPIO_39) on AMDI0030:00
[    1.966102] pinctrl core: registered pin 40 (GPIO_40) on AMDI0030:00
[    1.966104] pinctrl core: registered pin 41 (GPIO_41) on AMDI0030:00
[    1.966105] pinctrl core: registered pin 42 (GPIO_42) on AMDI0030:00
[    1.966107] pinctrl core: registered pin 43 (GPIO_43) on AMDI0030:00
[    1.966109] pinctrl core: registered pin 44 (GPIO_44) on AMDI0030:00
[    1.966111] pinctrl core: registered pin 45 (GPIO_45) on AMDI0030:00
[    1.966112] pinctrl core: registered pin 46 (GPIO_46) on AMDI0030:00
[    1.966114] pinctrl core: registered pin 47 (GPIO_47) on AMDI0030:00
[    1.966116] pinctrl core: registered pin 48 (GPIO_48) on AMDI0030:00
[    1.966118] pinctrl core: registered pin 49 (GPIO_49) on AMDI0030:00
[    1.966119] pinctrl core: registered pin 50 (GPIO_50) on AMDI0030:00
[    1.966121] pinctrl core: registered pin 51 (GPIO_51) on AMDI0030:00
[    1.966123] pinctrl core: registered pin 52 (GPIO_52) on AMDI0030:00
[    1.966125] pinctrl core: registered pin 53 (GPIO_53) on AMDI0030:00
[    1.966126] pinctrl core: registered pin 54 (GPIO_54) on AMDI0030:00
[    1.966128] pinctrl core: registered pin 55 (GPIO_55) on AMDI0030:00
[    1.966130] pinctrl core: registered pin 56 (GPIO_56) on AMDI0030:00
[    1.966132] pinctrl core: registered pin 57 (GPIO_57) on AMDI0030:00
[    1.966133] pinctrl core: registered pin 58 (GPIO_58) on AMDI0030:00
[    1.966135] pinctrl core: registered pin 59 (GPIO_59) on AMDI0030:00
[    1.966137] pinctrl core: registered pin 60 (GPIO_60) on AMDI0030:00
[    1.966139] pinctrl core: registered pin 61 (GPIO_61) on AMDI0030:00
[    1.966140] pinctrl core: registered pin 62 (GPIO_62) on AMDI0030:00
[    1.966143] pinctrl core: registered pin 64 (GPIO_64) on AMDI0030:00
[    1.966144] pinctrl core: registered pin 65 (GPIO_65) on AMDI0030:00
[    1.966146] pinctrl core: registered pin 66 (GPIO_66) on AMDI0030:00
[    1.966148] pinctrl core: registered pin 67 (GPIO_67) on AMDI0030:00
[    1.966150] pinctrl core: registered pin 68 (GPIO_68) on AMDI0030:00
[    1.966152] pinctrl core: registered pin 69 (GPIO_69) on AMDI0030:00
[    1.966153] pinctrl core: registered pin 70 (GPIO_70) on AMDI0030:00
[    1.966155] pinctrl core: registered pin 71 (GPIO_71) on AMDI0030:00
[    1.966157] pinctrl core: registered pin 72 (GPIO_72) on AMDI0030:00
[    1.966159] pinctrl core: registered pin 73 (GPIO_73) on AMDI0030:00
[    1.966160] pinctrl core: registered pin 74 (GPIO_74) on AMDI0030:00
[    1.966162] pinctrl core: registered pin 75 (GPIO_75) on AMDI0030:00
[    1.966164] pinctrl core: registered pin 76 (GPIO_76) on AMDI0030:00
[    1.966166] pinctrl core: registered pin 77 (GPIO_77) on AMDI0030:00
[    1.966167] pinctrl core: registered pin 78 (GPIO_78) on AMDI0030:00
[    1.966169] pinctrl core: registered pin 79 (GPIO_79) on AMDI0030:00
[    1.966171] pinctrl core: registered pin 80 (GPIO_80) on AMDI0030:00
[    1.966173] pinctrl core: registered pin 81 (GPIO_81) on AMDI0030:00
[    1.966174] pinctrl core: registered pin 82 (GPIO_82) on AMDI0030:00
[    1.966176] pinctrl core: registered pin 83 (GPIO_83) on AMDI0030:00
[    1.966178] pinctrl core: registered pin 84 (GPIO_84) on AMDI0030:00
[    1.966180] pinctrl core: registered pin 85 (GPIO_85) on AMDI0030:00
[    1.966181] pinctrl core: registered pin 86 (GPIO_86) on AMDI0030:00
[    1.966183] pinctrl core: registered pin 87 (GPIO_87) on AMDI0030:00
[    1.966185] pinctrl core: registered pin 88 (GPIO_88) on AMDI0030:00
[    1.966187] pinctrl core: registered pin 89 (GPIO_89) on AMDI0030:00
[    1.966188] pinctrl core: registered pin 90 (GPIO_90) on AMDI0030:00
[    1.966190] pinctrl core: registered pin 91 (GPIO_91) on AMDI0030:00
[    1.966192] pinctrl core: registered pin 92 (GPIO_92) on AMDI0030:00
[    1.966194] pinctrl core: registered pin 93 (GPIO_93) on AMDI0030:00
[    1.966195] pinctrl core: registered pin 94 (GPIO_94) on AMDI0030:00
[    1.966197] pinctrl core: registered pin 95 (GPIO_95) on AMDI0030:00
[    1.966199] pinctrl core: registered pin 96 (GPIO_96) on AMDI0030:00
[    1.966201] pinctrl core: registered pin 97 (GPIO_97) on AMDI0030:00
[    1.966204] pinctrl core: registered pin 98 (GPIO_98) on AMDI0030:00
[    1.966206] pinctrl core: registered pin 99 (GPIO_99) on AMDI0030:00
[    1.966207] pinctrl core: registered pin 100 (GPIO_100) on AMDI0030:00
[    1.966209] pinctrl core: registered pin 101 (GPIO_101) on AMDI0030:00
[    1.966211] pinctrl core: registered pin 102 (GPIO_102) on AMDI0030:00
[    1.966213] pinctrl core: registered pin 103 (GPIO_103) on AMDI0030:00
[    1.966215] pinctrl core: registered pin 104 (GPIO_104) on AMDI0030:00
[    1.966216] pinctrl core: registered pin 105 (GPIO_105) on AMDI0030:00
[    1.966218] pinctrl core: registered pin 106 (GPIO_106) on AMDI0030:00
[    1.966220] pinctrl core: registered pin 107 (GPIO_107) on AMDI0030:00
[    1.966222] pinctrl core: registered pin 108 (GPIO_108) on AMDI0030:00
[    1.966223] pinctrl core: registered pin 109 (GPIO_109) on AMDI0030:00
[    1.966225] pinctrl core: registered pin 110 (GPIO_110) on AMDI0030:00
[    1.966227] pinctrl core: registered pin 111 (GPIO_111) on AMDI0030:00
[    1.966229] pinctrl core: registered pin 112 (GPIO_112) on AMDI0030:00
[    1.966230] pinctrl core: registered pin 113 (GPIO_113) on AMDI0030:00
[    1.966232] pinctrl core: registered pin 114 (GPIO_114) on AMDI0030:00
[    1.966234] pinctrl core: registered pin 115 (GPIO_115) on AMDI0030:00
[    1.966236] pinctrl core: registered pin 116 (GPIO_116) on AMDI0030:00
[    1.966237] pinctrl core: registered pin 117 (GPIO_117) on AMDI0030:00
[    1.966239] pinctrl core: registered pin 118 (GPIO_118) on AMDI0030:00
[    1.966241] pinctrl core: registered pin 119 (GPIO_119) on AMDI0030:00
[    1.966243] pinctrl core: registered pin 120 (GPIO_120) on AMDI0030:00
[    1.966244] pinctrl core: registered pin 121 (GPIO_121) on AMDI0030:00
[    1.966246] pinctrl core: registered pin 122 (GPIO_122) on AMDI0030:00
[    1.966248] pinctrl core: registered pin 123 (GPIO_123) on AMDI0030:00
[    1.966250] pinctrl core: registered pin 124 (GPIO_124) on AMDI0030:00
[    1.966252] pinctrl core: registered pin 125 (GPIO_125) on AMDI0030:00
[    1.966253] pinctrl core: registered pin 126 (GPIO_126) on AMDI0030:00
[    1.966255] pinctrl core: registered pin 127 (GPIO_127) on AMDI0030:00
[    1.966257] pinctrl core: registered pin 128 (GPIO_128) on AMDI0030:00
[    1.966259] pinctrl core: registered pin 129 (GPIO_129) on AMDI0030:00
[    1.966261] pinctrl core: registered pin 130 (GPIO_130) on AMDI0030:00
[    1.966262] pinctrl core: registered pin 131 (GPIO_131) on AMDI0030:00
[    1.966264] pinctrl core: registered pin 132 (GPIO_132) on AMDI0030:00
[    1.966266] pinctrl core: registered pin 133 (GPIO_133) on AMDI0030:00
[    1.966268] pinctrl core: registered pin 134 (GPIO_134) on AMDI0030:00
[    1.966270] pinctrl core: registered pin 135 (GPIO_135) on AMDI0030:00
[    1.966271] pinctrl core: registered pin 136 (GPIO_136) on AMDI0030:00
[    1.966273] pinctrl core: registered pin 137 (GPIO_137) on AMDI0030:00
[    1.966275] pinctrl core: registered pin 138 (GPIO_138) on AMDI0030:00
[    1.966277] pinctrl core: registered pin 139 (GPIO_139) on AMDI0030:00
[    1.966278] pinctrl core: registered pin 140 (GPIO_140) on AMDI0030:00
[    1.966280] pinctrl core: registered pin 141 (GPIO_141) on AMDI0030:00
[    1.966282] pinctrl core: registered pin 142 (GPIO_142) on AMDI0030:00
[    1.966284] pinctrl core: registered pin 143 (GPIO_143) on AMDI0030:00
[    1.966285] pinctrl core: registered pin 144 (GPIO_144) on AMDI0030:00
[    1.966287] pinctrl core: registered pin 145 (GPIO_145) on AMDI0030:00
[    1.966289] pinctrl core: registered pin 146 (GPIO_146) on AMDI0030:00
[    1.966291] pinctrl core: registered pin 147 (GPIO_147) on AMDI0030:00
[    1.966292] pinctrl core: registered pin 148 (GPIO_148) on AMDI0030:00
[    1.966294] pinctrl core: registered pin 149 (GPIO_149) on AMDI0030:00
[    1.966296] pinctrl core: registered pin 150 (GPIO_150) on AMDI0030:00
[    1.966298] pinctrl core: registered pin 151 (GPIO_151) on AMDI0030:00
[    1.966299] pinctrl core: registered pin 152 (GPIO_152) on AMDI0030:00
[    1.966301] pinctrl core: registered pin 153 (GPIO_153) on AMDI0030:00
[    1.966303] pinctrl core: registered pin 154 (GPIO_154) on AMDI0030:00
[    1.966305] pinctrl core: registered pin 155 (GPIO_155) on AMDI0030:00
[    1.966307] pinctrl core: registered pin 156 (GPIO_156) on AMDI0030:00
[    1.966308] pinctrl core: registered pin 157 (GPIO_157) on AMDI0030:00
[    1.966310] pinctrl core: registered pin 158 (GPIO_158) on AMDI0030:00
[    1.966312] pinctrl core: registered pin 159 (GPIO_159) on AMDI0030:00
[    1.966314] pinctrl core: registered pin 160 (GPIO_160) on AMDI0030:00
[    1.966315] pinctrl core: registered pin 161 (GPIO_161) on AMDI0030:00
[    1.966318] pinctrl core: registered pin 162 (GPIO_162) on AMDI0030:00
[    1.966320] pinctrl core: registered pin 163 (GPIO_163) on AMDI0030:00
[    1.966322] pinctrl core: registered pin 164 (GPIO_164) on AMDI0030:00
[    1.966323] pinctrl core: registered pin 165 (GPIO_165) on AMDI0030:00
[    1.966325] pinctrl core: registered pin 166 (GPIO_166) on AMDI0030:00
[    1.966327] pinctrl core: registered pin 167 (GPIO_167) on AMDI0030:00
[    1.966329] pinctrl core: registered pin 168 (GPIO_168) on AMDI0030:00
[    1.966331] pinctrl core: registered pin 169 (GPIO_169) on AMDI0030:00
[    1.966332] pinctrl core: registered pin 170 (GPIO_170) on AMDI0030:00
[    1.966334] pinctrl core: registered pin 171 (GPIO_171) on AMDI0030:00
[    1.966336] pinctrl core: registered pin 172 (GPIO_172) on AMDI0030:00
[    1.966338] pinctrl core: registered pin 173 (GPIO_173) on AMDI0030:00
[    1.966339] pinctrl core: registered pin 174 (GPIO_174) on AMDI0030:00
[    1.966341] pinctrl core: registered pin 175 (GPIO_175) on AMDI0030:00
[    1.966343] pinctrl core: registered pin 176 (GPIO_176) on AMDI0030:00
[    1.966345] pinctrl core: registered pin 177 (GPIO_177) on AMDI0030:00
[    1.966346] pinctrl core: registered pin 178 (GPIO_178) on AMDI0030:00
[    1.966348] pinctrl core: registered pin 179 (GPIO_179) on AMDI0030:00
[    1.966350] pinctrl core: registered pin 180 (GPIO_180) on AMDI0030:00
[    1.966352] pinctrl core: registered pin 181 (GPIO_181) on AMDI0030:00
[    1.966353] pinctrl core: registered pin 182 (GPIO_182) on AMDI0030:00
[    1.966355] pinctrl core: registered pin 183 (GPIO_183) on AMDI0030:00
[    1.966358] amd_gpio AMDI0030:00: failed to lookup the default state
[    1.966360] amd_gpio AMDI0030:00: failed to lookup the sleep state
[    1.966874] gpiochip_find_base: found new base at 512
[    1.967320] amd_gpio AMDI0030:00: Invalid config param 0014
[    1.967323] gpio gpiochip0: Persistence not supported for GPIO 0
[    1.967347] amd_gpio AMDI0030:00: Invalid config param 0014
[    1.967349] gpio gpiochip0: Persistence not supported for GPIO 61
[    1.967367] amd_gpio AMDI0030:00: Invalid config param 0014
[    1.967370] gpio gpiochip0: Persistence not supported for GPIO 62
[    1.967388] amd_gpio AMDI0030:00: Invalid config param 0014
[    1.967390] gpio gpiochip0: Persistence not supported for GPIO 58
[    1.967410] amd_gpio AMDI0030:00: Invalid config param 0014
[    1.967412] gpio gpiochip0: Persistence not supported for GPIO 59
[    1.967430] amd_gpio AMDI0030:00: Invalid config param 0014
[    1.967432] gpio gpiochip0: Persistence not supported for GPIO 2
[    1.967449] amd_gpio AMDI0030:00: Invalid config param 0014
[    1.967452] gpio gpiochip0: Persistence not supported for GPIO 6
[    1.967470] amd_gpio AMDI0030:00: Invalid config param 0014
[    1.967472] gpio gpiochip0: Persistence not supported for GPIO 54
[    1.967527] gpio gpiochip0: (AMDI0030:00): added GPIO chardev (254:0)
[    1.967538] gpio gpiochip0: registered GPIOs 512 to 767 on AMDI0030:00
[    1.967540] gpio gpiochip0: (AMDI0030:00): created GPIO range 0->255 ==> AMDI0030:00 PIN 0->255
[    1.967618] amd_gpio AMDI0030:00: amd gpio driver loaded
[    1.967793] pcieport 0000:00:02.2: PME: Signaling with IRQ 38
[    1.967957] pcieport 0000:00:02.4: PME: Signaling with IRQ 39
[    1.968191] pcieport 0000:00:03.1: PME: Signaling with IRQ 40
[    1.968222] pcieport 0000:00:03.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.968761] pcieport 0000:00:04.1: PME: Signaling with IRQ 41
[    1.968792] pcieport 0000:00:04.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.969222] pcieport 0000:00:08.1: PME: Signaling with IRQ 42
[    1.969457] pcieport 0000:00:08.2: PME: Signaling with IRQ 43
[    1.969615] pcieport 0000:00:08.3: PME: Signaling with IRQ 44
[    1.969700] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    1.970379] ACPI: AC: AC Adapter [ACAD] (on-line)
[    1.970427] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:44/PNP0C09:00/PNP0C0D:00/input/input0
[    1.970447] ACPI: button: Lid Switch [LID0]
[    1.970473] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.970490] ACPI: button: Power Button [PWRB]
[    1.970557] Estimated ratio of average max frequency by base frequency (times 1024): 1548
[    1.970574] Monitor-Mwait will be used to enter C-1 state
[    1.970578] ACPI: \_SB_.PLTF.C000: Found 3 idle states
[    1.970691] ACPI: \_SB_.PLTF.C001: Found 3 idle states
[    1.970788] ACPI: \_SB_.PLTF.C002: Found 3 idle states
[    1.970877] ACPI: \_SB_.PLTF.C003: Found 3 idle states
[    1.970973] ACPI: \_SB_.PLTF.C004: Found 3 idle states
[    1.971069] ACPI: \_SB_.PLTF.C005: Found 3 idle states
[    1.971165] ACPI: \_SB_.PLTF.C006: Found 3 idle states
[    1.971260] ACPI: \_SB_.PLTF.C007: Found 3 idle states
[    1.971356] ACPI: \_SB_.PLTF.C008: Found 3 idle states
[    1.971452] ACPI: \_SB_.PLTF.C009: Found 3 idle states
[    1.971549] ACPI: \_SB_.PLTF.C00A: Found 3 idle states
[    1.971644] ACPI: \_SB_.PLTF.C00B: Found 3 idle states
[    1.971754] ACPI: \_SB_.PLTF.C00C: Found 3 idle states
[    1.971850] ACPI: \_SB_.PLTF.C00D: Found 3 idle states
[    1.971946] ACPI: \_SB_.PLTF.C00E: Found 3 idle states
[    1.972044] ACPI: \_SB_.PLTF.C00F: Found 3 idle states
[    1.972393] thermal LNXTHERM:00: registered as thermal_zone0
[    1.972397] ACPI: thermal: Thermal Zone [TZ00] (35 C)
[    1.972547] thermal LNXTHERM:01: registered as thermal_zone1
[    1.972550] ACPI: thermal: Thermal Zone [TZ01] (37 C)
[    1.972701] thermal LNXTHERM:02: registered as thermal_zone2
[    1.972705] ACPI: thermal: Thermal Zone [TZ02] (35 C)
[    1.972850] thermal LNXTHERM:03: registered as thermal_zone3
[    1.972853] ACPI: thermal: Thermal Zone [TZ03] (73 C)
[    1.973009] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.974231] ACPI: battery: Slot [BAT1] (battery present)
[    1.975109] Non-volatile memory driver v1.3
[    1.975116] Linux agpgart interface v0.103
[    1.975649] ACPI: bus type drm_connector registered
[    1.975903] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[    1.979912] Console: switching to colour frame buffer device 282x94
[    1.983679] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[    1.987118] mdio_bus fixed-0: using lookup tables for GPIO lookup
[    1.987122] mdio_bus fixed-0: No GPIO consumer reset found
[    1.987559] xhci_hcd 0000:c1:00.3: xHCI Host Controller
[    1.987668] xhci_hcd 0000:c1:00.3: new USB bus registered, assigned bus number 1
[    1.988148] xhci_hcd 0000:c1:00.3: hcc params 0x0128ffc5 hci version 0x120 quirks 0x0000000200000410
[    1.988590] xhci_hcd 0000:c1:00.3: xHCI Host Controller
[    1.988644] xhci_hcd 0000:c1:00.3: new USB bus registered, assigned bus number 2
[    1.988714] xhci_hcd 0000:c1:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    1.988804] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    1.988829] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.988850] usb usb1: Product: xHCI Host Controller
[    1.988869] usb usb1: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    1.988891] usb usb1: SerialNumber: 0000:c1:00.3
[    1.989117] hub 1-0:1.0: USB hub found
[    1.989157] hub 1-0:1.0: 5 ports detected
[    1.993414] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.993504] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    1.993517] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.993535] usb usb2: Product: xHCI Host Controller
[    1.993546] usb usb2: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    1.993561] usb usb2: SerialNumber: 0000:c1:00.3
[    1.993780] hub 2-0:1.0: USB hub found
[    1.993830] hub 2-0:1.0: 2 ports detected
[    1.995639] xhci_hcd 0000:c1:00.4: xHCI Host Controller
[    1.995728] xhci_hcd 0000:c1:00.4: new USB bus registered, assigned bus number 3
[    1.996165] xhci_hcd 0000:c1:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[    1.996505] xhci_hcd 0000:c1:00.4: xHCI Host Controller
[    1.996579] xhci_hcd 0000:c1:00.4: new USB bus registered, assigned bus number 4
[    1.996649] xhci_hcd 0000:c1:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    1.996726] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    1.996740] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.996759] usb usb3: Product: xHCI Host Controller
[    1.996772] usb usb3: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    1.996787] usb usb3: SerialNumber: 0000:c1:00.4
[    1.997009] hub 3-0:1.0: USB hub found
[    1.997061] hub 3-0:1.0: 1 port detected
[    1.997979] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.998065] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    1.998078] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.998097] usb usb4: Product: xHCI Host Controller
[    1.998111] usb usb4: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    1.998126] usb usb4: SerialNumber: 0000:c1:00.4
[    1.998319] hub 4-0:1.0: USB hub found
[    1.998381] hub 4-0:1.0: 1 port detected
[    1.999483] xhci_hcd 0000:c3:00.3: xHCI Host Controller
[    1.999572] xhci_hcd 0000:c3:00.3: new USB bus registered, assigned bus number 5
[    2.000028] xhci_hcd 0000:c3:00.3: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[    2.000553] xhci_hcd 0000:c3:00.3: xHCI Host Controller
[    2.000626] xhci_hcd 0000:c3:00.3: new USB bus registered, assigned bus number 6
[    2.000696] xhci_hcd 0000:c3:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    2.000767] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    2.000781] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.000799] usb usb5: Product: xHCI Host Controller
[    2.000811] usb usb5: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    2.000827] usb usb5: SerialNumber: 0000:c3:00.3
[    2.001042] hub 5-0:1.0: USB hub found
[    2.001095] hub 5-0:1.0: 1 port detected
[    2.002053] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.002146] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    2.002159] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.002177] usb usb6: Product: xHCI Host Controller
[    2.002190] usb usb6: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    2.002206] usb usb6: SerialNumber: 0000:c3:00.3
[    2.002424] hub 6-0:1.0: USB hub found
[    2.002448] hub 6-0:1.0: 1 port detected
[    2.003720] xhci_hcd 0000:c3:00.4: xHCI Host Controller
[    2.003810] xhci_hcd 0000:c3:00.4: new USB bus registered, assigned bus number 7
[    2.004215] xhci_hcd 0000:c3:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[    2.004732] xhci_hcd 0000:c3:00.4: xHCI Host Controller
[    2.004819] xhci_hcd 0000:c3:00.4: new USB bus registered, assigned bus number 8
[    2.005717] xhci_hcd 0000:c3:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    2.007134] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    2.007802] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.008442] usb usb7: Product: xHCI Host Controller
[    2.009012] usb usb7: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    2.009528] usb usb7: SerialNumber: 0000:c3:00.4
[    2.010291] hub 7-0:1.0: USB hub found
[    2.010983] hub 7-0:1.0: 1 port detected
[    2.012858] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.013616] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    2.014717] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.015238] usb usb8: Product: xHCI Host Controller
[    2.015747] usb usb8: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    2.016532] usb usb8: SerialNumber: 0000:c3:00.4
[    2.017653] hub 8-0:1.0: USB hub found
[    2.018256] hub 8-0:1.0: 1 port detected
[    2.021154] usbcore: registered new interface driver usbserial_generic
[    2.022537] usbserial: USB Serial support registered for generic
[    2.023102] i8042: PNP: PS/2 Controller [PNP0303:KBC0] at 0x60,0x64 irq 1
[    2.023633] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    2.027561] i8042: Warning: Keylock active
[    2.030874] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.032299] mousedev: PS/2 mouse device common for all mice
[    2.033128] rtc_cmos 00:01: RTC can wake from S4
[    2.034020] rtc_cmos 00:01: registered as rtc0
[    2.034620] rtc_cmos 00:01: setting system clock to 2023-12-20T16:27:18 UTC (1703089638)
[    2.035279] rtc_cmos 00:01: using ACPI '\_SB.PCI0.LPC0.RTC' for 'wp' GPIO lookup
[    2.035296] acpi PNP0B00:00: GPIO: looking up wp-gpios
[    2.035300] acpi PNP0B00:00: GPIO: looking up wp-gpio
[    2.035301] rtc_cmos 00:01: using lookup tables for GPIO lookup
[    2.035304] rtc_cmos 00:01: No GPIO consumer wp found
[    2.035348] rtc_cmos 00:01: alarms up to one month, 114 bytes nvram, hpet irqs
[    2.036196] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    2.037088] device-mapper: uevent: version 1.0.3
[    2.038099] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[    2.042145] hid: raw HID events driver (C) Jiri Kosina
[    2.042353] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    2.043432] usbcore: registered new interface driver usbhid
[    2.044607] usbhid: USB HID core driver
[    2.045472] drop_monitor: Initializing network drop monitor service
[    2.055516] Initializing XFRM netlink socket
[    2.056581] NET: Registered PF_INET6 protocol family
[    2.062510] Segment Routing with IPv6
[    2.063663] RPL Segment Routing with IPv6
[    2.064174] In-situ OAM (IOAM) with IPv6
[    2.064598] mip6: Mobile IPv6
[    2.065016] NET: Registered PF_PACKET protocol family
[    2.070375] microcode: CPU2: patch_level=0x0a704103
[    2.070377] microcode: CPU6: patch_level=0x0a704103
[    2.070378] microcode: CPU7: patch_level=0x0a704103
[    2.070388] microcode: CPU3: patch_level=0x0a704103
[    2.070389] microcode: CPU12: patch_level=0x0a704103
[    2.070388] microcode: CPU13: patch_level=0x0a704103
[    2.070389] microcode: CPU14: patch_level=0x0a704103
[    2.070391] microcode: CPU15: patch_level=0x0a704103
[    2.070392] microcode: CPU4: patch_level=0x0a704103
[    2.070393] microcode: CPU5: patch_level=0x0a704103
[    2.070399] microcode: CPU9: patch_level=0x0a704103
[    2.070399] microcode: CPU8: patch_level=0x0a704103
[    2.070399] microcode: CPU0: patch_level=0x0a704103
[    2.070411] microcode: CPU11: patch_level=0x0a704103
[    2.070411] microcode: CPU10: patch_level=0x0a704103
[    2.070498] microcode: CPU1: patch_level=0x0a704103
[    2.077968] microcode: Microcode Update Driver: v2.2.
[    2.083396] resctrl: L3 allocation detected
[    2.084803] resctrl: MB allocation detected
[    2.085185] resctrl: SMBA allocation detected
[    2.085573] resctrl: L3 monitoring detected
[    2.085970] IPI shorthand broadcast: enabled
[    2.086358] AVX2 version of gcm_enc/dec engaged.
[    2.087909] AES CTR mode by8 optimization enabled
[    2.091234] sched_clock: Marking stable (2089010819, 1655784)->(2111863983, -21197380)
[    2.092146] registered taskstats version 1
[    2.094724] Loading compiled-in X.509 certificates
[    2.102125] Loaded X.509 cert 'Build time autogenerated kernel key: 3f6a57fb3f3898b7be9c82c1820e4f9123e8e07f'
[    2.106007] page_owner is disabled
[    2.107273] Key type .fscrypt registered
[    2.108137] Key type fscrypt-provisioning registered
[    2.109681] Btrfs loaded, zoned=yes, fsverity=yes
[    2.110540] Key type big_key registered
[    2.116740] Key type encrypted registered
[    2.120642] integrity: Loading X.509 certificate: UEFI:db
[    2.121565] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    2.122013] integrity: Loading X.509 certificate: UEFI:db
[    2.122426] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    2.122836] integrity: Loading X.509 certificate: UEFI:db
[    2.123221] integrity: Loaded X.509 cert 'frame.work-LaptopAMDDB: 02'
[    2.134875] ima: No TPM chip found, activating TPM-bypass!
[    2.135360] Loading compiled-in module X.509 certificates
[    2.136038] Loaded X.509 cert 'Build time autogenerated kernel key: 3f6a57fb3f3898b7be9c82c1820e4f9123e8e07f'
[    2.136412] ima: Allocated hash algorithm: sha256
[    2.136886] ima: No architecture policies found
[    2.138028] evm: Initialising EVM extended attributes:
[    2.138566] evm: security.selinux
[    2.139077] evm: security.SMACK64 (disabled)
[    2.139586] evm: security.SMACK64EXEC (disabled)
[    2.140180] evm: security.SMACK64TRANSMUTE (disabled)
[    2.140558] evm: security.SMACK64MMAP (disabled)
[    2.140953] evm: security.apparmor (disabled)
[    2.141317] evm: security.ima
[    2.141740] evm: security.capability
[    2.142209] evm: HMAC attrs: 0x1
[    2.193959] alg: No test for 842 (842-scomp)
[    2.195731] alg: No test for 842 (842-generic)
[    2.235745] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    2.251684] usb 7-1: new high-speed USB device number 2 using xhci_hcd
[    2.265912] PM:   Magic number: 3:165:490
[    2.378263] RAS: Correctable Errors collector initialized.
[    2.380829] clk: Disabling unused clocks
[    2.382850] Freeing unused decrypted memory: 2028K
[    2.384260] Freeing unused kernel image (initmem) memory: 3944K
[    2.385701] Write protecting the kernel read-only data: 34816k
[    2.385706] usb 7-1: New USB device found, idVendor=17ef, idProduct=a392, bcdDevice= d.24
[    2.386637] usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.387206] usb 7-1: Product: USB2.0 Hub
[    2.387746] usb 7-1: Manufacturer: VIA Labs, Inc.
[    2.388710] Freeing unused kernel image (rodata/data gap) memory: 1928K
[    2.392728] usb 1-1: New USB device found, idVendor=046d, idProduct=c548, bcdDevice= 5.01
[    2.393911] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.394548] usb 1-1: Product: USB Receiver
[    2.395012] usb 1-1: Manufacturer: Logitech
[    2.413072] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:08.1/0000:c1:00.3/usb1/1-1/1-1:1.0/0003:046D:C548.0001/input/input3
[    2.419939] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.420635] Run /init as init process
[    2.421099]   with arguments:
[    2.421101]     /init
[    2.421102]   with environment:
[    2.421103]     HOME=/
[    2.421103]     TERM=linux
[    2.421104]     BOOT_IMAGE=/boot/vmlinuz-6.6.7xen-irq-dbg-1+
[    2.424195] hub 7-1:1.0: USB hub found
[    2.425469] hub 7-1:1.0: 4 ports detected
[    2.443406] systemd[1]: systemd 254.7-1.fc39 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    2.445076] systemd[1]: Detected architecture x86-64.
[    2.446016] systemd[1]: Running in initrd.
[    2.450014] systemd[1]: No hostname configured, using default hostname.
[    2.450856] systemd[1]: Hostname set to <fedora>.
[    2.466136] hid-generic 0003:046D:C548.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:c1:00.3-1/input0
[    2.472104] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:08.1/0000:c1:00.3/usb1/1-1/1-1:1.1/0003:046D:C548.0002/input/input4
[    2.476414] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:c1:00.3/usb1/1-1/1-1:1.1/0003:046D:C548.0002/input/input5
[    2.518567] usb 8-1: new SuperSpeed Plus Gen 2x1 USB device number 2 using xhci_hcd
[    2.528943] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:08.1/0000:c1:00.3/usb1/1-1/1-1:1.1/0003:046D:C548.0002/input/input6
[    2.532047] hid-generic 0003:046D:C548.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:c1:00.3-1/input1
[    2.537805] hid-generic 0003:046D:C548.0003: hiddev96,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:c1:00.3-1/input2
[    2.614231] usb 8-1: New USB device found, idVendor=17ef, idProduct=a391, bcdDevice= d.24
[    2.615667] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.616455] usb 8-1: Product: USB3.1 Hub
[    2.616880] usb 8-1: Manufacturer: VIA Labs, Inc.
[    2.638695] systemd[1]: bpf-lsm: LSM BPF program attached
[    2.648233] hub 8-1:1.0: USB hub found
[    2.650973] hub 8-1:1.0: 4 ports detected
[    2.654710] usb 1-4: new full-speed USB device number 3 using xhci_hcd
[    2.689401] systemd[1]: Queued start job for default target initrd.target.
[    2.703745] systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System.
[    2.704785] systemd[1]: Reached target slices.target - Slice Units.
[    2.705690] systemd[1]: Reached target swap.target - Swaps.
[    2.706590] systemd[1]: Reached target timers.target - Timer Units.
[    2.709634] systemd[1]: Listening on dbus.socket - D-Bus System Message Bus Socket.
[    2.712550] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    2.714918] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[    2.717067] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    2.718832] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    2.720497] systemd[1]: Reached target sockets.target - Socket Units.
[    2.724529] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    2.726942] systemd[1]: memstrack.service - Memstrack Anylazing Service was skipped because no trigger condition checks were met.
[    2.730488] systemd[1]: Starting systemd-journald.service - Journal Service...
[    2.734723] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    2.738030] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[    2.740579] systemd-journald[343]: Collecting audit messages is disabled.
[    2.744804] systemd[1]: Starting systemd-vconsole-setup.service - Virtual Console Setup...
[    2.753860] fuse: init (API version 7.39)
[    2.757479] i2c_dev: i2c /dev entries driver
[    2.768963] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    2.797960] systemd[1]: Finished systemd-sysusers.service - Create System Users.
[    2.800458] systemd[1]: Started systemd-journald.service - Journal Service.
[    2.817772] usb 1-4: New USB device found, idVendor=27c6, idProduct=609c, bcdDevice= 1.00
[    2.818878] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.819417] usb 1-4: Product: Goodix USB2.0 MISC
[    2.819931] usb 1-4: Manufacturer: Goodix Technology Co., Ltd.
[    2.820427] usb 1-4: SerialNumber: UIDD5F04A7B_XXXX_MOC_B0
[    2.946670] usb 1-5: new high-speed USB device number 4 using xhci_hcd
[    2.999547] Rounding down aligned max_sectors from 4294967295 to 4294967288
[    3.000278] db_root: cannot open: /etc/target
[    3.080229] usb 1-5: New USB device found, idVendor=0e8d, idProduct=e616, bcdDevice= 1.00
[    3.081424] usb 1-5: New USB device strings: Mfr=5, Product=6, SerialNumber=7
[    3.082007] usb 1-5: Product: Wireless_Device
[    3.082557] usb 1-5: Manufacturer: MediaTek Inc.
[    3.083103] usb 1-5: SerialNumber: 000000000
[    3.172180] acpi FRMW0004:00: GPIO: looking up 0 in _CRS
[    3.172243] acpi FRMW0005:00: GPIO: looking up 0 in _CRS
[    3.172346] amd_gpio AMDI0030:00: Invalid config param 0014
[    3.172351] gpio gpiochip0: Persistence not supported for GPIO 84
[    3.172486] amd_gpio AMDI0030:00: Invalid config param 0014
[    3.172490] gpio gpiochip0: Persistence not supported for GPIO 5
[    3.172492] acpi PIXA3854:00: GPIO: looking up 0 in _CRS
[    3.172570] amd_gpio AMDI0030:00: Invalid config param 0014
[    3.172574] gpio gpiochip0: Persistence not supported for GPIO 8
[    3.173068] ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
[    3.174942] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:16/LNXVIDEO:00/input/input7
[    3.176549] GPIO 8 is active: 0x18141b00
[    3.177698] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    3.179285] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[    3.180672] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[    3.183629] GPIO 8 is active: 0x18141b00
[    3.184721] ccp 0000:c1:00.2: enabling device (0000 -> 0002)
[    3.190711] GPIO 8 is active: 0x18141b00
[    3.196188] ccp 0000:c1:00.2: tee enabled
[    3.197793] GPIO 8 is active: 0x18141b00
[    3.197864] ccp 0000:c1:00.2: psp enabled
[    3.200669] usb 7-1.3: new high-speed USB device number 3 using xhci_hcd
[    3.236145] GPIO 8 is active: 0x18141b00
[    3.257917] GPIO 84 is active: 0x10141b00
[    3.259431] GPIO 5 is active: 0x10141b00
[    3.259455] GPIO 84 is active: 0x10140b00
[    3.318687] input: PIXA3854:00 093A:0274 Mouse as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0004/input/input8
[    3.320059] input: PIXA3854:00 093A:0274 Touchpad as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0004/input/input9
[    3.320858] hid-generic 0018:093A:0274.0004: input,hidraw3: I2C HID v1.00 Mouse [PIXA3854:00 093A:0274] on i2c-PIXA3854:00
[    3.342265] input: FRMW0004:00 32AC:0006 Wireless Radio Control as /devices/platform/AMDI0010:00/i2c-0/i2c-FRMW0004:00/0018:32AC:0006.0005/input/input10
[    3.343003] usb 7-1.3: New USB device found, idVendor=17ef, idProduct=a394, bcdDevice= d.23
[    3.343015] usb 7-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.343025] usb 7-1.3: Product: USB2.0 Hub
[    3.343032] usb 7-1.3: Manufacturer: VIA Labs, Inc.
[    3.343759] input: FRMW0004:00 32AC:0006 Consumer Control as /devices/platform/AMDI0010:00/i2c-0/i2c-FRMW0004:00/0018:32AC:0006.0005/input/input11
[    3.349359] GPIO 8 is active: 0x18141b00
[    3.360497] GPIO 8 is active: 0x18141b00
[    3.365966] hid-generic 0018:32AC:0006.0005: input,hidraw3: I2C HID v1.00 Device [FRMW0004:00 32AC:0006] on i2c-FRMW0004:00
[    3.367290] input: PIXA3854:00 093A:0274 Mouse as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0004/input/input12
[    3.367507] GPIO 8 is active: 0x18141b00
[    3.367583] input: PIXA3854:00 093A:0274 Touchpad as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0004/input/input13
[    3.367749] hid-multitouch 0018:093A:0274.0004: input,hidraw4: I2C HID v1.00 Mouse [PIXA3854:00 093A:0274] on i2c-PIXA3854:00
[    3.374616] GPIO 8 is active: 0x18141b00
[    3.381670] GPIO 8 is active: 0x18141b00
[    3.383437] hub 7-1.3:1.0: USB hub found
[    3.383995] hub 7-1.3:1.0: 4 ports detected
[    3.388622] GPIO 8 is active: 0x18141b00
[    3.395711] GPIO 8 is active: 0x18141b00
[    3.402801] GPIO 8 is active: 0x18141b00
[    3.409883] GPIO 8 is active: 0x18141b00
[    3.415285] usb 8-1.1: new SuperSpeed USB device number 3 using xhci_hcd
[    3.416948] GPIO 8 is active: 0x18141b00
[    3.423994] GPIO 8 is active: 0x18141b00
[    3.428022] usb 8-1.1: New USB device found, idVendor=17ef, idProduct=a387, bcdDevice=31.03
[    3.428064] usb 8-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[    3.428095] usb 8-1.1: Product: USB-C Dock Ethernet
[    3.428118] usb 8-1.1: Manufacturer: Realtek
[    3.428139] usb 8-1.1: SerialNumber: 301000001
[    3.428792] hid-generic 0018:32AC:001B.0006: hidraw5: I2C HID v1.00 Device [FRMW0005:00 32AC:001B] on i2c-FRMW0005:00
[    3.430945] GPIO 8 is active: 0x18141b00
[    3.431136] hid-sensor-hub 0018:32AC:001B.0006: hidraw5: I2C HID v1.00 Device [FRMW0005:00 32AC:001B] on i2c-FRMW0005:00
[    3.438029] GPIO 8 is active: 0x18141b00
[    3.444705] nvme 0000:02:00.0: platform quirk: setting simple suspend
[    3.444879] nvme nvme0: pci function 0000:02:00.0
[    3.445186] GPIO 8 is active: 0x18141b00
[    3.452196] GPIO 8 is active: 0x18141b00
[    3.459279] GPIO 8 is active: 0x18141b00
[    3.466321] GPIO 8 is active: 0x18141b00
[    3.473292] GPIO 8 is active: 0x18141b00
[    3.480405] GPIO 8 is active: 0x18141b00
[    3.484129] nvme nvme0: 16/0/0 default/read/poll queues
[    3.487412] GPIO 8 is active: 0x18141b00
[    3.488423]  nvme0n1: p1 p2 p3 p4
[    3.494381] GPIO 8 is active: 0x18141b00
[    3.496243] BTRFS: device fsid 71b1dc59-ea00-484c-b5e4-ee77ede771db devid 1 transid 6117 /dev/nvme0n1p1 scanned by (udev-worker) (519)
[    3.501465] GPIO 8 is active: 0x18141b00
[    3.508550] GPIO 8 is active: 0x18141b00
[    3.515615] GPIO 8 is active: 0x18141b00
[    3.522591] GPIO 8 is active: 0x18141b00
[    3.529672] GPIO 8 is active: 0x18141b00
[    3.536705] GPIO 8 is active: 0x18141b00
[    3.543678] GPIO 8 is active: 0x18141b00
[    3.550750] GPIO 8 is active: 0x18141b00
[    3.554461] usb 8-1.3: new SuperSpeed Plus Gen 2x1 USB device number 4 using xhci_hcd
[    3.557839] GPIO 8 is active: 0x18141b00
[    3.587031] usb 8-1.3: New USB device found, idVendor=17ef, idProduct=a393, bcdDevice= d.23
[    3.587066] usb 8-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.587089] usb 8-1.3: Product: USB3.1 Hub
[    3.587103] usb 8-1.3: Manufacturer: VIA Labs, Inc.
[    3.607304] hub 8-1.3:1.0: USB hub found
[    3.607443] hub 8-1.3:1.0: 4 ports detected
[    3.616638] usbcore: registered new device driver r8152-cfgselector
[    3.783377] r8152-cfgselector 8-1.1: reset SuperSpeed USB device number 3 using xhci_hcd
[    3.804282] r8152 8-1.1:1.0: load rtl8153b-2 v2 04/27/23 successfully
[    3.835690] r8152 8-1.1:1.0 eth0: v1.12.13
[    3.835743] usbcore: registered new interface driver r8152
[    3.843885] r8152 8-1.1:1.0 enp195s0f4u1u1: renamed from eth0
[    4.168695] usb 7-1.3.3: new high-speed USB device number 4 using xhci_hcd
[    4.279325] GPIO 5 is active: 0x10141b00
[    4.326722] usb 7-1.3.3: New USB device found, idVendor=17ef, idProduct=a395, bcdDevice=60.70
[    4.326752] usb 7-1.3.3: New USB device strings: Mfr=10, Product=11, SerialNumber=0
[    4.326775] usb 7-1.3.3: Product: USB2.0 Hub
[    4.326790] usb 7-1.3.3: Manufacturer: Lenovo
[    4.375550] hub 7-1.3.3:1.0: USB hub found
[    4.376109] hub 7-1.3.3:1.0: 4 ports detected
[    4.651698] usb 7-1.3.3.1: new full-speed USB device number 5 using xhci_hcd
[    4.750123] usb 7-1.3.3.1: New USB device found, idVendor=04b4, idProduct=521a, bcdDevice= 0.00
[    4.750152] usb 7-1.3.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.750175] usb 7-1.3.3.1: Product: USB-I2C Bridge
[    4.750191] usb 7-1.3.3.1: Manufacturer: Cypress Semiconductor
[    4.858698] usb 7-1.3.3.2: new full-speed USB device number 6 using xhci_hcd
[    4.881222] [drm] amdgpu kernel modesetting enabled.
[    4.891588] amdgpu: Virtual CRAT table created for CPU
[    4.891609] amdgpu: Topology: Add CPU node
[    4.891699] amdgpu 0000:c1:00.0: enabling device (0006 -> 0007)
[    4.891753] [drm] initializing kernel modesetting (IP DISCOVERY 0x1002:0x15BF 0xF111:0x0006 0xC4).
[    4.891858] [drm] register mmio base: 0x90500000
[    4.891866] [drm] register mmio size: 524288
[    4.894712] [drm] add ip block number 0 <soc21_common>
[    4.894723] [drm] add ip block number 1 <gmc_v11_0>
[    4.894732] [drm] add ip block number 2 <ih_v6_0>
[    4.894742] [drm] add ip block number 3 <psp>
[    4.894749] [drm] add ip block number 4 <smu>
[    4.894756] [drm] add ip block number 5 <dm>
[    4.894762] [drm] add ip block number 6 <gfx_v11_0>
[    4.894770] [drm] add ip block number 7 <sdma_v6_0>
[    4.894778] [drm] add ip block number 8 <vcn_v4_0>
[    4.894785] [drm] add ip block number 9 <jpeg_v4_0>
[    4.894793] [drm] add ip block number 10 <mes_v11_0>
[    4.894818] amdgpu 0000:c1:00.0: amdgpu: Fetched VBIOS from VFCT
[    4.894828] amdgpu: ATOM BIOS: 113-PHXGENERIC-001
[    4.912792] [drm] VCN(0) encode/decode are enabled in VM mode
[    4.922815] amdgpu 0000:c1:00.0: [drm:jpeg_v4_0_early_init [amdgpu]] JPEG decode is enabled in VM mode
[    4.930892] Console: switching to colour dummy device 80x25
[    4.943108] amdgpu 0000:c1:00.0: vgaarb: deactivate vga console
[    4.943113] amdgpu 0000:c1:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[    4.943157] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    4.943181] amdgpu 0000:c1:00.0: amdgpu: VRAM: 512M 0x0000008000000000 - 0x000000801FFFFFFF (512M used)
[    4.943186] amdgpu 0000:c1:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[    4.943190] amdgpu 0000:c1:00.0: amdgpu: AGP: 267894784M 0x0000008400000000 - 0x0000FFFFFFFFFFFF
[    4.943205] [drm] Detected VRAM RAM=512M, BAR=512M
[    4.943207] [drm] RAM width 128bits DDR5
[    4.943360] [drm] amdgpu: 512M of VRAM memory ready
[    4.943364] [drm] amdgpu: 31741M of GTT memory ready.
[    4.943384] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    4.943906] [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
[    4.944172] [drm] Loading DMUB firmware via PSP: version=0x08002A81
[    4.946396] [drm] Found VCN firmware Version ENC: 1.10 DEC: 5 VEP: 0 Revision: 0
[    4.946405] amdgpu 0000:c1:00.0: amdgpu: Will use PSP to load VCN firmware
[    4.970498] [drm] reserve 0x4000000 from 0x8018000000 for PSP TMR
[    4.997117] usb 7-1.3.3.2: New USB device found, idVendor=17ef, idProduct=30d1, bcdDevice= 0.42
[    4.997127] usb 7-1.3.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.997135] usb 7-1.3.3.2: Product: ThinkPad USB-C Dock Gen2 USB Audio
[    4.997142] usb 7-1.3.3.2: Manufacturer: Lenovo
[    4.997147] usb 7-1.3.3.2: SerialNumber: 000000000000
[    5.089503] hid-generic 0003:17EF:30D1.0007: hiddev97,hidraw6: USB HID v1.11 Device [Lenovo ThinkPad USB-C Dock Gen2 USB Audio] on usb-0000:c3:00.4-1.3.3.2/input3
[    5.288903] GPIO 5 is active: 0x10141b00
[    5.486392] amdgpu 0000:c1:00.0: amdgpu: RAS: optional ras ta ucode is not available
[    5.493872] amdgpu 0000:c1:00.0: amdgpu: RAP: optional rap ta ucode is not available
[    5.493882] amdgpu 0000:c1:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[    5.527507] amdgpu 0000:c1:00.0: amdgpu: SMU is initialized successfully!
[    5.527934] [drm] Display Core v3.2.247 initialized on DCN 3.1.4
[    5.527939] [drm] DP-HDMI FRL PCON supported
[    5.529878] [drm] DMUB hardware initialized: version=0x08002A81
[    5.612959] [drm] PSR support 1, DC PSR ver 0, sink PSR ver 3 DPCD caps 0x7b su_y_granularity 4
[    5.678582] [drm] DM_MST: Differing MST start on aconnector: 00000000b23238de [id: 112]
[    5.679879] [drm] kiq ring mec 3 pipe 1 q 0
[    5.682385] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[    5.682421] amdgpu 0000:c1:00.0: [drm:jpeg_v4_0_hw_init [amdgpu]] JPEG decode initialized successfully.
[    5.694547] amdgpu: HMM registered 512MB device memory
[    5.695310] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[    5.695321] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[    5.695412] amdgpu: Virtual CRAT table created for GPU
[    5.695549] amdgpu: Topology: Add dGPU node [0x15bf:0x1002]
[    5.695552] kfd kfd: amdgpu: added device 1002:15bf
[    5.695563] amdgpu 0000:c1:00.0: amdgpu: SE 1, SH per SE 2, CU per SH 6, active_cu_number 12
[    5.695706] amdgpu 0000:c1:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[    5.695711] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    5.695714] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    5.695718] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[    5.695721] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[    5.695725] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[    5.695728] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[    5.695731] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[    5.695735] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[    5.695738] amdgpu 0000:c1:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[    5.695742] amdgpu 0000:c1:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
[    5.695745] amdgpu 0000:c1:00.0: amdgpu: ring jpeg_dec uses VM inv eng 1 on hub 8
[    5.695749] amdgpu 0000:c1:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
[    5.700112] [drm] ring gfx_32768.1.1 was added
[    5.700668] [drm] ring compute_32768.2.2 was added
[    5.701178] [drm] ring sdma_32768.3.3 was added
[    5.701224] [drm] ring gfx_32768.1.1 ib test pass
[    5.701265] [drm] ring compute_32768.2.2 ib test pass
[    5.701324] [drm] ring sdma_32768.3.3 ib test pass
[    5.703686] [drm] Initialized amdgpu 3.54.0 20150101 for 0000:c1:00.0 on minor 1
[    5.708515] fbcon: amdgpudrmfb (fb0) is primary device
[    5.708638] [drm] DSC precompute is not needed.
[    6.296855] GPIO 5 is active: 0x10141b00
[    6.522055] Console: switching to colour frame buffer device 282x94
[    6.541147] amdgpu 0000:c1:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[    6.753127] [drm] Downstream port present 1, type 2
[    7.285019] BTRFS info (device nvme0n1p1): first mount of filesystem 71b1dc59-ea00-484c-b5e4-ee77ede771db
[    7.285049] BTRFS info (device nvme0n1p1): using crc32c (crc32c-intel) checksum algorithm
[    7.285062] BTRFS info (device nvme0n1p1): using free space tree
[    7.298451] BTRFS info (device nvme0n1p1): enabling ssd optimizations
[    7.298471] BTRFS info (device nvme0n1p1): auto enabling async discard
[    7.303902] GPIO 5 is active: 0x10141b00
[    7.746992] systemd-journald[343]: Received SIGTERM from PID 1 (systemd).
[    7.833277] audit: type=1404 audit(1703089644.298:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
[    7.869414] SELinux:  policy capability network_peer_controls=1
[    7.870054] SELinux:  policy capability open_perms=1
[    7.870526] SELinux:  policy capability extended_socket_class=1
[    7.870979] SELinux:  policy capability always_check_network=0
[    7.871420] SELinux:  policy capability cgroup_seclabel=1
[    7.871860] SELinux:  policy capability nnp_nosuid_transition=1
[    7.872296] SELinux:  policy capability genfs_seclabel_symlinks=1
[    7.872728] SELinux:  policy capability ioctl_skip_cloexec=0
[    7.904294] audit: type=1403 audit(1703089644.369:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
[    7.904991] systemd[1]: Successfully loaded SELinux policy in 71.839ms.
[    7.932990] systemd[1]: Relabeled /dev, /dev/shm, /run, /sys/fs/cgroup in 23.072ms.
[    7.938263] systemd[1]: systemd 254.7-1.fc39 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    7.939284] systemd[1]: Detected architecture x86-64.
[    8.097369] systemd[1]: bpf-lsm: LSM BPF program attached
[    8.174091] systemd-sysv-generator[748]: SysV service '/etc/rc.d/init.d/xencommons' lacks a native systemd unit file. ~ Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it safe, robust and future-proof. ! This compatibility logic is deprecated, expect removal soon. !
[    8.188231] zram: Added device: zram0
[    8.297085] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[    8.305810] systemd[1]: Stopped initrd-switch-root.service - Switch Root.
[    8.307789] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    8.308114] systemd[1]: Created slice machine.slice - Virtual Machine and Container Slice.
[    8.310299] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[    8.310750] GPIO 5 is active: 0x10141b00
[    8.311300] systemd[1]: Created slice system-sshd\x2dkeygen.slice - Slice /system/sshd-keygen.
[    8.312355] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[    8.313389] systemd[1]: Created slice system-systemd\x2dzram\x2dsetup.slice - Slice /system/systemd-zram-setup.
[    8.314504] systemd[1]: Created slice user.slice - User and Session Slice.
[    8.315305] systemd[1]: systemd-ask-password-plymouth.path: Deactivated successfully.
[    8.315807] systemd[1]: Stopped systemd-ask-password-plymouth.path.
[    8.316508] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    8.317732] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    8.318409] systemd[1]: Stopped target initrd-switch-root.target - Switch Root.
[    8.319418] systemd[1]: Stopped target initrd-fs.target - Initrd File Systems.
[    8.319953] systemd[1]: Stopped target initrd-root-fs.target - Initrd Root File System.
[    8.320981] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[    8.322087] systemd[1]: Reached target slices.target - Slice Units.
[    8.323112] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[    8.325580] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[    8.328577] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[    8.330161] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[    8.331229] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[    8.332845] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[    8.334210] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
[    8.335823] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    8.336618] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    8.337866] systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket.
[    8.351912] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    8.354867] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    8.356188] systemd[1]: proc-xen.mount - Mount /proc/xen files was skipped because of an unmet condition check (ConditionPathExists=/proc/xen).
[    8.357829] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    8.359901] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[    8.360798] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[    8.361306] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
[    8.362848] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    8.365005] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    8.367391] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[    8.369768] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[    8.372287] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[    8.374708] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[    8.377693] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[    8.380020] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[    8.380947] systemd[1]: Stopping plymouth-start.service...
[    8.382215] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
[    8.382904] systemd[1]: Stopped plymouth-switch-root.service.
[    8.384921] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
[    8.385972] systemd[1]: Stopped systemd-fsck-root.service - File System Check on Root Device.
[    8.387004] loop: module loaded
[    8.388394] systemd[1]: Starting systemd-journald.service - Journal Service...
[    8.391317] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    8.393205] systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line...
[    8.394662] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
[    8.396983] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    8.397260] systemd-journald[773]: Collecting audit messages is enabled.
[    8.400319] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    8.401697] systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
[    8.402353] systemd[1]: Stopped systemd-vconsole-setup.service - Virtual Console Setup.
[    8.403659] audit: type=1131 audit(1703089644.868:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    8.405825] systemd[1]: Started systemd-journald.service - Journal Service.
[    8.407244] audit: type=1130 audit(1703089644.872:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    8.419322] audit: type=1131 audit(1703089644.884:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    8.439782] audit: type=1130 audit(1703089644.905:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    8.453583] audit: type=1130 audit(1703089644.918:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    8.480549] audit: type=1130 audit(1703089644.945:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    8.481874] audit: type=1131 audit(1703089644.945:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    8.501239] audit: type=1130 audit(1703089644.966:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    8.649957] systemd-journald[773]: Received client request to flush runtime journal.
[    8.696253] systemd-journald[773]: /var/log/journal/c80b79eae1794302b76e09e5265106e3/system.journal: Journal file uses a different sequence number ID, rotating.
[    8.697207] systemd-journald[773]: Rotating system journal.
[    8.877822] zram0: detected capacity change from 0 to 16777216
[    8.908506] amd-pmf AMDI0102:00: registered PMF device successfully
[    8.964962] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    8.966701] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    8.968461] input: PC Speaker as /devices/platform/pcspkr/input/input14
[    8.969270] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[    8.975237] ACPI: bus type thunderbolt registered
[    8.997915] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    9.005875] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    9.010618] Adding 8388604k swap on /dev/zram0.  Priority:100 extents:1 across:8388604k SSDsc
[    9.014489] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[    9.015918] RAPL PMU: hw unit of domain package 2^-16 Joules
[    9.032176] Bluetooth: Core ver 2.22
[    9.032203] NET: Registered PF_BLUETOOTH protocol family
[    9.032205] Bluetooth: HCI device and connection manager initialized
[    9.032209] Bluetooth: HCI socket layer initialized
[    9.032211] Bluetooth: L2CAP socket layer initialized
[    9.032218] Bluetooth: SCO socket layer initialized
[    9.047786] usb 1-5: using ACPI '\_SB.PCI0.GP17.XHC0.RHUB.PRT5' for 'reset' GPIO lookup
[    9.047794] acpi device:29: GPIO: looking up reset-gpios
[    9.047796] acpi device:29: GPIO: looking up reset-gpio
[    9.047797] usb 1-5: using lookup tables for GPIO lookup
[    9.047798] usb 1-5: No GPIO consumer reset found
[    9.047890] usbcore: registered new interface driver btusb
[    9.050798] Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20231120183620
[    9.126093] kvm_amd: TSC scaling supported
[    9.126990] kvm_amd: Nested Virtualization enabled
[    9.127706] kvm_amd: Nested Paging enabled
[    9.129692] kvm_amd: Virtual VMLOAD VMSAVE supported
[    9.130867] kvm_amd: Virtual GIF supported
[    9.131764] kvm_amd: Virtual NMI enabled
[    9.131765] kvm_amd: LBR virtualization supported
[    9.145631] MCE: In-kernel MCE decoding enabled.
[    9.162608] mt7921e 0000:01:00.0: enabling device (0000 -> 0002)
[    9.174672] mt7921e 0000:01:00.0: ASIC revision: 79220010
[    9.189840] intel_rapl_common: Found RAPL domain package
[    9.190832] Bluetooth: hci0: Device setup in 139554 usecs
[    9.191158] intel_rapl_common: Found RAPL domain core
[    9.191984] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[    9.252113] mt7921e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20231120183400a

[    9.254049] Bluetooth: hci0: AOSP extensions version v1.00
[    9.255758] Bluetooth: hci0: AOSP quality report is supported
[    9.276439] mt7921e 0000:01:00.0: WM Firmware Version: ____000000, Build Time: 20231120183441
[    9.317586] GPIO 5 is active: 0x10141b00
[    9.498431] RPC: Registered named UNIX socket transport module.
[    9.499284] RPC: Registered udp transport module.
[    9.500045] RPC: Registered tcp transport module.
[    9.500725] RPC: Registered tcp-with-tls transport module.
[    9.501335] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    9.624197] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    9.625776] Bluetooth: BNEP filters: protocol multicast
[    9.626781] Bluetooth: BNEP socket layer initialized
[    9.628966] Bluetooth: MGMT ver 1.22
[    9.754042] NET: Registered PF_QIPCRTR protocol family
[    9.853250] GPIO 5 is active: 0x10141b00
[    9.953835] GPIO 5 is active: 0x10141b00
[    9.962589] r8152 8-1.1:1.0 enp195s0f4u1u1: carrier on
[   10.055542] GPIO 5 is active: 0x10141b00
[   10.156242] GPIO 5 is active: 0x10141b00
[   10.256825] GPIO 5 is active: 0x10141b00
[   10.358653] GPIO 5 is active: 0x10141b00
[   10.375454] mt7921e 0000:01:00.0 wlp1s0: renamed from wlan0
[   10.459252] GPIO 5 is active: 0x10141b00
[   10.561314] GPIO 5 is active: 0x10141b00
[   10.662217] GPIO 5 is active: 0x10141b00
[   10.762363] GPIO 5 is active: 0x10141b00
[   10.864168] GPIO 5 is active: 0x10141b00
[   10.965600] GPIO 5 is active: 0x10141b00
[   11.067125] GPIO 5 is active: 0x10141b00
[   11.168429] GPIO 5 is active: 0x10141b00
[   11.269035] GPIO 5 is active: 0x10141b00
[   11.370210] GPIO 5 is active: 0x10141b00
[   11.471284] GPIO 5 is active: 0x10141b00
[   11.572678] GPIO 5 is active: 0x10141b00
[   11.673815] GPIO 5 is active: 0x10141b00
[   11.774354] GPIO 5 is active: 0x10141b00
[   11.876426] GPIO 5 is active: 0x10141b00
[   11.976989] GPIO 5 is active: 0x10141b00
[   12.078760] GPIO 5 is active: 0x10141b00
[   12.179416] GPIO 5 is active: 0x10141b00
[   12.279840] GPIO 5 is active: 0x10141b00
[   12.381769] GPIO 5 is active: 0x10141b00
[   12.482368] GPIO 5 is active: 0x10141b00
[   12.583714] GPIO 5 is active: 0x10141b00
[   12.684432] GPIO 5 is active: 0x10141b00
[   12.785119] GPIO 5 is active: 0x10141b00
[   12.886896] GPIO 5 is active: 0x10141b00
[   12.987864] GPIO 5 is active: 0x10141b00
[   13.089616] GPIO 5 is active: 0x10141b00
[   13.190404] GPIO 5 is active: 0x10141b00
[   13.290564] GPIO 5 is active: 0x10141b00
[   13.392568] GPIO 5 is active: 0x10141b00
[   13.492984] GPIO 5 is active: 0x10141b00
[   13.594981] GPIO 5 is active: 0x10141b00
[   13.695242] GPIO 5 is active: 0x10141b00
[   13.795893] GPIO 5 is active: 0x10141b00
[   13.897206] GPIO 5 is active: 0x10141b00
[   13.998253] GPIO 5 is active: 0x10141b00
[   14.100213] GPIO 5 is active: 0x10141b00
[   14.201680] GPIO 5 is active: 0x10141b00
[   14.302428] GPIO 5 is active: 0x10141b00
[   14.403802] GPIO 5 is active: 0x10141b00
[   14.504509] GPIO 5 is active: 0x10141b00
[   14.508484] wlp1s0: authenticate with 60:22:32:37:20:46
[   14.608190] GPIO 5 is active: 0x10141b00
[   14.708743] GPIO 5 is active: 0x10141b00
[   14.810543] GPIO 5 is active: 0x10141b00
[   14.911961] GPIO 5 is active: 0x10141b00
[   15.015545] wlp1s0: send auth to 60:22:32:37:20:46 (try 1/3)
[   15.024157] GPIO 5 is active: 0x10141b00
[   15.126253] GPIO 5 is active: 0x10141b00
[   15.128032] wlp1s0: authenticate with 60:22:32:37:20:46
[   15.137754] wlp1s0: send auth to 60:22:32:37:20:46 (try 1/3)
[   15.169767] wlp1s0: authenticated
[   15.170721] wlp1s0: associate with 60:22:32:37:20:46 (try 1/3)
[   15.186689] wlp1s0: RX AssocResp from 60:22:32:37:20:46 (capab=0x1111 status=0 aid=10)
[   15.221703] wlp1s0: associated
[   15.227667] GPIO 5 is active: 0x10141b00
[   15.329482] GPIO 5 is active: 0x10141b00
[   15.429042] wlp1s0: Limiting TX power to 23 (23 - 0) dBm as advertised by 60:22:32:37:20:46
[   15.430223] GPIO 5 is active: 0x10141b00
[   15.530755] GPIO 5 is active: 0x10141b00
[   15.633741] GPIO 5 is active: 0x10141b00
[   15.734317] GPIO 5 is active: 0x10141b00
[   15.836436] GPIO 5 is active: 0x10141b00
[   15.867210] systemd-journald[773]: /var/log/journal/c80b79eae1794302b76e09e5265106e3/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[   15.937325] GPIO 5 is active: 0x10141b00
[   16.050585] GPIO 5 is active: 0x10141b00
[   16.152958] GPIO 5 is active: 0x10141b00
[   16.253512] GPIO 5 is active: 0x10141b00
[   16.355597] GPIO 5 is active: 0x10141b00
[   16.457164] GPIO 5 is active: 0x10141b00
[   16.557252] GPIO 5 is active: 0x10141b00
[   16.660502] GPIO 5 is active: 0x10141b00
[   16.760768] GPIO 5 is active: 0x10141b00
[   16.864190] GPIO 5 is active: 0x10141b00
[   16.964566] GPIO 5 is active: 0x10141b00
[   17.077981] GPIO 5 is active: 0x10141b00
[   17.180038] GPIO 5 is active: 0x10141b00
[   17.281517] GPIO 5 is active: 0x10141b00
[   17.383331] GPIO 5 is active: 0x10141b00
[   17.484002] GPIO 5 is active: 0x10141b00
[   17.585104] GPIO 5 is active: 0x10141b00
[   17.686593] GPIO 5 is active: 0x10141b00
[   17.787611] GPIO 5 is active: 0x10141b00
[   17.890686] GPIO 5 is active: 0x10141b00
[   17.990781] GPIO 5 is active: 0x10141b00
[   18.112549] GPIO 5 is active: 0x10141b00
[   18.212948] GPIO 5 is active: 0x10141b00
[   18.313707] GPIO 5 is active: 0x10141b00
[   18.415949] GPIO 5 is active: 0x10141b00
[   18.517195] GPIO 5 is active: 0x10141b00
[   18.619340] GPIO 5 is active: 0x10141b00
[   18.720515] GPIO 5 is active: 0x10141b00
[   18.820887] GPIO 5 is active: 0x10141b00
[   18.923419] GPIO 5 is active: 0x10141b00
[   19.024373] GPIO 5 is active: 0x10141b00
[   19.143670] GPIO 5 is active: 0x10141b00
[   19.143872] GPIO 5 is active: 0x10141b00
[   19.244283] GPIO 5 is active: 0x10141b00
[   19.346400] GPIO 5 is active: 0x10141b00
[   19.447768] GPIO 5 is active: 0x10141b00
[   19.548927] GPIO 5 is active: 0x10141b00
[   19.651120] GPIO 5 is active: 0x10141b00
[   19.752236] GPIO 5 is active: 0x10141b00
[   19.853397] GPIO 5 is active: 0x10141b00
[   19.955937] GPIO 5 is active: 0x10141b00
[   20.056758] GPIO 5 is active: 0x10141b00
[   20.170203] GPIO 5 is active: 0x10141b00
[   20.270295] GPIO 5 is active: 0x10141b00
[   20.372905] GPIO 5 is active: 0x10141b00
[   20.473604] GPIO 5 is active: 0x10141b00
[   20.575288] GPIO 5 is active: 0x10141b00
[   20.677656] GPIO 5 is active: 0x10141b00
[   20.778823] GPIO 5 is active: 0x10141b00
[   20.880428] GPIO 5 is active: 0x10141b00
[   20.981349] GPIO 5 is active: 0x10141b00
[   21.082006] GPIO 5 is active: 0x10141b00
[   21.194295] GPIO 5 is active: 0x10141b00
[   21.295481] GPIO 5 is active: 0x10141b00
[   21.398584] GPIO 5 is active: 0x10141b00
[   21.498813] GPIO 5 is active: 0x10141b00
[   21.599754] GPIO 5 is active: 0x10141b00
[   21.701359] GPIO 5 is active: 0x10141b00
[   21.803314] GPIO 5 is active: 0x10141b00
[   21.905114] GPIO 5 is active: 0x10141b00
[   22.006787] GPIO 5 is active: 0x10141b00
[   22.107908] GPIO 5 is active: 0x10141b00
[   22.220951] GPIO 5 is active: 0x10141b00
[   22.321337] GPIO 5 is active: 0x10141b00
[   22.424645] GPIO 5 is active: 0x10141b00
[   22.524756] GPIO 5 is active: 0x10141b00
[   22.627134] GPIO 5 is active: 0x10141b00
[   22.728070] GPIO 5 is active: 0x10141b00
[   22.829691] GPIO 5 is active: 0x10141b00
[   22.931994] GPIO 5 is active: 0x10141b00
[   23.033214] GPIO 5 is active: 0x10141b00
[   23.134386] GPIO 5 is active: 0x10141b00
[   23.241647] GPIO 5 is active: 0x10141b00
[   23.342505] GPIO 5 is active: 0x10141b00
[   23.445205] GPIO 5 is active: 0x10141b00
[   23.545785] GPIO 5 is active: 0x10141b00
[   23.648879] GPIO 5 is active: 0x10141b00
[   23.749895] GPIO 5 is active: 0x10141b00
[   23.851258] GPIO 5 is active: 0x10141b00
[   23.953259] GPIO 5 is active: 0x10141b00
[   24.055041] GPIO 5 is active: 0x10141b00
[   24.155842] GPIO 5 is active: 0x10141b00
[   24.272733] GPIO 5 is active: 0x10141b00
[   24.373073] GPIO 5 is active: 0x10141b00
[   24.475415] GPIO 5 is active: 0x10141b00
[   24.575589] GPIO 5 is active: 0x10141b00
[   24.679238] GPIO 5 is active: 0x10141b00
[   24.780012] GPIO 5 is active: 0x10141b00
[   24.881155] GPIO 5 is active: 0x10141b00
[   24.983275] GPIO 5 is active: 0x10141b00
[   25.084696] GPIO 5 is active: 0x10141b00
[   25.187150] GPIO 5 is active: 0x10141b00
[   25.303787] GPIO 5 is active: 0x10141b00
[   25.405525] GPIO 5 is active: 0x10141b00
[   25.507314] GPIO 5 is active: 0x10141b00
[   25.608519] GPIO 5 is active: 0x10141b00
[   25.710829] GPIO 5 is active: 0x10141b00
[   25.811892] GPIO 5 is active: 0x10141b00
[   25.913791] GPIO 5 is active: 0x10141b00
[   26.015207] GPIO 5 is active: 0x10141b00
[   26.116356] GPIO 5 is active: 0x10141b00
[   26.218161] GPIO 5 is active: 0x10141b00
[   26.323868] GPIO 5 is active: 0x10141b00
[   26.425118] GPIO 5 is active: 0x10141b00
[   26.526309] GPIO 5 is active: 0x10141b00
[   26.627138] GPIO 5 is active: 0x10141b00
[   26.729643] GPIO 5 is active: 0x10141b00
[   26.829976] GPIO 5 is active: 0x10141b00
[   26.932683] GPIO 5 is active: 0x10141b00
[   27.034049] GPIO 5 is active: 0x10141b00
[   27.134955] GPIO 5 is active: 0x10141b00
[   27.236899] GPIO 5 is active: 0x10141b00
[   27.344359] GPIO 5 is active: 0x10141b00
[   27.445438] GPIO 5 is active: 0x10141b00
[   27.547652] GPIO 5 is active: 0x10141b00
[   27.647997] GPIO 5 is active: 0x10141b00
[   27.751805] GPIO 5 is active: 0x10141b00
[   27.852417] GPIO 5 is active: 0x10141b00
[   27.954558] GPIO 5 is active: 0x10141b00
[   28.055559] GPIO 5 is active: 0x10141b00
[   28.157146] GPIO 5 is active: 0x10141b00
[   28.259267] GPIO 5 is active: 0x10141b00
[   28.370520] GPIO 5 is active: 0x10141b00
[   28.472469] GPIO 5 is active: 0x10141b00
[   28.574286] GPIO 5 is active: 0x10141b00
[   28.674793] GPIO 5 is active: 0x10141b00
[   28.776443] GPIO 5 is active: 0x10141b00
[   28.877356] GPIO 5 is active: 0x10141b00
[   28.980305] GPIO 5 is active: 0x10141b00
[   29.081015] GPIO 5 is active: 0x10141b00
[   29.182725] GPIO 5 is active: 0x10141b00
[   29.284133] GPIO 5 is active: 0x10141b00
[   29.396118] GPIO 5 is active: 0x10141b00
[   29.498128] GPIO 5 is active: 0x10141b00
[   29.599554] GPIO 5 is active: 0x10141b00
[   29.599784] GPIO 5 is active: 0x10141b00
[   29.701024] GPIO 5 is active: 0x10141b00
[   29.803224] GPIO 5 is active: 0x10141b00
[   29.903731] GPIO 5 is active: 0x10141b00
[   30.006719] GPIO 5 is active: 0x10141b00
[   30.107336] GPIO 5 is active: 0x10141b00
[   30.209741] GPIO 5 is active: 0x10141b00
[   30.310156] GPIO 5 is active: 0x10141b00
[   30.428092] GPIO 5 is active: 0x10141b00
[   30.530480] GPIO 5 is active: 0x10141b00
[   30.631771] GPIO 5 is active: 0x10141b00
[   30.733802] GPIO 5 is active: 0x10141b00
[   30.835052] GPIO 5 is active: 0x10141b00
[   30.935570] GPIO 5 is active: 0x10141b00
[   31.038967] GPIO 5 is active: 0x10141b00
[   31.139615] GPIO 5 is active: 0x10141b00
[   31.242500] GPIO 5 is active: 0x10141b00
[   31.343155] GPIO 5 is active: 0x10141b00
[   31.462510] GPIO 5 is active: 0x10141b00
[   31.563585] GPIO 5 is active: 0x10141b00
[   31.665149] GPIO 5 is active: 0x10141b00
[   31.767088] GPIO 5 is active: 0x10141b00
[   31.868672] GPIO 5 is active: 0x10141b00
[   31.970152] GPIO 5 is active: 0x10141b00
[   32.072172] GPIO 5 is active: 0x10141b00
[   32.172844] GPIO 5 is active: 0x10141b00
[   32.275610] GPIO 5 is active: 0x10141b00
[   32.376334] GPIO 5 is active: 0x10141b00
[   32.491234] GPIO 5 is active: 0x10141b00
[   32.591385] GPIO 5 is active: 0x10141b00
[   32.692518] GPIO 5 is active: 0x10141b00
[   32.794907] GPIO 5 is active: 0x10141b00
[   32.896050] GPIO 5 is active: 0x10141b00
[   32.997786] GPIO 5 is active: 0x10141b00
[   33.099878] GPIO 5 is active: 0x10141b00
[   33.201000] GPIO 5 is active: 0x10141b00
[   33.302710] GPIO 5 is active: 0x10141b00
[   33.403914] GPIO 5 is active: 0x10141b00
[   33.512166] GPIO 5 is active: 0x10141b00
[   33.613234] GPIO 5 is active: 0x10141b00
[   33.715046] GPIO 5 is active: 0x10141b00
[   33.816750] GPIO 5 is active: 0x10141b00
[   33.917846] GPIO 5 is active: 0x10141b00
[   34.019711] GPIO 5 is active: 0x10141b00
[   34.121127] GPIO 5 is active: 0x10141b00
[   34.221865] GPIO 5 is active: 0x10141b00
[   34.324652] GPIO 5 is active: 0x10141b00
[   34.425262] GPIO 5 is active: 0x10141b00
[   34.532079] GPIO 5 is active: 0x10141b00
[   34.632251] GPIO 5 is active: 0x10141b00
[   34.734721] GPIO 5 is active: 0x10141b00
[   34.835806] GPIO 5 is active: 0x10141b00
[   34.936862] GPIO 5 is active: 0x10141b00
[   35.038611] GPIO 5 is active: 0x10141b00
[   35.140705] GPIO 5 is active: 0x10141b00
[   35.241794] GPIO 5 is active: 0x10141b00
[   35.343262] GPIO 5 is active: 0x10141b00
[   35.444169] GPIO 5 is active: 0x10141b00
[   35.557506] GPIO 5 is active: 0x10141b00
[   35.658119] GPIO 5 is active: 0x10141b00
[   35.760111] GPIO 5 is active: 0x10141b00
[   35.860639] GPIO 5 is active: 0x10141b00
[   35.961717] GPIO 5 is active: 0x10141b00
[   36.063739] GPIO 5 is active: 0x10141b00
[   36.165242] GPIO 5 is active: 0x10141b00
[   36.266908] GPIO 5 is active: 0x10141b00
[   36.368892] GPIO 5 is active: 0x10141b00
[   36.469423] GPIO 5 is active: 0x10141b00
[   36.582941] GPIO 5 is active: 0x10141b00
[   36.683549] GPIO 5 is active: 0x10141b00
[   36.786466] GPIO 5 is active: 0x10141b00
[   36.887028] GPIO 5 is active: 0x10141b00
[   36.988667] GPIO 5 is active: 0x10141b00
[   37.090651] GPIO 5 is active: 0x10141b00
[   37.090971] GPIO 5 is active: 0x10141b00
[   37.192155] GPIO 5 is active: 0x10141b00
[   37.294263] GPIO 5 is active: 0x10141b00
[   37.396077] GPIO 5 is active: 0x10141b00
[   37.496816] GPIO 5 is active: 0x10141b00
[   37.607935] GPIO 5 is active: 0x10141b00
[   37.708701] GPIO 5 is active: 0x10141b00
[   37.811903] GPIO 5 is active: 0x10141b00
[   37.912531] GPIO 5 is active: 0x10141b00
[   38.014477] GPIO 5 is active: 0x10141b00
[   38.115627] GPIO 5 is active: 0x10141b00
[   38.217496] GPIO 5 is active: 0x10141b00
[   38.318941] GPIO 5 is active: 0x10141b00
[   38.420605] GPIO 5 is active: 0x10141b00
[   38.521542] GPIO 5 is active: 0x10141b00
[   38.639795] GPIO 5 is active: 0x10141b00
[   38.740290] GPIO 5 is active: 0x10141b00
[   38.843255] GPIO 5 is active: 0x10141b00
[   38.943879] GPIO 5 is active: 0x10141b00
[   39.047874] GPIO 5 is active: 0x10141b00
[   39.148777] GPIO 5 is active: 0x10141b00
[   39.250270] GPIO 5 is active: 0x10141b00
[   39.351523] GPIO 5 is active: 0x10141b00
[   39.453101] GPIO 5 is active: 0x10141b00
[   39.554800] GPIO 5 is active: 0x10141b00
[   39.665125] GPIO 5 is active: 0x10141b00
[   39.765913] GPIO 5 is active: 0x10141b00
[   39.867692] GPIO 5 is active: 0x10141b00
[   39.968256] GPIO 5 is active: 0x10141b00
[   40.071287] GPIO 5 is active: 0x10141b00
[   40.171661] GPIO 5 is active: 0x10141b00
[   40.273352] GPIO 5 is active: 0x10141b00
[   40.374951] GPIO 5 is active: 0x10141b00
[   40.476347] GPIO 5 is active: 0x10141b00
[   40.578340] GPIO 5 is active: 0x10141b00
[   40.692013] GPIO 5 is active: 0x10141b00
[   40.792713] GPIO 5 is active: 0x10141b00
[   40.894125] GPIO 5 is active: 0x10141b00
[   40.994656] GPIO 5 is active: 0x10141b00
[   41.097630] GPIO 5 is active: 0x10141b00
[   41.198393] GPIO 5 is active: 0x10141b00
[   41.301523] GPIO 5 is active: 0x10141b00
[   41.401711] GPIO 5 is active: 0x10141b00
[   41.503745] GPIO 5 is active: 0x10141b00
[   41.605642] GPIO 5 is active: 0x10141b00
[   41.733515] GPIO 5 is active: 0x10141b00
[   41.835307] GPIO 5 is active: 0x10141b00
[   41.936658] GPIO 5 is active: 0x10141b00
[   42.037772] GPIO 5 is active: 0x10141b00
[   42.140171] GPIO 5 is active: 0x10141b00
[   42.240734] GPIO 5 is active: 0x10141b00
[   42.343894] GPIO 5 is active: 0x10141b00
[   42.444479] GPIO 5 is active: 0x10141b00
[   42.546507] GPIO 5 is active: 0x10141b00
[   42.647802] GPIO 5 is active: 0x10141b00
[   42.759555] GPIO 5 is active: 0x10141b00
[   42.861184] GPIO 5 is active: 0x10141b00
[   42.962623] GPIO 5 is active: 0x10141b00
[   43.064014] GPIO 5 is active: 0x10141b00
[   43.166052] GPIO 5 is active: 0x10141b00
[   43.266673] GPIO 5 is active: 0x10141b00
[   43.369320] GPIO 5 is active: 0x10141b00
[   43.470317] GPIO 5 is active: 0x10141b00
[   43.572177] GPIO 5 is active: 0x10141b00
[   43.672747] GPIO 5 is active: 0x10141b00
[   43.791376] GPIO 5 is active: 0x10141b00
[   43.893167] GPIO 5 is active: 0x10141b00
[   43.994788] GPIO 5 is active: 0x10141b00
[   44.096777] GPIO 5 is active: 0x10141b00
[   44.197916] GPIO 5 is active: 0x10141b00
[   44.298851] GPIO 5 is active: 0x10141b00
[   44.401861] GPIO 5 is active: 0x10141b00
[   44.502511] GPIO 5 is active: 0x10141b00
[   44.605012] GPIO 5 is active: 0x10141b00
[   44.706244] GPIO 5 is active: 0x10141b00
[   44.820565] GPIO 5 is active: 0x10141b00
[   44.921652] GPIO 5 is active: 0x10141b00
[   45.023213] GPIO 5 is active: 0x10141b00
[   45.125304] GPIO 5 is active: 0x10141b00
[   45.226638] GPIO 5 is active: 0x10141b00
[   45.327671] GPIO 5 is active: 0x10141b00
[   45.429773] GPIO 5 is active: 0x10141b00
[   45.530920] GPIO 5 is active: 0x10141b00
[   45.632864] GPIO 5 is active: 0x10141b00
[   45.733328] GPIO 5 is active: 0x10141b00
[   45.856747] GPIO 5 is active: 0x10141b00
[   45.957360] GPIO 5 is active: 0x10141b00
[   46.059250] GPIO 5 is active: 0x10141b00
[   46.160928] GPIO 5 is active: 0x10141b00
[   46.262504] GPIO 5 is active: 0x10141b00
[   46.364773] GPIO 5 is active: 0x10141b00
[   46.466385] GPIO 5 is active: 0x10141b00
[   46.566832] GPIO 5 is active: 0x10141b00
[   46.670075] GPIO 5 is active: 0x10141b00
[   46.770678] GPIO 5 is active: 0x10141b00
[   46.882748] GPIO 5 is active: 0x10141b00
[   46.983852] GPIO 5 is active: 0x10141b00
[   47.086187] GPIO 5 is active: 0x10141b00
[   47.186554] GPIO 5 is active: 0x10141b00
[   47.288432] GPIO 5 is active: 0x10141b00
[   47.390157] GPIO 5 is active: 0x10141b00
[   47.491721] GPIO 5 is active: 0x10141b00
[   47.592305] GPIO 5 is active: 0x10141b00
[   47.695638] GPIO 5 is active: 0x10141b00
[   47.795855] GPIO 5 is active: 0x10141b00
[   47.902688] GPIO 5 is active: 0x10141b00
[   48.003137] GPIO 5 is active: 0x10141b00
[   48.105388] GPIO 5 is active: 0x10141b00
[   48.206314] GPIO 5 is active: 0x10141b00
[   48.307555] GPIO 5 is active: 0x10141b00
[   48.409681] GPIO 5 is active: 0x10141b00
[   48.511308] GPIO 5 is active: 0x10141b00
[   48.612366] GPIO 5 is active: 0x10141b00
[   48.713858] GPIO 5 is active: 0x10141b00
[   48.814602] GPIO 5 is active: 0x10141b00
[   48.929051] GPIO 5 is active: 0x10141b00
[   49.029677] GPIO 5 is active: 0x10141b00
[   49.132597] GPIO 5 is active: 0x10141b00
[   49.233330] GPIO 5 is active: 0x10141b00
[   49.335124] GPIO 5 is active: 0x10141b00
[   49.437321] GPIO 5 is active: 0x10141b00
[   49.538951] GPIO 5 is active: 0x10141b00
[   49.640095] GPIO 5 is active: 0x10141b00
[   49.742181] GPIO 5 is active: 0x10141b00
[   49.842646] GPIO 5 is active: 0x10141b00
[   49.953709] GPIO 5 is active: 0x10141b00
[   50.054390] GPIO 5 is active: 0x10141b00
[   50.157181] GPIO 5 is active: 0x10141b00
[   50.257269] GPIO 5 is active: 0x10141b00
[   50.360132] GPIO 5 is active: 0x10141b00
[   50.461605] GPIO 5 is active: 0x10141b00
[   50.562151] GPIO 5 is active: 0x10141b00
[   50.663692] GPIO 5 is active: 0x10141b00
[   50.764713] GPIO 5 is active: 0x10141b00
[   50.865814] GPIO 5 is active: 0x10141b00
[   50.978939] GPIO 5 is active: 0x10141b00
[   51.079542] GPIO 5 is active: 0x10141b00
[   51.182470] GPIO 5 is active: 0x10141b00
[   51.283128] GPIO 5 is active: 0x10141b00
[   51.384889] GPIO 5 is active: 0x10141b00
[   51.485749] GPIO 5 is active: 0x10141b00
[   51.587622] GPIO 5 is active: 0x10141b00
[   51.689525] GPIO 5 is active: 0x10141b00
[   51.791628] GPIO 5 is active: 0x10141b00
[   51.892376] GPIO 5 is active: 0x10141b00
[   51.999520] GPIO 5 is active: 0x10141b00
[   52.100057] GPIO 5 is active: 0x10141b00
[   52.201665] GPIO 5 is active: 0x10141b00
[   52.302662] GPIO 5 is active: 0x10141b00
[   52.404606] GPIO 5 is active: 0x10141b00
[   52.505226] GPIO 5 is active: 0x10141b00
[   52.606200] GPIO 5 is active: 0x10141b00
[   52.707947] GPIO 5 is active: 0x10141b00
[   52.809727] GPIO 5 is active: 0x10141b00
[   52.912639] GPIO 5 is active: 0x10141b00
[   53.019122] GPIO 5 is active: 0x10141b00
[   53.119661] GPIO 5 is active: 0x10141b00
[   53.222635] GPIO 5 is active: 0x10141b00
[   53.323246] GPIO 5 is active: 0x10141b00
[   53.426185] GPIO 5 is active: 0x10141b00
[   53.526885] GPIO 5 is active: 0x10141b00
[   53.628769] GPIO 5 is active: 0x10141b00
[   53.730336] GPIO 5 is active: 0x10141b00
[   53.832210] GPIO 5 is active: 0x10141b00
[   53.934241] GPIO 5 is active: 0x10141b00
[   54.039261] GPIO 5 is active: 0x10141b00
[   54.140396] GPIO 5 is active: 0x10141b00
[   54.242226] GPIO 5 is active: 0x10141b00
[   54.342947] GPIO 5 is active: 0x10141b00
[   54.445779] GPIO 5 is active: 0x10141b00
[   54.546457] GPIO 5 is active: 0x10141b00
[   54.648691] GPIO 5 is active: 0x10141b00
[   54.749193] GPIO 5 is active: 0x10141b00
[   54.850884] GPIO 5 is active: 0x10141b00
[   54.952328] GPIO 5 is active: 0x10141b00
[   55.070501] GPIO 5 is active: 0x10141b00
[   55.171695] GPIO 5 is active: 0x10141b00
[   55.273526] GPIO 5 is active: 0x10141b00
[   55.374428] GPIO 5 is active: 0x10141b00
[   55.477057] GPIO 5 is active: 0x10141b00
[   55.577668] GPIO 5 is active: 0x10141b00
[   55.679607] GPIO 5 is active: 0x10141b00
[   55.780352] GPIO 5 is active: 0x10141b00
[   55.881585] GPIO 5 is active: 0x10141b00
[   55.983065] GPIO 5 is active: 0x10141b00
[   56.095441] GPIO 5 is active: 0x10141b00
[   56.197270] GPIO 5 is active: 0x10141b00
[   56.299081] GPIO 5 is active: 0x10141b00
[   56.400042] GPIO 5 is active: 0x10141b00
[   56.502315] GPIO 5 is active: 0x10141b00
[   56.602810] GPIO 5 is active: 0x10141b00
[   56.705615] GPIO 5 is active: 0x10141b00
[   56.806458] GPIO 5 is active: 0x10141b00
[   56.907824] GPIO 5 is active: 0x10141b00
[   57.009563] GPIO 5 is active: 0x10141b00
[   57.122068] GPIO 5 is active: 0x10141b00
[   57.223143] GPIO 5 is active: 0x10141b00
[   57.325373] GPIO 5 is active: 0x10141b00
[   57.426523] GPIO 5 is active: 0x10141b00
[   57.528951] GPIO 5 is active: 0x10141b00
[   57.629339] GPIO 5 is active: 0x10141b00
[   57.732417] GPIO 5 is active: 0x10141b00
[   57.833344] GPIO 5 is active: 0x10141b00
[   57.934989] GPIO 5 is active: 0x10141b00
[   58.036081] GPIO 5 is active: 0x10141b00
[   58.152698] GPIO 5 is active: 0x10141b00
[   58.254475] GPIO 5 is active: 0x10141b00
[   58.357026] GPIO 5 is active: 0x10141b00
[   58.458278] GPIO 5 is active: 0x10141b00
[   58.560176] GPIO 5 is active: 0x10141b00
[   58.660748] GPIO 5 is active: 0x10141b00
[   58.763712] GPIO 5 is active: 0x10141b00
[   58.864215] GPIO 5 is active: 0x10141b00
[   58.966679] GPIO 5 is active: 0x10141b00
[   59.066890] GPIO 5 is active: 0x10141b00
[   59.187138] GPIO 5 is active: 0x10141b00
[   59.288624] GPIO 5 is active: 0x10141b00
[   59.389761] GPIO 5 is active: 0x10141b00
[   59.390025] GPIO 5 is active: 0x10141b00
[   59.491488] GPIO 5 is active: 0x10141b00
[   59.593452] GPIO 5 is active: 0x10141b00
[   59.694411] GPIO 5 is active: 0x10141b00
[   59.797127] GPIO 5 is active: 0x10141b00
[   59.898028] GPIO 5 is active: 0x10141b00
[   60.000487] GPIO 5 is active: 0x10141b00
[   60.100681] GPIO 5 is active: 0x10141b00
[   60.214798] GPIO 5 is active: 0x10141b00
[   60.315418] GPIO 5 is active: 0x10141b00
[   60.417285] GPIO 5 is active: 0x10141b00
[   60.519374] GPIO 5 is active: 0x10141b00
[   60.620816] GPIO 5 is active: 0x10141b00
[   60.722305] GPIO 5 is active: 0x10141b00
[   60.824404] GPIO 5 is active: 0x10141b00
[   60.925041] GPIO 5 is active: 0x10141b00
[   61.027449] GPIO 5 is active: 0x10141b00
[   61.128432] GPIO 5 is active: 0x10141b00
[   61.248951] GPIO 5 is active: 0x10141b00
[   61.349448] GPIO 5 is active: 0x10141b00
[   61.451970] GPIO 5 is active: 0x10141b00
[   61.553153] GPIO 5 is active: 0x10141b00
[   61.653618] GPIO 5 is active: 0x10141b00
[   61.755975] GPIO 5 is active: 0x10141b00
[   61.857650] GPIO 5 is active: 0x10141b00
[   61.958492] GPIO 5 is active: 0x10141b00

[-- Attachment #4: dmesg-xen-4.17.3-pre-6.6.7xen-irq-dbg-1+ --]
[-- Type: application/octet-stream, Size: 132018 bytes --]

[    0.000000] Linux version 6.6.7xen-irq-dbg-1+ (sch@fedora) (gcc (GCC) 13.2.1 20231205 (Red Hat 13.2.1-6), GNU ld version 2.40-13.fc39) #6 SMP PREEMPT_DYNAMIC Wed Dec 20 16:13:29 CET 2023
[    0.000000] Command line: placeholder root=UUID=71b1dc59-ea00-484c-b5e4-ee77ede771db ro "dyndbg=file drivers/gpio/* +p; file drivers/pinctrl/* +p; file arch/x86/pci/xen.c +p"
[    0.000000] [Firmware Bug]: TSC doesn't count with P0 frequency!
[    0.000000] initrd moved from [mem 0x08000000-0x15af4271] to [mem 0x1d795000-0x2b289271]
[    0.000000] Released 0 page(s)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] Xen: [mem 0x0000000000000000-0x000000000007ffff] usable
[    0.000000] Xen: [mem 0x0000000000080000-0x00000000000fffff] reserved
[    0.000000] Xen: [mem 0x0000000000100000-0x0000000009afffff] usable
[    0.000000] Xen: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
[    0.000000] Xen: [mem 0x0000000009e00000-0x0000000009efffff] usable
[    0.000000] Xen: [mem 0x0000000009f00000-0x0000000009f3bfff] ACPI NVS
[    0.000000] Xen: [mem 0x0000000009f3c000-0x000000004235ffff] usable
[    0.000000] Xen: [mem 0x0000000042360000-0x000000004455ffff] reserved
[    0.000000] Xen: [mem 0x0000000044560000-0x0000000044568fff] usable
[    0.000000] Xen: [mem 0x0000000044569000-0x000000004456cfff] reserved
[    0.000000] Xen: [mem 0x000000004456d000-0x000000004456efff] usable
[    0.000000] Xen: [mem 0x000000004456f000-0x000000004456ffff] reserved
[    0.000000] Xen: [mem 0x0000000044570000-0x000000005077efff] usable
[    0.000000] Xen: [mem 0x000000005077f000-0x0000000052f7efff] reserved
[    0.000000] Xen: [mem 0x0000000052f7f000-0x000000005af7efff] ACPI NVS
[    0.000000] Xen: [mem 0x000000005af7f000-0x000000005affefff] ACPI data
[    0.000000] Xen: [mem 0x000000005afff000-0x000000005affffff] usable
[    0.000000] Xen: [mem 0x000000005b000000-0x000000005bffffff] reserved
[    0.000000] Xen: [mem 0x000000005d790000-0x000000005d7effff] reserved
[    0.000000] Xen: [mem 0x000000005d7f5000-0x000000005fffffff] reserved
[    0.000000] Xen: [mem 0x00000000c0200000-0x00000000c0203fff] reserved
[    0.000000] Xen: [mem 0x00000000c0300000-0x00000000c03fffff] reserved
[    0.000000] Xen: [mem 0x00000000fec00000-0x00000000fec01fff] reserved
[    0.000000] Xen: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[    0.000000] Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] Xen: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] Xen: [mem 0x0000000100000000-0x000000107e2fffff] usable
[    0.000000] Xen: [mem 0x0000001080000000-0x00000010c01fffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.8 by INSYDE Corp.
[    0.000000] efi: ACPI=0x5affe000 ACPI 2.0=0x5affe014 SMBIOS=0x51677000 SMBIOS 3.0=0x51674000 (MEMATTR=0x4b714018 unusable) ESRT=0x5af9d018 MOKvar=0x5187c000 
[    0.000000] SMBIOS 3.5.0 present.
[    0.000000] DMI: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP07, BIOS 03.03 10/17/2023
[    0.000000] Hypervisor detected: Xen PV
[    0.026639] tsc: Fast TSC calibration using PIT
[    0.026640] tsc: Detected 3293.501 MHz processor
[    0.026640] tsc: Detected 3293.816 MHz TSC
[    0.026715] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.026717] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.026724] last_pfn = 0x107e300 max_arch_pfn = 0x400000000
[    0.026726] MTRR map: 3 entries (0 fixed + 3 variable; max 16), built from 8 variable MTRRs
[    0.026727] MTRRs set to read-only
[    0.026729] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP  UC  UC  
[    0.026730] last_pfn = 0x5b000 max_arch_pfn = 0x400000000
[    0.026747] esrt: Reserving ESRT space from 0x000000005af9d018 to 0x000000005af9d050.
[    1.019522] Secure boot disabled
[    1.019525] RAMDISK: [mem 0x1d795000-0x2b289fff]
[    1.019531] ACPI: Early table checksum verification disabled
[    1.019538] ACPI: RSDP 0x000000005AFFE014 000024 (v02 INSYDE)
[    1.019543] ACPI: XSDT 0x000000005AF9E228 00016C (v01 INSYDE EDK2     00000002      01000013)
[    1.019595] ACPI: FACP 0x000000005AFEF000 00010C (v05 INSYDE EDK2     00000002 ACPI 00040000)
[    1.019635] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20230628/tbfadt-615)
[    1.019641] ACPI: DSDT 0x000000005AFDF000 0093A6 (v02 INSYDE EDK2     00000002 ACPI 00040000)
[    1.019645] ACPI: FACS 0x000000005AEB7000 000040
[    1.019650] ACPI: UEFI 0x000000005AF67000 0001CF (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019654] ACPI: SSDT 0x000000005AFF4000 008416 (v02 INSYDE EDK2     00000002 ACPI 00040000)
[    1.019658] ACPI: SSDT 0x000000005AFF2000 000ABD (v02 INSYDE EDK2     00001000 ACPI 00040000)
[    1.019663] ACPI: ASF! 0x000000005AFF1000 0000A5 (v32 INSYDE EDK2     00000002 ACPI 00040000)
[    1.019667] ACPI: BOOT 0x000000005AFF0000 000028 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    1.019672] ACPI: HPET 0x000000005AFEE000 000038 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    1.019676] ACPI: APIC 0x000000005AFED000 000138 (v03 INSYDE EDK2     00000002 ACPI 00040000)
[    1.019680] ACPI: MCFG 0x000000005AFEC000 00003C (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    1.019685] ACPI: SLIC 0x000000005AFEB000 000176 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    1.019689] ACPI: VFCT 0x000000005AFDA000 004284 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019694] ACPI: SSDT 0x000000005AFD9000 0000F8 (v02 INSYDE EDK2     00001000 ACPI 00040000)
[    1.019698] ACPI: SSDT 0x000000005AFD3000 00547E (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019703] ACPI: CRAT 0x000000005AFD2000 000F10 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019707] ACPI: CDIT 0x000000005AFD1000 000029 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019711] ACPI: SSDT 0x000000005AFD0000 000F8D (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019716] ACPI: SSDT 0x000000005AFCF000 000EC1 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019720] ACPI: SSDT 0x000000005AFCE000 000931 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019725] ACPI: SSDT 0x000000005AFCB000 0013EC (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019729] ACPI: SSDT 0x000000005AFFD000 00077A (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019734] ACPI: SSDT 0x000000005AFCA000 000737 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019738] ACPI: SSDT 0x000000005AFC8000 0015C8 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019742] ACPI: SSDT 0x000000005AFC5000 002A8F (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019747] ACPI: SSDT 0x000000005AFBB000 009821 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019751] ACPI: FPDT 0x000000005AFBA000 000044 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    1.019755] ACPI: BGRT 0x000000005AFB9000 000038 (v01 INSYDE EDK2     00000002 ACPI 00040000)
[    1.019760] ACPI: WSMT 0x000000005AFB8000 000028 (v01 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019764] ACPI: MHSP 0x000000005AFEA000 0000C8 (v04 INSYDE EDK2     20505348 ACPI 00040000)
[    1.019768] ACPI: SSDT 0x000000005AFE9000 0000E5 (v02 INSYDE EDK2     00000004 ACPI 00040000)
[    1.019773] ACPI: IVRS 0x000000005AFB7000 0001A4 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019777] ACPI: SSDT 0x000000005AFB6000 000747 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019781] ACPI: SSDT 0x000000005AFB5000 000C88 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019786] ACPI: SSDT 0x000000005AFB4000 000057 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019790] ACPI: SSDT 0x000000005AFB2000 00170B (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019794] ACPI: SSDT 0x000000005AFB1000 000FF7 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019799] ACPI: SSDT 0x000000005AFA7000 0097E3 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019803] ACPI: SSDT 0x000000005AFA2000 004FEB (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019808] ACPI: SSDT 0x000000005AFA1000 000C7F (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019812] ACPI: SSDT 0x000000005AFA0000 000956 (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019816] ACPI: SSDT 0x000000005AF9F000 00008D (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019821] ACPI: SSDT 0x000000005AFCD000 000EAD (v02 INSYDE EDK2     00000001 ACPI 00040000)
[    1.019823] ACPI: Reserving FACP table memory at [mem 0x5afef000-0x5afef10b]
[    1.019823] ACPI: Reserving DSDT table memory at [mem 0x5afdf000-0x5afe83a5]
[    1.019824] ACPI: Reserving FACS table memory at [mem 0x5aeb7000-0x5aeb703f]
[    1.019824] ACPI: Reserving UEFI table memory at [mem 0x5af67000-0x5af671ce]
[    1.019825] ACPI: Reserving SSDT table memory at [mem 0x5aff4000-0x5affc415]
[    1.019825] ACPI: Reserving SSDT table memory at [mem 0x5aff2000-0x5aff2abc]
[    1.019826] ACPI: Reserving ASF! table memory at [mem 0x5aff1000-0x5aff10a4]
[    1.019826] ACPI: Reserving BOOT table memory at [mem 0x5aff0000-0x5aff0027]
[    1.019827] ACPI: Reserving HPET table memory at [mem 0x5afee000-0x5afee037]
[    1.019827] ACPI: Reserving APIC table memory at [mem 0x5afed000-0x5afed137]
[    1.019828] ACPI: Reserving MCFG table memory at [mem 0x5afec000-0x5afec03b]
[    1.019828] ACPI: Reserving SLIC table memory at [mem 0x5afeb000-0x5afeb175]
[    1.019828] ACPI: Reserving VFCT table memory at [mem 0x5afda000-0x5afde283]
[    1.019829] ACPI: Reserving SSDT table memory at [mem 0x5afd9000-0x5afd90f7]
[    1.019829] ACPI: Reserving SSDT table memory at [mem 0x5afd3000-0x5afd847d]
[    1.019830] ACPI: Reserving CRAT table memory at [mem 0x5afd2000-0x5afd2f0f]
[    1.019830] ACPI: Reserving CDIT table memory at [mem 0x5afd1000-0x5afd1028]
[    1.019831] ACPI: Reserving SSDT table memory at [mem 0x5afd0000-0x5afd0f8c]
[    1.019831] ACPI: Reserving SSDT table memory at [mem 0x5afcf000-0x5afcfec0]
[    1.019832] ACPI: Reserving SSDT table memory at [mem 0x5afce000-0x5afce930]
[    1.019832] ACPI: Reserving SSDT table memory at [mem 0x5afcb000-0x5afcc3eb]
[    1.019832] ACPI: Reserving SSDT table memory at [mem 0x5affd000-0x5affd779]
[    1.019833] ACPI: Reserving SSDT table memory at [mem 0x5afca000-0x5afca736]
[    1.019833] ACPI: Reserving SSDT table memory at [mem 0x5afc8000-0x5afc95c7]
[    1.019834] ACPI: Reserving SSDT table memory at [mem 0x5afc5000-0x5afc7a8e]
[    1.019834] ACPI: Reserving SSDT table memory at [mem 0x5afbb000-0x5afc4820]
[    1.019835] ACPI: Reserving FPDT table memory at [mem 0x5afba000-0x5afba043]
[    1.019835] ACPI: Reserving BGRT table memory at [mem 0x5afb9000-0x5afb9037]
[    1.019836] ACPI: Reserving WSMT table memory at [mem 0x5afb8000-0x5afb8027]
[    1.019836] ACPI: Reserving MHSP table memory at [mem 0x5afea000-0x5afea0c7]
[    1.019836] ACPI: Reserving SSDT table memory at [mem 0x5afe9000-0x5afe90e4]
[    1.019837] ACPI: Reserving IVRS table memory at [mem 0x5afb7000-0x5afb71a3]
[    1.019837] ACPI: Reserving SSDT table memory at [mem 0x5afb6000-0x5afb6746]
[    1.019838] ACPI: Reserving SSDT table memory at [mem 0x5afb5000-0x5afb5c87]
[    1.019838] ACPI: Reserving SSDT table memory at [mem 0x5afb4000-0x5afb4056]
[    1.019839] ACPI: Reserving SSDT table memory at [mem 0x5afb2000-0x5afb370a]
[    1.019839] ACPI: Reserving SSDT table memory at [mem 0x5afb1000-0x5afb1ff6]
[    1.019840] ACPI: Reserving SSDT table memory at [mem 0x5afa7000-0x5afb07e2]
[    1.019840] ACPI: Reserving SSDT table memory at [mem 0x5afa2000-0x5afa6fea]
[    1.019841] ACPI: Reserving SSDT table memory at [mem 0x5afa1000-0x5afa1c7e]
[    1.019841] ACPI: Reserving SSDT table memory at [mem 0x5afa0000-0x5afa0955]
[    1.019841] ACPI: Reserving SSDT table memory at [mem 0x5af9f000-0x5af9f08c]
[    1.019842] ACPI: Reserving SSDT table memory at [mem 0x5afcd000-0x5afcdeac]
[    1.019908] APIC: Switched APIC routing to: Xen PV
[    1.106226] Zone ranges:
[    1.106228]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    1.106229]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    1.106230]   Normal   [mem 0x0000000100000000-0x000000107e2fffff]
[    1.106231]   Device   empty
[    1.106232] Movable zone start for each node
[    1.106233] Early memory node ranges
[    1.106233]   node   0: [mem 0x0000000000001000-0x000000000007ffff]
[    1.106234]   node   0: [mem 0x0000000000100000-0x0000000009afffff]
[    1.106235]   node   0: [mem 0x0000000009e00000-0x0000000009efffff]
[    1.106235]   node   0: [mem 0x0000000009f3c000-0x000000004235ffff]
[    1.106236]   node   0: [mem 0x0000000044560000-0x0000000044568fff]
[    1.106236]   node   0: [mem 0x000000004456d000-0x000000004456efff]
[    1.106237]   node   0: [mem 0x0000000044570000-0x000000005077efff]
[    1.106237]   node   0: [mem 0x000000005afff000-0x000000005affffff]
[    1.106237]   node   0: [mem 0x0000000100000000-0x000000107e2fffff]
[    1.106241] Initmem setup node 0 [mem 0x0000000000001000-0x000000107e2fffff]
[    1.106246] On node 0, zone DMA: 1 pages in unavailable ranges
[    1.106259] On node 0, zone DMA: 128 pages in unavailable ranges
[    1.106358] On node 0, zone DMA32: 768 pages in unavailable ranges
[    1.106970] On node 0, zone DMA32: 60 pages in unavailable ranges
[    1.106997] On node 0, zone DMA32: 8704 pages in unavailable ranges
[    1.106998] On node 0, zone DMA32: 4 pages in unavailable ranges
[    1.107139] On node 0, zone DMA32: 1 pages in unavailable ranges
[    1.107264] On node 0, zone DMA32: 43136 pages in unavailable ranges
[    1.143155] On node 0, zone Normal: 20480 pages in unavailable ranges
[    1.143177] On node 0, zone Normal: 7424 pages in unavailable ranges
[    1.143179] p2m virtual area at (____ptrval____), size is 40000000
[    1.453003] Remapped 728641 page(s)
[    1.453502] ACPI: PM-Timer IO Port: 0x408
[    1.453552] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    1.453554] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    1.453556] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    1.453557] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    1.453559] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    1.453560] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    1.453561] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    1.453563] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    1.453564] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    1.453565] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    1.453567] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    1.453568] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    1.453569] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    1.453571] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    1.453572] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    1.453573] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    1.453602] IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
[    1.453609] IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
[    1.453620] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    1.453622] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    1.453648] ACPI: Using ACPI (MADT) for SMP configuration information
[    1.453650] ACPI: HPET id: 0x10228210 base: 0xfed00000
[    1.454105] smpboot: Allowing 16 CPUs, 0 hotplug CPUs
[    1.454121] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.454123] PM: hibernation: Registered nosave memory: [mem 0x00080000-0x000fffff]
[    1.454124] PM: hibernation: Registered nosave memory: [mem 0x09b00000-0x09dfffff]
[    1.454125] PM: hibernation: Registered nosave memory: [mem 0x09f00000-0x09f3bfff]
[    1.454126] PM: hibernation: Registered nosave memory: [mem 0x42360000-0x4455ffff]
[    1.454127] PM: hibernation: Registered nosave memory: [mem 0x44569000-0x4456cfff]
[    1.454128] PM: hibernation: Registered nosave memory: [mem 0x4456f000-0x4456ffff]
[    1.454129] PM: hibernation: Registered nosave memory: [mem 0x5077f000-0x52f7efff]
[    1.454129] PM: hibernation: Registered nosave memory: [mem 0x52f7f000-0x5af7efff]
[    1.454129] PM: hibernation: Registered nosave memory: [mem 0x5af7f000-0x5affefff]
[    1.454130] PM: hibernation: Registered nosave memory: [mem 0x5b000000-0x5bffffff]
[    1.454131] PM: hibernation: Registered nosave memory: [mem 0x5c000000-0x5d78ffff]
[    1.454131] PM: hibernation: Registered nosave memory: [mem 0x5d790000-0x5d7effff]
[    1.454132] PM: hibernation: Registered nosave memory: [mem 0x5d7f0000-0x5d7f4fff]
[    1.454132] PM: hibernation: Registered nosave memory: [mem 0x5d7f5000-0x5fffffff]
[    1.454133] PM: hibernation: Registered nosave memory: [mem 0x60000000-0xc01fffff]
[    1.454133] PM: hibernation: Registered nosave memory: [mem 0xc0200000-0xc0203fff]
[    1.454133] PM: hibernation: Registered nosave memory: [mem 0xc0204000-0xc02fffff]
[    1.454134] PM: hibernation: Registered nosave memory: [mem 0xc0300000-0xc03fffff]
[    1.454134] PM: hibernation: Registered nosave memory: [mem 0xc0400000-0xfebfffff]
[    1.454135] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec01fff]
[    1.454135] PM: hibernation: Registered nosave memory: [mem 0xfec02000-0xfed7ffff]
[    1.454135] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed80fff]
[    1.454136] PM: hibernation: Registered nosave memory: [mem 0xfed81000-0xfedfffff]
[    1.454136] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
[    1.454137] PM: hibernation: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[    1.454137] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    1.454138] [mem 0x60000000-0xc01fffff] available for PCI devices
[    1.454140] Booting kernel on Xen
[    1.454141] Xen version: 4.17.3-pre (preserve-AD)
[    1.454143] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    1.457783] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[    1.458074] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
[    1.458078] pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
[    1.458080] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    1.458119] xen: PV spinlocks enabled
[    1.458120] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    1.458122] Kernel command line: placeholder root=UUID=71b1dc59-ea00-484c-b5e4-ee77ede771db ro "dyndbg=file drivers/gpio/* +p; file drivers/pinctrl/* +p; file arch/x86/pci/xen.c +p"
[    1.458165] Unknown kernel command line parameters "placeholder", will be passed to user space.
[    1.458374] random: crng init done
[    1.461263] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[    1.462766] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    1.462975] Built 1 zonelists, mobility grouping on.  Total pages: 16306586
[    1.463087] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[    1.463090] software IO TLB: area num 16.
[    1.549382] Memory: 63582808K/66261752K available (18432K kernel code, 3168K rwdata, 14456K rodata, 3944K init, 3704K bss, 2678692K reserved, 0K cma-reserved)
[    1.549636] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    1.549958] ftrace: allocating 53307 entries in 209 pages
[    1.556926] ftrace: allocated 209 pages with 4 groups
[    1.557498] Dynamic Preempt: voluntary
[    1.557592] rcu: Preemptible hierarchical RCU implementation.
[    1.557593] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[    1.557593] 	Trampoline variant of Tasks RCU enabled.
[    1.557594] 	Rude variant of Tasks RCU enabled.
[    1.557594] 	Tracing variant of Tasks RCU enabled.
[    1.557595] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    1.557595] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[    1.560692] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    1.560760] xen:events: Using FIFO-based ABI
[    1.560762] xen_register_pirq: before xen_irq_from_gsi: gsi 1 triggering 1 set_pirq 1
[    1.560766] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 1 triggering 1 shareable 0 name ioapic-edge
[    1.560770] xen_register_pirq: xen: --> pirq=1 -> irq=1 (gsi=1)
[    1.560771] xen_register_pirq: before xen_irq_from_gsi: gsi 2 triggering 1 set_pirq 1
[    1.560771] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 2 triggering 1 shareable 0 name ioapic-edge
[    1.560773] xen_register_pirq: xen: --> pirq=2 -> irq=2 (gsi=2)
[    1.560773] xen_register_pirq: before xen_irq_from_gsi: gsi 3 triggering 1 set_pirq 1
[    1.560774] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 3 triggering 1 shareable 0 name ioapic-edge
[    1.560775] xen_register_pirq: xen: --> pirq=3 -> irq=3 (gsi=3)
[    1.560776] xen_register_pirq: before xen_irq_from_gsi: gsi 4 triggering 1 set_pirq 1
[    1.560777] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 4 triggering 1 shareable 0 name ioapic-edge
[    1.560778] xen_register_pirq: xen: --> pirq=4 -> irq=4 (gsi=4)
[    1.560778] xen_register_pirq: before xen_irq_from_gsi: gsi 5 triggering 1 set_pirq 1
[    1.560779] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 5 triggering 1 shareable 0 name ioapic-edge
[    1.560780] xen_register_pirq: xen: --> pirq=5 -> irq=5 (gsi=5)
[    1.560780] xen_register_pirq: before xen_irq_from_gsi: gsi 6 triggering 1 set_pirq 1
[    1.560781] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 6 triggering 1 shareable 0 name ioapic-edge
[    1.560782] xen_register_pirq: xen: --> pirq=6 -> irq=6 (gsi=6)
[    1.560783] xen_register_pirq: before xen_irq_from_gsi: gsi 7 triggering 1 set_pirq 1
[    1.560784] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 7 triggering 1 shareable 0 name ioapic-edge
[    1.560785] xen_register_pirq: xen: --> pirq=7 -> irq=7 (gsi=7)
[    1.560785] xen_register_pirq: before xen_irq_from_gsi: gsi 8 triggering 1 set_pirq 1
[    1.560786] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 8 triggering 1 shareable 0 name ioapic-edge
[    1.560787] xen_register_pirq: xen: --> pirq=8 -> irq=8 (gsi=8)
[    1.560788] xen_register_pirq: before xen_irq_from_gsi: gsi 9 triggering 0 set_pirq 1
[    1.560789] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 9 triggering 0 shareable 1 name ioapic-level
[    1.560790] xen_register_pirq: xen: --> pirq=9 -> irq=9 (gsi=9)
[    1.560790] xen_register_pirq: before xen_irq_from_gsi: gsi 10 triggering 1 set_pirq 1
[    1.560791] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 10 triggering 1 shareable 0 name ioapic-edge
[    1.560792] xen_register_pirq: xen: --> pirq=10 -> irq=10 (gsi=10)
[    1.560793] xen_register_pirq: before xen_irq_from_gsi: gsi 11 triggering 1 set_pirq 1
[    1.560794] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 11 triggering 1 shareable 0 name ioapic-edge
[    1.560795] xen_register_pirq: xen: --> pirq=11 -> irq=11 (gsi=11)
[    1.560795] xen_register_pirq: before xen_irq_from_gsi: gsi 12 triggering 1 set_pirq 1
[    1.560796] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 12 triggering 1 shareable 0 name ioapic-edge
[    1.560797] xen_register_pirq: xen: --> pirq=12 -> irq=12 (gsi=12)
[    1.560798] xen_register_pirq: before xen_irq_from_gsi: gsi 13 triggering 1 set_pirq 1
[    1.560798] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 13 triggering 1 shareable 0 name ioapic-edge
[    1.560800] xen_register_pirq: xen: --> pirq=13 -> irq=13 (gsi=13)
[    1.560800] xen_register_pirq: before xen_irq_from_gsi: gsi 14 triggering 1 set_pirq 1
[    1.560801] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 14 triggering 1 shareable 0 name ioapic-edge
[    1.560802] xen_register_pirq: xen: --> pirq=14 -> irq=14 (gsi=14)
[    1.560802] xen_register_pirq: before xen_irq_from_gsi: gsi 15 triggering 1 set_pirq 1
[    1.560803] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 15 triggering 1 shareable 0 name ioapic-edge
[    1.560805] xen_register_pirq: xen: --> pirq=15 -> irq=15 (gsi=15)
[    1.560810] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.561038] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    1.561072] Console: colour dummy device 80x25
[    1.561074] printk: console [tty0] enabled
[    1.561359] printk: console [hvc0] enabled
[    1.561645] ACPI: Core revision 20230628
[    1.585170] ACPI BIOS Warning (bug): Incorrect checksum in table [BGRT] - 0x70, should be 0xFFFFFFFB (20230628/utcksum-58)
[    1.595525] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    1.595531] Xen: using vcpuop timer interface
[    1.595532] installing Xen timer for CPU 0
[    1.595611] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2f7a7a7f221, max_idle_ns: 440795289726 ns
[    1.595616] Calibrating delay loop (skipped), value calculated using timer frequency.. 6587.63 BogoMIPS (lpj=3293816)
[    1.595648] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    1.595650] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    1.595655] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.595659] Spectre V2 : Mitigation: Retpolines
[    1.595661] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    1.595664] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    1.595667] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    1.595670] Speculative Store Bypass: Vulnerable
[    1.595673] Speculative Return Stack Overflow: IBPB-extending microcode not applied!
[    1.595675] Speculative Return Stack Overflow: WARNING: See https://kernel.org/doc/html/latest/admin-guide/hw-vuln/srso.html for mitigation options.
[    1.595676] Speculative Return Stack Overflow: Vulnerable: Safe RET, no microcode
[    1.595691] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.595694] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.595696] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.595699] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    1.595701] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    1.595703] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    1.595706] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.595708] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    1.595711] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    1.595713] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    1.595715] x86/fpu: Enabled xstate features 0xe7, context size is 2432 bytes, using 'compacted' format.
[    1.606999] Freeing SMP alternatives memory: 48K
[    1.607008] pid_max: default: 32768 minimum: 301
[    1.607061] LSM: initializing lsm=lockdown,capability,yama,selinux,bpf,landlock,integrity
[    1.607087] Yama: becoming mindful.
[    1.607092] SELinux:  Initializing.
[    1.607147] LSM support for eBPF active
[    1.607152] landlock: Up and running.
[    1.607209] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.607255] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.607673] cpu 0 spinlock event irq 57
[    1.607686] VPMU disabled by hypervisor.
[    1.607924] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    1.607959] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    1.607985] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    1.608011] Performance Events: PMU not available due to virtualization, using software events only.
[    1.608022] signal: max sigframe size: 3376
[    1.608055] rcu: Hierarchical SRCU implementation.
[    1.608059] rcu: 	Max phase no-delay instances is 400.
[    1.612802] NMI watchdog: Perf NMI watchdog permanently disabled
[    1.613162] smp: Bringing up secondary CPUs ...
[    1.613408] installing Xen timer for CPU 1
[    1.613763] installing Xen timer for CPU 2
[    1.613967] installing Xen timer for CPU 3
[    1.614163] installing Xen timer for CPU 4
[    1.614356] installing Xen timer for CPU 5
[    1.614545] installing Xen timer for CPU 6
[    1.614743] installing Xen timer for CPU 7
[    1.614931] installing Xen timer for CPU 8
[    1.615101] installing Xen timer for CPU 9
[    1.615265] installing Xen timer for CPU 10
[    1.615434] installing Xen timer for CPU 11
[    1.615608] installing Xen timer for CPU 12
[    1.615798] installing Xen timer for CPU 13
[    1.615973] installing Xen timer for CPU 14
[    1.616148] installing Xen timer for CPU 15
[    1.616198] cpu 1 spinlock event irq 137
[    1.616198] cpu 2 spinlock event irq 138
[    1.616198] cpu 3 spinlock event irq 139
[    1.616628] cpu 4 spinlock event irq 140
[    1.616673] cpu 5 spinlock event irq 141
[    1.616682] cpu 6 spinlock event irq 142
[    1.616682] cpu 7 spinlock event irq 143
[    1.616682] cpu 8 spinlock event irq 144
[    1.616682] cpu 9 spinlock event irq 145
[    1.616682] cpu 10 spinlock event irq 146
[    1.616682] cpu 11 spinlock event irq 147
[    1.616682] cpu 12 spinlock event irq 148
[    1.616682] cpu 13 spinlock event irq 149
[    1.617665] cpu 14 spinlock event irq 150
[    1.617672] cpu 15 spinlock event irq 151
[    1.617719] smp: Brought up 1 node, 16 CPUs
[    1.617724] smpboot: Max logical packages: 1
[    1.618894] devtmpfs: initialized
[    1.618894] x86/mm: Memory block size: 128MB
[    1.623794] ACPI: PM: Registering ACPI NVS region [mem 0x09f00000-0x09f3bfff] (245760 bytes)
[    1.623794] ACPI: PM: Registering ACPI NVS region [mem 0x52f7f000-0x5af7efff] (134217728 bytes)
[    1.625907] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    1.625917] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    1.626001] pinctrl core: initialized pinctrl subsystem
[    1.626141] PM: RTC time: 16:20:49, date: 2023-12-20
[    1.627064] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    1.627088] xen:grant_table: Grant tables using version 1 layout
[    1.627102] Grant table initialized
[    1.627541] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    1.627550] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.627558] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    1.627582] audit: initializing netlink subsys (disabled)
[    1.627624] audit: type=2000 audit(1703089248.098:1): state=initialized audit_enabled=0 res=1
[    1.627686] thermal_sys: Registered thermal governor 'fair_share'
[    1.627686] thermal_sys: Registered thermal governor 'bang_bang'
[    1.627692] thermal_sys: Registered thermal governor 'step_wise'
[    1.627696] thermal_sys: Registered thermal governor 'user_space'
[    1.627748] Simple Boot Flag at 0x44 set to 0x80
[    1.627748] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.627925] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    1.627935] PCI: not using MMCONFIG
[    1.627941] PCI: Using configuration type 1 for base access
[    1.627946] PCI: Using configuration type 1 for extended access
[    1.629143] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    1.633735] cryptd: max_cpu_qlen set to 1000
[    1.634693] raid6: skipped pq benchmark and selected avx512x4
[    1.634707] raid6: using avx512x2 recovery algorithm
[    1.634806] fbcon: Taking over console
[    1.634866] ACPI: Added _OSI(Module Device)
[    1.634877] ACPI: Added _OSI(Processor Device)
[    1.634886] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.634896] ACPI: Added _OSI(Processor Aggregator Device)
[    1.666629] ACPI: 26 ACPI AML tables successfully acquired and loaded
[    1.668915] xen_register_gsi: xen: registering gsi 9 triggering 0 polarity 1
[    1.668917] xen_register_pirq: before xen_irq_from_gsi: gsi 9 triggering 0 set_pirq 1
[    1.668919] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 9, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.695059] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[    1.695067] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[    1.695189] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[    1.695979] ACPI: EC: EC started
[    1.695983] ACPI: EC: interrupt blocked
[    1.696129] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    1.696135] ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC used to handle transactions
[    1.696141] ACPI: Interpreter enabled
[    1.696158] ACPI: PM: (supports S0 S4 S5)
[    1.696163] ACPI: Using IOAPIC for interrupt routing
[    1.698529] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    1.704810] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] not reserved in ACPI motherboard resources
[    1.704819] PCI: not using MMCONFIG
[    1.704825] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.704832] PCI: Ignoring E820 reservations for host bridge windows
[    1.705439] ACPI: Enabled 3 GPEs in block 00 to 1F
[    1.709862] ACPI: \_SB_.PCI0.GPP8.P0NV: New power resource
[    1.713149] ACPI: \_SB_.PCI0.GP11.PWRS: New power resource
[    1.715479] ACPI: \_SB_.PCI0.GP11.SWUS.PWRS: New power resource
[    1.717897] ACPI: \_SB_.PCI0.GP12.PWRS: New power resource
[    1.720247] ACPI: \_SB_.PCI0.GP12.SWUS.PWRS: New power resource
[    1.720710] ACPI: \_SB_.PCI0.GP17.PWRS: New power resource
[    1.721175] ACPI: \_SB_.PCI0.GP17.VGA_.PWRS: New power resource
[    1.721763] ACPI: \_SB_.PCI0.GP17.ACP_.PWRS: New power resource
[    1.722857] ACPI: \_SB_.PCI0.GP17.AZAL.PWRS: New power resource
[    1.723687] ACPI: \_SB_.PCI0.GP17.HDAU.PWRS: New power resource
[    1.724407] ACPI: \_SB_.PCI0.GP17.XHC0.PWRS: New power resource
[    1.729407] ACPI: \_SB_.PCI0.GP17.XHC1.PWRS: New power resource
[    1.732466] ACPI: \_SB_.PCI0.GP19.XHC2.PWRS: New power resource
[    1.735011] ACPI: \_SB_.PCI0.GP19.NHI0.PWRS: New power resource
[    1.736491] ACPI: \_SB_.PCI0.GP19.XHC3.PWRS: New power resource
[    1.739118] ACPI: \_SB_.PCI0.GP19.NHI1.PWRS: New power resource
[    1.740591] ACPI: \_SB_.PCI0.GP19.XHC4.PWRS: New power resource
[    1.751261] ACPI: \_SB_.PRWL: New power resource
[    1.751301] ACPI: \_SB_.PRWB: New power resource
[    1.752938] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    1.752948] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.753273] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER]
[    1.753889] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR DPC]
[    1.754646] PCI host bridge to bus 0000:00
[    1.754651] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    1.754657] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    1.754663] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.754669] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000cffff window]
[    1.754676] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000effff window]
[    1.754682] pci_bus 0000:00: root bus resource [mem 0x60000000-0x90bfffff window]
[    1.754687] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfec00000 window]
[    1.754695] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfed814ff window]
[    1.754701] pci_bus 0000:00: root bus resource [mem 0xfed81900-0xfed81fff window]
[    1.754706] pci_bus 0000:00: root bus resource [mem 0xfedc0000-0xfedc0fff window]
[    1.754712] pci_bus 0000:00: root bus resource [mem 0xfedc6000-0xfedc6fff window]
[    1.754718] pci_bus 0000:00: root bus resource [mem 0x10c0200000-0x891fffffff window]
[    1.754724] pci_bus 0000:00: root bus resource [bus 00-ff]
[    1.754766] pci 0000:00:00.0: [1022:14e8] type 00 class 0x060000
[    1.754884] pci 0000:00:00.2: [1022:14e9] type 00 class 0x080600
[    1.755044] pci 0000:00:01.0: [1022:14ea] type 00 class 0x060000
[    1.755165] pci 0000:00:02.0: [1022:14ea] type 00 class 0x060000
[    1.755287] pci 0000:00:02.2: [1022:14ee] type 01 class 0x060400
[    1.755401] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    1.755549] pci 0000:00:02.4: [1022:14ee] type 01 class 0x060400
[    1.755664] pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
[    1.755788] pci 0000:00:03.0: [1022:14ea] type 00 class 0x060000
[    1.755914] pci 0000:00:03.1: [1022:14ef] type 01 class 0x060400
[    1.756509] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    1.758315] pci 0000:00:04.0: [1022:14ea] type 00 class 0x060000
[    1.758439] pci 0000:00:04.1: [1022:14ef] type 01 class 0x060400
[    1.759031] pci 0000:00:04.1: PME# supported from D0 D3hot D3cold
[    1.760826] pci 0000:00:08.0: [1022:14ea] type 00 class 0x060000
[    1.760938] pci 0000:00:08.1: [1022:14eb] type 01 class 0x060400
[    1.760992] pci 0000:00:08.1: enabling Extended Tags
[    1.761045] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    1.761206] pci 0000:00:08.2: [1022:14eb] type 01 class 0x060400
[    1.761290] pci 0000:00:08.2: enabling Extended Tags
[    1.761342] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
[    1.761459] pci 0000:00:08.3: [1022:14eb] type 01 class 0x060400
[    1.761510] pci 0000:00:08.3: enabling Extended Tags
[    1.761565] pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
[    1.761934] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    1.762134] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    1.762368] pci 0000:00:18.0: [1022:14f0] type 00 class 0x060000
[    1.762452] pci 0000:00:18.1: [1022:14f1] type 00 class 0x060000
[    1.762536] pci 0000:00:18.2: [1022:14f2] type 00 class 0x060000
[    1.762620] pci 0000:00:18.3: [1022:14f3] type 00 class 0x060000
[    1.762704] pci 0000:00:18.4: [1022:14f4] type 00 class 0x060000
[    1.762790] pci 0000:00:18.5: [1022:14f5] type 00 class 0x060000
[    1.762873] pci 0000:00:18.6: [1022:14f6] type 00 class 0x060000
[    1.762959] pci 0000:00:18.7: [1022:14f7] type 00 class 0x060000
[    1.763167] pci 0000:01:00.0: [14c3:0616] type 00 class 0x028000
[    1.763200] pci 0000:01:00.0: reg 0x10: [mem 0x8810900000-0x88109fffff 64bit pref]
[    1.763224] pci 0000:01:00.0: reg 0x18: [mem 0x90b00000-0x90b07fff 64bit]
[    1.763334] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    1.763464] pci 0000:00:02.2: PCI bridge to [bus 01]
[    1.763476] pci 0000:00:02.2:   bridge window [mem 0x90b00000-0x90bfffff]
[    1.763487] pci 0000:00:02.2:   bridge window [mem 0x8810900000-0x88109fffff 64bit pref]
[    1.763662] pci 0000:02:00.0: [15b7:5030] type 00 class 0x010802
[    1.763693] pci 0000:02:00.0: reg 0x10: [mem 0x90a00000-0x90a03fff 64bit]
[    1.763935] pci 0000:00:02.4: PCI bridge to [bus 02]
[    1.763947] pci 0000:00:02.4:   bridge window [mem 0x90a00000-0x90afffff]
[    1.764107] pci 0000:00:03.1: PCI bridge to [bus 03-61]
[    1.764118] pci 0000:00:03.1:   bridge window [io  0x6000-0x9fff]
[    1.764126] pci 0000:00:03.1:   bridge window [mem 0x78000000-0x8fffffff]
[    1.764138] pci 0000:00:03.1:   bridge window [mem 0x7800000000-0x87ffffffff 64bit pref]
[    1.764296] pci 0000:00:04.1: PCI bridge to [bus 62-c0]
[    1.764308] pci 0000:00:04.1:   bridge window [io  0x2000-0x5fff]
[    1.764316] pci 0000:00:04.1:   bridge window [mem 0x60000000-0x77ffffff]
[    1.764328] pci 0000:00:04.1:   bridge window [mem 0x6800000000-0x77ffffffff 64bit pref]
[    1.764495] pci 0000:c1:00.0: [1002:15bf] type 00 class 0x030000
[    1.764522] pci 0000:c1:00.0: reg 0x10: [mem 0x8800000000-0x880fffffff 64bit pref]
[    1.764542] pci 0000:c1:00.0: reg 0x18: [mem 0x90000000-0x901fffff 64bit pref]
[    1.764557] pci 0000:c1:00.0: reg 0x20: [io  0x1000-0x10ff]
[    1.764571] pci 0000:c1:00.0: reg 0x24: [mem 0x90500000-0x9057ffff]
[    1.764593] pci 0000:c1:00.0: enabling Extended Tags
[    1.764617] pci 0000:c1:00.0: BAR 0: assigned to efifb
[    1.764673] pci 0000:c1:00.0: PME# supported from D1 D2 D3hot D3cold
[    1.764830] pci 0000:c1:00.1: [1002:1640] type 00 class 0x040300
[    1.764849] pci 0000:c1:00.1: reg 0x10: [mem 0x905c8000-0x905cbfff]
[    1.764899] pci 0000:c1:00.1: enabling Extended Tags
[    1.764958] pci 0000:c1:00.1: PME# supported from D1 D2 D3hot D3cold
[    1.765088] pci 0000:c1:00.2: [1022:15c7] type 00 class 0x108000
[    1.765120] pci 0000:c1:00.2: reg 0x18: [mem 0x90400000-0x904fffff]
[    1.765144] pci 0000:c1:00.2: reg 0x24: [mem 0x905cc000-0x905cdfff]
[    1.765163] pci 0000:c1:00.2: enabling Extended Tags
[    1.765353] pci 0000:c1:00.3: [1022:15b9] type 00 class 0x0c0330
[    1.765380] pci 0000:c1:00.3: reg 0x10: [mem 0x90200000-0x902fffff 64bit]
[    1.765437] pci 0000:c1:00.3: enabling Extended Tags
[    1.765510] pci 0000:c1:00.3: PME# supported from D0 D3hot D3cold
[    1.766086] pci 0000:c1:00.4: [1022:15ba] type 00 class 0x0c0330
[    1.766113] pci 0000:c1:00.4: reg 0x10: [mem 0x90300000-0x903fffff 64bit]
[    1.766173] pci 0000:c1:00.4: enabling Extended Tags
[    1.766244] pci 0000:c1:00.4: PME# supported from D0 D3hot D3cold
[    1.766804] pci 0000:c1:00.5: [1022:15e2] type 00 class 0x048000
[    1.766825] pci 0000:c1:00.5: reg 0x10: [mem 0x90580000-0x905bffff]
[    1.766848] pci 0000:c1:00.5: reg 0x18: [mem 0x8810000000-0x88107fffff 64bit pref]
[    1.766880] pci 0000:c1:00.5: enabling Extended Tags
[    1.766939] pci 0000:c1:00.5: PME# supported from D0 D3hot D3cold
[    1.767078] pci 0000:c1:00.6: [1022:15e3] type 00 class 0x040300
[    1.767097] pci 0000:c1:00.6: reg 0x10: [mem 0x905c0000-0x905c7fff]
[    1.767147] pci 0000:c1:00.6: enabling Extended Tags
[    1.767206] pci 0000:c1:00.6: PME# supported from D0 D3hot D3cold
[    1.767407] pci 0000:00:08.1: PCI bridge to [bus c1]
[    1.767417] pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
[    1.767424] pci 0000:00:08.1:   bridge window [mem 0x90000000-0x905fffff]
[    1.767434] pci 0000:00:08.1:   bridge window [mem 0x8800000000-0x88107fffff 64bit pref]
[    1.767532] pci 0000:c2:00.0: [1022:14ec] type 00 class 0x130000
[    1.767597] pci 0000:c2:00.0: enabling Extended Tags
[    1.767660] pci 0000:c2:00.0: PME# supported from D3hot D3cold
[    1.767769] pci 0000:c2:00.1: [1022:1502] type 00 class 0x118000
[    1.767796] pci 0000:c2:00.1: reg 0x10: [mem 0x90900000-0x9097ffff]
[    1.767808] pci 0000:c2:00.1: reg 0x14: [mem 0x909c0000-0x909c1fff]
[    1.767824] pci 0000:c2:00.1: reg 0x18: [mem 0x8810800000-0x881083ffff 64bit pref]
[    1.767837] pci 0000:c2:00.1: reg 0x20: [mem 0x90980000-0x909bffff]
[    1.767862] pci 0000:c2:00.1: enabling Extended Tags
[    1.768066] pci 0000:00:08.2: PCI bridge to [bus c2]
[    1.768077] pci 0000:00:08.2:   bridge window [mem 0x90900000-0x909fffff]
[    1.768088] pci 0000:00:08.2:   bridge window [mem 0x8810800000-0x88108fffff 64bit pref]
[    1.768218] pci 0000:c3:00.0: [1022:14ec] type 00 class 0x130000
[    1.768280] pci 0000:c3:00.0: enabling Extended Tags
[    1.768885] pci 0000:c3:00.3: [1022:15c0] type 00 class 0x0c0330
[    1.768912] pci 0000:c3:00.3: reg 0x10: [mem 0x90600000-0x906fffff 64bit]
[    1.768969] pci 0000:c3:00.3: enabling Extended Tags
[    1.769042] pci 0000:c3:00.3: PME# supported from D0 D3hot D3cold
[    1.769598] pci 0000:c3:00.4: [1022:15c1] type 00 class 0x0c0330
[    1.769626] pci 0000:c3:00.4: reg 0x10: [mem 0x90700000-0x907fffff 64bit]
[    1.769683] pci 0000:c3:00.4: enabling Extended Tags
[    1.769754] pci 0000:c3:00.4: PME# supported from D0 D3hot D3cold
[    1.770312] pci 0000:c3:00.5: [1022:1668] type 00 class 0x0c0340
[    1.770338] pci 0000:c3:00.5: reg 0x10: [mem 0x90800000-0x9087ffff 64bit]
[    1.770402] pci 0000:c3:00.5: Max Payload Size set to 128 (was 256, max 256)
[    1.770411] pci 0000:c3:00.5: enabling Extended Tags
[    1.770482] pci 0000:c3:00.5: PME# supported from D0 D3hot D3cold
[    1.770620] pci 0000:c3:00.6: [1022:1669] type 00 class 0x0c0340
[    1.770646] pci 0000:c3:00.6: reg 0x10: [mem 0x90880000-0x908fffff 64bit]
[    1.770711] pci 0000:c3:00.6: Max Payload Size set to 128 (was 256, max 256)
[    1.770720] pci 0000:c3:00.6: enabling Extended Tags
[    1.770790] pci 0000:c3:00.6: PME# supported from D0 D3hot D3cold
[    1.770984] pci 0000:00:08.3: PCI bridge to [bus c3]
[    1.770996] pci 0000:00:08.3:   bridge window [mem 0x90600000-0x908fffff]
[    1.771103] pci_bus 0000:00: on NUMA node 0
[    1.783231] xen_register_gsi: xen: registering gsi 8 triggering 1 polarity 0
[    1.783233] xen_register_pirq: before xen_irq_from_gsi: gsi 8 triggering 1 set_pirq 1
[    1.783234] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 8, setup_gsi.triggering: 0, setup_gsi.polarity: 0
[    1.783318] xen_register_gsi: xen: registering gsi 13 triggering 1 polarity 0
[    1.783319] xen_register_pirq: before xen_irq_from_gsi: gsi 13 triggering 1 set_pirq 1
[    1.783321] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 13, setup_gsi.triggering: 0, setup_gsi.polarity: 0
[    1.784231] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    1.784237] ACPI: PCI: Interrupt link LNKA disabled
[    1.784592] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    1.784597] ACPI: PCI: Interrupt link LNKB disabled
[    1.784922] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    1.784927] ACPI: PCI: Interrupt link LNKC disabled
[    1.785282] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    1.785287] ACPI: PCI: Interrupt link LNKD disabled
[    1.785631] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    1.785636] ACPI: PCI: Interrupt link LNKE disabled
[    1.785914] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    1.785919] ACPI: PCI: Interrupt link LNKF disabled
[    1.786200] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    1.786205] ACPI: PCI: Interrupt link LNKG disabled
[    1.786487] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    1.786492] ACPI: PCI: Interrupt link LNKH disabled
[    1.786652] xen_register_gsi: xen: registering gsi 7 triggering 0 polarity 1
[    1.786653] xen_register_pirq: before xen_irq_from_gsi: gsi 7 triggering 0 set_pirq 1
[    1.786654] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 7, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.787191] xen_register_gsi: xen: registering gsi 10 triggering 1 polarity 0
[    1.787192] xen_register_pirq: before xen_irq_from_gsi: gsi 10 triggering 1 set_pirq 1
[    1.787194] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 10, setup_gsi.triggering: 0, setup_gsi.polarity: 0
[    1.787516] xen_register_gsi: xen: registering gsi 6 triggering 1 polarity 0
[    1.787517] xen_register_pirq: before xen_irq_from_gsi: gsi 6 triggering 1 set_pirq 1
[    1.787518] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 6, setup_gsi.triggering: 0, setup_gsi.polarity: 0
[    1.788122] xen_register_gsi: xen: registering gsi 50 triggering 0 polarity 1
[    1.788124] xen_register_pirq: before xen_irq_from_gsi: gsi 50 triggering 0 set_pirq 1
[    1.788130] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 50 triggering 0 shareable 1 name ioapic-level
[    1.788142] xen_register_pirq: xen: --> pirq=50 -> irq=50 (gsi=50)
[    1.788143] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 50, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.788176] xen_register_gsi: xen: registering gsi 51 triggering 0 polarity 1
[    1.788177] xen_register_pirq: before xen_irq_from_gsi: gsi 51 triggering 0 set_pirq 1
[    1.788179] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 51 triggering 0 shareable 1 name ioapic-level
[    1.788187] xen_register_pirq: xen: --> pirq=51 -> irq=51 (gsi=51)
[    1.788188] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 51, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.788211] xen_register_gsi: xen: registering gsi 52 triggering 0 polarity 1
[    1.788212] xen_register_pirq: before xen_irq_from_gsi: gsi 52 triggering 0 set_pirq 1
[    1.788215] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 52 triggering 0 shareable 1 name ioapic-level
[    1.788225] xen_register_pirq: xen: --> pirq=52 -> irq=52 (gsi=52)
[    1.788226] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 52, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.788249] xen_register_gsi: xen: registering gsi 53 triggering 0 polarity 1
[    1.788250] xen_register_pirq: before xen_irq_from_gsi: gsi 53 triggering 0 set_pirq 1
[    1.788252] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 53 triggering 0 shareable 1 name ioapic-level
[    1.788259] xen_register_pirq: xen: --> pirq=53 -> irq=53 (gsi=53)
[    1.788261] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 53, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.794059] Low-power S0 idle used by default for system suspend
[    1.794208] ACPI: EC: interrupt unblocked
[    1.794212] ACPI: EC: event unblocked
[    1.794225] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    1.794230] ACPI: EC: GPE=0xb
[    1.794234] ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC initialization complete
[    1.794240] ACPI: \_SB_.PCI0.LPC0.EC0_: EC: Used to handle transactions and events
[    1.794269] xen:balloon: Initialising balloon driver
[    1.808656] iommu: Default domain type: Translated
[    1.808656] iommu: DMA domain TLB invalidation policy: lazy mode
[    1.808727] SCSI subsystem initialized
[    1.808741] libata version 3.00 loaded.
[    1.808741] ACPI: bus type USB registered
[    1.808741] usbcore: registered new interface driver usbfs
[    1.808741] usbcore: registered new interface driver hub
[    1.808741] usbcore: registered new device driver usb
[    1.820712] i2c_designware AMDI0010:00: using ACPI '\_SB.I2CA' for 'scl' GPIO lookup
[    1.820717] acpi AMDI0010:00: GPIO: looking up scl-gpios
[    1.820719] acpi AMDI0010:00: GPIO: looking up scl-gpio
[    1.820721] i2c_designware AMDI0010:00: using lookup tables for GPIO lookup
[    1.820722] i2c_designware AMDI0010:00: No GPIO consumer scl found
[    1.833755] i2c_designware AMDI0010:03: using ACPI '\_SB.I2CD' for 'scl' GPIO lookup
[    1.833759] acpi AMDI0010:03: GPIO: looking up scl-gpios
[    1.833761] acpi AMDI0010:03: GPIO: looking up scl-gpio
[    1.833762] i2c_designware AMDI0010:03: using lookup tables for GPIO lookup
[    1.833764] i2c_designware AMDI0010:03: No GPIO consumer scl found
[    1.835301] pps_core: LinuxPPS API ver. 1 registered
[    1.835307] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.835316] PTP clock support registered
[    1.835341] EDAC MC: Ver: 3.0.0
[    1.835746] efivars: Registered efivars operations
[    1.835831] NetLabel: Initializing
[    1.835837] NetLabel:  domain hash size = 128
[    1.835842] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.835861] NetLabel:  unlabeled traffic allowed by default
[    1.835869] mctp: management component transport protocol core
[    1.835874] NET: Registered PF_MCTP protocol family
[    1.835881] PCI: Using ACPI for IRQ routing
[    1.835885] PCI: pci_cache_line_size set to 64 bytes
[    1.836006] resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00
[    1.836012] e820: reserve RAM buffer [mem 0x09b00000-0x0bffffff]
[    1.836015] e820: reserve RAM buffer [mem 0x09f00000-0x0bffffff]
[    1.836016] e820: reserve RAM buffer [mem 0x42360000-0x43ffffff]
[    1.836017] e820: reserve RAM buffer [mem 0x44569000-0x47ffffff]
[    1.836018] e820: reserve RAM buffer [mem 0x4456f000-0x47ffffff]
[    1.836019] e820: reserve RAM buffer [mem 0x5077f000-0x53ffffff]
[    1.836020] e820: reserve RAM buffer [mem 0x5b000000-0x5bffffff]
[    1.836022] e820: reserve RAM buffer [mem 0x107e300000-0x107fffffff]
[    1.836040] pci 0000:c1:00.0: vgaarb: setting as boot VGA device
[    1.836040] pci 0000:c1:00.0: vgaarb: bridge control possible
[    1.836040] pci 0000:c1:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    1.836040] vgaarb: loaded
[    1.836638] sysfb: VRAM smaller than advertised
[    1.836804] clocksource: Switched to clocksource tsc-early
[    1.840271] VFS: Disk quotas dquot_6.6.0
[    1.840286] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.840312] hugetlbfs: disabling because there are no supported hugepage sizes
[    1.840352] pnp: PnP ACPI init
[    1.840632] system 00:00: [mem 0xfec00000-0xfec01fff] could not be reserved
[    1.840652] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
[    1.848189] system 00:02: [io  0x0400-0x04cf] has been reserved
[    1.848196] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    1.848202] system 00:02: [io  0x04d6] has been reserved
[    1.848207] system 00:02: [io  0x0c00-0x0c01] has been reserved
[    1.848212] system 00:02: [io  0x0c14] has been reserved
[    1.848217] system 00:02: [io  0x0c50-0x0c52] has been reserved
[    1.848222] system 00:02: [io  0x0c6c] has been reserved
[    1.848227] system 00:02: [io  0x0c6f] has been reserved
[    1.848234] system 00:02: [io  0x0cd0-0x0cdb] has been reserved
[    1.848328] system 00:03: [mem 0x000e0000-0x000fffff] could not be reserved
[    1.848334] system 00:03: [mem 0xfe000000-0xffffffff] could not be reserved
[    1.848516] xen_register_gsi: xen: registering gsi 1 triggering 1 polarity 0
[    1.848518] xen_register_pirq: before xen_irq_from_gsi: gsi 1 triggering 1 set_pirq 1
[    1.848519] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 1, setup_gsi.triggering: 0, setup_gsi.polarity: 0
[    1.850502] pnp: PnP ACPI: found 5 devices
[    1.855783] PM-Timer failed consistency check  (0xffffff) - aborting.
[    1.855839] NET: Registered PF_INET protocol family
[    1.855938] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    1.857594] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    1.857632] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    1.857658] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    1.857882] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    1.857988] TCP: Hash tables configured (established 524288 bind 65536)
[    1.858143] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear)
[    1.858194] UDP hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[    1.858246] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[    1.858355] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.858366] NET: Registered PF_XDP protocol family
[    1.858378] pci 0000:00:02.2: PCI bridge to [bus 01]
[    1.858395] pci 0000:00:02.2:   bridge window [mem 0x90b00000-0x90bfffff]
[    1.858403] pci 0000:00:02.2:   bridge window [mem 0x8810900000-0x88109fffff 64bit pref]
[    1.858415] pci 0000:00:02.4: PCI bridge to [bus 02]
[    1.858424] pci 0000:00:02.4:   bridge window [mem 0x90a00000-0x90afffff]
[    1.858437] pci 0000:00:03.1: PCI bridge to [bus 03-61]
[    1.858444] pci 0000:00:03.1:   bridge window [io  0x6000-0x9fff]
[    1.858459] pci 0000:00:03.1:   bridge window [mem 0x78000000-0x8fffffff]
[    1.858473] pci 0000:00:03.1:   bridge window [mem 0x7800000000-0x87ffffffff 64bit pref]
[    1.858490] pci 0000:00:04.1: PCI bridge to [bus 62-c0]
[    1.858496] pci 0000:00:04.1:   bridge window [io  0x2000-0x5fff]
[    1.858511] pci 0000:00:04.1:   bridge window [mem 0x60000000-0x77ffffff]
[    1.858525] pci 0000:00:04.1:   bridge window [mem 0x6800000000-0x77ffffffff 64bit pref]
[    1.858543] pci 0000:00:08.1: PCI bridge to [bus c1]
[    1.858549] pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
[    1.858557] pci 0000:00:08.1:   bridge window [mem 0x90000000-0x905fffff]
[    1.858565] pci 0000:00:08.1:   bridge window [mem 0x8800000000-0x88107fffff 64bit pref]
[    1.858576] pci 0000:00:08.2: PCI bridge to [bus c2]
[    1.858584] pci 0000:00:08.2:   bridge window [mem 0x90900000-0x909fffff]
[    1.858592] pci 0000:00:08.2:   bridge window [mem 0x8810800000-0x88108fffff 64bit pref]
[    1.858603] pci 0000:00:08.3: PCI bridge to [bus c3]
[    1.858611] pci 0000:00:08.3:   bridge window [mem 0x90600000-0x908fffff]
[    1.858630] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    1.858636] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    1.858642] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    1.858649] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000cffff window]
[    1.858655] pci_bus 0000:00: resource 8 [mem 0x000d0000-0x000effff window]
[    1.858662] pci_bus 0000:00: resource 9 [mem 0x60000000-0x90bfffff window]
[    1.858669] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfec00000 window]
[    1.858675] pci_bus 0000:00: resource 11 [mem 0xfed45000-0xfed814ff window]
[    1.858681] pci_bus 0000:00: resource 12 [mem 0xfed81900-0xfed81fff window]
[    1.858686] pci_bus 0000:00: resource 13 [mem 0xfedc0000-0xfedc0fff window]
[    1.858692] pci_bus 0000:00: resource 14 [mem 0xfedc6000-0xfedc6fff window]
[    1.858697] pci_bus 0000:00: resource 15 [mem 0x10c0200000-0x891fffffff window]
[    1.858704] pci_bus 0000:01: resource 1 [mem 0x90b00000-0x90bfffff]
[    1.858709] pci_bus 0000:01: resource 2 [mem 0x8810900000-0x88109fffff 64bit pref]
[    1.858715] pci_bus 0000:02: resource 1 [mem 0x90a00000-0x90afffff]
[    1.858720] pci_bus 0000:03: resource 0 [io  0x6000-0x9fff]
[    1.858725] pci_bus 0000:03: resource 1 [mem 0x78000000-0x8fffffff]
[    1.858730] pci_bus 0000:03: resource 2 [mem 0x7800000000-0x87ffffffff 64bit pref]
[    1.858736] pci_bus 0000:62: resource 0 [io  0x2000-0x5fff]
[    1.858741] pci_bus 0000:62: resource 1 [mem 0x60000000-0x77ffffff]
[    1.858746] pci_bus 0000:62: resource 2 [mem 0x6800000000-0x77ffffffff 64bit pref]
[    1.858752] pci_bus 0000:c1: resource 0 [io  0x1000-0x1fff]
[    1.858757] pci_bus 0000:c1: resource 1 [mem 0x90000000-0x905fffff]
[    1.858762] pci_bus 0000:c1: resource 2 [mem 0x8800000000-0x88107fffff 64bit pref]
[    1.858768] pci_bus 0000:c2: resource 1 [mem 0x90900000-0x909fffff]
[    1.858773] pci_bus 0000:c2: resource 2 [mem 0x8810800000-0x88108fffff 64bit pref]
[    1.858779] pci_bus 0000:c3: resource 1 [mem 0x90600000-0x908fffff]
[    1.859213] pci 0000:c1:00.1: D0 power state depends on 0000:c1:00.0
[    1.859347] xen_register_gsi: xen: registering gsi 40 triggering 0 polarity 1
[    1.859349] xen_register_pirq: before xen_irq_from_gsi: gsi 40 triggering 0 set_pirq 1
[    1.859363] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 40 triggering 0 shareable 1 name ioapic-level
[    1.859375] xen_register_pirq: xen: --> pirq=40 -> irq=40 (gsi=40)
[    1.859376] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 40, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.859450] xen_register_gsi: xen: registering gsi 37 triggering 0 polarity 1
[    1.859451] xen_register_pirq: before xen_irq_from_gsi: gsi 37 triggering 0 set_pirq 1
[    1.859454] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 37 triggering 0 shareable 1 name ioapic-level
[    1.859463] xen_register_pirq: xen: --> pirq=37 -> irq=37 (gsi=37)
[    1.859464] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 37, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.859955] xen_register_gsi: xen: registering gsi 38 triggering 0 polarity 1
[    1.859957] xen_register_pirq: before xen_irq_from_gsi: gsi 38 triggering 0 set_pirq 1
[    1.859959] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 38 triggering 0 shareable 1 name ioapic-level
[    1.859974] xen_register_pirq: xen: --> pirq=38 -> irq=38 (gsi=38)
[    1.859975] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 38, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.860407] xen_register_gsi: xen: registering gsi 40 triggering 0 polarity 1
[    1.860408] xen_register_pirq: before xen_irq_from_gsi: gsi 40 triggering 0 set_pirq 1
[    1.860410] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 40, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.860412] Already setup the GSI :40
[    1.860463] xen_register_gsi: xen: registering gsi 46 triggering 0 polarity 1
[    1.860465] xen_register_pirq: before xen_irq_from_gsi: gsi 46 triggering 0 set_pirq 1
[    1.860467] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 46 triggering 0 shareable 1 name ioapic-level
[    1.860476] xen_register_pirq: xen: --> pirq=46 -> irq=46 (gsi=46)
[    1.860477] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 46, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.860875] xen_register_gsi: xen: registering gsi 47 triggering 0 polarity 1
[    1.860876] xen_register_pirq: before xen_irq_from_gsi: gsi 47 triggering 0 set_pirq 1
[    1.860879] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 47 triggering 0 shareable 1 name ioapic-level
[    1.860888] xen_register_pirq: xen: --> pirq=47 -> irq=47 (gsi=47)
[    1.860889] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 47, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    1.861248] PCI: CLS 64 bytes, default 64
[    1.861258] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.861263] software IO TLB: mapped [mem 0x000000103b000000-0x000000103f000000] (64MB)
[    1.861309] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2f7a7a7f221, max_idle_ns: 440795289726 ns
[    1.861323] Trying to unpack rootfs image as initramfs...
[    1.861358] clocksource: Switched to clocksource tsc
[    1.866845] Initialise system trusted keyrings
[    1.866859] Key type blacklist registered
[    1.866932] workingset: timestamp_bits=46 max_order=24 bucket_order=0
[    1.866946] zbud: loaded
[    1.867991] integrity: Platform Keyring initialized
[    1.867998] integrity: Machine keyring initialized
[    1.873607] NET: Registered PF_ALG protocol family
[    1.873613] xor: automatically using best checksumming function   avx       
[    1.873620] Key type asymmetric registered
[    1.873624] Asymmetric key parser 'x509' registered
[    3.485212] Freeing initrd memory: 224212K
[    3.491414] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    3.491520] io scheduler mq-deadline registered
[    3.491531] io scheduler kyber registered
[    3.491557] io scheduler bfq registered
[    3.493725] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    3.493945] amd_gpio AMDI0030:00: iomux not supported
[    3.493948] amd_gpio AMDI0030:00: try to register 183 pins ...
[    3.493950] pinctrl core: registered pin 0 (GPIO_0) on AMDI0030:00
[    3.493952] pinctrl core: registered pin 1 (GPIO_1) on AMDI0030:00
[    3.493953] pinctrl core: registered pin 2 (GPIO_2) on AMDI0030:00
[    3.493954] pinctrl core: registered pin 3 (GPIO_3) on AMDI0030:00
[    3.493956] pinctrl core: registered pin 4 (GPIO_4) on AMDI0030:00
[    3.493957] pinctrl core: registered pin 5 (GPIO_5) on AMDI0030:00
[    3.493958] pinctrl core: registered pin 6 (GPIO_6) on AMDI0030:00
[    3.493959] pinctrl core: registered pin 7 (GPIO_7) on AMDI0030:00
[    3.493960] pinctrl core: registered pin 8 (GPIO_8) on AMDI0030:00
[    3.493961] pinctrl core: registered pin 9 (GPIO_9) on AMDI0030:00
[    3.493962] pinctrl core: registered pin 10 (GPIO_10) on AMDI0030:00
[    3.493964] pinctrl core: registered pin 11 (GPIO_11) on AMDI0030:00
[    3.493965] pinctrl core: registered pin 12 (GPIO_12) on AMDI0030:00
[    3.493966] pinctrl core: registered pin 13 (GPIO_13) on AMDI0030:00
[    3.493967] pinctrl core: registered pin 14 (GPIO_14) on AMDI0030:00
[    3.493968] pinctrl core: registered pin 15 (GPIO_15) on AMDI0030:00
[    3.493969] pinctrl core: registered pin 16 (GPIO_16) on AMDI0030:00
[    3.493971] pinctrl core: registered pin 17 (GPIO_17) on AMDI0030:00
[    3.493972] pinctrl core: registered pin 18 (GPIO_18) on AMDI0030:00
[    3.493973] pinctrl core: registered pin 19 (GPIO_19) on AMDI0030:00
[    3.493974] pinctrl core: registered pin 20 (GPIO_20) on AMDI0030:00
[    3.493975] pinctrl core: registered pin 21 (GPIO_21) on AMDI0030:00
[    3.493976] pinctrl core: registered pin 22 (GPIO_22) on AMDI0030:00
[    3.493977] pinctrl core: registered pin 23 (GPIO_23) on AMDI0030:00
[    3.493978] pinctrl core: registered pin 24 (GPIO_24) on AMDI0030:00
[    3.493979] pinctrl core: registered pin 25 (GPIO_25) on AMDI0030:00
[    3.493981] pinctrl core: registered pin 26 (GPIO_26) on AMDI0030:00
[    3.493982] pinctrl core: registered pin 27 (GPIO_27) on AMDI0030:00
[    3.493983] pinctrl core: registered pin 28 (GPIO_28) on AMDI0030:00
[    3.493984] pinctrl core: registered pin 29 (GPIO_29) on AMDI0030:00
[    3.493985] pinctrl core: registered pin 30 (GPIO_30) on AMDI0030:00
[    3.493986] pinctrl core: registered pin 31 (GPIO_31) on AMDI0030:00
[    3.493987] pinctrl core: registered pin 32 (GPIO_32) on AMDI0030:00
[    3.493988] pinctrl core: registered pin 33 (GPIO_33) on AMDI0030:00
[    3.493990] pinctrl core: registered pin 34 (GPIO_34) on AMDI0030:00
[    3.493991] pinctrl core: registered pin 35 (GPIO_35) on AMDI0030:00
[    3.493992] pinctrl core: registered pin 36 (GPIO_36) on AMDI0030:00
[    3.493993] pinctrl core: registered pin 37 (GPIO_37) on AMDI0030:00
[    3.493994] pinctrl core: registered pin 38 (GPIO_38) on AMDI0030:00
[    3.493995] pinctrl core: registered pin 39 (GPIO_39) on AMDI0030:00
[    3.493996] pinctrl core: registered pin 40 (GPIO_40) on AMDI0030:00
[    3.493997] pinctrl core: registered pin 41 (GPIO_41) on AMDI0030:00
[    3.493999] pinctrl core: registered pin 42 (GPIO_42) on AMDI0030:00
[    3.494000] pinctrl core: registered pin 43 (GPIO_43) on AMDI0030:00
[    3.494001] pinctrl core: registered pin 44 (GPIO_44) on AMDI0030:00
[    3.494002] pinctrl core: registered pin 45 (GPIO_45) on AMDI0030:00
[    3.494004] pinctrl core: registered pin 46 (GPIO_46) on AMDI0030:00
[    3.494005] pinctrl core: registered pin 47 (GPIO_47) on AMDI0030:00
[    3.494006] pinctrl core: registered pin 48 (GPIO_48) on AMDI0030:00
[    3.494007] pinctrl core: registered pin 49 (GPIO_49) on AMDI0030:00
[    3.494008] pinctrl core: registered pin 50 (GPIO_50) on AMDI0030:00
[    3.494009] pinctrl core: registered pin 51 (GPIO_51) on AMDI0030:00
[    3.494010] pinctrl core: registered pin 52 (GPIO_52) on AMDI0030:00
[    3.494011] pinctrl core: registered pin 53 (GPIO_53) on AMDI0030:00
[    3.494012] pinctrl core: registered pin 54 (GPIO_54) on AMDI0030:00
[    3.494014] pinctrl core: registered pin 55 (GPIO_55) on AMDI0030:00
[    3.494015] pinctrl core: registered pin 56 (GPIO_56) on AMDI0030:00
[    3.494016] pinctrl core: registered pin 57 (GPIO_57) on AMDI0030:00
[    3.494017] pinctrl core: registered pin 58 (GPIO_58) on AMDI0030:00
[    3.494018] pinctrl core: registered pin 59 (GPIO_59) on AMDI0030:00
[    3.494019] pinctrl core: registered pin 60 (GPIO_60) on AMDI0030:00
[    3.494020] pinctrl core: registered pin 61 (GPIO_61) on AMDI0030:00
[    3.494021] pinctrl core: registered pin 62 (GPIO_62) on AMDI0030:00
[    3.494023] pinctrl core: registered pin 64 (GPIO_64) on AMDI0030:00
[    3.494024] pinctrl core: registered pin 65 (GPIO_65) on AMDI0030:00
[    3.494025] pinctrl core: registered pin 66 (GPIO_66) on AMDI0030:00
[    3.494026] pinctrl core: registered pin 67 (GPIO_67) on AMDI0030:00
[    3.494027] pinctrl core: registered pin 68 (GPIO_68) on AMDI0030:00
[    3.494028] pinctrl core: registered pin 69 (GPIO_69) on AMDI0030:00
[    3.494030] pinctrl core: registered pin 70 (GPIO_70) on AMDI0030:00
[    3.494031] pinctrl core: registered pin 71 (GPIO_71) on AMDI0030:00
[    3.494032] pinctrl core: registered pin 72 (GPIO_72) on AMDI0030:00
[    3.494033] pinctrl core: registered pin 73 (GPIO_73) on AMDI0030:00
[    3.494034] pinctrl core: registered pin 74 (GPIO_74) on AMDI0030:00
[    3.494035] pinctrl core: registered pin 75 (GPIO_75) on AMDI0030:00
[    3.494037] pinctrl core: registered pin 76 (GPIO_76) on AMDI0030:00
[    3.494039] pinctrl core: registered pin 77 (GPIO_77) on AMDI0030:00
[    3.494040] pinctrl core: registered pin 78 (GPIO_78) on AMDI0030:00
[    3.494041] pinctrl core: registered pin 79 (GPIO_79) on AMDI0030:00
[    3.494042] pinctrl core: registered pin 80 (GPIO_80) on AMDI0030:00
[    3.494043] pinctrl core: registered pin 81 (GPIO_81) on AMDI0030:00
[    3.494044] pinctrl core: registered pin 82 (GPIO_82) on AMDI0030:00
[    3.494046] pinctrl core: registered pin 83 (GPIO_83) on AMDI0030:00
[    3.494047] pinctrl core: registered pin 84 (GPIO_84) on AMDI0030:00
[    3.494048] pinctrl core: registered pin 85 (GPIO_85) on AMDI0030:00
[    3.494049] pinctrl core: registered pin 86 (GPIO_86) on AMDI0030:00
[    3.494050] pinctrl core: registered pin 87 (GPIO_87) on AMDI0030:00
[    3.494051] pinctrl core: registered pin 88 (GPIO_88) on AMDI0030:00
[    3.494052] pinctrl core: registered pin 89 (GPIO_89) on AMDI0030:00
[    3.494053] pinctrl core: registered pin 90 (GPIO_90) on AMDI0030:00
[    3.494054] pinctrl core: registered pin 91 (GPIO_91) on AMDI0030:00
[    3.494056] pinctrl core: registered pin 92 (GPIO_92) on AMDI0030:00
[    3.494057] pinctrl core: registered pin 93 (GPIO_93) on AMDI0030:00
[    3.494058] pinctrl core: registered pin 94 (GPIO_94) on AMDI0030:00
[    3.494059] pinctrl core: registered pin 95 (GPIO_95) on AMDI0030:00
[    3.494060] pinctrl core: registered pin 96 (GPIO_96) on AMDI0030:00
[    3.494061] pinctrl core: registered pin 97 (GPIO_97) on AMDI0030:00
[    3.494062] pinctrl core: registered pin 98 (GPIO_98) on AMDI0030:00
[    3.494063] pinctrl core: registered pin 99 (GPIO_99) on AMDI0030:00
[    3.494065] pinctrl core: registered pin 100 (GPIO_100) on AMDI0030:00
[    3.494066] pinctrl core: registered pin 101 (GPIO_101) on AMDI0030:00
[    3.494067] pinctrl core: registered pin 102 (GPIO_102) on AMDI0030:00
[    3.494068] pinctrl core: registered pin 103 (GPIO_103) on AMDI0030:00
[    3.494069] pinctrl core: registered pin 104 (GPIO_104) on AMDI0030:00
[    3.494070] pinctrl core: registered pin 105 (GPIO_105) on AMDI0030:00
[    3.494071] pinctrl core: registered pin 106 (GPIO_106) on AMDI0030:00
[    3.494073] pinctrl core: registered pin 107 (GPIO_107) on AMDI0030:00
[    3.494074] pinctrl core: registered pin 108 (GPIO_108) on AMDI0030:00
[    3.494075] pinctrl core: registered pin 109 (GPIO_109) on AMDI0030:00
[    3.494076] pinctrl core: registered pin 110 (GPIO_110) on AMDI0030:00
[    3.494077] pinctrl core: registered pin 111 (GPIO_111) on AMDI0030:00
[    3.494078] pinctrl core: registered pin 112 (GPIO_112) on AMDI0030:00
[    3.494079] pinctrl core: registered pin 113 (GPIO_113) on AMDI0030:00
[    3.494080] pinctrl core: registered pin 114 (GPIO_114) on AMDI0030:00
[    3.494082] pinctrl core: registered pin 115 (GPIO_115) on AMDI0030:00
[    3.494083] pinctrl core: registered pin 116 (GPIO_116) on AMDI0030:00
[    3.494084] pinctrl core: registered pin 117 (GPIO_117) on AMDI0030:00
[    3.494085] pinctrl core: registered pin 118 (GPIO_118) on AMDI0030:00
[    3.494086] pinctrl core: registered pin 119 (GPIO_119) on AMDI0030:00
[    3.494087] pinctrl core: registered pin 120 (GPIO_120) on AMDI0030:00
[    3.494088] pinctrl core: registered pin 121 (GPIO_121) on AMDI0030:00
[    3.494089] pinctrl core: registered pin 122 (GPIO_122) on AMDI0030:00
[    3.494090] pinctrl core: registered pin 123 (GPIO_123) on AMDI0030:00
[    3.494092] pinctrl core: registered pin 124 (GPIO_124) on AMDI0030:00
[    3.494093] pinctrl core: registered pin 125 (GPIO_125) on AMDI0030:00
[    3.494094] pinctrl core: registered pin 126 (GPIO_126) on AMDI0030:00
[    3.494095] pinctrl core: registered pin 127 (GPIO_127) on AMDI0030:00
[    3.494096] pinctrl core: registered pin 128 (GPIO_128) on AMDI0030:00
[    3.494098] pinctrl core: registered pin 129 (GPIO_129) on AMDI0030:00
[    3.494099] pinctrl core: registered pin 130 (GPIO_130) on AMDI0030:00
[    3.494100] pinctrl core: registered pin 131 (GPIO_131) on AMDI0030:00
[    3.494101] pinctrl core: registered pin 132 (GPIO_132) on AMDI0030:00
[    3.494102] pinctrl core: registered pin 133 (GPIO_133) on AMDI0030:00
[    3.494103] pinctrl core: registered pin 134 (GPIO_134) on AMDI0030:00
[    3.494104] pinctrl core: registered pin 135 (GPIO_135) on AMDI0030:00
[    3.494105] pinctrl core: registered pin 136 (GPIO_136) on AMDI0030:00
[    3.494107] pinctrl core: registered pin 137 (GPIO_137) on AMDI0030:00
[    3.494108] pinctrl core: registered pin 138 (GPIO_138) on AMDI0030:00
[    3.494109] pinctrl core: registered pin 139 (GPIO_139) on AMDI0030:00
[    3.494111] pinctrl core: registered pin 140 (GPIO_140) on AMDI0030:00
[    3.494112] pinctrl core: registered pin 141 (GPIO_141) on AMDI0030:00
[    3.494113] pinctrl core: registered pin 142 (GPIO_142) on AMDI0030:00
[    3.494114] pinctrl core: registered pin 143 (GPIO_143) on AMDI0030:00
[    3.494115] pinctrl core: registered pin 144 (GPIO_144) on AMDI0030:00
[    3.494116] pinctrl core: registered pin 145 (GPIO_145) on AMDI0030:00
[    3.494117] pinctrl core: registered pin 146 (GPIO_146) on AMDI0030:00
[    3.494119] pinctrl core: registered pin 147 (GPIO_147) on AMDI0030:00
[    3.494120] pinctrl core: registered pin 148 (GPIO_148) on AMDI0030:00
[    3.494121] pinctrl core: registered pin 149 (GPIO_149) on AMDI0030:00
[    3.494122] pinctrl core: registered pin 150 (GPIO_150) on AMDI0030:00
[    3.494123] pinctrl core: registered pin 151 (GPIO_151) on AMDI0030:00
[    3.494124] pinctrl core: registered pin 152 (GPIO_152) on AMDI0030:00
[    3.494125] pinctrl core: registered pin 153 (GPIO_153) on AMDI0030:00
[    3.494126] pinctrl core: registered pin 154 (GPIO_154) on AMDI0030:00
[    3.494127] pinctrl core: registered pin 155 (GPIO_155) on AMDI0030:00
[    3.494129] pinctrl core: registered pin 156 (GPIO_156) on AMDI0030:00
[    3.494130] pinctrl core: registered pin 157 (GPIO_157) on AMDI0030:00
[    3.494131] pinctrl core: registered pin 158 (GPIO_158) on AMDI0030:00
[    3.494132] pinctrl core: registered pin 159 (GPIO_159) on AMDI0030:00
[    3.494133] pinctrl core: registered pin 160 (GPIO_160) on AMDI0030:00
[    3.494134] pinctrl core: registered pin 161 (GPIO_161) on AMDI0030:00
[    3.494135] pinctrl core: registered pin 162 (GPIO_162) on AMDI0030:00
[    3.494136] pinctrl core: registered pin 163 (GPIO_163) on AMDI0030:00
[    3.494138] pinctrl core: registered pin 164 (GPIO_164) on AMDI0030:00
[    3.494139] pinctrl core: registered pin 165 (GPIO_165) on AMDI0030:00
[    3.494140] pinctrl core: registered pin 166 (GPIO_166) on AMDI0030:00
[    3.494141] pinctrl core: registered pin 167 (GPIO_167) on AMDI0030:00
[    3.494142] pinctrl core: registered pin 168 (GPIO_168) on AMDI0030:00
[    3.494143] pinctrl core: registered pin 169 (GPIO_169) on AMDI0030:00
[    3.494144] pinctrl core: registered pin 170 (GPIO_170) on AMDI0030:00
[    3.494145] pinctrl core: registered pin 171 (GPIO_171) on AMDI0030:00
[    3.494147] pinctrl core: registered pin 172 (GPIO_172) on AMDI0030:00
[    3.494148] pinctrl core: registered pin 173 (GPIO_173) on AMDI0030:00
[    3.494149] pinctrl core: registered pin 174 (GPIO_174) on AMDI0030:00
[    3.494150] pinctrl core: registered pin 175 (GPIO_175) on AMDI0030:00
[    3.494151] pinctrl core: registered pin 176 (GPIO_176) on AMDI0030:00
[    3.494152] pinctrl core: registered pin 177 (GPIO_177) on AMDI0030:00
[    3.494153] pinctrl core: registered pin 178 (GPIO_178) on AMDI0030:00
[    3.494154] pinctrl core: registered pin 179 (GPIO_179) on AMDI0030:00
[    3.494155] pinctrl core: registered pin 180 (GPIO_180) on AMDI0030:00
[    3.494157] pinctrl core: registered pin 181 (GPIO_181) on AMDI0030:00
[    3.494158] pinctrl core: registered pin 182 (GPIO_182) on AMDI0030:00
[    3.494159] pinctrl core: registered pin 183 (GPIO_183) on AMDI0030:00
[    3.494160] amd_gpio AMDI0030:00: failed to lookup the default state
[    3.494162] amd_gpio AMDI0030:00: failed to lookup the sleep state
[    3.494657] gpiochip_find_base: found new base at 512
[    3.495145] amd_gpio AMDI0030:00: Invalid config param 0014
[    3.495148] gpio gpiochip0: Persistence not supported for GPIO 0
[    3.495174] amd_gpio AMDI0030:00: Invalid config param 0014
[    3.495177] gpio gpiochip0: Persistence not supported for GPIO 61
[    3.495197] amd_gpio AMDI0030:00: Invalid config param 0014
[    3.495200] gpio gpiochip0: Persistence not supported for GPIO 62
[    3.495220] amd_gpio AMDI0030:00: Invalid config param 0014
[    3.495223] gpio gpiochip0: Persistence not supported for GPIO 58
[    3.495242] amd_gpio AMDI0030:00: Invalid config param 0014
[    3.495245] gpio gpiochip0: Persistence not supported for GPIO 59
[    3.495264] amd_gpio AMDI0030:00: Invalid config param 0014
[    3.495267] gpio gpiochip0: Persistence not supported for GPIO 2
[    3.495291] amd_gpio AMDI0030:00: Invalid config param 0014
[    3.495294] gpio gpiochip0: Persistence not supported for GPIO 6
[    3.495314] amd_gpio AMDI0030:00: Invalid config param 0014
[    3.495317] gpio gpiochip0: Persistence not supported for GPIO 54
[    3.495388] gpio gpiochip0: (AMDI0030:00): added GPIO chardev (254:0)
[    3.495401] gpio gpiochip0: registered GPIOs 512 to 767 on AMDI0030:00
[    3.495404] gpio gpiochip0: (AMDI0030:00): created GPIO range 0->255 ==> AMDI0030:00 PIN 0->255
[    3.495490] amd_gpio AMDI0030:00: amd gpio driver loaded
[    3.495646] pcieport 0000:00:02.2: PME: Signaling with IRQ 162
[    3.495813] pcieport 0000:00:02.4: PME: Signaling with IRQ 163
[    3.496051] pcieport 0000:00:03.1: PME: Signaling with IRQ 164
[    3.496090] pcieport 0000:00:03.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.496793] pcieport 0000:00:04.1: PME: Signaling with IRQ 165
[    3.496838] pcieport 0000:00:04.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    3.497422] pcieport 0000:00:08.1: PME: Signaling with IRQ 166
[    3.497567] xen_register_gsi: xen: registering gsi 40 triggering 0 polarity 1
[    3.497569] xen_register_pirq: before xen_irq_from_gsi: gsi 40 triggering 0 set_pirq 1
[    3.497581] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 40, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    3.497585] Already setup the GSI :40
[    3.497683] pcieport 0000:00:08.2: PME: Signaling with IRQ 167
[    3.497835] pcieport 0000:00:08.3: PME: Signaling with IRQ 168
[    3.497944] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    3.497972] efifb: probing for efifb
[    3.499187] efifb: No BGRT, not showing boot graphics
[    3.499193] efifb: framebuffer at 0x8800000000, using 13536k, total 13536k
[    3.499198] efifb: mode is 2256x1504x32, linelength=9216, pages=1
[    3.499204] efifb: scrolling: redraw
[    3.499207] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.499312] Console: switching to colour frame buffer device 282x94
[    3.500613] fb0: EFI VGA frame buffer device
[    3.502100] ACPI: AC: AC Adapter [ACAD] (on-line)
[    3.502183] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:44/PNP0C09:00/PNP0C0D:00/input/input0
[    3.502235] ACPI: button: Lid Switch [LID0]
[    3.502279] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    3.502314] ACPI: button: Power Button [PWRB]
[    3.502379] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.502415] ACPI: \_SB_.PLTF.C000: Found 3 idle states
[    3.502506] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.502561] ACPI: \_SB_.PLTF.C001: Found 3 idle states
[    3.502652] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.502706] ACPI: \_SB_.PLTF.C002: Found 3 idle states
[    3.502800] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.502859] ACPI: \_SB_.PLTF.C003: Found 3 idle states
[    3.502949] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.503004] ACPI: \_SB_.PLTF.C004: Found 3 idle states
[    3.503090] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.503160] ACPI: \_SB_.PLTF.C005: Found 3 idle states
[    3.503269] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.503327] ACPI: \_SB_.PLTF.C006: Found 3 idle states
[    3.503428] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.503483] ACPI: \_SB_.PLTF.C007: Found 3 idle states
[    3.503584] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.503634] ACPI: \_SB_.PLTF.C008: Found 3 idle states
[    3.503736] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.503789] ACPI: \_SB_.PLTF.C009: Found 3 idle states
[    3.503895] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.503948] ACPI: \_SB_.PLTF.C00A: Found 3 idle states
[    3.504050] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.504101] ACPI: \_SB_.PLTF.C00B: Found 3 idle states
[    3.504203] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.504256] ACPI: \_SB_.PLTF.C00C: Found 3 idle states
[    3.504357] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.504409] ACPI: \_SB_.PLTF.C00D: Found 3 idle states
[    3.504510] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.504563] ACPI: \_SB_.PLTF.C00E: Found 3 idle states
[    3.504660] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    3.504709] ACPI: \_SB_.PLTF.C00F: Found 3 idle states
[    3.505118] thermal LNXTHERM:00: registered as thermal_zone0
[    3.505152] ACPI: thermal: Thermal Zone [TZ00] (38 C)
[    3.505381] thermal LNXTHERM:01: registered as thermal_zone1
[    3.505414] ACPI: thermal: Thermal Zone [TZ01] (41 C)
[    3.505663] thermal LNXTHERM:02: registered as thermal_zone2
[    3.505695] ACPI: thermal: Thermal Zone [TZ02] (35 C)
[    3.505928] thermal LNXTHERM:03: registered as thermal_zone3
[    3.505960] ACPI: thermal: Thermal Zone [TZ03] (80 C)
[    3.507180] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    3.507746] ACPI: battery: Slot [BAT1] (battery present)
[    3.509630] hpet_acpi_add: no address or irqs in _CRS
[    3.509697] Non-volatile memory driver v1.3
[    3.509726] Linux agpgart interface v0.103
[    3.510576] ACPI: bus type drm_connector registered
[    3.513451] mdio_bus fixed-0: using lookup tables for GPIO lookup
[    3.513456] mdio_bus fixed-0: No GPIO consumer reset found
[    3.513886] xen_register_gsi: xen: registering gsi 37 triggering 0 polarity 1
[    3.513888] xen_register_pirq: before xen_irq_from_gsi: gsi 37 triggering 0 set_pirq 1
[    3.513891] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 37, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    3.513894] Already setup the GSI :37
[    3.514082] xhci_hcd 0000:c1:00.3: xHCI Host Controller
[    3.514135] xhci_hcd 0000:c1:00.3: new USB bus registered, assigned bus number 1
[    3.514621] xhci_hcd 0000:c1:00.3: hcc params 0x0128ffc5 hci version 0x120 quirks 0x0000000200000410
[    3.515005] xhci_hcd 0000:c1:00.3: xHCI Host Controller
[    3.515054] xhci_hcd 0000:c1:00.3: new USB bus registered, assigned bus number 2
[    3.515075] xhci_hcd 0000:c1:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    3.515142] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    3.515161] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.515176] usb usb1: Product: xHCI Host Controller
[    3.515187] usb usb1: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    3.515203] usb usb1: SerialNumber: 0000:c1:00.3
[    3.515326] hub 1-0:1.0: USB hub found
[    3.515368] hub 1-0:1.0: 5 ports detected
[    3.523316] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.523371] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    3.523399] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.523977] usb usb2: Product: xHCI Host Controller
[    3.524545] usb usb2: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    3.525121] usb usb2: SerialNumber: 0000:c1:00.3
[    3.525776] hub 2-0:1.0: USB hub found
[    3.526378] hub 2-0:1.0: 2 ports detected
[    3.530388] xen_register_gsi: xen: registering gsi 38 triggering 0 polarity 1
[    3.530390] xen_register_pirq: before xen_irq_from_gsi: gsi 38 triggering 0 set_pirq 1
[    3.530393] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 38, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    3.530396] Already setup the GSI :38
[    3.531154] xhci_hcd 0000:c1:00.4: xHCI Host Controller
[    3.531750] xhci_hcd 0000:c1:00.4: new USB bus registered, assigned bus number 3
[    3.532690] xhci_hcd 0000:c1:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[    3.533598] xhci_hcd 0000:c1:00.4: xHCI Host Controller
[    3.534232] xhci_hcd 0000:c1:00.4: new USB bus registered, assigned bus number 4
[    3.534845] xhci_hcd 0000:c1:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    3.535552] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    3.536746] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.537300] usb usb3: Product: xHCI Host Controller
[    3.537862] usb usb3: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    3.538414] usb usb3: SerialNumber: 0000:c1:00.4
[    3.539107] hub 3-0:1.0: USB hub found
[    3.539676] hub 3-0:1.0: 1 port detected
[    3.541883] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.542477] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    3.543035] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.543574] usb usb4: Product: xHCI Host Controller
[    3.544115] usb usb4: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    3.544651] usb usb4: SerialNumber: 0000:c1:00.4
[    3.545328] hub 4-0:1.0: USB hub found
[    3.545890] hub 4-0:1.0: 1 port detected
[    3.548251] xen_register_gsi: xen: registering gsi 46 triggering 0 polarity 1
[    3.548253] xen_register_pirq: before xen_irq_from_gsi: gsi 46 triggering 0 set_pirq 1
[    3.548256] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 46, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    3.548259] Already setup the GSI :46
[    3.548962] xhci_hcd 0000:c3:00.3: xHCI Host Controller
[    3.549604] xhci_hcd 0000:c3:00.3: new USB bus registered, assigned bus number 5
[    3.550513] xhci_hcd 0000:c3:00.3: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[    3.551665] xhci_hcd 0000:c3:00.3: xHCI Host Controller
[    3.552257] xhci_hcd 0000:c3:00.3: new USB bus registered, assigned bus number 6
[    3.552814] xhci_hcd 0000:c3:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    3.553371] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    3.553910] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.554440] usb usb5: Product: xHCI Host Controller
[    3.554970] usb usb5: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    3.555485] usb usb5: SerialNumber: 0000:c3:00.3
[    3.556213] hub 5-0:1.0: USB hub found
[    3.556745] hub 5-0:1.0: 1 port detected
[    3.558951] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.559528] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    3.560056] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.560572] usb usb6: Product: xHCI Host Controller
[    3.561087] usb usb6: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    3.561593] usb usb6: SerialNumber: 0000:c3:00.3
[    3.562304] hub 6-0:1.0: USB hub found
[    3.562866] hub 6-0:1.0: 1 port detected
[    3.565731] xen_register_gsi: xen: registering gsi 47 triggering 0 polarity 1
[    3.565733] xen_register_pirq: before xen_irq_from_gsi: gsi 47 triggering 0 set_pirq 1
[    3.565736] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 47, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    3.565739] Already setup the GSI :47
[    3.566426] xhci_hcd 0000:c3:00.4: xHCI Host Controller
[    3.567052] xhci_hcd 0000:c3:00.4: new USB bus registered, assigned bus number 7
[    3.567882] xhci_hcd 0000:c3:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[    3.569015] xhci_hcd 0000:c3:00.4: xHCI Host Controller
[    3.569671] xhci_hcd 0000:c3:00.4: new USB bus registered, assigned bus number 8
[    3.570224] xhci_hcd 0000:c3:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    3.570781] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[    3.571279] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.571771] usb usb7: Product: xHCI Host Controller
[    3.572258] usb usb7: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    3.572747] usb usb7: SerialNumber: 0000:c3:00.4
[    3.573443] hub 7-0:1.0: USB hub found
[    3.573968] hub 7-0:1.0: 1 port detected
[    3.576149] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.576704] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[    3.577207] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.577696] usb usb8: Product: xHCI Host Controller
[    3.578180] usb usb8: Manufacturer: Linux 6.6.7xen-irq-dbg-1+ xhci-hcd
[    3.578665] usb usb8: SerialNumber: 0000:c3:00.4
[    3.579384] hub 8-0:1.0: USB hub found
[    3.579930] hub 8-0:1.0: 1 port detected
[    3.582764] usbcore: registered new interface driver usbserial_generic
[    3.583284] usbserial: USB Serial support registered for generic
[    3.583828] i8042: PNP: PS/2 Controller [PNP0303:KBC0] at 0x60,0x64 irq 1
[    3.584345] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    3.587532] i8042: Warning: Keylock active
[    3.588328] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.589020] mousedev: PS/2 mouse device common for all mice
[    3.589879] rtc_cmos 00:01: RTC can wake from S4
[    3.590816] rtc_cmos 00:01: registered as rtc0
[    3.591388] rtc_cmos 00:01: setting system clock to 2023-12-20T16:20:50 UTC (1703089250)
[    3.591946] rtc_cmos 00:01: using ACPI '\_SB.PCI0.LPC0.RTC' for 'wp' GPIO lookup
[    3.591953] acpi PNP0B00:00: GPIO: looking up wp-gpios
[    3.591955] acpi PNP0B00:00: GPIO: looking up wp-gpio
[    3.591957] rtc_cmos 00:01: using lookup tables for GPIO lookup
[    3.591958] rtc_cmos 00:01: No GPIO consumer wp found
[    3.591998] rtc_cmos 00:01: alarms up to one month, 114 bytes nvram
[    3.592537] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    3.593071] device-mapper: uevent: version 1.0.3
[    3.593701] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[    3.594444] amd_pstate: driver load is disabled, boot with specific mode to enable this
[    3.595605] hid: raw HID events driver (C) Jiri Kosina
[    3.596196] usbcore: registered new interface driver usbhid
[    3.596742] usbhid: USB HID core driver
[    3.597427] drop_monitor: Initializing network drop monitor service
[    3.600139] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    3.608433] Initializing XFRM netlink socket
[    3.609033] NET: Registered PF_INET6 protocol family
[    3.616709] Segment Routing with IPv6
[    3.617318] RPL Segment Routing with IPv6
[    3.617850] In-situ OAM (IOAM) with IPv6
[    3.618408] mip6: Mobile IPv6
[    3.618977] NET: Registered PF_PACKET protocol family
[    3.620779] IPI shorthand broadcast: enabled
[    3.621372] AVX2 version of gcm_enc/dec engaged.
[    3.622537] AES CTR mode by8 optimization enabled
[    3.625177] sched_clock: Marking stable (3590001784, 34803970)->(3629667163, -4861409)
[    3.626147] registered taskstats version 1
[    3.629858] Loading compiled-in X.509 certificates
[    3.637039] Loaded X.509 cert 'Build time autogenerated kernel key: 3f6a57fb3f3898b7be9c82c1820e4f9123e8e07f'
[    3.640240] page_owner is disabled
[    3.640977] Key type .fscrypt registered
[    3.642041] Key type fscrypt-provisioning registered
[    3.643230] Btrfs loaded, zoned=yes, fsverity=yes
[    3.643833] Key type big_key registered
[    3.650301] Key type encrypted registered
[    3.654185] integrity: Loading X.509 certificate: UEFI:db
[    3.654865] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    3.655408] integrity: Loading X.509 certificate: UEFI:db
[    3.655969] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    3.656517] integrity: Loading X.509 certificate: UEFI:db
[    3.657087] integrity: Loaded X.509 cert 'frame.work-LaptopAMDDB: 02'
[    3.668807] ima: No TPM chip found, activating TPM-bypass!
[    3.669405] Loading compiled-in module X.509 certificates
[    3.670256] Loaded X.509 cert 'Build time autogenerated kernel key: 3f6a57fb3f3898b7be9c82c1820e4f9123e8e07f'
[    3.670851] ima: Allocated hash algorithm: sha256
[    3.671414] ima: No architecture policies found
[    3.671994] evm: Initialising EVM extended attributes:
[    3.672576] evm: security.selinux
[    3.673148] evm: security.SMACK64 (disabled)
[    3.673734] evm: security.SMACK64EXEC (disabled)
[    3.674306] evm: security.SMACK64TRANSMUTE (disabled)
[    3.674879] evm: security.SMACK64MMAP (disabled)
[    3.675429] evm: security.apparmor (disabled)
[    3.675988] evm: security.ima
[    3.676533] evm: security.capability
[    3.677078] evm: HMAC attrs: 0x1
[    3.739415] alg: No test for 842 (842-scomp)
[    3.739988] alg: No test for 842 (842-generic)
[    3.767874] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    3.814911] usb 7-1: new high-speed USB device number 2 using xhci_hcd
[    3.819325] PM:   Magic number: 3:509:338
[    3.819949] thermal thermal_zone1: hash matches
[    3.820517] tty tty59: hash matches
[    3.821075] acpi ACPI0007:00: hash matches
[    3.821640] memory memory188: hash matches
[    3.827251] RAS: Correctable Errors collector initialized.
[    3.827959] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    3.828724] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    3.829366] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    3.829961] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    3.830536] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    3.831162] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    3.831774] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    3.832380] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    3.832914] clk: Disabling unused clocks
[    3.834832] Freeing unused decrypted memory: 2028K
[    3.836676] Freeing unused kernel image (initmem) memory: 3944K
[    3.837289] Write protecting the kernel read-only data: 34816k
[    3.848397] Freeing unused kernel image (rodata/data gap) memory: 1928K
[    3.920182] usb 1-1: New USB device found, idVendor=046d, idProduct=c548, bcdDevice= 5.01
[    3.921326] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.922113] usb 1-1: Product: USB Receiver
[    3.922602] usb 1-1: Manufacturer: Logitech
[    3.941614] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:08.1/0000:c1:00.3/usb1/1-1/1-1:1.0/0003:046D:C548.0001/input/input3
[    3.994179] hid-generic 0003:046D:C548.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:c1:00.3-1/input0
[    3.999679] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:08.1/0000:c1:00.3/usb1/1-1/1-1:1.1/0003:046D:C548.0002/input/input4
[    4.000461] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:c1:00.3/usb1/1-1/1-1:1.1/0003:046D:C548.0002/input/input5
[    4.052994] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:08.1/0000:c1:00.3/usb1/1-1/1-1:1.1/0003:046D:C548.0002/input/input6
[    4.054106] hid-generic 0003:046D:C548.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:c1:00.3-1/input1
[    4.059586] hid-generic 0003:046D:C548.0003: hiddev96,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:c1:00.3-1/input2
[    4.173867] usb 1-4: new full-speed USB device number 3 using xhci_hcd
[    4.331188] usb 1-4: New USB device found, idVendor=27c6, idProduct=609c, bcdDevice= 1.00
[    4.332337] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.332855] usb 1-4: Product: Goodix USB2.0 MISC
[    4.333363] usb 1-4: Manufacturer: Goodix Technology Co., Ltd.
[    4.333870] usb 1-4: SerialNumber: UIDD5F04A7B_XXXX_MOC_B0
[    4.455868] usb 1-5: new high-speed USB device number 4 using xhci_hcd
[    4.586538] usb 1-5: New USB device found, idVendor=0e8d, idProduct=e616, bcdDevice= 1.00
[    4.587740] usb 1-5: New USB device strings: Mfr=5, Product=6, SerialNumber=7
[    4.588334] usb 1-5: Product: Wireless_Device
[    4.588837] usb 1-5: Manufacturer: MediaTek Inc.
[    4.589331] usb 1-5: SerialNumber: 000000000
[    5.140011] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    5.140651] Run /init as init process
[    5.141834]   with arguments:
[    5.141838]     /init
[    5.141841]     placeholder
[    5.141844]   with environment:
[    5.141846]     HOME=/
[    5.141849]     TERM=linux
[    5.167475] systemd[1]: systemd 254.7-1.fc39 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    5.168549] systemd[1]: Detected virtualization vm-other.
[    5.169080] systemd[1]: Detected architecture x86-64.
[    5.169592] systemd[1]: Running in initrd.
[    5.172792] systemd[1]: No hostname configured, using default hostname.
[    5.173462] systemd[1]: Hostname set to <fedora>.
[    5.207794] usb 7-1: New USB device found, idVendor=17ef, idProduct=a392, bcdDevice= d.24
[    5.208898] usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.209752] usb 7-1: Product: USB2.0 Hub
[    5.210276] usb 7-1: Manufacturer: VIA Labs, Inc.
[    5.268344] hub 7-1:1.0: USB hub found
[    5.269161] hub 7-1:1.0: 4 ports detected
[    5.285405] systemd[1]: bpf-lsm: LSM BPF program attached
[    5.330850] usb 8-1: new SuperSpeed Plus Gen 2x1 USB device number 2 using xhci_hcd
[    5.395298] systemd[1]: Queued start job for default target initrd.target.
[    5.402828] systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System.
[    5.404153] systemd[1]: Reached target slices.target - Slice Units.
[    5.405285] systemd[1]: Reached target swap.target - Swaps.
[    5.406463] systemd[1]: Reached target timers.target - Timer Units.
[    5.407704] systemd[1]: Listening on dbus.socket - D-Bus System Message Bus Socket.
[    5.409012] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    5.410378] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[    5.411768] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    5.413165] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    5.414448] systemd[1]: Reached target sockets.target - Socket Units.
[    5.417373] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    5.418771] systemd[1]: memstrack.service - Memstrack Anylazing Service was skipped because no trigger condition checks were met.
[    5.421707] systemd[1]: Starting systemd-journald.service - Journal Service...
[    5.424450] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    5.427152] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[    5.429861] systemd[1]: Starting systemd-vconsole-setup.service - Virtual Console Setup...
[    5.431634] systemd-journald[343]: Collecting audit messages is disabled.
[    5.448268] fuse: init (API version 7.39)
[    5.450991] i2c_dev: i2c /dev entries driver
[    5.455473] usb 8-1: New USB device found, idVendor=17ef, idProduct=a391, bcdDevice= d.24
[    5.456175] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.456856] usb 8-1: Product: USB3.1 Hub
[    5.457527] usb 8-1: Manufacturer: VIA Labs, Inc.
[    5.460646] xen:xen_evtchn: Event-channel device installed
[    5.484211] xen_pciback: backend is vpci
[    5.491794] hub 8-1:1.0: USB hub found
[    5.492715] hub 8-1:1.0: 4 ports detected
[    5.507117] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    5.509334] systemd[1]: Started systemd-journald.service - Journal Service.
[    5.513755] Rounding down aligned max_sectors from 4294967295 to 4294967288
[    5.514496] db_root: cannot open: /etc/target
[    5.520192] xen_acpi_processor: Uploading Xen processor PM info
[    6.034860] usb 7-1.3: new high-speed USB device number 3 using xhci_hcd
[    6.178506] usb 7-1.3: New USB device found, idVendor=17ef, idProduct=a394, bcdDevice= d.23
[    6.179957] usb 7-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.181377] usb 7-1.3: Product: USB2.0 Hub
[    6.182785] usb 7-1.3: Manufacturer: VIA Labs, Inc.
[    6.226975] hub 7-1.3:1.0: USB hub found
[    6.228755] hub 7-1.3:1.0: 4 ports detected
[    6.258918] usb 8-1.1: new SuperSpeed USB device number 3 using xhci_hcd
[    6.273627] usb 8-1.1: New USB device found, idVendor=17ef, idProduct=a387, bcdDevice=31.03
[    6.275001] usb 8-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[    6.276363] usb 8-1.1: Product: USB-C Dock Ethernet
[    6.277712] usb 8-1.1: Manufacturer: Realtek
[    6.279071] usb 8-1.1: SerialNumber: 301000001
[    6.399571] usb 8-1.3: new SuperSpeed Plus Gen 2x1 USB device number 4 using xhci_hcd
[    6.432260] usb 8-1.3: New USB device found, idVendor=17ef, idProduct=a393, bcdDevice= d.23
[    6.433735] usb 8-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.435192] usb 8-1.3: Product: USB3.1 Hub
[    6.436957] usb 8-1.3: Manufacturer: VIA Labs, Inc.
[    6.445418] acpi FRMW0004:00: GPIO: looking up 0 in _CRS
[    6.445485] amd_gpio AMDI0030:00: Invalid config param 0014
[    6.445489] gpio gpiochip0: Persistence not supported for GPIO 84
[    6.445983] acpi FRMW0005:00: GPIO: looking up 0 in _CRS
[    6.446971] acpi PIXA3854:00: GPIO: looking up 0 in _CRS
[    6.446987] amd_gpio AMDI0030:00: Invalid config param 0014
[    6.446997] gpio gpiochip0: Persistence not supported for GPIO 5
[    6.447025] amd_gpio AMDI0030:00: Invalid config param 0014
[    6.447030] gpio gpiochip0: Persistence not supported for GPIO 8
[    6.470213] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    6.471338] hub 8-1.3:1.0: USB hub found
[    6.471396] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[    6.472464] hub 8-1.3:1.0: 4 ports detected
[    6.476169] ccp 0000:c1:00.2: enabling device (0000 -> 0002)
[    6.476964] xen_register_gsi: xen: registering gsi 36 triggering 0 polarity 1
[    6.476966] xen_register_pirq: before xen_irq_from_gsi: gsi 36 triggering 0 set_pirq 1
[    6.476995] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 36 triggering 0 shareable 1 name ioapic-level
[    6.477016] xen_register_pirq: xen: --> pirq=36 -> irq=36 (gsi=36)
[    6.477018] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 36, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[    6.478244] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[    6.487556] ccp 0000:c1:00.2: tee: ring init command failed (0x00000006)
[    6.488432] ccp 0000:c1:00.2: tee: failed to init ring buffer
[    6.489276] ccp 0000:c1:00.2: tee initialization failed
[    6.490091] ccp 0000:c1:00.2: psp initialization failed
[    6.511297] GPIO 8 is active: 0x18141b00
[    6.594051] input: PIXA3854:00 093A:0274 Mouse as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0004/input/input7
[    6.595827] input: PIXA3854:00 093A:0274 Touchpad as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0004/input/input8
[    6.596058] hid-generic 0018:093A:0274.0004: input,hidraw3: I2C HID v1.00 Mouse [PIXA3854:00 093A:0274] on i2c-PIXA3854:00
[    6.736650] input: PIXA3854:00 093A:0274 Mouse as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0004/input/input9
[    6.738732] input: PIXA3854:00 093A:0274 Touchpad as /devices/platform/AMDI0010:03/i2c-1/i2c-PIXA3854:00/0018:093A:0274.0004/input/input10
[    6.740825] hid-multitouch 0018:093A:0274.0004: input,hidraw3: I2C HID v1.00 Mouse [PIXA3854:00 093A:0274] on i2c-PIXA3854:00
[    7.021071] usb 7-1.3.3: new high-speed USB device number 4 using xhci_hcd
[    7.181839] usb 7-1.3.3: New USB device found, idVendor=17ef, idProduct=a395, bcdDevice=60.70
[    7.181954] usb 7-1.3.3: New USB device strings: Mfr=10, Product=11, SerialNumber=0
[    7.182002] usb 7-1.3.3: Product: USB2.0 Hub
[    7.182029] usb 7-1.3.3: Manufacturer: Lenovo
[    7.220014] hub 7-1.3.3:1.0: USB hub found
[    7.220761] hub 7-1.3.3:1.0: 4 ports detected
[    7.514391] usb 7-1.3.3.1: new full-speed USB device number 5 using xhci_hcd
[    7.618898] usb 7-1.3.3.1: New USB device found, idVendor=04b4, idProduct=521a, bcdDevice= 0.00
[    7.618981] usb 7-1.3.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    7.619022] usb 7-1.3.3.1: Product: USB-I2C Bridge
[    7.619051] usb 7-1.3.3.1: Manufacturer: Cypress Semiconductor
[    7.739398] usb 7-1.3.3.2: new full-speed USB device number 6 using xhci_hcd
[    7.861913] usb 7-1.3.3.2: New USB device found, idVendor=17ef, idProduct=30d1, bcdDevice= 0.42
[    7.861987] usb 7-1.3.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.862025] usb 7-1.3.3.2: Product: ThinkPad USB-C Dock Gen2 USB Audio
[    7.862059] usb 7-1.3.3.2: Manufacturer: Lenovo
[    7.862085] usb 7-1.3.3.2: SerialNumber: 000000000000
[    7.967374] hid-generic 0003:17EF:30D1.0005: hiddev97,hidraw4: USB HID v1.11 Device [Lenovo ThinkPad USB-C Dock Gen2 USB Audio] on usb-0000:c3:00.4-1.3.3.2/input3
[   11.804373] i2c_hid_acpi i2c-FRMW0004:00: failed to reset device: -61
[   11.804374] i2c_hid_acpi i2c-FRMW0005:00: failed to reset device: -61
[   17.948362] i2c_hid_acpi i2c-FRMW0004:00: failed to reset device: -61
[   17.948362] i2c_hid_acpi i2c-FRMW0005:00: failed to reset device: -61
[   24.092360] i2c_hid_acpi i2c-FRMW0004:00: failed to reset device: -61
[   24.092360] i2c_hid_acpi i2c-FRMW0005:00: failed to reset device: -61
[   30.236338] i2c_hid_acpi i2c-FRMW0004:00: failed to reset device: -61
[   30.236337] i2c_hid_acpi i2c-FRMW0005:00: failed to reset device: -61
[   31.260334] i2c_hid_acpi i2c-FRMW0004:00: can't add hid device: -61
[   31.260333] i2c_hid_acpi i2c-FRMW0005:00: can't add hid device: -61
[   31.279635] i2c_hid_acpi: probe of i2c-FRMW0004:00 failed with error -61
[   31.280084] i2c_hid_acpi: probe of i2c-FRMW0005:00 failed with error -61
[   31.288999] usbcore: registered new device driver r8152-cfgselector
[   31.292174] ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
[   31.292989] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:16/LNXVIDEO:00/input/input11
[   31.313050] nvme 0000:02:00.0: platform quirk: setting simple suspend
[   31.313274] nvme nvme0: pci function 0000:02:00.0
[   31.313709] xen_register_gsi: xen: registering gsi 42 triggering 0 polarity 1
[   31.313713] xen_register_pirq: before xen_irq_from_gsi: gsi 42 triggering 0 set_pirq 1
[   31.313733] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 42 triggering 0 shareable 1 name ioapic-level
[   31.313762] xen_register_pirq: xen: --> pirq=42 -> irq=42 (gsi=42)
[   31.313765] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 42, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[   31.352932] nvme nvme0: 16/0/0 default/read/poll queues
[   31.359717]  nvme0n1: p1 p2 p3 p4
[   31.384874] BTRFS: device fsid 71b1dc59-ea00-484c-b5e4-ee77ede771db devid 1 transid 6106 /dev/nvme0n1p1 scanned by (udev-worker) (526)
[   31.458995] r8152-cfgselector 8-1.1: reset SuperSpeed USB device number 3 using xhci_hcd
[   31.485713] r8152 8-1.1:1.0: load rtl8153b-2 v2 04/27/23 successfully
[   31.514621] r8152 8-1.1:1.0 eth0: v1.12.13
[   31.514701] usbcore: registered new interface driver r8152
[   31.547423] r8152 8-1.1:1.0 enp195s0f4u1u1: renamed from eth0
[   32.945238] [drm] amdgpu kernel modesetting enabled.
[   32.961317] amdgpu: Virtual CRAT table created for CPU
[   32.961353] amdgpu: Topology: Add CPU node
[   32.961702] amdgpu 0000:c1:00.0: enabling device (0006 -> 0007)
[   32.961775] xen_register_gsi: xen: registering gsi 38 triggering 0 polarity 1
[   32.961777] xen_register_pirq: before xen_irq_from_gsi: gsi 38 triggering 0 set_pirq 1
[   32.961788] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 38, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[   32.961792] Already setup the GSI :38
[   32.961830] [drm] initializing kernel modesetting (IP DISCOVERY 0x1002:0x15BF 0xF111:0x0006 0xC4).
[   32.962050] [drm] register mmio base: 0x90500000
[   32.962081] [drm] register mmio size: 524288
[   32.964925] [drm] add ip block number 0 <soc21_common>
[   32.964958] [drm] add ip block number 1 <gmc_v11_0>
[   32.964969] [drm] add ip block number 2 <ih_v6_0>
[   32.964978] [drm] add ip block number 3 <psp>
[   32.964987] [drm] add ip block number 4 <smu>
[   32.964995] [drm] add ip block number 5 <dm>
[   32.965004] [drm] add ip block number 6 <gfx_v11_0>
[   32.965013] [drm] add ip block number 7 <sdma_v6_0>
[   32.965022] [drm] add ip block number 8 <vcn_v4_0>
[   32.965031] [drm] add ip block number 9 <jpeg_v4_0>
[   32.965040] [drm] add ip block number 10 <mes_v11_0>
[   32.965292] amdgpu 0000:c1:00.0: amdgpu: Fetched VBIOS from VFCT
[   32.965327] amdgpu: ATOM BIOS: 113-PHXGENERIC-001
[   32.995413] [drm] VCN(0) encode/decode are enabled in VM mode
[   33.007497] amdgpu 0000:c1:00.0: [drm:jpeg_v4_0_early_init [amdgpu]] JPEG decode is enabled in VM mode
[   33.015913] Console: switching to colour dummy device 80x25
[   33.017734] amdgpu 0000:c1:00.0: vgaarb: deactivate vga console
[   33.017742] amdgpu 0000:c1:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[   33.017793] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[   33.017826] amdgpu 0000:c1:00.0: amdgpu: VRAM: 512M 0x0000008000000000 - 0x000000801FFFFFFF (512M used)
[   33.017833] amdgpu 0000:c1:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[   33.017840] amdgpu 0000:c1:00.0: amdgpu: AGP: 267894784M 0x0000008400000000 - 0x0000FFFFFFFFFFFF
[   33.017857] [drm] Detected VRAM RAM=512M, BAR=512M
[   33.017862] [drm] RAM width 128bits DDR5
[   33.081259] [drm] amdgpu: 512M of VRAM memory ready
[   33.081273] [drm] amdgpu: 31159M of GTT memory ready.
[   33.081304] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   33.081855] [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
[   33.082579] [drm] Loading DMUB firmware via PSP: version=0x08002A81
[   33.088436] [drm] Found VCN firmware Version ENC: 1.10 DEC: 5 VEP: 0 Revision: 0
[   33.088450] amdgpu 0000:c1:00.0: amdgpu: Will use PSP to load VCN firmware
[   33.114244] [drm] reserve 0x4000000 from 0x8018000000 for PSP TMR
[   33.629701] amdgpu 0000:c1:00.0: amdgpu: RAS: optional ras ta ucode is not available
[   33.638277] amdgpu 0000:c1:00.0: amdgpu: RAP: optional rap ta ucode is not available
[   33.638309] amdgpu 0000:c1:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[   33.672591] amdgpu 0000:c1:00.0: amdgpu: SMU is initialized successfully!
[   33.673698] [drm] Display Core v3.2.247 initialized on DCN 3.1.4
[   33.673717] [drm] DP-HDMI FRL PCON supported
[   33.676123] [drm] DMUB hardware initialized: version=0x08002A81
[   33.763283] [drm] PSR support 1, DC PSR ver 0, sink PSR ver 3 DPCD caps 0x7b su_y_granularity 4
[   33.829816] [drm] DM_MST: Differing MST start on aconnector: 0000000085716dab [id: 112]
[   33.832901] [drm] kiq ring mec 3 pipe 1 q 0
[   33.835708] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[   33.835761] amdgpu 0000:c1:00.0: [drm:jpeg_v4_0_hw_init [amdgpu]] JPEG decode initialized successfully.
[   33.849922] amdgpu: HMM registered 512MB device memory
[   33.853383] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[   33.853411] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[   33.853542] amdgpu: Virtual CRAT table created for GPU
[   33.853694] amdgpu: Topology: Add dGPU node [0x15bf:0x1002]
[   33.853700] kfd kfd: amdgpu: added device 1002:15bf
[   33.853715] amdgpu 0000:c1:00.0: amdgpu: SE 1, SH per SE 2, CU per SH 6, active_cu_number 12
[   33.853881] amdgpu 0000:c1:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[   33.853887] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[   33.853893] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[   33.853899] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[   33.853905] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[   33.853910] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[   33.853916] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[   33.853921] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[   33.853927] amdgpu 0000:c1:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[   33.853933] amdgpu 0000:c1:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[   33.853939] amdgpu 0000:c1:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
[   33.853944] amdgpu 0000:c1:00.0: amdgpu: ring jpeg_dec uses VM inv eng 1 on hub 8
[   33.853950] amdgpu 0000:c1:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
[   33.858872] [drm] ring gfx_32768.1.1 was added
[   33.859389] [drm] ring compute_32768.2.2 was added
[   33.859889] [drm] ring sdma_32768.3.3 was added
[   33.859965] [drm] ring gfx_32768.1.1 ib test pass
[   33.860020] [drm] ring compute_32768.2.2 ib test pass
[   33.860084] [drm] ring sdma_32768.3.3 ib test pass
[   33.863361] [drm] Initialized amdgpu 3.54.0 20150101 for 0000:c1:00.0 on minor 0
[   33.870240] fbcon: amdgpudrmfb (fb0) is primary device
[   33.870438] [drm] DSC precompute is not needed.
[   34.798762] Console: switching to colour frame buffer device 282x94
[   34.837995] amdgpu 0000:c1:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[   35.044417] [drm] Downstream port present 1, type 2
[   35.684903] BTRFS info (device nvme0n1p1): first mount of filesystem 71b1dc59-ea00-484c-b5e4-ee77ede771db
[   35.684990] BTRFS info (device nvme0n1p1): using crc32c (crc32c-intel) checksum algorithm
[   35.685030] BTRFS info (device nvme0n1p1): using free space tree
[   35.705421] BTRFS info (device nvme0n1p1): enabling ssd optimizations
[   35.705467] BTRFS info (device nvme0n1p1): auto enabling async discard
[   36.428373] ucsi_acpi USBC000:00: error -ETIMEDOUT: PPM init failed
[   36.545992] systemd-journald[343]: Received SIGTERM from PID 1 (systemd).
[   36.704556] audit: type=1404 audit(1703089283.612:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
[   36.758757] SELinux:  policy capability network_peer_controls=1
[   36.759436] SELinux:  policy capability open_perms=1
[   36.760152] SELinux:  policy capability extended_socket_class=1
[   36.760683] SELinux:  policy capability always_check_network=0
[   36.761337] SELinux:  policy capability cgroup_seclabel=1
[   36.761897] SELinux:  policy capability nnp_nosuid_transition=1
[   36.762402] SELinux:  policy capability genfs_seclabel_symlinks=1
[   36.762899] SELinux:  policy capability ioctl_skip_cloexec=0
[   36.820222] audit: type=1403 audit(1703089283.728:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
[   36.823639] systemd[1]: Successfully loaded SELinux policy in 119.603ms.
[   36.912835] systemd[1]: Relabeled /dev, /dev/shm, /run, /sys/fs/cgroup in 44.046ms.
[   36.924193] systemd[1]: systemd 254.7-1.fc39 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[   36.930207] systemd[1]: Detected virtualization vm-other.
[   36.931715] systemd[1]: Detected architecture x86-64.
[   37.075396] systemd[1]: bpf-lsm: LSM BPF program attached
[   37.289254] systemd-sysv-generator[745]: SysV service '/etc/rc.d/init.d/xencommons' lacks a native systemd unit file. ~ Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it safe, robust and future-proof. ! This compatibility logic is deprecated, expect removal soon. !
[   37.318417] zram: Added device: zram0
[   37.626898] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[   37.636392] systemd[1]: Stopped initrd-switch-root.service - Switch Root.
[   37.650185] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[   37.653676] systemd[1]: Created slice machine.slice - Virtual Machine and Container Slice.
[   37.657102] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[   37.660839] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[   37.664476] systemd[1]: Created slice system-sshd\x2dkeygen.slice - Slice /system/sshd-keygen.
[   37.668147] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[   37.671967] systemd[1]: Created slice system-systemd\x2dzram\x2dsetup.slice - Slice /system/systemd-zram-setup.
[   37.675833] systemd[1]: Created slice user.slice - User and Session Slice.
[   37.678366] systemd[1]: systemd-ask-password-plymouth.path: Deactivated successfully.
[   37.680111] systemd[1]: Stopped systemd-ask-password-plymouth.path.
[   37.683496] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[   37.685636] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[   37.687344] systemd[1]: Stopped target initrd-switch-root.target - Switch Root.
[   37.689870] systemd[1]: Stopped target initrd-fs.target - Initrd File Systems.
[   37.691480] systemd[1]: Stopped target initrd-root-fs.target - Initrd Root File System.
[   37.692750] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[   37.694129] systemd[1]: Reached target slices.target - Slice Units.
[   37.695298] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[   37.701423] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[   37.719004] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[   37.727200] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[   37.729779] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[   37.736227] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[   37.741134] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
[   37.746968] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[   37.749776] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[   37.754596] systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket.
[   37.759378] systemd[1]: dev-hugepages.mount - Huge Pages File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/mm/hugepages).
[   37.779139] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[   37.795049] systemd[1]: Mounting proc-xen.mount - Mount /proc/xen files...
[   37.805431] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[   37.812891] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[   37.814183] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[   37.814831] systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
[   37.820548] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[   37.827139] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   37.834185] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[   37.840710] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[   37.848429] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[   37.854962] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[   37.862915] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[   37.869302] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[   37.870505] systemd[1]: Stopping plymouth-start.service...
[   37.874303] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
[   37.875648] systemd[1]: Stopped plymouth-switch-root.service.
[   37.881354] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
[   37.882137] systemd[1]: Stopped systemd-fsck-root.service - File System Check on Root Device.
[   37.886215] loop: module loaded
[   37.889300] systemd[1]: Starting systemd-journald.service - Journal Service...
[   37.897019] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[   37.904359] systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line...
[   37.907463] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
[   37.914436] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[   37.915750] systemd-journald[767]: Collecting audit messages is enabled.
[   37.923720] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[   37.925607] systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
[   37.926396] systemd[1]: Stopped systemd-vconsole-setup.service - Virtual Console Setup.
[   37.928434] audit: type=1131 audit(1703089284.836:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   37.934345] systemd[1]: Started systemd-journald.service - Journal Service.
[   37.936652] audit: type=1130 audit(1703089284.844:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   38.054001] audit: type=1131 audit(1703089284.962:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   38.165584] audit: type=1130 audit(1703089285.073:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   38.255788] audit: type=1130 audit(1703089285.163:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   38.290161] audit: type=1130 audit(1703089285.198:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   38.292707] audit: type=1131 audit(1703089285.198:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   38.306137] audit: type=1130 audit(1703089285.214:11): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   38.546875] systemd-journald[767]: Received client request to flush runtime journal.
[   38.603230] systemd-journald[767]: /var/log/journal/c80b79eae1794302b76e09e5265106e3/system.journal: Journal file uses a different sequence number ID, rotating.
[   38.606672] systemd-journald[767]: Rotating system journal.
[   39.074619] zram0: detected capacity change from 0 to 16777216
[   39.163912] amd-pmf AMDI0102:00: registered PMF device successfully
[   39.180829] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[   39.182652] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[   39.188036] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[   39.200288] ACPI: bus type thunderbolt registered
[   39.201949] xen_register_gsi: xen: registering gsi 44 triggering 0 polarity 1
[   39.201952] xen_register_pirq: before xen_irq_from_gsi: gsi 44 triggering 0 set_pirq 1
[   39.201972] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 44 triggering 0 shareable 1 name ioapic-level
[   39.202579] input: PC Speaker as /devices/platform/pcspkr/input/input12
[   39.203551] xen_register_pirq: xen: --> pirq=44 -> irq=44 (gsi=44)
[   39.203863] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 44, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[   39.251528] xen_register_gsi: xen: registering gsi 45 triggering 0 polarity 1
[   39.251535] xen_register_pirq: before xen_irq_from_gsi: gsi 45 triggering 0 set_pirq 1
[   39.251571] xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi 45 triggering 0 shareable 1 name ioapic-level
[   39.251604] xen_register_pirq: xen: --> pirq=45 -> irq=45 (gsi=45)
[   39.251606] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 45, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[   39.256570] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   39.268060] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   39.299450] Adding 8388604k swap on /dev/zram0.  Priority:100 extents:1 across:8388604k SSDsc
[   39.330768] Bluetooth: Core ver 2.22
[   39.335414] NET: Registered PF_BLUETOOTH protocol family
[   39.337202] Bluetooth: HCI device and connection manager initialized
[   39.339137] Bluetooth: HCI socket layer initialized
[   39.343261] Bluetooth: L2CAP socket layer initialized
[   39.344808] Bluetooth: SCO socket layer initialized
[   39.363395] usb 1-5: using ACPI '\_SB.PCI0.GP17.XHC0.RHUB.PRT5' for 'reset' GPIO lookup
[   39.363410] acpi device:29: GPIO: looking up reset-gpios
[   39.363413] acpi device:29: GPIO: looking up reset-gpio
[   39.363415] usb 1-5: using lookup tables for GPIO lookup
[   39.363417] usb 1-5: No GPIO consumer reset found
[   39.363571] usbcore: registered new interface driver btusb
[   39.369259] Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20231120183620
[   39.511066] Bluetooth: hci0: Device setup in 143958 usecs
[   39.513384] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[   39.573971] Bluetooth: hci0: AOSP extensions version v1.00
[   39.576040] Bluetooth: hci0: AOSP quality report is supported
[   39.609806] mt7921e 0000:01:00.0: enabling device (0000 -> 0002)
[   39.612306] xen_register_gsi: xen: registering gsi 46 triggering 0 polarity 1
[   39.612313] xen_register_pirq: before xen_irq_from_gsi: gsi 46 triggering 0 set_pirq 1
[   39.612357] xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: 46, setup_gsi.triggering: 1, setup_gsi.polarity: 1
[   39.612371] Already setup the GSI :46
[   39.647661] mt7921e 0000:01:00.0: ASIC revision: 79220010
[   39.732611] mt7921e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20231120183400a

[   39.768922] mt7921e 0000:01:00.0: WM Firmware Version: ____000000, Build Time: 20231120183441
[   40.224298] RPC: Registered named UNIX socket transport module.
[   40.225758] RPC: Registered udp transport module.
[   40.226795] RPC: Registered tcp transport module.
[   40.227601] RPC: Registered tcp-with-tls transport module.
[   40.228353] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   40.584280] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   40.585545] Bluetooth: BNEP filters: protocol multicast
[   40.588311] Bluetooth: BNEP socket layer initialized
[   40.591552] Bluetooth: MGMT ver 1.22
[   40.899078] mt7921e 0000:01:00.0 wlp1s0: renamed from wlan0
[   40.987298] NET: Registered PF_QIPCRTR protocol family
[   41.429820] r8152 8-1.1:1.0 enp195s0f4u1u1: carrier on
[   45.545611] wlp1s0: authenticate with 60:22:32:37:20:46
[   46.051225] wlp1s0: send auth to 60:22:32:37:20:46 (try 1/3)
[   46.171592] wlp1s0: authenticate with 60:22:32:37:20:46
[   46.181255] wlp1s0: send auth to 60:22:32:37:20:46 (try 1/3)
[   46.212961] wlp1s0: authenticated
[   46.216890] wlp1s0: associate with 60:22:32:37:20:46 (try 1/3)
[   46.231035] wlp1s0: RX AssocResp from 60:22:32:37:20:46 (capab=0x1111 status=0 aid=10)
[   46.265679] wlp1s0: associated
[   46.267046] wlp1s0: Limiting TX power to 23 (23 - 0) dBm as advertised by 60:22:32:37:20:46
[   60.011874] systemd-journald[767]: /var/log/journal/c80b79eae1794302b76e09e5265106e3/user-1000.journal: Journal file uses a different sequence number ID, rotating.

[-- Attachment #5: linux-debug_xen_irq_setup.diff --]
[-- Type: text/x-patch, Size: 2045 bytes --]

diff --git a/arch/x86/pci/xen.c b/arch/x86/pci/xen.c
index 652cd53e77f6..ccee3e331eb8 100644
--- a/arch/x86/pci/xen.c
+++ b/arch/x86/pci/xen.c
@@ -69,6 +69,8 @@ static int xen_register_pirq(u32 gsi, int triggering, bool set_pirq)
 	int shareable = 0;
 	char *name;
 
+	printk(KERN_DEBUG "xen_register_pirq: before xen_irq_from_gsi: gsi %u triggering %i set_pirq %d\n", gsi, triggering, set_pirq);
+
 	irq = xen_irq_from_gsi(gsi);
 	if (irq > 0)
 		return irq;
@@ -94,12 +96,13 @@ static int xen_register_pirq(u32 gsi, int triggering, bool set_pirq)
 		shareable = 1;
 		name = "ioapic-level";
 	}
+	printk(KERN_DEBUG "xen_register_pirq: after HYPERVISOR_physdev_op, before xen_bind_pirq_gsi_to_irq: gsi %u triggering %i shareable %i name %s\n", gsi, triggering, shareable, name);
 
 	irq = xen_bind_pirq_gsi_to_irq(gsi, map_irq.pirq, shareable, name);
 	if (irq < 0)
 		goto out;
 
-	printk(KERN_DEBUG "xen: --> pirq=%d -> irq=%d (gsi=%d)\n", map_irq.pirq, irq, gsi);
+	printk(KERN_DEBUG "xen_register_pirq: xen: --> pirq=%d -> irq=%d (gsi=%d)\n", map_irq.pirq, irq, gsi);
 out:
 	return irq;
 }
@@ -123,7 +126,7 @@ static int xen_register_gsi(u32 gsi, int triggering, int polarity)
 	if (!xen_pv_domain())
 		return -1;
 
-	printk(KERN_DEBUG "xen: registering gsi %u triggering %d polarity %d\n",
+	printk(KERN_DEBUG "xen_register_gsi: xen: registering gsi %u triggering %i polarity %i\n",
 			gsi, triggering, polarity);
 
 	irq = xen_register_pirq(gsi, triggering, true);
@@ -132,6 +135,8 @@ static int xen_register_gsi(u32 gsi, int triggering, int polarity)
 	setup_gsi.triggering = (triggering == ACPI_EDGE_SENSITIVE ? 0 : 1);
 	setup_gsi.polarity = (polarity == ACPI_ACTIVE_HIGH ? 0 : 1);
 
+    printk(KERN_DEBUG "xen_register_gsi: Before HYPERVISOR_physdev_op  setup_gsi.gsi: %u, setup_gsi.triggering: %i, setup_gsi.polarity: %i\n", setup_gsi.gsi, setup_gsi.triggering, setup_gsi.polarity);
+   
 	rc = HYPERVISOR_physdev_op(PHYSDEVOP_setup_gsi, &setup_gsi);
 	if (rc == -EEXIST)
 		printk(KERN_INFO "Already setup the GSI :%d\n", gsi);

[-- Attachment #6: xl-dmesg-xen-4.17.3-pre-6.6.7xen-irq-dbg-1+ --]
[-- Type: application/octet-stream, Size: 23388 bytes --]

(XEN) parameter "irq_deadline_ms" unknown!
 Xen 4.17.3-pre
(XEN) Xen version 4.17.3-pre (sch@) (gcc (GCC) 13.2.1 20231205 (Red Hat 13.2.1-6)) debug=y Mon Dec 18 16:47:31 CET 2023
(XEN) Latest ChangeSet: Mon Dec 18 16:23:14 2023 +0100 git:89612cf732
(XEN) build-id: 7b05b3f90c160aef7b340d1ecd784b37e1507cfd
(XEN) Bootloader: GRUB 2.06
(XEN) Command line: placeholder irq_deadline_ms=40 no-real-mode edd=off
(XEN) Xen image load base address: 0x4f400000
(XEN) Video information:
(XEN)  VGA is graphics mode 2256x1504, 32 bpp
(XEN) Disc information:
(XEN)  Found 0 MBR signatures
(XEN)  Found 1 EDD information structures
(XEN) CPU Vendor: AMD, Family 25 (0x19), Model 116 (0x74), Stepping 1 (raw 00a70f41)
(XEN) Enabling Supervisor Shadow Stacks
(XEN) EFI RAM map:
(XEN)  [0000000000000000, 000000000009efff] (usable)
(XEN)  [000000000009f000, 00000000000bffff] (reserved)
(XEN)  [0000000000100000, 0000000009afffff] (usable)
(XEN)  [0000000009b00000, 0000000009dfffff] (reserved)
(XEN)  [0000000009e00000, 0000000009efffff] (usable)
(XEN)  [0000000009f00000, 0000000009f3bfff] (ACPI NVS)
(XEN)  [0000000009f3c000, 000000004235ffff] (usable)
(XEN)  [0000000042360000, 000000004455ffff] (reserved)
(XEN)  [0000000044560000, 0000000044568fff] (usable)
(XEN)  [0000000044569000, 000000004456cfff] (reserved)
(XEN)  [000000004456d000, 000000004456efff] (usable)
(XEN)  [000000004456f000, 000000004456ffff] (reserved)
(XEN)  [0000000044570000, 000000005077efff] (usable)
(XEN)  [000000005077f000, 0000000052f7efff] (reserved)
(XEN)  [0000000052f7f000, 000000005af7efff] (ACPI NVS)
(XEN)  [000000005af7f000, 000000005affefff] (ACPI data)
(XEN)  [000000005afff000, 000000005affffff] (usable)
(XEN)  [000000005b000000, 000000005bffffff] (reserved)
(XEN)  [000000005d790000, 000000005d7effff] (reserved)
(XEN)  [000000005d7f5000, 000000005fffffff] (reserved)
(XEN)  [00000000c0300000, 00000000c03fffff] (reserved)
(XEN)  [00000000fed80000, 00000000fed80fff] (reserved)
(XEN)  [00000000ff000000, 00000000ffffffff] (reserved)
(XEN)  [0000000100000000, 000000107e2fffff] (usable)
(XEN)  [0000001080000000, 00000010c01fffff] (reserved)
(XEN) ACPI: RSDP 5AFFE014, 0024 (r2 INSYDE)
(XEN) ACPI: XSDT 5AF9E228, 016C (r1 INSYDE EDK2            2       1000013)
(XEN) ACPI: FACP 5AFEF000, 010C (r5 INSYDE EDK2            2 ACPI    40000)
(XEN) ACPI Warning (tbfadt-0459): Optional field "Pm2ControlBlock" has zero address or length: 0000000000000000/1 [20070126]
(XEN) ACPI: DSDT 5AFDF000, 93A6 (r2 INSYDE EDK2            2 ACPI    40000)
(XEN) ACPI: FACS 5AEB7000, 0040
(XEN) ACPI: UEFI 5AF67000, 01CF (r1 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFF4000, 8416 (r2 INSYDE EDK2            2 ACPI    40000)
(XEN) ACPI: SSDT 5AFF2000, 0ABD (r2 INSYDE EDK2         1000 ACPI    40000)
(XEN) ACPI: ASF! 5AFF1000, 00A5 (r32 INSYDE EDK2            2 ACPI    40000)
(XEN) ACPI: BOOT 5AFF0000, 0028 (r1 INSYDE EDK2            2 ACPI    40000)
(XEN) ACPI: HPET 5AFEE000, 0038 (r1 INSYDE EDK2            2 ACPI    40000)
(XEN) ACPI: APIC 5AFED000, 0138 (r3 INSYDE EDK2            2 ACPI    40000)
(XEN) ACPI: MCFG 5AFEC000, 003C (r1 INSYDE EDK2            2 ACPI    40000)
(XEN) ACPI: SLIC 5AFEB000, 0176 (r1 INSYDE EDK2            2 ACPI    40000)
(XEN) ACPI: VFCT 5AFDA000, 4284 (r1 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFD9000, 00F8 (r2 INSYDE EDK2         1000 ACPI    40000)
(XEN) ACPI: SSDT 5AFD3000, 547E (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: CRAT 5AFD2000, 0F10 (r1 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: CDIT 5AFD1000, 0029 (r1 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFD0000, 0F8D (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFCF000, 0EC1 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFCE000, 0931 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFCB000, 13EC (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFFD000, 077A (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFCA000, 0737 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFC8000, 15C8 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFC5000, 2A8F (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFBB000, 9821 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: FPDT 5AFBA000, 0044 (r1 INSYDE EDK2            2 ACPI    40000)
(XEN) ACPI: BGRT 5AFB9000, 0038 (r1 INSYDE EDK2            2 ACPI    40000)
(XEN) ACPI: WSMT 5AFB8000, 0028 (r1 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: MHSP 5AFEA000, 00C8 (r4 INSYDE EDK2     20505348 ACPI    40000)
(XEN) ACPI: SSDT 5AFE9000, 00E5 (r2 INSYDE EDK2            4 ACPI    40000)
(XEN) ACPI: IVRS 5AFB7000, 01A4 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFB6000, 0747 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFB5000, 0C88 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFB4000, 0057 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFB2000, 170B (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFB1000, 0FF7 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFA7000, 97E3 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFA2000, 4FEB (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFA1000, 0C7F (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFA0000, 0956 (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AF9F000, 008D (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) ACPI: SSDT 5AFCD000, 0EAD (r2 INSYDE EDK2            1 ACPI    40000)
(XEN) System RAM: 64708MB (66261880kB)
(XEN) No NUMA configuration found
(XEN) Faking a node at 0000000000000000-000000107e300000
(XEN) Domain heap initialised
(XEN) vesafb: framebuffer at 0x0000008800000000, mapped to 0xffff82c000201000, using 13568k, total 13568k
(XEN) vesafb: mode is 2256x1504x32, linelength=9216, font 8x16
(XEN) vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
(XEN) SMBIOS 3.5 present.
(XEN) Using APIC driver default
(XEN) ACPI: PM-Timer IO Port: 0x408 (32 bits)
(XEN) ACPI: v5 SLEEP INFO: control[0:0], status[0:0]
(XEN) ACPI: SLEEP INFO: pm1x_cnt[1:404,1:0], pm1x_evt[1:400,1:0]
(XEN) ACPI: 32/64X FACS address mismatch in FADT - 5aeb7000/0000000000000000, using 32
(XEN) ACPI:             wakeup_vec[5aeb700c], vec_size[20]
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) Overriding APIC driver with bigsmp
(XEN) ACPI: IOAPIC (id[0x21] address[0xfec00000] gsi_base[0])
(XEN) IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
(XEN) ACPI: IOAPIC (id[0x22] address[0xfec01000] gsi_base[24])
(XEN) IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
(XEN) ACPI: IRQ0 used by override.
(XEN) ACPI: IRQ2 used by override.
(XEN) ACPI: IRQ9 used by override.
(XEN) ACPI: HPET id: 0x10228210 base: 0xfed00000
(XEN) PCI: MCFG configuration 0: base e0000000 segment 0000 buses 00 - ff
(XEN) PCI: Not using MCFG for segment 0000 bus 00-ff
(XEN) ACPI: BGRT: invalidating v1 image at 0x4b822018
(XEN) Using ACPI (MADT) for SMP configuration information
(XEN) SMP: Allowing 16 CPUs (0 hotplug CPUs)
(XEN) IRQ limits: 56 GSI, 3272 MSI/MSI-X
(XEN) AMD-Vi: IOMMU Extended Features:
(XEN) - Peripheral Page Service Request
(XEN) - NX bit
(XEN) - Guest APIC Physical Processor Interrupt
(XEN) - Invalidate All Command
(XEN) - Guest APIC
(XEN) - Performance Counters
(XEN) - Host Address Translation Size: 0x2
(XEN) - Guest Address Translation Size: 0
(XEN) - Guest CR3 Root Table Level: 0x1
(XEN) - Maximum PASID: 0xf
(XEN) - SMI Filter Register: 0x1
(XEN) - SMI Filter Register Count: 0x1
(XEN) - Guest Virtual APIC Modes: 0x1
(XEN) - Dual PPR Log: 0x2
(XEN) - Dual Event Log: 0x2
(XEN) - Secure ATS
(XEN) - User / Supervisor Page Protection
(XEN) - Device Table Segmentation: 0x3
(XEN) - PPR Log Overflow Early Warning
(XEN) - PPR Automatic Response
(XEN) - Memory Access Routing and Control: 0x1
(XEN) - Block StopMark Message
(XEN) - Performance Optimization
(XEN) - MSI Capability MMIO Access
(XEN) - Guest I/O Protection
(XEN) - Enhanced PPR Handling
(XEN) - Invalidate IOTLB Type
(XEN) - VM Table Size: 0x2
(XEN) - Guest Access Bit Update Disable
(XEN) Switched to APIC driver x2apic_mixed
(XEN) CPU0: 1600 ... 3300 MHz
(XEN) xstate: size: 0x988 and states: 0x2e7
(XEN) CPU0: AMD Fam19h machine check reporting enabled
(XEN) Fixup #GP[0000]: ffff82d04044ca4e [init_speculation_mitigations+0xae0/0x1ece] -> ffff82d04038f0b5
(XEN) Vulnerable to SRSO, without suitable microcode to mitigate
(XEN) Speculative mitigation facilities:
(XEN)   Hardware hints: STIBP_ALWAYS IBRS_FAST IBRS_SAME_MODE BTC_NO IBPB_RET
(XEN)   Hardware features: IBPB IBRS STIBP SSBD PSFD L1D_FLUSH
(XEN)   Compiled-in support: INDIRECT_THUNK SHADOW_PAGING
(XEN)   Xen settings: BTI-Thunk JMP, SPEC_CTRL: IBRS+ STIBP+ SSBD- PSFD-, Other: IBPB-ctxt BRANCH_HARDEN
(XEN)   Support for HVM VMs: MSR_SPEC_CTRL MSR_VIRT_SPEC_CTRL RSB
(XEN)   Support for PV VMs: None
(XEN)   XPTI (64-bit PV only): Dom0 disabled, DomU disabled (without PCID)
(XEN)   PV L1TF shadowing: Dom0 disabled, DomU disabled
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Platform timer is 14.318MHz HPET
(XEN) Detected 3293.817 MHz processor.
(XEN) Freed 1016kB unused BSS memory
(XEN) EFI memory map:
(XEN)  0000000000000-0000000003fff type=2 attr=000000000000000f
(XEN)  0000000004000-0000000086fff type=7 attr=000000000000000f
(XEN)  0000000087000-0000000087fff type=4 attr=000000000000000f
(XEN)  0000000088000-000000008efff type=7 attr=000000000000000f
(XEN)  000000008f000-000000009efff type=2 attr=000000000000000f
(XEN)  000000009f000-000000009ffff type=0 attr=000000000000000f
(XEN)  0000000100000-0000000ee0fff type=2 attr=000000000000000f
(XEN)  0000000ee1000-0000009afffff type=7 attr=000000000000000f
(XEN)  0000009b00000-0000009dfffff type=0 attr=000000000000000f
(XEN)  0000009e00000-0000009efffff type=7 attr=000000000000000f
(XEN)  0000009f00000-0000009f3bfff type=10 attr=000000000000000f
(XEN)  0000009f3c000-0000017a30fff type=2 attr=000000000000000f
(XEN)  0000017a31000-000003108cfff type=7 attr=000000000000000f
(XEN)  000003108d000-000003437efff type=1 attr=000000000000000f
(XEN)  000003437f000-00000343fefff type=4 attr=000000000000000f
(XEN)  00000343ff000-000003f941fff type=7 attr=000000000000000f
(XEN)  000003f942000-000003fc9ffff type=1 attr=000000000000000f
(XEN)  000003fca0000-000003fffdfff type=2 attr=000000000000000f
(XEN)  000003fffe000-00000403fffff type=4 attr=000000000000000f
(XEN)  0000040400000-00000404a2fff type=7 attr=000000000000000f
(XEN)  00000404a3000-00000404c2fff type=4 attr=000000000000000f
(XEN)  00000404c3000-00000404d8fff type=3 attr=000000000000000f
(XEN)  00000404d9000-00000404e9fff type=4 attr=000000000000000f
(XEN)  00000404ea000-000004051afff type=3 attr=000000000000000f
(XEN)  000004051b000-000004056bfff type=4 attr=000000000000000f
(XEN)  000004056c000-0000040574fff type=3 attr=000000000000000f
(XEN)  0000040575000-0000041d42fff type=4 attr=000000000000000f
(XEN)  0000041d43000-0000041d5ffff type=3 attr=000000000000000f
(XEN)  0000041d60000-000004235ffff type=4 attr=000000000000000f
(XEN)  0000042360000-000004455ffff type=0 attr=000000000000000f
(XEN)  0000044560000-0000044566fff type=3 attr=000000000000000f
(XEN)  0000044567000-0000044568fff type=4 attr=000000000000000f
(XEN)  0000044569000-000004456cfff type=6 attr=800000000000000f
(XEN)  000004456d000-000004456efff type=4 attr=000000000000000f
(XEN)  000004456f000-000004456ffff type=6 attr=800000000000000f
(XEN)  0000044570000-0000044579fff type=7 attr=000000000000000f
(XEN)  000004457a000-000004457cfff type=2 attr=000000000000000f
(XEN)  000004457d000-00000446acfff type=7 attr=000000000000000f
(XEN)  00000446ad000-000004477efff type=1 attr=000000000000000f
(XEN)  000004477f000-000004ac55fff type=7 attr=000000000000000f
(XEN)  000004ac56000-000004b382fff type=4 attr=000000000000000f
(XEN)  000004b383000-000004b3fffff type=7 attr=000000000000000f
(XEN)  000004b400000-000004b5cefff type=4 attr=000000000000000f
(XEN)  000004b5cf000-000004b713fff type=7 attr=000000000000000f
(XEN)  000004b714000-000004b714fff type=4 attr=000000000000000f
(XEN)  000004b715000-000004b716fff type=7 attr=000000000000000f
(XEN)  000004b717000-000004e77efff type=4 attr=000000000000000f
(XEN)  000004e77f000-000004f5fffff type=7 attr=000000000000000f
(XEN)  000004f600000-000004f9f4fff type=2 attr=000000000000000f
(XEN)  000004f9f5000-000004fa50fff type=7 attr=000000000000000f
(XEN)  000004fa51000-000005077efff type=3 attr=000000000000000f
(XEN)  000005077f000-0000050f7efff type=5 attr=800000000000000f
(XEN)  0000050f7f000-0000051f7efff type=6 attr=800000000000000f
(XEN)  0000051f7f000-0000052f7efff type=0 attr=000000000000000f
(XEN)  0000052f7f000-000005af7efff type=10 attr=000000000000000f
(XEN)  000005af7f000-000005affefff type=9 attr=000000000000000f
(XEN)  000005afff000-000005affffff type=4 attr=000000000000000f
(XEN)  0000100000000-000107e2fffff type=7 attr=000000000000000f
(XEN)  00000000a0000-00000000bffff type=0 attr=0000000000000000
(XEN)  000005b000000-000005bffffff type=0 attr=0000000000000009
(XEN)  000005d790000-000005d7effff type=0 attr=0000000000000000
(XEN)  000005d7f5000-000005fffffff type=0 attr=0000000000000000
(XEN)  00000c0300000-00000c03fffff type=11 attr=8000000000000001
(XEN)  00000fed80000-00000fed80fff type=11 attr=8000000000000001
(XEN)  00000ff000000-00000ffffffff type=11 attr=8000000000000001
(XEN)  0001080000000-000109fffffff type=0 attr=0000000000000000
(XEN)  00010a0000000-00010c01fffff type=11 attr=8000000000000001
(XEN) alt table ffff82d04049b1d0 -> ffff82d0404a85ba
(XEN) AMD-Vi: Disabled HAP memory map sharing with IOMMU
(XEN) AMD-Vi: IOMMU 0 Enabled.
(XEN) I/O virtualisation enabled
(XEN)  - Dom0 mode: Relaxed
(XEN) Interrupt remapping enabled
(XEN) nr_sockets: 1
(XEN) Enabled directed EOI with ioapic_ack_old on!
(XEN) Enabling APIC mode.  Using 2 I/O APICs
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using old ACK method
(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) Allocated console ring of 128 KiB.
(XEN) mwait-idle: does not run on family 25 model 116
(XEN) HVM: ASIDs enabled.
(XEN) SVM: Supported advanced features:
(XEN)  - Nested Page Tables (NPT)
(XEN)  - Last Branch Record (LBR) Virtualisation
(XEN)  - Next-RIP Saved on #VMEXIT
(XEN)  - VMCB Clean Bits
(XEN)  - DecodeAssists
(XEN)  - Virtual VMLOAD/VMSAVE
(XEN)  - Virtual GIF
(XEN)  - Pause-Intercept Filter
(XEN)  - Pause-Intercept Filter Threshold
(XEN)  - TSC Rate MSR
(XEN)  - NPT Supervisor Shadow Stack
(XEN)  - MSR_SPEC_CTRL virtualisation
(XEN) HVM: SVM enabled
(XEN) HVM: Hardware Assisted Paging (HAP) detected
(XEN) HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) alt table ffff82d04049b1d0 -> ffff82d0404a85ba
(XEN) Brought up 16 CPUs
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Adding cpu 0 to runqueue 0
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 1 to runqueue 0
(XEN) Adding cpu 2 to runqueue 0
(XEN) Adding cpu 3 to runqueue 0
(XEN) Adding cpu 4 to runqueue 0
(XEN) Adding cpu 5 to runqueue 0
(XEN) Adding cpu 6 to runqueue 0
(XEN) Adding cpu 7 to runqueue 0
(XEN) Adding cpu 8 to runqueue 0
(XEN) Adding cpu 9 to runqueue 0
(XEN) Adding cpu 10 to runqueue 0
(XEN) Adding cpu 11 to runqueue 0
(XEN) Adding cpu 12 to runqueue 0
(XEN) Adding cpu 13 to runqueue 0
(XEN) Adding cpu 14 to runqueue 0
(XEN) Adding cpu 15 to runqueue 0
(XEN) mcheck_poll: Machine check polling timer started.
(XEN) xenoprof: Initialization failed. AMD processor family 25 is not supported
(XEN) Running stub recovery selftests...
(XEN) Fixup #UD[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d04038efbb
(XEN) Fixup #GP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d04038efbb
(XEN) Fixup #SS[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d04038efbb
(XEN) Fixup #BP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d04038efbb
(XEN) NX (Execute Disable) protection active
(XEN) Dom0 has maximum 1096 PIRQs
(XEN) *** Building a PV Dom0 ***
(XEN) ELF: phdr: paddr=0x1000000 memsz=0x201d3ec
(XEN) ELF: phdr: paddr=0x3200000 memsz=0x87b000
(XEN) ELF: phdr: paddr=0x3a7b000 memsz=0x37000
(XEN) ELF: phdr: paddr=0x3ab2000 memsz=0xd4e000
(XEN) ELF: memory: 0x1000000 -> 0x4800000
(XEN) ELF: note: PHYS32_ENTRY = 0x1000000
(XEN) ELF: note: GUEST_OS = "linux"
(XEN) ELF: note: GUEST_VERSION = "2.6"
(XEN) ELF: note: XEN_VERSION = "xen-3.0"
(XEN) ELF: note: VIRT_BASE = 0xffffffff80000000
(XEN) ELF: note: INIT_P2M = 0x8000000000
(XEN) ELF: note: ENTRY = 0xffffffff83ac4390
(XEN) ELF: note: FEATURES = "!writable_page_tables"
(XEN) ELF: note: PAE_MODE = "yes"
(XEN) ELF: note: unknown (0xd)
(XEN) ELF: note: MOD_START_PFN = 0x1
(XEN) ELF: note: PADDR_OFFSET = 0
(XEN) ELF: note: HYPERCALL_PAGE = 0xffffffff81fc7000
(XEN) ELF: note: SUPPORTED_FEATURES = 0x8801
(XEN) ELF: note: LOADER = "generic"
(XEN) ELF: note: SUSPEND_CANCEL = 0x1
(XEN) ELF: addresses:
(XEN)     virt_base        = 0xffffffff80000000
(XEN)     elf_paddr_offset = 0x0
(XEN)     virt_offset      = 0xffffffff80000000
(XEN)     virt_kstart      = 0xffffffff81000000
(XEN)     virt_kend        = 0xffffffff84800000
(XEN)     virt_entry       = 0xffffffff83ac4390
(XEN)     p2m_base         = 0x8000000000
(XEN)  Xen  kernel: 64-bit, lsb
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x4800000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000001038000000->0000001040000000 (16244129 pages to be allocated)
(XEN)  Init. ramdisk: 000000107070b000->000000107e1ff271
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff84800000
(XEN)  Phys-Mach map: 0000008000000000->0000008007c9c4b0
(XEN)  Start info:    ffffffff84800000->ffffffff848004b8
(XEN)  Page tables:   ffffffff84801000->ffffffff8482a000
(XEN)  Boot stack:    ffffffff8482a000->ffffffff8482b000
(XEN)  TOTAL:         ffffffff80000000->ffffffff84c00000
(XEN)  ENTRY ADDRESS: ffffffff83ac4390
(XEN) Dom0 has maximum 16 VCPUs
(XEN) ELF: phdr 0 at 0xffffffff81000000 -> 0xffffffff8301d3ec
(XEN) ELF: phdr 1 at 0xffffffff83200000 -> 0xffffffff83a7b000
(XEN) ELF: phdr 2 at 0xffffffff83a7b000 -> 0xffffffff83ab2000
(XEN) ELF: phdr 3 at 0xffffffff83ab2000 -> 0xffffffff84800000
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Scrubbing Free RAM in background
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) Xen is relinquishing VGA console.
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 632kB init memory
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 9, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PCI add device 0000:00:00.0
(XEN) PCI add device 0000:00:00.2
(XEN) PCI add device 0000:00:01.0
(XEN) PCI add device 0000:00:02.0
(XEN) PCI add device 0000:00:02.2
(XEN) PCI add device 0000:00:02.4
(XEN) PCI add device 0000:00:03.0
(XEN) PCI add device 0000:00:03.1
(XEN) PCI add device 0000:00:04.0
(XEN) PCI add device 0000:00:04.1
(XEN) PCI add device 0000:00:08.0
(XEN) PCI add device 0000:00:08.1
(XEN) PCI add device 0000:00:08.2
(XEN) PCI add device 0000:00:08.3
(XEN) PCI add device 0000:00:14.0
(XEN) PCI add device 0000:00:14.3
(XEN) PCI add device 0000:00:18.0
(XEN) PCI add device 0000:00:18.1
(XEN) PCI add device 0000:00:18.2
(XEN) PCI add device 0000:00:18.3
(XEN) PCI add device 0000:00:18.4
(XEN) PCI add device 0000:00:18.5
(XEN) PCI add device 0000:00:18.6
(XEN) PCI add device 0000:00:18.7
(XEN) PCI add device 0000:01:00.0
(XEN) PCI add device 0000:02:00.0
(XEN) PCI add device 0000:c1:00.0
(XEN) PCI add device 0000:c1:00.1
(XEN) PCI add device 0000:c1:00.2
(XEN) PCI add device 0000:c1:00.3
(XEN) PCI add device 0000:c1:00.4
(XEN) PCI add device 0000:c1:00.5
(XEN) PCI add device 0000:c1:00.6
(XEN) PCI add device 0000:c2:00.0
(XEN) PCI add device 0000:c2:00.1
(XEN) PCI add device 0000:c3:00.0
(XEN) PCI add device 0000:c3:00.3
(XEN) PCI add device 0000:c3:00.4
(XEN) PCI add device 0000:c3:00.5
(XEN) PCI add device 0000:c3:00.6
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 8, setup_gsi.triggering: 0,setup_gsi.polarity: 0
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 13, setup_gsi.triggering: 0,setup_gsi.polarity: 0
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 7, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 10, setup_gsi.triggering: 0,setup_gsi.polarity: 0
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 6, setup_gsi.triggering: 0,setup_gsi.polarity: 0
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 50, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 51, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 52, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 53, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 1, setup_gsi.triggering: 0,setup_gsi.polarity: 0
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 40, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 37, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 38, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 40, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 46, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 47, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 40, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) d0: Forcing read-only access to MFN fed00
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 37, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 38, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 46, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 47, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 36, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 42, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 38, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 44, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 45, setup_gsi.triggering: 1,setup_gsi.polarity: 1
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0xc001029b unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0xc001029a unimplemented
(XEN) PHYSDEVOP_setup_gsi: setup_gsi.gsi: 46, setup_gsi.triggering: 1,setup_gsi.polarity: 1

^ permalink raw reply related	[relevance 3%]

* [BUG]i2c_hid_acpi broken with 4.17.2 on Framework Laptop 13 AMD
@ 2023-12-03  9:56  5% Sébastien Chaumat
    0 siblings, 1 reply; 200+ results
From: Sébastien Chaumat @ 2023-12-03  9:56 UTC (permalink / raw)
  To: xen-devel

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

Hello,

 Trying to get the Framework Laptop 13 AMD to work with QubesOS I hit the
following Xen issue :

Xen version : 4.17.2
Kernel : 6.5.12-300.fc39.x86_64
CPU  model name : AMD Ryzen 7 7840U w/ Radeon  780M Graphics

The touchpad is not working (not detected by evtest) because ( see below
for XXXXXXX values) :
[   10.215870] i2c_hid_acpi i2c-FRMXXXXXXX: failed to reset device: -61

which is maybe related to the previous messages :

[    2.065750] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
...
[    2.464598] amd_gpio AMDI0030:00: failed to enable wake-up interrupt

QubesOS issue : https://github.com/QubesOS/qubes-issues/issues/8734

Possibly related issues :

 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1971597

Here's the complete diff of dmesg with and without xen loaded up to the
failed i2c_hid_acpi init :

[    0.000000] Command line: placeholder
root=UUID=71b1dc59-ea00-484c-b5e4-ee77ede771db ro rhgb quiet
[    0.000000] Released 0 page(s)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: ACPI=0x5affe000 ACPI 2.0=0x5affe014
TPMFinalLog=0x5af3f000 SMBIOS=0x51677000 SMBIOS 3.0=0x51674000
(MEMATTR=0x4b719018 unusable) ESRT=0x5af9b018 MOKvar=0x5187c000
[    0.000000] Hypervisor detected: Xen PV
[    0.026644] tsc: Detected 3294.105 MHz processor
[    0.026645] tsc: Detected 3293.856 MHz TSC
[    0.026732] MTRR map: 3 entries (0 fixed + 3 variable; max 16), built
from 8 variable MTRRs
[    0.026733] MTRRs set to read-only
[    0.026735] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP  UC  UC

[    0.026753] esrt: Reserving ESRT space from 0x000000005af9b018 to
0x000000005af9b050.
[    1.042047] ACPI: BGRT 0x000000005AFB8000 000038 (v01 INSYDE EDK2
00000002 ACPI 00040000)
[    1.042095] Setting APIC routing to Xen PV.
[    1.042116] NUMA turned off
[    1.101730] On node 0, zone DMA: 128 pages in unavailable ranges
[    1.136828] p2m virtual area at (____ptrval____), size is 40000000
[    1.401457] Remapped 728641 page(s)
[    1.402499] Booting kernel on Xen
[    1.402500] Xen version: 4.17.2 (preserve-AD)
[    1.406607] xen: PV spinlocks enabled
[    1.406609] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes,
linear)
[    1.406610] Kernel command line: placeholder
root=UUID=71b1dc59-ea00-484c-b5e4-ee77ede771db ro rhgb quiet
[    1.406661] Unknown kernel command line parameters "placeholder rhgb",
will be passed to user space.
[    1.406867] random: crng init done
[    1.411447] Built 1 zonelists, mobility grouping on.  Total pages:
15403418
[    1.497107] Memory: 60184272K/62591736K available (18432K kernel code,
3267K rwdata, 14476K rodata, 4532K init, 17364K bss, 2407212K reserved, 0K
cma-reserved)
[    1.508627] xen:events: Using FIFO-based ABI
[    1.508634] xen: --> pirq=1 -> irq=1 (gsi=1)
[    1.508636] xen: --> pirq=2 -> irq=2 (gsi=2)
[    1.508638] xen: --> pirq=3 -> irq=3 (gsi=3)
[    1.508639] xen: --> pirq=4 -> irq=4 (gsi=4)
[    1.508640] xen: --> pirq=5 -> irq=5 (gsi=5)
[    1.508642] xen: --> pirq=6 -> irq=6 (gsi=6)
[    1.508643] xen: --> pirq=7 -> irq=7 (gsi=7)
[    1.508644] xen: --> pirq=8 -> irq=8 (gsi=8)
[    1.508646] xen: --> pirq=9 -> irq=9 (gsi=9)
[    1.508647] xen: --> pirq=10 -> irq=10 (gsi=10)
[    1.508649] xen: --> pirq=11 -> irq=11 (gsi=11)
[    1.508650] xen: --> pirq=12 -> irq=12 (gsi=12)
[    1.508652] xen: --> pirq=13 -> irq=13 (gsi=13)
[    1.508653] xen: --> pirq=14 -> irq=14 (gsi=14)
[    1.508654] xen: --> pirq=15 -> irq=15 (gsi=15)
[    1.508913] printk: console [hvc0] enabled
[    1.543395] ACPI BIOS Warning (bug): Incorrect checksum in table [BGRT]
- 0xC1, should be 0x4C (20230331/utcksum-58)
[    1.543432] clocksource: xen: mask: 0xffffffffffffffff max_cycles:
0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    1.543434] Xen: using vcpuop timer interface
[    1.543436] installing Xen timer for CPU 0
[    1.543449] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles:
0x2f7aa0787ee, max_idle_ns: 440795321263 ns
[    1.543452] Calibrating delay loop (skipped), value calculated using
timer frequency.. 6587.71 BogoMIPS (lpj=3293856)
[    1.543485] Spectre V2 : Mitigation: Retpolines
[    1.543487] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    1.543489] Speculative Store Bypass: Vulnerable
[    1.543505] x86/fpu: Enabled xstate features 0xe7, context size is 2432
bytes, using 'compacted' format.
[    1.556516] cpu 0 spinlock event irq 57
[    1.556526] VPMU disabled by hypervisor.
[    1.556812] Performance Events: PMU not available due to virtualization,
using software events only.
[    1.559433] NMI watchdog: Perf NMI watchdog permanently disabled
[    1.559727] installing Xen timer for CPU 1
[    1.559965] installing Xen timer for CPU 2
[    1.560180] installing Xen timer for CPU 3
[    1.560396] installing Xen timer for CPU 4
[    1.560599] installing Xen timer for CPU 5
[    1.560813] installing Xen timer for CPU 6
[    1.561021] installing Xen timer for CPU 7
[    1.561230] installing Xen timer for CPU 8
[    1.561420] installing Xen timer for CPU 9
[    1.561597] installing Xen timer for CPU 10
[    1.561783] installing Xen timer for CPU 11
[    1.561980] installing Xen timer for CPU 12
[    1.562155] installing Xen timer for CPU 13
[    1.562327] installing Xen timer for CPU 14
[    1.562503] installing Xen timer for CPU 15
[    1.562551] cpu 1 spinlock event irq 137
[    1.562551] cpu 2 spinlock event irq 138
[    1.562551] cpu 3 spinlock event irq 139
[    1.562551] cpu 4 spinlock event irq 140
[    1.562551] cpu 5 spinlock event irq 141
[    1.562551] cpu 6 spinlock event irq 142
[    1.562551] cpu 7 spinlock event irq 143
[    1.562551] cpu 8 spinlock event irq 144
[    1.563499] cpu 9 spinlock event irq 145
[    1.563502] cpu 10 spinlock event irq 146
[    1.563502] cpu 11 spinlock event irq 147
[    1.563502] cpu 12 spinlock event irq 148
[    1.563502] cpu 13 spinlock event irq 149
[    1.563502] cpu 14 spinlock event irq 150
[    1.563502] cpu 15 spinlock event irq 151
[    1.573211] PM: RTC time: 09:08:20, date: 2023-12-03
[    1.573947] xen:grant_table: Grant tables using version 1 layout
[    1.573958] Grant table initialized
[    1.574502] audit: type=2000 audit(1701594499.512:1): state=initialized
audit_enabled=0 res=1
[    1.606054] xen: registering gsi 9 triggering 0 polarity 1
[    1.697597] xen: registering gsi 8 triggering 1 polarity 0
[    1.697705] xen: registering gsi 13 triggering 1 polarity 0
[    1.700360] xen: registering gsi 7 triggering 0 polarity 1
[    1.700819] xen: registering gsi 10 triggering 1 polarity 0
[    1.701110] xen: registering gsi 6 triggering 1 polarity 0
[    1.701690] xen: registering gsi 50 triggering 0 polarity 1
[    1.701706] xen: --> pirq=50 -> irq=50 (gsi=50)
[    1.701757] xen: registering gsi 51 triggering 0 polarity 1
[    1.701768] xen: --> pirq=51 -> irq=51 (gsi=51)
[    1.701810] xen: registering gsi 52 triggering 0 polarity 1
[    1.701818] xen: --> pirq=52 -> irq=52 (gsi=52)
[    1.701860] xen: registering gsi 53 triggering 0 polarity 1
[    1.701869] xen: --> pirq=53 -> irq=53 (gsi=53)
[    1.707071] xen:balloon: Initialising balloon driver
[    1.743187] resource: Expanded resource Reserved due to conflict with
PCI Bus 0000:00
[    1.743524] sysfb: VRAM smaller than advertised
[    1.759417] hugetlbfs: disabling because there are no supported hugepage
sizes
[    1.765826] xen: registering gsi 1 triggering 1 polarity 0
[    1.771944] PM-Timer failed consistency check  (0xffffff) - aborting.
[    1.775360] xen: registering gsi 40 triggering 0 polarity 1
[    1.775387] xen: --> pirq=40 -> irq=40 (gsi=40)
[    1.775481] xen: registering gsi 37 triggering 0 polarity 1
[    1.775494] xen: --> pirq=37 -> irq=37 (gsi=37)
[    1.775841] xen: registering gsi 38 triggering 0 polarity 1
[    1.775855] xen: --> pirq=38 -> irq=38 (gsi=38)
[    1.776235] xen: registering gsi 40 triggering 0 polarity 1
[    1.776238] Already setup the GSI :40
[    1.776281] xen: registering gsi 46 triggering 0 polarity 1
[    1.776293] xen: --> pirq=46 -> irq=46 (gsi=46)
[    1.776646] xen: registering gsi 47 triggering 0 polarity 1
[    1.776656] xen: --> pirq=47 -> irq=47 (gsi=47)
[    1.777614] clocksource: tsc: mask: 0xffffffffffffffff max_cycles:
0x2f7aa0787ee, max_idle_ns: 440795321263 ns
[    1.777677] clocksource: Switched to clocksource tsc
[    2.061207] pcieport 0000:00:02.2: PME: Signaling with IRQ 162
[    2.061369] pcieport 0000:00:02.4: PME: Signaling with IRQ 163
[    2.061604] pcieport 0000:00:03.1: PME: Signaling with IRQ 164
[    2.062263] pcieport 0000:00:04.1: PME: Signaling with IRQ 165
[    2.062813] pcieport 0000:00:08.1: PME: Signaling with IRQ 166
[    2.062953] xen: registering gsi 40 triggering 0 polarity 1
[    2.062967] Already setup the GSI :40
[    2.063063] pcieport 0000:00:08.2: PME: Signaling with IRQ 167
[    2.063213] pcieport 0000:00:08.3: PME: Signaling with IRQ 168
[    2.063345] efifb: probing for efifb
[    2.063985] efifb: No BGRT, not showing boot graphics
[    2.063986] efifb: framebuffer at 0x8800000000, using 13536k, total
13536k
[    2.063988] efifb: mode is 2256x1504x32, linelength=9216, pages=1
[    2.063989] efifb: scrolling: redraw
[    2.063990] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.064032] fbcon: Deferring console take-over
[    2.064033] fb0: EFI VGA frame buffer device
[    2.065750] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.065860] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.066008] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.066140] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.066370] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.066586] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.066818] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.066923] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.067082] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.067170] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.067296] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.067473] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.067669] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.067973] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.068215] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.068522] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW
(0x0)
[    2.068923] ACPI: thermal: Thermal Zone [TZ00] (26 C)
[    2.069085] ACPI: thermal: Thermal Zone [TZ01] (30 C)
[    2.069242] ACPI: thermal: Thermal Zone [TZ02] (28 C)
[    2.069402] ACPI: thermal: Thermal Zone [TZ03] (46 C)
[    2.072038] hpet_acpi_add: no address or irqs in _CRS
[    2.092763] xen: registering gsi 37 triggering 0 polarity 1
[    2.092769] Already setup the GSI :37
[    2.101751] xen: registering gsi 38 triggering 0 polarity 1
[    2.101755] Already setup the GSI :38
[    2.105493] xen: registering gsi 46 triggering 0 polarity 1
[    2.105496] Already setup the GSI :46
[    2.109521] xen: registering gsi 47 triggering 0 polarity 1
[    2.109525] Already setup the GSI :47
[    2.116721] rtc_cmos 00:01: setting system clock to 2023-12-03T09:08:21
UTC (1701594501)
[    2.117134] amd_pstate: driver load is disabled, boot with specific mode
to enable this
[    2.130271] input: AT Translated Set 2 keyboard as
/devices/platform/i8042/serio0/input/input2
[    2.138905] sched_clock: Marking stable (2104001974,
34790120)->(2142780210, -3988116)
[    2.464598] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    2.465229] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    2.465462] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    2.465694] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    2.466003] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    2.466189] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    2.466387] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    2.466584] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    3.790268]     placeholder
[    3.809946] usb 1-2: New USB device found, idVendor=1e7d,
idProduct=2e22, bcdDevice= 1.01
[    3.809950] usb 1-2: New USB device strings: Mfr=1, Product=2,
SerialNumber=0
[    3.809952] usb 1-2: Product: ROCCAT Kone XTD
[    3.809953] usb 1-2: Manufacturer: ROCCAT
[    3.826019] systemd[1]: Detected virtualization vm-other.
[    3.941883] usb 1-4: new full-speed USB device number 3 using xhci_hcd
[    4.099853] usb 1-4: New USB device found, idVendor=27c6,
idProduct=609c, bcdDevice= 1.00
[    4.099862] usb 1-4: New USB device strings: Mfr=1, Product=2,
SerialNumber=3
[    4.099866] usb 1-4: Product: Goodix USB2.0 MISC
[    4.099869] usb 1-4: Manufacturer: Goodix Technology Co., Ltd.
[    4.099873] usb 1-4: SerialNumber: UIDD5F04A7B_XXXX_MOC_B0
[    4.193119] systemd[1]: Finished kmod-static-nodes.service - Create List
of Static Device Nodes.
[    4.221808] usb 1-5: new high-speed USB device number 4 using xhci_hcd
[    4.936497] xen: registering gsi 36 triggering 0 polarity 1
[    4.936543] xen: --> pirq=36 -> irq=36 (gsi=36)
[    4.948276] ccp 0000:c1:00.2: tee: ring init command failed (0x00000005)
[    4.948285] ccp 0000:c1:00.2: tee: failed to init ring buffer
[    4.948287] ccp 0000:c1:00.2: tee initialization failed
[    4.948302] ccp 0000:c1:00.2: psp initialization failed
[    5.018031] fbcon: Taking over console
[    5.018181] Console: switching to colour frame buffer device 282x94
[   10.215870] i2c_hid_acpi i2c-FRMW0005:00: failed to reset device: -61
[   10.215917] i2c_hid_acpi i2c-PIXA3854:00: failed to reset device: -61
[   10.215950] i2c_hid_acpi i2c-FRMW0004:00: failed to reset device: -61
[   10.220217] i2c_hid_acpi i2c-FRMW0004:00: failed to change power setting.
[   16.359856] i2c_hid_acpi i2c-PIXA3854:00: failed to reset device: -61
[   16.359856] i2c_hid_acpi i2c-FRMW0004:00: failed to reset device: -61
[   16.359871] i2c_hid_acpi i2c-FRMW0005:00: failed to reset device: -61
[   22.503879] i2c_hid_acpi i2c-FRMW0005:00: failed to reset device: -61
[   22.503915] i2c_hid_acpi i2c-PIXA3854:00: failed to reset device: -61
[   22.503921] i2c_hid_acpi i2c-FRMW0004:00: failed to reset device: -61
[   28.647874] i2c_hid_acpi i2c-FRMW0005:00: failed to reset device: -61
[   28.647879] i2c_hid_acpi i2c-PIXA3854:00: failed to reset device: -61
[   28.647910] i2c_hid_acpi i2c-FRMW0004:00: failed to reset device: -61
[   29.671873] i2c_hid_acpi i2c-FRMW0005:00: can't add hid device: -61
[   29.671874] i2c_hid_acpi i2c-FRMW0004:00: can't add hid device: -61
[   29.671874] i2c_hid_acpi i2c-PIXA3854:00: can't add hid device: -61
[   29.686460] i2c_hid_acpi: probe of i2c-FRMW0005:00 failed with error -61
[   29.686492] i2c_hid_acpi: probe of i2c-PIXA3854:00 failed with error -61
[   29.686683] i2c_hid_acpi: probe of i2c-FRMW0004:00 failed with error -61

Thanks
Sébastien

[-- Attachment #2: Type: text/html, Size: 17010 bytes --]

^ permalink raw reply	[relevance 5%]

* [RFC KERNEL PATCH v2 3/3] xen/privcmd: Add new syscall to get gsi from irq
  @ 2023-11-24 10:31  5% ` Jiqian Chen
  0 siblings, 0 replies; 200+ results
From: Jiqian Chen @ 2023-11-24 10:31 UTC (permalink / raw)
  To: Juergen Gross, Stefano Stabellini, Oleksandr Tyshchenko,
	Thomas Gleixner, Boris Ostrovsky, Rafael J . Wysocki, Len Brown,
	Bjorn Helgaas, Roger Pau Monné,
	xen-devel, linux-kernel, linux-acpi
  Cc: Stefano Stabellini, Alex Deucher, Christian Koenig,
	Stewart Hildebrand, Xenia Ragiadakou, Honglei Huang, Julia Zhang,
	Huang Rui, Jiqian Chen, Huang Rui

In PVH dom0, it uses the linux local interrupt mechanism,
when it allocs irq for a gsi, it is dynamic, and follow
the principle of applying first, distributing first. And
if you debug the codes, you will find the irq number is
alloced from small to large, but the applying gsi number
is not, may gsi 38 comes before gsi 28, it causes the irq
number is not equal with the gsi number.
And when we passthrough a device, QEMU will use device's gsi
number to do mapping actions, see xen_pt_realize->
xc_physdev_map_pirq, but the gsi number is got from file
/sys/bus/pci/devices/xxxx:xx:xx.x/irq, irq!= gsi, so it will
fail when mapping.
And in current linux codes, there is no method to translate
irq to gsi for userspace.

For above purpose, this patch record the relationship of gsi
and irq when PVH dom0 do acpi_register_gsi_ioapic for devices
and adds a new syscall into privcmd to let userspace can get
that translation when they have a need.

Signed-off-by: Jiqian Chen <Jiqian.Chen@amd.com>
Signed-off-by: Huang Rui <ray.huang@amd.com>
---
 arch/x86/include/asm/apic.h      |  7 ++++++
 arch/x86/include/asm/xen/pci.h   |  5 ++++
 arch/x86/kernel/acpi/boot.c      |  2 +-
 arch/x86/pci/xen.c               | 21 +++++++++++++++++
 drivers/xen/events/events_base.c | 39 ++++++++++++++++++++++++++++++++
 drivers/xen/privcmd.c            | 20 ++++++++++++++++
 include/uapi/xen/privcmd.h       |  7 ++++++
 include/xen/events.h             |  5 ++++
 8 files changed, 105 insertions(+), 1 deletion(-)

diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h
index d21f48f1c242..5646444285ac 100644
--- a/arch/x86/include/asm/apic.h
+++ b/arch/x86/include/asm/apic.h
@@ -169,6 +169,8 @@ extern bool apic_needs_pit(void);
 
 extern void apic_send_IPI_allbutself(unsigned int vector);
 
+extern int acpi_register_gsi_ioapic(struct device *dev, u32 gsi,
+				    int trigger, int polarity);
 #else /* !CONFIG_X86_LOCAL_APIC */
 static inline void lapic_shutdown(void) { }
 #define local_apic_timer_c2_ok		1
@@ -183,6 +185,11 @@ static inline void apic_intr_mode_init(void) { }
 static inline void lapic_assign_system_vectors(void) { }
 static inline void lapic_assign_legacy_vector(unsigned int i, bool r) { }
 static inline bool apic_needs_pit(void) { return true; }
+static inline int acpi_register_gsi_ioapic(struct device *dev, u32 gsi,
+				    int trigger, int polarity)
+{
+	return (int)gsi;
+}
 #endif /* !CONFIG_X86_LOCAL_APIC */
 
 #ifdef CONFIG_X86_X2APIC
diff --git a/arch/x86/include/asm/xen/pci.h b/arch/x86/include/asm/xen/pci.h
index 9015b888edd6..aa8ded61fc2d 100644
--- a/arch/x86/include/asm/xen/pci.h
+++ b/arch/x86/include/asm/xen/pci.h
@@ -5,6 +5,7 @@
 #if defined(CONFIG_PCI_XEN)
 extern int __init pci_xen_init(void);
 extern int __init pci_xen_hvm_init(void);
+extern int __init pci_xen_pvh_init(void);
 #define pci_xen 1
 #else
 #define pci_xen 0
@@ -13,6 +14,10 @@ static inline int pci_xen_hvm_init(void)
 {
 	return -1;
 }
+static inline int pci_xen_pvh_init(void)
+{
+	return -1;
+}
 #endif
 #ifdef CONFIG_XEN_PV_DOM0
 int __init pci_xen_initial_domain(void);
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index d0918a75cb00..45b157e18c0b 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -739,7 +739,7 @@ static int acpi_register_gsi_pic(struct device *dev, u32 gsi,
 }
 
 #ifdef CONFIG_X86_LOCAL_APIC
-static int acpi_register_gsi_ioapic(struct device *dev, u32 gsi,
+int acpi_register_gsi_ioapic(struct device *dev, u32 gsi,
 				    int trigger, int polarity)
 {
 	int irq = gsi;
diff --git a/arch/x86/pci/xen.c b/arch/x86/pci/xen.c
index 652cd53e77f6..f056ab5c0a06 100644
--- a/arch/x86/pci/xen.c
+++ b/arch/x86/pci/xen.c
@@ -114,6 +114,21 @@ static int acpi_register_gsi_xen_hvm(struct device *dev, u32 gsi,
 				 false /* no mapping of GSI to PIRQ */);
 }
 
+static int acpi_register_gsi_xen_pvh(struct device *dev, u32 gsi,
+				    int trigger, int polarity)
+{
+	int irq;
+
+	irq = acpi_register_gsi_ioapic(dev, gsi, trigger, polarity);
+	if (irq < 0)
+		return irq;
+
+	if (xen_pvh_add_gsi_irq_map(gsi, irq) == -EEXIST)
+		printk(KERN_INFO "Already map the GSI :%u and IRQ: %d\n", gsi, irq);
+
+	return irq;
+}
+
 #ifdef CONFIG_XEN_PV_DOM0
 static int xen_register_gsi(u32 gsi, int triggering, int polarity)
 {
@@ -558,6 +573,12 @@ int __init pci_xen_hvm_init(void)
 	return 0;
 }
 
+int __init pci_xen_pvh_init(void)
+{
+	__acpi_register_gsi = acpi_register_gsi_xen_pvh;
+	return 0;
+}
+
 #ifdef CONFIG_XEN_PV_DOM0
 int __init pci_xen_initial_domain(void)
 {
diff --git a/drivers/xen/events/events_base.c b/drivers/xen/events/events_base.c
index 6de6b084ea60..a02d62955509 100644
--- a/drivers/xen/events/events_base.c
+++ b/drivers/xen/events/events_base.c
@@ -957,6 +957,43 @@ int xen_irq_from_gsi(unsigned gsi)
 }
 EXPORT_SYMBOL_GPL(xen_irq_from_gsi);
 
+int xen_gsi_from_irq(unsigned irq)
+{
+	struct irq_info *info;
+
+	list_for_each_entry(info, &xen_irq_list_head, list) {
+		if (info->type != IRQT_PIRQ)
+			continue;
+
+		if (info->irq == irq)
+			return info->u.pirq.gsi;
+	}
+
+	return -1;
+}
+EXPORT_SYMBOL_GPL(xen_gsi_from_irq);
+
+int xen_pvh_add_gsi_irq_map(unsigned gsi, unsigned irq)
+{
+	int tmp_irq;
+	struct irq_info *info;
+
+	tmp_irq = xen_irq_from_gsi(gsi);
+	if (tmp_irq != -1)
+		return -EEXIST;
+
+	info = kzalloc(sizeof(*info), GFP_KERNEL);
+	if (info == NULL)
+		panic("Unable to allocate metadata for GSI%d\n", gsi);
+
+	info->type = IRQT_PIRQ;
+	info->irq = irq;
+	info->u.pirq.gsi = gsi;
+	list_add_tail(&info->list, &xen_irq_list_head);
+
+	return 0;
+}
+
 static void __unbind_from_irq(unsigned int irq)
 {
 	evtchn_port_t evtchn = evtchn_from_irq(irq);
@@ -2303,6 +2340,8 @@ void __init xen_init_IRQ(void)
 	xen_init_setup_upcall_vector();
 	xen_alloc_callback_vector();
 
+	if (xen_pvh_domain())
+		pci_xen_pvh_init();
 
 	if (xen_hvm_domain()) {
 		native_init_IRQ();
diff --git a/drivers/xen/privcmd.c b/drivers/xen/privcmd.c
index 1ce7f3c7a950..6fa8a01d8ae6 100644
--- a/drivers/xen/privcmd.c
+++ b/drivers/xen/privcmd.c
@@ -45,6 +45,7 @@
 #include <xen/page.h>
 #include <xen/xen-ops.h>
 #include <xen/balloon.h>
+#include <xen/events.h>
 
 #include "privcmd.h"
 
@@ -842,6 +843,21 @@ static long privcmd_ioctl_mmap_resource(struct file *file,
 	return rc;
 }
 
+static long privcmd_ioctl_gsi_from_irq(struct file *file, void __user *udata)
+{
+	struct privcmd_gsi_from_irq kdata;
+
+	if (copy_from_user(&kdata, udata, sizeof(kdata)))
+		return -EFAULT;
+
+	kdata.gsi = xen_gsi_from_irq(kdata.irq);
+
+	if (copy_to_user(udata, &kdata, sizeof(kdata)))
+		return -EFAULT;
+
+	return 0;
+}
+
 #ifdef CONFIG_XEN_PRIVCMD_EVENTFD
 /* Irqfd support */
 static struct workqueue_struct *irqfd_cleanup_wq;
@@ -1534,6 +1550,10 @@ static long privcmd_ioctl(struct file *file,
 		ret = privcmd_ioctl_ioeventfd(file, udata);
 		break;
 
+	case IOCTL_PRIVCMD_GSI_FROM_IRQ:
+		ret = privcmd_ioctl_gsi_from_irq(file, udata);
+		break;
+
 	default:
 		break;
 	}
diff --git a/include/uapi/xen/privcmd.h b/include/uapi/xen/privcmd.h
index 8b8c5d1420fe..61f0ffbec077 100644
--- a/include/uapi/xen/privcmd.h
+++ b/include/uapi/xen/privcmd.h
@@ -126,6 +126,11 @@ struct privcmd_ioeventfd {
 	__u8 pad[2];
 };
 
+struct privcmd_gsi_from_irq {
+	__u32 irq;
+	__u32 gsi;
+};
+
 /*
  * @cmd: IOCTL_PRIVCMD_HYPERCALL
  * @arg: &privcmd_hypercall_t
@@ -157,5 +162,7 @@ struct privcmd_ioeventfd {
 	_IOW('P', 8, struct privcmd_irqfd)
 #define IOCTL_PRIVCMD_IOEVENTFD					\
 	_IOW('P', 9, struct privcmd_ioeventfd)
+#define IOCTL_PRIVCMD_GSI_FROM_IRQ				\
+	_IOC(_IOC_NONE, 'P', 10, sizeof(struct privcmd_gsi_from_irq))
 
 #endif /* __LINUX_PUBLIC_PRIVCMD_H__ */
diff --git a/include/xen/events.h b/include/xen/events.h
index 23932b0673dc..78377c936efe 100644
--- a/include/xen/events.h
+++ b/include/xen/events.h
@@ -131,6 +131,11 @@ int xen_pirq_from_irq(unsigned irq);
 /* Return the irq allocated to the gsi */
 int xen_irq_from_gsi(unsigned gsi);
 
+/* Return the gsi from irq */
+int xen_gsi_from_irq(unsigned irq);
+
+int xen_pvh_add_gsi_irq_map(unsigned gsi, unsigned irq);
+
 /* Determine whether to ignore this IRQ if it is passed to a guest. */
 int xen_test_irq_shared(int irq);
 
-- 
2.34.1



^ permalink raw reply related	[relevance 5%]

* Re: Faking the number of CPUs for dom0 with dom0_max_vcpus
  @ 2023-11-13 21:40  4%   ` Jimmy Lee
  0 siblings, 0 replies; 200+ results
From: Jimmy Lee @ 2023-11-13 21:40 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 7852 bytes --]

Hi Jan, thanks for the response! Adding more details and log files here:

1. I installed Xen 4.14 on CentOS 7 with yum:

[root@test-xen ~]# yum list xen kernel
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: download.cf.centos.org
 * centos-virt-xen-epel: d2lzkl7pfhq30w.cloudfront.net
 * extras: download.cf.centos.org
 * updates: download.cf.centos.org
Installed Packages
kernel.x86_64
 3.10.0-1160.45.1.el7
 installed
kernel.x86_64
 3.10.0-1160.76.1.el7
 @updates
kernel.x86_64                                                4.9.241-37.el7

 @centos-virt-xen-414
xen.x86_64
4.14.5.24.g87d90d511c-1.el7
@centos-virt-xen-414
[root@test-xen ~]# uname -r
4.9.241-37.el7.x86_64

2. I configured dom0_max_vcpus=16 for Xen, and nr_cpus=16 for kernel:

[root@test-xen ~]# xl info
host                   : ip-172-31-52-150.us-west-2.compute.internal
release                : 4.9.241-37.el7.x86_64
version                : #1 SMP Mon Nov 2 13:55:04 UTC 2020
machine                : x86_64
nr_cpus                : 4
max_cpu_id             : 3
nr_nodes               : 1
cores_per_socket       : 2
threads_per_core       : 2
cpu_mhz                : 2999.974
hw_caps                :
1f8bfbff:f7fa3203:2c100800:00000121:0000000f:d19f47ab:00000008:00000100
virt_caps              : pv shadow
total_memory           : 7891
free_memory            : 3703
sharing_freed_memory   : 0
sharing_used_memory    : 0
outstanding_claims     : 0
free_cpus              : 0
xen_major              : 4
xen_minor              : 14
xen_extra              : .5.24.g87d90d51
xen_version            : 4.14.5.24.g87d90d51
xen_caps               : xen-3.0-x86_64
xen_scheduler          : credit2
xen_pagesize           : 4096
platform_params        : virt_start=0xffff800000000000
xen_changeset          :
xen_commandline        : placeholder dom0_max_vcpus=16
dom0_mem=4096M,max:4096M cpuinfo com1=115200,8n1 console=com1,tty
loglvl=all guest_loglvl=all
cc_compiler            : gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-44)
cc_compile_by          : mockbuild
cc_compile_domain      : centos.org
cc_compile_date        : Mon Jul 25 08:40:16 UTC 2022
build_id               : 00d714f3c5983a534f512ca173dbfdcc7ed5a1b5
xend_config_format     : 4
[root@test-xen ~]# cat /proc/cmdline
placeholder nr_cpus=16 root=UUID=44a6a613-4e21-478b-a909-ab653c9d39df ro
console=tty0 crashkernel=auto net.ifnames=0 console=ttyS0 console=hvc0
earlyprintk=xen nomodeset
[root@test-xen ~]#

3. With the above config, dom0 only recognized 4 CPUs, and all the other
vCPUs are offline:

[root@test-xen ~]# xl vcpu-list
Name                                ID  VCPU   CPU State   Time(s) Affinity
(Hard / Soft)
Domain-0                             0     0    3   -b-      14.7  all / all
Domain-0                             0     1    3   -b-      11.2  all / all
Domain-0                             0     2    0   r--      12.6  all / all
Domain-0                             0     3    2   -b-      10.9  all / all
Domain-0                             0     4    -   --p       0.0  all / all
Domain-0                             0     5    -   --p       0.0  all / all
Domain-0                             0     6    -   --p       0.0  all / all
Domain-0                             0     7    -   --p       0.0  all / all
Domain-0                             0     8    -   --p       0.0  all / all
Domain-0                             0     9    -   --p       0.0  all / all
Domain-0                             0    10    -   --p       0.0  all / all
Domain-0                             0    11    -   --p       0.0  all / all
Domain-0                             0    12    -   --p       0.0  all / all
Domain-0                             0    13    -   --p       0.0  all / all
Domain-0                             0    14    -   --p       0.0  all / all
Domain-0                             0    15    -   --p       0.0  all / all
[root@test-xen ~]#

There are only 4 CPUs under /sys/devices/system/cpu:

[root@test-xen ~]# ls -l /sys/devices/system/cpu
total 0
drwxr-xr-x. 6 root root    0 Nov 13 18:04 cpu0
drwxr-xr-x. 6 root root    0 Nov 13 18:04 cpu1
drwxr-xr-x. 6 root root    0 Nov 13 18:04 cpu2
drwxr-xr-x. 6 root root    0 Nov 13 18:04 cpu3
drwxr-xr-x. 2 root root    0 Nov 13 18:43 hotplug
-r--r--r--. 1 root root 4096 Nov 13 18:43 isolated
-r--r--r--. 1 root root 4096 Nov 13 18:43 kernel_max
-r--r--r--. 1 root root 4096 Nov 13 18:43 modalias
-r--r--r--. 1 root root 4096 Nov 13 18:43 nohz_full
-r--r--r--. 1 root root 4096 Nov 13 18:43 offline
-r--r--r--. 1 root root 4096 Nov 13 18:04 online
-r--r--r--. 1 root root 4096 Nov 13 18:43 possible
drwxr-xr-x. 2 root root    0 Nov 13 18:43 power
-r--r--r--. 1 root root 4096 Nov 13 18:43 present
drwxr-xr-x. 2 root root    0 Nov 13 18:43 smt
-rw-r--r--. 1 root root 4096 Nov 13 18:43 uevent
drwxr-xr-x. 2 root root    0 Nov 13 18:43 vulnerabilities

I have attached dmesg for the kernel and xen. Please let me know if you
have any thoughts. Thanks!


Jimmy

On Mon, Nov 13, 2023 at 12:00 AM Jan Beulich <jbeulich@suse.com> wrote:

> On 12.11.2023 21:28, Jimmy Lee wrote:
> > Hello Xen experts, I am trying to set dom0_max_vcpus to a number that is
> > larger than the number of pcpus. For example, I have a 4-CPU machine but
> I
> > want applications in dom0 to have an illusion that they are running on a
> > 64-cpu machine. However, it seems that dom0 will always recognize the
> > number of pcpus. I can see the vcpus in the output of "xl vcpu-list" but
> > most of them are not online. How can I achieve my goal? Thanks!
>
> Even if I was to assume the Dom0 kernel is Linux, it would still remain
> unclear what Linux version you use. Generally with recent Linux kernels
> this has been working for me (albeit I didn't try in a while, after
> putting together what has become e25a8d959992 ["x86/Xen: streamline (and
> fix) PV CPU enumeration"]). If despite having this in your Linux you
> still don't see this working, you will want to supply applicable logs.
>
> As an aside - 64 vCPU-s on a 4-pCPU system looks excessive to me.
>
> Jan
>
> > [root@ip-10-0-131-61 cpu3]# xl vcpu-list
> >> Name                                ID  VCPU   CPU State   Time(s)
> >> Affinity (Hard / Soft)
> >> Domain-0                             0     0    0   r--      15.9  all /
> >> all
> >> Domain-0                             0     1    3   -b-      11.9  all /
> >> all
> >> Domain-0                             0     2    1   -b-      11.2  all /
> >> all
> >> Domain-0                             0     3    2   -b-      12.4  all /
> >> all
> >> Domain-0                             0     4    -   --p       0.0  all /
> >> all
> >> Domain-0                             0     5    -   --p       0.0  all /
> >> all
> >> Domain-0                             0     6    -   --p       0.0  all /
> >> all
> >> Domain-0                             0     7    -   --p       0.0  all /
> >> all
> >> Domain-0                             0     8    -   --p       0.0  all /
> >> all
> >> ....
> >>
> >
> > [root@ip-10-0-131-61 cpu3]# lscpu
> > Architecture:          x86_64
> > CPU op-mode(s):        32-bit, 64-bit
> > Byte Order:            Little Endian
> > CPU(s):                4
> > On-line CPU(s) list:   0-3
> > Thread(s) per core:    4
> > Core(s) per socket:    1
> > Socket(s):             1
> > NUMA node(s):          1
> > ...
> >
> > [root@ip-10-0-131-61 cpu3]# xl info
> > ...
> > xen_commandline        : placeholder dom0_mem=3%,min:2G,max:4G
> > com1=115200,8n1 console=com1,tty,vga dom0_max_vcpus=64 spec-ctrl=no
> > sched=credit vcpu_migration_delay=1000 allowsuperpage ioapic_ack=new
> > ...
> >
>
>

[-- Attachment #1.2: Type: text/html, Size: 10740 bytes --]

[-- Attachment #2: xl-dmesg.log --]
[-- Type: application/octet-stream, Size: 9201 bytes --]

(XEN) Bad console= option 'tty'
 Xen 4.14.5.24.g87d90d511c-1.el7
(XEN) Xen version 4.14.5.24.g87d90d511c-1.el7 (mockbuild@centos.org) (gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-44)) debug=n  Mon Jul 25 08:40:16 UTC 2022
(XEN) Latest ChangeSet: 
(XEN) build-id: 00d714f3c5983a534f512ca173dbfdcc7ed5a1b5
(XEN) Bootloader: GRUB 2.02~beta2
(XEN) Command line: placeholder dom0_max_vcpus=16 dom0_mem=4096M,max:4096M cpuinfo com1=115200,8n1 console=com1,tty loglvl=all guest_loglvl=all
(XEN) Xen image load base address: 0
(XEN) Video information:
(XEN)  VGA is text mode 80x25, font 8x16
(XEN) Disc information:
(XEN)  Found 1 MBR signatures
(XEN)  Found 1 EDD information structures
(XEN) CPU Vendor: Intel, Family 6 (0x6), Model 85 (0x55), Stepping 7 (raw 00050657)
(XEN) Xen-e820 RAM map:
(XEN)  [0000000000000000, 000000000009fbff] (usable)
(XEN)  [000000000009fc00, 000000000009ffff] (reserved)
(XEN)  [00000000000f0000, 00000000000fffff] (reserved)
(XEN)  [0000000000100000, 00000000bffe9fff] (usable)
(XEN)  [00000000bffea000, 00000000bfffffff] (reserved)
(XEN)  [00000000e0000000, 00000000e03fffff] (reserved)
(XEN)  [00000000fffc0000, 00000000ffffffff] (reserved)
(XEN)  [0000000100000000, 000000022d3fffff] (usable)
(XEN)  [000000022d400000, 000000023fffffff] (reserved)
(XEN) New Xen image base address: 0xbf800000
(XEN) ACPI: RSDP 000F8F40, 0014 (r0 AMAZON)
(XEN) ACPI: RSDT BFFEE260, 0044 (r1 AMAZON AMZNRSDT        1 AMZN        1)
(XEN) ACPI: FACP BFFEFF80, 0074 (r1 AMAZON AMZNFACP        1 AMZN        1)
(XEN) ACPI: DSDT BFFEE2B0, 10E9 (r1 AMAZON AMZNDSDT        1 AMZN        1)
(XEN) ACPI: FACS BFFEFF40, 0040
(XEN) ACPI: SSDT BFFEF600, 093C (r1 AMAZON AMZNSSDT        1 AMZN        1)
(XEN) ACPI: APIC BFFEF500, 0086 (r1 AMAZON AMZNAPIC        1 AMZN        1)
(XEN) ACPI: SRAT BFFEF440, 00C0 (r1 AMAZON AMZNSRAT        1 AMZN        1)
(XEN) ACPI: SLIT BFFEF3D0, 006C (r1 AMAZON AMZNSLIT        1 AMZN        1)
(XEN) ACPI: WAET BFFEF3A0, 0028 (r1 AMAZON AMZNWAET        1 AMZN        1)
(XEN) ACPI: HPET 000C9000, 0038 (r1 AMAZON AMZNHPET        1 AMZN        1)
(XEN) ACPI: SSDT 000C9040, 007B (r1 AMAZON AMZNSSDT        1 AMZN        1)
(XEN) System RAM: 7891MB (8080932kB)
(XEN) SRAT: PXM 0 -> APIC 00 -> Node 0
(XEN) SRAT: PXM 0 -> APIC 01 -> Node 0
(XEN) SRAT: PXM 0 -> APIC 02 -> Node 0
(XEN) SRAT: PXM 0 -> APIC 03 -> Node 0
(XEN) SRAT: Node 0 PXM 0 0-c0000000
(XEN) SRAT: Node 0 PXM 0 100000000-240000000
(XEN) NUMA: Using 20 for the hash shift.
(XEN) Domain heap initialised
(XEN) DMI present.
(XEN) Using APIC driver default
(XEN) ACPI: PM-Timer IO Port: 0xb008 (24 bits)
(XEN) ACPI: SLEEP INFO: pm1x_cnt[1:b004,1:0], pm1x_evt[1:b000,1:0]
(XEN) ACPI:             wakeup_vec[bffeff4c], vec_size[20]
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
(XEN) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
(XEN) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
(XEN) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
(XEN) ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
(XEN) ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
(XEN) IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
(XEN) ACPI: IRQ5 used by override.
(XEN) ACPI: IRQ9 used by override.
(XEN) ACPI: IRQ10 used by override.
(XEN) ACPI: IRQ11 used by override.
(XEN) Enabling APIC mode:  Flat.  Using 1 I/O APICs
(XEN) ACPI: HPET id: 0x8086a201 base: 0xfed00000
(XEN) Using ACPI (MADT) for SMP configuration information
(XEN) SMP: Allowing 4 CPUs (0 hotplug CPUs)
(XEN) IRQ limits: 24 GSI, 808 MSI/MSI-X
(XEN) Switched to APIC driver x2apic_phys
(XEN) Levelling caps: 0
(XEN) MSR defaults: 1d 0x00000000, 1c 0x00000000, e1d 0x00000000, e1c 0x00000000, Da1 0x00000000
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 0
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 1024K
(XEN) CPU: L3 cache: 36608K
(XEN) CPU0: 1200 ... 3000 MHz
(XEN) xstate: size: 0xa88 and states: 0x2ff
(XEN) CMCI: CPU0 has no CMCI support
(XEN) CPU0: Intel machine check reporting enabled
(XEN) Speculative mitigation facilities:
(XEN)   Hardware hints:
(XEN)   Hardware features:
(XEN)   Compiled-in support: INDIRECT_THUNK SHADOW_PAGING
(XEN)   Xen settings: BTI-Thunk RETPOLINE, SPEC_CTRL: No, Other: BRANCH_HARDEN
(XEN)   L1TF: believed vulnerable, maxphysaddr L1D 46, CPUID 46, Safe address 300000000000
(XEN)   Support for HVM VMs: RSB EAGER_FPU
(XEN)   Support for PV VMs: RSB EAGER_FPU
(XEN)   XPTI (64-bit PV only): Dom0 enabled, DomU enabled (with PCID)
(XEN)   PV L1TF shadowing: Dom0 disabled, DomU enabled
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Initializing CPU#0
(XEN) Platform timer is 62.500MHz HPET
(XEN) Detected 2999.974 MHz processor.
(XEN) alt table ffff82d040451290 -> ffff82d04045e1aa
(XEN) I/O virtualisation disabled
(XEN) CPU0: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz stepping 07
(XEN) nr_sockets: 1
(XEN) Enabled directed EOI with ioapic_ack_old on!
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using old ACK method
(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=0 apic2=-1 pin2=-1
(XEN) TSC deadline timer enabled
(XEN) Allocated console ring of 32 KiB.
(XEN) mwait-idle: Please enable MWAIT in BIOS SETUP
(XEN) alt table ffff82d040451290 -> ffff82d04045e1aa
(XEN) CPU 0 APIC 0 -> Node 0
(XEN) CPU 1 APIC 1 -> Node 0
(XEN) Booting processor 1/1 eip 8f000
(XEN) Initializing CPU#1
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 0
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 1024K
(XEN) CPU: L3 cache: 36608K
(XEN) CMCI: CPU1 has no CMCI support
(XEN) CPU1: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz stepping 07
(XEN) CPU 2 APIC 2 -> Node 0
(XEN) Booting processor 2/2 eip 8f000
(XEN) Initializing CPU#2
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 1
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 1024K
(XEN) CPU: L3 cache: 36608K
(XEN) CPU2: 1200 ... 3000 MHz
(XEN) CMCI: CPU2 has no CMCI support
(XEN) CPU2: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz stepping 07
(XEN) CPU 3 APIC 3 -> Node 0
(XEN) Booting processor 3/3 eip 8f000
(XEN) Initializing CPU#3
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 1
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 1024K
(XEN) CPU: L3 cache: 36608K
(XEN) CMCI: CPU3 has no CMCI support
(XEN) CPU3: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz stepping 07
(XEN) Brought up 4 CPUs
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Adding cpu 0 to runqueue 0
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 1 to runqueue 0
(XEN) Adding cpu 2 to runqueue 0
(XEN) Adding cpu 3 to runqueue 0
(XEN) mcheck_poll: Machine check polling timer started.
(XEN) xenoprof: Initialization failed. Intel processor family 6 model 85 is not supported
(XEN) NX (Execute Disable) protection active
(XEN) Dom0 has maximum 648 PIRQs
(XEN) *** Building a PV Dom0 ***
(XEN)  Xen  kernel: 64-bit, lsb, compat32
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x249b000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   000000021c000000->0000000220000000 (1022176 pages to be allocated)
(XEN)  Init. ramdisk: 000000022ace0000->000000022d3ff40e
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff8249b000
(XEN)  Init. ramdisk: 0000000000000000->0000000000000000
(XEN)  Phys-Mach map: 0000008000000000->0000008000800000
(XEN)  Start info:    ffffffff8249b000->ffffffff8249b4b8
(XEN)  Xenstore ring: 0000000000000000->0000000000000000
(XEN)  Console ring:  0000000000000000->0000000000000000
(XEN)  Page tables:   ffffffff8249c000->ffffffff824b3000
(XEN)  Boot stack:    ffffffff824b3000->ffffffff824b4000
(XEN)  TOTAL:         ffffffff80000000->ffffffff82800000
(XEN)  ENTRY ADDRESS: ffffffff81fb0180
(XEN) Dom0 has maximum 16 VCPUs
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Scrubbing Free RAM in background
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) ***************************************************
(XEN) Booted on L1TF-vulnerable hardware with SMT/Hyperthreading
(XEN) enabled.  Please assess your configuration and choose an
(XEN) explicit 'smt=<bool>' setting.  See XSA-273.
(XEN) ***************************************************
(XEN) 3... 2... 1... 
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 600kB init memory
(XEN) PCI add device 0000:00:00.0
(XEN) PCI add device 0000:00:01.0
(XEN) PCI add device 0000:00:01.3
(XEN) PCI add device 0000:00:03.0
(XEN) PCI add device 0000:00:04.0
(XEN) PCI add device 0000:00:05.0

[-- Attachment #3: dmesg.log --]
[-- Type: application/octet-stream, Size: 30033 bytes --]

[    0.000000] Linux version 4.9.241-37.el7.x86_64 (mockbuild@cody-n11.rdu2.centos.org) (gcc version 8.3.1 20190311 (Red Hat 8.3.1-3) (GCC) ) #1 SMP Mon Nov 2 13:55:04 UTC 2020
[    0.000000] Command line: placeholder nr_cpus=16 root=UUID=44a6a613-4e21-478b-a909-ab653c9d39df ro console=tty0 crashkernel=auto net.ifnames=0 console=ttyS0 console=hvc0 earlyprintk=xen nomodeset
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]: 1088, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]: 1152, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1664, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: Enabled xstate features 0xe7, context size is 2688 bytes, using 'standard' format.
[    0.000000] Released 0 page(s)
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] Xen: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] Xen: [mem 0x000000000009fc00-0x00000000000fffff] reserved
[    0.000000] Xen: [mem 0x0000000000100000-0x00000000bffe9fff] usable
[    0.000000] Xen: [mem 0x00000000bffea000-0x00000000bfffffff] reserved
[    0.000000] Xen: [mem 0x00000000e0000000-0x00000000e03fffff] reserved
[    0.000000] Xen: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] Xen: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] Xen: [mem 0x0000000100000000-0x0000000140076fff] usable
[    0.000000] Xen: [mem 0x000000022d400000-0x000000023fffffff] reserved
[    0.000000] bootconsole [xenboot0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Amazon EC2 c5.xlarge/, BIOS 1.0 10/16/2017
[    0.000000] Hypervisor detected: Xen
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140077 max_arch_pfn = 0x400000000
[    0.000000] MTRR: Disabled
[    0.000000] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[    0.000000] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP  UC  UC  
[    0.000000] e820: last_pfn = 0xbffea max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[    0.000000] RAMDISK: [mem 0x04000000-0x0671ffff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F8F40 000014 (v00 AMAZON)
[    0.000000] ACPI: RSDT 0x00000000BFFEE260 000044 (v01 AMAZON AMZNRSDT 00000001 AMZN 00000001)
[    0.000000] ACPI: FACP 0x00000000BFFEFF80 000074 (v01 AMAZON AMZNFACP 00000001 AMZN 00000001)
[    0.000000] ACPI: DSDT 0x00000000BFFEE2B0 0010E9 (v01 AMAZON AMZNDSDT 00000001 AMZN 00000001)
[    0.000000] ACPI: FACS 0x00000000BFFEFF40 000040
[    0.000000] ACPI: SSDT 0x00000000BFFEF600 00093C (v01 AMAZON AMZNSSDT 00000001 AMZN 00000001)
[    0.000000] ACPI: APIC 0x00000000BFFEF500 000086 (v01 AMAZON AMZNAPIC 00000001 AMZN 00000001)
[    0.000000] ACPI: SRAT 0x00000000BFFEF440 0000C0 (v01 AMAZON AMZNSRAT 00000001 AMZN 00000001)
[    0.000000] ACPI: SLIT 0x00000000BFFEF3D0 00006C (v01 AMAZON AMZNSLIT 00000001 AMZN 00000001)
[    0.000000] ACPI: WAET 0x00000000BFFEF3A0 000028 (v01 AMAZON AMZNWAET 00000001 AMZN 00000001)
[    0.000000] ACPI: HPET 0x00000000000C9000 000038 (v01 AMAZON AMZNHPET 00000001 AMZN 00000001)
[    0.000000] ACPI: SSDT 0x00000000000C9040 00007B (v01 AMAZON AMZNSSDT 00000001 AMZN 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Setting APIC routing to Xen PV.
[    0.000000] NUMA turned off
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000140076fff]
[    0.000000] NODE_DATA(0) allocated [mem 0xbf7da000-0xbf804fff]
[    0.000000] kexec_core: crashkernel: memory value expected
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x0000000140076fff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000bffe9fff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x0000000140076fff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000140076fff]
[    0.000000] On node 0 totalpages: 1048575
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12224 pages used for memmap
[    0.000000]   DMA32 zone: 782314 pages, LIFO batch:31
[    0.000000]   Normal zone: 4098 pages used for memmap
[    0.000000]   Normal zone: 262263 pages, LIFO batch:31
[    0.000000] p2m virtual area at ffffc90000000000, size is 40000000
[    0.000000] Remapped 262263 page(s)
[    0.000000] ACPI: PM-Timer IO Port: 0xb008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.000000] ACPI: IRQ5 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ10 used by override.
[    0.000000] ACPI: IRQ11 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbffea000-0xbfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xe03fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0400000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xfffbffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfffc0000-0xffffffff]
[    0.000000] e820: [mem 0xc0000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on Xen
[    0.000000] Xen version: 4.14.5.24.g87d90d51 (preserve-AD)
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 36 pages/cpu s107160 r8192 d32104 u524288
[    0.000000] pcpu-alloc: s107160 r8192 d32104 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1032168
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: placeholder nr_cpus=16 root=UUID=44a6a613-4e21-478b-a909-ab653c9d39df ro console=tty0 crashkernel=auto net.ifnames=0 console=ttyS0 console=hvc0 earlyprintk=xen nomodeset
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] software IO TLB: mapped [mem 0x13be00000-0x13fe00000] (64MB)
[    0.000000] Memory: 3982248K/4194300K available (8919K kernel code, 1615K rwdata, 4024K rodata, 2384K init, 2544K bss, 212052K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] Using NULL legacy PIC
[    0.000000] NR_IRQS:524544 nr_irqs:456 0
[    0.000000] xen:events: Using FIFO-based ABI
[    0.000000] xen map irq failed -1
[    0.000000] xen: --> pirq=1 -> irq=1 (gsi=1)
[    0.000000] xen: --> pirq=2 -> irq=2 (gsi=2)
[    0.000000] xen: --> pirq=3 -> irq=3 (gsi=3)
[    0.000000] xen: --> pirq=4 -> irq=4 (gsi=4)
[    0.000000] xen: --> pirq=5 -> irq=5 (gsi=5)
[    0.000000] xen: --> pirq=6 -> irq=6 (gsi=6)
[    0.000000] xen: --> pirq=7 -> irq=7 (gsi=7)
[    0.000000] xen: --> pirq=8 -> irq=8 (gsi=8)
[    0.000000] xen: --> pirq=9 -> irq=9 (gsi=9)
[    0.000000] xen: --> pirq=10 -> irq=10 (gsi=10)
[    0.000000] xen: --> pirq=11 -> irq=11 (gsi=11)
[    0.000000] xen: --> pirq=12 -> irq=12 (gsi=12)
[    0.000000] xen: --> pirq=13 -> irq=13 (gsi=13)
[    0.000000] xen: --> pirq=14 -> irq=14 (gsi=14)
[    0.000000] xen: --> pirq=15 -> irq=15 (gsi=15)
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-3.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] console [hvc0] enabled
[    0.000000] bootconsole [xenboot0] disabled
[    0.000000] console [ttyS0] enabled
[    0.000000] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000000] Xen: using vcpuop timer interface
[    0.000000] installing Xen timer for CPU 0
[    0.000000] tsc: Unable to calibrate against PIT
[    0.000000] tsc: HPET/PMTIMER calibration failed
[    0.000000] tsc: Detected 2999.974 MHz processor
[    5.927818] Calibrating delay loop (skipped), value calculated using timer frequency.. 5999.94 BogoMIPS (lpj=2999974)
[    5.939182] pid_max: default: 32768 minimum: 301
[    5.944361] ACPI: Core revision 20160831
[    5.950560] ACPI: 3 ACPI AML tables successfully acquired and loaded
[    5.958077] Security Framework initialized
[    5.962855] Yama: becoming mindful.
[    5.967166] SELinux:  Initializing.
[    5.971498] SELinux:  Starting in permissive mode
[    5.972122] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    5.981549] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    5.988915] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    5.995700] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    6.003403] mce: CPU supports 2 MCE banks
[    6.008177] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    6.013955] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    6.020172] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    6.029692] Spectre V2 : Mitigation: Full generic retpoline
[    6.035697] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    6.045098] Speculative Store Bypass: Vulnerable
[    6.050490] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    6.059510] Freeing SMP alternatives memory: 32K
[    6.068667] ftrace: allocating 34570 entries in 136 pages
[    6.124447] smpboot: Max logical packages: 2
[    6.129424] VPMU disabled by hypervisor.
[    6.134058] Performance Events: unsupported p6 CPU model 85 no PMU driver, software events only.
[    6.144828] NMI watchdog: disabled (cpu0): hardware events not enabled
[    6.151579] NMI watchdog: Shutting down hard lockup detector on all cpus
[    6.158747] installing Xen timer for CPU 1
[    6.163959] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    6.178083] installing Xen timer for CPU 2
[    6.183523] installing Xen timer for CPU 3
[    6.188611] x86: Booted up 1 node, 4 CPUs
[    6.193874] devtmpfs: initialized
[    6.197514] x86/mm: Memory block size: 128MB
[    6.204641] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    6.215312] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    6.221848] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    6.228937] pinctrl core: initialized pinctrl subsystem
[    6.235013] NET: Registered protocol family 16
[    6.240111] xen:grant_table: Grant tables using version 1 layout
[    6.246433] Grant table initialized
[    6.251897] ACPI: bus type PCI registered
[    6.255782] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    6.261440] PCI: Using configuration type 1 for base access
[    6.273480] ACPI: Added _OSI(Module Device)
[    6.276275] random: fast init done
[    6.282545] ACPI: Added _OSI(Processor Device)
[    6.287578] ACPI: Added _OSI(3.0 _SCP Extensions)
[    6.292785] ACPI: Added _OSI(Processor Aggregator Device)
[    6.298998] xen: registering gsi 9 triggering 0 polarity 0
[    6.300903] ACPI: Interpreter enabled
[    6.305343] ACPI: (supports S0 S4 S5)
[    6.309740] ACPI: Using IOAPIC for interrupt routing
[    6.315168] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    6.328819] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    6.403896] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    6.410037] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    6.415965] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    6.427112] acpiphp: Slot [3] registered
[    6.431326] acpiphp: Slot [4] registered
[    6.435540] acpiphp: Slot [5] registered
[    6.439748] acpiphp: Slot [6] registered
[    6.443963] acpiphp: Slot [7] registered
[    6.448153] acpiphp: Slot [8] registered
[    6.452346] acpiphp: Slot [9] registered
[    6.456568] acpiphp: Slot [10] registered
[    6.460858] acpiphp: Slot [11] registered
[    6.465105] acpiphp: Slot [12] registered
[    6.469360] acpiphp: Slot [13] registered
[    6.473584] acpiphp: Slot [14] registered
[    6.477841] acpiphp: Slot [15] registered
[    6.482136] acpiphp: Slot [16] registered
[    6.486384] acpiphp: Slot [17] registered
[    6.490657] acpiphp: Slot [18] registered
[    6.494922] acpiphp: Slot [19] registered
[    6.499163] acpiphp: Slot [20] registered
[    6.503427] acpiphp: Slot [21] registered
[    6.507679] acpiphp: Slot [22] registered
[    6.511947] acpiphp: Slot [23] registered
[    6.516206] acpiphp: Slot [24] registered
[    6.520460] acpiphp: Slot [25] registered
[    6.524710] acpiphp: Slot [26] registered
[    6.528978] acpiphp: Slot [27] registered
[    6.533233] acpiphp: Slot [28] registered
[    6.537482] acpiphp: Slot [29] registered
[    6.541751] acpiphp: Slot [30] registered
[    6.546012] acpiphp: Slot [31] registered
[    6.550235] PCI host bridge to bus 0000:00
[    6.554517] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    6.560557] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    6.566566] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    6.574555] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[    6.582484] pci_bus 0000:00: root bus resource [bus 00-ff]
[    6.587685] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[    6.589443] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[    6.591931] pci 0000:00:01.3: [8086:7113] type 00 class 0x000000
[    6.592728] pci 0000:00:01.3: quirk: [io  0xb000-0xb03f] claimed by PIIX4 ACPI
[    6.600482] pci 0000:00:01.3: quirk: [io  0xb100-0xb10f] claimed by PIIX4 SMB
[    6.606825] pci 0000:00:01.3: PIIX4 devres E PIO at fff0-ffff
[    6.612211] pci 0000:00:01.3: PIIX4 devres F MMIO at ffc00000-ffffffff
[    6.618055] pci 0000:00:01.3: PIIX4 devres G PIO at fff0-ffff
[    6.623436] pci 0000:00:01.3: PIIX4 devres H MMIO at ffc00000-ffffffff
[    6.629309] pci 0000:00:01.3: PIIX4 devres I PIO at fff0-ffff
[    6.634692] pci 0000:00:01.3: PIIX4 devres J PIO at fff0-ffff
[    6.641762] pci 0000:00:03.0: [1d0f:1111] type 00 class 0x030000
[    6.642300] pci 0000:00:03.0: reg 0x10: [mem 0xfe400000-0xfe7fffff pref]
[    6.644364] pci 0000:00:03.0: reg 0x30: [mem 0xfebd0000-0xfebdffff pref]
[    6.646109] pci 0000:00:04.0: [1d0f:8061] type 00 class 0x010802
[    6.647071] pci 0000:00:04.0: reg 0x10: [mem 0xfebf0000-0xfebf3fff]
[    6.652808] pci 0000:00:05.0: [1d0f:ec20] type 00 class 0x020000
[    6.653858] pci 0000:00:05.0: reg 0x10: [mem 0xfebf4000-0xfebf7fff]
[    6.655828] pci 0000:00:05.0: reg 0x18: [mem 0xfe800000-0xfe8fffff pref]
[    6.657710] pci 0000:00:05.0: reg 0x20: [mem 0xfebe0000-0xfebeffff]
[    6.662042] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
[    6.668517] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
[    6.674937] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
[    6.681385] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
[    6.687715] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
[    6.694077] ACPI: Enabled 16 GPEs in block 00 to 0F
[    6.699449] xen:balloon: Initialising balloon driver
[    6.704080] xen_balloon: Initialising balloon driver
[    6.708823] vgaarb: setting as boot device: PCI:0000:00:03.0
[    6.713611] vgaarb: device added: PCI:0000:00:03.0,decodes=io+mem,owns=io+mem,locks=none
[    6.721251] vgaarb: loaded
[    6.724425] vgaarb: bridge control possible 0000:00:03.0
[    6.729600] SCSI subsystem initialized
[    6.733474] libata version 3.00 loaded.
[    6.733532] ACPI: bus type USB registered
[    6.737439] usbcore: registered new interface driver usbfs
[    6.742208] usbcore: registered new interface driver hub
[    6.746890] usbcore: registered new device driver usb
[    6.751686] PCI: Using ACPI for IRQ routing
[    6.756007] PCI: pci_cache_line_size set to 64 bytes
[    6.756153] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    6.756155] e820: reserve RAM buffer [mem 0xbffea000-0xbfffffff]
[    6.756156] e820: reserve RAM buffer [mem 0x140077000-0x143ffffff]
[    6.756400] NetLabel: Initializing
[    6.760232] NetLabel:  domain hash size = 128
[    6.764731] NetLabel:  protocols = UNLABELED CIPSOv4
[    6.769624] NetLabel:  unlabeled traffic allowed by default
[    6.775118] clocksource: Switched to clocksource xen
[    6.793804] VFS: Disk quotas dquot_6.6.0
[    6.797754] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    6.803302] hugetlbfs: disabling because there are no supported hugepage sizes
[    6.810493] pnp: PnP ACPI init
[    6.813896] xen: registering gsi 8 triggering 1 polarity 0
[    6.814043] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    6.814066] xen: registering gsi 1 triggering 1 polarity 0
[    6.814171] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
[    6.814186] xen: registering gsi 12 triggering 1 polarity 0
[    6.814276] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
[    6.814326] xen: registering gsi 7 triggering 1 polarity 0
[    6.814412] pnp 00:03: Plug and Play ACPI device, IDs PNP0400 (active)
[    6.814449] xen: registering gsi 4 triggering 1 polarity 0
[    6.814450] Already setup the GSI :4
[    6.818128] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
[    6.818392] pnp: PnP ACPI: found 5 devices
[    6.834236] PM-Timer failed consistency check  (0xffffff) - aborting.
[    6.839536] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    6.839537] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    6.839538] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    6.839539] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window]
[    6.839743] NET: Registered protocol family 2
[    6.844261] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    6.851513] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    6.856944] TCP: Hash tables configured (established 32768 bind 32768)
[    6.862321] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    6.867378] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    6.872805] NET: Registered protocol family 1
[    6.876861] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    6.881812] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[    6.886965] pci 0000:00:03.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    6.894811] PCI: CLS 0 bytes, default 64
[    6.895009] Trying to unpack rootfs image as initramfs...
[    7.381210] Freeing initrd memory: 40064K
[    7.386657] audit: initializing netlink subsys (disabled)
[    7.392455] audit: type=2000 audit(1699898676.078:1): initialized
[    7.399077] Initialise system trusted keyrings
[    7.404489] workingset: timestamp_bits=36 max_order=20 bucket_order=0
[    7.411168] zbud: loaded
[    7.415895] SELinux:  Registering netfilter hooks
[    7.606327] NET: Registered protocol family 38
[    7.611479] Key type asymmetric registered
[    7.616295] Asymmetric key parser 'x509' registered
[    7.621995] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    7.631059] io scheduler noop registered
[    7.635879] io scheduler deadline registered
[    7.641117] io scheduler cfq registered (default)
[    7.646900] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    7.653127] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    7.660193] intel_idle: does not run on family 6 model 85
[    7.660323] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.669395] ACPI: Power Button [PWRF]
[    7.673996] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[    7.682742] ACPI: Sleep Button [SLPF]
[    7.687435] Warning: Processor Platform Limit not supported.
[    7.687601] GHES: HEST is not enabled!
[    7.693131] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    7.699342] hpet_acpi_add: no address or irqs in _CRS
[    7.703882] Non-volatile memory driver v1.3
[    7.707862] Linux agpgart interface v0.103
[    7.711922] [drm] Initialized
[    7.721786] brd: module loaded
[    7.728934] loop: module loaded
[    7.732893] libphy: Fixed MDIO Bus: probed
[    7.736897] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    7.742108] ehci-pci: EHCI PCI platform driver
[    7.746176] ehci-platform: EHCI generic platform driver
[    7.750651] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    7.755647] ohci-pci: OHCI PCI platform driver
[    7.759738] ohci-platform: OHCI generic platform driver
[    7.764237] uhci_hcd: USB Universal Host Controller Interface driver
[    7.769514] usbcore: registered new interface driver usbserial
[    7.774344] usbcore: registered new interface driver usbserial_generic
[    7.779526] usbserial: USB Serial support registered for generic
[    7.784468] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    7.792167] i8042: Warning: Keylock active
[    7.797035] serio: i8042 KBD port at 0x60,0x64 irq 1
[    7.801366] serio: i8042 AUX port at 0x60,0x64 irq 12
[    7.806130] mousedev: PS/2 mouse device common for all mice
[    7.811269] rtc_cmos 00:00: RTC can wake from S4
[    7.817033] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    7.822195] rtc_cmos 00:00: alarms up to one day, 114 bytes nvram
[    7.827310] device-mapper: uevent: version 1.0.3
[    7.831630] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    7.839690] ledtrig-cpu: registered to indicate activity on CPUs
[    7.844838] hidraw: raw HID events driver (C) Jiri Kosina
[    7.849768] usbcore: registered new interface driver usbhid
[    7.854441] usbhid: USB HID core driver
[    7.858272] drop_monitor: Initializing network drop monitor service
[    7.863493] ip_tables: (C) 2000-2006 Netfilter Core Team
[    7.868181] Initializing XFRM netlink socket
[    7.872352] NET: Registered protocol family 10
[    7.876926] mip6: Mobile IPv6
[    7.880933] NET: Registered protocol family 17
[    7.886148] mce: Unable to init device /dev/mcelog (rc: -16)
[    7.892244] AVX2 version of gcm_enc/dec engaged.
[    7.897381] AES CTR mode by8 optimization enabled
[    7.913683] registered taskstats version 1
[    7.917575] Loading compiled-in X.509 certificates
[    7.921933] zswap: loaded using pool lzo/zbud
[    7.935494] Key type big_key registered
[    7.943539] Key type encrypted registered
[    7.948174] ima: No TPM chip found, activating TPM-bypass!
[    7.953976] ima: Allocated hash algorithm: sha1
[    7.959680] rtc_cmos 00:00: setting system clock to 2023-11-13 18:04:37 UTC (1699898677)
[    7.970204] Freeing unused kernel memory: 2384K
[    7.974345] Write protecting the kernel read-only data: 14336k
[    7.984063] Freeing unused kernel memory: 1304K
[    7.988233] Freeing unused kernel memory: 72K
[    7.997224] random: systemd: uninitialized urandom read (16 bytes read)
[    8.004197] random: systemd: uninitialized urandom read (16 bytes read)
[    8.010826] random: systemd: uninitialized urandom read (16 bytes read)
[    8.022672] systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    8.105437] systemd[1]: Detected virtualization xen.
[    8.109825] systemd[1]: Detected architecture x86-64.
[    8.114279] systemd[1]: Running in initial RAM disk.
[    8.121385] systemd[1]: No hostname configured.
[    8.125564] systemd[1]: Set hostname to <localhost>.
[    8.130043] systemd[1]: Initializing machine ID from random generator.
[    8.205976] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    8.220054] systemd[1]: Reached target Swap.
[    8.228048] systemd[1]: Created slice Root Slice.
[    8.270455] xen:xen_evtchn: Event-channel device installed
[    8.286881] xen_pciback: backend is vpci
[    8.314297] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    8.334080] random: crng init done
[    8.337718] random: 7 urandom warning(s) missed due to ratelimiting
[    8.441176] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b3e2cf4d54, max_idle_ns: 440795352122 ns
[    8.519963] RPC: Registered named UNIX socket transport module.
[    8.525015] RPC: Registered udp transport module.
[    8.529329] RPC: Registered tcp transport module.
[    8.533594] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    8.773269] ena: Elastic Network Adapter (ENA) v1.0.2
[    8.780281] nvme nvme0: pci function 0000:00:04.0
[    8.786014] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
[    8.791947] xen: registering gsi 11 triggering 0 polarity 0
[    8.793971] ena 0000:00:05.0: Elastic Network Adapter (ENA) v1.0.2
[    8.905155] ena: ena device version: 0.10
[    8.910157] ena: ena controller version: 0.0.1 implementation version 1
[    9.004703]  nvme0n1: p1
[    9.187998] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input4
[    9.457320] clocksource: Switched to clocksource tsc
[    9.649177] ena 0000:00:05.0: creating 4 io queues. queue size: 1024
[    9.656232] ena: Feature 20 isn't supported
[    9.661087] ena: Feature 20 isn't supported
[    9.668027] ena: Feature 10 isn't supported
[    9.672993] ena: Feature 18 isn't supported
[    9.678822] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem febf4000, mac addr 06:52:58:2f:62:cf Queues 4
[    9.741557] SGI XFS with ACLs, security attributes, no debug enabled
[    9.751158] XFS (nvme0n1p1): Mounting V5 Filesystem
[   10.879996] XFS (nvme0n1p1): Ending clean mount
[   11.358748] systemd-journald[209]: Received SIGTERM from PID 1 (systemd).
[   11.403332] systemd: 17 output lines suppressed due to ratelimiting
[   11.477657] audit: type=1404 audit(1699898681.016:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[   11.639390] SELinux: 32768 avtab hash slots, 112730 rules.
[   11.656106] SELinux: 32768 avtab hash slots, 112730 rules.
[   11.696698] SELinux:  8 users, 14 roles, 5046 types, 316 bools, 1 sens, 1024 cats
[   11.696700] SELinux:  130 classes, 112730 rules
[   11.702730] SELinux:  Completing initialization.
[   11.702730] SELinux:  Setting up existing superblocks.
[   11.714396] audit: type=1403 audit(1699898681.253:3): policy loaded auid=4294967295 ses=4294967295
[   11.732056] systemd[1]: Successfully loaded SELinux policy in 254.178ms.
[   11.775872] systemd[1]: Relabelled /dev, /run and /sys/fs/cgroup in 14.752ms.
[   12.648190] systemd-journald[512]: Received request to flush runtime journal from PID 1
[   12.839437] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 255
[   12.880889] input: PC Speaker as /devices/platform/pcspkr/input/input5
[   12.888558] parport_pc 00:03: reported by Plug and Play ACPI
[   12.894863] parport_pc parport_pc.956: Unable to set coherent dma mask: disabling DMA
[   12.905469] audit: type=1305 audit(1699898682.444:4): audit_pid=597 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[   12.918375] parport_pc parport_pc.888: Unable to set coherent dma mask: disabling DMA
[   12.927655] parport_pc parport_pc.632: Unable to set coherent dma mask: disabling DMA
[   12.962833] ppdev: user-space parallel port driver
[   13.356374] EDAC MC: Ver: 3.0.0
[   15.043528] ena: Feature 10 isn't supported
[   15.048693] ena: Feature 18 isn't supported

^ permalink raw reply	[relevance 4%]

* [PATCH] xen-netback: use default TX queue size for vifs
@ 2023-10-05 14:08  6% Roger Pau Monne
  0 siblings, 0 replies; 200+ results
From: Roger Pau Monne @ 2023-10-05 14:08 UTC (permalink / raw)
  To: linux-kernel
  Cc: Ross Lagerwall, Roger Pau Monne, Wei Liu, Paul Durrant,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Ian Campbell, Ben Hutchings, xen-devel, netdev

Do not set netback interfaces (vifs) default TX queue size to the ring size.
The TX queue size is not related to the ring size, and using the ring size (32)
as the queue size can lead to packet drops.  Note the TX side of the vif
interface in the netback domain is the one receiving packets to be injected
to the guest.

Do not explicitly set the TX queue length to any value when creating the
interface, and instead use the system default.  Note that the queue length can
also be adjusted at runtime.

Fixes: f942dc2552b8 ('xen network backend driver')
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
---
 drivers/net/xen-netback/interface.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/drivers/net/xen-netback/interface.c b/drivers/net/xen-netback/interface.c
index f3f2c07423a6..fc3bb63b9ac3 100644
--- a/drivers/net/xen-netback/interface.c
+++ b/drivers/net/xen-netback/interface.c
@@ -41,8 +41,6 @@
 #include <asm/xen/hypercall.h>
 #include <xen/balloon.h>
 
-#define XENVIF_QUEUE_LENGTH 32
-
 /* Number of bytes allowed on the internal guest Rx queue. */
 #define XENVIF_RX_QUEUE_BYTES (XEN_NETIF_RX_RING_SIZE/2 * PAGE_SIZE)
 
@@ -530,8 +528,6 @@ struct xenvif *xenvif_alloc(struct device *parent, domid_t domid,
 	dev->features = dev->hw_features | NETIF_F_RXCSUM;
 	dev->ethtool_ops = &xenvif_ethtool_ops;
 
-	dev->tx_queue_len = XENVIF_QUEUE_LENGTH;
-
 	dev->min_mtu = ETH_MIN_MTU;
 	dev->max_mtu = ETH_MAX_MTU - VLAN_ETH_HLEN;
 
-- 
2.42.0



^ permalink raw reply related	[relevance 6%]

* Re: [PATCH v2 00/15] sysctl: Remove sentinel elements from drivers
  2023-10-02 12:27  0% ` [PATCH v2 00/15] sysctl: Remove sentinel elements from drivers Christophe Leroy
@ 2023-10-03  8:47  0%   ` Joel Granados
  0 siblings, 0 replies; 200+ results
From: Joel Granados @ 2023-10-03  8:47 UTC (permalink / raw)
  To: Christophe Leroy
  Cc: Luis Chamberlain, willy, josh, Kees Cook, Phillip Potter,
	Clemens Ladisch, Arnd Bergmann, Greg Kroah-Hartman,
	Juergen Gross, Stefano Stabellini, Oleksandr Tyshchenko,
	Jiri Slaby, James E.J. Bottomley, Martin K. Petersen,
	Doug Gilbert, Sudip Mukherjee, Jason Gunthorpe, Leon Romanovsky,
	Corey Minyard, Theodore Ts'o, Jason A. Donenfeld,
	David Ahern, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Robin Holt, Steve Wahl, Russ Weight,
	Rafael J. Wysocki, Song Liu, K. Y. Srinivasan, Haiyang Zhang,
	Wei Liu, Dexuan Cui, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi,
	Tvrtko Ursulin, David Airlie, Daniel Vetter, linux-hyperv,
	linux-scsi, linux-rdma, netdev, intel-gfx, linux-kernel,
	dri-devel, linux-raid, linux-serial, xen-devel,
	openipmi-developer, linuxppc-dev

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

On Mon, Oct 02, 2023 at 12:27:18PM +0000, Christophe Leroy wrote:
> 
> 
> Le 02/10/2023 à 10:55, Joel Granados via B4 Relay a écrit :
> > From: Joel Granados <j.granados@samsung.com>
> > 
<--- snip --->
> >          - The "yesall" config saves 2432 bytes [4]
> >          - The "tiny" config saves 64 bytes [5]
> >      * memory usage:
> >          In this case there were no bytes saved because I do not have any
> >          of the drivers in the patch. To measure it comment the printk in
> >          `new_dir` and uncomment the if conditional in `new_links` [3].
> > 
> > ---
> > Changes in v2:
> > - Left the dangling comma in the ctl_table arrays.
> > - Link to v1: https://lore.kernel.org/r/20230928-jag-sysctl_remove_empty_elem_drivers-v1-0-e59120fca9f9@samsung.com
> > 
> > Comments/feedback greatly appreciated
> 
> Same problem on powerpc CI tests, all boot target failed, most of them 
> with similar OOPS, see 
> https://patchwork.ozlabs.org/project/linuxppc-dev/patch/20231002-jag-sysctl_remove_empty_elem_drivers-v2-15-02dd0d46f71e@samsung.com/
I found the culprit!. Here you are rebasing on top of v6.5.0-rc6 "INFO:
Looking for kernel version: 6.5.0-rc6-gbf2ac4d7d596". The error makes
sense becuase in that version we have not introduced the stopping
criteria based on the ctl_table array size, so the loop continues
looking for an empty sentinel past valid memory (and does not find it).
The ctl_table check catches it but then fails to do a proper error
because we have already tried to access invalid memory. The solution
here is to make sure to rebase in on top of the latest rc in v6.6.

> 
> What is strange is that I pushed your series into my github account, and 
> got no failure, see https://github.com/chleroy/linux/actions/runs/6378951278
And here it works because you use the latest rc : "INFO: Looking for
kernel version: 6.6.0-rc3-g23d4b5db743c"

> 
> Christophe
> 
> > 
> > Best
> > 
> > Joel
> > 
> > [1]
> > We are able to remove a sentinel table without behavioral change by
> > introducing a table_size argument in the same place where procname is
> > checked for NULL. The idea is for it to keep stopping when it hits
> > ->procname == NULL, while the sentinel is still present. And when the
> > sentinel is removed, it will stop on the table_size. You can go to
> > (https://lore.kernel.org/all/20230809105006.1198165-1-j.granados@samsung.com/)
> > for more information.
> > 
> > [2]
> > Links Related to the ctl_table sentinel removal:
> > * Good summary from Luis sent with the "pull request" for the
> >    preparation patches.
> >    https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/
> > * Another very good summary from Luis.
> >    https://lore.kernel.org/all/ZMFizKFkVxUFtSqa@bombadil.infradead.org/
> > * This is a patch set that replaces register_sysctl_table with register_sysctl
> >    https://lore.kernel.org/all/20230302204612.782387-1-mcgrof@kernel.org/
> > * Patch set to deprecate register_sysctl_paths()
> >    https://lore.kernel.org/all/20230302202826.776286-1-mcgrof@kernel.org/
> > * Here there is an explicit expectation for the removal of the sentinel element.
> >    https://lore.kernel.org/all/20230321130908.6972-1-frank.li@vivo.com
> > * The "ARRAY_SIZE" approach was mentioned (proposed?) in this thread
> >    https://lore.kernel.org/all/20220220060626.15885-1-tangmeng@uniontech.com
> > 
> > [3]
> > To measure the in memory savings apply this on top of this patchset.
> > 
> > "
> > diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
> > index c88854df0b62..e0073a627bac 100644
> > --- a/fs/proc/proc_sysctl.c
> > +++ b/fs/proc/proc_sysctl.c
> > @@ -976,6 +976,8 @@ static struct ctl_dir *new_dir(struct ctl_table_set *set,
> >          table[0].procname = new_name;
> >          table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
> >          init_header(&new->header, set->dir.header.root, set, node, table, 1);
> > +       // Counts additional sentinel used for each new dir.
> > +       printk("%ld sysctl saved mem kzalloc \n", sizeof(struct ctl_table));
> > 
> >          return new;
> >   }
> > @@ -1199,6 +1201,9 @@ static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table_
> >                  link_name += len;
> >                  link++;
> >          }
> > +       // Counts additional sentinel used for each new registration
> > +       //if ((head->ctl_table + head->ctl_table_size)->procname)
> > +               printk("%ld sysctl saved mem kzalloc \n", sizeof(struct ctl_table));
> >          init_header(links, dir->header.root, dir->header.set, node, link_table,
> >                      head->ctl_table_size);
> >          links->nreg = nr_entries;
> > "
> > and then run the following bash script in the kernel:
> > 
> > accum=0
> > for n in $(dmesg | grep kzalloc | awk '{print $3}') ; do
> >      echo $n
> >      accum=$(calc "$accum + $n")
> > done
> > echo $accum
> > 
> > [4]
> > add/remove: 0/0 grow/shrink: 0/21 up/down: 0/-2432 (-2432)
> > Function                                     old     new   delta
> > xpc_sys_xpc_hb                               192     128     -64
> > xpc_sys_xpc                                  128      64     -64
> > vrf_table                                    128      64     -64
> > ucma_ctl_table                               128      64     -64
> > tty_table                                    192     128     -64
> > sg_sysctls                                   128      64     -64
> > scsi_table                                   128      64     -64
> > random_table                                 448     384     -64
> > raid_table                                   192     128     -64
> > oa_table                                     192     128     -64
> > mac_hid_files                                256     192     -64
> > iwcm_ctl_table                               128      64     -64
> > ipmi_table                                   128      64     -64
> > hv_ctl_table                                 128      64     -64
> > hpet_table                                   128      64     -64
> > firmware_config_table                        192     128     -64
> > cdrom_table                                  448     384     -64
> > balloon_table                                128      64     -64
> > parport_sysctl_template                      912     720    -192
> > parport_default_sysctl_table                 584     136    -448
> > parport_device_sysctl_template               776     136    -640
> > Total: Before=429940038, After=429937606, chg -0.00%
> > 
> > [5]
> > add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-64 (-64)
> > Function                                     old     new   delta
> > random_table                                 448     384     -64
> > Total: Before=1885527, After=1885463, chg -0.00%
> > 
> > [6] https://lore.kernel.org/all/20230913-jag-sysctl_remove_empty_elem_arch-v2-0-d1bd13a29bae@samsung.com/
> > 
> > Signed-off-by: Joel Granados <j.granados@samsung.com>
> > 
> > To: Luis Chamberlain <mcgrof@kernel.org>
> > To: willy@infradead.org
> > To: josh@joshtriplett.org
> > To: Kees Cook <keescook@chromium.org>
> > To: Phillip Potter <phil@philpotter.co.uk>
> > To: Clemens Ladisch <clemens@ladisch.de>
> > To: Arnd Bergmann <arnd@arndb.de>
> > To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > To: Juergen Gross <jgross@suse.com>
> > To: Stefano Stabellini <sstabellini@kernel.org>
> > To: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> > To: Jiri Slaby <jirislaby@kernel.org>
> > To: "James E.J. Bottomley" <jejb@linux.ibm.com>
> > To: "Martin K. Petersen" <martin.petersen@oracle.com>
> > To: Doug Gilbert <dgilbert@interlog.com>
> > To: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
> > To: Jason Gunthorpe <jgg@ziepe.ca>
> > To: Leon Romanovsky <leon@kernel.org>
> > To: Corey Minyard <minyard@acm.org>
> > To: Theodore Ts'o <tytso@mit.edu>
> > To: "Jason A. Donenfeld" <Jason@zx2c4.com>
> > To: David Ahern <dsahern@kernel.org>
> > To: "David S. Miller" <davem@davemloft.net>
> > To: Eric Dumazet <edumazet@google.com>
> > To: Jakub Kicinski <kuba@kernel.org>
> > To: Paolo Abeni <pabeni@redhat.com>
> > To: Robin Holt <robinmholt@gmail.com>
> > To: Steve Wahl <steve.wahl@hpe.com>
> > To: Russ Weight <russell.h.weight@intel.com>
> > To: "Rafael J. Wysocki" <rafael@kernel.org>
> > To: Song Liu <song@kernel.org>
> > To: "K. Y. Srinivasan" <kys@microsoft.com>
> > To: Haiyang Zhang <haiyangz@microsoft.com>
> > To: Wei Liu <wei.liu@kernel.org>
> > To: Dexuan Cui <decui@microsoft.com>
> > To: Jani Nikula <jani.nikula@linux.intel.com>
> > To: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> > To: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > To: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
> > To: David Airlie <airlied@gmail.com>
> > To: Daniel Vetter <daniel@ffwll.ch>
> > Cc: linux-kernel@vger.kernel.org
> > Cc: xen-devel@lists.xenproject.org
> > Cc: linux-serial@vger.kernel.org
> > Cc: linux-scsi@vger.kernel.org
> > Cc: linuxppc-dev@lists.ozlabs.org
> > Cc: linux-rdma@vger.kernel.org
> > Cc: openipmi-developer@lists.sourceforge.net
> > Cc: netdev@vger.kernel.org
> > Cc: linux-raid@vger.kernel.org
> > Cc: linux-hyperv@vger.kernel.org
> > Cc: intel-gfx@lists.freedesktop.org
> > Cc: dri-devel@lists.freedesktop.org
> > 
> > ---
> > 
> > ---
> > Joel Granados (15):
> >        cdrom: Remove now superfluous sentinel element from ctl_table array
> >        hpet: Remove now superfluous sentinel element from ctl_table array
> >        xen: Remove now superfluous sentinel element from ctl_table array
> >        tty: Remove now superfluous sentinel element from ctl_table array
> >        scsi: Remove now superfluous sentinel element from ctl_table array
> >        parport: Remove the now superfluous sentinel element from ctl_table array
> >        macintosh: Remove the now superfluous sentinel element from ctl_table array
> >        infiniband: Remove the now superfluous sentinel element from ctl_table array
> >        char-misc: Remove the now superfluous sentinel element from ctl_table array
> >        vrf: Remove the now superfluous sentinel element from ctl_table array
> >        sgi-xp: Remove the now superfluous sentinel element from ctl_table array
> >        fw loader: Remove the now superfluous sentinel element from ctl_table array
> >        raid: Remove now superfluous sentinel element from ctl_table array
> >        Drivers: hv: Remove now superfluous sentinel element from ctl_table array
> >        intel drm: Remove now superfluous sentinel element from ctl_table array
> > 
> >   drivers/base/firmware_loader/fallback_table.c |  1 -
> >   drivers/cdrom/cdrom.c                         |  1 -
> >   drivers/char/hpet.c                           |  1 -
> >   drivers/char/ipmi/ipmi_poweroff.c             |  1 -
> >   drivers/char/random.c                         |  1 -
> >   drivers/gpu/drm/i915/i915_perf.c              |  1 -
> >   drivers/hv/hv_common.c                        |  1 -
> >   drivers/infiniband/core/iwcm.c                |  1 -
> >   drivers/infiniband/core/ucma.c                |  1 -
> >   drivers/macintosh/mac_hid.c                   |  1 -
> >   drivers/md/md.c                               |  1 -
> >   drivers/misc/sgi-xp/xpc_main.c                |  2 --
> >   drivers/net/vrf.c                             |  1 -
> >   drivers/parport/procfs.c                      | 28 +++++++++++----------------
> >   drivers/scsi/scsi_sysctl.c                    |  1 -
> >   drivers/scsi/sg.c                             |  1 -
> >   drivers/tty/tty_io.c                          |  1 -
> >   drivers/xen/balloon.c                         |  1 -
> >   18 files changed, 11 insertions(+), 35 deletions(-)
> > ---
> > base-commit: 0e945134b680040b8613e962f586d91b6d40292d
> > change-id: 20230927-jag-sysctl_remove_empty_elem_drivers-f034962a0d8c
> > 
> > Best regards,

-- 

Joel Granados

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: [PATCH v2 00/15] sysctl: Remove sentinel elements from drivers
  2023-10-02  8:55  3% [PATCH v2 " Joel Granados via B4 Relay
  2023-10-02  8:55 11% ` [PATCH v2 03/15] xen: Remove now superfluous sentinel element from ctl_table array Joel Granados via B4 Relay
@ 2023-10-02 12:27  0% ` Christophe Leroy
  2023-10-03  8:47  0%   ` Joel Granados
  1 sibling, 1 reply; 200+ results
From: Christophe Leroy @ 2023-10-02 12:27 UTC (permalink / raw)
  To: j.granados, Luis Chamberlain, willy, josh, Kees Cook,
	Phillip Potter, Clemens Ladisch, Arnd Bergmann,
	Greg Kroah-Hartman, Juergen Gross, Stefano Stabellini,
	Oleksandr Tyshchenko, Jiri Slaby, James E.J. Bottomley,
	Martin K. Petersen, Doug Gilbert, Sudip Mukherjee,
	Jason Gunthorpe, Leon Romanovsky, Corey Minyard,
	Theodore Ts'o, Jason A. Donenfeld, David Ahern,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Robin Holt, Steve Wahl, Russ Weight, Rafael J. Wysocki, Song Liu,
	K. Y. Srinivasan, Haiyang Zhang, Wei Liu, Dexuan Cui,
	Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin,
	David Airlie, Daniel Vetter
  Cc: linux-hyperv, linux-scsi, linux-rdma, netdev, intel-gfx,
	linux-kernel, dri-devel, linux-raid, linux-serial, xen-devel,
	openipmi-developer, linuxppc-dev



Le 02/10/2023 à 10:55, Joel Granados via B4 Relay a écrit :
> From: Joel Granados <j.granados@samsung.com>
> 
> What?
> These commits remove the sentinel element (last empty element) from the
> sysctl arrays of all the files under the "drivers/" directory that use a
> sysctl array for registration. The merging of the preparation patches
> (in https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/)
> to mainline allows us to just remove sentinel elements without changing
> behavior (more info here [1]).
> 
> These commits are part of a bigger set (here
> https://github.com/Joelgranados/linux/tree/tag/sysctl_remove_empty_elem_V4)
> that remove the ctl_table sentinel. Make the review process easier by
> chunking the commits into manageable pieces. Each chunk can be reviewed
> separately without noise from parallel sets.
> 
> Now that the architecture chunk has been mostly reviewed [6], we send
> the "drivers/" directory. Once this one is done, it will be follwed by
> "fs/*", "kernel/*", "net/*" and miscellaneous. The final set will remove
> the unneeded check for ->procname == NULL.
> 
> Why?
> By removing the sysctl sentinel elements we avoid kernel bloat as
> ctl_table arrays get moved out of kernel/sysctl.c into their own
> respective subsystems. This move was started long ago to avoid merge
> conflicts; the sentinel removal bit came after Mathew Wilcox suggested
> it to avoid bloating the kernel by one element as arrays moved out. This
> patchset will reduce the overall build time size of the kernel and run
> time memory bloat by about ~64 bytes per declared ctl_table array. I
> have consolidated some links that shed light on the history of this
> effort [2].
> 
> Testing:
> * Ran sysctl selftests (./tools/testing/selftests/sysctl/sysctl.sh)
> * Ran this through 0-day with no errors or warnings
> 
> Size saving after removing all sentinels:
>    These are the bytes that we save after removing all the sentinels
>    (this plus all the other chunks). I included them to get an idea of
>    how much memory we are talking about.
>      * bloat-o-meter:
>          - The "yesall" configuration results save 9158 bytes
>            https://lore.kernel.org/all/20230621091000.424843-1-j.granados@samsung.com/
>          - The "tiny" config + CONFIG_SYSCTL save 1215 bytes
>            https://lore.kernel.org/all/20230809105006.1198165-1-j.granados@samsung.com/
>      * memory usage:
>          In memory savings are measured to be 7296 bytes. (here is how to
>          measure [3])
> 
> Size saving after this patchset:
>      * bloat-o-meter
>          - The "yesall" config saves 2432 bytes [4]
>          - The "tiny" config saves 64 bytes [5]
>      * memory usage:
>          In this case there were no bytes saved because I do not have any
>          of the drivers in the patch. To measure it comment the printk in
>          `new_dir` and uncomment the if conditional in `new_links` [3].
> 
> ---
> Changes in v2:
> - Left the dangling comma in the ctl_table arrays.
> - Link to v1: https://lore.kernel.org/r/20230928-jag-sysctl_remove_empty_elem_drivers-v1-0-e59120fca9f9@samsung.com
> 
> Comments/feedback greatly appreciated

Same problem on powerpc CI tests, all boot target failed, most of them 
with similar OOPS, see 
https://patchwork.ozlabs.org/project/linuxppc-dev/patch/20231002-jag-sysctl_remove_empty_elem_drivers-v2-15-02dd0d46f71e@samsung.com/

What is strange is that I pushed your series into my github account, and 
got no failure, see https://github.com/chleroy/linux/actions/runs/6378951278

Christophe

> 
> Best
> 
> Joel
> 
> [1]
> We are able to remove a sentinel table without behavioral change by
> introducing a table_size argument in the same place where procname is
> checked for NULL. The idea is for it to keep stopping when it hits
> ->procname == NULL, while the sentinel is still present. And when the
> sentinel is removed, it will stop on the table_size. You can go to
> (https://lore.kernel.org/all/20230809105006.1198165-1-j.granados@samsung.com/)
> for more information.
> 
> [2]
> Links Related to the ctl_table sentinel removal:
> * Good summary from Luis sent with the "pull request" for the
>    preparation patches.
>    https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/
> * Another very good summary from Luis.
>    https://lore.kernel.org/all/ZMFizKFkVxUFtSqa@bombadil.infradead.org/
> * This is a patch set that replaces register_sysctl_table with register_sysctl
>    https://lore.kernel.org/all/20230302204612.782387-1-mcgrof@kernel.org/
> * Patch set to deprecate register_sysctl_paths()
>    https://lore.kernel.org/all/20230302202826.776286-1-mcgrof@kernel.org/
> * Here there is an explicit expectation for the removal of the sentinel element.
>    https://lore.kernel.org/all/20230321130908.6972-1-frank.li@vivo.com
> * The "ARRAY_SIZE" approach was mentioned (proposed?) in this thread
>    https://lore.kernel.org/all/20220220060626.15885-1-tangmeng@uniontech.com
> 
> [3]
> To measure the in memory savings apply this on top of this patchset.
> 
> "
> diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
> index c88854df0b62..e0073a627bac 100644
> --- a/fs/proc/proc_sysctl.c
> +++ b/fs/proc/proc_sysctl.c
> @@ -976,6 +976,8 @@ static struct ctl_dir *new_dir(struct ctl_table_set *set,
>          table[0].procname = new_name;
>          table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
>          init_header(&new->header, set->dir.header.root, set, node, table, 1);
> +       // Counts additional sentinel used for each new dir.
> +       printk("%ld sysctl saved mem kzalloc \n", sizeof(struct ctl_table));
> 
>          return new;
>   }
> @@ -1199,6 +1201,9 @@ static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table_
>                  link_name += len;
>                  link++;
>          }
> +       // Counts additional sentinel used for each new registration
> +       //if ((head->ctl_table + head->ctl_table_size)->procname)
> +               printk("%ld sysctl saved mem kzalloc \n", sizeof(struct ctl_table));
>          init_header(links, dir->header.root, dir->header.set, node, link_table,
>                      head->ctl_table_size);
>          links->nreg = nr_entries;
> "
> and then run the following bash script in the kernel:
> 
> accum=0
> for n in $(dmesg | grep kzalloc | awk '{print $3}') ; do
>      echo $n
>      accum=$(calc "$accum + $n")
> done
> echo $accum
> 
> [4]
> add/remove: 0/0 grow/shrink: 0/21 up/down: 0/-2432 (-2432)
> Function                                     old     new   delta
> xpc_sys_xpc_hb                               192     128     -64
> xpc_sys_xpc                                  128      64     -64
> vrf_table                                    128      64     -64
> ucma_ctl_table                               128      64     -64
> tty_table                                    192     128     -64
> sg_sysctls                                   128      64     -64
> scsi_table                                   128      64     -64
> random_table                                 448     384     -64
> raid_table                                   192     128     -64
> oa_table                                     192     128     -64
> mac_hid_files                                256     192     -64
> iwcm_ctl_table                               128      64     -64
> ipmi_table                                   128      64     -64
> hv_ctl_table                                 128      64     -64
> hpet_table                                   128      64     -64
> firmware_config_table                        192     128     -64
> cdrom_table                                  448     384     -64
> balloon_table                                128      64     -64
> parport_sysctl_template                      912     720    -192
> parport_default_sysctl_table                 584     136    -448
> parport_device_sysctl_template               776     136    -640
> Total: Before=429940038, After=429937606, chg -0.00%
> 
> [5]
> add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-64 (-64)
> Function                                     old     new   delta
> random_table                                 448     384     -64
> Total: Before=1885527, After=1885463, chg -0.00%
> 
> [6] https://lore.kernel.org/all/20230913-jag-sysctl_remove_empty_elem_arch-v2-0-d1bd13a29bae@samsung.com/
> 
> Signed-off-by: Joel Granados <j.granados@samsung.com>
> 
> To: Luis Chamberlain <mcgrof@kernel.org>
> To: willy@infradead.org
> To: josh@joshtriplett.org
> To: Kees Cook <keescook@chromium.org>
> To: Phillip Potter <phil@philpotter.co.uk>
> To: Clemens Ladisch <clemens@ladisch.de>
> To: Arnd Bergmann <arnd@arndb.de>
> To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> To: Juergen Gross <jgross@suse.com>
> To: Stefano Stabellini <sstabellini@kernel.org>
> To: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> To: Jiri Slaby <jirislaby@kernel.org>
> To: "James E.J. Bottomley" <jejb@linux.ibm.com>
> To: "Martin K. Petersen" <martin.petersen@oracle.com>
> To: Doug Gilbert <dgilbert@interlog.com>
> To: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
> To: Jason Gunthorpe <jgg@ziepe.ca>
> To: Leon Romanovsky <leon@kernel.org>
> To: Corey Minyard <minyard@acm.org>
> To: Theodore Ts'o <tytso@mit.edu>
> To: "Jason A. Donenfeld" <Jason@zx2c4.com>
> To: David Ahern <dsahern@kernel.org>
> To: "David S. Miller" <davem@davemloft.net>
> To: Eric Dumazet <edumazet@google.com>
> To: Jakub Kicinski <kuba@kernel.org>
> To: Paolo Abeni <pabeni@redhat.com>
> To: Robin Holt <robinmholt@gmail.com>
> To: Steve Wahl <steve.wahl@hpe.com>
> To: Russ Weight <russell.h.weight@intel.com>
> To: "Rafael J. Wysocki" <rafael@kernel.org>
> To: Song Liu <song@kernel.org>
> To: "K. Y. Srinivasan" <kys@microsoft.com>
> To: Haiyang Zhang <haiyangz@microsoft.com>
> To: Wei Liu <wei.liu@kernel.org>
> To: Dexuan Cui <decui@microsoft.com>
> To: Jani Nikula <jani.nikula@linux.intel.com>
> To: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
> To: Rodrigo Vivi <rodrigo.vivi@intel.com>
> To: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
> To: David Airlie <airlied@gmail.com>
> To: Daniel Vetter <daniel@ffwll.ch>
> Cc: linux-kernel@vger.kernel.org
> Cc: xen-devel@lists.xenproject.org
> Cc: linux-serial@vger.kernel.org
> Cc: linux-scsi@vger.kernel.org
> Cc: linuxppc-dev@lists.ozlabs.org
> Cc: linux-rdma@vger.kernel.org
> Cc: openipmi-developer@lists.sourceforge.net
> Cc: netdev@vger.kernel.org
> Cc: linux-raid@vger.kernel.org
> Cc: linux-hyperv@vger.kernel.org
> Cc: intel-gfx@lists.freedesktop.org
> Cc: dri-devel@lists.freedesktop.org
> 
> ---
> 
> ---
> Joel Granados (15):
>        cdrom: Remove now superfluous sentinel element from ctl_table array
>        hpet: Remove now superfluous sentinel element from ctl_table array
>        xen: Remove now superfluous sentinel element from ctl_table array
>        tty: Remove now superfluous sentinel element from ctl_table array
>        scsi: Remove now superfluous sentinel element from ctl_table array
>        parport: Remove the now superfluous sentinel element from ctl_table array
>        macintosh: Remove the now superfluous sentinel element from ctl_table array
>        infiniband: Remove the now superfluous sentinel element from ctl_table array
>        char-misc: Remove the now superfluous sentinel element from ctl_table array
>        vrf: Remove the now superfluous sentinel element from ctl_table array
>        sgi-xp: Remove the now superfluous sentinel element from ctl_table array
>        fw loader: Remove the now superfluous sentinel element from ctl_table array
>        raid: Remove now superfluous sentinel element from ctl_table array
>        Drivers: hv: Remove now superfluous sentinel element from ctl_table array
>        intel drm: Remove now superfluous sentinel element from ctl_table array
> 
>   drivers/base/firmware_loader/fallback_table.c |  1 -
>   drivers/cdrom/cdrom.c                         |  1 -
>   drivers/char/hpet.c                           |  1 -
>   drivers/char/ipmi/ipmi_poweroff.c             |  1 -
>   drivers/char/random.c                         |  1 -
>   drivers/gpu/drm/i915/i915_perf.c              |  1 -
>   drivers/hv/hv_common.c                        |  1 -
>   drivers/infiniband/core/iwcm.c                |  1 -
>   drivers/infiniband/core/ucma.c                |  1 -
>   drivers/macintosh/mac_hid.c                   |  1 -
>   drivers/md/md.c                               |  1 -
>   drivers/misc/sgi-xp/xpc_main.c                |  2 --
>   drivers/net/vrf.c                             |  1 -
>   drivers/parport/procfs.c                      | 28 +++++++++++----------------
>   drivers/scsi/scsi_sysctl.c                    |  1 -
>   drivers/scsi/sg.c                             |  1 -
>   drivers/tty/tty_io.c                          |  1 -
>   drivers/xen/balloon.c                         |  1 -
>   18 files changed, 11 insertions(+), 35 deletions(-)
> ---
> base-commit: 0e945134b680040b8613e962f586d91b6d40292d
> change-id: 20230927-jag-sysctl_remove_empty_elem_drivers-f034962a0d8c
> 
> Best regards,

^ permalink raw reply	[relevance 0%]

* [PATCH v2 03/15] xen: Remove now superfluous sentinel element from ctl_table array
  2023-10-02  8:55  3% [PATCH v2 " Joel Granados via B4 Relay
@ 2023-10-02  8:55 11% ` Joel Granados via B4 Relay
  2023-10-02 12:27  0% ` [PATCH v2 00/15] sysctl: Remove sentinel elements from drivers Christophe Leroy
  1 sibling, 0 replies; 200+ results
From: Joel Granados via B4 Relay @ 2023-10-02  8:55 UTC (permalink / raw)
  To: Luis Chamberlain, willy, josh, Kees Cook, Phillip Potter,
	Clemens Ladisch, Arnd Bergmann, Greg Kroah-Hartman,
	Juergen Gross, Stefano Stabellini, Oleksandr Tyshchenko,
	Jiri Slaby, James E.J. Bottomley, Martin K. Petersen,
	Doug Gilbert, Sudip Mukherjee, Jason Gunthorpe, Leon Romanovsky,
	Corey Minyard, Theodore Ts'o, Jason A. Donenfeld,
	David Ahern, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Robin Holt, Steve Wahl, Russ Weight,
	Rafael J. Wysocki, Song Liu, K. Y. Srinivasan, Haiyang Zhang,
	Wei Liu, Dexuan Cui, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi,
	Tvrtko Ursulin, David Airlie, Daniel Vetter
  Cc: Joel Granados, linux-kernel, xen-devel, linux-serial, linux-scsi,
	linuxppc-dev, linux-rdma, openipmi-developer, netdev, linux-raid,
	linux-hyperv, intel-gfx, dri-devel

From: Joel Granados <j.granados@samsung.com>

This commit comes at the tail end of a greater effort to remove the
empty elements at the end of the ctl_table arrays (sentinels) which
will reduce the overall build time size of the kernel and run time
memory bloat by ~64 bytes per sentinel (further information Link :
https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/)

Remove sentinel from balloon_table

Signed-off-by: Joel Granados <j.granados@samsung.com>
---
 drivers/xen/balloon.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 586a1673459e..976c6cdf9ee6 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -94,7 +94,6 @@ static struct ctl_table balloon_table[] = {
 		.extra1         = SYSCTL_ZERO,
 		.extra2         = SYSCTL_ONE,
 	},
-	{ }
 };
 
 #else

-- 
2.30.2



^ permalink raw reply related	[relevance 11%]

* [PATCH v2 00/15] sysctl: Remove sentinel elements from drivers
@ 2023-10-02  8:55  3% Joel Granados via B4 Relay
  2023-10-02  8:55 11% ` [PATCH v2 03/15] xen: Remove now superfluous sentinel element from ctl_table array Joel Granados via B4 Relay
  2023-10-02 12:27  0% ` [PATCH v2 00/15] sysctl: Remove sentinel elements from drivers Christophe Leroy
  0 siblings, 2 replies; 200+ results
From: Joel Granados via B4 Relay @ 2023-10-02  8:55 UTC (permalink / raw)
  To: Luis Chamberlain, willy, josh, Kees Cook, Phillip Potter,
	Clemens Ladisch, Arnd Bergmann, Greg Kroah-Hartman,
	Juergen Gross, Stefano Stabellini, Oleksandr Tyshchenko,
	Jiri Slaby, James E.J. Bottomley, Martin K. Petersen,
	Doug Gilbert, Sudip Mukherjee, Jason Gunthorpe, Leon Romanovsky,
	Corey Minyard, Theodore Ts'o, Jason A. Donenfeld,
	David Ahern, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Robin Holt, Steve Wahl, Russ Weight,
	Rafael J. Wysocki, Song Liu, K. Y. Srinivasan, Haiyang Zhang,
	Wei Liu, Dexuan Cui, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi,
	Tvrtko Ursulin, David Airlie, Daniel Vetter
  Cc: Joel Granados, linux-kernel, xen-devel, linux-serial, linux-scsi,
	linuxppc-dev, linux-rdma, openipmi-developer, netdev, linux-raid,
	linux-hyperv, intel-gfx, dri-devel

From: Joel Granados <j.granados@samsung.com>

What?
These commits remove the sentinel element (last empty element) from the
sysctl arrays of all the files under the "drivers/" directory that use a
sysctl array for registration. The merging of the preparation patches
(in https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/)
to mainline allows us to just remove sentinel elements without changing
behavior (more info here [1]).

These commits are part of a bigger set (here
https://github.com/Joelgranados/linux/tree/tag/sysctl_remove_empty_elem_V4)
that remove the ctl_table sentinel. Make the review process easier by
chunking the commits into manageable pieces. Each chunk can be reviewed
separately without noise from parallel sets.

Now that the architecture chunk has been mostly reviewed [6], we send
the "drivers/" directory. Once this one is done, it will be follwed by
"fs/*", "kernel/*", "net/*" and miscellaneous. The final set will remove
the unneeded check for ->procname == NULL.

Why?
By removing the sysctl sentinel elements we avoid kernel bloat as
ctl_table arrays get moved out of kernel/sysctl.c into their own
respective subsystems. This move was started long ago to avoid merge
conflicts; the sentinel removal bit came after Mathew Wilcox suggested
it to avoid bloating the kernel by one element as arrays moved out. This
patchset will reduce the overall build time size of the kernel and run
time memory bloat by about ~64 bytes per declared ctl_table array. I
have consolidated some links that shed light on the history of this
effort [2].

Testing:
* Ran sysctl selftests (./tools/testing/selftests/sysctl/sysctl.sh)
* Ran this through 0-day with no errors or warnings

Size saving after removing all sentinels:
  These are the bytes that we save after removing all the sentinels
  (this plus all the other chunks). I included them to get an idea of
  how much memory we are talking about.
    * bloat-o-meter:
        - The "yesall" configuration results save 9158 bytes
          https://lore.kernel.org/all/20230621091000.424843-1-j.granados@samsung.com/
        - The "tiny" config + CONFIG_SYSCTL save 1215 bytes
          https://lore.kernel.org/all/20230809105006.1198165-1-j.granados@samsung.com/
    * memory usage:
        In memory savings are measured to be 7296 bytes. (here is how to
        measure [3])

Size saving after this patchset:
    * bloat-o-meter
        - The "yesall" config saves 2432 bytes [4]
        - The "tiny" config saves 64 bytes [5]
    * memory usage:
        In this case there were no bytes saved because I do not have any
        of the drivers in the patch. To measure it comment the printk in
        `new_dir` and uncomment the if conditional in `new_links` [3].

---
Changes in v2:
- Left the dangling comma in the ctl_table arrays.
- Link to v1: https://lore.kernel.org/r/20230928-jag-sysctl_remove_empty_elem_drivers-v1-0-e59120fca9f9@samsung.com

Comments/feedback greatly appreciated

Best

Joel

[1]
We are able to remove a sentinel table without behavioral change by
introducing a table_size argument in the same place where procname is
checked for NULL. The idea is for it to keep stopping when it hits
->procname == NULL, while the sentinel is still present. And when the
sentinel is removed, it will stop on the table_size. You can go to 
(https://lore.kernel.org/all/20230809105006.1198165-1-j.granados@samsung.com/)
for more information.

[2]
Links Related to the ctl_table sentinel removal:
* Good summary from Luis sent with the "pull request" for the
  preparation patches.
  https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/
* Another very good summary from Luis.
  https://lore.kernel.org/all/ZMFizKFkVxUFtSqa@bombadil.infradead.org/
* This is a patch set that replaces register_sysctl_table with register_sysctl
  https://lore.kernel.org/all/20230302204612.782387-1-mcgrof@kernel.org/
* Patch set to deprecate register_sysctl_paths()
  https://lore.kernel.org/all/20230302202826.776286-1-mcgrof@kernel.org/
* Here there is an explicit expectation for the removal of the sentinel element.
  https://lore.kernel.org/all/20230321130908.6972-1-frank.li@vivo.com
* The "ARRAY_SIZE" approach was mentioned (proposed?) in this thread
  https://lore.kernel.org/all/20220220060626.15885-1-tangmeng@uniontech.com

[3]
To measure the in memory savings apply this on top of this patchset.

"
diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
index c88854df0b62..e0073a627bac 100644
--- a/fs/proc/proc_sysctl.c
+++ b/fs/proc/proc_sysctl.c
@@ -976,6 +976,8 @@ static struct ctl_dir *new_dir(struct ctl_table_set *set,
        table[0].procname = new_name;
        table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
        init_header(&new->header, set->dir.header.root, set, node, table, 1);
+       // Counts additional sentinel used for each new dir.
+       printk("%ld sysctl saved mem kzalloc \n", sizeof(struct ctl_table));

        return new;
 }
@@ -1199,6 +1201,9 @@ static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table_
                link_name += len;
                link++;
        }
+       // Counts additional sentinel used for each new registration
+       //if ((head->ctl_table + head->ctl_table_size)->procname)
+               printk("%ld sysctl saved mem kzalloc \n", sizeof(struct ctl_table));
        init_header(links, dir->header.root, dir->header.set, node, link_table,
                    head->ctl_table_size);
        links->nreg = nr_entries;
"
and then run the following bash script in the kernel:

accum=0
for n in $(dmesg | grep kzalloc | awk '{print $3}') ; do
    echo $n
    accum=$(calc "$accum + $n")
done
echo $accum

[4]
add/remove: 0/0 grow/shrink: 0/21 up/down: 0/-2432 (-2432)
Function                                     old     new   delta
xpc_sys_xpc_hb                               192     128     -64
xpc_sys_xpc                                  128      64     -64
vrf_table                                    128      64     -64
ucma_ctl_table                               128      64     -64
tty_table                                    192     128     -64
sg_sysctls                                   128      64     -64
scsi_table                                   128      64     -64
random_table                                 448     384     -64
raid_table                                   192     128     -64
oa_table                                     192     128     -64
mac_hid_files                                256     192     -64
iwcm_ctl_table                               128      64     -64
ipmi_table                                   128      64     -64
hv_ctl_table                                 128      64     -64
hpet_table                                   128      64     -64
firmware_config_table                        192     128     -64
cdrom_table                                  448     384     -64
balloon_table                                128      64     -64
parport_sysctl_template                      912     720    -192
parport_default_sysctl_table                 584     136    -448
parport_device_sysctl_template               776     136    -640
Total: Before=429940038, After=429937606, chg -0.00%

[5]
add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-64 (-64)
Function                                     old     new   delta
random_table                                 448     384     -64
Total: Before=1885527, After=1885463, chg -0.00%

[6] https://lore.kernel.org/all/20230913-jag-sysctl_remove_empty_elem_arch-v2-0-d1bd13a29bae@samsung.com/

Signed-off-by: Joel Granados <j.granados@samsung.com>

To: Luis Chamberlain <mcgrof@kernel.org>
To: willy@infradead.org
To: josh@joshtriplett.org
To: Kees Cook <keescook@chromium.org>
To: Phillip Potter <phil@philpotter.co.uk>
To: Clemens Ladisch <clemens@ladisch.de>
To: Arnd Bergmann <arnd@arndb.de>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Juergen Gross <jgross@suse.com>
To: Stefano Stabellini <sstabellini@kernel.org>
To: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
To: Jiri Slaby <jirislaby@kernel.org>
To: "James E.J. Bottomley" <jejb@linux.ibm.com>
To: "Martin K. Petersen" <martin.petersen@oracle.com>
To: Doug Gilbert <dgilbert@interlog.com>
To: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
To: Jason Gunthorpe <jgg@ziepe.ca>
To: Leon Romanovsky <leon@kernel.org>
To: Corey Minyard <minyard@acm.org>
To: Theodore Ts'o <tytso@mit.edu>
To: "Jason A. Donenfeld" <Jason@zx2c4.com>
To: David Ahern <dsahern@kernel.org>
To: "David S. Miller" <davem@davemloft.net>
To: Eric Dumazet <edumazet@google.com>
To: Jakub Kicinski <kuba@kernel.org>
To: Paolo Abeni <pabeni@redhat.com>
To: Robin Holt <robinmholt@gmail.com>
To: Steve Wahl <steve.wahl@hpe.com>
To: Russ Weight <russell.h.weight@intel.com>
To: "Rafael J. Wysocki" <rafael@kernel.org>
To: Song Liu <song@kernel.org>
To: "K. Y. Srinivasan" <kys@microsoft.com>
To: Haiyang Zhang <haiyangz@microsoft.com>
To: Wei Liu <wei.liu@kernel.org>
To: Dexuan Cui <decui@microsoft.com>
To: Jani Nikula <jani.nikula@linux.intel.com>
To: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
To: Rodrigo Vivi <rodrigo.vivi@intel.com>
To: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
To: David Airlie <airlied@gmail.com>
To: Daniel Vetter <daniel@ffwll.ch>
Cc: linux-kernel@vger.kernel.org
Cc: xen-devel@lists.xenproject.org
Cc: linux-serial@vger.kernel.org
Cc: linux-scsi@vger.kernel.org
Cc: linuxppc-dev@lists.ozlabs.org
Cc: linux-rdma@vger.kernel.org
Cc: openipmi-developer@lists.sourceforge.net
Cc: netdev@vger.kernel.org
Cc: linux-raid@vger.kernel.org
Cc: linux-hyperv@vger.kernel.org
Cc: intel-gfx@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org

---

---
Joel Granados (15):
      cdrom: Remove now superfluous sentinel element from ctl_table array
      hpet: Remove now superfluous sentinel element from ctl_table array
      xen: Remove now superfluous sentinel element from ctl_table array
      tty: Remove now superfluous sentinel element from ctl_table array
      scsi: Remove now superfluous sentinel element from ctl_table array
      parport: Remove the now superfluous sentinel element from ctl_table array
      macintosh: Remove the now superfluous sentinel element from ctl_table array
      infiniband: Remove the now superfluous sentinel element from ctl_table array
      char-misc: Remove the now superfluous sentinel element from ctl_table array
      vrf: Remove the now superfluous sentinel element from ctl_table array
      sgi-xp: Remove the now superfluous sentinel element from ctl_table array
      fw loader: Remove the now superfluous sentinel element from ctl_table array
      raid: Remove now superfluous sentinel element from ctl_table array
      Drivers: hv: Remove now superfluous sentinel element from ctl_table array
      intel drm: Remove now superfluous sentinel element from ctl_table array

 drivers/base/firmware_loader/fallback_table.c |  1 -
 drivers/cdrom/cdrom.c                         |  1 -
 drivers/char/hpet.c                           |  1 -
 drivers/char/ipmi/ipmi_poweroff.c             |  1 -
 drivers/char/random.c                         |  1 -
 drivers/gpu/drm/i915/i915_perf.c              |  1 -
 drivers/hv/hv_common.c                        |  1 -
 drivers/infiniband/core/iwcm.c                |  1 -
 drivers/infiniband/core/ucma.c                |  1 -
 drivers/macintosh/mac_hid.c                   |  1 -
 drivers/md/md.c                               |  1 -
 drivers/misc/sgi-xp/xpc_main.c                |  2 --
 drivers/net/vrf.c                             |  1 -
 drivers/parport/procfs.c                      | 28 +++++++++++----------------
 drivers/scsi/scsi_sysctl.c                    |  1 -
 drivers/scsi/sg.c                             |  1 -
 drivers/tty/tty_io.c                          |  1 -
 drivers/xen/balloon.c                         |  1 -
 18 files changed, 11 insertions(+), 35 deletions(-)
---
base-commit: 0e945134b680040b8613e962f586d91b6d40292d
change-id: 20230927-jag-sysctl_remove_empty_elem_drivers-f034962a0d8c

Best regards,
-- 
Joel Granados <j.granados@samsung.com>



^ permalink raw reply related	[relevance 3%]

* Re: [PATCH 00/15] sysctl: Remove sentinel elements from drivers
  2023-09-28 16:31  0% ` [PATCH 00/15] sysctl: Remove sentinel elements from drivers Christophe Leroy
@ 2023-10-02  8:47  0%   ` Joel Granados
  0 siblings, 0 replies; 200+ results
From: Joel Granados @ 2023-10-02  8:47 UTC (permalink / raw)
  To: Christophe Leroy
  Cc: Luis Chamberlain, willy, josh, Kees Cook, Phillip Potter,
	Clemens Ladisch, Arnd Bergmann, Greg Kroah-Hartman,
	Juergen Gross, Stefano Stabellini, Oleksandr Tyshchenko,
	Jiri Slaby, James E.J. Bottomley, Martin K. Petersen,
	Doug Gilbert, Sudip Mukherjee, Jason Gunthorpe, Leon Romanovsky,
	Corey Minyard, Theodore Ts'o, Jason A. Donenfeld,
	David Ahern, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Robin Holt, Steve Wahl, Russ Weight,
	Rafael J. Wysocki, Song Liu, K. Y. Srinivasan, Haiyang Zhang,
	Wei Liu, Dexuan Cui, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi,
	Tvrtko Ursulin, David Airlie, Daniel Vetter, linux-hyperv,
	linux-scsi, linux-rdma, netdev, intel-gfx, linux-kernel,
	dri-devel, linux-raid, linux-serial, xen-devel,
	openipmi-developer, linuxppc-dev

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

On Thu, Sep 28, 2023 at 04:31:30PM +0000, Christophe Leroy wrote:
> 
> 
> Le 28/09/2023 à 15:21, Joel Granados via B4 Relay a écrit :
> > From: Joel Granados <j.granados@samsung.com>
> 
> Automatic test fails on powerpc, see 
> https://patchwork.ozlabs.org/project/linuxppc-dev/patch/20230928-jag-sysctl_remove_empty_elem_drivers-v1-15-e59120fca9f9@samsung.com/
From this I got to this URL
https://github.com/linuxppc/linux-snowpatch/actions/runs/6339718136/job/17221399242
and saw this message "sysctl table check failed: dev/tty/ No proc_handler".
This means that we hit the check for entry->proc_handler in
sysctl_check_table.

> 
> Kernel attempted to read user page (1a111316) - exploit attempt? (uid: 0)
> BUG: Unable to handle kernel data access on read at 0x1a111316
> Faulting instruction address: 0xc0545338
> Oops: Kernel access of bad area, sig: 11 [#1]
> BE PAGE_SIZE=4K PowerPC 44x Platform
> Modules linked in:
> CPU: 0 PID: 1 Comm: swapper Not tainted 6.5.0-rc6-gdef13277bacb #1
> Hardware name: amcc,bamboo 440GR Rev. B 0x422218d3 PowerPC 44x Platform
> NIP:  c0545338 LR: c0548468 CTR: ffffffff
> REGS: c084fae0 TRAP: 0300   Not tainted  (6.5.0-rc6-gdef13277bacb)
> MSR:  00021000 <CE,ME>  CR: 84004288  XER: 00000000
> DEAR: 1a111316 ESR: 00000000
> GPR00: c0548468 c084fbd0 c0888000 c084fc99 00000000 c084fc7c 1a110316 
> 000affff
> GPR08: ffffffff c084fd18 1a111316 04ffffff 22000282 00000000 c00027c0 
> 00000000
> GPR16: 00000000 00000000 c0040000 c003d544 00000001 c003eb2c 096023d4 
> 00000000
> GPR24: c0636502 c0636502 c084fc74 c0588510 c084fc68 c084fc7c c084fc99 
> 00000002
> NIP [c0545338] string+0x78/0x148
> LR [c0548468] vsnprintf+0x3d8/0x824
> Call Trace:
> [c084fbd0] [c084fc7c] 0xc084fc7c (unreliable)
> [c084fbe0] [c0548468] vsnprintf+0x3d8/0x824
> [c084fc30] [c0072dec] vprintk_store+0x17c/0x4c8
> [c084fcc0] [c007322c] vprintk_emit+0xf4/0x2a0
> [c084fd00] [c0073d04] _printk+0x60/0x88
> [c084fd40] [c01ab63c] sysctl_err+0x78/0xa4
> [c084fd80] [c01ab404] __register_sysctl_table+0x6a0/0x6c4
> [c084fde0] [c06a585c] __register_sysctl_init+0x30/0x78
> [c084fe00] [c06a8cc8] tty_init+0x44/0x168
> [c084fe30] [c00023c4] do_one_initcall+0x64/0x2a0
> [c084fea0] [c068f060] kernel_init_freeable+0x184/0x230
> [c084fee0] [c00027e4] kernel_init+0x24/0x124
> [c084ff00] [c000f1fc] ret_from_kernel_user_thread+0x14/0x1c
I followed this trace and proc_handler is correctly defined in tty_table
(struct ctl_table) in drivers/tty/tty_io.c:tty_init and there is not
path that changes these values.
Additionally, we then fail trying to print instead of continuing with
the initialization. My conjecture is that this might be due to something
different than tht sysctl register call.

Does this happen consistenly or is this just a one off issue?

To what branch are these patches being applied to?

I'm going to post my V2 and keep working on this issue if it pops up
again.

Thx for the report

Best

> --- interrupt: 0 at 0x0
> NIP:  00000000 LR: 00000000 CTR: 00000000
> REGS: c084ff10 TRAP: 0000   Not tainted  (6.5.0-rc6-gdef13277bacb)
> MSR:  00000000 <>  CR: 00000000  XER: 00000000
> 
> GPR00: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 
> 00000000
> GPR08: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 
> 00000000
> GPR16: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 
> 00000000
> GPR24: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 
> 00000000
> NIP [00000000] 0x0
> LR [00000000] 0x0
> --- interrupt: 0
> Code: 91610008 90e1000c 4bffd0b5 80010014 38210010 7c0803a6 4e800020 
> 409d0008 99230000 38630001 38840001 4240ffd0 <7d2a20ae> 7f851840 
> 5528063e 2c080000
> ---[ end trace 0000000000000000 ]---
> 
> note: swapper[1] exited with irqs disabled
> Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b
> 
> 
> > 
> > What?
> > These commits remove the sentinel element (last empty element) from the
> > sysctl arrays of all the files under the "drivers/" directory that use a
> > sysctl array for registration. The merging of the preparation patches
> > (in https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/)
> > to mainline allows us to just remove sentinel elements without changing
> > behavior (more info here [1]).
<--- snip --->
> >   drivers/macintosh/mac_hid.c                   |  3 +-
> >   drivers/md/md.c                               |  3 +-
> >   drivers/misc/sgi-xp/xpc_main.c                |  6 ++--
> >   drivers/net/vrf.c                             |  3 +-
> >   drivers/parport/procfs.c                      | 42 ++++++++++++---------------
> >   drivers/scsi/scsi_sysctl.c                    |  3 +-
> >   drivers/scsi/sg.c                             |  3 +-
> >   drivers/tty/tty_io.c                          |  3 +-
> >   drivers/xen/balloon.c                         |  3 +-
> >   18 files changed, 36 insertions(+), 60 deletions(-)
> > ---
> > base-commit: 0e945134b680040b8613e962f586d91b6d40292d
> > change-id: 20230927-jag-sysctl_remove_empty_elem_drivers-f034962a0d8c
> > 
> > Best regards,

-- 

Joel Granados

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: [PATCH 00/15] sysctl: Remove sentinel elements from drivers
  2023-09-28 13:21  3% [PATCH 00/15] sysctl: Remove sentinel elements from drivers Joel Granados via B4 Relay
  2023-09-28 13:21 11% ` [PATCH 03/15] xen: Remove now superfluous sentinel element from ctl_table array Joel Granados via B4 Relay
@ 2023-09-28 16:31  0% ` Christophe Leroy
  2023-10-02  8:47  0%   ` Joel Granados
  1 sibling, 1 reply; 200+ results
From: Christophe Leroy @ 2023-09-28 16:31 UTC (permalink / raw)
  To: j.granados, Luis Chamberlain, willy, josh, Kees Cook,
	Phillip Potter, Clemens Ladisch, Arnd Bergmann,
	Greg Kroah-Hartman, Juergen Gross, Stefano Stabellini,
	Oleksandr Tyshchenko, Jiri Slaby, James E.J. Bottomley,
	Martin K. Petersen, Doug Gilbert, Sudip Mukherjee,
	Jason Gunthorpe, Leon Romanovsky, Corey Minyard,
	Theodore Ts'o, Jason A. Donenfeld, David Ahern,
	David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Robin Holt, Steve Wahl, Russ Weight, Rafael J. Wysocki, Song Liu,
	K. Y. Srinivasan, Haiyang Zhang, Wei Liu, Dexuan Cui,
	Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin,
	David Airlie, Daniel Vetter
  Cc: linux-hyperv, linux-scsi, linux-rdma, netdev, intel-gfx,
	linux-kernel, dri-devel, linux-raid, linux-serial, xen-devel,
	openipmi-developer, linuxppc-dev



Le 28/09/2023 à 15:21, Joel Granados via B4 Relay a écrit :
> From: Joel Granados <j.granados@samsung.com>

Automatic test fails on powerpc, see 
https://patchwork.ozlabs.org/project/linuxppc-dev/patch/20230928-jag-sysctl_remove_empty_elem_drivers-v1-15-e59120fca9f9@samsung.com/

Kernel attempted to read user page (1a111316) - exploit attempt? (uid: 0)
BUG: Unable to handle kernel data access on read at 0x1a111316
Faulting instruction address: 0xc0545338
Oops: Kernel access of bad area, sig: 11 [#1]
BE PAGE_SIZE=4K PowerPC 44x Platform
Modules linked in:
CPU: 0 PID: 1 Comm: swapper Not tainted 6.5.0-rc6-gdef13277bacb #1
Hardware name: amcc,bamboo 440GR Rev. B 0x422218d3 PowerPC 44x Platform
NIP:  c0545338 LR: c0548468 CTR: ffffffff
REGS: c084fae0 TRAP: 0300   Not tainted  (6.5.0-rc6-gdef13277bacb)
MSR:  00021000 <CE,ME>  CR: 84004288  XER: 00000000
DEAR: 1a111316 ESR: 00000000
GPR00: c0548468 c084fbd0 c0888000 c084fc99 00000000 c084fc7c 1a110316 
000affff
GPR08: ffffffff c084fd18 1a111316 04ffffff 22000282 00000000 c00027c0 
00000000
GPR16: 00000000 00000000 c0040000 c003d544 00000001 c003eb2c 096023d4 
00000000
GPR24: c0636502 c0636502 c084fc74 c0588510 c084fc68 c084fc7c c084fc99 
00000002
NIP [c0545338] string+0x78/0x148
LR [c0548468] vsnprintf+0x3d8/0x824
Call Trace:
[c084fbd0] [c084fc7c] 0xc084fc7c (unreliable)
[c084fbe0] [c0548468] vsnprintf+0x3d8/0x824
[c084fc30] [c0072dec] vprintk_store+0x17c/0x4c8
[c084fcc0] [c007322c] vprintk_emit+0xf4/0x2a0
[c084fd00] [c0073d04] _printk+0x60/0x88
[c084fd40] [c01ab63c] sysctl_err+0x78/0xa4
[c084fd80] [c01ab404] __register_sysctl_table+0x6a0/0x6c4
[c084fde0] [c06a585c] __register_sysctl_init+0x30/0x78
[c084fe00] [c06a8cc8] tty_init+0x44/0x168
[c084fe30] [c00023c4] do_one_initcall+0x64/0x2a0
[c084fea0] [c068f060] kernel_init_freeable+0x184/0x230
[c084fee0] [c00027e4] kernel_init+0x24/0x124
[c084ff00] [c000f1fc] ret_from_kernel_user_thread+0x14/0x1c
--- interrupt: 0 at 0x0
NIP:  00000000 LR: 00000000 CTR: 00000000
REGS: c084ff10 TRAP: 0000   Not tainted  (6.5.0-rc6-gdef13277bacb)
MSR:  00000000 <>  CR: 00000000  XER: 00000000

GPR00: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 
00000000
GPR08: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 
00000000
GPR16: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 
00000000
GPR24: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 
00000000
NIP [00000000] 0x0
LR [00000000] 0x0
--- interrupt: 0
Code: 91610008 90e1000c 4bffd0b5 80010014 38210010 7c0803a6 4e800020 
409d0008 99230000 38630001 38840001 4240ffd0 <7d2a20ae> 7f851840 
5528063e 2c080000
---[ end trace 0000000000000000 ]---

note: swapper[1] exited with irqs disabled
Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b


> 
> What?
> These commits remove the sentinel element (last empty element) from the
> sysctl arrays of all the files under the "drivers/" directory that use a
> sysctl array for registration. The merging of the preparation patches
> (in https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/)
> to mainline allows us to just remove sentinel elements without changing
> behavior (more info here [1]).
> 
> These commits are part of a bigger set (here
> https://github.com/Joelgranados/linux/tree/tag/sysctl_remove_empty_elem_V4)
> that remove the ctl_table sentinel. Make the review process easier by
> chunking the commits into manageable pieces. Each chunk can be reviewed
> separately without noise from parallel sets.
> 
> Now that the architecture chunk has been mostly reviewed [6], we send
> the "drivers/" directory. Once this one is done, it will be follwed by
> "fs/*", "kernel/*", "net/*" and miscellaneous. The final set will remove
> the unneeded check for ->procname == NULL.
> 
> Why?
> By removing the sysctl sentinel elements we avoid kernel bloat as
> ctl_table arrays get moved out of kernel/sysctl.c into their own
> respective subsystems. This move was started long ago to avoid merge
> conflicts; the sentinel removal bit came after Mathew Wilcox suggested
> it to avoid bloating the kernel by one element as arrays moved out. This
> patchset will reduce the overall build time size of the kernel and run
> time memory bloat by about ~64 bytes per declared ctl_table array. I
> have consolidated some links that shed light on the history of this
> effort [2].
> 
> Testing:
> * Ran sysctl selftests (./tools/testing/selftests/sysctl/sysctl.sh)
> * Ran this through 0-day with no errors or warnings
> 
> Size saving after removing all sentinels:
>    These are the bytes that we save after removing all the sentinels
>    (this plus all the other chunks). I included them to get an idea of
>    how much memory we are talking about.
>      * bloat-o-meter:
>          - The "yesall" configuration results save 9158 bytes
>            https://lore.kernel.org/all/20230621091000.424843-1-j.granados@samsung.com/
>          - The "tiny" config + CONFIG_SYSCTL save 1215 bytes
>            https://lore.kernel.org/all/20230809105006.1198165-1-j.granados@samsung.com/
>      * memory usage:
>          In memory savings are measured to be 7296 bytes. (here is how to
>          measure [3])
> 
> Size saving after this patchset:
>      * bloat-o-meter
>          - The "yesall" config saves 2432 bytes [4]
>          - The "tiny" config saves 64 bytes [5]
>      * memory usage:
>          In this case there were no bytes saved because I do not have any
>          of the drivers in the patch. To measure it comment the printk in
>          `new_dir` and uncomment the if conditional in `new_links` [3].
> 
> Comments/feedback greatly appreciated
> 
> Best
> Joel
> 
> [1]
> We are able to remove a sentinel table without behavioral change by
> introducing a table_size argument in the same place where procname is
> checked for NULL. The idea is for it to keep stopping when it hits
> ->procname == NULL, while the sentinel is still present. And when the
> sentinel is removed, it will stop on the table_size. You can go to
> (https://lore.kernel.org/all/20230809105006.1198165-1-j.granados@samsung.com/)
> for more information.
> 
> [2]
> Links Related to the ctl_table sentinel removal:
> * Good summary from Luis sent with the "pull request" for the
>    preparation patches.
>    https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/
> * Another very good summary from Luis.
>    https://lore.kernel.org/all/ZMFizKFkVxUFtSqa@bombadil.infradead.org/
> * This is a patch set that replaces register_sysctl_table with register_sysctl
>    https://lore.kernel.org/all/20230302204612.782387-1-mcgrof@kernel.org/
> * Patch set to deprecate register_sysctl_paths()
>    https://lore.kernel.org/all/20230302202826.776286-1-mcgrof@kernel.org/
> * Here there is an explicit expectation for the removal of the sentinel element.
>    https://lore.kernel.org/all/20230321130908.6972-1-frank.li@vivo.com
> * The "ARRAY_SIZE" approach was mentioned (proposed?) in this thread
>    https://lore.kernel.org/all/20220220060626.15885-1-tangmeng@uniontech.com
> 
> [3]
> To measure the in memory savings apply this on top of this patchset.
> 
> "
> diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
> index c88854df0b62..e0073a627bac 100644
> --- a/fs/proc/proc_sysctl.c
> +++ b/fs/proc/proc_sysctl.c
> @@ -976,6 +976,8 @@ static struct ctl_dir *new_dir(struct ctl_table_set *set,
>          table[0].procname = new_name;
>          table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
>          init_header(&new->header, set->dir.header.root, set, node, table, 1);
> +       // Counts additional sentinel used for each new dir.
> +       printk("%ld sysctl saved mem kzalloc \n", sizeof(struct ctl_table));
> 
>          return new;
>   }
> @@ -1199,6 +1201,9 @@ static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table_
>                  link_name += len;
>                  link++;
>          }
> +       // Counts additional sentinel used for each new registration
> +       //if ((head->ctl_table + head->ctl_table_size)->procname)
> +               printk("%ld sysctl saved mem kzalloc \n", sizeof(struct ctl_table));
>          init_header(links, dir->header.root, dir->header.set, node, link_table,
>                      head->ctl_table_size);
>          links->nreg = nr_entries;
> "
> and then run the following bash script in the kernel:
> 
> accum=0
> for n in $(dmesg | grep kzalloc | awk '{print $3}') ; do
>      echo $n
>      accum=$(calc "$accum + $n")
> done
> echo $accum
> 
> [4]
> add/remove: 0/0 grow/shrink: 0/21 up/down: 0/-2432 (-2432)
> Function                                     old     new   delta
> xpc_sys_xpc_hb                               192     128     -64
> xpc_sys_xpc                                  128      64     -64
> vrf_table                                    128      64     -64
> ucma_ctl_table                               128      64     -64
> tty_table                                    192     128     -64
> sg_sysctls                                   128      64     -64
> scsi_table                                   128      64     -64
> random_table                                 448     384     -64
> raid_table                                   192     128     -64
> oa_table                                     192     128     -64
> mac_hid_files                                256     192     -64
> iwcm_ctl_table                               128      64     -64
> ipmi_table                                   128      64     -64
> hv_ctl_table                                 128      64     -64
> hpet_table                                   128      64     -64
> firmware_config_table                        192     128     -64
> cdrom_table                                  448     384     -64
> balloon_table                                128      64     -64
> parport_sysctl_template                      912     720    -192
> parport_default_sysctl_table                 584     136    -448
> parport_device_sysctl_template               776     136    -640
> Total: Before=429940038, After=429937606, chg -0.00%
> 
> [5]
> add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-64 (-64)
> Function                                     old     new   delta
> random_table                                 448     384     -64
> Total: Before=1885527, After=1885463, chg -0.00%
> 
> [6] https://lore.kernel.org/all/20230913-jag-sysctl_remove_empty_elem_arch-v2-0-d1bd13a29bae@samsung.com/
> 
> Signed-off-by: Joel Granados <j.granados@samsung.com>
> 
> ---
> 
> ---
> Joel Granados (15):
>        cdrom: Remove now superfluous sentinel element from ctl_table array
>        hpet: Remove now superfluous sentinel element from ctl_table array
>        xen: Remove now superfluous sentinel element from ctl_table array
>        tty: Remove now superfluous sentinel element from ctl_table array
>        scsi: Remove now superfluous sentinel element from ctl_table array
>        parport: Remove the now superfluous sentinel element from ctl_table array
>        macintosh: Remove the now superfluous sentinel element from ctl_table array
>        infiniband: Remove the now superfluous sentinel element from ctl_table array
>        char-misc: Remove the now superfluous sentinel element from ctl_table array
>        vrf: Remove the now superfluous sentinel element from ctl_table array
>        sgi-xp: Remove the now superfluous sentinel element from ctl_table array
>        fw loader: Remove the now superfluous sentinel element from ctl_table array
>        raid: Remove now superfluous sentinel element from ctl_table array
>        hyper-v/azure: Remove now superfluous sentinel element from ctl_table array
>        intel drm: Remove now superfluous sentinel element from ctl_table array
> 
>   drivers/base/firmware_loader/fallback_table.c |  3 +-
>   drivers/cdrom/cdrom.c                         |  3 +-
>   drivers/char/hpet.c                           |  3 +-
>   drivers/char/ipmi/ipmi_poweroff.c             |  3 +-
>   drivers/char/random.c                         |  3 +-
>   drivers/gpu/drm/i915/i915_perf.c              |  3 +-
>   drivers/hv/hv_common.c                        |  3 +-
>   drivers/infiniband/core/iwcm.c                |  3 +-
>   drivers/infiniband/core/ucma.c                |  3 +-
>   drivers/macintosh/mac_hid.c                   |  3 +-
>   drivers/md/md.c                               |  3 +-
>   drivers/misc/sgi-xp/xpc_main.c                |  6 ++--
>   drivers/net/vrf.c                             |  3 +-
>   drivers/parport/procfs.c                      | 42 ++++++++++++---------------
>   drivers/scsi/scsi_sysctl.c                    |  3 +-
>   drivers/scsi/sg.c                             |  3 +-
>   drivers/tty/tty_io.c                          |  3 +-
>   drivers/xen/balloon.c                         |  3 +-
>   18 files changed, 36 insertions(+), 60 deletions(-)
> ---
> base-commit: 0e945134b680040b8613e962f586d91b6d40292d
> change-id: 20230927-jag-sysctl_remove_empty_elem_drivers-f034962a0d8c
> 
> Best regards,

^ permalink raw reply	[relevance 0%]

* [PATCH 03/15] xen: Remove now superfluous sentinel element from ctl_table array
  2023-09-28 13:21  3% [PATCH 00/15] sysctl: Remove sentinel elements from drivers Joel Granados via B4 Relay
@ 2023-09-28 13:21 11% ` Joel Granados via B4 Relay
  2023-09-28 16:31  0% ` [PATCH 00/15] sysctl: Remove sentinel elements from drivers Christophe Leroy
  1 sibling, 0 replies; 200+ results
From: Joel Granados via B4 Relay @ 2023-09-28 13:21 UTC (permalink / raw)
  To: Luis Chamberlain, willy, josh, Kees Cook, Phillip Potter,
	Clemens Ladisch, Arnd Bergmann, Greg Kroah-Hartman,
	Juergen Gross, Stefano Stabellini, Oleksandr Tyshchenko,
	Jiri Slaby, James E.J. Bottomley, Martin K. Petersen,
	Doug Gilbert, Sudip Mukherjee, Jason Gunthorpe, Leon Romanovsky,
	Corey Minyard, Theodore Ts'o, Jason A. Donenfeld,
	David Ahern, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Robin Holt, Steve Wahl, Russ Weight,
	Rafael J. Wysocki, Song Liu, K. Y. Srinivasan, Haiyang Zhang,
	Wei Liu, Dexuan Cui, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi,
	Tvrtko Ursulin, David Airlie, Daniel Vetter
  Cc: linux-kernel, xen-devel, linux-serial, linux-scsi, linuxppc-dev,
	linux-rdma, openipmi-developer, netdev, linux-raid, linux-hyperv,
	intel-gfx, dri-devel, Joel Granados

From: Joel Granados <j.granados@samsung.com>

This commit comes at the tail end of a greater effort to remove the
empty elements at the end of the ctl_table arrays (sentinels) which
will reduce the overall build time size of the kernel and run time
memory bloat by ~64 bytes per sentinel (further information Link :
https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/)

Remove sentinel from balloon_table

Signed-off-by: Joel Granados <j.granados@samsung.com>
---
 drivers/xen/balloon.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 586a1673459e..091eb2931ac4 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -93,8 +93,7 @@ static struct ctl_table balloon_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1         = SYSCTL_ZERO,
 		.extra2         = SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 #else

-- 
2.30.2



^ permalink raw reply related	[relevance 11%]

* [PATCH 00/15] sysctl: Remove sentinel elements from drivers
@ 2023-09-28 13:21  3% Joel Granados via B4 Relay
  2023-09-28 13:21 11% ` [PATCH 03/15] xen: Remove now superfluous sentinel element from ctl_table array Joel Granados via B4 Relay
  2023-09-28 16:31  0% ` [PATCH 00/15] sysctl: Remove sentinel elements from drivers Christophe Leroy
  0 siblings, 2 replies; 200+ results
From: Joel Granados via B4 Relay @ 2023-09-28 13:21 UTC (permalink / raw)
  To: Luis Chamberlain, willy, josh, Kees Cook, Phillip Potter,
	Clemens Ladisch, Arnd Bergmann, Greg Kroah-Hartman,
	Juergen Gross, Stefano Stabellini, Oleksandr Tyshchenko,
	Jiri Slaby, James E.J. Bottomley, Martin K. Petersen,
	Doug Gilbert, Sudip Mukherjee, Jason Gunthorpe, Leon Romanovsky,
	Corey Minyard, Theodore Ts'o, Jason A. Donenfeld,
	David Ahern, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Robin Holt, Steve Wahl, Russ Weight,
	Rafael J. Wysocki, Song Liu, K. Y. Srinivasan, Haiyang Zhang,
	Wei Liu, Dexuan Cui, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi,
	Tvrtko Ursulin, David Airlie, Daniel Vetter
  Cc: linux-kernel, xen-devel, linux-serial, linux-scsi, linuxppc-dev,
	linux-rdma, openipmi-developer, netdev, linux-raid, linux-hyperv,
	intel-gfx, dri-devel, Joel Granados

From: Joel Granados <j.granados@samsung.com>

What?
These commits remove the sentinel element (last empty element) from the
sysctl arrays of all the files under the "drivers/" directory that use a
sysctl array for registration. The merging of the preparation patches
(in https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/)
to mainline allows us to just remove sentinel elements without changing
behavior (more info here [1]).

These commits are part of a bigger set (here
https://github.com/Joelgranados/linux/tree/tag/sysctl_remove_empty_elem_V4)
that remove the ctl_table sentinel. Make the review process easier by
chunking the commits into manageable pieces. Each chunk can be reviewed
separately without noise from parallel sets.

Now that the architecture chunk has been mostly reviewed [6], we send
the "drivers/" directory. Once this one is done, it will be follwed by
"fs/*", "kernel/*", "net/*" and miscellaneous. The final set will remove
the unneeded check for ->procname == NULL.

Why?
By removing the sysctl sentinel elements we avoid kernel bloat as
ctl_table arrays get moved out of kernel/sysctl.c into their own
respective subsystems. This move was started long ago to avoid merge
conflicts; the sentinel removal bit came after Mathew Wilcox suggested
it to avoid bloating the kernel by one element as arrays moved out. This
patchset will reduce the overall build time size of the kernel and run
time memory bloat by about ~64 bytes per declared ctl_table array. I
have consolidated some links that shed light on the history of this
effort [2].

Testing:
* Ran sysctl selftests (./tools/testing/selftests/sysctl/sysctl.sh)
* Ran this through 0-day with no errors or warnings

Size saving after removing all sentinels:
  These are the bytes that we save after removing all the sentinels
  (this plus all the other chunks). I included them to get an idea of
  how much memory we are talking about.
    * bloat-o-meter:
        - The "yesall" configuration results save 9158 bytes
          https://lore.kernel.org/all/20230621091000.424843-1-j.granados@samsung.com/
        - The "tiny" config + CONFIG_SYSCTL save 1215 bytes
          https://lore.kernel.org/all/20230809105006.1198165-1-j.granados@samsung.com/
    * memory usage:
        In memory savings are measured to be 7296 bytes. (here is how to
        measure [3])

Size saving after this patchset:
    * bloat-o-meter
        - The "yesall" config saves 2432 bytes [4]
        - The "tiny" config saves 64 bytes [5]
    * memory usage:
        In this case there were no bytes saved because I do not have any
        of the drivers in the patch. To measure it comment the printk in
        `new_dir` and uncomment the if conditional in `new_links` [3].

Comments/feedback greatly appreciated

Best
Joel

[1]
We are able to remove a sentinel table without behavioral change by
introducing a table_size argument in the same place where procname is
checked for NULL. The idea is for it to keep stopping when it hits
->procname == NULL, while the sentinel is still present. And when the
sentinel is removed, it will stop on the table_size. You can go to 
(https://lore.kernel.org/all/20230809105006.1198165-1-j.granados@samsung.com/)
for more information.

[2]
Links Related to the ctl_table sentinel removal:
* Good summary from Luis sent with the "pull request" for the
  preparation patches.
  https://lore.kernel.org/all/ZO5Yx5JFogGi%2FcBo@bombadil.infradead.org/
* Another very good summary from Luis.
  https://lore.kernel.org/all/ZMFizKFkVxUFtSqa@bombadil.infradead.org/
* This is a patch set that replaces register_sysctl_table with register_sysctl
  https://lore.kernel.org/all/20230302204612.782387-1-mcgrof@kernel.org/
* Patch set to deprecate register_sysctl_paths()
  https://lore.kernel.org/all/20230302202826.776286-1-mcgrof@kernel.org/
* Here there is an explicit expectation for the removal of the sentinel element.
  https://lore.kernel.org/all/20230321130908.6972-1-frank.li@vivo.com
* The "ARRAY_SIZE" approach was mentioned (proposed?) in this thread
  https://lore.kernel.org/all/20220220060626.15885-1-tangmeng@uniontech.com

[3]
To measure the in memory savings apply this on top of this patchset.

"
diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
index c88854df0b62..e0073a627bac 100644
--- a/fs/proc/proc_sysctl.c
+++ b/fs/proc/proc_sysctl.c
@@ -976,6 +976,8 @@ static struct ctl_dir *new_dir(struct ctl_table_set *set,
        table[0].procname = new_name;
        table[0].mode = S_IFDIR|S_IRUGO|S_IXUGO;
        init_header(&new->header, set->dir.header.root, set, node, table, 1);
+       // Counts additional sentinel used for each new dir.
+       printk("%ld sysctl saved mem kzalloc \n", sizeof(struct ctl_table));

        return new;
 }
@@ -1199,6 +1201,9 @@ static struct ctl_table_header *new_links(struct ctl_dir *dir, struct ctl_table_
                link_name += len;
                link++;
        }
+       // Counts additional sentinel used for each new registration
+       //if ((head->ctl_table + head->ctl_table_size)->procname)
+               printk("%ld sysctl saved mem kzalloc \n", sizeof(struct ctl_table));
        init_header(links, dir->header.root, dir->header.set, node, link_table,
                    head->ctl_table_size);
        links->nreg = nr_entries;
"
and then run the following bash script in the kernel:

accum=0
for n in $(dmesg | grep kzalloc | awk '{print $3}') ; do
    echo $n
    accum=$(calc "$accum + $n")
done
echo $accum

[4]
add/remove: 0/0 grow/shrink: 0/21 up/down: 0/-2432 (-2432)
Function                                     old     new   delta
xpc_sys_xpc_hb                               192     128     -64
xpc_sys_xpc                                  128      64     -64
vrf_table                                    128      64     -64
ucma_ctl_table                               128      64     -64
tty_table                                    192     128     -64
sg_sysctls                                   128      64     -64
scsi_table                                   128      64     -64
random_table                                 448     384     -64
raid_table                                   192     128     -64
oa_table                                     192     128     -64
mac_hid_files                                256     192     -64
iwcm_ctl_table                               128      64     -64
ipmi_table                                   128      64     -64
hv_ctl_table                                 128      64     -64
hpet_table                                   128      64     -64
firmware_config_table                        192     128     -64
cdrom_table                                  448     384     -64
balloon_table                                128      64     -64
parport_sysctl_template                      912     720    -192
parport_default_sysctl_table                 584     136    -448
parport_device_sysctl_template               776     136    -640
Total: Before=429940038, After=429937606, chg -0.00%

[5]
add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-64 (-64)
Function                                     old     new   delta
random_table                                 448     384     -64
Total: Before=1885527, After=1885463, chg -0.00%

[6] https://lore.kernel.org/all/20230913-jag-sysctl_remove_empty_elem_arch-v2-0-d1bd13a29bae@samsung.com/

Signed-off-by: Joel Granados <j.granados@samsung.com>

---

---
Joel Granados (15):
      cdrom: Remove now superfluous sentinel element from ctl_table array
      hpet: Remove now superfluous sentinel element from ctl_table array
      xen: Remove now superfluous sentinel element from ctl_table array
      tty: Remove now superfluous sentinel element from ctl_table array
      scsi: Remove now superfluous sentinel element from ctl_table array
      parport: Remove the now superfluous sentinel element from ctl_table array
      macintosh: Remove the now superfluous sentinel element from ctl_table array
      infiniband: Remove the now superfluous sentinel element from ctl_table array
      char-misc: Remove the now superfluous sentinel element from ctl_table array
      vrf: Remove the now superfluous sentinel element from ctl_table array
      sgi-xp: Remove the now superfluous sentinel element from ctl_table array
      fw loader: Remove the now superfluous sentinel element from ctl_table array
      raid: Remove now superfluous sentinel element from ctl_table array
      hyper-v/azure: Remove now superfluous sentinel element from ctl_table array
      intel drm: Remove now superfluous sentinel element from ctl_table array

 drivers/base/firmware_loader/fallback_table.c |  3 +-
 drivers/cdrom/cdrom.c                         |  3 +-
 drivers/char/hpet.c                           |  3 +-
 drivers/char/ipmi/ipmi_poweroff.c             |  3 +-
 drivers/char/random.c                         |  3 +-
 drivers/gpu/drm/i915/i915_perf.c              |  3 +-
 drivers/hv/hv_common.c                        |  3 +-
 drivers/infiniband/core/iwcm.c                |  3 +-
 drivers/infiniband/core/ucma.c                |  3 +-
 drivers/macintosh/mac_hid.c                   |  3 +-
 drivers/md/md.c                               |  3 +-
 drivers/misc/sgi-xp/xpc_main.c                |  6 ++--
 drivers/net/vrf.c                             |  3 +-
 drivers/parport/procfs.c                      | 42 ++++++++++++---------------
 drivers/scsi/scsi_sysctl.c                    |  3 +-
 drivers/scsi/sg.c                             |  3 +-
 drivers/tty/tty_io.c                          |  3 +-
 drivers/xen/balloon.c                         |  3 +-
 18 files changed, 36 insertions(+), 60 deletions(-)
---
base-commit: 0e945134b680040b8613e962f586d91b6d40292d
change-id: 20230927-jag-sysctl_remove_empty_elem_drivers-f034962a0d8c

Best regards,
-- 
Joel Granados <j.granados@samsung.com>



^ permalink raw reply related	[relevance 3%]

* [PATCH 09/11] sysctl: Remove the end element in sysctl table arrays
       [not found]     ` <CGME20230621094824eucas1p154c97eead5f2de6bceca6359304b775c@eucas1p1.samsung.com>
@ 2023-06-21  9:48  2%   ` Joel Granados
  0 siblings, 0 replies; 200+ results
From: Joel Granados @ 2023-06-21  9:48 UTC (permalink / raw)
  To: mcgrof, Russell King, Catalin Marinas, Will Deacon,
	Michael Ellerman, Heiko Carstens, Vasily Gorbik,
	Alexander Gordeev, Gerald Schaefer, Andy Lutomirski,
	Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
	Herbert Xu, David S. Miller, Russ Weight, Greg Kroah-Hartman,
	Phillip Potter, Clemens Ladisch, Arnd Bergmann, Corey Minyard,
	Theodore Ts'o, Jason A. Donenfeld, Jani Nikula,
	Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin, David Airlie,
	Daniel Vetter, K. Y. Srinivasan, Haiyang Zhang, Wei Liu,
	Dexuan Cui, Jason Gunthorpe, Leon Romanovsky,
	Benjamin Herrenschmidt, Song Liu, Robin Holt, Steve Wahl,
	David Ahern, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Sudip Mukherjee, Mark Rutland, James E.J. Bottomley,
	Martin K. Petersen, Doug Gilbert, Jiri Slaby, Juergen Gross,
	Stefano Stabellini, Alexander Viro, Christian Brauner,
	Benjamin LaHaise, David Howells, Jan Harkes, coda,
	Trond Myklebust, Anna Schumaker, Chuck Lever, Jeff Layton,
	Jan Kara, Anton Altaparmakov, Mark Fasheh, Joel Becker,
	Joseph Qi, Kees Cook, Iurii Zaikin, Eric Biggers,
	Darrick J. Wong, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, Balbir Singh, Eric Biederman, Naveen N. Rao,
	Anil S Keshavamurthy, Masami Hiramatsu, Peter Zijlstra,
	Petr Mladek, Sergey Senozhatsky, Juri Lelli, Vincent Guittot,
	John Stultz, Steven Rostedt, Andrew Morton, Mike Kravetz,
	Muchun Song, Naoya Horiguchi, Matthew Wilcox (Oracle),
	Joerg Reuter, Ralf Baechle, Pablo Neira Ayuso, Jozsef Kadlecsik,
	Florian Westphal, Roopa Prabhu, Nikolay Aleksandrov,
	Alexander Aring, Stefan Schmidt, Miquel Raynal, Steffen Klassert,
	Matthieu Baerts, Mat Martineau, Simon Horman, Julian Anastasov,
	Remi Denis-Courmont, Santosh Shilimkar, Marc Dionne, Neil Horman,
	Marcelo Ricardo Leitner, Xin Long, Karsten Graul, Wenjia Zhang,
	Jan Karcher, Jon Maloy, Ying Xue, Martin Schiller, John Johansen,
	Paul Moore, James Morris, Serge E. Hallyn, Jarkko Sakkinen
  Cc: Joel Granados, Nicholas Piggin, Christophe Leroy,
	Christian Borntraeger, Sven Schnelle, H. Peter Anvin,
	Rafael J. Wysocki, Mike Travis, Oleksandr Tyshchenko,
	Amir Goldstein, Matthew Bobrowski, John Fastabend,
	Martin KaFai Lau, Yonghong Song, KP Singh, Stanislav Fomichev,
	Hao Luo, Jiri Olsa, Waiman Long, Boqun Feng, John Ogness,
	Dietmar Eggemann, Ben Segall, Mel Gorman,
	Daniel Bristot de Oliveira, Valentin Schneider, Andy Lutomirski,
	Will Drewry, Stephen Boyd, Miaohe Lin, linux-arm-kernel,
	linux-kernel, linux-ia64, linuxppc-dev, linux-s390, linux-crypto,
	openipmi-developer, intel-gfx, dri-devel, linux-hyperv,
	linux-rdma, linux-raid, netdev, linux-scsi, xen-devel,
	linux-fsdevel, linux-aio, linux-cachefs, codalist, linux-mm,
	linux-nfs, linux-ntfs-dev, ocfs2-devel, fsverity, linux-xfs, bpf,
	kexec, linux-trace-kernel, linux-hams, netfilter-devel, coreteam,
	bridge, dccp, linux-wpan, mptcp, lvs-devel, rds-devel, linux-afs,
	linux-sctp, tipc-discussion, linux-x25, apparmor,
	linux-security-module, keyrings

Remove the empty end element from all the arrays that are passed to the
register sysctl calls. In some files this means reducing the explicit
array size by one. Also make sure that we are using the size in
ctl_table_header instead of evaluating the .procname element.

Signed-off-by: Joel Granados <j.granados@samsung.com>
---
 arch/arm/kernel/isa.c                         |  4 +-
 arch/arm64/kernel/armv8_deprecated.c          |  8 ++--
 arch/arm64/kernel/fpsimd.c                    |  6 +--
 arch/arm64/kernel/process.c                   |  3 +-
 arch/ia64/kernel/crash.c                      |  3 +-
 arch/powerpc/kernel/idle.c                    |  3 +-
 arch/powerpc/platforms/pseries/mobility.c     |  3 +-
 arch/s390/appldata/appldata_base.c            |  7 ++--
 arch/s390/kernel/debug.c                      |  3 +-
 arch/s390/kernel/topology.c                   |  3 +-
 arch/s390/mm/cmm.c                            |  3 +-
 arch/s390/mm/pgalloc.c                        |  3 +-
 arch/x86/entry/vdso/vdso32-setup.c            |  3 +-
 arch/x86/kernel/cpu/intel.c                   |  3 +-
 arch/x86/kernel/itmt.c                        |  3 +-
 crypto/fips.c                                 |  3 +-
 drivers/base/firmware_loader/fallback_table.c |  3 +-
 drivers/cdrom/cdrom.c                         |  3 +-
 drivers/char/hpet.c                           | 13 +++---
 drivers/char/ipmi/ipmi_poweroff.c             |  3 +-
 drivers/char/random.c                         |  3 +-
 drivers/gpu/drm/i915/i915_perf.c              | 33 +++++++--------
 drivers/hv/hv_common.c                        |  3 +-
 drivers/infiniband/core/iwcm.c                |  3 +-
 drivers/infiniband/core/ucma.c                |  3 +-
 drivers/macintosh/mac_hid.c                   |  3 +-
 drivers/md/md.c                               |  3 +-
 drivers/misc/sgi-xp/xpc_main.c                |  6 +--
 drivers/net/vrf.c                             |  3 +-
 drivers/parport/procfs.c                      | 42 ++++++++-----------
 drivers/perf/arm_pmuv3.c                      |  3 +-
 drivers/scsi/scsi_sysctl.c                    |  3 +-
 drivers/scsi/sg.c                             |  3 +-
 drivers/tty/tty_io.c                          |  3 +-
 drivers/xen/balloon.c                         |  3 +-
 fs/aio.c                                      |  3 +-
 fs/cachefiles/error_inject.c                  |  3 +-
 fs/coda/sysctl.c                              |  3 +-
 fs/coredump.c                                 |  3 +-
 fs/dcache.c                                   |  3 +-
 fs/devpts/inode.c                             |  3 +-
 fs/eventpoll.c                                |  3 +-
 fs/exec.c                                     |  3 +-
 fs/file_table.c                               |  3 +-
 fs/inode.c                                    |  3 +-
 fs/lockd/svc.c                                |  3 +-
 fs/locks.c                                    |  3 +-
 fs/namei.c                                    |  3 +-
 fs/namespace.c                                |  3 +-
 fs/nfs/nfs4sysctl.c                           |  3 +-
 fs/nfs/sysctl.c                               |  3 +-
 fs/notify/dnotify/dnotify.c                   |  3 +-
 fs/notify/fanotify/fanotify_user.c            |  3 +-
 fs/notify/inotify/inotify_user.c              |  3 +-
 fs/ntfs/sysctl.c                              |  3 +-
 fs/ocfs2/stackglue.c                          |  3 +-
 fs/pipe.c                                     |  3 +-
 fs/proc/proc_sysctl.c                         |  8 ++--
 fs/quota/dquot.c                              |  3 +-
 fs/sysctls.c                                  |  3 +-
 fs/userfaultfd.c                              |  3 +-
 fs/verity/signature.c                         |  3 +-
 fs/xfs/xfs_sysctl.c                           |  4 +-
 init/do_mounts_initrd.c                       |  3 +-
 ipc/ipc_sysctl.c                              |  3 +-
 ipc/mq_sysctl.c                               |  3 +-
 kernel/acct.c                                 |  3 +-
 kernel/bpf/syscall.c                          |  3 +-
 kernel/delayacct.c                            |  3 +-
 kernel/exit.c                                 |  3 +-
 kernel/hung_task.c                            |  3 +-
 kernel/kexec_core.c                           |  3 +-
 kernel/kprobes.c                              |  3 +-
 kernel/latencytop.c                           |  3 +-
 kernel/locking/lockdep.c                      |  3 +-
 kernel/panic.c                                |  3 +-
 kernel/pid_namespace.c                        |  3 +-
 kernel/pid_sysctl.h                           |  3 +-
 kernel/printk/sysctl.c                        |  3 +-
 kernel/reboot.c                               |  3 +-
 kernel/sched/autogroup.c                      |  3 +-
 kernel/sched/core.c                           |  3 +-
 kernel/sched/deadline.c                       |  3 +-
 kernel/sched/fair.c                           |  3 +-
 kernel/sched/rt.c                             |  3 +-
 kernel/sched/topology.c                       |  3 +-
 kernel/seccomp.c                              |  3 +-
 kernel/signal.c                               |  3 +-
 kernel/stackleak.c                            |  3 +-
 kernel/sysctl.c                               |  6 +--
 kernel/time/timer.c                           |  3 +-
 kernel/trace/ftrace.c                         |  3 +-
 kernel/trace/trace_events_user.c              |  3 +-
 kernel/ucount.c                               |  7 ++--
 kernel/umh.c                                  |  3 +-
 kernel/utsname_sysctl.c                       |  3 +-
 kernel/watchdog.c                             |  3 +-
 lib/test_sysctl.c                             |  6 +--
 mm/compaction.c                               |  3 +-
 mm/hugetlb.c                                  |  3 +-
 mm/hugetlb_vmemmap.c                          |  3 +-
 mm/memory-failure.c                           |  3 +-
 mm/oom_kill.c                                 |  3 +-
 mm/page-writeback.c                           |  3 +-
 net/appletalk/sysctl_net_atalk.c              |  3 +-
 net/ax25/sysctl_net_ax25.c                    |  5 +--
 net/bridge/br_netfilter_hooks.c               |  3 +-
 net/core/neighbour.c                          | 14 +++----
 net/core/sysctl_net_core.c                    |  6 +--
 net/dccp/sysctl.c                             |  4 +-
 net/ieee802154/6lowpan/reassembly.c           |  6 +--
 net/ipv4/devinet.c                            |  5 +--
 net/ipv4/ip_fragment.c                        |  6 +--
 net/ipv4/route.c                              |  6 +--
 net/ipv4/sysctl_net_ipv4.c                    |  6 +--
 net/ipv4/xfrm4_policy.c                       |  3 +-
 net/ipv6/addrconf.c                           |  5 +--
 net/ipv6/icmp.c                               |  3 +-
 net/ipv6/netfilter/nf_conntrack_reasm.c       |  3 +-
 net/ipv6/reassembly.c                         |  6 +--
 net/ipv6/route.c                              |  3 +-
 net/ipv6/sysctl_net_ipv6.c                    |  6 +--
 net/ipv6/xfrm6_policy.c                       |  3 +-
 net/llc/sysctl_net_llc.c                      |  4 +-
 net/mpls/af_mpls.c                            | 10 ++---
 net/mptcp/ctrl.c                              |  3 +-
 net/netfilter/ipvs/ip_vs_ctl.c                |  3 +-
 net/netfilter/ipvs/ip_vs_lblc.c               |  3 +-
 net/netfilter/ipvs/ip_vs_lblcr.c              |  3 +-
 net/netfilter/nf_conntrack_standalone.c       | 10 ++---
 net/netfilter/nf_log.c                        |  5 +--
 net/netrom/sysctl_net_netrom.c                |  3 +-
 net/phonet/sysctl.c                           |  3 +-
 net/rds/ib_sysctl.c                           |  3 +-
 net/rds/sysctl.c                              |  3 +-
 net/rds/tcp.c                                 |  3 +-
 net/rose/sysctl_net_rose.c                    |  3 +-
 net/rxrpc/sysctl.c                            |  3 +-
 net/sctp/sysctl.c                             | 10 ++---
 net/smc/smc_sysctl.c                          |  3 +-
 net/sunrpc/sysctl.c                           |  3 +-
 net/sunrpc/xprtrdma/svc_rdma.c                |  3 +-
 net/sunrpc/xprtrdma/transport.c               |  3 +-
 net/sunrpc/xprtsock.c                         |  3 +-
 net/tipc/sysctl.c                             |  3 +-
 net/unix/sysctl_net_unix.c                    |  3 +-
 net/x25/sysctl_net_x25.c                      |  3 +-
 net/xfrm/xfrm_sysctl.c                        |  3 +-
 security/apparmor/lsm.c                       |  4 +-
 security/keys/sysctl.c                        |  7 ++--
 security/loadpin/loadpin.c                    |  3 +-
 security/yama/yama_lsm.c                      |  3 +-
 152 files changed, 228 insertions(+), 407 deletions(-)

diff --git a/arch/arm/kernel/isa.c b/arch/arm/kernel/isa.c
index 561432e3c55a..72b1a0e63d21 100644
--- a/arch/arm/kernel/isa.c
+++ b/arch/arm/kernel/isa.c
@@ -16,7 +16,7 @@
 
 static unsigned int isa_membase, isa_portbase, isa_portshift;
 
-static struct ctl_table ctl_isa_vars[4] = {
+static struct ctl_table ctl_isa_vars[] = {
 	{
 		.procname	= "membase",
 		.data		= &isa_membase, 
@@ -35,7 +35,7 @@ static struct ctl_table ctl_isa_vars[4] = {
 		.maxlen		= sizeof(isa_portshift),
 		.mode		= 0444,
 		.proc_handler	= proc_dointvec,
-	}, {}
+	}
 };
 
 static struct ctl_table_header *isa_sysctl_header;
diff --git a/arch/arm64/kernel/armv8_deprecated.c b/arch/arm64/kernel/armv8_deprecated.c
index 68ed60a521a6..43945a8bb8e0 100644
--- a/arch/arm64/kernel/armv8_deprecated.c
+++ b/arch/arm64/kernel/armv8_deprecated.c
@@ -52,10 +52,8 @@ struct insn_emulation {
 	int min;
 	int max;
 
-	/*
-	 * sysctl for this emulation + a sentinal entry.
-	 */
-	struct ctl_table sysctl[2];
+	/* sysctl for this emulation */
+	struct ctl_table sysctl;
 };
 
 #define ARM_OPCODE_CONDTEST_FAIL   0
@@ -558,7 +556,7 @@ static void __init register_insn_emulation(struct insn_emulation *insn)
 	update_insn_emulation_mode(insn, INSN_UNDEF);
 
 	if (insn->status != INSN_UNAVAILABLE) {
-		sysctl = &insn->sysctl[0];
+		sysctl = &insn->sysctl;
 
 		sysctl->mode = 0644;
 		sysctl->maxlen = sizeof(int);
diff --git a/arch/arm64/kernel/fpsimd.c b/arch/arm64/kernel/fpsimd.c
index ecfb2ef6a036..37155b4ae893 100644
--- a/arch/arm64/kernel/fpsimd.c
+++ b/arch/arm64/kernel/fpsimd.c
@@ -588,8 +588,7 @@ static struct ctl_table sve_default_vl_table[] = {
 		.mode		= 0644,
 		.proc_handler	= vec_proc_do_default_vl,
 		.extra1		= &vl_info[ARM64_VEC_SVE],
-	},
-	{ }
+	}
 };
 
 static int __init sve_sysctl_init(void)
@@ -613,8 +612,7 @@ static struct ctl_table sme_default_vl_table[] = {
 		.mode		= 0644,
 		.proc_handler	= vec_proc_do_default_vl,
 		.extra1		= &vl_info[ARM64_VEC_SME],
-	},
-	{ }
+	}
 };
 
 static int __init sme_sysctl_init(void)
diff --git a/arch/arm64/kernel/process.c b/arch/arm64/kernel/process.c
index cfe232960f2f..ae837130a265 100644
--- a/arch/arm64/kernel/process.c
+++ b/arch/arm64/kernel/process.c
@@ -723,8 +723,7 @@ static struct ctl_table tagged_addr_sysctl_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 static int __init tagged_addr_init(void)
diff --git a/arch/ia64/kernel/crash.c b/arch/ia64/kernel/crash.c
index 66917b879b2a..958ab3bbbdbc 100644
--- a/arch/ia64/kernel/crash.c
+++ b/arch/ia64/kernel/crash.c
@@ -231,8 +231,7 @@ static struct ctl_table kdump_ctl_table[] = {
 		.maxlen = sizeof(int),
 		.mode = 0644,
 		.proc_handler = proc_dointvec,
-	},
-	{ }
+	}
 };
 #endif
 
diff --git a/arch/powerpc/kernel/idle.c b/arch/powerpc/kernel/idle.c
index 3807169fc7e7..f98f7b00d3cf 100644
--- a/arch/powerpc/kernel/idle.c
+++ b/arch/powerpc/kernel/idle.c
@@ -104,8 +104,7 @@ static struct ctl_table powersave_nap_ctl_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{}
+	}
 };
 
 static int __init
diff --git a/arch/powerpc/platforms/pseries/mobility.c b/arch/powerpc/platforms/pseries/mobility.c
index 9fdbee8ee126..48337c9dd3a0 100644
--- a/arch/powerpc/platforms/pseries/mobility.c
+++ b/arch/powerpc/platforms/pseries/mobility.c
@@ -59,8 +59,7 @@ static struct ctl_table nmi_wd_lpm_factor_ctl_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_douintvec_minmax,
-	},
-	{}
+	}
 };
 
 static int __init register_nmi_wd_lpm_factor_sysctl(void)
diff --git a/arch/s390/appldata/appldata_base.c b/arch/s390/appldata/appldata_base.c
index 54d8ed1c4518..0e1136b3dc01 100644
--- a/arch/s390/appldata/appldata_base.c
+++ b/arch/s390/appldata/appldata_base.c
@@ -62,8 +62,7 @@ static struct ctl_table appldata_table[] = {
 		.procname	= "interval",
 		.mode		= S_IRUGO | S_IWUSR,
 		.proc_handler	= appldata_interval_handler,
-	},
-	{ },
+	}
 };
 
 /*
@@ -352,7 +351,7 @@ int appldata_register_ops(struct appldata_ops *ops)
 		return -EINVAL;
 
 	/* The last entry must be an empty one */
-	ops->ctl_table = kcalloc(2, sizeof(struct ctl_table), GFP_KERNEL);
+	ops->ctl_table = kcalloc(1, sizeof(struct ctl_table), GFP_KERNEL);
 	if (!ops->ctl_table)
 		return -ENOMEM;
 
@@ -365,7 +364,7 @@ int appldata_register_ops(struct appldata_ops *ops)
 	ops->ctl_table[0].proc_handler = appldata_generic_handler;
 	ops->ctl_table[0].data = ops;
 
-	ops->sysctl_header = register_sysctl(appldata_proc_name, ops->ctl_table);
+	ops->sysctl_header = register_sysctl(appldata_proc_name, ops->ctl_table, 1);
 	if (!ops->sysctl_header)
 		goto out;
 	return 0;
diff --git a/arch/s390/kernel/debug.c b/arch/s390/kernel/debug.c
index 002f843e6523..24f33be6565d 100644
--- a/arch/s390/kernel/debug.c
+++ b/arch/s390/kernel/debug.c
@@ -977,8 +977,7 @@ static struct ctl_table s390dbf_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= S_IRUGO | S_IWUSR,
 		.proc_handler	= s390dbf_procactive,
-	},
-	{ }
+	}
 };
 
 static struct ctl_table_header *s390dbf_sysctl_header;
diff --git a/arch/s390/kernel/topology.c b/arch/s390/kernel/topology.c
index 372d2c7c9a8e..931da71b8a4a 100644
--- a/arch/s390/kernel/topology.c
+++ b/arch/s390/kernel/topology.c
@@ -633,8 +633,7 @@ static struct ctl_table topology_ctl_table[] = {
 		.procname	= "topology",
 		.mode		= 0644,
 		.proc_handler	= topology_ctl_handler,
-	},
-	{ },
+	}
 };
 
 static int __init topology_init(void)
diff --git a/arch/s390/mm/cmm.c b/arch/s390/mm/cmm.c
index 918816dcb42a..1b304352a3e9 100644
--- a/arch/s390/mm/cmm.c
+++ b/arch/s390/mm/cmm.c
@@ -331,8 +331,7 @@ static struct ctl_table cmm_table[] = {
 		.procname	= "cmm_timeout",
 		.mode		= 0644,
 		.proc_handler	= cmm_timeout_handler,
-	},
-	{ }
+	}
 };
 
 #ifdef CONFIG_CMM_IUCV
diff --git a/arch/s390/mm/pgalloc.c b/arch/s390/mm/pgalloc.c
index a723f1a8236a..59444f580d0d 100644
--- a/arch/s390/mm/pgalloc.c
+++ b/arch/s390/mm/pgalloc.c
@@ -29,8 +29,7 @@ static struct ctl_table page_table_sysctl[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 static int __init page_table_register_sysctl(void)
diff --git a/arch/x86/entry/vdso/vdso32-setup.c b/arch/x86/entry/vdso/vdso32-setup.c
index e28cdba83e0e..ab794f70a550 100644
--- a/arch/x86/entry/vdso/vdso32-setup.c
+++ b/arch/x86/entry/vdso/vdso32-setup.c
@@ -66,8 +66,7 @@ static struct ctl_table abi_table2[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{}
+	}
 };
 
 static __init int ia32_binfmt_init(void)
diff --git a/arch/x86/kernel/cpu/intel.c b/arch/x86/kernel/cpu/intel.c
index c77a3961443d..d446f2a0fbeb 100644
--- a/arch/x86/kernel/cpu/intel.c
+++ b/arch/x86/kernel/cpu/intel.c
@@ -1189,8 +1189,7 @@ static struct ctl_table sld_sysctls[] = {
 		.proc_handler	= proc_douintvec_minmax,
 		.extra1         = SYSCTL_ZERO,
 		.extra2         = SYSCTL_ONE,
-	},
-	{}
+	}
 };
 
 static int __init sld_mitigate_sysctl_init(void)
diff --git a/arch/x86/kernel/itmt.c b/arch/x86/kernel/itmt.c
index 58ec95fce798..427093e4ef87 100644
--- a/arch/x86/kernel/itmt.c
+++ b/arch/x86/kernel/itmt.c
@@ -73,8 +73,7 @@ static struct ctl_table itmt_kern_table[] = {
 		.proc_handler	= sched_itmt_update_handler,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{}
+	}
 };
 
 static struct ctl_table_header *itmt_sysctl_header;
diff --git a/crypto/fips.c b/crypto/fips.c
index 05a251680700..611a86bd2538 100644
--- a/crypto/fips.c
+++ b/crypto/fips.c
@@ -62,8 +62,7 @@ static struct ctl_table crypto_sysctl_table[] = {
 		.maxlen		= 64,
 		.mode		= 0444,
 		.proc_handler	= proc_dostring
-	},
-	{}
+	}
 };
 
 static struct ctl_table_header *crypto_sysctls;
diff --git a/drivers/base/firmware_loader/fallback_table.c b/drivers/base/firmware_loader/fallback_table.c
index 7a2d584233bb..d7dedfb2f4d0 100644
--- a/drivers/base/firmware_loader/fallback_table.c
+++ b/drivers/base/firmware_loader/fallback_table.c
@@ -43,8 +43,7 @@ static struct ctl_table firmware_config_table[] = {
 		.proc_handler   = proc_douintvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 static struct ctl_table_header *firmware_config_sysct_table_header;
diff --git a/drivers/cdrom/cdrom.c b/drivers/cdrom/cdrom.c
index 3855da76a16d..e1c352ebab16 100644
--- a/drivers/cdrom/cdrom.c
+++ b/drivers/cdrom/cdrom.c
@@ -3668,8 +3668,7 @@ static struct ctl_table cdrom_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= cdrom_sysctl_handler
-	},
-	{ }
+	}
 };
 static struct ctl_table_header *cdrom_sysctl_header;
 
diff --git a/drivers/char/hpet.c b/drivers/char/hpet.c
index bb1eb801b20c..44eaec98f958 100644
--- a/drivers/char/hpet.c
+++ b/drivers/char/hpet.c
@@ -722,13 +722,12 @@ static int hpet_is_known(struct hpet_data *hdp)
 
 static struct ctl_table hpet_table[] = {
 	{
-	 .procname = "max-user-freq",
-	 .data = &hpet_max_freq,
-	 .maxlen = sizeof(int),
-	 .mode = 0644,
-	 .proc_handler = proc_dointvec,
-	 },
-	{}
+		.procname = "max-user-freq",
+		.data = &hpet_max_freq,
+		.maxlen = sizeof(int),
+		.mode = 0644,
+		.proc_handler = proc_dointvec,
+	}
 };
 
 static struct ctl_table_header *sysctl_header;
diff --git a/drivers/char/ipmi/ipmi_poweroff.c b/drivers/char/ipmi/ipmi_poweroff.c
index 46b1ea866da9..40c43417a42e 100644
--- a/drivers/char/ipmi/ipmi_poweroff.c
+++ b/drivers/char/ipmi/ipmi_poweroff.c
@@ -655,8 +655,7 @@ static struct ctl_table ipmi_table[] = {
 	  .data		= &poweroff_powercycle,
 	  .maxlen	= sizeof(poweroff_powercycle),
 	  .mode		= 0644,
-	  .proc_handler	= proc_dointvec },
-	{ }
+	  .proc_handler	= proc_dointvec }
 };
 
 static struct ctl_table_header *ipmi_table_header;
diff --git a/drivers/char/random.c b/drivers/char/random.c
index 8db2ea9e3d66..e2998580afc6 100644
--- a/drivers/char/random.c
+++ b/drivers/char/random.c
@@ -1682,8 +1682,7 @@ static struct ctl_table random_table[] = {
 		.procname	= "uuid",
 		.mode		= 0444,
 		.proc_handler	= proc_do_uuid,
-	},
-	{ }
+	}
 };
 
 /*
diff --git a/drivers/gpu/drm/i915/i915_perf.c b/drivers/gpu/drm/i915/i915_perf.c
index f43950219ffc..e4d7372afb10 100644
--- a/drivers/gpu/drm/i915/i915_perf.c
+++ b/drivers/gpu/drm/i915/i915_perf.c
@@ -4884,24 +4884,23 @@ int i915_perf_remove_config_ioctl(struct drm_device *dev, void *data,
 
 static struct ctl_table oa_table[] = {
 	{
-	 .procname = "perf_stream_paranoid",
-	 .data = &i915_perf_stream_paranoid,
-	 .maxlen = sizeof(i915_perf_stream_paranoid),
-	 .mode = 0644,
-	 .proc_handler = proc_dointvec_minmax,
-	 .extra1 = SYSCTL_ZERO,
-	 .extra2 = SYSCTL_ONE,
-	 },
+		.procname = "perf_stream_paranoid",
+		.data = &i915_perf_stream_paranoid,
+		.maxlen = sizeof(i915_perf_stream_paranoid),
+		.mode = 0644,
+		.proc_handler = proc_dointvec_minmax,
+		.extra1 = SYSCTL_ZERO,
+		.extra2 = SYSCTL_ONE,
+	},
 	{
-	 .procname = "oa_max_sample_rate",
-	 .data = &i915_oa_max_sample_rate,
-	 .maxlen = sizeof(i915_oa_max_sample_rate),
-	 .mode = 0644,
-	 .proc_handler = proc_dointvec_minmax,
-	 .extra1 = SYSCTL_ZERO,
-	 .extra2 = &oa_sample_rate_hard_limit,
-	 },
-	{}
+		.procname = "oa_max_sample_rate",
+		.data = &i915_oa_max_sample_rate,
+		.maxlen = sizeof(i915_oa_max_sample_rate),
+		.mode = 0644,
+		.proc_handler = proc_dointvec_minmax,
+		.extra1 = SYSCTL_ZERO,
+		.extra2 = &oa_sample_rate_hard_limit,
+	}
 };
 
 static u32 num_perf_groups_per_gt(struct intel_gt *gt)
diff --git a/drivers/hv/hv_common.c b/drivers/hv/hv_common.c
index dd751c391cf7..0216ccd96496 100644
--- a/drivers/hv/hv_common.c
+++ b/drivers/hv/hv_common.c
@@ -146,8 +146,7 @@ static struct ctl_table hv_ctl_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE
-	},
-	{}
+	}
 };
 
 static int hv_die_panic_notify_crash(struct notifier_block *self,
diff --git a/drivers/infiniband/core/iwcm.c b/drivers/infiniband/core/iwcm.c
index 20627a894c89..0147aae8fe9b 100644
--- a/drivers/infiniband/core/iwcm.c
+++ b/drivers/infiniband/core/iwcm.c
@@ -110,8 +110,7 @@ static struct ctl_table iwcm_ctl_table[] = {
 		.maxlen		= sizeof(default_backlog),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{ }
+	}
 };
 
 /*
diff --git a/drivers/infiniband/core/ucma.c b/drivers/infiniband/core/ucma.c
index f737ab0de883..cbe1ebef2f2e 100644
--- a/drivers/infiniband/core/ucma.c
+++ b/drivers/infiniband/core/ucma.c
@@ -70,8 +70,7 @@ static struct ctl_table ucma_ctl_table[] = {
 		.maxlen		= sizeof max_backlog,
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{ }
+	}
 };
 
 struct ucma_file {
diff --git a/drivers/macintosh/mac_hid.c b/drivers/macintosh/mac_hid.c
index 5d433ef430fa..822517cf4735 100644
--- a/drivers/macintosh/mac_hid.c
+++ b/drivers/macintosh/mac_hid.c
@@ -235,8 +235,7 @@ static struct ctl_table mac_hid_files[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{ }
+	}
 };
 
 static struct ctl_table_header *mac_hid_sysctl_header;
diff --git a/drivers/md/md.c b/drivers/md/md.c
index c10cc8ddd94d..3ad23a7bfbc5 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -318,8 +318,7 @@ static struct ctl_table raid_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= S_IRUGO|S_IWUSR,
 		.proc_handler	= proc_dointvec,
-	},
-	{ }
+	}
 };
 
 static int start_readonly;
diff --git a/drivers/misc/sgi-xp/xpc_main.c b/drivers/misc/sgi-xp/xpc_main.c
index 264b919d0610..3e6a598df22a 100644
--- a/drivers/misc/sgi-xp/xpc_main.c
+++ b/drivers/misc/sgi-xp/xpc_main.c
@@ -109,8 +109,7 @@ static struct ctl_table xpc_sys_xpc_hb[] = {
 	 .mode = 0644,
 	 .proc_handler = proc_dointvec_minmax,
 	 .extra1 = &xpc_hb_check_min_interval,
-	 .extra2 = &xpc_hb_check_max_interval},
-	{}
+	 .extra2 = &xpc_hb_check_max_interval}
 };
 static struct ctl_table xpc_sys_xpc[] = {
 	{
@@ -120,8 +119,7 @@ static struct ctl_table xpc_sys_xpc[] = {
 	 .mode = 0644,
 	 .proc_handler = proc_dointvec_minmax,
 	 .extra1 = &xpc_disengage_min_timelimit,
-	 .extra2 = &xpc_disengage_max_timelimit},
-	{}
+	 .extra2 = &xpc_disengage_max_timelimit}
 };
 
 static struct ctl_table_header *xpc_sysctl;
diff --git a/drivers/net/vrf.c b/drivers/net/vrf.c
index edd8f2ba5595..22dedd3671ec 100644
--- a/drivers/net/vrf.c
+++ b/drivers/net/vrf.c
@@ -1964,8 +1964,7 @@ static const struct ctl_table vrf_table[] = {
 		.proc_handler	= vrf_shared_table_handler,
 		/* set by the vrf_netns_init */
 		.extra1		= NULL,
-	},
-	{ },
+	}
 };
 
 static int vrf_netns_init_sysctl(struct net *net, struct netns_vrf *nn_vrf)
diff --git a/drivers/parport/procfs.c b/drivers/parport/procfs.c
index 16cee52f035f..f6e0121f8904 100644
--- a/drivers/parport/procfs.c
+++ b/drivers/parport/procfs.c
@@ -259,8 +259,12 @@ PARPORT_MAX_SPINTIME_VALUE;
 struct parport_sysctl_table {
 	struct ctl_table_header *port_header;
 	struct ctl_table_header *devices_header;
-	struct ctl_table vars[12];
-	struct ctl_table device_dir[2];
+#ifdef CONFIG_PARPORT_1284
+	struct ctl_table vars[10];
+#else
+	struct ctl_table vars[5];
+#endif /* IEEE 1284 support */
+	struct ctl_table device_dir[1];
 };
 
 static const struct parport_sysctl_table parport_sysctl_template = {
@@ -303,9 +307,9 @@ static const struct parport_sysctl_table parport_sysctl_template = {
 			.maxlen		= 0,
 			.mode		= 0444,
 			.proc_handler	= do_hardware_modes
-		},
+		}
 #ifdef CONFIG_PARPORT_1284
-		{
+		, {
 			.procname	= "autoprobe",
 			.data		= NULL,
 			.maxlen		= 0,
@@ -339,9 +343,8 @@ static const struct parport_sysctl_table parport_sysctl_template = {
 			.maxlen		= 0,
 			.mode		= 0444,
 			.proc_handler	= do_autoprobe
-		},
+		}
 #endif /* IEEE 1284 support */
-		{}
 	},
 	{
 		{
@@ -350,20 +353,15 @@ static const struct parport_sysctl_table parport_sysctl_template = {
 			.maxlen		= 0,
 			.mode		= 0444,
 			.proc_handler	= do_active_device
-		},
-		{}
+		}
 	},
 };
 
 struct parport_device_sysctl_table
 {
 	struct ctl_table_header *sysctl_header;
-	struct ctl_table vars[2];
-	struct ctl_table device_dir[2];
-	struct ctl_table devices_root_dir[2];
-	struct ctl_table port_dir[2];
-	struct ctl_table parport_dir[2];
-	struct ctl_table dev_dir[2];
+	struct ctl_table vars[1];
+	struct ctl_table device_dir[1];
 };
 
 static const struct parport_device_sysctl_table
@@ -378,8 +376,7 @@ parport_device_sysctl_template = {
 			.proc_handler	= proc_doulongvec_ms_jiffies_minmax,
 			.extra1		= (void*) &parport_min_timeslice_value,
 			.extra2		= (void*) &parport_max_timeslice_value
-		},
-		{}
+		}
 	},
 	{
 		{
@@ -387,18 +384,14 @@ parport_device_sysctl_template = {
 			.data		= NULL,
 			.maxlen		= 0,
 			.mode		= 0555,
-		},
-		{}
+		}
 	}
 };
 
 struct parport_default_sysctl_table
 {
 	struct ctl_table_header *sysctl_header;
-	struct ctl_table vars[3];
-	struct ctl_table default_dir[2];
-	struct ctl_table parport_dir[2];
-	struct ctl_table dev_dir[2];
+	struct ctl_table vars[2];
 };
 
 static struct parport_default_sysctl_table
@@ -422,8 +415,7 @@ parport_default_sysctl_table = {
 			.proc_handler	= proc_dointvec_minmax,
 			.extra1		= (void*) &parport_min_spintime_value,
 			.extra2		= (void*) &parport_max_spintime_value
-		},
-		{}
+		}
 	}
 };
 
@@ -443,7 +435,9 @@ int parport_proc_register(struct parport *port)
 	t->vars[0].data = &port->spintime;
 	for (i = 0; i < 5; i++) {
 		t->vars[i].extra1 = port;
+#ifdef CONFIG_PARPORT_1284
 		t->vars[5 + i].extra2 = &port->probe_info[i];
+#endif /* IEEE 1284 support */
 	}
 
 	port_name_len = strnlen(port->name, PARPORT_NAME_MAX_LEN);
diff --git a/drivers/perf/arm_pmuv3.c b/drivers/perf/arm_pmuv3.c
index 763f9c8acfbf..85285c85bd49 100644
--- a/drivers/perf/arm_pmuv3.c
+++ b/drivers/perf/arm_pmuv3.c
@@ -1179,8 +1179,7 @@ static struct ctl_table armv8_pmu_sysctl_table[] = {
 		.proc_handler	= armv8pmu_proc_user_access_handler,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 static void armv8_pmu_register_sysctl_table(void)
diff --git a/drivers/scsi/scsi_sysctl.c b/drivers/scsi/scsi_sysctl.c
index 0378bd63fea4..22c2d055821e 100644
--- a/drivers/scsi/scsi_sysctl.c
+++ b/drivers/scsi/scsi_sysctl.c
@@ -17,8 +17,7 @@ static struct ctl_table scsi_table[] = {
 	  .data		= &scsi_logging_level,
 	  .maxlen	= sizeof(scsi_logging_level),
 	  .mode		= 0644,
-	  .proc_handler	= proc_dointvec },
-	{ }
+	  .proc_handler	= proc_dointvec }
 };
 
 static struct ctl_table_header *scsi_table_header;
diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c
index d12cdf875b50..102a3640c6c7 100644
--- a/drivers/scsi/sg.c
+++ b/drivers/scsi/sg.c
@@ -1638,8 +1638,7 @@ static struct ctl_table sg_sysctls[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0444,
 		.proc_handler	= proc_dointvec,
-	},
-	{}
+	}
 };
 
 static struct ctl_table_header *hdr;
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
index 63fb3c543b94..bd6b12394d76 100644
--- a/drivers/tty/tty_io.c
+++ b/drivers/tty/tty_io.c
@@ -3608,8 +3608,7 @@ static struct ctl_table tty_table[] = {
 		.proc_handler	= proc_dointvec,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 /*
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index e4544262a429..bef75c236104 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -93,8 +93,7 @@ static struct ctl_table balloon_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1         = SYSCTL_ZERO,
 		.extra2         = SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 #else
diff --git a/fs/aio.c b/fs/aio.c
index b09abe7a14d3..f2ed0a34a5d4 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -238,8 +238,7 @@ static struct ctl_table aio_sysctls[] = {
 		.maxlen		= sizeof(aio_max_nr),
 		.mode		= 0644,
 		.proc_handler	= proc_doulongvec_minmax,
-	},
-	{}
+	}
 };
 
 static void __init aio_sysctl_init(void)
diff --git a/fs/cachefiles/error_inject.c b/fs/cachefiles/error_inject.c
index ea6bcce4f6f1..4fa84880c0d1 100644
--- a/fs/cachefiles/error_inject.c
+++ b/fs/cachefiles/error_inject.c
@@ -18,8 +18,7 @@ static struct ctl_table cachefiles_sysctls[] = {
 		.maxlen		= sizeof(unsigned int),
 		.mode		= 0644,
 		.proc_handler	= proc_douintvec,
-	},
-	{}
+	}
 };
 
 int __init cachefiles_register_error_injection(void)
diff --git a/fs/coda/sysctl.c b/fs/coda/sysctl.c
index 16224a7c6691..e377e400bfed 100644
--- a/fs/coda/sysctl.c
+++ b/fs/coda/sysctl.c
@@ -35,8 +35,7 @@ static struct ctl_table coda_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0600,
 		.proc_handler	= proc_dointvec
-	},
-	{}
+	}
 };
 
 void coda_sysctl_init(void)
diff --git a/fs/coredump.c b/fs/coredump.c
index 7e55428dce13..99142426a156 100644
--- a/fs/coredump.c
+++ b/fs/coredump.c
@@ -978,8 +978,7 @@ static struct ctl_table coredump_sysctls[] = {
 		.maxlen		= sizeof(unsigned int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{ }
+	}
 };
 
 static int __init init_fs_coredump_sysctls(void)
diff --git a/fs/dcache.c b/fs/dcache.c
index f02bfd383e66..257450fd8f01 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -190,8 +190,7 @@ static struct ctl_table fs_dcache_sysctls[] = {
 		.maxlen		= 6*sizeof(long),
 		.mode		= 0444,
 		.proc_handler	= proc_nr_dentry,
-	},
-	{ }
+	}
 };
 
 static int __init init_fs_dcache_sysctls(void)
diff --git a/fs/devpts/inode.c b/fs/devpts/inode.c
index c17f971a8c4b..8d56add71e71 100644
--- a/fs/devpts/inode.c
+++ b/fs/devpts/inode.c
@@ -68,8 +68,7 @@ static struct ctl_table pty_table[] = {
 		.mode		= 0444,
 		.data		= &pty_count,
 		.proc_handler	= proc_dointvec,
-	},
-	{}
+	}
 };
 
 struct pts_mount_opts {
diff --git a/fs/eventpoll.c b/fs/eventpoll.c
index e1a0e6a6d3de..b0556c52685c 100644
--- a/fs/eventpoll.c
+++ b/fs/eventpoll.c
@@ -321,8 +321,7 @@ static struct ctl_table epoll_table[] = {
 		.proc_handler	= proc_doulongvec_minmax,
 		.extra1		= &long_zero,
 		.extra2		= &long_max,
-	},
-	{ }
+	}
 };
 
 static void __init epoll_sysctls_init(void)
diff --git a/fs/exec.c b/fs/exec.c
index 5572d148738b..9458ef2b8028 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -2164,8 +2164,7 @@ static struct ctl_table fs_exec_sysctls[] = {
 		.proc_handler	= proc_dointvec_minmax_coredump,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_TWO,
-	},
-	{ }
+	}
 };
 
 static int __init init_fs_exec_sysctls(void)
diff --git a/fs/file_table.c b/fs/file_table.c
index 23a645521960..6fec4c691f0a 100644
--- a/fs/file_table.c
+++ b/fs/file_table.c
@@ -114,8 +114,7 @@ static struct ctl_table fs_stat_sysctls[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= &sysctl_nr_open_min,
 		.extra2		= &sysctl_nr_open_max,
-	},
-	{ }
+	}
 };
 
 static int __init init_fs_stat_sysctls(void)
diff --git a/fs/inode.c b/fs/inode.c
index 0a0ad1a2a5d2..79c5916cade7 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -129,8 +129,7 @@ static struct ctl_table inodes_sysctls[] = {
 		.maxlen		= 7*sizeof(long),
 		.mode		= 0444,
 		.proc_handler	= proc_nr_inodes,
-	},
-	{ }
+	}
 };
 
 static int __init init_fs_inode_sysctls(void)
diff --git a/fs/lockd/svc.c b/fs/lockd/svc.c
index 84736267f4e1..082fcf6340d4 100644
--- a/fs/lockd/svc.c
+++ b/fs/lockd/svc.c
@@ -506,8 +506,7 @@ static struct ctl_table nlm_sysctls[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{ }
+	}
 };
 
 #endif	/* CONFIG_SYSCTL */
diff --git a/fs/locks.c b/fs/locks.c
index ce5733480aa6..9750076cdd8d 100644
--- a/fs/locks.c
+++ b/fs/locks.c
@@ -109,9 +109,8 @@ static struct ctl_table locks_sysctls[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
+	}
 #endif /* CONFIG_MMU */
-	{}
 };
 
 static int __init init_fs_locks_sysctls(void)
diff --git a/fs/namei.c b/fs/namei.c
index 9b567af081af..b0f8d09c2111 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -1067,8 +1067,7 @@ static struct ctl_table namei_sysctls[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_TWO,
-	},
-	{ }
+	}
 };
 
 static int __init init_fs_namei_sysctls(void)
diff --git a/fs/namespace.c b/fs/namespace.c
index e7f251e40485..780e9292fa52 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -4709,8 +4709,7 @@ static struct ctl_table fs_namespace_sysctls[] = {
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 static int __init init_fs_namespace_sysctls(void)
diff --git a/fs/nfs/nfs4sysctl.c b/fs/nfs/nfs4sysctl.c
index 4a542ee11e68..5515c2e8afe7 100644
--- a/fs/nfs/nfs4sysctl.c
+++ b/fs/nfs/nfs4sysctl.c
@@ -33,8 +33,7 @@ static struct ctl_table nfs4_cb_sysctls[] = {
 		.maxlen = sizeof(int),
 		.mode = 0644,
 		.proc_handler = proc_dointvec,
-	},
-	{ }
+	}
 };
 
 int nfs4_register_sysctl(void)
diff --git a/fs/nfs/sysctl.c b/fs/nfs/sysctl.c
index 9dafd44670e4..8a71d31e5dc3 100644
--- a/fs/nfs/sysctl.c
+++ b/fs/nfs/sysctl.c
@@ -28,8 +28,7 @@ static struct ctl_table nfs_cb_sysctls[] = {
 		.maxlen		= sizeof(nfs_congestion_kb),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{ }
+	}
 };
 
 int nfs_register_sysctl(void)
diff --git a/fs/notify/dnotify/dnotify.c b/fs/notify/dnotify/dnotify.c
index 2c6fe98d6fe1..409ca0a9a048 100644
--- a/fs/notify/dnotify/dnotify.c
+++ b/fs/notify/dnotify/dnotify.c
@@ -28,8 +28,7 @@ static struct ctl_table dnotify_sysctls[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{}
+	}
 };
 static void __init dnotify_sysctl_init(void)
 {
diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c
index 78d3bf479f59..4c43eb38b9cf 100644
--- a/fs/notify/fanotify/fanotify_user.c
+++ b/fs/notify/fanotify/fanotify_user.c
@@ -85,8 +85,7 @@ static struct ctl_table fanotify_table[] = {
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO
-	},
-	{ }
+	}
 };
 
 static void __init fanotify_sysctls_init(void)
diff --git a/fs/notify/inotify/inotify_user.c b/fs/notify/inotify/inotify_user.c
index 0ce25c4ddfec..02b74d8b4e28 100644
--- a/fs/notify/inotify/inotify_user.c
+++ b/fs/notify/inotify/inotify_user.c
@@ -84,8 +84,7 @@ static struct ctl_table inotify_table[] = {
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO
-	},
-	{ }
+	}
 };
 
 static void __init inotify_sysctls_init(void)
diff --git a/fs/ntfs/sysctl.c b/fs/ntfs/sysctl.c
index 2c48f48a0b80..fef88fb6a40f 100644
--- a/fs/ntfs/sysctl.c
+++ b/fs/ntfs/sysctl.c
@@ -27,8 +27,7 @@ static struct ctl_table ntfs_sysctls[] = {
 		.maxlen		= sizeof(debug_msgs),
 		.mode		= 0644,			/* Mode, proc handler. */
 		.proc_handler	= proc_dointvec
-	},
-	{}
+	}
 };
 
 /* Storage for the sysctls header. */
diff --git a/fs/ocfs2/stackglue.c b/fs/ocfs2/stackglue.c
index 9a653875d1c5..7be619f93960 100644
--- a/fs/ocfs2/stackglue.c
+++ b/fs/ocfs2/stackglue.c
@@ -657,8 +657,7 @@ static struct ctl_table ocfs2_nm_table[] = {
 		.maxlen		= OCFS2_MAX_HB_CTL_PATH,
 		.mode		= 0644,
 		.proc_handler	= proc_dostring,
-	},
-	{ }
+	}
 };
 
 static struct ctl_table_header *ocfs2_table_header;
diff --git a/fs/pipe.c b/fs/pipe.c
index 8a808fc25552..8fab91c2d546 100644
--- a/fs/pipe.c
+++ b/fs/pipe.c
@@ -1491,8 +1491,7 @@ static struct ctl_table fs_pipe_sysctls[] = {
 		.maxlen		= sizeof(pipe_user_pages_soft),
 		.mode		= 0644,
 		.proc_handler	= proc_doulongvec_minmax,
-	},
-	{ }
+	}
 };
 #endif
 
diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
index 9670c5b7b5b2..1debd01209fc 100644
--- a/fs/proc/proc_sysctl.c
+++ b/fs/proc/proc_sysctl.c
@@ -19,8 +19,9 @@
 #include <linux/kmemleak.h>
 #include "internal.h"
 
-#define list_for_each_table_entry(entry, header) \
-	for ((entry) = (header->ctl_table); (entry)->procname; (entry)++)
+#define list_for_each_table_entry(entry, header)	\
+	entry = header->ctl_table;			\
+	for (size_t i = 0 ; i < header->ctl_table_size ; ++i, entry++)
 
 static const struct dentry_operations proc_sys_dentry_operations;
 static const struct file_operations proc_sys_file_operations;
@@ -69,8 +70,7 @@ static struct ctl_table root_table[] = {
 	{
 		.procname = "",
 		.mode = S_IFDIR|S_IRUGO|S_IXUGO,
-	},
-	{ }
+	}
 };
 static struct ctl_table_root sysctl_table_root = {
 	.default_set.dir.header = {
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c
index 7c07654e4253..1eb18c8bd639 100644
--- a/fs/quota/dquot.c
+++ b/fs/quota/dquot.c
@@ -2941,9 +2941,8 @@ static struct ctl_table fs_dqstats_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
+	}
 #endif
-	{ },
 };
 
 static int __init dquot_init(void)
diff --git a/fs/sysctls.c b/fs/sysctls.c
index 944254dd92c0..d6ed656738ff 100644
--- a/fs/sysctls.c
+++ b/fs/sysctls.c
@@ -25,8 +25,7 @@ static struct ctl_table fs_shared_sysctls[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_MAXOLDUID,
-	},
-	{ }
+	}
 };
 
 static int __init init_fs_sysctls(void)
diff --git a/fs/userfaultfd.c b/fs/userfaultfd.c
index 4c3858769226..165b9c52e626 100644
--- a/fs/userfaultfd.c
+++ b/fs/userfaultfd.c
@@ -44,8 +44,7 @@ static struct ctl_table vm_userfaultfd_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 #endif
 
diff --git a/fs/verity/signature.c b/fs/verity/signature.c
index f617c6a1f16c..05585e93f32b 100644
--- a/fs/verity/signature.c
+++ b/fs/verity/signature.c
@@ -97,8 +97,7 @@ static struct ctl_table fsverity_sysctl_table[] = {
 		.proc_handler   = proc_dointvec_minmax,
 		.extra1         = SYSCTL_ZERO,
 		.extra2         = SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 static int __init fsverity_sysctl_init(void)
diff --git a/fs/xfs/xfs_sysctl.c b/fs/xfs/xfs_sysctl.c
index 61075e9c9e37..5c6337526070 100644
--- a/fs/xfs/xfs_sysctl.c
+++ b/fs/xfs/xfs_sysctl.c
@@ -204,10 +204,8 @@ static struct ctl_table xfs_table[] = {
 		.proc_handler	= xfs_stats_clear_proc_handler,
 		.extra1		= &xfs_params.stats_clear.min,
 		.extra2		= &xfs_params.stats_clear.max
-	},
+	}
 #endif /* CONFIG_PROC_FS */
-
-	{}
 };
 
 int
diff --git a/init/do_mounts_initrd.c b/init/do_mounts_initrd.c
index 2b10abb8c80e..a894519efdd3 100644
--- a/init/do_mounts_initrd.c
+++ b/init/do_mounts_initrd.c
@@ -28,8 +28,7 @@ static struct ctl_table kern_do_mounts_initrd_table[] = {
 		.maxlen         = sizeof(int),
 		.mode           = 0644,
 		.proc_handler   = proc_dointvec,
-	},
-	{ }
+	}
 };
 
 static __init int kernel_do_mounts_initrd_sysctls_init(void)
diff --git a/ipc/ipc_sysctl.c b/ipc/ipc_sysctl.c
index 8c62e443f78b..a46d15f5b476 100644
--- a/ipc/ipc_sysctl.c
+++ b/ipc/ipc_sysctl.c
@@ -175,9 +175,8 @@ static struct ctl_table ipc_sysctls[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_INT_MAX,
-	},
+	}
 #endif
-	{}
 };
 
 static struct ctl_table_set *set_lookup(struct ctl_table_root *root)
diff --git a/ipc/mq_sysctl.c b/ipc/mq_sysctl.c
index ebb5ed81c151..8191d03b39cb 100644
--- a/ipc/mq_sysctl.c
+++ b/ipc/mq_sysctl.c
@@ -62,8 +62,7 @@ static struct ctl_table mq_sysctls[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= &msg_maxsize_limit_min,
 		.extra2		= &msg_maxsize_limit_max,
-	},
-	{}
+	}
 };
 
 static struct ctl_table_set *set_lookup(struct ctl_table_root *root)
diff --git a/kernel/acct.c b/kernel/acct.c
index 67125b7c5ca2..93417042762b 100644
--- a/kernel/acct.c
+++ b/kernel/acct.c
@@ -83,8 +83,7 @@ static struct ctl_table kern_acct_table[] = {
 		.maxlen         = 3*sizeof(int),
 		.mode           = 0644,
 		.proc_handler   = proc_dointvec,
-	},
-	{ }
+	}
 };
 
 static __init int kernel_acct_sysctls_init(void)
diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c
index a81b5122b16b..980ad104fff8 100644
--- a/kernel/bpf/syscall.c
+++ b/kernel/bpf/syscall.c
@@ -5400,8 +5400,7 @@ static struct ctl_table bpf_syscall_table[] = {
 		.data		= &bpf_stats_enabled_key.key,
 		.mode		= 0644,
 		.proc_handler	= bpf_stats_handler,
-	},
-	{ }
+	}
 };
 
 static int __init bpf_syscall_sysctl_init(void)
diff --git a/kernel/delayacct.c b/kernel/delayacct.c
index 4ef14cb5b5a0..539cab051d17 100644
--- a/kernel/delayacct.c
+++ b/kernel/delayacct.c
@@ -73,8 +73,7 @@ static struct ctl_table kern_delayacct_table[] = {
 		.proc_handler   = sysctl_delayacct,
 		.extra1         = SYSCTL_ZERO,
 		.extra2         = SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 static __init int kernel_delayacct_sysctls_init(void)
diff --git a/kernel/exit.c b/kernel/exit.c
index 633c7a52ef80..87cb53a33bbc 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -89,8 +89,7 @@ static struct ctl_table kern_exit_table[] = {
 		.maxlen         = sizeof(oops_limit),
 		.mode           = 0644,
 		.proc_handler   = proc_douintvec,
-	},
-	{ }
+	}
 };
 
 static __init int kernel_exit_sysctls_init(void)
diff --git a/kernel/hung_task.c b/kernel/hung_task.c
index 816f133266c4..8d0659453421 100644
--- a/kernel/hung_task.c
+++ b/kernel/hung_task.c
@@ -312,8 +312,7 @@ static struct ctl_table hung_task_sysctls[] = {
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_NEG_ONE,
-	},
-	{}
+	}
 };
 
 static void __init hung_task_sysctl_init(void)
diff --git a/kernel/kexec_core.c b/kernel/kexec_core.c
index 63b04e710890..160779e0a503 100644
--- a/kernel/kexec_core.c
+++ b/kernel/kexec_core.c
@@ -1001,8 +1001,7 @@ static struct ctl_table kexec_core_sysctls[] = {
 		.data		= &load_limit_reboot,
 		.mode		= 0644,
 		.proc_handler	= kexec_limit_handler,
-	},
-	{ }
+	}
 };
 
 static int __init kexec_core_sysctl_init(void)
diff --git a/kernel/kprobes.c b/kernel/kprobes.c
index 06a3ac7993f0..ae6b0f78ae6c 100644
--- a/kernel/kprobes.c
+++ b/kernel/kprobes.c
@@ -967,8 +967,7 @@ static struct ctl_table kprobe_sysctls[] = {
 		.proc_handler	= proc_kprobes_optimization_handler,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{}
+	}
 };
 
 static void __init kprobe_sysctls_init(void)
diff --git a/kernel/latencytop.c b/kernel/latencytop.c
index 55050ae0e197..bb4dd0691b3c 100644
--- a/kernel/latencytop.c
+++ b/kernel/latencytop.c
@@ -84,8 +84,7 @@ static struct ctl_table latencytop_sysctl[] = {
 		.maxlen     = sizeof(int),
 		.mode       = 0644,
 		.proc_handler   = sysctl_latencytop,
-	},
-	{}
+	}
 };
 #endif
 
diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c
index 1e29cec7e00c..0db8af590f87 100644
--- a/kernel/locking/lockdep.c
+++ b/kernel/locking/lockdep.c
@@ -95,9 +95,8 @@ static struct ctl_table kern_lockdep_table[] = {
 		.maxlen         = sizeof(int),
 		.mode           = 0644,
 		.proc_handler   = proc_dointvec,
-	},
+	}
 #endif /* CONFIG_LOCK_STAT */
-	{ }
 };
 
 static __init int kernel_lockdep_sysctls_init(void)
diff --git a/kernel/panic.c b/kernel/panic.c
index 0008273d23fd..79786433efda 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -98,8 +98,7 @@ static struct ctl_table kern_panic_table[] = {
 		.maxlen         = sizeof(warn_limit),
 		.mode           = 0644,
 		.proc_handler   = proc_douintvec,
-	},
-	{ }
+	}
 };
 
 static __init int kernel_panic_sysctls_init(void)
diff --git a/kernel/pid_namespace.c b/kernel/pid_namespace.c
index 7fd5e8adc2e8..dc7adbd2f412 100644
--- a/kernel/pid_namespace.c
+++ b/kernel/pid_namespace.c
@@ -311,8 +311,7 @@ static struct ctl_table pid_ns_ctl_table[] = {
 		.proc_handler = pid_ns_ctl_handler,
 		.extra1 = SYSCTL_ZERO,
 		.extra2 = &pid_max,
-	},
-	{ }
+	}
 };
 #endif	/* CONFIG_CHECKPOINT_RESTORE */
 
diff --git a/kernel/pid_sysctl.h b/kernel/pid_sysctl.h
index 8b24744752cb..b9528766d2d8 100644
--- a/kernel/pid_sysctl.h
+++ b/kernel/pid_sysctl.h
@@ -43,8 +43,7 @@ static struct ctl_table pid_ns_ctl_table_vm[] = {
 		.proc_handler	= pid_mfd_noexec_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_TWO,
-	},
-	{ }
+	}
 };
 static inline void register_pid_ns_sysctl_table_vm(void)
 {
diff --git a/kernel/printk/sysctl.c b/kernel/printk/sysctl.c
index 28f37b86414e..d608832b4489 100644
--- a/kernel/printk/sysctl.c
+++ b/kernel/printk/sysctl.c
@@ -75,8 +75,7 @@ static struct ctl_table printk_sysctls[] = {
 		.proc_handler	= proc_dointvec_minmax_sysadmin,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_TWO,
-	},
-	{}
+	}
 };
 
 void __init printk_sysctl_init(void)
diff --git a/kernel/reboot.c b/kernel/reboot.c
index cf81d8bfb523..e29d415810c1 100644
--- a/kernel/reboot.c
+++ b/kernel/reboot.c
@@ -1271,8 +1271,7 @@ static struct ctl_table kern_reboot_table[] = {
 		.maxlen         = sizeof(int),
 		.mode           = 0644,
 		.proc_handler   = proc_dointvec,
-	},
-	{ }
+	}
 };
 
 static void __init kernel_reboot_sysctls_init(void)
diff --git a/kernel/sched/autogroup.c b/kernel/sched/autogroup.c
index 2b9ce82279a5..4c558f0de4f7 100644
--- a/kernel/sched/autogroup.c
+++ b/kernel/sched/autogroup.c
@@ -18,8 +18,7 @@ static struct ctl_table sched_autogroup_sysctls[] = {
 		.proc_handler   = proc_dointvec_minmax,
 		.extra1         = SYSCTL_ZERO,
 		.extra2         = SYSCTL_ONE,
-	},
-	{}
+	}
 };
 
 static void __init sched_autogroup_sysctl_init(void)
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index b8c7e01dd78a..f11ac1d3e315 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -4671,9 +4671,8 @@ static struct ctl_table sched_core_sysctls[] = {
 		.proc_handler	= sysctl_numa_balancing,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_FOUR,
-	},
+	}
 #endif /* CONFIG_NUMA_BALANCING */
-	{}
 };
 static int __init sched_core_sysctl_init(void)
 {
diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c
index 2aacf5ea2ff3..a6cbdf588590 100644
--- a/kernel/sched/deadline.c
+++ b/kernel/sched/deadline.c
@@ -40,8 +40,7 @@ static struct ctl_table sched_dl_sysctls[] = {
 		.mode           = 0644,
 		.proc_handler   = proc_douintvec_minmax,
 		.extra2         = (void *)&sysctl_sched_dl_period_max,
-	},
-	{}
+	}
 };
 
 static int __init sched_dl_sysctl_init(void)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index db09e56c2dd3..876f110e696d 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -210,9 +210,8 @@ static struct ctl_table sched_fair_sysctls[] = {
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
-	},
+	}
 #endif /* CONFIG_NUMA_BALANCING */
-	{}
 };
 
 static int __init sched_fair_sysctl_init(void)
diff --git a/kernel/sched/rt.c b/kernel/sched/rt.c
index aab9b900ed6f..2e2d49467dd9 100644
--- a/kernel/sched/rt.c
+++ b/kernel/sched/rt.c
@@ -51,8 +51,7 @@ static struct ctl_table sched_rt_sysctls[] = {
 		.maxlen         = sizeof(int),
 		.mode           = 0644,
 		.proc_handler   = sched_rr_handler,
-	},
-	{}
+	}
 };
 
 static int __init sched_rt_sysctl_init(void)
diff --git a/kernel/sched/topology.c b/kernel/sched/topology.c
index 46d7c3f3e830..cd3fffecbce3 100644
--- a/kernel/sched/topology.c
+++ b/kernel/sched/topology.c
@@ -249,8 +249,7 @@ static struct ctl_table sched_energy_aware_sysctls[] = {
 		.proc_handler   = sched_energy_aware_handler,
 		.extra1         = SYSCTL_ZERO,
 		.extra2         = SYSCTL_ONE,
-	},
-	{}
+	}
 };
 
 static int __init sched_energy_aware_sysctl_init(void)
diff --git a/kernel/seccomp.c b/kernel/seccomp.c
index 9683a9a4709d..1693f0935904 100644
--- a/kernel/seccomp.c
+++ b/kernel/seccomp.c
@@ -2380,8 +2380,7 @@ static struct ctl_table seccomp_sysctl_table[] = {
 		.procname	= "actions_logged",
 		.mode		= 0644,
 		.proc_handler	= seccomp_actions_logged_handler,
-	},
-	{ }
+	}
 };
 
 static int __init seccomp_sysctl_init(void)
diff --git a/kernel/signal.c b/kernel/signal.c
index 19791930f12a..4a87ba91491f 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -4781,9 +4781,8 @@ static struct ctl_table signal_debug_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec
-	},
+	}
 #endif
-	{ }
 };
 
 static int __init init_signal_sysctls(void)
diff --git a/kernel/stackleak.c b/kernel/stackleak.c
index 123844341148..6a9a65ace05a 100644
--- a/kernel/stackleak.c
+++ b/kernel/stackleak.c
@@ -53,8 +53,7 @@ static struct ctl_table stackleak_sysctls[] = {
 		.proc_handler	= stack_erasing_sysctl,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{}
+	}
 };
 
 static int __init stackleak_sysctls_init(void)
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 2b9b0c8569ba..f1865c593666 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -2041,9 +2041,8 @@ static struct ctl_table kern_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ONE,
 		.extra2		= SYSCTL_INT_MAX,
-	},
+	}
 #endif
-	{ }
 };
 
 static struct ctl_table vm_table[] = {
@@ -2314,9 +2313,8 @@ static struct ctl_table vm_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= (void *)&mmap_rnd_compat_bits_min,
 		.extra2		= (void *)&mmap_rnd_compat_bits_max,
-	},
+	}
 #endif
-	{ }
 };
 
 int __init sysctl_init_bases(void)
diff --git a/kernel/time/timer.c b/kernel/time/timer.c
index de385b365a7a..b7594ac53c99 100644
--- a/kernel/time/timer.c
+++ b/kernel/time/timer.c
@@ -259,8 +259,7 @@ static struct ctl_table timer_sysctl[] = {
 		.proc_handler	= timer_migration_handler,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{}
+	}
 };
 
 static int __init timer_sysctl_init(void)
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index 84ef42111f78..7a5a607b6cc2 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -8213,8 +8213,7 @@ static struct ctl_table ftrace_sysctls[] = {
 		.maxlen         = sizeof(int),
 		.mode           = 0644,
 		.proc_handler   = ftrace_enable_sysctl,
-	},
-	{}
+	}
 };
 
 static int __init ftrace_sysctl_init(void)
diff --git a/kernel/trace/trace_events_user.c b/kernel/trace/trace_events_user.c
index ac019cb21b18..baf48c16d2c5 100644
--- a/kernel/trace/trace_events_user.c
+++ b/kernel/trace/trace_events_user.c
@@ -2530,8 +2530,7 @@ static struct ctl_table user_event_sysctls[] = {
 		.maxlen		= sizeof(unsigned int),
 		.mode		= 0644,
 		.proc_handler	= set_max_user_events_sysctl,
-	},
-	{}
+	}
 };
 
 static int __init trace_events_user_init(void)
diff --git a/kernel/ucount.c b/kernel/ucount.c
index 59bf6983f1cf..ce7ab90f7953 100644
--- a/kernel/ucount.c
+++ b/kernel/ucount.c
@@ -85,10 +85,9 @@ static struct ctl_table user_table[] = {
 #endif
 #ifdef CONFIG_FANOTIFY
 	UCOUNT_ENTRY("max_fanotify_groups"),
-	UCOUNT_ENTRY("max_fanotify_marks"),
+	UCOUNT_ENTRY("max_fanotify_marks")
 #endif
-	{ }
-};
+	};
 #endif /* CONFIG_SYSCTL */
 
 bool setup_userns_sysctls(struct user_namespace *ns)
@@ -96,7 +95,7 @@ bool setup_userns_sysctls(struct user_namespace *ns)
 #ifdef CONFIG_SYSCTL
 	struct ctl_table *tbl;
 
-	BUILD_BUG_ON(ARRAY_SIZE(user_table) != UCOUNT_COUNTS + 1);
+	BUILD_BUG_ON(ARRAY_SIZE(user_table) != UCOUNT_COUNTS);
 	setup_sysctl_set(&ns->set, &set_root, set_is_seen);
 	tbl = kmemdup(user_table, sizeof(user_table), GFP_KERNEL);
 	if (tbl) {
diff --git a/kernel/umh.c b/kernel/umh.c
index 187a30ff8541..e1304be4823a 100644
--- a/kernel/umh.c
+++ b/kernel/umh.c
@@ -559,8 +559,7 @@ static struct ctl_table usermodehelper_table[] = {
 		.maxlen		= 2 * sizeof(unsigned long),
 		.mode		= 0600,
 		.proc_handler	= proc_cap_handler,
-	},
-	{ }
+	}
 };
 
 static int __init init_umh_sysctls(void)
diff --git a/kernel/utsname_sysctl.c b/kernel/utsname_sysctl.c
index 24527b155538..8776d45daf3a 100644
--- a/kernel/utsname_sysctl.c
+++ b/kernel/utsname_sysctl.c
@@ -119,8 +119,7 @@ static struct ctl_table uts_kern_table[] = {
 		.mode		= 0644,
 		.proc_handler	= proc_do_uts_string,
 		.poll		= &domainname_poll,
-	},
-	{}
+	}
 };
 
 #ifdef CONFIG_PROC_SYSCTL
diff --git a/kernel/watchdog.c b/kernel/watchdog.c
index dd5a343fadde..b79e6cfc008c 100644
--- a/kernel/watchdog.c
+++ b/kernel/watchdog.c
@@ -839,10 +839,9 @@ static struct ctl_table watchdog_sysctls[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
+	}
 #endif /* CONFIG_SMP */
 #endif
-	{}
 };
 
 static void __init watchdog_sysctl_init(void)
diff --git a/lib/test_sysctl.c b/lib/test_sysctl.c
index 83d37a163836..5a9018787d71 100644
--- a/lib/test_sysctl.c
+++ b/lib/test_sysctl.c
@@ -129,8 +129,7 @@ static struct ctl_table test_table[] = {
 		.maxlen		= SYSCTL_TEST_BITMAP_SIZE,
 		.mode		= 0644,
 		.proc_handler	= proc_do_large_bitmap,
-	},
-	{ }
+	}
 };
 
 static void test_sysctl_calc_match_int_ok(void)
@@ -184,8 +183,7 @@ static struct ctl_table test_table_unregister[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_minmax,
-	},
-	{}
+	}
 };
 
 static int test_sysctl_run_unregister_nested(void)
diff --git a/mm/compaction.c b/mm/compaction.c
index ca09cdd72bf3..5013f5b7b44b 100644
--- a/mm/compaction.c
+++ b/mm/compaction.c
@@ -3126,8 +3126,7 @@ static struct ctl_table vm_compaction[] = {
 		.proc_handler	= proc_dointvec_minmax_warn_RT_change,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 static int __init kcompactd_init(void)
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index 7838b0c0b82b..5236805aee57 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -4675,8 +4675,7 @@ static struct ctl_table hugetlb_table[] = {
 		.maxlen		= sizeof(unsigned long),
 		.mode		= 0644,
 		.proc_handler	= hugetlb_overcommit_handler,
-	},
-	{ }
+	}
 };
 
 static void hugetlb_sysctl_init(void)
diff --git a/mm/hugetlb_vmemmap.c b/mm/hugetlb_vmemmap.c
index 65885a06269b..b1a2a1089aa3 100644
--- a/mm/hugetlb_vmemmap.c
+++ b/mm/hugetlb_vmemmap.c
@@ -584,8 +584,7 @@ static struct ctl_table hugetlb_vmemmap_sysctls[] = {
 		.maxlen		= sizeof(vmemmap_optimize_enabled),
 		.mode		= 0644,
 		.proc_handler	= proc_dobool,
-	},
-	{ }
+	}
 };
 
 static int __init hugetlb_vmemmap_init(void)
diff --git a/mm/memory-failure.c b/mm/memory-failure.c
index 46aef76d8e91..9bf5dd7a394e 100644
--- a/mm/memory-failure.c
+++ b/mm/memory-failure.c
@@ -142,8 +142,7 @@ static struct ctl_table memory_failure_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 static int __init memory_failure_sysctl_init(void)
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
index 500cf2ef9faa..a05416f798e7 100644
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -725,8 +725,7 @@ static struct ctl_table vm_oom_kill_table[] = {
 		.maxlen		= sizeof(sysctl_oom_dump_tasks),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{}
+	}
 };
 #endif
 
diff --git a/mm/page-writeback.c b/mm/page-writeback.c
index 9f997de8d12f..b75aaae6f77b 100644
--- a/mm/page-writeback.c
+++ b/mm/page-writeback.c
@@ -2290,8 +2290,7 @@ static struct ctl_table vm_page_writeback_sysctls[] = {
 		.maxlen		= sizeof(laptop_mode),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_jiffies,
-	},
-	{}
+	}
 };
 #endif
 
diff --git a/net/appletalk/sysctl_net_atalk.c b/net/appletalk/sysctl_net_atalk.c
index 30dcbbb8aeff..3975c1fad48c 100644
--- a/net/appletalk/sysctl_net_atalk.c
+++ b/net/appletalk/sysctl_net_atalk.c
@@ -39,8 +39,7 @@ static struct ctl_table atalk_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_jiffies,
-	},
-	{ },
+	}
 };
 
 static struct ctl_table_header *atalk_table_header;
diff --git a/net/ax25/sysctl_net_ax25.c b/net/ax25/sysctl_net_ax25.c
index 06afbc14b783..e7e81787e5de 100644
--- a/net/ax25/sysctl_net_ax25.c
+++ b/net/ax25/sysctl_net_ax25.c
@@ -139,10 +139,9 @@ static const struct ctl_table ax25_param_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= &min_ds_timeout,
 		.extra2		= &max_ds_timeout
-	},
+	}
 #endif
-
-	{ }	/* that's all, folks! */
+/* that's all, folks! */
 };
 
 int ax25_register_dev_sysctl(ax25_dev *ax25_dev)
diff --git a/net/bridge/br_netfilter_hooks.c b/net/bridge/br_netfilter_hooks.c
index ebbaef748a48..dfc37ac00980 100644
--- a/net/bridge/br_netfilter_hooks.c
+++ b/net/bridge/br_netfilter_hooks.c
@@ -1100,8 +1100,7 @@ static struct ctl_table brnf_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= brnf_sysctl_call_tables,
-	},
-	{ }
+	}
 };
 
 static inline void br_netfilter_sysctl_default(struct brnf_net *brnf)
diff --git a/net/core/neighbour.c b/net/core/neighbour.c
index aa5ad1cfc9b1..096d86013300 100644
--- a/net/core/neighbour.c
+++ b/net/core/neighbour.c
@@ -3716,7 +3716,7 @@ static int neigh_proc_base_reachable_time(struct ctl_table *ctl, int write,
 
 static struct neigh_sysctl_table {
 	struct ctl_table_header *sysctl_header;
-	struct ctl_table neigh_vars[NEIGH_VAR_MAX + 1];
+	struct ctl_table neigh_vars[NEIGH_VAR_MAX];
 } neigh_sysctl_template __read_mostly = {
 	.neigh_vars = {
 		NEIGH_SYSCTL_ZERO_INTMAX_ENTRY(MCAST_PROBES, "mcast_solicit"),
@@ -3766,9 +3766,8 @@ static struct neigh_sysctl_table {
 			.extra1		= SYSCTL_ZERO,
 			.extra2		= SYSCTL_INT_MAX,
 			.proc_handler	= proc_dointvec_minmax,
-		},
-		{},
-	},
+		}
+	}
 };
 
 int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
@@ -3779,6 +3778,7 @@ int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
 	const char *dev_name_source;
 	char neigh_path[ sizeof("net//neigh/") + IFNAMSIZ + IFNAMSIZ ];
 	char *p_name;
+	size_t neigh_vars_size;
 
 	t = kmemdup(&neigh_sysctl_template, sizeof(*t), GFP_KERNEL_ACCOUNT);
 	if (!t)
@@ -3790,11 +3790,11 @@ int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
 		t->neigh_vars[i].extra2 = p;
 	}
 
+	neigh_vars_size = ARRAY_SIZE(t->neigh_vars);
 	if (dev) {
 		dev_name_source = dev->name;
 		/* Terminate the table early */
-		memset(&t->neigh_vars[NEIGH_VAR_GC_INTERVAL], 0,
-		       sizeof(t->neigh_vars[NEIGH_VAR_GC_INTERVAL]));
+		neigh_vars_size = NEIGH_VAR_BASE_REACHABLE_TIME_MS;
 	} else {
 		struct neigh_table *tbl = p->tbl;
 		dev_name_source = "default";
@@ -3843,7 +3843,7 @@ int neigh_sysctl_register(struct net_device *dev, struct neigh_parms *p,
 		p_name, dev_name_source);
 	t->sysctl_header =
 		register_net_sysctl(neigh_parms_net(p), neigh_path, t->neigh_vars,
-				    ARRAY_SIZE(t->neigh_vars));
+				    neigh_vars_size);
 	if (!t->sysctl_header)
 		goto free;
 
diff --git a/net/core/sysctl_net_core.c b/net/core/sysctl_net_core.c
index aa615f22507b..9acde2a110cd 100644
--- a/net/core/sysctl_net_core.c
+++ b/net/core/sysctl_net_core.c
@@ -652,8 +652,7 @@ static struct ctl_table net_core_table[] = {
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
-	},
-	{ }
+	}
 };
 
 static struct ctl_table netns_core_table[] = {
@@ -681,8 +680,7 @@ static struct ctl_table netns_core_table[] = {
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
 		.proc_handler	= proc_dou8vec_minmax,
-	},
-	{ }
+	}
 };
 
 static int __init fb_tunnels_only_for_init_net_sysctl_setup(char *str)
diff --git a/net/dccp/sysctl.c b/net/dccp/sysctl.c
index 1140748858b0..7a5ccae4fc10 100644
--- a/net/dccp/sysctl.c
+++ b/net/dccp/sysctl.c
@@ -89,9 +89,7 @@ static struct ctl_table dccp_default_table[] = {
 		.maxlen		= sizeof(sysctl_dccp_sync_ratelimit),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_ms_jiffies,
-	},
-
-	{ }
+	}
 };
 
 static struct ctl_table_header *dccp_table_header;
diff --git a/net/ieee802154/6lowpan/reassembly.c b/net/ieee802154/6lowpan/reassembly.c
index 7b717434368c..3d9f2fbb8ec0 100644
--- a/net/ieee802154/6lowpan/reassembly.c
+++ b/net/ieee802154/6lowpan/reassembly.c
@@ -337,8 +337,7 @@ static struct ctl_table lowpan_frags_ns_ctl_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_jiffies,
-	},
-	{ }
+	}
 };
 
 /* secret interval has been deprecated */
@@ -350,8 +349,7 @@ static struct ctl_table lowpan_frags_ctl_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_jiffies,
-	},
-	{ }
+	}
 };
 
 static int __net_init lowpan_frags_ns_sysctl_register(struct net *net)
diff --git a/net/ipv4/devinet.c b/net/ipv4/devinet.c
index 6360425dfcb2..eeb229b1ab78 100644
--- a/net/ipv4/devinet.c
+++ b/net/ipv4/devinet.c
@@ -2516,7 +2516,7 @@ static int ipv4_doint_and_flush(struct ctl_table *ctl, int write,
 
 static struct devinet_sysctl_table {
 	struct ctl_table_header *sysctl_header;
-	struct ctl_table devinet_vars[__IPV4_DEVCONF_MAX];
+	struct ctl_table devinet_vars[IPV4_DEVCONF_MAX];
 } devinet_sysctl = {
 	.devinet_vars = {
 		DEVINET_SYSCTL_COMPLEX_ENTRY(FORWARDING, "forwarding",
@@ -2653,8 +2653,7 @@ static struct ctl_table ctl_forward_entry[] = {
 		.proc_handler	= devinet_sysctl_forward,
 		.extra1		= &ipv4_devconf,
 		.extra2		= &init_net,
-	},
-	{ },
+	}
 };
 #endif
 
diff --git a/net/ipv4/ip_fragment.c b/net/ipv4/ip_fragment.c
index 3d7a82a900b5..2f8a8ac058da 100644
--- a/net/ipv4/ip_fragment.c
+++ b/net/ipv4/ip_fragment.c
@@ -579,8 +579,7 @@ static struct ctl_table ip4_frags_ns_ctl_table[] = {
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= &dist_min,
-	},
-	{ }
+	}
 };
 
 /* secret interval has been deprecated */
@@ -592,8 +591,7 @@ static struct ctl_table ip4_frags_ctl_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_jiffies,
-	},
-	{ }
+	}
 };
 
 static int __net_init ip4_frags_ns_ctl_register(struct net *net)
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index 883f4f1ee056..de0c0f9078b5 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -3551,8 +3551,7 @@ static struct ctl_table ipv4_route_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{ }
+	}
 };
 
 static const char ipv4_route_flush_procname[] = "flush";
@@ -3585,8 +3584,7 @@ static struct ctl_table ipv4_route_netns_table[] = {
 		.maxlen     = sizeof(int),
 		.mode       = 0644,
 		.proc_handler   = proc_dointvec,
-	},
-	{ },
+	}
 };
 
 static __net_init int sysctl_route_net_init(struct net *net)
diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c
index 1821f403efc0..31306925a35d 100644
--- a/net/ipv4/sysctl_net_ipv4.c
+++ b/net/ipv4/sysctl_net_ipv4.c
@@ -577,8 +577,7 @@ static struct ctl_table ipv4_table[] = {
 		.proc_handler	= proc_douintvec_minmax,
 		.extra1		= &sysctl_fib_sync_mem_min,
 		.extra2		= &sysctl_fib_sync_mem_max,
-	},
-	{ }
+	}
 };
 
 static struct ctl_table ipv4_net_table[] = {
@@ -1469,8 +1468,7 @@ static struct ctl_table ipv4_net_table[] = {
 		.proc_handler   = proc_dointvec_minmax,
 		.extra1         = SYSCTL_ZERO,
 		.extra2         = &tcp_plb_max_cong_thresh,
-	},
-	{ }
+	}
 };
 
 static __net_init int ipv4_sysctl_init_net(struct net *net)
diff --git a/net/ipv4/xfrm4_policy.c b/net/ipv4/xfrm4_policy.c
index ec1d68dbffc3..40610bb3a75a 100644
--- a/net/ipv4/xfrm4_policy.c
+++ b/net/ipv4/xfrm4_policy.c
@@ -160,8 +160,7 @@ static struct ctl_table xfrm4_policy_table[] = {
 		.maxlen         = sizeof(int),
 		.mode           = 0644,
 		.proc_handler   = proc_dointvec,
-	},
-	{ }
+	}
 };
 
 static __net_init int xfrm4_net_sysctl_init(struct net *net)
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
index 68a2925c66a5..c72887ad79a3 100644
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -7055,9 +7055,6 @@ static const struct ctl_table addrconf_sysctl[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_TWO,
-	},
-	{
-		/* sentinel */
 	}
 };
 
@@ -7072,7 +7069,7 @@ static int __addrconf_sysctl_register(struct net *net, char *dev_name,
 	if (!table)
 		goto out;
 
-	for (i = 0; table[i].data; i++) {
+	for (i = 0; i < ARRAY_SIZE(addrconf_sysctl); i++) {
 		table[i].data += (char *)p - (char *)&ipv6_devconf;
 		/* If one of these is already set, then it is not safe to
 		 * overwrite either of them: this makes proc_dointvec_minmax
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c
index 4159662fa214..b57e2c447969 100644
--- a/net/ipv6/icmp.c
+++ b/net/ipv6/icmp.c
@@ -1204,8 +1204,7 @@ static struct ctl_table ipv6_icmp_table_template[] = {
 		.proc_handler	= proc_dou8vec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= SYSCTL_ONE,
-	},
-	{ },
+	}
 };
 
 struct ctl_table * __net_init ipv6_icmp_sysctl_init(struct net *net)
diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c
index dca8e0aabc51..18106042a3ed 100644
--- a/net/ipv6/netfilter/nf_conntrack_reasm.c
+++ b/net/ipv6/netfilter/nf_conntrack_reasm.c
@@ -61,8 +61,7 @@ static struct ctl_table nf_ct_frag6_sysctl_table[] = {
 		.maxlen		= sizeof(unsigned long),
 		.mode		= 0644,
 		.proc_handler	= proc_doulongvec_minmax,
-	},
-	{ }
+	}
 };
 
 static int nf_ct_frag6_sysctl_register(struct net *net)
diff --git a/net/ipv6/reassembly.c b/net/ipv6/reassembly.c
index 0688261202de..b7d7dd6e1f75 100644
--- a/net/ipv6/reassembly.c
+++ b/net/ipv6/reassembly.c
@@ -435,8 +435,7 @@ static struct ctl_table ip6_frags_ns_ctl_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_jiffies,
-	},
-	{ }
+	}
 };
 
 /* secret interval has been deprecated */
@@ -448,8 +447,7 @@ static struct ctl_table ip6_frags_ctl_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_jiffies,
-	},
-	{ }
+	}
 };
 
 static int __net_init ip6_frags_ns_sysctl_register(struct net *net)
diff --git a/net/ipv6/route.c b/net/ipv6/route.c
index a35470576077..0b2a3afe620e 100644
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -6417,8 +6417,7 @@ static struct ctl_table ipv6_route_table_template[] = {
 		.proc_handler	=	proc_dointvec_minmax,
 		.extra1		=	SYSCTL_ZERO,
 		.extra2		=	SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 struct ctl_table * __net_init ipv6_route_sysctl_init(struct net *net)
diff --git a/net/ipv6/sysctl_net_ipv6.c b/net/ipv6/sysctl_net_ipv6.c
index 29f121f513a6..0d45a8a32752 100644
--- a/net/ipv6/sysctl_net_ipv6.c
+++ b/net/ipv6/sysctl_net_ipv6.c
@@ -212,8 +212,7 @@ static struct ctl_table ipv6_table_template[] = {
 		.mode		= 0644,
 		.proc_handler	= proc_doulongvec_minmax,
 		.extra2		= &ioam6_id_wide_max,
-	},
-	{ }
+	}
 };
 
 static struct ctl_table ipv6_rotable[] = {
@@ -246,9 +245,8 @@ static struct ctl_table ipv6_rotable[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
+	}
 #endif /* CONFIG_NETLABEL */
-	{ }
 };
 
 static int __net_init ipv6_sysctl_net_init(struct net *net)
diff --git a/net/ipv6/xfrm6_policy.c b/net/ipv6/xfrm6_policy.c
index 27efdb18a018..f3559ff33ff4 100644
--- a/net/ipv6/xfrm6_policy.c
+++ b/net/ipv6/xfrm6_policy.c
@@ -187,8 +187,7 @@ static struct ctl_table xfrm6_policy_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler   = proc_dointvec,
-	},
-	{ }
+	}
 };
 
 static int __net_init xfrm6_net_sysctl_init(struct net *net)
diff --git a/net/llc/sysctl_net_llc.c b/net/llc/sysctl_net_llc.c
index 195296ba29f0..520fc52059b1 100644
--- a/net/llc/sysctl_net_llc.c
+++ b/net/llc/sysctl_net_llc.c
@@ -43,12 +43,10 @@ static struct ctl_table llc2_timeout_table[] = {
 		.maxlen		= sizeof(sysctl_llc2_rej_timeout),
 		.mode		= 0644,
 		.proc_handler   = proc_dointvec_jiffies,
-	},
-	{ },
+	}
 };
 
 static struct ctl_table llc_station_table[] = {
-	{ },
 };
 
 static struct ctl_table_header *llc2_timeout_header;
diff --git a/net/mpls/af_mpls.c b/net/mpls/af_mpls.c
index 6f96aae76537..a78daceddf74 100644
--- a/net/mpls/af_mpls.c
+++ b/net/mpls/af_mpls.c
@@ -1391,8 +1391,7 @@ static const struct ctl_table mpls_dev_table[] = {
 		.mode		= 0644,
 		.proc_handler	= mpls_conf_proc,
 		.data		= MPLS_PERDEV_SYSCTL_OFFSET(input_enabled),
-	},
-	{ }
+	}
 };
 
 static int mpls_platform_labels(struct ctl_table *table, int write,
@@ -1425,8 +1424,7 @@ static const struct ctl_table mpls_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ONE,
 		.extra2		= &ttl_max,
-	},
-	{ }
+	}
 };
 
 static int mpls_dev_sysctl_register(struct net_device *dev,
@@ -1444,7 +1442,7 @@ static int mpls_dev_sysctl_register(struct net_device *dev,
 	/* Table data contains only offsets relative to the base of
 	 * the mdev at this point, so make them absolute.
 	 */
-	for (i = 0; i < ARRAY_SIZE(mpls_dev_table) - 1; i++) {
+	for (i = 0; i < ARRAY_SIZE(mpls_dev_table); i++) {
 		table[i].data = (char *)mdev + (uintptr_t)table[i].data;
 		table[i].extra1 = mdev;
 		table[i].extra2 = net;
@@ -2689,7 +2687,7 @@ static int mpls_net_init(struct net *net)
 	/* Table data contains only offsets relative to the base of
 	 * the mdev at this point, so make them absolute.
 	 */
-	for (i = 0; i < ARRAY_SIZE(mpls_table) - 1; i++)
+	for (i = 0; i < ARRAY_SIZE(mpls_table); i++)
 		table[i].data = (char *)net + (uintptr_t)table[i].data;
 
 	net->mpls.ctl = register_net_sysctl(net, "net/mpls", table,
diff --git a/net/mptcp/ctrl.c b/net/mptcp/ctrl.c
index 42dfc834e5c6..27fb556d2273 100644
--- a/net/mptcp/ctrl.c
+++ b/net/mptcp/ctrl.c
@@ -127,8 +127,7 @@ static struct ctl_table mptcp_sysctl_table[] = {
 		.proc_handler = proc_dou8vec_minmax,
 		.extra1       = SYSCTL_ZERO,
 		.extra2       = &mptcp_pm_type_max
-	},
-	{}
+	}
 };
 
 static int mptcp_pernet_new_table(struct net *net, struct mptcp_pernet *pernet)
diff --git a/net/netfilter/ipvs/ip_vs_ctl.c b/net/netfilter/ipvs/ip_vs_ctl.c
index abbd30ee3ce0..fef7104ac33e 100644
--- a/net/netfilter/ipvs/ip_vs_ctl.c
+++ b/net/netfilter/ipvs/ip_vs_ctl.c
@@ -2258,9 +2258,8 @@ static struct ctl_table vs_vars[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
+	}
 #endif
-	{ }
 };
 
 #endif
diff --git a/net/netfilter/ipvs/ip_vs_lblc.c b/net/netfilter/ipvs/ip_vs_lblc.c
index 254eb3b61e15..e6297bb6922b 100644
--- a/net/netfilter/ipvs/ip_vs_lblc.c
+++ b/net/netfilter/ipvs/ip_vs_lblc.c
@@ -122,8 +122,7 @@ static struct ctl_table vs_vars_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_jiffies,
-	},
-	{ }
+	}
 };
 #endif
 
diff --git a/net/netfilter/ipvs/ip_vs_lblcr.c b/net/netfilter/ipvs/ip_vs_lblcr.c
index 0e39a4fd421f..f3056767818b 100644
--- a/net/netfilter/ipvs/ip_vs_lblcr.c
+++ b/net/netfilter/ipvs/ip_vs_lblcr.c
@@ -293,8 +293,7 @@ static struct ctl_table vs_vars_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_jiffies,
-	},
-	{ }
+	}
 };
 #endif
 
diff --git a/net/netfilter/nf_conntrack_standalone.c b/net/netfilter/nf_conntrack_standalone.c
index a3b2029ef098..26efc6f28b34 100644
--- a/net/netfilter/nf_conntrack_standalone.c
+++ b/net/netfilter/nf_conntrack_standalone.c
@@ -616,11 +616,9 @@ enum nf_ct_sysctl_index {
 	NF_SYSCTL_CT_LWTUNNEL,
 #endif
 
-	__NF_SYSCTL_CT_LAST_SYSCTL,
+	NF_SYSCTL_CT_LAST_SYSCTL,
 };
 
-#define NF_SYSCTL_CT_LAST_SYSCTL (__NF_SYSCTL_CT_LAST_SYSCTL + 1)
-
 static struct ctl_table nf_ct_sysctl_table[] = {
 	[NF_SYSCTL_CT_MAX] = {
 		.procname	= "nf_conntrack_max",
@@ -955,9 +953,8 @@ static struct ctl_table nf_ct_sysctl_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= nf_hooks_lwtunnel_sysctl_handler,
-	},
+	}
 #endif
-	{}
 };
 
 static struct ctl_table nf_ct_netfilter_table[] = {
@@ -967,8 +964,7 @@ static struct ctl_table nf_ct_netfilter_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{ }
+	}
 };
 
 static void nf_conntrack_standalone_init_tcp_sysctl(struct net *net,
diff --git a/net/netfilter/nf_log.c b/net/netfilter/nf_log.c
index 755f9cf570ce..686040b5e431 100644
--- a/net/netfilter/nf_log.c
+++ b/net/netfilter/nf_log.c
@@ -389,7 +389,7 @@ static const struct seq_operations nflog_seq_ops = {
 
 #ifdef CONFIG_SYSCTL
 static char nf_log_sysctl_fnames[NFPROTO_NUMPROTO-NFPROTO_UNSPEC][3];
-static struct ctl_table nf_log_sysctl_table[NFPROTO_NUMPROTO+1];
+static struct ctl_table nf_log_sysctl_table[NFPROTO_NUMPROTO];
 static struct ctl_table_header *nf_log_sysctl_fhdr;
 
 static struct ctl_table nf_log_sysctl_ftable[] = {
@@ -399,8 +399,7 @@ static struct ctl_table nf_log_sysctl_ftable[] = {
 		.maxlen		= sizeof(sysctl_nf_log_all_netns),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{ }
+	}
 };
 
 static int nf_log_proc_dostring(struct ctl_table *table, int write,
diff --git a/net/netrom/sysctl_net_netrom.c b/net/netrom/sysctl_net_netrom.c
index c02b93fd9d4f..133dccdc2201 100644
--- a/net/netrom/sysctl_net_netrom.c
+++ b/net/netrom/sysctl_net_netrom.c
@@ -139,8 +139,7 @@ static struct ctl_table nr_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= &min_reset,
 		.extra2		= &max_reset
-	},
-	{ }
+	}
 };
 
 int __init nr_register_sysctl(void)
diff --git a/net/phonet/sysctl.c b/net/phonet/sysctl.c
index 0fd0fcb00505..5385e980693e 100644
--- a/net/phonet/sysctl.c
+++ b/net/phonet/sysctl.c
@@ -80,8 +80,7 @@ static struct ctl_table phonet_table[] = {
 		.maxlen		= sizeof(local_port_range),
 		.mode		= 0644,
 		.proc_handler	= proc_local_port_range,
-	},
-	{ }
+	}
 };
 
 int __init phonet_sysctl_init(void)
diff --git a/net/rds/ib_sysctl.c b/net/rds/ib_sysctl.c
index 102fd4a18df7..ee9ec39d9b30 100644
--- a/net/rds/ib_sysctl.c
+++ b/net/rds/ib_sysctl.c
@@ -102,8 +102,7 @@ static struct ctl_table rds_ib_sysctl_table[] = {
 		.maxlen		= sizeof(rds_ib_sysctl_flow_control),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{ }
+	}
 };
 
 void rds_ib_sysctl_exit(void)
diff --git a/net/rds/sysctl.c b/net/rds/sysctl.c
index 5abd2730a1bc..17b325585bd9 100644
--- a/net/rds/sysctl.c
+++ b/net/rds/sysctl.c
@@ -88,8 +88,7 @@ static struct ctl_table rds_sysctl_rds_table[] = {
 		.maxlen         = sizeof(int),
 		.mode           = 0644,
 		.proc_handler   = proc_dointvec,
-	},
-	{ }
+	}
 };
 
 void rds_sysctl_exit(void)
diff --git a/net/rds/tcp.c b/net/rds/tcp.c
index 2e90a2570d3b..e4abe20c4d2d 100644
--- a/net/rds/tcp.c
+++ b/net/rds/tcp.c
@@ -85,8 +85,7 @@ static struct ctl_table rds_tcp_sysctl_table[] = {
 		.mode           = 0644,
 		.proc_handler   = rds_tcp_skbuf_handler,
 		.extra1		= &rds_tcp_min_rcvbuf,
-	},
-	{ }
+	}
 };
 
 u32 rds_tcp_write_seq(struct rds_tcp_connection *tc)
diff --git a/net/rose/sysctl_net_rose.c b/net/rose/sysctl_net_rose.c
index 4f5a1e8b6c54..1a244a4d0221 100644
--- a/net/rose/sysctl_net_rose.c
+++ b/net/rose/sysctl_net_rose.c
@@ -111,8 +111,7 @@ static struct ctl_table rose_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= &min_window,
 		.extra2		= &max_window
-	},
-	{ }
+	}
 };
 
 void __init rose_register_sysctl(void)
diff --git a/net/rxrpc/sysctl.c b/net/rxrpc/sysctl.c
index 2b5824416036..583306fad3ef 100644
--- a/net/rxrpc/sysctl.c
+++ b/net/rxrpc/sysctl.c
@@ -124,8 +124,7 @@ static struct ctl_table rxrpc_sysctl_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= (void *)SYSCTL_ONE,
 		.extra2		= (void *)&four,
-	},
-	{ }
+	}
 };
 
 int __init rxrpc_sysctl_init(void)
diff --git a/net/sctp/sysctl.c b/net/sctp/sysctl.c
index 233f37f0fa28..93ea4decbb1b 100644
--- a/net/sctp/sysctl.c
+++ b/net/sctp/sysctl.c
@@ -79,9 +79,7 @@ static struct ctl_table sctp_table[] = {
 		.maxlen		= sizeof(sysctl_sctp_wmem),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-
-	{ /* sentinel */ }
+	}
 };
 
 /* The following index defines are used in sctp_sysctl_net_register().
@@ -383,9 +381,7 @@ static struct ctl_table sctp_net_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= SYSCTL_ZERO,
 		.extra2		= &pf_expose_max,
-	},
-
-	{ /* sentinel */ }
+	}
 };
 
 static int proc_sctp_do_hmac_alg(struct ctl_table *ctl, int write,
@@ -604,7 +600,7 @@ int sctp_sysctl_net_register(struct net *net)
 	if (!table)
 		return -ENOMEM;
 
-	for (i = 0; table[i].data; i++)
+	for (i = 0; i < ARRAY_SIZE(sctp_net_table); i++)
 		table[i].data += (char *)(&net->sctp) - (char *)&init_net.sctp;
 
 	table[SCTP_RTO_MIN_IDX].extra2 = &net->sctp.rto_max;
diff --git a/net/smc/smc_sysctl.c b/net/smc/smc_sysctl.c
index 9404123883c0..89af1f1dbb58 100644
--- a/net/smc/smc_sysctl.c
+++ b/net/smc/smc_sysctl.c
@@ -61,8 +61,7 @@ static struct ctl_table smc_table[] = {
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= &min_rcvbuf,
-	},
-	{  }
+	}
 };
 
 int __net_init smc_sysctl_net_init(struct net *net)
diff --git a/net/sunrpc/sysctl.c b/net/sunrpc/sysctl.c
index 61222addda7e..f4ac3376c25b 100644
--- a/net/sunrpc/sysctl.c
+++ b/net/sunrpc/sysctl.c
@@ -159,8 +159,7 @@ static struct ctl_table debug_table[] = {
 		.maxlen		= 256,
 		.mode		= 0444,
 		.proc_handler	= proc_do_xprt,
-	},
-	{ }
+	}
 };
 
 void
diff --git a/net/sunrpc/xprtrdma/svc_rdma.c b/net/sunrpc/xprtrdma/svc_rdma.c
index df7fb9c8b785..cbc75193bc70 100644
--- a/net/sunrpc/xprtrdma/svc_rdma.c
+++ b/net/sunrpc/xprtrdma/svc_rdma.c
@@ -208,8 +208,7 @@ static struct ctl_table svcrdma_parm_table[] = {
 		.proc_handler	= proc_dointvec_minmax,
 		.extra1		= &zero,
 		.extra2		= &zero,
-	},
-	{ },
+	}
 };
 
 static void svc_rdma_proc_cleanup(void)
diff --git a/net/sunrpc/xprtrdma/transport.c b/net/sunrpc/xprtrdma/transport.c
index bf43e05044a3..75c789712cd9 100644
--- a/net/sunrpc/xprtrdma/transport.c
+++ b/net/sunrpc/xprtrdma/transport.c
@@ -136,8 +136,7 @@ static struct ctl_table xr_tunables_table[] = {
 		.maxlen		= sizeof(unsigned int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec,
-	},
-	{ },
+	}
 };
 
 #endif
diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c
index 7c3d5ed708be..c0c59cd3b31c 100644
--- a/net/sunrpc/xprtsock.c
+++ b/net/sunrpc/xprtsock.c
@@ -154,8 +154,7 @@ static struct ctl_table xs_tunables_table[] = {
 		.maxlen		= sizeof(xs_tcp_fin_timeout),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec_jiffies,
-	},
-	{ },
+	}
 };
 
 /*
diff --git a/net/tipc/sysctl.c b/net/tipc/sysctl.c
index b9cbc3b359aa..e492d8c6c6f3 100644
--- a/net/tipc/sysctl.c
+++ b/net/tipc/sysctl.c
@@ -90,8 +90,7 @@ static struct ctl_table tipc_table[] = {
 		.maxlen		= sizeof(sysctl_tipc_bc_retruni),
 		.mode		= 0644,
 		.proc_handler	= proc_doulongvec_minmax,
-	},
-	{}
+	}
 };
 
 int tipc_register_sysctl(void)
diff --git a/net/unix/sysctl_net_unix.c b/net/unix/sysctl_net_unix.c
index 92f3bc3cd704..716dee11d9e3 100644
--- a/net/unix/sysctl_net_unix.c
+++ b/net/unix/sysctl_net_unix.c
@@ -18,8 +18,7 @@ static struct ctl_table unix_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec
-	},
-	{ }
+	}
 };
 
 int __net_init unix_sysctl_register(struct net *net)
diff --git a/net/x25/sysctl_net_x25.c b/net/x25/sysctl_net_x25.c
index 4d7c2ee41943..1e76f96ba77f 100644
--- a/net/x25/sysctl_net_x25.c
+++ b/net/x25/sysctl_net_x25.c
@@ -70,8 +70,7 @@ static struct ctl_table x25_table[] = {
 		.maxlen = 	sizeof(int),
 		.mode = 	0644,
 		.proc_handler = proc_dointvec,
-	},
-	{ },
+	}
 };
 
 int __init x25_register_sysctl(void)
diff --git a/net/xfrm/xfrm_sysctl.c b/net/xfrm/xfrm_sysctl.c
index d04b25a47575..e2b2c3437fbc 100644
--- a/net/xfrm/xfrm_sysctl.c
+++ b/net/xfrm/xfrm_sysctl.c
@@ -37,8 +37,7 @@ static struct ctl_table xfrm_table[] = {
 		.maxlen		= sizeof(int),
 		.mode		= 0644,
 		.proc_handler	= proc_dointvec
-	},
-	{}
+	}
 };
 
 int __net_init xfrm_sysctl_init(struct net *net)
diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c
index b77344506cf3..67aa6e236e66 100644
--- a/security/apparmor/lsm.c
+++ b/security/apparmor/lsm.c
@@ -1778,9 +1778,7 @@ static struct ctl_table apparmor_sysctl_table[] = {
 		.maxlen         = sizeof(int),
 		.mode           = 0600,
 		.proc_handler   = apparmor_dointvec,
-	},
-
-	{ }
+	}
 };
 
 static int __init apparmor_init_sysctl(void)
diff --git a/security/keys/sysctl.c b/security/keys/sysctl.c
index fa305f74f658..7c944ef5a58c 100644
--- a/security/keys/sysctl.c
+++ b/security/keys/sysctl.c
@@ -54,9 +54,9 @@ struct ctl_table key_sysctls[] = {
 		.proc_handler = proc_dointvec_minmax,
 		.extra1 = (void *) SYSCTL_ZERO,
 		.extra2 = (void *) SYSCTL_INT_MAX,
-	},
+	}
 #ifdef CONFIG_PERSISTENT_KEYRINGS
-	{
+	, {
 		.procname = "persistent_keyring_expiry",
 		.data = &persistent_keyring_expiry,
 		.maxlen = sizeof(unsigned),
@@ -64,9 +64,8 @@ struct ctl_table key_sysctls[] = {
 		.proc_handler = proc_dointvec_minmax,
 		.extra1 = (void *) SYSCTL_ZERO,
 		.extra2 = (void *) SYSCTL_INT_MAX,
-	},
+	}
 #endif
-	{ }
 };
 
 static int __init init_security_keys_sysctls(void)
diff --git a/security/loadpin/loadpin.c b/security/loadpin/loadpin.c
index 6f2cc827df41..28b411adbf0b 100644
--- a/security/loadpin/loadpin.c
+++ b/security/loadpin/loadpin.c
@@ -61,8 +61,7 @@ static struct ctl_table loadpin_sysctl_table[] = {
 		.proc_handler   = proc_dointvec_minmax,
 		.extra1         = SYSCTL_ONE,
 		.extra2         = SYSCTL_ONE,
-	},
-	{ }
+	}
 };
 
 static void set_sysctl(bool is_writable)
diff --git a/security/yama/yama_lsm.c b/security/yama/yama_lsm.c
index 7b8164a4b504..2d2700af9f6b 100644
--- a/security/yama/yama_lsm.c
+++ b/security/yama/yama_lsm.c
@@ -456,8 +456,7 @@ static struct ctl_table yama_sysctl_table[] = {
 		.proc_handler   = yama_dointvec_minmax,
 		.extra1         = SYSCTL_ZERO,
 		.extra2         = &max_scope,
-	},
-	{ }
+	}
 };
 static void __init yama_init_sysctl(void)
 {
-- 
2.30.2



^ permalink raw reply related	[relevance 2%]

* [PATCH 08/11] sysctl: Add size to register_sysctl_init
       [not found]     ` <CGME20230621091037eucas1p188e11d8064526a5a0549217d5a419647@eucas1p1.samsung.com>
@ 2023-06-21  9:09 10%   ` Joel Granados
  0 siblings, 0 replies; 200+ results
From: Joel Granados @ 2023-06-21  9:09 UTC (permalink / raw)
  To: mcgrof, Thomas Gleixner, Ingo Molnar, Borislav Petkov,
	Dave Hansen, x86, Theodore Ts'o, Jason A. Donenfeld,
	Greg Kroah-Hartman, Jiri Slaby, Juergen Gross,
	Stefano Stabellini, Benjamin LaHaise, Alexander Viro,
	Christian Brauner, Jeff Layton, Chuck Lever, Jan Kara, Kees Cook,
	Iurii Zaikin, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, Balbir Singh, Eric Biederman, Naveen N. Rao,
	Anil S Keshavamurthy, David S. Miller, Masami Hiramatsu,
	Peter Zijlstra, Will Deacon, Petr Mladek, Sergey Senozhatsky,
	Juri Lelli, Vincent Guittot, Steven Rostedt, Andrew Morton,
	Mike Kravetz, Muchun Song, Naoya Horiguchi,
	Matthew Wilcox (Oracle),
	David Howells, Jarkko Sakkinen, Paul Moore, James Morris,
	Serge E. Hallyn
  Cc: Joel Granados, H. Peter Anvin, Oleksandr Tyshchenko,
	Amir Goldstein, John Fastabend, Martin KaFai Lau, Song Liu,
	Yonghong Song, KP Singh, Stanislav Fomichev, Hao Luo, Jiri Olsa,
	Waiman Long, Boqun Feng, John Ogness, Dietmar Eggemann,
	Ben Segall, Mel Gorman, Daniel Bristot de Oliveira,
	Valentin Schneider, Andy Lutomirski, Will Drewry, Mark Rutland,
	Miaohe Lin, linux-kernel, xen-devel, linux-aio, linux-fsdevel,
	linux-mm, bpf, kexec, linux-trace-kernel, keyrings,
	linux-security-module

In order to remove the end element from the ctl_table struct arrays, we
explicitly define the size when registering the targes. We add a size
argument to the register_sysctl_init call and pass an ARRAY_SIZE for all
the callers.

Signed-off-by: Joel Granados <j.granados@samsung.com>
---
 arch/x86/kernel/cpu/intel.c      |  2 +-
 drivers/char/random.c            |  3 ++-
 drivers/tty/tty_io.c             |  2 +-
 drivers/xen/balloon.c            |  3 ++-
 fs/aio.c                         |  2 +-
 fs/coredump.c                    |  3 ++-
 fs/dcache.c                      |  3 ++-
 fs/exec.c                        |  3 ++-
 fs/file_table.c                  |  3 ++-
 fs/inode.c                       |  2 +-
 fs/locks.c                       |  2 +-
 fs/namei.c                       |  2 +-
 fs/namespace.c                   |  3 ++-
 fs/notify/dnotify/dnotify.c      |  3 ++-
 fs/pipe.c                        |  3 ++-
 fs/proc/proc_sysctl.c            | 11 ++---------
 fs/quota/dquot.c                 |  3 ++-
 fs/sysctls.c                     |  3 ++-
 fs/userfaultfd.c                 |  3 ++-
 include/linux/sysctl.h           |  8 +++++---
 init/do_mounts_initrd.c          |  3 ++-
 kernel/acct.c                    |  3 ++-
 kernel/bpf/syscall.c             |  3 ++-
 kernel/delayacct.c               |  3 ++-
 kernel/exit.c                    |  3 ++-
 kernel/hung_task.c               |  3 ++-
 kernel/kexec_core.c              |  3 ++-
 kernel/kprobes.c                 |  3 ++-
 kernel/latencytop.c              |  3 ++-
 kernel/locking/lockdep.c         |  3 ++-
 kernel/panic.c                   |  3 ++-
 kernel/pid_namespace.c           |  3 ++-
 kernel/printk/sysctl.c           |  3 ++-
 kernel/reboot.c                  |  3 ++-
 kernel/sched/autogroup.c         |  3 ++-
 kernel/sched/core.c              |  3 ++-
 kernel/sched/deadline.c          |  3 ++-
 kernel/sched/fair.c              |  3 ++-
 kernel/sched/rt.c                |  3 ++-
 kernel/sched/topology.c          |  3 ++-
 kernel/seccomp.c                 |  3 ++-
 kernel/signal.c                  |  3 ++-
 kernel/stackleak.c               |  3 ++-
 kernel/sysctl.c                  |  4 ++--
 kernel/trace/ftrace.c            |  3 ++-
 kernel/trace/trace_events_user.c |  3 ++-
 kernel/umh.c                     |  3 ++-
 kernel/watchdog.c                |  3 ++-
 mm/compaction.c                  |  2 +-
 mm/hugetlb.c                     |  2 +-
 mm/hugetlb_vmemmap.c             |  3 ++-
 mm/memory-failure.c              |  3 ++-
 mm/oom_kill.c                    |  3 ++-
 mm/page-writeback.c              |  3 ++-
 security/keys/sysctl.c           |  2 +-
 55 files changed, 104 insertions(+), 66 deletions(-)

diff --git a/arch/x86/kernel/cpu/intel.c b/arch/x86/kernel/cpu/intel.c
index 1c4639588ff9..c77a3961443d 100644
--- a/arch/x86/kernel/cpu/intel.c
+++ b/arch/x86/kernel/cpu/intel.c
@@ -1195,7 +1195,7 @@ static struct ctl_table sld_sysctls[] = {
 
 static int __init sld_mitigate_sysctl_init(void)
 {
-	register_sysctl_init("kernel", sld_sysctls);
+	register_sysctl_init("kernel", sld_sysctls, ARRAY_SIZE(sld_sysctls));
 	return 0;
 }
 
diff --git a/drivers/char/random.c b/drivers/char/random.c
index 253f2ddb8913..8db2ea9e3d66 100644
--- a/drivers/char/random.c
+++ b/drivers/char/random.c
@@ -1692,7 +1692,8 @@ static struct ctl_table random_table[] = {
  */
 static int __init random_sysctls_init(void)
 {
-	register_sysctl_init("kernel/random", random_table);
+	register_sysctl_init("kernel/random", random_table,
+			     ARRAY_SIZE(random_table));
 	return 0;
 }
 device_initcall(random_sysctls_init);
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
index c84be40fb8df..63fb3c543b94 100644
--- a/drivers/tty/tty_io.c
+++ b/drivers/tty/tty_io.c
@@ -3618,7 +3618,7 @@ static struct ctl_table tty_table[] = {
  */
 int __init tty_init(void)
 {
-	register_sysctl_init("dev/tty", tty_table);
+	register_sysctl_init("dev/tty", tty_table, ARRAY_SIZE(tty_table));
 	cdev_init(&tty_cdev, &tty_fops);
 	if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
 	    register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 586a1673459e..e4544262a429 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -729,7 +729,8 @@ static int __init balloon_init(void)
 #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
 	set_online_page_callback(&xen_online_page);
 	register_memory_notifier(&xen_memory_nb);
-	register_sysctl_init("xen/balloon", balloon_table);
+	register_sysctl_init("xen/balloon", balloon_table,
+			     ARRAY_SIZE(balloon_table));
 #endif
 
 	balloon_add_regions();
diff --git a/fs/aio.c b/fs/aio.c
index b0b17bd098bb..b09abe7a14d3 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -244,7 +244,7 @@ static struct ctl_table aio_sysctls[] = {
 
 static void __init aio_sysctl_init(void)
 {
-	register_sysctl_init("fs", aio_sysctls);
+	register_sysctl_init("fs", aio_sysctls, ARRAY_SIZE(aio_sysctls));
 }
 #else
 #define aio_sysctl_init() do { } while (0)
diff --git a/fs/coredump.c b/fs/coredump.c
index ece7badf701b..7e55428dce13 100644
--- a/fs/coredump.c
+++ b/fs/coredump.c
@@ -984,7 +984,8 @@ static struct ctl_table coredump_sysctls[] = {
 
 static int __init init_fs_coredump_sysctls(void)
 {
-	register_sysctl_init("kernel", coredump_sysctls);
+	register_sysctl_init("kernel", coredump_sysctls,
+			     ARRAY_SIZE(coredump_sysctls));
 	return 0;
 }
 fs_initcall(init_fs_coredump_sysctls);
diff --git a/fs/dcache.c b/fs/dcache.c
index 52e6d5fdab6b..f02bfd383e66 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -196,7 +196,8 @@ static struct ctl_table fs_dcache_sysctls[] = {
 
 static int __init init_fs_dcache_sysctls(void)
 {
-	register_sysctl_init("fs", fs_dcache_sysctls);
+	register_sysctl_init("fs", fs_dcache_sysctls,
+			     ARRAY_SIZE(fs_dcache_sysctls));
 	return 0;
 }
 fs_initcall(init_fs_dcache_sysctls);
diff --git a/fs/exec.c b/fs/exec.c
index a466e797c8e2..5572d148738b 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -2170,7 +2170,8 @@ static struct ctl_table fs_exec_sysctls[] = {
 
 static int __init init_fs_exec_sysctls(void)
 {
-	register_sysctl_init("fs", fs_exec_sysctls);
+	register_sysctl_init("fs", fs_exec_sysctls,
+			     ARRAY_SIZE(fs_exec_sysctls));
 	return 0;
 }
 
diff --git a/fs/file_table.c b/fs/file_table.c
index 372653b92617..23a645521960 100644
--- a/fs/file_table.c
+++ b/fs/file_table.c
@@ -120,7 +120,8 @@ static struct ctl_table fs_stat_sysctls[] = {
 
 static int __init init_fs_stat_sysctls(void)
 {
-	register_sysctl_init("fs", fs_stat_sysctls);
+	register_sysctl_init("fs", fs_stat_sysctls,
+			     ARRAY_SIZE(fs_stat_sysctls));
 	if (IS_ENABLED(CONFIG_BINFMT_MISC)) {
 		struct ctl_table_header *hdr;
 		hdr = register_sysctl_mount_point("fs/binfmt_misc");
diff --git a/fs/inode.c b/fs/inode.c
index 577799b7855f..0a0ad1a2a5d2 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -135,7 +135,7 @@ static struct ctl_table inodes_sysctls[] = {
 
 static int __init init_fs_inode_sysctls(void)
 {
-	register_sysctl_init("fs", inodes_sysctls);
+	register_sysctl_init("fs", inodes_sysctls, ARRAY_SIZE(inodes_sysctls));
 	return 0;
 }
 early_initcall(init_fs_inode_sysctls);
diff --git a/fs/locks.c b/fs/locks.c
index df8b26a42524..ce5733480aa6 100644
--- a/fs/locks.c
+++ b/fs/locks.c
@@ -116,7 +116,7 @@ static struct ctl_table locks_sysctls[] = {
 
 static int __init init_fs_locks_sysctls(void)
 {
-	register_sysctl_init("fs", locks_sysctls);
+	register_sysctl_init("fs", locks_sysctls, ARRAY_SIZE(locks_sysctls));
 	return 0;
 }
 early_initcall(init_fs_locks_sysctls);
diff --git a/fs/namei.c b/fs/namei.c
index e4fe0879ae55..9b567af081af 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -1073,7 +1073,7 @@ static struct ctl_table namei_sysctls[] = {
 
 static int __init init_fs_namei_sysctls(void)
 {
-	register_sysctl_init("fs", namei_sysctls);
+	register_sysctl_init("fs", namei_sysctls, ARRAY_SIZE(namei_sysctls));
 	return 0;
 }
 fs_initcall(init_fs_namei_sysctls);
diff --git a/fs/namespace.c b/fs/namespace.c
index 54847db5b819..e7f251e40485 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -4715,7 +4715,8 @@ static struct ctl_table fs_namespace_sysctls[] = {
 
 static int __init init_fs_namespace_sysctls(void)
 {
-	register_sysctl_init("fs", fs_namespace_sysctls);
+	register_sysctl_init("fs", fs_namespace_sysctls,
+			     ARRAY_SIZE(fs_namespace_sysctls));
 	return 0;
 }
 fs_initcall(init_fs_namespace_sysctls);
diff --git a/fs/notify/dnotify/dnotify.c b/fs/notify/dnotify/dnotify.c
index 190aa717fa32..2c6fe98d6fe1 100644
--- a/fs/notify/dnotify/dnotify.c
+++ b/fs/notify/dnotify/dnotify.c
@@ -33,7 +33,8 @@ static struct ctl_table dnotify_sysctls[] = {
 };
 static void __init dnotify_sysctl_init(void)
 {
-	register_sysctl_init("fs", dnotify_sysctls);
+	register_sysctl_init("fs", dnotify_sysctls,
+			     ARRAY_SIZE(dnotify_sysctls));
 }
 #else
 #define dnotify_sysctl_init() do { } while (0)
diff --git a/fs/pipe.c b/fs/pipe.c
index 2d88f73f585a..8a808fc25552 100644
--- a/fs/pipe.c
+++ b/fs/pipe.c
@@ -1508,7 +1508,8 @@ static int __init init_pipe_fs(void)
 		}
 	}
 #ifdef CONFIG_SYSCTL
-	register_sysctl_init("fs", fs_pipe_sysctls);
+	register_sysctl_init("fs", fs_pipe_sysctls,
+			     ARRAY_SIZE(fs_pipe_sysctls));
 #endif
 	return err;
 }
diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
index 66c9d7a07d2e..9670c5b7b5b2 100644
--- a/fs/proc/proc_sysctl.c
+++ b/fs/proc/proc_sysctl.c
@@ -1443,16 +1443,9 @@ EXPORT_SYMBOL(register_sysctl);
  * Context: if your base directory does not exist it will be created for you.
  */
 void __init __register_sysctl_init(const char *path, struct ctl_table *table,
-				 const char *table_name)
+				 const char *table_name, size_t table_size)
 {
-	int count = 0;
-	struct ctl_table *entry;
-	struct ctl_table_header t_hdr, *hdr;
-
-	t_hdr.ctl_table = table;
-	list_for_each_table_entry(entry, (&t_hdr))
-		count++;
-	hdr = register_sysctl(path, table, count);
+	struct ctl_table_header *hdr = register_sysctl(path, table, table_size);
 
 	if (unlikely(!hdr)) {
 		pr_err("failed when register_sysctl %s to %s\n", table_name, path);
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c
index ffd40dc3e4e9..7c07654e4253 100644
--- a/fs/quota/dquot.c
+++ b/fs/quota/dquot.c
@@ -2953,7 +2953,8 @@ static int __init dquot_init(void)
 
 	printk(KERN_NOTICE "VFS: Disk quotas %s\n", __DQUOT_VERSION__);
 
-	register_sysctl_init("fs/quota", fs_dqstats_table);
+	register_sysctl_init("fs/quota", fs_dqstats_table,
+			     ARRAY_SIZE(fs_dqstats_table));
 
 	dquot_cachep = kmem_cache_create("dquot",
 			sizeof(struct dquot), sizeof(unsigned long) * 4,
diff --git a/fs/sysctls.c b/fs/sysctls.c
index 76a0aee8c229..944254dd92c0 100644
--- a/fs/sysctls.c
+++ b/fs/sysctls.c
@@ -31,7 +31,8 @@ static struct ctl_table fs_shared_sysctls[] = {
 
 static int __init init_fs_sysctls(void)
 {
-	register_sysctl_init("fs", fs_shared_sysctls);
+	register_sysctl_init("fs", fs_shared_sysctls,
+			     ARRAY_SIZE(fs_shared_sysctls));
 	return 0;
 }
 
diff --git a/fs/userfaultfd.c b/fs/userfaultfd.c
index 0fd96d6e39ce..4c3858769226 100644
--- a/fs/userfaultfd.c
+++ b/fs/userfaultfd.c
@@ -2219,7 +2219,8 @@ static int __init userfaultfd_init(void)
 						SLAB_HWCACHE_ALIGN|SLAB_PANIC,
 						init_once_userfaultfd_ctx);
 #ifdef CONFIG_SYSCTL
-	register_sysctl_init("vm", vm_userfaultfd_table);
+	register_sysctl_init("vm", vm_userfaultfd_table,
+			     ARRAY_SIZE(vm_userfaultfd_table));
 #endif
 	return 0;
 }
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h
index 71d7935e50f0..3074a506592d 100644
--- a/include/linux/sysctl.h
+++ b/include/linux/sysctl.h
@@ -233,8 +233,9 @@ void unregister_sysctl_table(struct ctl_table_header * table);
 
 extern int sysctl_init_bases(void);
 extern void __register_sysctl_init(const char *path, struct ctl_table *table,
-				 const char *table_name);
-#define register_sysctl_init(path, table) __register_sysctl_init(path, table, #table)
+				 const char *table_name, size_t table_size);
+#define register_sysctl_init(path, table, size)	\
+	__register_sysctl_init(path, table, #table, size)
 extern struct ctl_table_header *register_sysctl_mount_point(const char *path);
 
 void do_sysctl_args(void);
@@ -254,7 +255,8 @@ extern int no_unaligned_warning;
 
 #else /* CONFIG_SYSCTL */
 
-static inline void register_sysctl_init(const char *path, struct ctl_table *table)
+static inline void register_sysctl_init(const char *path, struct ctl_table *table,
+					size_t table_size)
 {
 }
 
diff --git a/init/do_mounts_initrd.c b/init/do_mounts_initrd.c
index 34731241377d..2b10abb8c80e 100644
--- a/init/do_mounts_initrd.c
+++ b/init/do_mounts_initrd.c
@@ -34,7 +34,8 @@ static struct ctl_table kern_do_mounts_initrd_table[] = {
 
 static __init int kernel_do_mounts_initrd_sysctls_init(void)
 {
-	register_sysctl_init("kernel", kern_do_mounts_initrd_table);
+	register_sysctl_init("kernel", kern_do_mounts_initrd_table,
+			     ARRAY_SIZE(kern_do_mounts_initrd_table));
 	return 0;
 }
 late_initcall(kernel_do_mounts_initrd_sysctls_init);
diff --git a/kernel/acct.c b/kernel/acct.c
index 010667ce6080..67125b7c5ca2 100644
--- a/kernel/acct.c
+++ b/kernel/acct.c
@@ -89,7 +89,8 @@ static struct ctl_table kern_acct_table[] = {
 
 static __init int kernel_acct_sysctls_init(void)
 {
-	register_sysctl_init("kernel", kern_acct_table);
+	register_sysctl_init("kernel", kern_acct_table,
+			     ARRAY_SIZE(kern_acct_table));
 	return 0;
 }
 late_initcall(kernel_acct_sysctls_init);
diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c
index 14f39c1e573e..a81b5122b16b 100644
--- a/kernel/bpf/syscall.c
+++ b/kernel/bpf/syscall.c
@@ -5406,7 +5406,8 @@ static struct ctl_table bpf_syscall_table[] = {
 
 static int __init bpf_syscall_sysctl_init(void)
 {
-	register_sysctl_init("kernel", bpf_syscall_table);
+	register_sysctl_init("kernel", bpf_syscall_table,
+			     ARRAY_SIZE(bpf_syscall_table));
 	return 0;
 }
 late_initcall(bpf_syscall_sysctl_init);
diff --git a/kernel/delayacct.c b/kernel/delayacct.c
index 6f0c358e73d8..4ef14cb5b5a0 100644
--- a/kernel/delayacct.c
+++ b/kernel/delayacct.c
@@ -79,7 +79,8 @@ static struct ctl_table kern_delayacct_table[] = {
 
 static __init int kernel_delayacct_sysctls_init(void)
 {
-	register_sysctl_init("kernel", kern_delayacct_table);
+	register_sysctl_init("kernel", kern_delayacct_table,
+			     ARRAY_SIZE(kern_delayacct_table));
 	return 0;
 }
 late_initcall(kernel_delayacct_sysctls_init);
diff --git a/kernel/exit.c b/kernel/exit.c
index 34b90e2e7cf7..633c7a52ef80 100644
--- a/kernel/exit.c
+++ b/kernel/exit.c
@@ -95,7 +95,8 @@ static struct ctl_table kern_exit_table[] = {
 
 static __init int kernel_exit_sysctls_init(void)
 {
-	register_sysctl_init("kernel", kern_exit_table);
+	register_sysctl_init("kernel", kern_exit_table,
+			     ARRAY_SIZE(kern_exit_table));
 	return 0;
 }
 late_initcall(kernel_exit_sysctls_init);
diff --git a/kernel/hung_task.c b/kernel/hung_task.c
index 9a24574988d2..816f133266c4 100644
--- a/kernel/hung_task.c
+++ b/kernel/hung_task.c
@@ -318,7 +318,8 @@ static struct ctl_table hung_task_sysctls[] = {
 
 static void __init hung_task_sysctl_init(void)
 {
-	register_sysctl_init("kernel", hung_task_sysctls);
+	register_sysctl_init("kernel", hung_task_sysctls,
+			     ARRAY_SIZE(hung_task_sysctls));
 }
 #else
 #define hung_task_sysctl_init() do { } while (0)
diff --git a/kernel/kexec_core.c b/kernel/kexec_core.c
index 3d578c6fefee..63b04e710890 100644
--- a/kernel/kexec_core.c
+++ b/kernel/kexec_core.c
@@ -1007,7 +1007,8 @@ static struct ctl_table kexec_core_sysctls[] = {
 
 static int __init kexec_core_sysctl_init(void)
 {
-	register_sysctl_init("kernel", kexec_core_sysctls);
+	register_sysctl_init("kernel", kexec_core_sysctls,
+			     ARRAY_SIZE(kexec_core_sysctls));
 	return 0;
 }
 late_initcall(kexec_core_sysctl_init);
diff --git a/kernel/kprobes.c b/kernel/kprobes.c
index 00e177de91cc..06a3ac7993f0 100644
--- a/kernel/kprobes.c
+++ b/kernel/kprobes.c
@@ -973,7 +973,8 @@ static struct ctl_table kprobe_sysctls[] = {
 
 static void __init kprobe_sysctls_init(void)
 {
-	register_sysctl_init("debug", kprobe_sysctls);
+	register_sysctl_init("debug", kprobe_sysctls,
+			     ARRAY_SIZE(kprobe_sysctls));
 }
 #endif /* CONFIG_SYSCTL */
 
diff --git a/kernel/latencytop.c b/kernel/latencytop.c
index 781249098cb6..55050ae0e197 100644
--- a/kernel/latencytop.c
+++ b/kernel/latencytop.c
@@ -293,7 +293,8 @@ static int __init init_lstats_procfs(void)
 {
 	proc_create("latency_stats", 0644, NULL, &lstats_proc_ops);
 #ifdef CONFIG_SYSCTL
-	register_sysctl_init("kernel", latencytop_sysctl);
+	register_sysctl_init("kernel", latencytop_sysctl,
+			     ARRAY_SIZE(latencytop_sysctl));
 #endif
 	return 0;
 }
diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c
index dcd1d5bfc1e0..1e29cec7e00c 100644
--- a/kernel/locking/lockdep.c
+++ b/kernel/locking/lockdep.c
@@ -102,7 +102,8 @@ static struct ctl_table kern_lockdep_table[] = {
 
 static __init int kernel_lockdep_sysctls_init(void)
 {
-	register_sysctl_init("kernel", kern_lockdep_table);
+	register_sysctl_init("kernel", kern_lockdep_table,
+			     ARRAY_SIZE(kern_lockdep_table));
 	return 0;
 }
 late_initcall(kernel_lockdep_sysctls_init);
diff --git a/kernel/panic.c b/kernel/panic.c
index 886d2ebd0a0d..0008273d23fd 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -104,7 +104,8 @@ static struct ctl_table kern_panic_table[] = {
 
 static __init int kernel_panic_sysctls_init(void)
 {
-	register_sysctl_init("kernel", kern_panic_table);
+	register_sysctl_init("kernel", kern_panic_table,
+			     ARRAY_SIZE(kern_panic_table));
 	return 0;
 }
 late_initcall(kernel_panic_sysctls_init);
diff --git a/kernel/pid_namespace.c b/kernel/pid_namespace.c
index b43eee07b00c..7fd5e8adc2e8 100644
--- a/kernel/pid_namespace.c
+++ b/kernel/pid_namespace.c
@@ -472,7 +472,8 @@ static __init int pid_namespaces_init(void)
 	pid_ns_cachep = KMEM_CACHE(pid_namespace, SLAB_PANIC | SLAB_ACCOUNT);
 
 #ifdef CONFIG_CHECKPOINT_RESTORE
-	register_sysctl_init("kernel", pid_ns_ctl_table);
+	register_sysctl_init("kernel", pid_ns_ctl_table,
+			     ARRAY_SIZE(pid_ns_ctl_table));
 #endif
 
 	register_pid_ns_sysctl_table_vm();
diff --git a/kernel/printk/sysctl.c b/kernel/printk/sysctl.c
index c228343eeb97..28f37b86414e 100644
--- a/kernel/printk/sysctl.c
+++ b/kernel/printk/sysctl.c
@@ -81,5 +81,6 @@ static struct ctl_table printk_sysctls[] = {
 
 void __init printk_sysctl_init(void)
 {
-	register_sysctl_init("kernel", printk_sysctls);
+	register_sysctl_init("kernel", printk_sysctls,
+			     ARRAY_SIZE(printk_sysctls));
 }
diff --git a/kernel/reboot.c b/kernel/reboot.c
index 3bba88c7ffc6..cf81d8bfb523 100644
--- a/kernel/reboot.c
+++ b/kernel/reboot.c
@@ -1277,7 +1277,8 @@ static struct ctl_table kern_reboot_table[] = {
 
 static void __init kernel_reboot_sysctls_init(void)
 {
-	register_sysctl_init("kernel", kern_reboot_table);
+	register_sysctl_init("kernel", kern_reboot_table,
+			     ARRAY_SIZE(kern_reboot_table));
 }
 #else
 #define kernel_reboot_sysctls_init() do { } while (0)
diff --git a/kernel/sched/autogroup.c b/kernel/sched/autogroup.c
index 991fc9002535..2b9ce82279a5 100644
--- a/kernel/sched/autogroup.c
+++ b/kernel/sched/autogroup.c
@@ -24,7 +24,8 @@ static struct ctl_table sched_autogroup_sysctls[] = {
 
 static void __init sched_autogroup_sysctl_init(void)
 {
-	register_sysctl_init("kernel", sched_autogroup_sysctls);
+	register_sysctl_init("kernel", sched_autogroup_sysctls,
+			     ARRAY_SIZE(sched_autogroup_sysctls));
 }
 #else
 #define sched_autogroup_sysctl_init() do { } while (0)
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index a68d1276bab0..b8c7e01dd78a 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -4677,7 +4677,8 @@ static struct ctl_table sched_core_sysctls[] = {
 };
 static int __init sched_core_sysctl_init(void)
 {
-	register_sysctl_init("kernel", sched_core_sysctls);
+	register_sysctl_init("kernel", sched_core_sysctls,
+			     ARRAY_SIZE(sched_core_sysctls));
 	return 0;
 }
 late_initcall(sched_core_sysctl_init);
diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c
index 5a9a4b81c972..2aacf5ea2ff3 100644
--- a/kernel/sched/deadline.c
+++ b/kernel/sched/deadline.c
@@ -46,7 +46,8 @@ static struct ctl_table sched_dl_sysctls[] = {
 
 static int __init sched_dl_sysctl_init(void)
 {
-	register_sysctl_init("kernel", sched_dl_sysctls);
+	register_sysctl_init("kernel", sched_dl_sysctls,
+			     ARRAY_SIZE(sched_dl_sysctls));
 	return 0;
 }
 late_initcall(sched_dl_sysctl_init);
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 373ff5f55884..db09e56c2dd3 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -217,7 +217,8 @@ static struct ctl_table sched_fair_sysctls[] = {
 
 static int __init sched_fair_sysctl_init(void)
 {
-	register_sysctl_init("kernel", sched_fair_sysctls);
+	register_sysctl_init("kernel", sched_fair_sysctls,
+			     ARRAY_SIZE(sched_fair_sysctls));
 	return 0;
 }
 late_initcall(sched_fair_sysctl_init);
diff --git a/kernel/sched/rt.c b/kernel/sched/rt.c
index 00e0e5074115..aab9b900ed6f 100644
--- a/kernel/sched/rt.c
+++ b/kernel/sched/rt.c
@@ -57,7 +57,8 @@ static struct ctl_table sched_rt_sysctls[] = {
 
 static int __init sched_rt_sysctl_init(void)
 {
-	register_sysctl_init("kernel", sched_rt_sysctls);
+	register_sysctl_init("kernel", sched_rt_sysctls,
+			     ARRAY_SIZE(sched_rt_sysctls));
 	return 0;
 }
 late_initcall(sched_rt_sysctl_init);
diff --git a/kernel/sched/topology.c b/kernel/sched/topology.c
index 6682535e37c8..46d7c3f3e830 100644
--- a/kernel/sched/topology.c
+++ b/kernel/sched/topology.c
@@ -255,7 +255,8 @@ static struct ctl_table sched_energy_aware_sysctls[] = {
 
 static int __init sched_energy_aware_sysctl_init(void)
 {
-	register_sysctl_init("kernel", sched_energy_aware_sysctls);
+	register_sysctl_init("kernel", sched_energy_aware_sysctls,
+			     ARRAY_SIZE(sched_energy_aware_sysctls));
 	return 0;
 }
 
diff --git a/kernel/seccomp.c b/kernel/seccomp.c
index d3e584065c7f..9683a9a4709d 100644
--- a/kernel/seccomp.c
+++ b/kernel/seccomp.c
@@ -2386,7 +2386,8 @@ static struct ctl_table seccomp_sysctl_table[] = {
 
 static int __init seccomp_sysctl_init(void)
 {
-	register_sysctl_init("kernel/seccomp", seccomp_sysctl_table);
+	register_sysctl_init("kernel/seccomp", seccomp_sysctl_table,
+			     ARRAY_SIZE(seccomp_sysctl_table));
 	return 0;
 }
 
diff --git a/kernel/signal.c b/kernel/signal.c
index 5ba4150c01a7..19791930f12a 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -4788,7 +4788,8 @@ static struct ctl_table signal_debug_table[] = {
 
 static int __init init_signal_sysctls(void)
 {
-	register_sysctl_init("debug", signal_debug_table);
+	register_sysctl_init("debug", signal_debug_table,
+			     ARRAY_SIZE(signal_debug_table));
 	return 0;
 }
 early_initcall(init_signal_sysctls);
diff --git a/kernel/stackleak.c b/kernel/stackleak.c
index 34c9d81eea94..123844341148 100644
--- a/kernel/stackleak.c
+++ b/kernel/stackleak.c
@@ -59,7 +59,8 @@ static struct ctl_table stackleak_sysctls[] = {
 
 static int __init stackleak_sysctls_init(void)
 {
-	register_sysctl_init("kernel", stackleak_sysctls);
+	register_sysctl_init("kernel", stackleak_sysctls,
+			     ARRAY_SIZE(stackleak_sysctls));
 	return 0;
 }
 late_initcall(stackleak_sysctls_init);
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 48046932d573..2b9b0c8569ba 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -2321,8 +2321,8 @@ static struct ctl_table vm_table[] = {
 
 int __init sysctl_init_bases(void)
 {
-	register_sysctl_init("kernel", kern_table);
-	register_sysctl_init("vm", vm_table);
+	register_sysctl_init("kernel", kern_table, ARRAY_SIZE(kern_table));
+	register_sysctl_init("vm", vm_table, ARRAY_SIZE(vm_table));
 
 	return 0;
 }
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index 764668467155..84ef42111f78 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -8219,7 +8219,8 @@ static struct ctl_table ftrace_sysctls[] = {
 
 static int __init ftrace_sysctl_init(void)
 {
-	register_sysctl_init("kernel", ftrace_sysctls);
+	register_sysctl_init("kernel", ftrace_sysctls,
+			     ARRAY_SIZE(ftrace_sysctls));
 	return 0;
 }
 late_initcall(ftrace_sysctl_init);
diff --git a/kernel/trace/trace_events_user.c b/kernel/trace/trace_events_user.c
index b1ecd7677642..ac019cb21b18 100644
--- a/kernel/trace/trace_events_user.c
+++ b/kernel/trace/trace_events_user.c
@@ -2563,7 +2563,8 @@ static int __init trace_events_user_init(void)
 	if (dyn_event_register(&user_event_dops))
 		pr_warn("user_events could not register with dyn_events\n");
 
-	register_sysctl_init("kernel", user_event_sysctls);
+	register_sysctl_init("kernel", user_event_sysctls,
+			     ARRAY_SIZE(user_event_sysctls));
 
 	return 0;
 }
diff --git a/kernel/umh.c b/kernel/umh.c
index 41088c5c39fd..187a30ff8541 100644
--- a/kernel/umh.c
+++ b/kernel/umh.c
@@ -565,7 +565,8 @@ static struct ctl_table usermodehelper_table[] = {
 
 static int __init init_umh_sysctls(void)
 {
-	register_sysctl_init("kernel/usermodehelper", usermodehelper_table);
+	register_sysctl_init("kernel/usermodehelper", usermodehelper_table,
+			     ARRAY_SIZE(usermodehelper_table));
 	return 0;
 }
 early_initcall(init_umh_sysctls);
diff --git a/kernel/watchdog.c b/kernel/watchdog.c
index 8e61f21e7e33..dd5a343fadde 100644
--- a/kernel/watchdog.c
+++ b/kernel/watchdog.c
@@ -847,7 +847,8 @@ static struct ctl_table watchdog_sysctls[] = {
 
 static void __init watchdog_sysctl_init(void)
 {
-	register_sysctl_init("kernel", watchdog_sysctls);
+	register_sysctl_init("kernel", watchdog_sysctls,
+			     ARRAY_SIZE(watchdog_sysctls));
 }
 #else
 #define watchdog_sysctl_init() do { } while (0)
diff --git a/mm/compaction.c b/mm/compaction.c
index c8bcdea15f5f..ca09cdd72bf3 100644
--- a/mm/compaction.c
+++ b/mm/compaction.c
@@ -3145,7 +3145,7 @@ static int __init kcompactd_init(void)
 
 	for_each_node_state(nid, N_MEMORY)
 		kcompactd_run(nid);
-	register_sysctl_init("vm", vm_compaction);
+	register_sysctl_init("vm", vm_compaction, ARRAY_SIZE(vm_compaction));
 	return 0;
 }
 subsys_initcall(kcompactd_init)
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index f154019e6b84..7838b0c0b82b 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -4681,7 +4681,7 @@ static struct ctl_table hugetlb_table[] = {
 
 static void hugetlb_sysctl_init(void)
 {
-	register_sysctl_init("vm", hugetlb_table);
+	register_sysctl_init("vm", hugetlb_table, ARRAY_SIZE(hugetlb_table));
 }
 #endif /* CONFIG_SYSCTL */
 
diff --git a/mm/hugetlb_vmemmap.c b/mm/hugetlb_vmemmap.c
index 27f001e0f0a2..65885a06269b 100644
--- a/mm/hugetlb_vmemmap.c
+++ b/mm/hugetlb_vmemmap.c
@@ -597,7 +597,8 @@ static int __init hugetlb_vmemmap_init(void)
 
 	for_each_hstate(h) {
 		if (hugetlb_vmemmap_optimizable(h)) {
-			register_sysctl_init("vm", hugetlb_vmemmap_sysctls);
+			register_sysctl_init("vm", hugetlb_vmemmap_sysctls,
+					     ARRAY_SIZE(hugetlb_vmemmap_sysctls));
 			break;
 		}
 	}
diff --git a/mm/memory-failure.c b/mm/memory-failure.c
index 5b663eca1f29..46aef76d8e91 100644
--- a/mm/memory-failure.c
+++ b/mm/memory-failure.c
@@ -148,7 +148,8 @@ static struct ctl_table memory_failure_table[] = {
 
 static int __init memory_failure_sysctl_init(void)
 {
-	register_sysctl_init("vm", memory_failure_table);
+	register_sysctl_init("vm", memory_failure_table,
+			     ARRAY_SIZE(memory_failure_table));
 	return 0;
 }
 late_initcall(memory_failure_sysctl_init);
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
index 044e1eed720e..500cf2ef9faa 100644
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -734,7 +734,8 @@ static int __init oom_init(void)
 {
 	oom_reaper_th = kthread_run(oom_reaper, NULL, "oom_reaper");
 #ifdef CONFIG_SYSCTL
-	register_sysctl_init("vm", vm_oom_kill_table);
+	register_sysctl_init("vm", vm_oom_kill_table,
+			     ARRAY_SIZE(vm_oom_kill_table));
 #endif
 	return 0;
 }
diff --git a/mm/page-writeback.c b/mm/page-writeback.c
index db7943999007..9f997de8d12f 100644
--- a/mm/page-writeback.c
+++ b/mm/page-writeback.c
@@ -2320,7 +2320,8 @@ void __init page_writeback_init(void)
 	cpuhp_setup_state(CPUHP_MM_WRITEBACK_DEAD, "mm/writeback:dead", NULL,
 			  page_writeback_cpu_online);
 #ifdef CONFIG_SYSCTL
-	register_sysctl_init("vm", vm_page_writeback_sysctls);
+	register_sysctl_init("vm", vm_page_writeback_sysctls,
+			     ARRAY_SIZE(vm_page_writeback_sysctls));
 #endif
 }
 
diff --git a/security/keys/sysctl.c b/security/keys/sysctl.c
index b72b82bb20c6..fa305f74f658 100644
--- a/security/keys/sysctl.c
+++ b/security/keys/sysctl.c
@@ -71,7 +71,7 @@ struct ctl_table key_sysctls[] = {
 
 static int __init init_security_keys_sysctls(void)
 {
-	register_sysctl_init("kernel/keys", key_sysctls);
+	register_sysctl_init("kernel/keys", key_sysctls, ARRAY_SIZE(key_sysctls));
 	return 0;
 }
 early_initcall(init_security_keys_sysctls);
-- 
2.30.2



^ permalink raw reply related	[relevance 10%]

* HVM performance once again
@ 2023-05-31  7:49  3% Marek Marczykowski-Górecki
  0 siblings, 0 replies; 200+ results
From: Marek Marczykowski-Górecki @ 2023-05-31  7:49 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 946 bytes --]

Hi,

I returned to HVM performance once again, this time looking at PCI
passthrough impact evaluating network throughput.
The setup:
 - Xen 4.17
 - Linux 6.3.2 in all domU
 - iperf -c running in a PVH (call it "client")
 - iperf -s running in a HVM (call it "server")
 - client's netfront has a backend directly in server
 - frontend's "trusted" is set to 0
 - HVM have qemu in a stubdomain in all the cases
 - no intentional differences about HVM besides presence of a PCI device
   (it is a network card, but it was not involved in the traffic)

And now the results:
 - server is plain HVM: ~6Gbps
 - server is HVM and has some PCI passthrough: ~3Gbps

Any idea why such huge difference?

One difference I see when comparing the logs, is 64MB swiotlb initalized
in no-PCI case, but I'm not sure if that's really relevant...

Both dmesg attached.

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #1.2: hvm-pci.log --]
[-- Type: text/plain, Size: 67005 bytes --]

[    0.000000] Linux version 6.3.2-1.qubes.fc37.x86_64 (mockbuild@0c424897d4764da983d21c08af6d60ea) (gcc (GCC) 12.2.1 20221121 (Red Hat 12.2.1-4), GNU ld version 2.38-27.fc37) #1 SMP PREEMPT_DYNAMIC Thu May 11 22:08:07 GMT 2023
[    0.000000] Command line: root=/dev/mapper/dmroot ro nomodeset console=hvc0 rd_NO_PLYMOUTH rd.plymouth.enable=0 plymouth.enable=0 clocksource=tsc xen_scrub_pages=0  selinux=1 security=selinux
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 3632
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003effefff] usable
[    0.000000] BIOS-e820: [mem 0x000000003efff000-0x000000003effffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fc000000-0x00000000fc00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000fc00b000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Xen HVM domU, BIOS 4.17.0 04/25/2023
[    0.000000] Hypervisor detected: Xen HVM
[    0.000000] Xen version 4.17.
[    0.000000] platform_pci_unplug: Netfront and the Xen platform PCI driver have been compiled for this kernel: unplug emulated NICs.
[    0.000000] platform_pci_unplug: Blkfront and the Xen platform PCI driver have been compiled for this kernel: unplug emulated disks.
               You might have to change the root device
               from /dev/hd[a-d] to /dev/xvd[a-d]
               in your root= kernel command line option
[    0.000022] HVMOP_pagetable_dying not supported
[    0.018916] tsc: Fast TSC calibration using PIT
[    0.018919] tsc: Detected 2803.078 MHz processor
[    0.018920] tsc: Detected 2803.186 MHz TSC
[    0.019389] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.019392] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.019396] last_pfn = 0x3efff max_arch_pfn = 0x400000000
[    0.019435] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.027602] found SMP MP-table at [mem 0x000f5a80-0x000f5a8f]
[    0.027631] Using GB pages for direct mapping
[    0.027759] RAMDISK: [mem 0x3e8d5000-0x3efeffff]
[    0.027769] ACPI: Early table checksum verification disabled
[    0.027777] ACPI: RSDP 0x00000000000F59D0 000024 (v02 Xen   )
[    0.027786] ACPI: XSDT 0x00000000FC00A650 000054 (v01 Xen    HVM      00000000 HVML 00000000)
[    0.027790] ACPI: FACP 0x00000000FC00A370 0000F4 (v04 Xen    HVM      00000000 HVML 00000000)
[    0.027795] ACPI: DSDT 0x00000000FC001040 0092A3 (v02 Xen    HVM      00000000 INTL 20220331)
[    0.027798] ACPI: FACS 0x00000000FC001000 000040
[    0.027800] ACPI: FACS 0x00000000FC001000 000040
[    0.027802] ACPI: APIC 0x00000000FC00A470 000070 (v02 Xen    HVM      00000000 HVML 00000000)
[    0.027804] ACPI: HPET 0x00000000FC00A560 000038 (v01 Xen    HVM      00000000 HVML 00000000)
[    0.027807] ACPI: WAET 0x00000000FC00A5A0 000028 (v01 Xen    HVM      00000000 HVML 00000000)
[    0.027809] ACPI: SSDT 0x00000000FC00A5D0 000031 (v02 Xen    HVM      00000000 INTL 20220331)
[    0.027811] ACPI: SSDT 0x00000000FC00A610 000031 (v02 Xen    HVM      00000000 INTL 20220331)
[    0.027813] ACPI: Reserving FACP table memory at [mem 0xfc00a370-0xfc00a463]
[    0.027814] ACPI: Reserving DSDT table memory at [mem 0xfc001040-0xfc00a2e2]
[    0.027815] ACPI: Reserving FACS table memory at [mem 0xfc001000-0xfc00103f]
[    0.027815] ACPI: Reserving FACS table memory at [mem 0xfc001000-0xfc00103f]
[    0.027816] ACPI: Reserving APIC table memory at [mem 0xfc00a470-0xfc00a4df]
[    0.027817] ACPI: Reserving HPET table memory at [mem 0xfc00a560-0xfc00a597]
[    0.027817] ACPI: Reserving WAET table memory at [mem 0xfc00a5a0-0xfc00a5c7]
[    0.027818] ACPI: Reserving SSDT table memory at [mem 0xfc00a5d0-0xfc00a600]
[    0.027818] ACPI: Reserving SSDT table memory at [mem 0xfc00a610-0xfc00a640]
[    0.028833] No NUMA configuration found
[    0.028835] Faking a node at [mem 0x0000000000000000-0x000000003effefff]
[    0.028843] NODE_DATA(0) allocated [mem 0x3e8aa000-0x3e8d4fff]
[    0.030170] Zone ranges:
[    0.030171]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.030173]   DMA32    [mem 0x0000000001000000-0x000000003effefff]
[    0.030174]   Normal   empty
[    0.030175]   Device   empty
[    0.030175] Movable zone start for each node
[    0.030178] Early memory node ranges
[    0.030178]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.030179]   node   0: [mem 0x0000000000100000-0x000000003effefff]
[    0.030181] Initmem setup node 0 [mem 0x0000000000001000-0x000000003effefff]
[    0.030184] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.030198] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.031209] On node 0, zone DMA32: 4097 pages in unavailable ranges
[    0.033405] ACPI: PM-Timer IO Port: 0xb008
[    0.033449] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-47
[    0.033451] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.033453] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 low level)
[    0.033453] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 low level)
[    0.033454] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 low level)
[    0.033457] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.033458] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.033461] TSC deadline timer available
[    0.033461] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[    0.033468] [mem 0x3f000000-0xfbffffff] available for PCI devices
[    0.033469] Booting paravirtualized kernel on Xen HVM
[    0.033471] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.038575] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
[    0.038767] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u1048576
[    0.038771] pcpu-alloc: s221184 r8192 d28672 u1048576 alloc=1*2097152
[    0.038773] pcpu-alloc: [0] 0 1 
[    0.038790] xen: PV spinlocks enabled
[    0.038792] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.038795] Fallback order for Node 0: 0 
[    0.038797] Built 1 zonelists, mobility grouping on.  Total pages: 253759
[    0.038798] Policy zone: DMA32
[    0.038799] Kernel command line: root=/dev/mapper/dmroot ro nomodeset console=hvc0 rd_NO_PLYMOUTH rd.plymouth.enable=0 plymouth.enable=0 clocksource=tsc xen_scrub_pages=0  selinux=1 security=selinux
[    0.038824] Booted with the nomodeset parameter. Only the system framebuffer will be available
[    0.038883] Unknown kernel command line parameters "rd_NO_PLYMOUTH", will be passed to user space.
[    0.038944] random: crng init done
[    0.039025] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.039079] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.039287] mem auto-init: stack:all(zero), heap alloc:on, heap free:on
[    0.039288] mem auto-init: clearing system memory may take some time...
[    0.103114] Memory: 941396K/1031796K available (18432K kernel code, 3208K rwdata, 8692K rodata, 4992K init, 18632K bss, 90140K reserved, 0K cma-reserved)
[    0.103189] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.103197] Kernel/User page tables isolation: enabled
[    0.103217] ftrace: allocating 54208 entries in 212 pages
[    0.109785] ftrace: allocated 212 pages with 4 groups
[    0.110437] Dynamic Preempt: voluntary
[    0.110453] rcu: Preemptible hierarchical RCU implementation.
[    0.110454] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2.
[    0.110454] 	Trampoline variant of Tasks RCU enabled.
[    0.110455] 	Rude variant of Tasks RCU enabled.
[    0.110455] 	Tracing variant of Tasks RCU enabled.
[    0.110455] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.110456] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.112571] NR_IRQS: 524544, nr_irqs: 512, preallocated irqs: 16
[    0.112596] xen:events: Using FIFO-based ABI
[    0.112611] xen:events: Xen HVM callback vector for event delivery is enabled
[    0.112774] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.112867] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.175986] Console: colour VGA+ 80x25
[    0.176004] printk: console [hvc0] enabled
[    0.177192] ACPI: Core revision 20221020
[    0.177290] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 30580167144 ns
[    0.177370] APIC: Switch to symmetric I/O mode setup
[    0.177906] x2apic enabled
[    0.178418] Switched APIC routing to physical x2apic.
[    0.180149] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.184902] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2868027b22e, max_idle_ns: 440795325881 ns
[    0.184924] Calibrating delay loop (skipped), value calculated using timer frequency.. 5606.37 BogoMIPS (lpj=2803186)
[    0.184941] pid_max: default: 32768 minimum: 301
[    0.184968] LSM: initializing lsm=lockdown,capability,yama,integrity,selinux
[    0.184987] Yama: becoming mindful.
[    0.184998] SELinux:  Initializing.
[    0.185031] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    0.185043] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    0.185274] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.185338] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.185347] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.185360] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.185374] Spectre V2 : Mitigation: Retpolines
[    0.185382] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.185393] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.185402] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.185413] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.185426] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.185437] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.185452] MDS: Mitigation: Clear CPU buffers
[    0.198292] Freeing SMP alternatives memory: 48K
[    0.198355] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.198374] Xen: using vcpuop timer interface
[    0.198380] installing Xen timer for CPU 0
[    0.198441] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.198475] cpu 0 spinlock event irq 52
[    0.198573] cblist_init_generic: Setting adjustable number of callback queues.
[    0.198585] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.198604] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.198621] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.198638] Performance Events: unsupported p6 CPU model 140 no PMU driver, software events only.
[    0.198671] rcu: Hierarchical SRCU implementation.
[    0.198679] rcu: 	Max phase no-delay instances is 400.
[    0.198900] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.198921] smp: Bringing up secondary CPUs ...
[    0.198921] installing Xen timer for CPU 1
[    0.198945] x86: Booting SMP configuration:
[    0.198952] .... node  #0, CPUs:      #1
[    0.065145] APIC: Stale IRR: 00080000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 ISR: 00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000
[    0.201461] cpu 1 spinlock event irq 57
[    0.201964] smp: Brought up 1 node, 2 CPUs
[    0.201973] smpboot: Max logical packages: 1
[    0.201982] smpboot: Total of 2 processors activated (11212.74 BogoMIPS)
[    0.203069] devtmpfs: initialized
[    0.203069] x86/mm: Memory block size: 128MB
[    0.203137] ACPI: PM: Registering ACPI NVS region [mem 0xfc000000-0xfc00afff] (45056 bytes)
[    0.203137] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.203936] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.204006] pinctrl core: initialized pinctrl subsystem
[    0.204123] PM: RTC time: 07:34:45, date: 2023-05-31
[    0.204353] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.204460] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
[    0.204476] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.204489] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.204510] audit: initializing netlink subsys (disabled)
[    0.204927] audit: type=2000 audit(1685518485.303:1): state=initialized audit_enabled=0 res=1
[    0.205011] thermal_sys: Registered thermal governor 'fair_share'
[    0.205037] thermal_sys: Registered thermal governor 'bang_bang'
[    0.205049] thermal_sys: Registered thermal governor 'step_wise'
[    0.205059] thermal_sys: Registered thermal governor 'user_space'
[    0.205079] cpuidle: using governor menu
[    0.205963] PCI: Using configuration type 1 for base access
[    0.206083] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.244027] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.244027] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.244027] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.244027] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.244960] cryptd: max_cpu_qlen set to 1000
[    0.244970] raid6: skipped pq benchmark and selected avx512x4
[    0.244970] raid6: using avx512x2 recovery algorithm
[    0.245004] ACPI: Added _OSI(Module Device)
[    0.245012] ACPI: Added _OSI(Processor Device)
[    0.245020] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.245028] ACPI: Added _OSI(Processor Aggregator Device)
[    0.250484] ACPI: 3 ACPI AML tables successfully acquired and loaded
[    0.251325] xen: --> pirq=16 -> irq=9 (gsi=9)
[    0.253462] ACPI: Interpreter enabled
[    0.253477] ACPI: PM: (supports S0 S3 S5)
[    0.253486] ACPI: Using IOAPIC for interrupt routing
[    0.254157] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.254172] PCI: Ignoring E820 reservations for host bridge windows
[    0.254431] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.262927] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.262943] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.262957] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    0.262977] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    0.263236] PCI host bridge to bus 0000:00
[    0.263243] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.263254] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.263265] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.263277] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfbffffff window]
[    0.263289] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.263482] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[    0.267278] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[    0.271370] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
[    0.273924] pci 0000:00:01.1: reg 0x20: [io  0xc200-0xc20f]
[    0.274967] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.274981] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.274991] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.275003] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.276018] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
[    0.279145] pci 0000:00:01.3: quirk: [io  0xb000-0xb03f] claimed by PIIX4 ACPI
[    0.279203] pci 0000:00:01.3: quirk: [io  0xb100-0xb10f] claimed by PIIX4 SMB
[    0.280529] pci 0000:00:02.0: [5853:0001] type 00 class 0xff8000
[    0.281924] pci 0000:00:02.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.282453] pci 0000:00:02.0: reg 0x14: [mem 0xf0000000-0xf0ffffff pref]
[    0.288336] pci 0000:00:04.0: [1234:1111] type 00 class 0x030000
[    0.289497] pci 0000:00:04.0: reg 0x10: [mem 0xf1000000-0xf1ffffff pref]
[    0.291280] pci 0000:00:04.0: reg 0x18: [mem 0xf2016000-0xf2016fff]
[    0.294277] pci 0000:00:04.0: reg 0x30: [mem 0xf2000000-0xf200ffff pref]
[    0.294521] pci 0000:00:04.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.295539] pci 0000:00:05.0: [8086:24cd] type 00 class 0x0c0320
[    0.296924] pci 0000:00:05.0: reg 0x10: [mem 0xf2017000-0xf2017fff]
[    0.305422] pci 0000:00:06.0: [8086:2725] type 00 class 0x028000
[    0.314490] pci 0000:00:06.0: reg 0x10: [mem 0xf2010000-0xf2013fff 64bit]
[    0.349073] ACPI: PCI: Interrupt link LNKA configured for IRQ 5
[    0.349355] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.349980] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.350250] ACPI: PCI: Interrupt link LNKD configured for IRQ 5
[    0.353021] xen:balloon: Initialising balloon driver
[    0.353048] iommu: Default domain type: Translated 
[    0.353048] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.353048] SCSI subsystem initialized
[    0.353048] libata version 3.00 loaded.
[    0.353048] ACPI: bus type USB registered
[    0.353048] usbcore: registered new interface driver usbfs
[    0.353048] usbcore: registered new interface driver hub
[    0.353048] usbcore: registered new device driver usb
[    0.353048] pps_core: LinuxPPS API ver. 1 registered
[    0.353048] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.353048] PTP clock support registered
[    0.353048] EDAC MC: Ver: 3.0.0
[    0.355174] NetLabel: Initializing
[    0.355174] NetLabel:  domain hash size = 128
[    0.355174] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.355174] NetLabel:  unlabeled traffic allowed by default
[    0.355174] mctp: management component transport protocol core
[    0.355174] NET: Registered PF_MCTP protocol family
[    0.355174] PCI: Using ACPI for IRQ routing
[    0.355174] PCI: pci_cache_line_size set to 64 bytes
[    0.357429] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.357431] e820: reserve RAM buffer [mem 0x3efff000-0x3fffffff]
[    0.357455] pci 0000:00:04.0: vgaarb: setting as boot VGA device
[    0.357455] pci 0000:00:04.0: vgaarb: bridge control possible
[    0.357455] pci 0000:00:04.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.357925] vgaarb: loaded
[    0.357983] hpet: 3 channels of 0 reserved for per-cpu timers
[    0.358003] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.358014] hpet0: 3 comparators, 64-bit 62.500000 MHz counter
[    0.360958] clocksource: Switched to clocksource xen
[    0.369190] VFS: Disk quotas dquot_6.6.0
[    0.369205] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.369249] pnp: PnP ACPI init
[    0.369297] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.369351] system 00:01: [io  0x08a0-0x08a3] has been reserved
[    0.369363] system 00:01: [io  0x0cc0-0x0ccf] has been reserved
[    0.369374] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    0.369402] xen: --> pirq=18 -> irq=8 (gsi=8)
[    0.369421] xen: --> pirq=19 -> irq=12 (gsi=12)
[    0.369442] xen: --> pirq=20 -> irq=1 (gsi=1)
[    0.369460] xen: --> pirq=21 -> irq=6 (gsi=6)
[    0.369461] pnp 00:05: [dma 2]
[    0.369499] system 00:06: [io  0xae00-0xae0f] has been reserved
[    0.369511] system 00:06: [io  0xb044-0xb047] has been reserved
[    0.370633] pnp: PnP ACPI: found 7 devices
[    0.377652] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.377698] NET: Registered PF_INET protocol family
[    0.377727] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.377918] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)
[    0.377933] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.377947] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.377965] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.377997] TCP: Hash tables configured (established 8192 bind 8192)
[    0.378027] MPTCP token hash table entries: 1024 (order: 2, 24576 bytes, linear)
[    0.378046] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
[    0.378059] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
[    0.378087] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.378102] NET: Registered PF_XDP protocol family
[    0.378115] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.378126] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.378137] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.378147] pci_bus 0000:00: resource 7 [mem 0xf0000000-0xfbffffff window]
[    0.378257] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.517324] pci 0000:00:00.0: quirk_passive_release+0x0/0xb0 took 135884 usecs
[    0.517345] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.517880] xen: --> pirq=22 -> irq=39 (gsi=39)
[    0.519007] PCI: CLS 0 bytes, default 64
[    0.519082] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2868027b22e, max_idle_ns: 440795325881 ns
[    0.519086] Trying to unpack rootfs image as initramfs...
[    0.519163] clocksource: Switched to clocksource tsc
[    0.519751] Initialise system trusted keyrings
[    0.519769] Key type blacklist registered
[    0.519895] workingset: timestamp_bits=36 max_order=18 bucket_order=0
[    0.519921] zbud: loaded
[    0.520409] integrity: Platform Keyring initialized
[    0.520419] integrity: Machine keyring initialized
[    0.527409] NET: Registered PF_ALG protocol family
[    0.527422] xor: automatically using best checksumming function   avx       
[    0.527435] Key type asymmetric registered
[    0.527442] Asymmetric key parser 'x509' registered
[    0.592548] Freeing initrd memory: 7276K
[    0.594089] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.594169] io scheduler mq-deadline registered
[    0.594179] io scheduler kyber registered
[    0.594191] io scheduler bfq registered
[    0.595314] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.595586] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.595620] ACPI: button: Power Button [PWRF]
[    0.595653] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[    0.595675] ACPI: button: Sleep Button [SLPF]
[    0.619696] xen: --> pirq=23 -> irq=24 (gsi=24)
[    0.620050] xen:grant_table: Grant tables using version 1 layout
[    0.620137] Grant table initialized
[    0.620347] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.621375] Non-volatile memory driver v1.3
[    0.621407] Linux agpgart interface v0.103
[    0.621640] ACPI: bus type drm_connector registered
[    0.630212] ata_piix 0000:00:01.1: version 2.13
[    0.630265] ata_piix 0000:00:01.1: enabling device (0000 -> 0001)
[    0.631280] scsi host0: ata_piix
[    0.631371] scsi host1: ata_piix
[    0.631392] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc200 irq 14
[    0.631403] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc208 irq 15
[    0.631569] usbcore: registered new interface driver usbserial_generic
[    0.631583] usbserial: USB Serial support registered for generic
[    0.631613] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.634445] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.634459] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.634530] mousedev: PS/2 mouse device common for all mice
[    0.635781] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    0.636593] rtc_cmos 00:02: registered as rtc0
[    0.636631] rtc_cmos 00:02: setting system clock to 2023-05-31T07:34:45 UTC (1685518485)
[    0.636664] rtc_cmos 00:02: alarms up to one day, 114 bytes nvram
[    0.636686] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    0.636707] device-mapper: uevent: version 1.0.3
[    0.642574] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[    0.643434] intel_pstate: CPU model not supported
[    0.643499] hid: raw HID events driver (C) Jiri Kosina
[    0.643525] usbcore: registered new interface driver usbhid
[    0.643534] usbhid: USB HID core driver
[    0.643611] drop_monitor: Initializing network drop monitor service
[    0.643673] Initializing XFRM netlink socket
[    0.643693] NET: Registered PF_INET6 protocol family
[    0.644937] Segment Routing with IPv6
[    0.644946] RPL Segment Routing with IPv6
[    0.644957] In-situ OAM (IOAM) with IPv6
[    0.644978] mip6: Mobile IPv6
[    0.644987] NET: Registered PF_PACKET protocol family
[    0.645179] IPI shorthand broadcast: enabled
[    0.717748] AVX2 version of gcm_enc/dec engaged.
[    0.717839] AES CTR mode by8 optimization enabled
[    0.719003] sched_clock: Marking stable (654403398, 64145092)->(861997163, -143448673)
[    0.719159] registered taskstats version 1
[    0.719246] Loading compiled-in X.509 certificates
[    0.725713] Loaded X.509 cert 'Build time autogenerated kernel key: 71b12e3caf24d55eb39a8d585ceb01a5ebb6ae3a'
[    0.725826] zswap: loaded using pool lzo/zbud
[    0.727372] page_owner is disabled
[    0.727468] Key type .fscrypt registered
[    0.727476] Key type fscrypt-provisioning registered
[    0.727703] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=yes
[    0.727727] Key type big_key registered
[    0.728980] Key type encrypted registered
[    0.728996] ima: No TPM chip found, activating TPM-bypass!
[    0.729007] Loading compiled-in module X.509 certificates
[    0.729379] Loaded X.509 cert 'Build time autogenerated kernel key: 71b12e3caf24d55eb39a8d585ceb01a5ebb6ae3a'
[    0.729399] ima: Allocated hash algorithm: sha256
[    0.729415] ima: No architecture policies found
[    0.729430] evm: Initialising EVM extended attributes:
[    0.729438] evm: security.selinux
[    0.729445] evm: security.SMACK64 (disabled)
[    0.729453] evm: security.SMACK64EXEC (disabled)
[    0.729461] evm: security.SMACK64TRANSMUTE (disabled)
[    0.729469] evm: security.SMACK64MMAP (disabled)
[    0.729477] evm: security.apparmor
[    0.729483] evm: security.ima
[    0.729489] evm: security.capability
[    0.729495] evm: HMAC attrs: 0x1
[    0.749002] alg: No test for 842 (842-scomp)
[    0.749038] alg: No test for 842 (842-generic)
[    0.827965] xenbus_probe_frontend: Device with no driver: device/vbd/51712
[    0.827981] xenbus_probe_frontend: Device with no driver: device/vbd/51728
[    0.828003] xenbus_probe_frontend: Device with no driver: device/vbd/51744
[    0.828014] xenbus_probe_frontend: Device with no driver: device/vbd/51760
[    0.828070] PM:   Magic number: 7:95:573
[    0.828147] RAS: Correctable Errors collector initialized.
[    0.833775] Freeing unused decrypted memory: 2036K
[    0.834286] Freeing unused kernel image (initmem) memory: 4992K
[    0.835596] Write protecting the kernel read-only data: 28672k
[    0.835880] Freeing unused kernel image (rodata/data gap) memory: 1548K
[    0.835920] rodata_test: all tests were successful
[    0.835933] Run /init as init process
[    0.835940]   with arguments:
[    0.835941]     /init
[    0.835942]     rd_NO_PLYMOUTH
[    0.835942]   with environment:
[    0.835943]     HOME=/
[    0.835943]     TERM=linux
[    0.838682] Invalid max_queues (4), will use default max: 2.
[    0.846432] blkfront: xvda: flush diskcache: enabled; persistent grants: enabled; indirect descriptors: enabled; bounce buffer: enabled
[    0.862006]  xvda: xvda1 xvda2 xvda3
[    0.863374] blkfront: xvdb: flush diskcache: enabled; persistent grants: enabled; indirect descriptors: enabled; bounce buffer: enabled
[    0.864929] blkfront: xvdc: flush diskcache: enabled; persistent grants: enabled; indirect descriptors: enabled; bounce buffer: enabled
[    0.866067] blkfront: xvdd: barrier or flush: disabled; persistent grants: enabled; indirect descriptors: enabled; bounce buffer: enabled
[    1.235755]  xvdc: xvdc1 xvdc3
[    1.260299] EXT4-fs (xvda3): mounted filesystem f76da228-62b7-4543-835d-9ab0d57bbc45 with ordered data mode. Quota mode: none.
[    1.265182] /dev/xvdd: Can't open blockdev
[    1.266137] EXT4-fs (xvdd): mounting ext3 file system using the ext4 subsystem
[    1.269835] EXT4-fs (xvdd): mounted filesystem 63438b4b-f5d8-462a-82fe-9d52951a6722 with ordered data mode. Quota mode: none.
[    1.349081] audit: type=1404 audit(1685518486.211:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
[    1.373517] SELinux:  Class user_namespace not defined in policy.
[    1.373537] SELinux: the above unknown classes and permissions will be allowed
[    1.375284] SELinux:  policy capability network_peer_controls=1
[    1.375297] SELinux:  policy capability open_perms=1
[    1.375306] SELinux:  policy capability extended_socket_class=1
[    1.375316] SELinux:  policy capability always_check_network=0
[    1.375326] SELinux:  policy capability cgroup_seclabel=1
[    1.375334] SELinux:  policy capability nnp_nosuid_transition=1
[    1.375344] SELinux:  policy capability genfs_seclabel_symlinks=1
[    1.375357] SELinux:  policy capability ioctl_skip_cloexec=0
[    1.406404] audit: type=1403 audit(1685518486.268:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
[    1.408271] systemd[1]: Successfully loaded SELinux policy in 59.906ms.
[    1.433151] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 9.663ms.
[    1.439705] systemd[1]: systemd 251.14-2.fc37 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    1.439761] systemd[1]: Detected virtualization xen.
[    1.439773] systemd[1]: Detected architecture x86-64.
[    1.441169] systemd[1]: No hostname configured, using default hostname.
[    1.441214] systemd[1]: Hostname set to <fedora>.
[    1.489698] systemd[1]: bpf-lsm: BPF LSM hook not enabled in the kernel, BPF LSM not supported
[    1.490215] memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=1 'systemd'
[    1.525856] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[    1.648265] block xvda: the capability attribute has been deprecated.
[    1.648419] systemd-gpt-auto-generator[226]: Failed to dissect: Permission denied
[    1.648724] (sd-execut[218]: /usr/lib/systemd/system-generators/systemd-gpt-auto-generator failed with exit status 1.
[    1.725139] systemd[1]: /usr/lib/systemd/system/qubes-gui-agent.service:15: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
[    1.787876] systemd[1]: Queued start job for default target multi-user.target.
[    1.799152] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[    1.800100] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[    1.800859] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[    1.801470] systemd[1]: Created slice user.slice - User and Session Slice.
[    1.801830] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[    1.802132] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    1.802835] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    1.803025] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[    1.803158] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[    1.803306] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[    1.803420] systemd[1]: Reached target slices.target - Slice Units.
[    1.803538] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[    1.806744] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[    1.806996] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[    1.807505] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[    1.808159] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    1.808722] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[    1.809438] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
[    1.810802] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    1.811123] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    1.811464] systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket.
[    1.849651] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    1.850451] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    1.851217] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    1.851966] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[    1.852744] systemd[1]: Starting dev-xvdc1-swap.service - Enable swap on /dev/xvdc1 early...
[    1.854825] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    1.855630] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[    1.856409] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[    1.857186] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[    1.857968] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[    1.858758] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[    1.860236] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    1.860598] Adding 1048572k swap on /dev/xvdc1.  Priority:-2 extents:1 across:1048572k SSFS
[    1.861141] systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line...
[    1.861981] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    1.862820] systemd[1]: Condition check resulted in dev-xvdc1.swap - /dev/xvdc1 being skipped.
[    1.862857] systemd[1]: Unnecessary job was removed for dev-xvdc1.device - /dev/xvdc1.
[    1.863125] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    1.863320] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    1.863644] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    1.863771] systemd[1]: Reached target swap.target - Swaps.
[    1.865021] systemd[1]: Mounting tmp.mount - Temporary Directory /tmp...
[    1.866192] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    1.866450] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[    1.868354] systemd[1]: Mounted tmp.mount - Temporary Directory /tmp.
[    1.869924] systemd[1]: Finished systemd-network-generator.service - Generate network units from Kernel command line.
[    1.874343] systemd[1]: dev-xvdc1-swap.service: Deactivated successfully.
[    1.874460] systemd[1]: Finished dev-xvdc1-swap.service - Enable swap on /dev/xvdc1 early.
[    2.049357] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    2.049489] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[    2.049748] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[    2.049840] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[    2.050025] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    2.050112] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[    2.052726] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[    2.052812] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
[    2.053631] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    2.055367] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[    2.063069] EXT4-fs (xvda3): re-mounted f76da228-62b7-4543-835d-9ab0d57bbc45. Quota mode: none.
[    2.080095] fuse: init (API version 7.38)
[    2.081139] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[    2.081310] systemd[1]: ostree-remount.service - OSTree Remount OS/ Bind Mounts was skipped because of a failed condition check (ConditionKernelCommandLine=ostree).
[    2.081378] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of a failed condition check (ConditionFirstBoot=yes).
[    2.081954] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[    2.082010] systemd[1]: systemd-sysusers.service - Create System Users was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[    2.084015] xen:xen_evtchn: Event-channel device installed
[    2.084787] loop: module loaded
[    2.085654] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[    2.086004] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    2.086126] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[    2.086352] systemd[1]: modprobe@loop.service: Deactivated successfully.
[    2.086450] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[    2.086682] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because all trigger condition checks failed.
[    2.115478] systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
[    2.119529] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[    2.248928] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[    2.252718] systemd[1]: Started haveged.service - Entropy Daemon based on the HAVEGE algorithm.
[    2.254066] systemd[1]: Starting systemd-journald.service - Journal Service...
[    2.254889] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[    2.280631] systemd[1]: Started systemd-journald.service - Journal Service.
[    2.294713] Rounding down aligned max_sectors from 4294967295 to 4294967288
[    2.294764] db_root: cannot open: /etc/target
[    2.303696] audit: type=1130 audit(1685518487.143:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.438891] audit: type=1130 audit(1685518487.301:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.443290] systemd-journald[264]: Received client request to flush runtime journal.
[    2.445625] audit: type=1130 audit(1685518487.308:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.515666] audit: type=1130 audit(1685518487.378:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.515702] audit: type=1131 audit(1685518487.378:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.515932] audit: type=1130 audit(1685518487.378:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.520762] memmap_init_zone_device initialised 32768 pages in 0ms
[    2.522921] audit: type=1130 audit(1685518487.385:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=qubes-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.557791] FDC 0 is a S82078B
[    2.563377] piix4_smbus 0000:00:01.3: SMBus Host Controller not enabled!
[    2.590058] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    2.603567] ehci-pci 0000:00:05.0: EHCI Host Controller
[    2.603686] ehci-pci 0000:00:05.0: new USB bus registered, assigned bus number 1
[    2.605505] ehci-pci 0000:00:05.0: irq 39, io mem 0xf2017000
[    2.613259] ehci-pci 0000:00:05.0: USB 2.0 started, EHCI 1.00
[    2.613372] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.03
[    2.613386] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.613398] usb usb1: Product: EHCI Host Controller
[    2.613406] usb usb1: Manufacturer: Linux 6.3.2-1.qubes.fc37.x86_64 ehci_hcd
[    2.613418] usb usb1: SerialNumber: 0000:00:05.0
[    2.613514] hub 1-0:1.0: USB hub found
[    2.613525] hub 1-0:1.0: 6 ports detected
[    2.732879] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.733203] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.754151] EXT4-fs (xvdb): mounted filesystem 746fe74c-2e8d-4d06-9216-b4fd74ea9071 with ordered data mode. Quota mode: none.
[    2.853580] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.922926] Intel(R) Wireless WiFi driver for Linux
[    2.924098] xen: --> pirq=17 -> irq=40 (gsi=40)
[    2.974268] iwlwifi 0000:00:06.0: api flags index 2 larger than supported by driver
[    2.974299] iwlwifi 0000:00:06.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.36
[    2.974976] iwlwifi 0000:00:06.0: loaded firmware version 74.fe17486e.0 ty-a0-gf-a0-74.ucode op_mode iwlmvm
[    2.989117] intel_rapl_msr: PL4 support detected.
[    3.012135] usb 1-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00
[    3.012156] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10
[    3.012170] usb 1-1: Product: QEMU USB Tablet
[    3.012178] usb 1-1: Manufacturer: QEMU
[    3.012210] usb 1-1: SerialNumber: 42
[    3.032337] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:05.0/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input6
[    3.032466] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:05.0-1/input0
[    3.073319] iwlwifi 0000:00:06.0: Detected Intel(R) Wi-Fi 6 AX210 160MHz, REV=0x420
[    3.073377] thermal thermal_zone0: failed to read out thermal zone (-61)
[    3.083582] iwlwifi 0000:00:06.0: WRT: Invalid buffer destination
[    3.246951] iwlwifi 0000:00:06.0: WFPM_UMAC_PD_NOTIFICATION: 0x1f
[    3.247176] iwlwifi 0000:00:06.0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[    3.247315] iwlwifi 0000:00:06.0: WFPM_AUTH_KEY_0: 0x80
[    3.247425] iwlwifi 0000:00:06.0: CNVI_SCU_SEQ_DATA_DW9: 0x0
[    3.249710] iwlwifi 0000:00:06.0: loaded PNVM version e4a49534
[    3.264991] iwlwifi 0000:00:06.0: Detected RF GF, rfid=0x10d000
[    3.340162] iwlwifi 0000:00:06.0: base HW address: 00:93:37:95:ca:3b
[    3.545603] iwlwifi 0000:00:06.0: firmware didn't ACK the reset - continue anyway
[    3.546216] iwlwifi 0000:00:06.0: Start IWL Error Log Dump:
[    3.546227] iwlwifi 0000:00:06.0: Transport status: 0x0000004A, valid: 6
[    3.546238] iwlwifi 0000:00:06.0: Loaded firmware version: 74.fe17486e.0 ty-a0-gf-a0-74.ucode
[    3.546253] iwlwifi 0000:00:06.0: 0x00000084 | NMI_INTERRUPT_UNKNOWN       
[    3.546264] iwlwifi 0000:00:06.0: 0x00A082F0 | trm_hw_status0
[    3.546275] iwlwifi 0000:00:06.0: 0x00000000 | trm_hw_status1
[    3.546285] iwlwifi 0000:00:06.0: 0x004DBE68 | branchlink2
[    3.546294] iwlwifi 0000:00:06.0: 0x004BFC9C | interruptlink1
[    3.546304] iwlwifi 0000:00:06.0: 0x004BFC9C | interruptlink2
[    3.546314] iwlwifi 0000:00:06.0: 0x00016F32 | data1
[    3.546322] iwlwifi 0000:00:06.0: 0x01000000 | data2
[    3.546331] iwlwifi 0000:00:06.0: 0x00000000 | data3
[    3.546339] iwlwifi 0000:00:06.0: 0x00000000 | beacon time
[    3.546350] iwlwifi 0000:00:06.0: 0x0002A565 | tsf low
[    3.546358] iwlwifi 0000:00:06.0: 0x00000000 | tsf hi
[    3.546366] iwlwifi 0000:00:06.0: 0x00000000 | time gp1
[    3.546375] iwlwifi 0000:00:06.0: 0x0003F04E | time gp2
[    3.546383] iwlwifi 0000:00:06.0: 0x00000001 | uCode revision type
[    3.546393] iwlwifi 0000:00:06.0: 0x0000004A | uCode version major
[    3.546404] iwlwifi 0000:00:06.0: 0xFE17486E | uCode version minor
[    3.546414] iwlwifi 0000:00:06.0: 0x00000420 | hw version
[    3.546422] iwlwifi 0000:00:06.0: 0x18C80002 | board version
[    3.546433] iwlwifi 0000:00:06.0: 0x8071FF00 | hcmd
[    3.546441] iwlwifi 0000:00:06.0: 0x20020000 | isr0
[    3.546449] iwlwifi 0000:00:06.0: 0x00000000 | isr1
[    3.546458] iwlwifi 0000:00:06.0: 0x48F00002 | isr2
[    3.546466] iwlwifi 0000:00:06.0: 0x00C0000C | isr3
[    3.546474] iwlwifi 0000:00:06.0: 0x00000000 | isr4
[    3.546483] iwlwifi 0000:00:06.0: 0x00000000 | last cmd Id
[    3.546491] iwlwifi 0000:00:06.0: 0x00016F32 | wait_event
[    3.546499] iwlwifi 0000:00:06.0: 0x00000000 | l2p_control
[    3.546508] iwlwifi 0000:00:06.0: 0x00000000 | l2p_duration
[    3.546516] iwlwifi 0000:00:06.0: 0x00000000 | l2p_mhvalid
[    3.546787] iwlwifi 0000:00:06.0: 0x00000000 | l2p_addr_match
[    3.546798] iwlwifi 0000:00:06.0: 0x00000009 | lmpm_pmg_sel
[    3.546806] iwlwifi 0000:00:06.0: 0x00000000 | timestamp
[    3.546815] iwlwifi 0000:00:06.0: 0x00000028 | flow_handler
[    3.547039] iwlwifi 0000:00:06.0: Start IWL Error Log Dump:
[    3.547049] iwlwifi 0000:00:06.0: Transport status: 0x0000004A, valid: 7
[    3.547059] iwlwifi 0000:00:06.0: 0x20000074 | ADVANCED_SYSASSERT
[    3.547070] iwlwifi 0000:00:06.0: 0x00000000 | umac branchlink1
[    3.547080] iwlwifi 0000:00:06.0: 0x8045F470 | umac branchlink2
[    3.547090] iwlwifi 0000:00:06.0: 0x8047EE8E | umac interruptlink1
[    3.547100] iwlwifi 0000:00:06.0: 0x8047EE8E | umac interruptlink2
[    3.547111] iwlwifi 0000:00:06.0: 0x01000000 | umac data1
[    3.547119] iwlwifi 0000:00:06.0: 0x8047EE8E | umac data2
[    3.547127] iwlwifi 0000:00:06.0: 0x00000000 | umac data3
[    3.547136] iwlwifi 0000:00:06.0: 0x0000004A | umac major
[    3.547144] iwlwifi 0000:00:06.0: 0xFE17486E | umac minor
[    3.547152] iwlwifi 0000:00:06.0: 0x0003F159 | frame pointer
[    3.547163] iwlwifi 0000:00:06.0: 0xC0886258 | stack pointer
[    3.547173] iwlwifi 0000:00:06.0: 0x00040F07 | last host cmd
[    3.547183] iwlwifi 0000:00:06.0: 0x00000404 | isr status reg
[    3.547824] iwlwifi 0000:00:06.0: IML/ROM dump:
[    3.547834] iwlwifi 0000:00:06.0: 0x00000B03 | IML/ROM error/state
[    3.548037] iwlwifi 0000:00:06.0: 0x00008572 | IML/ROM data1
[    3.548247] iwlwifi 0000:00:06.0: 0x00000080 | IML/ROM WFPM_AUTH_KEY_0
[    3.548521] iwlwifi 0000:00:06.0: Fseq Registers:
[    3.548679] iwlwifi 0000:00:06.0: 0x60000100 | FSEQ_ERROR_CODE
[    3.548828] iwlwifi 0000:00:06.0: 0x00440007 | FSEQ_TOP_INIT_VERSION
[    3.548978] iwlwifi 0000:00:06.0: 0x00080009 | FSEQ_CNVIO_INIT_VERSION
[    3.549128] iwlwifi 0000:00:06.0: 0x0000A652 | FSEQ_OTP_VERSION
[    3.549277] iwlwifi 0000:00:06.0: 0x00000002 | FSEQ_TOP_CONTENT_VERSION
[    3.549427] iwlwifi 0000:00:06.0: 0x4552414E | FSEQ_ALIVE_TOKEN
[    3.549582] iwlwifi 0000:00:06.0: 0x00400410 | FSEQ_CNVI_ID
[    3.549731] iwlwifi 0000:00:06.0: 0x00400410 | FSEQ_CNVR_ID
[    3.549878] iwlwifi 0000:00:06.0: 0x00400410 | CNVI_AUX_MISC_CHIP
[    3.550029] iwlwifi 0000:00:06.0: 0x00400410 | CNVR_AUX_MISC_CHIP
[    3.550181] iwlwifi 0000:00:06.0: 0x00009061 | CNVR_SCU_SD_REGS_SD_REG_DIG_DCDC_VTRIM
[    3.550334] iwlwifi 0000:00:06.0: 0x00000061 | CNVR_SCU_SD_REGS_SD_REG_ACTIVE_VDIG_MIRROR
[    3.550487] iwlwifi 0000:00:06.0: WRT: Collecting data: ini trigger 4 fired (delay=0ms).
[    4.508930] iwlwifi 0000:00:06.0 wls6: renamed from wlan0
[    4.739155] NET: Registered PF_QIPCRTR protocol family
[    4.752757] iwlwifi 0000:00:06.0: WRT: Invalid buffer destination
[    4.916099] iwlwifi 0000:00:06.0: WFPM_UMAC_PD_NOTIFICATION: 0x1f
[    4.916143] iwlwifi 0000:00:06.0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[    4.916179] iwlwifi 0000:00:06.0: WFPM_AUTH_KEY_0: 0x80
[    4.916217] iwlwifi 0000:00:06.0: CNVI_SCU_SEQ_DATA_DW9: 0x0
[    5.241640] iwlwifi 0000:00:06.0: firmware didn't ACK the reset - continue anyway
[    5.241977] iwlwifi 0000:00:06.0: Start IWL Error Log Dump:
[    5.241987] iwlwifi 0000:00:06.0: Transport status: 0x0000004A, valid: 6
[    5.241997] iwlwifi 0000:00:06.0: Loaded firmware version: 74.fe17486e.0 ty-a0-gf-a0-74.ucode
[    5.242012] iwlwifi 0000:00:06.0: 0x00000084 | NMI_INTERRUPT_UNKNOWN       
[    5.242023] iwlwifi 0000:00:06.0: 0x000002F0 | trm_hw_status0
[    5.242033] iwlwifi 0000:00:06.0: 0x00000000 | trm_hw_status1
[    5.242043] iwlwifi 0000:00:06.0: 0x004DBE68 | branchlink2
[    5.242052] iwlwifi 0000:00:06.0: 0x004D1DEA | interruptlink1
[    5.242062] iwlwifi 0000:00:06.0: 0x004D1DEA | interruptlink2
[    5.242072] iwlwifi 0000:00:06.0: 0x00016F32 | data1
[    5.242081] iwlwifi 0000:00:06.0: 0x01000000 | data2
[    5.242089] iwlwifi 0000:00:06.0: 0x00000000 | data3
[    5.242098] iwlwifi 0000:00:06.0: 0x003D1E73 | beacon time
[    5.242106] iwlwifi 0000:00:06.0: 0x000318FA | tsf low
[    5.242114] iwlwifi 0000:00:06.0: 0x00000000 | tsf hi
[    5.242122] iwlwifi 0000:00:06.0: 0x00000000 | time gp1
[    5.242131] iwlwifi 0000:00:06.0: 0x0004637B | time gp2
[    5.242139] iwlwifi 0000:00:06.0: 0x00000001 | uCode revision type
[    5.242150] iwlwifi 0000:00:06.0: 0x0000004A | uCode version major
[    5.242160] iwlwifi 0000:00:06.0: 0xFE17486E | uCode version minor
[    5.242170] iwlwifi 0000:00:06.0: 0x00000420 | hw version
[    5.242179] iwlwifi 0000:00:06.0: 0x18C80002 | board version
[    5.242189] iwlwifi 0000:00:06.0: 0x80B3FF00 | hcmd
[    5.242197] iwlwifi 0000:00:06.0: 0x00020000 | isr0
[    5.242205] iwlwifi 0000:00:06.0: 0x00000000 | isr1
[    5.242214] iwlwifi 0000:00:06.0: 0x48F04802 | isr2
[    5.242222] iwlwifi 0000:00:06.0: 0x04C3000C | isr3
[    5.242230] iwlwifi 0000:00:06.0: 0x00000000 | isr4
[    5.242238] iwlwifi 0000:00:06.0: 0x001B0148 | last cmd Id
[    5.242247] iwlwifi 0000:00:06.0: 0x00016F32 | wait_event
[    5.242255] iwlwifi 0000:00:06.0: 0x00000000 | l2p_control
[    5.242263] iwlwifi 0000:00:06.0: 0x00000000 | l2p_duration
[    5.242271] iwlwifi 0000:00:06.0: 0x00000000 | l2p_mhvalid
[    5.242280] iwlwifi 0000:00:06.0: 0x00000000 | l2p_addr_match
[    5.242290] iwlwifi 0000:00:06.0: 0x00000018 | lmpm_pmg_sel
[    5.242298] iwlwifi 0000:00:06.0: 0x00000000 | timestamp
[    5.242306] iwlwifi 0000:00:06.0: 0x00001840 | flow_handler
[    5.242531] iwlwifi 0000:00:06.0: Start IWL Error Log Dump:
[    5.242540] iwlwifi 0000:00:06.0: Transport status: 0x0000004A, valid: 7
[    5.242563] iwlwifi 0000:00:06.0: 0x20000074 | ADVANCED_SYSASSERT
[    5.242574] iwlwifi 0000:00:06.0: 0x00000000 | umac branchlink1
[    5.242584] iwlwifi 0000:00:06.0: 0x8045F470 | umac branchlink2
[    5.242594] iwlwifi 0000:00:06.0: 0xC00818A8 | umac interruptlink1
[    5.242604] iwlwifi 0000:00:06.0: 0x8047EE8E | umac interruptlink2
[    5.242614] iwlwifi 0000:00:06.0: 0x01000000 | umac data1
[    5.242622] iwlwifi 0000:00:06.0: 0x8047EE8E | umac data2
[    5.242631] iwlwifi 0000:00:06.0: 0x00000000 | umac data3
[    5.242639] iwlwifi 0000:00:06.0: 0x0000004A | umac major
[    5.242647] iwlwifi 0000:00:06.0: 0xFE17486E | umac minor
[    5.242655] iwlwifi 0000:00:06.0: 0x00046486 | frame pointer
[    5.242666] iwlwifi 0000:00:06.0: 0xC0886258 | stack pointer
[    5.242676] iwlwifi 0000:00:06.0: 0x001C0F07 | last host cmd
[    5.242685] iwlwifi 0000:00:06.0: 0x00000409 | isr status reg
[    5.242887] iwlwifi 0000:00:06.0: IML/ROM dump:
[    5.242896] iwlwifi 0000:00:06.0: 0x00000B03 | IML/ROM error/state
[    5.243099] iwlwifi 0000:00:06.0: 0x0000853F | IML/ROM data1
[    5.243301] iwlwifi 0000:00:06.0: 0x00000080 | IML/ROM WFPM_AUTH_KEY_0
[    5.243500] iwlwifi 0000:00:06.0: Fseq Registers:
[    5.243656] iwlwifi 0000:00:06.0: 0x60000100 | FSEQ_ERROR_CODE
[    5.243806] iwlwifi 0000:00:06.0: 0x00440007 | FSEQ_TOP_INIT_VERSION
[    5.243956] iwlwifi 0000:00:06.0: 0x00080009 | FSEQ_CNVIO_INIT_VERSION
[    5.244106] iwlwifi 0000:00:06.0: 0x0000A652 | FSEQ_OTP_VERSION
[    5.244248] iwlwifi 0000:00:06.0: 0x00000002 | FSEQ_TOP_CONTENT_VERSION
[    5.244397] iwlwifi 0000:00:06.0: 0x4552414E | FSEQ_ALIVE_TOKEN
[    5.244552] iwlwifi 0000:00:06.0: 0x00400410 | FSEQ_CNVI_ID
[    5.244700] iwlwifi 0000:00:06.0: 0x00400410 | FSEQ_CNVR_ID
[    5.244848] iwlwifi 0000:00:06.0: 0x00400410 | CNVI_AUX_MISC_CHIP
[    5.245000] iwlwifi 0000:00:06.0: 0x00400410 | CNVR_AUX_MISC_CHIP
[    5.245151] iwlwifi 0000:00:06.0: 0x00009061 | CNVR_SCU_SD_REGS_SD_REG_DIG_DCDC_VTRIM
[    5.245304] iwlwifi 0000:00:06.0: 0x00000061 | CNVR_SCU_SD_REGS_SD_REG_ACTIVE_VDIG_MIRROR
[    5.245453] iwlwifi 0000:00:06.0: WRT: Collecting data: ini trigger 4 fired (delay=0ms).
[    6.215274] kauditd_printk_skb: 97 callbacks suppressed
[    6.215276] audit: type=1130 audit(1685518491.077:77): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=qubes-network comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.226596] iwlwifi 0000:00:06.0: WRT: Invalid buffer destination
[    6.241701] audit: type=1130 audit(1685518491.104:78): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.245580] audit: type=1130 audit(1685518491.108:79): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=getty@tty1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.249889] audit: type=1130 audit(1685518491.111:80): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=serial-getty@hvc0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.259120] audit: type=1130 audit(1685518491.122:81): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=qubes-qrexec-agent comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.270305] audit: type=1130 audit(1685518491.132:82): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=qubes-gui-agent comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.318867] audit: type=1325 audit(1685518491.181:83): table=filter:17 family=2 entries=1 op=nft_register_rule pid=609 subj=system_u:system_r:iptables_t:s0 comm="iptables"
[    6.318896] audit: type=1300 audit(1685518491.181:83): arch=c000003e syscall=46 success=yes exit=548 a0=3 a1=7ffd2a598be0 a2=0 a3=7ffd2a598bcc items=0 ppid=608 pid=609 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="iptables" exe="/usr/sbin/xtables-nft-multi" subj=system_u:system_r:iptables_t:s0 key=(null)
[    6.318941] audit: type=1327 audit(1685518491.181:83): proctitle=69707461626C6573002D4900494E505554002D7000746370002D73003139322E33302E3235322E302F3232002D2D64706F7274003830002D6A00414343455054
[    6.320441] audit: type=1325 audit(1685518491.182:84): table=filter:18 family=2 entries=1 op=nft_register_rule pid=610 subj=system_u:system_r:iptables_t:s0 comm="iptables"
[    6.389513] iwlwifi 0000:00:06.0: WFPM_UMAC_PD_NOTIFICATION: 0x1f
[    6.389571] iwlwifi 0000:00:06.0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[    6.389611] iwlwifi 0000:00:06.0: WFPM_AUTH_KEY_0: 0x80
[    6.389666] iwlwifi 0000:00:06.0: CNVI_SCU_SEQ_DATA_DW9: 0x0
[    6.392923] systemd-gpt-auto-generator[627]: Failed to dissect: Permission denied
[    6.536558] vif vif-4-0 vif4.0: Guest Rx ready
[    6.550036] vif vif-52-0 vif52.0: Guest Rx ready
[    6.588456] vif vif-31-0 vif31.0: Guest Rx ready
[    7.249610] IPv6: ADDRCONF(NETDEV_CHANGE): vif4.0: link becomes ready
[    7.249673] IPv6: ADDRCONF(NETDEV_CHANGE): vif52.0: link becomes ready
[    7.249695] IPv6: ADDRCONF(NETDEV_CHANGE): vif31.0: link becomes ready
[    9.980278] wls6: authenticate with 0a:b0:4c:5d:7a:c2
[    9.980300] wls6: 80 MHz not supported, disabling VHT
[    9.993987] wls6: send auth to 0a:b0:4c:5d:7a:c2 (try 1/3)
[   10.108954] wls6: authenticated
[   10.109676] wls6: associate with 0a:b0:4c:5d:7a:c2 (try 1/3)
[   10.117897] wls6: RX AssocResp from 0a:b0:4c:5d:7a:c2 (capab=0x1431 status=0 aid=3)
[   10.141777] wls6: associated
[   10.208383] IPv6: ADDRCONF(NETDEV_CHANGE): wls6: link becomes ready
[   11.249613] kauditd_printk_skb: 112 callbacks suppressed
[   11.249617] audit: type=1334 audit(1685518496.111:148): prog-id=36 op=UNLOAD
[   11.249680] audit: type=1334 audit(1685518496.111:149): prog-id=35 op=UNLOAD
[   11.249715] audit: type=1334 audit(1685518496.111:150): prog-id=34 op=UNLOAD
[   11.249748] audit: type=1334 audit(1685518496.111:151): prog-id=32 op=UNLOAD
[   11.249781] audit: type=1334 audit(1685518496.111:152): prog-id=31 op=UNLOAD
[   11.249814] audit: type=1334 audit(1685518496.111:153): prog-id=30 op=UNLOAD
[   11.249849] audit: type=1334 audit(1685518496.111:154): prog-id=29 op=UNLOAD
[   11.249883] audit: type=1334 audit(1685518496.111:155): prog-id=28 op=UNLOAD
[   11.249916] audit: type=1334 audit(1685518496.111:156): prog-id=27 op=UNLOAD
[   11.249949] audit: type=1334 audit(1685518496.111:157): prog-id=26 op=UNLOAD
[   16.480856] kauditd_printk_skb: 26 callbacks suppressed
[   16.480859] audit: type=1101 audit(1685518501.343:180): pid=1271 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix,pam_localuser acct="user" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   16.481321] audit: type=1123 audit(1685518501.343:181): pid=1271 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/home/user" cmd=646E66202D4320696E7374616C6C202E2F5175626573496E636F6D696E672F68766D746573742F69706572662D322E312E392D312E666333372E7838365F36342E72706D exe="/usr/bin/sudo" terminal=pts/0 res=success'
[   16.482265] audit: type=1110 audit(1685518501.344:182): pid=1271 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_localuser,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   16.484389] audit: type=1105 audit(1685518501.346:183): pid=1271 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   16.484897] audit: type=2300 audit(1685518501.347:184): pid=1271 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='newrole: old-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 new-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   19.842504] audit: type=1130 audit(1685518504.704:185): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=run-ra1e2a338fc754e09ae3cd0bb1cdf7ab6 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   20.225507] audit: type=1130 audit(1685518505.087:186): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=man-db-cache-update comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   20.225747] audit: type=1131 audit(1685518505.088:187): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=man-db-cache-update comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   20.242337] audit: type=1131 audit(1685518505.105:188): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=run-ra1e2a338fc754e09ae3cd0bb1cdf7ab6 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   22.346783] audit: type=1130 audit(1685518507.209:189): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=unbound-anchor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   22.346821] audit: type=1131 audit(1685518507.209:190): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=unbound-anchor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   22.608401] audit: type=1131 audit(1685518507.470:191): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   22.686381] audit: type=1106 audit(1685518507.549:192): pid=1271 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   22.687026] audit: type=1104 audit(1685518507.549:193): pid=1271 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_localuser,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   40.386923] audit: type=1131 audit(1685518524.537:194): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   40.442095] audit: type=1334 audit(1685518524.593:195): prog-id=39 op=UNLOAD
[   40.442113] audit: type=1334 audit(1685518524.593:196): prog-id=38 op=UNLOAD
[   40.442126] audit: type=1334 audit(1685518524.593:197): prog-id=37 op=UNLOAD
[   78.053908] audit: type=1101 audit(1685518562.201:198): pid=1383 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix,pam_localuser acct="user" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   78.054205] audit: type=1123 audit(1685518562.201:199): pid=1383 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/home/user" cmd="dmesg" exe="/usr/bin/sudo" terminal=pts/0 res=success'
[   78.054722] audit: type=1110 audit(1685518562.201:200): pid=1383 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_localuser,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   78.057405] audit: type=1105 audit(1685518562.205:201): pid=1383 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   78.057701] audit: type=2300 audit(1685518562.205:202): pid=1383 uid=1000 auid=1000 ses=2 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='newrole: old-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 new-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'

[-- Attachment #1.3: hvm.log --]
[-- Type: text/plain, Size: 61441 bytes --]

[    0.000000] Linux version 6.3.2-1.qubes.fc37.x86_64 (mockbuild@0c424897d4764da983d21c08af6d60ea) (gcc (GCC) 12.2.1 20221121 (Red Hat 12.2.1-4), GNU ld version 2.38-27.fc37) #1 SMP PREEMPT_DYNAMIC Thu May 11 22:08:07 GMT 2023
[    0.000000] Command line: root=/dev/mapper/dmroot ro nomodeset console=hvc0 rd_NO_PLYMOUTH rd.plymouth.enable=0 plymouth.enable=0 clocksource=tsc xen_scrub_pages=0  selinux=1 security=selinux
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 3632
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000efffefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000effff000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fc000000-0x00000000fc00afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000fc00b000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000108ffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Xen HVM domU, BIOS 4.17.0 04/25/2023
[    0.000000] Hypervisor detected: Xen HVM
[    0.000000] Xen version 4.17.
[    0.000000] platform_pci_unplug: Netfront and the Xen platform PCI driver have been compiled for this kernel: unplug emulated NICs.
[    0.000000] platform_pci_unplug: Blkfront and the Xen platform PCI driver have been compiled for this kernel: unplug emulated disks.
               You might have to change the root device
               from /dev/hd[a-d] to /dev/xvd[a-d]
               in your root= kernel command line option
[    0.000024] HVMOP_pagetable_dying not supported
[    0.018276] tsc: Fast TSC calibration using PIT
[    0.018277] tsc: Detected 2803.524 MHz processor
[    0.018278] tsc: Detected 2803.186 MHz TSC
[    0.018688] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.018690] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.018693] last_pfn = 0x109000 max_arch_pfn = 0x400000000
[    0.018728] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.018774] last_pfn = 0xeffff max_arch_pfn = 0x400000000
[    0.025698] found SMP MP-table at [mem 0x000f5a80-0x000f5a8f]
[    0.025721] Using GB pages for direct mapping
[    0.025847] RAMDISK: [mem 0xef8d5000-0xeffeffff]
[    0.025851] ACPI: Early table checksum verification disabled
[    0.025859] ACPI: RSDP 0x00000000000F59D0 000024 (v02 Xen   )
[    0.025862] ACPI: XSDT 0x00000000FC00A650 000054 (v01 Xen    HVM      00000000 HVML 00000000)
[    0.025867] ACPI: FACP 0x00000000FC00A370 0000F4 (v04 Xen    HVM      00000000 HVML 00000000)
[    0.025871] ACPI: DSDT 0x00000000FC001040 0092A3 (v02 Xen    HVM      00000000 INTL 20220331)
[    0.025874] ACPI: FACS 0x00000000FC001000 000040
[    0.025876] ACPI: FACS 0x00000000FC001000 000040
[    0.025877] ACPI: APIC 0x00000000FC00A470 000070 (v02 Xen    HVM      00000000 HVML 00000000)
[    0.025880] ACPI: HPET 0x00000000FC00A560 000038 (v01 Xen    HVM      00000000 HVML 00000000)
[    0.025882] ACPI: WAET 0x00000000FC00A5A0 000028 (v01 Xen    HVM      00000000 HVML 00000000)
[    0.025884] ACPI: SSDT 0x00000000FC00A5D0 000031 (v02 Xen    HVM      00000000 INTL 20220331)
[    0.025886] ACPI: SSDT 0x00000000FC00A610 000031 (v02 Xen    HVM      00000000 INTL 20220331)
[    0.025888] ACPI: Reserving FACP table memory at [mem 0xfc00a370-0xfc00a463]
[    0.025889] ACPI: Reserving DSDT table memory at [mem 0xfc001040-0xfc00a2e2]
[    0.025889] ACPI: Reserving FACS table memory at [mem 0xfc001000-0xfc00103f]
[    0.025890] ACPI: Reserving FACS table memory at [mem 0xfc001000-0xfc00103f]
[    0.025890] ACPI: Reserving APIC table memory at [mem 0xfc00a470-0xfc00a4df]
[    0.025891] ACPI: Reserving HPET table memory at [mem 0xfc00a560-0xfc00a597]
[    0.025891] ACPI: Reserving WAET table memory at [mem 0xfc00a5a0-0xfc00a5c7]
[    0.025892] ACPI: Reserving SSDT table memory at [mem 0xfc00a5d0-0xfc00a600]
[    0.025892] ACPI: Reserving SSDT table memory at [mem 0xfc00a610-0xfc00a640]
[    0.027144] No NUMA configuration found
[    0.027147] Faking a node at [mem 0x0000000000000000-0x0000000108ffffff]
[    0.027155] NODE_DATA(0) allocated [mem 0x108fd5000-0x108ffffff]
[    0.032431] Zone ranges:
[    0.032466]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.032468]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.032469]   Normal   [mem 0x0000000100000000-0x0000000108ffffff]
[    0.032470]   Device   empty
[    0.032470] Movable zone start for each node
[    0.032473] Early memory node ranges
[    0.032473]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.032509]   node   0: [mem 0x0000000000100000-0x00000000efffefff]
[    0.032510]   node   0: [mem 0x0000000100000000-0x0000000108ffffff]
[    0.032546] Initmem setup node 0 [mem 0x0000000000001000-0x0000000108ffffff]
[    0.032650] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.032666] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.036704] On node 0, zone Normal: 1 pages in unavailable ranges
[    0.036896] On node 0, zone Normal: 28672 pages in unavailable ranges
[    0.038237] ACPI: PM-Timer IO Port: 0xb008
[    0.038317] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-47
[    0.038320] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.038322] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 low level)
[    0.038322] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 low level)
[    0.038323] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 low level)
[    0.038327] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.038327] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.038330] TSC deadline timer available
[    0.038365] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[    0.038372] [mem 0xf0000000-0xfbffffff] available for PCI devices
[    0.038406] Booting paravirtualized kernel on Xen HVM
[    0.038442] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.043500] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
[    0.044401] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u1048576
[    0.044406] pcpu-alloc: s221184 r8192 d28672 u1048576 alloc=1*2097152
[    0.044408] pcpu-alloc: [0] 0 1 
[    0.044427] xen: PV spinlocks enabled
[    0.044429] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.044439] Fallback order for Node 0: 0 
[    0.044441] Built 1 zonelists, mobility grouping on.  Total pages: 1003711
[    0.044444] Policy zone: Normal
[    0.044445] Kernel command line: root=/dev/mapper/dmroot ro nomodeset console=hvc0 rd_NO_PLYMOUTH rd.plymouth.enable=0 plymouth.enable=0 clocksource=tsc xen_scrub_pages=0  selinux=1 security=selinux
[    0.044469] Booted with the nomodeset parameter. Only the system framebuffer will be available
[    0.044529] Unknown kernel command line parameters "rd_NO_PLYMOUTH", will be passed to user space.
[    0.044580] random: crng init done
[    0.044844] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.044976] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.045177] mem auto-init: stack:all(zero), heap alloc:on, heap free:on
[    0.045178] mem auto-init: clearing system memory may take some time...
[    0.045185] software IO TLB: area num 2.
[    0.814885] Memory: 3868756K/4079220K available (18432K kernel code, 3208K rwdata, 8692K rodata, 4992K init, 18632K bss, 210204K reserved, 0K cma-reserved)
[    0.814975] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.814983] Kernel/User page tables isolation: enabled
[    0.815003] ftrace: allocating 54208 entries in 212 pages
[    0.821692] ftrace: allocated 212 pages with 4 groups
[    0.822378] Dynamic Preempt: voluntary
[    0.822399] rcu: Preemptible hierarchical RCU implementation.
[    0.822403] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2.
[    0.822404] 	Trampoline variant of Tasks RCU enabled.
[    0.822404] 	Rude variant of Tasks RCU enabled.
[    0.822404] 	Tracing variant of Tasks RCU enabled.
[    0.822405] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.822405] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.824533] NR_IRQS: 524544, nr_irqs: 512, preallocated irqs: 16
[    0.824634] xen:events: Using FIFO-based ABI
[    0.824689] xen:events: Xen HVM callback vector for event delivery is enabled
[    0.824891] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.826068] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.889781] Console: colour VGA+ 80x25
[    0.889803] printk: console [hvc0] enabled
[    0.891060] ACPI: Core revision 20221020
[    0.891167] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 30580167144 ns
[    0.891251] APIC: Switch to symmetric I/O mode setup
[    0.891852] x2apic enabled
[    0.892365] Switched APIC routing to physical x2apic.
[    0.894103] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.898731] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2868027b22e, max_idle_ns: 440795325881 ns
[    0.898755] Calibrating delay loop (skipped), value calculated using timer frequency.. 5606.37 BogoMIPS (lpj=2803186)
[    0.898771] pid_max: default: 32768 minimum: 301
[    0.898815] LSM: initializing lsm=lockdown,capability,yama,integrity,selinux
[    0.898834] Yama: becoming mindful.
[    0.898847] SELinux:  Initializing.
[    0.898902] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.898915] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.899255] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.899413] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.899421] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.899434] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.899449] Spectre V2 : Mitigation: Retpolines
[    0.899457] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.899469] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.899478] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.899489] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.899502] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.899512] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.899527] MDS: Mitigation: Clear CPU buffers
[    0.912328] Freeing SMP alternatives memory: 48K
[    0.912476] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.912589] Xen: using vcpuop timer interface
[    0.912595] installing Xen timer for CPU 0
[    0.912705] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.912741] cpu 0 spinlock event irq 52
[    0.912751] cblist_init_generic: Setting adjustable number of callback queues.
[    0.912760] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.912832] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.912865] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.912897] Performance Events: unsupported p6 CPU model 140 no PMU driver, software events only.
[    0.912961] rcu: Hierarchical SRCU implementation.
[    0.912970] rcu: 	Max phase no-delay instances is 400.
[    0.914253] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.914836] smp: Bringing up secondary CPUs ...
[    0.915089] installing Xen timer for CPU 1
[    0.915168] x86: Booting SMP configuration:
[    0.915174] .... node  #0, CPUs:      #1
[    0.066858] APIC: Stale IRR: 00080000,00000000,00000000,00000000,00000000,00000000,00000000,00000000 ISR: 00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000
[    0.916819] cpu 1 spinlock event irq 57
[    0.916863] smp: Brought up 1 node, 2 CPUs
[    0.916872] smpboot: Max logical packages: 1
[    0.916881] smpboot: Total of 2 processors activated (11212.74 BogoMIPS)
[    0.917853] devtmpfs: initialized
[    0.917853] x86/mm: Memory block size: 128MB
[    0.919043] ACPI: PM: Registering ACPI NVS region [mem 0xfc000000-0xfc00afff] (45056 bytes)
[    0.919043] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.919043] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.919043] pinctrl core: initialized pinctrl subsystem
[    0.919812] PM: RTC time: 07:39:11, date: 2023-05-31
[    0.921973] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.922091] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[    0.922108] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.922122] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.922156] audit: initializing netlink subsys (disabled)
[    0.922230] audit: type=2000 audit(1685518751.876:1): state=initialized audit_enabled=0 res=1
[    0.922230] thermal_sys: Registered thermal governor 'fair_share'
[    0.922230] thermal_sys: Registered thermal governor 'bang_bang'
[    0.922757] thermal_sys: Registered thermal governor 'step_wise'
[    0.922767] thermal_sys: Registered thermal governor 'user_space'
[    0.922784] cpuidle: using governor menu
[    0.924119] PCI: Using configuration type 1 for base access
[    0.924243] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.951785] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.951799] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.951809] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.951819] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.964866] cryptd: max_cpu_qlen set to 1000
[    0.965803] raid6: skipped pq benchmark and selected avx512x4
[    0.965869] raid6: using avx512x2 recovery algorithm
[    0.965914] ACPI: Added _OSI(Module Device)
[    0.965914] ACPI: Added _OSI(Processor Device)
[    0.965914] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.965914] ACPI: Added _OSI(Processor Aggregator Device)
[    0.972784] ACPI: 3 ACPI AML tables successfully acquired and loaded
[    0.973313] xen: --> pirq=16 -> irq=9 (gsi=9)
[    0.975965] ACPI: Interpreter enabled
[    0.975979] ACPI: PM: (supports S0 S3 S5)
[    0.975986] ACPI: Using IOAPIC for interrupt routing
[    0.976281] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.976295] PCI: Ignoring E820 reservations for host bridge windows
[    0.976980] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.985929] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.985945] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.985959] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    0.986790] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    0.987113] PCI host bridge to bus 0000:00
[    0.987122] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.987149] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.987160] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.987174] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfbffffff window]
[    0.987187] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.987807] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[    0.991334] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[    0.995845] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
[    0.998160] pci 0000:00:01.1: reg 0x20: [io  0xc300-0xc30f]
[    0.999153] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.999167] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.999177] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.999189] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    1.000229] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
[    1.003823] pci 0000:00:01.3: quirk: [io  0xb000-0xb03f] claimed by PIIX4 ACPI
[    1.003892] pci 0000:00:01.3: quirk: [io  0xb100-0xb10f] claimed by PIIX4 SMB
[    1.005755] pci 0000:00:02.0: [5853:0001] type 00 class 0xff8000
[    1.006944] pci 0000:00:02.0: reg 0x10: [io  0xc000-0xc0ff]
[    1.007754] pci 0000:00:02.0: reg 0x14: [mem 0xf0000000-0xf0ffffff pref]
[    1.014755] pci 0000:00:04.0: [1234:1111] type 00 class 0x030000
[    1.015955] pci 0000:00:04.0: reg 0x10: [mem 0xf1000000-0xf1ffffff pref]
[    1.017755] pci 0000:00:04.0: reg 0x18: [mem 0xf201a000-0xf201afff]
[    1.021107] pci 0000:00:04.0: reg 0x30: [mem 0xf2000000-0xf200ffff pref]
[    1.021337] pci 0000:00:04.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.022799] pci 0000:00:05.0: [8086:24cd] type 00 class 0x0c0320
[    1.023934] pci 0000:00:05.0: reg 0x10: [mem 0xf201b000-0xf201bfff]
[    1.030066] pci 0000:00:06.0: [8086:2668] type 00 class 0x040300
[    1.031333] pci 0000:00:06.0: reg 0x10: [mem 0xf2010000-0xf2013fff]
[    1.038755] pci 0000:00:08.0: [1033:0194] type 00 class 0x0c0330
[    1.040149] pci 0000:00:08.0: reg 0x10: [mem 0xf2014000-0xf2017fff 64bit]
[    1.047939] ACPI: PCI: Interrupt link LNKA configured for IRQ 5
[    1.048220] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    1.048859] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    1.049151] ACPI: PCI: Interrupt link LNKD configured for IRQ 5
[    1.052083] xen:balloon: Initialising balloon driver
[    1.052106] iommu: Default domain type: Translated 
[    1.052106] iommu: DMA domain TLB invalidation policy: lazy mode 
[    1.052841] SCSI subsystem initialized
[    1.052895] libata version 3.00 loaded.
[    1.052895] ACPI: bus type USB registered
[    1.052895] usbcore: registered new interface driver usbfs
[    1.052895] usbcore: registered new interface driver hub
[    1.052895] usbcore: registered new device driver usb
[    1.052895] pps_core: LinuxPPS API ver. 1 registered
[    1.052895] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.052895] PTP clock support registered
[    1.052895] EDAC MC: Ver: 3.0.0
[    1.054991] NetLabel: Initializing
[    1.055056] NetLabel:  domain hash size = 128
[    1.055064] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.055089] NetLabel:  unlabeled traffic allowed by default
[    1.055101] mctp: management component transport protocol core
[    1.055111] NET: Registered PF_MCTP protocol family
[    1.055126] PCI: Using ACPI for IRQ routing
[    1.055133] PCI: pci_cache_line_size set to 64 bytes
[    1.057205] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    1.057206] e820: reserve RAM buffer [mem 0xeffff000-0xefffffff]
[    1.057207] e820: reserve RAM buffer [mem 0x109000000-0x10bffffff]
[    1.057220] pci 0000:00:04.0: vgaarb: setting as boot VGA device
[    1.057220] pci 0000:00:04.0: vgaarb: bridge control possible
[    1.057220] pci 0000:00:04.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.057755] vgaarb: loaded
[    1.057821] hpet: 3 channels of 0 reserved for per-cpu timers
[    1.057846] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    1.057857] hpet0: 3 comparators, 64-bit 62.500000 MHz counter
[    1.060830] clocksource: Switched to clocksource xen
[    1.080067] VFS: Disk quotas dquot_6.6.0
[    1.080132] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.213195] pnp: PnP ACPI init
[    1.213312] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[    1.213388] system 00:01: [io  0x08a0-0x08a3] has been reserved
[    1.213401] system 00:01: [io  0x0cc0-0x0ccf] has been reserved
[    1.213412] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    1.213441] xen: --> pirq=17 -> irq=8 (gsi=8)
[    1.213461] xen: --> pirq=18 -> irq=12 (gsi=12)
[    1.213480] xen: --> pirq=19 -> irq=1 (gsi=1)
[    1.213498] xen: --> pirq=20 -> irq=6 (gsi=6)
[    1.213500] pnp 00:05: [dma 2]
[    1.213540] system 00:06: [io  0xae00-0xae0f] has been reserved
[    1.213552] system 00:06: [io  0xb044-0xb047] has been reserved
[    1.214591] pnp: PnP ACPI: found 7 devices
[    1.222007] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.222061] NET: Registered PF_INET protocol family
[    1.222090] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.222799] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    1.222819] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    1.222835] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    1.222873] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[    1.223570] TCP: Hash tables configured (established 32768 bind 32768)
[    1.223642] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[    1.224120] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    1.224247] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    1.224417] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.224498] NET: Registered PF_XDP protocol family
[    1.224514] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    1.224526] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    1.224537] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    1.224620] pci_bus 0000:00: resource 7 [mem 0xf0000000-0xfbffffff window]
[    1.224719] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    1.224779] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    1.225376] xen: --> pirq=21 -> irq=39 (gsi=39)
[    1.226379] xen: --> pirq=22 -> irq=17 (gsi=17)
[    1.226991] PCI: CLS 0 bytes, default 64
[    1.227004] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.227015] software IO TLB: mapped [mem 0x00000000eb8d5000-0x00000000ef8d5000] (64MB)
[    1.227077] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2868027b22e, max_idle_ns: 440795325881 ns
[    1.227147] clocksource: Switched to clocksource tsc
[    1.227315] Trying to unpack rootfs image as initramfs...
[    1.310942] Freeing initrd memory: 7276K
[    1.311625] Initialise system trusted keyrings
[    1.311714] Key type blacklist registered
[    1.311791] workingset: timestamp_bits=36 max_order=20 bucket_order=0
[    1.311818] zbud: loaded
[    1.312205] integrity: Platform Keyring initialized
[    1.312283] integrity: Machine keyring initialized
[    1.319152] NET: Registered PF_ALG protocol family
[    1.319164] xor: automatically using best checksumming function   avx       
[    1.319177] Key type asymmetric registered
[    1.319184] Asymmetric key parser 'x509' registered
[    1.322754] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    1.322971] io scheduler mq-deadline registered
[    1.322983] io scheduler kyber registered
[    1.322996] io scheduler bfq registered
[    1.325026] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    1.325502] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    1.325612] ACPI: button: Power Button [PWRF]
[    1.325658] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[    1.325736] ACPI: button: Sleep Button [SLPF]
[    1.424702] xen: --> pirq=23 -> irq=24 (gsi=24)
[    1.424844] xen:grant_table: Grant tables using version 1 layout
[    1.424879] Grant table initialized
[    1.429485] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.430565] Non-volatile memory driver v1.3
[    1.430579] Linux agpgart interface v0.103
[    1.430764] ACPI: bus type drm_connector registered
[    1.438665] ata_piix 0000:00:01.1: version 2.13
[    1.438759] ata_piix 0000:00:01.1: enabling device (0000 -> 0001)
[    1.439967] scsi host0: ata_piix
[    1.440133] scsi host1: ata_piix
[    1.440157] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc300 irq 14
[    1.440171] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc308 irq 15
[    1.444472] usbcore: registered new interface driver usbserial_generic
[    1.444606] usbserial: USB Serial support registered for generic
[    1.444702] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    1.447355] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.447379] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.447442] mousedev: PS/2 mouse device common for all mice
[    1.448594] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    1.456287] rtc_cmos 00:02: registered as rtc0
[    1.456326] rtc_cmos 00:02: setting system clock to 2023-05-31T07:39:12 UTC (1685518752)
[    1.456366] rtc_cmos 00:02: alarms up to one day, 114 bytes nvram
[    1.456389] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.456411] device-mapper: uevent: version 1.0.3
[    1.456443] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[    1.456498] intel_pstate: CPU model not supported
[    1.456559] hid: raw HID events driver (C) Jiri Kosina
[    1.456580] usbcore: registered new interface driver usbhid
[    1.456592] usbhid: USB HID core driver
[    1.456677] drop_monitor: Initializing network drop monitor service
[    1.456740] Initializing XFRM netlink socket
[    1.456760] NET: Registered PF_INET6 protocol family
[    1.467899] Segment Routing with IPv6
[    1.467979] RPL Segment Routing with IPv6
[    1.467999] In-situ OAM (IOAM) with IPv6
[    1.468053] mip6: Mobile IPv6
[    1.468104] NET: Registered PF_PACKET protocol family
[    1.542125] IPI shorthand broadcast: enabled
[    1.542238] AVX2 version of gcm_enc/dec engaged.
[    1.542401] AES CTR mode by8 optimization enabled
[    1.543831] sched_clock: Marking stable (1477485310, 65858244)->(1758243692, -214900138)
[    1.543987] registered taskstats version 1
[    1.685444] Loading compiled-in X.509 certificates
[    1.692037] Loaded X.509 cert 'Build time autogenerated kernel key: 71b12e3caf24d55eb39a8d585ceb01a5ebb6ae3a'
[    1.692822] zswap: loaded using pool lzo/zbud
[    1.695143] page_owner is disabled
[    1.695380] Key type .fscrypt registered
[    1.695389] Key type fscrypt-provisioning registered
[    1.697151] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=yes
[    1.697273] Key type big_key registered
[    1.699197] Key type encrypted registered
[    1.700129] ima: No TPM chip found, activating TPM-bypass!
[    1.700209] Loading compiled-in module X.509 certificates
[    1.700607] Loaded X.509 cert 'Build time autogenerated kernel key: 71b12e3caf24d55eb39a8d585ceb01a5ebb6ae3a'
[    1.700782] ima: Allocated hash algorithm: sha256
[    1.700808] ima: No architecture policies found
[    1.700840] evm: Initialising EVM extended attributes:
[    1.700914] evm: security.selinux
[    1.700923] evm: security.SMACK64 (disabled)
[    1.700934] evm: security.SMACK64EXEC (disabled)
[    1.700944] evm: security.SMACK64TRANSMUTE (disabled)
[    1.700956] evm: security.SMACK64MMAP (disabled)
[    1.700966] evm: security.apparmor
[    1.700974] evm: security.ima
[    1.700982] evm: security.capability
[    1.700989] evm: HMAC attrs: 0x1
[    1.723581] alg: No test for 842 (842-scomp)
[    1.723617] alg: No test for 842 (842-generic)
[    1.805993] xenbus_probe_frontend: Device with no driver: device/vbd/51712
[    1.806009] xenbus_probe_frontend: Device with no driver: device/vbd/51728
[    1.806024] xenbus_probe_frontend: Device with no driver: device/vbd/51744
[    1.806067] xenbus_probe_frontend: Device with no driver: device/vbd/51760
[    1.806082] xenbus_probe_frontend: Device with no driver: device/vif/0
[    1.806110] PM:   Magic number: 7:198:674
[    1.806215] RAS: Correctable Errors collector initialized.
[    1.806240] xen:balloon: Waiting for initial ballooning down having finished.
[    2.323465] xen:balloon: Initial ballooning down finished.
[    2.332180] Freeing unused decrypted memory: 2036K
[    2.332959] Freeing unused kernel image (initmem) memory: 4992K
[    2.333038] Write protecting the kernel read-only data: 28672k
[    2.333308] Freeing unused kernel image (rodata/data gap) memory: 1548K
[    2.333371] rodata_test: all tests were successful
[    2.333386] Run /init as init process
[    2.333393]   with arguments:
[    2.333394]     /init
[    2.333394]     rd_NO_PLYMOUTH
[    2.333395]   with environment:
[    2.333395]     HOME=/
[    2.333396]     TERM=linux
[    2.340292] Invalid max_queues (4), will use default max: 2.
[    2.340675] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[    2.349573] blkfront: xvda: flush diskcache: enabled; persistent grants: enabled; indirect descriptors: enabled; bounce buffer: enabled
[    2.352338]  xvda: xvda1 xvda2 xvda3
[    2.354693] blkfront: xvdb: flush diskcache: enabled; persistent grants: enabled; indirect descriptors: enabled; bounce buffer: enabled
[    2.356756] blkfront: xvdc: flush diskcache: enabled; persistent grants: enabled; indirect descriptors: enabled; bounce buffer: enabled
[    2.358326] blkfront: xvdd: barrier or flush: disabled; persistent grants: enabled; indirect descriptors: enabled; bounce buffer: enabled
[    2.739164]  xvdc: xvdc1 xvdc3
[    2.756099] EXT4-fs (xvda3): mounted filesystem f76da228-62b7-4543-835d-9ab0d57bbc45 with ordered data mode. Quota mode: none.
[    2.760621] /dev/xvdd: Can't open blockdev
[    2.761510] EXT4-fs (xvdd): mounting ext3 file system using the ext4 subsystem
[    2.764870] EXT4-fs (xvdd): mounted filesystem 63438b4b-f5d8-462a-82fe-9d52951a6722 with ordered data mode. Quota mode: none.
[    2.867437] audit: type=1404 audit(1685518753.910:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
[    2.895748] SELinux:  Class user_namespace not defined in policy.
[    2.895766] SELinux: the above unknown classes and permissions will be allowed
[    2.897736] SELinux:  policy capability network_peer_controls=1
[    2.897751] SELinux:  policy capability open_perms=1
[    2.897759] SELinux:  policy capability extended_socket_class=1
[    2.897769] SELinux:  policy capability always_check_network=0
[    2.897779] SELinux:  policy capability cgroup_seclabel=1
[    2.897788] SELinux:  policy capability nnp_nosuid_transition=1
[    2.897798] SELinux:  policy capability genfs_seclabel_symlinks=1
[    2.897808] SELinux:  policy capability ioctl_skip_cloexec=0
[    2.926873] audit: type=1403 audit(1685518753.970:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
[    2.928375] systemd[1]: Successfully loaded SELinux policy in 61.539ms.
[    2.941021] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 5.013ms.
[    2.946938] systemd[1]: systemd 251.14-2.fc37 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    2.946991] systemd[1]: Detected virtualization xen.
[    2.947003] systemd[1]: Detected architecture x86-64.
[    2.948412] systemd[1]: No hostname configured, using default hostname.
[    2.948466] systemd[1]: Hostname set to <fedora>.
[    3.008356] systemd[1]: bpf-lsm: BPF LSM hook not enabled in the kernel, BPF LSM not supported
[    3.008900] memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=1 'systemd'
[    3.152910] block xvda: the capability attribute has been deprecated.
[    3.153079] systemd-gpt-auto-generator[226]: Failed to dissect: Permission denied
[    3.153403] (sd-execut[218]: /usr/lib/systemd/system-generators/systemd-gpt-auto-generator failed with exit status 1.
[    3.210596] systemd[1]: /usr/lib/systemd/system/qubes-u2fproxy@.service:8: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
[    3.216491] systemd[1]: /usr/lib/systemd/system/qubes-gui-agent.service:15: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
[    3.257751] systemd[1]: Queued start job for default target multi-user.target.
[    3.265441] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[    3.266226] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[    3.266712] systemd[1]: Created slice system-qubes\x2du2fproxy.slice - Slice /system/qubes-u2fproxy.
[    3.267158] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[    3.267563] systemd[1]: Created slice user.slice - User and Session Slice.
[    3.267770] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[    3.267951] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    3.268413] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    3.268543] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[    3.268619] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[    3.268709] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[    3.268776] systemd[1]: Reached target slices.target - Slice Units.
[    3.268854] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[    3.271426] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[    3.271662] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[    3.272120] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[    3.272695] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    3.273188] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[    3.354088] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
[    3.355404] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    3.355660] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    3.355913] systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket.
[    3.356834] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    3.357725] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    3.358558] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    3.359475] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[    3.360335] systemd[1]: Starting dev-xvdc1-swap.service - Enable swap on /dev/xvdc1 early...
[    3.363070] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    3.364011] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[    3.364036] Adding 1048572k swap on /dev/xvdc1.  Priority:-2 extents:1 across:1048572k SSFS
[    3.364928] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[    3.365713] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[    3.366569] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[    3.367398] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[    3.368323] systemd[1]: Starting qubes-remount-lib-modules.service - Remount /lib/modules for SELinux...
[    3.369283] systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line...
[    3.370160] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    3.371170] systemd[1]: Condition check resulted in dev-xvdc1.swap - /dev/xvdc1 being skipped.
[    3.371208] systemd[1]: Unnecessary job was removed for dev-xvdc1.device - /dev/xvdc1.
[    3.371580] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    3.371693] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    3.555164] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    3.555273] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[    3.555590] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    3.556003] systemd[1]: dev-xvdc1-swap.service: Deactivated successfully.
[    3.556106] systemd[1]: Finished dev-xvdc1-swap.service - Enable swap on /dev/xvdc1 early.
[    3.556256] systemd[1]: Reached target swap.target - Swaps.
[    3.564167] systemd[1]: Mounting tmp.mount - Temporary Directory /tmp...
[    3.564261] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
[    3.564988] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    3.568660] systemd[1]: Finished systemd-network-generator.service - Generate network units from Kernel command line.
[    3.568812] systemd[1]: Mounted tmp.mount - Temporary Directory /tmp.
[    3.571804] systemd[1]: usr-lib-modules.mount: Deactivated successfully.
[    3.574969] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    3.575082] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[    3.575591] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[    3.575692] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[    3.575886] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    3.575975] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[    3.576151] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    3.576244] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[    3.576650] systemd[1]: sys-fs-fuse-connections.mount - FUSE Control File System was skipped because of a failed condition check (ConditionPathExists=/sys/fs/fuse/connections).
[    3.614422] EXT4-fs (xvda3): re-mounted f76da228-62b7-4543-835d-9ab0d57bbc45. Quota mode: none.
[    3.626171] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[    3.626975] systemd[1]: modprobe@loop.service: Deactivated successfully.
[    3.627088] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[    3.627558] systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
[    3.627768] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[    3.754198] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[    3.754405] systemd[1]: ostree-remount.service - OSTree Remount OS/ Bind Mounts was skipped because of a failed condition check (ConditionKernelCommandLine=ostree).
[    3.754457] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of a failed condition check (ConditionFirstBoot=yes).
[    3.756427] EXT4-fs (xvdd): unmounting filesystem 63438b4b-f5d8-462a-82fe-9d52951a6722.
[    3.765956] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[    3.766037] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because all trigger condition checks failed.
[    3.766078] systemd[1]: systemd-sysusers.service - Create System Users was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[    3.769559] EXT4-fs (xvdd): mounting ext3 file system using the ext4 subsystem
[    3.771401] EXT4-fs (xvdd): mounted filesystem 63438b4b-f5d8-462a-82fe-9d52951a6722 with ordered data mode. Quota mode: none.
[    3.771773] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[    3.775186] systemd[1]: Finished qubes-remount-lib-modules.service - Remount /lib/modules for SELinux.
[    3.777475] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    3.789728] audit: type=1400 audit(1685518754.833:4): avc:  denied  { module_request } for  pid=268 comm="systemd-modules" kmod="crypto-pkcs1pad(rsa,sha256)" scontext=system_u:system_r:systemd_modules_load_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=system permissive=0
[    3.789775] audit: type=1400 audit(1685518754.833:5): avc:  denied  { module_request } for  pid=268 comm="systemd-modules" kmod="crypto-pkcs1pad(rsa,sha256)-all" scontext=system_u:system_r:systemd_modules_load_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=system permissive=0
[    3.796562] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[    3.796841] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[    3.798739] xen:xen_evtchn: Event-channel device installed
[    3.802563] systemd[1]: Started haveged.service - Entropy Daemon based on the HAVEGE algorithm.
[    3.803851] systemd[1]: Starting systemd-journald.service - Journal Service...
[    3.804839] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[    3.856516] systemd[1]: Started systemd-journald.service - Journal Service.
[    3.868507] systemd-journald[272]: Received client request to flush runtime journal.
[    3.871492] audit: type=1130 audit(1685518754.900:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.886355] audit: type=1130 audit(1685518754.929:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.975968] audit: type=1130 audit(1685518755.019:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.000021] Rounding down aligned max_sectors from 4294967295 to 4294967288
[    4.000112] db_root: cannot open: /etc/target
[    4.027237] audit: type=1130 audit(1685518755.070:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.043206] audit: type=1130 audit(1685518755.086:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.044606] memmap_init_zone_device initialised 32768 pages in 0ms
[    4.058258] piix4_smbus 0000:00:01.3: SMBus Host Controller not enabled!
[    4.130834] FDC 0 is a S82078B
[    4.156363] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    4.170433] ehci-pci 0000:00:05.0: EHCI Host Controller
[    4.170543] ehci-pci 0000:00:05.0: new USB bus registered, assigned bus number 1
[    4.171513] ehci-pci 0000:00:05.0: irq 39, io mem 0xf201b000
[    4.178752] EXT4-fs (xvdb): mounted filesystem 44c92d29-b8e7-4836-a951-f71caa9c065d with ordered data mode. Quota mode: none.
[    4.179586] ehci-pci 0000:00:05.0: USB 2.0 started, EHCI 1.00
[    4.179701] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.03
[    4.179716] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.179729] usb usb1: Product: EHCI Host Controller
[    4.179737] usb usb1: Manufacturer: Linux 6.3.2-1.qubes.fc37.x86_64 ehci_hcd
[    4.179750] usb usb1: SerialNumber: 0000:00:05.0
[    4.180934] hub 1-0:1.0: USB hub found
[    4.180948] hub 1-0:1.0: 6 ports detected
[    4.218910] xen_netfront: Initialising Xen virtual ethernet driver
[    4.221051] xen_netfront: backend supports XDP headroom
[    4.221067] vif vif-0: bouncing transmitted data to zeroed pages
[    4.234422] xhci_hcd 0000:00:08.0: xHCI Host Controller
[    4.237466] xhci_hcd 0000:00:08.0: new USB bus registered, assigned bus number 2
[    4.239507] xhci_hcd 0000:00:08.0: hcc params 0x00080001 hci version 0x100 quirks 0x0000000000000014
[    4.243069] xhci_hcd 0000:00:08.0: xHCI Host Controller
[    4.243119] xhci_hcd 0000:00:08.0: new USB bus registered, assigned bus number 3
[    4.243133] xhci_hcd 0000:00:08.0: Host supports USB 3.0 SuperSpeed
[    4.243899] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.03
[    4.243915] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.243928] usb usb2: Product: xHCI Host Controller
[    4.243936] usb usb2: Manufacturer: Linux 6.3.2-1.qubes.fc37.x86_64 xhci-hcd
[    4.243948] usb usb2: SerialNumber: 0000:00:08.0
[    4.244029] hub 2-0:1.0: USB hub found
[    4.244870] hub 2-0:1.0: 4 ports detected
[    4.245594] usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
[    4.245623] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.03
[    4.245636] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.245648] usb usb3: Product: xHCI Host Controller
[    4.245656] usb usb3: Manufacturer: Linux 6.3.2-1.qubes.fc37.x86_64 xhci-hcd
[    4.245668] usb usb3: SerialNumber: 0000:00:08.0
[    4.245816] hub 3-0:1.0: USB hub found
[    4.245946] hub 3-0:1.0: 4 ports detected
[    4.379401] xen: --> pirq=24 -> irq=40 (gsi=40)
[    4.397461] intel_rapl_msr: PL4 support detected.
[    4.400429] snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=1 (0x3/0x0/0x0/0x0/0x0) type:line
[    4.400432] snd_hda_codec_generic hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    4.400433] snd_hda_codec_generic hdaudioC0D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    4.400434] snd_hda_codec_generic hdaudioC0D0:    mono: mono_out=0x0
[    4.400435] snd_hda_codec_generic hdaudioC0D0:    inputs:
[    4.400435] snd_hda_codec_generic hdaudioC0D0:      Line=0x5
[    4.423367] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    4.571898] usb 1-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00
[    4.571917] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10
[    4.571930] usb 1-1: Product: QEMU USB Tablet
[    4.571939] usb 1-1: Manufacturer: QEMU
[    4.571946] usb 1-1: SerialNumber: 42
[    4.579643] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:05.0/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input6
[    4.580049] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:05.0-1/input0
[    4.589770] loop: module loaded
[    4.597653] fuse: init (API version 7.38)
[    6.737828] kauditd_printk_skb: 114 callbacks suppressed
[    6.737830] audit: type=1106 audit(1685518757.781:103): pid=617 uid=0 auid=1000 ses=2 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_selinux,pam_loginuid,pam_selinux,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_umask,pam_lastlog acct="user" exe="/usr/lib/qubes/qrexec-agent" hostname=? addr=? terminal=? res=success'
[    6.737890] audit: type=1104 audit(1685518757.781:104): pid=617 uid=0 auid=1000 ses=2 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_rootok acct="user" exe="/usr/lib/qubes/qrexec-agent" hostname=? addr=? terminal=? res=success'
[    7.285478] audit: type=1106 audit(1685518758.328:105): pid=612 uid=0 auid=1000 ses=1 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_selinux,pam_loginuid,pam_selinux,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_umask,pam_lastlog acct="user" exe="/usr/lib/qubes/qrexec-agent" hostname=? addr=? terminal=? res=success'
[    7.285536] audit: type=1104 audit(1685518758.328:106): pid=612 uid=0 auid=1000 ses=1 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_rootok acct="user" exe="/usr/lib/qubes/qrexec-agent" hostname=? addr=? terminal=? res=success'
[   10.588394] systemd-journald[272]: Time jumped backwards, rotating.
[   10.593625] audit: type=1130 audit(1685518760.006:107): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=qubes-sync-time comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   10.593664] audit: type=1131 audit(1685518760.006:108): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=qubes-sync-time comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   20.771405] audit: type=1101 audit(1685518770.184:109): pid=1028 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix,pam_localuser acct="user" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   20.771533] audit: type=1123 audit(1685518770.184:110): pid=1028 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/home/user" cmd=646E6620696E7374616C6C202D43202E2F69706572662D322E312E392D312E666333372E7838365F36342E72706D exe="/usr/bin/sudo" terminal=pts/0 res=success'
[   20.772368] audit: type=1110 audit(1685518770.185:111): pid=1028 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_localuser,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   20.774435] audit: type=1105 audit(1685518770.187:112): pid=1028 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   20.774999] audit: type=2300 audit(1685518770.187:113): pid=1028 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='newrole: old-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 new-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   22.548766] audit: type=1130 audit(1685518771.961:114): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=unbound-anchor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   22.548831] audit: type=1131 audit(1685518771.961:115): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=unbound-anchor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   23.992181] audit: type=1130 audit(1685518773.404:116): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=run-r98added9c3b340adae9435487780b67a comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   24.241420] audit: type=1130 audit(1685518773.653:117): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=man-db-cache-update comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   24.241459] audit: type=1131 audit(1685518773.653:118): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=man-db-cache-update comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   26.439229] kauditd_printk_skb: 1 callbacks suppressed
[   26.439232] audit: type=1106 audit(1685518775.851:120): pid=1028 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   26.439292] audit: type=1104 audit(1685518775.851:121): pid=1028 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_localuser,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   28.629938] audit: type=1101 audit(1685518778.042:122): pid=1139 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix,pam_localuser acct="user" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   28.630129] audit: type=1123 audit(1685518778.042:123): pid=1139 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/home/user" cmd=6E6674206164642072756C6520717562657320637573746F6D2D696E70757420616363657074 exe="/usr/bin/sudo" terminal=pts/0 res=success'
[   28.630624] audit: type=1110 audit(1685518778.043:124): pid=1139 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_localuser,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   28.632479] audit: type=1105 audit(1685518778.045:125): pid=1139 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   28.632730] audit: type=2300 audit(1685518778.045:126): pid=1139 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='newrole: old-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 new-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[   28.660272] audit: type=1325 audit(1685518778.072:127): table=qubes:8 family=2 entries=1 op=nft_register_rule pid=1140 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 comm="nft"
[   28.660644] audit: type=1300 audit(1685518778.072:127): arch=c000003e syscall=46 success=yes exit=144 a0=3 a1=7fff17f303a0 a2=0 a3=726ae8d67bc4 items=0 ppid=1139 pid=1140 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts0 ses=4 comm="nft" exe="/usr/sbin/nft" subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 key=(null)
[   28.661081] audit: type=1327 audit(1685518778.072:127): proctitle=2F7573722F7362696E2F6E6674006164640072756C6500717562657300637573746F6D2D696E70757400616363657074
[   37.352843] kauditd_printk_skb: 2 callbacks suppressed
[   37.352847] audit: type=1131 audit(1685518786.765:130): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   37.377516] audit: type=1334 audit(1685518786.790:131): prog-id=35 op=UNLOAD
[   37.377562] audit: type=1334 audit(1685518786.790:132): prog-id=34 op=UNLOAD
[   37.377599] audit: type=1334 audit(1685518786.790:133): prog-id=33 op=UNLOAD
[   44.946770] audit: type=1325 audit(1685518794.359:134): table=qubes-firewall:9 family=2 entries=4 op=nft_register_chain pid=1181 subj=system_u:system_r:unconfined_service_t:s0 comm="nft"
[   44.946810] audit: type=1300 audit(1685518794.359:134): arch=c000003e syscall=46 success=yes exit=880 a0=3 a1=7ffed54d4080 a2=0 a3=7a6b97eecbc4 items=0 ppid=529 pid=1181 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="nft" exe="/usr/sbin/nft" subj=system_u:system_r:unconfined_service_t:s0 key=(null)
[   44.946860] audit: type=1327 audit(1685518794.359:134): proctitle=6E6674002D66002F6465762F737464696E
[   44.978424] audit: type=1325 audit(1685518794.391:135): table=qubes-firewall:10 family=2 entries=3 op=nft_register_chain pid=1185 subj=system_u:system_r:unconfined_service_t:s0 comm="nft"
[   44.978456] audit: type=1300 audit(1685518794.391:135): arch=c000003e syscall=46 success=yes exit=420 a0=3 a1=7ffc8c7388f0 a2=0 a3=794d3bbbdbc4 items=0 ppid=529 pid=1185 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="nft" exe="/usr/sbin/nft" subj=system_u:system_r:unconfined_service_t:s0 key=(null)
[   44.978501] audit: type=1327 audit(1685518794.391:135): proctitle=6E6674002D66002F6465762F737464696E
[   44.984834] audit: type=1325 audit(1685518794.396:136): table=qubes-firewall:11 family=2 entries=3 op=nft_register_chain pid=1186 subj=system_u:system_r:unconfined_service_t:s0 comm="nft"
[   44.984864] audit: type=1300 audit(1685518794.396:136): arch=c000003e syscall=46 success=yes exit=420 a0=3 a1=7ffc97f36780 a2=0 a3=7deb403c0bc4 items=0 ppid=529 pid=1186 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="nft" exe="/usr/sbin/nft" subj=system_u:system_r:unconfined_service_t:s0 key=(null)
[   44.984909] audit: type=1327 audit(1685518794.396:136): proctitle=6E6674002D66002F6465762F737464696E
[   45.004767] vif vif-4-0 vif4.0: Guest Rx ready
[   45.062429] audit: type=1325 audit(1685518794.440:137): table=qubes-nat-accel:12 family=1 entries=8 op=nft_register_chain pid=1223 subj=system_u:system_r:iptables_t:s0-s0:c0.c1023 comm="nft"
[  106.608006] kauditd_printk_skb: 22 callbacks suppressed
[  106.608009] audit: type=1101 audit(1685518856.020:143): pid=1273 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix,pam_localuser acct="user" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  106.608814] audit: type=1123 audit(1685518856.021:144): pid=1273 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/home/user" cmd="dmesg" exe="/usr/bin/sudo" terminal=pts/1 res=success'
[  106.609939] audit: type=1110 audit(1685518856.022:145): pid=1273 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_localuser,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  106.614575] audit: type=1105 audit(1685518856.027:146): pid=1273 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  106.615633] audit: type=2300 audit(1685518856.028:147): pid=1273 uid=1000 auid=1000 ses=4 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='newrole: old-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 new-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 3%]

* Re: xen cache colors in ARM
  2023-05-16 18:00  0%                                                                 ` Michal Orzel
@ 2023-05-19 13:38  0%                                                                   ` Oleg Nikitenko
  0 siblings, 0 replies; 200+ results
From: Oleg Nikitenko @ 2023-05-19 13:38 UTC (permalink / raw)
  To: Michal Orzel
  Cc: Stefano Stabellini, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand

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

Hello,

Thanks Michal.

Then the next question. Now it is more related to the integration than to
the development.
A license for the xen in 4.17 revision at branch xlnx_rebase_4.17 xilinx
repo has changed.
I found out when I built this version.
Now bitbake and yocto build fault by COPYING file md5 hashe inequality
reason.
I found out md5 hash stored at
sources/libs/meta-virtualization/recipes-extended/xen directory in files
xen-tools_4.15.bb
xen_4.15.bb
xen_git.bb
xen-tools_git.bb
xen-tools_4.16.bb
xen_4.16.bb
So this is a question. Should I update the license file for all our
branches or is it possible to keep an old one for old branches ?

Regards,
Oleg


вт, 16 мая 2023 г. в 21:00, Michal Orzel <michal.orzel@amd.com>:

>
>
> On 16/05/2023 17:14, Oleg Nikitenko wrote:
> >
> >
> >
> > Hi guys,
> >
> > Thanks Michal.
> >
> > So if I have more RAM It is possible to increase the color density.
> >
> > For example 8Gb/16 it is 512 Mb approximately.
> > Is this correct ?
> Yes.
> To my previous reply I should also add that the number of colors depends
> on the page size,
> but in Xen, we use 4kB pages so 64kB way size results in 16 colors.
>
> ~Michal
>
> > Regards,
> > Oleg
> >
> > вт, 16 мая 2023 г. в 17:40, Michal Orzel <michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>:
> >
> >     Hi Oleg,
> >
> >     On 16/05/2023 14:15, Oleg Nikitenko wrote:
> >     >
> >     >
> >     >
> >     > Hello,
> >     >
> >     > Thanks a lot Michal.
> >     >
> >     > Then the next question.
> >     > When I just started my experiments with xen, Stefano mentioned
> that each cache's color size is 256M.
> >     > Is it possible to extend this figure ?
> >     With 16 colors (e.g. on Cortex-A53) and 4GB of memory, roughly each
> color is 256M (i.e. 4GB/16 = 256M).
> >     So as you can see this figure depends on the number of colors and
> memory size.
> >
> >     ~Michal
> >
> >     >
> >     > Regards,
> >     > Oleg
> >     >
> >     > пн, 15 мая 2023 г. в 11:57, Michal Orzel <michal.orzel@amd.com
> <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>:
> >     >
> >     >     Hi Oleg,
> >     >
> >     >     On 15/05/2023 10:51, Oleg Nikitenko wrote:
> >     >     >
> >     >     >
> >     >     >
> >     >     > Hello guys,
> >     >     >
> >     >     > Thanks a lot.
> >     >     > After a long problem list I was able to run xen with Dom0
> with a cache color.
> >     >     > One more question from my side.
> >     >     > I want to run a guest with color mode too.
> >     >     > I inserted a string into guest config file llc-colors =
> "9-13"
> >     >     > I got an error
> >     >     > [  457.517004] loop0: detected capacity change from 0 to
> 385840
> >     >     > Parsing config from /xen/red_config.cfg
> >     >     > /xen/red_config.cfg:26: config parsing error near `-colors':
> lexical error
> >     >     > warning: Config file looks like it contains Python code.
> >     >     > warning:  Arbitrary Python is no longer supported.
> >     >     > warning:  See https://wiki.xen.org/wiki/PythonInXlConfig <
> https://wiki.xen.org/wiki/PythonInXlConfig> <
> https://wiki.xen.org/wiki/PythonInXlConfig <
> https://wiki.xen.org/wiki/PythonInXlConfig>> <
> https://wiki.xen.org/wiki/PythonInXlConfig <
> https://wiki.xen.org/wiki/PythonInXlConfig> <
> https://wiki.xen.org/wiki/PythonInXlConfig <
> https://wiki.xen.org/wiki/PythonInXlConfig>>>
> >     >     > Failed to parse config: Invalid argument
> >     >     > So this is a question.
> >     >     > Is it possible to assign a color mode for the DomU by config
> file ?
> >     >     > If so, what string should I use?
> >     >     Please, always refer to the relevant documentation. In this
> case, for xl.cfg:
> >     >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890
> >>
> >     >
> >     >     ~Michal
> >     >
> >     >     >
> >     >     > Regards,
> >     >     > Oleg
> >     >     >
> >     >     > чт, 11 мая 2023 г. в 13:32, Oleg Nikitenko <
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>:
> >     >     >
> >     >     >     Hi Michal,
> >     >     >
> >     >     >     Thanks.
> >     >     >     This compilation previously had a name CONFIG_COLORING.
> >     >     >     It mixed me up.
> >     >     >
> >     >     >     Regards,
> >     >     >     Oleg
> >     >     >
> >     >     >     чт, 11 мая 2023 г. в 13:15, Michal Orzel <
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>:
> >     >     >
> >     >     >         Hi Oleg,
> >     >     >
> >     >     >         On 11/05/2023 12:02, Oleg Nikitenko wrote:
> >     >     >         >
> >     >     >         >
> >     >     >         >
> >     >     >         > Hello,
> >     >     >         >
> >     >     >         > Thanks Stefano.
> >     >     >         > Then the next question.
> >     >     >         > I cloned xen repo from xilinx site
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>> <
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>>> <
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>> <
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>>>>
> >     >     >         > I managed to build a xlnx_rebase_4.17 branch in my
> environment.
> >     >     >         > I did it without coloring first. I did not find
> any color footprints at this branch.
> >     >     >         > I realized coloring is not in the xlnx_rebase_4.17
> branch yet.
> >     >     >         This is not true. Cache coloring is in
> xlnx_rebase_4.17. Please see the docs:
> >     >     >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst>>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
> >>>
> >     >     >
> >     >     >         It describes the feature and documents the required
> properties.
> >     >     >
> >     >     >         ~Michal
> >     >     >
> >     >     >         >
> >     >     >         >
> >     >     >         > вт, 9 мая 2023 г. в 22:49, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>:
> >     >     >         >
> >     >     >         >     We test Xen Cache Coloring regularly on
> zcu102. Every Petalinux release
> >     >     >         >     (twice a year) is tested with cache coloring
> enabled. The last Petalinux
> >     >     >         >     release is 2023.1 and the kernel used is this:
> >     >     >         >
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>> <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>>> <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>> <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>
> >     <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>>>>
> >     >     >         >
> >     >     >         >
> >     >     >         >     On Tue, 9 May 2023, Oleg Nikitenko wrote:
> >     >     >         >     > Hello guys,
> >     >     >         >     >
> >     >     >         >     > I have a couple of more questions.
> >     >     >         >     > Have you ever run xen with the cache
> coloring at Zynq UltraScale+ MPSoC zcu102 xczu15eg ?
> >     >     >         >     > When did you run xen with the cache coloring
> last time ?
> >     >     >         >     > What kernel version did you use for Dom0
> when you ran xen with the cache coloring last time ?
> >     >     >         >     >
> >     >     >         >     > Regards,
> >     >     >         >     > Oleg
> >     >     >         >     >
> >     >     >         >     > пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>:
> >     >     >         >     >       Hi Michal,
> >     >     >         >     >
> >     >     >         >     > Thanks.
> >     >     >         >     >
> >     >     >         >     > Regards,
> >     >     >         >     > Oleg
> >     >     >         >     >
> >     >     >         >     > пт, 5 мая 2023 г. в 11:34, Michal Orzel <
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>:
> >     >     >         >     >       Hi Oleg,
> >     >     >         >     >
> >     >     >         >     >       Replying, so that you do not need to
> wait for Stefano.
> >     >     >         >     >
> >     >     >         >     >       On 05/05/2023 10:28, Oleg Nikitenko
> wrote:
> >     >     >         >     >       >
> >     >     >         >     >       >
> >     >     >         >     >       >
> >     >     >         >     >       > Hello Stefano,
> >     >     >         >     >       >
> >     >     >         >     >       > I would like to try a xen cache
> color property from this repo  https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>>> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>>>>
> >     >     >         >     >       <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>>> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>>>>>
> >     >     >         >     >       > Could you tell whot branch I should
> use ?
> >     >     >         >     >       Cache coloring feature is not part of
> the upstream tree and it is still under review.
> >     >     >         >     >       You can only find it integrated in the
> Xilinx Xen tree.
> >     >     >         >     >
> >     >     >         >     >       ~Michal
> >     >     >         >     >
> >     >     >         >     >       >
> >     >     >         >     >       > Regards,
> >     >     >         >     >       > Oleg
> >     >     >         >     >       >
> >     >     >         >     >       > пт, 28 апр. 2023 г. в 00:51, Stefano
> Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
> >     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>:
> >     >     >         >     >       >
> >     >     >         >     >       >     I am familiar with the zcu102
> but I don't know how you could possibly
> >     >     >         >     >       >     generate a SError.
> >     >     >         >     >       >
> >     >     >         >     >       >     I suggest to try to use
> ImageBuilder [1] to generate the boot
> >     >     >         >     >       >     configuration as a test because
> that is known to work well for zcu102.
> >     >     >         >     >       >
> >     >     >         >     >       >     [1]
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>>> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>>>> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>>
> >     <https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>>> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>>>>>
> >     >     >         >     >       >
> >     >     >         >     >       >
> >     >     >         >     >       >     On Thu, 27 Apr 2023, Oleg
> Nikitenko wrote:
> >     >     >         >     >       >     > Hello Stefano,
> >     >     >         >     >       >     >
> >     >     >         >     >       >     > Thanks for clarification.
> >     >     >         >     >       >     > We nighter use ImageBuilder
> nor uboot boot script.
> >     >     >         >     >       >     > A model is zcu102 compatible.
> >     >     >         >     >       >     >
> >     >     >         >     >       >     > Regards,
> >     >     >         >     >       >     > O.
> >     >     >         >     >       >     >
> >     >     >         >     >       >     > вт, 25 апр. 2023 г. в 21:21,
> Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
> >     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>:
> >     >     >         >     >       >     >       This is interesting. Are
> you using Xilinx hardware by any chance? If so,
> >     >     >         >     >       >     >       which board?
> >     >     >         >     >       >     >
> >     >     >         >     >       >     >       Are you using
> ImageBuilder to generate your boot.scr boot script? If so,
> >     >     >         >     >       >     >       could you please post
> your ImageBuilder config file? If not, can you
> >     >     >         >     >       >     >       post the source of your
> uboot boot script?
> >     >     >         >     >       >     >
> >     >     >         >     >       >     >       SErrors are supposed to
> be related to a hardware failure of some kind.
> >     >     >         >     >       >     >       You are not supposed to
> be able to trigger an SError easily by
> >     >     >         >     >       >     >       "mistake". I have not
> seen SErrors due to wrong cache coloring
> >     >     >         >     >       >     >       configurations on any
> Xilinx board before.
> >     >     >         >     >       >     >
> >     >     >         >     >       >     >       The differences between
> Xen with and without cache coloring from a
> >     >     >         >     >       >     >       hardware perspective are:
> >     >     >         >     >       >     >
> >     >     >         >     >       >     >       - With cache coloring,
> the SMMU is enabled and does address translations
> >     >     >         >     >       >     >         even for dom0. Without
> cache coloring the SMMU could be disabled, and
> >     >     >         >     >       >     >         if enabled, the SMMU
> doesn't do any address translations for Dom0. If
> >     >     >         >     >       >     >         there is a hardware
> failure related to SMMU address translation it
> >     >     >         >     >       >     >         could only trigger
> with cache coloring. This would be my normal
> >     >     >         >     >       >     >         suggestion for you to
> explore, but the failure happens too early
> >     >     >         >     >       >     >         before any DMA-capable
> device is programmed. So I don't think this can
> >     >     >         >     >       >     >         be the issue.
> >     >     >         >     >       >     >
> >     >     >         >     >       >     >       - With cache coloring,
> the memory allocation is very different so you'll
> >     >     >         >     >       >     >         end up using different
> DDR regions for Dom0. So if your DDR is
> >     >     >         >     >       >     >         defective, you might
> only see a failure with cache coloring enabled
> >     >     >         >     >       >     >         because you end up
> using different regions.
> >     >     >         >     >       >     >
> >     >     >         >     >       >     >
> >     >     >         >     >       >     >       On Tue, 25 Apr 2023,
> Oleg Nikitenko wrote:
> >     >     >         >     >       >     >       > Hi Stefano,
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       > Thank you.
> >     >     >         >     >       >     >       > If I build xen without
> colors support there is not this error.
> >     >     >         >     >       >     >       > All the domains are
> booted well.
> >     >     >         >     >       >     >       > Hense it can not be a
> hardware issue.
> >     >     >         >     >       >     >       > This panic arrived
> during unpacking the rootfs.
> >     >     >         >     >       >     >       > Here I attached the
> boot log xen/Dom0 without color.
> >     >     >         >     >       >     >       > A highlighted strings
> printed exactly after the place where 1-st time panic arrived.
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >  Xen 4.16.1-pre
> >     >     >         >     >       >     >       > (XEN) Xen version
> 4.16.1-pre (nole2390@(none)) (aarch64-portable-linux-gcc (GCC) 11.3.0)
> debug=y
> >     >     >         >     >       2023-04-21
> >     >     >         >     >       >     >       > (XEN) Latest
> ChangeSet: Wed Apr 19 12:56:14 2023 +0300 git:321687b231-dirty
> >     >     >         >     >       >     >       > (XEN) build-id:
> c1847258fdb1b79562fc710dda40008f96c0fde5
> >     >     >         >     >       >     >       > (XEN) Processor:
> 00000000410fd034: "ARM Limited", variant: 0x0, part 0xd03,rev 0x4
> >     >     >         >     >       >     >       > (XEN) 64-bit Execution:
> >     >     >         >     >       >     >       > (XEN)   Processor
> Features: 0000000000002222 0000000000000000
> >     >     >         >     >       >     >       > (XEN)     Exception
> Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
> >     >     >         >     >       >     >       > (XEN)     Extensions:
> FloatingPoint AdvancedSIMD
> >     >     >         >     >       >     >       > (XEN)   Debug
> Features: 0000000010305106 0000000000000000
> >     >     >         >     >       >     >       > (XEN)   Auxiliary
> Features: 0000000000000000 0000000000000000
> >     >     >         >     >       >     >       > (XEN)   Memory Model
> Features: 0000000000001122 0000000000000000
> >     >     >         >     >       >     >       > (XEN)   ISA Features:
>  0000000000011120 0000000000000000
> >     >     >         >     >       >     >       > (XEN) 32-bit Execution:
> >     >     >         >     >       >     >       > (XEN)   Processor
> Features: 0000000000000131:0000000000011011
> >     >     >         >     >       >     >       > (XEN)     Instruction
> Sets: AArch32 A32 Thumb Thumb-2 Jazelle
> >     >     >         >     >       >     >       > (XEN)     Extensions:
> GenericTimer Security
> >     >     >         >     >       >     >       > (XEN)   Debug
> Features: 0000000003010066
> >     >     >         >     >       >     >       > (XEN)   Auxiliary
> Features: 0000000000000000
> >     >     >         >     >       >     >       > (XEN)   Memory Model
> Features: 0000000010201105 0000000040000000
> >     >     >         >     >       >     >       > (XEN)
>          0000000001260000 0000000002102211
> >     >     >         >     >       >     >       > (XEN)   ISA Features:
> 0000000002101110 0000000013112111 0000000021232042
> >     >     >         >     >       >     >       > (XEN)
> 0000000001112131 0000000000011142 0000000000011121
> >     >     >         >     >       >     >       > (XEN) Using SMC
> Calling Convention v1.2
> >     >     >         >     >       >     >       > (XEN) Using PSCI v1.1
> >     >     >         >     >       >     >       > (XEN) SMP: Allowing 4
> CPUs
> >     >     >         >     >       >     >       > (XEN) Generic Timer
> IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
> >     >     >         >     >       >     >       > (XEN) GICv2
> initialization:
> >     >     >         >     >       >     >       > (XEN)
> gic_dist_addr=00000000f9010000
> >     >     >         >     >       >     >       > (XEN)
> gic_cpu_addr=00000000f9020000
> >     >     >         >     >       >     >       > (XEN)
> gic_hyp_addr=00000000f9040000
> >     >     >         >     >       >     >       > (XEN)
> gic_vcpu_addr=00000000f9060000
> >     >     >         >     >       >     >       > (XEN)
> gic_maintenance_irq=25
> >     >     >         >     >       >     >       > (XEN) GICv2: Adjusting
> CPU interface base to 0xf902f000
> >     >     >         >     >       >     >       > (XEN) GICv2: 192
> lines, 4 cpus, secure (IID 0200143b).
> >     >     >         >     >       >     >       > (XEN) Using scheduler:
> null Scheduler (null)
> >     >     >         >     >       >     >       > (XEN) Initializing
> null scheduler
> >     >     >         >     >       >     >       > (XEN) WARNING: This is
> experimental software in development.
> >     >     >         >     >       >     >       > (XEN) Use at your own
> risk.
> >     >     >         >     >       >     >       > (XEN) Allocated
> console ring of 32 KiB.
> >     >     >         >     >       >     >       > (XEN) CPU0: Guest
> atomics will try 12 times before pausing the domain
> >     >     >         >     >       >     >       > (XEN) Bringing up CPU1
> >     >     >         >     >       >     >       > (XEN) CPU1: Guest
> atomics will try 13 times before pausing the domain
> >     >     >         >     >       >     >       > (XEN) CPU 1 booted.
> >     >     >         >     >       >     >       > (XEN) Bringing up CPU2
> >     >     >         >     >       >     >       > (XEN) CPU2: Guest
> atomics will try 13 times before pausing the domain
> >     >     >         >     >       >     >       > (XEN) CPU 2 booted.
> >     >     >         >     >       >     >       > (XEN) Bringing up CPU3
> >     >     >         >     >       >     >       > (XEN) CPU3: Guest
> atomics will try 13 times before pausing the domain
> >     >     >         >     >       >     >       > (XEN) Brought up 4 CPUs
> >     >     >         >     >       >     >       > (XEN) CPU 3 booted.
> >     >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: probing hardware configuration...
> >     >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: SMMUv2 with:
> >     >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: stage 2 translation
> >     >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: stream matching with 48 register groups, mask
> 0x7fff<2>smmu:
> >     >     >         >     >       /axi/smmu@fd800000: 16 context
> >     >     >         >     >       >     >       banks (0
> >     >     >         >     >       >     >       > stage-2 only)
> >     >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
> >     >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: registered 29 master devices
> >     >     >         >     >       >     >       > (XEN) I/O
> virtualisation enabled
> >     >     >         >     >       >     >       > (XEN)  - Dom0 mode:
> Relaxed
> >     >     >         >     >       >     >       > (XEN) P2M: 40-bit IPA
> with 40-bit PA and 8-bit VMID
> >     >     >         >     >       >     >       > (XEN) P2M: 3 levels
> with order-1 root, VTCR 0x0000000080023558
> >     >     >         >     >       >     >       > (XEN) Scheduling
> granularity: cpu, 1 CPU per sched-resource
> >     >     >         >     >       >     >       > (XEN) alternatives:
> Patching with alt table 00000000002cc5c8 -> 00000000002ccb2c
> >     >     >         >     >       >     >       > (XEN) *** LOADING
> DOMAIN 0 ***
> >     >     >         >     >       >     >       > (XEN) Loading d0
> kernel from boot module @ 0000000001000000
> >     >     >         >     >       >     >       > (XEN) Loading ramdisk
> from boot module @ 0000000002000000
> >     >     >         >     >       >     >       > (XEN) Allocating 1:1
> mappings totalling 1600MB for dom0:
> >     >     >         >     >       >     >       > (XEN) BANK[0]
> 0x00000010000000-0x00000020000000 (256MB)
> >     >     >         >     >       >     >       > (XEN) BANK[1]
> 0x00000024000000-0x00000028000000 (64MB)
> >     >     >         >     >       >     >       > (XEN) BANK[2]
> 0x00000030000000-0x00000080000000 (1280MB)
> >     >     >         >     >       >     >       > (XEN) Grant table
> range: 0x00000000e00000-0x00000000e40000
> >     >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
> >     >     >         >     >       >     >       > (XEN) Allocating PPI
> 16 for event channel interrupt
> >     >     >         >     >       >     >       > (XEN) Extended region
> 0: 0x81200000->0xa0000000
> >     >     >         >     >       >     >       > (XEN) Extended region
> 1: 0xb1200000->0xc0000000
> >     >     >         >     >       >     >       > (XEN) Extended region
> 2: 0xc8000000->0xe0000000
> >     >     >         >     >       >     >       > (XEN) Extended region
> 3: 0xf0000000->0xf9000000
> >     >     >         >     >       >     >       > (XEN) Extended region
> 4: 0x100000000->0x600000000
> >     >     >         >     >       >     >       > (XEN) Extended region
> 5: 0x880000000->0x8000000000
> >     >     >         >     >       >     >       > (XEN) Extended region
> 6: 0x8001000000->0x10000000000
> >     >     >         >     >       >     >       > (XEN) Loading zImage
> from 0000000001000000 to 0000000010000000-0000000010e41008
> >     >     >         >     >       >     >       > (XEN) Loading d0
> initrd from 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
> >     >     >         >     >       >     >       > (XEN) Loading d0 DTB
> to 0x0000000013400000-0x000000001340cbdc
> >     >     >         >     >       >     >       > (XEN) Initial low
> memory virq threshold set at 0x4000 pages.
> >     >     >         >     >       >     >       > (XEN) Std. Loglevel:
> All
> >     >     >         >     >       >     >       > (XEN) Guest Loglevel:
> All
> >     >     >         >     >       >     >       > (XEN) *** Serial input
> to DOM0 (type 'CTRL-a' three times to switch input)
> >     >     >         >     >       >     >       > (XEN) null.c:353: 0
> <-- d0v0
> >     >     >         >     >       >     >       > (XEN) Freed 356kB init
> memory.
> >     >     >         >     >       >     >       > (XEN) d0v0 Unhandled
> SMC/HVC: 0x84000050
> >     >     >         >     >       >     >       > (XEN) d0v0 Unhandled
> SMC/HVC: 0x8600ff01
> >     >     >         >     >       >     >       > (XEN) d0v0: vGICD:
> unhandled word write 0x000000ffffffff to ICACTIVER4
> >     >     >         >     >       >     >       > (XEN) d0v0: vGICD:
> unhandled word write 0x000000ffffffff to ICACTIVER8
> >     >     >         >     >       >     >       > (XEN) d0v0: vGICD:
> unhandled word write 0x000000ffffffff to ICACTIVER12
> >     >     >         >     >       >     >       > (XEN) d0v0: vGICD:
> unhandled word write 0x000000ffffffff to ICACTIVER16
> >     >     >         >     >       >     >       > (XEN) d0v0: vGICD:
> unhandled word write 0x000000ffffffff to ICACTIVER20
> >     >     >         >     >       >     >       > (XEN) d0v0: vGICD:
> unhandled word write 0x000000ffffffff to ICACTIVER0
> >     >     >         >     >       >     >       > [    0.000000] Booting
> Linux on physical CPU 0x0000000000 [0x410fd034]
> >     >     >         >     >       >     >       > [    0.000000] Linux
> version 5.15.72-xilinx-v2022.1 (oe-user@oe-host)
> (aarch64-portable-linux-gcc (GCC)
> >     >     >         >     >       11.3.0, GNU ld (GNU
> >     >     >         >     >       >     >       Binutils)
> >     >     >         >     >       >     >       > 2.38.20220708) #1 SMP
> Tue Feb 21 05:47:54 UTC 2023
> >     >     >         >     >       >     >       > [    0.000000] Machine
> model: D14 Viper Board - White Unit
> >     >     >         >     >       >     >       > [    0.000000] Xen
> 4.16 support found
> >     >     >         >     >       >     >       > [    0.000000] Zone
> ranges:
> >     >     >         >     >       >     >       > [    0.000000]   DMA
>    [mem 0x0000000010000000-0x000000007fffffff]
> >     >     >         >     >       >     >       > [    0.000000]   DMA32
>    empty
> >     >     >         >     >       >     >       > [    0.000000]
> Normal   empty
> >     >     >         >     >       >     >       > [    0.000000] Movable
> zone start for each node
> >     >     >         >     >       >     >       > [    0.000000] Early
> memory node ranges
> >     >     >         >     >       >     >       > [    0.000000]   node
>   0: [mem 0x0000000010000000-0x000000001fffffff]
> >     >     >         >     >       >     >       > [    0.000000]   node
>   0: [mem 0x0000000022000000-0x0000000022147fff]
> >     >     >         >     >       >     >       > [    0.000000]   node
>   0: [mem 0x0000000022200000-0x0000000022347fff]
> >     >     >         >     >       >     >       > [    0.000000]   node
>   0: [mem 0x0000000024000000-0x0000000027ffffff]
> >     >     >         >     >       >     >       > [    0.000000]   node
>   0: [mem 0x0000000030000000-0x000000007fffffff]
> >     >     >         >     >       >     >       > [    0.000000] Initmem
> setup node 0 [mem 0x0000000010000000-0x000000007fffffff]
> >     >     >         >     >       >     >       > [    0.000000] On node
> 0, zone DMA: 8192 pages in unavailable ranges
> >     >     >         >     >       >     >       > [    0.000000] On node
> 0, zone DMA: 184 pages in unavailable ranges
> >     >     >         >     >       >     >       > [    0.000000] On node
> 0, zone DMA: 7352 pages in unavailable ranges
> >     >     >         >     >       >     >       > [    0.000000] cma:
> Reserved 256 MiB at 0x000000006e000000
> >     >     >         >     >       >     >       > [    0.000000] psci:
> probing for conduit method from DT.
> >     >     >         >     >       >     >       > [    0.000000] psci:
> PSCIv1.1 detected in firmware.
> >     >     >         >     >       >     >       > [    0.000000] psci:
> Using standard PSCI v0.2 function IDs
> >     >     >         >     >       >     >       > [    0.000000] psci:
> Trusted OS migration not required
> >     >     >         >     >       >     >       > [    0.000000] psci:
> SMC Calling Convention v1.1
> >     >     >         >     >       >     >       > [    0.000000] percpu:
> Embedded 16 pages/cpu s32792 r0 d32744 u65536
> >     >     >         >     >       >     >       > [    0.000000]
> Detected VIPT I-cache on CPU0
> >     >     >         >     >       >     >       > [    0.000000] CPU
> features: kernel page table isolation forced ON by KASLR
> >     >     >         >     >       >     >       > [    0.000000] CPU
> features: detected: Kernel page table isolation (KPTI)
> >     >     >         >     >       >     >       > [    0.000000] Built 1
> zonelists, mobility grouping on.  Total pages: 403845
> >     >     >         >     >       >     >       > [    0.000000] Kernel
> command line: console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused
> fips=1
> >     >     >         >     >       root=/dev/ram0
> >     >     >         >     >       >     >       maxcpus=2
> >     >     >         >     >       >     >       > [    0.000000] Unknown
> kernel command line parameters "earlyprintk=xen fips=1", will be passed to
> user
> >     >     >         >     >       space.
> >     >     >         >     >       >     >       > [    0.000000] Dentry
> cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
> >     >     >         >     >       >     >       > [    0.000000]
> Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
> >     >     >         >     >       >     >       > [    0.000000] mem
> auto-init: stack:off, heap alloc:on, heap free:on
> >     >     >         >     >       >     >       > [    0.000000] mem
> auto-init: clearing system memory may take some time...
> >     >     >         >     >       >     >       > [    0.000000] Memory:
> 1121936K/1641024K available (9728K kernel code, 836K rwdata, 2396K rodata,
> 1536K
> >     >     >         >     >       init, 262K bss,
> >     >     >         >     >       >     >       256944K reserved,
> >     >     >         >     >       >     >       > 262144K cma-reserved)
> >     >     >         >     >       >     >       > [    0.000000] SLUB:
> HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
> >     >     >         >     >       >     >       > [    0.000000] rcu:
> Hierarchical RCU implementation.
> >     >     >         >     >       >     >       > [    0.000000] rcu:
> RCU event tracing is enabled.
> >     >     >         >     >       >     >       > [    0.000000] rcu:
> RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
> >     >     >         >     >       >     >       > [    0.000000] rcu:
> RCU calculated value of scheduler-enlistment delay is 25 jiffies.
> >     >     >         >     >       >     >       > [    0.000000] rcu:
> Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
> >     >     >         >     >       >     >       > [    0.000000]
> NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
> >     >     >         >     >       >     >       > [    0.000000] Root
> IRQ handler: gic_handle_irq
> >     >     >         >     >       >     >       > [    0.000000]
> arch_timer: cp15 timer(s) running at 100.00MHz (virt).
> >     >     >         >     >       >     >       > [    0.000000]
> clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles:
> 0x171024e7e0,
> >     >     >         >     >       max_idle_ns: 440795205315 ns
> >     >     >         >     >       >     >       > [    0.000000]
> sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
> >     >     >         >     >       >     >       > [    0.000258]
> Console: colour dummy device 80x25
> >     >     >         >     >       >     >       > [    0.310231] printk:
> console [hvc0] enabled
> >     >     >         >     >       >     >       > [    0.314403]
> Calibrating delay loop (skipped), value calculated using timer frequency..
> 200.00 BogoMIPS
> >     >     >         >     >       (lpj=400000)
> >     >     >         >     >       >     >       > [    0.324851]
> pid_max: default: 32768 minimum: 301
> >     >     >         >     >       >     >       > [    0.329706] LSM:
> Security Framework initializing
> >     >     >         >     >       >     >       > [    0.334204] Yama:
> becoming mindful.
> >     >     >         >     >       >     >       > [    0.337865]
> Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
> >     >     >         >     >       >     >       > [    0.345180]
> Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
> >     >     >         >     >       >     >       > [    0.354743]
> xen:grant_table: Grant tables using version 1 layout
> >     >     >         >     >       >     >       > [    0.359132] Grant
> table initialized
> >     >     >         >     >       >     >       > [    0.362664]
> xen:events: Using FIFO-based ABI
> >     >     >         >     >       >     >       > [    0.366993] Xen:
> initializing cpu0
> >     >     >         >     >       >     >       > [    0.370515] rcu:
> Hierarchical SRCU implementation.
> >     >     >         >     >       >     >       > [    0.375930] smp:
> Bringing up secondary CPUs ...
> >     >     >         >     >       >     >       > (XEN) null.c:353: 1
> <-- d0v1
> >     >     >         >     >       >     >       > (XEN) d0v1: vGICD:
> unhandled word write 0x000000ffffffff to ICACTIVER0
> >     >     >         >     >       >     >       > [    0.382549]
> Detected VIPT I-cache on CPU1
> >     >     >         >     >       >     >       > [    0.388712] Xen:
> initializing cpu1
> >     >     >         >     >       >     >       > [    0.388743] CPU1:
> Booted secondary processor 0x0000000001 [0x410fd034]
> >     >     >         >     >       >     >       > [    0.388829] smp:
> Brought up 1 node, 2 CPUs
> >     >     >         >     >       >     >       > [    0.406941] SMP:
> Total of 2 processors activated.
> >     >     >         >     >       >     >       > [    0.411698] CPU
> features: detected: 32-bit EL0 Support
> >     >     >         >     >       >     >       > [    0.416888] CPU
> features: detected: CRC32 instructions
> >     >     >         >     >       >     >       > [    0.422121] CPU:
> All CPU(s) started at EL1
> >     >     >         >     >       >     >       > [    0.426248]
> alternatives: patching kernel code
> >     >     >         >     >       >     >       > [    0.431424]
> devtmpfs: initialized
> >     >     >         >     >       >     >       > [    0.441454] KASLR
> enabled
> >     >     >         >     >       >     >       > [    0.441602]
> clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns:
> >     >     >         >     >       7645041785100000 ns
> >     >     >         >     >       >     >       > [    0.448321] futex
> hash table entries: 512 (order: 3, 32768 bytes, linear)
> >     >     >         >     >       >     >       > [    0.496183] NET:
> Registered PF_NETLINK/PF_ROUTE protocol family
> >     >     >         >     >       >     >       > [    0.498277] DMA:
> preallocated 256 KiB GFP_KERNEL pool for atomic allocations
> >     >     >         >     >       >     >       > [    0.503772] DMA:
> preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
> >     >     >         >     >       >     >       > [    0.511610] DMA:
> preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
> >     >     >         >     >       >     >       > [    0.519478] audit:
> initializing netlink subsys (disabled)
> >     >     >         >     >       >     >       > [    0.524985] audit:
> type=2000 audit(0.336:1): state=initialized audit_enabled=0 res=1
> >     >     >         >     >       >     >       > [    0.529169]
> thermal_sys: Registered thermal governor 'step_wise'
> >     >     >         >     >       >     >       > [    0.533023]
> hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
> >     >     >         >     >       >     >       > [    0.545608] ASID
> allocator initialised with 32768 entries
> >     >     >         >     >       >     >       > [    0.551030]
> xen:swiotlb_xen: Warning: only able to allocate 4 MB for software IO TLB
> >     >     >         >     >       >     >       > [    0.559332]
> software IO TLB: mapped [mem 0x0000000011800000-0x0000000011c00000] (4MB)
> >     >     >         >     >       >     >       > [    0.583565] HugeTLB
> registered 1.00 GiB page size, pre-allocated 0 pages
> >     >     >         >     >       >     >       > [    0.584721] HugeTLB
> registered 32.0 MiB page size, pre-allocated 0 pages
> >     >     >         >     >       >     >       > [    0.591478] HugeTLB
> registered 2.00 MiB page size, pre-allocated 0 pages
> >     >     >         >     >       >     >       > [    0.598225] HugeTLB
> registered 64.0 KiB page size, pre-allocated 0 pages
> >     >     >         >     >       >     >       > [    0.636520] DRBG:
> Continuing without Jitter RNG
> >     >     >         >     >       >     >       > [    0.737187] raid6:
> neonx8   gen()  2143 MB/s
> >     >     >         >     >       >     >       > [    0.805294] raid6:
> neonx8   xor()  1589 MB/s
> >     >     >         >     >       >     >       > [    0.873406] raid6:
> neonx4   gen()  2177 MB/s
> >     >     >         >     >       >     >       > [    0.941499] raid6:
> neonx4   xor()  1556 MB/s
> >     >     >         >     >       >     >       > [    1.009612] raid6:
> neonx2   gen()  2072 MB/s
> >     >     >         >     >       >     >       > [    1.077715] raid6:
> neonx2   xor()  1430 MB/s
> >     >     >         >     >       >     >       > [    1.145834] raid6:
> neonx1   gen()  1769 MB/s
> >     >     >         >     >       >     >       > [    1.213935] raid6:
> neonx1   xor()  1214 MB/s
> >     >     >         >     >       >     >       > [    1.282046] raid6:
> int64x8  gen()  1366 MB/s
> >     >     >         >     >       >     >       > [    1.350132] raid6:
> int64x8  xor()   773 MB/s
> >     >     >         >     >       >     >       > [    1.418259] raid6:
> int64x4  gen()  1602 MB/s
> >     >     >         >     >       >     >       > [    1.486349] raid6:
> int64x4  xor()   851 MB/s
> >     >     >         >     >       >     >       > [    1.554464] raid6:
> int64x2  gen()  1396 MB/s
> >     >     >         >     >       >     >       > [    1.622561] raid6:
> int64x2  xor()   744 MB/s
> >     >     >         >     >       >     >       > [    1.690687] raid6:
> int64x1  gen()  1033 MB/s
> >     >     >         >     >       >     >       > [    1.758770] raid6:
> int64x1  xor()   517 MB/s
> >     >     >         >     >       >     >       > [    1.758809] raid6:
> using algorithm neonx4 gen() 2177 MB/s
> >     >     >         >     >       >     >       > [    1.762941] raid6:
> .... xor() 1556 MB/s, rmw enabled
> >     >     >         >     >       >     >       > [    1.767957] raid6:
> using neon recovery algorithm
> >     >     >         >     >       >     >       > [    1.772824]
> xen:balloon: Initialising balloon driver
> >     >     >         >     >       >     >       > [    1.778021] iommu:
> Default domain type: Translated
> >     >     >         >     >       >     >       > [    1.782584] iommu:
> DMA domain TLB invalidation policy: strict mode
> >     >     >         >     >       >     >       > [    1.789149] SCSI
> subsystem initialized
> >     >     >         >     >       >     >       > [    1.792820]
> usbcore: registered new interface driver usbfs
> >     >     >         >     >       >     >       > [    1.798254]
> usbcore: registered new interface driver hub
> >     >     >         >     >       >     >       > [    1.803626]
> usbcore: registered new device driver usb
> >     >     >         >     >       >     >       > [    1.808761]
> pps_core: LinuxPPS API ver. 1 registered
> >     >     >         >     >       >     >       > [    1.813716]
> pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <
> giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it
> <mailto:giometti@linux.it>> <mailto:giometti@linux.it <mailto:
> giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>>
> <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:
> giometti@linux.it <mailto:giometti@linux.it>> <mailto:giometti@linux.it
> <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:
> giometti@linux.it>>>>
> >     >     >         >     >       <mailto:giometti@linux.it <mailto:
> giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>
> <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:
> giometti@linux.it <mailto:giometti@linux.it>>> <mailto:giometti@linux.it
> <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:
> giometti@linux.it>> <mailto:giometti@linux.it <mailto:giometti@linux.it>
> <mailto:giometti@linux.it <mailto:giometti@linux.it>>>>>>
> >     >     >         >     >       >     >       > [    1.822903] PTP
> clock support registered
> >     >     >         >     >       >     >       > [    1.826893] EDAC
> MC: Ver: 3.0.0
> >     >     >         >     >       >     >       > [    1.830375]
> zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX
> channels.
> >     >     >         >     >       >     >       > [    1.838863]
> zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX
> channels.
> >     >     >         >     >       >     >       > [    1.847356]
> zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX
> channels.
> >     >     >         >     >       >     >       > [    1.855907] FPGA
> manager framework
> >     >     >         >     >       >     >       > [    1.859952]
> clocksource: Switched to clocksource arch_sys_counter
> >     >     >         >     >       >     >       > [    1.871712] NET:
> Registered PF_INET protocol family
> >     >     >         >     >       >     >       > [    1.871838] IP
> idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
> >     >     >         >     >       >     >       > [    1.879392]
> tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes,
> linear)
> >     >     >         >     >       >     >       > [    1.887078]
> Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
> >     >     >         >     >       >     >       > [    1.894846] TCP
> established hash table entries: 16384 (order: 5, 131072 bytes, linear)
> >     >     >         >     >       >     >       > [    1.902900] TCP
> bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
> >     >     >         >     >       >     >       > [    1.910350] TCP:
> Hash tables configured (established 16384 bind 16384)
> >     >     >         >     >       >     >       > [    1.916778] UDP
> hash table entries: 1024 (order: 3, 32768 bytes, linear)
> >     >     >         >     >       >     >       > [    1.923509]
> UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
> >     >     >         >     >       >     >       > [    1.930759] NET:
> Registered PF_UNIX/PF_LOCAL protocol family
> >     >     >         >     >       >     >       > [    1.936834] RPC:
> Registered named UNIX socket transport module.
> >     >     >         >     >       >     >       > [    1.942342] RPC:
> Registered udp transport module.
> >     >     >         >     >       >     >       > [    1.947088] RPC:
> Registered tcp transport module.
> >     >     >         >     >       >     >       > [    1.951843] RPC:
> Registered tcp NFSv4.1 backchannel transport module.
> >     >     >         >     >       >     >       > [    1.958334] PCI:
> CLS 0 bytes, default 64
> >     >     >         >     >       >     >       > [    1.962709] Trying
> to unpack rootfs image as initramfs...
> >     >     >         >     >       >     >       > [    1.977090]
> workingset: timestamp_bits=62 max_order=19 bucket_order=0
> >     >     >         >     >       >     >       > [    1.982863]
> Installing knfsd (copyright (C) 1996 okir@monad.swb.de <mailto:
> okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>
> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:
> okir@monad.swb.de <mailto:okir@monad.swb.de>>> <mailto:okir@monad.swb.de
> <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:
> okir@monad.swb.de>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>
> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>>> <mailto:
> okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de
> <mailto:okir@monad.swb.de>> <mailto:okir@monad.swb.de <mailto:
> okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>>
> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:
> okir@monad.swb.de <mailto:okir@monad.swb.de>> <mailto:okir@monad.swb.de
> <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:
> okir@monad.swb.de>>>>>).
> >     >     >         >     >       >     >       > [    2.021045] NET:
> Registered PF_ALG protocol family
> >     >     >         >     >       >     >       > [    2.021122] xor:
> measuring software checksum speed
> >     >     >         >     >       >     >       > [    2.029347]
>  8regs           :  2366 MB/sec
> >     >     >         >     >       >     >       > [    2.033081]
>  32regs          :  2802 MB/sec
> >     >     >         >     >       >     >       > [    2.038223]
>  arm64_neon      :  2320 MB/sec
> >     >     >         >     >       >     >       > [    2.038385] xor:
> using function: 32regs (2802 MB/sec)
> >     >     >         >     >       >     >       > [    2.043614] Block
> layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
> >     >     >         >     >       >     >       > [    2.050959] io
> scheduler mq-deadline registered
> >     >     >         >     >       >     >       > [    2.055521] io
> scheduler kyber registered
> >     >     >         >     >       >     >       > [    2.068227]
> xen:xen_evtchn: Event-channel device installed
> >     >     >         >     >       >     >       > [    2.069281] Serial:
> 8250/16550 driver, 4 ports, IRQ sharing disabled
> >     >     >         >     >       >     >       > [    2.076190]
> cacheinfo: Unable to detect cache hierarchy for CPU 0
> >     >     >         >     >       >     >       > [    2.085548] brd:
> module loaded
> >     >     >         >     >       >     >       > [    2.089290] loop:
> module loaded
> >     >     >         >     >       >     >       > [    2.089341] Invalid
> max_queues (4), will use default max: 2.
> >     >     >         >     >       >     >       > [    2.094565] tun:
> Universal TUN/TAP device driver, 1.6
> >     >     >         >     >       >     >       > [    2.098655]
> xen_netfront: Initialising Xen virtual ethernet driver
> >     >     >         >     >       >     >       > [    2.104156]
> usbcore: registered new interface driver rtl8150
> >     >     >         >     >       >     >       > [    2.109813]
> usbcore: registered new interface driver r8152
> >     >     >         >     >       >     >       > [    2.115367]
> usbcore: registered new interface driver asix
> >     >     >         >     >       >     >       > [    2.120794]
> usbcore: registered new interface driver ax88179_178a
> >     >     >         >     >       >     >       > [    2.126934]
> usbcore: registered new interface driver cdc_ether
> >     >     >         >     >       >     >       > [    2.132816]
> usbcore: registered new interface driver cdc_eem
> >     >     >         >     >       >     >       > [    2.138527]
> usbcore: registered new interface driver net1080
> >     >     >         >     >       >     >       > [    2.144256]
> usbcore: registered new interface driver cdc_subset
> >     >     >         >     >       >     >       > [    2.150205]
> usbcore: registered new interface driver zaurus
> >     >     >         >     >       >     >       > [    2.155837]
> usbcore: registered new interface driver cdc_ncm
> >     >     >         >     >       >     >       > [    2.161550]
> usbcore: registered new interface driver r8153_ecm
> >     >     >         >     >       >     >       > [    2.168240]
> usbcore: registered new interface driver cdc_acm
> >     >     >         >     >       >     >       > [    2.173109]
> cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
> >     >     >         >     >       >     >       > [    2.181358]
> usbcore: registered new interface driver uas
> >     >     >         >     >       >     >       > [    2.186547]
> usbcore: registered new interface driver usb-storage
> >     >     >         >     >       >     >       > [    2.192643]
> usbcore: registered new interface driver ftdi_sio
> >     >     >         >     >       >     >       > [    2.198384]
> usbserial: USB Serial support registered for FTDI USB Serial Device
> >     >     >         >     >       >     >       > [    2.206118]
> udc-core: couldn't find an available UDC - added [g_mass_storage] to list
> of pending
> >     >     >         >     >       drivers
> >     >     >         >     >       >     >       > [    2.215332]
> i2c_dev: i2c /dev entries driver
> >     >     >         >     >       >     >       > [    2.220467] xen_wdt
> xen_wdt: initialized (timeout=60s, nowayout=0)
> >     >     >         >     >       >     >       > [    2.225923]
> device-mapper: uevent: version 1.0.3
> >     >     >         >     >       >     >       > [    2.230668]
> device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com>> <mailto:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com>>> <mailto:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com>> <mailto:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com>>>>
> >     >     >         >     >       <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com>> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com>>> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com>> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com>>>>>
> >     >     >         >     >       >     >       > [    2.239315] EDAC
> MC0: Giving out device to module 1 controller synps_ddr_controller: DEV
> synps_edac
> >     >     >         >     >       (INTERRUPT)
> >     >     >         >     >       >     >       > [    2.249405] EDAC
> DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm:
> DEV
> >     >     >         >     >       >     >
>  ff960000.memory-controller (INTERRUPT)
> >     >     >         >     >       >     >       > [    2.261719] sdhci:
> Secure Digital Host Controller Interface driver
> >     >     >         >     >       >     >       > [    2.267487] sdhci:
> Copyright(c) Pierre Ossman
> >     >     >         >     >       >     >       > [    2.271890]
> sdhci-pltfm: SDHCI platform and OF driver helper
> >     >     >         >     >       >     >       > [    2.278157]
> ledtrig-cpu: registered to indicate activity on CPUs
> >     >     >         >     >       >     >       > [    2.283816]
> zynqmp_firmware_probe Platform Management API v1.1
> >     >     >         >     >       >     >       > [    2.289554]
> zynqmp_firmware_probe Trustzone version v1.0
> >     >     >         >     >       >     >       > [    2.327875]
> securefw securefw: securefw probed
> >     >     >         >     >       >     >       > [    2.328324] alg: No
> test for xilinx-zynqmp-aes (zynqmp-aes)
> >     >     >         >     >       >     >       > [    2.332563]
> zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
> >     >     >         >     >       >     >       > [    2.341183] alg: No
> test for xilinx-zynqmp-rsa (zynqmp-rsa)
> >     >     >         >     >       >     >       > [    2.347667]
> remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is available
> >     >     >         >     >       >     >       > [    2.353003]
> remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is available
> >     >     >         >     >       >     >       > [    2.362605]
> fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
> >     >     >         >     >       >     >       > [    2.366540]
> viper-xen-proxy viper-xen-proxy: Viper Xen Proxy registered
> >     >     >         >     >       >     >       > [    2.372525]
> viper-vdpp a4000000.vdpp: Device Tree Probing
> >     >     >         >     >       >     >       > [    2.377778]
> viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >     >     >         >     >       >     >       > [    2.386432]
> viper-vdpp a4000000.vdpp: Unable to register tamper handler. Retrying...
> >     >     >         >     >       >     >       > [    2.394094]
> viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
> >     >     >         >     >       >     >       > [    2.399854]
> viper-vdpp-net a5000000.vdpp_net: Device registered
> >     >     >         >     >       >     >       > [    2.405931]
> viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
> >     >     >         >     >       >     >       > [    2.412037]
> viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event
> Count: 32
> >     >     >         >     >       >     >       > [    2.420856] default
> preset
> >     >     >         >     >       >     >       > [    2.423797]
> viper-vdpp-stat a8000000.vdpp_stat: Device registered
> >     >     >         >     >       >     >       > [    2.430054]
> viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
> >     >     >         >     >       >     >       > [    2.435948]
> viper-vdpp-rng ac000000.vdpp_rng: Device registered
> >     >     >         >     >       >     >       > [    2.441976] vmcu
> driver init
> >     >     >         >     >       >     >       > [    2.444922] VMCU: :
> (240:0) registered
> >     >     >         >     >       >     >       > [    2.444956] In K81
> Updater init
> >     >     >         >     >       >     >       > [    2.449003] pktgen:
> Packet Generator for packet performance testing. Version: 2.75
> >     >     >         >     >       >     >       > [    2.468833]
> Initializing XFRM netlink socket
> >     >     >         >     >       >     >       > [    2.468902] NET:
> Registered PF_PACKET protocol family
> >     >     >         >     >       >     >       > [    2.472729] Bridge
> firewalling registered
> >     >     >         >     >       >     >       > [    2.476785] 8021q:
> 802.1Q VLAN Support v1.8
> >     >     >         >     >       >     >       > [    2.481341]
> registered taskstats version 1
> >     >     >         >     >       >     >       > [    2.486394] Btrfs
> loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
> >     >     >         >     >       >     >       > [    2.503145]
> ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36, base_baud = 6250000)
> is a xuartps
> >     >     >         >     >       >     >       > [    2.507103]
> of-fpga-region fpga-full: FPGA Region probed
> >     >     >         >     >       >     >       > [    2.512986]
> xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver Probe success
> >     >     >         >     >       >     >       > [    2.520267]
> xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver Probe success
> >     >     >         >     >       >     >       > [    2.528239]
> xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver Probe success
> >     >     >         >     >       >     >       > [    2.536152]
> xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver Probe success
> >     >     >         >     >       >     >       > [    2.544153]
> xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver Probe success
> >     >     >         >     >       >     >       > [    2.552127]
> xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver Probe success
> >     >     >         >     >       >     >       > [    2.560178]
> xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver Probe success
> >     >     >         >     >       >     >       > [    2.567987]
> xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver Probe success
> >     >     >         >     >       >     >       > [    2.576018]
> xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver Probe success
> >     >     >         >     >       >     >       > [    2.583889]
> xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver Probe success
> >     >     >         >     >       >     >       > [    2.946379] spi-nor
> spi0.0: mt25qu512a (131072 Kbytes)
> >     >     >         >     >       >     >       > [    2.946467] 2
> fixed-partitions partitions found on MTD device spi0.0
> >     >     >         >     >       >     >       > [    2.952393]
> Creating 2 MTD partitions on "spi0.0":
> >     >     >         >     >       >     >       > [    2.957231]
> 0x000004000000-0x000008000000 : "bank A"
> >     >     >         >     >       >     >       > [    2.963332]
> 0x000000000000-0x000004000000 : "bank B"
> >     >     >         >     >       >     >       > [    2.968694] macb
> ff0b0000.ethernet: Not enabling partial store and forward
> >     >     >         >     >       >     >       > [    2.975333] macb
> ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25
> >     >     >         >     >       (18:41:fe:0f:ff:02)
> >     >     >         >     >       >     >       > [    2.984472] macb
> ff0c0000.ethernet: Not enabling partial store and forward
> >     >     >         >     >       >     >       > [    2.992144] macb
> ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26
> >     >     >         >     >       (18:41:fe:0f:ff:03)
> >     >     >         >     >       >     >       > [    3.001043]
> viper_enet viper_enet: Viper power GPIOs initialised
> >     >     >         >     >       >     >       > [    3.007313]
> viper_enet viper_enet vnet0 (uninitialized): Validate interface QSGMII
> >     >     >         >     >       >     >       > [    3.014914]
> viper_enet viper_enet vnet1 (uninitialized): Validate interface QSGMII
> >     >     >         >     >       >     >       > [    3.022138]
> viper_enet viper_enet vnet1 (uninitialized): Validate interface type 18
> >     >     >         >     >       >     >       > [    3.030274]
> viper_enet viper_enet vnet2 (uninitialized): Validate interface QSGMII
> >     >     >         >     >       >     >       > [    3.037785]
> viper_enet viper_enet vnet3 (uninitialized): Validate interface QSGMII
> >     >     >         >     >       >     >       > [    3.045301]
> viper_enet viper_enet: Viper enet registered
> >     >     >         >     >       >     >       > [    3.050958]
> xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
> >     >     >         >     >       >     >       > [    3.057135]
> xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
> >     >     >         >     >       >     >       > [    3.063538]
> xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
> >     >     >         >     >       >     >       > [    3.069920]
> xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
> >     >     >         >     >       >     >       > [    3.097729] si70xx:
> probe of 2-0040 failed with error -5
> >     >     >         >     >       >     >       > [    3.098042]
> cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
> >     >     >         >     >       >     >       > [    3.105111]
> cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
> >     >     >         >     >       >     >       > [    3.112457]
> viper-tamper viper-tamper: Device registered
> >     >     >         >     >       >     >       > [    3.117593]
> active_bank active_bank: boot bank: 1
> >     >     >         >     >       >     >       > [    3.122184]
> active_bank active_bank: boot mode: (0x02) qspi32
> >     >     >         >     >       >     >       > [    3.128247]
> viper-vdpp a4000000.vdpp: Device Tree Probing
> >     >     >         >     >       >     >       > [    3.133439]
> viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >     >     >         >     >       >     >       > [    3.142151]
> viper-vdpp a4000000.vdpp: Tamper handler registered
> >     >     >         >     >       >     >       > [    3.147438]
> viper-vdpp a4000000.vdpp: Device registered
> >     >     >         >     >       >     >       > [    3.153007]
> lpc55_l2 spi1.0: registered handler for protocol 0
> >     >     >         >     >       >     >       > [    3.158582]
> lpc55_user lpc55_user: The major number for your device is 236
> >     >     >         >     >       >     >       > [    3.165976]
> lpc55_l2 spi1.0: registered handler for protocol 1
> >     >     >         >     >       >     >       > [    3.181999]
> rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >     >     >         >     >       >     >       > [    3.182856]
> rtc-lpc55 rtc_lpc55: registered as rtc0
> >     >     >         >     >       >     >       > [    3.188656]
> lpc55_l2 spi1.0: (2) mcu still not ready?
> >     >     >         >     >       >     >       > [    3.193744]
> lpc55_l2 spi1.0: (3) mcu still not ready?
> >     >     >         >     >       >     >       > [    3.198848]
> lpc55_l2 spi1.0: (4) mcu still not ready?
> >     >     >         >     >       >     >       > [    3.202932] mmc0:
> SDHCI controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
> >     >     >         >     >       >     >       > [    3.210689]
> lpc55_l2 spi1.0: (5) mcu still not ready?
> >     >     >         >     >       >     >       > [    3.215694]
> lpc55_l2 spi1.0: rx error: -110
> >     >     >         >     >       >     >       > [    3.284438] mmc0:
> new HS200 MMC card at address 0001
> >     >     >         >     >       >     >       > [    3.285179]
> mmcblk0: mmc0:0001 SEM16G 14.6 GiB
> >     >     >         >     >       >     >       > [    3.291784]
>  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
> >     >     >         >     >       >     >       > [    3.293915]
> mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
> >     >     >         >     >       >     >       > [    3.299054]
> mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
> >     >     >         >     >       >     >       > [    3.303905]
> mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
> >     >     >         >     >       >     >       > [    3.582676]
> rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >     >     >         >     >       >     >       > [    3.583332]
> rtc-lpc55 rtc_lpc55: hctosys: unable to read the hardware clock
> >     >     >         >     >       >     >       > [    3.591252]
> cdns-i2c ff020000.i2c: recovery information complete
> >     >     >         >     >       >     >       > [    3.597085] at24
> 0-0050: supply vcc not found, using dummy regulator
> >     >     >         >     >       >     >       > [    3.603011]
> lpc55_l2 spi1.0: (2) mcu still not ready?
> >     >     >         >     >       >     >       > [    3.608093] at24
> 0-0050: 256 byte spd EEPROM, read-only
> >     >     >         >     >       >     >       > [    3.613620]
> lpc55_l2 spi1.0: (3) mcu still not ready?
> >     >     >         >     >       >     >       > [    3.619362]
> lpc55_l2 spi1.0: (4) mcu still not ready?
> >     >     >         >     >       >     >       > [    3.624224]
> rtc-rv3028 0-0052: registered as rtc1
> >     >     >         >     >       >     >       > [    3.628343]
> lpc55_l2 spi1.0: (5) mcu still not ready?
> >     >     >         >     >       >     >       > [    3.633253]
> lpc55_l2 spi1.0: rx error: -110
> >     >     >         >     >       >     >       > [    3.639104]
> k81_bootloader 0-0010: probe
> >     >     >         >     >       >     >       > [    3.641628] VMCU: :
> (235:0) registered
> >     >     >         >     >       >     >       > [    3.641635]
> k81_bootloader 0-0010: probe completed
> >     >     >         >     >       >     >       > [    3.668346]
> cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 28
> >     >     >         >     >       >     >       > [    3.669154]
> cdns-i2c ff030000.i2c: recovery information complete
> >     >     >         >     >       >     >       > [    3.675412] lm75
> 1-0048: supply vs not found, using dummy regulator
> >     >     >         >     >       >     >       > [    3.682920] lm75
> 1-0048: hwmon1: sensor 'tmp112'
> >     >     >         >     >       >     >       > [    3.686548] i2c
> i2c-1: Added multiplexed i2c bus 3
> >     >     >         >     >       >     >       > [    3.690795] i2c
> i2c-1: Added multiplexed i2c bus 4
> >     >     >         >     >       >     >       > [    3.695629] i2c
> i2c-1: Added multiplexed i2c bus 5
> >     >     >         >     >       >     >       > [    3.700492] i2c
> i2c-1: Added multiplexed i2c bus 6
> >     >     >         >     >       >     >       > [    3.705157] pca954x
> 1-0070: registered 4 multiplexed busses for I2C switch pca9546
> >     >     >         >     >       >     >       > [    3.713049] at24
> 1-0054: supply vcc not found, using dummy regulator
> >     >     >         >     >       >     >       > [    3.720067] at24
> 1-0054: 1024 byte 24c08 EEPROM, read-only
> >     >     >         >     >       >     >       > [    3.724761]
> cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq 29
> >     >     >         >     >       >     >       > [    3.731272] sfp
> viper_enet:sfp-eth1: Host maximum power 2.0W
> >     >     >         >     >       >     >       > [    3.737549]
> sfp_register_socket: got sfp_bus
> >     >     >         >     >       >     >       > [    3.740709]
> sfp_register_socket: register sfp_bus
> >     >     >         >     >       >     >       > [    3.745459]
> sfp_register_bus: ops ok!
> >     >     >         >     >       >     >       > [    3.749179]
> sfp_register_bus: Try to attach
> >     >     >         >     >       >     >       > [    3.753419]
> sfp_register_bus: Attach succeeded
> >     >     >         >     >       >     >       > [    3.757914]
> sfp_register_bus: upstream ops attach
> >     >     >         >     >       >     >       > [    3.762677]
> sfp_register_bus: Bus registered
> >     >     >         >     >       >     >       > [    3.766999]
> sfp_register_socket: register sfp_bus succeeded
> >     >     >         >     >       >     >       > [    3.775870]
> of_cfs_init
> >     >     >         >     >       >     >       > [    3.776000]
> of_cfs_init: OK
> >     >     >         >     >       >     >       > [    3.778211] clk:
> Not disabling unused clocks
> >     >     >         >     >       >     >       > [   11.278477] Freeing
> initrd memory: 206056K
> >     >     >         >     >       >     >       > [   11.279406] Freeing
> unused kernel memory: 1536K
> >     >     >         >     >       >     >       > [   11.314006] Checked
> W+X mappings: passed, no W+X pages found
> >     >     >         >     >       >     >       > [   11.314142] Run
> /init as init process
> >     >     >         >     >       >     >       > INIT: version 3.01
> booting
> >     >     >         >     >       >     >       > fsck (busybox 1.35.0)
> >     >     >         >     >       >     >       > /dev/mmcblk0p1: clean,
> 12/102400 files, 238162/409600 blocks
> >     >     >         >     >       >     >       > /dev/mmcblk0p2: clean,
> 12/102400 files, 171972/409600 blocks
> >     >     >         >     >       >     >       > /dev/mmcblk0p3 was not
> cleanly unmounted, check forced.
> >     >     >         >     >       >     >       > /dev/mmcblk0p3:
> 20/4096 files (0.0% non-contiguous), 663/16384 blocks
> >     >     >         >     >       >     >       > [   11.553073] EXT4-fs
> (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode:
> >     >     >         >     >       disabled.
> >     >     >         >     >       >     >       > Starting random number
> generator daemon.
> >     >     >         >     >       >     >       > [   11.580662] random:
> crng init done
> >     >     >         >     >       >     >       > Starting udev
> >     >     >         >     >       >     >       > [   11.613159]
> udevd[142]: starting version 3.2.10
> >     >     >         >     >       >     >       > [   11.620385]
> udevd[143]: starting eudev-3.2.10
> >     >     >         >     >       >     >       > [   11.704481] macb
> ff0b0000.ethernet control_red: renamed from eth0
> >     >     >         >     >       >     >       > [   11.720264] macb
> ff0c0000.ethernet control_black: renamed from eth1
> >     >     >         >     >       >     >       > [   12.063396]
> ip_local_port_range: prefer different parity for start/end values.
> >     >     >         >     >       >     >       > [   12.084801]
> rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >     >     >         >     >       >     >       > hwclock: RTC_RD_TIME:
> Invalid exchange
> >     >     >         >     >       >     >       > Mon Feb 27 08:40:53
> UTC 2023
> >     >     >         >     >       >     >       > [   12.115309]
> rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad result
> >     >     >         >     >       >     >       > hwclock: RTC_SET_TIME:
> Invalid exchange
> >     >     >         >     >       >     >       > [   12.131027]
> rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >     >     >         >     >       >     >       > Starting mcud
> >     >     >         >     >       >     >       > INIT: Entering
> runlevel: 5
> >     >     >         >     >       >     >       > Configuring network
> interfaces... done.
> >     >     >         >     >       >     >       > resetting network
> interface
> >     >     >         >     >       >     >       > [   12.718295] macb
> ff0b0000.ethernet control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver
> [Xilinx
> >     >     >         >     >       PCS/PMA PHY] (irq=POLL)
> >     >     >         >     >       >     >       > [   12.723919] macb
> ff0b0000.ethernet control_red: configuring for phy/gmii link mode
> >     >     >         >     >       >     >       > [   12.732151] pps
> pps0: new PPS source ptp0
> >     >     >         >     >       >     >       > [   12.735563] macb
> ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
> >     >     >         >     >       >     >       > [   12.745724] macb
> ff0c0000.ethernet control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver
> [Xilinx
> >     >     >         >     >       PCS/PMA PHY]
> >     >     >         >     >       >     >       (irq=POLL)
> >     >     >         >     >       >     >       > [   12.753469] macb
> ff0c0000.ethernet control_black: configuring for phy/gmii link mode
> >     >     >         >     >       >     >       > [   12.761804] pps
> pps1: new PPS source ptp1
> >     >     >         >     >       >     >       > [   12.765398] macb
> ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
> >     >     >         >     >       >     >       > Auto-negotiation: off
> >     >     >         >     >       >     >       > Auto-negotiation: off
> >     >     >         >     >       >     >       > [   16.828151] macb
> ff0b0000.ethernet control_red: unable to generate target frequency:
> 125000000 Hz
> >     >     >         >     >       >     >       > [   16.834553] macb
> ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full - flow control off
> >     >     >         >     >       >     >       > [   16.860552] macb
> ff0c0000.ethernet control_black: unable to generate target frequency:
> 125000000 Hz
> >     >     >         >     >       >     >       > [   16.867052] macb
> ff0c0000.ethernet control_black: Link is Up - 1Gbps/Full - flow control off
> >     >     >         >     >       >     >       > Starting Failsafe
> Secure Shell server in port 2222: sshd
> >     >     >         >     >       >     >       > done.
> >     >     >         >     >       >     >       > Starting rpcbind
> daemon...done.
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       > [   17.093019]
> rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >     >     >         >     >       >     >       > hwclock: RTC_RD_TIME:
> Invalid exchange
> >     >     >         >     >       >     >       > Starting State Manager
> Service
> >     >     >         >     >       >     >       > Start state-manager
> restarter...
> >     >     >         >     >       >     >       > (XEN) d0v1 Forwarding
> AES operation: 3254779951
> >     >     >         >     >       >     >       > Starting
> /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid
> 80efc224-c202-4f8e-a949-4dae7f04a0aa
> >     >     >         >     >       devid 1 transid 744
> >     >     >         >     >       >     >       /dev/dm-0
> >     >     >         >     >       >     >       > scanned by udevd (385)
> >     >     >         >     >       >     >       > [   17.349933] BTRFS
> info (device dm-0): disk space caching is enabled
> >     >     >         >     >       >     >       > [   17.350670] BTRFS
> info (device dm-0): has skinny extents
> >     >     >         >     >       >     >       > [   17.364384] BTRFS
> info (device dm-0): enabling ssd optimizations
> >     >     >         >     >       >     >       > [   17.830462] BTRFS:
> device fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
> >     >     >         >     >       /dev/mapper/client_prov scanned by
> >     >     >         >     >       >     >       mkfs.btrfs
> >     >     >         >     >       >     >       > (526)
> >     >     >         >     >       >     >       > [   17.872699] BTRFS
> info (device dm-1): using free space tree
> >     >     >         >     >       >     >       > [   17.872771] BTRFS
> info (device dm-1): has skinny extents
> >     >     >         >     >       >     >       > [   17.878114] BTRFS
> info (device dm-1): flagging fs with big metadata feature
> >     >     >         >     >       >     >       > [   17.894289] BTRFS
> info (device dm-1): enabling ssd optimizations
> >     >     >         >     >       >     >       > [   17.895695] BTRFS
> info (device dm-1): checking UUID tree
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       > Setting domain 0 name,
> domid and JSON config...
> >     >     >         >     >       >     >       > Done setting up Dom0
> >     >     >         >     >       >     >       > Starting xenconsoled...
> >     >     >         >     >       >     >       > Starting QEMU as disk
> backend for dom0
> >     >     >         >     >       >     >       > Starting domain
> watchdog daemon: xenwatchdogd startup
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       > [   18.408647] BTRFS:
> device fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
> >     >     >         >     >       /dev/mapper/client_config scanned by
> >     >     >         >     >       >     >       mkfs.btrfs
> >     >     >         >     >       >     >       > (574)
> >     >     >         >     >       >     >       > [done]
> >     >     >         >     >       >     >       > [   18.465552] BTRFS
> info (device dm-2): using free space tree
> >     >     >         >     >       >     >       > [   18.465629] BTRFS
> info (device dm-2): has skinny extents
> >     >     >         >     >       >     >       > [   18.471002] BTRFS
> info (device dm-2): flagging fs with big metadata feature
> >     >     >         >     >       >     >       > Starting crond: [
> 18.482371] BTRFS info (device dm-2): enabling ssd optimizations
> >     >     >         >     >       >     >       > [   18.486659] BTRFS
> info (device dm-2): checking UUID tree
> >     >     >         >     >       >     >       > OK
> >     >     >         >     >       >     >       > starting rsyslogd ...
> Log partition ready after 0 poll loops
> >     >     >         >     >       >     >       > done
> >     >     >         >     >       >     >       > rsyslogd: cannot
> connect to 172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <
> http://172.18.0.1:514>> <http://172.18.0.1:514 <http://172.18.0.1:514> <
> http://172.18.0.1:514 <http://172.18.0.1:514>>> <http://172.18.0.1:514 <
> http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>> <
> http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <
> http://172.18.0.1:514>>>> <http://172.18.0.1:514 <http://172.18.0.1:514> <
> http://172.18.0.1:514 <http://172.18.0.1:514>> <http://172.18.0.1:514 <
> http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>>> <
> http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <
> http://172.18.0.1:514>> <http://172.18.0.1:514 <http://172.18.0.1:514> <
> http://172.18.0.1:514 <http://172.18.0.1:514>>>>>: Network is unreachable
> [v8.2208.0 try
> >     >     >         >     >       https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>>> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>>>> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>>> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027
> >     <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>>>>> ]
> >     >     >         >     >       >     >       > [   18.670637] BTRFS:
> device fsid 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608
> /dev/dm-3
> >     >     >         >     >       scanned by udevd (518)
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       > Please insert USB
> token and enter your role in login prompt.
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       > login:
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       > Regards,
> >     >     >         >     >       >     >       > O.
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       > пн, 24 апр. 2023 г. в
> 23:39, Stefano Stabellini <sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>
> >     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>:
> >     >     >         >     >       >     >       >       Hi Oleg,
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >       Here is the
> issue from your logs:
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >       SError Interrupt
> on CPU0, code 0xbe000000 -- SError
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >       SErrors are
> special signals to notify software of serious hardware
> >     >     >         >     >       >     >       >       errors.
> Something is going very wrong. Defective hardware is a
> >     >     >         >     >       >     >       >       possibility.
> Another possibility if software accessing address ranges
> >     >     >         >     >       >     >       >       that it is not
> supposed to, sometimes it causes SErrors.
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >       Cheers,
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >       Stefano
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >       On Mon, 24 Apr
> 2023, Oleg Nikitenko wrote:
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >       > Hello,
> >     >     >         >     >       >     >       >       >
> >     >     >         >     >       >     >       >       > Thanks guys.
> >     >     >         >     >       >     >       >       > I found out
> where the problem was.
> >     >     >         >     >       >     >       >       > Now dom0
> booted more. But I have a new one.
> >     >     >         >     >       >     >       >       > This is a
> kernel panic during Dom0 loading.
> >     >     >         >     >       >     >       >       > Maybe someone
> is able to suggest something ?
> >     >     >         >     >       >     >       >       >
> >     >     >         >     >       >     >       >       > Regards,
> >     >     >         >     >       >     >       >       > O.
> >     >     >         >     >       >     >       >       >
> >     >     >         >     >       >     >       >       > [    3.771362]
> sfp_register_bus: upstream ops attach
> >     >     >         >     >       >     >       >       > [    3.776119]
> sfp_register_bus: Bus registered
> >     >     >         >     >       >     >       >       > [    3.780459]
> sfp_register_socket: register sfp_bus succeeded
> >     >     >         >     >       >     >       >       > [    3.789399]
> of_cfs_init
> >     >     >         >     >       >     >       >       > [    3.789499]
> of_cfs_init: OK
> >     >     >         >     >       >     >       >       > [    3.791685]
> clk: Not disabling unused clocks
> >     >     >         >     >       >     >       >       > [   11.010355]
> SError Interrupt on CPU0, code 0xbe000000 -- SError
> >     >     >         >     >       >     >       >       > [   11.010380]
> CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
> >     >     >         >     >       >     >       >       > [   11.010393]
> Workqueue: events_unbound async_run_entry_fn
> >     >     >         >     >       >     >       >       > [   11.010414]
> pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
> >     >     >         >     >       >     >       >       > [   11.010422]
> pc : simple_write_end+0xd0/0x130
> >     >     >         >     >       >     >       >       > [   11.010431]
> lr : generic_perform_write+0x118/0x1e0
> >     >     >         >     >       >     >       >       > [   11.010438]
> sp : ffffffc00809b910
> >     >     >         >     >       >     >       >       > [   11.010441]
> x29: ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
> >     >     >         >     >       >     >       >       > [   11.010451]
> x26: 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
> >     >     >         >     >       >     >       >       > [   11.010459]
> x23: ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
> >     >     >         >     >       >     >       >       > [   11.010472]
> x20: 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
> >     >     >         >     >       >     >       >       > [   11.010481]
> x17: 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
> >     >     >         >     >       >     >       >       > [   11.010490]
> x14: 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
> >     >     >         >     >       >     >       >       > [   11.010498]
> x11: 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
> >     >     >         >     >       >     >       >       > [   11.010507]
> x8 : 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
> >     >     >         >     >       >     >       >       > [   11.010515]
> x5 : fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
> >     >     >         >     >       >     >       >       > [   11.010524]
> x2 : 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
> >     >     >         >     >       >     >       >       > [   11.010534]
> Kernel panic - not syncing: Asynchronous SError Interrupt
> >     >     >         >     >       >     >       >       > [   11.010539]
> CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
> >     >     >         >     >       >     >       >       > [   11.010545]
> Hardware name: D14 Viper Board - White Unit (DT)
> >     >     >         >     >       >     >       >       > [   11.010548]
> Workqueue: events_unbound async_run_entry_fn
> >     >     >         >     >       >     >       >       > [   11.010556]
> Call trace:
> >     >     >         >     >       >     >       >       > [   11.010558]
>  dump_backtrace+0x0/0x1c4
> >     >     >         >     >       >     >       >       > [   11.010567]
>  show_stack+0x18/0x2c
> >     >     >         >     >       >     >       >       > [   11.010574]
>  dump_stack_lvl+0x7c/0xa0
> >     >     >         >     >       >     >       >       > [   11.010583]
>  dump_stack+0x18/0x34
> >     >     >         >     >       >     >       >       > [   11.010588]
>  panic+0x14c/0x2f8
> >     >     >         >     >       >     >       >       > [   11.010597]
>  print_tainted+0x0/0xb0
> >     >     >         >     >       >     >       >       > [   11.010606]
>  arm64_serror_panic+0x6c/0x7c
> >     >     >         >     >       >     >       >       > [   11.010614]
>  do_serror+0x28/0x60
> >     >     >         >     >       >     >       >       > [   11.010621]
>  el1h_64_error_handler+0x30/0x50
> >     >     >         >     >       >     >       >       > [   11.010628]
>  el1h_64_error+0x78/0x7c
> >     >     >         >     >       >     >       >       > [   11.010633]
>  simple_write_end+0xd0/0x130
> >     >     >         >     >       >     >       >       > [   11.010639]
>  generic_perform_write+0x118/0x1e0
> >     >     >         >     >       >     >       >       > [   11.010644]
>  __generic_file_write_iter+0x138/0x1c4
> >     >     >         >     >       >     >       >       > [   11.010650]
>  generic_file_write_iter+0x78/0xd0
> >     >     >         >     >       >     >       >       > [   11.010656]
>  __kernel_write+0xfc/0x2ac
> >     >     >         >     >       >     >       >       > [   11.010665]
>  kernel_write+0x88/0x160
> >     >     >         >     >       >     >       >       > [   11.010673]
>  xwrite+0x44/0x94
> >     >     >         >     >       >     >       >       > [   11.010680]
>  do_copy+0xa8/0x104
> >     >     >         >     >       >     >       >       > [   11.010686]
>  write_buffer+0x38/0x58
> >     >     >         >     >       >     >       >       > [   11.010692]
>  flush_buffer+0x4c/0xbc
> >     >     >         >     >       >     >       >       > [   11.010698]
>  __gunzip+0x280/0x310
> >     >     >         >     >       >     >       >       > [   11.010704]
>  gunzip+0x1c/0x28
> >     >     >         >     >       >     >       >       > [   11.010709]
>  unpack_to_rootfs+0x170/0x2b0
> >     >     >         >     >       >     >       >       > [   11.010715]
>  do_populate_rootfs+0x80/0x164
> >     >     >         >     >       >     >       >       > [   11.010722]
>  async_run_entry_fn+0x48/0x164
> >     >     >         >     >       >     >       >       > [   11.010728]
>  process_one_work+0x1e4/0x3a0
> >     >     >         >     >       >     >       >       > [   11.010736]
>  worker_thread+0x7c/0x4c0
> >     >     >         >     >       >     >       >       > [   11.010743]
>  kthread+0x120/0x130
> >     >     >         >     >       >     >       >       > [   11.010750]
>  ret_from_fork+0x10/0x20
> >     >     >         >     >       >     >       >       > [   11.010757]
> SMP: stopping secondary CPUs
> >     >     >         >     >       >     >       >       > [   11.010784]
> Kernel Offset: 0x2f61200000 from 0xffffffc008000000
> >     >     >         >     >       >     >       >       > [   11.010788]
> PHYS_OFFSET: 0x0
> >     >     >         >     >       >     >       >       > [   11.010790]
> CPU features: 0x00000401,00000842
> >     >     >         >     >       >     >       >       > [   11.010795]
> Memory Limit: none
> >     >     >         >     >       >     >       >       > [   11.277509]
> ---[ end Kernel panic - not syncing: Asynchronous SError Interrupt ]---
> >     >     >         >     >       >     >       >       >
> >     >     >         >     >       >     >       >       > пт, 21 апр.
> 2023 г. в 15:52, Michal Orzel <michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>
> >     <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>>:
> >     >     >         >     >       >     >       >       >       Hi Oleg,
> >     >     >         >     >       >     >       >       >
> >     >     >         >     >       >     >       >       >       On
> 21/04/2023 14:49, Oleg Nikitenko wrote:
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       > Hello
> Michal,
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       > I was
> not able to enable earlyprintk in the xen for now.
> >     >     >         >     >       >     >       >       >       > I
> decided to choose another way.
> >     >     >         >     >       >     >       >       >       > This
> is a xen's command line that I found out completely.
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       > (XEN)
> $$$$ console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
> dom0_vcpus_pin
> >     >     >         >     >       bootscrub=0
> >     >     >         >     >       >     >       vwfi=native
> >     >     >         >     >       >     >       >       sched=null
> >     >     >         >     >       >     >       >       >
>  timer_slop=0
> >     >     >         >     >       >     >       >       >       Yes,
> adding a printk() in Xen was also a good idea.
> >     >     >         >     >       >     >       >       >
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       > So you
> are absolutely right about a command line.
> >     >     >         >     >       >     >       >       >       > Now I
> am going to find out why xen did not have the correct parameters from the
> device
> >     >     >         >     >       tree.
> >     >     >         >     >       >     >       >       >       Maybe
> you will find this document helpful:
> >     >     >         >     >       >     >       >       >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >
> >     <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >>>>
> >     >     >         >     >       <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >
> >     <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >>>>>
> >     >     >         >     >       >     >       >       >
> >     >     >         >     >       >     >       >       >       ~Michal
> >     >     >         >     >       >     >       >       >
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       >
> Regards,
> >     >     >         >     >       >     >       >       >       > Oleg
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       > пт, 21
> апр. 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>
> >     >     >         >     >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com
> >     <mailto:michal.orzel@amd.com>>>> <mailto:michal.orzel@amd.com
> <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>>>>:
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       >     On
> 21/04/2023 10:04, Oleg Nikitenko wrote:
> >     >     >         >     >       >     >       >       >       >     >
>
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
> Hello Michal,
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
> Yes, I use yocto.
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
> Yesterday all day long I tried to follow your suggestions.
> >     >     >         >     >       >     >       >       >       >     >
> I faced a problem.
> >     >     >         >     >       >     >       >       >       >     >
> Manually in the xen config build file I pasted the strings:
> >     >     >         >     >       >     >       >       >       >     In
> the .config file or in some Yocto file (listing additional Kconfig options)
> added
> >     >     >         >     >       to SRC_URI?
> >     >     >         >     >       >     >       >       >       >
>  You shouldn't really modify .config file but if you do, you should execute
> "make
> >     >     >         >     >       olddefconfig"
> >     >     >         >     >       >     >       afterwards.
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
> CONFIG_EARLY_PRINTK
> >     >     >         >     >       >     >       >       >       >     >
> CONFIG_EARLY_PRINTK_ZYNQMP
> >     >     >         >     >       >     >       >       >       >     >
> CONFIG_EARLY_UART_CHOICE_CADENCE
> >     >     >         >     >       >     >       >       >       >     I
> hope you added =y to them.
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       >
>  Anyway, you have at least the following solutions:
> >     >     >         >     >       >     >       >       >       >     1)
> Run bitbake xen -c menuconfig to properly set early printk
> >     >     >         >     >       >     >       >       >       >     2)
> Find out how you enable other Kconfig options in your project (e.g.
> >     >     >         >     >       CONFIG_COLORING=y that is not
> >     >     >         >     >       >     >       enabled by
> >     >     >         >     >       >     >       >       default)
> >     >     >         >     >       >     >       >       >       >     3)
> Append the following to "xen/arch/arm/configs/arm64_defconfig":
> >     >     >         >     >       >     >       >       >       >
>  CONFIG_EARLY_PRINTK_ZYNQMP=y
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       >
>  ~Michal
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
> Host hangs in build time.
> >     >     >         >     >       >     >       >       >       >     >
> Maybe I did not set something in the config build file ?
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
> Regards,
> >     >     >         >     >       >     >       >       >       >     >
> Oleg
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
> чт, 20 апр. 2023 г. в 11:57, Oleg Nikitenko <oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>
> >     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
> >     <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>>
> >     >     >         >     >       >     >       >       >       <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >     <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>
> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
> >     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>>>>:
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>    Thanks Michal,
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>    You gave me an idea.
> >     >     >         >     >       >     >       >       >       >     >
>    I am going to try it today.
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>    Regards,
> >     >     >         >     >       >     >       >       >       >     >
>    O.
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>    чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>
> >     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
> >     <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>>
> >     >     >         >     >       >     >       >       >       <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >     <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>
> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
> >     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>>>>:
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>        Thanks Stefano.
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>        I am going to do it today.
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>        Regards,
> >     >     >         >     >       >     >       >       >       >     >
>        O.
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>        ср, 19 апр. 2023 г. в 23:05, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
> >     >     >         >     >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>
> >     >     >         >     >       >     >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org
> >     <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>>>>>>
> >     >     >         >     >       >     >       >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org
> >     <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>>>>>
> >     >     >         >     >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>
> >     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org
> >>>>>>>>:
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>            On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
> >     >     >         >     >       >     >       >       >       >     >
>            > Hi Michal,
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            > I corrected xen's command line.
> >     >     >         >     >       >     >       >       >       >     >
>            > Now it is
> >     >     >         >     >       >     >       >       >       >     >
>            > xen,xen-bootargs = "console=dtuart dtuart=serial0
> dom0_mem=1600M
> >     >     >         >     >       dom0_max_vcpus=2
> >     >     >         >     >       >     >       dom0_vcpus_pin
> >     >     >         >     >       >     >       >       >
>  bootscrub=0 vwfi=native sched=null
> >     >     >         >     >       >     >       >       >       >     >
>            > timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>            4 colors is way too many for xen, just do xen_colors=0-0. There
> is no
> >     >     >         >     >       >     >       >       >       >     >
>            advantage in using more than 1 color for Xen.
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>            4 colors is too few for dom0, if you are giving 1600M of memory
> to
> >     >     >         >     >       Dom0.
> >     >     >         >     >       >     >       >       >       >     >
>            Each color is 256M. For 1600M you should give at least 7 colors.
> Try:
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>            xen_colors=0-0 dom0_colors=1-8
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>            > Unfortunately the result was the same.
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN)  - Dom0 mode: Relaxed
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) Coloring general information
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) Way size: 64kB
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) Max. number of colors available: 16
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) Xen color(s): [ 0 ]
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) alternatives: Patching with alt table 00000000002cc690 ->
> >     >     >         >     >       00000000002ccc0c
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) Color array allocation failed for dom0
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN)
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) ****************************************
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) Panic on CPU 0:
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) Error creating domain 0
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) ****************************************
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN)
> >     >     >         >     >       >     >       >       >       >     >
>            > (XEN) Reboot in five seconds...
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            > I am going to find out how command line arguments passed and
> parsed.
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            > Regards,
> >     >     >         >     >       >     >       >       >       >     >
>            > Oleg
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
> >     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>
> >     >     >         >     >       >     >       <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >     <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>
> >     >     >         >     >       >     >       >       >       <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >     <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>
> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
> >     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>>>>:
> >     >     >         >     >       >     >       >       >       >     >
>            >       Hi Michal,
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            > You put my nose into the problem. Thank you.
> >     >     >         >     >       >     >       >       >       >     >
>            > I am going to use your point.
> >     >     >         >     >       >     >       >       >       >     >
>            > Let's see what happens.
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            > Regards,
> >     >     >         >     >       >     >       >       >       >     >
>            > Oleg
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>
> >     >     >         >     >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>>
> >     >     >         >     >       >     >       <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com
> >     <mailto:michal.orzel@amd.com>>>>>>
> >     >     >         >     >       >     >       >       >       <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com
> >     <mailto:michal.orzel@amd.com>>>>> <mailto:michal.orzel@amd.com
> <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>
> >     >     >         >     >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>>>>>:
> >     >     >         >     >       >     >       >       >       >     >
>            >       Hi Oleg,
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >       On 19/04/2023 09:03, Oleg Nikitenko wrote:
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       > Hello Stefano,
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       > Thanks for the clarification.
> >     >     >         >     >       >     >       >       >       >     >
>            >       > My company uses yocto for image generation.
> >     >     >         >     >       >     >       >       >       >     >
>            >       > What kind of information do you need to consult me in
> this
> >     >     >         >     >       case ?
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       > Maybe modules sizes/addresses which were mentioned by
> @Julien
> >     >     >         >     >       Grall
> >     >     >         >     >       >     >       >       <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>>>>>
> >     >     >         >     >       >     >       >       >       <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>>>>>> <mailto:julien@xen.org
> <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>
> <mailto:julien@xen.org <mailto:julien@xen.org>
> >     <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>>>>
> >     >     >         >     >       <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>>
> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org
> <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org>
> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org
> <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>
> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org
> <mailto:julien@xen.org>>>> <mailto:julien@xen.org <mailto:julien@xen.org>
> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org
> <mailto:julien@xen.org> <mailto:julien@xen.org
> >     <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>>>>>>>> ?
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >       Sorry for jumping into discussion, but FWICS the Xen
> command
> >     >     >         >     >       line you provided
> >     >     >         >     >       >     >       seems to be
> >     >     >         >     >       >     >       >       not the
> >     >     >         >     >       >     >       >       >       one
> >     >     >         >     >       >     >       >       >       >     >
>            >       Xen booted with. The error you are observing most likely
> is due
> >     >     >         >     >       to dom0 colors
> >     >     >         >     >       >     >       >       configuration not
> >     >     >         >     >       >     >       >       >       being
> >     >     >         >     >       >     >       >       >       >     >
>            >       specified (i.e. lack of dom0_colors=<> parameter).
> Although in
> >     >     >         >     >       the command line you
> >     >     >         >     >       >     >       >       provided, this
> >     >     >         >     >       >     >       >       >       parameter
> >     >     >         >     >       >     >       >       >       >     >
>            >       is set, I strongly doubt that this is the actual command
> line
> >     >     >         >     >       in use.
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >       You wrote:
> >     >     >         >     >       >     >       >       >       >     >
>            >       xen,xen-bootargs = "console=dtuart dtuart=serial0
> >     >     >         >     >       dom0_mem=1600M dom0_max_vcpus=2
> >     >     >         >     >       >     >       >       dom0_vcpus_pin
> >     >     >         >     >       >     >       >       >
>  bootscrub=0 vwfi=native
> >     >     >         >     >       >     >       >       >       >     >
>            >       sched=null timer_slop=0 way_szize=65536 xen_colors=0-3
> >     >     >         >     >       dom0_colors=4-7";
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >       but:
> >     >     >         >     >       >     >       >       >       >     >
>            >       1) way_szize has a typo
> >     >     >         >     >       >     >       >       >       >     >
>            >       2) you specified 4 colors (0-3) for Xen, but the boot
> log says
> >     >     >         >     >       that Xen has only
> >     >     >         >     >       >     >       one:
> >     >     >         >     >       >     >       >       >       >     >
>            >       (XEN) Xen color(s): [ 0 ]
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >       This makes me believe that no colors configuration
> actually end
> >     >     >         >     >       up in command line
> >     >     >         >     >       >     >       that Xen
> >     >     >         >     >       >     >       >       booted
> >     >     >         >     >       >     >       >       >       with.
> >     >     >         >     >       >     >       >       >       >     >
>            >       Single color for Xen is a "default if not specified" and
> way
> >     >     >         >     >       size was probably
> >     >     >         >     >       >     >       calculated
> >     >     >         >     >       >     >       >       by asking
> >     >     >         >     >       >     >       >       >       HW.
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >       So I would suggest to first cross-check the command line
> in
> >     >     >         >     >       use.
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >       ~Michal
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       > Regards,
> >     >     >         >     >       >     >       >       >       >     >
>            >       > Oleg
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       > вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini
> >     >     >         >     >       <sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>
> >     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
> >     >     >         >     >       >     >       >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org
> >     <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>>>>>>
> >     >     >         >     >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>
> >     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
> >     >     >         >     >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>>>
> >     >     >         >     >       >     >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org
> >     <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>>>>>
> >     >     >         >     >       >     >       >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org
> >     <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>>>>>>
> >     >     >         >     >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>
> >     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
> >     >     >         >     >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>>>>>:
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     > Hi Julien,
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     > >> This feature has not been merged in Xen
> upstream yet
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     > > would assume that upstream + the series on the
> ML [1]
> >     >     >         >     >       work
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     > Please clarify this point.
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     > Because the two thoughts are controversial.
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     Hi Oleg,
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     As Julien wrote, there is nothing controversial.
> As you
> >     >     >         >     >       are aware,
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     Xilinx maintains a separate Xen tree specific for
> Xilinx
> >     >     >         >     >       here:
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>
> >     >     >         >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>
> >     <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>>
> >     >     >         >     >       >     >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen
> >     <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>>
> >     >     >         >     >       >     >       >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen
> >     <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>>>>
> >     >     >         >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>
> >     <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
> >     >     >         >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>>>
> >     >     >         >     >       >     >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen
> >     <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>>
> >     >     >         >     >       >     >       >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen
> >     <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>>>>>
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     and the branch you are using (xlnx_rebase_4.16)
> comes
> >     >     >         >     >       from there.
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     Instead, the upstream Xen tree lives here:
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>
> >     >     >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >     <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>
> >     >     >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >     <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>
> >     >     >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >     <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>
> >     >     >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>>>>
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     The Cache Coloring feature that you are trying to
> >     >     >         >     >       configure is present
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     in xlnx_rebase_4.16, but not yet present upstream
> (there
> >     >     >         >     >       is an
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     outstanding patch series to add cache coloring to
> Xen
> >     >     >         >     >       upstream but it
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     hasn't been merged yet.)
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     Anyway, if you are using xlnx_rebase_4.16 it
> doesn't
> >     >     >         >     >       matter too much for
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     you as you already have Cache Coloring as a feature
> >     >     >         >     >       there.
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     I take you are using ImageBuilder to generate the
> boot
> >     >     >         >     >       configuration? If
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     so, please post the ImageBuilder config file that
> you are
> >     >     >         >     >       using.
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     But from the boot message, it looks like the colors
> >     >     >         >     >       configuration for
> >     >     >         >     >       >     >       >       >       >     >
>            >       >     Dom0 is incorrect.
> >     >     >         >     >       >     >       >       >       >     >
>            >       >
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
>            >
> >     >     >         >     >       >     >       >       >       >     >
> >     >     >         >     >       >     >       >       >       >
> >     >     >         >     >       >     >       >       >
> >     >     >         >     >       >     >       >       >
> >     >     >         >     >       >     >       >       >
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >       >
> >     >     >         >     >       >     >
> >     >     >         >     >       >     >
> >     >     >         >     >       >     >
> >     >     >         >     >       >
> >     >     >         >     >
> >     >     >         >     >
> >     >     >         >     >
> >     >     >         >
> >     >     >
> >     >
> >
>

[-- Attachment #2: Type: text/html, Size: 412463 bytes --]

^ permalink raw reply	[relevance 0%]

* Removing Linux memory hotplug limitations
@ 2023-05-20  5:36  6% Demi Marie Obenour
  0 siblings, 0 replies; 200+ results
From: Demi Marie Obenour @ 2023-05-20  5:36 UTC (permalink / raw)
  To: Xen developer discussion; +Cc: Marek Marczykowski-Górecki

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

Qubes OS is trying to switch from relying on populate-on-demand to
memory hotplug for Linux guests.  However, this runs into a problem,
which is that only a limited amount of memory can be hotplugged.

My experiments with Qubes OS’s build of Linux 6.3.2 reveal:

- The more memory a guest starts off with, the more memory that can be
  added to it via hotplug.

- The memory that the guest is not able to use remains available on the
  host and can be assigned to dom0 (and, presumably, to oother guests).

- There is no sudden jump at 2GiB or 3GiB as far as I can tell.

- There are no kernel warning messages unless I try to add a huge amount
  of memory (far beyond what can be successfully hotplugged).  In
  particular, there are no warning messages from drivers/xen/balloon.c.

- There are several waits in the balloon driver that should probably
  hvae comments added.

- `cat /sys/devices/system/memory/memory*/state` reveals that all memory
  devices are online.

- `echo $((1 << 63)) | sudo tee /sys/devices/system/xen_memory/xen_memory0/target`
  causes a kernel crash (BUG_ON(ret != nr_pages) in drivers/xen/balloon.c).
  Patch coming.

- The initial amount of memory assigned to a guest is irrelevant.

- The maximum amount of memory assigned to a guest is highly relevant.
  Table below:

   Initial maximum memory:      Maximum after hotplug
             400M                       2733M 
             500M                       3067M 
             600M                       3535M
             700M                       3919M
             800M                       4315
             900m                       4711
             1000m                      5105

SciPy linear regression gives:

- Slope: 3.9943
- Y-Intercept: 1116.14
- R: 0.99965
- stderr: 0.047

In short, there is a very clear, nearly linear relationship between the
amount of cold-plugged memory and the amount of memory that can be
hotplugged later.
-- 
Sincerely,
Demi Marie Obenour (she/her/hers)
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[relevance 6%]

* Re: xen cache colors in ARM
  2023-05-16 14:40  0%                                                             ` Michal Orzel
@ 2023-05-16 15:14  0%                                                               ` Oleg Nikitenko
  2023-05-16 18:00  0%                                                                 ` Michal Orzel
  0 siblings, 1 reply; 200+ results
From: Oleg Nikitenko @ 2023-05-16 15:14 UTC (permalink / raw)
  To: Michal Orzel
  Cc: Stefano Stabellini, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand

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

Hi guys,

Thanks Michal.

So if I have more RAM It is possible to increase the color density.

For example 8Gb/16 it is 512 Mb approximately.
Is this correct ?
Regards,
Oleg

вт, 16 мая 2023 г. в 17:40, Michal Orzel <michal.orzel@amd.com>:

> Hi Oleg,
>
> On 16/05/2023 14:15, Oleg Nikitenko wrote:
> >
> >
> >
> > Hello,
> >
> > Thanks a lot Michal.
> >
> > Then the next question.
> > When I just started my experiments with xen, Stefano mentioned that each
> cache's color size is 256M.
> > Is it possible to extend this figure ?
> With 16 colors (e.g. on Cortex-A53) and 4GB of memory, roughly each color
> is 256M (i.e. 4GB/16 = 256M).
> So as you can see this figure depends on the number of colors and memory
> size.
>
> ~Michal
>
> >
> > Regards,
> > Oleg
> >
> > пн, 15 мая 2023 г. в 11:57, Michal Orzel <michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>:
> >
> >     Hi Oleg,
> >
> >     On 15/05/2023 10:51, Oleg Nikitenko wrote:
> >     >
> >     >
> >     >
> >     > Hello guys,
> >     >
> >     > Thanks a lot.
> >     > After a long problem list I was able to run xen with Dom0 with a
> cache color.
> >     > One more question from my side.
> >     > I want to run a guest with color mode too.
> >     > I inserted a string into guest config file llc-colors = "9-13"
> >     > I got an error
> >     > [  457.517004] loop0: detected capacity change from 0 to 385840
> >     > Parsing config from /xen/red_config.cfg
> >     > /xen/red_config.cfg:26: config parsing error near `-colors':
> lexical error
> >     > warning: Config file looks like it contains Python code.
> >     > warning:  Arbitrary Python is no longer supported.
> >     > warning:  See https://wiki.xen.org/wiki/PythonInXlConfig <
> https://wiki.xen.org/wiki/PythonInXlConfig> <
> https://wiki.xen.org/wiki/PythonInXlConfig <
> https://wiki.xen.org/wiki/PythonInXlConfig>>
> >     > Failed to parse config: Invalid argument
> >     > So this is a question.
> >     > Is it possible to assign a color mode for the DomU by config file ?
> >     > If so, what string should I use?
> >     Please, always refer to the relevant documentation. In this case,
> for xl.cfg:
> >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890
> >
> >
> >     ~Michal
> >
> >     >
> >     > Regards,
> >     > Oleg
> >     >
> >     > чт, 11 мая 2023 г. в 13:32, Oleg Nikitenko <oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>:
> >     >
> >     >     Hi Michal,
> >     >
> >     >     Thanks.
> >     >     This compilation previously had a name CONFIG_COLORING.
> >     >     It mixed me up.
> >     >
> >     >     Regards,
> >     >     Oleg
> >     >
> >     >     чт, 11 мая 2023 г. в 13:15, Michal Orzel <michal.orzel@amd.com
> <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>:
> >     >
> >     >         Hi Oleg,
> >     >
> >     >         On 11/05/2023 12:02, Oleg Nikitenko wrote:
> >     >         >
> >     >         >
> >     >         >
> >     >         > Hello,
> >     >         >
> >     >         > Thanks Stefano.
> >     >         > Then the next question.
> >     >         > I cloned xen repo from xilinx site
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>> <
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>>>
> >     >         > I managed to build a xlnx_rebase_4.17 branch in my
> environment.
> >     >         > I did it without coloring first. I did not find any
> color footprints at this branch.
> >     >         > I realized coloring is not in the xlnx_rebase_4.17
> branch yet.
> >     >         This is not true. Cache coloring is in xlnx_rebase_4.17.
> Please see the docs:
> >     >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
> >>
> >     >
> >     >         It describes the feature and documents the required
> properties.
> >     >
> >     >         ~Michal
> >     >
> >     >         >
> >     >         >
> >     >         > вт, 9 мая 2023 г. в 22:49, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
> >     >         >
> >     >         >     We test Xen Cache Coloring regularly on zcu102.
> Every Petalinux release
> >     >         >     (twice a year) is tested with cache coloring
> enabled. The last Petalinux
> >     >         >     release is 2023.1 and the kernel used is this:
> >     >         >
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>> <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>>>
> >     >         >
> >     >         >
> >     >         >     On Tue, 9 May 2023, Oleg Nikitenko wrote:
> >     >         >     > Hello guys,
> >     >         >     >
> >     >         >     > I have a couple of more questions.
> >     >         >     > Have you ever run xen with the cache coloring at
> Zynq UltraScale+ MPSoC zcu102 xczu15eg ?
> >     >         >     > When did you run xen with the cache coloring last
> time ?
> >     >         >     > What kernel version did you use for Dom0 when you
> ran xen with the cache coloring last time ?
> >     >         >     >
> >     >         >     > Regards,
> >     >         >     > Oleg
> >     >         >     >
> >     >         >     > пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>:
> >     >         >     >       Hi Michal,
> >     >         >     >
> >     >         >     > Thanks.
> >     >         >     >
> >     >         >     > Regards,
> >     >         >     > Oleg
> >     >         >     >
> >     >         >     > пт, 5 мая 2023 г. в 11:34, Michal Orzel <
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>:
> >     >         >     >       Hi Oleg,
> >     >         >     >
> >     >         >     >       Replying, so that you do not need to wait
> for Stefano.
> >     >         >     >
> >     >         >     >       On 05/05/2023 10:28, Oleg Nikitenko wrote:
> >     >         >     >       >
> >     >         >     >       >
> >     >         >     >       >
> >     >         >     >       > Hello Stefano,
> >     >         >     >       >
> >     >         >     >       > I would like to try a xen cache color
> property from this repo  https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>>>
> >     >         >     >       <https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>>>>
> >     >         >     >       > Could you tell whot branch I should use ?
> >     >         >     >       Cache coloring feature is not part of the
> upstream tree and it is still under review.
> >     >         >     >       You can only find it integrated in the
> Xilinx Xen tree.
> >     >         >     >
> >     >         >     >       ~Michal
> >     >         >     >
> >     >         >     >       >
> >     >         >     >       > Regards,
> >     >         >     >       > Oleg
> >     >         >     >       >
> >     >         >     >       > пт, 28 апр. 2023 г. в 00:51, Stefano
> Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>:
> >     >         >     >       >
> >     >         >     >       >     I am familiar with the zcu102 but I
> don't know how you could possibly
> >     >         >     >       >     generate a SError.
> >     >         >     >       >
> >     >         >     >       >     I suggest to try to use ImageBuilder
> [1] to generate the boot
> >     >         >     >       >     configuration as a test because that
> is known to work well for zcu102.
> >     >         >     >       >
> >     >         >     >       >     [1]
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>>> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>>>>
> >     >         >     >       >
> >     >         >     >       >
> >     >         >     >       >     On Thu, 27 Apr 2023, Oleg Nikitenko
> wrote:
> >     >         >     >       >     > Hello Stefano,
> >     >         >     >       >     >
> >     >         >     >       >     > Thanks for clarification.
> >     >         >     >       >     > We nighter use ImageBuilder nor
> uboot boot script.
> >     >         >     >       >     > A model is zcu102 compatible.
> >     >         >     >       >     >
> >     >         >     >       >     > Regards,
> >     >         >     >       >     > O.
> >     >         >     >       >     >
> >     >         >     >       >     > вт, 25 апр. 2023 г. в 21:21, Stefano
> Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>:
> >     >         >     >       >     >       This is interesting. Are you
> using Xilinx hardware by any chance? If so,
> >     >         >     >       >     >       which board?
> >     >         >     >       >     >
> >     >         >     >       >     >       Are you using ImageBuilder to
> generate your boot.scr boot script? If so,
> >     >         >     >       >     >       could you please post your
> ImageBuilder config file? If not, can you
> >     >         >     >       >     >       post the source of your uboot
> boot script?
> >     >         >     >       >     >
> >     >         >     >       >     >       SErrors are supposed to be
> related to a hardware failure of some kind.
> >     >         >     >       >     >       You are not supposed to be
> able to trigger an SError easily by
> >     >         >     >       >     >       "mistake". I have not seen
> SErrors due to wrong cache coloring
> >     >         >     >       >     >       configurations on any Xilinx
> board before.
> >     >         >     >       >     >
> >     >         >     >       >     >       The differences between Xen
> with and without cache coloring from a
> >     >         >     >       >     >       hardware perspective are:
> >     >         >     >       >     >
> >     >         >     >       >     >       - With cache coloring, the
> SMMU is enabled and does address translations
> >     >         >     >       >     >         even for dom0. Without cache
> coloring the SMMU could be disabled, and
> >     >         >     >       >     >         if enabled, the SMMU doesn't
> do any address translations for Dom0. If
> >     >         >     >       >     >         there is a hardware failure
> related to SMMU address translation it
> >     >         >     >       >     >         could only trigger with
> cache coloring. This would be my normal
> >     >         >     >       >     >         suggestion for you to
> explore, but the failure happens too early
> >     >         >     >       >     >         before any DMA-capable
> device is programmed. So I don't think this can
> >     >         >     >       >     >         be the issue.
> >     >         >     >       >     >
> >     >         >     >       >     >       - With cache coloring, the
> memory allocation is very different so you'll
> >     >         >     >       >     >         end up using different DDR
> regions for Dom0. So if your DDR is
> >     >         >     >       >     >         defective, you might only
> see a failure with cache coloring enabled
> >     >         >     >       >     >         because you end up using
> different regions.
> >     >         >     >       >     >
> >     >         >     >       >     >
> >     >         >     >       >     >       On Tue, 25 Apr 2023, Oleg
> Nikitenko wrote:
> >     >         >     >       >     >       > Hi Stefano,
> >     >         >     >       >     >       >
> >     >         >     >       >     >       > Thank you.
> >     >         >     >       >     >       > If I build xen without
> colors support there is not this error.
> >     >         >     >       >     >       > All the domains are booted
> well.
> >     >         >     >       >     >       > Hense it can not be a
> hardware issue.
> >     >         >     >       >     >       > This panic arrived during
> unpacking the rootfs.
> >     >         >     >       >     >       > Here I attached the boot log
> xen/Dom0 without color.
> >     >         >     >       >     >       > A highlighted strings
> printed exactly after the place where 1-st time panic arrived.
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >  Xen 4.16.1-pre
> >     >         >     >       >     >       > (XEN) Xen version 4.16.1-pre
> (nole2390@(none)) (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y
> >     >         >     >       2023-04-21
> >     >         >     >       >     >       > (XEN) Latest ChangeSet: Wed
> Apr 19 12:56:14 2023 +0300 git:321687b231-dirty
> >     >         >     >       >     >       > (XEN) build-id:
> c1847258fdb1b79562fc710dda40008f96c0fde5
> >     >         >     >       >     >       > (XEN) Processor:
> 00000000410fd034: "ARM Limited", variant: 0x0, part 0xd03,rev 0x4
> >     >         >     >       >     >       > (XEN) 64-bit Execution:
> >     >         >     >       >     >       > (XEN)   Processor Features:
> 0000000000002222 0000000000000000
> >     >         >     >       >     >       > (XEN)     Exception Levels:
> EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
> >     >         >     >       >     >       > (XEN)     Extensions:
> FloatingPoint AdvancedSIMD
> >     >         >     >       >     >       > (XEN)   Debug Features:
> 0000000010305106 0000000000000000
> >     >         >     >       >     >       > (XEN)   Auxiliary Features:
> 0000000000000000 0000000000000000
> >     >         >     >       >     >       > (XEN)   Memory Model
> Features: 0000000000001122 0000000000000000
> >     >         >     >       >     >       > (XEN)   ISA Features:
>  0000000000011120 0000000000000000
> >     >         >     >       >     >       > (XEN) 32-bit Execution:
> >     >         >     >       >     >       > (XEN)   Processor Features:
> 0000000000000131:0000000000011011
> >     >         >     >       >     >       > (XEN)     Instruction Sets:
> AArch32 A32 Thumb Thumb-2 Jazelle
> >     >         >     >       >     >       > (XEN)     Extensions:
> GenericTimer Security
> >     >         >     >       >     >       > (XEN)   Debug Features:
> 0000000003010066
> >     >         >     >       >     >       > (XEN)   Auxiliary Features:
> 0000000000000000
> >     >         >     >       >     >       > (XEN)   Memory Model
> Features: 0000000010201105 0000000040000000
> >     >         >     >       >     >       > (XEN)
>    0000000001260000 0000000002102211
> >     >         >     >       >     >       > (XEN)   ISA Features:
> 0000000002101110 0000000013112111 0000000021232042
> >     >         >     >       >     >       > (XEN)
> 0000000001112131 0000000000011142 0000000000011121
> >     >         >     >       >     >       > (XEN) Using SMC Calling
> Convention v1.2
> >     >         >     >       >     >       > (XEN) Using PSCI v1.1
> >     >         >     >       >     >       > (XEN) SMP: Allowing 4 CPUs
> >     >         >     >       >     >       > (XEN) Generic Timer IRQ:
> phys=30 hyp=26 virt=27 Freq: 100000 KHz
> >     >         >     >       >     >       > (XEN) GICv2 initialization:
> >     >         >     >       >     >       > (XEN)
> gic_dist_addr=00000000f9010000
> >     >         >     >       >     >       > (XEN)
> gic_cpu_addr=00000000f9020000
> >     >         >     >       >     >       > (XEN)
> gic_hyp_addr=00000000f9040000
> >     >         >     >       >     >       > (XEN)
> gic_vcpu_addr=00000000f9060000
> >     >         >     >       >     >       > (XEN)
> gic_maintenance_irq=25
> >     >         >     >       >     >       > (XEN) GICv2: Adjusting CPU
> interface base to 0xf902f000
> >     >         >     >       >     >       > (XEN) GICv2: 192 lines, 4
> cpus, secure (IID 0200143b).
> >     >         >     >       >     >       > (XEN) Using scheduler: null
> Scheduler (null)
> >     >         >     >       >     >       > (XEN) Initializing null
> scheduler
> >     >         >     >       >     >       > (XEN) WARNING: This is
> experimental software in development.
> >     >         >     >       >     >       > (XEN) Use at your own risk.
> >     >         >     >       >     >       > (XEN) Allocated console ring
> of 32 KiB.
> >     >         >     >       >     >       > (XEN) CPU0: Guest atomics
> will try 12 times before pausing the domain
> >     >         >     >       >     >       > (XEN) Bringing up CPU1
> >     >         >     >       >     >       > (XEN) CPU1: Guest atomics
> will try 13 times before pausing the domain
> >     >         >     >       >     >       > (XEN) CPU 1 booted.
> >     >         >     >       >     >       > (XEN) Bringing up CPU2
> >     >         >     >       >     >       > (XEN) CPU2: Guest atomics
> will try 13 times before pausing the domain
> >     >         >     >       >     >       > (XEN) CPU 2 booted.
> >     >         >     >       >     >       > (XEN) Bringing up CPU3
> >     >         >     >       >     >       > (XEN) CPU3: Guest atomics
> will try 13 times before pausing the domain
> >     >         >     >       >     >       > (XEN) Brought up 4 CPUs
> >     >         >     >       >     >       > (XEN) CPU 3 booted.
> >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: probing hardware configuration...
> >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: SMMUv2 with:
> >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: stage 2 translation
> >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: stream matching with 48 register groups, mask
> 0x7fff<2>smmu:
> >     >         >     >       /axi/smmu@fd800000: 16 context
> >     >         >     >       >     >       banks (0
> >     >         >     >       >     >       > stage-2 only)
> >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
> >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: registered 29 master devices
> >     >         >     >       >     >       > (XEN) I/O virtualisation
> enabled
> >     >         >     >       >     >       > (XEN)  - Dom0 mode: Relaxed
> >     >         >     >       >     >       > (XEN) P2M: 40-bit IPA with
> 40-bit PA and 8-bit VMID
> >     >         >     >       >     >       > (XEN) P2M: 3 levels with
> order-1 root, VTCR 0x0000000080023558
> >     >         >     >       >     >       > (XEN) Scheduling
> granularity: cpu, 1 CPU per sched-resource
> >     >         >     >       >     >       > (XEN) alternatives: Patching
> with alt table 00000000002cc5c8 -> 00000000002ccb2c
> >     >         >     >       >     >       > (XEN) *** LOADING DOMAIN 0
> ***
> >     >         >     >       >     >       > (XEN) Loading d0 kernel from
> boot module @ 0000000001000000
> >     >         >     >       >     >       > (XEN) Loading ramdisk from
> boot module @ 0000000002000000
> >     >         >     >       >     >       > (XEN) Allocating 1:1
> mappings totalling 1600MB for dom0:
> >     >         >     >       >     >       > (XEN) BANK[0]
> 0x00000010000000-0x00000020000000 (256MB)
> >     >         >     >       >     >       > (XEN) BANK[1]
> 0x00000024000000-0x00000028000000 (64MB)
> >     >         >     >       >     >       > (XEN) BANK[2]
> 0x00000030000000-0x00000080000000 (1280MB)
> >     >         >     >       >     >       > (XEN) Grant table range:
> 0x00000000e00000-0x00000000e40000
> >     >         >     >       >     >       > (XEN) smmu:
> /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
> >     >         >     >       >     >       > (XEN) Allocating PPI 16 for
> event channel interrupt
> >     >         >     >       >     >       > (XEN) Extended region 0:
> 0x81200000->0xa0000000
> >     >         >     >       >     >       > (XEN) Extended region 1:
> 0xb1200000->0xc0000000
> >     >         >     >       >     >       > (XEN) Extended region 2:
> 0xc8000000->0xe0000000
> >     >         >     >       >     >       > (XEN) Extended region 3:
> 0xf0000000->0xf9000000
> >     >         >     >       >     >       > (XEN) Extended region 4:
> 0x100000000->0x600000000
> >     >         >     >       >     >       > (XEN) Extended region 5:
> 0x880000000->0x8000000000
> >     >         >     >       >     >       > (XEN) Extended region 6:
> 0x8001000000->0x10000000000
> >     >         >     >       >     >       > (XEN) Loading zImage from
> 0000000001000000 to 0000000010000000-0000000010e41008
> >     >         >     >       >     >       > (XEN) Loading d0 initrd from
> 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
> >     >         >     >       >     >       > (XEN) Loading d0 DTB to
> 0x0000000013400000-0x000000001340cbdc
> >     >         >     >       >     >       > (XEN) Initial low memory
> virq threshold set at 0x4000 pages.
> >     >         >     >       >     >       > (XEN) Std. Loglevel: All
> >     >         >     >       >     >       > (XEN) Guest Loglevel: All
> >     >         >     >       >     >       > (XEN) *** Serial input to
> DOM0 (type 'CTRL-a' three times to switch input)
> >     >         >     >       >     >       > (XEN) null.c:353: 0 <-- d0v0
> >     >         >     >       >     >       > (XEN) Freed 356kB init
> memory.
> >     >         >     >       >     >       > (XEN) d0v0 Unhandled
> SMC/HVC: 0x84000050
> >     >         >     >       >     >       > (XEN) d0v0 Unhandled
> SMC/HVC: 0x8600ff01
> >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled
> word write 0x000000ffffffff to ICACTIVER4
> >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled
> word write 0x000000ffffffff to ICACTIVER8
> >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled
> word write 0x000000ffffffff to ICACTIVER12
> >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled
> word write 0x000000ffffffff to ICACTIVER16
> >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled
> word write 0x000000ffffffff to ICACTIVER20
> >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled
> word write 0x000000ffffffff to ICACTIVER0
> >     >         >     >       >     >       > [    0.000000] Booting Linux
> on physical CPU 0x0000000000 [0x410fd034]
> >     >         >     >       >     >       > [    0.000000] Linux version
> 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC)
> >     >         >     >       11.3.0, GNU ld (GNU
> >     >         >     >       >     >       Binutils)
> >     >         >     >       >     >       > 2.38.20220708) #1 SMP Tue
> Feb 21 05:47:54 UTC 2023
> >     >         >     >       >     >       > [    0.000000] Machine
> model: D14 Viper Board - White Unit
> >     >         >     >       >     >       > [    0.000000] Xen 4.16
> support found
> >     >         >     >       >     >       > [    0.000000] Zone ranges:
> >     >         >     >       >     >       > [    0.000000]   DMA
>  [mem 0x0000000010000000-0x000000007fffffff]
> >     >         >     >       >     >       > [    0.000000]   DMA32
>  empty
> >     >         >     >       >     >       > [    0.000000]   Normal
> empty
> >     >         >     >       >     >       > [    0.000000] Movable zone
> start for each node
> >     >         >     >       >     >       > [    0.000000] Early memory
> node ranges
> >     >         >     >       >     >       > [    0.000000]   node   0:
> [mem 0x0000000010000000-0x000000001fffffff]
> >     >         >     >       >     >       > [    0.000000]   node   0:
> [mem 0x0000000022000000-0x0000000022147fff]
> >     >         >     >       >     >       > [    0.000000]   node   0:
> [mem 0x0000000022200000-0x0000000022347fff]
> >     >         >     >       >     >       > [    0.000000]   node   0:
> [mem 0x0000000024000000-0x0000000027ffffff]
> >     >         >     >       >     >       > [    0.000000]   node   0:
> [mem 0x0000000030000000-0x000000007fffffff]
> >     >         >     >       >     >       > [    0.000000] Initmem setup
> node 0 [mem 0x0000000010000000-0x000000007fffffff]
> >     >         >     >       >     >       > [    0.000000] On node 0,
> zone DMA: 8192 pages in unavailable ranges
> >     >         >     >       >     >       > [    0.000000] On node 0,
> zone DMA: 184 pages in unavailable ranges
> >     >         >     >       >     >       > [    0.000000] On node 0,
> zone DMA: 7352 pages in unavailable ranges
> >     >         >     >       >     >       > [    0.000000] cma: Reserved
> 256 MiB at 0x000000006e000000
> >     >         >     >       >     >       > [    0.000000] psci: probing
> for conduit method from DT.
> >     >         >     >       >     >       > [    0.000000] psci:
> PSCIv1.1 detected in firmware.
> >     >         >     >       >     >       > [    0.000000] psci: Using
> standard PSCI v0.2 function IDs
> >     >         >     >       >     >       > [    0.000000] psci: Trusted
> OS migration not required
> >     >         >     >       >     >       > [    0.000000] psci: SMC
> Calling Convention v1.1
> >     >         >     >       >     >       > [    0.000000] percpu:
> Embedded 16 pages/cpu s32792 r0 d32744 u65536
> >     >         >     >       >     >       > [    0.000000] Detected VIPT
> I-cache on CPU0
> >     >         >     >       >     >       > [    0.000000] CPU features:
> kernel page table isolation forced ON by KASLR
> >     >         >     >       >     >       > [    0.000000] CPU features:
> detected: Kernel page table isolation (KPTI)
> >     >         >     >       >     >       > [    0.000000] Built 1
> zonelists, mobility grouping on.  Total pages: 403845
> >     >         >     >       >     >       > [    0.000000] Kernel
> command line: console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused
> fips=1
> >     >         >     >       root=/dev/ram0
> >     >         >     >       >     >       maxcpus=2
> >     >         >     >       >     >       > [    0.000000] Unknown
> kernel command line parameters "earlyprintk=xen fips=1", will be passed to
> user
> >     >         >     >       space.
> >     >         >     >       >     >       > [    0.000000] Dentry cache
> hash table entries: 262144 (order: 9, 2097152 bytes, linear)
> >     >         >     >       >     >       > [    0.000000] Inode-cache
> hash table entries: 131072 (order: 8, 1048576 bytes, linear)
> >     >         >     >       >     >       > [    0.000000] mem
> auto-init: stack:off, heap alloc:on, heap free:on
> >     >         >     >       >     >       > [    0.000000] mem
> auto-init: clearing system memory may take some time...
> >     >         >     >       >     >       > [    0.000000] Memory:
> 1121936K/1641024K available (9728K kernel code, 836K rwdata, 2396K rodata,
> 1536K
> >     >         >     >       init, 262K bss,
> >     >         >     >       >     >       256944K reserved,
> >     >         >     >       >     >       > 262144K cma-reserved)
> >     >         >     >       >     >       > [    0.000000] SLUB:
> HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
> >     >         >     >       >     >       > [    0.000000] rcu:
> Hierarchical RCU implementation.
> >     >         >     >       >     >       > [    0.000000] rcu: RCU
> event tracing is enabled.
> >     >         >     >       >     >       > [    0.000000] rcu: RCU
> restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
> >     >         >     >       >     >       > [    0.000000] rcu: RCU
> calculated value of scheduler-enlistment delay is 25 jiffies.
> >     >         >     >       >     >       > [    0.000000] rcu:
> Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
> >     >         >     >       >     >       > [    0.000000] NR_IRQS: 64,
> nr_irqs: 64, preallocated irqs: 0
> >     >         >     >       >     >       > [    0.000000] Root IRQ
> handler: gic_handle_irq
> >     >         >     >       >     >       > [    0.000000] arch_timer:
> cp15 timer(s) running at 100.00MHz (virt).
> >     >         >     >       >     >       > [    0.000000] clocksource:
> arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0,
> >     >         >     >       max_idle_ns: 440795205315 ns
> >     >         >     >       >     >       > [    0.000000] sched_clock:
> 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
> >     >         >     >       >     >       > [    0.000258] Console:
> colour dummy device 80x25
> >     >         >     >       >     >       > [    0.310231] printk:
> console [hvc0] enabled
> >     >         >     >       >     >       > [    0.314403] Calibrating
> delay loop (skipped), value calculated using timer frequency.. 200.00
> BogoMIPS
> >     >         >     >       (lpj=400000)
> >     >         >     >       >     >       > [    0.324851] pid_max:
> default: 32768 minimum: 301
> >     >         >     >       >     >       > [    0.329706] LSM: Security
> Framework initializing
> >     >         >     >       >     >       > [    0.334204] Yama:
> becoming mindful.
> >     >         >     >       >     >       > [    0.337865] Mount-cache
> hash table entries: 4096 (order: 3, 32768 bytes, linear)
> >     >         >     >       >     >       > [    0.345180]
> Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
> >     >         >     >       >     >       > [    0.354743]
> xen:grant_table: Grant tables using version 1 layout
> >     >         >     >       >     >       > [    0.359132] Grant table
> initialized
> >     >         >     >       >     >       > [    0.362664] xen:events:
> Using FIFO-based ABI
> >     >         >     >       >     >       > [    0.366993] Xen:
> initializing cpu0
> >     >         >     >       >     >       > [    0.370515] rcu:
> Hierarchical SRCU implementation.
> >     >         >     >       >     >       > [    0.375930] smp: Bringing
> up secondary CPUs ...
> >     >         >     >       >     >       > (XEN) null.c:353: 1 <-- d0v1
> >     >         >     >       >     >       > (XEN) d0v1: vGICD: unhandled
> word write 0x000000ffffffff to ICACTIVER0
> >     >         >     >       >     >       > [    0.382549] Detected VIPT
> I-cache on CPU1
> >     >         >     >       >     >       > [    0.388712] Xen:
> initializing cpu1
> >     >         >     >       >     >       > [    0.388743] CPU1: Booted
> secondary processor 0x0000000001 [0x410fd034]
> >     >         >     >       >     >       > [    0.388829] smp: Brought
> up 1 node, 2 CPUs
> >     >         >     >       >     >       > [    0.406941] SMP: Total of
> 2 processors activated.
> >     >         >     >       >     >       > [    0.411698] CPU features:
> detected: 32-bit EL0 Support
> >     >         >     >       >     >       > [    0.416888] CPU features:
> detected: CRC32 instructions
> >     >         >     >       >     >       > [    0.422121] CPU: All
> CPU(s) started at EL1
> >     >         >     >       >     >       > [    0.426248] alternatives:
> patching kernel code
> >     >         >     >       >     >       > [    0.431424] devtmpfs:
> initialized
> >     >         >     >       >     >       > [    0.441454] KASLR enabled
> >     >         >     >       >     >       > [    0.441602] clocksource:
> jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns:
> >     >         >     >       7645041785100000 ns
> >     >         >     >       >     >       > [    0.448321] futex hash
> table entries: 512 (order: 3, 32768 bytes, linear)
> >     >         >     >       >     >       > [    0.496183] NET:
> Registered PF_NETLINK/PF_ROUTE protocol family
> >     >         >     >       >     >       > [    0.498277] DMA:
> preallocated 256 KiB GFP_KERNEL pool for atomic allocations
> >     >         >     >       >     >       > [    0.503772] DMA:
> preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
> >     >         >     >       >     >       > [    0.511610] DMA:
> preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
> >     >         >     >       >     >       > [    0.519478] audit:
> initializing netlink subsys (disabled)
> >     >         >     >       >     >       > [    0.524985] audit:
> type=2000 audit(0.336:1): state=initialized audit_enabled=0 res=1
> >     >         >     >       >     >       > [    0.529169] thermal_sys:
> Registered thermal governor 'step_wise'
> >     >         >     >       >     >       > [    0.533023]
> hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
> >     >         >     >       >     >       > [    0.545608] ASID
> allocator initialised with 32768 entries
> >     >         >     >       >     >       > [    0.551030]
> xen:swiotlb_xen: Warning: only able to allocate 4 MB for software IO TLB
> >     >         >     >       >     >       > [    0.559332] software IO
> TLB: mapped [mem 0x0000000011800000-0x0000000011c00000] (4MB)
> >     >         >     >       >     >       > [    0.583565] HugeTLB
> registered 1.00 GiB page size, pre-allocated 0 pages
> >     >         >     >       >     >       > [    0.584721] HugeTLB
> registered 32.0 MiB page size, pre-allocated 0 pages
> >     >         >     >       >     >       > [    0.591478] HugeTLB
> registered 2.00 MiB page size, pre-allocated 0 pages
> >     >         >     >       >     >       > [    0.598225] HugeTLB
> registered 64.0 KiB page size, pre-allocated 0 pages
> >     >         >     >       >     >       > [    0.636520] DRBG:
> Continuing without Jitter RNG
> >     >         >     >       >     >       > [    0.737187] raid6: neonx8
>   gen()  2143 MB/s
> >     >         >     >       >     >       > [    0.805294] raid6: neonx8
>   xor()  1589 MB/s
> >     >         >     >       >     >       > [    0.873406] raid6: neonx4
>   gen()  2177 MB/s
> >     >         >     >       >     >       > [    0.941499] raid6: neonx4
>   xor()  1556 MB/s
> >     >         >     >       >     >       > [    1.009612] raid6: neonx2
>   gen()  2072 MB/s
> >     >         >     >       >     >       > [    1.077715] raid6: neonx2
>   xor()  1430 MB/s
> >     >         >     >       >     >       > [    1.145834] raid6: neonx1
>   gen()  1769 MB/s
> >     >         >     >       >     >       > [    1.213935] raid6: neonx1
>   xor()  1214 MB/s
> >     >         >     >       >     >       > [    1.282046] raid6:
> int64x8  gen()  1366 MB/s
> >     >         >     >       >     >       > [    1.350132] raid6:
> int64x8  xor()   773 MB/s
> >     >         >     >       >     >       > [    1.418259] raid6:
> int64x4  gen()  1602 MB/s
> >     >         >     >       >     >       > [    1.486349] raid6:
> int64x4  xor()   851 MB/s
> >     >         >     >       >     >       > [    1.554464] raid6:
> int64x2  gen()  1396 MB/s
> >     >         >     >       >     >       > [    1.622561] raid6:
> int64x2  xor()   744 MB/s
> >     >         >     >       >     >       > [    1.690687] raid6:
> int64x1  gen()  1033 MB/s
> >     >         >     >       >     >       > [    1.758770] raid6:
> int64x1  xor()   517 MB/s
> >     >         >     >       >     >       > [    1.758809] raid6: using
> algorithm neonx4 gen() 2177 MB/s
> >     >         >     >       >     >       > [    1.762941] raid6: ....
> xor() 1556 MB/s, rmw enabled
> >     >         >     >       >     >       > [    1.767957] raid6: using
> neon recovery algorithm
> >     >         >     >       >     >       > [    1.772824] xen:balloon:
> Initialising balloon driver
> >     >         >     >       >     >       > [    1.778021] iommu:
> Default domain type: Translated
> >     >         >     >       >     >       > [    1.782584] iommu: DMA
> domain TLB invalidation policy: strict mode
> >     >         >     >       >     >       > [    1.789149] SCSI
> subsystem initialized
> >     >         >     >       >     >       > [    1.792820] usbcore:
> registered new interface driver usbfs
> >     >         >     >       >     >       > [    1.798254] usbcore:
> registered new interface driver hub
> >     >         >     >       >     >       > [    1.803626] usbcore:
> registered new device driver usb
> >     >         >     >       >     >       > [    1.808761] pps_core:
> LinuxPPS API ver. 1 registered
> >     >         >     >       >     >       > [    1.813716] pps_core:
> Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <
> giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it
> <mailto:giometti@linux.it>> <mailto:giometti@linux.it <mailto:
> giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>>
> >     >         >     >       <mailto:giometti@linux.it <mailto:
> giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>
> <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:
> giometti@linux.it <mailto:giometti@linux.it>>>>>
> >     >         >     >       >     >       > [    1.822903] PTP clock
> support registered
> >     >         >     >       >     >       > [    1.826893] EDAC MC: Ver:
> 3.0.0
> >     >         >     >       >     >       > [    1.830375]
> zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX
> channels.
> >     >         >     >       >     >       > [    1.838863]
> zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX
> channels.
> >     >         >     >       >     >       > [    1.847356]
> zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX
> channels.
> >     >         >     >       >     >       > [    1.855907] FPGA manager
> framework
> >     >         >     >       >     >       > [    1.859952] clocksource:
> Switched to clocksource arch_sys_counter
> >     >         >     >       >     >       > [    1.871712] NET:
> Registered PF_INET protocol family
> >     >         >     >       >     >       > [    1.871838] IP idents
> hash table entries: 32768 (order: 6, 262144 bytes, linear)
> >     >         >     >       >     >       > [    1.879392]
> tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes,
> linear)
> >     >         >     >       >     >       > [    1.887078] Table-perturb
> hash table entries: 65536 (order: 6, 262144 bytes, linear)
> >     >         >     >       >     >       > [    1.894846] TCP
> established hash table entries: 16384 (order: 5, 131072 bytes, linear)
> >     >         >     >       >     >       > [    1.902900] TCP bind hash
> table entries: 16384 (order: 6, 262144 bytes, linear)
> >     >         >     >       >     >       > [    1.910350] TCP: Hash
> tables configured (established 16384 bind 16384)
> >     >         >     >       >     >       > [    1.916778] UDP hash
> table entries: 1024 (order: 3, 32768 bytes, linear)
> >     >         >     >       >     >       > [    1.923509] UDP-Lite hash
> table entries: 1024 (order: 3, 32768 bytes, linear)
> >     >         >     >       >     >       > [    1.930759] NET:
> Registered PF_UNIX/PF_LOCAL protocol family
> >     >         >     >       >     >       > [    1.936834] RPC:
> Registered named UNIX socket transport module.
> >     >         >     >       >     >       > [    1.942342] RPC:
> Registered udp transport module.
> >     >         >     >       >     >       > [    1.947088] RPC:
> Registered tcp transport module.
> >     >         >     >       >     >       > [    1.951843] RPC:
> Registered tcp NFSv4.1 backchannel transport module.
> >     >         >     >       >     >       > [    1.958334] PCI: CLS 0
> bytes, default 64
> >     >         >     >       >     >       > [    1.962709] Trying to
> unpack rootfs image as initramfs...
> >     >         >     >       >     >       > [    1.977090] workingset:
> timestamp_bits=62 max_order=19 bucket_order=0
> >     >         >     >       >     >       > [    1.982863] Installing
> knfsd (copyright (C) 1996 okir@monad.swb.de <mailto:okir@monad.swb.de>
> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>> <mailto:
> okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de
> <mailto:okir@monad.swb.de>>> <mailto:okir@monad.swb.de <mailto:
> okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>
> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:
> okir@monad.swb.de <mailto:okir@monad.swb.de>>>>).
> >     >         >     >       >     >       > [    2.021045] NET:
> Registered PF_ALG protocol family
> >     >         >     >       >     >       > [    2.021122] xor:
> measuring software checksum speed
> >     >         >     >       >     >       > [    2.029347]    8regs
>       :  2366 MB/sec
> >     >         >     >       >     >       > [    2.033081]    32regs
>      :  2802 MB/sec
> >     >         >     >       >     >       > [    2.038223]    arm64_neon
>      :  2320 MB/sec
> >     >         >     >       >     >       > [    2.038385] xor: using
> function: 32regs (2802 MB/sec)
> >     >         >     >       >     >       > [    2.043614] Block layer
> SCSI generic (bsg) driver version 0.4 loaded (major 247)
> >     >         >     >       >     >       > [    2.050959] io scheduler
> mq-deadline registered
> >     >         >     >       >     >       > [    2.055521] io scheduler
> kyber registered
> >     >         >     >       >     >       > [    2.068227]
> xen:xen_evtchn: Event-channel device installed
> >     >         >     >       >     >       > [    2.069281] Serial:
> 8250/16550 driver, 4 ports, IRQ sharing disabled
> >     >         >     >       >     >       > [    2.076190] cacheinfo:
> Unable to detect cache hierarchy for CPU 0
> >     >         >     >       >     >       > [    2.085548] brd: module
> loaded
> >     >         >     >       >     >       > [    2.089290] loop: module
> loaded
> >     >         >     >       >     >       > [    2.089341] Invalid
> max_queues (4), will use default max: 2.
> >     >         >     >       >     >       > [    2.094565] tun:
> Universal TUN/TAP device driver, 1.6
> >     >         >     >       >     >       > [    2.098655] xen_netfront:
> Initialising Xen virtual ethernet driver
> >     >         >     >       >     >       > [    2.104156] usbcore:
> registered new interface driver rtl8150
> >     >         >     >       >     >       > [    2.109813] usbcore:
> registered new interface driver r8152
> >     >         >     >       >     >       > [    2.115367] usbcore:
> registered new interface driver asix
> >     >         >     >       >     >       > [    2.120794] usbcore:
> registered new interface driver ax88179_178a
> >     >         >     >       >     >       > [    2.126934] usbcore:
> registered new interface driver cdc_ether
> >     >         >     >       >     >       > [    2.132816] usbcore:
> registered new interface driver cdc_eem
> >     >         >     >       >     >       > [    2.138527] usbcore:
> registered new interface driver net1080
> >     >         >     >       >     >       > [    2.144256] usbcore:
> registered new interface driver cdc_subset
> >     >         >     >       >     >       > [    2.150205] usbcore:
> registered new interface driver zaurus
> >     >         >     >       >     >       > [    2.155837] usbcore:
> registered new interface driver cdc_ncm
> >     >         >     >       >     >       > [    2.161550] usbcore:
> registered new interface driver r8153_ecm
> >     >         >     >       >     >       > [    2.168240] usbcore:
> registered new interface driver cdc_acm
> >     >         >     >       >     >       > [    2.173109] cdc_acm: USB
> Abstract Control Model driver for USB modems and ISDN adapters
> >     >         >     >       >     >       > [    2.181358] usbcore:
> registered new interface driver uas
> >     >         >     >       >     >       > [    2.186547] usbcore:
> registered new interface driver usb-storage
> >     >         >     >       >     >       > [    2.192643] usbcore:
> registered new interface driver ftdi_sio
> >     >         >     >       >     >       > [    2.198384] usbserial:
> USB Serial support registered for FTDI USB Serial Device
> >     >         >     >       >     >       > [    2.206118] udc-core:
> couldn't find an available UDC - added [g_mass_storage] to list of pending
> >     >         >     >       drivers
> >     >         >     >       >     >       > [    2.215332] i2c_dev: i2c
> /dev entries driver
> >     >         >     >       >     >       > [    2.220467] xen_wdt
> xen_wdt: initialized (timeout=60s, nowayout=0)
> >     >         >     >       >     >       > [    2.225923]
> device-mapper: uevent: version 1.0.3
> >     >         >     >       >     >       > [    2.230668]
> device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com>> <mailto:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:
> dm-devel@redhat.com <mailto:dm-devel@redhat.com>>>
> >     >         >     >       <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com>> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com>>>>
> >     >         >     >       >     >       > [    2.239315] EDAC MC0:
> Giving out device to module 1 controller synps_ddr_controller: DEV
> synps_edac
> >     >         >     >       (INTERRUPT)
> >     >         >     >       >     >       > [    2.249405] EDAC DEVICE0:
> Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV
> >     >         >     >       >     >       ff960000.memory-controller
> (INTERRUPT)
> >     >         >     >       >     >       > [    2.261719] sdhci: Secure
> Digital Host Controller Interface driver
> >     >         >     >       >     >       > [    2.267487] sdhci:
> Copyright(c) Pierre Ossman
> >     >         >     >       >     >       > [    2.271890] sdhci-pltfm:
> SDHCI platform and OF driver helper
> >     >         >     >       >     >       > [    2.278157] ledtrig-cpu:
> registered to indicate activity on CPUs
> >     >         >     >       >     >       > [    2.283816]
> zynqmp_firmware_probe Platform Management API v1.1
> >     >         >     >       >     >       > [    2.289554]
> zynqmp_firmware_probe Trustzone version v1.0
> >     >         >     >       >     >       > [    2.327875] securefw
> securefw: securefw probed
> >     >         >     >       >     >       > [    2.328324] alg: No test
> for xilinx-zynqmp-aes (zynqmp-aes)
> >     >         >     >       >     >       > [    2.332563] zynqmp_aes
> firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
> >     >         >     >       >     >       > [    2.341183] alg: No test
> for xilinx-zynqmp-rsa (zynqmp-rsa)
> >     >         >     >       >     >       > [    2.347667] remoteproc
> remoteproc0: ff9a0000.rf5ss:r5f_0 is available
> >     >         >     >       >     >       > [    2.353003] remoteproc
> remoteproc1: ff9a0000.rf5ss:r5f_1 is available
> >     >         >     >       >     >       > [    2.362605] fpga_manager
> fpga0: Xilinx ZynqMP FPGA Manager registered
> >     >         >     >       >     >       > [    2.366540]
> viper-xen-proxy viper-xen-proxy: Viper Xen Proxy registered
> >     >         >     >       >     >       > [    2.372525] viper-vdpp
> a4000000.vdpp: Device Tree Probing
> >     >         >     >       >     >       > [    2.377778] viper-vdpp
> a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >     >         >     >       >     >       > [    2.386432] viper-vdpp
> a4000000.vdpp: Unable to register tamper handler. Retrying...
> >     >         >     >       >     >       > [    2.394094]
> viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
> >     >         >     >       >     >       > [    2.399854]
> viper-vdpp-net a5000000.vdpp_net: Device registered
> >     >         >     >       >     >       > [    2.405931]
> viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
> >     >         >     >       >     >       > [    2.412037]
> viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event
> Count: 32
> >     >         >     >       >     >       > [    2.420856] default preset
> >     >         >     >       >     >       > [    2.423797]
> viper-vdpp-stat a8000000.vdpp_stat: Device registered
> >     >         >     >       >     >       > [    2.430054]
> viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
> >     >         >     >       >     >       > [    2.435948]
> viper-vdpp-rng ac000000.vdpp_rng: Device registered
> >     >         >     >       >     >       > [    2.441976] vmcu driver
> init
> >     >         >     >       >     >       > [    2.444922] VMCU: :
> (240:0) registered
> >     >         >     >       >     >       > [    2.444956] In K81
> Updater init
> >     >         >     >       >     >       > [    2.449003] pktgen:
> Packet Generator for packet performance testing. Version: 2.75
> >     >         >     >       >     >       > [    2.468833] Initializing
> XFRM netlink socket
> >     >         >     >       >     >       > [    2.468902] NET:
> Registered PF_PACKET protocol family
> >     >         >     >       >     >       > [    2.472729] Bridge
> firewalling registered
> >     >         >     >       >     >       > [    2.476785] 8021q: 802.1Q
> VLAN Support v1.8
> >     >         >     >       >     >       > [    2.481341] registered
> taskstats version 1
> >     >         >     >       >     >       > [    2.486394] Btrfs loaded,
> crc32c=crc32c-generic, zoned=no, fsverity=no
> >     >         >     >       >     >       > [    2.503145]
> ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36, base_baud = 6250000)
> is a xuartps
> >     >         >     >       >     >       > [    2.507103]
> of-fpga-region fpga-full: FPGA Region probed
> >     >         >     >       >     >       > [    2.512986]
> xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver Probe success
> >     >         >     >       >     >       > [    2.520267]
> xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver Probe success
> >     >         >     >       >     >       > [    2.528239]
> xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver Probe success
> >     >         >     >       >     >       > [    2.536152]
> xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver Probe success
> >     >         >     >       >     >       > [    2.544153]
> xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver Probe success
> >     >         >     >       >     >       > [    2.552127]
> xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver Probe success
> >     >         >     >       >     >       > [    2.560178]
> xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver Probe success
> >     >         >     >       >     >       > [    2.567987]
> xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver Probe success
> >     >         >     >       >     >       > [    2.576018]
> xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver Probe success
> >     >         >     >       >     >       > [    2.583889]
> xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver Probe success
> >     >         >     >       >     >       > [    2.946379] spi-nor
> spi0.0: mt25qu512a (131072 Kbytes)
> >     >         >     >       >     >       > [    2.946467] 2
> fixed-partitions partitions found on MTD device spi0.0
> >     >         >     >       >     >       > [    2.952393] Creating 2
> MTD partitions on "spi0.0":
> >     >         >     >       >     >       > [    2.957231]
> 0x000004000000-0x000008000000 : "bank A"
> >     >         >     >       >     >       > [    2.963332]
> 0x000000000000-0x000004000000 : "bank B"
> >     >         >     >       >     >       > [    2.968694] macb
> ff0b0000.ethernet: Not enabling partial store and forward
> >     >         >     >       >     >       > [    2.975333] macb
> ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25
> >     >         >     >       (18:41:fe:0f:ff:02)
> >     >         >     >       >     >       > [    2.984472] macb
> ff0c0000.ethernet: Not enabling partial store and forward
> >     >         >     >       >     >       > [    2.992144] macb
> ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26
> >     >         >     >       (18:41:fe:0f:ff:03)
> >     >         >     >       >     >       > [    3.001043] viper_enet
> viper_enet: Viper power GPIOs initialised
> >     >         >     >       >     >       > [    3.007313] viper_enet
> viper_enet vnet0 (uninitialized): Validate interface QSGMII
> >     >         >     >       >     >       > [    3.014914] viper_enet
> viper_enet vnet1 (uninitialized): Validate interface QSGMII
> >     >         >     >       >     >       > [    3.022138] viper_enet
> viper_enet vnet1 (uninitialized): Validate interface type 18
> >     >         >     >       >     >       > [    3.030274] viper_enet
> viper_enet vnet2 (uninitialized): Validate interface QSGMII
> >     >         >     >       >     >       > [    3.037785] viper_enet
> viper_enet vnet3 (uninitialized): Validate interface QSGMII
> >     >         >     >       >     >       > [    3.045301] viper_enet
> viper_enet: Viper enet registered
> >     >         >     >       >     >       > [    3.050958]
> xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
> >     >         >     >       >     >       > [    3.057135]
> xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
> >     >         >     >       >     >       > [    3.063538]
> xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
> >     >         >     >       >     >       > [    3.069920]
> xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
> >     >         >     >       >     >       > [    3.097729] si70xx: probe
> of 2-0040 failed with error -5
> >     >         >     >       >     >       > [    3.098042] cdns-wdt
> fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
> >     >         >     >       >     >       > [    3.105111] cdns-wdt
> ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
> >     >         >     >       >     >       > [    3.112457] viper-tamper
> viper-tamper: Device registered
> >     >         >     >       >     >       > [    3.117593] active_bank
> active_bank: boot bank: 1
> >     >         >     >       >     >       > [    3.122184] active_bank
> active_bank: boot mode: (0x02) qspi32
> >     >         >     >       >     >       > [    3.128247] viper-vdpp
> a4000000.vdpp: Device Tree Probing
> >     >         >     >       >     >       > [    3.133439] viper-vdpp
> a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >     >         >     >       >     >       > [    3.142151] viper-vdpp
> a4000000.vdpp: Tamper handler registered
> >     >         >     >       >     >       > [    3.147438] viper-vdpp
> a4000000.vdpp: Device registered
> >     >         >     >       >     >       > [    3.153007] lpc55_l2
> spi1.0: registered handler for protocol 0
> >     >         >     >       >     >       > [    3.158582] lpc55_user
> lpc55_user: The major number for your device is 236
> >     >         >     >       >     >       > [    3.165976] lpc55_l2
> spi1.0: registered handler for protocol 1
> >     >         >     >       >     >       > [    3.181999] rtc-lpc55
> rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >     >         >     >       >     >       > [    3.182856] rtc-lpc55
> rtc_lpc55: registered as rtc0
> >     >         >     >       >     >       > [    3.188656] lpc55_l2
> spi1.0: (2) mcu still not ready?
> >     >         >     >       >     >       > [    3.193744] lpc55_l2
> spi1.0: (3) mcu still not ready?
> >     >         >     >       >     >       > [    3.198848] lpc55_l2
> spi1.0: (4) mcu still not ready?
> >     >         >     >       >     >       > [    3.202932] mmc0: SDHCI
> controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
> >     >         >     >       >     >       > [    3.210689] lpc55_l2
> spi1.0: (5) mcu still not ready?
> >     >         >     >       >     >       > [    3.215694] lpc55_l2
> spi1.0: rx error: -110
> >     >         >     >       >     >       > [    3.284438] mmc0: new
> HS200 MMC card at address 0001
> >     >         >     >       >     >       > [    3.285179] mmcblk0:
> mmc0:0001 SEM16G 14.6 GiB
> >     >         >     >       >     >       > [    3.291784]  mmcblk0: p1
> p2 p3 p4 p5 p6 p7 p8
> >     >         >     >       >     >       > [    3.293915] mmcblk0boot0:
> mmc0:0001 SEM16G 4.00 MiB
> >     >         >     >       >     >       > [    3.299054] mmcblk0boot1:
> mmc0:0001 SEM16G 4.00 MiB
> >     >         >     >       >     >       > [    3.303905] mmcblk0rpmb:
> mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
> >     >         >     >       >     >       > [    3.582676] rtc-lpc55
> rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >     >         >     >       >     >       > [    3.583332] rtc-lpc55
> rtc_lpc55: hctosys: unable to read the hardware clock
> >     >         >     >       >     >       > [    3.591252] cdns-i2c
> ff020000.i2c: recovery information complete
> >     >         >     >       >     >       > [    3.597085] at24 0-0050:
> supply vcc not found, using dummy regulator
> >     >         >     >       >     >       > [    3.603011] lpc55_l2
> spi1.0: (2) mcu still not ready?
> >     >         >     >       >     >       > [    3.608093] at24 0-0050:
> 256 byte spd EEPROM, read-only
> >     >         >     >       >     >       > [    3.613620] lpc55_l2
> spi1.0: (3) mcu still not ready?
> >     >         >     >       >     >       > [    3.619362] lpc55_l2
> spi1.0: (4) mcu still not ready?
> >     >         >     >       >     >       > [    3.624224] rtc-rv3028
> 0-0052: registered as rtc1
> >     >         >     >       >     >       > [    3.628343] lpc55_l2
> spi1.0: (5) mcu still not ready?
> >     >         >     >       >     >       > [    3.633253] lpc55_l2
> spi1.0: rx error: -110
> >     >         >     >       >     >       > [    3.639104]
> k81_bootloader 0-0010: probe
> >     >         >     >       >     >       > [    3.641628] VMCU: :
> (235:0) registered
> >     >         >     >       >     >       > [    3.641635]
> k81_bootloader 0-0010: probe completed
> >     >         >     >       >     >       > [    3.668346] cdns-i2c
> ff020000.i2c: 400 kHz mmio ff020000 irq 28
> >     >         >     >       >     >       > [    3.669154] cdns-i2c
> ff030000.i2c: recovery information complete
> >     >         >     >       >     >       > [    3.675412] lm75 1-0048:
> supply vs not found, using dummy regulator
> >     >         >     >       >     >       > [    3.682920] lm75 1-0048:
> hwmon1: sensor 'tmp112'
> >     >         >     >       >     >       > [    3.686548] i2c i2c-1:
> Added multiplexed i2c bus 3
> >     >         >     >       >     >       > [    3.690795] i2c i2c-1:
> Added multiplexed i2c bus 4
> >     >         >     >       >     >       > [    3.695629] i2c i2c-1:
> Added multiplexed i2c bus 5
> >     >         >     >       >     >       > [    3.700492] i2c i2c-1:
> Added multiplexed i2c bus 6
> >     >         >     >       >     >       > [    3.705157] pca954x
> 1-0070: registered 4 multiplexed busses for I2C switch pca9546
> >     >         >     >       >     >       > [    3.713049] at24 1-0054:
> supply vcc not found, using dummy regulator
> >     >         >     >       >     >       > [    3.720067] at24 1-0054:
> 1024 byte 24c08 EEPROM, read-only
> >     >         >     >       >     >       > [    3.724761] cdns-i2c
> ff030000.i2c: 100 kHz mmio ff030000 irq 29
> >     >         >     >       >     >       > [    3.731272] sfp
> viper_enet:sfp-eth1: Host maximum power 2.0W
> >     >         >     >       >     >       > [    3.737549]
> sfp_register_socket: got sfp_bus
> >     >         >     >       >     >       > [    3.740709]
> sfp_register_socket: register sfp_bus
> >     >         >     >       >     >       > [    3.745459]
> sfp_register_bus: ops ok!
> >     >         >     >       >     >       > [    3.749179]
> sfp_register_bus: Try to attach
> >     >         >     >       >     >       > [    3.753419]
> sfp_register_bus: Attach succeeded
> >     >         >     >       >     >       > [    3.757914]
> sfp_register_bus: upstream ops attach
> >     >         >     >       >     >       > [    3.762677]
> sfp_register_bus: Bus registered
> >     >         >     >       >     >       > [    3.766999]
> sfp_register_socket: register sfp_bus succeeded
> >     >         >     >       >     >       > [    3.775870] of_cfs_init
> >     >         >     >       >     >       > [    3.776000] of_cfs_init:
> OK
> >     >         >     >       >     >       > [    3.778211] clk: Not
> disabling unused clocks
> >     >         >     >       >     >       > [   11.278477] Freeing
> initrd memory: 206056K
> >     >         >     >       >     >       > [   11.279406] Freeing
> unused kernel memory: 1536K
> >     >         >     >       >     >       > [   11.314006] Checked W+X
> mappings: passed, no W+X pages found
> >     >         >     >       >     >       > [   11.314142] Run /init as
> init process
> >     >         >     >       >     >       > INIT: version 3.01 booting
> >     >         >     >       >     >       > fsck (busybox 1.35.0)
> >     >         >     >       >     >       > /dev/mmcblk0p1: clean,
> 12/102400 files, 238162/409600 blocks
> >     >         >     >       >     >       > /dev/mmcblk0p2: clean,
> 12/102400 files, 171972/409600 blocks
> >     >         >     >       >     >       > /dev/mmcblk0p3 was not
> cleanly unmounted, check forced.
> >     >         >     >       >     >       > /dev/mmcblk0p3: 20/4096
> files (0.0% non-contiguous), 663/16384 blocks
> >     >         >     >       >     >       > [   11.553073] EXT4-fs
> (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode:
> >     >         >     >       disabled.
> >     >         >     >       >     >       > Starting random number
> generator daemon.
> >     >         >     >       >     >       > [   11.580662] random: crng
> init done
> >     >         >     >       >     >       > Starting udev
> >     >         >     >       >     >       > [   11.613159] udevd[142]:
> starting version 3.2.10
> >     >         >     >       >     >       > [   11.620385] udevd[143]:
> starting eudev-3.2.10
> >     >         >     >       >     >       > [   11.704481] macb
> ff0b0000.ethernet control_red: renamed from eth0
> >     >         >     >       >     >       > [   11.720264] macb
> ff0c0000.ethernet control_black: renamed from eth1
> >     >         >     >       >     >       > [   12.063396]
> ip_local_port_range: prefer different parity for start/end values.
> >     >         >     >       >     >       > [   12.084801] rtc-lpc55
> rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >     >         >     >       >     >       > hwclock: RTC_RD_TIME:
> Invalid exchange
> >     >         >     >       >     >       > Mon Feb 27 08:40:53 UTC 2023
> >     >         >     >       >     >       > [   12.115309] rtc-lpc55
> rtc_lpc55: lpc55_rtc_set_time: bad result
> >     >         >     >       >     >       > hwclock: RTC_SET_TIME:
> Invalid exchange
> >     >         >     >       >     >       > [   12.131027] rtc-lpc55
> rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >     >         >     >       >     >       > Starting mcud
> >     >         >     >       >     >       > INIT: Entering runlevel: 5
> >     >         >     >       >     >       > Configuring network
> interfaces... done.
> >     >         >     >       >     >       > resetting network interface
> >     >         >     >       >     >       > [   12.718295] macb
> ff0b0000.ethernet control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver
> [Xilinx
> >     >         >     >       PCS/PMA PHY] (irq=POLL)
> >     >         >     >       >     >       > [   12.723919] macb
> ff0b0000.ethernet control_red: configuring for phy/gmii link mode
> >     >         >     >       >     >       > [   12.732151] pps pps0: new
> PPS source ptp0
> >     >         >     >       >     >       > [   12.735563] macb
> ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
> >     >         >     >       >     >       > [   12.745724] macb
> ff0c0000.ethernet control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver
> [Xilinx
> >     >         >     >       PCS/PMA PHY]
> >     >         >     >       >     >       (irq=POLL)
> >     >         >     >       >     >       > [   12.753469] macb
> ff0c0000.ethernet control_black: configuring for phy/gmii link mode
> >     >         >     >       >     >       > [   12.761804] pps pps1: new
> PPS source ptp1
> >     >         >     >       >     >       > [   12.765398] macb
> ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
> >     >         >     >       >     >       > Auto-negotiation: off
> >     >         >     >       >     >       > Auto-negotiation: off
> >     >         >     >       >     >       > [   16.828151] macb
> ff0b0000.ethernet control_red: unable to generate target frequency:
> 125000000 Hz
> >     >         >     >       >     >       > [   16.834553] macb
> ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full - flow control off
> >     >         >     >       >     >       > [   16.860552] macb
> ff0c0000.ethernet control_black: unable to generate target frequency:
> 125000000 Hz
> >     >         >     >       >     >       > [   16.867052] macb
> ff0c0000.ethernet control_black: Link is Up - 1Gbps/Full - flow control off
> >     >         >     >       >     >       > Starting Failsafe Secure
> Shell server in port 2222: sshd
> >     >         >     >       >     >       > done.
> >     >         >     >       >     >       > Starting rpcbind
> daemon...done.
> >     >         >     >       >     >       >
> >     >         >     >       >     >       > [   17.093019] rtc-lpc55
> rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >     >         >     >       >     >       > hwclock: RTC_RD_TIME:
> Invalid exchange
> >     >         >     >       >     >       > Starting State Manager
> Service
> >     >         >     >       >     >       > Start state-manager
> restarter...
> >     >         >     >       >     >       > (XEN) d0v1 Forwarding AES
> operation: 3254779951
> >     >         >     >       >     >       > Starting
> /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid
> 80efc224-c202-4f8e-a949-4dae7f04a0aa
> >     >         >     >       devid 1 transid 744
> >     >         >     >       >     >       /dev/dm-0
> >     >         >     >       >     >       > scanned by udevd (385)
> >     >         >     >       >     >       > [   17.349933] BTRFS info
> (device dm-0): disk space caching is enabled
> >     >         >     >       >     >       > [   17.350670] BTRFS info
> (device dm-0): has skinny extents
> >     >         >     >       >     >       > [   17.364384] BTRFS info
> (device dm-0): enabling ssd optimizations
> >     >         >     >       >     >       > [   17.830462] BTRFS: device
> fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
> >     >         >     >       /dev/mapper/client_prov scanned by
> >     >         >     >       >     >       mkfs.btrfs
> >     >         >     >       >     >       > (526)
> >     >         >     >       >     >       > [   17.872699] BTRFS info
> (device dm-1): using free space tree
> >     >         >     >       >     >       > [   17.872771] BTRFS info
> (device dm-1): has skinny extents
> >     >         >     >       >     >       > [   17.878114] BTRFS info
> (device dm-1): flagging fs with big metadata feature
> >     >         >     >       >     >       > [   17.894289] BTRFS info
> (device dm-1): enabling ssd optimizations
> >     >         >     >       >     >       > [   17.895695] BTRFS info
> (device dm-1): checking UUID tree
> >     >         >     >       >     >       >
> >     >         >     >       >     >       > Setting domain 0 name, domid
> and JSON config...
> >     >         >     >       >     >       > Done setting up Dom0
> >     >         >     >       >     >       > Starting xenconsoled...
> >     >         >     >       >     >       > Starting QEMU as disk
> backend for dom0
> >     >         >     >       >     >       > Starting domain watchdog
> daemon: xenwatchdogd startup
> >     >         >     >       >     >       >
> >     >         >     >       >     >       > [   18.408647] BTRFS: device
> fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
> >     >         >     >       /dev/mapper/client_config scanned by
> >     >         >     >       >     >       mkfs.btrfs
> >     >         >     >       >     >       > (574)
> >     >         >     >       >     >       > [done]
> >     >         >     >       >     >       > [   18.465552] BTRFS info
> (device dm-2): using free space tree
> >     >         >     >       >     >       > [   18.465629] BTRFS info
> (device dm-2): has skinny extents
> >     >         >     >       >     >       > [   18.471002] BTRFS info
> (device dm-2): flagging fs with big metadata feature
> >     >         >     >       >     >       > Starting crond: [
> 18.482371] BTRFS info (device dm-2): enabling ssd optimizations
> >     >         >     >       >     >       > [   18.486659] BTRFS info
> (device dm-2): checking UUID tree
> >     >         >     >       >     >       > OK
> >     >         >     >       >     >       > starting rsyslogd ... Log
> partition ready after 0 poll loops
> >     >         >     >       >     >       > done
> >     >         >     >       >     >       > rsyslogd: cannot connect to
> 172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <
> http://172.18.0.1:514>> <http://172.18.0.1:514 <http://172.18.0.1:514> <
> http://172.18.0.1:514 <http://172.18.0.1:514>>> <http://172.18.0.1:514 <
> http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>> <
> http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <
> http://172.18.0.1:514>>>>: Network is unreachable [v8.2208.0 try
> >     >         >     >       https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>>> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>>>> ]
> >     >         >     >       >     >       > [   18.670637] BTRFS: device
> fsid 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3
> >     >         >     >       scanned by udevd (518)
> >     >         >     >       >     >       >
> >     >         >     >       >     >       > Please insert USB token and
> enter your role in login prompt.
> >     >         >     >       >     >       >
> >     >         >     >       >     >       > login:
> >     >         >     >       >     >       >
> >     >         >     >       >     >       > Regards,
> >     >         >     >       >     >       > O.
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >
> >     >         >     >       >     >       > пн, 24 апр. 2023 г. в 23:39,
> Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>:
> >     >         >     >       >     >       >       Hi Oleg,
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >       Here is the issue from
> your logs:
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >       SError Interrupt on
> CPU0, code 0xbe000000 -- SError
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >       SErrors are special
> signals to notify software of serious hardware
> >     >         >     >       >     >       >       errors.  Something is
> going very wrong. Defective hardware is a
> >     >         >     >       >     >       >       possibility.  Another
> possibility if software accessing address ranges
> >     >         >     >       >     >       >       that it is not
> supposed to, sometimes it causes SErrors.
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >       Cheers,
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >       Stefano
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >       On Mon, 24 Apr 2023,
> Oleg Nikitenko wrote:
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >       > Hello,
> >     >         >     >       >     >       >       >
> >     >         >     >       >     >       >       > Thanks guys.
> >     >         >     >       >     >       >       > I found out where
> the problem was.
> >     >         >     >       >     >       >       > Now dom0 booted
> more. But I have a new one.
> >     >         >     >       >     >       >       > This is a kernel
> panic during Dom0 loading.
> >     >         >     >       >     >       >       > Maybe someone is
> able to suggest something ?
> >     >         >     >       >     >       >       >
> >     >         >     >       >     >       >       > Regards,
> >     >         >     >       >     >       >       > O.
> >     >         >     >       >     >       >       >
> >     >         >     >       >     >       >       > [    3.771362]
> sfp_register_bus: upstream ops attach
> >     >         >     >       >     >       >       > [    3.776119]
> sfp_register_bus: Bus registered
> >     >         >     >       >     >       >       > [    3.780459]
> sfp_register_socket: register sfp_bus succeeded
> >     >         >     >       >     >       >       > [    3.789399]
> of_cfs_init
> >     >         >     >       >     >       >       > [    3.789499]
> of_cfs_init: OK
> >     >         >     >       >     >       >       > [    3.791685] clk:
> Not disabling unused clocks
> >     >         >     >       >     >       >       > [   11.010355]
> SError Interrupt on CPU0, code 0xbe000000 -- SError
> >     >         >     >       >     >       >       > [   11.010380] CPU:
> 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
> >     >         >     >       >     >       >       > [   11.010393]
> Workqueue: events_unbound async_run_entry_fn
> >     >         >     >       >     >       >       > [   11.010414]
> pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
> >     >         >     >       >     >       >       > [   11.010422] pc :
> simple_write_end+0xd0/0x130
> >     >         >     >       >     >       >       > [   11.010431] lr :
> generic_perform_write+0x118/0x1e0
> >     >         >     >       >     >       >       > [   11.010438] sp :
> ffffffc00809b910
> >     >         >     >       >     >       >       > [   11.010441] x29:
> ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
> >     >         >     >       >     >       >       > [   11.010451] x26:
> 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
> >     >         >     >       >     >       >       > [   11.010459] x23:
> ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
> >     >         >     >       >     >       >       > [   11.010472] x20:
> 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
> >     >         >     >       >     >       >       > [   11.010481] x17:
> 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
> >     >         >     >       >     >       >       > [   11.010490] x14:
> 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
> >     >         >     >       >     >       >       > [   11.010498] x11:
> 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
> >     >         >     >       >     >       >       > [   11.010507] x8 :
> 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
> >     >         >     >       >     >       >       > [   11.010515] x5 :
> fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
> >     >         >     >       >     >       >       > [   11.010524] x2 :
> 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
> >     >         >     >       >     >       >       > [   11.010534]
> Kernel panic - not syncing: Asynchronous SError Interrupt
> >     >         >     >       >     >       >       > [   11.010539] CPU:
> 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
> >     >         >     >       >     >       >       > [   11.010545]
> Hardware name: D14 Viper Board - White Unit (DT)
> >     >         >     >       >     >       >       > [   11.010548]
> Workqueue: events_unbound async_run_entry_fn
> >     >         >     >       >     >       >       > [   11.010556] Call
> trace:
> >     >         >     >       >     >       >       > [   11.010558]
>  dump_backtrace+0x0/0x1c4
> >     >         >     >       >     >       >       > [   11.010567]
>  show_stack+0x18/0x2c
> >     >         >     >       >     >       >       > [   11.010574]
>  dump_stack_lvl+0x7c/0xa0
> >     >         >     >       >     >       >       > [   11.010583]
>  dump_stack+0x18/0x34
> >     >         >     >       >     >       >       > [   11.010588]
>  panic+0x14c/0x2f8
> >     >         >     >       >     >       >       > [   11.010597]
>  print_tainted+0x0/0xb0
> >     >         >     >       >     >       >       > [   11.010606]
>  arm64_serror_panic+0x6c/0x7c
> >     >         >     >       >     >       >       > [   11.010614]
>  do_serror+0x28/0x60
> >     >         >     >       >     >       >       > [   11.010621]
>  el1h_64_error_handler+0x30/0x50
> >     >         >     >       >     >       >       > [   11.010628]
>  el1h_64_error+0x78/0x7c
> >     >         >     >       >     >       >       > [   11.010633]
>  simple_write_end+0xd0/0x130
> >     >         >     >       >     >       >       > [   11.010639]
>  generic_perform_write+0x118/0x1e0
> >     >         >     >       >     >       >       > [   11.010644]
>  __generic_file_write_iter+0x138/0x1c4
> >     >         >     >       >     >       >       > [   11.010650]
>  generic_file_write_iter+0x78/0xd0
> >     >         >     >       >     >       >       > [   11.010656]
>  __kernel_write+0xfc/0x2ac
> >     >         >     >       >     >       >       > [   11.010665]
>  kernel_write+0x88/0x160
> >     >         >     >       >     >       >       > [   11.010673]
>  xwrite+0x44/0x94
> >     >         >     >       >     >       >       > [   11.010680]
>  do_copy+0xa8/0x104
> >     >         >     >       >     >       >       > [   11.010686]
>  write_buffer+0x38/0x58
> >     >         >     >       >     >       >       > [   11.010692]
>  flush_buffer+0x4c/0xbc
> >     >         >     >       >     >       >       > [   11.010698]
>  __gunzip+0x280/0x310
> >     >         >     >       >     >       >       > [   11.010704]
>  gunzip+0x1c/0x28
> >     >         >     >       >     >       >       > [   11.010709]
>  unpack_to_rootfs+0x170/0x2b0
> >     >         >     >       >     >       >       > [   11.010715]
>  do_populate_rootfs+0x80/0x164
> >     >         >     >       >     >       >       > [   11.010722]
>  async_run_entry_fn+0x48/0x164
> >     >         >     >       >     >       >       > [   11.010728]
>  process_one_work+0x1e4/0x3a0
> >     >         >     >       >     >       >       > [   11.010736]
>  worker_thread+0x7c/0x4c0
> >     >         >     >       >     >       >       > [   11.010743]
>  kthread+0x120/0x130
> >     >         >     >       >     >       >       > [   11.010750]
>  ret_from_fork+0x10/0x20
> >     >         >     >       >     >       >       > [   11.010757] SMP:
> stopping secondary CPUs
> >     >         >     >       >     >       >       > [   11.010784]
> Kernel Offset: 0x2f61200000 from 0xffffffc008000000
> >     >         >     >       >     >       >       > [   11.010788]
> PHYS_OFFSET: 0x0
> >     >         >     >       >     >       >       > [   11.010790] CPU
> features: 0x00000401,00000842
> >     >         >     >       >     >       >       > [   11.010795]
> Memory Limit: none
> >     >         >     >       >     >       >       > [   11.277509] ---[
> end Kernel panic - not syncing: Asynchronous SError Interrupt ]---
> >     >         >     >       >     >       >       >
> >     >         >     >       >     >       >       > пт, 21 апр. 2023 г.
> в 15:52, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>
> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>:
> >     >         >     >       >     >       >       >       Hi Oleg,
> >     >         >     >       >     >       >       >
> >     >         >     >       >     >       >       >       On 21/04/2023
> 14:49, Oleg Nikitenko wrote:
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       > Hello Michal,
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       > I was not
> able to enable earlyprintk in the xen for now.
> >     >         >     >       >     >       >       >       > I decided to
> choose another way.
> >     >         >     >       >     >       >       >       > This is a
> xen's command line that I found out completely.
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       > (XEN) $$$$
> console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
> >     >         >     >       bootscrub=0
> >     >         >     >       >     >       vwfi=native
> >     >         >     >       >     >       >       sched=null
> >     >         >     >       >     >       >       >       timer_slop=0
> >     >         >     >       >     >       >       >       Yes, adding a
> printk() in Xen was also a good idea.
> >     >         >     >       >     >       >       >
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       > So you are
> absolutely right about a command line.
> >     >         >     >       >     >       >       >       > Now I am
> going to find out why xen did not have the correct parameters from the
> device
> >     >         >     >       tree.
> >     >         >     >       >     >       >       >       Maybe you will
> find this document helpful:
> >     >         >     >       >     >       >       >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >>>
> >     >         >     >       <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >>>>
> >     >         >     >       >     >       >       >
> >     >         >     >       >     >       >       >       ~Michal
> >     >         >     >       >     >       >       >
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       > Regards,
> >     >         >     >       >     >       >       >       > Oleg
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       > пт, 21 апр.
> 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>
> >     >         >     >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>>>:
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       >     On
> 21/04/2023 10:04, Oleg Nikitenko wrote:
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     > Hello
> Michal,
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     > Yes, I
> use yocto.
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
> Yesterday all day long I tried to follow your suggestions.
> >     >         >     >       >     >       >       >       >     > I
> faced a problem.
> >     >         >     >       >     >       >       >       >     >
> Manually in the xen config build file I pasted the strings:
> >     >         >     >       >     >       >       >       >     In the
> .config file or in some Yocto file (listing additional Kconfig options)
> added
> >     >         >     >       to SRC_URI?
> >     >         >     >       >     >       >       >       >     You
> shouldn't really modify .config file but if you do, you should execute "make
> >     >         >     >       olddefconfig"
> >     >         >     >       >     >       afterwards.
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
> CONFIG_EARLY_PRINTK
> >     >         >     >       >     >       >       >       >     >
> CONFIG_EARLY_PRINTK_ZYNQMP
> >     >         >     >       >     >       >       >       >     >
> CONFIG_EARLY_UART_CHOICE_CADENCE
> >     >         >     >       >     >       >       >       >     I hope
> you added =y to them.
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       >     Anyway,
> you have at least the following solutions:
> >     >         >     >       >     >       >       >       >     1) Run
> bitbake xen -c menuconfig to properly set early printk
> >     >         >     >       >     >       >       >       >     2) Find
> out how you enable other Kconfig options in your project (e.g.
> >     >         >     >       CONFIG_COLORING=y that is not
> >     >         >     >       >     >       enabled by
> >     >         >     >       >     >       >       default)
> >     >         >     >       >     >       >       >       >     3)
> Append the following to "xen/arch/arm/configs/arm64_defconfig":
> >     >         >     >       >     >       >       >       >
>  CONFIG_EARLY_PRINTK_ZYNQMP=y
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       >     ~Michal
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     > Host
> hangs in build time.
> >     >         >     >       >     >       >       >       >     > Maybe
> I did not set something in the config build file ?
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
> Regards,
> >     >         >     >       >     >       >       >       >     > Oleg
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     > чт, 20
> апр. 2023 г. в 11:57, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>
> >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>
> >     >         >     >       >     >       >       >       <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
> >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>>>:
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>  Thanks Michal,
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>  You gave me an idea.
> >     >         >     >       >     >       >       >       >     >     I
> am going to try it today.
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>  Regards,
> >     >         >     >       >     >       >       >       >     >     O.
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>  чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>
> >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>
> >     >         >     >       >     >       >       >       <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
> >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>>>:
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>  Thanks Stefano.
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>  I am going to do it today.
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>  Regards,
> >     >         >     >       >     >       >       >       >     >
>  O.
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>  ср, 19 апр. 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>
> >     >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>
> >     >         >     >       >     >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>
> >     >         >     >       >     >       >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
> >     >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>>>:
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>      On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
> >     >         >     >       >     >       >       >       >     >
>      > Hi Michal,
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      > I corrected xen's command line.
> >     >         >     >       >     >       >       >       >     >
>      > Now it is
> >     >         >     >       >     >       >       >       >     >
>      > xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M
> >     >         >     >       dom0_max_vcpus=2
> >     >         >     >       >     >       dom0_vcpus_pin
> >     >         >     >       >     >       >       >       bootscrub=0
> vwfi=native sched=null
> >     >         >     >       >     >       >       >       >     >
>      > timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>      4 colors is way too many for xen, just do xen_colors=0-0. There is no
> >     >         >     >       >     >       >       >       >     >
>      advantage in using more than 1 color for Xen.
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>      4 colors is too few for dom0, if you are giving 1600M of memory to
> >     >         >     >       Dom0.
> >     >         >     >       >     >       >       >       >     >
>      Each color is 256M. For 1600M you should give at least 7 colors. Try:
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>      xen_colors=0-0 dom0_colors=1-8
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >     >
>      > Unfortunately the result was the same.
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      > (XEN)  - Dom0 mode: Relaxed
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) Coloring general information
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) Way size: 64kB
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) Max. number of colors available: 16
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) Xen color(s): [ 0 ]
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) alternatives: Patching with alt table 00000000002cc690 ->
> >     >         >     >       00000000002ccc0c
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) Color array allocation failed for dom0
> >     >         >     >       >     >       >       >       >     >
>      > (XEN)
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) ****************************************
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) Panic on CPU 0:
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) Error creating domain 0
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) ****************************************
> >     >         >     >       >     >       >       >       >     >
>      > (XEN)
> >     >         >     >       >     >       >       >       >     >
>      > (XEN) Reboot in five seconds...
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      > I am going to find out how command line arguments passed and parsed.
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      > Regards,
> >     >         >     >       >     >       >       >       >     >
>      > Oleg
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>
> >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>
> >     >         >     >       >     >       <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>
> >     >         >     >       >     >       >       >       <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
> >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>>>:
> >     >         >     >       >     >       >       >       >     >
>      >       Hi Michal,
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      > You put my nose into the problem. Thank you.
> >     >         >     >       >     >       >       >       >     >
>      > I am going to use your point.
> >     >         >     >       >     >       >       >       >     >
>      > Let's see what happens.
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      > Regards,
> >     >         >     >       >     >       >       >       >     >
>      > Oleg
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com
> <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>
> >     >         >     >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>
> >     >         >     >       >     >       <mailto:michal.orzel@amd.com
> <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>>
> >     >         >     >       >     >       >       >       <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>
> >     >         >     >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>>>>:
> >     >         >     >       >     >       >       >       >     >
>      >       Hi Oleg,
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >       On 19/04/2023 09:03, Oleg Nikitenko wrote:
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       > Hello Stefano,
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       > Thanks for the clarification.
> >     >         >     >       >     >       >       >       >     >
>      >       > My company uses yocto for image generation.
> >     >         >     >       >     >       >       >       >     >
>      >       > What kind of information do you need to consult me in this
> >     >         >     >       case ?
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       > Maybe modules sizes/addresses which were mentioned by @Julien
> >     >         >     >       Grall
> >     >         >     >       >     >       >       <mailto:julien@xen.org
> <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>
> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org
> <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org>
> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org
> <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>
> >     >         >     >       >     >       >       >       <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>>>>> <mailto:julien@xen.org <mailto:julien@xen.org>
> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org
> <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>
> >     >         >     >       <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>>>>>>> ?
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >       Sorry for jumping into discussion, but FWICS the Xen command
> >     >         >     >       line you provided
> >     >         >     >       >     >       seems to be
> >     >         >     >       >     >       >       not the
> >     >         >     >       >     >       >       >       one
> >     >         >     >       >     >       >       >       >     >
>      >       Xen booted with. The error you are observing most likely is due
> >     >         >     >       to dom0 colors
> >     >         >     >       >     >       >       configuration not
> >     >         >     >       >     >       >       >       being
> >     >         >     >       >     >       >       >       >     >
>      >       specified (i.e. lack of dom0_colors=<> parameter). Although in
> >     >         >     >       the command line you
> >     >         >     >       >     >       >       provided, this
> >     >         >     >       >     >       >       >       parameter
> >     >         >     >       >     >       >       >       >     >
>      >       is set, I strongly doubt that this is the actual command line
> >     >         >     >       in use.
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >       You wrote:
> >     >         >     >       >     >       >       >       >     >
>      >       xen,xen-bootargs = "console=dtuart dtuart=serial0
> >     >         >     >       dom0_mem=1600M dom0_max_vcpus=2
> >     >         >     >       >     >       >       dom0_vcpus_pin
> >     >         >     >       >     >       >       >       bootscrub=0
> vwfi=native
> >     >         >     >       >     >       >       >       >     >
>      >       sched=null timer_slop=0 way_szize=65536 xen_colors=0-3
> >     >         >     >       dom0_colors=4-7";
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >       but:
> >     >         >     >       >     >       >       >       >     >
>      >       1) way_szize has a typo
> >     >         >     >       >     >       >       >       >     >
>      >       2) you specified 4 colors (0-3) for Xen, but the boot log says
> >     >         >     >       that Xen has only
> >     >         >     >       >     >       one:
> >     >         >     >       >     >       >       >       >     >
>      >       (XEN) Xen color(s): [ 0 ]
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >       This makes me believe that no colors configuration actually end
> >     >         >     >       up in command line
> >     >         >     >       >     >       that Xen
> >     >         >     >       >     >       >       booted
> >     >         >     >       >     >       >       >       with.
> >     >         >     >       >     >       >       >       >     >
>      >       Single color for Xen is a "default if not specified" and way
> >     >         >     >       size was probably
> >     >         >     >       >     >       calculated
> >     >         >     >       >     >       >       by asking
> >     >         >     >       >     >       >       >       HW.
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >       So I would suggest to first cross-check the command line in
> >     >         >     >       use.
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >       ~Michal
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       > Regards,
> >     >         >     >       >     >       >       >       >     >
>      >       > Oleg
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       > вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini
> >     >         >     >       <sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>
> >     >         >     >       >     >       >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
> >     >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>
> >     >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>>
> >     >         >     >       >     >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
> >     >         >     >       >     >       >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
> >     >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>
> >     >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>>>>:
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
> >     >         >     >       >     >       >       >       >     >
>      >       >     > Hi Julien,
> >     >         >     >       >     >       >       >       >     >
>      >       >     >
> >     >         >     >       >     >       >       >       >     >
>      >       >     > >> This feature has not been merged in Xen upstream yet
> >     >         >     >       >     >       >       >       >     >
>      >       >     >
> >     >         >     >       >     >       >       >       >     >
>      >       >     > > would assume that upstream + the series on the ML [1]
> >     >         >     >       work
> >     >         >     >       >     >       >       >       >     >
>      >       >     >
> >     >         >     >       >     >       >       >       >     >
>      >       >     > Please clarify this point.
> >     >         >     >       >     >       >       >       >     >
>      >       >     > Because the two thoughts are controversial.
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >     Hi Oleg,
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >     As Julien wrote, there is nothing controversial. As you
> >     >         >     >       are aware,
> >     >         >     >       >     >       >       >       >     >
>      >       >     Xilinx maintains a separate Xen tree specific for Xilinx
> >     >         >     >       here:
> >     >         >     >       >     >       >       >       >     >
>      >       >     https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>
> >     >         >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>>
> >     >         >     >       >     >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
> >     >         >     >       >     >       >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>>
> >     >         >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>
> >     >         >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>>
> >     >         >     >       >     >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
> >     >         >     >       >     >       >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>>>
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >     and the branch you are using (xlnx_rebase_4.16) comes
> >     >         >     >       from there.
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >     Instead, the upstream Xen tree lives here:
> >     >         >     >       >     >       >       >       >     >
>      >       >     https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >     >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>>>
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >     The Cache Coloring feature that you are trying to
> >     >         >     >       configure is present
> >     >         >     >       >     >       >       >       >     >
>      >       >     in xlnx_rebase_4.16, but not yet present upstream (there
> >     >         >     >       is an
> >     >         >     >       >     >       >       >       >     >
>      >       >     outstanding patch series to add cache coloring to Xen
> >     >         >     >       upstream but it
> >     >         >     >       >     >       >       >       >     >
>      >       >     hasn't been merged yet.)
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >     Anyway, if you are using xlnx_rebase_4.16 it doesn't
> >     >         >     >       matter too much for
> >     >         >     >       >     >       >       >       >     >
>      >       >     you as you already have Cache Coloring as a feature
> >     >         >     >       there.
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >     I take you are using ImageBuilder to generate the boot
> >     >         >     >       configuration? If
> >     >         >     >       >     >       >       >       >     >
>      >       >     so, please post the ImageBuilder config file that you are
> >     >         >     >       using.
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >       >     But from the boot message, it looks like the colors
> >     >         >     >       configuration for
> >     >         >     >       >     >       >       >       >     >
>      >       >     Dom0 is incorrect.
> >     >         >     >       >     >       >       >       >     >
>      >       >
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
>      >
> >     >         >     >       >     >       >       >       >     >
> >     >         >     >       >     >       >       >       >
> >     >         >     >       >     >       >       >
> >     >         >     >       >     >       >       >
> >     >         >     >       >     >       >       >
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >
> >     >         >     >       >     >       >
> >     >         >     >       >     >
> >     >         >     >       >     >
> >     >         >     >       >     >
> >     >         >     >       >
> >     >         >     >
> >     >         >     >
> >     >         >     >
> >     >         >
> >     >
> >
>

[-- Attachment #2: Type: text/html, Size: 279521 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-16 15:14  0%                                                               ` Oleg Nikitenko
@ 2023-05-16 18:00  0%                                                                 ` Michal Orzel
  2023-05-19 13:38  0%                                                                   ` Oleg Nikitenko
  0 siblings, 1 reply; 200+ results
From: Michal Orzel @ 2023-05-16 18:00 UTC (permalink / raw)
  To: Oleg Nikitenko
  Cc: Stefano Stabellini, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand



On 16/05/2023 17:14, Oleg Nikitenko wrote:
> 	
> 
> 
> Hi guys,
> 
> Thanks Michal.
> 
> So if I have more RAM It is possible to increase the color density.
> 
> For example 8Gb/16 it is 512 Mb approximately.
> Is this correct ?
Yes.
To my previous reply I should also add that the number of colors depends on the page size,
but in Xen, we use 4kB pages so 64kB way size results in 16 colors.

~Michal

> Regards,
> Oleg
> 
> вт, 16 мая 2023 г. в 17:40, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
> 
>     Hi Oleg,
> 
>     On 16/05/2023 14:15, Oleg Nikitenko wrote:
>     >       
>     >
>     >
>     > Hello,
>     >
>     > Thanks a lot Michal.
>     >
>     > Then the next question.
>     > When I just started my experiments with xen, Stefano mentioned that each cache's color size is 256M.
>     > Is it possible to extend this figure ?
>     With 16 colors (e.g. on Cortex-A53) and 4GB of memory, roughly each color is 256M (i.e. 4GB/16 = 256M).
>     So as you can see this figure depends on the number of colors and memory size.
> 
>     ~Michal
> 
>     >
>     > Regards,
>     > Oleg
>     >
>     > пн, 15 мая 2023 г. в 11:57, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
>     >
>     >     Hi Oleg,
>     >
>     >     On 15/05/2023 10:51, Oleg Nikitenko wrote:
>     >     >       
>     >     >
>     >     >
>     >     > Hello guys,
>     >     >
>     >     > Thanks a lot.
>     >     > After a long problem list I was able to run xen with Dom0 with a cache color.
>     >     > One more question from my side.
>     >     > I want to run a guest with color mode too.
>     >     > I inserted a string into guest config file llc-colors = "9-13"
>     >     > I got an error
>     >     > [  457.517004] loop0: detected capacity change from 0 to 385840
>     >     > Parsing config from /xen/red_config.cfg
>     >     > /xen/red_config.cfg:26: config parsing error near `-colors': lexical error
>     >     > warning: Config file looks like it contains Python code.
>     >     > warning:  Arbitrary Python is no longer supported.
>     >     > warning:  See https://wiki.xen.org/wiki/PythonInXlConfig <https://wiki.xen.org/wiki/PythonInXlConfig> <https://wiki.xen.org/wiki/PythonInXlConfig <https://wiki.xen.org/wiki/PythonInXlConfig>> <https://wiki.xen.org/wiki/PythonInXlConfig <https://wiki.xen.org/wiki/PythonInXlConfig> <https://wiki.xen.org/wiki/PythonInXlConfig <https://wiki.xen.org/wiki/PythonInXlConfig>>>
>     >     > Failed to parse config: Invalid argument
>     >     > So this is a question.
>     >     > Is it possible to assign a color mode for the DomU by config file ?
>     >     > If so, what string should I use?
>     >     Please, always refer to the relevant documentation. In this case, for xl.cfg:
>     >     https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890 <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890 <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890>>
>     >
>     >     ~Michal
>     >
>     >     >
>     >     > Regards,
>     >     > Oleg
>     >     >
>     >     > чт, 11 мая 2023 г. в 13:32, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>:
>     >     >
>     >     >     Hi Michal,
>     >     >
>     >     >     Thanks.
>     >     >     This compilation previously had a name CONFIG_COLORING.
>     >     >     It mixed me up.
>     >     >
>     >     >     Regards,
>     >     >     Oleg
>     >     >
>     >     >     чт, 11 мая 2023 г. в 13:15, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>:
>     >     >
>     >     >         Hi Oleg,
>     >     >
>     >     >         On 11/05/2023 12:02, Oleg Nikitenko wrote:
>     >     >         >       
>     >     >         >
>     >     >         >
>     >     >         > Hello,
>     >     >         >
>     >     >         > Thanks Stefano.
>     >     >         > Then the next question.
>     >     >         > I cloned xen repo from xilinx site https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>> <https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>>> <https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>> <https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>>>>
>     >     >         > I managed to build a xlnx_rebase_4.17 branch in my environment.
>     >     >         > I did it without coloring first. I did not find any color footprints at this branch.
>     >     >         > I realized coloring is not in the xlnx_rebase_4.17 branch yet.
>     >     >         This is not true. Cache coloring is in xlnx_rebase_4.17. Please see the docs:
>     >     >         https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst>> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst>>>
>     >     >
>     >     >         It describes the feature and documents the required properties.
>     >     >
>     >     >         ~Michal
>     >     >
>     >     >         >
>     >     >         >
>     >     >         > вт, 9 мая 2023 г. в 22:49, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>:
>     >     >         >
>     >     >         >     We test Xen Cache Coloring regularly on zcu102. Every Petalinux release
>     >     >         >     (twice a year) is tested with cache coloring enabled. The last Petalinux
>     >     >         >     release is 2023.1 and the kernel used is this:
>     >     >         >     https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>> <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>>> <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>> <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>
>     <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>>>>
>     >     >         >
>     >     >         >
>     >     >         >     On Tue, 9 May 2023, Oleg Nikitenko wrote:
>     >     >         >     > Hello guys,
>     >     >         >     >
>     >     >         >     > I have a couple of more questions.
>     >     >         >     > Have you ever run xen with the cache coloring at Zynq UltraScale+ MPSoC zcu102 xczu15eg ?
>     >     >         >     > When did you run xen with the cache coloring last time ?
>     >     >         >     > What kernel version did you use for Dom0 when you ran xen with the cache coloring last time ?
>     >     >         >     >
>     >     >         >     > Regards,
>     >     >         >     > Oleg
>     >     >         >     >
>     >     >         >     > пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>:
>     >     >         >     >       Hi Michal,
>     >     >         >     >
>     >     >         >     > Thanks.
>     >     >         >     >
>     >     >         >     > Regards,
>     >     >         >     > Oleg
>     >     >         >     >
>     >     >         >     > пт, 5 мая 2023 г. в 11:34, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>:
>     >     >         >     >       Hi Oleg,
>     >     >         >     >
>     >     >         >     >       Replying, so that you do not need to wait for Stefano.
>     >     >         >     >
>     >     >         >     >       On 05/05/2023 10:28, Oleg Nikitenko wrote:
>     >     >         >     >       >       
>     >     >         >     >       >
>     >     >         >     >       >
>     >     >         >     >       > Hello Stefano,
>     >     >         >     >       >
>     >     >         >     >       > I would like to try a xen cache color property from this repo  https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>>> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>>>>
>     >     >         >     >       <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>>> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>>>>>
>     >     >         >     >       > Could you tell whot branch I should use ?
>     >     >         >     >       Cache coloring feature is not part of the upstream tree and it is still under review.
>     >     >         >     >       You can only find it integrated in the Xilinx Xen tree.
>     >     >         >     >
>     >     >         >     >       ~Michal
>     >     >         >     >
>     >     >         >     >       >
>     >     >         >     >       > Regards,
>     >     >         >     >       > Oleg
>     >     >         >     >       >
>     >     >         >     >       > пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>:
>     >     >         >     >       >
>     >     >         >     >       >     I am familiar with the zcu102 but I don't know how you could possibly
>     >     >         >     >       >     generate a SError.
>     >     >         >     >       >
>     >     >         >     >       >     I suggest to try to use ImageBuilder [1] to generate the boot
>     >     >         >     >       >     configuration as a test because that is known to work well for zcu102.
>     >     >         >     >       >
>     >     >         >     >       >     [1] https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>>> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>>>> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>>
>     <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>>> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>>>>>
>     >     >         >     >       >
>     >     >         >     >       >
>     >     >         >     >       >     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
>     >     >         >     >       >     > Hello Stefano,
>     >     >         >     >       >     >
>     >     >         >     >       >     > Thanks for clarification.
>     >     >         >     >       >     > We nighter use ImageBuilder nor uboot boot script.
>     >     >         >     >       >     > A model is zcu102 compatible.
>     >     >         >     >       >     >
>     >     >         >     >       >     > Regards,
>     >     >         >     >       >     > O.
>     >     >         >     >       >     >
>     >     >         >     >       >     > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>:
>     >     >         >     >       >     >       This is interesting. Are you using Xilinx hardware by any chance? If so,
>     >     >         >     >       >     >       which board?
>     >     >         >     >       >     >
>     >     >         >     >       >     >       Are you using ImageBuilder to generate your boot.scr boot script? If so,
>     >     >         >     >       >     >       could you please post your ImageBuilder config file? If not, can you
>     >     >         >     >       >     >       post the source of your uboot boot script?
>     >     >         >     >       >     >
>     >     >         >     >       >     >       SErrors are supposed to be related to a hardware failure of some kind.
>     >     >         >     >       >     >       You are not supposed to be able to trigger an SError easily by
>     >     >         >     >       >     >       "mistake". I have not seen SErrors due to wrong cache coloring
>     >     >         >     >       >     >       configurations on any Xilinx board before.
>     >     >         >     >       >     >
>     >     >         >     >       >     >       The differences between Xen with and without cache coloring from a
>     >     >         >     >       >     >       hardware perspective are:
>     >     >         >     >       >     >
>     >     >         >     >       >     >       - With cache coloring, the SMMU is enabled and does address translations
>     >     >         >     >       >     >         even for dom0. Without cache coloring the SMMU could be disabled, and
>     >     >         >     >       >     >         if enabled, the SMMU doesn't do any address translations for Dom0. If
>     >     >         >     >       >     >         there is a hardware failure related to SMMU address translation it
>     >     >         >     >       >     >         could only trigger with cache coloring. This would be my normal
>     >     >         >     >       >     >         suggestion for you to explore, but the failure happens too early
>     >     >         >     >       >     >         before any DMA-capable device is programmed. So I don't think this can
>     >     >         >     >       >     >         be the issue.
>     >     >         >     >       >     >
>     >     >         >     >       >     >       - With cache coloring, the memory allocation is very different so you'll
>     >     >         >     >       >     >         end up using different DDR regions for Dom0. So if your DDR is
>     >     >         >     >       >     >         defective, you might only see a failure with cache coloring enabled
>     >     >         >     >       >     >         because you end up using different regions.
>     >     >         >     >       >     >
>     >     >         >     >       >     >
>     >     >         >     >       >     >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
>     >     >         >     >       >     >       > Hi Stefano,
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       > Thank you.
>     >     >         >     >       >     >       > If I build xen without colors support there is not this error.
>     >     >         >     >       >     >       > All the domains are booted well.
>     >     >         >     >       >     >       > Hense it can not be a hardware issue.
>     >     >         >     >       >     >       > This panic arrived during unpacking the rootfs.
>     >     >         >     >       >     >       > Here I attached the boot log xen/Dom0 without color.
>     >     >         >     >       >     >       > A highlighted strings printed exactly after the place where 1-st time panic arrived.
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >  Xen 4.16.1-pre
>     >     >         >     >       >     >       > (XEN) Xen version 4.16.1-pre (nole2390@(none)) (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y
>     >     >         >     >       2023-04-21
>     >     >         >     >       >     >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300 git:321687b231-dirty
>     >     >         >     >       >     >       > (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
>     >     >         >     >       >     >       > (XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0, part 0xd03,rev 0x4
>     >     >         >     >       >     >       > (XEN) 64-bit Execution:
>     >     >         >     >       >     >       > (XEN)   Processor Features: 0000000000002222 0000000000000000
>     >     >         >     >       >     >       > (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
>     >     >         >     >       >     >       > (XEN)     Extensions: FloatingPoint AdvancedSIMD
>     >     >         >     >       >     >       > (XEN)   Debug Features: 0000000010305106 0000000000000000
>     >     >         >     >       >     >       > (XEN)   Auxiliary Features: 0000000000000000 0000000000000000
>     >     >         >     >       >     >       > (XEN)   Memory Model Features: 0000000000001122 0000000000000000
>     >     >         >     >       >     >       > (XEN)   ISA Features:  0000000000011120 0000000000000000
>     >     >         >     >       >     >       > (XEN) 32-bit Execution:
>     >     >         >     >       >     >       > (XEN)   Processor Features: 0000000000000131:0000000000011011
>     >     >         >     >       >     >       > (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
>     >     >         >     >       >     >       > (XEN)     Extensions: GenericTimer Security
>     >     >         >     >       >     >       > (XEN)   Debug Features: 0000000003010066
>     >     >         >     >       >     >       > (XEN)   Auxiliary Features: 0000000000000000
>     >     >         >     >       >     >       > (XEN)   Memory Model Features: 0000000010201105 0000000040000000
>     >     >         >     >       >     >       > (XEN)                          0000000001260000 0000000002102211
>     >     >         >     >       >     >       > (XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
>     >     >         >     >       >     >       > (XEN)                 0000000001112131 0000000000011142 0000000000011121
>     >     >         >     >       >     >       > (XEN) Using SMC Calling Convention v1.2
>     >     >         >     >       >     >       > (XEN) Using PSCI v1.1
>     >     >         >     >       >     >       > (XEN) SMP: Allowing 4 CPUs
>     >     >         >     >       >     >       > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
>     >     >         >     >       >     >       > (XEN) GICv2 initialization:
>     >     >         >     >       >     >       > (XEN)         gic_dist_addr=00000000f9010000
>     >     >         >     >       >     >       > (XEN)         gic_cpu_addr=00000000f9020000
>     >     >         >     >       >     >       > (XEN)         gic_hyp_addr=00000000f9040000
>     >     >         >     >       >     >       > (XEN)         gic_vcpu_addr=00000000f9060000
>     >     >         >     >       >     >       > (XEN)         gic_maintenance_irq=25
>     >     >         >     >       >     >       > (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
>     >     >         >     >       >     >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
>     >     >         >     >       >     >       > (XEN) Using scheduler: null Scheduler (null)
>     >     >         >     >       >     >       > (XEN) Initializing null scheduler
>     >     >         >     >       >     >       > (XEN) WARNING: This is experimental software in development.
>     >     >         >     >       >     >       > (XEN) Use at your own risk.
>     >     >         >     >       >     >       > (XEN) Allocated console ring of 32 KiB.
>     >     >         >     >       >     >       > (XEN) CPU0: Guest atomics will try 12 times before pausing the domain
>     >     >         >     >       >     >       > (XEN) Bringing up CPU1
>     >     >         >     >       >     >       > (XEN) CPU1: Guest atomics will try 13 times before pausing the domain
>     >     >         >     >       >     >       > (XEN) CPU 1 booted.
>     >     >         >     >       >     >       > (XEN) Bringing up CPU2
>     >     >         >     >       >     >       > (XEN) CPU2: Guest atomics will try 13 times before pausing the domain
>     >     >         >     >       >     >       > (XEN) CPU 2 booted.
>     >     >         >     >       >     >       > (XEN) Bringing up CPU3
>     >     >         >     >       >     >       > (XEN) CPU3: Guest atomics will try 13 times before pausing the domain
>     >     >         >     >       >     >       > (XEN) Brought up 4 CPUs
>     >     >         >     >       >     >       > (XEN) CPU 3 booted.
>     >     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: probing hardware configuration...
>     >     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
>     >     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
>     >     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stream matching with 48 register groups, mask 0x7fff<2>smmu:
>     >     >         >     >       /axi/smmu@fd800000: 16 context
>     >     >         >     >       >     >       banks (0
>     >     >         >     >       >     >       > stage-2 only)
>     >     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
>     >     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: registered 29 master devices
>     >     >         >     >       >     >       > (XEN) I/O virtualisation enabled
>     >     >         >     >       >     >       > (XEN)  - Dom0 mode: Relaxed
>     >     >         >     >       >     >       > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>     >     >         >     >       >     >       > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>     >     >         >     >       >     >       > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>     >     >         >     >       >     >       > (XEN) alternatives: Patching with alt table 00000000002cc5c8 -> 00000000002ccb2c
>     >     >         >     >       >     >       > (XEN) *** LOADING DOMAIN 0 ***
>     >     >         >     >       >     >       > (XEN) Loading d0 kernel from boot module @ 0000000001000000
>     >     >         >     >       >     >       > (XEN) Loading ramdisk from boot module @ 0000000002000000
>     >     >         >     >       >     >       > (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
>     >     >         >     >       >     >       > (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
>     >     >         >     >       >     >       > (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
>     >     >         >     >       >     >       > (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
>     >     >         >     >       >     >       > (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
>     >     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
>     >     >         >     >       >     >       > (XEN) Allocating PPI 16 for event channel interrupt
>     >     >         >     >       >     >       > (XEN) Extended region 0: 0x81200000->0xa0000000
>     >     >         >     >       >     >       > (XEN) Extended region 1: 0xb1200000->0xc0000000
>     >     >         >     >       >     >       > (XEN) Extended region 2: 0xc8000000->0xe0000000
>     >     >         >     >       >     >       > (XEN) Extended region 3: 0xf0000000->0xf9000000
>     >     >         >     >       >     >       > (XEN) Extended region 4: 0x100000000->0x600000000
>     >     >         >     >       >     >       > (XEN) Extended region 5: 0x880000000->0x8000000000
>     >     >         >     >       >     >       > (XEN) Extended region 6: 0x8001000000->0x10000000000
>     >     >         >     >       >     >       > (XEN) Loading zImage from 0000000001000000 to 0000000010000000-0000000010e41008
>     >     >         >     >       >     >       > (XEN) Loading d0 initrd from 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
>     >     >         >     >       >     >       > (XEN) Loading d0 DTB to 0x0000000013400000-0x000000001340cbdc
>     >     >         >     >       >     >       > (XEN) Initial low memory virq threshold set at 0x4000 pages.
>     >     >         >     >       >     >       > (XEN) Std. Loglevel: All
>     >     >         >     >       >     >       > (XEN) Guest Loglevel: All
>     >     >         >     >       >     >       > (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
>     >     >         >     >       >     >       > (XEN) null.c:353: 0 <-- d0v0
>     >     >         >     >       >     >       > (XEN) Freed 356kB init memory.
>     >     >         >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
>     >     >         >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
>     >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
>     >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
>     >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
>     >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
>     >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
>     >     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>     >     >         >     >       >     >       > [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
>     >     >         >     >       >     >       > [    0.000000] Linux version 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC)
>     >     >         >     >       11.3.0, GNU ld (GNU
>     >     >         >     >       >     >       Binutils)
>     >     >         >     >       >     >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
>     >     >         >     >       >     >       > [    0.000000] Machine model: D14 Viper Board - White Unit
>     >     >         >     >       >     >       > [    0.000000] Xen 4.16 support found
>     >     >         >     >       >     >       > [    0.000000] Zone ranges:
>     >     >         >     >       >     >       > [    0.000000]   DMA      [mem 0x0000000010000000-0x000000007fffffff]
>     >     >         >     >       >     >       > [    0.000000]   DMA32    empty
>     >     >         >     >       >     >       > [    0.000000]   Normal   empty
>     >     >         >     >       >     >       > [    0.000000] Movable zone start for each node
>     >     >         >     >       >     >       > [    0.000000] Early memory node ranges
>     >     >         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000010000000-0x000000001fffffff]
>     >     >         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000022000000-0x0000000022147fff]
>     >     >         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000022200000-0x0000000022347fff]
>     >     >         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000024000000-0x0000000027ffffff]
>     >     >         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000030000000-0x000000007fffffff]
>     >     >         >     >       >     >       > [    0.000000] Initmem setup node 0 [mem 0x0000000010000000-0x000000007fffffff]
>     >     >         >     >       >     >       > [    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
>     >     >         >     >       >     >       > [    0.000000] On node 0, zone DMA: 184 pages in unavailable ranges
>     >     >         >     >       >     >       > [    0.000000] On node 0, zone DMA: 7352 pages in unavailable ranges
>     >     >         >     >       >     >       > [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
>     >     >         >     >       >     >       > [    0.000000] psci: probing for conduit method from DT.
>     >     >         >     >       >     >       > [    0.000000] psci: PSCIv1.1 detected in firmware.
>     >     >         >     >       >     >       > [    0.000000] psci: Using standard PSCI v0.2 function IDs
>     >     >         >     >       >     >       > [    0.000000] psci: Trusted OS migration not required
>     >     >         >     >       >     >       > [    0.000000] psci: SMC Calling Convention v1.1
>     >     >         >     >       >     >       > [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0 d32744 u65536
>     >     >         >     >       >     >       > [    0.000000] Detected VIPT I-cache on CPU0
>     >     >         >     >       >     >       > [    0.000000] CPU features: kernel page table isolation forced ON by KASLR
>     >     >         >     >       >     >       > [    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
>     >     >         >     >       >     >       > [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 403845
>     >     >         >     >       >     >       > [    0.000000] Kernel command line: console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused fips=1
>     >     >         >     >       root=/dev/ram0
>     >     >         >     >       >     >       maxcpus=2
>     >     >         >     >       >     >       > [    0.000000] Unknown kernel command line parameters "earlyprintk=xen fips=1", will be passed to user
>     >     >         >     >       space.
>     >     >         >     >       >     >       > [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>     >     >         >     >       >     >       > [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>     >     >         >     >       >     >       > [    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:on
>     >     >         >     >       >     >       > [    0.000000] mem auto-init: clearing system memory may take some time...
>     >     >         >     >       >     >       > [    0.000000] Memory: 1121936K/1641024K available (9728K kernel code, 836K rwdata, 2396K rodata, 1536K
>     >     >         >     >       init, 262K bss,
>     >     >         >     >       >     >       256944K reserved,
>     >     >         >     >       >     >       > 262144K cma-reserved)
>     >     >         >     >       >     >       > [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
>     >     >         >     >       >     >       > [    0.000000] rcu: Hierarchical RCU implementation.
>     >     >         >     >       >     >       > [    0.000000] rcu: RCU event tracing is enabled.
>     >     >         >     >       >     >       > [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
>     >     >         >     >       >     >       > [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>     >     >         >     >       >     >       > [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
>     >     >         >     >       >     >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
>     >     >         >     >       >     >       > [    0.000000] Root IRQ handler: gic_handle_irq
>     >     >         >     >       >     >       > [    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (virt).
>     >     >         >     >       >     >       > [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0,
>     >     >         >     >       max_idle_ns: 440795205315 ns
>     >     >         >     >       >     >       > [    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
>     >     >         >     >       >     >       > [    0.000258] Console: colour dummy device 80x25
>     >     >         >     >       >     >       > [    0.310231] printk: console [hvc0] enabled
>     >     >         >     >       >     >       > [    0.314403] Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS
>     >     >         >     >       (lpj=400000)
>     >     >         >     >       >     >       > [    0.324851] pid_max: default: 32768 minimum: 301
>     >     >         >     >       >     >       > [    0.329706] LSM: Security Framework initializing
>     >     >         >     >       >     >       > [    0.334204] Yama: becoming mindful.
>     >     >         >     >       >     >       > [    0.337865] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>     >     >         >     >       >     >       > [    0.345180] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>     >     >         >     >       >     >       > [    0.354743] xen:grant_table: Grant tables using version 1 layout
>     >     >         >     >       >     >       > [    0.359132] Grant table initialized
>     >     >         >     >       >     >       > [    0.362664] xen:events: Using FIFO-based ABI
>     >     >         >     >       >     >       > [    0.366993] Xen: initializing cpu0
>     >     >         >     >       >     >       > [    0.370515] rcu: Hierarchical SRCU implementation.
>     >     >         >     >       >     >       > [    0.375930] smp: Bringing up secondary CPUs ...
>     >     >         >     >       >     >       > (XEN) null.c:353: 1 <-- d0v1
>     >     >         >     >       >     >       > (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>     >     >         >     >       >     >       > [    0.382549] Detected VIPT I-cache on CPU1
>     >     >         >     >       >     >       > [    0.388712] Xen: initializing cpu1
>     >     >         >     >       >     >       > [    0.388743] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
>     >     >         >     >       >     >       > [    0.388829] smp: Brought up 1 node, 2 CPUs
>     >     >         >     >       >     >       > [    0.406941] SMP: Total of 2 processors activated.
>     >     >         >     >       >     >       > [    0.411698] CPU features: detected: 32-bit EL0 Support
>     >     >         >     >       >     >       > [    0.416888] CPU features: detected: CRC32 instructions
>     >     >         >     >       >     >       > [    0.422121] CPU: All CPU(s) started at EL1
>     >     >         >     >       >     >       > [    0.426248] alternatives: patching kernel code
>     >     >         >     >       >     >       > [    0.431424] devtmpfs: initialized
>     >     >         >     >       >     >       > [    0.441454] KASLR enabled
>     >     >         >     >       >     >       > [    0.441602] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns:
>     >     >         >     >       7645041785100000 ns
>     >     >         >     >       >     >       > [    0.448321] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
>     >     >         >     >       >     >       > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE protocol family
>     >     >         >     >       >     >       > [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
>     >     >         >     >       >     >       > [    0.503772] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
>     >     >         >     >       >     >       > [    0.511610] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
>     >     >         >     >       >     >       > [    0.519478] audit: initializing netlink subsys (disabled)
>     >     >         >     >       >     >       > [    0.524985] audit: type=2000 audit(0.336:1): state=initialized audit_enabled=0 res=1
>     >     >         >     >       >     >       > [    0.529169] thermal_sys: Registered thermal governor 'step_wise'
>     >     >         >     >       >     >       > [    0.533023] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
>     >     >         >     >       >     >       > [    0.545608] ASID allocator initialised with 32768 entries
>     >     >         >     >       >     >       > [    0.551030] xen:swiotlb_xen: Warning: only able to allocate 4 MB for software IO TLB
>     >     >         >     >       >     >       > [    0.559332] software IO TLB: mapped [mem 0x0000000011800000-0x0000000011c00000] (4MB)
>     >     >         >     >       >     >       > [    0.583565] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>     >     >         >     >       >     >       > [    0.584721] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
>     >     >         >     >       >     >       > [    0.591478] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>     >     >         >     >       >     >       > [    0.598225] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
>     >     >         >     >       >     >       > [    0.636520] DRBG: Continuing without Jitter RNG
>     >     >         >     >       >     >       > [    0.737187] raid6: neonx8   gen()  2143 MB/s
>     >     >         >     >       >     >       > [    0.805294] raid6: neonx8   xor()  1589 MB/s
>     >     >         >     >       >     >       > [    0.873406] raid6: neonx4   gen()  2177 MB/s
>     >     >         >     >       >     >       > [    0.941499] raid6: neonx4   xor()  1556 MB/s
>     >     >         >     >       >     >       > [    1.009612] raid6: neonx2   gen()  2072 MB/s
>     >     >         >     >       >     >       > [    1.077715] raid6: neonx2   xor()  1430 MB/s
>     >     >         >     >       >     >       > [    1.145834] raid6: neonx1   gen()  1769 MB/s
>     >     >         >     >       >     >       > [    1.213935] raid6: neonx1   xor()  1214 MB/s
>     >     >         >     >       >     >       > [    1.282046] raid6: int64x8  gen()  1366 MB/s
>     >     >         >     >       >     >       > [    1.350132] raid6: int64x8  xor()   773 MB/s
>     >     >         >     >       >     >       > [    1.418259] raid6: int64x4  gen()  1602 MB/s
>     >     >         >     >       >     >       > [    1.486349] raid6: int64x4  xor()   851 MB/s
>     >     >         >     >       >     >       > [    1.554464] raid6: int64x2  gen()  1396 MB/s
>     >     >         >     >       >     >       > [    1.622561] raid6: int64x2  xor()   744 MB/s
>     >     >         >     >       >     >       > [    1.690687] raid6: int64x1  gen()  1033 MB/s
>     >     >         >     >       >     >       > [    1.758770] raid6: int64x1  xor()   517 MB/s
>     >     >         >     >       >     >       > [    1.758809] raid6: using algorithm neonx4 gen() 2177 MB/s
>     >     >         >     >       >     >       > [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
>     >     >         >     >       >     >       > [    1.767957] raid6: using neon recovery algorithm
>     >     >         >     >       >     >       > [    1.772824] xen:balloon: Initialising balloon driver
>     >     >         >     >       >     >       > [    1.778021] iommu: Default domain type: Translated
>     >     >         >     >       >     >       > [    1.782584] iommu: DMA domain TLB invalidation policy: strict mode
>     >     >         >     >       >     >       > [    1.789149] SCSI subsystem initialized
>     >     >         >     >       >     >       > [    1.792820] usbcore: registered new interface driver usbfs
>     >     >         >     >       >     >       > [    1.798254] usbcore: registered new interface driver hub
>     >     >         >     >       >     >       > [    1.803626] usbcore: registered new device driver usb
>     >     >         >     >       >     >       > [    1.808761] pps_core: LinuxPPS API ver. 1 registered
>     >     >         >     >       >     >       > [    1.813716] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>> <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>> <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>> <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>>>
>     >     >         >     >       <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>> <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>> <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>> <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>>>>>
>     >     >         >     >       >     >       > [    1.822903] PTP clock support registered
>     >     >         >     >       >     >       > [    1.826893] EDAC MC: Ver: 3.0.0
>     >     >         >     >       >     >       > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
>     >     >         >     >       >     >       > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX channels.
>     >     >         >     >       >     >       > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX channels.
>     >     >         >     >       >     >       > [    1.855907] FPGA manager framework
>     >     >         >     >       >     >       > [    1.859952] clocksource: Switched to clocksource arch_sys_counter
>     >     >         >     >       >     >       > [    1.871712] NET: Registered PF_INET protocol family
>     >     >         >     >       >     >       > [    1.871838] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
>     >     >         >     >       >     >       > [    1.879392] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
>     >     >         >     >       >     >       > [    1.887078] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
>     >     >         >     >       >     >       > [    1.894846] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
>     >     >         >     >       >     >       > [    1.902900] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
>     >     >         >     >       >     >       > [    1.910350] TCP: Hash tables configured (established 16384 bind 16384)
>     >     >         >     >       >     >       > [    1.916778] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
>     >     >         >     >       >     >       > [    1.923509] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
>     >     >         >     >       >     >       > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol family
>     >     >         >     >       >     >       > [    1.936834] RPC: Registered named UNIX socket transport module.
>     >     >         >     >       >     >       > [    1.942342] RPC: Registered udp transport module.
>     >     >         >     >       >     >       > [    1.947088] RPC: Registered tcp transport module.
>     >     >         >     >       >     >       > [    1.951843] RPC: Registered tcp NFSv4.1 backchannel transport module.
>     >     >         >     >       >     >       > [    1.958334] PCI: CLS 0 bytes, default 64
>     >     >         >     >       >     >       > [    1.962709] Trying to unpack rootfs image as initramfs...
>     >     >         >     >       >     >       > [    1.977090] workingset: timestamp_bits=62 max_order=19 bucket_order=0
>     >     >         >     >       >     >       > [    1.982863] Installing knfsd (copyright (C) 1996 okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>>>>).
>     >     >         >     >       >     >       > [    2.021045] NET: Registered PF_ALG protocol family
>     >     >         >     >       >     >       > [    2.021122] xor: measuring software checksum speed
>     >     >         >     >       >     >       > [    2.029347]    8regs           :  2366 MB/sec
>     >     >         >     >       >     >       > [    2.033081]    32regs          :  2802 MB/sec
>     >     >         >     >       >     >       > [    2.038223]    arm64_neon      :  2320 MB/sec
>     >     >         >     >       >     >       > [    2.038385] xor: using function: 32regs (2802 MB/sec)
>     >     >         >     >       >     >       > [    2.043614] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
>     >     >         >     >       >     >       > [    2.050959] io scheduler mq-deadline registered
>     >     >         >     >       >     >       > [    2.055521] io scheduler kyber registered
>     >     >         >     >       >     >       > [    2.068227] xen:xen_evtchn: Event-channel device installed
>     >     >         >     >       >     >       > [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
>     >     >         >     >       >     >       > [    2.076190] cacheinfo: Unable to detect cache hierarchy for CPU 0
>     >     >         >     >       >     >       > [    2.085548] brd: module loaded
>     >     >         >     >       >     >       > [    2.089290] loop: module loaded
>     >     >         >     >       >     >       > [    2.089341] Invalid max_queues (4), will use default max: 2.
>     >     >         >     >       >     >       > [    2.094565] tun: Universal TUN/TAP device driver, 1.6
>     >     >         >     >       >     >       > [    2.098655] xen_netfront: Initialising Xen virtual ethernet driver
>     >     >         >     >       >     >       > [    2.104156] usbcore: registered new interface driver rtl8150
>     >     >         >     >       >     >       > [    2.109813] usbcore: registered new interface driver r8152
>     >     >         >     >       >     >       > [    2.115367] usbcore: registered new interface driver asix
>     >     >         >     >       >     >       > [    2.120794] usbcore: registered new interface driver ax88179_178a
>     >     >         >     >       >     >       > [    2.126934] usbcore: registered new interface driver cdc_ether
>     >     >         >     >       >     >       > [    2.132816] usbcore: registered new interface driver cdc_eem
>     >     >         >     >       >     >       > [    2.138527] usbcore: registered new interface driver net1080
>     >     >         >     >       >     >       > [    2.144256] usbcore: registered new interface driver cdc_subset
>     >     >         >     >       >     >       > [    2.150205] usbcore: registered new interface driver zaurus
>     >     >         >     >       >     >       > [    2.155837] usbcore: registered new interface driver cdc_ncm
>     >     >         >     >       >     >       > [    2.161550] usbcore: registered new interface driver r8153_ecm
>     >     >         >     >       >     >       > [    2.168240] usbcore: registered new interface driver cdc_acm
>     >     >         >     >       >     >       > [    2.173109] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
>     >     >         >     >       >     >       > [    2.181358] usbcore: registered new interface driver uas
>     >     >         >     >       >     >       > [    2.186547] usbcore: registered new interface driver usb-storage
>     >     >         >     >       >     >       > [    2.192643] usbcore: registered new interface driver ftdi_sio
>     >     >         >     >       >     >       > [    2.198384] usbserial: USB Serial support registered for FTDI USB Serial Device
>     >     >         >     >       >     >       > [    2.206118] udc-core: couldn't find an available UDC - added [g_mass_storage] to list of pending
>     >     >         >     >       drivers
>     >     >         >     >       >     >       > [    2.215332] i2c_dev: i2c /dev entries driver
>     >     >         >     >       >     >       > [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)
>     >     >         >     >       >     >       > [    2.225923] device-mapper: uevent: version 1.0.3
>     >     >         >     >       >     >       > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>>> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>>>>
>     >     >         >     >       <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>>> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>>>>>
>     >     >         >     >       >     >       > [    2.239315] EDAC MC0: Giving out device to module 1 controller synps_ddr_controller: DEV synps_edac
>     >     >         >     >       (INTERRUPT)
>     >     >         >     >       >     >       > [    2.249405] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV
>     >     >         >     >       >     >       ff960000.memory-controller (INTERRUPT)
>     >     >         >     >       >     >       > [    2.261719] sdhci: Secure Digital Host Controller Interface driver
>     >     >         >     >       >     >       > [    2.267487] sdhci: Copyright(c) Pierre Ossman
>     >     >         >     >       >     >       > [    2.271890] sdhci-pltfm: SDHCI platform and OF driver helper
>     >     >         >     >       >     >       > [    2.278157] ledtrig-cpu: registered to indicate activity on CPUs
>     >     >         >     >       >     >       > [    2.283816] zynqmp_firmware_probe Platform Management API v1.1
>     >     >         >     >       >     >       > [    2.289554] zynqmp_firmware_probe Trustzone version v1.0
>     >     >         >     >       >     >       > [    2.327875] securefw securefw: securefw probed
>     >     >         >     >       >     >       > [    2.328324] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
>     >     >         >     >       >     >       > [    2.332563] zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
>     >     >         >     >       >     >       > [    2.341183] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
>     >     >         >     >       >     >       > [    2.347667] remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is available
>     >     >         >     >       >     >       > [    2.353003] remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is available
>     >     >         >     >       >     >       > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
>     >     >         >     >       >     >       > [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen Proxy registered
>     >     >         >     >       >     >       > [    2.372525] viper-vdpp a4000000.vdpp: Device Tree Probing
>     >     >         >     >       >     >       > [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>     >     >         >     >       >     >       > [    2.386432] viper-vdpp a4000000.vdpp: Unable to register tamper handler. Retrying...
>     >     >         >     >       >     >       > [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
>     >     >         >     >       >     >       > [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device registered
>     >     >         >     >       >     >       > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
>     >     >         >     >       >     >       > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event Count: 32
>     >     >         >     >       >     >       > [    2.420856] default preset
>     >     >         >     >       >     >       > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device registered
>     >     >         >     >       >     >       > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
>     >     >         >     >       >     >       > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device registered
>     >     >         >     >       >     >       > [    2.441976] vmcu driver init
>     >     >         >     >       >     >       > [    2.444922] VMCU: : (240:0) registered
>     >     >         >     >       >     >       > [    2.444956] In K81 Updater init
>     >     >         >     >       >     >       > [    2.449003] pktgen: Packet Generator for packet performance testing. Version: 2.75
>     >     >         >     >       >     >       > [    2.468833] Initializing XFRM netlink socket
>     >     >         >     >       >     >       > [    2.468902] NET: Registered PF_PACKET protocol family
>     >     >         >     >       >     >       > [    2.472729] Bridge firewalling registered
>     >     >         >     >       >     >       > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
>     >     >         >     >       >     >       > [    2.481341] registered taskstats version 1
>     >     >         >     >       >     >       > [    2.486394] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
>     >     >         >     >       >     >       > [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
>     >     >         >     >       >     >       > [    2.507103] of-fpga-region fpga-full: FPGA Region probed
>     >     >         >     >       >     >       > [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver Probe success
>     >     >         >     >       >     >       > [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver Probe success
>     >     >         >     >       >     >       > [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver Probe success
>     >     >         >     >       >     >       > [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver Probe success
>     >     >         >     >       >     >       > [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver Probe success
>     >     >         >     >       >     >       > [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver Probe success
>     >     >         >     >       >     >       > [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver Probe success
>     >     >         >     >       >     >       > [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver Probe success
>     >     >         >     >       >     >       > [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver Probe success
>     >     >         >     >       >     >       > [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver Probe success
>     >     >         >     >       >     >       > [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
>     >     >         >     >       >     >       > [    2.946467] 2 fixed-partitions partitions found on MTD device spi0.0
>     >     >         >     >       >     >       > [    2.952393] Creating 2 MTD partitions on "spi0.0":
>     >     >         >     >       >     >       > [    2.957231] 0x000004000000-0x000008000000 : "bank A"
>     >     >         >     >       >     >       > [    2.963332] 0x000000000000-0x000004000000 : "bank B"
>     >     >         >     >       >     >       > [    2.968694] macb ff0b0000.ethernet: Not enabling partial store and forward
>     >     >         >     >       >     >       > [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25
>     >     >         >     >       (18:41:fe:0f:ff:02)
>     >     >         >     >       >     >       > [    2.984472] macb ff0c0000.ethernet: Not enabling partial store and forward
>     >     >         >     >       >     >       > [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26
>     >     >         >     >       (18:41:fe:0f:ff:03)
>     >     >         >     >       >     >       > [    3.001043] viper_enet viper_enet: Viper power GPIOs initialised
>     >     >         >     >       >     >       > [    3.007313] viper_enet viper_enet vnet0 (uninitialized): Validate interface QSGMII
>     >     >         >     >       >     >       > [    3.014914] viper_enet viper_enet vnet1 (uninitialized): Validate interface QSGMII
>     >     >         >     >       >     >       > [    3.022138] viper_enet viper_enet vnet1 (uninitialized): Validate interface type 18
>     >     >         >     >       >     >       > [    3.030274] viper_enet viper_enet vnet2 (uninitialized): Validate interface QSGMII
>     >     >         >     >       >     >       > [    3.037785] viper_enet viper_enet vnet3 (uninitialized): Validate interface QSGMII
>     >     >         >     >       >     >       > [    3.045301] viper_enet viper_enet: Viper enet registered
>     >     >         >     >       >     >       > [    3.050958] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
>     >     >         >     >       >     >       > [    3.057135] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
>     >     >         >     >       >     >       > [    3.063538] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
>     >     >         >     >       >     >       > [    3.069920] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
>     >     >         >     >       >     >       > [    3.097729] si70xx: probe of 2-0040 failed with error -5
>     >     >         >     >       >     >       > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
>     >     >         >     >       >     >       > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
>     >     >         >     >       >     >       > [    3.112457] viper-tamper viper-tamper: Device registered
>     >     >         >     >       >     >       > [    3.117593] active_bank active_bank: boot bank: 1
>     >     >         >     >       >     >       > [    3.122184] active_bank active_bank: boot mode: (0x02) qspi32
>     >     >         >     >       >     >       > [    3.128247] viper-vdpp a4000000.vdpp: Device Tree Probing
>     >     >         >     >       >     >       > [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>     >     >         >     >       >     >       > [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler registered
>     >     >         >     >       >     >       > [    3.147438] viper-vdpp a4000000.vdpp: Device registered
>     >     >         >     >       >     >       > [    3.153007] lpc55_l2 spi1.0: registered handler for protocol 0
>     >     >         >     >       >     >       > [    3.158582] lpc55_user lpc55_user: The major number for your device is 236
>     >     >         >     >       >     >       > [    3.165976] lpc55_l2 spi1.0: registered handler for protocol 1
>     >     >         >     >       >     >       > [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >     >         >     >       >     >       > [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
>     >     >         >     >       >     >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
>     >     >         >     >       >     >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
>     >     >         >     >       >     >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
>     >     >         >     >       >     >       > [    3.202932] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
>     >     >         >     >       >     >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
>     >     >         >     >       >     >       > [    3.215694] lpc55_l2 spi1.0: rx error: -110
>     >     >         >     >       >     >       > [    3.284438] mmc0: new HS200 MMC card at address 0001
>     >     >         >     >       >     >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
>     >     >         >     >       >     >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
>     >     >         >     >       >     >       > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
>     >     >         >     >       >     >       > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
>     >     >         >     >       >     >       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
>     >     >         >     >       >     >       > [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >     >         >     >       >     >       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to read the hardware clock
>     >     >         >     >       >     >       > [    3.591252] cdns-i2c ff020000.i2c: recovery information complete
>     >     >         >     >       >     >       > [    3.597085] at24 0-0050: supply vcc not found, using dummy regulator
>     >     >         >     >       >     >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
>     >     >         >     >       >     >       > [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
>     >     >         >     >       >     >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
>     >     >         >     >       >     >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
>     >     >         >     >       >     >       > [    3.624224] rtc-rv3028 0-0052: registered as rtc1
>     >     >         >     >       >     >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
>     >     >         >     >       >     >       > [    3.633253] lpc55_l2 spi1.0: rx error: -110
>     >     >         >     >       >     >       > [    3.639104] k81_bootloader 0-0010: probe
>     >     >         >     >       >     >       > [    3.641628] VMCU: : (235:0) registered
>     >     >         >     >       >     >       > [    3.641635] k81_bootloader 0-0010: probe completed
>     >     >         >     >       >     >       > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 28
>     >     >         >     >       >     >       > [    3.669154] cdns-i2c ff030000.i2c: recovery information complete
>     >     >         >     >       >     >       > [    3.675412] lm75 1-0048: supply vs not found, using dummy regulator
>     >     >         >     >       >     >       > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
>     >     >         >     >       >     >       > [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
>     >     >         >     >       >     >       > [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
>     >     >         >     >       >     >       > [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
>     >     >         >     >       >     >       > [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
>     >     >         >     >       >     >       > [    3.705157] pca954x 1-0070: registered 4 multiplexed busses for I2C switch pca9546
>     >     >         >     >       >     >       > [    3.713049] at24 1-0054: supply vcc not found, using dummy regulator
>     >     >         >     >       >     >       > [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM, read-only
>     >     >         >     >       >     >       > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq 29
>     >     >         >     >       >     >       > [    3.731272] sfp viper_enet:sfp-eth1: Host maximum power 2.0W
>     >     >         >     >       >     >       > [    3.737549] sfp_register_socket: got sfp_bus
>     >     >         >     >       >     >       > [    3.740709] sfp_register_socket: register sfp_bus
>     >     >         >     >       >     >       > [    3.745459] sfp_register_bus: ops ok!
>     >     >         >     >       >     >       > [    3.749179] sfp_register_bus: Try to attach
>     >     >         >     >       >     >       > [    3.753419] sfp_register_bus: Attach succeeded
>     >     >         >     >       >     >       > [    3.757914] sfp_register_bus: upstream ops attach
>     >     >         >     >       >     >       > [    3.762677] sfp_register_bus: Bus registered
>     >     >         >     >       >     >       > [    3.766999] sfp_register_socket: register sfp_bus succeeded
>     >     >         >     >       >     >       > [    3.775870] of_cfs_init
>     >     >         >     >       >     >       > [    3.776000] of_cfs_init: OK
>     >     >         >     >       >     >       > [    3.778211] clk: Not disabling unused clocks
>     >     >         >     >       >     >       > [   11.278477] Freeing initrd memory: 206056K
>     >     >         >     >       >     >       > [   11.279406] Freeing unused kernel memory: 1536K
>     >     >         >     >       >     >       > [   11.314006] Checked W+X mappings: passed, no W+X pages found
>     >     >         >     >       >     >       > [   11.314142] Run /init as init process
>     >     >         >     >       >     >       > INIT: version 3.01 booting
>     >     >         >     >       >     >       > fsck (busybox 1.35.0)
>     >     >         >     >       >     >       > /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600 blocks
>     >     >         >     >       >     >       > /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600 blocks
>     >     >         >     >       >     >       > /dev/mmcblk0p3 was not cleanly unmounted, check forced.
>     >     >         >     >       >     >       > /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous), 663/16384 blocks
>     >     >         >     >       >     >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode:
>     >     >         >     >       disabled.
>     >     >         >     >       >     >       > Starting random number generator daemon.
>     >     >         >     >       >     >       > [   11.580662] random: crng init done
>     >     >         >     >       >     >       > Starting udev
>     >     >         >     >       >     >       > [   11.613159] udevd[142]: starting version 3.2.10
>     >     >         >     >       >     >       > [   11.620385] udevd[143]: starting eudev-3.2.10
>     >     >         >     >       >     >       > [   11.704481] macb ff0b0000.ethernet control_red: renamed from eth0
>     >     >         >     >       >     >       > [   11.720264] macb ff0c0000.ethernet control_black: renamed from eth1
>     >     >         >     >       >     >       > [   12.063396] ip_local_port_range: prefer different parity for start/end values.
>     >     >         >     >       >     >       > [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >     >         >     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>     >     >         >     >       >     >       > Mon Feb 27 08:40:53 UTC 2023
>     >     >         >     >       >     >       > [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad result
>     >     >         >     >       >     >       > hwclock: RTC_SET_TIME: Invalid exchange
>     >     >         >     >       >     >       > [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >     >         >     >       >     >       > Starting mcud
>     >     >         >     >       >     >       > INIT: Entering runlevel: 5
>     >     >         >     >       >     >       > Configuring network interfaces... done.
>     >     >         >     >       >     >       > resetting network interface
>     >     >         >     >       >     >       > [   12.718295] macb ff0b0000.ethernet control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver [Xilinx
>     >     >         >     >       PCS/PMA PHY] (irq=POLL)
>     >     >         >     >       >     >       > [   12.723919] macb ff0b0000.ethernet control_red: configuring for phy/gmii link mode
>     >     >         >     >       >     >       > [   12.732151] pps pps0: new PPS source ptp0
>     >     >         >     >       >     >       > [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
>     >     >         >     >       >     >       > [   12.745724] macb ff0c0000.ethernet control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver [Xilinx
>     >     >         >     >       PCS/PMA PHY]
>     >     >         >     >       >     >       (irq=POLL)
>     >     >         >     >       >     >       > [   12.753469] macb ff0c0000.ethernet control_black: configuring for phy/gmii link mode
>     >     >         >     >       >     >       > [   12.761804] pps pps1: new PPS source ptp1
>     >     >         >     >       >     >       > [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
>     >     >         >     >       >     >       > Auto-negotiation: off
>     >     >         >     >       >     >       > Auto-negotiation: off
>     >     >         >     >       >     >       > [   16.828151] macb ff0b0000.ethernet control_red: unable to generate target frequency: 125000000 Hz
>     >     >         >     >       >     >       > [   16.834553] macb ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full - flow control off
>     >     >         >     >       >     >       > [   16.860552] macb ff0c0000.ethernet control_black: unable to generate target frequency: 125000000 Hz
>     >     >         >     >       >     >       > [   16.867052] macb ff0c0000.ethernet control_black: Link is Up - 1Gbps/Full - flow control off
>     >     >         >     >       >     >       > Starting Failsafe Secure Shell server in port 2222: sshd
>     >     >         >     >       >     >       > done.
>     >     >         >     >       >     >       > Starting rpcbind daemon...done.
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       > [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >     >         >     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>     >     >         >     >       >     >       > Starting State Manager Service
>     >     >         >     >       >     >       > Start state-manager restarter...
>     >     >         >     >       >     >       > (XEN) d0v1 Forwarding AES operation: 3254779951
>     >     >         >     >       >     >       > Starting /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa
>     >     >         >     >       devid 1 transid 744
>     >     >         >     >       >     >       /dev/dm-0
>     >     >         >     >       >     >       > scanned by udevd (385)
>     >     >         >     >       >     >       > [   17.349933] BTRFS info (device dm-0): disk space caching is enabled
>     >     >         >     >       >     >       > [   17.350670] BTRFS info (device dm-0): has skinny extents
>     >     >         >     >       >     >       > [   17.364384] BTRFS info (device dm-0): enabling ssd optimizations
>     >     >         >     >       >     >       > [   17.830462] BTRFS: device fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
>     >     >         >     >       /dev/mapper/client_prov scanned by
>     >     >         >     >       >     >       mkfs.btrfs
>     >     >         >     >       >     >       > (526)
>     >     >         >     >       >     >       > [   17.872699] BTRFS info (device dm-1): using free space tree
>     >     >         >     >       >     >       > [   17.872771] BTRFS info (device dm-1): has skinny extents
>     >     >         >     >       >     >       > [   17.878114] BTRFS info (device dm-1): flagging fs with big metadata feature
>     >     >         >     >       >     >       > [   17.894289] BTRFS info (device dm-1): enabling ssd optimizations
>     >     >         >     >       >     >       > [   17.895695] BTRFS info (device dm-1): checking UUID tree
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       > Setting domain 0 name, domid and JSON config...
>     >     >         >     >       >     >       > Done setting up Dom0
>     >     >         >     >       >     >       > Starting xenconsoled...
>     >     >         >     >       >     >       > Starting QEMU as disk backend for dom0
>     >     >         >     >       >     >       > Starting domain watchdog daemon: xenwatchdogd startup
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       > [   18.408647] BTRFS: device fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
>     >     >         >     >       /dev/mapper/client_config scanned by
>     >     >         >     >       >     >       mkfs.btrfs
>     >     >         >     >       >     >       > (574)
>     >     >         >     >       >     >       > [done]
>     >     >         >     >       >     >       > [   18.465552] BTRFS info (device dm-2): using free space tree
>     >     >         >     >       >     >       > [   18.465629] BTRFS info (device dm-2): has skinny extents
>     >     >         >     >       >     >       > [   18.471002] BTRFS info (device dm-2): flagging fs with big metadata feature
>     >     >         >     >       >     >       > Starting crond: [   18.482371] BTRFS info (device dm-2): enabling ssd optimizations
>     >     >         >     >       >     >       > [   18.486659] BTRFS info (device dm-2): checking UUID tree
>     >     >         >     >       >     >       > OK
>     >     >         >     >       >     >       > starting rsyslogd ... Log partition ready after 0 poll loops
>     >     >         >     >       >     >       > done
>     >     >         >     >       >     >       > rsyslogd: cannot connect to 172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>> <http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>>> <http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>> <http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>>>> <http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>> <http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>>> <http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>> <http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>>>>>: Network is unreachable [v8.2208.0 try
>     >     >         >     >       https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>>> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>>>> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>>> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027
>     <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>>>>> ]
>     >     >         >     >       >     >       > [   18.670637] BTRFS: device fsid 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3
>     >     >         >     >       scanned by udevd (518)
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       > Please insert USB token and enter your role in login prompt.
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       > login:
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       > Regards,
>     >     >         >     >       >     >       > O.
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>:
>     >     >         >     >       >     >       >       Hi Oleg,
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >       Here is the issue from your logs:
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >       SError Interrupt on CPU0, code 0xbe000000 -- SError
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >       SErrors are special signals to notify software of serious hardware
>     >     >         >     >       >     >       >       errors.  Something is going very wrong. Defective hardware is a
>     >     >         >     >       >     >       >       possibility.  Another possibility if software accessing address ranges
>     >     >         >     >       >     >       >       that it is not supposed to, sometimes it causes SErrors.
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >       Cheers,
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >       Stefano
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >       > Hello,
>     >     >         >     >       >     >       >       >
>     >     >         >     >       >     >       >       > Thanks guys.
>     >     >         >     >       >     >       >       > I found out where the problem was.
>     >     >         >     >       >     >       >       > Now dom0 booted more. But I have a new one.
>     >     >         >     >       >     >       >       > This is a kernel panic during Dom0 loading.
>     >     >         >     >       >     >       >       > Maybe someone is able to suggest something ?
>     >     >         >     >       >     >       >       >
>     >     >         >     >       >     >       >       > Regards,
>     >     >         >     >       >     >       >       > O.
>     >     >         >     >       >     >       >       >
>     >     >         >     >       >     >       >       > [    3.771362] sfp_register_bus: upstream ops attach
>     >     >         >     >       >     >       >       > [    3.776119] sfp_register_bus: Bus registered
>     >     >         >     >       >     >       >       > [    3.780459] sfp_register_socket: register sfp_bus succeeded
>     >     >         >     >       >     >       >       > [    3.789399] of_cfs_init
>     >     >         >     >       >     >       >       > [    3.789499] of_cfs_init: OK
>     >     >         >     >       >     >       >       > [    3.791685] clk: Not disabling unused clocks
>     >     >         >     >       >     >       >       > [   11.010355] SError Interrupt on CPU0, code 0xbe000000 -- SError
>     >     >         >     >       >     >       >       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>     >     >         >     >       >     >       >       > [   11.010393] Workqueue: events_unbound async_run_entry_fn
>     >     >         >     >       >     >       >       > [   11.010414] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
>     >     >         >     >       >     >       >       > [   11.010422] pc : simple_write_end+0xd0/0x130
>     >     >         >     >       >     >       >       > [   11.010431] lr : generic_perform_write+0x118/0x1e0
>     >     >         >     >       >     >       >       > [   11.010438] sp : ffffffc00809b910
>     >     >         >     >       >     >       >       > [   11.010441] x29: ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
>     >     >         >     >       >     >       >       > [   11.010451] x26: 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
>     >     >         >     >       >     >       >       > [   11.010459] x23: ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
>     >     >         >     >       >     >       >       > [   11.010472] x20: 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
>     >     >         >     >       >     >       >       > [   11.010481] x17: 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
>     >     >         >     >       >     >       >       > [   11.010490] x14: 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
>     >     >         >     >       >     >       >       > [   11.010498] x11: 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
>     >     >         >     >       >     >       >       > [   11.010507] x8 : 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
>     >     >         >     >       >     >       >       > [   11.010515] x5 : fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
>     >     >         >     >       >     >       >       > [   11.010524] x2 : 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
>     >     >         >     >       >     >       >       > [   11.010534] Kernel panic - not syncing: Asynchronous SError Interrupt
>     >     >         >     >       >     >       >       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>     >     >         >     >       >     >       >       > [   11.010545] Hardware name: D14 Viper Board - White Unit (DT)
>     >     >         >     >       >     >       >       > [   11.010548] Workqueue: events_unbound async_run_entry_fn
>     >     >         >     >       >     >       >       > [   11.010556] Call trace:
>     >     >         >     >       >     >       >       > [   11.010558]  dump_backtrace+0x0/0x1c4
>     >     >         >     >       >     >       >       > [   11.010567]  show_stack+0x18/0x2c
>     >     >         >     >       >     >       >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
>     >     >         >     >       >     >       >       > [   11.010583]  dump_stack+0x18/0x34
>     >     >         >     >       >     >       >       > [   11.010588]  panic+0x14c/0x2f8
>     >     >         >     >       >     >       >       > [   11.010597]  print_tainted+0x0/0xb0
>     >     >         >     >       >     >       >       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
>     >     >         >     >       >     >       >       > [   11.010614]  do_serror+0x28/0x60
>     >     >         >     >       >     >       >       > [   11.010621]  el1h_64_error_handler+0x30/0x50
>     >     >         >     >       >     >       >       > [   11.010628]  el1h_64_error+0x78/0x7c
>     >     >         >     >       >     >       >       > [   11.010633]  simple_write_end+0xd0/0x130
>     >     >         >     >       >     >       >       > [   11.010639]  generic_perform_write+0x118/0x1e0
>     >     >         >     >       >     >       >       > [   11.010644]  __generic_file_write_iter+0x138/0x1c4
>     >     >         >     >       >     >       >       > [   11.010650]  generic_file_write_iter+0x78/0xd0
>     >     >         >     >       >     >       >       > [   11.010656]  __kernel_write+0xfc/0x2ac
>     >     >         >     >       >     >       >       > [   11.010665]  kernel_write+0x88/0x160
>     >     >         >     >       >     >       >       > [   11.010673]  xwrite+0x44/0x94
>     >     >         >     >       >     >       >       > [   11.010680]  do_copy+0xa8/0x104
>     >     >         >     >       >     >       >       > [   11.010686]  write_buffer+0x38/0x58
>     >     >         >     >       >     >       >       > [   11.010692]  flush_buffer+0x4c/0xbc
>     >     >         >     >       >     >       >       > [   11.010698]  __gunzip+0x280/0x310
>     >     >         >     >       >     >       >       > [   11.010704]  gunzip+0x1c/0x28
>     >     >         >     >       >     >       >       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
>     >     >         >     >       >     >       >       > [   11.010715]  do_populate_rootfs+0x80/0x164
>     >     >         >     >       >     >       >       > [   11.010722]  async_run_entry_fn+0x48/0x164
>     >     >         >     >       >     >       >       > [   11.010728]  process_one_work+0x1e4/0x3a0
>     >     >         >     >       >     >       >       > [   11.010736]  worker_thread+0x7c/0x4c0
>     >     >         >     >       >     >       >       > [   11.010743]  kthread+0x120/0x130
>     >     >         >     >       >     >       >       > [   11.010750]  ret_from_fork+0x10/0x20
>     >     >         >     >       >     >       >       > [   11.010757] SMP: stopping secondary CPUs
>     >     >         >     >       >     >       >       > [   11.010784] Kernel Offset: 0x2f61200000 from 0xffffffc008000000
>     >     >         >     >       >     >       >       > [   11.010788] PHYS_OFFSET: 0x0
>     >     >         >     >       >     >       >       > [   11.010790] CPU features: 0x00000401,00000842
>     >     >         >     >       >     >       >       > [   11.010795] Memory Limit: none
>     >     >         >     >       >     >       >       > [   11.277509] ---[ end Kernel panic - not syncing: Asynchronous SError Interrupt ]---
>     >     >         >     >       >     >       >       >
>     >     >         >     >       >     >       >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>
>     <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>>:
>     >     >         >     >       >     >       >       >       Hi Oleg,
>     >     >         >     >       >     >       >       >
>     >     >         >     >       >     >       >       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
>     >     >         >     >       >     >       >       >       >       
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       > Hello Michal,
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       > I was not able to enable earlyprintk in the xen for now.
>     >     >         >     >       >     >       >       >       > I decided to choose another way.
>     >     >         >     >       >     >       >       >       > This is a xen's command line that I found out completely.
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       > (XEN) $$$$ console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
>     >     >         >     >       bootscrub=0
>     >     >         >     >       >     >       vwfi=native
>     >     >         >     >       >     >       >       sched=null
>     >     >         >     >       >     >       >       >       timer_slop=0
>     >     >         >     >       >     >       >       >       Yes, adding a printk() in Xen was also a good idea.
>     >     >         >     >       >     >       >       >
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       > So you are absolutely right about a command line.
>     >     >         >     >       >     >       >       >       > Now I am going to find out why xen did not have the correct parameters from the device
>     >     >         >     >       tree.
>     >     >         >     >       >     >       >       >       Maybe you will find this document helpful:
>     >     >         >     >       >     >       >       >       https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
>     <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>>>
>     >     >         >     >       <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
>     <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>>>>
>     >     >         >     >       >     >       >       >
>     >     >         >     >       >     >       >       >       ~Michal
>     >     >         >     >       >     >       >       >
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       > Regards,
>     >     >         >     >       >     >       >       >       > Oleg
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>
>     >     >         >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com
>     <mailto:michal.orzel@amd.com>>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>>>:
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       >     On 21/04/2023 10:04, Oleg Nikitenko wrote:
>     >     >         >     >       >     >       >       >       >     >       
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     > Hello Michal,
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     > Yes, I use yocto.
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     > Yesterday all day long I tried to follow your suggestions.
>     >     >         >     >       >     >       >       >       >     > I faced a problem.
>     >     >         >     >       >     >       >       >       >     > Manually in the xen config build file I pasted the strings:
>     >     >         >     >       >     >       >       >       >     In the .config file or in some Yocto file (listing additional Kconfig options) added
>     >     >         >     >       to SRC_URI?
>     >     >         >     >       >     >       >       >       >     You shouldn't really modify .config file but if you do, you should execute "make
>     >     >         >     >       olddefconfig"
>     >     >         >     >       >     >       afterwards.
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     > CONFIG_EARLY_PRINTK
>     >     >         >     >       >     >       >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
>     >     >         >     >       >     >       >       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
>     >     >         >     >       >     >       >       >       >     I hope you added =y to them.
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       >     Anyway, you have at least the following solutions:
>     >     >         >     >       >     >       >       >       >     1) Run bitbake xen -c menuconfig to properly set early printk
>     >     >         >     >       >     >       >       >       >     2) Find out how you enable other Kconfig options in your project (e.g.
>     >     >         >     >       CONFIG_COLORING=y that is not
>     >     >         >     >       >     >       enabled by
>     >     >         >     >       >     >       >       default)
>     >     >         >     >       >     >       >       >       >     3) Append the following to "xen/arch/arm/configs/arm64_defconfig":
>     >     >         >     >       >     >       >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       >     ~Michal
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     > Host hangs in build time. 
>     >     >         >     >       >     >       >       >       >     > Maybe I did not set something in the config build file ?
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     > Regards,
>     >     >         >     >       >     >       >       >       >     > Oleg
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
>     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
>     <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>
>     >     >         >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>     <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
>     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>>>:
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >     Thanks Michal,
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >     You gave me an idea.
>     >     >         >     >       >     >       >       >       >     >     I am going to try it today.
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >     Regards,
>     >     >         >     >       >     >       >       >       >     >     O.
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >     чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
>     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
>     <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>
>     >     >         >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>     <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
>     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>>>:
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >         Thanks Stefano.
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >         I am going to do it today.
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >         Regards,
>     >     >         >     >       >     >       >       >       >     >         O.
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >         ср, 19 апр. 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
>     >     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
>     >     >         >     >       >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org
>     <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>
>     >     >         >     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org
>     <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
>     >     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>>>:
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >             On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
>     >     >         >     >       >     >       >       >       >     >             > Hi Michal,
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             > I corrected xen's command line.
>     >     >         >     >       >     >       >       >       >     >             > Now it is
>     >     >         >     >       >     >       >       >       >     >             > xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M
>     >     >         >     >       dom0_max_vcpus=2
>     >     >         >     >       >     >       dom0_vcpus_pin
>     >     >         >     >       >     >       >       >       bootscrub=0 vwfi=native sched=null
>     >     >         >     >       >     >       >       >       >     >             > timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >             4 colors is way too many for xen, just do xen_colors=0-0. There is no
>     >     >         >     >       >     >       >       >       >     >             advantage in using more than 1 color for Xen.
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >             4 colors is too few for dom0, if you are giving 1600M of memory to
>     >     >         >     >       Dom0.
>     >     >         >     >       >     >       >       >       >     >             Each color is 256M. For 1600M you should give at least 7 colors. Try:
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >             xen_colors=0-0 dom0_colors=1-8
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >     >             > Unfortunately the result was the same.
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             > (XEN)  - Dom0 mode: Relaxed
>     >     >         >     >       >     >       >       >       >     >             > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>     >     >         >     >       >     >       >       >       >     >             > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>     >     >         >     >       >     >       >       >       >     >             > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>     >     >         >     >       >     >       >       >       >     >             > (XEN) Coloring general information
>     >     >         >     >       >     >       >       >       >     >             > (XEN) Way size: 64kB
>     >     >         >     >       >     >       >       >       >     >             > (XEN) Max. number of colors available: 16
>     >     >         >     >       >     >       >       >       >     >             > (XEN) Xen color(s): [ 0 ]
>     >     >         >     >       >     >       >       >       >     >             > (XEN) alternatives: Patching with alt table 00000000002cc690 ->
>     >     >         >     >       00000000002ccc0c
>     >     >         >     >       >     >       >       >       >     >             > (XEN) Color array allocation failed for dom0
>     >     >         >     >       >     >       >       >       >     >             > (XEN)
>     >     >         >     >       >     >       >       >       >     >             > (XEN) ****************************************
>     >     >         >     >       >     >       >       >       >     >             > (XEN) Panic on CPU 0:
>     >     >         >     >       >     >       >       >       >     >             > (XEN) Error creating domain 0
>     >     >         >     >       >     >       >       >       >     >             > (XEN) ****************************************
>     >     >         >     >       >     >       >       >       >     >             > (XEN)
>     >     >         >     >       >     >       >       >       >     >             > (XEN) Reboot in five seconds...
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             > I am going to find out how command line arguments passed and parsed.
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             > Regards,
>     >     >         >     >       >     >       >       >       >     >             > Oleg
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
>     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>
>     >     >         >     >       >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>     <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>
>     >     >         >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>     <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
>     >     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>>>:
>     >     >         >     >       >     >       >       >       >     >             >       Hi Michal,
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             > You put my nose into the problem. Thank you.
>     >     >         >     >       >     >       >       >       >     >             > I am going to use your point.
>     >     >         >     >       >     >       >       >       >     >             > Let's see what happens.
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             > Regards,
>     >     >         >     >       >     >       >       >       >     >             > Oleg
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>
>     >     >         >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>
>     >     >         >     >       >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com
>     <mailto:michal.orzel@amd.com>>>>>>
>     >     >         >     >       >     >       >       >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com
>     <mailto:michal.orzel@amd.com>>>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>
>     >     >         >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>>>>:
>     >     >         >     >       >     >       >       >       >     >             >       Hi Oleg,
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >       On 19/04/2023 09:03, Oleg Nikitenko wrote:
>     >     >         >     >       >     >       >       >       >     >             >       >       
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       > Hello Stefano,
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       > Thanks for the clarification.
>     >     >         >     >       >     >       >       >       >     >             >       > My company uses yocto for image generation.
>     >     >         >     >       >     >       >       >       >     >             >       > What kind of information do you need to consult me in this
>     >     >         >     >       case ?
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       > Maybe modules sizes/addresses which were mentioned by @Julien
>     >     >         >     >       Grall
>     >     >         >     >       >     >       >       <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>>
>     >     >         >     >       >     >       >       >       <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org>
>     <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>
>     >     >         >     >       <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org
>     <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>>>>> ?
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >       Sorry for jumping into discussion, but FWICS the Xen command
>     >     >         >     >       line you provided
>     >     >         >     >       >     >       seems to be
>     >     >         >     >       >     >       >       not the
>     >     >         >     >       >     >       >       >       one
>     >     >         >     >       >     >       >       >       >     >             >       Xen booted with. The error you are observing most likely is due
>     >     >         >     >       to dom0 colors
>     >     >         >     >       >     >       >       configuration not
>     >     >         >     >       >     >       >       >       being
>     >     >         >     >       >     >       >       >       >     >             >       specified (i.e. lack of dom0_colors=<> parameter). Although in
>     >     >         >     >       the command line you
>     >     >         >     >       >     >       >       provided, this
>     >     >         >     >       >     >       >       >       parameter
>     >     >         >     >       >     >       >       >       >     >             >       is set, I strongly doubt that this is the actual command line
>     >     >         >     >       in use.
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >       You wrote:
>     >     >         >     >       >     >       >       >       >     >             >       xen,xen-bootargs = "console=dtuart dtuart=serial0
>     >     >         >     >       dom0_mem=1600M dom0_max_vcpus=2
>     >     >         >     >       >     >       >       dom0_vcpus_pin
>     >     >         >     >       >     >       >       >       bootscrub=0 vwfi=native
>     >     >         >     >       >     >       >       >       >     >             >       sched=null timer_slop=0 way_szize=65536 xen_colors=0-3
>     >     >         >     >       dom0_colors=4-7";
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >       but:
>     >     >         >     >       >     >       >       >       >     >             >       1) way_szize has a typo
>     >     >         >     >       >     >       >       >       >     >             >       2) you specified 4 colors (0-3) for Xen, but the boot log says
>     >     >         >     >       that Xen has only
>     >     >         >     >       >     >       one:
>     >     >         >     >       >     >       >       >       >     >             >       (XEN) Xen color(s): [ 0 ]
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >       This makes me believe that no colors configuration actually end
>     >     >         >     >       up in command line
>     >     >         >     >       >     >       that Xen
>     >     >         >     >       >     >       >       booted
>     >     >         >     >       >     >       >       >       with.
>     >     >         >     >       >     >       >       >       >     >             >       Single color for Xen is a "default if not specified" and way
>     >     >         >     >       size was probably
>     >     >         >     >       >     >       calculated
>     >     >         >     >       >     >       >       by asking
>     >     >         >     >       >     >       >       >       HW.
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >       So I would suggest to first cross-check the command line in
>     >     >         >     >       use.
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >       ~Michal
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       > Regards,
>     >     >         >     >       >     >       >       >       >     >             >       > Oleg
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       > вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini
>     >     >         >     >       <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
>     >     >         >     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org
>     <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>
>     >     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
>     >     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>>
>     >     >         >     >       >     >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org
>     <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
>     >     >         >     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org
>     <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>
>     >     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>     <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
>     >     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>>>>:
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
>     >     >         >     >       >     >       >       >       >     >             >       >     > Hi Julien,
>     >     >         >     >       >     >       >       >       >     >             >       >     >
>     >     >         >     >       >     >       >       >       >     >             >       >     > >> This feature has not been merged in Xen upstream yet
>     >     >         >     >       >     >       >       >       >     >             >       >     >
>     >     >         >     >       >     >       >       >       >     >             >       >     > > would assume that upstream + the series on the ML [1]
>     >     >         >     >       work
>     >     >         >     >       >     >       >       >       >     >             >       >     >
>     >     >         >     >       >     >       >       >       >     >             >       >     > Please clarify this point.
>     >     >         >     >       >     >       >       >       >     >             >       >     > Because the two thoughts are controversial.
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >     Hi Oleg,
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >     As Julien wrote, there is nothing controversial. As you
>     >     >         >     >       are aware,
>     >     >         >     >       >     >       >       >       >     >             >       >     Xilinx maintains a separate Xen tree specific for Xilinx
>     >     >         >     >       here:
>     >     >         >     >       >     >       >       >       >     >             >       >     https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
>     >     >         >     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>     <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>>
>     >     >         >     >       >     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen
>     <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>
>     >     >         >     >       >     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen
>     <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>>>
>     >     >         >     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>     <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
>     >     >         >     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>>
>     >     >         >     >       >     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen
>     <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>
>     >     >         >     >       >     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen
>     <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>>>>
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >     and the branch you are using (xlnx_rebase_4.16) comes
>     >     >         >     >       from there.
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >     Instead, the upstream Xen tree lives here:
>     >     >         >     >       >     >       >       >       >     >             >       >     https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>
>     >     >         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>     <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>
>     >     >         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>     <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>
>     >     >         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>     <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>
>     >     >         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>>>>
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >     The Cache Coloring feature that you are trying to
>     >     >         >     >       configure is present
>     >     >         >     >       >     >       >       >       >     >             >       >     in xlnx_rebase_4.16, but not yet present upstream (there
>     >     >         >     >       is an
>     >     >         >     >       >     >       >       >       >     >             >       >     outstanding patch series to add cache coloring to Xen
>     >     >         >     >       upstream but it
>     >     >         >     >       >     >       >       >       >     >             >       >     hasn't been merged yet.)
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >     Anyway, if you are using xlnx_rebase_4.16 it doesn't
>     >     >         >     >       matter too much for
>     >     >         >     >       >     >       >       >       >     >             >       >     you as you already have Cache Coloring as a feature
>     >     >         >     >       there.
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >     I take you are using ImageBuilder to generate the boot
>     >     >         >     >       configuration? If
>     >     >         >     >       >     >       >       >       >     >             >       >     so, please post the ImageBuilder config file that you are
>     >     >         >     >       using.
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >       >     But from the boot message, it looks like the colors
>     >     >         >     >       configuration for
>     >     >         >     >       >     >       >       >       >     >             >       >     Dom0 is incorrect.
>     >     >         >     >       >     >       >       >       >     >             >       >
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >             >
>     >     >         >     >       >     >       >       >       >     >
>     >     >         >     >       >     >       >       >       >
>     >     >         >     >       >     >       >       >
>     >     >         >     >       >     >       >       >
>     >     >         >     >       >     >       >       >
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >       >
>     >     >         >     >       >     >
>     >     >         >     >       >     >
>     >     >         >     >       >     >
>     >     >         >     >       >
>     >     >         >     >
>     >     >         >     >
>     >     >         >     >
>     >     >         >
>     >     >
>     >
> 

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-16 12:15  0%                                                           ` Oleg Nikitenko
@ 2023-05-16 14:40  0%                                                             ` Michal Orzel
  2023-05-16 15:14  0%                                                               ` Oleg Nikitenko
  0 siblings, 1 reply; 200+ results
From: Michal Orzel @ 2023-05-16 14:40 UTC (permalink / raw)
  To: Oleg Nikitenko
  Cc: Stefano Stabellini, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand

Hi Oleg,

On 16/05/2023 14:15, Oleg Nikitenko wrote:
> 	
> 
> 
> Hello,
> 
> Thanks a lot Michal.
> 
> Then the next question.
> When I just started my experiments with xen, Stefano mentioned that each cache's color size is 256M.
> Is it possible to extend this figure ?
With 16 colors (e.g. on Cortex-A53) and 4GB of memory, roughly each color is 256M (i.e. 4GB/16 = 256M).
So as you can see this figure depends on the number of colors and memory size.

~Michal

> 
> Regards,
> Oleg
> 
> пн, 15 мая 2023 г. в 11:57, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
> 
>     Hi Oleg,
> 
>     On 15/05/2023 10:51, Oleg Nikitenko wrote:
>     >       
>     >
>     >
>     > Hello guys,
>     >
>     > Thanks a lot.
>     > After a long problem list I was able to run xen with Dom0 with a cache color.
>     > One more question from my side.
>     > I want to run a guest with color mode too.
>     > I inserted a string into guest config file llc-colors = "9-13"
>     > I got an error
>     > [  457.517004] loop0: detected capacity change from 0 to 385840
>     > Parsing config from /xen/red_config.cfg
>     > /xen/red_config.cfg:26: config parsing error near `-colors': lexical error
>     > warning: Config file looks like it contains Python code.
>     > warning:  Arbitrary Python is no longer supported.
>     > warning:  See https://wiki.xen.org/wiki/PythonInXlConfig <https://wiki.xen.org/wiki/PythonInXlConfig> <https://wiki.xen.org/wiki/PythonInXlConfig <https://wiki.xen.org/wiki/PythonInXlConfig>>
>     > Failed to parse config: Invalid argument
>     > So this is a question.
>     > Is it possible to assign a color mode for the DomU by config file ?
>     > If so, what string should I use?
>     Please, always refer to the relevant documentation. In this case, for xl.cfg:
>     https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890 <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890>
> 
>     ~Michal
> 
>     >
>     > Regards,
>     > Oleg
>     >
>     > чт, 11 мая 2023 г. в 13:32, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
>     >
>     >     Hi Michal,
>     >
>     >     Thanks.
>     >     This compilation previously had a name CONFIG_COLORING.
>     >     It mixed me up.
>     >
>     >     Regards,
>     >     Oleg
>     >
>     >     чт, 11 мая 2023 г. в 13:15, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
>     >
>     >         Hi Oleg,
>     >
>     >         On 11/05/2023 12:02, Oleg Nikitenko wrote:
>     >         >       
>     >         >
>     >         >
>     >         > Hello,
>     >         >
>     >         > Thanks Stefano.
>     >         > Then the next question.
>     >         > I cloned xen repo from xilinx site https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>> <https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>>>
>     >         > I managed to build a xlnx_rebase_4.17 branch in my environment.
>     >         > I did it without coloring first. I did not find any color footprints at this branch.
>     >         > I realized coloring is not in the xlnx_rebase_4.17 branch yet.
>     >         This is not true. Cache coloring is in xlnx_rebase_4.17. Please see the docs:
>     >         https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst>>
>     >
>     >         It describes the feature and documents the required properties.
>     >
>     >         ~Michal
>     >
>     >         >
>     >         >
>     >         > вт, 9 мая 2023 г. в 22:49, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
>     >         >
>     >         >     We test Xen Cache Coloring regularly on zcu102. Every Petalinux release
>     >         >     (twice a year) is tested with cache coloring enabled. The last Petalinux
>     >         >     release is 2023.1 and the kernel used is this:
>     >         >     https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>> <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>>>
>     >         >
>     >         >
>     >         >     On Tue, 9 May 2023, Oleg Nikitenko wrote:
>     >         >     > Hello guys,
>     >         >     >
>     >         >     > I have a couple of more questions.
>     >         >     > Have you ever run xen with the cache coloring at Zynq UltraScale+ MPSoC zcu102 xczu15eg ?
>     >         >     > When did you run xen with the cache coloring last time ?
>     >         >     > What kernel version did you use for Dom0 when you ran xen with the cache coloring last time ?
>     >         >     >
>     >         >     > Regards,
>     >         >     > Oleg
>     >         >     >
>     >         >     > пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>:
>     >         >     >       Hi Michal,
>     >         >     >
>     >         >     > Thanks.
>     >         >     >
>     >         >     > Regards,
>     >         >     > Oleg
>     >         >     >
>     >         >     > пт, 5 мая 2023 г. в 11:34, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>:
>     >         >     >       Hi Oleg,
>     >         >     >
>     >         >     >       Replying, so that you do not need to wait for Stefano.
>     >         >     >
>     >         >     >       On 05/05/2023 10:28, Oleg Nikitenko wrote:
>     >         >     >       >       
>     >         >     >       >
>     >         >     >       >
>     >         >     >       > Hello Stefano,
>     >         >     >       >
>     >         >     >       > I would like to try a xen cache color property from this repo  https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>>>
>     >         >     >       <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>>>>
>     >         >     >       > Could you tell whot branch I should use ?
>     >         >     >       Cache coloring feature is not part of the upstream tree and it is still under review.
>     >         >     >       You can only find it integrated in the Xilinx Xen tree.
>     >         >     >
>     >         >     >       ~Michal
>     >         >     >
>     >         >     >       >
>     >         >     >       > Regards,
>     >         >     >       > Oleg
>     >         >     >       >
>     >         >     >       > пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>:
>     >         >     >       >
>     >         >     >       >     I am familiar with the zcu102 but I don't know how you could possibly
>     >         >     >       >     generate a SError.
>     >         >     >       >
>     >         >     >       >     I suggest to try to use ImageBuilder [1] to generate the boot
>     >         >     >       >     configuration as a test because that is known to work well for zcu102.
>     >         >     >       >
>     >         >     >       >     [1] https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>>> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>>>>
>     >         >     >       >
>     >         >     >       >
>     >         >     >       >     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
>     >         >     >       >     > Hello Stefano,
>     >         >     >       >     >
>     >         >     >       >     > Thanks for clarification.
>     >         >     >       >     > We nighter use ImageBuilder nor uboot boot script.
>     >         >     >       >     > A model is zcu102 compatible.
>     >         >     >       >     >
>     >         >     >       >     > Regards,
>     >         >     >       >     > O.
>     >         >     >       >     >
>     >         >     >       >     > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>:
>     >         >     >       >     >       This is interesting. Are you using Xilinx hardware by any chance? If so,
>     >         >     >       >     >       which board?
>     >         >     >       >     >
>     >         >     >       >     >       Are you using ImageBuilder to generate your boot.scr boot script? If so,
>     >         >     >       >     >       could you please post your ImageBuilder config file? If not, can you
>     >         >     >       >     >       post the source of your uboot boot script?
>     >         >     >       >     >
>     >         >     >       >     >       SErrors are supposed to be related to a hardware failure of some kind.
>     >         >     >       >     >       You are not supposed to be able to trigger an SError easily by
>     >         >     >       >     >       "mistake". I have not seen SErrors due to wrong cache coloring
>     >         >     >       >     >       configurations on any Xilinx board before.
>     >         >     >       >     >
>     >         >     >       >     >       The differences between Xen with and without cache coloring from a
>     >         >     >       >     >       hardware perspective are:
>     >         >     >       >     >
>     >         >     >       >     >       - With cache coloring, the SMMU is enabled and does address translations
>     >         >     >       >     >         even for dom0. Without cache coloring the SMMU could be disabled, and
>     >         >     >       >     >         if enabled, the SMMU doesn't do any address translations for Dom0. If
>     >         >     >       >     >         there is a hardware failure related to SMMU address translation it
>     >         >     >       >     >         could only trigger with cache coloring. This would be my normal
>     >         >     >       >     >         suggestion for you to explore, but the failure happens too early
>     >         >     >       >     >         before any DMA-capable device is programmed. So I don't think this can
>     >         >     >       >     >         be the issue.
>     >         >     >       >     >
>     >         >     >       >     >       - With cache coloring, the memory allocation is very different so you'll
>     >         >     >       >     >         end up using different DDR regions for Dom0. So if your DDR is
>     >         >     >       >     >         defective, you might only see a failure with cache coloring enabled
>     >         >     >       >     >         because you end up using different regions.
>     >         >     >       >     >
>     >         >     >       >     >
>     >         >     >       >     >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
>     >         >     >       >     >       > Hi Stefano,
>     >         >     >       >     >       >
>     >         >     >       >     >       > Thank you.
>     >         >     >       >     >       > If I build xen without colors support there is not this error.
>     >         >     >       >     >       > All the domains are booted well.
>     >         >     >       >     >       > Hense it can not be a hardware issue.
>     >         >     >       >     >       > This panic arrived during unpacking the rootfs.
>     >         >     >       >     >       > Here I attached the boot log xen/Dom0 without color.
>     >         >     >       >     >       > A highlighted strings printed exactly after the place where 1-st time panic arrived.
>     >         >     >       >     >       >
>     >         >     >       >     >       >  Xen 4.16.1-pre
>     >         >     >       >     >       > (XEN) Xen version 4.16.1-pre (nole2390@(none)) (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y
>     >         >     >       2023-04-21
>     >         >     >       >     >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300 git:321687b231-dirty
>     >         >     >       >     >       > (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
>     >         >     >       >     >       > (XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0, part 0xd03,rev 0x4
>     >         >     >       >     >       > (XEN) 64-bit Execution:
>     >         >     >       >     >       > (XEN)   Processor Features: 0000000000002222 0000000000000000
>     >         >     >       >     >       > (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
>     >         >     >       >     >       > (XEN)     Extensions: FloatingPoint AdvancedSIMD
>     >         >     >       >     >       > (XEN)   Debug Features: 0000000010305106 0000000000000000
>     >         >     >       >     >       > (XEN)   Auxiliary Features: 0000000000000000 0000000000000000
>     >         >     >       >     >       > (XEN)   Memory Model Features: 0000000000001122 0000000000000000
>     >         >     >       >     >       > (XEN)   ISA Features:  0000000000011120 0000000000000000
>     >         >     >       >     >       > (XEN) 32-bit Execution:
>     >         >     >       >     >       > (XEN)   Processor Features: 0000000000000131:0000000000011011
>     >         >     >       >     >       > (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
>     >         >     >       >     >       > (XEN)     Extensions: GenericTimer Security
>     >         >     >       >     >       > (XEN)   Debug Features: 0000000003010066
>     >         >     >       >     >       > (XEN)   Auxiliary Features: 0000000000000000
>     >         >     >       >     >       > (XEN)   Memory Model Features: 0000000010201105 0000000040000000
>     >         >     >       >     >       > (XEN)                          0000000001260000 0000000002102211
>     >         >     >       >     >       > (XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
>     >         >     >       >     >       > (XEN)                 0000000001112131 0000000000011142 0000000000011121
>     >         >     >       >     >       > (XEN) Using SMC Calling Convention v1.2
>     >         >     >       >     >       > (XEN) Using PSCI v1.1
>     >         >     >       >     >       > (XEN) SMP: Allowing 4 CPUs
>     >         >     >       >     >       > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
>     >         >     >       >     >       > (XEN) GICv2 initialization:
>     >         >     >       >     >       > (XEN)         gic_dist_addr=00000000f9010000
>     >         >     >       >     >       > (XEN)         gic_cpu_addr=00000000f9020000
>     >         >     >       >     >       > (XEN)         gic_hyp_addr=00000000f9040000
>     >         >     >       >     >       > (XEN)         gic_vcpu_addr=00000000f9060000
>     >         >     >       >     >       > (XEN)         gic_maintenance_irq=25
>     >         >     >       >     >       > (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
>     >         >     >       >     >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
>     >         >     >       >     >       > (XEN) Using scheduler: null Scheduler (null)
>     >         >     >       >     >       > (XEN) Initializing null scheduler
>     >         >     >       >     >       > (XEN) WARNING: This is experimental software in development.
>     >         >     >       >     >       > (XEN) Use at your own risk.
>     >         >     >       >     >       > (XEN) Allocated console ring of 32 KiB.
>     >         >     >       >     >       > (XEN) CPU0: Guest atomics will try 12 times before pausing the domain
>     >         >     >       >     >       > (XEN) Bringing up CPU1
>     >         >     >       >     >       > (XEN) CPU1: Guest atomics will try 13 times before pausing the domain
>     >         >     >       >     >       > (XEN) CPU 1 booted.
>     >         >     >       >     >       > (XEN) Bringing up CPU2
>     >         >     >       >     >       > (XEN) CPU2: Guest atomics will try 13 times before pausing the domain
>     >         >     >       >     >       > (XEN) CPU 2 booted.
>     >         >     >       >     >       > (XEN) Bringing up CPU3
>     >         >     >       >     >       > (XEN) CPU3: Guest atomics will try 13 times before pausing the domain
>     >         >     >       >     >       > (XEN) Brought up 4 CPUs
>     >         >     >       >     >       > (XEN) CPU 3 booted.
>     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: probing hardware configuration...
>     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
>     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
>     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stream matching with 48 register groups, mask 0x7fff<2>smmu:
>     >         >     >       /axi/smmu@fd800000: 16 context
>     >         >     >       >     >       banks (0
>     >         >     >       >     >       > stage-2 only)
>     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
>     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: registered 29 master devices
>     >         >     >       >     >       > (XEN) I/O virtualisation enabled
>     >         >     >       >     >       > (XEN)  - Dom0 mode: Relaxed
>     >         >     >       >     >       > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>     >         >     >       >     >       > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>     >         >     >       >     >       > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>     >         >     >       >     >       > (XEN) alternatives: Patching with alt table 00000000002cc5c8 -> 00000000002ccb2c
>     >         >     >       >     >       > (XEN) *** LOADING DOMAIN 0 ***
>     >         >     >       >     >       > (XEN) Loading d0 kernel from boot module @ 0000000001000000
>     >         >     >       >     >       > (XEN) Loading ramdisk from boot module @ 0000000002000000
>     >         >     >       >     >       > (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
>     >         >     >       >     >       > (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
>     >         >     >       >     >       > (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
>     >         >     >       >     >       > (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
>     >         >     >       >     >       > (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
>     >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
>     >         >     >       >     >       > (XEN) Allocating PPI 16 for event channel interrupt
>     >         >     >       >     >       > (XEN) Extended region 0: 0x81200000->0xa0000000
>     >         >     >       >     >       > (XEN) Extended region 1: 0xb1200000->0xc0000000
>     >         >     >       >     >       > (XEN) Extended region 2: 0xc8000000->0xe0000000
>     >         >     >       >     >       > (XEN) Extended region 3: 0xf0000000->0xf9000000
>     >         >     >       >     >       > (XEN) Extended region 4: 0x100000000->0x600000000
>     >         >     >       >     >       > (XEN) Extended region 5: 0x880000000->0x8000000000
>     >         >     >       >     >       > (XEN) Extended region 6: 0x8001000000->0x10000000000
>     >         >     >       >     >       > (XEN) Loading zImage from 0000000001000000 to 0000000010000000-0000000010e41008
>     >         >     >       >     >       > (XEN) Loading d0 initrd from 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
>     >         >     >       >     >       > (XEN) Loading d0 DTB to 0x0000000013400000-0x000000001340cbdc
>     >         >     >       >     >       > (XEN) Initial low memory virq threshold set at 0x4000 pages.
>     >         >     >       >     >       > (XEN) Std. Loglevel: All
>     >         >     >       >     >       > (XEN) Guest Loglevel: All
>     >         >     >       >     >       > (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
>     >         >     >       >     >       > (XEN) null.c:353: 0 <-- d0v0
>     >         >     >       >     >       > (XEN) Freed 356kB init memory.
>     >         >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
>     >         >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
>     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
>     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
>     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
>     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
>     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
>     >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>     >         >     >       >     >       > [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
>     >         >     >       >     >       > [    0.000000] Linux version 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC)
>     >         >     >       11.3.0, GNU ld (GNU
>     >         >     >       >     >       Binutils)
>     >         >     >       >     >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
>     >         >     >       >     >       > [    0.000000] Machine model: D14 Viper Board - White Unit
>     >         >     >       >     >       > [    0.000000] Xen 4.16 support found
>     >         >     >       >     >       > [    0.000000] Zone ranges:
>     >         >     >       >     >       > [    0.000000]   DMA      [mem 0x0000000010000000-0x000000007fffffff]
>     >         >     >       >     >       > [    0.000000]   DMA32    empty
>     >         >     >       >     >       > [    0.000000]   Normal   empty
>     >         >     >       >     >       > [    0.000000] Movable zone start for each node
>     >         >     >       >     >       > [    0.000000] Early memory node ranges
>     >         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000010000000-0x000000001fffffff]
>     >         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000022000000-0x0000000022147fff]
>     >         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000022200000-0x0000000022347fff]
>     >         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000024000000-0x0000000027ffffff]
>     >         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000030000000-0x000000007fffffff]
>     >         >     >       >     >       > [    0.000000] Initmem setup node 0 [mem 0x0000000010000000-0x000000007fffffff]
>     >         >     >       >     >       > [    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
>     >         >     >       >     >       > [    0.000000] On node 0, zone DMA: 184 pages in unavailable ranges
>     >         >     >       >     >       > [    0.000000] On node 0, zone DMA: 7352 pages in unavailable ranges
>     >         >     >       >     >       > [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
>     >         >     >       >     >       > [    0.000000] psci: probing for conduit method from DT.
>     >         >     >       >     >       > [    0.000000] psci: PSCIv1.1 detected in firmware.
>     >         >     >       >     >       > [    0.000000] psci: Using standard PSCI v0.2 function IDs
>     >         >     >       >     >       > [    0.000000] psci: Trusted OS migration not required
>     >         >     >       >     >       > [    0.000000] psci: SMC Calling Convention v1.1
>     >         >     >       >     >       > [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0 d32744 u65536
>     >         >     >       >     >       > [    0.000000] Detected VIPT I-cache on CPU0
>     >         >     >       >     >       > [    0.000000] CPU features: kernel page table isolation forced ON by KASLR
>     >         >     >       >     >       > [    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
>     >         >     >       >     >       > [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 403845
>     >         >     >       >     >       > [    0.000000] Kernel command line: console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused fips=1
>     >         >     >       root=/dev/ram0
>     >         >     >       >     >       maxcpus=2
>     >         >     >       >     >       > [    0.000000] Unknown kernel command line parameters "earlyprintk=xen fips=1", will be passed to user
>     >         >     >       space.
>     >         >     >       >     >       > [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>     >         >     >       >     >       > [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>     >         >     >       >     >       > [    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:on
>     >         >     >       >     >       > [    0.000000] mem auto-init: clearing system memory may take some time...
>     >         >     >       >     >       > [    0.000000] Memory: 1121936K/1641024K available (9728K kernel code, 836K rwdata, 2396K rodata, 1536K
>     >         >     >       init, 262K bss,
>     >         >     >       >     >       256944K reserved,
>     >         >     >       >     >       > 262144K cma-reserved)
>     >         >     >       >     >       > [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
>     >         >     >       >     >       > [    0.000000] rcu: Hierarchical RCU implementation.
>     >         >     >       >     >       > [    0.000000] rcu: RCU event tracing is enabled.
>     >         >     >       >     >       > [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
>     >         >     >       >     >       > [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>     >         >     >       >     >       > [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
>     >         >     >       >     >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
>     >         >     >       >     >       > [    0.000000] Root IRQ handler: gic_handle_irq
>     >         >     >       >     >       > [    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (virt).
>     >         >     >       >     >       > [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0,
>     >         >     >       max_idle_ns: 440795205315 ns
>     >         >     >       >     >       > [    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
>     >         >     >       >     >       > [    0.000258] Console: colour dummy device 80x25
>     >         >     >       >     >       > [    0.310231] printk: console [hvc0] enabled
>     >         >     >       >     >       > [    0.314403] Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS
>     >         >     >       (lpj=400000)
>     >         >     >       >     >       > [    0.324851] pid_max: default: 32768 minimum: 301
>     >         >     >       >     >       > [    0.329706] LSM: Security Framework initializing
>     >         >     >       >     >       > [    0.334204] Yama: becoming mindful.
>     >         >     >       >     >       > [    0.337865] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>     >         >     >       >     >       > [    0.345180] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>     >         >     >       >     >       > [    0.354743] xen:grant_table: Grant tables using version 1 layout
>     >         >     >       >     >       > [    0.359132] Grant table initialized
>     >         >     >       >     >       > [    0.362664] xen:events: Using FIFO-based ABI
>     >         >     >       >     >       > [    0.366993] Xen: initializing cpu0
>     >         >     >       >     >       > [    0.370515] rcu: Hierarchical SRCU implementation.
>     >         >     >       >     >       > [    0.375930] smp: Bringing up secondary CPUs ...
>     >         >     >       >     >       > (XEN) null.c:353: 1 <-- d0v1
>     >         >     >       >     >       > (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>     >         >     >       >     >       > [    0.382549] Detected VIPT I-cache on CPU1
>     >         >     >       >     >       > [    0.388712] Xen: initializing cpu1
>     >         >     >       >     >       > [    0.388743] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
>     >         >     >       >     >       > [    0.388829] smp: Brought up 1 node, 2 CPUs
>     >         >     >       >     >       > [    0.406941] SMP: Total of 2 processors activated.
>     >         >     >       >     >       > [    0.411698] CPU features: detected: 32-bit EL0 Support
>     >         >     >       >     >       > [    0.416888] CPU features: detected: CRC32 instructions
>     >         >     >       >     >       > [    0.422121] CPU: All CPU(s) started at EL1
>     >         >     >       >     >       > [    0.426248] alternatives: patching kernel code
>     >         >     >       >     >       > [    0.431424] devtmpfs: initialized
>     >         >     >       >     >       > [    0.441454] KASLR enabled
>     >         >     >       >     >       > [    0.441602] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns:
>     >         >     >       7645041785100000 ns
>     >         >     >       >     >       > [    0.448321] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
>     >         >     >       >     >       > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE protocol family
>     >         >     >       >     >       > [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
>     >         >     >       >     >       > [    0.503772] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
>     >         >     >       >     >       > [    0.511610] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
>     >         >     >       >     >       > [    0.519478] audit: initializing netlink subsys (disabled)
>     >         >     >       >     >       > [    0.524985] audit: type=2000 audit(0.336:1): state=initialized audit_enabled=0 res=1
>     >         >     >       >     >       > [    0.529169] thermal_sys: Registered thermal governor 'step_wise'
>     >         >     >       >     >       > [    0.533023] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
>     >         >     >       >     >       > [    0.545608] ASID allocator initialised with 32768 entries
>     >         >     >       >     >       > [    0.551030] xen:swiotlb_xen: Warning: only able to allocate 4 MB for software IO TLB
>     >         >     >       >     >       > [    0.559332] software IO TLB: mapped [mem 0x0000000011800000-0x0000000011c00000] (4MB)
>     >         >     >       >     >       > [    0.583565] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>     >         >     >       >     >       > [    0.584721] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
>     >         >     >       >     >       > [    0.591478] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>     >         >     >       >     >       > [    0.598225] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
>     >         >     >       >     >       > [    0.636520] DRBG: Continuing without Jitter RNG
>     >         >     >       >     >       > [    0.737187] raid6: neonx8   gen()  2143 MB/s
>     >         >     >       >     >       > [    0.805294] raid6: neonx8   xor()  1589 MB/s
>     >         >     >       >     >       > [    0.873406] raid6: neonx4   gen()  2177 MB/s
>     >         >     >       >     >       > [    0.941499] raid6: neonx4   xor()  1556 MB/s
>     >         >     >       >     >       > [    1.009612] raid6: neonx2   gen()  2072 MB/s
>     >         >     >       >     >       > [    1.077715] raid6: neonx2   xor()  1430 MB/s
>     >         >     >       >     >       > [    1.145834] raid6: neonx1   gen()  1769 MB/s
>     >         >     >       >     >       > [    1.213935] raid6: neonx1   xor()  1214 MB/s
>     >         >     >       >     >       > [    1.282046] raid6: int64x8  gen()  1366 MB/s
>     >         >     >       >     >       > [    1.350132] raid6: int64x8  xor()   773 MB/s
>     >         >     >       >     >       > [    1.418259] raid6: int64x4  gen()  1602 MB/s
>     >         >     >       >     >       > [    1.486349] raid6: int64x4  xor()   851 MB/s
>     >         >     >       >     >       > [    1.554464] raid6: int64x2  gen()  1396 MB/s
>     >         >     >       >     >       > [    1.622561] raid6: int64x2  xor()   744 MB/s
>     >         >     >       >     >       > [    1.690687] raid6: int64x1  gen()  1033 MB/s
>     >         >     >       >     >       > [    1.758770] raid6: int64x1  xor()   517 MB/s
>     >         >     >       >     >       > [    1.758809] raid6: using algorithm neonx4 gen() 2177 MB/s
>     >         >     >       >     >       > [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
>     >         >     >       >     >       > [    1.767957] raid6: using neon recovery algorithm
>     >         >     >       >     >       > [    1.772824] xen:balloon: Initialising balloon driver
>     >         >     >       >     >       > [    1.778021] iommu: Default domain type: Translated
>     >         >     >       >     >       > [    1.782584] iommu: DMA domain TLB invalidation policy: strict mode
>     >         >     >       >     >       > [    1.789149] SCSI subsystem initialized
>     >         >     >       >     >       > [    1.792820] usbcore: registered new interface driver usbfs
>     >         >     >       >     >       > [    1.798254] usbcore: registered new interface driver hub
>     >         >     >       >     >       > [    1.803626] usbcore: registered new device driver usb
>     >         >     >       >     >       > [    1.808761] pps_core: LinuxPPS API ver. 1 registered
>     >         >     >       >     >       > [    1.813716] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>> <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>>
>     >         >     >       <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>> <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>>>>
>     >         >     >       >     >       > [    1.822903] PTP clock support registered
>     >         >     >       >     >       > [    1.826893] EDAC MC: Ver: 3.0.0
>     >         >     >       >     >       > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
>     >         >     >       >     >       > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX channels.
>     >         >     >       >     >       > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX channels.
>     >         >     >       >     >       > [    1.855907] FPGA manager framework
>     >         >     >       >     >       > [    1.859952] clocksource: Switched to clocksource arch_sys_counter
>     >         >     >       >     >       > [    1.871712] NET: Registered PF_INET protocol family
>     >         >     >       >     >       > [    1.871838] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
>     >         >     >       >     >       > [    1.879392] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
>     >         >     >       >     >       > [    1.887078] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
>     >         >     >       >     >       > [    1.894846] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
>     >         >     >       >     >       > [    1.902900] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
>     >         >     >       >     >       > [    1.910350] TCP: Hash tables configured (established 16384 bind 16384)
>     >         >     >       >     >       > [    1.916778] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
>     >         >     >       >     >       > [    1.923509] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
>     >         >     >       >     >       > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol family
>     >         >     >       >     >       > [    1.936834] RPC: Registered named UNIX socket transport module.
>     >         >     >       >     >       > [    1.942342] RPC: Registered udp transport module.
>     >         >     >       >     >       > [    1.947088] RPC: Registered tcp transport module.
>     >         >     >       >     >       > [    1.951843] RPC: Registered tcp NFSv4.1 backchannel transport module.
>     >         >     >       >     >       > [    1.958334] PCI: CLS 0 bytes, default 64
>     >         >     >       >     >       > [    1.962709] Trying to unpack rootfs image as initramfs...
>     >         >     >       >     >       > [    1.977090] workingset: timestamp_bits=62 max_order=19 bucket_order=0
>     >         >     >       >     >       > [    1.982863] Installing knfsd (copyright (C) 1996 okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>>>).
>     >         >     >       >     >       > [    2.021045] NET: Registered PF_ALG protocol family
>     >         >     >       >     >       > [    2.021122] xor: measuring software checksum speed
>     >         >     >       >     >       > [    2.029347]    8regs           :  2366 MB/sec
>     >         >     >       >     >       > [    2.033081]    32regs          :  2802 MB/sec
>     >         >     >       >     >       > [    2.038223]    arm64_neon      :  2320 MB/sec
>     >         >     >       >     >       > [    2.038385] xor: using function: 32regs (2802 MB/sec)
>     >         >     >       >     >       > [    2.043614] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
>     >         >     >       >     >       > [    2.050959] io scheduler mq-deadline registered
>     >         >     >       >     >       > [    2.055521] io scheduler kyber registered
>     >         >     >       >     >       > [    2.068227] xen:xen_evtchn: Event-channel device installed
>     >         >     >       >     >       > [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
>     >         >     >       >     >       > [    2.076190] cacheinfo: Unable to detect cache hierarchy for CPU 0
>     >         >     >       >     >       > [    2.085548] brd: module loaded
>     >         >     >       >     >       > [    2.089290] loop: module loaded
>     >         >     >       >     >       > [    2.089341] Invalid max_queues (4), will use default max: 2.
>     >         >     >       >     >       > [    2.094565] tun: Universal TUN/TAP device driver, 1.6
>     >         >     >       >     >       > [    2.098655] xen_netfront: Initialising Xen virtual ethernet driver
>     >         >     >       >     >       > [    2.104156] usbcore: registered new interface driver rtl8150
>     >         >     >       >     >       > [    2.109813] usbcore: registered new interface driver r8152
>     >         >     >       >     >       > [    2.115367] usbcore: registered new interface driver asix
>     >         >     >       >     >       > [    2.120794] usbcore: registered new interface driver ax88179_178a
>     >         >     >       >     >       > [    2.126934] usbcore: registered new interface driver cdc_ether
>     >         >     >       >     >       > [    2.132816] usbcore: registered new interface driver cdc_eem
>     >         >     >       >     >       > [    2.138527] usbcore: registered new interface driver net1080
>     >         >     >       >     >       > [    2.144256] usbcore: registered new interface driver cdc_subset
>     >         >     >       >     >       > [    2.150205] usbcore: registered new interface driver zaurus
>     >         >     >       >     >       > [    2.155837] usbcore: registered new interface driver cdc_ncm
>     >         >     >       >     >       > [    2.161550] usbcore: registered new interface driver r8153_ecm
>     >         >     >       >     >       > [    2.168240] usbcore: registered new interface driver cdc_acm
>     >         >     >       >     >       > [    2.173109] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
>     >         >     >       >     >       > [    2.181358] usbcore: registered new interface driver uas
>     >         >     >       >     >       > [    2.186547] usbcore: registered new interface driver usb-storage
>     >         >     >       >     >       > [    2.192643] usbcore: registered new interface driver ftdi_sio
>     >         >     >       >     >       > [    2.198384] usbserial: USB Serial support registered for FTDI USB Serial Device
>     >         >     >       >     >       > [    2.206118] udc-core: couldn't find an available UDC - added [g_mass_storage] to list of pending
>     >         >     >       drivers
>     >         >     >       >     >       > [    2.215332] i2c_dev: i2c /dev entries driver
>     >         >     >       >     >       > [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)
>     >         >     >       >     >       > [    2.225923] device-mapper: uevent: version 1.0.3
>     >         >     >       >     >       > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>>>
>     >         >     >       <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>>>>
>     >         >     >       >     >       > [    2.239315] EDAC MC0: Giving out device to module 1 controller synps_ddr_controller: DEV synps_edac
>     >         >     >       (INTERRUPT)
>     >         >     >       >     >       > [    2.249405] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV
>     >         >     >       >     >       ff960000.memory-controller (INTERRUPT)
>     >         >     >       >     >       > [    2.261719] sdhci: Secure Digital Host Controller Interface driver
>     >         >     >       >     >       > [    2.267487] sdhci: Copyright(c) Pierre Ossman
>     >         >     >       >     >       > [    2.271890] sdhci-pltfm: SDHCI platform and OF driver helper
>     >         >     >       >     >       > [    2.278157] ledtrig-cpu: registered to indicate activity on CPUs
>     >         >     >       >     >       > [    2.283816] zynqmp_firmware_probe Platform Management API v1.1
>     >         >     >       >     >       > [    2.289554] zynqmp_firmware_probe Trustzone version v1.0
>     >         >     >       >     >       > [    2.327875] securefw securefw: securefw probed
>     >         >     >       >     >       > [    2.328324] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
>     >         >     >       >     >       > [    2.332563] zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
>     >         >     >       >     >       > [    2.341183] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
>     >         >     >       >     >       > [    2.347667] remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is available
>     >         >     >       >     >       > [    2.353003] remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is available
>     >         >     >       >     >       > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
>     >         >     >       >     >       > [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen Proxy registered
>     >         >     >       >     >       > [    2.372525] viper-vdpp a4000000.vdpp: Device Tree Probing
>     >         >     >       >     >       > [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>     >         >     >       >     >       > [    2.386432] viper-vdpp a4000000.vdpp: Unable to register tamper handler. Retrying...
>     >         >     >       >     >       > [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
>     >         >     >       >     >       > [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device registered
>     >         >     >       >     >       > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
>     >         >     >       >     >       > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event Count: 32
>     >         >     >       >     >       > [    2.420856] default preset
>     >         >     >       >     >       > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device registered
>     >         >     >       >     >       > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
>     >         >     >       >     >       > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device registered
>     >         >     >       >     >       > [    2.441976] vmcu driver init
>     >         >     >       >     >       > [    2.444922] VMCU: : (240:0) registered
>     >         >     >       >     >       > [    2.444956] In K81 Updater init
>     >         >     >       >     >       > [    2.449003] pktgen: Packet Generator for packet performance testing. Version: 2.75
>     >         >     >       >     >       > [    2.468833] Initializing XFRM netlink socket
>     >         >     >       >     >       > [    2.468902] NET: Registered PF_PACKET protocol family
>     >         >     >       >     >       > [    2.472729] Bridge firewalling registered
>     >         >     >       >     >       > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
>     >         >     >       >     >       > [    2.481341] registered taskstats version 1
>     >         >     >       >     >       > [    2.486394] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
>     >         >     >       >     >       > [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
>     >         >     >       >     >       > [    2.507103] of-fpga-region fpga-full: FPGA Region probed
>     >         >     >       >     >       > [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver Probe success
>     >         >     >       >     >       > [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver Probe success
>     >         >     >       >     >       > [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver Probe success
>     >         >     >       >     >       > [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver Probe success
>     >         >     >       >     >       > [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver Probe success
>     >         >     >       >     >       > [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver Probe success
>     >         >     >       >     >       > [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver Probe success
>     >         >     >       >     >       > [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver Probe success
>     >         >     >       >     >       > [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver Probe success
>     >         >     >       >     >       > [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver Probe success
>     >         >     >       >     >       > [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
>     >         >     >       >     >       > [    2.946467] 2 fixed-partitions partitions found on MTD device spi0.0
>     >         >     >       >     >       > [    2.952393] Creating 2 MTD partitions on "spi0.0":
>     >         >     >       >     >       > [    2.957231] 0x000004000000-0x000008000000 : "bank A"
>     >         >     >       >     >       > [    2.963332] 0x000000000000-0x000004000000 : "bank B"
>     >         >     >       >     >       > [    2.968694] macb ff0b0000.ethernet: Not enabling partial store and forward
>     >         >     >       >     >       > [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25
>     >         >     >       (18:41:fe:0f:ff:02)
>     >         >     >       >     >       > [    2.984472] macb ff0c0000.ethernet: Not enabling partial store and forward
>     >         >     >       >     >       > [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26
>     >         >     >       (18:41:fe:0f:ff:03)
>     >         >     >       >     >       > [    3.001043] viper_enet viper_enet: Viper power GPIOs initialised
>     >         >     >       >     >       > [    3.007313] viper_enet viper_enet vnet0 (uninitialized): Validate interface QSGMII
>     >         >     >       >     >       > [    3.014914] viper_enet viper_enet vnet1 (uninitialized): Validate interface QSGMII
>     >         >     >       >     >       > [    3.022138] viper_enet viper_enet vnet1 (uninitialized): Validate interface type 18
>     >         >     >       >     >       > [    3.030274] viper_enet viper_enet vnet2 (uninitialized): Validate interface QSGMII
>     >         >     >       >     >       > [    3.037785] viper_enet viper_enet vnet3 (uninitialized): Validate interface QSGMII
>     >         >     >       >     >       > [    3.045301] viper_enet viper_enet: Viper enet registered
>     >         >     >       >     >       > [    3.050958] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
>     >         >     >       >     >       > [    3.057135] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
>     >         >     >       >     >       > [    3.063538] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
>     >         >     >       >     >       > [    3.069920] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
>     >         >     >       >     >       > [    3.097729] si70xx: probe of 2-0040 failed with error -5
>     >         >     >       >     >       > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
>     >         >     >       >     >       > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
>     >         >     >       >     >       > [    3.112457] viper-tamper viper-tamper: Device registered
>     >         >     >       >     >       > [    3.117593] active_bank active_bank: boot bank: 1
>     >         >     >       >     >       > [    3.122184] active_bank active_bank: boot mode: (0x02) qspi32
>     >         >     >       >     >       > [    3.128247] viper-vdpp a4000000.vdpp: Device Tree Probing
>     >         >     >       >     >       > [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>     >         >     >       >     >       > [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler registered
>     >         >     >       >     >       > [    3.147438] viper-vdpp a4000000.vdpp: Device registered
>     >         >     >       >     >       > [    3.153007] lpc55_l2 spi1.0: registered handler for protocol 0
>     >         >     >       >     >       > [    3.158582] lpc55_user lpc55_user: The major number for your device is 236
>     >         >     >       >     >       > [    3.165976] lpc55_l2 spi1.0: registered handler for protocol 1
>     >         >     >       >     >       > [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >         >     >       >     >       > [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
>     >         >     >       >     >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
>     >         >     >       >     >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
>     >         >     >       >     >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
>     >         >     >       >     >       > [    3.202932] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
>     >         >     >       >     >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
>     >         >     >       >     >       > [    3.215694] lpc55_l2 spi1.0: rx error: -110
>     >         >     >       >     >       > [    3.284438] mmc0: new HS200 MMC card at address 0001
>     >         >     >       >     >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
>     >         >     >       >     >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
>     >         >     >       >     >       > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
>     >         >     >       >     >       > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
>     >         >     >       >     >       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
>     >         >     >       >     >       > [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >         >     >       >     >       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to read the hardware clock
>     >         >     >       >     >       > [    3.591252] cdns-i2c ff020000.i2c: recovery information complete
>     >         >     >       >     >       > [    3.597085] at24 0-0050: supply vcc not found, using dummy regulator
>     >         >     >       >     >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
>     >         >     >       >     >       > [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
>     >         >     >       >     >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
>     >         >     >       >     >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
>     >         >     >       >     >       > [    3.624224] rtc-rv3028 0-0052: registered as rtc1
>     >         >     >       >     >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
>     >         >     >       >     >       > [    3.633253] lpc55_l2 spi1.0: rx error: -110
>     >         >     >       >     >       > [    3.639104] k81_bootloader 0-0010: probe
>     >         >     >       >     >       > [    3.641628] VMCU: : (235:0) registered
>     >         >     >       >     >       > [    3.641635] k81_bootloader 0-0010: probe completed
>     >         >     >       >     >       > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 28
>     >         >     >       >     >       > [    3.669154] cdns-i2c ff030000.i2c: recovery information complete
>     >         >     >       >     >       > [    3.675412] lm75 1-0048: supply vs not found, using dummy regulator
>     >         >     >       >     >       > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
>     >         >     >       >     >       > [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
>     >         >     >       >     >       > [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
>     >         >     >       >     >       > [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
>     >         >     >       >     >       > [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
>     >         >     >       >     >       > [    3.705157] pca954x 1-0070: registered 4 multiplexed busses for I2C switch pca9546
>     >         >     >       >     >       > [    3.713049] at24 1-0054: supply vcc not found, using dummy regulator
>     >         >     >       >     >       > [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM, read-only
>     >         >     >       >     >       > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq 29
>     >         >     >       >     >       > [    3.731272] sfp viper_enet:sfp-eth1: Host maximum power 2.0W
>     >         >     >       >     >       > [    3.737549] sfp_register_socket: got sfp_bus
>     >         >     >       >     >       > [    3.740709] sfp_register_socket: register sfp_bus
>     >         >     >       >     >       > [    3.745459] sfp_register_bus: ops ok!
>     >         >     >       >     >       > [    3.749179] sfp_register_bus: Try to attach
>     >         >     >       >     >       > [    3.753419] sfp_register_bus: Attach succeeded
>     >         >     >       >     >       > [    3.757914] sfp_register_bus: upstream ops attach
>     >         >     >       >     >       > [    3.762677] sfp_register_bus: Bus registered
>     >         >     >       >     >       > [    3.766999] sfp_register_socket: register sfp_bus succeeded
>     >         >     >       >     >       > [    3.775870] of_cfs_init
>     >         >     >       >     >       > [    3.776000] of_cfs_init: OK
>     >         >     >       >     >       > [    3.778211] clk: Not disabling unused clocks
>     >         >     >       >     >       > [   11.278477] Freeing initrd memory: 206056K
>     >         >     >       >     >       > [   11.279406] Freeing unused kernel memory: 1536K
>     >         >     >       >     >       > [   11.314006] Checked W+X mappings: passed, no W+X pages found
>     >         >     >       >     >       > [   11.314142] Run /init as init process
>     >         >     >       >     >       > INIT: version 3.01 booting
>     >         >     >       >     >       > fsck (busybox 1.35.0)
>     >         >     >       >     >       > /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600 blocks
>     >         >     >       >     >       > /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600 blocks
>     >         >     >       >     >       > /dev/mmcblk0p3 was not cleanly unmounted, check forced.
>     >         >     >       >     >       > /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous), 663/16384 blocks
>     >         >     >       >     >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode:
>     >         >     >       disabled.
>     >         >     >       >     >       > Starting random number generator daemon.
>     >         >     >       >     >       > [   11.580662] random: crng init done
>     >         >     >       >     >       > Starting udev
>     >         >     >       >     >       > [   11.613159] udevd[142]: starting version 3.2.10
>     >         >     >       >     >       > [   11.620385] udevd[143]: starting eudev-3.2.10
>     >         >     >       >     >       > [   11.704481] macb ff0b0000.ethernet control_red: renamed from eth0
>     >         >     >       >     >       > [   11.720264] macb ff0c0000.ethernet control_black: renamed from eth1
>     >         >     >       >     >       > [   12.063396] ip_local_port_range: prefer different parity for start/end values.
>     >         >     >       >     >       > [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >         >     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>     >         >     >       >     >       > Mon Feb 27 08:40:53 UTC 2023
>     >         >     >       >     >       > [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad result
>     >         >     >       >     >       > hwclock: RTC_SET_TIME: Invalid exchange
>     >         >     >       >     >       > [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >         >     >       >     >       > Starting mcud
>     >         >     >       >     >       > INIT: Entering runlevel: 5
>     >         >     >       >     >       > Configuring network interfaces... done.
>     >         >     >       >     >       > resetting network interface
>     >         >     >       >     >       > [   12.718295] macb ff0b0000.ethernet control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver [Xilinx
>     >         >     >       PCS/PMA PHY] (irq=POLL)
>     >         >     >       >     >       > [   12.723919] macb ff0b0000.ethernet control_red: configuring for phy/gmii link mode
>     >         >     >       >     >       > [   12.732151] pps pps0: new PPS source ptp0
>     >         >     >       >     >       > [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
>     >         >     >       >     >       > [   12.745724] macb ff0c0000.ethernet control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver [Xilinx
>     >         >     >       PCS/PMA PHY]
>     >         >     >       >     >       (irq=POLL)
>     >         >     >       >     >       > [   12.753469] macb ff0c0000.ethernet control_black: configuring for phy/gmii link mode
>     >         >     >       >     >       > [   12.761804] pps pps1: new PPS source ptp1
>     >         >     >       >     >       > [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
>     >         >     >       >     >       > Auto-negotiation: off
>     >         >     >       >     >       > Auto-negotiation: off
>     >         >     >       >     >       > [   16.828151] macb ff0b0000.ethernet control_red: unable to generate target frequency: 125000000 Hz
>     >         >     >       >     >       > [   16.834553] macb ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full - flow control off
>     >         >     >       >     >       > [   16.860552] macb ff0c0000.ethernet control_black: unable to generate target frequency: 125000000 Hz
>     >         >     >       >     >       > [   16.867052] macb ff0c0000.ethernet control_black: Link is Up - 1Gbps/Full - flow control off
>     >         >     >       >     >       > Starting Failsafe Secure Shell server in port 2222: sshd
>     >         >     >       >     >       > done.
>     >         >     >       >     >       > Starting rpcbind daemon...done.
>     >         >     >       >     >       >
>     >         >     >       >     >       > [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >         >     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>     >         >     >       >     >       > Starting State Manager Service
>     >         >     >       >     >       > Start state-manager restarter...
>     >         >     >       >     >       > (XEN) d0v1 Forwarding AES operation: 3254779951
>     >         >     >       >     >       > Starting /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa
>     >         >     >       devid 1 transid 744
>     >         >     >       >     >       /dev/dm-0
>     >         >     >       >     >       > scanned by udevd (385)
>     >         >     >       >     >       > [   17.349933] BTRFS info (device dm-0): disk space caching is enabled
>     >         >     >       >     >       > [   17.350670] BTRFS info (device dm-0): has skinny extents
>     >         >     >       >     >       > [   17.364384] BTRFS info (device dm-0): enabling ssd optimizations
>     >         >     >       >     >       > [   17.830462] BTRFS: device fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
>     >         >     >       /dev/mapper/client_prov scanned by
>     >         >     >       >     >       mkfs.btrfs
>     >         >     >       >     >       > (526)
>     >         >     >       >     >       > [   17.872699] BTRFS info (device dm-1): using free space tree
>     >         >     >       >     >       > [   17.872771] BTRFS info (device dm-1): has skinny extents
>     >         >     >       >     >       > [   17.878114] BTRFS info (device dm-1): flagging fs with big metadata feature
>     >         >     >       >     >       > [   17.894289] BTRFS info (device dm-1): enabling ssd optimizations
>     >         >     >       >     >       > [   17.895695] BTRFS info (device dm-1): checking UUID tree
>     >         >     >       >     >       >
>     >         >     >       >     >       > Setting domain 0 name, domid and JSON config...
>     >         >     >       >     >       > Done setting up Dom0
>     >         >     >       >     >       > Starting xenconsoled...
>     >         >     >       >     >       > Starting QEMU as disk backend for dom0
>     >         >     >       >     >       > Starting domain watchdog daemon: xenwatchdogd startup
>     >         >     >       >     >       >
>     >         >     >       >     >       > [   18.408647] BTRFS: device fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
>     >         >     >       /dev/mapper/client_config scanned by
>     >         >     >       >     >       mkfs.btrfs
>     >         >     >       >     >       > (574)
>     >         >     >       >     >       > [done]
>     >         >     >       >     >       > [   18.465552] BTRFS info (device dm-2): using free space tree
>     >         >     >       >     >       > [   18.465629] BTRFS info (device dm-2): has skinny extents
>     >         >     >       >     >       > [   18.471002] BTRFS info (device dm-2): flagging fs with big metadata feature
>     >         >     >       >     >       > Starting crond: [   18.482371] BTRFS info (device dm-2): enabling ssd optimizations
>     >         >     >       >     >       > [   18.486659] BTRFS info (device dm-2): checking UUID tree
>     >         >     >       >     >       > OK
>     >         >     >       >     >       > starting rsyslogd ... Log partition ready after 0 poll loops
>     >         >     >       >     >       > done
>     >         >     >       >     >       > rsyslogd: cannot connect to 172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>> <http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>>> <http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>> <http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>>>>: Network is unreachable [v8.2208.0 try
>     >         >     >       https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>>> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>>>> ]
>     >         >     >       >     >       > [   18.670637] BTRFS: device fsid 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3
>     >         >     >       scanned by udevd (518)
>     >         >     >       >     >       >
>     >         >     >       >     >       > Please insert USB token and enter your role in login prompt.
>     >         >     >       >     >       >
>     >         >     >       >     >       > login:
>     >         >     >       >     >       >
>     >         >     >       >     >       > Regards,
>     >         >     >       >     >       > O.
>     >         >     >       >     >       >
>     >         >     >       >     >       >
>     >         >     >       >     >       > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>:
>     >         >     >       >     >       >       Hi Oleg,
>     >         >     >       >     >       >
>     >         >     >       >     >       >       Here is the issue from your logs:
>     >         >     >       >     >       >
>     >         >     >       >     >       >       SError Interrupt on CPU0, code 0xbe000000 -- SError
>     >         >     >       >     >       >
>     >         >     >       >     >       >       SErrors are special signals to notify software of serious hardware
>     >         >     >       >     >       >       errors.  Something is going very wrong. Defective hardware is a
>     >         >     >       >     >       >       possibility.  Another possibility if software accessing address ranges
>     >         >     >       >     >       >       that it is not supposed to, sometimes it causes SErrors.
>     >         >     >       >     >       >
>     >         >     >       >     >       >       Cheers,
>     >         >     >       >     >       >
>     >         >     >       >     >       >       Stefano
>     >         >     >       >     >       >
>     >         >     >       >     >       >
>     >         >     >       >     >       >
>     >         >     >       >     >       >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
>     >         >     >       >     >       >
>     >         >     >       >     >       >       > Hello,
>     >         >     >       >     >       >       >
>     >         >     >       >     >       >       > Thanks guys.
>     >         >     >       >     >       >       > I found out where the problem was.
>     >         >     >       >     >       >       > Now dom0 booted more. But I have a new one.
>     >         >     >       >     >       >       > This is a kernel panic during Dom0 loading.
>     >         >     >       >     >       >       > Maybe someone is able to suggest something ?
>     >         >     >       >     >       >       >
>     >         >     >       >     >       >       > Regards,
>     >         >     >       >     >       >       > O.
>     >         >     >       >     >       >       >
>     >         >     >       >     >       >       > [    3.771362] sfp_register_bus: upstream ops attach
>     >         >     >       >     >       >       > [    3.776119] sfp_register_bus: Bus registered
>     >         >     >       >     >       >       > [    3.780459] sfp_register_socket: register sfp_bus succeeded
>     >         >     >       >     >       >       > [    3.789399] of_cfs_init
>     >         >     >       >     >       >       > [    3.789499] of_cfs_init: OK
>     >         >     >       >     >       >       > [    3.791685] clk: Not disabling unused clocks
>     >         >     >       >     >       >       > [   11.010355] SError Interrupt on CPU0, code 0xbe000000 -- SError
>     >         >     >       >     >       >       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>     >         >     >       >     >       >       > [   11.010393] Workqueue: events_unbound async_run_entry_fn
>     >         >     >       >     >       >       > [   11.010414] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
>     >         >     >       >     >       >       > [   11.010422] pc : simple_write_end+0xd0/0x130
>     >         >     >       >     >       >       > [   11.010431] lr : generic_perform_write+0x118/0x1e0
>     >         >     >       >     >       >       > [   11.010438] sp : ffffffc00809b910
>     >         >     >       >     >       >       > [   11.010441] x29: ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
>     >         >     >       >     >       >       > [   11.010451] x26: 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
>     >         >     >       >     >       >       > [   11.010459] x23: ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
>     >         >     >       >     >       >       > [   11.010472] x20: 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
>     >         >     >       >     >       >       > [   11.010481] x17: 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
>     >         >     >       >     >       >       > [   11.010490] x14: 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
>     >         >     >       >     >       >       > [   11.010498] x11: 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
>     >         >     >       >     >       >       > [   11.010507] x8 : 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
>     >         >     >       >     >       >       > [   11.010515] x5 : fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
>     >         >     >       >     >       >       > [   11.010524] x2 : 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
>     >         >     >       >     >       >       > [   11.010534] Kernel panic - not syncing: Asynchronous SError Interrupt
>     >         >     >       >     >       >       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>     >         >     >       >     >       >       > [   11.010545] Hardware name: D14 Viper Board - White Unit (DT)
>     >         >     >       >     >       >       > [   11.010548] Workqueue: events_unbound async_run_entry_fn
>     >         >     >       >     >       >       > [   11.010556] Call trace:
>     >         >     >       >     >       >       > [   11.010558]  dump_backtrace+0x0/0x1c4
>     >         >     >       >     >       >       > [   11.010567]  show_stack+0x18/0x2c
>     >         >     >       >     >       >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
>     >         >     >       >     >       >       > [   11.010583]  dump_stack+0x18/0x34
>     >         >     >       >     >       >       > [   11.010588]  panic+0x14c/0x2f8
>     >         >     >       >     >       >       > [   11.010597]  print_tainted+0x0/0xb0
>     >         >     >       >     >       >       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
>     >         >     >       >     >       >       > [   11.010614]  do_serror+0x28/0x60
>     >         >     >       >     >       >       > [   11.010621]  el1h_64_error_handler+0x30/0x50
>     >         >     >       >     >       >       > [   11.010628]  el1h_64_error+0x78/0x7c
>     >         >     >       >     >       >       > [   11.010633]  simple_write_end+0xd0/0x130
>     >         >     >       >     >       >       > [   11.010639]  generic_perform_write+0x118/0x1e0
>     >         >     >       >     >       >       > [   11.010644]  __generic_file_write_iter+0x138/0x1c4
>     >         >     >       >     >       >       > [   11.010650]  generic_file_write_iter+0x78/0xd0
>     >         >     >       >     >       >       > [   11.010656]  __kernel_write+0xfc/0x2ac
>     >         >     >       >     >       >       > [   11.010665]  kernel_write+0x88/0x160
>     >         >     >       >     >       >       > [   11.010673]  xwrite+0x44/0x94
>     >         >     >       >     >       >       > [   11.010680]  do_copy+0xa8/0x104
>     >         >     >       >     >       >       > [   11.010686]  write_buffer+0x38/0x58
>     >         >     >       >     >       >       > [   11.010692]  flush_buffer+0x4c/0xbc
>     >         >     >       >     >       >       > [   11.010698]  __gunzip+0x280/0x310
>     >         >     >       >     >       >       > [   11.010704]  gunzip+0x1c/0x28
>     >         >     >       >     >       >       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
>     >         >     >       >     >       >       > [   11.010715]  do_populate_rootfs+0x80/0x164
>     >         >     >       >     >       >       > [   11.010722]  async_run_entry_fn+0x48/0x164
>     >         >     >       >     >       >       > [   11.010728]  process_one_work+0x1e4/0x3a0
>     >         >     >       >     >       >       > [   11.010736]  worker_thread+0x7c/0x4c0
>     >         >     >       >     >       >       > [   11.010743]  kthread+0x120/0x130
>     >         >     >       >     >       >       > [   11.010750]  ret_from_fork+0x10/0x20
>     >         >     >       >     >       >       > [   11.010757] SMP: stopping secondary CPUs
>     >         >     >       >     >       >       > [   11.010784] Kernel Offset: 0x2f61200000 from 0xffffffc008000000
>     >         >     >       >     >       >       > [   11.010788] PHYS_OFFSET: 0x0
>     >         >     >       >     >       >       > [   11.010790] CPU features: 0x00000401,00000842
>     >         >     >       >     >       >       > [   11.010795] Memory Limit: none
>     >         >     >       >     >       >       > [   11.277509] ---[ end Kernel panic - not syncing: Asynchronous SError Interrupt ]---
>     >         >     >       >     >       >       >
>     >         >     >       >     >       >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>:
>     >         >     >       >     >       >       >       Hi Oleg,
>     >         >     >       >     >       >       >
>     >         >     >       >     >       >       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
>     >         >     >       >     >       >       >       >       
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       > Hello Michal,
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       > I was not able to enable earlyprintk in the xen for now.
>     >         >     >       >     >       >       >       > I decided to choose another way.
>     >         >     >       >     >       >       >       > This is a xen's command line that I found out completely.
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       > (XEN) $$$$ console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
>     >         >     >       bootscrub=0
>     >         >     >       >     >       vwfi=native
>     >         >     >       >     >       >       sched=null
>     >         >     >       >     >       >       >       timer_slop=0
>     >         >     >       >     >       >       >       Yes, adding a printk() in Xen was also a good idea.
>     >         >     >       >     >       >       >
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       > So you are absolutely right about a command line.
>     >         >     >       >     >       >       >       > Now I am going to find out why xen did not have the correct parameters from the device
>     >         >     >       tree.
>     >         >     >       >     >       >       >       Maybe you will find this document helpful:
>     >         >     >       >     >       >       >       https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>>
>     >         >     >       <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>>>
>     >         >     >       >     >       >       >
>     >         >     >       >     >       >       >       ~Michal
>     >         >     >       >     >       >       >
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       > Regards,
>     >         >     >       >     >       >       >       > Oleg
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>
>     >         >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>>:
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       >     On 21/04/2023 10:04, Oleg Nikitenko wrote:
>     >         >     >       >     >       >       >       >     >       
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     > Hello Michal,
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     > Yes, I use yocto.
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     > Yesterday all day long I tried to follow your suggestions.
>     >         >     >       >     >       >       >       >     > I faced a problem.
>     >         >     >       >     >       >       >       >     > Manually in the xen config build file I pasted the strings:
>     >         >     >       >     >       >       >       >     In the .config file or in some Yocto file (listing additional Kconfig options) added
>     >         >     >       to SRC_URI?
>     >         >     >       >     >       >       >       >     You shouldn't really modify .config file but if you do, you should execute "make
>     >         >     >       olddefconfig"
>     >         >     >       >     >       afterwards.
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     > CONFIG_EARLY_PRINTK
>     >         >     >       >     >       >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
>     >         >     >       >     >       >       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
>     >         >     >       >     >       >       >       >     I hope you added =y to them.
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       >     Anyway, you have at least the following solutions:
>     >         >     >       >     >       >       >       >     1) Run bitbake xen -c menuconfig to properly set early printk
>     >         >     >       >     >       >       >       >     2) Find out how you enable other Kconfig options in your project (e.g.
>     >         >     >       CONFIG_COLORING=y that is not
>     >         >     >       >     >       enabled by
>     >         >     >       >     >       >       default)
>     >         >     >       >     >       >       >       >     3) Append the following to "xen/arch/arm/configs/arm64_defconfig":
>     >         >     >       >     >       >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       >     ~Michal
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     > Host hangs in build time. 
>     >         >     >       >     >       >       >       >     > Maybe I did not set something in the config build file ?
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     > Regards,
>     >         >     >       >     >       >       >       >     > Oleg
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>
>     >         >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>>:
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >     Thanks Michal,
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >     You gave me an idea.
>     >         >     >       >     >       >       >       >     >     I am going to try it today.
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >     Regards,
>     >         >     >       >     >       >       >       >     >     O.
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >     чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>
>     >         >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>>:
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >         Thanks Stefano.
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >         I am going to do it today.
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >         Regards,
>     >         >     >       >     >       >       >       >     >         O.
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >         ср, 19 апр. 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
>     >         >     >       >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
>     >         >     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
>     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>>:
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >             On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
>     >         >     >       >     >       >       >       >     >             > Hi Michal,
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             > I corrected xen's command line.
>     >         >     >       >     >       >       >       >     >             > Now it is
>     >         >     >       >     >       >       >       >     >             > xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M
>     >         >     >       dom0_max_vcpus=2
>     >         >     >       >     >       dom0_vcpus_pin
>     >         >     >       >     >       >       >       bootscrub=0 vwfi=native sched=null
>     >         >     >       >     >       >       >       >     >             > timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >             4 colors is way too many for xen, just do xen_colors=0-0. There is no
>     >         >     >       >     >       >       >       >     >             advantage in using more than 1 color for Xen.
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >             4 colors is too few for dom0, if you are giving 1600M of memory to
>     >         >     >       Dom0.
>     >         >     >       >     >       >       >       >     >             Each color is 256M. For 1600M you should give at least 7 colors. Try:
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >             xen_colors=0-0 dom0_colors=1-8
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >     >             > Unfortunately the result was the same.
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             > (XEN)  - Dom0 mode: Relaxed
>     >         >     >       >     >       >       >       >     >             > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>     >         >     >       >     >       >       >       >     >             > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>     >         >     >       >     >       >       >       >     >             > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>     >         >     >       >     >       >       >       >     >             > (XEN) Coloring general information
>     >         >     >       >     >       >       >       >     >             > (XEN) Way size: 64kB
>     >         >     >       >     >       >       >       >     >             > (XEN) Max. number of colors available: 16
>     >         >     >       >     >       >       >       >     >             > (XEN) Xen color(s): [ 0 ]
>     >         >     >       >     >       >       >       >     >             > (XEN) alternatives: Patching with alt table 00000000002cc690 ->
>     >         >     >       00000000002ccc0c
>     >         >     >       >     >       >       >       >     >             > (XEN) Color array allocation failed for dom0
>     >         >     >       >     >       >       >       >     >             > (XEN)
>     >         >     >       >     >       >       >       >     >             > (XEN) ****************************************
>     >         >     >       >     >       >       >       >     >             > (XEN) Panic on CPU 0:
>     >         >     >       >     >       >       >       >     >             > (XEN) Error creating domain 0
>     >         >     >       >     >       >       >       >     >             > (XEN) ****************************************
>     >         >     >       >     >       >       >       >     >             > (XEN)
>     >         >     >       >     >       >       >       >     >             > (XEN) Reboot in five seconds...
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             > I am going to find out how command line arguments passed and parsed.
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             > Regards,
>     >         >     >       >     >       >       >       >     >             > Oleg
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
>     >         >     >       >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>
>     >         >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>     >         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>>:
>     >         >     >       >     >       >       >       >     >             >       Hi Michal,
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             > You put my nose into the problem. Thank you.
>     >         >     >       >     >       >       >       >     >             > I am going to use your point.
>     >         >     >       >     >       >       >       >     >             > Let's see what happens.
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             > Regards,
>     >         >     >       >     >       >       >       >     >             > Oleg
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>
>     >         >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>
>     >         >     >       >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>
>     >         >     >       >     >       >       >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>
>     >         >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>>>:
>     >         >     >       >     >       >       >       >     >             >       Hi Oleg,
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >       On 19/04/2023 09:03, Oleg Nikitenko wrote:
>     >         >     >       >     >       >       >       >     >             >       >       
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       > Hello Stefano,
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       > Thanks for the clarification.
>     >         >     >       >     >       >       >       >     >             >       > My company uses yocto for image generation.
>     >         >     >       >     >       >       >       >     >             >       > What kind of information do you need to consult me in this
>     >         >     >       case ?
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       > Maybe modules sizes/addresses which were mentioned by @Julien
>     >         >     >       Grall
>     >         >     >       >     >       >       <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>
>     >         >     >       >     >       >       >       <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>
>     >         >     >       <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>>>> ?
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >       Sorry for jumping into discussion, but FWICS the Xen command
>     >         >     >       line you provided
>     >         >     >       >     >       seems to be
>     >         >     >       >     >       >       not the
>     >         >     >       >     >       >       >       one
>     >         >     >       >     >       >       >       >     >             >       Xen booted with. The error you are observing most likely is due
>     >         >     >       to dom0 colors
>     >         >     >       >     >       >       configuration not
>     >         >     >       >     >       >       >       being
>     >         >     >       >     >       >       >       >     >             >       specified (i.e. lack of dom0_colors=<> parameter). Although in
>     >         >     >       the command line you
>     >         >     >       >     >       >       provided, this
>     >         >     >       >     >       >       >       parameter
>     >         >     >       >     >       >       >       >     >             >       is set, I strongly doubt that this is the actual command line
>     >         >     >       in use.
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >       You wrote:
>     >         >     >       >     >       >       >       >     >             >       xen,xen-bootargs = "console=dtuart dtuart=serial0
>     >         >     >       dom0_mem=1600M dom0_max_vcpus=2
>     >         >     >       >     >       >       dom0_vcpus_pin
>     >         >     >       >     >       >       >       bootscrub=0 vwfi=native
>     >         >     >       >     >       >       >       >     >             >       sched=null timer_slop=0 way_szize=65536 xen_colors=0-3
>     >         >     >       dom0_colors=4-7";
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >       but:
>     >         >     >       >     >       >       >       >     >             >       1) way_szize has a typo
>     >         >     >       >     >       >       >       >     >             >       2) you specified 4 colors (0-3) for Xen, but the boot log says
>     >         >     >       that Xen has only
>     >         >     >       >     >       one:
>     >         >     >       >     >       >       >       >     >             >       (XEN) Xen color(s): [ 0 ]
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >       This makes me believe that no colors configuration actually end
>     >         >     >       up in command line
>     >         >     >       >     >       that Xen
>     >         >     >       >     >       >       booted
>     >         >     >       >     >       >       >       with.
>     >         >     >       >     >       >       >       >     >             >       Single color for Xen is a "default if not specified" and way
>     >         >     >       size was probably
>     >         >     >       >     >       calculated
>     >         >     >       >     >       >       by asking
>     >         >     >       >     >       >       >       HW.
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >       So I would suggest to first cross-check the command line in
>     >         >     >       use.
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >       ~Michal
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       > Regards,
>     >         >     >       >     >       >       >       >     >             >       > Oleg
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       > вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini
>     >         >     >       <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
>     >         >     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
>     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>
>     >         >     >       >     >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
>     >         >     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
>     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>     >         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>>>:
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
>     >         >     >       >     >       >       >       >     >             >       >     > Hi Julien,
>     >         >     >       >     >       >       >       >     >             >       >     >
>     >         >     >       >     >       >       >       >     >             >       >     > >> This feature has not been merged in Xen upstream yet
>     >         >     >       >     >       >       >       >     >             >       >     >
>     >         >     >       >     >       >       >       >     >             >       >     > > would assume that upstream + the series on the ML [1]
>     >         >     >       work
>     >         >     >       >     >       >       >       >     >             >       >     >
>     >         >     >       >     >       >       >       >     >             >       >     > Please clarify this point.
>     >         >     >       >     >       >       >       >     >             >       >     > Because the two thoughts are controversial.
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >     Hi Oleg,
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >     As Julien wrote, there is nothing controversial. As you
>     >         >     >       are aware,
>     >         >     >       >     >       >       >       >     >             >       >     Xilinx maintains a separate Xen tree specific for Xilinx
>     >         >     >       here:
>     >         >     >       >     >       >       >       >     >             >       >     https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>
>     >         >     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>
>     >         >     >       >     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
>     >         >     >       >     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>>
>     >         >     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>
>     >         >     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>
>     >         >     >       >     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
>     >         >     >       >     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>>>
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >     and the branch you are using (xlnx_rebase_4.16) comes
>     >         >     >       from there.
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >     Instead, the upstream Xen tree lives here:
>     >         >     >       >     >       >       >       >     >             >       >     https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>     >         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>>>
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >     The Cache Coloring feature that you are trying to
>     >         >     >       configure is present
>     >         >     >       >     >       >       >       >     >             >       >     in xlnx_rebase_4.16, but not yet present upstream (there
>     >         >     >       is an
>     >         >     >       >     >       >       >       >     >             >       >     outstanding patch series to add cache coloring to Xen
>     >         >     >       upstream but it
>     >         >     >       >     >       >       >       >     >             >       >     hasn't been merged yet.)
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >     Anyway, if you are using xlnx_rebase_4.16 it doesn't
>     >         >     >       matter too much for
>     >         >     >       >     >       >       >       >     >             >       >     you as you already have Cache Coloring as a feature
>     >         >     >       there.
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >     I take you are using ImageBuilder to generate the boot
>     >         >     >       configuration? If
>     >         >     >       >     >       >       >       >     >             >       >     so, please post the ImageBuilder config file that you are
>     >         >     >       using.
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >       >     But from the boot message, it looks like the colors
>     >         >     >       configuration for
>     >         >     >       >     >       >       >       >     >             >       >     Dom0 is incorrect.
>     >         >     >       >     >       >       >       >     >             >       >
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >             >
>     >         >     >       >     >       >       >       >     >
>     >         >     >       >     >       >       >       >
>     >         >     >       >     >       >       >
>     >         >     >       >     >       >       >
>     >         >     >       >     >       >       >
>     >         >     >       >     >       >
>     >         >     >       >     >       >
>     >         >     >       >     >       >
>     >         >     >       >     >
>     >         >     >       >     >
>     >         >     >       >     >
>     >         >     >       >
>     >         >     >
>     >         >     >
>     >         >     >
>     >         >
>     >
> 


^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-15  8:57  0%                                                         ` Michal Orzel
@ 2023-05-16 12:15  0%                                                           ` Oleg Nikitenko
  2023-05-16 14:40  0%                                                             ` Michal Orzel
  0 siblings, 1 reply; 200+ results
From: Oleg Nikitenko @ 2023-05-16 12:15 UTC (permalink / raw)
  To: Michal Orzel
  Cc: Stefano Stabellini, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand

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

Hello,

Thanks a lot Michal.

Then the next question.
When I just started my experiments with xen, Stefano mentioned that each
cache's color size is 256M.
Is it possible to extend this figure ?

Regards,
Oleg

пн, 15 мая 2023 г. в 11:57, Michal Orzel <michal.orzel@amd.com>:

> Hi Oleg,
>
> On 15/05/2023 10:51, Oleg Nikitenko wrote:
> >
> >
> >
> > Hello guys,
> >
> > Thanks a lot.
> > After a long problem list I was able to run xen with Dom0 with a cache
> color.
> > One more question from my side.
> > I want to run a guest with color mode too.
> > I inserted a string into guest config file llc-colors = "9-13"
> > I got an error
> > [  457.517004] loop0: detected capacity change from 0 to 385840
> > Parsing config from /xen/red_config.cfg
> > /xen/red_config.cfg:26: config parsing error near `-colors': lexical
> error
> > warning: Config file looks like it contains Python code.
> > warning:  Arbitrary Python is no longer supported.
> > warning:  See https://wiki.xen.org/wiki/PythonInXlConfig <
> https://wiki.xen.org/wiki/PythonInXlConfig>
> > Failed to parse config: Invalid argument
> > So this is a question.
> > Is it possible to assign a color mode for the DomU by config file ?
> > If so, what string should I use?
> Please, always refer to the relevant documentation. In this case, for
> xl.cfg:
>
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890
>
> ~Michal
>
> >
> > Regards,
> > Oleg
> >
> > чт, 11 мая 2023 г. в 13:32, Oleg Nikitenko <oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com>>:
> >
> >     Hi Michal,
> >
> >     Thanks.
> >     This compilation previously had a name CONFIG_COLORING.
> >     It mixed me up.
> >
> >     Regards,
> >     Oleg
> >
> >     чт, 11 мая 2023 г. в 13:15, Michal Orzel <michal.orzel@amd.com
> <mailto:michal.orzel@amd.com>>:
> >
> >         Hi Oleg,
> >
> >         On 11/05/2023 12:02, Oleg Nikitenko wrote:
> >         >
> >         >
> >         >
> >         > Hello,
> >         >
> >         > Thanks Stefano.
> >         > Then the next question.
> >         > I cloned xen repo from xilinx site
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <
> https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>>
> >         > I managed to build a xlnx_rebase_4.17 branch in my environment.
> >         > I did it without coloring first. I did not find any color
> footprints at this branch.
> >         > I realized coloring is not in the xlnx_rebase_4.17 branch yet.
> >         This is not true. Cache coloring is in xlnx_rebase_4.17. Please
> see the docs:
> >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
> >
> >
> >         It describes the feature and documents the required properties.
> >
> >         ~Michal
> >
> >         >
> >         >
> >         > вт, 9 мая 2023 г. в 22:49, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
> >         >
> >         >     We test Xen Cache Coloring regularly on zcu102. Every
> Petalinux release
> >         >     (twice a year) is tested with cache coloring enabled. The
> last Petalinux
> >         >     release is 2023.1 and the kernel used is this:
> >         >
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>>
> >         >
> >         >
> >         >     On Tue, 9 May 2023, Oleg Nikitenko wrote:
> >         >     > Hello guys,
> >         >     >
> >         >     > I have a couple of more questions.
> >         >     > Have you ever run xen with the cache coloring at Zynq
> UltraScale+ MPSoC zcu102 xczu15eg ?
> >         >     > When did you run xen with the cache coloring last time ?
> >         >     > What kernel version did you use for Dom0 when you ran
> xen with the cache coloring last time ?
> >         >     >
> >         >     > Regards,
> >         >     > Oleg
> >         >     >
> >         >     > пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
> >         >     >       Hi Michal,
> >         >     >
> >         >     > Thanks.
> >         >     >
> >         >     > Regards,
> >         >     > Oleg
> >         >     >
> >         >     > пт, 5 мая 2023 г. в 11:34, Michal Orzel <
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
> >         >     >       Hi Oleg,
> >         >     >
> >         >     >       Replying, so that you do not need to wait for
> Stefano.
> >         >     >
> >         >     >       On 05/05/2023 10:28, Oleg Nikitenko wrote:
> >         >     >       >
> >         >     >       >
> >         >     >       >
> >         >     >       > Hello Stefano,
> >         >     >       >
> >         >     >       > I would like to try a xen cache color property
> from this repo  https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>>
> >         >     >       <https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git> <
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>>>
> >         >     >       > Could you tell whot branch I should use ?
> >         >     >       Cache coloring feature is not part of the upstream
> tree and it is still under review.
> >         >     >       You can only find it integrated in the Xilinx Xen
> tree.
> >         >     >
> >         >     >       ~Michal
> >         >     >
> >         >     >       >
> >         >     >       > Regards,
> >         >     >       > Oleg
> >         >     >       >
> >         >     >       > пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
> >         >     >       >
> >         >     >       >     I am familiar with the zcu102 but I don't
> know how you could possibly
> >         >     >       >     generate a SError.
> >         >     >       >
> >         >     >       >     I suggest to try to use ImageBuilder [1] to
> generate the boot
> >         >     >       >     configuration as a test because that is
> known to work well for zcu102.
> >         >     >       >
> >         >     >       >     [1]
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>>>
> >         >     >       >
> >         >     >       >
> >         >     >       >     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
> >         >     >       >     > Hello Stefano,
> >         >     >       >     >
> >         >     >       >     > Thanks for clarification.
> >         >     >       >     > We nighter use ImageBuilder nor uboot boot
> script.
> >         >     >       >     > A model is zcu102 compatible.
> >         >     >       >     >
> >         >     >       >     > Regards,
> >         >     >       >     > O.
> >         >     >       >     >
> >         >     >       >     > вт, 25 апр. 2023 г. в 21:21, Stefano
> Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
> >         >     >       >     >       This is interesting. Are you using
> Xilinx hardware by any chance? If so,
> >         >     >       >     >       which board?
> >         >     >       >     >
> >         >     >       >     >       Are you using ImageBuilder to
> generate your boot.scr boot script? If so,
> >         >     >       >     >       could you please post your
> ImageBuilder config file? If not, can you
> >         >     >       >     >       post the source of your uboot boot
> script?
> >         >     >       >     >
> >         >     >       >     >       SErrors are supposed to be related
> to a hardware failure of some kind.
> >         >     >       >     >       You are not supposed to be able to
> trigger an SError easily by
> >         >     >       >     >       "mistake". I have not seen SErrors
> due to wrong cache coloring
> >         >     >       >     >       configurations on any Xilinx board
> before.
> >         >     >       >     >
> >         >     >       >     >       The differences between Xen with and
> without cache coloring from a
> >         >     >       >     >       hardware perspective are:
> >         >     >       >     >
> >         >     >       >     >       - With cache coloring, the SMMU is
> enabled and does address translations
> >         >     >       >     >         even for dom0. Without cache
> coloring the SMMU could be disabled, and
> >         >     >       >     >         if enabled, the SMMU doesn't do
> any address translations for Dom0. If
> >         >     >       >     >         there is a hardware failure
> related to SMMU address translation it
> >         >     >       >     >         could only trigger with cache
> coloring. This would be my normal
> >         >     >       >     >         suggestion for you to explore, but
> the failure happens too early
> >         >     >       >     >         before any DMA-capable device is
> programmed. So I don't think this can
> >         >     >       >     >         be the issue.
> >         >     >       >     >
> >         >     >       >     >       - With cache coloring, the memory
> allocation is very different so you'll
> >         >     >       >     >         end up using different DDR regions
> for Dom0. So if your DDR is
> >         >     >       >     >         defective, you might only see a
> failure with cache coloring enabled
> >         >     >       >     >         because you end up using different
> regions.
> >         >     >       >     >
> >         >     >       >     >
> >         >     >       >     >       On Tue, 25 Apr 2023, Oleg Nikitenko
> wrote:
> >         >     >       >     >       > Hi Stefano,
> >         >     >       >     >       >
> >         >     >       >     >       > Thank you.
> >         >     >       >     >       > If I build xen without colors
> support there is not this error.
> >         >     >       >     >       > All the domains are booted well.
> >         >     >       >     >       > Hense it can not be a hardware
> issue.
> >         >     >       >     >       > This panic arrived during
> unpacking the rootfs.
> >         >     >       >     >       > Here I attached the boot log
> xen/Dom0 without color.
> >         >     >       >     >       > A highlighted strings printed
> exactly after the place where 1-st time panic arrived.
> >         >     >       >     >       >
> >         >     >       >     >       >  Xen 4.16.1-pre
> >         >     >       >     >       > (XEN) Xen version 4.16.1-pre
> (nole2390@(none)) (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y
> >         >     >       2023-04-21
> >         >     >       >     >       > (XEN) Latest ChangeSet: Wed Apr 19
> 12:56:14 2023 +0300 git:321687b231-dirty
> >         >     >       >     >       > (XEN) build-id:
> c1847258fdb1b79562fc710dda40008f96c0fde5
> >         >     >       >     >       > (XEN) Processor: 00000000410fd034:
> "ARM Limited", variant: 0x0, part 0xd03,rev 0x4
> >         >     >       >     >       > (XEN) 64-bit Execution:
> >         >     >       >     >       > (XEN)   Processor Features:
> 0000000000002222 0000000000000000
> >         >     >       >     >       > (XEN)     Exception Levels:
> EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
> >         >     >       >     >       > (XEN)     Extensions:
> FloatingPoint AdvancedSIMD
> >         >     >       >     >       > (XEN)   Debug Features:
> 0000000010305106 0000000000000000
> >         >     >       >     >       > (XEN)   Auxiliary Features:
> 0000000000000000 0000000000000000
> >         >     >       >     >       > (XEN)   Memory Model Features:
> 0000000000001122 0000000000000000
> >         >     >       >     >       > (XEN)   ISA Features:
>  0000000000011120 0000000000000000
> >         >     >       >     >       > (XEN) 32-bit Execution:
> >         >     >       >     >       > (XEN)   Processor Features:
> 0000000000000131:0000000000011011
> >         >     >       >     >       > (XEN)     Instruction Sets:
> AArch32 A32 Thumb Thumb-2 Jazelle
> >         >     >       >     >       > (XEN)     Extensions: GenericTimer
> Security
> >         >     >       >     >       > (XEN)   Debug Features:
> 0000000003010066
> >         >     >       >     >       > (XEN)   Auxiliary Features:
> 0000000000000000
> >         >     >       >     >       > (XEN)   Memory Model Features:
> 0000000010201105 0000000040000000
> >         >     >       >     >       > (XEN)
>  0000000001260000 0000000002102211
> >         >     >       >     >       > (XEN)   ISA Features:
> 0000000002101110 0000000013112111 0000000021232042
> >         >     >       >     >       > (XEN)
> 0000000001112131 0000000000011142 0000000000011121
> >         >     >       >     >       > (XEN) Using SMC Calling Convention
> v1.2
> >         >     >       >     >       > (XEN) Using PSCI v1.1
> >         >     >       >     >       > (XEN) SMP: Allowing 4 CPUs
> >         >     >       >     >       > (XEN) Generic Timer IRQ: phys=30
> hyp=26 virt=27 Freq: 100000 KHz
> >         >     >       >     >       > (XEN) GICv2 initialization:
> >         >     >       >     >       > (XEN)
> gic_dist_addr=00000000f9010000
> >         >     >       >     >       > (XEN)
> gic_cpu_addr=00000000f9020000
> >         >     >       >     >       > (XEN)
> gic_hyp_addr=00000000f9040000
> >         >     >       >     >       > (XEN)
> gic_vcpu_addr=00000000f9060000
> >         >     >       >     >       > (XEN)
> gic_maintenance_irq=25
> >         >     >       >     >       > (XEN) GICv2: Adjusting CPU
> interface base to 0xf902f000
> >         >     >       >     >       > (XEN) GICv2: 192 lines, 4 cpus,
> secure (IID 0200143b).
> >         >     >       >     >       > (XEN) Using scheduler: null
> Scheduler (null)
> >         >     >       >     >       > (XEN) Initializing null scheduler
> >         >     >       >     >       > (XEN) WARNING: This is
> experimental software in development.
> >         >     >       >     >       > (XEN) Use at your own risk.
> >         >     >       >     >       > (XEN) Allocated console ring of 32
> KiB.
> >         >     >       >     >       > (XEN) CPU0: Guest atomics will try
> 12 times before pausing the domain
> >         >     >       >     >       > (XEN) Bringing up CPU1
> >         >     >       >     >       > (XEN) CPU1: Guest atomics will try
> 13 times before pausing the domain
> >         >     >       >     >       > (XEN) CPU 1 booted.
> >         >     >       >     >       > (XEN) Bringing up CPU2
> >         >     >       >     >       > (XEN) CPU2: Guest atomics will try
> 13 times before pausing the domain
> >         >     >       >     >       > (XEN) CPU 2 booted.
> >         >     >       >     >       > (XEN) Bringing up CPU3
> >         >     >       >     >       > (XEN) CPU3: Guest atomics will try
> 13 times before pausing the domain
> >         >     >       >     >       > (XEN) Brought up 4 CPUs
> >         >     >       >     >       > (XEN) CPU 3 booted.
> >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000:
> probing hardware configuration...
> >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000:
> SMMUv2 with:
> >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000:
> stage 2 translation
> >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000:
> stream matching with 48 register groups, mask 0x7fff<2>smmu:
> >         >     >       /axi/smmu@fd800000: 16 context
> >         >     >       >     >       banks (0
> >         >     >       >     >       > stage-2 only)
> >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000:
> Stage-2: 48-bit IPA -> 48-bit PA
> >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000:
> registered 29 master devices
> >         >     >       >     >       > (XEN) I/O virtualisation enabled
> >         >     >       >     >       > (XEN)  - Dom0 mode: Relaxed
> >         >     >       >     >       > (XEN) P2M: 40-bit IPA with 40-bit
> PA and 8-bit VMID
> >         >     >       >     >       > (XEN) P2M: 3 levels with order-1
> root, VTCR 0x0000000080023558
> >         >     >       >     >       > (XEN) Scheduling granularity: cpu,
> 1 CPU per sched-resource
> >         >     >       >     >       > (XEN) alternatives: Patching with
> alt table 00000000002cc5c8 -> 00000000002ccb2c
> >         >     >       >     >       > (XEN) *** LOADING DOMAIN 0 ***
> >         >     >       >     >       > (XEN) Loading d0 kernel from boot
> module @ 0000000001000000
> >         >     >       >     >       > (XEN) Loading ramdisk from boot
> module @ 0000000002000000
> >         >     >       >     >       > (XEN) Allocating 1:1 mappings
> totalling 1600MB for dom0:
> >         >     >       >     >       > (XEN) BANK[0]
> 0x00000010000000-0x00000020000000 (256MB)
> >         >     >       >     >       > (XEN) BANK[1]
> 0x00000024000000-0x00000028000000 (64MB)
> >         >     >       >     >       > (XEN) BANK[2]
> 0x00000030000000-0x00000080000000 (1280MB)
> >         >     >       >     >       > (XEN) Grant table range:
> 0x00000000e00000-0x00000000e40000
> >         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000:
> d0: p2maddr 0x000000087bf94000
> >         >     >       >     >       > (XEN) Allocating PPI 16 for event
> channel interrupt
> >         >     >       >     >       > (XEN) Extended region 0:
> 0x81200000->0xa0000000
> >         >     >       >     >       > (XEN) Extended region 1:
> 0xb1200000->0xc0000000
> >         >     >       >     >       > (XEN) Extended region 2:
> 0xc8000000->0xe0000000
> >         >     >       >     >       > (XEN) Extended region 3:
> 0xf0000000->0xf9000000
> >         >     >       >     >       > (XEN) Extended region 4:
> 0x100000000->0x600000000
> >         >     >       >     >       > (XEN) Extended region 5:
> 0x880000000->0x8000000000
> >         >     >       >     >       > (XEN) Extended region 6:
> 0x8001000000->0x10000000000
> >         >     >       >     >       > (XEN) Loading zImage from
> 0000000001000000 to 0000000010000000-0000000010e41008
> >         >     >       >     >       > (XEN) Loading d0 initrd from
> 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
> >         >     >       >     >       > (XEN) Loading d0 DTB to
> 0x0000000013400000-0x000000001340cbdc
> >         >     >       >     >       > (XEN) Initial low memory virq
> threshold set at 0x4000 pages.
> >         >     >       >     >       > (XEN) Std. Loglevel: All
> >         >     >       >     >       > (XEN) Guest Loglevel: All
> >         >     >       >     >       > (XEN) *** Serial input to DOM0
> (type 'CTRL-a' three times to switch input)
> >         >     >       >     >       > (XEN) null.c:353: 0 <-- d0v0
> >         >     >       >     >       > (XEN) Freed 356kB init memory.
> >         >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC:
> 0x84000050
> >         >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC:
> 0x8600ff01
> >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word
> write 0x000000ffffffff to ICACTIVER4
> >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word
> write 0x000000ffffffff to ICACTIVER8
> >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word
> write 0x000000ffffffff to ICACTIVER12
> >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word
> write 0x000000ffffffff to ICACTIVER16
> >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word
> write 0x000000ffffffff to ICACTIVER20
> >         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word
> write 0x000000ffffffff to ICACTIVER0
> >         >     >       >     >       > [    0.000000] Booting Linux on
> physical CPU 0x0000000000 [0x410fd034]
> >         >     >       >     >       > [    0.000000] Linux version
> 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC)
> >         >     >       11.3.0, GNU ld (GNU
> >         >     >       >     >       Binutils)
> >         >     >       >     >       > 2.38.20220708) #1 SMP Tue Feb 21
> 05:47:54 UTC 2023
> >         >     >       >     >       > [    0.000000] Machine model: D14
> Viper Board - White Unit
> >         >     >       >     >       > [    0.000000] Xen 4.16 support
> found
> >         >     >       >     >       > [    0.000000] Zone ranges:
> >         >     >       >     >       > [    0.000000]   DMA      [mem
> 0x0000000010000000-0x000000007fffffff]
> >         >     >       >     >       > [    0.000000]   DMA32    empty
> >         >     >       >     >       > [    0.000000]   Normal   empty
> >         >     >       >     >       > [    0.000000] Movable zone start
> for each node
> >         >     >       >     >       > [    0.000000] Early memory node
> ranges
> >         >     >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000010000000-0x000000001fffffff]
> >         >     >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000022000000-0x0000000022147fff]
> >         >     >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000022200000-0x0000000022347fff]
> >         >     >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000024000000-0x0000000027ffffff]
> >         >     >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000030000000-0x000000007fffffff]
> >         >     >       >     >       > [    0.000000] Initmem setup node
> 0 [mem 0x0000000010000000-0x000000007fffffff]
> >         >     >       >     >       > [    0.000000] On node 0, zone
> DMA: 8192 pages in unavailable ranges
> >         >     >       >     >       > [    0.000000] On node 0, zone
> DMA: 184 pages in unavailable ranges
> >         >     >       >     >       > [    0.000000] On node 0, zone
> DMA: 7352 pages in unavailable ranges
> >         >     >       >     >       > [    0.000000] cma: Reserved 256
> MiB at 0x000000006e000000
> >         >     >       >     >       > [    0.000000] psci: probing for
> conduit method from DT.
> >         >     >       >     >       > [    0.000000] psci: PSCIv1.1
> detected in firmware.
> >         >     >       >     >       > [    0.000000] psci: Using
> standard PSCI v0.2 function IDs
> >         >     >       >     >       > [    0.000000] psci: Trusted OS
> migration not required
> >         >     >       >     >       > [    0.000000] psci: SMC Calling
> Convention v1.1
> >         >     >       >     >       > [    0.000000] percpu: Embedded 16
> pages/cpu s32792 r0 d32744 u65536
> >         >     >       >     >       > [    0.000000] Detected VIPT
> I-cache on CPU0
> >         >     >       >     >       > [    0.000000] CPU features:
> kernel page table isolation forced ON by KASLR
> >         >     >       >     >       > [    0.000000] CPU features:
> detected: Kernel page table isolation (KPTI)
> >         >     >       >     >       > [    0.000000] Built 1 zonelists,
> mobility grouping on.  Total pages: 403845
> >         >     >       >     >       > [    0.000000] Kernel command
> line: console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused fips=1
> >         >     >       root=/dev/ram0
> >         >     >       >     >       maxcpus=2
> >         >     >       >     >       > [    0.000000] Unknown kernel
> command line parameters "earlyprintk=xen fips=1", will be passed to user
> >         >     >       space.
> >         >     >       >     >       > [    0.000000] Dentry cache hash
> table entries: 262144 (order: 9, 2097152 bytes, linear)
> >         >     >       >     >       > [    0.000000] Inode-cache hash
> table entries: 131072 (order: 8, 1048576 bytes, linear)
> >         >     >       >     >       > [    0.000000] mem auto-init:
> stack:off, heap alloc:on, heap free:on
> >         >     >       >     >       > [    0.000000] mem auto-init:
> clearing system memory may take some time...
> >         >     >       >     >       > [    0.000000] Memory:
> 1121936K/1641024K available (9728K kernel code, 836K rwdata, 2396K rodata,
> 1536K
> >         >     >       init, 262K bss,
> >         >     >       >     >       256944K reserved,
> >         >     >       >     >       > 262144K cma-reserved)
> >         >     >       >     >       > [    0.000000] SLUB: HWalign=64,
> Order=0-3, MinObjects=0, CPUs=2, Nodes=1
> >         >     >       >     >       > [    0.000000] rcu: Hierarchical
> RCU implementation.
> >         >     >       >     >       > [    0.000000] rcu: RCU event
> tracing is enabled.
> >         >     >       >     >       > [    0.000000] rcu: RCU
> restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
> >         >     >       >     >       > [    0.000000] rcu: RCU calculated
> value of scheduler-enlistment delay is 25 jiffies.
> >         >     >       >     >       > [    0.000000] rcu: Adjusting
> geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
> >         >     >       >     >       > [    0.000000] NR_IRQS: 64,
> nr_irqs: 64, preallocated irqs: 0
> >         >     >       >     >       > [    0.000000] Root IRQ handler:
> gic_handle_irq
> >         >     >       >     >       > [    0.000000] arch_timer: cp15
> timer(s) running at 100.00MHz (virt).
> >         >     >       >     >       > [    0.000000] clocksource:
> arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0,
> >         >     >       max_idle_ns: 440795205315 ns
> >         >     >       >     >       > [    0.000000] sched_clock: 56
> bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
> >         >     >       >     >       > [    0.000258] Console: colour
> dummy device 80x25
> >         >     >       >     >       > [    0.310231] printk: console
> [hvc0] enabled
> >         >     >       >     >       > [    0.314403] Calibrating delay
> loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS
> >         >     >       (lpj=400000)
> >         >     >       >     >       > [    0.324851] pid_max: default:
> 32768 minimum: 301
> >         >     >       >     >       > [    0.329706] LSM: Security
> Framework initializing
> >         >     >       >     >       > [    0.334204] Yama: becoming
> mindful.
> >         >     >       >     >       > [    0.337865] Mount-cache hash
> table entries: 4096 (order: 3, 32768 bytes, linear)
> >         >     >       >     >       > [    0.345180] Mountpoint-cache
> hash table entries: 4096 (order: 3, 32768 bytes, linear)
> >         >     >       >     >       > [    0.354743] xen:grant_table:
> Grant tables using version 1 layout
> >         >     >       >     >       > [    0.359132] Grant table
> initialized
> >         >     >       >     >       > [    0.362664] xen:events: Using
> FIFO-based ABI
> >         >     >       >     >       > [    0.366993] Xen: initializing
> cpu0
> >         >     >       >     >       > [    0.370515] rcu: Hierarchical
> SRCU implementation.
> >         >     >       >     >       > [    0.375930] smp: Bringing up
> secondary CPUs ...
> >         >     >       >     >       > (XEN) null.c:353: 1 <-- d0v1
> >         >     >       >     >       > (XEN) d0v1: vGICD: unhandled word
> write 0x000000ffffffff to ICACTIVER0
> >         >     >       >     >       > [    0.382549] Detected VIPT
> I-cache on CPU1
> >         >     >       >     >       > [    0.388712] Xen: initializing
> cpu1
> >         >     >       >     >       > [    0.388743] CPU1: Booted
> secondary processor 0x0000000001 [0x410fd034]
> >         >     >       >     >       > [    0.388829] smp: Brought up 1
> node, 2 CPUs
> >         >     >       >     >       > [    0.406941] SMP: Total of 2
> processors activated.
> >         >     >       >     >       > [    0.411698] CPU features:
> detected: 32-bit EL0 Support
> >         >     >       >     >       > [    0.416888] CPU features:
> detected: CRC32 instructions
> >         >     >       >     >       > [    0.422121] CPU: All CPU(s)
> started at EL1
> >         >     >       >     >       > [    0.426248] alternatives:
> patching kernel code
> >         >     >       >     >       > [    0.431424] devtmpfs:
> initialized
> >         >     >       >     >       > [    0.441454] KASLR enabled
> >         >     >       >     >       > [    0.441602] clocksource:
> jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns:
> >         >     >       7645041785100000 ns
> >         >     >       >     >       > [    0.448321] futex hash table
> entries: 512 (order: 3, 32768 bytes, linear)
> >         >     >       >     >       > [    0.496183] NET: Registered
> PF_NETLINK/PF_ROUTE protocol family
> >         >     >       >     >       > [    0.498277] DMA: preallocated
> 256 KiB GFP_KERNEL pool for atomic allocations
> >         >     >       >     >       > [    0.503772] DMA: preallocated
> 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
> >         >     >       >     >       > [    0.511610] DMA: preallocated
> 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
> >         >     >       >     >       > [    0.519478] audit: initializing
> netlink subsys (disabled)
> >         >     >       >     >       > [    0.524985] audit: type=2000
> audit(0.336:1): state=initialized audit_enabled=0 res=1
> >         >     >       >     >       > [    0.529169] thermal_sys:
> Registered thermal governor 'step_wise'
> >         >     >       >     >       > [    0.533023] hw-breakpoint:
> found 6 breakpoint and 4 watchpoint registers.
> >         >     >       >     >       > [    0.545608] ASID allocator
> initialised with 32768 entries
> >         >     >       >     >       > [    0.551030] xen:swiotlb_xen:
> Warning: only able to allocate 4 MB for software IO TLB
> >         >     >       >     >       > [    0.559332] software IO TLB:
> mapped [mem 0x0000000011800000-0x0000000011c00000] (4MB)
> >         >     >       >     >       > [    0.583565] HugeTLB registered
> 1.00 GiB page size, pre-allocated 0 pages
> >         >     >       >     >       > [    0.584721] HugeTLB registered
> 32.0 MiB page size, pre-allocated 0 pages
> >         >     >       >     >       > [    0.591478] HugeTLB registered
> 2.00 MiB page size, pre-allocated 0 pages
> >         >     >       >     >       > [    0.598225] HugeTLB registered
> 64.0 KiB page size, pre-allocated 0 pages
> >         >     >       >     >       > [    0.636520] DRBG: Continuing
> without Jitter RNG
> >         >     >       >     >       > [    0.737187] raid6: neonx8
> gen()  2143 MB/s
> >         >     >       >     >       > [    0.805294] raid6: neonx8
> xor()  1589 MB/s
> >         >     >       >     >       > [    0.873406] raid6: neonx4
> gen()  2177 MB/s
> >         >     >       >     >       > [    0.941499] raid6: neonx4
> xor()  1556 MB/s
> >         >     >       >     >       > [    1.009612] raid6: neonx2
> gen()  2072 MB/s
> >         >     >       >     >       > [    1.077715] raid6: neonx2
> xor()  1430 MB/s
> >         >     >       >     >       > [    1.145834] raid6: neonx1
> gen()  1769 MB/s
> >         >     >       >     >       > [    1.213935] raid6: neonx1
> xor()  1214 MB/s
> >         >     >       >     >       > [    1.282046] raid6: int64x8
>  gen()  1366 MB/s
> >         >     >       >     >       > [    1.350132] raid6: int64x8
>  xor()   773 MB/s
> >         >     >       >     >       > [    1.418259] raid6: int64x4
>  gen()  1602 MB/s
> >         >     >       >     >       > [    1.486349] raid6: int64x4
>  xor()   851 MB/s
> >         >     >       >     >       > [    1.554464] raid6: int64x2
>  gen()  1396 MB/s
> >         >     >       >     >       > [    1.622561] raid6: int64x2
>  xor()   744 MB/s
> >         >     >       >     >       > [    1.690687] raid6: int64x1
>  gen()  1033 MB/s
> >         >     >       >     >       > [    1.758770] raid6: int64x1
>  xor()   517 MB/s
> >         >     >       >     >       > [    1.758809] raid6: using
> algorithm neonx4 gen() 2177 MB/s
> >         >     >       >     >       > [    1.762941] raid6: .... xor()
> 1556 MB/s, rmw enabled
> >         >     >       >     >       > [    1.767957] raid6: using neon
> recovery algorithm
> >         >     >       >     >       > [    1.772824] xen:balloon:
> Initialising balloon driver
> >         >     >       >     >       > [    1.778021] iommu: Default
> domain type: Translated
> >         >     >       >     >       > [    1.782584] iommu: DMA domain
> TLB invalidation policy: strict mode
> >         >     >       >     >       > [    1.789149] SCSI subsystem
> initialized
> >         >     >       >     >       > [    1.792820] usbcore: registered
> new interface driver usbfs
> >         >     >       >     >       > [    1.798254] usbcore: registered
> new interface driver hub
> >         >     >       >     >       > [    1.803626] usbcore: registered
> new device driver usb
> >         >     >       >     >       > [    1.808761] pps_core: LinuxPPS
> API ver. 1 registered
> >         >     >       >     >       > [    1.813716] pps_core: Software
> ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it
> <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:
> giometti@linux.it>>
> >         >     >       <mailto:giometti@linux.it <mailto:
> giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>>>
> >         >     >       >     >       > [    1.822903] PTP clock support
> registered
> >         >     >       >     >       > [    1.826893] EDAC MC: Ver: 3.0.0
> >         >     >       >     >       > [    1.830375] zynqmp-ipi-mbox
> mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
> >         >     >       >     >       > [    1.838863] zynqmp-ipi-mbox
> mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX channels.
> >         >     >       >     >       > [    1.847356] zynqmp-ipi-mbox
> mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX channels.
> >         >     >       >     >       > [    1.855907] FPGA manager
> framework
> >         >     >       >     >       > [    1.859952] clocksource:
> Switched to clocksource arch_sys_counter
> >         >     >       >     >       > [    1.871712] NET: Registered
> PF_INET protocol family
> >         >     >       >     >       > [    1.871838] IP idents hash
> table entries: 32768 (order: 6, 262144 bytes, linear)
> >         >     >       >     >       > [    1.879392]
> tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes,
> linear)
> >         >     >       >     >       > [    1.887078] Table-perturb hash
> table entries: 65536 (order: 6, 262144 bytes, linear)
> >         >     >       >     >       > [    1.894846] TCP established
> hash table entries: 16384 (order: 5, 131072 bytes, linear)
> >         >     >       >     >       > [    1.902900] TCP bind hash table
> entries: 16384 (order: 6, 262144 bytes, linear)
> >         >     >       >     >       > [    1.910350] TCP: Hash tables
> configured (established 16384 bind 16384)
> >         >     >       >     >       > [    1.916778] UDP hash table
> entries: 1024 (order: 3, 32768 bytes, linear)
> >         >     >       >     >       > [    1.923509] UDP-Lite hash table
> entries: 1024 (order: 3, 32768 bytes, linear)
> >         >     >       >     >       > [    1.930759] NET: Registered
> PF_UNIX/PF_LOCAL protocol family
> >         >     >       >     >       > [    1.936834] RPC: Registered
> named UNIX socket transport module.
> >         >     >       >     >       > [    1.942342] RPC: Registered udp
> transport module.
> >         >     >       >     >       > [    1.947088] RPC: Registered tcp
> transport module.
> >         >     >       >     >       > [    1.951843] RPC: Registered tcp
> NFSv4.1 backchannel transport module.
> >         >     >       >     >       > [    1.958334] PCI: CLS 0 bytes,
> default 64
> >         >     >       >     >       > [    1.962709] Trying to unpack
> rootfs image as initramfs...
> >         >     >       >     >       > [    1.977090] workingset:
> timestamp_bits=62 max_order=19 bucket_order=0
> >         >     >       >     >       > [    1.982863] Installing knfsd
> (copyright (C) 1996 okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:
> okir@monad.swb.de <mailto:okir@monad.swb.de>> <mailto:okir@monad.swb.de
> <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:
> okir@monad.swb.de>>>).
> >         >     >       >     >       > [    2.021045] NET: Registered
> PF_ALG protocol family
> >         >     >       >     >       > [    2.021122] xor: measuring
> software checksum speed
> >         >     >       >     >       > [    2.029347]    8regs
> :  2366 MB/sec
> >         >     >       >     >       > [    2.033081]    32regs
>  :  2802 MB/sec
> >         >     >       >     >       > [    2.038223]    arm64_neon
>  :  2320 MB/sec
> >         >     >       >     >       > [    2.038385] xor: using
> function: 32regs (2802 MB/sec)
> >         >     >       >     >       > [    2.043614] Block layer SCSI
> generic (bsg) driver version 0.4 loaded (major 247)
> >         >     >       >     >       > [    2.050959] io scheduler
> mq-deadline registered
> >         >     >       >     >       > [    2.055521] io scheduler kyber
> registered
> >         >     >       >     >       > [    2.068227] xen:xen_evtchn:
> Event-channel device installed
> >         >     >       >     >       > [    2.069281] Serial: 8250/16550
> driver, 4 ports, IRQ sharing disabled
> >         >     >       >     >       > [    2.076190] cacheinfo: Unable
> to detect cache hierarchy for CPU 0
> >         >     >       >     >       > [    2.085548] brd: module loaded
> >         >     >       >     >       > [    2.089290] loop: module loaded
> >         >     >       >     >       > [    2.089341] Invalid max_queues
> (4), will use default max: 2.
> >         >     >       >     >       > [    2.094565] tun: Universal
> TUN/TAP device driver, 1.6
> >         >     >       >     >       > [    2.098655] xen_netfront:
> Initialising Xen virtual ethernet driver
> >         >     >       >     >       > [    2.104156] usbcore: registered
> new interface driver rtl8150
> >         >     >       >     >       > [    2.109813] usbcore: registered
> new interface driver r8152
> >         >     >       >     >       > [    2.115367] usbcore: registered
> new interface driver asix
> >         >     >       >     >       > [    2.120794] usbcore: registered
> new interface driver ax88179_178a
> >         >     >       >     >       > [    2.126934] usbcore: registered
> new interface driver cdc_ether
> >         >     >       >     >       > [    2.132816] usbcore: registered
> new interface driver cdc_eem
> >         >     >       >     >       > [    2.138527] usbcore: registered
> new interface driver net1080
> >         >     >       >     >       > [    2.144256] usbcore: registered
> new interface driver cdc_subset
> >         >     >       >     >       > [    2.150205] usbcore: registered
> new interface driver zaurus
> >         >     >       >     >       > [    2.155837] usbcore: registered
> new interface driver cdc_ncm
> >         >     >       >     >       > [    2.161550] usbcore: registered
> new interface driver r8153_ecm
> >         >     >       >     >       > [    2.168240] usbcore: registered
> new interface driver cdc_acm
> >         >     >       >     >       > [    2.173109] cdc_acm: USB
> Abstract Control Model driver for USB modems and ISDN adapters
> >         >     >       >     >       > [    2.181358] usbcore: registered
> new interface driver uas
> >         >     >       >     >       > [    2.186547] usbcore: registered
> new interface driver usb-storage
> >         >     >       >     >       > [    2.192643] usbcore: registered
> new interface driver ftdi_sio
> >         >     >       >     >       > [    2.198384] usbserial: USB
> Serial support registered for FTDI USB Serial Device
> >         >     >       >     >       > [    2.206118] udc-core: couldn't
> find an available UDC - added [g_mass_storage] to list of pending
> >         >     >       drivers
> >         >     >       >     >       > [    2.215332] i2c_dev: i2c /dev
> entries driver
> >         >     >       >     >       > [    2.220467] xen_wdt xen_wdt:
> initialized (timeout=60s, nowayout=0)
> >         >     >       >     >       > [    2.225923] device-mapper:
> uevent: version 1.0.3
> >         >     >       >     >       > [    2.230668] device-mapper:
> ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com <mailto:
> dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com>>
> >         >     >       <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:
> dm-devel@redhat.com>>>
> >         >     >       >     >       > [    2.239315] EDAC MC0: Giving
> out device to module 1 controller synps_ddr_controller: DEV synps_edac
> >         >     >       (INTERRUPT)
> >         >     >       >     >       > [    2.249405] EDAC DEVICE0:
> Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV
> >         >     >       >     >       ff960000.memory-controller
> (INTERRUPT)
> >         >     >       >     >       > [    2.261719] sdhci: Secure
> Digital Host Controller Interface driver
> >         >     >       >     >       > [    2.267487] sdhci: Copyright(c)
> Pierre Ossman
> >         >     >       >     >       > [    2.271890] sdhci-pltfm: SDHCI
> platform and OF driver helper
> >         >     >       >     >       > [    2.278157] ledtrig-cpu:
> registered to indicate activity on CPUs
> >         >     >       >     >       > [    2.283816]
> zynqmp_firmware_probe Platform Management API v1.1
> >         >     >       >     >       > [    2.289554]
> zynqmp_firmware_probe Trustzone version v1.0
> >         >     >       >     >       > [    2.327875] securefw securefw:
> securefw probed
> >         >     >       >     >       > [    2.328324] alg: No test for
> xilinx-zynqmp-aes (zynqmp-aes)
> >         >     >       >     >       > [    2.332563] zynqmp_aes
> firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
> >         >     >       >     >       > [    2.341183] alg: No test for
> xilinx-zynqmp-rsa (zynqmp-rsa)
> >         >     >       >     >       > [    2.347667] remoteproc
> remoteproc0: ff9a0000.rf5ss:r5f_0 is available
> >         >     >       >     >       > [    2.353003] remoteproc
> remoteproc1: ff9a0000.rf5ss:r5f_1 is available
> >         >     >       >     >       > [    2.362605] fpga_manager fpga0:
> Xilinx ZynqMP FPGA Manager registered
> >         >     >       >     >       > [    2.366540] viper-xen-proxy
> viper-xen-proxy: Viper Xen Proxy registered
> >         >     >       >     >       > [    2.372525] viper-vdpp
> a4000000.vdpp: Device Tree Probing
> >         >     >       >     >       > [    2.377778] viper-vdpp
> a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >         >     >       >     >       > [    2.386432] viper-vdpp
> a4000000.vdpp: Unable to register tamper handler. Retrying...
> >         >     >       >     >       > [    2.394094] viper-vdpp-net
> a5000000.vdpp_net: Device Tree Probing
> >         >     >       >     >       > [    2.399854] viper-vdpp-net
> a5000000.vdpp_net: Device registered
> >         >     >       >     >       > [    2.405931] viper-vdpp-stat
> a8000000.vdpp_stat: Device Tree Probing
> >         >     >       >     >       > [    2.412037] viper-vdpp-stat
> a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event Count: 32
> >         >     >       >     >       > [    2.420856] default preset
> >         >     >       >     >       > [    2.423797] viper-vdpp-stat
> a8000000.vdpp_stat: Device registered
> >         >     >       >     >       > [    2.430054] viper-vdpp-rng
> ac000000.vdpp_rng: Device Tree Probing
> >         >     >       >     >       > [    2.435948] viper-vdpp-rng
> ac000000.vdpp_rng: Device registered
> >         >     >       >     >       > [    2.441976] vmcu driver init
> >         >     >       >     >       > [    2.444922] VMCU: : (240:0)
> registered
> >         >     >       >     >       > [    2.444956] In K81 Updater init
> >         >     >       >     >       > [    2.449003] pktgen: Packet
> Generator for packet performance testing. Version: 2.75
> >         >     >       >     >       > [    2.468833] Initializing XFRM
> netlink socket
> >         >     >       >     >       > [    2.468902] NET: Registered
> PF_PACKET protocol family
> >         >     >       >     >       > [    2.472729] Bridge firewalling
> registered
> >         >     >       >     >       > [    2.476785] 8021q: 802.1Q VLAN
> Support v1.8
> >         >     >       >     >       > [    2.481341] registered
> taskstats version 1
> >         >     >       >     >       > [    2.486394] Btrfs loaded,
> crc32c=crc32c-generic, zoned=no, fsverity=no
> >         >     >       >     >       > [    2.503145] ff010000.serial:
> ttyPS1 at MMIO 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
> >         >     >       >     >       > [    2.507103] of-fpga-region
> fpga-full: FPGA Region probed
> >         >     >       >     >       > [    2.512986] xilinx-zynqmp-dma
> fd500000.dma-controller: ZynqMP DMA driver Probe success
> >         >     >       >     >       > [    2.520267] xilinx-zynqmp-dma
> fd510000.dma-controller: ZynqMP DMA driver Probe success
> >         >     >       >     >       > [    2.528239] xilinx-zynqmp-dma
> fd520000.dma-controller: ZynqMP DMA driver Probe success
> >         >     >       >     >       > [    2.536152] xilinx-zynqmp-dma
> fd530000.dma-controller: ZynqMP DMA driver Probe success
> >         >     >       >     >       > [    2.544153] xilinx-zynqmp-dma
> fd540000.dma-controller: ZynqMP DMA driver Probe success
> >         >     >       >     >       > [    2.552127] xilinx-zynqmp-dma
> fd550000.dma-controller: ZynqMP DMA driver Probe success
> >         >     >       >     >       > [    2.560178] xilinx-zynqmp-dma
> ffa80000.dma-controller: ZynqMP DMA driver Probe success
> >         >     >       >     >       > [    2.567987] xilinx-zynqmp-dma
> ffa90000.dma-controller: ZynqMP DMA driver Probe success
> >         >     >       >     >       > [    2.576018] xilinx-zynqmp-dma
> ffaa0000.dma-controller: ZynqMP DMA driver Probe success
> >         >     >       >     >       > [    2.583889] xilinx-zynqmp-dma
> ffab0000.dma-controller: ZynqMP DMA driver Probe success
> >         >     >       >     >       > [    2.946379] spi-nor spi0.0:
> mt25qu512a (131072 Kbytes)
> >         >     >       >     >       > [    2.946467] 2 fixed-partitions
> partitions found on MTD device spi0.0
> >         >     >       >     >       > [    2.952393] Creating 2 MTD
> partitions on "spi0.0":
> >         >     >       >     >       > [    2.957231]
> 0x000004000000-0x000008000000 : "bank A"
> >         >     >       >     >       > [    2.963332]
> 0x000000000000-0x000004000000 : "bank B"
> >         >     >       >     >       > [    2.968694] macb
> ff0b0000.ethernet: Not enabling partial store and forward
> >         >     >       >     >       > [    2.975333] macb
> ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25
> >         >     >       (18:41:fe:0f:ff:02)
> >         >     >       >     >       > [    2.984472] macb
> ff0c0000.ethernet: Not enabling partial store and forward
> >         >     >       >     >       > [    2.992144] macb
> ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26
> >         >     >       (18:41:fe:0f:ff:03)
> >         >     >       >     >       > [    3.001043] viper_enet
> viper_enet: Viper power GPIOs initialised
> >         >     >       >     >       > [    3.007313] viper_enet
> viper_enet vnet0 (uninitialized): Validate interface QSGMII
> >         >     >       >     >       > [    3.014914] viper_enet
> viper_enet vnet1 (uninitialized): Validate interface QSGMII
> >         >     >       >     >       > [    3.022138] viper_enet
> viper_enet vnet1 (uninitialized): Validate interface type 18
> >         >     >       >     >       > [    3.030274] viper_enet
> viper_enet vnet2 (uninitialized): Validate interface QSGMII
> >         >     >       >     >       > [    3.037785] viper_enet
> viper_enet vnet3 (uninitialized): Validate interface QSGMII
> >         >     >       >     >       > [    3.045301] viper_enet
> viper_enet: Viper enet registered
> >         >     >       >     >       > [    3.050958] xilinx-axipmon
> ffa00000.perf-monitor: Probed Xilinx APM
> >         >     >       >     >       > [    3.057135] xilinx-axipmon
> fd0b0000.perf-monitor: Probed Xilinx APM
> >         >     >       >     >       > [    3.063538] xilinx-axipmon
> fd490000.perf-monitor: Probed Xilinx APM
> >         >     >       >     >       > [    3.069920] xilinx-axipmon
> ffa10000.perf-monitor: Probed Xilinx APM
> >         >     >       >     >       > [    3.097729] si70xx: probe of
> 2-0040 failed with error -5
> >         >     >       >     >       > [    3.098042] cdns-wdt
> fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
> >         >     >       >     >       > [    3.105111] cdns-wdt
> ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
> >         >     >       >     >       > [    3.112457] viper-tamper
> viper-tamper: Device registered
> >         >     >       >     >       > [    3.117593] active_bank
> active_bank: boot bank: 1
> >         >     >       >     >       > [    3.122184] active_bank
> active_bank: boot mode: (0x02) qspi32
> >         >     >       >     >       > [    3.128247] viper-vdpp
> a4000000.vdpp: Device Tree Probing
> >         >     >       >     >       > [    3.133439] viper-vdpp
> a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >         >     >       >     >       > [    3.142151] viper-vdpp
> a4000000.vdpp: Tamper handler registered
> >         >     >       >     >       > [    3.147438] viper-vdpp
> a4000000.vdpp: Device registered
> >         >     >       >     >       > [    3.153007] lpc55_l2 spi1.0:
> registered handler for protocol 0
> >         >     >       >     >       > [    3.158582] lpc55_user
> lpc55_user: The major number for your device is 236
> >         >     >       >     >       > [    3.165976] lpc55_l2 spi1.0:
> registered handler for protocol 1
> >         >     >       >     >       > [    3.181999] rtc-lpc55
> rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >         >     >       >     >       > [    3.182856] rtc-lpc55
> rtc_lpc55: registered as rtc0
> >         >     >       >     >       > [    3.188656] lpc55_l2 spi1.0:
> (2) mcu still not ready?
> >         >     >       >     >       > [    3.193744] lpc55_l2 spi1.0:
> (3) mcu still not ready?
> >         >     >       >     >       > [    3.198848] lpc55_l2 spi1.0:
> (4) mcu still not ready?
> >         >     >       >     >       > [    3.202932] mmc0: SDHCI
> controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
> >         >     >       >     >       > [    3.210689] lpc55_l2 spi1.0:
> (5) mcu still not ready?
> >         >     >       >     >       > [    3.215694] lpc55_l2 spi1.0: rx
> error: -110
> >         >     >       >     >       > [    3.284438] mmc0: new HS200 MMC
> card at address 0001
> >         >     >       >     >       > [    3.285179] mmcblk0: mmc0:0001
> SEM16G 14.6 GiB
> >         >     >       >     >       > [    3.291784]  mmcblk0: p1 p2 p3
> p4 p5 p6 p7 p8
> >         >     >       >     >       > [    3.293915] mmcblk0boot0:
> mmc0:0001 SEM16G 4.00 MiB
> >         >     >       >     >       > [    3.299054] mmcblk0boot1:
> mmc0:0001 SEM16G 4.00 MiB
> >         >     >       >     >       > [    3.303905] mmcblk0rpmb:
> mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
> >         >     >       >     >       > [    3.582676] rtc-lpc55
> rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >         >     >       >     >       > [    3.583332] rtc-lpc55
> rtc_lpc55: hctosys: unable to read the hardware clock
> >         >     >       >     >       > [    3.591252] cdns-i2c
> ff020000.i2c: recovery information complete
> >         >     >       >     >       > [    3.597085] at24 0-0050: supply
> vcc not found, using dummy regulator
> >         >     >       >     >       > [    3.603011] lpc55_l2 spi1.0:
> (2) mcu still not ready?
> >         >     >       >     >       > [    3.608093] at24 0-0050: 256
> byte spd EEPROM, read-only
> >         >     >       >     >       > [    3.613620] lpc55_l2 spi1.0:
> (3) mcu still not ready?
> >         >     >       >     >       > [    3.619362] lpc55_l2 spi1.0:
> (4) mcu still not ready?
> >         >     >       >     >       > [    3.624224] rtc-rv3028 0-0052:
> registered as rtc1
> >         >     >       >     >       > [    3.628343] lpc55_l2 spi1.0:
> (5) mcu still not ready?
> >         >     >       >     >       > [    3.633253] lpc55_l2 spi1.0: rx
> error: -110
> >         >     >       >     >       > [    3.639104] k81_bootloader
> 0-0010: probe
> >         >     >       >     >       > [    3.641628] VMCU: : (235:0)
> registered
> >         >     >       >     >       > [    3.641635] k81_bootloader
> 0-0010: probe completed
> >         >     >       >     >       > [    3.668346] cdns-i2c
> ff020000.i2c: 400 kHz mmio ff020000 irq 28
> >         >     >       >     >       > [    3.669154] cdns-i2c
> ff030000.i2c: recovery information complete
> >         >     >       >     >       > [    3.675412] lm75 1-0048: supply
> vs not found, using dummy regulator
> >         >     >       >     >       > [    3.682920] lm75 1-0048:
> hwmon1: sensor 'tmp112'
> >         >     >       >     >       > [    3.686548] i2c i2c-1: Added
> multiplexed i2c bus 3
> >         >     >       >     >       > [    3.690795] i2c i2c-1: Added
> multiplexed i2c bus 4
> >         >     >       >     >       > [    3.695629] i2c i2c-1: Added
> multiplexed i2c bus 5
> >         >     >       >     >       > [    3.700492] i2c i2c-1: Added
> multiplexed i2c bus 6
> >         >     >       >     >       > [    3.705157] pca954x 1-0070:
> registered 4 multiplexed busses for I2C switch pca9546
> >         >     >       >     >       > [    3.713049] at24 1-0054: supply
> vcc not found, using dummy regulator
> >         >     >       >     >       > [    3.720067] at24 1-0054: 1024
> byte 24c08 EEPROM, read-only
> >         >     >       >     >       > [    3.724761] cdns-i2c
> ff030000.i2c: 100 kHz mmio ff030000 irq 29
> >         >     >       >     >       > [    3.731272] sfp
> viper_enet:sfp-eth1: Host maximum power 2.0W
> >         >     >       >     >       > [    3.737549]
> sfp_register_socket: got sfp_bus
> >         >     >       >     >       > [    3.740709]
> sfp_register_socket: register sfp_bus
> >         >     >       >     >       > [    3.745459] sfp_register_bus:
> ops ok!
> >         >     >       >     >       > [    3.749179] sfp_register_bus:
> Try to attach
> >         >     >       >     >       > [    3.753419] sfp_register_bus:
> Attach succeeded
> >         >     >       >     >       > [    3.757914] sfp_register_bus:
> upstream ops attach
> >         >     >       >     >       > [    3.762677] sfp_register_bus:
> Bus registered
> >         >     >       >     >       > [    3.766999]
> sfp_register_socket: register sfp_bus succeeded
> >         >     >       >     >       > [    3.775870] of_cfs_init
> >         >     >       >     >       > [    3.776000] of_cfs_init: OK
> >         >     >       >     >       > [    3.778211] clk: Not disabling
> unused clocks
> >         >     >       >     >       > [   11.278477] Freeing initrd
> memory: 206056K
> >         >     >       >     >       > [   11.279406] Freeing unused
> kernel memory: 1536K
> >         >     >       >     >       > [   11.314006] Checked W+X
> mappings: passed, no W+X pages found
> >         >     >       >     >       > [   11.314142] Run /init as init
> process
> >         >     >       >     >       > INIT: version 3.01 booting
> >         >     >       >     >       > fsck (busybox 1.35.0)
> >         >     >       >     >       > /dev/mmcblk0p1: clean, 12/102400
> files, 238162/409600 blocks
> >         >     >       >     >       > /dev/mmcblk0p2: clean, 12/102400
> files, 171972/409600 blocks
> >         >     >       >     >       > /dev/mmcblk0p3 was not cleanly
> unmounted, check forced.
> >         >     >       >     >       > /dev/mmcblk0p3: 20/4096 files
> (0.0% non-contiguous), 663/16384 blocks
> >         >     >       >     >       > [   11.553073] EXT4-fs
> (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode:
> >         >     >       disabled.
> >         >     >       >     >       > Starting random number generator
> daemon.
> >         >     >       >     >       > [   11.580662] random: crng init
> done
> >         >     >       >     >       > Starting udev
> >         >     >       >     >       > [   11.613159] udevd[142]:
> starting version 3.2.10
> >         >     >       >     >       > [   11.620385] udevd[143]:
> starting eudev-3.2.10
> >         >     >       >     >       > [   11.704481] macb
> ff0b0000.ethernet control_red: renamed from eth0
> >         >     >       >     >       > [   11.720264] macb
> ff0c0000.ethernet control_black: renamed from eth1
> >         >     >       >     >       > [   12.063396]
> ip_local_port_range: prefer different parity for start/end values.
> >         >     >       >     >       > [   12.084801] rtc-lpc55
> rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >         >     >       >     >       > hwclock: RTC_RD_TIME: Invalid
> exchange
> >         >     >       >     >       > Mon Feb 27 08:40:53 UTC 2023
> >         >     >       >     >       > [   12.115309] rtc-lpc55
> rtc_lpc55: lpc55_rtc_set_time: bad result
> >         >     >       >     >       > hwclock: RTC_SET_TIME: Invalid
> exchange
> >         >     >       >     >       > [   12.131027] rtc-lpc55
> rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >         >     >       >     >       > Starting mcud
> >         >     >       >     >       > INIT: Entering runlevel: 5
> >         >     >       >     >       > Configuring network interfaces...
> done.
> >         >     >       >     >       > resetting network interface
> >         >     >       >     >       > [   12.718295] macb
> ff0b0000.ethernet control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver
> [Xilinx
> >         >     >       PCS/PMA PHY] (irq=POLL)
> >         >     >       >     >       > [   12.723919] macb
> ff0b0000.ethernet control_red: configuring for phy/gmii link mode
> >         >     >       >     >       > [   12.732151] pps pps0: new PPS
> source ptp0
> >         >     >       >     >       > [   12.735563] macb
> ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
> >         >     >       >     >       > [   12.745724] macb
> ff0c0000.ethernet control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver
> [Xilinx
> >         >     >       PCS/PMA PHY]
> >         >     >       >     >       (irq=POLL)
> >         >     >       >     >       > [   12.753469] macb
> ff0c0000.ethernet control_black: configuring for phy/gmii link mode
> >         >     >       >     >       > [   12.761804] pps pps1: new PPS
> source ptp1
> >         >     >       >     >       > [   12.765398] macb
> ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
> >         >     >       >     >       > Auto-negotiation: off
> >         >     >       >     >       > Auto-negotiation: off
> >         >     >       >     >       > [   16.828151] macb
> ff0b0000.ethernet control_red: unable to generate target frequency:
> 125000000 Hz
> >         >     >       >     >       > [   16.834553] macb
> ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full - flow control off
> >         >     >       >     >       > [   16.860552] macb
> ff0c0000.ethernet control_black: unable to generate target frequency:
> 125000000 Hz
> >         >     >       >     >       > [   16.867052] macb
> ff0c0000.ethernet control_black: Link is Up - 1Gbps/Full - flow control off
> >         >     >       >     >       > Starting Failsafe Secure Shell
> server in port 2222: sshd
> >         >     >       >     >       > done.
> >         >     >       >     >       > Starting rpcbind daemon...done.
> >         >     >       >     >       >
> >         >     >       >     >       > [   17.093019] rtc-lpc55
> rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> >         >     >       >     >       > hwclock: RTC_RD_TIME: Invalid
> exchange
> >         >     >       >     >       > Starting State Manager Service
> >         >     >       >     >       > Start state-manager restarter...
> >         >     >       >     >       > (XEN) d0v1 Forwarding AES
> operation: 3254779951
> >         >     >       >     >       > Starting /usr/sbin/xenstored....[
>   17.265256] BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa
> >         >     >       devid 1 transid 744
> >         >     >       >     >       /dev/dm-0
> >         >     >       >     >       > scanned by udevd (385)
> >         >     >       >     >       > [   17.349933] BTRFS info (device
> dm-0): disk space caching is enabled
> >         >     >       >     >       > [   17.350670] BTRFS info (device
> dm-0): has skinny extents
> >         >     >       >     >       > [   17.364384] BTRFS info (device
> dm-0): enabling ssd optimizations
> >         >     >       >     >       > [   17.830462] BTRFS: device fsid
> 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
> >         >     >       /dev/mapper/client_prov scanned by
> >         >     >       >     >       mkfs.btrfs
> >         >     >       >     >       > (526)
> >         >     >       >     >       > [   17.872699] BTRFS info (device
> dm-1): using free space tree
> >         >     >       >     >       > [   17.872771] BTRFS info (device
> dm-1): has skinny extents
> >         >     >       >     >       > [   17.878114] BTRFS info (device
> dm-1): flagging fs with big metadata feature
> >         >     >       >     >       > [   17.894289] BTRFS info (device
> dm-1): enabling ssd optimizations
> >         >     >       >     >       > [   17.895695] BTRFS info (device
> dm-1): checking UUID tree
> >         >     >       >     >       >
> >         >     >       >     >       > Setting domain 0 name, domid and
> JSON config...
> >         >     >       >     >       > Done setting up Dom0
> >         >     >       >     >       > Starting xenconsoled...
> >         >     >       >     >       > Starting QEMU as disk backend for
> dom0
> >         >     >       >     >       > Starting domain watchdog daemon:
> xenwatchdogd startup
> >         >     >       >     >       >
> >         >     >       >     >       > [   18.408647] BTRFS: device fsid
> 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
> >         >     >       /dev/mapper/client_config scanned by
> >         >     >       >     >       mkfs.btrfs
> >         >     >       >     >       > (574)
> >         >     >       >     >       > [done]
> >         >     >       >     >       > [   18.465552] BTRFS info (device
> dm-2): using free space tree
> >         >     >       >     >       > [   18.465629] BTRFS info (device
> dm-2): has skinny extents
> >         >     >       >     >       > [   18.471002] BTRFS info (device
> dm-2): flagging fs with big metadata feature
> >         >     >       >     >       > Starting crond: [   18.482371]
> BTRFS info (device dm-2): enabling ssd optimizations
> >         >     >       >     >       > [   18.486659] BTRFS info (device
> dm-2): checking UUID tree
> >         >     >       >     >       > OK
> >         >     >       >     >       > starting rsyslogd ... Log
> partition ready after 0 poll loops
> >         >     >       >     >       > done
> >         >     >       >     >       > rsyslogd: cannot connect to
> 172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <
> http://172.18.0.1:514>> <http://172.18.0.1:514 <http://172.18.0.1:514> <
> http://172.18.0.1:514 <http://172.18.0.1:514>>>: Network is unreachable
> [v8.2208.0 try
> >         >     >       https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>>> ]
> >         >     >       >     >       > [   18.670637] BTRFS: device fsid
> 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3
> >         >     >       scanned by udevd (518)
> >         >     >       >     >       >
> >         >     >       >     >       > Please insert USB token and enter
> your role in login prompt.
> >         >     >       >     >       >
> >         >     >       >     >       > login:
> >         >     >       >     >       >
> >         >     >       >     >       > Regards,
> >         >     >       >     >       > O.
> >         >     >       >     >       >
> >         >     >       >     >       >
> >         >     >       >     >       > пн, 24 апр. 2023 г. в 23:39,
> Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
> >         >     >       >     >       >       Hi Oleg,
> >         >     >       >     >       >
> >         >     >       >     >       >       Here is the issue from your
> logs:
> >         >     >       >     >       >
> >         >     >       >     >       >       SError Interrupt on CPU0,
> code 0xbe000000 -- SError
> >         >     >       >     >       >
> >         >     >       >     >       >       SErrors are special signals
> to notify software of serious hardware
> >         >     >       >     >       >       errors.  Something is going
> very wrong. Defective hardware is a
> >         >     >       >     >       >       possibility.  Another
> possibility if software accessing address ranges
> >         >     >       >     >       >       that it is not supposed to,
> sometimes it causes SErrors.
> >         >     >       >     >       >
> >         >     >       >     >       >       Cheers,
> >         >     >       >     >       >
> >         >     >       >     >       >       Stefano
> >         >     >       >     >       >
> >         >     >       >     >       >
> >         >     >       >     >       >
> >         >     >       >     >       >       On Mon, 24 Apr 2023, Oleg
> Nikitenko wrote:
> >         >     >       >     >       >
> >         >     >       >     >       >       > Hello,
> >         >     >       >     >       >       >
> >         >     >       >     >       >       > Thanks guys.
> >         >     >       >     >       >       > I found out where the
> problem was.
> >         >     >       >     >       >       > Now dom0 booted more. But
> I have a new one.
> >         >     >       >     >       >       > This is a kernel panic
> during Dom0 loading.
> >         >     >       >     >       >       > Maybe someone is able to
> suggest something ?
> >         >     >       >     >       >       >
> >         >     >       >     >       >       > Regards,
> >         >     >       >     >       >       > O.
> >         >     >       >     >       >       >
> >         >     >       >     >       >       > [    3.771362]
> sfp_register_bus: upstream ops attach
> >         >     >       >     >       >       > [    3.776119]
> sfp_register_bus: Bus registered
> >         >     >       >     >       >       > [    3.780459]
> sfp_register_socket: register sfp_bus succeeded
> >         >     >       >     >       >       > [    3.789399] of_cfs_init
> >         >     >       >     >       >       > [    3.789499]
> of_cfs_init: OK
> >         >     >       >     >       >       > [    3.791685] clk: Not
> disabling unused clocks
> >         >     >       >     >       >       > [   11.010355] SError
> Interrupt on CPU0, code 0xbe000000 -- SError
> >         >     >       >     >       >       > [   11.010380] CPU: 0 PID:
> 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
> >         >     >       >     >       >       > [   11.010393] Workqueue:
> events_unbound async_run_entry_fn
> >         >     >       >     >       >       > [   11.010414] pstate:
> 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
> >         >     >       >     >       >       > [   11.010422] pc :
> simple_write_end+0xd0/0x130
> >         >     >       >     >       >       > [   11.010431] lr :
> generic_perform_write+0x118/0x1e0
> >         >     >       >     >       >       > [   11.010438] sp :
> ffffffc00809b910
> >         >     >       >     >       >       > [   11.010441] x29:
> ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
> >         >     >       >     >       >       > [   11.010451] x26:
> 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
> >         >     >       >     >       >       > [   11.010459] x23:
> ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
> >         >     >       >     >       >       > [   11.010472] x20:
> 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
> >         >     >       >     >       >       > [   11.010481] x17:
> 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
> >         >     >       >     >       >       > [   11.010490] x14:
> 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
> >         >     >       >     >       >       > [   11.010498] x11:
> 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
> >         >     >       >     >       >       > [   11.010507] x8 :
> 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
> >         >     >       >     >       >       > [   11.010515] x5 :
> fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
> >         >     >       >     >       >       > [   11.010524] x2 :
> 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
> >         >     >       >     >       >       > [   11.010534] Kernel
> panic - not syncing: Asynchronous SError Interrupt
> >         >     >       >     >       >       > [   11.010539] CPU: 0 PID:
> 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
> >         >     >       >     >       >       > [   11.010545] Hardware
> name: D14 Viper Board - White Unit (DT)
> >         >     >       >     >       >       > [   11.010548] Workqueue:
> events_unbound async_run_entry_fn
> >         >     >       >     >       >       > [   11.010556] Call trace:
> >         >     >       >     >       >       > [   11.010558]
>  dump_backtrace+0x0/0x1c4
> >         >     >       >     >       >       > [   11.010567]
>  show_stack+0x18/0x2c
> >         >     >       >     >       >       > [   11.010574]
>  dump_stack_lvl+0x7c/0xa0
> >         >     >       >     >       >       > [   11.010583]
>  dump_stack+0x18/0x34
> >         >     >       >     >       >       > [   11.010588]
>  panic+0x14c/0x2f8
> >         >     >       >     >       >       > [   11.010597]
>  print_tainted+0x0/0xb0
> >         >     >       >     >       >       > [   11.010606]
>  arm64_serror_panic+0x6c/0x7c
> >         >     >       >     >       >       > [   11.010614]
>  do_serror+0x28/0x60
> >         >     >       >     >       >       > [   11.010621]
>  el1h_64_error_handler+0x30/0x50
> >         >     >       >     >       >       > [   11.010628]
>  el1h_64_error+0x78/0x7c
> >         >     >       >     >       >       > [   11.010633]
>  simple_write_end+0xd0/0x130
> >         >     >       >     >       >       > [   11.010639]
>  generic_perform_write+0x118/0x1e0
> >         >     >       >     >       >       > [   11.010644]
>  __generic_file_write_iter+0x138/0x1c4
> >         >     >       >     >       >       > [   11.010650]
>  generic_file_write_iter+0x78/0xd0
> >         >     >       >     >       >       > [   11.010656]
>  __kernel_write+0xfc/0x2ac
> >         >     >       >     >       >       > [   11.010665]
>  kernel_write+0x88/0x160
> >         >     >       >     >       >       > [   11.010673]
>  xwrite+0x44/0x94
> >         >     >       >     >       >       > [   11.010680]
>  do_copy+0xa8/0x104
> >         >     >       >     >       >       > [   11.010686]
>  write_buffer+0x38/0x58
> >         >     >       >     >       >       > [   11.010692]
>  flush_buffer+0x4c/0xbc
> >         >     >       >     >       >       > [   11.010698]
>  __gunzip+0x280/0x310
> >         >     >       >     >       >       > [   11.010704]
>  gunzip+0x1c/0x28
> >         >     >       >     >       >       > [   11.010709]
>  unpack_to_rootfs+0x170/0x2b0
> >         >     >       >     >       >       > [   11.010715]
>  do_populate_rootfs+0x80/0x164
> >         >     >       >     >       >       > [   11.010722]
>  async_run_entry_fn+0x48/0x164
> >         >     >       >     >       >       > [   11.010728]
>  process_one_work+0x1e4/0x3a0
> >         >     >       >     >       >       > [   11.010736]
>  worker_thread+0x7c/0x4c0
> >         >     >       >     >       >       > [   11.010743]
>  kthread+0x120/0x130
> >         >     >       >     >       >       > [   11.010750]
>  ret_from_fork+0x10/0x20
> >         >     >       >     >       >       > [   11.010757] SMP:
> stopping secondary CPUs
> >         >     >       >     >       >       > [   11.010784] Kernel
> Offset: 0x2f61200000 from 0xffffffc008000000
> >         >     >       >     >       >       > [   11.010788]
> PHYS_OFFSET: 0x0
> >         >     >       >     >       >       > [   11.010790] CPU
> features: 0x00000401,00000842
> >         >     >       >     >       >       > [   11.010795] Memory
> Limit: none
> >         >     >       >     >       >       > [   11.277509] ---[ end
> Kernel panic - not syncing: Asynchronous SError Interrupt ]---
> >         >     >       >     >       >       >
> >         >     >       >     >       >       > пт, 21 апр. 2023 г. в
> 15:52, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>
> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>:
> >         >     >       >     >       >       >       Hi Oleg,
> >         >     >       >     >       >       >
> >         >     >       >     >       >       >       On 21/04/2023 14:49,
> Oleg Nikitenko wrote:
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       > Hello Michal,
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       > I was not able to
> enable earlyprintk in the xen for now.
> >         >     >       >     >       >       >       > I decided to
> choose another way.
> >         >     >       >     >       >       >       > This is a xen's
> command line that I found out completely.
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       > (XEN) $$$$
> console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
> >         >     >       bootscrub=0
> >         >     >       >     >       vwfi=native
> >         >     >       >     >       >       sched=null
> >         >     >       >     >       >       >       timer_slop=0
> >         >     >       >     >       >       >       Yes, adding a
> printk() in Xen was also a good idea.
> >         >     >       >     >       >       >
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       > So you are
> absolutely right about a command line.
> >         >     >       >     >       >       >       > Now I am going to
> find out why xen did not have the correct parameters from the device
> >         >     >       tree.
> >         >     >       >     >       >       >       Maybe you will find
> this document helpful:
> >         >     >       >     >       >       >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >>
> >         >     >       <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >>>
> >         >     >       >     >       >       >
> >         >     >       >     >       >       >       ~Michal
> >         >     >       >     >       >       >
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       > Regards,
> >         >     >       >     >       >       >       > Oleg
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       > пт, 21 апр.
> 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>
> >         >     >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>>:
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       >     On 21/04/2023
> 10:04, Oleg Nikitenko wrote:
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     > Hello Michal,
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     > Yes, I use
> yocto.
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     > Yesterday
> all day long I tried to follow your suggestions.
> >         >     >       >     >       >       >       >     > I faced a
> problem.
> >         >     >       >     >       >       >       >     > Manually in
> the xen config build file I pasted the strings:
> >         >     >       >     >       >       >       >     In the .config
> file or in some Yocto file (listing additional Kconfig options) added
> >         >     >       to SRC_URI?
> >         >     >       >     >       >       >       >     You shouldn't
> really modify .config file but if you do, you should execute "make
> >         >     >       olddefconfig"
> >         >     >       >     >       afterwards.
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
> CONFIG_EARLY_PRINTK
> >         >     >       >     >       >       >       >     >
> CONFIG_EARLY_PRINTK_ZYNQMP
> >         >     >       >     >       >       >       >     >
> CONFIG_EARLY_UART_CHOICE_CADENCE
> >         >     >       >     >       >       >       >     I hope you
> added =y to them.
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       >     Anyway, you
> have at least the following solutions:
> >         >     >       >     >       >       >       >     1) Run bitbake
> xen -c menuconfig to properly set early printk
> >         >     >       >     >       >       >       >     2) Find out
> how you enable other Kconfig options in your project (e.g.
> >         >     >       CONFIG_COLORING=y that is not
> >         >     >       >     >       enabled by
> >         >     >       >     >       >       default)
> >         >     >       >     >       >       >       >     3) Append the
> following to "xen/arch/arm/configs/arm64_defconfig":
> >         >     >       >     >       >       >       >
>  CONFIG_EARLY_PRINTK_ZYNQMP=y
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       >     ~Michal
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     > Host hangs
> in build time.
> >         >     >       >     >       >       >       >     > Maybe I did
> not set something in the config build file ?
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     > Regards,
> >         >     >       >     >       >       >       >     > Oleg
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     > чт, 20 апр.
> 2023 г. в 11:57, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>
> >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>
> >         >     >       >     >       >       >       <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
> >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>>:
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >     Thanks
> Michal,
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >     You gave
> me an idea.
> >         >     >       >     >       >       >       >     >     I am
> going to try it today.
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >     Regards,
> >         >     >       >     >       >       >       >     >     O.
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >     чт, 20
> апр. 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>
> >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>
> >         >     >       >     >       >       >       <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
> >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>>:
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
>  Thanks Stefano.
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >         I am
> going to do it today.
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
>  Regards,
> >         >     >       >     >       >       >       >     >         O.
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >         ср,
> 19 апр. 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>
> >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>
> >         >     >       >     >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>
> >         >     >       >     >       >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
> >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>>:
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
>  On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
> >         >     >       >     >       >       >       >     >
>  > Hi Michal,
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  > I corrected xen's command line.
> >         >     >       >     >       >       >       >     >
>  > Now it is
> >         >     >       >     >       >       >       >     >
>  > xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M
> >         >     >       dom0_max_vcpus=2
> >         >     >       >     >       dom0_vcpus_pin
> >         >     >       >     >       >       >       bootscrub=0
> vwfi=native sched=null
> >         >     >       >     >       >       >       >     >
>  > timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
>  4 colors is way too many for xen, just do xen_colors=0-0. There is no
> >         >     >       >     >       >       >       >     >
>  advantage in using more than 1 color for Xen.
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
>  4 colors is too few for dom0, if you are giving 1600M of memory to
> >         >     >       Dom0.
> >         >     >       >     >       >       >       >     >
>  Each color is 256M. For 1600M you should give at least 7 colors. Try:
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
>  xen_colors=0-0 dom0_colors=1-8
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >     >
>  > Unfortunately the result was the same.
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  > (XEN)  - Dom0 mode: Relaxed
> >         >     >       >     >       >       >       >     >
>  > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
> >         >     >       >     >       >       >       >     >
>  > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
> >         >     >       >     >       >       >       >     >
>  > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
> >         >     >       >     >       >       >       >     >
>  > (XEN) Coloring general information
> >         >     >       >     >       >       >       >     >
>  > (XEN) Way size: 64kB
> >         >     >       >     >       >       >       >     >
>  > (XEN) Max. number of colors available: 16
> >         >     >       >     >       >       >       >     >
>  > (XEN) Xen color(s): [ 0 ]
> >         >     >       >     >       >       >       >     >
>  > (XEN) alternatives: Patching with alt table 00000000002cc690 ->
> >         >     >       00000000002ccc0c
> >         >     >       >     >       >       >       >     >
>  > (XEN) Color array allocation failed for dom0
> >         >     >       >     >       >       >       >     >
>  > (XEN)
> >         >     >       >     >       >       >       >     >
>  > (XEN) ****************************************
> >         >     >       >     >       >       >       >     >
>  > (XEN) Panic on CPU 0:
> >         >     >       >     >       >       >       >     >
>  > (XEN) Error creating domain 0
> >         >     >       >     >       >       >       >     >
>  > (XEN) ****************************************
> >         >     >       >     >       >       >       >     >
>  > (XEN)
> >         >     >       >     >       >       >       >     >
>  > (XEN) Reboot in five seconds...
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  > I am going to find out how command line arguments passed and parsed.
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  > Regards,
> >         >     >       >     >       >       >       >     >
>  > Oleg
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>
> >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>
> >         >     >       >     >       <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>
> >         >     >       >     >       >       >       <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
> >         >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>>>:
> >         >     >       >     >       >       >       >     >
>  >       Hi Michal,
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  > You put my nose into the problem. Thank you.
> >         >     >       >     >       >       >       >     >
>  > I am going to use your point.
> >         >     >       >     >       >       >       >     >
>  > Let's see what happens.
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  > Regards,
> >         >     >       >     >       >       >       >     >
>  > Oleg
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com
> <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>
> >         >     >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>
> >         >     >       >     >       <mailto:michal.orzel@amd.com
> <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>
> >         >     >       >     >       >       >       <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
> >         >     >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>>>:
> >         >     >       >     >       >       >       >     >
>  >       Hi Oleg,
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  >       On 19/04/2023 09:03, Oleg Nikitenko wrote:
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       > Hello Stefano,
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       > Thanks for the clarification.
> >         >     >       >     >       >       >       >     >
>  >       > My company uses yocto for image generation.
> >         >     >       >     >       >       >       >     >
>  >       > What kind of information do you need to consult me in this
> >         >     >       case ?
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       > Maybe modules sizes/addresses which were mentioned by @Julien
> >         >     >       Grall
> >         >     >       >     >       >       <mailto:julien@xen.org
> <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>
> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org
> <mailto:julien@xen.org>>>
> >         >     >       >     >       >       >       <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>>>> <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>
> >         >     >       <mailto:julien@xen.org <mailto:julien@xen.org>
> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org
> <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>
> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org
> <mailto:julien@xen.org>>>>>> ?
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  >       Sorry for jumping into discussion, but FWICS the Xen command
> >         >     >       line you provided
> >         >     >       >     >       seems to be
> >         >     >       >     >       >       not the
> >         >     >       >     >       >       >       one
> >         >     >       >     >       >       >       >     >
>  >       Xen booted with. The error you are observing most likely is due
> >         >     >       to dom0 colors
> >         >     >       >     >       >       configuration not
> >         >     >       >     >       >       >       being
> >         >     >       >     >       >       >       >     >
>  >       specified (i.e. lack of dom0_colors=<> parameter). Although in
> >         >     >       the command line you
> >         >     >       >     >       >       provided, this
> >         >     >       >     >       >       >       parameter
> >         >     >       >     >       >       >       >     >
>  >       is set, I strongly doubt that this is the actual command line
> >         >     >       in use.
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  >       You wrote:
> >         >     >       >     >       >       >       >     >
>  >       xen,xen-bootargs = "console=dtuart dtuart=serial0
> >         >     >       dom0_mem=1600M dom0_max_vcpus=2
> >         >     >       >     >       >       dom0_vcpus_pin
> >         >     >       >     >       >       >       bootscrub=0
> vwfi=native
> >         >     >       >     >       >       >       >     >
>  >       sched=null timer_slop=0 way_szize=65536 xen_colors=0-3
> >         >     >       dom0_colors=4-7";
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  >       but:
> >         >     >       >     >       >       >       >     >
>  >       1) way_szize has a typo
> >         >     >       >     >       >       >       >     >
>  >       2) you specified 4 colors (0-3) for Xen, but the boot log says
> >         >     >       that Xen has only
> >         >     >       >     >       one:
> >         >     >       >     >       >       >       >     >
>  >       (XEN) Xen color(s): [ 0 ]
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  >       This makes me believe that no colors configuration actually end
> >         >     >       up in command line
> >         >     >       >     >       that Xen
> >         >     >       >     >       >       booted
> >         >     >       >     >       >       >       with.
> >         >     >       >     >       >       >       >     >
>  >       Single color for Xen is a "default if not specified" and way
> >         >     >       size was probably
> >         >     >       >     >       calculated
> >         >     >       >     >       >       by asking
> >         >     >       >     >       >       >       HW.
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  >       So I would suggest to first cross-check the command line in
> >         >     >       use.
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  >       ~Michal
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       > Regards,
> >         >     >       >     >       >       >       >     >
>  >       > Oleg
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       > вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini
> >         >     >       <sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>
> >         >     >       >     >       >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
> >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>
> >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>
> >         >     >       >     >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
> >         >     >       >     >       >       >       <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
> >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>
> >         >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>>>:
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
> >         >     >       >     >       >       >       >     >
>  >       >     > Hi Julien,
> >         >     >       >     >       >       >       >     >
>  >       >     >
> >         >     >       >     >       >       >       >     >
>  >       >     > >> This feature has not been merged in Xen upstream yet
> >         >     >       >     >       >       >       >     >
>  >       >     >
> >         >     >       >     >       >       >       >     >
>  >       >     > > would assume that upstream + the series on the ML [1]
> >         >     >       work
> >         >     >       >     >       >       >       >     >
>  >       >     >
> >         >     >       >     >       >       >       >     >
>  >       >     > Please clarify this point.
> >         >     >       >     >       >       >       >     >
>  >       >     > Because the two thoughts are controversial.
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >     Hi Oleg,
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >     As Julien wrote, there is nothing controversial. As you
> >         >     >       are aware,
> >         >     >       >     >       >       >       >     >
>  >       >     Xilinx maintains a separate Xen tree specific for Xilinx
> >         >     >       here:
> >         >     >       >     >       >       >       >     >
>  >       >     https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>
> >         >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>
> >         >     >       >     >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>
> >         >     >       >     >       >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>
> >         >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>
> >         >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>
> >         >     >       >     >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>
> >         >     >       >     >       >       >       <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>>
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >     and the branch you are using (xlnx_rebase_4.16) comes
> >         >     >       from there.
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >     Instead, the upstream Xen tree lives here:
> >         >     >       >     >       >       >       >     >
>  >       >     https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >         >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >         >     >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>>
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >     The Cache Coloring feature that you are trying to
> >         >     >       configure is present
> >         >     >       >     >       >       >       >     >
>  >       >     in xlnx_rebase_4.16, but not yet present upstream (there
> >         >     >       is an
> >         >     >       >     >       >       >       >     >
>  >       >     outstanding patch series to add cache coloring to Xen
> >         >     >       upstream but it
> >         >     >       >     >       >       >       >     >
>  >       >     hasn't been merged yet.)
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >     Anyway, if you are using xlnx_rebase_4.16 it doesn't
> >         >     >       matter too much for
> >         >     >       >     >       >       >       >     >
>  >       >     you as you already have Cache Coloring as a feature
> >         >     >       there.
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >     I take you are using ImageBuilder to generate the boot
> >         >     >       configuration? If
> >         >     >       >     >       >       >       >     >
>  >       >     so, please post the ImageBuilder config file that you are
> >         >     >       using.
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >
>  >       >     But from the boot message, it looks like the colors
> >         >     >       configuration for
> >         >     >       >     >       >       >       >     >
>  >       >     Dom0 is incorrect.
> >         >     >       >     >       >       >       >     >
>  >       >
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >             >
> >         >     >       >     >       >       >       >     >
> >         >     >       >     >       >       >       >
> >         >     >       >     >       >       >
> >         >     >       >     >       >       >
> >         >     >       >     >       >       >
> >         >     >       >     >       >
> >         >     >       >     >       >
> >         >     >       >     >       >
> >         >     >       >     >
> >         >     >       >     >
> >         >     >       >     >
> >         >     >       >
> >         >     >
> >         >     >
> >         >     >
> >         >
> >
>

[-- Attachment #2: Type: text/html, Size: 206518 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-15  8:51  0%                                                       ` Oleg Nikitenko
@ 2023-05-15  8:57  0%                                                         ` Michal Orzel
  2023-05-16 12:15  0%                                                           ` Oleg Nikitenko
  0 siblings, 1 reply; 200+ results
From: Michal Orzel @ 2023-05-15  8:57 UTC (permalink / raw)
  To: Oleg Nikitenko
  Cc: Stefano Stabellini, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand

Hi Oleg,

On 15/05/2023 10:51, Oleg Nikitenko wrote:
> 	
> 
> 
> Hello guys,
> 
> Thanks a lot.
> After a long problem list I was able to run xen with Dom0 with a cache color.
> One more question from my side.
> I want to run a guest with color mode too.
> I inserted a string into guest config file llc-colors = "9-13"
> I got an error
> [  457.517004] loop0: detected capacity change from 0 to 385840
> Parsing config from /xen/red_config.cfg
> /xen/red_config.cfg:26: config parsing error near `-colors': lexical error
> warning: Config file looks like it contains Python code.
> warning:  Arbitrary Python is no longer supported.
> warning:  See https://wiki.xen.org/wiki/PythonInXlConfig <https://wiki.xen.org/wiki/PythonInXlConfig>
> Failed to parse config: Invalid argument
> So this is a question.
> Is it possible to assign a color mode for the DomU by config file ?
> If so, what string should I use?
Please, always refer to the relevant documentation. In this case, for xl.cfg:
https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/man/xl.cfg.5.pod.in#L2890

~Michal

> 
> Regards,
> Oleg
> 
> чт, 11 мая 2023 г. в 13:32, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>:
> 
>     Hi Michal,
> 
>     Thanks.
>     This compilation previously had a name CONFIG_COLORING.
>     It mixed me up.
> 
>     Regards,
>     Oleg
> 
>     чт, 11 мая 2023 г. в 13:15, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
> 
>         Hi Oleg,
> 
>         On 11/05/2023 12:02, Oleg Nikitenko wrote:
>         >       
>         >
>         >
>         > Hello,
>         >
>         > Thanks Stefano.
>         > Then the next question.
>         > I cloned xen repo from xilinx site https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git> <https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>>
>         > I managed to build a xlnx_rebase_4.17 branch in my environment.
>         > I did it without coloring first. I did not find any color footprints at this branch.
>         > I realized coloring is not in the xlnx_rebase_4.17 branch yet.
>         This is not true. Cache coloring is in xlnx_rebase_4.17. Please see the docs:
>         https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst>
> 
>         It describes the feature and documents the required properties.
> 
>         ~Michal
> 
>         >
>         >
>         > вт, 9 мая 2023 г. в 22:49, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
>         >
>         >     We test Xen Cache Coloring regularly on zcu102. Every Petalinux release
>         >     (twice a year) is tested with cache coloring enabled. The last Petalinux
>         >     release is 2023.1 and the kernel used is this:
>         >     https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS> <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>>
>         >
>         >
>         >     On Tue, 9 May 2023, Oleg Nikitenko wrote:
>         >     > Hello guys,
>         >     >
>         >     > I have a couple of more questions.
>         >     > Have you ever run xen with the cache coloring at Zynq UltraScale+ MPSoC zcu102 xczu15eg ?
>         >     > When did you run xen with the cache coloring last time ?
>         >     > What kernel version did you use for Dom0 when you ran xen with the cache coloring last time ?
>         >     >
>         >     > Regards,
>         >     > Oleg
>         >     >
>         >     > пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
>         >     >       Hi Michal,
>         >     >
>         >     > Thanks.
>         >     >
>         >     > Regards,
>         >     > Oleg
>         >     >
>         >     > пт, 5 мая 2023 г. в 11:34, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
>         >     >       Hi Oleg,
>         >     >
>         >     >       Replying, so that you do not need to wait for Stefano.
>         >     >
>         >     >       On 05/05/2023 10:28, Oleg Nikitenko wrote:
>         >     >       >       
>         >     >       >
>         >     >       >
>         >     >       > Hello Stefano,
>         >     >       >
>         >     >       > I would like to try a xen cache color property from this repo  https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>>
>         >     >       <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git> <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>>>
>         >     >       > Could you tell whot branch I should use ?
>         >     >       Cache coloring feature is not part of the upstream tree and it is still under review.
>         >     >       You can only find it integrated in the Xilinx Xen tree.
>         >     >
>         >     >       ~Michal
>         >     >
>         >     >       >
>         >     >       > Regards,
>         >     >       > Oleg
>         >     >       >
>         >     >       > пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
>         >     >       >
>         >     >       >     I am familiar with the zcu102 but I don't know how you could possibly
>         >     >       >     generate a SError.
>         >     >       >
>         >     >       >     I suggest to try to use ImageBuilder [1] to generate the boot
>         >     >       >     configuration as a test because that is known to work well for zcu102.
>         >     >       >
>         >     >       >     [1] https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>>>
>         >     >       >
>         >     >       >
>         >     >       >     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
>         >     >       >     > Hello Stefano,
>         >     >       >     >
>         >     >       >     > Thanks for clarification.
>         >     >       >     > We nighter use ImageBuilder nor uboot boot script.
>         >     >       >     > A model is zcu102 compatible.
>         >     >       >     >
>         >     >       >     > Regards,
>         >     >       >     > O.
>         >     >       >     >
>         >     >       >     > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
>         >     >       >     >       This is interesting. Are you using Xilinx hardware by any chance? If so,
>         >     >       >     >       which board?
>         >     >       >     >
>         >     >       >     >       Are you using ImageBuilder to generate your boot.scr boot script? If so,
>         >     >       >     >       could you please post your ImageBuilder config file? If not, can you
>         >     >       >     >       post the source of your uboot boot script?
>         >     >       >     >
>         >     >       >     >       SErrors are supposed to be related to a hardware failure of some kind.
>         >     >       >     >       You are not supposed to be able to trigger an SError easily by
>         >     >       >     >       "mistake". I have not seen SErrors due to wrong cache coloring
>         >     >       >     >       configurations on any Xilinx board before.
>         >     >       >     >
>         >     >       >     >       The differences between Xen with and without cache coloring from a
>         >     >       >     >       hardware perspective are:
>         >     >       >     >
>         >     >       >     >       - With cache coloring, the SMMU is enabled and does address translations
>         >     >       >     >         even for dom0. Without cache coloring the SMMU could be disabled, and
>         >     >       >     >         if enabled, the SMMU doesn't do any address translations for Dom0. If
>         >     >       >     >         there is a hardware failure related to SMMU address translation it
>         >     >       >     >         could only trigger with cache coloring. This would be my normal
>         >     >       >     >         suggestion for you to explore, but the failure happens too early
>         >     >       >     >         before any DMA-capable device is programmed. So I don't think this can
>         >     >       >     >         be the issue.
>         >     >       >     >
>         >     >       >     >       - With cache coloring, the memory allocation is very different so you'll
>         >     >       >     >         end up using different DDR regions for Dom0. So if your DDR is
>         >     >       >     >         defective, you might only see a failure with cache coloring enabled
>         >     >       >     >         because you end up using different regions.
>         >     >       >     >
>         >     >       >     >
>         >     >       >     >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
>         >     >       >     >       > Hi Stefano,
>         >     >       >     >       >
>         >     >       >     >       > Thank you.
>         >     >       >     >       > If I build xen without colors support there is not this error.
>         >     >       >     >       > All the domains are booted well.
>         >     >       >     >       > Hense it can not be a hardware issue.
>         >     >       >     >       > This panic arrived during unpacking the rootfs.
>         >     >       >     >       > Here I attached the boot log xen/Dom0 without color.
>         >     >       >     >       > A highlighted strings printed exactly after the place where 1-st time panic arrived.
>         >     >       >     >       >
>         >     >       >     >       >  Xen 4.16.1-pre
>         >     >       >     >       > (XEN) Xen version 4.16.1-pre (nole2390@(none)) (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y
>         >     >       2023-04-21
>         >     >       >     >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300 git:321687b231-dirty
>         >     >       >     >       > (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
>         >     >       >     >       > (XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0, part 0xd03,rev 0x4
>         >     >       >     >       > (XEN) 64-bit Execution:
>         >     >       >     >       > (XEN)   Processor Features: 0000000000002222 0000000000000000
>         >     >       >     >       > (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
>         >     >       >     >       > (XEN)     Extensions: FloatingPoint AdvancedSIMD
>         >     >       >     >       > (XEN)   Debug Features: 0000000010305106 0000000000000000
>         >     >       >     >       > (XEN)   Auxiliary Features: 0000000000000000 0000000000000000
>         >     >       >     >       > (XEN)   Memory Model Features: 0000000000001122 0000000000000000
>         >     >       >     >       > (XEN)   ISA Features:  0000000000011120 0000000000000000
>         >     >       >     >       > (XEN) 32-bit Execution:
>         >     >       >     >       > (XEN)   Processor Features: 0000000000000131:0000000000011011
>         >     >       >     >       > (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
>         >     >       >     >       > (XEN)     Extensions: GenericTimer Security
>         >     >       >     >       > (XEN)   Debug Features: 0000000003010066
>         >     >       >     >       > (XEN)   Auxiliary Features: 0000000000000000
>         >     >       >     >       > (XEN)   Memory Model Features: 0000000010201105 0000000040000000
>         >     >       >     >       > (XEN)                          0000000001260000 0000000002102211
>         >     >       >     >       > (XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
>         >     >       >     >       > (XEN)                 0000000001112131 0000000000011142 0000000000011121
>         >     >       >     >       > (XEN) Using SMC Calling Convention v1.2
>         >     >       >     >       > (XEN) Using PSCI v1.1
>         >     >       >     >       > (XEN) SMP: Allowing 4 CPUs
>         >     >       >     >       > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
>         >     >       >     >       > (XEN) GICv2 initialization:
>         >     >       >     >       > (XEN)         gic_dist_addr=00000000f9010000
>         >     >       >     >       > (XEN)         gic_cpu_addr=00000000f9020000
>         >     >       >     >       > (XEN)         gic_hyp_addr=00000000f9040000
>         >     >       >     >       > (XEN)         gic_vcpu_addr=00000000f9060000
>         >     >       >     >       > (XEN)         gic_maintenance_irq=25
>         >     >       >     >       > (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
>         >     >       >     >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
>         >     >       >     >       > (XEN) Using scheduler: null Scheduler (null)
>         >     >       >     >       > (XEN) Initializing null scheduler
>         >     >       >     >       > (XEN) WARNING: This is experimental software in development.
>         >     >       >     >       > (XEN) Use at your own risk.
>         >     >       >     >       > (XEN) Allocated console ring of 32 KiB.
>         >     >       >     >       > (XEN) CPU0: Guest atomics will try 12 times before pausing the domain
>         >     >       >     >       > (XEN) Bringing up CPU1
>         >     >       >     >       > (XEN) CPU1: Guest atomics will try 13 times before pausing the domain
>         >     >       >     >       > (XEN) CPU 1 booted.
>         >     >       >     >       > (XEN) Bringing up CPU2
>         >     >       >     >       > (XEN) CPU2: Guest atomics will try 13 times before pausing the domain
>         >     >       >     >       > (XEN) CPU 2 booted.
>         >     >       >     >       > (XEN) Bringing up CPU3
>         >     >       >     >       > (XEN) CPU3: Guest atomics will try 13 times before pausing the domain
>         >     >       >     >       > (XEN) Brought up 4 CPUs
>         >     >       >     >       > (XEN) CPU 3 booted.
>         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: probing hardware configuration...
>         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
>         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
>         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stream matching with 48 register groups, mask 0x7fff<2>smmu:
>         >     >       /axi/smmu@fd800000: 16 context
>         >     >       >     >       banks (0
>         >     >       >     >       > stage-2 only)
>         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
>         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: registered 29 master devices
>         >     >       >     >       > (XEN) I/O virtualisation enabled
>         >     >       >     >       > (XEN)  - Dom0 mode: Relaxed
>         >     >       >     >       > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>         >     >       >     >       > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>         >     >       >     >       > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>         >     >       >     >       > (XEN) alternatives: Patching with alt table 00000000002cc5c8 -> 00000000002ccb2c
>         >     >       >     >       > (XEN) *** LOADING DOMAIN 0 ***
>         >     >       >     >       > (XEN) Loading d0 kernel from boot module @ 0000000001000000
>         >     >       >     >       > (XEN) Loading ramdisk from boot module @ 0000000002000000
>         >     >       >     >       > (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
>         >     >       >     >       > (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
>         >     >       >     >       > (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
>         >     >       >     >       > (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
>         >     >       >     >       > (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
>         >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
>         >     >       >     >       > (XEN) Allocating PPI 16 for event channel interrupt
>         >     >       >     >       > (XEN) Extended region 0: 0x81200000->0xa0000000
>         >     >       >     >       > (XEN) Extended region 1: 0xb1200000->0xc0000000
>         >     >       >     >       > (XEN) Extended region 2: 0xc8000000->0xe0000000
>         >     >       >     >       > (XEN) Extended region 3: 0xf0000000->0xf9000000
>         >     >       >     >       > (XEN) Extended region 4: 0x100000000->0x600000000
>         >     >       >     >       > (XEN) Extended region 5: 0x880000000->0x8000000000
>         >     >       >     >       > (XEN) Extended region 6: 0x8001000000->0x10000000000
>         >     >       >     >       > (XEN) Loading zImage from 0000000001000000 to 0000000010000000-0000000010e41008
>         >     >       >     >       > (XEN) Loading d0 initrd from 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
>         >     >       >     >       > (XEN) Loading d0 DTB to 0x0000000013400000-0x000000001340cbdc
>         >     >       >     >       > (XEN) Initial low memory virq threshold set at 0x4000 pages.
>         >     >       >     >       > (XEN) Std. Loglevel: All
>         >     >       >     >       > (XEN) Guest Loglevel: All
>         >     >       >     >       > (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
>         >     >       >     >       > (XEN) null.c:353: 0 <-- d0v0
>         >     >       >     >       > (XEN) Freed 356kB init memory.
>         >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
>         >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
>         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
>         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
>         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
>         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
>         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
>         >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>         >     >       >     >       > [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
>         >     >       >     >       > [    0.000000] Linux version 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC)
>         >     >       11.3.0, GNU ld (GNU
>         >     >       >     >       Binutils)
>         >     >       >     >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
>         >     >       >     >       > [    0.000000] Machine model: D14 Viper Board - White Unit
>         >     >       >     >       > [    0.000000] Xen 4.16 support found
>         >     >       >     >       > [    0.000000] Zone ranges:
>         >     >       >     >       > [    0.000000]   DMA      [mem 0x0000000010000000-0x000000007fffffff]
>         >     >       >     >       > [    0.000000]   DMA32    empty
>         >     >       >     >       > [    0.000000]   Normal   empty
>         >     >       >     >       > [    0.000000] Movable zone start for each node
>         >     >       >     >       > [    0.000000] Early memory node ranges
>         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000010000000-0x000000001fffffff]
>         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000022000000-0x0000000022147fff]
>         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000022200000-0x0000000022347fff]
>         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000024000000-0x0000000027ffffff]
>         >     >       >     >       > [    0.000000]   node   0: [mem 0x0000000030000000-0x000000007fffffff]
>         >     >       >     >       > [    0.000000] Initmem setup node 0 [mem 0x0000000010000000-0x000000007fffffff]
>         >     >       >     >       > [    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
>         >     >       >     >       > [    0.000000] On node 0, zone DMA: 184 pages in unavailable ranges
>         >     >       >     >       > [    0.000000] On node 0, zone DMA: 7352 pages in unavailable ranges
>         >     >       >     >       > [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
>         >     >       >     >       > [    0.000000] psci: probing for conduit method from DT.
>         >     >       >     >       > [    0.000000] psci: PSCIv1.1 detected in firmware.
>         >     >       >     >       > [    0.000000] psci: Using standard PSCI v0.2 function IDs
>         >     >       >     >       > [    0.000000] psci: Trusted OS migration not required
>         >     >       >     >       > [    0.000000] psci: SMC Calling Convention v1.1
>         >     >       >     >       > [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0 d32744 u65536
>         >     >       >     >       > [    0.000000] Detected VIPT I-cache on CPU0
>         >     >       >     >       > [    0.000000] CPU features: kernel page table isolation forced ON by KASLR
>         >     >       >     >       > [    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
>         >     >       >     >       > [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 403845
>         >     >       >     >       > [    0.000000] Kernel command line: console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused fips=1
>         >     >       root=/dev/ram0
>         >     >       >     >       maxcpus=2
>         >     >       >     >       > [    0.000000] Unknown kernel command line parameters "earlyprintk=xen fips=1", will be passed to user
>         >     >       space.
>         >     >       >     >       > [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>         >     >       >     >       > [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>         >     >       >     >       > [    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:on
>         >     >       >     >       > [    0.000000] mem auto-init: clearing system memory may take some time...
>         >     >       >     >       > [    0.000000] Memory: 1121936K/1641024K available (9728K kernel code, 836K rwdata, 2396K rodata, 1536K
>         >     >       init, 262K bss,
>         >     >       >     >       256944K reserved,
>         >     >       >     >       > 262144K cma-reserved)
>         >     >       >     >       > [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
>         >     >       >     >       > [    0.000000] rcu: Hierarchical RCU implementation.
>         >     >       >     >       > [    0.000000] rcu: RCU event tracing is enabled.
>         >     >       >     >       > [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
>         >     >       >     >       > [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>         >     >       >     >       > [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
>         >     >       >     >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
>         >     >       >     >       > [    0.000000] Root IRQ handler: gic_handle_irq
>         >     >       >     >       > [    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (virt).
>         >     >       >     >       > [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0,
>         >     >       max_idle_ns: 440795205315 ns
>         >     >       >     >       > [    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
>         >     >       >     >       > [    0.000258] Console: colour dummy device 80x25
>         >     >       >     >       > [    0.310231] printk: console [hvc0] enabled
>         >     >       >     >       > [    0.314403] Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS
>         >     >       (lpj=400000)
>         >     >       >     >       > [    0.324851] pid_max: default: 32768 minimum: 301
>         >     >       >     >       > [    0.329706] LSM: Security Framework initializing
>         >     >       >     >       > [    0.334204] Yama: becoming mindful.
>         >     >       >     >       > [    0.337865] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>         >     >       >     >       > [    0.345180] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>         >     >       >     >       > [    0.354743] xen:grant_table: Grant tables using version 1 layout
>         >     >       >     >       > [    0.359132] Grant table initialized
>         >     >       >     >       > [    0.362664] xen:events: Using FIFO-based ABI
>         >     >       >     >       > [    0.366993] Xen: initializing cpu0
>         >     >       >     >       > [    0.370515] rcu: Hierarchical SRCU implementation.
>         >     >       >     >       > [    0.375930] smp: Bringing up secondary CPUs ...
>         >     >       >     >       > (XEN) null.c:353: 1 <-- d0v1
>         >     >       >     >       > (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>         >     >       >     >       > [    0.382549] Detected VIPT I-cache on CPU1
>         >     >       >     >       > [    0.388712] Xen: initializing cpu1
>         >     >       >     >       > [    0.388743] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
>         >     >       >     >       > [    0.388829] smp: Brought up 1 node, 2 CPUs
>         >     >       >     >       > [    0.406941] SMP: Total of 2 processors activated.
>         >     >       >     >       > [    0.411698] CPU features: detected: 32-bit EL0 Support
>         >     >       >     >       > [    0.416888] CPU features: detected: CRC32 instructions
>         >     >       >     >       > [    0.422121] CPU: All CPU(s) started at EL1
>         >     >       >     >       > [    0.426248] alternatives: patching kernel code
>         >     >       >     >       > [    0.431424] devtmpfs: initialized
>         >     >       >     >       > [    0.441454] KASLR enabled
>         >     >       >     >       > [    0.441602] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns:
>         >     >       7645041785100000 ns
>         >     >       >     >       > [    0.448321] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
>         >     >       >     >       > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE protocol family
>         >     >       >     >       > [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
>         >     >       >     >       > [    0.503772] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
>         >     >       >     >       > [    0.511610] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
>         >     >       >     >       > [    0.519478] audit: initializing netlink subsys (disabled)
>         >     >       >     >       > [    0.524985] audit: type=2000 audit(0.336:1): state=initialized audit_enabled=0 res=1
>         >     >       >     >       > [    0.529169] thermal_sys: Registered thermal governor 'step_wise'
>         >     >       >     >       > [    0.533023] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
>         >     >       >     >       > [    0.545608] ASID allocator initialised with 32768 entries
>         >     >       >     >       > [    0.551030] xen:swiotlb_xen: Warning: only able to allocate 4 MB for software IO TLB
>         >     >       >     >       > [    0.559332] software IO TLB: mapped [mem 0x0000000011800000-0x0000000011c00000] (4MB)
>         >     >       >     >       > [    0.583565] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>         >     >       >     >       > [    0.584721] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
>         >     >       >     >       > [    0.591478] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>         >     >       >     >       > [    0.598225] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
>         >     >       >     >       > [    0.636520] DRBG: Continuing without Jitter RNG
>         >     >       >     >       > [    0.737187] raid6: neonx8   gen()  2143 MB/s
>         >     >       >     >       > [    0.805294] raid6: neonx8   xor()  1589 MB/s
>         >     >       >     >       > [    0.873406] raid6: neonx4   gen()  2177 MB/s
>         >     >       >     >       > [    0.941499] raid6: neonx4   xor()  1556 MB/s
>         >     >       >     >       > [    1.009612] raid6: neonx2   gen()  2072 MB/s
>         >     >       >     >       > [    1.077715] raid6: neonx2   xor()  1430 MB/s
>         >     >       >     >       > [    1.145834] raid6: neonx1   gen()  1769 MB/s
>         >     >       >     >       > [    1.213935] raid6: neonx1   xor()  1214 MB/s
>         >     >       >     >       > [    1.282046] raid6: int64x8  gen()  1366 MB/s
>         >     >       >     >       > [    1.350132] raid6: int64x8  xor()   773 MB/s
>         >     >       >     >       > [    1.418259] raid6: int64x4  gen()  1602 MB/s
>         >     >       >     >       > [    1.486349] raid6: int64x4  xor()   851 MB/s
>         >     >       >     >       > [    1.554464] raid6: int64x2  gen()  1396 MB/s
>         >     >       >     >       > [    1.622561] raid6: int64x2  xor()   744 MB/s
>         >     >       >     >       > [    1.690687] raid6: int64x1  gen()  1033 MB/s
>         >     >       >     >       > [    1.758770] raid6: int64x1  xor()   517 MB/s
>         >     >       >     >       > [    1.758809] raid6: using algorithm neonx4 gen() 2177 MB/s
>         >     >       >     >       > [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
>         >     >       >     >       > [    1.767957] raid6: using neon recovery algorithm
>         >     >       >     >       > [    1.772824] xen:balloon: Initialising balloon driver
>         >     >       >     >       > [    1.778021] iommu: Default domain type: Translated
>         >     >       >     >       > [    1.782584] iommu: DMA domain TLB invalidation policy: strict mode
>         >     >       >     >       > [    1.789149] SCSI subsystem initialized
>         >     >       >     >       > [    1.792820] usbcore: registered new interface driver usbfs
>         >     >       >     >       > [    1.798254] usbcore: registered new interface driver hub
>         >     >       >     >       > [    1.803626] usbcore: registered new device driver usb
>         >     >       >     >       > [    1.808761] pps_core: LinuxPPS API ver. 1 registered
>         >     >       >     >       > [    1.813716] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>
>         >     >       <mailto:giometti@linux.it <mailto:giometti@linux.it> <mailto:giometti@linux.it <mailto:giometti@linux.it>>>>
>         >     >       >     >       > [    1.822903] PTP clock support registered
>         >     >       >     >       > [    1.826893] EDAC MC: Ver: 3.0.0
>         >     >       >     >       > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
>         >     >       >     >       > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX channels.
>         >     >       >     >       > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX channels.
>         >     >       >     >       > [    1.855907] FPGA manager framework
>         >     >       >     >       > [    1.859952] clocksource: Switched to clocksource arch_sys_counter
>         >     >       >     >       > [    1.871712] NET: Registered PF_INET protocol family
>         >     >       >     >       > [    1.871838] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
>         >     >       >     >       > [    1.879392] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
>         >     >       >     >       > [    1.887078] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
>         >     >       >     >       > [    1.894846] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
>         >     >       >     >       > [    1.902900] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
>         >     >       >     >       > [    1.910350] TCP: Hash tables configured (established 16384 bind 16384)
>         >     >       >     >       > [    1.916778] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
>         >     >       >     >       > [    1.923509] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
>         >     >       >     >       > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol family
>         >     >       >     >       > [    1.936834] RPC: Registered named UNIX socket transport module.
>         >     >       >     >       > [    1.942342] RPC: Registered udp transport module.
>         >     >       >     >       > [    1.947088] RPC: Registered tcp transport module.
>         >     >       >     >       > [    1.951843] RPC: Registered tcp NFSv4.1 backchannel transport module.
>         >     >       >     >       > [    1.958334] PCI: CLS 0 bytes, default 64
>         >     >       >     >       > [    1.962709] Trying to unpack rootfs image as initramfs...
>         >     >       >     >       > [    1.977090] workingset: timestamp_bits=62 max_order=19 bucket_order=0
>         >     >       >     >       > [    1.982863] Installing knfsd (copyright (C) 1996 okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>>).
>         >     >       >     >       > [    2.021045] NET: Registered PF_ALG protocol family
>         >     >       >     >       > [    2.021122] xor: measuring software checksum speed
>         >     >       >     >       > [    2.029347]    8regs           :  2366 MB/sec
>         >     >       >     >       > [    2.033081]    32regs          :  2802 MB/sec
>         >     >       >     >       > [    2.038223]    arm64_neon      :  2320 MB/sec
>         >     >       >     >       > [    2.038385] xor: using function: 32regs (2802 MB/sec)
>         >     >       >     >       > [    2.043614] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
>         >     >       >     >       > [    2.050959] io scheduler mq-deadline registered
>         >     >       >     >       > [    2.055521] io scheduler kyber registered
>         >     >       >     >       > [    2.068227] xen:xen_evtchn: Event-channel device installed
>         >     >       >     >       > [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
>         >     >       >     >       > [    2.076190] cacheinfo: Unable to detect cache hierarchy for CPU 0
>         >     >       >     >       > [    2.085548] brd: module loaded
>         >     >       >     >       > [    2.089290] loop: module loaded
>         >     >       >     >       > [    2.089341] Invalid max_queues (4), will use default max: 2.
>         >     >       >     >       > [    2.094565] tun: Universal TUN/TAP device driver, 1.6
>         >     >       >     >       > [    2.098655] xen_netfront: Initialising Xen virtual ethernet driver
>         >     >       >     >       > [    2.104156] usbcore: registered new interface driver rtl8150
>         >     >       >     >       > [    2.109813] usbcore: registered new interface driver r8152
>         >     >       >     >       > [    2.115367] usbcore: registered new interface driver asix
>         >     >       >     >       > [    2.120794] usbcore: registered new interface driver ax88179_178a
>         >     >       >     >       > [    2.126934] usbcore: registered new interface driver cdc_ether
>         >     >       >     >       > [    2.132816] usbcore: registered new interface driver cdc_eem
>         >     >       >     >       > [    2.138527] usbcore: registered new interface driver net1080
>         >     >       >     >       > [    2.144256] usbcore: registered new interface driver cdc_subset
>         >     >       >     >       > [    2.150205] usbcore: registered new interface driver zaurus
>         >     >       >     >       > [    2.155837] usbcore: registered new interface driver cdc_ncm
>         >     >       >     >       > [    2.161550] usbcore: registered new interface driver r8153_ecm
>         >     >       >     >       > [    2.168240] usbcore: registered new interface driver cdc_acm
>         >     >       >     >       > [    2.173109] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
>         >     >       >     >       > [    2.181358] usbcore: registered new interface driver uas
>         >     >       >     >       > [    2.186547] usbcore: registered new interface driver usb-storage
>         >     >       >     >       > [    2.192643] usbcore: registered new interface driver ftdi_sio
>         >     >       >     >       > [    2.198384] usbserial: USB Serial support registered for FTDI USB Serial Device
>         >     >       >     >       > [    2.206118] udc-core: couldn't find an available UDC - added [g_mass_storage] to list of pending
>         >     >       drivers
>         >     >       >     >       > [    2.215332] i2c_dev: i2c /dev entries driver
>         >     >       >     >       > [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)
>         >     >       >     >       > [    2.225923] device-mapper: uevent: version 1.0.3
>         >     >       >     >       > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>>
>         >     >       <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com> <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>>>
>         >     >       >     >       > [    2.239315] EDAC MC0: Giving out device to module 1 controller synps_ddr_controller: DEV synps_edac
>         >     >       (INTERRUPT)
>         >     >       >     >       > [    2.249405] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV
>         >     >       >     >       ff960000.memory-controller (INTERRUPT)
>         >     >       >     >       > [    2.261719] sdhci: Secure Digital Host Controller Interface driver
>         >     >       >     >       > [    2.267487] sdhci: Copyright(c) Pierre Ossman
>         >     >       >     >       > [    2.271890] sdhci-pltfm: SDHCI platform and OF driver helper
>         >     >       >     >       > [    2.278157] ledtrig-cpu: registered to indicate activity on CPUs
>         >     >       >     >       > [    2.283816] zynqmp_firmware_probe Platform Management API v1.1
>         >     >       >     >       > [    2.289554] zynqmp_firmware_probe Trustzone version v1.0
>         >     >       >     >       > [    2.327875] securefw securefw: securefw probed
>         >     >       >     >       > [    2.328324] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
>         >     >       >     >       > [    2.332563] zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
>         >     >       >     >       > [    2.341183] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
>         >     >       >     >       > [    2.347667] remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is available
>         >     >       >     >       > [    2.353003] remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is available
>         >     >       >     >       > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
>         >     >       >     >       > [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen Proxy registered
>         >     >       >     >       > [    2.372525] viper-vdpp a4000000.vdpp: Device Tree Probing
>         >     >       >     >       > [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>         >     >       >     >       > [    2.386432] viper-vdpp a4000000.vdpp: Unable to register tamper handler. Retrying...
>         >     >       >     >       > [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
>         >     >       >     >       > [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device registered
>         >     >       >     >       > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
>         >     >       >     >       > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event Count: 32
>         >     >       >     >       > [    2.420856] default preset
>         >     >       >     >       > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device registered
>         >     >       >     >       > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
>         >     >       >     >       > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device registered
>         >     >       >     >       > [    2.441976] vmcu driver init
>         >     >       >     >       > [    2.444922] VMCU: : (240:0) registered
>         >     >       >     >       > [    2.444956] In K81 Updater init
>         >     >       >     >       > [    2.449003] pktgen: Packet Generator for packet performance testing. Version: 2.75
>         >     >       >     >       > [    2.468833] Initializing XFRM netlink socket
>         >     >       >     >       > [    2.468902] NET: Registered PF_PACKET protocol family
>         >     >       >     >       > [    2.472729] Bridge firewalling registered
>         >     >       >     >       > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
>         >     >       >     >       > [    2.481341] registered taskstats version 1
>         >     >       >     >       > [    2.486394] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
>         >     >       >     >       > [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
>         >     >       >     >       > [    2.507103] of-fpga-region fpga-full: FPGA Region probed
>         >     >       >     >       > [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver Probe success
>         >     >       >     >       > [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver Probe success
>         >     >       >     >       > [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver Probe success
>         >     >       >     >       > [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver Probe success
>         >     >       >     >       > [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver Probe success
>         >     >       >     >       > [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver Probe success
>         >     >       >     >       > [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver Probe success
>         >     >       >     >       > [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver Probe success
>         >     >       >     >       > [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver Probe success
>         >     >       >     >       > [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver Probe success
>         >     >       >     >       > [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
>         >     >       >     >       > [    2.946467] 2 fixed-partitions partitions found on MTD device spi0.0
>         >     >       >     >       > [    2.952393] Creating 2 MTD partitions on "spi0.0":
>         >     >       >     >       > [    2.957231] 0x000004000000-0x000008000000 : "bank A"
>         >     >       >     >       > [    2.963332] 0x000000000000-0x000004000000 : "bank B"
>         >     >       >     >       > [    2.968694] macb ff0b0000.ethernet: Not enabling partial store and forward
>         >     >       >     >       > [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25
>         >     >       (18:41:fe:0f:ff:02)
>         >     >       >     >       > [    2.984472] macb ff0c0000.ethernet: Not enabling partial store and forward
>         >     >       >     >       > [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26
>         >     >       (18:41:fe:0f:ff:03)
>         >     >       >     >       > [    3.001043] viper_enet viper_enet: Viper power GPIOs initialised
>         >     >       >     >       > [    3.007313] viper_enet viper_enet vnet0 (uninitialized): Validate interface QSGMII
>         >     >       >     >       > [    3.014914] viper_enet viper_enet vnet1 (uninitialized): Validate interface QSGMII
>         >     >       >     >       > [    3.022138] viper_enet viper_enet vnet1 (uninitialized): Validate interface type 18
>         >     >       >     >       > [    3.030274] viper_enet viper_enet vnet2 (uninitialized): Validate interface QSGMII
>         >     >       >     >       > [    3.037785] viper_enet viper_enet vnet3 (uninitialized): Validate interface QSGMII
>         >     >       >     >       > [    3.045301] viper_enet viper_enet: Viper enet registered
>         >     >       >     >       > [    3.050958] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
>         >     >       >     >       > [    3.057135] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
>         >     >       >     >       > [    3.063538] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
>         >     >       >     >       > [    3.069920] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
>         >     >       >     >       > [    3.097729] si70xx: probe of 2-0040 failed with error -5
>         >     >       >     >       > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
>         >     >       >     >       > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
>         >     >       >     >       > [    3.112457] viper-tamper viper-tamper: Device registered
>         >     >       >     >       > [    3.117593] active_bank active_bank: boot bank: 1
>         >     >       >     >       > [    3.122184] active_bank active_bank: boot mode: (0x02) qspi32
>         >     >       >     >       > [    3.128247] viper-vdpp a4000000.vdpp: Device Tree Probing
>         >     >       >     >       > [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>         >     >       >     >       > [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler registered
>         >     >       >     >       > [    3.147438] viper-vdpp a4000000.vdpp: Device registered
>         >     >       >     >       > [    3.153007] lpc55_l2 spi1.0: registered handler for protocol 0
>         >     >       >     >       > [    3.158582] lpc55_user lpc55_user: The major number for your device is 236
>         >     >       >     >       > [    3.165976] lpc55_l2 spi1.0: registered handler for protocol 1
>         >     >       >     >       > [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>         >     >       >     >       > [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
>         >     >       >     >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
>         >     >       >     >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
>         >     >       >     >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
>         >     >       >     >       > [    3.202932] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
>         >     >       >     >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
>         >     >       >     >       > [    3.215694] lpc55_l2 spi1.0: rx error: -110
>         >     >       >     >       > [    3.284438] mmc0: new HS200 MMC card at address 0001
>         >     >       >     >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
>         >     >       >     >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
>         >     >       >     >       > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
>         >     >       >     >       > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
>         >     >       >     >       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
>         >     >       >     >       > [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>         >     >       >     >       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to read the hardware clock
>         >     >       >     >       > [    3.591252] cdns-i2c ff020000.i2c: recovery information complete
>         >     >       >     >       > [    3.597085] at24 0-0050: supply vcc not found, using dummy regulator
>         >     >       >     >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
>         >     >       >     >       > [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
>         >     >       >     >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
>         >     >       >     >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
>         >     >       >     >       > [    3.624224] rtc-rv3028 0-0052: registered as rtc1
>         >     >       >     >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
>         >     >       >     >       > [    3.633253] lpc55_l2 spi1.0: rx error: -110
>         >     >       >     >       > [    3.639104] k81_bootloader 0-0010: probe
>         >     >       >     >       > [    3.641628] VMCU: : (235:0) registered
>         >     >       >     >       > [    3.641635] k81_bootloader 0-0010: probe completed
>         >     >       >     >       > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 28
>         >     >       >     >       > [    3.669154] cdns-i2c ff030000.i2c: recovery information complete
>         >     >       >     >       > [    3.675412] lm75 1-0048: supply vs not found, using dummy regulator
>         >     >       >     >       > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
>         >     >       >     >       > [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
>         >     >       >     >       > [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
>         >     >       >     >       > [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
>         >     >       >     >       > [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
>         >     >       >     >       > [    3.705157] pca954x 1-0070: registered 4 multiplexed busses for I2C switch pca9546
>         >     >       >     >       > [    3.713049] at24 1-0054: supply vcc not found, using dummy regulator
>         >     >       >     >       > [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM, read-only
>         >     >       >     >       > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq 29
>         >     >       >     >       > [    3.731272] sfp viper_enet:sfp-eth1: Host maximum power 2.0W
>         >     >       >     >       > [    3.737549] sfp_register_socket: got sfp_bus
>         >     >       >     >       > [    3.740709] sfp_register_socket: register sfp_bus
>         >     >       >     >       > [    3.745459] sfp_register_bus: ops ok!
>         >     >       >     >       > [    3.749179] sfp_register_bus: Try to attach
>         >     >       >     >       > [    3.753419] sfp_register_bus: Attach succeeded
>         >     >       >     >       > [    3.757914] sfp_register_bus: upstream ops attach
>         >     >       >     >       > [    3.762677] sfp_register_bus: Bus registered
>         >     >       >     >       > [    3.766999] sfp_register_socket: register sfp_bus succeeded
>         >     >       >     >       > [    3.775870] of_cfs_init
>         >     >       >     >       > [    3.776000] of_cfs_init: OK
>         >     >       >     >       > [    3.778211] clk: Not disabling unused clocks
>         >     >       >     >       > [   11.278477] Freeing initrd memory: 206056K
>         >     >       >     >       > [   11.279406] Freeing unused kernel memory: 1536K
>         >     >       >     >       > [   11.314006] Checked W+X mappings: passed, no W+X pages found
>         >     >       >     >       > [   11.314142] Run /init as init process
>         >     >       >     >       > INIT: version 3.01 booting
>         >     >       >     >       > fsck (busybox 1.35.0)
>         >     >       >     >       > /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600 blocks
>         >     >       >     >       > /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600 blocks
>         >     >       >     >       > /dev/mmcblk0p3 was not cleanly unmounted, check forced.
>         >     >       >     >       > /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous), 663/16384 blocks
>         >     >       >     >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode:
>         >     >       disabled.
>         >     >       >     >       > Starting random number generator daemon.
>         >     >       >     >       > [   11.580662] random: crng init done
>         >     >       >     >       > Starting udev
>         >     >       >     >       > [   11.613159] udevd[142]: starting version 3.2.10
>         >     >       >     >       > [   11.620385] udevd[143]: starting eudev-3.2.10
>         >     >       >     >       > [   11.704481] macb ff0b0000.ethernet control_red: renamed from eth0
>         >     >       >     >       > [   11.720264] macb ff0c0000.ethernet control_black: renamed from eth1
>         >     >       >     >       > [   12.063396] ip_local_port_range: prefer different parity for start/end values.
>         >     >       >     >       > [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>         >     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>         >     >       >     >       > Mon Feb 27 08:40:53 UTC 2023
>         >     >       >     >       > [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad result
>         >     >       >     >       > hwclock: RTC_SET_TIME: Invalid exchange
>         >     >       >     >       > [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>         >     >       >     >       > Starting mcud
>         >     >       >     >       > INIT: Entering runlevel: 5
>         >     >       >     >       > Configuring network interfaces... done.
>         >     >       >     >       > resetting network interface
>         >     >       >     >       > [   12.718295] macb ff0b0000.ethernet control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver [Xilinx
>         >     >       PCS/PMA PHY] (irq=POLL)
>         >     >       >     >       > [   12.723919] macb ff0b0000.ethernet control_red: configuring for phy/gmii link mode
>         >     >       >     >       > [   12.732151] pps pps0: new PPS source ptp0
>         >     >       >     >       > [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
>         >     >       >     >       > [   12.745724] macb ff0c0000.ethernet control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver [Xilinx
>         >     >       PCS/PMA PHY]
>         >     >       >     >       (irq=POLL)
>         >     >       >     >       > [   12.753469] macb ff0c0000.ethernet control_black: configuring for phy/gmii link mode
>         >     >       >     >       > [   12.761804] pps pps1: new PPS source ptp1
>         >     >       >     >       > [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
>         >     >       >     >       > Auto-negotiation: off
>         >     >       >     >       > Auto-negotiation: off
>         >     >       >     >       > [   16.828151] macb ff0b0000.ethernet control_red: unable to generate target frequency: 125000000 Hz
>         >     >       >     >       > [   16.834553] macb ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full - flow control off
>         >     >       >     >       > [   16.860552] macb ff0c0000.ethernet control_black: unable to generate target frequency: 125000000 Hz
>         >     >       >     >       > [   16.867052] macb ff0c0000.ethernet control_black: Link is Up - 1Gbps/Full - flow control off
>         >     >       >     >       > Starting Failsafe Secure Shell server in port 2222: sshd
>         >     >       >     >       > done.
>         >     >       >     >       > Starting rpcbind daemon...done.
>         >     >       >     >       >
>         >     >       >     >       > [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>         >     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>         >     >       >     >       > Starting State Manager Service
>         >     >       >     >       > Start state-manager restarter...
>         >     >       >     >       > (XEN) d0v1 Forwarding AES operation: 3254779951
>         >     >       >     >       > Starting /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa
>         >     >       devid 1 transid 744
>         >     >       >     >       /dev/dm-0
>         >     >       >     >       > scanned by udevd (385)
>         >     >       >     >       > [   17.349933] BTRFS info (device dm-0): disk space caching is enabled
>         >     >       >     >       > [   17.350670] BTRFS info (device dm-0): has skinny extents
>         >     >       >     >       > [   17.364384] BTRFS info (device dm-0): enabling ssd optimizations
>         >     >       >     >       > [   17.830462] BTRFS: device fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
>         >     >       /dev/mapper/client_prov scanned by
>         >     >       >     >       mkfs.btrfs
>         >     >       >     >       > (526)
>         >     >       >     >       > [   17.872699] BTRFS info (device dm-1): using free space tree
>         >     >       >     >       > [   17.872771] BTRFS info (device dm-1): has skinny extents
>         >     >       >     >       > [   17.878114] BTRFS info (device dm-1): flagging fs with big metadata feature
>         >     >       >     >       > [   17.894289] BTRFS info (device dm-1): enabling ssd optimizations
>         >     >       >     >       > [   17.895695] BTRFS info (device dm-1): checking UUID tree
>         >     >       >     >       >
>         >     >       >     >       > Setting domain 0 name, domid and JSON config...
>         >     >       >     >       > Done setting up Dom0
>         >     >       >     >       > Starting xenconsoled...
>         >     >       >     >       > Starting QEMU as disk backend for dom0
>         >     >       >     >       > Starting domain watchdog daemon: xenwatchdogd startup
>         >     >       >     >       >
>         >     >       >     >       > [   18.408647] BTRFS: device fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
>         >     >       /dev/mapper/client_config scanned by
>         >     >       >     >       mkfs.btrfs
>         >     >       >     >       > (574)
>         >     >       >     >       > [done]
>         >     >       >     >       > [   18.465552] BTRFS info (device dm-2): using free space tree
>         >     >       >     >       > [   18.465629] BTRFS info (device dm-2): has skinny extents
>         >     >       >     >       > [   18.471002] BTRFS info (device dm-2): flagging fs with big metadata feature
>         >     >       >     >       > Starting crond: [   18.482371] BTRFS info (device dm-2): enabling ssd optimizations
>         >     >       >     >       > [   18.486659] BTRFS info (device dm-2): checking UUID tree
>         >     >       >     >       > OK
>         >     >       >     >       > starting rsyslogd ... Log partition ready after 0 poll loops
>         >     >       >     >       > done
>         >     >       >     >       > rsyslogd: cannot connect to 172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>> <http://172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>>>: Network is unreachable [v8.2208.0 try
>         >     >       https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>>> ]
>         >     >       >     >       > [   18.670637] BTRFS: device fsid 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3
>         >     >       scanned by udevd (518)
>         >     >       >     >       >
>         >     >       >     >       > Please insert USB token and enter your role in login prompt.
>         >     >       >     >       >
>         >     >       >     >       > login:
>         >     >       >     >       >
>         >     >       >     >       > Regards,
>         >     >       >     >       > O.
>         >     >       >     >       >
>         >     >       >     >       >
>         >     >       >     >       > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
>         >     >       >     >       >       Hi Oleg,
>         >     >       >     >       >
>         >     >       >     >       >       Here is the issue from your logs:
>         >     >       >     >       >
>         >     >       >     >       >       SError Interrupt on CPU0, code 0xbe000000 -- SError
>         >     >       >     >       >
>         >     >       >     >       >       SErrors are special signals to notify software of serious hardware
>         >     >       >     >       >       errors.  Something is going very wrong. Defective hardware is a
>         >     >       >     >       >       possibility.  Another possibility if software accessing address ranges
>         >     >       >     >       >       that it is not supposed to, sometimes it causes SErrors.
>         >     >       >     >       >
>         >     >       >     >       >       Cheers,
>         >     >       >     >       >
>         >     >       >     >       >       Stefano
>         >     >       >     >       >
>         >     >       >     >       >
>         >     >       >     >       >
>         >     >       >     >       >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
>         >     >       >     >       >
>         >     >       >     >       >       > Hello,
>         >     >       >     >       >       >
>         >     >       >     >       >       > Thanks guys.
>         >     >       >     >       >       > I found out where the problem was.
>         >     >       >     >       >       > Now dom0 booted more. But I have a new one.
>         >     >       >     >       >       > This is a kernel panic during Dom0 loading.
>         >     >       >     >       >       > Maybe someone is able to suggest something ?
>         >     >       >     >       >       >
>         >     >       >     >       >       > Regards,
>         >     >       >     >       >       > O.
>         >     >       >     >       >       >
>         >     >       >     >       >       > [    3.771362] sfp_register_bus: upstream ops attach
>         >     >       >     >       >       > [    3.776119] sfp_register_bus: Bus registered
>         >     >       >     >       >       > [    3.780459] sfp_register_socket: register sfp_bus succeeded
>         >     >       >     >       >       > [    3.789399] of_cfs_init
>         >     >       >     >       >       > [    3.789499] of_cfs_init: OK
>         >     >       >     >       >       > [    3.791685] clk: Not disabling unused clocks
>         >     >       >     >       >       > [   11.010355] SError Interrupt on CPU0, code 0xbe000000 -- SError
>         >     >       >     >       >       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>         >     >       >     >       >       > [   11.010393] Workqueue: events_unbound async_run_entry_fn
>         >     >       >     >       >       > [   11.010414] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
>         >     >       >     >       >       > [   11.010422] pc : simple_write_end+0xd0/0x130
>         >     >       >     >       >       > [   11.010431] lr : generic_perform_write+0x118/0x1e0
>         >     >       >     >       >       > [   11.010438] sp : ffffffc00809b910
>         >     >       >     >       >       > [   11.010441] x29: ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
>         >     >       >     >       >       > [   11.010451] x26: 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
>         >     >       >     >       >       > [   11.010459] x23: ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
>         >     >       >     >       >       > [   11.010472] x20: 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
>         >     >       >     >       >       > [   11.010481] x17: 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
>         >     >       >     >       >       > [   11.010490] x14: 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
>         >     >       >     >       >       > [   11.010498] x11: 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
>         >     >       >     >       >       > [   11.010507] x8 : 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
>         >     >       >     >       >       > [   11.010515] x5 : fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
>         >     >       >     >       >       > [   11.010524] x2 : 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
>         >     >       >     >       >       > [   11.010534] Kernel panic - not syncing: Asynchronous SError Interrupt
>         >     >       >     >       >       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>         >     >       >     >       >       > [   11.010545] Hardware name: D14 Viper Board - White Unit (DT)
>         >     >       >     >       >       > [   11.010548] Workqueue: events_unbound async_run_entry_fn
>         >     >       >     >       >       > [   11.010556] Call trace:
>         >     >       >     >       >       > [   11.010558]  dump_backtrace+0x0/0x1c4
>         >     >       >     >       >       > [   11.010567]  show_stack+0x18/0x2c
>         >     >       >     >       >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
>         >     >       >     >       >       > [   11.010583]  dump_stack+0x18/0x34
>         >     >       >     >       >       > [   11.010588]  panic+0x14c/0x2f8
>         >     >       >     >       >       > [   11.010597]  print_tainted+0x0/0xb0
>         >     >       >     >       >       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
>         >     >       >     >       >       > [   11.010614]  do_serror+0x28/0x60
>         >     >       >     >       >       > [   11.010621]  el1h_64_error_handler+0x30/0x50
>         >     >       >     >       >       > [   11.010628]  el1h_64_error+0x78/0x7c
>         >     >       >     >       >       > [   11.010633]  simple_write_end+0xd0/0x130
>         >     >       >     >       >       > [   11.010639]  generic_perform_write+0x118/0x1e0
>         >     >       >     >       >       > [   11.010644]  __generic_file_write_iter+0x138/0x1c4
>         >     >       >     >       >       > [   11.010650]  generic_file_write_iter+0x78/0xd0
>         >     >       >     >       >       > [   11.010656]  __kernel_write+0xfc/0x2ac
>         >     >       >     >       >       > [   11.010665]  kernel_write+0x88/0x160
>         >     >       >     >       >       > [   11.010673]  xwrite+0x44/0x94
>         >     >       >     >       >       > [   11.010680]  do_copy+0xa8/0x104
>         >     >       >     >       >       > [   11.010686]  write_buffer+0x38/0x58
>         >     >       >     >       >       > [   11.010692]  flush_buffer+0x4c/0xbc
>         >     >       >     >       >       > [   11.010698]  __gunzip+0x280/0x310
>         >     >       >     >       >       > [   11.010704]  gunzip+0x1c/0x28
>         >     >       >     >       >       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
>         >     >       >     >       >       > [   11.010715]  do_populate_rootfs+0x80/0x164
>         >     >       >     >       >       > [   11.010722]  async_run_entry_fn+0x48/0x164
>         >     >       >     >       >       > [   11.010728]  process_one_work+0x1e4/0x3a0
>         >     >       >     >       >       > [   11.010736]  worker_thread+0x7c/0x4c0
>         >     >       >     >       >       > [   11.010743]  kthread+0x120/0x130
>         >     >       >     >       >       > [   11.010750]  ret_from_fork+0x10/0x20
>         >     >       >     >       >       > [   11.010757] SMP: stopping secondary CPUs
>         >     >       >     >       >       > [   11.010784] Kernel Offset: 0x2f61200000 from 0xffffffc008000000
>         >     >       >     >       >       > [   11.010788] PHYS_OFFSET: 0x0
>         >     >       >     >       >       > [   11.010790] CPU features: 0x00000401,00000842
>         >     >       >     >       >       > [   11.010795] Memory Limit: none
>         >     >       >     >       >       > [   11.277509] ---[ end Kernel panic - not syncing: Asynchronous SError Interrupt ]---
>         >     >       >     >       >       >
>         >     >       >     >       >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>:
>         >     >       >     >       >       >       Hi Oleg,
>         >     >       >     >       >       >
>         >     >       >     >       >       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
>         >     >       >     >       >       >       >       
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       > Hello Michal,
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       > I was not able to enable earlyprintk in the xen for now.
>         >     >       >     >       >       >       > I decided to choose another way.
>         >     >       >     >       >       >       > This is a xen's command line that I found out completely.
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       > (XEN) $$$$ console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
>         >     >       bootscrub=0
>         >     >       >     >       vwfi=native
>         >     >       >     >       >       sched=null
>         >     >       >     >       >       >       timer_slop=0
>         >     >       >     >       >       >       Yes, adding a printk() in Xen was also a good idea.
>         >     >       >     >       >       >
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       > So you are absolutely right about a command line.
>         >     >       >     >       >       >       > Now I am going to find out why xen did not have the correct parameters from the device
>         >     >       tree.
>         >     >       >     >       >       >       Maybe you will find this document helpful:
>         >     >       >     >       >       >       https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>
>         >     >       <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt> <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>>
>         >     >       >     >       >       >
>         >     >       >     >       >       >       ~Michal
>         >     >       >     >       >       >
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       > Regards,
>         >     >       >     >       >       >       > Oleg
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
>         >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>:
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       >     On 21/04/2023 10:04, Oleg Nikitenko wrote:
>         >     >       >     >       >       >       >     >       
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     > Hello Michal,
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     > Yes, I use yocto.
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     > Yesterday all day long I tried to follow your suggestions.
>         >     >       >     >       >       >       >     > I faced a problem.
>         >     >       >     >       >       >       >     > Manually in the xen config build file I pasted the strings:
>         >     >       >     >       >       >       >     In the .config file or in some Yocto file (listing additional Kconfig options) added
>         >     >       to SRC_URI?
>         >     >       >     >       >       >       >     You shouldn't really modify .config file but if you do, you should execute "make
>         >     >       olddefconfig"
>         >     >       >     >       afterwards.
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     > CONFIG_EARLY_PRINTK
>         >     >       >     >       >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
>         >     >       >     >       >       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
>         >     >       >     >       >       >       >     I hope you added =y to them.
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       >     Anyway, you have at least the following solutions:
>         >     >       >     >       >       >       >     1) Run bitbake xen -c menuconfig to properly set early printk
>         >     >       >     >       >       >       >     2) Find out how you enable other Kconfig options in your project (e.g.
>         >     >       CONFIG_COLORING=y that is not
>         >     >       >     >       enabled by
>         >     >       >     >       >       default)
>         >     >       >     >       >       >       >     3) Append the following to "xen/arch/arm/configs/arm64_defconfig":
>         >     >       >     >       >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       >     ~Michal
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     > Host hangs in build time. 
>         >     >       >     >       >       >       >     > Maybe I did not set something in the config build file ?
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     > Regards,
>         >     >       >     >       >       >       >     > Oleg
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
>         >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>:
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >     Thanks Michal,
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >     You gave me an idea.
>         >     >       >     >       >       >       >     >     I am going to try it today.
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >     Regards,
>         >     >       >     >       >       >       >     >     O.
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >     чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
>         >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>:
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >         Thanks Stefano.
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >         I am going to do it today.
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >         Regards,
>         >     >       >     >       >       >       >     >         O.
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >         ср, 19 апр. 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>         >     >       >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
>         >     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>:
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >             On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
>         >     >       >     >       >       >       >     >             > Hi Michal,
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             > I corrected xen's command line.
>         >     >       >     >       >       >       >     >             > Now it is
>         >     >       >     >       >       >       >     >             > xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M
>         >     >       dom0_max_vcpus=2
>         >     >       >     >       dom0_vcpus_pin
>         >     >       >     >       >       >       bootscrub=0 vwfi=native sched=null
>         >     >       >     >       >       >       >     >             > timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >             4 colors is way too many for xen, just do xen_colors=0-0. There is no
>         >     >       >     >       >       >       >     >             advantage in using more than 1 color for Xen.
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >             4 colors is too few for dom0, if you are giving 1600M of memory to
>         >     >       Dom0.
>         >     >       >     >       >       >       >     >             Each color is 256M. For 1600M you should give at least 7 colors. Try:
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >             xen_colors=0-0 dom0_colors=1-8
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >     >             > Unfortunately the result was the same.
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             > (XEN)  - Dom0 mode: Relaxed
>         >     >       >     >       >       >       >     >             > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>         >     >       >     >       >       >       >     >             > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>         >     >       >     >       >       >       >     >             > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>         >     >       >     >       >       >       >     >             > (XEN) Coloring general information
>         >     >       >     >       >       >       >     >             > (XEN) Way size: 64kB
>         >     >       >     >       >       >       >     >             > (XEN) Max. number of colors available: 16
>         >     >       >     >       >       >       >     >             > (XEN) Xen color(s): [ 0 ]
>         >     >       >     >       >       >       >     >             > (XEN) alternatives: Patching with alt table 00000000002cc690 ->
>         >     >       00000000002ccc0c
>         >     >       >     >       >       >       >     >             > (XEN) Color array allocation failed for dom0
>         >     >       >     >       >       >       >     >             > (XEN)
>         >     >       >     >       >       >       >     >             > (XEN) ****************************************
>         >     >       >     >       >       >       >     >             > (XEN) Panic on CPU 0:
>         >     >       >     >       >       >       >     >             > (XEN) Error creating domain 0
>         >     >       >     >       >       >       >     >             > (XEN) ****************************************
>         >     >       >     >       >       >       >     >             > (XEN)
>         >     >       >     >       >       >       >     >             > (XEN) Reboot in five seconds...
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             > I am going to find out how command line arguments passed and parsed.
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             > Regards,
>         >     >       >     >       >       >       >     >             > Oleg
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>         >     >       >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>
>         >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>         >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>>:
>         >     >       >     >       >       >       >     >             >       Hi Michal,
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             > You put my nose into the problem. Thank you.
>         >     >       >     >       >       >       >     >             > I am going to use your point.
>         >     >       >     >       >       >       >     >             > Let's see what happens.
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             > Regards,
>         >     >       >     >       >       >       >     >             > Oleg
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
>         >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>
>         >     >       >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>
>         >     >       >     >       >       >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
>         >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>>:
>         >     >       >     >       >       >       >     >             >       Hi Oleg,
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >       On 19/04/2023 09:03, Oleg Nikitenko wrote:
>         >     >       >     >       >       >       >     >             >       >       
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       > Hello Stefano,
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       > Thanks for the clarification.
>         >     >       >     >       >       >       >     >             >       > My company uses yocto for image generation.
>         >     >       >     >       >       >       >     >             >       > What kind of information do you need to consult me in this
>         >     >       case ?
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       > Maybe modules sizes/addresses which were mentioned by @Julien
>         >     >       Grall
>         >     >       >     >       >       <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>
>         >     >       >     >       >       >       <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>
>         >     >       <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>>> ?
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >       Sorry for jumping into discussion, but FWICS the Xen command
>         >     >       line you provided
>         >     >       >     >       seems to be
>         >     >       >     >       >       not the
>         >     >       >     >       >       >       one
>         >     >       >     >       >       >       >     >             >       Xen booted with. The error you are observing most likely is due
>         >     >       to dom0 colors
>         >     >       >     >       >       configuration not
>         >     >       >     >       >       >       being
>         >     >       >     >       >       >       >     >             >       specified (i.e. lack of dom0_colors=<> parameter). Although in
>         >     >       the command line you
>         >     >       >     >       >       provided, this
>         >     >       >     >       >       >       parameter
>         >     >       >     >       >       >       >     >             >       is set, I strongly doubt that this is the actual command line
>         >     >       in use.
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >       You wrote:
>         >     >       >     >       >       >       >     >             >       xen,xen-bootargs = "console=dtuart dtuart=serial0
>         >     >       dom0_mem=1600M dom0_max_vcpus=2
>         >     >       >     >       >       dom0_vcpus_pin
>         >     >       >     >       >       >       bootscrub=0 vwfi=native
>         >     >       >     >       >       >       >     >             >       sched=null timer_slop=0 way_szize=65536 xen_colors=0-3
>         >     >       dom0_colors=4-7";
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >       but:
>         >     >       >     >       >       >       >     >             >       1) way_szize has a typo
>         >     >       >     >       >       >       >     >             >       2) you specified 4 colors (0-3) for Xen, but the boot log says
>         >     >       that Xen has only
>         >     >       >     >       one:
>         >     >       >     >       >       >       >     >             >       (XEN) Xen color(s): [ 0 ]
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >       This makes me believe that no colors configuration actually end
>         >     >       up in command line
>         >     >       >     >       that Xen
>         >     >       >     >       >       booted
>         >     >       >     >       >       >       with.
>         >     >       >     >       >       >       >     >             >       Single color for Xen is a "default if not specified" and way
>         >     >       size was probably
>         >     >       >     >       calculated
>         >     >       >     >       >       by asking
>         >     >       >     >       >       >       HW.
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >       So I would suggest to first cross-check the command line in
>         >     >       use.
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >       ~Michal
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       > Regards,
>         >     >       >     >       >       >       >     >             >       > Oleg
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       > вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini
>         >     >       <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>         >     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
>         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>
>         >     >       >     >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>         >     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
>         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>         >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>>:
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
>         >     >       >     >       >       >       >     >             >       >     > Hi Julien,
>         >     >       >     >       >       >       >     >             >       >     >
>         >     >       >     >       >       >       >     >             >       >     > >> This feature has not been merged in Xen upstream yet
>         >     >       >     >       >       >       >     >             >       >     >
>         >     >       >     >       >       >       >     >             >       >     > > would assume that upstream + the series on the ML [1]
>         >     >       work
>         >     >       >     >       >       >       >     >             >       >     >
>         >     >       >     >       >       >       >     >             >       >     > Please clarify this point.
>         >     >       >     >       >       >       >     >             >       >     > Because the two thoughts are controversial.
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >     Hi Oleg,
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >     As Julien wrote, there is nothing controversial. As you
>         >     >       are aware,
>         >     >       >     >       >       >       >     >             >       >     Xilinx maintains a separate Xen tree specific for Xilinx
>         >     >       here:
>         >     >       >     >       >       >       >     >             >       >     https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>
>         >     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
>         >     >       >     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>
>         >     >       >     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>
>         >     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>
>         >     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
>         >     >       >     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>
>         >     >       >     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>>
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >     and the branch you are using (xlnx_rebase_4.16) comes
>         >     >       from there.
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >     Instead, the upstream Xen tree lives here:
>         >     >       >     >       >       >       >     >             >       >     https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>         >     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>         >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>>
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >     The Cache Coloring feature that you are trying to
>         >     >       configure is present
>         >     >       >     >       >       >       >     >             >       >     in xlnx_rebase_4.16, but not yet present upstream (there
>         >     >       is an
>         >     >       >     >       >       >       >     >             >       >     outstanding patch series to add cache coloring to Xen
>         >     >       upstream but it
>         >     >       >     >       >       >       >     >             >       >     hasn't been merged yet.)
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >     Anyway, if you are using xlnx_rebase_4.16 it doesn't
>         >     >       matter too much for
>         >     >       >     >       >       >       >     >             >       >     you as you already have Cache Coloring as a feature
>         >     >       there.
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >     I take you are using ImageBuilder to generate the boot
>         >     >       configuration? If
>         >     >       >     >       >       >       >     >             >       >     so, please post the ImageBuilder config file that you are
>         >     >       using.
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >       >     But from the boot message, it looks like the colors
>         >     >       configuration for
>         >     >       >     >       >       >       >     >             >       >     Dom0 is incorrect.
>         >     >       >     >       >       >       >     >             >       >
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >             >
>         >     >       >     >       >       >       >     >
>         >     >       >     >       >       >       >
>         >     >       >     >       >       >
>         >     >       >     >       >       >
>         >     >       >     >       >       >
>         >     >       >     >       >
>         >     >       >     >       >
>         >     >       >     >       >
>         >     >       >     >
>         >     >       >     >
>         >     >       >     >
>         >     >       >
>         >     >
>         >     >
>         >     >
>         >
> 


^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-11 10:32  0%                                                     ` Oleg Nikitenko
@ 2023-05-15  8:51  0%                                                       ` Oleg Nikitenko
  2023-05-15  8:57  0%                                                         ` Michal Orzel
  0 siblings, 1 reply; 200+ results
From: Oleg Nikitenko @ 2023-05-15  8:51 UTC (permalink / raw)
  To: Michal Orzel
  Cc: Stefano Stabellini, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand

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

Hello guys,

Thanks a lot.
After a long problem list I was able to run xen with Dom0 with a cache
color.
One more question from my side.
I want to run a guest with color mode too.
I inserted a string into guest config file llc-colors = "9-13"
I got an error
[  457.517004] loop0: detected capacity change from 0 to 385840
Parsing config from /xen/red_config.cfg
/xen/red_config.cfg:26: config parsing error near `-colors': lexical error
warning: Config file looks like it contains Python code.
warning:  Arbitrary Python is no longer supported.
warning:  See https://wiki.xen.org/wiki/PythonInXlConfig
Failed to parse config: Invalid argument
So this is a question.
Is it possible to assign a color mode for the DomU by config file ?
If so, what string should I use?

Regards,
Oleg

чт, 11 мая 2023 г. в 13:32, Oleg Nikitenko <oleshiiwood@gmail.com>:

> Hi Michal,
>
> Thanks.
> This compilation previously had a name CONFIG_COLORING.
> It mixed me up.
>
> Regards,
> Oleg
>
> чт, 11 мая 2023 г. в 13:15, Michal Orzel <michal.orzel@amd.com>:
>
>> Hi Oleg,
>>
>> On 11/05/2023 12:02, Oleg Nikitenko wrote:
>> >
>> >
>> >
>> > Hello,
>> >
>> > Thanks Stefano.
>> > Then the next question.
>> > I cloned xen repo from xilinx site https://github.com/Xilinx/xen.git <
>> https://github.com/Xilinx/xen.git>
>> > I managed to build a xlnx_rebase_4.17 branch in my environment.
>> > I did it without coloring first. I did not find any color footprints at
>> this branch.
>> > I realized coloring is not in the xlnx_rebase_4.17 branch yet.
>> This is not true. Cache coloring is in xlnx_rebase_4.17. Please see the
>> docs:
>>
>> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
>>
>> It describes the feature and documents the required properties.
>>
>> ~Michal
>>
>> >
>> >
>> > вт, 9 мая 2023 г. в 22:49, Stefano Stabellini <sstabellini@kernel.org
>> <mailto:sstabellini@kernel.org>>:
>> >
>> >     We test Xen Cache Coloring regularly on zcu102. Every Petalinux
>> release
>> >     (twice a year) is tested with cache coloring enabled. The last
>> Petalinux
>> >     release is 2023.1 and the kernel used is this:
>> >     https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
>> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>
>> >
>> >
>> >     On Tue, 9 May 2023, Oleg Nikitenko wrote:
>> >     > Hello guys,
>> >     >
>> >     > I have a couple of more questions.
>> >     > Have you ever run xen with the cache coloring at Zynq UltraScale+
>> MPSoC zcu102 xczu15eg ?
>> >     > When did you run xen with the cache coloring last time ?
>> >     > What kernel version did you use for Dom0 when you ran xen with
>> the cache coloring last time ?
>> >     >
>> >     > Regards,
>> >     > Oleg
>> >     >
>> >     > пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <oleshiiwood@gmail.com
>> <mailto:oleshiiwood@gmail.com>>:
>> >     >       Hi Michal,
>> >     >
>> >     > Thanks.
>> >     >
>> >     > Regards,
>> >     > Oleg
>> >     >
>> >     > пт, 5 мая 2023 г. в 11:34, Michal Orzel <michal.orzel@amd.com
>> <mailto:michal.orzel@amd.com>>:
>> >     >       Hi Oleg,
>> >     >
>> >     >       Replying, so that you do not need to wait for Stefano.
>> >     >
>> >     >       On 05/05/2023 10:28, Oleg Nikitenko wrote:
>> >     >       >
>> >     >       >
>> >     >       >
>> >     >       > Hello Stefano,
>> >     >       >
>> >     >       > I would like to try a xen cache color property from this
>> repo  https://xenbits.xen.org/git-http/xen.git <
>> https://xenbits.xen.org/git-http/xen.git>
>> >     >       <https://xenbits.xen.org/git-http/xen.git <
>> https://xenbits.xen.org/git-http/xen.git>>
>> >     >       > Could you tell whot branch I should use ?
>> >     >       Cache coloring feature is not part of the upstream tree and
>> it is still under review.
>> >     >       You can only find it integrated in the Xilinx Xen tree.
>> >     >
>> >     >       ~Michal
>> >     >
>> >     >       >
>> >     >       > Regards,
>> >     >       > Oleg
>> >     >       >
>> >     >       > пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
>> >     >       >
>> >     >       >     I am familiar with the zcu102 but I don't know how
>> you could possibly
>> >     >       >     generate a SError.
>> >     >       >
>> >     >       >     I suggest to try to use ImageBuilder [1] to generate
>> the boot
>> >     >       >     configuration as a test because that is known to work
>> well for zcu102.
>> >     >       >
>> >     >       >     [1] https://gitlab.com/xen-project/imagebuilder <
>> https://gitlab.com/xen-project/imagebuilder> <
>> https://gitlab.com/xen-project/imagebuilder <
>> https://gitlab.com/xen-project/imagebuilder>>
>> >     >       >
>> >     >       >
>> >     >       >     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
>> >     >       >     > Hello Stefano,
>> >     >       >     >
>> >     >       >     > Thanks for clarification.
>> >     >       >     > We nighter use ImageBuilder nor uboot boot script.
>> >     >       >     > A model is zcu102 compatible.
>> >     >       >     >
>> >     >       >     > Regards,
>> >     >       >     > O.
>> >     >       >     >
>> >     >       >     > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
>> >     >       >     >       This is interesting. Are you using Xilinx
>> hardware by any chance? If so,
>> >     >       >     >       which board?
>> >     >       >     >
>> >     >       >     >       Are you using ImageBuilder to generate your
>> boot.scr boot script? If so,
>> >     >       >     >       could you please post your ImageBuilder
>> config file? If not, can you
>> >     >       >     >       post the source of your uboot boot script?
>> >     >       >     >
>> >     >       >     >       SErrors are supposed to be related to a
>> hardware failure of some kind.
>> >     >       >     >       You are not supposed to be able to trigger an
>> SError easily by
>> >     >       >     >       "mistake". I have not seen SErrors due to
>> wrong cache coloring
>> >     >       >     >       configurations on any Xilinx board before.
>> >     >       >     >
>> >     >       >     >       The differences between Xen with and without
>> cache coloring from a
>> >     >       >     >       hardware perspective are:
>> >     >       >     >
>> >     >       >     >       - With cache coloring, the SMMU is enabled
>> and does address translations
>> >     >       >     >         even for dom0. Without cache coloring the
>> SMMU could be disabled, and
>> >     >       >     >         if enabled, the SMMU doesn't do any address
>> translations for Dom0. If
>> >     >       >     >         there is a hardware failure related to SMMU
>> address translation it
>> >     >       >     >         could only trigger with cache coloring.
>> This would be my normal
>> >     >       >     >         suggestion for you to explore, but the
>> failure happens too early
>> >     >       >     >         before any DMA-capable device is
>> programmed. So I don't think this can
>> >     >       >     >         be the issue.
>> >     >       >     >
>> >     >       >     >       - With cache coloring, the memory allocation
>> is very different so you'll
>> >     >       >     >         end up using different DDR regions for
>> Dom0. So if your DDR is
>> >     >       >     >         defective, you might only see a failure
>> with cache coloring enabled
>> >     >       >     >         because you end up using different regions.
>> >     >       >     >
>> >     >       >     >
>> >     >       >     >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
>> >     >       >     >       > Hi Stefano,
>> >     >       >     >       >
>> >     >       >     >       > Thank you.
>> >     >       >     >       > If I build xen without colors support there
>> is not this error.
>> >     >       >     >       > All the domains are booted well.
>> >     >       >     >       > Hense it can not be a hardware issue.
>> >     >       >     >       > This panic arrived during unpacking the
>> rootfs.
>> >     >       >     >       > Here I attached the boot log xen/Dom0
>> without color.
>> >     >       >     >       > A highlighted strings printed exactly after
>> the place where 1-st time panic arrived.
>> >     >       >     >       >
>> >     >       >     >       >  Xen 4.16.1-pre
>> >     >       >     >       > (XEN) Xen version 4.16.1-pre (nole2390@(none))
>> (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y
>> >     >       2023-04-21
>> >     >       >     >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14
>> 2023 +0300 git:321687b231-dirty
>> >     >       >     >       > (XEN) build-id:
>> c1847258fdb1b79562fc710dda40008f96c0fde5
>> >     >       >     >       > (XEN) Processor: 00000000410fd034: "ARM
>> Limited", variant: 0x0, part 0xd03,rev 0x4
>> >     >       >     >       > (XEN) 64-bit Execution:
>> >     >       >     >       > (XEN)   Processor Features:
>> 0000000000002222 0000000000000000
>> >     >       >     >       > (XEN)     Exception Levels: EL3:64+32
>> EL2:64+32 EL1:64+32 EL0:64+32
>> >     >       >     >       > (XEN)     Extensions: FloatingPoint
>> AdvancedSIMD
>> >     >       >     >       > (XEN)   Debug Features: 0000000010305106
>> 0000000000000000
>> >     >       >     >       > (XEN)   Auxiliary Features:
>> 0000000000000000 0000000000000000
>> >     >       >     >       > (XEN)   Memory Model Features:
>> 0000000000001122 0000000000000000
>> >     >       >     >       > (XEN)   ISA Features:  0000000000011120
>> 0000000000000000
>> >     >       >     >       > (XEN) 32-bit Execution:
>> >     >       >     >       > (XEN)   Processor Features:
>> 0000000000000131:0000000000011011
>> >     >       >     >       > (XEN)     Instruction Sets: AArch32 A32
>> Thumb Thumb-2 Jazelle
>> >     >       >     >       > (XEN)     Extensions: GenericTimer Security
>> >     >       >     >       > (XEN)   Debug Features: 0000000003010066
>> >     >       >     >       > (XEN)   Auxiliary Features: 0000000000000000
>> >     >       >     >       > (XEN)   Memory Model Features:
>> 0000000010201105 0000000040000000
>> >     >       >     >       > (XEN)
>>  0000000001260000 0000000002102211
>> >     >       >     >       > (XEN)   ISA Features: 0000000002101110
>> 0000000013112111 0000000021232042
>> >     >       >     >       > (XEN)                 0000000001112131
>> 0000000000011142 0000000000011121
>> >     >       >     >       > (XEN) Using SMC Calling Convention v1.2
>> >     >       >     >       > (XEN) Using PSCI v1.1
>> >     >       >     >       > (XEN) SMP: Allowing 4 CPUs
>> >     >       >     >       > (XEN) Generic Timer IRQ: phys=30 hyp=26
>> virt=27 Freq: 100000 KHz
>> >     >       >     >       > (XEN) GICv2 initialization:
>> >     >       >     >       > (XEN)         gic_dist_addr=00000000f9010000
>> >     >       >     >       > (XEN)         gic_cpu_addr=00000000f9020000
>> >     >       >     >       > (XEN)         gic_hyp_addr=00000000f9040000
>> >     >       >     >       > (XEN)         gic_vcpu_addr=00000000f9060000
>> >     >       >     >       > (XEN)         gic_maintenance_irq=25
>> >     >       >     >       > (XEN) GICv2: Adjusting CPU interface base
>> to 0xf902f000
>> >     >       >     >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID
>> 0200143b).
>> >     >       >     >       > (XEN) Using scheduler: null Scheduler (null)
>> >     >       >     >       > (XEN) Initializing null scheduler
>> >     >       >     >       > (XEN) WARNING: This is experimental
>> software in development.
>> >     >       >     >       > (XEN) Use at your own risk.
>> >     >       >     >       > (XEN) Allocated console ring of 32 KiB.
>> >     >       >     >       > (XEN) CPU0: Guest atomics will try 12 times
>> before pausing the domain
>> >     >       >     >       > (XEN) Bringing up CPU1
>> >     >       >     >       > (XEN) CPU1: Guest atomics will try 13 times
>> before pausing the domain
>> >     >       >     >       > (XEN) CPU 1 booted.
>> >     >       >     >       > (XEN) Bringing up CPU2
>> >     >       >     >       > (XEN) CPU2: Guest atomics will try 13 times
>> before pausing the domain
>> >     >       >     >       > (XEN) CPU 2 booted.
>> >     >       >     >       > (XEN) Bringing up CPU3
>> >     >       >     >       > (XEN) CPU3: Guest atomics will try 13 times
>> before pausing the domain
>> >     >       >     >       > (XEN) Brought up 4 CPUs
>> >     >       >     >       > (XEN) CPU 3 booted.
>> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: probing
>> hardware configuration...
>> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2
>> with:
>> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stage 2
>> translation
>> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stream
>> matching with 48 register groups, mask 0x7fff<2>smmu:
>> >     >       /axi/smmu@fd800000: 16 context
>> >     >       >     >       banks (0
>> >     >       >     >       > stage-2 only)
>> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2:
>> 48-bit IPA -> 48-bit PA
>> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: registered
>> 29 master devices
>> >     >       >     >       > (XEN) I/O virtualisation enabled
>> >     >       >     >       > (XEN)  - Dom0 mode: Relaxed
>> >     >       >     >       > (XEN) P2M: 40-bit IPA with 40-bit PA and
>> 8-bit VMID
>> >     >       >     >       > (XEN) P2M: 3 levels with order-1 root, VTCR
>> 0x0000000080023558
>> >     >       >     >       > (XEN) Scheduling granularity: cpu, 1 CPU
>> per sched-resource
>> >     >       >     >       > (XEN) alternatives: Patching with alt table
>> 00000000002cc5c8 -> 00000000002ccb2c
>> >     >       >     >       > (XEN) *** LOADING DOMAIN 0 ***
>> >     >       >     >       > (XEN) Loading d0 kernel from boot module @
>> 0000000001000000
>> >     >       >     >       > (XEN) Loading ramdisk from boot module @
>> 0000000002000000
>> >     >       >     >       > (XEN) Allocating 1:1 mappings totalling
>> 1600MB for dom0:
>> >     >       >     >       > (XEN) BANK[0]
>> 0x00000010000000-0x00000020000000 (256MB)
>> >     >       >     >       > (XEN) BANK[1]
>> 0x00000024000000-0x00000028000000 (64MB)
>> >     >       >     >       > (XEN) BANK[2]
>> 0x00000030000000-0x00000080000000 (1280MB)
>> >     >       >     >       > (XEN) Grant table range:
>> 0x00000000e00000-0x00000000e40000
>> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: d0:
>> p2maddr 0x000000087bf94000
>> >     >       >     >       > (XEN) Allocating PPI 16 for event channel
>> interrupt
>> >     >       >     >       > (XEN) Extended region 0:
>> 0x81200000->0xa0000000
>> >     >       >     >       > (XEN) Extended region 1:
>> 0xb1200000->0xc0000000
>> >     >       >     >       > (XEN) Extended region 2:
>> 0xc8000000->0xe0000000
>> >     >       >     >       > (XEN) Extended region 3:
>> 0xf0000000->0xf9000000
>> >     >       >     >       > (XEN) Extended region 4:
>> 0x100000000->0x600000000
>> >     >       >     >       > (XEN) Extended region 5:
>> 0x880000000->0x8000000000
>> >     >       >     >       > (XEN) Extended region 6:
>> 0x8001000000->0x10000000000
>> >     >       >     >       > (XEN) Loading zImage from 0000000001000000
>> to 0000000010000000-0000000010e41008
>> >     >       >     >       > (XEN) Loading d0 initrd from
>> 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
>> >     >       >     >       > (XEN) Loading d0 DTB to
>> 0x0000000013400000-0x000000001340cbdc
>> >     >       >     >       > (XEN) Initial low memory virq threshold set
>> at 0x4000 pages.
>> >     >       >     >       > (XEN) Std. Loglevel: All
>> >     >       >     >       > (XEN) Guest Loglevel: All
>> >     >       >     >       > (XEN) *** Serial input to DOM0 (type
>> 'CTRL-a' three times to switch input)
>> >     >       >     >       > (XEN) null.c:353: 0 <-- d0v0
>> >     >       >     >       > (XEN) Freed 356kB init memory.
>> >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
>> >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
>> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
>> 0x000000ffffffff to ICACTIVER4
>> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
>> 0x000000ffffffff to ICACTIVER8
>> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
>> 0x000000ffffffff to ICACTIVER12
>> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
>> 0x000000ffffffff to ICACTIVER16
>> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
>> 0x000000ffffffff to ICACTIVER20
>> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
>> 0x000000ffffffff to ICACTIVER0
>> >     >       >     >       > [    0.000000] Booting Linux on physical
>> CPU 0x0000000000 [0x410fd034]
>> >     >       >     >       > [    0.000000] Linux version
>> 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc
>> (GCC)
>> >     >       11.3.0, GNU ld (GNU
>> >     >       >     >       Binutils)
>> >     >       >     >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54
>> UTC 2023
>> >     >       >     >       > [    0.000000] Machine model: D14 Viper
>> Board - White Unit
>> >     >       >     >       > [    0.000000] Xen 4.16 support found
>> >     >       >     >       > [    0.000000] Zone ranges:
>> >     >       >     >       > [    0.000000]   DMA      [mem
>> 0x0000000010000000-0x000000007fffffff]
>> >     >       >     >       > [    0.000000]   DMA32    empty
>> >     >       >     >       > [    0.000000]   Normal   empty
>> >     >       >     >       > [    0.000000] Movable zone start for each
>> node
>> >     >       >     >       > [    0.000000] Early memory node ranges
>> >     >       >     >       > [    0.000000]   node   0: [mem
>> 0x0000000010000000-0x000000001fffffff]
>> >     >       >     >       > [    0.000000]   node   0: [mem
>> 0x0000000022000000-0x0000000022147fff]
>> >     >       >     >       > [    0.000000]   node   0: [mem
>> 0x0000000022200000-0x0000000022347fff]
>> >     >       >     >       > [    0.000000]   node   0: [mem
>> 0x0000000024000000-0x0000000027ffffff]
>> >     >       >     >       > [    0.000000]   node   0: [mem
>> 0x0000000030000000-0x000000007fffffff]
>> >     >       >     >       > [    0.000000] Initmem setup node 0 [mem
>> 0x0000000010000000-0x000000007fffffff]
>> >     >       >     >       > [    0.000000] On node 0, zone DMA: 8192
>> pages in unavailable ranges
>> >     >       >     >       > [    0.000000] On node 0, zone DMA: 184
>> pages in unavailable ranges
>> >     >       >     >       > [    0.000000] On node 0, zone DMA: 7352
>> pages in unavailable ranges
>> >     >       >     >       > [    0.000000] cma: Reserved 256 MiB at
>> 0x000000006e000000
>> >     >       >     >       > [    0.000000] psci: probing for conduit
>> method from DT.
>> >     >       >     >       > [    0.000000] psci: PSCIv1.1 detected in
>> firmware.
>> >     >       >     >       > [    0.000000] psci: Using standard PSCI
>> v0.2 function IDs
>> >     >       >     >       > [    0.000000] psci: Trusted OS migration
>> not required
>> >     >       >     >       > [    0.000000] psci: SMC Calling Convention
>> v1.1
>> >     >       >     >       > [    0.000000] percpu: Embedded 16
>> pages/cpu s32792 r0 d32744 u65536
>> >     >       >     >       > [    0.000000] Detected VIPT I-cache on CPU0
>> >     >       >     >       > [    0.000000] CPU features: kernel page
>> table isolation forced ON by KASLR
>> >     >       >     >       > [    0.000000] CPU features: detected:
>> Kernel page table isolation (KPTI)
>> >     >       >     >       > [    0.000000] Built 1 zonelists, mobility
>> grouping on.  Total pages: 403845
>> >     >       >     >       > [    0.000000] Kernel command line:
>> console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused fips=1
>> >     >       root=/dev/ram0
>> >     >       >     >       maxcpus=2
>> >     >       >     >       > [    0.000000] Unknown kernel command line
>> parameters "earlyprintk=xen fips=1", will be passed to user
>> >     >       space.
>> >     >       >     >       > [    0.000000] Dentry cache hash table
>> entries: 262144 (order: 9, 2097152 bytes, linear)
>> >     >       >     >       > [    0.000000] Inode-cache hash table
>> entries: 131072 (order: 8, 1048576 bytes, linear)
>> >     >       >     >       > [    0.000000] mem auto-init: stack:off,
>> heap alloc:on, heap free:on
>> >     >       >     >       > [    0.000000] mem auto-init: clearing
>> system memory may take some time...
>> >     >       >     >       > [    0.000000] Memory: 1121936K/1641024K
>> available (9728K kernel code, 836K rwdata, 2396K rodata, 1536K
>> >     >       init, 262K bss,
>> >     >       >     >       256944K reserved,
>> >     >       >     >       > 262144K cma-reserved)
>> >     >       >     >       > [    0.000000] SLUB: HWalign=64, Order=0-3,
>> MinObjects=0, CPUs=2, Nodes=1
>> >     >       >     >       > [    0.000000] rcu: Hierarchical RCU
>> implementation.
>> >     >       >     >       > [    0.000000] rcu: RCU event tracing is
>> enabled.
>> >     >       >     >       > [    0.000000] rcu: RCU restricting CPUs
>> from NR_CPUS=8 to nr_cpu_ids=2.
>> >     >       >     >       > [    0.000000] rcu: RCU calculated value of
>> scheduler-enlistment delay is 25 jiffies.
>> >     >       >     >       > [    0.000000] rcu: Adjusting geometry for
>> rcu_fanout_leaf=16, nr_cpu_ids=2
>> >     >       >     >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64,
>> preallocated irqs: 0
>> >     >       >     >       > [    0.000000] Root IRQ handler:
>> gic_handle_irq
>> >     >       >     >       > [    0.000000] arch_timer: cp15 timer(s)
>> running at 100.00MHz (virt).
>> >     >       >     >       > [    0.000000] clocksource:
>> arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0,
>> >     >       max_idle_ns: 440795205315 ns
>> >     >       >     >       > [    0.000000] sched_clock: 56 bits at
>> 100MHz, resolution 10ns, wraps every 4398046511100ns
>> >     >       >     >       > [    0.000258] Console: colour dummy device
>> 80x25
>> >     >       >     >       > [    0.310231] printk: console [hvc0]
>> enabled
>> >     >       >     >       > [    0.314403] Calibrating delay loop
>> (skipped), value calculated using timer frequency.. 200.00 BogoMIPS
>> >     >       (lpj=400000)
>> >     >       >     >       > [    0.324851] pid_max: default: 32768
>> minimum: 301
>> >     >       >     >       > [    0.329706] LSM: Security Framework
>> initializing
>> >     >       >     >       > [    0.334204] Yama: becoming mindful.
>> >     >       >     >       > [    0.337865] Mount-cache hash table
>> entries: 4096 (order: 3, 32768 bytes, linear)
>> >     >       >     >       > [    0.345180] Mountpoint-cache hash table
>> entries: 4096 (order: 3, 32768 bytes, linear)
>> >     >       >     >       > [    0.354743] xen:grant_table: Grant
>> tables using version 1 layout
>> >     >       >     >       > [    0.359132] Grant table initialized
>> >     >       >     >       > [    0.362664] xen:events: Using FIFO-based
>> ABI
>> >     >       >     >       > [    0.366993] Xen: initializing cpu0
>> >     >       >     >       > [    0.370515] rcu: Hierarchical SRCU
>> implementation.
>> >     >       >     >       > [    0.375930] smp: Bringing up secondary
>> CPUs ...
>> >     >       >     >       > (XEN) null.c:353: 1 <-- d0v1
>> >     >       >     >       > (XEN) d0v1: vGICD: unhandled word write
>> 0x000000ffffffff to ICACTIVER0
>> >     >       >     >       > [    0.382549] Detected VIPT I-cache on CPU1
>> >     >       >     >       > [    0.388712] Xen: initializing cpu1
>> >     >       >     >       > [    0.388743] CPU1: Booted secondary
>> processor 0x0000000001 [0x410fd034]
>> >     >       >     >       > [    0.388829] smp: Brought up 1 node, 2
>> CPUs
>> >     >       >     >       > [    0.406941] SMP: Total of 2 processors
>> activated.
>> >     >       >     >       > [    0.411698] CPU features: detected:
>> 32-bit EL0 Support
>> >     >       >     >       > [    0.416888] CPU features: detected:
>> CRC32 instructions
>> >     >       >     >       > [    0.422121] CPU: All CPU(s) started at
>> EL1
>> >     >       >     >       > [    0.426248] alternatives: patching
>> kernel code
>> >     >       >     >       > [    0.431424] devtmpfs: initialized
>> >     >       >     >       > [    0.441454] KASLR enabled
>> >     >       >     >       > [    0.441602] clocksource: jiffies: mask:
>> 0xffffffff max_cycles: 0xffffffff, max_idle_ns:
>> >     >       7645041785100000 ns
>> >     >       >     >       > [    0.448321] futex hash table entries:
>> 512 (order: 3, 32768 bytes, linear)
>> >     >       >     >       > [    0.496183] NET: Registered
>> PF_NETLINK/PF_ROUTE protocol family
>> >     >       >     >       > [    0.498277] DMA: preallocated 256 KiB
>> GFP_KERNEL pool for atomic allocations
>> >     >       >     >       > [    0.503772] DMA: preallocated 256 KiB
>> GFP_KERNEL|GFP_DMA pool for atomic allocations
>> >     >       >     >       > [    0.511610] DMA: preallocated 256 KiB
>> GFP_KERNEL|GFP_DMA32 pool for atomic allocations
>> >     >       >     >       > [    0.519478] audit: initializing netlink
>> subsys (disabled)
>> >     >       >     >       > [    0.524985] audit: type=2000
>> audit(0.336:1): state=initialized audit_enabled=0 res=1
>> >     >       >     >       > [    0.529169] thermal_sys: Registered
>> thermal governor 'step_wise'
>> >     >       >     >       > [    0.533023] hw-breakpoint: found 6
>> breakpoint and 4 watchpoint registers.
>> >     >       >     >       > [    0.545608] ASID allocator initialised
>> with 32768 entries
>> >     >       >     >       > [    0.551030] xen:swiotlb_xen: Warning:
>> only able to allocate 4 MB for software IO TLB
>> >     >       >     >       > [    0.559332] software IO TLB: mapped [mem
>> 0x0000000011800000-0x0000000011c00000] (4MB)
>> >     >       >     >       > [    0.583565] HugeTLB registered 1.00 GiB
>> page size, pre-allocated 0 pages
>> >     >       >     >       > [    0.584721] HugeTLB registered 32.0 MiB
>> page size, pre-allocated 0 pages
>> >     >       >     >       > [    0.591478] HugeTLB registered 2.00 MiB
>> page size, pre-allocated 0 pages
>> >     >       >     >       > [    0.598225] HugeTLB registered 64.0 KiB
>> page size, pre-allocated 0 pages
>> >     >       >     >       > [    0.636520] DRBG: Continuing without
>> Jitter RNG
>> >     >       >     >       > [    0.737187] raid6: neonx8   gen()  2143
>> MB/s
>> >     >       >     >       > [    0.805294] raid6: neonx8   xor()  1589
>> MB/s
>> >     >       >     >       > [    0.873406] raid6: neonx4   gen()  2177
>> MB/s
>> >     >       >     >       > [    0.941499] raid6: neonx4   xor()  1556
>> MB/s
>> >     >       >     >       > [    1.009612] raid6: neonx2   gen()  2072
>> MB/s
>> >     >       >     >       > [    1.077715] raid6: neonx2   xor()  1430
>> MB/s
>> >     >       >     >       > [    1.145834] raid6: neonx1   gen()  1769
>> MB/s
>> >     >       >     >       > [    1.213935] raid6: neonx1   xor()  1214
>> MB/s
>> >     >       >     >       > [    1.282046] raid6: int64x8  gen()  1366
>> MB/s
>> >     >       >     >       > [    1.350132] raid6: int64x8  xor()   773
>> MB/s
>> >     >       >     >       > [    1.418259] raid6: int64x4  gen()  1602
>> MB/s
>> >     >       >     >       > [    1.486349] raid6: int64x4  xor()   851
>> MB/s
>> >     >       >     >       > [    1.554464] raid6: int64x2  gen()  1396
>> MB/s
>> >     >       >     >       > [    1.622561] raid6: int64x2  xor()   744
>> MB/s
>> >     >       >     >       > [    1.690687] raid6: int64x1  gen()  1033
>> MB/s
>> >     >       >     >       > [    1.758770] raid6: int64x1  xor()   517
>> MB/s
>> >     >       >     >       > [    1.758809] raid6: using algorithm
>> neonx4 gen() 2177 MB/s
>> >     >       >     >       > [    1.762941] raid6: .... xor() 1556 MB/s,
>> rmw enabled
>> >     >       >     >       > [    1.767957] raid6: using neon recovery
>> algorithm
>> >     >       >     >       > [    1.772824] xen:balloon: Initialising
>> balloon driver
>> >     >       >     >       > [    1.778021] iommu: Default domain type:
>> Translated
>> >     >       >     >       > [    1.782584] iommu: DMA domain TLB
>> invalidation policy: strict mode
>> >     >       >     >       > [    1.789149] SCSI subsystem initialized
>> >     >       >     >       > [    1.792820] usbcore: registered new
>> interface driver usbfs
>> >     >       >     >       > [    1.798254] usbcore: registered new
>> interface driver hub
>> >     >       >     >       > [    1.803626] usbcore: registered new
>> device driver usb
>> >     >       >     >       > [    1.808761] pps_core: LinuxPPS API ver.
>> 1 registered
>> >     >       >     >       > [    1.813716] pps_core: Software ver.
>> 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it <mailto:
>> giometti@linux.it>
>> >     >       <mailto:giometti@linux.it <mailto:giometti@linux.it>>>
>> >     >       >     >       > [    1.822903] PTP clock support registered
>> >     >       >     >       > [    1.826893] EDAC MC: Ver: 3.0.0
>> >     >       >     >       > [    1.830375] zynqmp-ipi-mbox
>> mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
>> >     >       >     >       > [    1.838863] zynqmp-ipi-mbox
>> mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX channels.
>> >     >       >     >       > [    1.847356] zynqmp-ipi-mbox
>> mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX channels.
>> >     >       >     >       > [    1.855907] FPGA manager framework
>> >     >       >     >       > [    1.859952] clocksource: Switched to
>> clocksource arch_sys_counter
>> >     >       >     >       > [    1.871712] NET: Registered PF_INET
>> protocol family
>> >     >       >     >       > [    1.871838] IP idents hash table
>> entries: 32768 (order: 6, 262144 bytes, linear)
>> >     >       >     >       > [    1.879392] tcp_listen_portaddr_hash
>> hash table entries: 1024 (order: 2, 16384 bytes, linear)
>> >     >       >     >       > [    1.887078] Table-perturb hash table
>> entries: 65536 (order: 6, 262144 bytes, linear)
>> >     >       >     >       > [    1.894846] TCP established hash table
>> entries: 16384 (order: 5, 131072 bytes, linear)
>> >     >       >     >       > [    1.902900] TCP bind hash table entries:
>> 16384 (order: 6, 262144 bytes, linear)
>> >     >       >     >       > [    1.910350] TCP: Hash tables configured
>> (established 16384 bind 16384)
>> >     >       >     >       > [    1.916778] UDP hash table entries: 1024
>> (order: 3, 32768 bytes, linear)
>> >     >       >     >       > [    1.923509] UDP-Lite hash table entries:
>> 1024 (order: 3, 32768 bytes, linear)
>> >     >       >     >       > [    1.930759] NET: Registered
>> PF_UNIX/PF_LOCAL protocol family
>> >     >       >     >       > [    1.936834] RPC: Registered named UNIX
>> socket transport module.
>> >     >       >     >       > [    1.942342] RPC: Registered udp
>> transport module.
>> >     >       >     >       > [    1.947088] RPC: Registered tcp
>> transport module.
>> >     >       >     >       > [    1.951843] RPC: Registered tcp NFSv4.1
>> backchannel transport module.
>> >     >       >     >       > [    1.958334] PCI: CLS 0 bytes, default 64
>> >     >       >     >       > [    1.962709] Trying to unpack rootfs
>> image as initramfs...
>> >     >       >     >       > [    1.977090] workingset:
>> timestamp_bits=62 max_order=19 bucket_order=0
>> >     >       >     >       > [    1.982863] Installing knfsd (copyright
>> (C) 1996 okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:
>> okir@monad.swb.de <mailto:okir@monad.swb.de>>).
>> >     >       >     >       > [    2.021045] NET: Registered PF_ALG
>> protocol family
>> >     >       >     >       > [    2.021122] xor: measuring software
>> checksum speed
>> >     >       >     >       > [    2.029347]    8regs           :  2366
>> MB/sec
>> >     >       >     >       > [    2.033081]    32regs          :  2802
>> MB/sec
>> >     >       >     >       > [    2.038223]    arm64_neon      :  2320
>> MB/sec
>> >     >       >     >       > [    2.038385] xor: using function: 32regs
>> (2802 MB/sec)
>> >     >       >     >       > [    2.043614] Block layer SCSI generic
>> (bsg) driver version 0.4 loaded (major 247)
>> >     >       >     >       > [    2.050959] io scheduler mq-deadline
>> registered
>> >     >       >     >       > [    2.055521] io scheduler kyber registered
>> >     >       >     >       > [    2.068227] xen:xen_evtchn:
>> Event-channel device installed
>> >     >       >     >       > [    2.069281] Serial: 8250/16550 driver, 4
>> ports, IRQ sharing disabled
>> >     >       >     >       > [    2.076190] cacheinfo: Unable to detect
>> cache hierarchy for CPU 0
>> >     >       >     >       > [    2.085548] brd: module loaded
>> >     >       >     >       > [    2.089290] loop: module loaded
>> >     >       >     >       > [    2.089341] Invalid max_queues (4), will
>> use default max: 2.
>> >     >       >     >       > [    2.094565] tun: Universal TUN/TAP
>> device driver, 1.6
>> >     >       >     >       > [    2.098655] xen_netfront: Initialising
>> Xen virtual ethernet driver
>> >     >       >     >       > [    2.104156] usbcore: registered new
>> interface driver rtl8150
>> >     >       >     >       > [    2.109813] usbcore: registered new
>> interface driver r8152
>> >     >       >     >       > [    2.115367] usbcore: registered new
>> interface driver asix
>> >     >       >     >       > [    2.120794] usbcore: registered new
>> interface driver ax88179_178a
>> >     >       >     >       > [    2.126934] usbcore: registered new
>> interface driver cdc_ether
>> >     >       >     >       > [    2.132816] usbcore: registered new
>> interface driver cdc_eem
>> >     >       >     >       > [    2.138527] usbcore: registered new
>> interface driver net1080
>> >     >       >     >       > [    2.144256] usbcore: registered new
>> interface driver cdc_subset
>> >     >       >     >       > [    2.150205] usbcore: registered new
>> interface driver zaurus
>> >     >       >     >       > [    2.155837] usbcore: registered new
>> interface driver cdc_ncm
>> >     >       >     >       > [    2.161550] usbcore: registered new
>> interface driver r8153_ecm
>> >     >       >     >       > [    2.168240] usbcore: registered new
>> interface driver cdc_acm
>> >     >       >     >       > [    2.173109] cdc_acm: USB Abstract
>> Control Model driver for USB modems and ISDN adapters
>> >     >       >     >       > [    2.181358] usbcore: registered new
>> interface driver uas
>> >     >       >     >       > [    2.186547] usbcore: registered new
>> interface driver usb-storage
>> >     >       >     >       > [    2.192643] usbcore: registered new
>> interface driver ftdi_sio
>> >     >       >     >       > [    2.198384] usbserial: USB Serial
>> support registered for FTDI USB Serial Device
>> >     >       >     >       > [    2.206118] udc-core: couldn't find an
>> available UDC - added [g_mass_storage] to list of pending
>> >     >       drivers
>> >     >       >     >       > [    2.215332] i2c_dev: i2c /dev entries
>> driver
>> >     >       >     >       > [    2.220467] xen_wdt xen_wdt: initialized
>> (timeout=60s, nowayout=0)
>> >     >       >     >       > [    2.225923] device-mapper: uevent:
>> version 1.0.3
>> >     >       >     >       > [    2.230668] device-mapper: ioctl:
>> 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com <mailto:
>> dm-devel@redhat.com>
>> >     >       <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>>
>> >     >       >     >       > [    2.239315] EDAC MC0: Giving out device
>> to module 1 controller synps_ddr_controller: DEV synps_edac
>> >     >       (INTERRUPT)
>> >     >       >     >       > [    2.249405] EDAC DEVICE0: Giving out
>> device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV
>> >     >       >     >       ff960000.memory-controller (INTERRUPT)
>> >     >       >     >       > [    2.261719] sdhci: Secure Digital Host
>> Controller Interface driver
>> >     >       >     >       > [    2.267487] sdhci: Copyright(c) Pierre
>> Ossman
>> >     >       >     >       > [    2.271890] sdhci-pltfm: SDHCI platform
>> and OF driver helper
>> >     >       >     >       > [    2.278157] ledtrig-cpu: registered to
>> indicate activity on CPUs
>> >     >       >     >       > [    2.283816] zynqmp_firmware_probe
>> Platform Management API v1.1
>> >     >       >     >       > [    2.289554] zynqmp_firmware_probe
>> Trustzone version v1.0
>> >     >       >     >       > [    2.327875] securefw securefw: securefw
>> probed
>> >     >       >     >       > [    2.328324] alg: No test for
>> xilinx-zynqmp-aes (zynqmp-aes)
>> >     >       >     >       > [    2.332563] zynqmp_aes
>> firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
>> >     >       >     >       > [    2.341183] alg: No test for
>> xilinx-zynqmp-rsa (zynqmp-rsa)
>> >     >       >     >       > [    2.347667] remoteproc remoteproc0:
>> ff9a0000.rf5ss:r5f_0 is available
>> >     >       >     >       > [    2.353003] remoteproc remoteproc1:
>> ff9a0000.rf5ss:r5f_1 is available
>> >     >       >     >       > [    2.362605] fpga_manager fpga0: Xilinx
>> ZynqMP FPGA Manager registered
>> >     >       >     >       > [    2.366540] viper-xen-proxy
>> viper-xen-proxy: Viper Xen Proxy registered
>> >     >       >     >       > [    2.372525] viper-vdpp a4000000.vdpp:
>> Device Tree Probing
>> >     >       >     >       > [    2.377778] viper-vdpp a4000000.vdpp:
>> VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>> >     >       >     >       > [    2.386432] viper-vdpp a4000000.vdpp:
>> Unable to register tamper handler. Retrying...
>> >     >       >     >       > [    2.394094] viper-vdpp-net
>> a5000000.vdpp_net: Device Tree Probing
>> >     >       >     >       > [    2.399854] viper-vdpp-net
>> a5000000.vdpp_net: Device registered
>> >     >       >     >       > [    2.405931] viper-vdpp-stat
>> a8000000.vdpp_stat: Device Tree Probing
>> >     >       >     >       > [    2.412037] viper-vdpp-stat
>> a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event Count: 32
>> >     >       >     >       > [    2.420856] default preset
>> >     >       >     >       > [    2.423797] viper-vdpp-stat
>> a8000000.vdpp_stat: Device registered
>> >     >       >     >       > [    2.430054] viper-vdpp-rng
>> ac000000.vdpp_rng: Device Tree Probing
>> >     >       >     >       > [    2.435948] viper-vdpp-rng
>> ac000000.vdpp_rng: Device registered
>> >     >       >     >       > [    2.441976] vmcu driver init
>> >     >       >     >       > [    2.444922] VMCU: : (240:0) registered
>> >     >       >     >       > [    2.444956] In K81 Updater init
>> >     >       >     >       > [    2.449003] pktgen: Packet Generator for
>> packet performance testing. Version: 2.75
>> >     >       >     >       > [    2.468833] Initializing XFRM netlink
>> socket
>> >     >       >     >       > [    2.468902] NET: Registered PF_PACKET
>> protocol family
>> >     >       >     >       > [    2.472729] Bridge firewalling registered
>> >     >       >     >       > [    2.476785] 8021q: 802.1Q VLAN Support
>> v1.8
>> >     >       >     >       > [    2.481341] registered taskstats version
>> 1
>> >     >       >     >       > [    2.486394] Btrfs loaded,
>> crc32c=crc32c-generic, zoned=no, fsverity=no
>> >     >       >     >       > [    2.503145] ff010000.serial: ttyPS1 at
>> MMIO 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
>> >     >       >     >       > [    2.507103] of-fpga-region fpga-full:
>> FPGA Region probed
>> >     >       >     >       > [    2.512986] xilinx-zynqmp-dma
>> fd500000.dma-controller: ZynqMP DMA driver Probe success
>> >     >       >     >       > [    2.520267] xilinx-zynqmp-dma
>> fd510000.dma-controller: ZynqMP DMA driver Probe success
>> >     >       >     >       > [    2.528239] xilinx-zynqmp-dma
>> fd520000.dma-controller: ZynqMP DMA driver Probe success
>> >     >       >     >       > [    2.536152] xilinx-zynqmp-dma
>> fd530000.dma-controller: ZynqMP DMA driver Probe success
>> >     >       >     >       > [    2.544153] xilinx-zynqmp-dma
>> fd540000.dma-controller: ZynqMP DMA driver Probe success
>> >     >       >     >       > [    2.552127] xilinx-zynqmp-dma
>> fd550000.dma-controller: ZynqMP DMA driver Probe success
>> >     >       >     >       > [    2.560178] xilinx-zynqmp-dma
>> ffa80000.dma-controller: ZynqMP DMA driver Probe success
>> >     >       >     >       > [    2.567987] xilinx-zynqmp-dma
>> ffa90000.dma-controller: ZynqMP DMA driver Probe success
>> >     >       >     >       > [    2.576018] xilinx-zynqmp-dma
>> ffaa0000.dma-controller: ZynqMP DMA driver Probe success
>> >     >       >     >       > [    2.583889] xilinx-zynqmp-dma
>> ffab0000.dma-controller: ZynqMP DMA driver Probe success
>> >     >       >     >       > [    2.946379] spi-nor spi0.0: mt25qu512a
>> (131072 Kbytes)
>> >     >       >     >       > [    2.946467] 2 fixed-partitions
>> partitions found on MTD device spi0.0
>> >     >       >     >       > [    2.952393] Creating 2 MTD partitions on
>> "spi0.0":
>> >     >       >     >       > [    2.957231]
>> 0x000004000000-0x000008000000 : "bank A"
>> >     >       >     >       > [    2.963332]
>> 0x000000000000-0x000004000000 : "bank B"
>> >     >       >     >       > [    2.968694] macb ff0b0000.ethernet: Not
>> enabling partial store and forward
>> >     >       >     >       > [    2.975333] macb ff0b0000.ethernet eth0:
>> Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25
>> >     >       (18:41:fe:0f:ff:02)
>> >     >       >     >       > [    2.984472] macb ff0c0000.ethernet: Not
>> enabling partial store and forward
>> >     >       >     >       > [    2.992144] macb ff0c0000.ethernet eth1:
>> Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26
>> >     >       (18:41:fe:0f:ff:03)
>> >     >       >     >       > [    3.001043] viper_enet viper_enet: Viper
>> power GPIOs initialised
>> >     >       >     >       > [    3.007313] viper_enet viper_enet vnet0
>> (uninitialized): Validate interface QSGMII
>> >     >       >     >       > [    3.014914] viper_enet viper_enet vnet1
>> (uninitialized): Validate interface QSGMII
>> >     >       >     >       > [    3.022138] viper_enet viper_enet vnet1
>> (uninitialized): Validate interface type 18
>> >     >       >     >       > [    3.030274] viper_enet viper_enet vnet2
>> (uninitialized): Validate interface QSGMII
>> >     >       >     >       > [    3.037785] viper_enet viper_enet vnet3
>> (uninitialized): Validate interface QSGMII
>> >     >       >     >       > [    3.045301] viper_enet viper_enet: Viper
>> enet registered
>> >     >       >     >       > [    3.050958] xilinx-axipmon
>> ffa00000.perf-monitor: Probed Xilinx APM
>> >     >       >     >       > [    3.057135] xilinx-axipmon
>> fd0b0000.perf-monitor: Probed Xilinx APM
>> >     >       >     >       > [    3.063538] xilinx-axipmon
>> fd490000.perf-monitor: Probed Xilinx APM
>> >     >       >     >       > [    3.069920] xilinx-axipmon
>> ffa10000.perf-monitor: Probed Xilinx APM
>> >     >       >     >       > [    3.097729] si70xx: probe of 2-0040
>> failed with error -5
>> >     >       >     >       > [    3.098042] cdns-wdt fd4d0000.watchdog:
>> Xilinx Watchdog Timer with timeout 60s
>> >     >       >     >       > [    3.105111] cdns-wdt ff150000.watchdog:
>> Xilinx Watchdog Timer with timeout 10s
>> >     >       >     >       > [    3.112457] viper-tamper viper-tamper:
>> Device registered
>> >     >       >     >       > [    3.117593] active_bank active_bank:
>> boot bank: 1
>> >     >       >     >       > [    3.122184] active_bank active_bank:
>> boot mode: (0x02) qspi32
>> >     >       >     >       > [    3.128247] viper-vdpp a4000000.vdpp:
>> Device Tree Probing
>> >     >       >     >       > [    3.133439] viper-vdpp a4000000.vdpp:
>> VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>> >     >       >     >       > [    3.142151] viper-vdpp a4000000.vdpp:
>> Tamper handler registered
>> >     >       >     >       > [    3.147438] viper-vdpp a4000000.vdpp:
>> Device registered
>> >     >       >     >       > [    3.153007] lpc55_l2 spi1.0: registered
>> handler for protocol 0
>> >     >       >     >       > [    3.158582] lpc55_user lpc55_user: The
>> major number for your device is 236
>> >     >       >     >       > [    3.165976] lpc55_l2 spi1.0: registered
>> handler for protocol 1
>> >     >       >     >       > [    3.181999] rtc-lpc55 rtc_lpc55:
>> lpc55_rtc_get_time: bad result: 1
>> >     >       >     >       > [    3.182856] rtc-lpc55 rtc_lpc55:
>> registered as rtc0
>> >     >       >     >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu
>> still not ready?
>> >     >       >     >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu
>> still not ready?
>> >     >       >     >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu
>> still not ready?
>> >     >       >     >       > [    3.202932] mmc0: SDHCI controller on
>> ff160000.mmc [ff160000.mmc] using ADMA 64-bit
>> >     >       >     >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu
>> still not ready?
>> >     >       >     >       > [    3.215694] lpc55_l2 spi1.0: rx error:
>> -110
>> >     >       >     >       > [    3.284438] mmc0: new HS200 MMC card at
>> address 0001
>> >     >       >     >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G
>> 14.6 GiB
>> >     >       >     >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6
>> p7 p8
>> >     >       >     >       > [    3.293915] mmcblk0boot0: mmc0:0001
>> SEM16G 4.00 MiB
>> >     >       >     >       > [    3.299054] mmcblk0boot1: mmc0:0001
>> SEM16G 4.00 MiB
>> >     >       >     >       > [    3.303905] mmcblk0rpmb: mmc0:0001
>> SEM16G 4.00 MiB, chardev (244:0)
>> >     >       >     >       > [    3.582676] rtc-lpc55 rtc_lpc55:
>> lpc55_rtc_get_time: bad result: 1
>> >     >       >     >       > [    3.583332] rtc-lpc55 rtc_lpc55:
>> hctosys: unable to read the hardware clock
>> >     >       >     >       > [    3.591252] cdns-i2c ff020000.i2c:
>> recovery information complete
>> >     >       >     >       > [    3.597085] at24 0-0050: supply vcc not
>> found, using dummy regulator
>> >     >       >     >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu
>> still not ready?
>> >     >       >     >       > [    3.608093] at24 0-0050: 256 byte spd
>> EEPROM, read-only
>> >     >       >     >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu
>> still not ready?
>> >     >       >     >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu
>> still not ready?
>> >     >       >     >       > [    3.624224] rtc-rv3028 0-0052:
>> registered as rtc1
>> >     >       >     >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu
>> still not ready?
>> >     >       >     >       > [    3.633253] lpc55_l2 spi1.0: rx error:
>> -110
>> >     >       >     >       > [    3.639104] k81_bootloader 0-0010: probe
>> >     >       >     >       > [    3.641628] VMCU: : (235:0) registered
>> >     >       >     >       > [    3.641635] k81_bootloader 0-0010: probe
>> completed
>> >     >       >     >       > [    3.668346] cdns-i2c ff020000.i2c: 400
>> kHz mmio ff020000 irq 28
>> >     >       >     >       > [    3.669154] cdns-i2c ff030000.i2c:
>> recovery information complete
>> >     >       >     >       > [    3.675412] lm75 1-0048: supply vs not
>> found, using dummy regulator
>> >     >       >     >       > [    3.682920] lm75 1-0048: hwmon1: sensor
>> 'tmp112'
>> >     >       >     >       > [    3.686548] i2c i2c-1: Added multiplexed
>> i2c bus 3
>> >     >       >     >       > [    3.690795] i2c i2c-1: Added multiplexed
>> i2c bus 4
>> >     >       >     >       > [    3.695629] i2c i2c-1: Added multiplexed
>> i2c bus 5
>> >     >       >     >       > [    3.700492] i2c i2c-1: Added multiplexed
>> i2c bus 6
>> >     >       >     >       > [    3.705157] pca954x 1-0070: registered 4
>> multiplexed busses for I2C switch pca9546
>> >     >       >     >       > [    3.713049] at24 1-0054: supply vcc not
>> found, using dummy regulator
>> >     >       >     >       > [    3.720067] at24 1-0054: 1024 byte 24c08
>> EEPROM, read-only
>> >     >       >     >       > [    3.724761] cdns-i2c ff030000.i2c: 100
>> kHz mmio ff030000 irq 29
>> >     >       >     >       > [    3.731272] sfp viper_enet:sfp-eth1:
>> Host maximum power 2.0W
>> >     >       >     >       > [    3.737549] sfp_register_socket: got
>> sfp_bus
>> >     >       >     >       > [    3.740709] sfp_register_socket:
>> register sfp_bus
>> >     >       >     >       > [    3.745459] sfp_register_bus: ops ok!
>> >     >       >     >       > [    3.749179] sfp_register_bus: Try to
>> attach
>> >     >       >     >       > [    3.753419] sfp_register_bus: Attach
>> succeeded
>> >     >       >     >       > [    3.757914] sfp_register_bus: upstream
>> ops attach
>> >     >       >     >       > [    3.762677] sfp_register_bus: Bus
>> registered
>> >     >       >     >       > [    3.766999] sfp_register_socket:
>> register sfp_bus succeeded
>> >     >       >     >       > [    3.775870] of_cfs_init
>> >     >       >     >       > [    3.776000] of_cfs_init: OK
>> >     >       >     >       > [    3.778211] clk: Not disabling unused
>> clocks
>> >     >       >     >       > [   11.278477] Freeing initrd memory:
>> 206056K
>> >     >       >     >       > [   11.279406] Freeing unused kernel
>> memory: 1536K
>> >     >       >     >       > [   11.314006] Checked W+X mappings:
>> passed, no W+X pages found
>> >     >       >     >       > [   11.314142] Run /init as init process
>> >     >       >     >       > INIT: version 3.01 booting
>> >     >       >     >       > fsck (busybox 1.35.0)
>> >     >       >     >       > /dev/mmcblk0p1: clean, 12/102400 files,
>> 238162/409600 blocks
>> >     >       >     >       > /dev/mmcblk0p2: clean, 12/102400 files,
>> 171972/409600 blocks
>> >     >       >     >       > /dev/mmcblk0p3 was not cleanly unmounted,
>> check forced.
>> >     >       >     >       > /dev/mmcblk0p3: 20/4096 files (0.0%
>> non-contiguous), 663/16384 blocks
>> >     >       >     >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted
>> filesystem without journal. Opts: (null). Quota mode:
>> >     >       disabled.
>> >     >       >     >       > Starting random number generator daemon.
>> >     >       >     >       > [   11.580662] random: crng init done
>> >     >       >     >       > Starting udev
>> >     >       >     >       > [   11.613159] udevd[142]: starting version
>> 3.2.10
>> >     >       >     >       > [   11.620385] udevd[143]: starting
>> eudev-3.2.10
>> >     >       >     >       > [   11.704481] macb ff0b0000.ethernet
>> control_red: renamed from eth0
>> >     >       >     >       > [   11.720264] macb ff0c0000.ethernet
>> control_black: renamed from eth1
>> >     >       >     >       > [   12.063396] ip_local_port_range: prefer
>> different parity for start/end values.
>> >     >       >     >       > [   12.084801] rtc-lpc55 rtc_lpc55:
>> lpc55_rtc_get_time: bad result: 1
>> >     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>> >     >       >     >       > Mon Feb 27 08:40:53 UTC 2023
>> >     >       >     >       > [   12.115309] rtc-lpc55 rtc_lpc55:
>> lpc55_rtc_set_time: bad result
>> >     >       >     >       > hwclock: RTC_SET_TIME: Invalid exchange
>> >     >       >     >       > [   12.131027] rtc-lpc55 rtc_lpc55:
>> lpc55_rtc_get_time: bad result: 1
>> >     >       >     >       > Starting mcud
>> >     >       >     >       > INIT: Entering runlevel: 5
>> >     >       >     >       > Configuring network interfaces... done.
>> >     >       >     >       > resetting network interface
>> >     >       >     >       > [   12.718295] macb ff0b0000.ethernet
>> control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver [Xilinx
>> >     >       PCS/PMA PHY] (irq=POLL)
>> >     >       >     >       > [   12.723919] macb ff0b0000.ethernet
>> control_red: configuring for phy/gmii link mode
>> >     >       >     >       > [   12.732151] pps pps0: new PPS source ptp0
>> >     >       >     >       > [   12.735563] macb ff0b0000.ethernet:
>> gem-ptp-timer ptp clock registered.
>> >     >       >     >       > [   12.745724] macb ff0c0000.ethernet
>> control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver [Xilinx
>> >     >       PCS/PMA PHY]
>> >     >       >     >       (irq=POLL)
>> >     >       >     >       > [   12.753469] macb ff0c0000.ethernet
>> control_black: configuring for phy/gmii link mode
>> >     >       >     >       > [   12.761804] pps pps1: new PPS source ptp1
>> >     >       >     >       > [   12.765398] macb ff0c0000.ethernet:
>> gem-ptp-timer ptp clock registered.
>> >     >       >     >       > Auto-negotiation: off
>> >     >       >     >       > Auto-negotiation: off
>> >     >       >     >       > [   16.828151] macb ff0b0000.ethernet
>> control_red: unable to generate target frequency: 125000000 Hz
>> >     >       >     >       > [   16.834553] macb ff0b0000.ethernet
>> control_red: Link is Up - 1Gbps/Full - flow control off
>> >     >       >     >       > [   16.860552] macb ff0c0000.ethernet
>> control_black: unable to generate target frequency: 125000000 Hz
>> >     >       >     >       > [   16.867052] macb ff0c0000.ethernet
>> control_black: Link is Up - 1Gbps/Full - flow control off
>> >     >       >     >       > Starting Failsafe Secure Shell server in
>> port 2222: sshd
>> >     >       >     >       > done.
>> >     >       >     >       > Starting rpcbind daemon...done.
>> >     >       >     >       >
>> >     >       >     >       > [   17.093019] rtc-lpc55 rtc_lpc55:
>> lpc55_rtc_get_time: bad result: 1
>> >     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>> >     >       >     >       > Starting State Manager Service
>> >     >       >     >       > Start state-manager restarter...
>> >     >       >     >       > (XEN) d0v1 Forwarding AES operation:
>> 3254779951
>> >     >       >     >       > Starting /usr/sbin/xenstored....[
>> 17.265256] BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa
>> >     >       devid 1 transid 744
>> >     >       >     >       /dev/dm-0
>> >     >       >     >       > scanned by udevd (385)
>> >     >       >     >       > [   17.349933] BTRFS info (device dm-0):
>> disk space caching is enabled
>> >     >       >     >       > [   17.350670] BTRFS info (device dm-0):
>> has skinny extents
>> >     >       >     >       > [   17.364384] BTRFS info (device dm-0):
>> enabling ssd optimizations
>> >     >       >     >       > [   17.830462] BTRFS: device fsid
>> 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
>> >     >       /dev/mapper/client_prov scanned by
>> >     >       >     >       mkfs.btrfs
>> >     >       >     >       > (526)
>> >     >       >     >       > [   17.872699] BTRFS info (device dm-1):
>> using free space tree
>> >     >       >     >       > [   17.872771] BTRFS info (device dm-1):
>> has skinny extents
>> >     >       >     >       > [   17.878114] BTRFS info (device dm-1):
>> flagging fs with big metadata feature
>> >     >       >     >       > [   17.894289] BTRFS info (device dm-1):
>> enabling ssd optimizations
>> >     >       >     >       > [   17.895695] BTRFS info (device dm-1):
>> checking UUID tree
>> >     >       >     >       >
>> >     >       >     >       > Setting domain 0 name, domid and JSON
>> config...
>> >     >       >     >       > Done setting up Dom0
>> >     >       >     >       > Starting xenconsoled...
>> >     >       >     >       > Starting QEMU as disk backend for dom0
>> >     >       >     >       > Starting domain watchdog daemon:
>> xenwatchdogd startup
>> >     >       >     >       >
>> >     >       >     >       > [   18.408647] BTRFS: device fsid
>> 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
>> >     >       /dev/mapper/client_config scanned by
>> >     >       >     >       mkfs.btrfs
>> >     >       >     >       > (574)
>> >     >       >     >       > [done]
>> >     >       >     >       > [   18.465552] BTRFS info (device dm-2):
>> using free space tree
>> >     >       >     >       > [   18.465629] BTRFS info (device dm-2):
>> has skinny extents
>> >     >       >     >       > [   18.471002] BTRFS info (device dm-2):
>> flagging fs with big metadata feature
>> >     >       >     >       > Starting crond: [   18.482371] BTRFS info
>> (device dm-2): enabling ssd optimizations
>> >     >       >     >       > [   18.486659] BTRFS info (device dm-2):
>> checking UUID tree
>> >     >       >     >       > OK
>> >     >       >     >       > starting rsyslogd ... Log partition ready
>> after 0 poll loops
>> >     >       >     >       > done
>> >     >       >     >       > rsyslogd: cannot connect to 172.18.0.1:514
>> <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>>:
>> Network is unreachable [v8.2208.0 try
>> >     >       https://www.rsyslog.com/e/2027 <
>> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
>> https://www.rsyslog.com/e/2027>> ]
>> >     >       >     >       > [   18.670637] BTRFS: device fsid
>> 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3
>> >     >       scanned by udevd (518)
>> >     >       >     >       >
>> >     >       >     >       > Please insert USB token and enter your role
>> in login prompt.
>> >     >       >     >       >
>> >     >       >     >       > login:
>> >     >       >     >       >
>> >     >       >     >       > Regards,
>> >     >       >     >       > O.
>> >     >       >     >       >
>> >     >       >     >       >
>> >     >       >     >       > пн, 24 апр. 2023 г. в 23:39, Stefano
>> Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
>> >     >       >     >       >       Hi Oleg,
>> >     >       >     >       >
>> >     >       >     >       >       Here is the issue from your logs:
>> >     >       >     >       >
>> >     >       >     >       >       SError Interrupt on CPU0, code
>> 0xbe000000 -- SError
>> >     >       >     >       >
>> >     >       >     >       >       SErrors are special signals to notify
>> software of serious hardware
>> >     >       >     >       >       errors.  Something is going very
>> wrong. Defective hardware is a
>> >     >       >     >       >       possibility.  Another possibility if
>> software accessing address ranges
>> >     >       >     >       >       that it is not supposed to, sometimes
>> it causes SErrors.
>> >     >       >     >       >
>> >     >       >     >       >       Cheers,
>> >     >       >     >       >
>> >     >       >     >       >       Stefano
>> >     >       >     >       >
>> >     >       >     >       >
>> >     >       >     >       >
>> >     >       >     >       >       On Mon, 24 Apr 2023, Oleg Nikitenko
>> wrote:
>> >     >       >     >       >
>> >     >       >     >       >       > Hello,
>> >     >       >     >       >       >
>> >     >       >     >       >       > Thanks guys.
>> >     >       >     >       >       > I found out where the problem was.
>> >     >       >     >       >       > Now dom0 booted more. But I have a
>> new one.
>> >     >       >     >       >       > This is a kernel panic during Dom0
>> loading.
>> >     >       >     >       >       > Maybe someone is able to suggest
>> something ?
>> >     >       >     >       >       >
>> >     >       >     >       >       > Regards,
>> >     >       >     >       >       > O.
>> >     >       >     >       >       >
>> >     >       >     >       >       > [    3.771362] sfp_register_bus:
>> upstream ops attach
>> >     >       >     >       >       > [    3.776119] sfp_register_bus:
>> Bus registered
>> >     >       >     >       >       > [    3.780459] sfp_register_socket:
>> register sfp_bus succeeded
>> >     >       >     >       >       > [    3.789399] of_cfs_init
>> >     >       >     >       >       > [    3.789499] of_cfs_init: OK
>> >     >       >     >       >       > [    3.791685] clk: Not disabling
>> unused clocks
>> >     >       >     >       >       > [   11.010355] SError Interrupt on
>> CPU0, code 0xbe000000 -- SError
>> >     >       >     >       >       > [   11.010380] CPU: 0 PID: 9 Comm:
>> kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>> >     >       >     >       >       > [   11.010393] Workqueue:
>> events_unbound async_run_entry_fn
>> >     >       >     >       >       > [   11.010414] pstate: 60000005
>> (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
>> >     >       >     >       >       > [   11.010422] pc :
>> simple_write_end+0xd0/0x130
>> >     >       >     >       >       > [   11.010431] lr :
>> generic_perform_write+0x118/0x1e0
>> >     >       >     >       >       > [   11.010438] sp : ffffffc00809b910
>> >     >       >     >       >       > [   11.010441] x29:
>> ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
>> >     >       >     >       >       > [   11.010451] x26:
>> 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
>> >     >       >     >       >       > [   11.010459] x23:
>> ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
>> >     >       >     >       >       > [   11.010472] x20:
>> 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
>> >     >       >     >       >       > [   11.010481] x17:
>> 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
>> >     >       >     >       >       > [   11.010490] x14:
>> 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
>> >     >       >     >       >       > [   11.010498] x11:
>> 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
>> >     >       >     >       >       > [   11.010507] x8 :
>> 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
>> >     >       >     >       >       > [   11.010515] x5 :
>> fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
>> >     >       >     >       >       > [   11.010524] x2 :
>> 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
>> >     >       >     >       >       > [   11.010534] Kernel panic - not
>> syncing: Asynchronous SError Interrupt
>> >     >       >     >       >       > [   11.010539] CPU: 0 PID: 9 Comm:
>> kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>> >     >       >     >       >       > [   11.010545] Hardware name: D14
>> Viper Board - White Unit (DT)
>> >     >       >     >       >       > [   11.010548] Workqueue:
>> events_unbound async_run_entry_fn
>> >     >       >     >       >       > [   11.010556] Call trace:
>> >     >       >     >       >       > [   11.010558]
>>  dump_backtrace+0x0/0x1c4
>> >     >       >     >       >       > [   11.010567]  show_stack+0x18/0x2c
>> >     >       >     >       >       > [   11.010574]
>>  dump_stack_lvl+0x7c/0xa0
>> >     >       >     >       >       > [   11.010583]  dump_stack+0x18/0x34
>> >     >       >     >       >       > [   11.010588]  panic+0x14c/0x2f8
>> >     >       >     >       >       > [   11.010597]
>>  print_tainted+0x0/0xb0
>> >     >       >     >       >       > [   11.010606]
>>  arm64_serror_panic+0x6c/0x7c
>> >     >       >     >       >       > [   11.010614]  do_serror+0x28/0x60
>> >     >       >     >       >       > [   11.010621]
>>  el1h_64_error_handler+0x30/0x50
>> >     >       >     >       >       > [   11.010628]
>>  el1h_64_error+0x78/0x7c
>> >     >       >     >       >       > [   11.010633]
>>  simple_write_end+0xd0/0x130
>> >     >       >     >       >       > [   11.010639]
>>  generic_perform_write+0x118/0x1e0
>> >     >       >     >       >       > [   11.010644]
>>  __generic_file_write_iter+0x138/0x1c4
>> >     >       >     >       >       > [   11.010650]
>>  generic_file_write_iter+0x78/0xd0
>> >     >       >     >       >       > [   11.010656]
>>  __kernel_write+0xfc/0x2ac
>> >     >       >     >       >       > [   11.010665]
>>  kernel_write+0x88/0x160
>> >     >       >     >       >       > [   11.010673]  xwrite+0x44/0x94
>> >     >       >     >       >       > [   11.010680]  do_copy+0xa8/0x104
>> >     >       >     >       >       > [   11.010686]
>>  write_buffer+0x38/0x58
>> >     >       >     >       >       > [   11.010692]
>>  flush_buffer+0x4c/0xbc
>> >     >       >     >       >       > [   11.010698]  __gunzip+0x280/0x310
>> >     >       >     >       >       > [   11.010704]  gunzip+0x1c/0x28
>> >     >       >     >       >       > [   11.010709]
>>  unpack_to_rootfs+0x170/0x2b0
>> >     >       >     >       >       > [   11.010715]
>>  do_populate_rootfs+0x80/0x164
>> >     >       >     >       >       > [   11.010722]
>>  async_run_entry_fn+0x48/0x164
>> >     >       >     >       >       > [   11.010728]
>>  process_one_work+0x1e4/0x3a0
>> >     >       >     >       >       > [   11.010736]
>>  worker_thread+0x7c/0x4c0
>> >     >       >     >       >       > [   11.010743]  kthread+0x120/0x130
>> >     >       >     >       >       > [   11.010750]
>>  ret_from_fork+0x10/0x20
>> >     >       >     >       >       > [   11.010757] SMP: stopping
>> secondary CPUs
>> >     >       >     >       >       > [   11.010784] Kernel Offset:
>> 0x2f61200000 from 0xffffffc008000000
>> >     >       >     >       >       > [   11.010788] PHYS_OFFSET: 0x0
>> >     >       >     >       >       > [   11.010790] CPU features:
>> 0x00000401,00000842
>> >     >       >     >       >       > [   11.010795] Memory Limit: none
>> >     >       >     >       >       > [   11.277509] ---[ end Kernel
>> panic - not syncing: Asynchronous SError Interrupt ]---
>> >     >       >     >       >       >
>> >     >       >     >       >       > пт, 21 апр. 2023 г. в 15:52, Michal
>> Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
>> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
>> >     >       >     >       >       >       Hi Oleg,
>> >     >       >     >       >       >
>> >     >       >     >       >       >       On 21/04/2023 14:49, Oleg
>> Nikitenko wrote:
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       > Hello Michal,
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       > I was not able to enable
>> earlyprintk in the xen for now.
>> >     >       >     >       >       >       > I decided to choose another
>> way.
>> >     >       >     >       >       >       > This is a xen's command
>> line that I found out completely.
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       > (XEN) $$$$ console=dtuart
>> dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
>> >     >       bootscrub=0
>> >     >       >     >       vwfi=native
>> >     >       >     >       >       sched=null
>> >     >       >     >       >       >       timer_slop=0
>> >     >       >     >       >       >       Yes, adding a printk() in Xen
>> was also a good idea.
>> >     >       >     >       >       >
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       > So you are absolutely right
>> about a command line.
>> >     >       >     >       >       >       > Now I am going to find out
>> why xen did not have the correct parameters from the device
>> >     >       tree.
>> >     >       >     >       >       >       Maybe you will find this
>> document helpful:
>> >     >       >     >       >       >
>> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
>> <
>> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
>> >
>> >     >       <
>> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
>> <
>> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
>> >>
>> >     >       >     >       >       >
>> >     >       >     >       >       >       ~Michal
>> >     >       >     >       >       >
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       > Regards,
>> >     >       >     >       >       >       > Oleg
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       > пт, 21 апр. 2023 г. в
>> 11:16, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>
>> >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
>> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>:
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       >     On 21/04/2023 10:04,
>> Oleg Nikitenko wrote:
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     > Hello Michal,
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     > Yes, I use yocto.
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     > Yesterday all day
>> long I tried to follow your suggestions.
>> >     >       >     >       >       >       >     > I faced a problem.
>> >     >       >     >       >       >       >     > Manually in the xen
>> config build file I pasted the strings:
>> >     >       >     >       >       >       >     In the .config file or
>> in some Yocto file (listing additional Kconfig options) added
>> >     >       to SRC_URI?
>> >     >       >     >       >       >       >     You shouldn't really
>> modify .config file but if you do, you should execute "make
>> >     >       olddefconfig"
>> >     >       >     >       afterwards.
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     > CONFIG_EARLY_PRINTK
>> >     >       >     >       >       >       >     >
>> CONFIG_EARLY_PRINTK_ZYNQMP
>> >     >       >     >       >       >       >     >
>> CONFIG_EARLY_UART_CHOICE_CADENCE
>> >     >       >     >       >       >       >     I hope you added =y to
>> them.
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       >     Anyway, you have at
>> least the following solutions:
>> >     >       >     >       >       >       >     1) Run bitbake xen -c
>> menuconfig to properly set early printk
>> >     >       >     >       >       >       >     2) Find out how you
>> enable other Kconfig options in your project (e.g.
>> >     >       CONFIG_COLORING=y that is not
>> >     >       >     >       enabled by
>> >     >       >     >       >       default)
>> >     >       >     >       >       >       >     3) Append the following
>> to "xen/arch/arm/configs/arm64_defconfig":
>> >     >       >     >       >       >       >
>>  CONFIG_EARLY_PRINTK_ZYNQMP=y
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       >     ~Michal
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     > Host hangs in build
>> time.
>> >     >       >     >       >       >       >     > Maybe I did not set
>> something in the config build file ?
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     > Regards,
>> >     >       >     >       >       >       >     > Oleg
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     > чт, 20 апр. 2023 г. в
>> 11:57, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>
>> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
>> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>> >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com
>> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>
>> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
>> >>>>>:
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >     Thanks Michal,
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >     You gave me an
>> idea.
>> >     >       >     >       >       >       >     >     I am going to try
>> it today.
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >     Regards,
>> >     >       >     >       >       >       >     >     O.
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >     чт, 20 апр.
>> 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>
>> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
>> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>> >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com
>> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>
>> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
>> >>>>>:
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >         Thanks
>> Stefano.
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >         I am going to
>> do it today.
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >         Regards,
>> >     >       >     >       >       >       >     >         O.
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >         ср, 19 апр.
>> 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>
>> >     >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>>
>> >     >       >     >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>>>
>> >     >       >     >       >       >       <mailto:
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>> >     >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>>>>>:
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >             On Wed,
>> 19 Apr 2023, Oleg Nikitenko wrote:
>> >     >       >     >       >       >       >     >             > Hi
>> Michal,
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             > I
>> corrected xen's command line.
>> >     >       >     >       >       >       >     >             > Now it
>> is
>> >     >       >     >       >       >       >     >             >
>> xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M
>> >     >       dom0_max_vcpus=2
>> >     >       >     >       dom0_vcpus_pin
>> >     >       >     >       >       >       bootscrub=0 vwfi=native
>> sched=null
>> >     >       >     >       >       >       >     >             >
>> timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >             4 colors
>> is way too many for xen, just do xen_colors=0-0. There is no
>> >     >       >     >       >       >       >     >             advantage
>> in using more than 1 color for Xen.
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >             4 colors
>> is too few for dom0, if you are giving 1600M of memory to
>> >     >       Dom0.
>> >     >       >     >       >       >       >     >             Each
>> color is 256M. For 1600M you should give at least 7 colors. Try:
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >
>>  xen_colors=0-0 dom0_colors=1-8
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >     >             >
>> Unfortunately the result was the same.
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             > (XEN)
>>  - Dom0 mode: Relaxed
>> >     >       >     >       >       >       >     >             > (XEN)
>> P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>> >     >       >     >       >       >       >     >             > (XEN)
>> P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>> >     >       >     >       >       >       >     >             > (XEN)
>> Scheduling granularity: cpu, 1 CPU per sched-resource
>> >     >       >     >       >       >       >     >             > (XEN)
>> Coloring general information
>> >     >       >     >       >       >       >     >             > (XEN)
>> Way size: 64kB
>> >     >       >     >       >       >       >     >             > (XEN)
>> Max. number of colors available: 16
>> >     >       >     >       >       >       >     >             > (XEN)
>> Xen color(s): [ 0 ]
>> >     >       >     >       >       >       >     >             > (XEN)
>> alternatives: Patching with alt table 00000000002cc690 ->
>> >     >       00000000002ccc0c
>> >     >       >     >       >       >       >     >             > (XEN)
>> Color array allocation failed for dom0
>> >     >       >     >       >       >       >     >             > (XEN)
>> >     >       >     >       >       >       >     >             > (XEN)
>> ****************************************
>> >     >       >     >       >       >       >     >             > (XEN)
>> Panic on CPU 0:
>> >     >       >     >       >       >       >     >             > (XEN)
>> Error creating domain 0
>> >     >       >     >       >       >       >     >             > (XEN)
>> ****************************************
>> >     >       >     >       >       >       >     >             > (XEN)
>> >     >       >     >       >       >       >     >             > (XEN)
>> Reboot in five seconds...
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             > I am
>> going to find out how command line arguments passed and parsed.
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             > Regards,
>> >     >       >     >       >       >       >     >             > Oleg
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             > ср, 19
>> апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>
>> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
>> >>
>> >     >       >     >       <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>>>
>> >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com
>> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>
>> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
>> >>>>>:
>> >     >       >     >       >       >       >     >             >
>>  Hi Michal,
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             > You put
>> my nose into the problem. Thank you.
>> >     >       >     >       >       >       >     >             > I am
>> going to use your point.
>> >     >       >     >       >       >       >     >             > Let's
>> see what happens.
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             > Regards,
>> >     >       >     >       >       >       >     >             > Oleg
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             > ср, 19
>> апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com <mailto:
>> michal.orzel@amd.com>
>> >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
>> >     >       >     >       <mailto:michal.orzel@amd.com <mailto:
>> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
>> michal.orzel@amd.com>>>
>> >     >       >     >       >       >       <mailto:michal.orzel@amd.com
>> <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
>> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
>> michal.orzel@amd.com>
>> >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com
>> >>>>>:
>> >     >       >     >       >       >       >     >             >
>>  Hi Oleg,
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >
>>  On 19/04/2023 09:03, Oleg Nikitenko wrote:
>> >     >       >     >       >       >       >     >             >
>>  >
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >       >
>> Hello Stefano,
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >       >
>> Thanks for the clarification.
>> >     >       >     >       >       >       >     >             >       >
>> My company uses yocto for image generation.
>> >     >       >     >       >       >       >     >             >       >
>> What kind of information do you need to consult me in this
>> >     >       case ?
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >       >
>> Maybe modules sizes/addresses which were mentioned by @Julien
>> >     >       Grall
>> >     >       >     >       >       <mailto:julien@xen.org <mailto:
>> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>
>> >     >       >     >       >       >       <mailto:julien@xen.org
>> <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>
>> <mailto:julien@xen.org <mailto:julien@xen.org>
>> >     >       <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:
>> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
>> julien@xen.org>>>>> ?
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >
>>  Sorry for jumping into discussion, but FWICS the Xen command
>> >     >       line you provided
>> >     >       >     >       seems to be
>> >     >       >     >       >       not the
>> >     >       >     >       >       >       one
>> >     >       >     >       >       >       >     >             >
>>  Xen booted with. The error you are observing most likely is due
>> >     >       to dom0 colors
>> >     >       >     >       >       configuration not
>> >     >       >     >       >       >       being
>> >     >       >     >       >       >       >     >             >
>>  specified (i.e. lack of dom0_colors=<> parameter). Although in
>> >     >       the command line you
>> >     >       >     >       >       provided, this
>> >     >       >     >       >       >       parameter
>> >     >       >     >       >       >       >     >             >
>>  is set, I strongly doubt that this is the actual command line
>> >     >       in use.
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >
>>  You wrote:
>> >     >       >     >       >       >       >     >             >
>>  xen,xen-bootargs = "console=dtuart dtuart=serial0
>> >     >       dom0_mem=1600M dom0_max_vcpus=2
>> >     >       >     >       >       dom0_vcpus_pin
>> >     >       >     >       >       >       bootscrub=0 vwfi=native
>> >     >       >     >       >       >       >     >             >
>>  sched=null timer_slop=0 way_szize=65536 xen_colors=0-3
>> >     >       dom0_colors=4-7";
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >
>>  but:
>> >     >       >     >       >       >       >     >             >
>>  1) way_szize has a typo
>> >     >       >     >       >       >       >     >             >
>>  2) you specified 4 colors (0-3) for Xen, but the boot log says
>> >     >       that Xen has only
>> >     >       >     >       one:
>> >     >       >     >       >       >       >     >             >
>>  (XEN) Xen color(s): [ 0 ]
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >
>>  This makes me believe that no colors configuration actually end
>> >     >       up in command line
>> >     >       >     >       that Xen
>> >     >       >     >       >       booted
>> >     >       >     >       >       >       with.
>> >     >       >     >       >       >       >     >             >
>>  Single color for Xen is a "default if not specified" and way
>> >     >       size was probably
>> >     >       >     >       calculated
>> >     >       >     >       >       by asking
>> >     >       >     >       >       >       HW.
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >
>>  So I would suggest to first cross-check the command line in
>> >     >       use.
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >
>>  ~Michal
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >       >
>> Regards,
>> >     >       >     >       >       >       >     >             >       >
>> Oleg
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >       >
>> вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini
>> >     >       <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>> >     >       >     >       >       >       <mailto:
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>> >     >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>
>> >     >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>>>>
>> >     >       >     >       >       <mailto:sstabellini@kernel.org
>> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>>
>> >     >       >     >       >       >       <mailto:
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>> >     >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>
>> >     >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>>>>>>:
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >
>>  >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
>> >     >       >     >       >       >       >     >             >
>>  >     > Hi Julien,
>> >     >       >     >       >       >       >     >             >
>>  >     >
>> >     >       >     >       >       >       >     >             >
>>  >     > >> This feature has not been merged in Xen upstream yet
>> >     >       >     >       >       >       >     >             >
>>  >     >
>> >     >       >     >       >       >       >     >             >
>>  >     > > would assume that upstream + the series on the ML [1]
>> >     >       work
>> >     >       >     >       >       >       >     >             >
>>  >     >
>> >     >       >     >       >       >       >     >             >
>>  >     > Please clarify this point.
>> >     >       >     >       >       >       >     >             >
>>  >     > Because the two thoughts are controversial.
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >
>>  >     Hi Oleg,
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >
>>  >     As Julien wrote, there is nothing controversial. As you
>> >     >       are aware,
>> >     >       >     >       >       >       >     >             >
>>  >     Xilinx maintains a separate Xen tree specific for Xilinx
>> >     >       here:
>> >     >       >     >       >       >       >     >             >
>>  >     https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>> >     >       <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>>>
>> >     >       >     >       >       <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>>
>> >     >       >     >       >       >       <
>> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
>> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
>> >     >       <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>
>> >     >       <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>>>
>> >     >       >     >       >       <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>>
>> >     >       >     >       >       >       <
>> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
>> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >
>>  >     and the branch you are using (xlnx_rebase_4.16) comes
>> >     >       from there.
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >
>>  >     Instead, the upstream Xen tree lives here:
>> >     >       >     >       >       >       >     >             >
>>  >     https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>> >     >       >     >       >       >       <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>> >     >       >     >       >       >       <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>> <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>> >     >       >     >       >       >       <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>> >     >       >     >       >       >       <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >
>>  >     The Cache Coloring feature that you are trying to
>> >     >       configure is present
>> >     >       >     >       >       >       >     >             >
>>  >     in xlnx_rebase_4.16, but not yet present upstream (there
>> >     >       is an
>> >     >       >     >       >       >       >     >             >
>>  >     outstanding patch series to add cache coloring to Xen
>> >     >       upstream but it
>> >     >       >     >       >       >       >     >             >
>>  >     hasn't been merged yet.)
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >
>>  >     Anyway, if you are using xlnx_rebase_4.16 it doesn't
>> >     >       matter too much for
>> >     >       >     >       >       >       >     >             >
>>  >     you as you already have Cache Coloring as a feature
>> >     >       there.
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >
>>  >     I take you are using ImageBuilder to generate the boot
>> >     >       configuration? If
>> >     >       >     >       >       >       >     >             >
>>  >     so, please post the ImageBuilder config file that you are
>> >     >       using.
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >
>>  >     But from the boot message, it looks like the colors
>> >     >       configuration for
>> >     >       >     >       >       >       >     >             >
>>  >     Dom0 is incorrect.
>> >     >       >     >       >       >       >     >             >       >
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >             >
>> >     >       >     >       >       >       >     >
>> >     >       >     >       >       >       >
>> >     >       >     >       >       >
>> >     >       >     >       >       >
>> >     >       >     >       >       >
>> >     >       >     >       >
>> >     >       >     >       >
>> >     >       >     >       >
>> >     >       >     >
>> >     >       >     >
>> >     >       >     >
>> >     >       >
>> >     >
>> >     >
>> >     >
>> >
>>
>

[-- Attachment #2: Type: text/html, Size: 156596 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-11 10:15  0%                                                   ` Michal Orzel
@ 2023-05-11 10:32  0%                                                     ` Oleg Nikitenko
  2023-05-15  8:51  0%                                                       ` Oleg Nikitenko
  0 siblings, 1 reply; 200+ results
From: Oleg Nikitenko @ 2023-05-11 10:32 UTC (permalink / raw)
  To: Michal Orzel
  Cc: Stefano Stabellini, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand

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

Hi Michal,

Thanks.
This compilation previously had a name CONFIG_COLORING.
It mixed me up.

Regards,
Oleg

чт, 11 мая 2023 г. в 13:15, Michal Orzel <michal.orzel@amd.com>:

> Hi Oleg,
>
> On 11/05/2023 12:02, Oleg Nikitenko wrote:
> >
> >
> >
> > Hello,
> >
> > Thanks Stefano.
> > Then the next question.
> > I cloned xen repo from xilinx site https://github.com/Xilinx/xen.git <
> https://github.com/Xilinx/xen.git>
> > I managed to build a xlnx_rebase_4.17 branch in my environment.
> > I did it without coloring first. I did not find any color footprints at
> this branch.
> > I realized coloring is not in the xlnx_rebase_4.17 branch yet.
> This is not true. Cache coloring is in xlnx_rebase_4.17. Please see the
> docs:
>
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst
>
> It describes the feature and documents the required properties.
>
> ~Michal
>
> >
> >
> > вт, 9 мая 2023 г. в 22:49, Stefano Stabellini <sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>>:
> >
> >     We test Xen Cache Coloring regularly on zcu102. Every Petalinux
> release
> >     (twice a year) is tested with cache coloring enabled. The last
> Petalinux
> >     release is 2023.1 and the kernel used is this:
> >     https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>
> >
> >
> >     On Tue, 9 May 2023, Oleg Nikitenko wrote:
> >     > Hello guys,
> >     >
> >     > I have a couple of more questions.
> >     > Have you ever run xen with the cache coloring at Zynq UltraScale+
> MPSoC zcu102 xczu15eg ?
> >     > When did you run xen with the cache coloring last time ?
> >     > What kernel version did you use for Dom0 when you ran xen with the
> cache coloring last time ?
> >     >
> >     > Regards,
> >     > Oleg
> >     >
> >     > пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com>>:
> >     >       Hi Michal,
> >     >
> >     > Thanks.
> >     >
> >     > Regards,
> >     > Oleg
> >     >
> >     > пт, 5 мая 2023 г. в 11:34, Michal Orzel <michal.orzel@amd.com
> <mailto:michal.orzel@amd.com>>:
> >     >       Hi Oleg,
> >     >
> >     >       Replying, so that you do not need to wait for Stefano.
> >     >
> >     >       On 05/05/2023 10:28, Oleg Nikitenko wrote:
> >     >       >
> >     >       >
> >     >       >
> >     >       > Hello Stefano,
> >     >       >
> >     >       > I would like to try a xen cache color property from this
> repo  https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>
> >     >       <https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>>
> >     >       > Could you tell whot branch I should use ?
> >     >       Cache coloring feature is not part of the upstream tree and
> it is still under review.
> >     >       You can only find it integrated in the Xilinx Xen tree.
> >     >
> >     >       ~Michal
> >     >
> >     >       >
> >     >       > Regards,
> >     >       > Oleg
> >     >       >
> >     >       > пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
> >     >       >
> >     >       >     I am familiar with the zcu102 but I don't know how you
> could possibly
> >     >       >     generate a SError.
> >     >       >
> >     >       >     I suggest to try to use ImageBuilder [1] to generate
> the boot
> >     >       >     configuration as a test because that is known to work
> well for zcu102.
> >     >       >
> >     >       >     [1] https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder> <
> https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>>
> >     >       >
> >     >       >
> >     >       >     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
> >     >       >     > Hello Stefano,
> >     >       >     >
> >     >       >     > Thanks for clarification.
> >     >       >     > We nighter use ImageBuilder nor uboot boot script.
> >     >       >     > A model is zcu102 compatible.
> >     >       >     >
> >     >       >     > Regards,
> >     >       >     > O.
> >     >       >     >
> >     >       >     > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
> >     >       >     >       This is interesting. Are you using Xilinx
> hardware by any chance? If so,
> >     >       >     >       which board?
> >     >       >     >
> >     >       >     >       Are you using ImageBuilder to generate your
> boot.scr boot script? If so,
> >     >       >     >       could you please post your ImageBuilder config
> file? If not, can you
> >     >       >     >       post the source of your uboot boot script?
> >     >       >     >
> >     >       >     >       SErrors are supposed to be related to a
> hardware failure of some kind.
> >     >       >     >       You are not supposed to be able to trigger an
> SError easily by
> >     >       >     >       "mistake". I have not seen SErrors due to
> wrong cache coloring
> >     >       >     >       configurations on any Xilinx board before.
> >     >       >     >
> >     >       >     >       The differences between Xen with and without
> cache coloring from a
> >     >       >     >       hardware perspective are:
> >     >       >     >
> >     >       >     >       - With cache coloring, the SMMU is enabled and
> does address translations
> >     >       >     >         even for dom0. Without cache coloring the
> SMMU could be disabled, and
> >     >       >     >         if enabled, the SMMU doesn't do any address
> translations for Dom0. If
> >     >       >     >         there is a hardware failure related to SMMU
> address translation it
> >     >       >     >         could only trigger with cache coloring. This
> would be my normal
> >     >       >     >         suggestion for you to explore, but the
> failure happens too early
> >     >       >     >         before any DMA-capable device is programmed.
> So I don't think this can
> >     >       >     >         be the issue.
> >     >       >     >
> >     >       >     >       - With cache coloring, the memory allocation
> is very different so you'll
> >     >       >     >         end up using different DDR regions for Dom0.
> So if your DDR is
> >     >       >     >         defective, you might only see a failure with
> cache coloring enabled
> >     >       >     >         because you end up using different regions.
> >     >       >     >
> >     >       >     >
> >     >       >     >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
> >     >       >     >       > Hi Stefano,
> >     >       >     >       >
> >     >       >     >       > Thank you.
> >     >       >     >       > If I build xen without colors support there
> is not this error.
> >     >       >     >       > All the domains are booted well.
> >     >       >     >       > Hense it can not be a hardware issue.
> >     >       >     >       > This panic arrived during unpacking the
> rootfs.
> >     >       >     >       > Here I attached the boot log xen/Dom0
> without color.
> >     >       >     >       > A highlighted strings printed exactly after
> the place where 1-st time panic arrived.
> >     >       >     >       >
> >     >       >     >       >  Xen 4.16.1-pre
> >     >       >     >       > (XEN) Xen version 4.16.1-pre (nole2390@(none))
> (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y
> >     >       2023-04-21
> >     >       >     >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14
> 2023 +0300 git:321687b231-dirty
> >     >       >     >       > (XEN) build-id:
> c1847258fdb1b79562fc710dda40008f96c0fde5
> >     >       >     >       > (XEN) Processor: 00000000410fd034: "ARM
> Limited", variant: 0x0, part 0xd03,rev 0x4
> >     >       >     >       > (XEN) 64-bit Execution:
> >     >       >     >       > (XEN)   Processor Features: 0000000000002222
> 0000000000000000
> >     >       >     >       > (XEN)     Exception Levels: EL3:64+32
> EL2:64+32 EL1:64+32 EL0:64+32
> >     >       >     >       > (XEN)     Extensions: FloatingPoint
> AdvancedSIMD
> >     >       >     >       > (XEN)   Debug Features: 0000000010305106
> 0000000000000000
> >     >       >     >       > (XEN)   Auxiliary Features: 0000000000000000
> 0000000000000000
> >     >       >     >       > (XEN)   Memory Model Features:
> 0000000000001122 0000000000000000
> >     >       >     >       > (XEN)   ISA Features:  0000000000011120
> 0000000000000000
> >     >       >     >       > (XEN) 32-bit Execution:
> >     >       >     >       > (XEN)   Processor Features:
> 0000000000000131:0000000000011011
> >     >       >     >       > (XEN)     Instruction Sets: AArch32 A32
> Thumb Thumb-2 Jazelle
> >     >       >     >       > (XEN)     Extensions: GenericTimer Security
> >     >       >     >       > (XEN)   Debug Features: 0000000003010066
> >     >       >     >       > (XEN)   Auxiliary Features: 0000000000000000
> >     >       >     >       > (XEN)   Memory Model Features:
> 0000000010201105 0000000040000000
> >     >       >     >       > (XEN)
>  0000000001260000 0000000002102211
> >     >       >     >       > (XEN)   ISA Features: 0000000002101110
> 0000000013112111 0000000021232042
> >     >       >     >       > (XEN)                 0000000001112131
> 0000000000011142 0000000000011121
> >     >       >     >       > (XEN) Using SMC Calling Convention v1.2
> >     >       >     >       > (XEN) Using PSCI v1.1
> >     >       >     >       > (XEN) SMP: Allowing 4 CPUs
> >     >       >     >       > (XEN) Generic Timer IRQ: phys=30 hyp=26
> virt=27 Freq: 100000 KHz
> >     >       >     >       > (XEN) GICv2 initialization:
> >     >       >     >       > (XEN)         gic_dist_addr=00000000f9010000
> >     >       >     >       > (XEN)         gic_cpu_addr=00000000f9020000
> >     >       >     >       > (XEN)         gic_hyp_addr=00000000f9040000
> >     >       >     >       > (XEN)         gic_vcpu_addr=00000000f9060000
> >     >       >     >       > (XEN)         gic_maintenance_irq=25
> >     >       >     >       > (XEN) GICv2: Adjusting CPU interface base to
> 0xf902f000
> >     >       >     >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID
> 0200143b).
> >     >       >     >       > (XEN) Using scheduler: null Scheduler (null)
> >     >       >     >       > (XEN) Initializing null scheduler
> >     >       >     >       > (XEN) WARNING: This is experimental software
> in development.
> >     >       >     >       > (XEN) Use at your own risk.
> >     >       >     >       > (XEN) Allocated console ring of 32 KiB.
> >     >       >     >       > (XEN) CPU0: Guest atomics will try 12 times
> before pausing the domain
> >     >       >     >       > (XEN) Bringing up CPU1
> >     >       >     >       > (XEN) CPU1: Guest atomics will try 13 times
> before pausing the domain
> >     >       >     >       > (XEN) CPU 1 booted.
> >     >       >     >       > (XEN) Bringing up CPU2
> >     >       >     >       > (XEN) CPU2: Guest atomics will try 13 times
> before pausing the domain
> >     >       >     >       > (XEN) CPU 2 booted.
> >     >       >     >       > (XEN) Bringing up CPU3
> >     >       >     >       > (XEN) CPU3: Guest atomics will try 13 times
> before pausing the domain
> >     >       >     >       > (XEN) Brought up 4 CPUs
> >     >       >     >       > (XEN) CPU 3 booted.
> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: probing
> hardware configuration...
> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stage 2
> translation
> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stream
> matching with 48 register groups, mask 0x7fff<2>smmu:
> >     >       /axi/smmu@fd800000: 16 context
> >     >       >     >       banks (0
> >     >       >     >       > stage-2 only)
> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2:
> 48-bit IPA -> 48-bit PA
> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: registered
> 29 master devices
> >     >       >     >       > (XEN) I/O virtualisation enabled
> >     >       >     >       > (XEN)  - Dom0 mode: Relaxed
> >     >       >     >       > (XEN) P2M: 40-bit IPA with 40-bit PA and
> 8-bit VMID
> >     >       >     >       > (XEN) P2M: 3 levels with order-1 root, VTCR
> 0x0000000080023558
> >     >       >     >       > (XEN) Scheduling granularity: cpu, 1 CPU per
> sched-resource
> >     >       >     >       > (XEN) alternatives: Patching with alt table
> 00000000002cc5c8 -> 00000000002ccb2c
> >     >       >     >       > (XEN) *** LOADING DOMAIN 0 ***
> >     >       >     >       > (XEN) Loading d0 kernel from boot module @
> 0000000001000000
> >     >       >     >       > (XEN) Loading ramdisk from boot module @
> 0000000002000000
> >     >       >     >       > (XEN) Allocating 1:1 mappings totalling
> 1600MB for dom0:
> >     >       >     >       > (XEN) BANK[0]
> 0x00000010000000-0x00000020000000 (256MB)
> >     >       >     >       > (XEN) BANK[1]
> 0x00000024000000-0x00000028000000 (64MB)
> >     >       >     >       > (XEN) BANK[2]
> 0x00000030000000-0x00000080000000 (1280MB)
> >     >       >     >       > (XEN) Grant table range:
> 0x00000000e00000-0x00000000e40000
> >     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr
> 0x000000087bf94000
> >     >       >     >       > (XEN) Allocating PPI 16 for event channel
> interrupt
> >     >       >     >       > (XEN) Extended region 0:
> 0x81200000->0xa0000000
> >     >       >     >       > (XEN) Extended region 1:
> 0xb1200000->0xc0000000
> >     >       >     >       > (XEN) Extended region 2:
> 0xc8000000->0xe0000000
> >     >       >     >       > (XEN) Extended region 3:
> 0xf0000000->0xf9000000
> >     >       >     >       > (XEN) Extended region 4:
> 0x100000000->0x600000000
> >     >       >     >       > (XEN) Extended region 5:
> 0x880000000->0x8000000000
> >     >       >     >       > (XEN) Extended region 6:
> 0x8001000000->0x10000000000
> >     >       >     >       > (XEN) Loading zImage from 0000000001000000
> to 0000000010000000-0000000010e41008
> >     >       >     >       > (XEN) Loading d0 initrd from
> 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
> >     >       >     >       > (XEN) Loading d0 DTB to
> 0x0000000013400000-0x000000001340cbdc
> >     >       >     >       > (XEN) Initial low memory virq threshold set
> at 0x4000 pages.
> >     >       >     >       > (XEN) Std. Loglevel: All
> >     >       >     >       > (XEN) Guest Loglevel: All
> >     >       >     >       > (XEN) *** Serial input to DOM0 (type
> 'CTRL-a' three times to switch input)
> >     >       >     >       > (XEN) null.c:353: 0 <-- d0v0
> >     >       >     >       > (XEN) Freed 356kB init memory.
> >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
> >     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER4
> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER8
> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER12
> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER16
> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER20
> >     >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER0
> >     >       >     >       > [    0.000000] Booting Linux on physical CPU
> 0x0000000000 [0x410fd034]
> >     >       >     >       > [    0.000000] Linux version
> 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC)
> >     >       11.3.0, GNU ld (GNU
> >     >       >     >       Binutils)
> >     >       >     >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54
> UTC 2023
> >     >       >     >       > [    0.000000] Machine model: D14 Viper
> Board - White Unit
> >     >       >     >       > [    0.000000] Xen 4.16 support found
> >     >       >     >       > [    0.000000] Zone ranges:
> >     >       >     >       > [    0.000000]   DMA      [mem
> 0x0000000010000000-0x000000007fffffff]
> >     >       >     >       > [    0.000000]   DMA32    empty
> >     >       >     >       > [    0.000000]   Normal   empty
> >     >       >     >       > [    0.000000] Movable zone start for each
> node
> >     >       >     >       > [    0.000000] Early memory node ranges
> >     >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000010000000-0x000000001fffffff]
> >     >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000022000000-0x0000000022147fff]
> >     >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000022200000-0x0000000022347fff]
> >     >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000024000000-0x0000000027ffffff]
> >     >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000030000000-0x000000007fffffff]
> >     >       >     >       > [    0.000000] Initmem setup node 0 [mem
> 0x0000000010000000-0x000000007fffffff]
> >     >       >     >       > [    0.000000] On node 0, zone DMA: 8192
> pages in unavailable ranges
> >     >       >     >       > [    0.000000] On node 0, zone DMA: 184
> pages in unavailable ranges
> >     >       >     >       > [    0.000000] On node 0, zone DMA: 7352
> pages in unavailable ranges
> >     >       >     >       > [    0.000000] cma: Reserved 256 MiB at
> 0x000000006e000000
> >     >       >     >       > [    0.000000] psci: probing for conduit
> method from DT.
> >     >       >     >       > [    0.000000] psci: PSCIv1.1 detected in
> firmware.
> >     >       >     >       > [    0.000000] psci: Using standard PSCI
> v0.2 function IDs
> >     >       >     >       > [    0.000000] psci: Trusted OS migration
> not required
> >     >       >     >       > [    0.000000] psci: SMC Calling Convention
> v1.1
> >     >       >     >       > [    0.000000] percpu: Embedded 16 pages/cpu
> s32792 r0 d32744 u65536
> >     >       >     >       > [    0.000000] Detected VIPT I-cache on CPU0
> >     >       >     >       > [    0.000000] CPU features: kernel page
> table isolation forced ON by KASLR
> >     >       >     >       > [    0.000000] CPU features: detected:
> Kernel page table isolation (KPTI)
> >     >       >     >       > [    0.000000] Built 1 zonelists, mobility
> grouping on.  Total pages: 403845
> >     >       >     >       > [    0.000000] Kernel command line:
> console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused fips=1
> >     >       root=/dev/ram0
> >     >       >     >       maxcpus=2
> >     >       >     >       > [    0.000000] Unknown kernel command line
> parameters "earlyprintk=xen fips=1", will be passed to user
> >     >       space.
> >     >       >     >       > [    0.000000] Dentry cache hash table
> entries: 262144 (order: 9, 2097152 bytes, linear)
> >     >       >     >       > [    0.000000] Inode-cache hash table
> entries: 131072 (order: 8, 1048576 bytes, linear)
> >     >       >     >       > [    0.000000] mem auto-init: stack:off,
> heap alloc:on, heap free:on
> >     >       >     >       > [    0.000000] mem auto-init: clearing
> system memory may take some time...
> >     >       >     >       > [    0.000000] Memory: 1121936K/1641024K
> available (9728K kernel code, 836K rwdata, 2396K rodata, 1536K
> >     >       init, 262K bss,
> >     >       >     >       256944K reserved,
> >     >       >     >       > 262144K cma-reserved)
> >     >       >     >       > [    0.000000] SLUB: HWalign=64, Order=0-3,
> MinObjects=0, CPUs=2, Nodes=1
> >     >       >     >       > [    0.000000] rcu: Hierarchical RCU
> implementation.
> >     >       >     >       > [    0.000000] rcu: RCU event tracing is
> enabled.
> >     >       >     >       > [    0.000000] rcu: RCU restricting CPUs
> from NR_CPUS=8 to nr_cpu_ids=2.
> >     >       >     >       > [    0.000000] rcu: RCU calculated value of
> scheduler-enlistment delay is 25 jiffies.
> >     >       >     >       > [    0.000000] rcu: Adjusting geometry for
> rcu_fanout_leaf=16, nr_cpu_ids=2
> >     >       >     >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64,
> preallocated irqs: 0
> >     >       >     >       > [    0.000000] Root IRQ handler:
> gic_handle_irq
> >     >       >     >       > [    0.000000] arch_timer: cp15 timer(s)
> running at 100.00MHz (virt).
> >     >       >     >       > [    0.000000] clocksource:
> arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0,
> >     >       max_idle_ns: 440795205315 ns
> >     >       >     >       > [    0.000000] sched_clock: 56 bits at
> 100MHz, resolution 10ns, wraps every 4398046511100ns
> >     >       >     >       > [    0.000258] Console: colour dummy device
> 80x25
> >     >       >     >       > [    0.310231] printk: console [hvc0] enabled
> >     >       >     >       > [    0.314403] Calibrating delay loop
> (skipped), value calculated using timer frequency.. 200.00 BogoMIPS
> >     >       (lpj=400000)
> >     >       >     >       > [    0.324851] pid_max: default: 32768
> minimum: 301
> >     >       >     >       > [    0.329706] LSM: Security Framework
> initializing
> >     >       >     >       > [    0.334204] Yama: becoming mindful.
> >     >       >     >       > [    0.337865] Mount-cache hash table
> entries: 4096 (order: 3, 32768 bytes, linear)
> >     >       >     >       > [    0.345180] Mountpoint-cache hash table
> entries: 4096 (order: 3, 32768 bytes, linear)
> >     >       >     >       > [    0.354743] xen:grant_table: Grant tables
> using version 1 layout
> >     >       >     >       > [    0.359132] Grant table initialized
> >     >       >     >       > [    0.362664] xen:events: Using FIFO-based
> ABI
> >     >       >     >       > [    0.366993] Xen: initializing cpu0
> >     >       >     >       > [    0.370515] rcu: Hierarchical SRCU
> implementation.
> >     >       >     >       > [    0.375930] smp: Bringing up secondary
> CPUs ...
> >     >       >     >       > (XEN) null.c:353: 1 <-- d0v1
> >     >       >     >       > (XEN) d0v1: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER0
> >     >       >     >       > [    0.382549] Detected VIPT I-cache on CPU1
> >     >       >     >       > [    0.388712] Xen: initializing cpu1
> >     >       >     >       > [    0.388743] CPU1: Booted secondary
> processor 0x0000000001 [0x410fd034]
> >     >       >     >       > [    0.388829] smp: Brought up 1 node, 2 CPUs
> >     >       >     >       > [    0.406941] SMP: Total of 2 processors
> activated.
> >     >       >     >       > [    0.411698] CPU features: detected:
> 32-bit EL0 Support
> >     >       >     >       > [    0.416888] CPU features: detected: CRC32
> instructions
> >     >       >     >       > [    0.422121] CPU: All CPU(s) started at EL1
> >     >       >     >       > [    0.426248] alternatives: patching kernel
> code
> >     >       >     >       > [    0.431424] devtmpfs: initialized
> >     >       >     >       > [    0.441454] KASLR enabled
> >     >       >     >       > [    0.441602] clocksource: jiffies: mask:
> 0xffffffff max_cycles: 0xffffffff, max_idle_ns:
> >     >       7645041785100000 ns
> >     >       >     >       > [    0.448321] futex hash table entries: 512
> (order: 3, 32768 bytes, linear)
> >     >       >     >       > [    0.496183] NET: Registered
> PF_NETLINK/PF_ROUTE protocol family
> >     >       >     >       > [    0.498277] DMA: preallocated 256 KiB
> GFP_KERNEL pool for atomic allocations
> >     >       >     >       > [    0.503772] DMA: preallocated 256 KiB
> GFP_KERNEL|GFP_DMA pool for atomic allocations
> >     >       >     >       > [    0.511610] DMA: preallocated 256 KiB
> GFP_KERNEL|GFP_DMA32 pool for atomic allocations
> >     >       >     >       > [    0.519478] audit: initializing netlink
> subsys (disabled)
> >     >       >     >       > [    0.524985] audit: type=2000
> audit(0.336:1): state=initialized audit_enabled=0 res=1
> >     >       >     >       > [    0.529169] thermal_sys: Registered
> thermal governor 'step_wise'
> >     >       >     >       > [    0.533023] hw-breakpoint: found 6
> breakpoint and 4 watchpoint registers.
> >     >       >     >       > [    0.545608] ASID allocator initialised
> with 32768 entries
> >     >       >     >       > [    0.551030] xen:swiotlb_xen: Warning:
> only able to allocate 4 MB for software IO TLB
> >     >       >     >       > [    0.559332] software IO TLB: mapped [mem
> 0x0000000011800000-0x0000000011c00000] (4MB)
> >     >       >     >       > [    0.583565] HugeTLB registered 1.00 GiB
> page size, pre-allocated 0 pages
> >     >       >     >       > [    0.584721] HugeTLB registered 32.0 MiB
> page size, pre-allocated 0 pages
> >     >       >     >       > [    0.591478] HugeTLB registered 2.00 MiB
> page size, pre-allocated 0 pages
> >     >       >     >       > [    0.598225] HugeTLB registered 64.0 KiB
> page size, pre-allocated 0 pages
> >     >       >     >       > [    0.636520] DRBG: Continuing without
> Jitter RNG
> >     >       >     >       > [    0.737187] raid6: neonx8   gen()  2143
> MB/s
> >     >       >     >       > [    0.805294] raid6: neonx8   xor()  1589
> MB/s
> >     >       >     >       > [    0.873406] raid6: neonx4   gen()  2177
> MB/s
> >     >       >     >       > [    0.941499] raid6: neonx4   xor()  1556
> MB/s
> >     >       >     >       > [    1.009612] raid6: neonx2   gen()  2072
> MB/s
> >     >       >     >       > [    1.077715] raid6: neonx2   xor()  1430
> MB/s
> >     >       >     >       > [    1.145834] raid6: neonx1   gen()  1769
> MB/s
> >     >       >     >       > [    1.213935] raid6: neonx1   xor()  1214
> MB/s
> >     >       >     >       > [    1.282046] raid6: int64x8  gen()  1366
> MB/s
> >     >       >     >       > [    1.350132] raid6: int64x8  xor()   773
> MB/s
> >     >       >     >       > [    1.418259] raid6: int64x4  gen()  1602
> MB/s
> >     >       >     >       > [    1.486349] raid6: int64x4  xor()   851
> MB/s
> >     >       >     >       > [    1.554464] raid6: int64x2  gen()  1396
> MB/s
> >     >       >     >       > [    1.622561] raid6: int64x2  xor()   744
> MB/s
> >     >       >     >       > [    1.690687] raid6: int64x1  gen()  1033
> MB/s
> >     >       >     >       > [    1.758770] raid6: int64x1  xor()   517
> MB/s
> >     >       >     >       > [    1.758809] raid6: using algorithm neonx4
> gen() 2177 MB/s
> >     >       >     >       > [    1.762941] raid6: .... xor() 1556 MB/s,
> rmw enabled
> >     >       >     >       > [    1.767957] raid6: using neon recovery
> algorithm
> >     >       >     >       > [    1.772824] xen:balloon: Initialising
> balloon driver
> >     >       >     >       > [    1.778021] iommu: Default domain type:
> Translated
> >     >       >     >       > [    1.782584] iommu: DMA domain TLB
> invalidation policy: strict mode
> >     >       >     >       > [    1.789149] SCSI subsystem initialized
> >     >       >     >       > [    1.792820] usbcore: registered new
> interface driver usbfs
> >     >       >     >       > [    1.798254] usbcore: registered new
> interface driver hub
> >     >       >     >       > [    1.803626] usbcore: registered new
> device driver usb
> >     >       >     >       > [    1.808761] pps_core: LinuxPPS API ver. 1
> registered
> >     >       >     >       > [    1.813716] pps_core: Software ver. 5.3.6
> - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it <mailto:
> giometti@linux.it>
> >     >       <mailto:giometti@linux.it <mailto:giometti@linux.it>>>
> >     >       >     >       > [    1.822903] PTP clock support registered
> >     >       >     >       > [    1.826893] EDAC MC: Ver: 3.0.0
> >     >       >     >       > [    1.830375] zynqmp-ipi-mbox
> mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
> >     >       >     >       > [    1.838863] zynqmp-ipi-mbox
> mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX channels.
> >     >       >     >       > [    1.847356] zynqmp-ipi-mbox
> mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX channels.
> >     >       >     >       > [    1.855907] FPGA manager framework
> >     >       >     >       > [    1.859952] clocksource: Switched to
> clocksource arch_sys_counter
> >     >       >     >       > [    1.871712] NET: Registered PF_INET
> protocol family
> >     >       >     >       > [    1.871838] IP idents hash table entries:
> 32768 (order: 6, 262144 bytes, linear)
> >     >       >     >       > [    1.879392] tcp_listen_portaddr_hash hash
> table entries: 1024 (order: 2, 16384 bytes, linear)
> >     >       >     >       > [    1.887078] Table-perturb hash table
> entries: 65536 (order: 6, 262144 bytes, linear)
> >     >       >     >       > [    1.894846] TCP established hash table
> entries: 16384 (order: 5, 131072 bytes, linear)
> >     >       >     >       > [    1.902900] TCP bind hash table entries:
> 16384 (order: 6, 262144 bytes, linear)
> >     >       >     >       > [    1.910350] TCP: Hash tables configured
> (established 16384 bind 16384)
> >     >       >     >       > [    1.916778] UDP hash table entries: 1024
> (order: 3, 32768 bytes, linear)
> >     >       >     >       > [    1.923509] UDP-Lite hash table entries:
> 1024 (order: 3, 32768 bytes, linear)
> >     >       >     >       > [    1.930759] NET: Registered
> PF_UNIX/PF_LOCAL protocol family
> >     >       >     >       > [    1.936834] RPC: Registered named UNIX
> socket transport module.
> >     >       >     >       > [    1.942342] RPC: Registered udp transport
> module.
> >     >       >     >       > [    1.947088] RPC: Registered tcp transport
> module.
> >     >       >     >       > [    1.951843] RPC: Registered tcp NFSv4.1
> backchannel transport module.
> >     >       >     >       > [    1.958334] PCI: CLS 0 bytes, default 64
> >     >       >     >       > [    1.962709] Trying to unpack rootfs image
> as initramfs...
> >     >       >     >       > [    1.977090] workingset: timestamp_bits=62
> max_order=19 bucket_order=0
> >     >       >     >       > [    1.982863] Installing knfsd (copyright
> (C) 1996 okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:
> okir@monad.swb.de <mailto:okir@monad.swb.de>>).
> >     >       >     >       > [    2.021045] NET: Registered PF_ALG
> protocol family
> >     >       >     >       > [    2.021122] xor: measuring software
> checksum speed
> >     >       >     >       > [    2.029347]    8regs           :  2366
> MB/sec
> >     >       >     >       > [    2.033081]    32regs          :  2802
> MB/sec
> >     >       >     >       > [    2.038223]    arm64_neon      :  2320
> MB/sec
> >     >       >     >       > [    2.038385] xor: using function: 32regs
> (2802 MB/sec)
> >     >       >     >       > [    2.043614] Block layer SCSI generic
> (bsg) driver version 0.4 loaded (major 247)
> >     >       >     >       > [    2.050959] io scheduler mq-deadline
> registered
> >     >       >     >       > [    2.055521] io scheduler kyber registered
> >     >       >     >       > [    2.068227] xen:xen_evtchn: Event-channel
> device installed
> >     >       >     >       > [    2.069281] Serial: 8250/16550 driver, 4
> ports, IRQ sharing disabled
> >     >       >     >       > [    2.076190] cacheinfo: Unable to detect
> cache hierarchy for CPU 0
> >     >       >     >       > [    2.085548] brd: module loaded
> >     >       >     >       > [    2.089290] loop: module loaded
> >     >       >     >       > [    2.089341] Invalid max_queues (4), will
> use default max: 2.
> >     >       >     >       > [    2.094565] tun: Universal TUN/TAP device
> driver, 1.6
> >     >       >     >       > [    2.098655] xen_netfront: Initialising
> Xen virtual ethernet driver
> >     >       >     >       > [    2.104156] usbcore: registered new
> interface driver rtl8150
> >     >       >     >       > [    2.109813] usbcore: registered new
> interface driver r8152
> >     >       >     >       > [    2.115367] usbcore: registered new
> interface driver asix
> >     >       >     >       > [    2.120794] usbcore: registered new
> interface driver ax88179_178a
> >     >       >     >       > [    2.126934] usbcore: registered new
> interface driver cdc_ether
> >     >       >     >       > [    2.132816] usbcore: registered new
> interface driver cdc_eem
> >     >       >     >       > [    2.138527] usbcore: registered new
> interface driver net1080
> >     >       >     >       > [    2.144256] usbcore: registered new
> interface driver cdc_subset
> >     >       >     >       > [    2.150205] usbcore: registered new
> interface driver zaurus
> >     >       >     >       > [    2.155837] usbcore: registered new
> interface driver cdc_ncm
> >     >       >     >       > [    2.161550] usbcore: registered new
> interface driver r8153_ecm
> >     >       >     >       > [    2.168240] usbcore: registered new
> interface driver cdc_acm
> >     >       >     >       > [    2.173109] cdc_acm: USB Abstract Control
> Model driver for USB modems and ISDN adapters
> >     >       >     >       > [    2.181358] usbcore: registered new
> interface driver uas
> >     >       >     >       > [    2.186547] usbcore: registered new
> interface driver usb-storage
> >     >       >     >       > [    2.192643] usbcore: registered new
> interface driver ftdi_sio
> >     >       >     >       > [    2.198384] usbserial: USB Serial support
> registered for FTDI USB Serial Device
> >     >       >     >       > [    2.206118] udc-core: couldn't find an
> available UDC - added [g_mass_storage] to list of pending
> >     >       drivers
> >     >       >     >       > [    2.215332] i2c_dev: i2c /dev entries
> driver
> >     >       >     >       > [    2.220467] xen_wdt xen_wdt: initialized
> (timeout=60s, nowayout=0)
> >     >       >     >       > [    2.225923] device-mapper: uevent:
> version 1.0.3
> >     >       >     >       > [    2.230668] device-mapper: ioctl:
> 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com <mailto:
> dm-devel@redhat.com>
> >     >       <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>>
> >     >       >     >       > [    2.239315] EDAC MC0: Giving out device
> to module 1 controller synps_ddr_controller: DEV synps_edac
> >     >       (INTERRUPT)
> >     >       >     >       > [    2.249405] EDAC DEVICE0: Giving out
> device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV
> >     >       >     >       ff960000.memory-controller (INTERRUPT)
> >     >       >     >       > [    2.261719] sdhci: Secure Digital Host
> Controller Interface driver
> >     >       >     >       > [    2.267487] sdhci: Copyright(c) Pierre
> Ossman
> >     >       >     >       > [    2.271890] sdhci-pltfm: SDHCI platform
> and OF driver helper
> >     >       >     >       > [    2.278157] ledtrig-cpu: registered to
> indicate activity on CPUs
> >     >       >     >       > [    2.283816] zynqmp_firmware_probe
> Platform Management API v1.1
> >     >       >     >       > [    2.289554] zynqmp_firmware_probe
> Trustzone version v1.0
> >     >       >     >       > [    2.327875] securefw securefw: securefw
> probed
> >     >       >     >       > [    2.328324] alg: No test for
> xilinx-zynqmp-aes (zynqmp-aes)
> >     >       >     >       > [    2.332563] zynqmp_aes
> firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
> >     >       >     >       > [    2.341183] alg: No test for
> xilinx-zynqmp-rsa (zynqmp-rsa)
> >     >       >     >       > [    2.347667] remoteproc remoteproc0:
> ff9a0000.rf5ss:r5f_0 is available
> >     >       >     >       > [    2.353003] remoteproc remoteproc1:
> ff9a0000.rf5ss:r5f_1 is available
> >     >       >     >       > [    2.362605] fpga_manager fpga0: Xilinx
> ZynqMP FPGA Manager registered
> >     >       >     >       > [    2.366540] viper-xen-proxy
> viper-xen-proxy: Viper Xen Proxy registered
> >     >       >     >       > [    2.372525] viper-vdpp a4000000.vdpp:
> Device Tree Probing
> >     >       >     >       > [    2.377778] viper-vdpp a4000000.vdpp:
> VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >     >       >     >       > [    2.386432] viper-vdpp a4000000.vdpp:
> Unable to register tamper handler. Retrying...
> >     >       >     >       > [    2.394094] viper-vdpp-net
> a5000000.vdpp_net: Device Tree Probing
> >     >       >     >       > [    2.399854] viper-vdpp-net
> a5000000.vdpp_net: Device registered
> >     >       >     >       > [    2.405931] viper-vdpp-stat
> a8000000.vdpp_stat: Device Tree Probing
> >     >       >     >       > [    2.412037] viper-vdpp-stat
> a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event Count: 32
> >     >       >     >       > [    2.420856] default preset
> >     >       >     >       > [    2.423797] viper-vdpp-stat
> a8000000.vdpp_stat: Device registered
> >     >       >     >       > [    2.430054] viper-vdpp-rng
> ac000000.vdpp_rng: Device Tree Probing
> >     >       >     >       > [    2.435948] viper-vdpp-rng
> ac000000.vdpp_rng: Device registered
> >     >       >     >       > [    2.441976] vmcu driver init
> >     >       >     >       > [    2.444922] VMCU: : (240:0) registered
> >     >       >     >       > [    2.444956] In K81 Updater init
> >     >       >     >       > [    2.449003] pktgen: Packet Generator for
> packet performance testing. Version: 2.75
> >     >       >     >       > [    2.468833] Initializing XFRM netlink
> socket
> >     >       >     >       > [    2.468902] NET: Registered PF_PACKET
> protocol family
> >     >       >     >       > [    2.472729] Bridge firewalling registered
> >     >       >     >       > [    2.476785] 8021q: 802.1Q VLAN Support
> v1.8
> >     >       >     >       > [    2.481341] registered taskstats version 1
> >     >       >     >       > [    2.486394] Btrfs loaded,
> crc32c=crc32c-generic, zoned=no, fsverity=no
> >     >       >     >       > [    2.503145] ff010000.serial: ttyPS1 at
> MMIO 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
> >     >       >     >       > [    2.507103] of-fpga-region fpga-full:
> FPGA Region probed
> >     >       >     >       > [    2.512986] xilinx-zynqmp-dma
> fd500000.dma-controller: ZynqMP DMA driver Probe success
> >     >       >     >       > [    2.520267] xilinx-zynqmp-dma
> fd510000.dma-controller: ZynqMP DMA driver Probe success
> >     >       >     >       > [    2.528239] xilinx-zynqmp-dma
> fd520000.dma-controller: ZynqMP DMA driver Probe success
> >     >       >     >       > [    2.536152] xilinx-zynqmp-dma
> fd530000.dma-controller: ZynqMP DMA driver Probe success
> >     >       >     >       > [    2.544153] xilinx-zynqmp-dma
> fd540000.dma-controller: ZynqMP DMA driver Probe success
> >     >       >     >       > [    2.552127] xilinx-zynqmp-dma
> fd550000.dma-controller: ZynqMP DMA driver Probe success
> >     >       >     >       > [    2.560178] xilinx-zynqmp-dma
> ffa80000.dma-controller: ZynqMP DMA driver Probe success
> >     >       >     >       > [    2.567987] xilinx-zynqmp-dma
> ffa90000.dma-controller: ZynqMP DMA driver Probe success
> >     >       >     >       > [    2.576018] xilinx-zynqmp-dma
> ffaa0000.dma-controller: ZynqMP DMA driver Probe success
> >     >       >     >       > [    2.583889] xilinx-zynqmp-dma
> ffab0000.dma-controller: ZynqMP DMA driver Probe success
> >     >       >     >       > [    2.946379] spi-nor spi0.0: mt25qu512a
> (131072 Kbytes)
> >     >       >     >       > [    2.946467] 2 fixed-partitions partitions
> found on MTD device spi0.0
> >     >       >     >       > [    2.952393] Creating 2 MTD partitions on
> "spi0.0":
> >     >       >     >       > [    2.957231] 0x000004000000-0x000008000000
> : "bank A"
> >     >       >     >       > [    2.963332] 0x000000000000-0x000004000000
> : "bank B"
> >     >       >     >       > [    2.968694] macb ff0b0000.ethernet: Not
> enabling partial store and forward
> >     >       >     >       > [    2.975333] macb ff0b0000.ethernet eth0:
> Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25
> >     >       (18:41:fe:0f:ff:02)
> >     >       >     >       > [    2.984472] macb ff0c0000.ethernet: Not
> enabling partial store and forward
> >     >       >     >       > [    2.992144] macb ff0c0000.ethernet eth1:
> Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26
> >     >       (18:41:fe:0f:ff:03)
> >     >       >     >       > [    3.001043] viper_enet viper_enet: Viper
> power GPIOs initialised
> >     >       >     >       > [    3.007313] viper_enet viper_enet vnet0
> (uninitialized): Validate interface QSGMII
> >     >       >     >       > [    3.014914] viper_enet viper_enet vnet1
> (uninitialized): Validate interface QSGMII
> >     >       >     >       > [    3.022138] viper_enet viper_enet vnet1
> (uninitialized): Validate interface type 18
> >     >       >     >       > [    3.030274] viper_enet viper_enet vnet2
> (uninitialized): Validate interface QSGMII
> >     >       >     >       > [    3.037785] viper_enet viper_enet vnet3
> (uninitialized): Validate interface QSGMII
> >     >       >     >       > [    3.045301] viper_enet viper_enet: Viper
> enet registered
> >     >       >     >       > [    3.050958] xilinx-axipmon
> ffa00000.perf-monitor: Probed Xilinx APM
> >     >       >     >       > [    3.057135] xilinx-axipmon
> fd0b0000.perf-monitor: Probed Xilinx APM
> >     >       >     >       > [    3.063538] xilinx-axipmon
> fd490000.perf-monitor: Probed Xilinx APM
> >     >       >     >       > [    3.069920] xilinx-axipmon
> ffa10000.perf-monitor: Probed Xilinx APM
> >     >       >     >       > [    3.097729] si70xx: probe of 2-0040
> failed with error -5
> >     >       >     >       > [    3.098042] cdns-wdt fd4d0000.watchdog:
> Xilinx Watchdog Timer with timeout 60s
> >     >       >     >       > [    3.105111] cdns-wdt ff150000.watchdog:
> Xilinx Watchdog Timer with timeout 10s
> >     >       >     >       > [    3.112457] viper-tamper viper-tamper:
> Device registered
> >     >       >     >       > [    3.117593] active_bank active_bank: boot
> bank: 1
> >     >       >     >       > [    3.122184] active_bank active_bank: boot
> mode: (0x02) qspi32
> >     >       >     >       > [    3.128247] viper-vdpp a4000000.vdpp:
> Device Tree Probing
> >     >       >     >       > [    3.133439] viper-vdpp a4000000.vdpp:
> VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >     >       >     >       > [    3.142151] viper-vdpp a4000000.vdpp:
> Tamper handler registered
> >     >       >     >       > [    3.147438] viper-vdpp a4000000.vdpp:
> Device registered
> >     >       >     >       > [    3.153007] lpc55_l2 spi1.0: registered
> handler for protocol 0
> >     >       >     >       > [    3.158582] lpc55_user lpc55_user: The
> major number for your device is 236
> >     >       >     >       > [    3.165976] lpc55_l2 spi1.0: registered
> handler for protocol 1
> >     >       >     >       > [    3.181999] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_get_time: bad result: 1
> >     >       >     >       > [    3.182856] rtc-lpc55 rtc_lpc55:
> registered as rtc0
> >     >       >     >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu
> still not ready?
> >     >       >     >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu
> still not ready?
> >     >       >     >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu
> still not ready?
> >     >       >     >       > [    3.202932] mmc0: SDHCI controller on
> ff160000.mmc [ff160000.mmc] using ADMA 64-bit
> >     >       >     >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu
> still not ready?
> >     >       >     >       > [    3.215694] lpc55_l2 spi1.0: rx error:
> -110
> >     >       >     >       > [    3.284438] mmc0: new HS200 MMC card at
> address 0001
> >     >       >     >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G
> 14.6 GiB
> >     >       >     >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6
> p7 p8
> >     >       >     >       > [    3.293915] mmcblk0boot0: mmc0:0001
> SEM16G 4.00 MiB
> >     >       >     >       > [    3.299054] mmcblk0boot1: mmc0:0001
> SEM16G 4.00 MiB
> >     >       >     >       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G
> 4.00 MiB, chardev (244:0)
> >     >       >     >       > [    3.582676] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_get_time: bad result: 1
> >     >       >     >       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys:
> unable to read the hardware clock
> >     >       >     >       > [    3.591252] cdns-i2c ff020000.i2c:
> recovery information complete
> >     >       >     >       > [    3.597085] at24 0-0050: supply vcc not
> found, using dummy regulator
> >     >       >     >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu
> still not ready?
> >     >       >     >       > [    3.608093] at24 0-0050: 256 byte spd
> EEPROM, read-only
> >     >       >     >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu
> still not ready?
> >     >       >     >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu
> still not ready?
> >     >       >     >       > [    3.624224] rtc-rv3028 0-0052: registered
> as rtc1
> >     >       >     >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu
> still not ready?
> >     >       >     >       > [    3.633253] lpc55_l2 spi1.0: rx error:
> -110
> >     >       >     >       > [    3.639104] k81_bootloader 0-0010: probe
> >     >       >     >       > [    3.641628] VMCU: : (235:0) registered
> >     >       >     >       > [    3.641635] k81_bootloader 0-0010: probe
> completed
> >     >       >     >       > [    3.668346] cdns-i2c ff020000.i2c: 400
> kHz mmio ff020000 irq 28
> >     >       >     >       > [    3.669154] cdns-i2c ff030000.i2c:
> recovery information complete
> >     >       >     >       > [    3.675412] lm75 1-0048: supply vs not
> found, using dummy regulator
> >     >       >     >       > [    3.682920] lm75 1-0048: hwmon1: sensor
> 'tmp112'
> >     >       >     >       > [    3.686548] i2c i2c-1: Added multiplexed
> i2c bus 3
> >     >       >     >       > [    3.690795] i2c i2c-1: Added multiplexed
> i2c bus 4
> >     >       >     >       > [    3.695629] i2c i2c-1: Added multiplexed
> i2c bus 5
> >     >       >     >       > [    3.700492] i2c i2c-1: Added multiplexed
> i2c bus 6
> >     >       >     >       > [    3.705157] pca954x 1-0070: registered 4
> multiplexed busses for I2C switch pca9546
> >     >       >     >       > [    3.713049] at24 1-0054: supply vcc not
> found, using dummy regulator
> >     >       >     >       > [    3.720067] at24 1-0054: 1024 byte 24c08
> EEPROM, read-only
> >     >       >     >       > [    3.724761] cdns-i2c ff030000.i2c: 100
> kHz mmio ff030000 irq 29
> >     >       >     >       > [    3.731272] sfp viper_enet:sfp-eth1: Host
> maximum power 2.0W
> >     >       >     >       > [    3.737549] sfp_register_socket: got
> sfp_bus
> >     >       >     >       > [    3.740709] sfp_register_socket: register
> sfp_bus
> >     >       >     >       > [    3.745459] sfp_register_bus: ops ok!
> >     >       >     >       > [    3.749179] sfp_register_bus: Try to
> attach
> >     >       >     >       > [    3.753419] sfp_register_bus: Attach
> succeeded
> >     >       >     >       > [    3.757914] sfp_register_bus: upstream
> ops attach
> >     >       >     >       > [    3.762677] sfp_register_bus: Bus
> registered
> >     >       >     >       > [    3.766999] sfp_register_socket: register
> sfp_bus succeeded
> >     >       >     >       > [    3.775870] of_cfs_init
> >     >       >     >       > [    3.776000] of_cfs_init: OK
> >     >       >     >       > [    3.778211] clk: Not disabling unused
> clocks
> >     >       >     >       > [   11.278477] Freeing initrd memory: 206056K
> >     >       >     >       > [   11.279406] Freeing unused kernel memory:
> 1536K
> >     >       >     >       > [   11.314006] Checked W+X mappings: passed,
> no W+X pages found
> >     >       >     >       > [   11.314142] Run /init as init process
> >     >       >     >       > INIT: version 3.01 booting
> >     >       >     >       > fsck (busybox 1.35.0)
> >     >       >     >       > /dev/mmcblk0p1: clean, 12/102400 files,
> 238162/409600 blocks
> >     >       >     >       > /dev/mmcblk0p2: clean, 12/102400 files,
> 171972/409600 blocks
> >     >       >     >       > /dev/mmcblk0p3 was not cleanly unmounted,
> check forced.
> >     >       >     >       > /dev/mmcblk0p3: 20/4096 files (0.0%
> non-contiguous), 663/16384 blocks
> >     >       >     >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted
> filesystem without journal. Opts: (null). Quota mode:
> >     >       disabled.
> >     >       >     >       > Starting random number generator daemon.
> >     >       >     >       > [   11.580662] random: crng init done
> >     >       >     >       > Starting udev
> >     >       >     >       > [   11.613159] udevd[142]: starting version
> 3.2.10
> >     >       >     >       > [   11.620385] udevd[143]: starting
> eudev-3.2.10
> >     >       >     >       > [   11.704481] macb ff0b0000.ethernet
> control_red: renamed from eth0
> >     >       >     >       > [   11.720264] macb ff0c0000.ethernet
> control_black: renamed from eth1
> >     >       >     >       > [   12.063396] ip_local_port_range: prefer
> different parity for start/end values.
> >     >       >     >       > [   12.084801] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_get_time: bad result: 1
> >     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
> >     >       >     >       > Mon Feb 27 08:40:53 UTC 2023
> >     >       >     >       > [   12.115309] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_set_time: bad result
> >     >       >     >       > hwclock: RTC_SET_TIME: Invalid exchange
> >     >       >     >       > [   12.131027] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_get_time: bad result: 1
> >     >       >     >       > Starting mcud
> >     >       >     >       > INIT: Entering runlevel: 5
> >     >       >     >       > Configuring network interfaces... done.
> >     >       >     >       > resetting network interface
> >     >       >     >       > [   12.718295] macb ff0b0000.ethernet
> control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver [Xilinx
> >     >       PCS/PMA PHY] (irq=POLL)
> >     >       >     >       > [   12.723919] macb ff0b0000.ethernet
> control_red: configuring for phy/gmii link mode
> >     >       >     >       > [   12.732151] pps pps0: new PPS source ptp0
> >     >       >     >       > [   12.735563] macb ff0b0000.ethernet:
> gem-ptp-timer ptp clock registered.
> >     >       >     >       > [   12.745724] macb ff0c0000.ethernet
> control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver [Xilinx
> >     >       PCS/PMA PHY]
> >     >       >     >       (irq=POLL)
> >     >       >     >       > [   12.753469] macb ff0c0000.ethernet
> control_black: configuring for phy/gmii link mode
> >     >       >     >       > [   12.761804] pps pps1: new PPS source ptp1
> >     >       >     >       > [   12.765398] macb ff0c0000.ethernet:
> gem-ptp-timer ptp clock registered.
> >     >       >     >       > Auto-negotiation: off
> >     >       >     >       > Auto-negotiation: off
> >     >       >     >       > [   16.828151] macb ff0b0000.ethernet
> control_red: unable to generate target frequency: 125000000 Hz
> >     >       >     >       > [   16.834553] macb ff0b0000.ethernet
> control_red: Link is Up - 1Gbps/Full - flow control off
> >     >       >     >       > [   16.860552] macb ff0c0000.ethernet
> control_black: unable to generate target frequency: 125000000 Hz
> >     >       >     >       > [   16.867052] macb ff0c0000.ethernet
> control_black: Link is Up - 1Gbps/Full - flow control off
> >     >       >     >       > Starting Failsafe Secure Shell server in
> port 2222: sshd
> >     >       >     >       > done.
> >     >       >     >       > Starting rpcbind daemon...done.
> >     >       >     >       >
> >     >       >     >       > [   17.093019] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_get_time: bad result: 1
> >     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
> >     >       >     >       > Starting State Manager Service
> >     >       >     >       > Start state-manager restarter...
> >     >       >     >       > (XEN) d0v1 Forwarding AES operation:
> 3254779951
> >     >       >     >       > Starting /usr/sbin/xenstored....[
> 17.265256] BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa
> >     >       devid 1 transid 744
> >     >       >     >       /dev/dm-0
> >     >       >     >       > scanned by udevd (385)
> >     >       >     >       > [   17.349933] BTRFS info (device dm-0):
> disk space caching is enabled
> >     >       >     >       > [   17.350670] BTRFS info (device dm-0): has
> skinny extents
> >     >       >     >       > [   17.364384] BTRFS info (device dm-0):
> enabling ssd optimizations
> >     >       >     >       > [   17.830462] BTRFS: device fsid
> 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
> >     >       /dev/mapper/client_prov scanned by
> >     >       >     >       mkfs.btrfs
> >     >       >     >       > (526)
> >     >       >     >       > [   17.872699] BTRFS info (device dm-1):
> using free space tree
> >     >       >     >       > [   17.872771] BTRFS info (device dm-1): has
> skinny extents
> >     >       >     >       > [   17.878114] BTRFS info (device dm-1):
> flagging fs with big metadata feature
> >     >       >     >       > [   17.894289] BTRFS info (device dm-1):
> enabling ssd optimizations
> >     >       >     >       > [   17.895695] BTRFS info (device dm-1):
> checking UUID tree
> >     >       >     >       >
> >     >       >     >       > Setting domain 0 name, domid and JSON
> config...
> >     >       >     >       > Done setting up Dom0
> >     >       >     >       > Starting xenconsoled...
> >     >       >     >       > Starting QEMU as disk backend for dom0
> >     >       >     >       > Starting domain watchdog daemon:
> xenwatchdogd startup
> >     >       >     >       >
> >     >       >     >       > [   18.408647] BTRFS: device fsid
> 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
> >     >       /dev/mapper/client_config scanned by
> >     >       >     >       mkfs.btrfs
> >     >       >     >       > (574)
> >     >       >     >       > [done]
> >     >       >     >       > [   18.465552] BTRFS info (device dm-2):
> using free space tree
> >     >       >     >       > [   18.465629] BTRFS info (device dm-2): has
> skinny extents
> >     >       >     >       > [   18.471002] BTRFS info (device dm-2):
> flagging fs with big metadata feature
> >     >       >     >       > Starting crond: [   18.482371] BTRFS info
> (device dm-2): enabling ssd optimizations
> >     >       >     >       > [   18.486659] BTRFS info (device dm-2):
> checking UUID tree
> >     >       >     >       > OK
> >     >       >     >       > starting rsyslogd ... Log partition ready
> after 0 poll loops
> >     >       >     >       > done
> >     >       >     >       > rsyslogd: cannot connect to 172.18.0.1:514 <
> http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>>:
> Network is unreachable [v8.2208.0 try
> >     >       https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <
> https://www.rsyslog.com/e/2027>> ]
> >     >       >     >       > [   18.670637] BTRFS: device fsid
> 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3
> >     >       scanned by udevd (518)
> >     >       >     >       >
> >     >       >     >       > Please insert USB token and enter your role
> in login prompt.
> >     >       >     >       >
> >     >       >     >       > login:
> >     >       >     >       >
> >     >       >     >       > Regards,
> >     >       >     >       > O.
> >     >       >     >       >
> >     >       >     >       >
> >     >       >     >       > пн, 24 апр. 2023 г. в 23:39, Stefano
> Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
> >     >       >     >       >       Hi Oleg,
> >     >       >     >       >
> >     >       >     >       >       Here is the issue from your logs:
> >     >       >     >       >
> >     >       >     >       >       SError Interrupt on CPU0, code
> 0xbe000000 -- SError
> >     >       >     >       >
> >     >       >     >       >       SErrors are special signals to notify
> software of serious hardware
> >     >       >     >       >       errors.  Something is going very
> wrong. Defective hardware is a
> >     >       >     >       >       possibility.  Another possibility if
> software accessing address ranges
> >     >       >     >       >       that it is not supposed to, sometimes
> it causes SErrors.
> >     >       >     >       >
> >     >       >     >       >       Cheers,
> >     >       >     >       >
> >     >       >     >       >       Stefano
> >     >       >     >       >
> >     >       >     >       >
> >     >       >     >       >
> >     >       >     >       >       On Mon, 24 Apr 2023, Oleg Nikitenko
> wrote:
> >     >       >     >       >
> >     >       >     >       >       > Hello,
> >     >       >     >       >       >
> >     >       >     >       >       > Thanks guys.
> >     >       >     >       >       > I found out where the problem was.
> >     >       >     >       >       > Now dom0 booted more. But I have a
> new one.
> >     >       >     >       >       > This is a kernel panic during Dom0
> loading.
> >     >       >     >       >       > Maybe someone is able to suggest
> something ?
> >     >       >     >       >       >
> >     >       >     >       >       > Regards,
> >     >       >     >       >       > O.
> >     >       >     >       >       >
> >     >       >     >       >       > [    3.771362] sfp_register_bus:
> upstream ops attach
> >     >       >     >       >       > [    3.776119] sfp_register_bus: Bus
> registered
> >     >       >     >       >       > [    3.780459] sfp_register_socket:
> register sfp_bus succeeded
> >     >       >     >       >       > [    3.789399] of_cfs_init
> >     >       >     >       >       > [    3.789499] of_cfs_init: OK
> >     >       >     >       >       > [    3.791685] clk: Not disabling
> unused clocks
> >     >       >     >       >       > [   11.010355] SError Interrupt on
> CPU0, code 0xbe000000 -- SError
> >     >       >     >       >       > [   11.010380] CPU: 0 PID: 9 Comm:
> kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
> >     >       >     >       >       > [   11.010393] Workqueue:
> events_unbound async_run_entry_fn
> >     >       >     >       >       > [   11.010414] pstate: 60000005
> (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
> >     >       >     >       >       > [   11.010422] pc :
> simple_write_end+0xd0/0x130
> >     >       >     >       >       > [   11.010431] lr :
> generic_perform_write+0x118/0x1e0
> >     >       >     >       >       > [   11.010438] sp : ffffffc00809b910
> >     >       >     >       >       > [   11.010441] x29: ffffffc00809b910
> x28: 0000000000000000 x27: ffffffef69ba88c0
> >     >       >     >       >       > [   11.010451] x26: 0000000000003eec
> x25: ffffff807515db00 x24: 0000000000000000
> >     >       >     >       >       > [   11.010459] x23: ffffffc00809ba90
> x22: 0000000002aac000 x21: ffffff807315a260
> >     >       >     >       >       > [   11.010472] x20: 0000000000001000
> x19: fffffffe02000000 x18: 0000000000000000
> >     >       >     >       >       > [   11.010481] x17: 00000000ffffffff
> x16: 0000000000008000 x15: 0000000000000000
> >     >       >     >       >       > [   11.010490] x14: 0000000000000000
> x13: 0000000000000000 x12: 0000000000000000
> >     >       >     >       >       > [   11.010498] x11: 0000000000000000
> x10: 0000000000000000 x9 : 0000000000000000
> >     >       >     >       >       > [   11.010507] x8 : 0000000000000000
> x7 : ffffffef693ba680 x6 : 000000002d89b700
> >     >       >     >       >       > [   11.010515] x5 : fffffffe02000000
> x4 : ffffff807315a3c8 x3 : 0000000000001000
> >     >       >     >       >       > [   11.010524] x2 : 0000000002aab000
> x1 : 0000000000000001 x0 : 0000000000000005
> >     >       >     >       >       > [   11.010534] Kernel panic - not
> syncing: Asynchronous SError Interrupt
> >     >       >     >       >       > [   11.010539] CPU: 0 PID: 9 Comm:
> kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
> >     >       >     >       >       > [   11.010545] Hardware name: D14
> Viper Board - White Unit (DT)
> >     >       >     >       >       > [   11.010548] Workqueue:
> events_unbound async_run_entry_fn
> >     >       >     >       >       > [   11.010556] Call trace:
> >     >       >     >       >       > [   11.010558]
>  dump_backtrace+0x0/0x1c4
> >     >       >     >       >       > [   11.010567]  show_stack+0x18/0x2c
> >     >       >     >       >       > [   11.010574]
>  dump_stack_lvl+0x7c/0xa0
> >     >       >     >       >       > [   11.010583]  dump_stack+0x18/0x34
> >     >       >     >       >       > [   11.010588]  panic+0x14c/0x2f8
> >     >       >     >       >       > [   11.010597]
>  print_tainted+0x0/0xb0
> >     >       >     >       >       > [   11.010606]
>  arm64_serror_panic+0x6c/0x7c
> >     >       >     >       >       > [   11.010614]  do_serror+0x28/0x60
> >     >       >     >       >       > [   11.010621]
>  el1h_64_error_handler+0x30/0x50
> >     >       >     >       >       > [   11.010628]
>  el1h_64_error+0x78/0x7c
> >     >       >     >       >       > [   11.010633]
>  simple_write_end+0xd0/0x130
> >     >       >     >       >       > [   11.010639]
>  generic_perform_write+0x118/0x1e0
> >     >       >     >       >       > [   11.010644]
>  __generic_file_write_iter+0x138/0x1c4
> >     >       >     >       >       > [   11.010650]
>  generic_file_write_iter+0x78/0xd0
> >     >       >     >       >       > [   11.010656]
>  __kernel_write+0xfc/0x2ac
> >     >       >     >       >       > [   11.010665]
>  kernel_write+0x88/0x160
> >     >       >     >       >       > [   11.010673]  xwrite+0x44/0x94
> >     >       >     >       >       > [   11.010680]  do_copy+0xa8/0x104
> >     >       >     >       >       > [   11.010686]
>  write_buffer+0x38/0x58
> >     >       >     >       >       > [   11.010692]
>  flush_buffer+0x4c/0xbc
> >     >       >     >       >       > [   11.010698]  __gunzip+0x280/0x310
> >     >       >     >       >       > [   11.010704]  gunzip+0x1c/0x28
> >     >       >     >       >       > [   11.010709]
>  unpack_to_rootfs+0x170/0x2b0
> >     >       >     >       >       > [   11.010715]
>  do_populate_rootfs+0x80/0x164
> >     >       >     >       >       > [   11.010722]
>  async_run_entry_fn+0x48/0x164
> >     >       >     >       >       > [   11.010728]
>  process_one_work+0x1e4/0x3a0
> >     >       >     >       >       > [   11.010736]
>  worker_thread+0x7c/0x4c0
> >     >       >     >       >       > [   11.010743]  kthread+0x120/0x130
> >     >       >     >       >       > [   11.010750]
>  ret_from_fork+0x10/0x20
> >     >       >     >       >       > [   11.010757] SMP: stopping
> secondary CPUs
> >     >       >     >       >       > [   11.010784] Kernel Offset:
> 0x2f61200000 from 0xffffffc008000000
> >     >       >     >       >       > [   11.010788] PHYS_OFFSET: 0x0
> >     >       >     >       >       > [   11.010790] CPU features:
> 0x00000401,00000842
> >     >       >     >       >       > [   11.010795] Memory Limit: none
> >     >       >     >       >       > [   11.277509] ---[ end Kernel panic
> - not syncing: Asynchronous SError Interrupt ]---
> >     >       >     >       >       >
> >     >       >     >       >       > пт, 21 апр. 2023 г. в 15:52, Michal
> Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
> >     >       >     >       >       >       Hi Oleg,
> >     >       >     >       >       >
> >     >       >     >       >       >       On 21/04/2023 14:49, Oleg
> Nikitenko wrote:
> >     >       >     >       >       >       >
> >     >       >     >       >       >       >
> >     >       >     >       >       >       >
> >     >       >     >       >       >       > Hello Michal,
> >     >       >     >       >       >       >
> >     >       >     >       >       >       > I was not able to enable
> earlyprintk in the xen for now.
> >     >       >     >       >       >       > I decided to choose another
> way.
> >     >       >     >       >       >       > This is a xen's command line
> that I found out completely.
> >     >       >     >       >       >       >
> >     >       >     >       >       >       > (XEN) $$$$ console=dtuart
> dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
> >     >       bootscrub=0
> >     >       >     >       vwfi=native
> >     >       >     >       >       sched=null
> >     >       >     >       >       >       timer_slop=0
> >     >       >     >       >       >       Yes, adding a printk() in Xen
> was also a good idea.
> >     >       >     >       >       >
> >     >       >     >       >       >       >
> >     >       >     >       >       >       > So you are absolutely right
> about a command line.
> >     >       >     >       >       >       > Now I am going to find out
> why xen did not have the correct parameters from the device
> >     >       tree.
> >     >       >     >       >       >       Maybe you will find this
> document helpful:
> >     >       >     >       >       >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >
> >     >       <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >>
> >     >       >     >       >       >
> >     >       >     >       >       >       ~Michal
> >     >       >     >       >       >
> >     >       >     >       >       >       >
> >     >       >     >       >       >       > Regards,
> >     >       >     >       >       >       > Oleg
> >     >       >     >       >       >       >
> >     >       >     >       >       >       > пт, 21 апр. 2023 г. в 11:16,
> Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>
> >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>:
> >     >       >     >       >       >       >
> >     >       >     >       >       >       >
> >     >       >     >       >       >       >     On 21/04/2023 10:04,
> Oleg Nikitenko wrote:
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     > Hello Michal,
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     > Yes, I use yocto.
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     > Yesterday all day long
> I tried to follow your suggestions.
> >     >       >     >       >       >       >     > I faced a problem.
> >     >       >     >       >       >       >     > Manually in the xen
> config build file I pasted the strings:
> >     >       >     >       >       >       >     In the .config file or
> in some Yocto file (listing additional Kconfig options) added
> >     >       to SRC_URI?
> >     >       >     >       >       >       >     You shouldn't really
> modify .config file but if you do, you should execute "make
> >     >       olddefconfig"
> >     >       >     >       afterwards.
> >     >       >     >       >       >       >
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     > CONFIG_EARLY_PRINTK
> >     >       >     >       >       >       >     >
> CONFIG_EARLY_PRINTK_ZYNQMP
> >     >       >     >       >       >       >     >
> CONFIG_EARLY_UART_CHOICE_CADENCE
> >     >       >     >       >       >       >     I hope you added =y to
> them.
> >     >       >     >       >       >       >
> >     >       >     >       >       >       >     Anyway, you have at
> least the following solutions:
> >     >       >     >       >       >       >     1) Run bitbake xen -c
> menuconfig to properly set early printk
> >     >       >     >       >       >       >     2) Find out how you
> enable other Kconfig options in your project (e.g.
> >     >       CONFIG_COLORING=y that is not
> >     >       >     >       enabled by
> >     >       >     >       >       default)
> >     >       >     >       >       >       >     3) Append the following
> to "xen/arch/arm/configs/arm64_defconfig":
> >     >       >     >       >       >       >
>  CONFIG_EARLY_PRINTK_ZYNQMP=y
> >     >       >     >       >       >       >
> >     >       >     >       >       >       >     ~Michal
> >     >       >     >       >       >       >
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     > Host hangs in build
> time.
> >     >       >     >       >       >       >     > Maybe I did not set
> something in the config build file ?
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     > Regards,
> >     >       >     >       >       >       >     > Oleg
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     > чт, 20 апр. 2023 г. в
> 11:57, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
> >
> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
> >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>
> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
> >>>>>:
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >     Thanks Michal,
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >     You gave me an
> idea.
> >     >       >     >       >       >       >     >     I am going to try
> it today.
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >     Regards,
> >     >       >     >       >       >       >     >     O.
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >     чт, 20 апр.
> 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>
> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
> >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>
> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
> >>>>>:
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >         Thanks Stefano.
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >         I am going to
> do it today.
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >         Regards,
> >     >       >     >       >       >       >     >         O.
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >         ср, 19 апр.
> 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>
> >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>
> >     >       >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>
> >     >       >     >       >       >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>
> >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>:
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >             On Wed, 19
> Apr 2023, Oleg Nikitenko wrote:
> >     >       >     >       >       >       >     >             > Hi
> Michal,
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             > I
> corrected xen's command line.
> >     >       >     >       >       >       >     >             > Now it is
> >     >       >     >       >       >       >     >             >
> xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M
> >     >       dom0_max_vcpus=2
> >     >       >     >       dom0_vcpus_pin
> >     >       >     >       >       >       bootscrub=0 vwfi=native
> sched=null
> >     >       >     >       >       >       >     >             >
> timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >             4 colors
> is way too many for xen, just do xen_colors=0-0. There is no
> >     >       >     >       >       >       >     >             advantage
> in using more than 1 color for Xen.
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >             4 colors
> is too few for dom0, if you are giving 1600M of memory to
> >     >       Dom0.
> >     >       >     >       >       >       >     >             Each color
> is 256M. For 1600M you should give at least 7 colors. Try:
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >
>  xen_colors=0-0 dom0_colors=1-8
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >     >             >
> Unfortunately the result was the same.
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             > (XEN)  -
> Dom0 mode: Relaxed
> >     >       >     >       >       >       >     >             > (XEN)
> P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
> >     >       >     >       >       >       >     >             > (XEN)
> P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
> >     >       >     >       >       >       >     >             > (XEN)
> Scheduling granularity: cpu, 1 CPU per sched-resource
> >     >       >     >       >       >       >     >             > (XEN)
> Coloring general information
> >     >       >     >       >       >       >     >             > (XEN)
> Way size: 64kB
> >     >       >     >       >       >       >     >             > (XEN)
> Max. number of colors available: 16
> >     >       >     >       >       >       >     >             > (XEN)
> Xen color(s): [ 0 ]
> >     >       >     >       >       >       >     >             > (XEN)
> alternatives: Patching with alt table 00000000002cc690 ->
> >     >       00000000002ccc0c
> >     >       >     >       >       >       >     >             > (XEN)
> Color array allocation failed for dom0
> >     >       >     >       >       >       >     >             > (XEN)
> >     >       >     >       >       >       >     >             > (XEN)
> ****************************************
> >     >       >     >       >       >       >     >             > (XEN)
> Panic on CPU 0:
> >     >       >     >       >       >       >     >             > (XEN)
> Error creating domain 0
> >     >       >     >       >       >       >     >             > (XEN)
> ****************************************
> >     >       >     >       >       >       >     >             > (XEN)
> >     >       >     >       >       >       >     >             > (XEN)
> Reboot in five seconds...
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             > I am
> going to find out how command line arguments passed and parsed.
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             > Regards,
> >     >       >     >       >       >       >     >             > Oleg
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             > ср, 19
> апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>
> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
> >>
> >     >       >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>
> >     >       >     >       >       >       <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>
> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
> >>>>>:
> >     >       >     >       >       >       >     >             >       Hi
> Michal,
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             > You put
> my nose into the problem. Thank you.
> >     >       >     >       >       >       >     >             > I am
> going to use your point.
> >     >       >     >       >       >       >     >             > Let's
> see what happens.
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             > Regards,
> >     >       >     >       >       >       >     >             > Oleg
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             > ср, 19
> апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>
> >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
> >     >       >     >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>
> >     >       >     >       >       >       <mailto:michal.orzel@amd.com
> <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>
> >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com
> >>>>>:
> >     >       >     >       >       >       >     >             >       Hi
> Oleg,
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >       On
> 19/04/2023 09:03, Oleg Nikitenko wrote:
> >     >       >     >       >       >       >     >             >       >
>
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
> Hello Stefano,
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
> Thanks for the clarification.
> >     >       >     >       >       >       >     >             >       >
> My company uses yocto for image generation.
> >     >       >     >       >       >       >     >             >       >
> What kind of information do you need to consult me in this
> >     >       case ?
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
> Maybe modules sizes/addresses which were mentioned by @Julien
> >     >       Grall
> >     >       >     >       >       <mailto:julien@xen.org <mailto:
> julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>
> >     >       >     >       >       >       <mailto:julien@xen.org
> <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>
> <mailto:julien@xen.org <mailto:julien@xen.org>
> >     >       <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:
> julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>>>>> ?
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >
>  Sorry for jumping into discussion, but FWICS the Xen command
> >     >       line you provided
> >     >       >     >       seems to be
> >     >       >     >       >       not the
> >     >       >     >       >       >       one
> >     >       >     >       >       >       >     >             >
>  Xen booted with. The error you are observing most likely is due
> >     >       to dom0 colors
> >     >       >     >       >       configuration not
> >     >       >     >       >       >       being
> >     >       >     >       >       >       >     >             >
>  specified (i.e. lack of dom0_colors=<> parameter). Although in
> >     >       the command line you
> >     >       >     >       >       provided, this
> >     >       >     >       >       >       parameter
> >     >       >     >       >       >       >     >             >       is
> set, I strongly doubt that this is the actual command line
> >     >       in use.
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >
>  You wrote:
> >     >       >     >       >       >       >     >             >
>  xen,xen-bootargs = "console=dtuart dtuart=serial0
> >     >       dom0_mem=1600M dom0_max_vcpus=2
> >     >       >     >       >       dom0_vcpus_pin
> >     >       >     >       >       >       bootscrub=0 vwfi=native
> >     >       >     >       >       >       >     >             >
>  sched=null timer_slop=0 way_szize=65536 xen_colors=0-3
> >     >       dom0_colors=4-7";
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >
>  but:
> >     >       >     >       >       >       >     >             >       1)
> way_szize has a typo
> >     >       >     >       >       >       >     >             >       2)
> you specified 4 colors (0-3) for Xen, but the boot log says
> >     >       that Xen has only
> >     >       >     >       one:
> >     >       >     >       >       >       >     >             >
>  (XEN) Xen color(s): [ 0 ]
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >
>  This makes me believe that no colors configuration actually end
> >     >       up in command line
> >     >       >     >       that Xen
> >     >       >     >       >       booted
> >     >       >     >       >       >       with.
> >     >       >     >       >       >       >     >             >
>  Single color for Xen is a "default if not specified" and way
> >     >       size was probably
> >     >       >     >       calculated
> >     >       >     >       >       by asking
> >     >       >     >       >       >       HW.
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >       So
> I would suggest to first cross-check the command line in
> >     >       use.
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >
>  ~Michal
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
> Regards,
> >     >       >     >       >       >       >     >             >       >
> Oleg
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
> вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini
> >     >       <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
> >     >       >     >       >       >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>
> >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>
> >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>
> >     >       >     >       >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>
> >     >       >     >       >       >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>
> >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>
> >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>>:
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
>    On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
> >     >       >     >       >       >       >     >             >       >
>    > Hi Julien,
> >     >       >     >       >       >       >     >             >       >
>    >
> >     >       >     >       >       >       >     >             >       >
>    > >> This feature has not been merged in Xen upstream yet
> >     >       >     >       >       >       >     >             >       >
>    >
> >     >       >     >       >       >       >     >             >       >
>    > > would assume that upstream + the series on the ML [1]
> >     >       work
> >     >       >     >       >       >       >     >             >       >
>    >
> >     >       >     >       >       >       >     >             >       >
>    > Please clarify this point.
> >     >       >     >       >       >       >     >             >       >
>    > Because the two thoughts are controversial.
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
>    Hi Oleg,
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
>    As Julien wrote, there is nothing controversial. As you
> >     >       are aware,
> >     >       >     >       >       >       >     >             >       >
>    Xilinx maintains a separate Xen tree specific for Xilinx
> >     >       here:
> >     >       >     >       >       >       >     >             >       >
>    https://github.com/xilinx/xen <https://github.com/xilinx/xen>
> >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>
> >     >       >     >       >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>
> >     >       >     >       >       >       <https://github.com/xilinx/xen
> <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>
> >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>
> >     >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>
> >     >       >     >       >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>
> >     >       >     >       >       >       <https://github.com/xilinx/xen
> <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>>
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
>    and the branch you are using (xlnx_rebase_4.16) comes
> >     >       from there.
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
>    Instead, the upstream Xen tree lives here:
> >     >       >     >       >       >       >     >             >       >
>    https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
> >     >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
>    The Cache Coloring feature that you are trying to
> >     >       configure is present
> >     >       >     >       >       >       >     >             >       >
>    in xlnx_rebase_4.16, but not yet present upstream (there
> >     >       is an
> >     >       >     >       >       >       >     >             >       >
>    outstanding patch series to add cache coloring to Xen
> >     >       upstream but it
> >     >       >     >       >       >       >     >             >       >
>    hasn't been merged yet.)
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
>    Anyway, if you are using xlnx_rebase_4.16 it doesn't
> >     >       matter too much for
> >     >       >     >       >       >       >     >             >       >
>    you as you already have Cache Coloring as a feature
> >     >       there.
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
>    I take you are using ImageBuilder to generate the boot
> >     >       configuration? If
> >     >       >     >       >       >       >     >             >       >
>    so, please post the ImageBuilder config file that you are
> >     >       using.
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >       >
>    But from the boot message, it looks like the colors
> >     >       configuration for
> >     >       >     >       >       >       >     >             >       >
>    Dom0 is incorrect.
> >     >       >     >       >       >       >     >             >       >
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >             >
> >     >       >     >       >       >       >     >
> >     >       >     >       >       >       >
> >     >       >     >       >       >
> >     >       >     >       >       >
> >     >       >     >       >       >
> >     >       >     >       >
> >     >       >     >       >
> >     >       >     >       >
> >     >       >     >
> >     >       >     >
> >     >       >     >
> >     >       >
> >     >
> >     >
> >     >
> >
>

[-- Attachment #2: Type: text/html, Size: 155173 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-11 10:02  0%                                                 ` Oleg Nikitenko
@ 2023-05-11 10:15  0%                                                   ` Michal Orzel
  2023-05-11 10:32  0%                                                     ` Oleg Nikitenko
  0 siblings, 1 reply; 200+ results
From: Michal Orzel @ 2023-05-11 10:15 UTC (permalink / raw)
  To: Oleg Nikitenko, Stefano Stabellini
  Cc: Julien Grall, xen-devel, Bertrand Marquis, Carlo Nonato,
	Stewart.Hildebrand

Hi Oleg,

On 11/05/2023 12:02, Oleg Nikitenko wrote:
> 	
> 
> 
> Hello,
> 
> Thanks Stefano.
> Then the next question.
> I cloned xen repo from xilinx site https://github.com/Xilinx/xen.git <https://github.com/Xilinx/xen.git>
> I managed to build a xlnx_rebase_4.17 branch in my environment.
> I did it without coloring first. I did not find any color footprints at this branch.
> I realized coloring is not in the xlnx_rebase_4.17 branch yet.
This is not true. Cache coloring is in xlnx_rebase_4.17. Please see the docs:
https://github.com/Xilinx/xen/blob/xlnx_rebase_4.17/docs/misc/arm/cache-coloring.rst

It describes the feature and documents the required properties.

~Michal

> 
> 
> вт, 9 мая 2023 г. в 22:49, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
> 
>     We test Xen Cache Coloring regularly on zcu102. Every Petalinux release
>     (twice a year) is tested with cache coloring enabled. The last Petalinux
>     release is 2023.1 and the kernel used is this:
>     https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS <https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS>
> 
> 
>     On Tue, 9 May 2023, Oleg Nikitenko wrote:
>     > Hello guys,
>     >
>     > I have a couple of more questions.
>     > Have you ever run xen with the cache coloring at Zynq UltraScale+ MPSoC zcu102 xczu15eg ?
>     > When did you run xen with the cache coloring last time ?
>     > What kernel version did you use for Dom0 when you ran xen with the cache coloring last time ?
>     >
>     > Regards,
>     > Oleg
>     >
>     > пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>:
>     >       Hi Michal,
>     >
>     > Thanks.
>     >
>     > Regards,
>     > Oleg
>     >
>     > пт, 5 мая 2023 г. в 11:34, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
>     >       Hi Oleg,
>     >
>     >       Replying, so that you do not need to wait for Stefano.
>     >
>     >       On 05/05/2023 10:28, Oleg Nikitenko wrote:
>     >       >       
>     >       >
>     >       >
>     >       > Hello Stefano,
>     >       >
>     >       > I would like to try a xen cache color property from this repo  https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>
>     >       <https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>>
>     >       > Could you tell whot branch I should use ?
>     >       Cache coloring feature is not part of the upstream tree and it is still under review.
>     >       You can only find it integrated in the Xilinx Xen tree.
>     >
>     >       ~Michal
>     >
>     >       >
>     >       > Regards,
>     >       > Oleg
>     >       >
>     >       > пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
>     >       >
>     >       >     I am familiar with the zcu102 but I don't know how you could possibly
>     >       >     generate a SError.
>     >       >
>     >       >     I suggest to try to use ImageBuilder [1] to generate the boot
>     >       >     configuration as a test because that is known to work well for zcu102.
>     >       >
>     >       >     [1] https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder> <https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>>
>     >       >
>     >       >
>     >       >     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
>     >       >     > Hello Stefano,
>     >       >     >
>     >       >     > Thanks for clarification.
>     >       >     > We nighter use ImageBuilder nor uboot boot script.
>     >       >     > A model is zcu102 compatible.
>     >       >     >
>     >       >     > Regards,
>     >       >     > O.
>     >       >     >
>     >       >     > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
>     >       >     >       This is interesting. Are you using Xilinx hardware by any chance? If so,
>     >       >     >       which board?
>     >       >     >
>     >       >     >       Are you using ImageBuilder to generate your boot.scr boot script? If so,
>     >       >     >       could you please post your ImageBuilder config file? If not, can you
>     >       >     >       post the source of your uboot boot script?
>     >       >     >
>     >       >     >       SErrors are supposed to be related to a hardware failure of some kind.
>     >       >     >       You are not supposed to be able to trigger an SError easily by
>     >       >     >       "mistake". I have not seen SErrors due to wrong cache coloring
>     >       >     >       configurations on any Xilinx board before.
>     >       >     >
>     >       >     >       The differences between Xen with and without cache coloring from a
>     >       >     >       hardware perspective are:
>     >       >     >
>     >       >     >       - With cache coloring, the SMMU is enabled and does address translations
>     >       >     >         even for dom0. Without cache coloring the SMMU could be disabled, and
>     >       >     >         if enabled, the SMMU doesn't do any address translations for Dom0. If
>     >       >     >         there is a hardware failure related to SMMU address translation it
>     >       >     >         could only trigger with cache coloring. This would be my normal
>     >       >     >         suggestion for you to explore, but the failure happens too early
>     >       >     >         before any DMA-capable device is programmed. So I don't think this can
>     >       >     >         be the issue.
>     >       >     >
>     >       >     >       - With cache coloring, the memory allocation is very different so you'll
>     >       >     >         end up using different DDR regions for Dom0. So if your DDR is
>     >       >     >         defective, you might only see a failure with cache coloring enabled
>     >       >     >         because you end up using different regions.
>     >       >     >
>     >       >     >
>     >       >     >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
>     >       >     >       > Hi Stefano,
>     >       >     >       >
>     >       >     >       > Thank you.
>     >       >     >       > If I build xen without colors support there is not this error.
>     >       >     >       > All the domains are booted well.
>     >       >     >       > Hense it can not be a hardware issue.
>     >       >     >       > This panic arrived during unpacking the rootfs.
>     >       >     >       > Here I attached the boot log xen/Dom0 without color.
>     >       >     >       > A highlighted strings printed exactly after the place where 1-st time panic arrived.
>     >       >     >       >
>     >       >     >       >  Xen 4.16.1-pre
>     >       >     >       > (XEN) Xen version 4.16.1-pre (nole2390@(none)) (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y
>     >       2023-04-21
>     >       >     >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300 git:321687b231-dirty
>     >       >     >       > (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
>     >       >     >       > (XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0, part 0xd03,rev 0x4
>     >       >     >       > (XEN) 64-bit Execution:
>     >       >     >       > (XEN)   Processor Features: 0000000000002222 0000000000000000
>     >       >     >       > (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
>     >       >     >       > (XEN)     Extensions: FloatingPoint AdvancedSIMD
>     >       >     >       > (XEN)   Debug Features: 0000000010305106 0000000000000000
>     >       >     >       > (XEN)   Auxiliary Features: 0000000000000000 0000000000000000
>     >       >     >       > (XEN)   Memory Model Features: 0000000000001122 0000000000000000
>     >       >     >       > (XEN)   ISA Features:  0000000000011120 0000000000000000
>     >       >     >       > (XEN) 32-bit Execution:
>     >       >     >       > (XEN)   Processor Features: 0000000000000131:0000000000011011
>     >       >     >       > (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
>     >       >     >       > (XEN)     Extensions: GenericTimer Security
>     >       >     >       > (XEN)   Debug Features: 0000000003010066
>     >       >     >       > (XEN)   Auxiliary Features: 0000000000000000
>     >       >     >       > (XEN)   Memory Model Features: 0000000010201105 0000000040000000
>     >       >     >       > (XEN)                          0000000001260000 0000000002102211
>     >       >     >       > (XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
>     >       >     >       > (XEN)                 0000000001112131 0000000000011142 0000000000011121
>     >       >     >       > (XEN) Using SMC Calling Convention v1.2
>     >       >     >       > (XEN) Using PSCI v1.1
>     >       >     >       > (XEN) SMP: Allowing 4 CPUs
>     >       >     >       > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
>     >       >     >       > (XEN) GICv2 initialization:
>     >       >     >       > (XEN)         gic_dist_addr=00000000f9010000
>     >       >     >       > (XEN)         gic_cpu_addr=00000000f9020000
>     >       >     >       > (XEN)         gic_hyp_addr=00000000f9040000
>     >       >     >       > (XEN)         gic_vcpu_addr=00000000f9060000
>     >       >     >       > (XEN)         gic_maintenance_irq=25
>     >       >     >       > (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
>     >       >     >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
>     >       >     >       > (XEN) Using scheduler: null Scheduler (null)
>     >       >     >       > (XEN) Initializing null scheduler
>     >       >     >       > (XEN) WARNING: This is experimental software in development.
>     >       >     >       > (XEN) Use at your own risk.
>     >       >     >       > (XEN) Allocated console ring of 32 KiB.
>     >       >     >       > (XEN) CPU0: Guest atomics will try 12 times before pausing the domain
>     >       >     >       > (XEN) Bringing up CPU1
>     >       >     >       > (XEN) CPU1: Guest atomics will try 13 times before pausing the domain
>     >       >     >       > (XEN) CPU 1 booted.
>     >       >     >       > (XEN) Bringing up CPU2
>     >       >     >       > (XEN) CPU2: Guest atomics will try 13 times before pausing the domain
>     >       >     >       > (XEN) CPU 2 booted.
>     >       >     >       > (XEN) Bringing up CPU3
>     >       >     >       > (XEN) CPU3: Guest atomics will try 13 times before pausing the domain
>     >       >     >       > (XEN) Brought up 4 CPUs
>     >       >     >       > (XEN) CPU 3 booted.
>     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: probing hardware configuration...
>     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
>     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
>     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stream matching with 48 register groups, mask 0x7fff<2>smmu:
>     >       /axi/smmu@fd800000: 16 context
>     >       >     >       banks (0
>     >       >     >       > stage-2 only)
>     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
>     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: registered 29 master devices
>     >       >     >       > (XEN) I/O virtualisation enabled
>     >       >     >       > (XEN)  - Dom0 mode: Relaxed
>     >       >     >       > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>     >       >     >       > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>     >       >     >       > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>     >       >     >       > (XEN) alternatives: Patching with alt table 00000000002cc5c8 -> 00000000002ccb2c
>     >       >     >       > (XEN) *** LOADING DOMAIN 0 ***
>     >       >     >       > (XEN) Loading d0 kernel from boot module @ 0000000001000000
>     >       >     >       > (XEN) Loading ramdisk from boot module @ 0000000002000000
>     >       >     >       > (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
>     >       >     >       > (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
>     >       >     >       > (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
>     >       >     >       > (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
>     >       >     >       > (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
>     >       >     >       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
>     >       >     >       > (XEN) Allocating PPI 16 for event channel interrupt
>     >       >     >       > (XEN) Extended region 0: 0x81200000->0xa0000000
>     >       >     >       > (XEN) Extended region 1: 0xb1200000->0xc0000000
>     >       >     >       > (XEN) Extended region 2: 0xc8000000->0xe0000000
>     >       >     >       > (XEN) Extended region 3: 0xf0000000->0xf9000000
>     >       >     >       > (XEN) Extended region 4: 0x100000000->0x600000000
>     >       >     >       > (XEN) Extended region 5: 0x880000000->0x8000000000
>     >       >     >       > (XEN) Extended region 6: 0x8001000000->0x10000000000
>     >       >     >       > (XEN) Loading zImage from 0000000001000000 to 0000000010000000-0000000010e41008
>     >       >     >       > (XEN) Loading d0 initrd from 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
>     >       >     >       > (XEN) Loading d0 DTB to 0x0000000013400000-0x000000001340cbdc
>     >       >     >       > (XEN) Initial low memory virq threshold set at 0x4000 pages.
>     >       >     >       > (XEN) Std. Loglevel: All
>     >       >     >       > (XEN) Guest Loglevel: All
>     >       >     >       > (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
>     >       >     >       > (XEN) null.c:353: 0 <-- d0v0
>     >       >     >       > (XEN) Freed 356kB init memory.
>     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
>     >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
>     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
>     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
>     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
>     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
>     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
>     >       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>     >       >     >       > [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
>     >       >     >       > [    0.000000] Linux version 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC)
>     >       11.3.0, GNU ld (GNU
>     >       >     >       Binutils)
>     >       >     >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
>     >       >     >       > [    0.000000] Machine model: D14 Viper Board - White Unit
>     >       >     >       > [    0.000000] Xen 4.16 support found
>     >       >     >       > [    0.000000] Zone ranges:
>     >       >     >       > [    0.000000]   DMA      [mem 0x0000000010000000-0x000000007fffffff]
>     >       >     >       > [    0.000000]   DMA32    empty
>     >       >     >       > [    0.000000]   Normal   empty
>     >       >     >       > [    0.000000] Movable zone start for each node
>     >       >     >       > [    0.000000] Early memory node ranges
>     >       >     >       > [    0.000000]   node   0: [mem 0x0000000010000000-0x000000001fffffff]
>     >       >     >       > [    0.000000]   node   0: [mem 0x0000000022000000-0x0000000022147fff]
>     >       >     >       > [    0.000000]   node   0: [mem 0x0000000022200000-0x0000000022347fff]
>     >       >     >       > [    0.000000]   node   0: [mem 0x0000000024000000-0x0000000027ffffff]
>     >       >     >       > [    0.000000]   node   0: [mem 0x0000000030000000-0x000000007fffffff]
>     >       >     >       > [    0.000000] Initmem setup node 0 [mem 0x0000000010000000-0x000000007fffffff]
>     >       >     >       > [    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
>     >       >     >       > [    0.000000] On node 0, zone DMA: 184 pages in unavailable ranges
>     >       >     >       > [    0.000000] On node 0, zone DMA: 7352 pages in unavailable ranges
>     >       >     >       > [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
>     >       >     >       > [    0.000000] psci: probing for conduit method from DT.
>     >       >     >       > [    0.000000] psci: PSCIv1.1 detected in firmware.
>     >       >     >       > [    0.000000] psci: Using standard PSCI v0.2 function IDs
>     >       >     >       > [    0.000000] psci: Trusted OS migration not required
>     >       >     >       > [    0.000000] psci: SMC Calling Convention v1.1
>     >       >     >       > [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0 d32744 u65536
>     >       >     >       > [    0.000000] Detected VIPT I-cache on CPU0
>     >       >     >       > [    0.000000] CPU features: kernel page table isolation forced ON by KASLR
>     >       >     >       > [    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
>     >       >     >       > [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 403845
>     >       >     >       > [    0.000000] Kernel command line: console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused fips=1
>     >       root=/dev/ram0
>     >       >     >       maxcpus=2
>     >       >     >       > [    0.000000] Unknown kernel command line parameters "earlyprintk=xen fips=1", will be passed to user
>     >       space.
>     >       >     >       > [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>     >       >     >       > [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>     >       >     >       > [    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:on
>     >       >     >       > [    0.000000] mem auto-init: clearing system memory may take some time...
>     >       >     >       > [    0.000000] Memory: 1121936K/1641024K available (9728K kernel code, 836K rwdata, 2396K rodata, 1536K
>     >       init, 262K bss,
>     >       >     >       256944K reserved,
>     >       >     >       > 262144K cma-reserved)
>     >       >     >       > [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
>     >       >     >       > [    0.000000] rcu: Hierarchical RCU implementation.
>     >       >     >       > [    0.000000] rcu: RCU event tracing is enabled.
>     >       >     >       > [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
>     >       >     >       > [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>     >       >     >       > [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
>     >       >     >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
>     >       >     >       > [    0.000000] Root IRQ handler: gic_handle_irq
>     >       >     >       > [    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (virt).
>     >       >     >       > [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0,
>     >       max_idle_ns: 440795205315 ns
>     >       >     >       > [    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
>     >       >     >       > [    0.000258] Console: colour dummy device 80x25
>     >       >     >       > [    0.310231] printk: console [hvc0] enabled
>     >       >     >       > [    0.314403] Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS
>     >       (lpj=400000)
>     >       >     >       > [    0.324851] pid_max: default: 32768 minimum: 301
>     >       >     >       > [    0.329706] LSM: Security Framework initializing
>     >       >     >       > [    0.334204] Yama: becoming mindful.
>     >       >     >       > [    0.337865] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>     >       >     >       > [    0.345180] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>     >       >     >       > [    0.354743] xen:grant_table: Grant tables using version 1 layout
>     >       >     >       > [    0.359132] Grant table initialized
>     >       >     >       > [    0.362664] xen:events: Using FIFO-based ABI
>     >       >     >       > [    0.366993] Xen: initializing cpu0
>     >       >     >       > [    0.370515] rcu: Hierarchical SRCU implementation.
>     >       >     >       > [    0.375930] smp: Bringing up secondary CPUs ...
>     >       >     >       > (XEN) null.c:353: 1 <-- d0v1
>     >       >     >       > (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>     >       >     >       > [    0.382549] Detected VIPT I-cache on CPU1
>     >       >     >       > [    0.388712] Xen: initializing cpu1
>     >       >     >       > [    0.388743] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
>     >       >     >       > [    0.388829] smp: Brought up 1 node, 2 CPUs
>     >       >     >       > [    0.406941] SMP: Total of 2 processors activated.
>     >       >     >       > [    0.411698] CPU features: detected: 32-bit EL0 Support
>     >       >     >       > [    0.416888] CPU features: detected: CRC32 instructions
>     >       >     >       > [    0.422121] CPU: All CPU(s) started at EL1
>     >       >     >       > [    0.426248] alternatives: patching kernel code
>     >       >     >       > [    0.431424] devtmpfs: initialized
>     >       >     >       > [    0.441454] KASLR enabled
>     >       >     >       > [    0.441602] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns:
>     >       7645041785100000 ns
>     >       >     >       > [    0.448321] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
>     >       >     >       > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE protocol family
>     >       >     >       > [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
>     >       >     >       > [    0.503772] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
>     >       >     >       > [    0.511610] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
>     >       >     >       > [    0.519478] audit: initializing netlink subsys (disabled)
>     >       >     >       > [    0.524985] audit: type=2000 audit(0.336:1): state=initialized audit_enabled=0 res=1
>     >       >     >       > [    0.529169] thermal_sys: Registered thermal governor 'step_wise'
>     >       >     >       > [    0.533023] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
>     >       >     >       > [    0.545608] ASID allocator initialised with 32768 entries
>     >       >     >       > [    0.551030] xen:swiotlb_xen: Warning: only able to allocate 4 MB for software IO TLB
>     >       >     >       > [    0.559332] software IO TLB: mapped [mem 0x0000000011800000-0x0000000011c00000] (4MB)
>     >       >     >       > [    0.583565] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>     >       >     >       > [    0.584721] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
>     >       >     >       > [    0.591478] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>     >       >     >       > [    0.598225] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
>     >       >     >       > [    0.636520] DRBG: Continuing without Jitter RNG
>     >       >     >       > [    0.737187] raid6: neonx8   gen()  2143 MB/s
>     >       >     >       > [    0.805294] raid6: neonx8   xor()  1589 MB/s
>     >       >     >       > [    0.873406] raid6: neonx4   gen()  2177 MB/s
>     >       >     >       > [    0.941499] raid6: neonx4   xor()  1556 MB/s
>     >       >     >       > [    1.009612] raid6: neonx2   gen()  2072 MB/s
>     >       >     >       > [    1.077715] raid6: neonx2   xor()  1430 MB/s
>     >       >     >       > [    1.145834] raid6: neonx1   gen()  1769 MB/s
>     >       >     >       > [    1.213935] raid6: neonx1   xor()  1214 MB/s
>     >       >     >       > [    1.282046] raid6: int64x8  gen()  1366 MB/s
>     >       >     >       > [    1.350132] raid6: int64x8  xor()   773 MB/s
>     >       >     >       > [    1.418259] raid6: int64x4  gen()  1602 MB/s
>     >       >     >       > [    1.486349] raid6: int64x4  xor()   851 MB/s
>     >       >     >       > [    1.554464] raid6: int64x2  gen()  1396 MB/s
>     >       >     >       > [    1.622561] raid6: int64x2  xor()   744 MB/s
>     >       >     >       > [    1.690687] raid6: int64x1  gen()  1033 MB/s
>     >       >     >       > [    1.758770] raid6: int64x1  xor()   517 MB/s
>     >       >     >       > [    1.758809] raid6: using algorithm neonx4 gen() 2177 MB/s
>     >       >     >       > [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
>     >       >     >       > [    1.767957] raid6: using neon recovery algorithm
>     >       >     >       > [    1.772824] xen:balloon: Initialising balloon driver
>     >       >     >       > [    1.778021] iommu: Default domain type: Translated
>     >       >     >       > [    1.782584] iommu: DMA domain TLB invalidation policy: strict mode
>     >       >     >       > [    1.789149] SCSI subsystem initialized
>     >       >     >       > [    1.792820] usbcore: registered new interface driver usbfs
>     >       >     >       > [    1.798254] usbcore: registered new interface driver hub
>     >       >     >       > [    1.803626] usbcore: registered new device driver usb
>     >       >     >       > [    1.808761] pps_core: LinuxPPS API ver. 1 registered
>     >       >     >       > [    1.813716] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it <mailto:giometti@linux.it>
>     >       <mailto:giometti@linux.it <mailto:giometti@linux.it>>>
>     >       >     >       > [    1.822903] PTP clock support registered
>     >       >     >       > [    1.826893] EDAC MC: Ver: 3.0.0
>     >       >     >       > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
>     >       >     >       > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX channels.
>     >       >     >       > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX channels.
>     >       >     >       > [    1.855907] FPGA manager framework
>     >       >     >       > [    1.859952] clocksource: Switched to clocksource arch_sys_counter
>     >       >     >       > [    1.871712] NET: Registered PF_INET protocol family
>     >       >     >       > [    1.871838] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
>     >       >     >       > [    1.879392] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
>     >       >     >       > [    1.887078] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
>     >       >     >       > [    1.894846] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
>     >       >     >       > [    1.902900] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
>     >       >     >       > [    1.910350] TCP: Hash tables configured (established 16384 bind 16384)
>     >       >     >       > [    1.916778] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
>     >       >     >       > [    1.923509] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
>     >       >     >       > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol family
>     >       >     >       > [    1.936834] RPC: Registered named UNIX socket transport module.
>     >       >     >       > [    1.942342] RPC: Registered udp transport module.
>     >       >     >       > [    1.947088] RPC: Registered tcp transport module.
>     >       >     >       > [    1.951843] RPC: Registered tcp NFSv4.1 backchannel transport module.
>     >       >     >       > [    1.958334] PCI: CLS 0 bytes, default 64
>     >       >     >       > [    1.962709] Trying to unpack rootfs image as initramfs...
>     >       >     >       > [    1.977090] workingset: timestamp_bits=62 max_order=19 bucket_order=0
>     >       >     >       > [    1.982863] Installing knfsd (copyright (C) 1996 okir@monad.swb.de <mailto:okir@monad.swb.de> <mailto:okir@monad.swb.de <mailto:okir@monad.swb.de>>).
>     >       >     >       > [    2.021045] NET: Registered PF_ALG protocol family
>     >       >     >       > [    2.021122] xor: measuring software checksum speed
>     >       >     >       > [    2.029347]    8regs           :  2366 MB/sec
>     >       >     >       > [    2.033081]    32regs          :  2802 MB/sec
>     >       >     >       > [    2.038223]    arm64_neon      :  2320 MB/sec
>     >       >     >       > [    2.038385] xor: using function: 32regs (2802 MB/sec)
>     >       >     >       > [    2.043614] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
>     >       >     >       > [    2.050959] io scheduler mq-deadline registered
>     >       >     >       > [    2.055521] io scheduler kyber registered
>     >       >     >       > [    2.068227] xen:xen_evtchn: Event-channel device installed
>     >       >     >       > [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
>     >       >     >       > [    2.076190] cacheinfo: Unable to detect cache hierarchy for CPU 0
>     >       >     >       > [    2.085548] brd: module loaded
>     >       >     >       > [    2.089290] loop: module loaded
>     >       >     >       > [    2.089341] Invalid max_queues (4), will use default max: 2.
>     >       >     >       > [    2.094565] tun: Universal TUN/TAP device driver, 1.6
>     >       >     >       > [    2.098655] xen_netfront: Initialising Xen virtual ethernet driver
>     >       >     >       > [    2.104156] usbcore: registered new interface driver rtl8150
>     >       >     >       > [    2.109813] usbcore: registered new interface driver r8152
>     >       >     >       > [    2.115367] usbcore: registered new interface driver asix
>     >       >     >       > [    2.120794] usbcore: registered new interface driver ax88179_178a
>     >       >     >       > [    2.126934] usbcore: registered new interface driver cdc_ether
>     >       >     >       > [    2.132816] usbcore: registered new interface driver cdc_eem
>     >       >     >       > [    2.138527] usbcore: registered new interface driver net1080
>     >       >     >       > [    2.144256] usbcore: registered new interface driver cdc_subset
>     >       >     >       > [    2.150205] usbcore: registered new interface driver zaurus
>     >       >     >       > [    2.155837] usbcore: registered new interface driver cdc_ncm
>     >       >     >       > [    2.161550] usbcore: registered new interface driver r8153_ecm
>     >       >     >       > [    2.168240] usbcore: registered new interface driver cdc_acm
>     >       >     >       > [    2.173109] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
>     >       >     >       > [    2.181358] usbcore: registered new interface driver uas
>     >       >     >       > [    2.186547] usbcore: registered new interface driver usb-storage
>     >       >     >       > [    2.192643] usbcore: registered new interface driver ftdi_sio
>     >       >     >       > [    2.198384] usbserial: USB Serial support registered for FTDI USB Serial Device
>     >       >     >       > [    2.206118] udc-core: couldn't find an available UDC - added [g_mass_storage] to list of pending
>     >       drivers
>     >       >     >       > [    2.215332] i2c_dev: i2c /dev entries driver
>     >       >     >       > [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)
>     >       >     >       > [    2.225923] device-mapper: uevent: version 1.0.3
>     >       >     >       > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com <mailto:dm-devel@redhat.com>
>     >       <mailto:dm-devel@redhat.com <mailto:dm-devel@redhat.com>>
>     >       >     >       > [    2.239315] EDAC MC0: Giving out device to module 1 controller synps_ddr_controller: DEV synps_edac
>     >       (INTERRUPT)
>     >       >     >       > [    2.249405] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV
>     >       >     >       ff960000.memory-controller (INTERRUPT)
>     >       >     >       > [    2.261719] sdhci: Secure Digital Host Controller Interface driver
>     >       >     >       > [    2.267487] sdhci: Copyright(c) Pierre Ossman
>     >       >     >       > [    2.271890] sdhci-pltfm: SDHCI platform and OF driver helper
>     >       >     >       > [    2.278157] ledtrig-cpu: registered to indicate activity on CPUs
>     >       >     >       > [    2.283816] zynqmp_firmware_probe Platform Management API v1.1
>     >       >     >       > [    2.289554] zynqmp_firmware_probe Trustzone version v1.0
>     >       >     >       > [    2.327875] securefw securefw: securefw probed
>     >       >     >       > [    2.328324] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
>     >       >     >       > [    2.332563] zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
>     >       >     >       > [    2.341183] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
>     >       >     >       > [    2.347667] remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is available
>     >       >     >       > [    2.353003] remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is available
>     >       >     >       > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
>     >       >     >       > [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen Proxy registered
>     >       >     >       > [    2.372525] viper-vdpp a4000000.vdpp: Device Tree Probing
>     >       >     >       > [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>     >       >     >       > [    2.386432] viper-vdpp a4000000.vdpp: Unable to register tamper handler. Retrying...
>     >       >     >       > [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
>     >       >     >       > [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device registered
>     >       >     >       > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
>     >       >     >       > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event Count: 32
>     >       >     >       > [    2.420856] default preset
>     >       >     >       > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device registered
>     >       >     >       > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
>     >       >     >       > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device registered
>     >       >     >       > [    2.441976] vmcu driver init
>     >       >     >       > [    2.444922] VMCU: : (240:0) registered
>     >       >     >       > [    2.444956] In K81 Updater init
>     >       >     >       > [    2.449003] pktgen: Packet Generator for packet performance testing. Version: 2.75
>     >       >     >       > [    2.468833] Initializing XFRM netlink socket
>     >       >     >       > [    2.468902] NET: Registered PF_PACKET protocol family
>     >       >     >       > [    2.472729] Bridge firewalling registered
>     >       >     >       > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
>     >       >     >       > [    2.481341] registered taskstats version 1
>     >       >     >       > [    2.486394] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
>     >       >     >       > [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
>     >       >     >       > [    2.507103] of-fpga-region fpga-full: FPGA Region probed
>     >       >     >       > [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver Probe success
>     >       >     >       > [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver Probe success
>     >       >     >       > [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver Probe success
>     >       >     >       > [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver Probe success
>     >       >     >       > [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver Probe success
>     >       >     >       > [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver Probe success
>     >       >     >       > [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver Probe success
>     >       >     >       > [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver Probe success
>     >       >     >       > [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver Probe success
>     >       >     >       > [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver Probe success
>     >       >     >       > [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
>     >       >     >       > [    2.946467] 2 fixed-partitions partitions found on MTD device spi0.0
>     >       >     >       > [    2.952393] Creating 2 MTD partitions on "spi0.0":
>     >       >     >       > [    2.957231] 0x000004000000-0x000008000000 : "bank A"
>     >       >     >       > [    2.963332] 0x000000000000-0x000004000000 : "bank B"
>     >       >     >       > [    2.968694] macb ff0b0000.ethernet: Not enabling partial store and forward
>     >       >     >       > [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25
>     >       (18:41:fe:0f:ff:02)
>     >       >     >       > [    2.984472] macb ff0c0000.ethernet: Not enabling partial store and forward
>     >       >     >       > [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26
>     >       (18:41:fe:0f:ff:03)
>     >       >     >       > [    3.001043] viper_enet viper_enet: Viper power GPIOs initialised
>     >       >     >       > [    3.007313] viper_enet viper_enet vnet0 (uninitialized): Validate interface QSGMII
>     >       >     >       > [    3.014914] viper_enet viper_enet vnet1 (uninitialized): Validate interface QSGMII
>     >       >     >       > [    3.022138] viper_enet viper_enet vnet1 (uninitialized): Validate interface type 18
>     >       >     >       > [    3.030274] viper_enet viper_enet vnet2 (uninitialized): Validate interface QSGMII
>     >       >     >       > [    3.037785] viper_enet viper_enet vnet3 (uninitialized): Validate interface QSGMII
>     >       >     >       > [    3.045301] viper_enet viper_enet: Viper enet registered
>     >       >     >       > [    3.050958] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
>     >       >     >       > [    3.057135] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
>     >       >     >       > [    3.063538] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
>     >       >     >       > [    3.069920] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
>     >       >     >       > [    3.097729] si70xx: probe of 2-0040 failed with error -5
>     >       >     >       > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
>     >       >     >       > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
>     >       >     >       > [    3.112457] viper-tamper viper-tamper: Device registered
>     >       >     >       > [    3.117593] active_bank active_bank: boot bank: 1
>     >       >     >       > [    3.122184] active_bank active_bank: boot mode: (0x02) qspi32
>     >       >     >       > [    3.128247] viper-vdpp a4000000.vdpp: Device Tree Probing
>     >       >     >       > [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>     >       >     >       > [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler registered
>     >       >     >       > [    3.147438] viper-vdpp a4000000.vdpp: Device registered
>     >       >     >       > [    3.153007] lpc55_l2 spi1.0: registered handler for protocol 0
>     >       >     >       > [    3.158582] lpc55_user lpc55_user: The major number for your device is 236
>     >       >     >       > [    3.165976] lpc55_l2 spi1.0: registered handler for protocol 1
>     >       >     >       > [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >       >     >       > [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
>     >       >     >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
>     >       >     >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
>     >       >     >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
>     >       >     >       > [    3.202932] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
>     >       >     >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
>     >       >     >       > [    3.215694] lpc55_l2 spi1.0: rx error: -110
>     >       >     >       > [    3.284438] mmc0: new HS200 MMC card at address 0001
>     >       >     >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
>     >       >     >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
>     >       >     >       > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
>     >       >     >       > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
>     >       >     >       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
>     >       >     >       > [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >       >     >       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to read the hardware clock
>     >       >     >       > [    3.591252] cdns-i2c ff020000.i2c: recovery information complete
>     >       >     >       > [    3.597085] at24 0-0050: supply vcc not found, using dummy regulator
>     >       >     >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
>     >       >     >       > [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
>     >       >     >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
>     >       >     >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
>     >       >     >       > [    3.624224] rtc-rv3028 0-0052: registered as rtc1
>     >       >     >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
>     >       >     >       > [    3.633253] lpc55_l2 spi1.0: rx error: -110
>     >       >     >       > [    3.639104] k81_bootloader 0-0010: probe
>     >       >     >       > [    3.641628] VMCU: : (235:0) registered
>     >       >     >       > [    3.641635] k81_bootloader 0-0010: probe completed
>     >       >     >       > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 28
>     >       >     >       > [    3.669154] cdns-i2c ff030000.i2c: recovery information complete
>     >       >     >       > [    3.675412] lm75 1-0048: supply vs not found, using dummy regulator
>     >       >     >       > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
>     >       >     >       > [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
>     >       >     >       > [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
>     >       >     >       > [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
>     >       >     >       > [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
>     >       >     >       > [    3.705157] pca954x 1-0070: registered 4 multiplexed busses for I2C switch pca9546
>     >       >     >       > [    3.713049] at24 1-0054: supply vcc not found, using dummy regulator
>     >       >     >       > [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM, read-only
>     >       >     >       > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq 29
>     >       >     >       > [    3.731272] sfp viper_enet:sfp-eth1: Host maximum power 2.0W
>     >       >     >       > [    3.737549] sfp_register_socket: got sfp_bus
>     >       >     >       > [    3.740709] sfp_register_socket: register sfp_bus
>     >       >     >       > [    3.745459] sfp_register_bus: ops ok!
>     >       >     >       > [    3.749179] sfp_register_bus: Try to attach
>     >       >     >       > [    3.753419] sfp_register_bus: Attach succeeded
>     >       >     >       > [    3.757914] sfp_register_bus: upstream ops attach
>     >       >     >       > [    3.762677] sfp_register_bus: Bus registered
>     >       >     >       > [    3.766999] sfp_register_socket: register sfp_bus succeeded
>     >       >     >       > [    3.775870] of_cfs_init
>     >       >     >       > [    3.776000] of_cfs_init: OK
>     >       >     >       > [    3.778211] clk: Not disabling unused clocks
>     >       >     >       > [   11.278477] Freeing initrd memory: 206056K
>     >       >     >       > [   11.279406] Freeing unused kernel memory: 1536K
>     >       >     >       > [   11.314006] Checked W+X mappings: passed, no W+X pages found
>     >       >     >       > [   11.314142] Run /init as init process
>     >       >     >       > INIT: version 3.01 booting
>     >       >     >       > fsck (busybox 1.35.0)
>     >       >     >       > /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600 blocks
>     >       >     >       > /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600 blocks
>     >       >     >       > /dev/mmcblk0p3 was not cleanly unmounted, check forced.
>     >       >     >       > /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous), 663/16384 blocks
>     >       >     >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode:
>     >       disabled.
>     >       >     >       > Starting random number generator daemon.
>     >       >     >       > [   11.580662] random: crng init done
>     >       >     >       > Starting udev
>     >       >     >       > [   11.613159] udevd[142]: starting version 3.2.10
>     >       >     >       > [   11.620385] udevd[143]: starting eudev-3.2.10
>     >       >     >       > [   11.704481] macb ff0b0000.ethernet control_red: renamed from eth0
>     >       >     >       > [   11.720264] macb ff0c0000.ethernet control_black: renamed from eth1
>     >       >     >       > [   12.063396] ip_local_port_range: prefer different parity for start/end values.
>     >       >     >       > [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>     >       >     >       > Mon Feb 27 08:40:53 UTC 2023
>     >       >     >       > [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad result
>     >       >     >       > hwclock: RTC_SET_TIME: Invalid exchange
>     >       >     >       > [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >       >     >       > Starting mcud
>     >       >     >       > INIT: Entering runlevel: 5
>     >       >     >       > Configuring network interfaces... done.
>     >       >     >       > resetting network interface
>     >       >     >       > [   12.718295] macb ff0b0000.ethernet control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver [Xilinx
>     >       PCS/PMA PHY] (irq=POLL)
>     >       >     >       > [   12.723919] macb ff0b0000.ethernet control_red: configuring for phy/gmii link mode
>     >       >     >       > [   12.732151] pps pps0: new PPS source ptp0
>     >       >     >       > [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
>     >       >     >       > [   12.745724] macb ff0c0000.ethernet control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver [Xilinx
>     >       PCS/PMA PHY]
>     >       >     >       (irq=POLL)
>     >       >     >       > [   12.753469] macb ff0c0000.ethernet control_black: configuring for phy/gmii link mode
>     >       >     >       > [   12.761804] pps pps1: new PPS source ptp1
>     >       >     >       > [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
>     >       >     >       > Auto-negotiation: off
>     >       >     >       > Auto-negotiation: off
>     >       >     >       > [   16.828151] macb ff0b0000.ethernet control_red: unable to generate target frequency: 125000000 Hz
>     >       >     >       > [   16.834553] macb ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full - flow control off
>     >       >     >       > [   16.860552] macb ff0c0000.ethernet control_black: unable to generate target frequency: 125000000 Hz
>     >       >     >       > [   16.867052] macb ff0c0000.ethernet control_black: Link is Up - 1Gbps/Full - flow control off
>     >       >     >       > Starting Failsafe Secure Shell server in port 2222: sshd
>     >       >     >       > done.
>     >       >     >       > Starting rpcbind daemon...done.
>     >       >     >       >
>     >       >     >       > [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>     >       >     >       > Starting State Manager Service
>     >       >     >       > Start state-manager restarter...
>     >       >     >       > (XEN) d0v1 Forwarding AES operation: 3254779951
>     >       >     >       > Starting /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa
>     >       devid 1 transid 744
>     >       >     >       /dev/dm-0
>     >       >     >       > scanned by udevd (385)
>     >       >     >       > [   17.349933] BTRFS info (device dm-0): disk space caching is enabled
>     >       >     >       > [   17.350670] BTRFS info (device dm-0): has skinny extents
>     >       >     >       > [   17.364384] BTRFS info (device dm-0): enabling ssd optimizations
>     >       >     >       > [   17.830462] BTRFS: device fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
>     >       /dev/mapper/client_prov scanned by
>     >       >     >       mkfs.btrfs
>     >       >     >       > (526)
>     >       >     >       > [   17.872699] BTRFS info (device dm-1): using free space tree
>     >       >     >       > [   17.872771] BTRFS info (device dm-1): has skinny extents
>     >       >     >       > [   17.878114] BTRFS info (device dm-1): flagging fs with big metadata feature
>     >       >     >       > [   17.894289] BTRFS info (device dm-1): enabling ssd optimizations
>     >       >     >       > [   17.895695] BTRFS info (device dm-1): checking UUID tree
>     >       >     >       >
>     >       >     >       > Setting domain 0 name, domid and JSON config...
>     >       >     >       > Done setting up Dom0
>     >       >     >       > Starting xenconsoled...
>     >       >     >       > Starting QEMU as disk backend for dom0
>     >       >     >       > Starting domain watchdog daemon: xenwatchdogd startup
>     >       >     >       >
>     >       >     >       > [   18.408647] BTRFS: device fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
>     >       /dev/mapper/client_config scanned by
>     >       >     >       mkfs.btrfs
>     >       >     >       > (574)
>     >       >     >       > [done]
>     >       >     >       > [   18.465552] BTRFS info (device dm-2): using free space tree
>     >       >     >       > [   18.465629] BTRFS info (device dm-2): has skinny extents
>     >       >     >       > [   18.471002] BTRFS info (device dm-2): flagging fs with big metadata feature
>     >       >     >       > Starting crond: [   18.482371] BTRFS info (device dm-2): enabling ssd optimizations
>     >       >     >       > [   18.486659] BTRFS info (device dm-2): checking UUID tree
>     >       >     >       > OK
>     >       >     >       > starting rsyslogd ... Log partition ready after 0 poll loops
>     >       >     >       > done
>     >       >     >       > rsyslogd: cannot connect to 172.18.0.1:514 <http://172.18.0.1:514> <http://172.18.0.1:514 <http://172.18.0.1:514>>: Network is unreachable [v8.2208.0 try
>     >       https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> <https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027>> ]
>     >       >     >       > [   18.670637] BTRFS: device fsid 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3
>     >       scanned by udevd (518)
>     >       >     >       >
>     >       >     >       > Please insert USB token and enter your role in login prompt.
>     >       >     >       >
>     >       >     >       > login:
>     >       >     >       >
>     >       >     >       > Regards,
>     >       >     >       > O.
>     >       >     >       >
>     >       >     >       >
>     >       >     >       > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
>     >       >     >       >       Hi Oleg,
>     >       >     >       >
>     >       >     >       >       Here is the issue from your logs:
>     >       >     >       >
>     >       >     >       >       SError Interrupt on CPU0, code 0xbe000000 -- SError
>     >       >     >       >
>     >       >     >       >       SErrors are special signals to notify software of serious hardware
>     >       >     >       >       errors.  Something is going very wrong. Defective hardware is a
>     >       >     >       >       possibility.  Another possibility if software accessing address ranges
>     >       >     >       >       that it is not supposed to, sometimes it causes SErrors.
>     >       >     >       >
>     >       >     >       >       Cheers,
>     >       >     >       >
>     >       >     >       >       Stefano
>     >       >     >       >
>     >       >     >       >
>     >       >     >       >
>     >       >     >       >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
>     >       >     >       >
>     >       >     >       >       > Hello,
>     >       >     >       >       >
>     >       >     >       >       > Thanks guys.
>     >       >     >       >       > I found out where the problem was.
>     >       >     >       >       > Now dom0 booted more. But I have a new one.
>     >       >     >       >       > This is a kernel panic during Dom0 loading.
>     >       >     >       >       > Maybe someone is able to suggest something ?
>     >       >     >       >       >
>     >       >     >       >       > Regards,
>     >       >     >       >       > O.
>     >       >     >       >       >
>     >       >     >       >       > [    3.771362] sfp_register_bus: upstream ops attach
>     >       >     >       >       > [    3.776119] sfp_register_bus: Bus registered
>     >       >     >       >       > [    3.780459] sfp_register_socket: register sfp_bus succeeded
>     >       >     >       >       > [    3.789399] of_cfs_init
>     >       >     >       >       > [    3.789499] of_cfs_init: OK
>     >       >     >       >       > [    3.791685] clk: Not disabling unused clocks
>     >       >     >       >       > [   11.010355] SError Interrupt on CPU0, code 0xbe000000 -- SError
>     >       >     >       >       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>     >       >     >       >       > [   11.010393] Workqueue: events_unbound async_run_entry_fn
>     >       >     >       >       > [   11.010414] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
>     >       >     >       >       > [   11.010422] pc : simple_write_end+0xd0/0x130
>     >       >     >       >       > [   11.010431] lr : generic_perform_write+0x118/0x1e0
>     >       >     >       >       > [   11.010438] sp : ffffffc00809b910
>     >       >     >       >       > [   11.010441] x29: ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
>     >       >     >       >       > [   11.010451] x26: 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
>     >       >     >       >       > [   11.010459] x23: ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
>     >       >     >       >       > [   11.010472] x20: 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
>     >       >     >       >       > [   11.010481] x17: 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
>     >       >     >       >       > [   11.010490] x14: 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
>     >       >     >       >       > [   11.010498] x11: 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
>     >       >     >       >       > [   11.010507] x8 : 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
>     >       >     >       >       > [   11.010515] x5 : fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
>     >       >     >       >       > [   11.010524] x2 : 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
>     >       >     >       >       > [   11.010534] Kernel panic - not syncing: Asynchronous SError Interrupt
>     >       >     >       >       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>     >       >     >       >       > [   11.010545] Hardware name: D14 Viper Board - White Unit (DT)
>     >       >     >       >       > [   11.010548] Workqueue: events_unbound async_run_entry_fn
>     >       >     >       >       > [   11.010556] Call trace:
>     >       >     >       >       > [   11.010558]  dump_backtrace+0x0/0x1c4
>     >       >     >       >       > [   11.010567]  show_stack+0x18/0x2c
>     >       >     >       >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
>     >       >     >       >       > [   11.010583]  dump_stack+0x18/0x34
>     >       >     >       >       > [   11.010588]  panic+0x14c/0x2f8
>     >       >     >       >       > [   11.010597]  print_tainted+0x0/0xb0
>     >       >     >       >       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
>     >       >     >       >       > [   11.010614]  do_serror+0x28/0x60
>     >       >     >       >       > [   11.010621]  el1h_64_error_handler+0x30/0x50
>     >       >     >       >       > [   11.010628]  el1h_64_error+0x78/0x7c
>     >       >     >       >       > [   11.010633]  simple_write_end+0xd0/0x130
>     >       >     >       >       > [   11.010639]  generic_perform_write+0x118/0x1e0
>     >       >     >       >       > [   11.010644]  __generic_file_write_iter+0x138/0x1c4
>     >       >     >       >       > [   11.010650]  generic_file_write_iter+0x78/0xd0
>     >       >     >       >       > [   11.010656]  __kernel_write+0xfc/0x2ac
>     >       >     >       >       > [   11.010665]  kernel_write+0x88/0x160
>     >       >     >       >       > [   11.010673]  xwrite+0x44/0x94
>     >       >     >       >       > [   11.010680]  do_copy+0xa8/0x104
>     >       >     >       >       > [   11.010686]  write_buffer+0x38/0x58
>     >       >     >       >       > [   11.010692]  flush_buffer+0x4c/0xbc
>     >       >     >       >       > [   11.010698]  __gunzip+0x280/0x310
>     >       >     >       >       > [   11.010704]  gunzip+0x1c/0x28
>     >       >     >       >       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
>     >       >     >       >       > [   11.010715]  do_populate_rootfs+0x80/0x164
>     >       >     >       >       > [   11.010722]  async_run_entry_fn+0x48/0x164
>     >       >     >       >       > [   11.010728]  process_one_work+0x1e4/0x3a0
>     >       >     >       >       > [   11.010736]  worker_thread+0x7c/0x4c0
>     >       >     >       >       > [   11.010743]  kthread+0x120/0x130
>     >       >     >       >       > [   11.010750]  ret_from_fork+0x10/0x20
>     >       >     >       >       > [   11.010757] SMP: stopping secondary CPUs
>     >       >     >       >       > [   11.010784] Kernel Offset: 0x2f61200000 from 0xffffffc008000000
>     >       >     >       >       > [   11.010788] PHYS_OFFSET: 0x0
>     >       >     >       >       > [   11.010790] CPU features: 0x00000401,00000842
>     >       >     >       >       > [   11.010795] Memory Limit: none
>     >       >     >       >       > [   11.277509] ---[ end Kernel panic - not syncing: Asynchronous SError Interrupt ]---
>     >       >     >       >       >
>     >       >     >       >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
>     >       >     >       >       >       Hi Oleg,
>     >       >     >       >       >
>     >       >     >       >       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
>     >       >     >       >       >       >       
>     >       >     >       >       >       >
>     >       >     >       >       >       >
>     >       >     >       >       >       > Hello Michal,
>     >       >     >       >       >       >
>     >       >     >       >       >       > I was not able to enable earlyprintk in the xen for now.
>     >       >     >       >       >       > I decided to choose another way.
>     >       >     >       >       >       > This is a xen's command line that I found out completely.
>     >       >     >       >       >       >
>     >       >     >       >       >       > (XEN) $$$$ console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
>     >       bootscrub=0
>     >       >     >       vwfi=native
>     >       >     >       >       sched=null
>     >       >     >       >       >       timer_slop=0
>     >       >     >       >       >       Yes, adding a printk() in Xen was also a good idea.
>     >       >     >       >       >
>     >       >     >       >       >       >
>     >       >     >       >       >       > So you are absolutely right about a command line.
>     >       >     >       >       >       > Now I am going to find out why xen did not have the correct parameters from the device
>     >       tree.
>     >       >     >       >       >       Maybe you will find this document helpful:
>     >       >     >       >       >       https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
>     >       <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>>
>     >       >     >       >       >
>     >       >     >       >       >       ~Michal
>     >       >     >       >       >
>     >       >     >       >       >       >
>     >       >     >       >       >       > Regards,
>     >       >     >       >       >       > Oleg
>     >       >     >       >       >       >
>     >       >     >       >       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>
>     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>:
>     >       >     >       >       >       >
>     >       >     >       >       >       >
>     >       >     >       >       >       >     On 21/04/2023 10:04, Oleg Nikitenko wrote:
>     >       >     >       >       >       >     >       
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     > Hello Michal,
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     > Yes, I use yocto.
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     > Yesterday all day long I tried to follow your suggestions.
>     >       >     >       >       >       >     > I faced a problem.
>     >       >     >       >       >       >     > Manually in the xen config build file I pasted the strings:
>     >       >     >       >       >       >     In the .config file or in some Yocto file (listing additional Kconfig options) added
>     >       to SRC_URI?
>     >       >     >       >       >       >     You shouldn't really modify .config file but if you do, you should execute "make
>     >       olddefconfig"
>     >       >     >       afterwards.
>     >       >     >       >       >       >
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     > CONFIG_EARLY_PRINTK
>     >       >     >       >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
>     >       >     >       >       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
>     >       >     >       >       >       >     I hope you added =y to them.
>     >       >     >       >       >       >
>     >       >     >       >       >       >     Anyway, you have at least the following solutions:
>     >       >     >       >       >       >     1) Run bitbake xen -c menuconfig to properly set early printk
>     >       >     >       >       >       >     2) Find out how you enable other Kconfig options in your project (e.g.
>     >       CONFIG_COLORING=y that is not
>     >       >     >       enabled by
>     >       >     >       >       default)
>     >       >     >       >       >       >     3) Append the following to "xen/arch/arm/configs/arm64_defconfig":
>     >       >     >       >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
>     >       >     >       >       >       >
>     >       >     >       >       >       >     ~Michal
>     >       >     >       >       >       >
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     > Host hangs in build time. 
>     >       >     >       >       >       >     > Maybe I did not set something in the config build file ?
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     > Regards,
>     >       >     >       >       >       >     > Oleg
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>:
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >     Thanks Michal,
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >     You gave me an idea.
>     >       >     >       >       >       >     >     I am going to try it today.
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >     Regards,
>     >       >     >       >       >       >     >     O.
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >     чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>:
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >         Thanks Stefano.
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >         I am going to do it today.
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >         Regards,
>     >       >     >       >       >       >     >         O.
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >         ср, 19 апр. 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>     >       >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>:
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >             On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
>     >       >     >       >       >       >     >             > Hi Michal,
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             > I corrected xen's command line.
>     >       >     >       >       >       >     >             > Now it is
>     >       >     >       >       >       >     >             > xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M
>     >       dom0_max_vcpus=2
>     >       >     >       dom0_vcpus_pin
>     >       >     >       >       >       bootscrub=0 vwfi=native sched=null
>     >       >     >       >       >       >     >             > timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >             4 colors is way too many for xen, just do xen_colors=0-0. There is no
>     >       >     >       >       >       >     >             advantage in using more than 1 color for Xen.
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >             4 colors is too few for dom0, if you are giving 1600M of memory to
>     >       Dom0.
>     >       >     >       >       >       >     >             Each color is 256M. For 1600M you should give at least 7 colors. Try:
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >             xen_colors=0-0 dom0_colors=1-8
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >     >             > Unfortunately the result was the same.
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             > (XEN)  - Dom0 mode: Relaxed
>     >       >     >       >       >       >     >             > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>     >       >     >       >       >       >     >             > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>     >       >     >       >       >       >     >             > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>     >       >     >       >       >       >     >             > (XEN) Coloring general information
>     >       >     >       >       >       >     >             > (XEN) Way size: 64kB
>     >       >     >       >       >       >     >             > (XEN) Max. number of colors available: 16
>     >       >     >       >       >       >     >             > (XEN) Xen color(s): [ 0 ]
>     >       >     >       >       >       >     >             > (XEN) alternatives: Patching with alt table 00000000002cc690 ->
>     >       00000000002ccc0c
>     >       >     >       >       >       >     >             > (XEN) Color array allocation failed for dom0
>     >       >     >       >       >       >     >             > (XEN)
>     >       >     >       >       >       >     >             > (XEN) ****************************************
>     >       >     >       >       >       >     >             > (XEN) Panic on CPU 0:
>     >       >     >       >       >       >     >             > (XEN) Error creating domain 0
>     >       >     >       >       >       >     >             > (XEN) ****************************************
>     >       >     >       >       >       >     >             > (XEN)
>     >       >     >       >       >       >     >             > (XEN) Reboot in five seconds...
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             > I am going to find out how command line arguments passed and parsed.
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             > Regards,
>     >       >     >       >       >       >     >             > Oleg
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>     >       >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>
>     >       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>>:
>     >       >     >       >       >       >     >             >       Hi Michal,
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             > You put my nose into the problem. Thank you.
>     >       >     >       >       >       >     >             > I am going to use your point.
>     >       >     >       >       >       >     >             > Let's see what happens.
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             > Regards,
>     >       >     >       >       >       >     >             > Oleg
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>
>     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
>     >       >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>
>     >       >     >       >       >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>
>     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>>:
>     >       >     >       >       >       >     >             >       Hi Oleg,
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >       On 19/04/2023 09:03, Oleg Nikitenko wrote:
>     >       >     >       >       >       >     >             >       >       
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       > Hello Stefano,
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       > Thanks for the clarification.
>     >       >     >       >       >       >     >             >       > My company uses yocto for image generation.
>     >       >     >       >       >       >     >             >       > What kind of information do you need to consult me in this
>     >       case ?
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       > Maybe modules sizes/addresses which were mentioned by @Julien
>     >       Grall
>     >       >     >       >       <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>
>     >       >     >       >       >       <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> <mailto:julien@xen.org <mailto:julien@xen.org>
>     >       <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>>> ?
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >       Sorry for jumping into discussion, but FWICS the Xen command
>     >       line you provided
>     >       >     >       seems to be
>     >       >     >       >       not the
>     >       >     >       >       >       one
>     >       >     >       >       >       >     >             >       Xen booted with. The error you are observing most likely is due
>     >       to dom0 colors
>     >       >     >       >       configuration not
>     >       >     >       >       >       being
>     >       >     >       >       >       >     >             >       specified (i.e. lack of dom0_colors=<> parameter). Although in
>     >       the command line you
>     >       >     >       >       provided, this
>     >       >     >       >       >       parameter
>     >       >     >       >       >       >     >             >       is set, I strongly doubt that this is the actual command line
>     >       in use.
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >       You wrote:
>     >       >     >       >       >       >     >             >       xen,xen-bootargs = "console=dtuart dtuart=serial0
>     >       dom0_mem=1600M dom0_max_vcpus=2
>     >       >     >       >       dom0_vcpus_pin
>     >       >     >       >       >       bootscrub=0 vwfi=native
>     >       >     >       >       >       >     >             >       sched=null timer_slop=0 way_szize=65536 xen_colors=0-3
>     >       dom0_colors=4-7";
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >       but:
>     >       >     >       >       >       >     >             >       1) way_szize has a typo
>     >       >     >       >       >       >     >             >       2) you specified 4 colors (0-3) for Xen, but the boot log says
>     >       that Xen has only
>     >       >     >       one:
>     >       >     >       >       >       >     >             >       (XEN) Xen color(s): [ 0 ]
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >       This makes me believe that no colors configuration actually end
>     >       up in command line
>     >       >     >       that Xen
>     >       >     >       >       booted
>     >       >     >       >       >       with.
>     >       >     >       >       >       >     >             >       Single color for Xen is a "default if not specified" and way
>     >       size was probably
>     >       >     >       calculated
>     >       >     >       >       by asking
>     >       >     >       >       >       HW.
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >       So I would suggest to first cross-check the command line in
>     >       use.
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >       ~Michal
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       > Regards,
>     >       >     >       >       >       >     >             >       > Oleg
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       > вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini
>     >       <sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>
>     >       >     >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>     >       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>>:
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
>     >       >     >       >       >       >     >             >       >     > Hi Julien,
>     >       >     >       >       >       >     >             >       >     >
>     >       >     >       >       >       >     >             >       >     > >> This feature has not been merged in Xen upstream yet
>     >       >     >       >       >       >     >             >       >     >
>     >       >     >       >       >       >     >             >       >     > > would assume that upstream + the series on the ML [1]
>     >       work
>     >       >     >       >       >       >     >             >       >     >
>     >       >     >       >       >       >     >             >       >     > Please clarify this point.
>     >       >     >       >       >       >     >             >       >     > Because the two thoughts are controversial.
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >     Hi Oleg,
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >     As Julien wrote, there is nothing controversial. As you
>     >       are aware,
>     >       >     >       >       >       >     >             >       >     Xilinx maintains a separate Xen tree specific for Xilinx
>     >       here:
>     >       >     >       >       >       >     >             >       >     https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>
>     >       >     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>
>     >       >     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
>     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>     >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>
>     >       >     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>
>     >       >     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>>
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >     and the branch you are using (xlnx_rebase_4.16) comes
>     >       from there.
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >     Instead, the upstream Xen tree lives here:
>     >       >     >       >       >       >     >             >       >     https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>
>     >       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>>
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >     The Cache Coloring feature that you are trying to
>     >       configure is present
>     >       >     >       >       >       >     >             >       >     in xlnx_rebase_4.16, but not yet present upstream (there
>     >       is an
>     >       >     >       >       >       >     >             >       >     outstanding patch series to add cache coloring to Xen
>     >       upstream but it
>     >       >     >       >       >       >     >             >       >     hasn't been merged yet.)
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >     Anyway, if you are using xlnx_rebase_4.16 it doesn't
>     >       matter too much for
>     >       >     >       >       >       >     >             >       >     you as you already have Cache Coloring as a feature
>     >       there.
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >     I take you are using ImageBuilder to generate the boot
>     >       configuration? If
>     >       >     >       >       >       >     >             >       >     so, please post the ImageBuilder config file that you are
>     >       using.
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >       >     But from the boot message, it looks like the colors
>     >       configuration for
>     >       >     >       >       >       >     >             >       >     Dom0 is incorrect.
>     >       >     >       >       >       >     >             >       >
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >             >
>     >       >     >       >       >       >     >
>     >       >     >       >       >       >
>     >       >     >       >       >
>     >       >     >       >       >
>     >       >     >       >       >
>     >       >     >       >
>     >       >     >       >
>     >       >     >       >
>     >       >     >
>     >       >     >
>     >       >     >
>     >       >
>     >
>     >
>     > 
> 


^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-09 19:49  0%                                               ` Stefano Stabellini
@ 2023-05-11 10:02  0%                                                 ` Oleg Nikitenko
  2023-05-11 10:15  0%                                                   ` Michal Orzel
  0 siblings, 1 reply; 200+ results
From: Oleg Nikitenko @ 2023-05-11 10:02 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: Michal Orzel, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand


[-- Attachment #1.1: Type: text/plain, Size: 85931 bytes --]

Hello,

Thanks Stefano.
Then the next question.
I cloned xen repo from xilinx site https://github.com/Xilinx/xen.git
I managed to build a xlnx_rebase_4.17 branch in my environment.
I did it without coloring first. I did not find any color footprints at
this branch.
I realized coloring is not in the xlnx_rebase_4.17 branch yet.
I switched to the master branch. All the coloring sources are presented
there. I tried to build these again.
I got a lot of errors. You may see a log in the attachment.
So this is a question.
What branch of xen did you use when you tested cache colors last time ?

Regards,
Oleg


вт, 9 мая 2023 г. в 22:49, Stefano Stabellini <sstabellini@kernel.org>:

> We test Xen Cache Coloring regularly on zcu102. Every Petalinux release
> (twice a year) is tested with cache coloring enabled. The last Petalinux
> release is 2023.1 and the kernel used is this:
> https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS
>
>
> On Tue, 9 May 2023, Oleg Nikitenko wrote:
> > Hello guys,
> >
> > I have a couple of more questions.
> > Have you ever run xen with the cache coloring at Zynq UltraScale+ MPSoC
> zcu102 xczu15eg ?
> > When did you run xen with the cache coloring last time ?
> > What kernel version did you use for Dom0 when you ran xen with the cache
> coloring last time ?
> >
> > Regards,
> > Oleg
> >
> > пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <oleshiiwood@gmail.com>:
> >       Hi Michal,
> >
> > Thanks.
> >
> > Regards,
> > Oleg
> >
> > пт, 5 мая 2023 г. в 11:34, Michal Orzel <michal.orzel@amd.com>:
> >       Hi Oleg,
> >
> >       Replying, so that you do not need to wait for Stefano.
> >
> >       On 05/05/2023 10:28, Oleg Nikitenko wrote:
> >       >
> >       >
> >       >
> >       > Hello Stefano,
> >       >
> >       > I would like to try a xen cache color property from this repo
> https://xenbits.xen.org/git-http/xen.git
> >       <https://xenbits.xen.org/git-http/xen.git>
> >       > Could you tell whot branch I should use ?
> >       Cache coloring feature is not part of the upstream tree and it is
> still under review.
> >       You can only find it integrated in the Xilinx Xen tree.
> >
> >       ~Michal
> >
> >       >
> >       > Regards,
> >       > Oleg
> >       >
> >       > пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
> >       >
> >       >     I am familiar with the zcu102 but I don't know how you could
> possibly
> >       >     generate a SError.
> >       >
> >       >     I suggest to try to use ImageBuilder [1] to generate the boot
> >       >     configuration as a test because that is known to work well
> for zcu102.
> >       >
> >       >     [1] https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>
> >       >
> >       >
> >       >     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
> >       >     > Hello Stefano,
> >       >     >
> >       >     > Thanks for clarification.
> >       >     > We nighter use ImageBuilder nor uboot boot script.
> >       >     > A model is zcu102 compatible.
> >       >     >
> >       >     > Regards,
> >       >     > O.
> >       >     >
> >       >     > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
> >       >     >       This is interesting. Are you using Xilinx hardware
> by any chance? If so,
> >       >     >       which board?
> >       >     >
> >       >     >       Are you using ImageBuilder to generate your boot.scr
> boot script? If so,
> >       >     >       could you please post your ImageBuilder config file?
> If not, can you
> >       >     >       post the source of your uboot boot script?
> >       >     >
> >       >     >       SErrors are supposed to be related to a hardware
> failure of some kind.
> >       >     >       You are not supposed to be able to trigger an SError
> easily by
> >       >     >       "mistake". I have not seen SErrors due to wrong
> cache coloring
> >       >     >       configurations on any Xilinx board before.
> >       >     >
> >       >     >       The differences between Xen with and without cache
> coloring from a
> >       >     >       hardware perspective are:
> >       >     >
> >       >     >       - With cache coloring, the SMMU is enabled and does
> address translations
> >       >     >         even for dom0. Without cache coloring the SMMU
> could be disabled, and
> >       >     >         if enabled, the SMMU doesn't do any address
> translations for Dom0. If
> >       >     >         there is a hardware failure related to SMMU
> address translation it
> >       >     >         could only trigger with cache coloring. This would
> be my normal
> >       >     >         suggestion for you to explore, but the failure
> happens too early
> >       >     >         before any DMA-capable device is programmed. So I
> don't think this can
> >       >     >         be the issue.
> >       >     >
> >       >     >       - With cache coloring, the memory allocation is very
> different so you'll
> >       >     >         end up using different DDR regions for Dom0. So if
> your DDR is
> >       >     >         defective, you might only see a failure with cache
> coloring enabled
> >       >     >         because you end up using different regions.
> >       >     >
> >       >     >
> >       >     >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
> >       >     >       > Hi Stefano,
> >       >     >       >
> >       >     >       > Thank you.
> >       >     >       > If I build xen without colors support there is not
> this error.
> >       >     >       > All the domains are booted well.
> >       >     >       > Hense it can not be a hardware issue.
> >       >     >       > This panic arrived during unpacking the rootfs.
> >       >     >       > Here I attached the boot log xen/Dom0 without
> color.
> >       >     >       > A highlighted strings printed exactly after the
> place where 1-st time panic arrived.
> >       >     >       >
> >       >     >       >  Xen 4.16.1-pre
> >       >     >       > (XEN) Xen version 4.16.1-pre (nole2390@(none))
> (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y
> >       2023-04-21
> >       >     >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023
> +0300 git:321687b231-dirty
> >       >     >       > (XEN) build-id:
> c1847258fdb1b79562fc710dda40008f96c0fde5
> >       >     >       > (XEN) Processor: 00000000410fd034: "ARM Limited",
> variant: 0x0, part 0xd03,rev 0x4
> >       >     >       > (XEN) 64-bit Execution:
> >       >     >       > (XEN)   Processor Features: 0000000000002222
> 0000000000000000
> >       >     >       > (XEN)     Exception Levels: EL3:64+32 EL2:64+32
> EL1:64+32 EL0:64+32
> >       >     >       > (XEN)     Extensions: FloatingPoint AdvancedSIMD
> >       >     >       > (XEN)   Debug Features: 0000000010305106
> 0000000000000000
> >       >     >       > (XEN)   Auxiliary Features: 0000000000000000
> 0000000000000000
> >       >     >       > (XEN)   Memory Model Features: 0000000000001122
> 0000000000000000
> >       >     >       > (XEN)   ISA Features:  0000000000011120
> 0000000000000000
> >       >     >       > (XEN) 32-bit Execution:
> >       >     >       > (XEN)   Processor Features:
> 0000000000000131:0000000000011011
> >       >     >       > (XEN)     Instruction Sets: AArch32 A32 Thumb
> Thumb-2 Jazelle
> >       >     >       > (XEN)     Extensions: GenericTimer Security
> >       >     >       > (XEN)   Debug Features: 0000000003010066
> >       >     >       > (XEN)   Auxiliary Features: 0000000000000000
> >       >     >       > (XEN)   Memory Model Features: 0000000010201105
> 0000000040000000
> >       >     >       > (XEN)                          0000000001260000
> 0000000002102211
> >       >     >       > (XEN)   ISA Features: 0000000002101110
> 0000000013112111 0000000021232042
> >       >     >       > (XEN)                 0000000001112131
> 0000000000011142 0000000000011121
> >       >     >       > (XEN) Using SMC Calling Convention v1.2
> >       >     >       > (XEN) Using PSCI v1.1
> >       >     >       > (XEN) SMP: Allowing 4 CPUs
> >       >     >       > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27
> Freq: 100000 KHz
> >       >     >       > (XEN) GICv2 initialization:
> >       >     >       > (XEN)         gic_dist_addr=00000000f9010000
> >       >     >       > (XEN)         gic_cpu_addr=00000000f9020000
> >       >     >       > (XEN)         gic_hyp_addr=00000000f9040000
> >       >     >       > (XEN)         gic_vcpu_addr=00000000f9060000
> >       >     >       > (XEN)         gic_maintenance_irq=25
> >       >     >       > (XEN) GICv2: Adjusting CPU interface base to
> 0xf902f000
> >       >     >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID
> 0200143b).
> >       >     >       > (XEN) Using scheduler: null Scheduler (null)
> >       >     >       > (XEN) Initializing null scheduler
> >       >     >       > (XEN) WARNING: This is experimental software in
> development.
> >       >     >       > (XEN) Use at your own risk.
> >       >     >       > (XEN) Allocated console ring of 32 KiB.
> >       >     >       > (XEN) CPU0: Guest atomics will try 12 times before
> pausing the domain
> >       >     >       > (XEN) Bringing up CPU1
> >       >     >       > (XEN) CPU1: Guest atomics will try 13 times before
> pausing the domain
> >       >     >       > (XEN) CPU 1 booted.
> >       >     >       > (XEN) Bringing up CPU2
> >       >     >       > (XEN) CPU2: Guest atomics will try 13 times before
> pausing the domain
> >       >     >       > (XEN) CPU 2 booted.
> >       >     >       > (XEN) Bringing up CPU3
> >       >     >       > (XEN) CPU3: Guest atomics will try 13 times before
> pausing the domain
> >       >     >       > (XEN) Brought up 4 CPUs
> >       >     >       > (XEN) CPU 3 booted.
> >       >     >       > (XEN) smmu: /axi/smmu@fd800000: probing hardware
> configuration...
> >       >     >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
> >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stage 2
> translation
> >       >     >       > (XEN) smmu: /axi/smmu@fd800000: stream matching
> with 48 register groups, mask 0x7fff<2>smmu:
> >       /axi/smmu@fd800000: 16 context
> >       >     >       banks (0
> >       >     >       > stage-2 only)
> >       >     >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit
> IPA -> 48-bit PA
> >       >     >       > (XEN) smmu: /axi/smmu@fd800000: registered 29
> master devices
> >       >     >       > (XEN) I/O virtualisation enabled
> >       >     >       > (XEN)  - Dom0 mode: Relaxed
> >       >     >       > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
> >       >     >       > (XEN) P2M: 3 levels with order-1 root, VTCR
> 0x0000000080023558
> >       >     >       > (XEN) Scheduling granularity: cpu, 1 CPU per
> sched-resource
> >       >     >       > (XEN) alternatives: Patching with alt table
> 00000000002cc5c8 -> 00000000002ccb2c
> >       >     >       > (XEN) *** LOADING DOMAIN 0 ***
> >       >     >       > (XEN) Loading d0 kernel from boot module @
> 0000000001000000
> >       >     >       > (XEN) Loading ramdisk from boot module @
> 0000000002000000
> >       >     >       > (XEN) Allocating 1:1 mappings totalling 1600MB for
> dom0:
> >       >     >       > (XEN) BANK[0] 0x00000010000000-0x00000020000000
> (256MB)
> >       >     >       > (XEN) BANK[1] 0x00000024000000-0x00000028000000
> (64MB)
> >       >     >       > (XEN) BANK[2] 0x00000030000000-0x00000080000000
> (1280MB)
> >       >     >       > (XEN) Grant table range:
> 0x00000000e00000-0x00000000e40000
> >       >     >       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr
> 0x000000087bf94000
> >       >     >       > (XEN) Allocating PPI 16 for event channel interrupt
> >       >     >       > (XEN) Extended region 0: 0x81200000->0xa0000000
> >       >     >       > (XEN) Extended region 1: 0xb1200000->0xc0000000
> >       >     >       > (XEN) Extended region 2: 0xc8000000->0xe0000000
> >       >     >       > (XEN) Extended region 3: 0xf0000000->0xf9000000
> >       >     >       > (XEN) Extended region 4: 0x100000000->0x600000000
> >       >     >       > (XEN) Extended region 5: 0x880000000->0x8000000000
> >       >     >       > (XEN) Extended region 6:
> 0x8001000000->0x10000000000
> >       >     >       > (XEN) Loading zImage from 0000000001000000 to
> 0000000010000000-0000000010e41008
> >       >     >       > (XEN) Loading d0 initrd from 0000000002000000 to
> 0x0000000013600000-0x000000001ff3a617
> >       >     >       > (XEN) Loading d0 DTB to
> 0x0000000013400000-0x000000001340cbdc
> >       >     >       > (XEN) Initial low memory virq threshold set at
> 0x4000 pages.
> >       >     >       > (XEN) Std. Loglevel: All
> >       >     >       > (XEN) Guest Loglevel: All
> >       >     >       > (XEN) *** Serial input to DOM0 (type 'CTRL-a'
> three times to switch input)
> >       >     >       > (XEN) null.c:353: 0 <-- d0v0
> >       >     >       > (XEN) Freed 356kB init memory.
> >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
> >       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
> >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER4
> >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER8
> >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER12
> >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER16
> >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER20
> >       >     >       > (XEN) d0v0: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER0
> >       >     >       > [    0.000000] Booting Linux on physical CPU
> 0x0000000000 [0x410fd034]
> >       >     >       > [    0.000000] Linux version
> 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC)
> >       11.3.0, GNU ld (GNU
> >       >     >       Binutils)
> >       >     >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
> >       >     >       > [    0.000000] Machine model: D14 Viper Board -
> White Unit
> >       >     >       > [    0.000000] Xen 4.16 support found
> >       >     >       > [    0.000000] Zone ranges:
> >       >     >       > [    0.000000]   DMA      [mem
> 0x0000000010000000-0x000000007fffffff]
> >       >     >       > [    0.000000]   DMA32    empty
> >       >     >       > [    0.000000]   Normal   empty
> >       >     >       > [    0.000000] Movable zone start for each node
> >       >     >       > [    0.000000] Early memory node ranges
> >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000010000000-0x000000001fffffff]
> >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000022000000-0x0000000022147fff]
> >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000022200000-0x0000000022347fff]
> >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000024000000-0x0000000027ffffff]
> >       >     >       > [    0.000000]   node   0: [mem
> 0x0000000030000000-0x000000007fffffff]
> >       >     >       > [    0.000000] Initmem setup node 0 [mem
> 0x0000000010000000-0x000000007fffffff]
> >       >     >       > [    0.000000] On node 0, zone DMA: 8192 pages in
> unavailable ranges
> >       >     >       > [    0.000000] On node 0, zone DMA: 184 pages in
> unavailable ranges
> >       >     >       > [    0.000000] On node 0, zone DMA: 7352 pages in
> unavailable ranges
> >       >     >       > [    0.000000] cma: Reserved 256 MiB at
> 0x000000006e000000
> >       >     >       > [    0.000000] psci: probing for conduit method
> from DT.
> >       >     >       > [    0.000000] psci: PSCIv1.1 detected in firmware.
> >       >     >       > [    0.000000] psci: Using standard PSCI v0.2
> function IDs
> >       >     >       > [    0.000000] psci: Trusted OS migration not
> required
> >       >     >       > [    0.000000] psci: SMC Calling Convention v1.1
> >       >     >       > [    0.000000] percpu: Embedded 16 pages/cpu
> s32792 r0 d32744 u65536
> >       >     >       > [    0.000000] Detected VIPT I-cache on CPU0
> >       >     >       > [    0.000000] CPU features: kernel page table
> isolation forced ON by KASLR
> >       >     >       > [    0.000000] CPU features: detected: Kernel page
> table isolation (KPTI)
> >       >     >       > [    0.000000] Built 1 zonelists, mobility
> grouping on.  Total pages: 403845
> >       >     >       > [    0.000000] Kernel command line: console=hvc0
> earlycon=xen earlyprintk=xen clk_ignore_unused fips=1
> >       root=/dev/ram0
> >       >     >       maxcpus=2
> >       >     >       > [    0.000000] Unknown kernel command line
> parameters "earlyprintk=xen fips=1", will be passed to user
> >       space.
> >       >     >       > [    0.000000] Dentry cache hash table entries:
> 262144 (order: 9, 2097152 bytes, linear)
> >       >     >       > [    0.000000] Inode-cache hash table entries:
> 131072 (order: 8, 1048576 bytes, linear)
> >       >     >       > [    0.000000] mem auto-init: stack:off, heap
> alloc:on, heap free:on
> >       >     >       > [    0.000000] mem auto-init: clearing system
> memory may take some time...
> >       >     >       > [    0.000000] Memory: 1121936K/1641024K available
> (9728K kernel code, 836K rwdata, 2396K rodata, 1536K
> >       init, 262K bss,
> >       >     >       256944K reserved,
> >       >     >       > 262144K cma-reserved)
> >       >     >       > [    0.000000] SLUB: HWalign=64, Order=0-3,
> MinObjects=0, CPUs=2, Nodes=1
> >       >     >       > [    0.000000] rcu: Hierarchical RCU
> implementation.
> >       >     >       > [    0.000000] rcu: RCU event tracing is enabled.
> >       >     >       > [    0.000000] rcu: RCU restricting CPUs from
> NR_CPUS=8 to nr_cpu_ids=2.
> >       >     >       > [    0.000000] rcu: RCU calculated value of
> scheduler-enlistment delay is 25 jiffies.
> >       >     >       > [    0.000000] rcu: Adjusting geometry for
> rcu_fanout_leaf=16, nr_cpu_ids=2
> >       >     >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64,
> preallocated irqs: 0
> >       >     >       > [    0.000000] Root IRQ handler: gic_handle_irq
> >       >     >       > [    0.000000] arch_timer: cp15 timer(s) running
> at 100.00MHz (virt).
> >       >     >       > [    0.000000] clocksource: arch_sys_counter:
> mask: 0xffffffffffffff max_cycles: 0x171024e7e0,
> >       max_idle_ns: 440795205315 ns
> >       >     >       > [    0.000000] sched_clock: 56 bits at 100MHz,
> resolution 10ns, wraps every 4398046511100ns
> >       >     >       > [    0.000258] Console: colour dummy device 80x25
> >       >     >       > [    0.310231] printk: console [hvc0] enabled
> >       >     >       > [    0.314403] Calibrating delay loop (skipped),
> value calculated using timer frequency.. 200.00 BogoMIPS
> >       (lpj=400000)
> >       >     >       > [    0.324851] pid_max: default: 32768 minimum: 301
> >       >     >       > [    0.329706] LSM: Security Framework initializing
> >       >     >       > [    0.334204] Yama: becoming mindful.
> >       >     >       > [    0.337865] Mount-cache hash table entries:
> 4096 (order: 3, 32768 bytes, linear)
> >       >     >       > [    0.345180] Mountpoint-cache hash table
> entries: 4096 (order: 3, 32768 bytes, linear)
> >       >     >       > [    0.354743] xen:grant_table: Grant tables using
> version 1 layout
> >       >     >       > [    0.359132] Grant table initialized
> >       >     >       > [    0.362664] xen:events: Using FIFO-based ABI
> >       >     >       > [    0.366993] Xen: initializing cpu0
> >       >     >       > [    0.370515] rcu: Hierarchical SRCU
> implementation.
> >       >     >       > [    0.375930] smp: Bringing up secondary CPUs ...
> >       >     >       > (XEN) null.c:353: 1 <-- d0v1
> >       >     >       > (XEN) d0v1: vGICD: unhandled word write
> 0x000000ffffffff to ICACTIVER0
> >       >     >       > [    0.382549] Detected VIPT I-cache on CPU1
> >       >     >       > [    0.388712] Xen: initializing cpu1
> >       >     >       > [    0.388743] CPU1: Booted secondary processor
> 0x0000000001 [0x410fd034]
> >       >     >       > [    0.388829] smp: Brought up 1 node, 2 CPUs
> >       >     >       > [    0.406941] SMP: Total of 2 processors
> activated.
> >       >     >       > [    0.411698] CPU features: detected: 32-bit EL0
> Support
> >       >     >       > [    0.416888] CPU features: detected: CRC32
> instructions
> >       >     >       > [    0.422121] CPU: All CPU(s) started at EL1
> >       >     >       > [    0.426248] alternatives: patching kernel code
> >       >     >       > [    0.431424] devtmpfs: initialized
> >       >     >       > [    0.441454] KASLR enabled
> >       >     >       > [    0.441602] clocksource: jiffies: mask:
> 0xffffffff max_cycles: 0xffffffff, max_idle_ns:
> >       7645041785100000 ns
> >       >     >       > [    0.448321] futex hash table entries: 512
> (order: 3, 32768 bytes, linear)
> >       >     >       > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE
> protocol family
> >       >     >       > [    0.498277] DMA: preallocated 256 KiB
> GFP_KERNEL pool for atomic allocations
> >       >     >       > [    0.503772] DMA: preallocated 256 KiB
> GFP_KERNEL|GFP_DMA pool for atomic allocations
> >       >     >       > [    0.511610] DMA: preallocated 256 KiB
> GFP_KERNEL|GFP_DMA32 pool for atomic allocations
> >       >     >       > [    0.519478] audit: initializing netlink subsys
> (disabled)
> >       >     >       > [    0.524985] audit: type=2000 audit(0.336:1):
> state=initialized audit_enabled=0 res=1
> >       >     >       > [    0.529169] thermal_sys: Registered thermal
> governor 'step_wise'
> >       >     >       > [    0.533023] hw-breakpoint: found 6 breakpoint
> and 4 watchpoint registers.
> >       >     >       > [    0.545608] ASID allocator initialised with
> 32768 entries
> >       >     >       > [    0.551030] xen:swiotlb_xen: Warning: only able
> to allocate 4 MB for software IO TLB
> >       >     >       > [    0.559332] software IO TLB: mapped [mem
> 0x0000000011800000-0x0000000011c00000] (4MB)
> >       >     >       > [    0.583565] HugeTLB registered 1.00 GiB page
> size, pre-allocated 0 pages
> >       >     >       > [    0.584721] HugeTLB registered 32.0 MiB page
> size, pre-allocated 0 pages
> >       >     >       > [    0.591478] HugeTLB registered 2.00 MiB page
> size, pre-allocated 0 pages
> >       >     >       > [    0.598225] HugeTLB registered 64.0 KiB page
> size, pre-allocated 0 pages
> >       >     >       > [    0.636520] DRBG: Continuing without Jitter RNG
> >       >     >       > [    0.737187] raid6: neonx8   gen()  2143 MB/s
> >       >     >       > [    0.805294] raid6: neonx8   xor()  1589 MB/s
> >       >     >       > [    0.873406] raid6: neonx4   gen()  2177 MB/s
> >       >     >       > [    0.941499] raid6: neonx4   xor()  1556 MB/s
> >       >     >       > [    1.009612] raid6: neonx2   gen()  2072 MB/s
> >       >     >       > [    1.077715] raid6: neonx2   xor()  1430 MB/s
> >       >     >       > [    1.145834] raid6: neonx1   gen()  1769 MB/s
> >       >     >       > [    1.213935] raid6: neonx1   xor()  1214 MB/s
> >       >     >       > [    1.282046] raid6: int64x8  gen()  1366 MB/s
> >       >     >       > [    1.350132] raid6: int64x8  xor()   773 MB/s
> >       >     >       > [    1.418259] raid6: int64x4  gen()  1602 MB/s
> >       >     >       > [    1.486349] raid6: int64x4  xor()   851 MB/s
> >       >     >       > [    1.554464] raid6: int64x2  gen()  1396 MB/s
> >       >     >       > [    1.622561] raid6: int64x2  xor()   744 MB/s
> >       >     >       > [    1.690687] raid6: int64x1  gen()  1033 MB/s
> >       >     >       > [    1.758770] raid6: int64x1  xor()   517 MB/s
> >       >     >       > [    1.758809] raid6: using algorithm neonx4 gen()
> 2177 MB/s
> >       >     >       > [    1.762941] raid6: .... xor() 1556 MB/s, rmw
> enabled
> >       >     >       > [    1.767957] raid6: using neon recovery algorithm
> >       >     >       > [    1.772824] xen:balloon: Initialising balloon
> driver
> >       >     >       > [    1.778021] iommu: Default domain type:
> Translated
> >       >     >       > [    1.782584] iommu: DMA domain TLB invalidation
> policy: strict mode
> >       >     >       > [    1.789149] SCSI subsystem initialized
> >       >     >       > [    1.792820] usbcore: registered new interface
> driver usbfs
> >       >     >       > [    1.798254] usbcore: registered new interface
> driver hub
> >       >     >       > [    1.803626] usbcore: registered new device
> driver usb
> >       >     >       > [    1.808761] pps_core: LinuxPPS API ver. 1
> registered
> >       >     >       > [    1.813716] pps_core: Software ver. 5.3.6 -
> Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it
> >       <mailto:giometti@linux.it>>
> >       >     >       > [    1.822903] PTP clock support registered
> >       >     >       > [    1.826893] EDAC MC: Ver: 3.0.0
> >       >     >       > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400:
> Registered ZynqMP IPI mbox with TX/RX channels.
> >       >     >       > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600:
> Registered ZynqMP IPI mbox with TX/RX channels.
> >       >     >       > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800:
> Registered ZynqMP IPI mbox with TX/RX channels.
> >       >     >       > [    1.855907] FPGA manager framework
> >       >     >       > [    1.859952] clocksource: Switched to
> clocksource arch_sys_counter
> >       >     >       > [    1.871712] NET: Registered PF_INET protocol
> family
> >       >     >       > [    1.871838] IP idents hash table entries: 32768
> (order: 6, 262144 bytes, linear)
> >       >     >       > [    1.879392] tcp_listen_portaddr_hash hash table
> entries: 1024 (order: 2, 16384 bytes, linear)
> >       >     >       > [    1.887078] Table-perturb hash table entries:
> 65536 (order: 6, 262144 bytes, linear)
> >       >     >       > [    1.894846] TCP established hash table entries:
> 16384 (order: 5, 131072 bytes, linear)
> >       >     >       > [    1.902900] TCP bind hash table entries: 16384
> (order: 6, 262144 bytes, linear)
> >       >     >       > [    1.910350] TCP: Hash tables configured
> (established 16384 bind 16384)
> >       >     >       > [    1.916778] UDP hash table entries: 1024
> (order: 3, 32768 bytes, linear)
> >       >     >       > [    1.923509] UDP-Lite hash table entries: 1024
> (order: 3, 32768 bytes, linear)
> >       >     >       > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL
> protocol family
> >       >     >       > [    1.936834] RPC: Registered named UNIX socket
> transport module.
> >       >     >       > [    1.942342] RPC: Registered udp transport
> module.
> >       >     >       > [    1.947088] RPC: Registered tcp transport
> module.
> >       >     >       > [    1.951843] RPC: Registered tcp NFSv4.1
> backchannel transport module.
> >       >     >       > [    1.958334] PCI: CLS 0 bytes, default 64
> >       >     >       > [    1.962709] Trying to unpack rootfs image as
> initramfs...
> >       >     >       > [    1.977090] workingset: timestamp_bits=62
> max_order=19 bucket_order=0
> >       >     >       > [    1.982863] Installing knfsd (copyright (C)
> 1996 okir@monad.swb.de <mailto:okir@monad.swb.de>).
> >       >     >       > [    2.021045] NET: Registered PF_ALG protocol
> family
> >       >     >       > [    2.021122] xor: measuring software checksum
> speed
> >       >     >       > [    2.029347]    8regs           :  2366 MB/sec
> >       >     >       > [    2.033081]    32regs          :  2802 MB/sec
> >       >     >       > [    2.038223]    arm64_neon      :  2320 MB/sec
> >       >     >       > [    2.038385] xor: using function: 32regs (2802
> MB/sec)
> >       >     >       > [    2.043614] Block layer SCSI generic (bsg)
> driver version 0.4 loaded (major 247)
> >       >     >       > [    2.050959] io scheduler mq-deadline registered
> >       >     >       > [    2.055521] io scheduler kyber registered
> >       >     >       > [    2.068227] xen:xen_evtchn: Event-channel
> device installed
> >       >     >       > [    2.069281] Serial: 8250/16550 driver, 4 ports,
> IRQ sharing disabled
> >       >     >       > [    2.076190] cacheinfo: Unable to detect cache
> hierarchy for CPU 0
> >       >     >       > [    2.085548] brd: module loaded
> >       >     >       > [    2.089290] loop: module loaded
> >       >     >       > [    2.089341] Invalid max_queues (4), will use
> default max: 2.
> >       >     >       > [    2.094565] tun: Universal TUN/TAP device
> driver, 1.6
> >       >     >       > [    2.098655] xen_netfront: Initialising Xen
> virtual ethernet driver
> >       >     >       > [    2.104156] usbcore: registered new interface
> driver rtl8150
> >       >     >       > [    2.109813] usbcore: registered new interface
> driver r8152
> >       >     >       > [    2.115367] usbcore: registered new interface
> driver asix
> >       >     >       > [    2.120794] usbcore: registered new interface
> driver ax88179_178a
> >       >     >       > [    2.126934] usbcore: registered new interface
> driver cdc_ether
> >       >     >       > [    2.132816] usbcore: registered new interface
> driver cdc_eem
> >       >     >       > [    2.138527] usbcore: registered new interface
> driver net1080
> >       >     >       > [    2.144256] usbcore: registered new interface
> driver cdc_subset
> >       >     >       > [    2.150205] usbcore: registered new interface
> driver zaurus
> >       >     >       > [    2.155837] usbcore: registered new interface
> driver cdc_ncm
> >       >     >       > [    2.161550] usbcore: registered new interface
> driver r8153_ecm
> >       >     >       > [    2.168240] usbcore: registered new interface
> driver cdc_acm
> >       >     >       > [    2.173109] cdc_acm: USB Abstract Control Model
> driver for USB modems and ISDN adapters
> >       >     >       > [    2.181358] usbcore: registered new interface
> driver uas
> >       >     >       > [    2.186547] usbcore: registered new interface
> driver usb-storage
> >       >     >       > [    2.192643] usbcore: registered new interface
> driver ftdi_sio
> >       >     >       > [    2.198384] usbserial: USB Serial support
> registered for FTDI USB Serial Device
> >       >     >       > [    2.206118] udc-core: couldn't find an
> available UDC - added [g_mass_storage] to list of pending
> >       drivers
> >       >     >       > [    2.215332] i2c_dev: i2c /dev entries driver
> >       >     >       > [    2.220467] xen_wdt xen_wdt: initialized
> (timeout=60s, nowayout=0)
> >       >     >       > [    2.225923] device-mapper: uevent: version 1.0.3
> >       >     >       > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl
> (2021-03-22) initialised: dm-devel@redhat.com
> >       <mailto:dm-devel@redhat.com>
> >       >     >       > [    2.239315] EDAC MC0: Giving out device to
> module 1 controller synps_ddr_controller: DEV synps_edac
> >       (INTERRUPT)
> >       >     >       > [    2.249405] EDAC DEVICE0: Giving out device to
> module zynqmp-ocm-edac controller zynqmp_ocm: DEV
> >       >     >       ff960000.memory-controller (INTERRUPT)
> >       >     >       > [    2.261719] sdhci: Secure Digital Host
> Controller Interface driver
> >       >     >       > [    2.267487] sdhci: Copyright(c) Pierre Ossman
> >       >     >       > [    2.271890] sdhci-pltfm: SDHCI platform and OF
> driver helper
> >       >     >       > [    2.278157] ledtrig-cpu: registered to indicate
> activity on CPUs
> >       >     >       > [    2.283816] zynqmp_firmware_probe Platform
> Management API v1.1
> >       >     >       > [    2.289554] zynqmp_firmware_probe Trustzone
> version v1.0
> >       >     >       > [    2.327875] securefw securefw: securefw probed
> >       >     >       > [    2.328324] alg: No test for xilinx-zynqmp-aes
> (zynqmp-aes)
> >       >     >       > [    2.332563] zynqmp_aes
> firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
> >       >     >       > [    2.341183] alg: No test for xilinx-zynqmp-rsa
> (zynqmp-rsa)
> >       >     >       > [    2.347667] remoteproc remoteproc0:
> ff9a0000.rf5ss:r5f_0 is available
> >       >     >       > [    2.353003] remoteproc remoteproc1:
> ff9a0000.rf5ss:r5f_1 is available
> >       >     >       > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP
> FPGA Manager registered
> >       >     >       > [    2.366540] viper-xen-proxy viper-xen-proxy:
> Viper Xen Proxy registered
> >       >     >       > [    2.372525] viper-vdpp a4000000.vdpp: Device
> Tree Probing
> >       >     >       > [    2.377778] viper-vdpp a4000000.vdpp: VDPP
> Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >       >     >       > [    2.386432] viper-vdpp a4000000.vdpp: Unable to
> register tamper handler. Retrying...
> >       >     >       > [    2.394094] viper-vdpp-net a5000000.vdpp_net:
> Device Tree Probing
> >       >     >       > [    2.399854] viper-vdpp-net a5000000.vdpp_net:
> Device registered
> >       >     >       > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat:
> Device Tree Probing
> >       >     >       > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat:
> Build parameters: VTI Count: 512 Event Count: 32
> >       >     >       > [    2.420856] default preset
> >       >     >       > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat:
> Device registered
> >       >     >       > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng:
> Device Tree Probing
> >       >     >       > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng:
> Device registered
> >       >     >       > [    2.441976] vmcu driver init
> >       >     >       > [    2.444922] VMCU: : (240:0) registered
> >       >     >       > [    2.444956] In K81 Updater init
> >       >     >       > [    2.449003] pktgen: Packet Generator for packet
> performance testing. Version: 2.75
> >       >     >       > [    2.468833] Initializing XFRM netlink socket
> >       >     >       > [    2.468902] NET: Registered PF_PACKET protocol
> family
> >       >     >       > [    2.472729] Bridge firewalling registered
> >       >     >       > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
> >       >     >       > [    2.481341] registered taskstats version 1
> >       >     >       > [    2.486394] Btrfs loaded,
> crc32c=crc32c-generic, zoned=no, fsverity=no
> >       >     >       > [    2.503145] ff010000.serial: ttyPS1 at MMIO
> 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
> >       >     >       > [    2.507103] of-fpga-region fpga-full: FPGA
> Region probed
> >       >     >       > [    2.512986] xilinx-zynqmp-dma
> fd500000.dma-controller: ZynqMP DMA driver Probe success
> >       >     >       > [    2.520267] xilinx-zynqmp-dma
> fd510000.dma-controller: ZynqMP DMA driver Probe success
> >       >     >       > [    2.528239] xilinx-zynqmp-dma
> fd520000.dma-controller: ZynqMP DMA driver Probe success
> >       >     >       > [    2.536152] xilinx-zynqmp-dma
> fd530000.dma-controller: ZynqMP DMA driver Probe success
> >       >     >       > [    2.544153] xilinx-zynqmp-dma
> fd540000.dma-controller: ZynqMP DMA driver Probe success
> >       >     >       > [    2.552127] xilinx-zynqmp-dma
> fd550000.dma-controller: ZynqMP DMA driver Probe success
> >       >     >       > [    2.560178] xilinx-zynqmp-dma
> ffa80000.dma-controller: ZynqMP DMA driver Probe success
> >       >     >       > [    2.567987] xilinx-zynqmp-dma
> ffa90000.dma-controller: ZynqMP DMA driver Probe success
> >       >     >       > [    2.576018] xilinx-zynqmp-dma
> ffaa0000.dma-controller: ZynqMP DMA driver Probe success
> >       >     >       > [    2.583889] xilinx-zynqmp-dma
> ffab0000.dma-controller: ZynqMP DMA driver Probe success
> >       >     >       > [    2.946379] spi-nor spi0.0: mt25qu512a (131072
> Kbytes)
> >       >     >       > [    2.946467] 2 fixed-partitions partitions found
> on MTD device spi0.0
> >       >     >       > [    2.952393] Creating 2 MTD partitions on
> "spi0.0":
> >       >     >       > [    2.957231] 0x000004000000-0x000008000000 :
> "bank A"
> >       >     >       > [    2.963332] 0x000000000000-0x000004000000 :
> "bank B"
> >       >     >       > [    2.968694] macb ff0b0000.ethernet: Not
> enabling partial store and forward
> >       >     >       > [    2.975333] macb ff0b0000.ethernet eth0:
> Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25
> >       (18:41:fe:0f:ff:02)
> >       >     >       > [    2.984472] macb ff0c0000.ethernet: Not
> enabling partial store and forward
> >       >     >       > [    2.992144] macb ff0c0000.ethernet eth1:
> Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26
> >       (18:41:fe:0f:ff:03)
> >       >     >       > [    3.001043] viper_enet viper_enet: Viper power
> GPIOs initialised
> >       >     >       > [    3.007313] viper_enet viper_enet vnet0
> (uninitialized): Validate interface QSGMII
> >       >     >       > [    3.014914] viper_enet viper_enet vnet1
> (uninitialized): Validate interface QSGMII
> >       >     >       > [    3.022138] viper_enet viper_enet vnet1
> (uninitialized): Validate interface type 18
> >       >     >       > [    3.030274] viper_enet viper_enet vnet2
> (uninitialized): Validate interface QSGMII
> >       >     >       > [    3.037785] viper_enet viper_enet vnet3
> (uninitialized): Validate interface QSGMII
> >       >     >       > [    3.045301] viper_enet viper_enet: Viper enet
> registered
> >       >     >       > [    3.050958] xilinx-axipmon
> ffa00000.perf-monitor: Probed Xilinx APM
> >       >     >       > [    3.057135] xilinx-axipmon
> fd0b0000.perf-monitor: Probed Xilinx APM
> >       >     >       > [    3.063538] xilinx-axipmon
> fd490000.perf-monitor: Probed Xilinx APM
> >       >     >       > [    3.069920] xilinx-axipmon
> ffa10000.perf-monitor: Probed Xilinx APM
> >       >     >       > [    3.097729] si70xx: probe of 2-0040 failed with
> error -5
> >       >     >       > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx
> Watchdog Timer with timeout 60s
> >       >     >       > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx
> Watchdog Timer with timeout 10s
> >       >     >       > [    3.112457] viper-tamper viper-tamper: Device
> registered
> >       >     >       > [    3.117593] active_bank active_bank: boot bank:
> 1
> >       >     >       > [    3.122184] active_bank active_bank: boot mode:
> (0x02) qspi32
> >       >     >       > [    3.128247] viper-vdpp a4000000.vdpp: Device
> Tree Probing
> >       >     >       > [    3.133439] viper-vdpp a4000000.vdpp: VDPP
> Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >       >     >       > [    3.142151] viper-vdpp a4000000.vdpp: Tamper
> handler registered
> >       >     >       > [    3.147438] viper-vdpp a4000000.vdpp: Device
> registered
> >       >     >       > [    3.153007] lpc55_l2 spi1.0: registered handler
> for protocol 0
> >       >     >       > [    3.158582] lpc55_user lpc55_user: The major
> number for your device is 236
> >       >     >       > [    3.165976] lpc55_l2 spi1.0: registered handler
> for protocol 1
> >       >     >       > [    3.181999] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_get_time: bad result: 1
> >       >     >       > [    3.182856] rtc-lpc55 rtc_lpc55: registered as
> rtc0
> >       >     >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not
> ready?
> >       >     >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not
> ready?
> >       >     >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not
> ready?
> >       >     >       > [    3.202932] mmc0: SDHCI controller on
> ff160000.mmc [ff160000.mmc] using ADMA 64-bit
> >       >     >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not
> ready?
> >       >     >       > [    3.215694] lpc55_l2 spi1.0: rx error: -110
> >       >     >       > [    3.284438] mmc0: new HS200 MMC card at address
> 0001
> >       >     >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
> >       >     >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
> >       >     >       > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00
> MiB
> >       >     >       > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00
> MiB
> >       >     >       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00
> MiB, chardev (244:0)
> >       >     >       > [    3.582676] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_get_time: bad result: 1
> >       >     >       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys:
> unable to read the hardware clock
> >       >     >       > [    3.591252] cdns-i2c ff020000.i2c: recovery
> information complete
> >       >     >       > [    3.597085] at24 0-0050: supply vcc not found,
> using dummy regulator
> >       >     >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not
> ready?
> >       >     >       > [    3.608093] at24 0-0050: 256 byte spd EEPROM,
> read-only
> >       >     >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not
> ready?
> >       >     >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not
> ready?
> >       >     >       > [    3.624224] rtc-rv3028 0-0052: registered as
> rtc1
> >       >     >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not
> ready?
> >       >     >       > [    3.633253] lpc55_l2 spi1.0: rx error: -110
> >       >     >       > [    3.639104] k81_bootloader 0-0010: probe
> >       >     >       > [    3.641628] VMCU: : (235:0) registered
> >       >     >       > [    3.641635] k81_bootloader 0-0010: probe
> completed
> >       >     >       > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio
> ff020000 irq 28
> >       >     >       > [    3.669154] cdns-i2c ff030000.i2c: recovery
> information complete
> >       >     >       > [    3.675412] lm75 1-0048: supply vs not found,
> using dummy regulator
> >       >     >       > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
> >       >     >       > [    3.686548] i2c i2c-1: Added multiplexed i2c
> bus 3
> >       >     >       > [    3.690795] i2c i2c-1: Added multiplexed i2c
> bus 4
> >       >     >       > [    3.695629] i2c i2c-1: Added multiplexed i2c
> bus 5
> >       >     >       > [    3.700492] i2c i2c-1: Added multiplexed i2c
> bus 6
> >       >     >       > [    3.705157] pca954x 1-0070: registered 4
> multiplexed busses for I2C switch pca9546
> >       >     >       > [    3.713049] at24 1-0054: supply vcc not found,
> using dummy regulator
> >       >     >       > [    3.720067] at24 1-0054: 1024 byte 24c08
> EEPROM, read-only
> >       >     >       > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio
> ff030000 irq 29
> >       >     >       > [    3.731272] sfp viper_enet:sfp-eth1: Host
> maximum power 2.0W
> >       >     >       > [    3.737549] sfp_register_socket: got sfp_bus
> >       >     >       > [    3.740709] sfp_register_socket: register
> sfp_bus
> >       >     >       > [    3.745459] sfp_register_bus: ops ok!
> >       >     >       > [    3.749179] sfp_register_bus: Try to attach
> >       >     >       > [    3.753419] sfp_register_bus: Attach succeeded
> >       >     >       > [    3.757914] sfp_register_bus: upstream ops
> attach
> >       >     >       > [    3.762677] sfp_register_bus: Bus registered
> >       >     >       > [    3.766999] sfp_register_socket: register
> sfp_bus succeeded
> >       >     >       > [    3.775870] of_cfs_init
> >       >     >       > [    3.776000] of_cfs_init: OK
> >       >     >       > [    3.778211] clk: Not disabling unused clocks
> >       >     >       > [   11.278477] Freeing initrd memory: 206056K
> >       >     >       > [   11.279406] Freeing unused kernel memory: 1536K
> >       >     >       > [   11.314006] Checked W+X mappings: passed, no
> W+X pages found
> >       >     >       > [   11.314142] Run /init as init process
> >       >     >       > INIT: version 3.01 booting
> >       >     >       > fsck (busybox 1.35.0)
> >       >     >       > /dev/mmcblk0p1: clean, 12/102400 files,
> 238162/409600 blocks
> >       >     >       > /dev/mmcblk0p2: clean, 12/102400 files,
> 171972/409600 blocks
> >       >     >       > /dev/mmcblk0p3 was not cleanly unmounted, check
> forced.
> >       >     >       > /dev/mmcblk0p3: 20/4096 files (0.0%
> non-contiguous), 663/16384 blocks
> >       >     >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted
> filesystem without journal. Opts: (null). Quota mode:
> >       disabled.
> >       >     >       > Starting random number generator daemon.
> >       >     >       > [   11.580662] random: crng init done
> >       >     >       > Starting udev
> >       >     >       > [   11.613159] udevd[142]: starting version 3.2.10
> >       >     >       > [   11.620385] udevd[143]: starting eudev-3.2.10
> >       >     >       > [   11.704481] macb ff0b0000.ethernet control_red:
> renamed from eth0
> >       >     >       > [   11.720264] macb ff0c0000.ethernet
> control_black: renamed from eth1
> >       >     >       > [   12.063396] ip_local_port_range: prefer
> different parity for start/end values.
> >       >     >       > [   12.084801] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_get_time: bad result: 1
> >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
> >       >     >       > Mon Feb 27 08:40:53 UTC 2023
> >       >     >       > [   12.115309] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_set_time: bad result
> >       >     >       > hwclock: RTC_SET_TIME: Invalid exchange
> >       >     >       > [   12.131027] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_get_time: bad result: 1
> >       >     >       > Starting mcud
> >       >     >       > INIT: Entering runlevel: 5
> >       >     >       > Configuring network interfaces... done.
> >       >     >       > resetting network interface
> >       >     >       > [   12.718295] macb ff0b0000.ethernet control_red:
> PHY [ff0b0000.ethernet-ffffffff:02] driver [Xilinx
> >       PCS/PMA PHY] (irq=POLL)
> >       >     >       > [   12.723919] macb ff0b0000.ethernet control_red:
> configuring for phy/gmii link mode
> >       >     >       > [   12.732151] pps pps0: new PPS source ptp0
> >       >     >       > [   12.735563] macb ff0b0000.ethernet:
> gem-ptp-timer ptp clock registered.
> >       >     >       > [   12.745724] macb ff0c0000.ethernet
> control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver [Xilinx
> >       PCS/PMA PHY]
> >       >     >       (irq=POLL)
> >       >     >       > [   12.753469] macb ff0c0000.ethernet
> control_black: configuring for phy/gmii link mode
> >       >     >       > [   12.761804] pps pps1: new PPS source ptp1
> >       >     >       > [   12.765398] macb ff0c0000.ethernet:
> gem-ptp-timer ptp clock registered.
> >       >     >       > Auto-negotiation: off
> >       >     >       > Auto-negotiation: off
> >       >     >       > [   16.828151] macb ff0b0000.ethernet control_red:
> unable to generate target frequency: 125000000 Hz
> >       >     >       > [   16.834553] macb ff0b0000.ethernet control_red:
> Link is Up - 1Gbps/Full - flow control off
> >       >     >       > [   16.860552] macb ff0c0000.ethernet
> control_black: unable to generate target frequency: 125000000 Hz
> >       >     >       > [   16.867052] macb ff0c0000.ethernet
> control_black: Link is Up - 1Gbps/Full - flow control off
> >       >     >       > Starting Failsafe Secure Shell server in port
> 2222: sshd
> >       >     >       > done.
> >       >     >       > Starting rpcbind daemon...done.
> >       >     >       >
> >       >     >       > [   17.093019] rtc-lpc55 rtc_lpc55:
> lpc55_rtc_get_time: bad result: 1
> >       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
> >       >     >       > Starting State Manager Service
> >       >     >       > Start state-manager restarter...
> >       >     >       > (XEN) d0v1 Forwarding AES operation: 3254779951
> >       >     >       > Starting /usr/sbin/xenstored....[   17.265256]
> BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa
> >       devid 1 transid 744
> >       >     >       /dev/dm-0
> >       >     >       > scanned by udevd (385)
> >       >     >       > [   17.349933] BTRFS info (device dm-0): disk
> space caching is enabled
> >       >     >       > [   17.350670] BTRFS info (device dm-0): has
> skinny extents
> >       >     >       > [   17.364384] BTRFS info (device dm-0): enabling
> ssd optimizations
> >       >     >       > [   17.830462] BTRFS: device fsid
> 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
> >       /dev/mapper/client_prov scanned by
> >       >     >       mkfs.btrfs
> >       >     >       > (526)
> >       >     >       > [   17.872699] BTRFS info (device dm-1): using
> free space tree
> >       >     >       > [   17.872771] BTRFS info (device dm-1): has
> skinny extents
> >       >     >       > [   17.878114] BTRFS info (device dm-1): flagging
> fs with big metadata feature
> >       >     >       > [   17.894289] BTRFS info (device dm-1): enabling
> ssd optimizations
> >       >     >       > [   17.895695] BTRFS info (device dm-1): checking
> UUID tree
> >       >     >       >
> >       >     >       > Setting domain 0 name, domid and JSON config...
> >       >     >       > Done setting up Dom0
> >       >     >       > Starting xenconsoled...
> >       >     >       > Starting QEMU as disk backend for dom0
> >       >     >       > Starting domain watchdog daemon: xenwatchdogd
> startup
> >       >     >       >
> >       >     >       > [   18.408647] BTRFS: device fsid
> 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
> >       /dev/mapper/client_config scanned by
> >       >     >       mkfs.btrfs
> >       >     >       > (574)
> >       >     >       > [done]
> >       >     >       > [   18.465552] BTRFS info (device dm-2): using
> free space tree
> >       >     >       > [   18.465629] BTRFS info (device dm-2): has
> skinny extents
> >       >     >       > [   18.471002] BTRFS info (device dm-2): flagging
> fs with big metadata feature
> >       >     >       > Starting crond: [   18.482371] BTRFS info (device
> dm-2): enabling ssd optimizations
> >       >     >       > [   18.486659] BTRFS info (device dm-2): checking
> UUID tree
> >       >     >       > OK
> >       >     >       > starting rsyslogd ... Log partition ready after 0
> poll loops
> >       >     >       > done
> >       >     >       > rsyslogd: cannot connect to 172.18.0.1:514 <
> http://172.18.0.1:514>: Network is unreachable [v8.2208.0 try
> >       https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> ]
> >       >     >       > [   18.670637] BTRFS: device fsid
> 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3
> >       scanned by udevd (518)
> >       >     >       >
> >       >     >       > Please insert USB token and enter your role in
> login prompt.
> >       >     >       >
> >       >     >       > login:
> >       >     >       >
> >       >     >       > Regards,
> >       >     >       > O.
> >       >     >       >
> >       >     >       >
> >       >     >       > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
> >       >     >       >       Hi Oleg,
> >       >     >       >
> >       >     >       >       Here is the issue from your logs:
> >       >     >       >
> >       >     >       >       SError Interrupt on CPU0, code 0xbe000000 --
> SError
> >       >     >       >
> >       >     >       >       SErrors are special signals to notify
> software of serious hardware
> >       >     >       >       errors.  Something is going very wrong.
> Defective hardware is a
> >       >     >       >       possibility.  Another possibility if
> software accessing address ranges
> >       >     >       >       that it is not supposed to, sometimes it
> causes SErrors.
> >       >     >       >
> >       >     >       >       Cheers,
> >       >     >       >
> >       >     >       >       Stefano
> >       >     >       >
> >       >     >       >
> >       >     >       >
> >       >     >       >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
> >       >     >       >
> >       >     >       >       > Hello,
> >       >     >       >       >
> >       >     >       >       > Thanks guys.
> >       >     >       >       > I found out where the problem was.
> >       >     >       >       > Now dom0 booted more. But I have a new one.
> >       >     >       >       > This is a kernel panic during Dom0 loading.
> >       >     >       >       > Maybe someone is able to suggest something
> ?
> >       >     >       >       >
> >       >     >       >       > Regards,
> >       >     >       >       > O.
> >       >     >       >       >
> >       >     >       >       > [    3.771362] sfp_register_bus: upstream
> ops attach
> >       >     >       >       > [    3.776119] sfp_register_bus: Bus
> registered
> >       >     >       >       > [    3.780459] sfp_register_socket:
> register sfp_bus succeeded
> >       >     >       >       > [    3.789399] of_cfs_init
> >       >     >       >       > [    3.789499] of_cfs_init: OK
> >       >     >       >       > [    3.791685] clk: Not disabling unused
> clocks
> >       >     >       >       > [   11.010355] SError Interrupt on CPU0,
> code 0xbe000000 -- SError
> >       >     >       >       > [   11.010380] CPU: 0 PID: 9 Comm:
> kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
> >       >     >       >       > [   11.010393] Workqueue: events_unbound
> async_run_entry_fn
> >       >     >       >       > [   11.010414] pstate: 60000005 (nZCv daif
> -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
> >       >     >       >       > [   11.010422] pc :
> simple_write_end+0xd0/0x130
> >       >     >       >       > [   11.010431] lr :
> generic_perform_write+0x118/0x1e0
> >       >     >       >       > [   11.010438] sp : ffffffc00809b910
> >       >     >       >       > [   11.010441] x29: ffffffc00809b910 x28:
> 0000000000000000 x27: ffffffef69ba88c0
> >       >     >       >       > [   11.010451] x26: 0000000000003eec x25:
> ffffff807515db00 x24: 0000000000000000
> >       >     >       >       > [   11.010459] x23: ffffffc00809ba90 x22:
> 0000000002aac000 x21: ffffff807315a260
> >       >     >       >       > [   11.010472] x20: 0000000000001000 x19:
> fffffffe02000000 x18: 0000000000000000
> >       >     >       >       > [   11.010481] x17: 00000000ffffffff x16:
> 0000000000008000 x15: 0000000000000000
> >       >     >       >       > [   11.010490] x14: 0000000000000000 x13:
> 0000000000000000 x12: 0000000000000000
> >       >     >       >       > [   11.010498] x11: 0000000000000000 x10:
> 0000000000000000 x9 : 0000000000000000
> >       >     >       >       > [   11.010507] x8 : 0000000000000000 x7 :
> ffffffef693ba680 x6 : 000000002d89b700
> >       >     >       >       > [   11.010515] x5 : fffffffe02000000 x4 :
> ffffff807315a3c8 x3 : 0000000000001000
> >       >     >       >       > [   11.010524] x2 : 0000000002aab000 x1 :
> 0000000000000001 x0 : 0000000000000005
> >       >     >       >       > [   11.010534] Kernel panic - not syncing:
> Asynchronous SError Interrupt
> >       >     >       >       > [   11.010539] CPU: 0 PID: 9 Comm:
> kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
> >       >     >       >       > [   11.010545] Hardware name: D14 Viper
> Board - White Unit (DT)
> >       >     >       >       > [   11.010548] Workqueue: events_unbound
> async_run_entry_fn
> >       >     >       >       > [   11.010556] Call trace:
> >       >     >       >       > [   11.010558]  dump_backtrace+0x0/0x1c4
> >       >     >       >       > [   11.010567]  show_stack+0x18/0x2c
> >       >     >       >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
> >       >     >       >       > [   11.010583]  dump_stack+0x18/0x34
> >       >     >       >       > [   11.010588]  panic+0x14c/0x2f8
> >       >     >       >       > [   11.010597]  print_tainted+0x0/0xb0
> >       >     >       >       > [   11.010606]
>  arm64_serror_panic+0x6c/0x7c
> >       >     >       >       > [   11.010614]  do_serror+0x28/0x60
> >       >     >       >       > [   11.010621]
>  el1h_64_error_handler+0x30/0x50
> >       >     >       >       > [   11.010628]  el1h_64_error+0x78/0x7c
> >       >     >       >       > [   11.010633]  simple_write_end+0xd0/0x130
> >       >     >       >       > [   11.010639]
>  generic_perform_write+0x118/0x1e0
> >       >     >       >       > [   11.010644]
>  __generic_file_write_iter+0x138/0x1c4
> >       >     >       >       > [   11.010650]
>  generic_file_write_iter+0x78/0xd0
> >       >     >       >       > [   11.010656]  __kernel_write+0xfc/0x2ac
> >       >     >       >       > [   11.010665]  kernel_write+0x88/0x160
> >       >     >       >       > [   11.010673]  xwrite+0x44/0x94
> >       >     >       >       > [   11.010680]  do_copy+0xa8/0x104
> >       >     >       >       > [   11.010686]  write_buffer+0x38/0x58
> >       >     >       >       > [   11.010692]  flush_buffer+0x4c/0xbc
> >       >     >       >       > [   11.010698]  __gunzip+0x280/0x310
> >       >     >       >       > [   11.010704]  gunzip+0x1c/0x28
> >       >     >       >       > [   11.010709]
>  unpack_to_rootfs+0x170/0x2b0
> >       >     >       >       > [   11.010715]
>  do_populate_rootfs+0x80/0x164
> >       >     >       >       > [   11.010722]
>  async_run_entry_fn+0x48/0x164
> >       >     >       >       > [   11.010728]
>  process_one_work+0x1e4/0x3a0
> >       >     >       >       > [   11.010736]  worker_thread+0x7c/0x4c0
> >       >     >       >       > [   11.010743]  kthread+0x120/0x130
> >       >     >       >       > [   11.010750]  ret_from_fork+0x10/0x20
> >       >     >       >       > [   11.010757] SMP: stopping secondary CPUs
> >       >     >       >       > [   11.010784] Kernel Offset: 0x2f61200000
> from 0xffffffc008000000
> >       >     >       >       > [   11.010788] PHYS_OFFSET: 0x0
> >       >     >       >       > [   11.010790] CPU features:
> 0x00000401,00000842
> >       >     >       >       > [   11.010795] Memory Limit: none
> >       >     >       >       > [   11.277509] ---[ end Kernel panic - not
> syncing: Asynchronous SError Interrupt ]---
> >       >     >       >       >
> >       >     >       >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
> >       >     >       >       >       Hi Oleg,
> >       >     >       >       >
> >       >     >       >       >       On 21/04/2023 14:49, Oleg Nikitenko
> wrote:
> >       >     >       >       >       >
> >       >     >       >       >       >
> >       >     >       >       >       >
> >       >     >       >       >       > Hello Michal,
> >       >     >       >       >       >
> >       >     >       >       >       > I was not able to enable
> earlyprintk in the xen for now.
> >       >     >       >       >       > I decided to choose another way.
> >       >     >       >       >       > This is a xen's command line that
> I found out completely.
> >       >     >       >       >       >
> >       >     >       >       >       > (XEN) $$$$ console=dtuart
> dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
> >       bootscrub=0
> >       >     >       vwfi=native
> >       >     >       >       sched=null
> >       >     >       >       >       timer_slop=0
> >       >     >       >       >       Yes, adding a printk() in Xen was
> also a good idea.
> >       >     >       >       >
> >       >     >       >       >       >
> >       >     >       >       >       > So you are absolutely right about
> a command line.
> >       >     >       >       >       > Now I am going to find out why xen
> did not have the correct parameters from the device
> >       tree.
> >       >     >       >       >       Maybe you will find this document
> helpful:
> >       >     >       >       >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >       <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >
> >       >     >       >       >
> >       >     >       >       >       ~Michal
> >       >     >       >       >
> >       >     >       >       >       >
> >       >     >       >       >       > Regards,
> >       >     >       >       >       > Oleg
> >       >     >       >       >       >
> >       >     >       >       >       > пт, 21 апр. 2023 г. в 11:16,
> Michal Orzel <michal.orzel@amd.com
> >       <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com
> <mailto:michal.orzel@amd.com>>>:
> >       >     >       >       >       >
> >       >     >       >       >       >
> >       >     >       >       >       >     On 21/04/2023 10:04, Oleg
> Nikitenko wrote:
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >
> >       >     >       >       >       >     > Hello Michal,
> >       >     >       >       >       >     >
> >       >     >       >       >       >     > Yes, I use yocto.
> >       >     >       >       >       >     >
> >       >     >       >       >       >     > Yesterday all day long I
> tried to follow your suggestions.
> >       >     >       >       >       >     > I faced a problem.
> >       >     >       >       >       >     > Manually in the xen config
> build file I pasted the strings:
> >       >     >       >       >       >     In the .config file or in some
> Yocto file (listing additional Kconfig options) added
> >       to SRC_URI?
> >       >     >       >       >       >     You shouldn't really modify
> .config file but if you do, you should execute "make
> >       olddefconfig"
> >       >     >       afterwards.
> >       >     >       >       >       >
> >       >     >       >       >       >     >
> >       >     >       >       >       >     > CONFIG_EARLY_PRINTK
> >       >     >       >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
> >       >     >       >       >       >     >
> CONFIG_EARLY_UART_CHOICE_CADENCE
> >       >     >       >       >       >     I hope you added =y to them.
> >       >     >       >       >       >
> >       >     >       >       >       >     Anyway, you have at least the
> following solutions:
> >       >     >       >       >       >     1) Run bitbake xen -c
> menuconfig to properly set early printk
> >       >     >       >       >       >     2) Find out how you enable
> other Kconfig options in your project (e.g.
> >       CONFIG_COLORING=y that is not
> >       >     >       enabled by
> >       >     >       >       default)
> >       >     >       >       >       >     3) Append the following to
> "xen/arch/arm/configs/arm64_defconfig":
> >       >     >       >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
> >       >     >       >       >       >
> >       >     >       >       >       >     ~Michal
> >       >     >       >       >       >
> >       >     >       >       >       >     >
> >       >     >       >       >       >     > Host hangs in build time.
> >       >     >       >       >       >     > Maybe I did not set
> something in the config build file ?
> >       >     >       >       >       >     >
> >       >     >       >       >       >     > Regards,
> >       >     >       >       >       >     > Oleg
> >       >     >       >       >       >     >
> >       >     >       >       >       >     > чт, 20 апр. 2023 г. в 11:57,
> Oleg Nikitenko <oleshiiwood@gmail.com
> >       <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com>>
> >       >     >       >       >       <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
> >       <mailto:oleshiiwood@gmail.com>>>>:
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >     Thanks Michal,
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >     You gave me an idea.
> >       >     >       >       >       >     >     I am going to try it
> today.
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >     Regards,
> >       >     >       >       >       >     >     O.
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >     чт, 20 апр. 2023 г. в
> 11:56, Oleg Nikitenko <oleshiiwood@gmail.com
> >       <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com>>
> >       >     >       >       >       <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
> >       <mailto:oleshiiwood@gmail.com>>>>:
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >         Thanks Stefano.
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >         I am going to do it
> today.
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >         Regards,
> >       >     >       >       >       >     >         O.
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >         ср, 19 апр. 2023 г.
> в 23:05, Stefano Stabellini <sstabellini@kernel.org
> >       <mailto:sstabellini@kernel.org>
> >       >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>
> >       >     >       >       >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>
> >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >             On Wed, 19 Apr
> 2023, Oleg Nikitenko wrote:
> >       >     >       >       >       >     >             > Hi Michal,
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             > I corrected
> xen's command line.
> >       >     >       >       >       >     >             > Now it is
> >       >     >       >       >       >     >             >
> xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M
> >       dom0_max_vcpus=2
> >       >     >       dom0_vcpus_pin
> >       >     >       >       >       bootscrub=0 vwfi=native sched=null
> >       >     >       >       >       >     >             > timer_slop=0
> way_size=65536 xen_colors=0-3 dom0_colors=4-7";
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >             4 colors is way
> too many for xen, just do xen_colors=0-0. There is no
> >       >     >       >       >       >     >             advantage in
> using more than 1 color for Xen.
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >             4 colors is too
> few for dom0, if you are giving 1600M of memory to
> >       Dom0.
> >       >     >       >       >       >     >             Each color is
> 256M. For 1600M you should give at least 7 colors. Try:
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >             xen_colors=0-0
> dom0_colors=1-8
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >
> >       >     >       >       >       >     >             > Unfortunately
> the result was the same.
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             > (XEN)  - Dom0
> mode: Relaxed
> >       >     >       >       >       >     >             > (XEN) P2M:
> 40-bit IPA with 40-bit PA and 8-bit VMID
> >       >     >       >       >       >     >             > (XEN) P2M: 3
> levels with order-1 root, VTCR 0x0000000080023558
> >       >     >       >       >       >     >             > (XEN)
> Scheduling granularity: cpu, 1 CPU per sched-resource
> >       >     >       >       >       >     >             > (XEN) Coloring
> general information
> >       >     >       >       >       >     >             > (XEN) Way
> size: 64kB
> >       >     >       >       >       >     >             > (XEN) Max.
> number of colors available: 16
> >       >     >       >       >       >     >             > (XEN) Xen
> color(s): [ 0 ]
> >       >     >       >       >       >     >             > (XEN)
> alternatives: Patching with alt table 00000000002cc690 ->
> >       00000000002ccc0c
> >       >     >       >       >       >     >             > (XEN) Color
> array allocation failed for dom0
> >       >     >       >       >       >     >             > (XEN)
> >       >     >       >       >       >     >             > (XEN)
> ****************************************
> >       >     >       >       >       >     >             > (XEN) Panic on
> CPU 0:
> >       >     >       >       >       >     >             > (XEN) Error
> creating domain 0
> >       >     >       >       >       >     >             > (XEN)
> ****************************************
> >       >     >       >       >       >     >             > (XEN)
> >       >     >       >       >       >     >             > (XEN) Reboot
> in five seconds...
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             > I am going to
> find out how command line arguments passed and parsed.
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             > Regards,
> >       >     >       >       >       >     >             > Oleg
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             > ср, 19 апр.
> 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com
> >       <mailto:oleshiiwood@gmail.com>
> >       >     >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>
> >       >     >       >       >       <mailto:oleshiiwood@gmail.com
> <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
> >       <mailto:oleshiiwood@gmail.com>>>>:
> >       >     >       >       >       >     >             >       Hi
> Michal,
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             > You put my
> nose into the problem. Thank you.
> >       >     >       >       >       >     >             > I am going to
> use your point.
> >       >     >       >       >       >     >             > Let's see what
> happens.
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             > Regards,
> >       >     >       >       >       >     >             > Oleg
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             > ср, 19 апр.
> 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com
> >       <mailto:michal.orzel@amd.com>
> >       >     >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>
> >       >     >       >       >       <mailto:michal.orzel@amd.com
> <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com
> >       <mailto:michal.orzel@amd.com>>>>:
> >       >     >       >       >       >     >             >       Hi Oleg,
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >       On
> 19/04/2023 09:03, Oleg Nikitenko wrote:
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       > Hello
> Stefano,
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       > Thanks
> for the clarification.
> >       >     >       >       >       >     >             >       > My
> company uses yocto for image generation.
> >       >     >       >       >       >     >             >       > What
> kind of information do you need to consult me in this
> >       case ?
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       > Maybe
> modules sizes/addresses which were mentioned by @Julien
> >       Grall
> >       >     >       >       <mailto:julien@xen.org <mailto:
> julien@xen.org>
> >       >     >       >       >       <mailto:julien@xen.org <mailto:
> julien@xen.org>> <mailto:julien@xen.org
> >       <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>>>> ?
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >       Sorry
> for jumping into discussion, but FWICS the Xen command
> >       line you provided
> >       >     >       seems to be
> >       >     >       >       not the
> >       >     >       >       >       one
> >       >     >       >       >       >     >             >       Xen
> booted with. The error you are observing most likely is due
> >       to dom0 colors
> >       >     >       >       configuration not
> >       >     >       >       >       being
> >       >     >       >       >       >     >             >
>  specified (i.e. lack of dom0_colors=<> parameter). Although in
> >       the command line you
> >       >     >       >       provided, this
> >       >     >       >       >       parameter
> >       >     >       >       >       >     >             >       is set,
> I strongly doubt that this is the actual command line
> >       in use.
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >       You
> wrote:
> >       >     >       >       >       >     >             >
>  xen,xen-bootargs = "console=dtuart dtuart=serial0
> >       dom0_mem=1600M dom0_max_vcpus=2
> >       >     >       >       dom0_vcpus_pin
> >       >     >       >       >       bootscrub=0 vwfi=native
> >       >     >       >       >       >     >             >
>  sched=null timer_slop=0 way_szize=65536 xen_colors=0-3
> >       dom0_colors=4-7";
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >       but:
> >       >     >       >       >       >     >             >       1)
> way_szize has a typo
> >       >     >       >       >       >     >             >       2) you
> specified 4 colors (0-3) for Xen, but the boot log says
> >       that Xen has only
> >       >     >       one:
> >       >     >       >       >       >     >             >       (XEN)
> Xen color(s): [ 0 ]
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >       This
> makes me believe that no colors configuration actually end
> >       up in command line
> >       >     >       that Xen
> >       >     >       >       booted
> >       >     >       >       >       with.
> >       >     >       >       >       >     >             >       Single
> color for Xen is a "default if not specified" and way
> >       size was probably
> >       >     >       calculated
> >       >     >       >       by asking
> >       >     >       >       >       HW.
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >       So I
> would suggest to first cross-check the command line in
> >       use.
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >       ~Michal
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
> Regards,
> >       >     >       >       >       >     >             >       > Oleg
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       > вт, 18
> апр. 2023 г. в 20:44, Stefano Stabellini
> >       <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> >       >     >       >       >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>>
> >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org
> >       <mailto:sstabellini@kernel.org>>>
> >       >     >       >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>
> >       >     >       >       >       <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>>
> >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> <mailto:sstabellini@kernel.org
> >       <mailto:sstabellini@kernel.org>>>>>:
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >     On
> Tue, 18 Apr 2023, Oleg Nikitenko wrote:
> >       >     >       >       >       >     >             >       >     >
> Hi Julien,
> >       >     >       >       >       >     >             >       >     >
> >       >     >       >       >       >     >             >       >     >
> >> This feature has not been merged in Xen upstream yet
> >       >     >       >       >       >     >             >       >     >
> >       >     >       >       >       >     >             >       >     >
> > would assume that upstream + the series on the ML [1]
> >       work
> >       >     >       >       >       >     >             >       >     >
> >       >     >       >       >       >     >             >       >     >
> Please clarify this point.
> >       >     >       >       >       >     >             >       >     >
> Because the two thoughts are controversial.
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >     Hi
> Oleg,
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >     As
> Julien wrote, there is nothing controversial. As you
> >       are aware,
> >       >     >       >       >       >     >             >       >
>  Xilinx maintains a separate Xen tree specific for Xilinx
> >       here:
> >       >     >       >       >       >     >             >       >
> https://github.com/xilinx/xen
> >       <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>
> >       >     >       >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>
> >       >     >       >       >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>
> >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen
> >       <https://github.com/xilinx/xen>>
> >       >     >       >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>
> >       >     >       >       >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
>  and the branch you are using (xlnx_rebase_4.16) comes
> >       from there.
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
>  Instead, the upstream Xen tree lives here:
> >       >     >       >       >       >     >             >       >
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >       >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
>  The Cache Coloring feature that you are trying to
> >       configure is present
> >       >     >       >       >       >     >             >       >     in
> xlnx_rebase_4.16, but not yet present upstream (there
> >       is an
> >       >     >       >       >       >     >             >       >
>  outstanding patch series to add cache coloring to Xen
> >       upstream but it
> >       >     >       >       >       >     >             >       >
>  hasn't been merged yet.)
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
>  Anyway, if you are using xlnx_rebase_4.16 it doesn't
> >       matter too much for
> >       >     >       >       >       >     >             >       >
>  you as you already have Cache Coloring as a feature
> >       there.
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >     I
> take you are using ImageBuilder to generate the boot
> >       configuration? If
> >       >     >       >       >       >     >             >       >
>  so, please post the ImageBuilder config file that you are
> >       using.
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >       >
>  But from the boot message, it looks like the colors
> >       configuration for
> >       >     >       >       >       >     >             >       >
>  Dom0 is incorrect.
> >       >     >       >       >       >     >             >       >
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >             >
> >       >     >       >       >       >     >
> >       >     >       >       >       >
> >       >     >       >       >
> >       >     >       >       >
> >       >     >       >       >
> >       >     >       >
> >       >     >       >
> >       >     >       >
> >       >     >
> >       >     >
> >       >     >
> >       >
> >
> >
> >

[-- Attachment #1.2: Type: text/html, Size: 127321 bytes --]

[-- Attachment #2: build.log --]
[-- Type: text/x-log, Size: 112427 bytes --]

DEBUG: Executing python function autotools_aclocals
DEBUG: SITE files ['endian-little', 'bit-64', 'arm-common', 'arm-64', 'common-linux', 'common-glibc', 'aarch64-linux', 'common']
DEBUG: Python function autotools_aclocals finished
DEBUG: Executing shell function do_compile
NOTE: make -j 8 STDVGA_ROM=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot/usr/share/firmware/vgabios-0.8a.bin CIRRUSVGA_ROM=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot/usr/share/firmware/vgabios-0.8a.cirrus.bin SEABIOS_ROM=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot/usr/share/firmware/bios.bin ETHERBOOT_ROMS=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot/usr/share/firmware/rtl8139.rom WGET=/bin/false GIT=/bin/false XEN_BUILD_DATE=2023-05-11 XEN_BUILD_TIME=09:16:26 XEN_CONFIG_EXPERT=y debug=n tools PYTHON=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native/usr/bin/python3-native/python3 EXTRA_CFLAGS_XEN_TOOLS= -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native= 
make -C tools/include install
make[1]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include'
make -C xen-foreign
make[2]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign'
mkdir -p xen/libelf
mkdir -p xen-xsm/flask
ln -sf /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/COPYING xen
cd /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/xsm/flask/ && \
	/bin/sh policy/mkflask.sh /home/nole2390/irene/build/white-eirene-evt0/tmp/hosttools/awk /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-xsm/flask policy/initial_sids
ln -sf /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/arch-arm.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/arch-x86_32.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/arch-x86_64.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/argo.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/callback.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/device_tree_defs.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/dom0_ops.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/domctl.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/elfnote.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/errno.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/event_channel.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/features.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/grant_table.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/kexec.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/memory.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/nmi.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/physdev.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/platform.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/pmu.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/sched.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/sysctl.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/tmem.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/trace.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/vcpu.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/version.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/vm_event.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/xencomm.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/xen-compat.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/xen.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/xenoprof.h xen
ln -sf /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/arch-x86 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/arch-arm /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/hvm /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/io /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/public/xsm xen
ln -sf ../xen-sys/Linux xen/sys
ln -sf /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/xen/libelf.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/xen/elfstructs.h xen/libelf/
ln -s ../xen-foreign xen/foreign
touch xen-xsm/.dir
ln -sf /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../xen/include/acpi acpi
touch xen/.dir
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native/usr/bin/python3-native/python3 mkheader.py arm32 arm32.h.tmp /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign/../../../xen/include/public/arch-arm.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign/../../../xen/include/public/xen.h
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native/usr/bin/python3-native/python3 mkheader.py arm64 arm64.h.tmp /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign/../../../xen/include/public/arch-arm.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign/../../../xen/include/public/xen.h
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native/usr/bin/python3-native/python3 mkheader.py x86_32 x86_32.h.tmp /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign/../../../xen/include/public/arch-x86/xen-x86_32.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign/../../../xen/include/public/arch-x86/xen.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign/../../../xen/include/public/xen.h
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native/usr/bin/python3-native/python3 mkheader.py x86_64 x86_64.h.tmp /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign/../../../xen/include/public/arch-x86/xen-x86_64.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign/../../../xen/include/public/arch-x86/xen.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign/../../../xen/include/public/xen.h
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native/usr/bin/python3-native/python3 mkchecker.py checker.c arm32 arm64 x86_32 x86_64
#Avoid mixing an alignment directive with a uint64_t cast or sizeof expression
sed 's/(__align8__ \(uint64_t\))/(\1)/g' < x86_32.h.tmp > x86_32.h.tmp2
rm x86_32.h.tmp
if ! cmp -s x86_32.h.tmp2 x86_32.h; then mv -f x86_32.h.tmp2 x86_32.h; else rm -f x86_32.h.tmp2; fi
#Avoid mixing an alignment directive with a uint64_t cast or sizeof expression
sed 's/(__align8__ \(uint64_t\))/(\1)/g' < arm32.h.tmp > arm32.h.tmp2
rm arm32.h.tmp
if ! cmp -s arm32.h.tmp2 arm32.h; then mv -f arm32.h.tmp2 arm32.h; else rm -f arm32.h.tmp2; fi
#Avoid mixing an alignment directive with a uint64_t cast or sizeof expression
sed 's/(__align8__ \(uint64_t\))/(\1)/g' < arm64.h.tmp > arm64.h.tmp2
rm arm64.h.tmp
if ! cmp -s arm64.h.tmp2 arm64.h; then mv -f arm64.h.tmp2 arm64.h; else rm -f arm64.h.tmp2; fi
#Avoid mixing an alignment directive with a uint64_t cast or sizeof expression
sed 's/(__align8__ \(uint64_t\))/(\1)/g' < x86_64.h.tmp > x86_64.h.tmp2
rm x86_64.h.tmp
if ! cmp -s x86_64.h.tmp2 x86_64.h; then mv -f x86_64.h.tmp2 x86_64.h; else rm -f x86_64.h.tmp2; fi
gcc  -Wall -Werror -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -Wdeclaration-after-statement -D__XEN_TOOLS__ -o checker checker.c
./checker > tmp.size
diff -u reference.size tmp.size
rm tmp.size
make[2]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/xen-foreign'
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/arch-x86
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/arch-x86/hvm
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/arch-arm
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/arch-arm/hvm
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/foreign
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/hvm
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/io
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/sys
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/xsm
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -m0644 -p xen/COPYING /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -m0644 -p xen/*.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -m0644 -p xen/arch-x86/*.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/arch-x86
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -m0644 -p xen/arch-x86/hvm/*.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/arch-x86/hvm
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -m0644 -p xen/arch-arm/hvm/*.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/arch-arm/hvm
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -m0644 -p xen/foreign/*.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/foreign
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -m0644 -p xen/hvm/*.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/hvm
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -m0644 -p xen/io/*.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/io
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -m0644 -p xen/sys/*.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/sys
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include/../../tools/cross-install -m0644 -p xen/xsm/*.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include/xen/xsm
make[1]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/include'
make -C tools install
make[1]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools'
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/../tools/cross-install -d -m0755 -p -m 700 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/var/lib/xen/dump
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/var/log/xen
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/var/run/xen
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/var/lib/xen
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/var/run/xenstored
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/pkgconfig
make subdirs-install
make[2]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools'
make[3]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools'
make -C libs install
make[4]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make[5]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make -C toolcore install
make[6]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore'
make libs
make[7]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore'
/home/nole2390/irene/build/white-eirene-evt0/tmp/hosttools/perl /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore/../../../tools/include/xen-external/bsd-sys-queue-h-seddery /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore/../../../tools/include/xen-external/bsd-sys-queue.h --prefix=xentoolcore >include/_xentoolcore_list.h.new
mkdir -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/pkg-config
if ! cmp -s include/_xentoolcore_list.h.new include/_xentoolcore_list.h; then mv -f include/_xentoolcore_list.h.new include/_xentoolcore_list.h; else rm -f include/_xentoolcore_list.h.new; fi
for i in include/xentoolcore.h include/xentoolcore_internal.h include/_xentoolcore_list.h; do \
    aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot  -x c -ansi -Wall -Werror -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore/../../../tools/include \
          -S -o /dev/null $i || exit 1; \
    echo $i; \
done >headers.chk.new
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .handlereg.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore/../../../tools/include   -c -o handlereg.o handlereg.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .handlereg.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore/../../../tools/include   -fPIC -c -o handlereg.opic handlereg.c 
mv headers.chk.new headers.chk
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot                                 -pthread -Wl,-soname -Wl,libxentoolcore.so.1 -shared -Wl,--version-script=libxentoolcore.map -o libxentoolcore.so.1.0 handlereg.opic  
aarch64-portable-linux-ar rc libxentoolcore.a handlereg.o
ln -sf libxentoolcore.so.1.0 libxentoolcore.so.1
ln -sf libxentoolcore.so.1 libxentoolcore.so
make[7]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore'
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore/../../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore/../../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore/../../../tools/cross-install -m0755 -p libxentoolcore.so.1.0 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore/../../../tools/cross-install -m0644 -p libxentoolcore.a /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
ln -sf libxentoolcore.so.1.0 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/libxentoolcore.so.1
ln -sf libxentoolcore.so.1 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/libxentoolcore.so
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore/../../../tools/cross-install -m0644 -p include/xentoolcore.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore/../../../tools/cross-install -m0644 -p xentoolcore.pc /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/pkgconfig
make[6]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toolcore'
make[5]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make[5]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make -C toollog install
make[6]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog'
make libs
make[7]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog'
for i in include/xentoollog.h; do \
    aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot  -x c -ansi -Wall -Werror -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog/../../../tools/include \
          -S -o /dev/null $i || exit 1; \
    echo $i; \
done >headers.chk.new
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .xtl_core.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog/../../../tools/include   -c -o xtl_core.o xtl_core.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .xtl_logger_stdio.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog/../../../tools/include   -c -o xtl_logger_stdio.o xtl_logger_stdio.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .xtl_core.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog/../../../tools/include   -fPIC -c -o xtl_core.opic xtl_core.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .xtl_logger_stdio.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog/../../../tools/include   -fPIC -c -o xtl_logger_stdio.opic xtl_logger_stdio.c 
mkdir -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/pkg-config
mv headers.chk.new headers.chk
aarch64-portable-linux-ar rc libxentoollog.a xtl_core.o xtl_logger_stdio.o
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot                                 -pthread -Wl,-soname -Wl,libxentoollog.so.1 -shared -Wl,--version-script=libxentoollog.map -o libxentoollog.so.1.0 xtl_core.opic xtl_logger_stdio.opic  
ln -sf libxentoollog.so.1.0 libxentoollog.so.1
ln -sf libxentoollog.so.1 libxentoollog.so
make[7]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog'
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog/../../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog/../../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog/../../../tools/cross-install -m0755 -p libxentoollog.so.1.0 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog/../../../tools/cross-install -m0644 -p libxentoollog.a /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
ln -sf libxentoollog.so.1.0 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/libxentoollog.so.1
ln -sf libxentoollog.so.1 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/libxentoollog.so
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog/../../../tools/cross-install -m0644 -p include/xentoollog.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog/../../../tools/cross-install -m0644 -p xentoollog.pc /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/pkgconfig
make[6]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/toollog'
make[5]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make[5]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make -C evtchn install
make[6]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn'
make libs
make[7]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn'
for i in include/xenevtchn.h; do \
    aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot  -x c -ansi -Wall -Werror -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include \
          -S -o /dev/null $i || exit 1; \
    echo $i; \
done >headers.chk.new
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .core.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -c -o core.o core.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .linux.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -c -o linux.o linux.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .core.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -fPIC -c -o core.opic core.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .linux.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/include  -fPIC -c -o linux.opic linux.c 
mkdir -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/pkg-config
mv headers.chk.new headers.chk
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot                                 -pthread -Wl,-soname -Wl,libxenevtchn.so.1 -shared -Wl,--version-script=libxenevtchn.map -o libxenevtchn.so.1.1 core.opic linux.opic   /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/libs/toollog/libxentoollog.so   /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/libs/toolcore/libxentoolcore.so 
aarch64-portable-linux-ar rc libxenevtchn.a core.o linux.o
ln -sf libxenevtchn.so.1.1 libxenevtchn.so.1
ln -sf libxenevtchn.so.1 libxenevtchn.so
make[7]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn'
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/cross-install -m0755 -p libxenevtchn.so.1.1 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/cross-install -m0644 -p libxenevtchn.a /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
ln -sf libxenevtchn.so.1.1 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/libxenevtchn.so.1
ln -sf libxenevtchn.so.1 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/libxenevtchn.so
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/cross-install -m0644 -p include/xenevtchn.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn/../../../tools/cross-install -m0644 -p xenevtchn.pc /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/pkgconfig
make[6]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/evtchn'
make[5]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make[5]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make -C gnttab install
make[6]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab'
make libs
make[7]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab'
for i in include/xengnttab.h; do \
    aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot  -x c -ansi -Wall -Werror -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include \
          -S -o /dev/null $i || exit 1; \
    echo $i; \
done >headers.chk.new
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .gnttab_core.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -c -o gnttab_core.o gnttab_core.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .gntshr_core.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -c -o gntshr_core.o gntshr_core.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .linux.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -c -o linux.o linux.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .gnttab_core.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -fPIC -c -o gnttab_core.opic gnttab_core.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .gntshr_core.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -fPIC -c -o gntshr_core.opic gntshr_core.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .linux.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/include  -fPIC -c -o linux.opic linux.c 
mkdir -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/pkg-config
mv headers.chk.new headers.chk
aarch64-portable-linux-ar rc libxengnttab.a gnttab_core.o gntshr_core.o linux.o
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot                                 -pthread -Wl,-soname -Wl,libxengnttab.so.1 -shared -Wl,--version-script=libxengnttab.map -o libxengnttab.so.1.2 gnttab_core.opic gntshr_core.opic linux.opic   /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toollog/libxentoollog.so   /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/libs/toolcore/libxentoolcore.so 
ln -sf libxengnttab.so.1.2 libxengnttab.so.1
ln -sf libxengnttab.so.1 libxengnttab.so
make[7]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab'
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/cross-install -m0755 -p libxengnttab.so.1.2 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/cross-install -m0644 -p libxengnttab.a /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
ln -sf libxengnttab.so.1.2 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/libxengnttab.so.1
ln -sf libxengnttab.so.1 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/libxengnttab.so
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/cross-install -m0644 -p include/xengnttab.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab/../../../tools/cross-install -m0644 -p xengnttab.pc /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/pkgconfig
make[6]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/gnttab'
make[5]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make[5]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make -C call install
make[6]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call'
make libs
make[7]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call'
for i in include/xencall.h; do \
    aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot  -x c -ansi -Wall -Werror -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include \
          -S -o /dev/null $i || exit 1; \
    echo $i; \
done >headers.chk.new
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .core.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -c -o core.o core.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .buffer.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -c -o buffer.o buffer.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .linux.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -c -o linux.o linux.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .core.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -fPIC -c -o core.opic core.c 
mv headers.chk.new headers.chk
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .buffer.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -fPIC -c -o buffer.opic buffer.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .linux.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/include  -fPIC -c -o linux.opic linux.c 
mkdir -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/pkg-config
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot                                 -pthread -Wl,-soname -Wl,libxencall.so.1 -shared -Wl,--version-script=libxencall.map -o libxencall.so.1.2 core.opic buffer.opic linux.opic   /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toollog/libxentoollog.so   /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/libs/toolcore/libxentoolcore.so 
aarch64-portable-linux-ar rc libxencall.a core.o buffer.o linux.o
ln -sf libxencall.so.1.2 libxencall.so.1
ln -sf libxencall.so.1 libxencall.so
make[7]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call'
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/cross-install -d -m0755 -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/cross-install -m0755 -p libxencall.so.1.2 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/cross-install -m0644 -p libxencall.a /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib
ln -sf libxencall.so.1.2 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/libxencall.so.1
ln -sf libxencall.so.1 /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/libxencall.so
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/cross-install -m0644 -p include/xencall.h /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/include
/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call/../../../tools/cross-install -m0644 -p xencall.pc /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/dist/install/usr/lib/pkgconfig
make[6]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/call'
make[5]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make[5]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make -C foreignmemory install
make[6]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory'
make libs
make[7]: Entering directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory'
for i in include/xenforeignmemory.h; do \
    aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot  -x c -ansi -Wall -Werror -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include \
          -S -o /dev/null $i || exit 1; \
    echo $i; \
done >headers.chk.new
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .core.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -c -o core.o core.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .linux.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -c -o linux.o linux.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .core.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -fPIC -c -o core.opic core.c 
aarch64-portable-linux-gcc  --sysroot=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot   -DPIC -DBUILD_ID -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wdeclaration-after-statement -Wno-unused-but-set-variable -Wno-unused-local-typedefs   -O2 -fomit-frame-pointer -D__XEN_INTERFACE_VERSION__=__XEN_LATEST_INTERFACE_VERSION__ -MMD -MF .linux.opic.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE  -march=armv8-a犷㹲벩 -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0=/usr/src/debug/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot=                      -fdebug-prefix-map=/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/recipe-sysroot-native=  -Werror -Wmissing-prototypes -I./include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/libs/toollog/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/libs/toolcore/include -I/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/include  -fPIC -c -o linux.opic linux.c 
mv headers.chk.new headers.chk
mkdir -p /home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/pkg-config
linux.c:165:50: error: argument 7 of type 'const xen_pfn_t[]' {aka 'const long unsigned int[]'} declared as an ordinary array [-Werror=vla-parameter]
  165 |                                  const xen_pfn_t arr[/*num*/], int err[/*num*/])
      |                                  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~
In file included from linux.c:29:
private.h:35:50: note: previously declared as a variable length array 'const xen_pfn_t[num]' {aka 'const long unsigned int[num]'}
   35 |                                  const xen_pfn_t arr[num], int err[num]);
      |                                  ~~~~~~~~~~~~~~~~^~~~~~~~
linux.c:165:68: error: argument 8 of type 'int[]' declared as an ordinary array [-Werror=vla-parameter]
  165 |                                  const xen_pfn_t arr[/*num*/], int err[/*num*/])
      |                                                                ~~~~^~~~~~~~~~~~
In file included from linux.c:29:
private.h:35:64: note: previously declared as a variable length array 'int[num]'
   35 |                                  const xen_pfn_t arr[num], int err[num]);
      |                                                            ~~~~^~~~~~~~
linux.c:165:50: error: argument 7 of type 'const xen_pfn_t[]' {aka 'const long unsigned int[]'} declared as an ordinary array [-Werror=vla-parameter]
  165 |                                  const xen_pfn_t arr[/*num*/], int err[/*num*/])
      |                                  ~~~~~~~~~~~~~~~~^~~~~~~~~~~~
In file included from linux.c:29:
private.h:35:50: note: previously declared as a variable length array 'const xen_pfn_t[num]' {aka 'const long unsigned int[num]'}
   35 |                                  const xen_pfn_t arr[num], int err[num]);
      |                                  ~~~~~~~~~~~~~~~~^~~~~~~~
linux.c:165:68: error: argument 8 of type 'int[]' declared as an ordinary array [-Werror=vla-parameter]
  165 |                                  const xen_pfn_t arr[/*num*/], int err[/*num*/])
      |                                                                ~~~~^~~~~~~~~~~~
In file included from linux.c:29:
private.h:35:64: note: previously declared as a variable length array 'int[num]'
   35 |                                  const xen_pfn_t arr[num], int err[num]);
      |                                                            ~~~~^~~~~~~~
cc1: all warnings being treated as errors
make[7]: *** [/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/Rules.mk:213: linux.o] Error 1
make[7]: *** Waiting for unfinished jobs....
cc1: all warnings being treated as errors
make[7]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory'
make[6]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory'
make[5]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make[4]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs'
make[7]: *** [/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/Rules.mk:210: linux.opic] Error 1
make[6]: *** [/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/foreignmemory/../../../tools/libs/libs.mk:45: build] Error 2
make[5]: *** [/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/../../tools/Rules.mk:237: subdir-install-foreignmemory] Error 2
make[4]: *** [/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/libs/../../tools/Rules.mk:232: subdirs-install] Error 2
ERROR: oe_runmake failed
make[3]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools'
make[2]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools'
make[1]: Leaving directory '/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools'
WARNING: exit code 1 from a shell command.
make[3]: *** [/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/../tools/Rules.mk:237: subdir-install-libs] Error 2
make[2]: *** [/home/nole2390/irene/build/white-eirene-evt0/tmp/work/armv8a-portable-linux/xen-tools/4.17닖鮕䳢ഋ�﯑ﺝr0/git/tools/../tools/Rules.mk:232: subdirs-install] Error 2
make[1]: *** [Makefile:73: install] Error 2
make: *** [Makefile:134: install-tools] Error 2

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-09  6:58  0%                                             ` Oleg Nikitenko
@ 2023-05-09 19:49  0%                                               ` Stefano Stabellini
  2023-05-11 10:02  0%                                                 ` Oleg Nikitenko
  0 siblings, 1 reply; 200+ results
From: Stefano Stabellini @ 2023-05-09 19:49 UTC (permalink / raw)
  To: Oleg Nikitenko
  Cc: Michal Orzel, Stefano Stabellini, Julien Grall, xen-devel,
	Bertrand Marquis, Carlo Nonato, Stewart.Hildebrand

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

We test Xen Cache Coloring regularly on zcu102. Every Petalinux release
(twice a year) is tested with cache coloring enabled. The last Petalinux
release is 2023.1 and the kernel used is this:
https://github.com/Xilinx/linux-xlnx/tree/xlnx_rebase_v6.1_LTS


On Tue, 9 May 2023, Oleg Nikitenko wrote:
> Hello guys,
> 
> I have a couple of more questions.
> Have you ever run xen with the cache coloring at Zynq UltraScale+ MPSoC zcu102 xczu15eg ?
> When did you run xen with the cache coloring last time ?
> What kernel version did you use for Dom0 when you ran xen with the cache coloring last time ?
> 
> Regards,
> Oleg
> 
> пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <oleshiiwood@gmail.com>:
>       Hi Michal,
> 
> Thanks.
> 
> Regards,
> Oleg
> 
> пт, 5 мая 2023 г. в 11:34, Michal Orzel <michal.orzel@amd.com>:
>       Hi Oleg,
> 
>       Replying, so that you do not need to wait for Stefano.
> 
>       On 05/05/2023 10:28, Oleg Nikitenko wrote:
>       >       
>       >
>       >
>       > Hello Stefano,
>       >
>       > I would like to try a xen cache color property from this repo  https://xenbits.xen.org/git-http/xen.git
>       <https://xenbits.xen.org/git-http/xen.git>
>       > Could you tell whot branch I should use ?
>       Cache coloring feature is not part of the upstream tree and it is still under review.
>       You can only find it integrated in the Xilinx Xen tree.
> 
>       ~Michal
> 
>       >
>       > Regards,
>       > Oleg
>       >
>       > пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
>       >
>       >     I am familiar with the zcu102 but I don't know how you could possibly
>       >     generate a SError.
>       >
>       >     I suggest to try to use ImageBuilder [1] to generate the boot
>       >     configuration as a test because that is known to work well for zcu102.
>       >
>       >     [1] https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>
>       >
>       >
>       >     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
>       >     > Hello Stefano,
>       >     >
>       >     > Thanks for clarification.
>       >     > We nighter use ImageBuilder nor uboot boot script.
>       >     > A model is zcu102 compatible.
>       >     >
>       >     > Regards,
>       >     > O.
>       >     >
>       >     > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
>       >     >       This is interesting. Are you using Xilinx hardware by any chance? If so,
>       >     >       which board?
>       >     >
>       >     >       Are you using ImageBuilder to generate your boot.scr boot script? If so,
>       >     >       could you please post your ImageBuilder config file? If not, can you
>       >     >       post the source of your uboot boot script?
>       >     >
>       >     >       SErrors are supposed to be related to a hardware failure of some kind.
>       >     >       You are not supposed to be able to trigger an SError easily by
>       >     >       "mistake". I have not seen SErrors due to wrong cache coloring
>       >     >       configurations on any Xilinx board before.
>       >     >
>       >     >       The differences between Xen with and without cache coloring from a
>       >     >       hardware perspective are:
>       >     >
>       >     >       - With cache coloring, the SMMU is enabled and does address translations
>       >     >         even for dom0. Without cache coloring the SMMU could be disabled, and
>       >     >         if enabled, the SMMU doesn't do any address translations for Dom0. If
>       >     >         there is a hardware failure related to SMMU address translation it
>       >     >         could only trigger with cache coloring. This would be my normal
>       >     >         suggestion for you to explore, but the failure happens too early
>       >     >         before any DMA-capable device is programmed. So I don't think this can
>       >     >         be the issue.
>       >     >
>       >     >       - With cache coloring, the memory allocation is very different so you'll
>       >     >         end up using different DDR regions for Dom0. So if your DDR is
>       >     >         defective, you might only see a failure with cache coloring enabled
>       >     >         because you end up using different regions.
>       >     >
>       >     >
>       >     >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
>       >     >       > Hi Stefano,
>       >     >       >
>       >     >       > Thank you.
>       >     >       > If I build xen without colors support there is not this error.
>       >     >       > All the domains are booted well.
>       >     >       > Hense it can not be a hardware issue.
>       >     >       > This panic arrived during unpacking the rootfs.
>       >     >       > Here I attached the boot log xen/Dom0 without color.
>       >     >       > A highlighted strings printed exactly after the place where 1-st time panic arrived.
>       >     >       >
>       >     >       >  Xen 4.16.1-pre
>       >     >       > (XEN) Xen version 4.16.1-pre (nole2390@(none)) (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y
>       2023-04-21
>       >     >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300 git:321687b231-dirty
>       >     >       > (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
>       >     >       > (XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0, part 0xd03,rev 0x4
>       >     >       > (XEN) 64-bit Execution:
>       >     >       > (XEN)   Processor Features: 0000000000002222 0000000000000000
>       >     >       > (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
>       >     >       > (XEN)     Extensions: FloatingPoint AdvancedSIMD
>       >     >       > (XEN)   Debug Features: 0000000010305106 0000000000000000
>       >     >       > (XEN)   Auxiliary Features: 0000000000000000 0000000000000000
>       >     >       > (XEN)   Memory Model Features: 0000000000001122 0000000000000000
>       >     >       > (XEN)   ISA Features:  0000000000011120 0000000000000000
>       >     >       > (XEN) 32-bit Execution:
>       >     >       > (XEN)   Processor Features: 0000000000000131:0000000000011011
>       >     >       > (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
>       >     >       > (XEN)     Extensions: GenericTimer Security
>       >     >       > (XEN)   Debug Features: 0000000003010066
>       >     >       > (XEN)   Auxiliary Features: 0000000000000000
>       >     >       > (XEN)   Memory Model Features: 0000000010201105 0000000040000000
>       >     >       > (XEN)                          0000000001260000 0000000002102211
>       >     >       > (XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
>       >     >       > (XEN)                 0000000001112131 0000000000011142 0000000000011121
>       >     >       > (XEN) Using SMC Calling Convention v1.2
>       >     >       > (XEN) Using PSCI v1.1
>       >     >       > (XEN) SMP: Allowing 4 CPUs
>       >     >       > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
>       >     >       > (XEN) GICv2 initialization:
>       >     >       > (XEN)         gic_dist_addr=00000000f9010000
>       >     >       > (XEN)         gic_cpu_addr=00000000f9020000
>       >     >       > (XEN)         gic_hyp_addr=00000000f9040000
>       >     >       > (XEN)         gic_vcpu_addr=00000000f9060000
>       >     >       > (XEN)         gic_maintenance_irq=25
>       >     >       > (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
>       >     >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
>       >     >       > (XEN) Using scheduler: null Scheduler (null)
>       >     >       > (XEN) Initializing null scheduler
>       >     >       > (XEN) WARNING: This is experimental software in development.
>       >     >       > (XEN) Use at your own risk.
>       >     >       > (XEN) Allocated console ring of 32 KiB.
>       >     >       > (XEN) CPU0: Guest atomics will try 12 times before pausing the domain
>       >     >       > (XEN) Bringing up CPU1
>       >     >       > (XEN) CPU1: Guest atomics will try 13 times before pausing the domain
>       >     >       > (XEN) CPU 1 booted.
>       >     >       > (XEN) Bringing up CPU2
>       >     >       > (XEN) CPU2: Guest atomics will try 13 times before pausing the domain
>       >     >       > (XEN) CPU 2 booted.
>       >     >       > (XEN) Bringing up CPU3
>       >     >       > (XEN) CPU3: Guest atomics will try 13 times before pausing the domain
>       >     >       > (XEN) Brought up 4 CPUs
>       >     >       > (XEN) CPU 3 booted.
>       >     >       > (XEN) smmu: /axi/smmu@fd800000: probing hardware configuration...
>       >     >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
>       >     >       > (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
>       >     >       > (XEN) smmu: /axi/smmu@fd800000: stream matching with 48 register groups, mask 0x7fff<2>smmu:
>       /axi/smmu@fd800000: 16 context
>       >     >       banks (0
>       >     >       > stage-2 only)
>       >     >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
>       >     >       > (XEN) smmu: /axi/smmu@fd800000: registered 29 master devices
>       >     >       > (XEN) I/O virtualisation enabled
>       >     >       > (XEN)  - Dom0 mode: Relaxed
>       >     >       > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>       >     >       > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>       >     >       > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>       >     >       > (XEN) alternatives: Patching with alt table 00000000002cc5c8 -> 00000000002ccb2c
>       >     >       > (XEN) *** LOADING DOMAIN 0 ***
>       >     >       > (XEN) Loading d0 kernel from boot module @ 0000000001000000
>       >     >       > (XEN) Loading ramdisk from boot module @ 0000000002000000
>       >     >       > (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
>       >     >       > (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
>       >     >       > (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
>       >     >       > (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
>       >     >       > (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
>       >     >       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
>       >     >       > (XEN) Allocating PPI 16 for event channel interrupt
>       >     >       > (XEN) Extended region 0: 0x81200000->0xa0000000
>       >     >       > (XEN) Extended region 1: 0xb1200000->0xc0000000
>       >     >       > (XEN) Extended region 2: 0xc8000000->0xe0000000
>       >     >       > (XEN) Extended region 3: 0xf0000000->0xf9000000
>       >     >       > (XEN) Extended region 4: 0x100000000->0x600000000
>       >     >       > (XEN) Extended region 5: 0x880000000->0x8000000000
>       >     >       > (XEN) Extended region 6: 0x8001000000->0x10000000000
>       >     >       > (XEN) Loading zImage from 0000000001000000 to 0000000010000000-0000000010e41008
>       >     >       > (XEN) Loading d0 initrd from 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
>       >     >       > (XEN) Loading d0 DTB to 0x0000000013400000-0x000000001340cbdc
>       >     >       > (XEN) Initial low memory virq threshold set at 0x4000 pages.
>       >     >       > (XEN) Std. Loglevel: All
>       >     >       > (XEN) Guest Loglevel: All
>       >     >       > (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
>       >     >       > (XEN) null.c:353: 0 <-- d0v0
>       >     >       > (XEN) Freed 356kB init memory.
>       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
>       >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
>       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
>       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
>       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
>       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
>       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
>       >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>       >     >       > [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
>       >     >       > [    0.000000] Linux version 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC)
>       11.3.0, GNU ld (GNU
>       >     >       Binutils)
>       >     >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
>       >     >       > [    0.000000] Machine model: D14 Viper Board - White Unit
>       >     >       > [    0.000000] Xen 4.16 support found
>       >     >       > [    0.000000] Zone ranges:
>       >     >       > [    0.000000]   DMA      [mem 0x0000000010000000-0x000000007fffffff]
>       >     >       > [    0.000000]   DMA32    empty
>       >     >       > [    0.000000]   Normal   empty
>       >     >       > [    0.000000] Movable zone start for each node
>       >     >       > [    0.000000] Early memory node ranges
>       >     >       > [    0.000000]   node   0: [mem 0x0000000010000000-0x000000001fffffff]
>       >     >       > [    0.000000]   node   0: [mem 0x0000000022000000-0x0000000022147fff]
>       >     >       > [    0.000000]   node   0: [mem 0x0000000022200000-0x0000000022347fff]
>       >     >       > [    0.000000]   node   0: [mem 0x0000000024000000-0x0000000027ffffff]
>       >     >       > [    0.000000]   node   0: [mem 0x0000000030000000-0x000000007fffffff]
>       >     >       > [    0.000000] Initmem setup node 0 [mem 0x0000000010000000-0x000000007fffffff]
>       >     >       > [    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
>       >     >       > [    0.000000] On node 0, zone DMA: 184 pages in unavailable ranges
>       >     >       > [    0.000000] On node 0, zone DMA: 7352 pages in unavailable ranges
>       >     >       > [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
>       >     >       > [    0.000000] psci: probing for conduit method from DT.
>       >     >       > [    0.000000] psci: PSCIv1.1 detected in firmware.
>       >     >       > [    0.000000] psci: Using standard PSCI v0.2 function IDs
>       >     >       > [    0.000000] psci: Trusted OS migration not required
>       >     >       > [    0.000000] psci: SMC Calling Convention v1.1
>       >     >       > [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0 d32744 u65536
>       >     >       > [    0.000000] Detected VIPT I-cache on CPU0
>       >     >       > [    0.000000] CPU features: kernel page table isolation forced ON by KASLR
>       >     >       > [    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
>       >     >       > [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 403845
>       >     >       > [    0.000000] Kernel command line: console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused fips=1
>       root=/dev/ram0
>       >     >       maxcpus=2
>       >     >       > [    0.000000] Unknown kernel command line parameters "earlyprintk=xen fips=1", will be passed to user
>       space.
>       >     >       > [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>       >     >       > [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>       >     >       > [    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:on
>       >     >       > [    0.000000] mem auto-init: clearing system memory may take some time...
>       >     >       > [    0.000000] Memory: 1121936K/1641024K available (9728K kernel code, 836K rwdata, 2396K rodata, 1536K
>       init, 262K bss,
>       >     >       256944K reserved,
>       >     >       > 262144K cma-reserved)
>       >     >       > [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
>       >     >       > [    0.000000] rcu: Hierarchical RCU implementation.
>       >     >       > [    0.000000] rcu: RCU event tracing is enabled.
>       >     >       > [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
>       >     >       > [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>       >     >       > [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
>       >     >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
>       >     >       > [    0.000000] Root IRQ handler: gic_handle_irq
>       >     >       > [    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (virt).
>       >     >       > [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0,
>       max_idle_ns: 440795205315 ns
>       >     >       > [    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
>       >     >       > [    0.000258] Console: colour dummy device 80x25
>       >     >       > [    0.310231] printk: console [hvc0] enabled
>       >     >       > [    0.314403] Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS
>       (lpj=400000)
>       >     >       > [    0.324851] pid_max: default: 32768 minimum: 301
>       >     >       > [    0.329706] LSM: Security Framework initializing
>       >     >       > [    0.334204] Yama: becoming mindful.
>       >     >       > [    0.337865] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>       >     >       > [    0.345180] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>       >     >       > [    0.354743] xen:grant_table: Grant tables using version 1 layout
>       >     >       > [    0.359132] Grant table initialized
>       >     >       > [    0.362664] xen:events: Using FIFO-based ABI
>       >     >       > [    0.366993] Xen: initializing cpu0
>       >     >       > [    0.370515] rcu: Hierarchical SRCU implementation.
>       >     >       > [    0.375930] smp: Bringing up secondary CPUs ...
>       >     >       > (XEN) null.c:353: 1 <-- d0v1
>       >     >       > (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>       >     >       > [    0.382549] Detected VIPT I-cache on CPU1
>       >     >       > [    0.388712] Xen: initializing cpu1
>       >     >       > [    0.388743] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
>       >     >       > [    0.388829] smp: Brought up 1 node, 2 CPUs
>       >     >       > [    0.406941] SMP: Total of 2 processors activated.
>       >     >       > [    0.411698] CPU features: detected: 32-bit EL0 Support
>       >     >       > [    0.416888] CPU features: detected: CRC32 instructions
>       >     >       > [    0.422121] CPU: All CPU(s) started at EL1
>       >     >       > [    0.426248] alternatives: patching kernel code
>       >     >       > [    0.431424] devtmpfs: initialized
>       >     >       > [    0.441454] KASLR enabled
>       >     >       > [    0.441602] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns:
>       7645041785100000 ns
>       >     >       > [    0.448321] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
>       >     >       > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE protocol family
>       >     >       > [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
>       >     >       > [    0.503772] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
>       >     >       > [    0.511610] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
>       >     >       > [    0.519478] audit: initializing netlink subsys (disabled)
>       >     >       > [    0.524985] audit: type=2000 audit(0.336:1): state=initialized audit_enabled=0 res=1
>       >     >       > [    0.529169] thermal_sys: Registered thermal governor 'step_wise'
>       >     >       > [    0.533023] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
>       >     >       > [    0.545608] ASID allocator initialised with 32768 entries
>       >     >       > [    0.551030] xen:swiotlb_xen: Warning: only able to allocate 4 MB for software IO TLB
>       >     >       > [    0.559332] software IO TLB: mapped [mem 0x0000000011800000-0x0000000011c00000] (4MB)
>       >     >       > [    0.583565] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>       >     >       > [    0.584721] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
>       >     >       > [    0.591478] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>       >     >       > [    0.598225] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
>       >     >       > [    0.636520] DRBG: Continuing without Jitter RNG
>       >     >       > [    0.737187] raid6: neonx8   gen()  2143 MB/s
>       >     >       > [    0.805294] raid6: neonx8   xor()  1589 MB/s
>       >     >       > [    0.873406] raid6: neonx4   gen()  2177 MB/s
>       >     >       > [    0.941499] raid6: neonx4   xor()  1556 MB/s
>       >     >       > [    1.009612] raid6: neonx2   gen()  2072 MB/s
>       >     >       > [    1.077715] raid6: neonx2   xor()  1430 MB/s
>       >     >       > [    1.145834] raid6: neonx1   gen()  1769 MB/s
>       >     >       > [    1.213935] raid6: neonx1   xor()  1214 MB/s
>       >     >       > [    1.282046] raid6: int64x8  gen()  1366 MB/s
>       >     >       > [    1.350132] raid6: int64x8  xor()   773 MB/s
>       >     >       > [    1.418259] raid6: int64x4  gen()  1602 MB/s
>       >     >       > [    1.486349] raid6: int64x4  xor()   851 MB/s
>       >     >       > [    1.554464] raid6: int64x2  gen()  1396 MB/s
>       >     >       > [    1.622561] raid6: int64x2  xor()   744 MB/s
>       >     >       > [    1.690687] raid6: int64x1  gen()  1033 MB/s
>       >     >       > [    1.758770] raid6: int64x1  xor()   517 MB/s
>       >     >       > [    1.758809] raid6: using algorithm neonx4 gen() 2177 MB/s
>       >     >       > [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
>       >     >       > [    1.767957] raid6: using neon recovery algorithm
>       >     >       > [    1.772824] xen:balloon: Initialising balloon driver
>       >     >       > [    1.778021] iommu: Default domain type: Translated
>       >     >       > [    1.782584] iommu: DMA domain TLB invalidation policy: strict mode
>       >     >       > [    1.789149] SCSI subsystem initialized
>       >     >       > [    1.792820] usbcore: registered new interface driver usbfs
>       >     >       > [    1.798254] usbcore: registered new interface driver hub
>       >     >       > [    1.803626] usbcore: registered new device driver usb
>       >     >       > [    1.808761] pps_core: LinuxPPS API ver. 1 registered
>       >     >       > [    1.813716] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it
>       <mailto:giometti@linux.it>>
>       >     >       > [    1.822903] PTP clock support registered
>       >     >       > [    1.826893] EDAC MC: Ver: 3.0.0
>       >     >       > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
>       >     >       > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX channels.
>       >     >       > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX channels.
>       >     >       > [    1.855907] FPGA manager framework
>       >     >       > [    1.859952] clocksource: Switched to clocksource arch_sys_counter
>       >     >       > [    1.871712] NET: Registered PF_INET protocol family
>       >     >       > [    1.871838] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
>       >     >       > [    1.879392] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
>       >     >       > [    1.887078] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
>       >     >       > [    1.894846] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
>       >     >       > [    1.902900] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
>       >     >       > [    1.910350] TCP: Hash tables configured (established 16384 bind 16384)
>       >     >       > [    1.916778] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
>       >     >       > [    1.923509] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
>       >     >       > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol family
>       >     >       > [    1.936834] RPC: Registered named UNIX socket transport module.
>       >     >       > [    1.942342] RPC: Registered udp transport module.
>       >     >       > [    1.947088] RPC: Registered tcp transport module.
>       >     >       > [    1.951843] RPC: Registered tcp NFSv4.1 backchannel transport module.
>       >     >       > [    1.958334] PCI: CLS 0 bytes, default 64
>       >     >       > [    1.962709] Trying to unpack rootfs image as initramfs...
>       >     >       > [    1.977090] workingset: timestamp_bits=62 max_order=19 bucket_order=0
>       >     >       > [    1.982863] Installing knfsd (copyright (C) 1996 okir@monad.swb.de <mailto:okir@monad.swb.de>).
>       >     >       > [    2.021045] NET: Registered PF_ALG protocol family
>       >     >       > [    2.021122] xor: measuring software checksum speed
>       >     >       > [    2.029347]    8regs           :  2366 MB/sec
>       >     >       > [    2.033081]    32regs          :  2802 MB/sec
>       >     >       > [    2.038223]    arm64_neon      :  2320 MB/sec
>       >     >       > [    2.038385] xor: using function: 32regs (2802 MB/sec)
>       >     >       > [    2.043614] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
>       >     >       > [    2.050959] io scheduler mq-deadline registered
>       >     >       > [    2.055521] io scheduler kyber registered
>       >     >       > [    2.068227] xen:xen_evtchn: Event-channel device installed
>       >     >       > [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
>       >     >       > [    2.076190] cacheinfo: Unable to detect cache hierarchy for CPU 0
>       >     >       > [    2.085548] brd: module loaded
>       >     >       > [    2.089290] loop: module loaded
>       >     >       > [    2.089341] Invalid max_queues (4), will use default max: 2.
>       >     >       > [    2.094565] tun: Universal TUN/TAP device driver, 1.6
>       >     >       > [    2.098655] xen_netfront: Initialising Xen virtual ethernet driver
>       >     >       > [    2.104156] usbcore: registered new interface driver rtl8150
>       >     >       > [    2.109813] usbcore: registered new interface driver r8152
>       >     >       > [    2.115367] usbcore: registered new interface driver asix
>       >     >       > [    2.120794] usbcore: registered new interface driver ax88179_178a
>       >     >       > [    2.126934] usbcore: registered new interface driver cdc_ether
>       >     >       > [    2.132816] usbcore: registered new interface driver cdc_eem
>       >     >       > [    2.138527] usbcore: registered new interface driver net1080
>       >     >       > [    2.144256] usbcore: registered new interface driver cdc_subset
>       >     >       > [    2.150205] usbcore: registered new interface driver zaurus
>       >     >       > [    2.155837] usbcore: registered new interface driver cdc_ncm
>       >     >       > [    2.161550] usbcore: registered new interface driver r8153_ecm
>       >     >       > [    2.168240] usbcore: registered new interface driver cdc_acm
>       >     >       > [    2.173109] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
>       >     >       > [    2.181358] usbcore: registered new interface driver uas
>       >     >       > [    2.186547] usbcore: registered new interface driver usb-storage
>       >     >       > [    2.192643] usbcore: registered new interface driver ftdi_sio
>       >     >       > [    2.198384] usbserial: USB Serial support registered for FTDI USB Serial Device
>       >     >       > [    2.206118] udc-core: couldn't find an available UDC - added [g_mass_storage] to list of pending
>       drivers
>       >     >       > [    2.215332] i2c_dev: i2c /dev entries driver
>       >     >       > [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)
>       >     >       > [    2.225923] device-mapper: uevent: version 1.0.3
>       >     >       > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
>       <mailto:dm-devel@redhat.com>
>       >     >       > [    2.239315] EDAC MC0: Giving out device to module 1 controller synps_ddr_controller: DEV synps_edac
>       (INTERRUPT)
>       >     >       > [    2.249405] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV
>       >     >       ff960000.memory-controller (INTERRUPT)
>       >     >       > [    2.261719] sdhci: Secure Digital Host Controller Interface driver
>       >     >       > [    2.267487] sdhci: Copyright(c) Pierre Ossman
>       >     >       > [    2.271890] sdhci-pltfm: SDHCI platform and OF driver helper
>       >     >       > [    2.278157] ledtrig-cpu: registered to indicate activity on CPUs
>       >     >       > [    2.283816] zynqmp_firmware_probe Platform Management API v1.1
>       >     >       > [    2.289554] zynqmp_firmware_probe Trustzone version v1.0
>       >     >       > [    2.327875] securefw securefw: securefw probed
>       >     >       > [    2.328324] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
>       >     >       > [    2.332563] zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
>       >     >       > [    2.341183] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
>       >     >       > [    2.347667] remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is available
>       >     >       > [    2.353003] remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is available
>       >     >       > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
>       >     >       > [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen Proxy registered
>       >     >       > [    2.372525] viper-vdpp a4000000.vdpp: Device Tree Probing
>       >     >       > [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>       >     >       > [    2.386432] viper-vdpp a4000000.vdpp: Unable to register tamper handler. Retrying...
>       >     >       > [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
>       >     >       > [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device registered
>       >     >       > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
>       >     >       > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event Count: 32
>       >     >       > [    2.420856] default preset
>       >     >       > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device registered
>       >     >       > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
>       >     >       > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device registered
>       >     >       > [    2.441976] vmcu driver init
>       >     >       > [    2.444922] VMCU: : (240:0) registered
>       >     >       > [    2.444956] In K81 Updater init
>       >     >       > [    2.449003] pktgen: Packet Generator for packet performance testing. Version: 2.75
>       >     >       > [    2.468833] Initializing XFRM netlink socket
>       >     >       > [    2.468902] NET: Registered PF_PACKET protocol family
>       >     >       > [    2.472729] Bridge firewalling registered
>       >     >       > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
>       >     >       > [    2.481341] registered taskstats version 1
>       >     >       > [    2.486394] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
>       >     >       > [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
>       >     >       > [    2.507103] of-fpga-region fpga-full: FPGA Region probed
>       >     >       > [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver Probe success
>       >     >       > [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver Probe success
>       >     >       > [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver Probe success
>       >     >       > [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver Probe success
>       >     >       > [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver Probe success
>       >     >       > [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver Probe success
>       >     >       > [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver Probe success
>       >     >       > [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver Probe success
>       >     >       > [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver Probe success
>       >     >       > [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver Probe success
>       >     >       > [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
>       >     >       > [    2.946467] 2 fixed-partitions partitions found on MTD device spi0.0
>       >     >       > [    2.952393] Creating 2 MTD partitions on "spi0.0":
>       >     >       > [    2.957231] 0x000004000000-0x000008000000 : "bank A"
>       >     >       > [    2.963332] 0x000000000000-0x000004000000 : "bank B"
>       >     >       > [    2.968694] macb ff0b0000.ethernet: Not enabling partial store and forward
>       >     >       > [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25
>       (18:41:fe:0f:ff:02)
>       >     >       > [    2.984472] macb ff0c0000.ethernet: Not enabling partial store and forward
>       >     >       > [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26
>       (18:41:fe:0f:ff:03)
>       >     >       > [    3.001043] viper_enet viper_enet: Viper power GPIOs initialised
>       >     >       > [    3.007313] viper_enet viper_enet vnet0 (uninitialized): Validate interface QSGMII
>       >     >       > [    3.014914] viper_enet viper_enet vnet1 (uninitialized): Validate interface QSGMII
>       >     >       > [    3.022138] viper_enet viper_enet vnet1 (uninitialized): Validate interface type 18
>       >     >       > [    3.030274] viper_enet viper_enet vnet2 (uninitialized): Validate interface QSGMII
>       >     >       > [    3.037785] viper_enet viper_enet vnet3 (uninitialized): Validate interface QSGMII
>       >     >       > [    3.045301] viper_enet viper_enet: Viper enet registered
>       >     >       > [    3.050958] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
>       >     >       > [    3.057135] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
>       >     >       > [    3.063538] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
>       >     >       > [    3.069920] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
>       >     >       > [    3.097729] si70xx: probe of 2-0040 failed with error -5
>       >     >       > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
>       >     >       > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
>       >     >       > [    3.112457] viper-tamper viper-tamper: Device registered
>       >     >       > [    3.117593] active_bank active_bank: boot bank: 1
>       >     >       > [    3.122184] active_bank active_bank: boot mode: (0x02) qspi32
>       >     >       > [    3.128247] viper-vdpp a4000000.vdpp: Device Tree Probing
>       >     >       > [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>       >     >       > [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler registered
>       >     >       > [    3.147438] viper-vdpp a4000000.vdpp: Device registered
>       >     >       > [    3.153007] lpc55_l2 spi1.0: registered handler for protocol 0
>       >     >       > [    3.158582] lpc55_user lpc55_user: The major number for your device is 236
>       >     >       > [    3.165976] lpc55_l2 spi1.0: registered handler for protocol 1
>       >     >       > [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>       >     >       > [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
>       >     >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
>       >     >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
>       >     >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
>       >     >       > [    3.202932] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
>       >     >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
>       >     >       > [    3.215694] lpc55_l2 spi1.0: rx error: -110
>       >     >       > [    3.284438] mmc0: new HS200 MMC card at address 0001
>       >     >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
>       >     >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
>       >     >       > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
>       >     >       > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
>       >     >       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
>       >     >       > [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>       >     >       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to read the hardware clock
>       >     >       > [    3.591252] cdns-i2c ff020000.i2c: recovery information complete
>       >     >       > [    3.597085] at24 0-0050: supply vcc not found, using dummy regulator
>       >     >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
>       >     >       > [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
>       >     >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
>       >     >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
>       >     >       > [    3.624224] rtc-rv3028 0-0052: registered as rtc1
>       >     >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
>       >     >       > [    3.633253] lpc55_l2 spi1.0: rx error: -110
>       >     >       > [    3.639104] k81_bootloader 0-0010: probe
>       >     >       > [    3.641628] VMCU: : (235:0) registered
>       >     >       > [    3.641635] k81_bootloader 0-0010: probe completed
>       >     >       > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 28
>       >     >       > [    3.669154] cdns-i2c ff030000.i2c: recovery information complete
>       >     >       > [    3.675412] lm75 1-0048: supply vs not found, using dummy regulator
>       >     >       > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
>       >     >       > [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
>       >     >       > [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
>       >     >       > [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
>       >     >       > [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
>       >     >       > [    3.705157] pca954x 1-0070: registered 4 multiplexed busses for I2C switch pca9546
>       >     >       > [    3.713049] at24 1-0054: supply vcc not found, using dummy regulator
>       >     >       > [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM, read-only
>       >     >       > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq 29
>       >     >       > [    3.731272] sfp viper_enet:sfp-eth1: Host maximum power 2.0W
>       >     >       > [    3.737549] sfp_register_socket: got sfp_bus
>       >     >       > [    3.740709] sfp_register_socket: register sfp_bus
>       >     >       > [    3.745459] sfp_register_bus: ops ok!
>       >     >       > [    3.749179] sfp_register_bus: Try to attach
>       >     >       > [    3.753419] sfp_register_bus: Attach succeeded
>       >     >       > [    3.757914] sfp_register_bus: upstream ops attach
>       >     >       > [    3.762677] sfp_register_bus: Bus registered
>       >     >       > [    3.766999] sfp_register_socket: register sfp_bus succeeded
>       >     >       > [    3.775870] of_cfs_init
>       >     >       > [    3.776000] of_cfs_init: OK
>       >     >       > [    3.778211] clk: Not disabling unused clocks
>       >     >       > [   11.278477] Freeing initrd memory: 206056K
>       >     >       > [   11.279406] Freeing unused kernel memory: 1536K
>       >     >       > [   11.314006] Checked W+X mappings: passed, no W+X pages found
>       >     >       > [   11.314142] Run /init as init process
>       >     >       > INIT: version 3.01 booting
>       >     >       > fsck (busybox 1.35.0)
>       >     >       > /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600 blocks
>       >     >       > /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600 blocks
>       >     >       > /dev/mmcblk0p3 was not cleanly unmounted, check forced.
>       >     >       > /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous), 663/16384 blocks
>       >     >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode:
>       disabled.
>       >     >       > Starting random number generator daemon.
>       >     >       > [   11.580662] random: crng init done
>       >     >       > Starting udev
>       >     >       > [   11.613159] udevd[142]: starting version 3.2.10
>       >     >       > [   11.620385] udevd[143]: starting eudev-3.2.10
>       >     >       > [   11.704481] macb ff0b0000.ethernet control_red: renamed from eth0
>       >     >       > [   11.720264] macb ff0c0000.ethernet control_black: renamed from eth1
>       >     >       > [   12.063396] ip_local_port_range: prefer different parity for start/end values.
>       >     >       > [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>       >     >       > Mon Feb 27 08:40:53 UTC 2023
>       >     >       > [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad result
>       >     >       > hwclock: RTC_SET_TIME: Invalid exchange
>       >     >       > [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>       >     >       > Starting mcud
>       >     >       > INIT: Entering runlevel: 5
>       >     >       > Configuring network interfaces... done.
>       >     >       > resetting network interface
>       >     >       > [   12.718295] macb ff0b0000.ethernet control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver [Xilinx
>       PCS/PMA PHY] (irq=POLL)
>       >     >       > [   12.723919] macb ff0b0000.ethernet control_red: configuring for phy/gmii link mode
>       >     >       > [   12.732151] pps pps0: new PPS source ptp0
>       >     >       > [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
>       >     >       > [   12.745724] macb ff0c0000.ethernet control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver [Xilinx
>       PCS/PMA PHY]
>       >     >       (irq=POLL)
>       >     >       > [   12.753469] macb ff0c0000.ethernet control_black: configuring for phy/gmii link mode
>       >     >       > [   12.761804] pps pps1: new PPS source ptp1
>       >     >       > [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
>       >     >       > Auto-negotiation: off
>       >     >       > Auto-negotiation: off
>       >     >       > [   16.828151] macb ff0b0000.ethernet control_red: unable to generate target frequency: 125000000 Hz
>       >     >       > [   16.834553] macb ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full - flow control off
>       >     >       > [   16.860552] macb ff0c0000.ethernet control_black: unable to generate target frequency: 125000000 Hz
>       >     >       > [   16.867052] macb ff0c0000.ethernet control_black: Link is Up - 1Gbps/Full - flow control off
>       >     >       > Starting Failsafe Secure Shell server in port 2222: sshd
>       >     >       > done.
>       >     >       > Starting rpcbind daemon...done.
>       >     >       >
>       >     >       > [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>       >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>       >     >       > Starting State Manager Service
>       >     >       > Start state-manager restarter...
>       >     >       > (XEN) d0v1 Forwarding AES operation: 3254779951
>       >     >       > Starting /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa
>       devid 1 transid 744
>       >     >       /dev/dm-0
>       >     >       > scanned by udevd (385)
>       >     >       > [   17.349933] BTRFS info (device dm-0): disk space caching is enabled
>       >     >       > [   17.350670] BTRFS info (device dm-0): has skinny extents
>       >     >       > [   17.364384] BTRFS info (device dm-0): enabling ssd optimizations
>       >     >       > [   17.830462] BTRFS: device fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
>       /dev/mapper/client_prov scanned by
>       >     >       mkfs.btrfs
>       >     >       > (526)
>       >     >       > [   17.872699] BTRFS info (device dm-1): using free space tree
>       >     >       > [   17.872771] BTRFS info (device dm-1): has skinny extents
>       >     >       > [   17.878114] BTRFS info (device dm-1): flagging fs with big metadata feature
>       >     >       > [   17.894289] BTRFS info (device dm-1): enabling ssd optimizations
>       >     >       > [   17.895695] BTRFS info (device dm-1): checking UUID tree
>       >     >       >
>       >     >       > Setting domain 0 name, domid and JSON config...
>       >     >       > Done setting up Dom0
>       >     >       > Starting xenconsoled...
>       >     >       > Starting QEMU as disk backend for dom0
>       >     >       > Starting domain watchdog daemon: xenwatchdogd startup
>       >     >       >
>       >     >       > [   18.408647] BTRFS: device fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
>       /dev/mapper/client_config scanned by
>       >     >       mkfs.btrfs
>       >     >       > (574)
>       >     >       > [done]
>       >     >       > [   18.465552] BTRFS info (device dm-2): using free space tree
>       >     >       > [   18.465629] BTRFS info (device dm-2): has skinny extents
>       >     >       > [   18.471002] BTRFS info (device dm-2): flagging fs with big metadata feature
>       >     >       > Starting crond: [   18.482371] BTRFS info (device dm-2): enabling ssd optimizations
>       >     >       > [   18.486659] BTRFS info (device dm-2): checking UUID tree
>       >     >       > OK
>       >     >       > starting rsyslogd ... Log partition ready after 0 poll loops
>       >     >       > done
>       >     >       > rsyslogd: cannot connect to 172.18.0.1:514 <http://172.18.0.1:514>: Network is unreachable [v8.2208.0 try
>       https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> ]
>       >     >       > [   18.670637] BTRFS: device fsid 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3
>       scanned by udevd (518)
>       >     >       >
>       >     >       > Please insert USB token and enter your role in login prompt.
>       >     >       >
>       >     >       > login:
>       >     >       >
>       >     >       > Regards,
>       >     >       > O.
>       >     >       >
>       >     >       >
>       >     >       > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
>       >     >       >       Hi Oleg,
>       >     >       >
>       >     >       >       Here is the issue from your logs:
>       >     >       >
>       >     >       >       SError Interrupt on CPU0, code 0xbe000000 -- SError
>       >     >       >
>       >     >       >       SErrors are special signals to notify software of serious hardware
>       >     >       >       errors.  Something is going very wrong. Defective hardware is a
>       >     >       >       possibility.  Another possibility if software accessing address ranges
>       >     >       >       that it is not supposed to, sometimes it causes SErrors.
>       >     >       >
>       >     >       >       Cheers,
>       >     >       >
>       >     >       >       Stefano
>       >     >       >
>       >     >       >
>       >     >       >
>       >     >       >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
>       >     >       >
>       >     >       >       > Hello,
>       >     >       >       >
>       >     >       >       > Thanks guys.
>       >     >       >       > I found out where the problem was.
>       >     >       >       > Now dom0 booted more. But I have a new one.
>       >     >       >       > This is a kernel panic during Dom0 loading.
>       >     >       >       > Maybe someone is able to suggest something ?
>       >     >       >       >
>       >     >       >       > Regards,
>       >     >       >       > O.
>       >     >       >       >
>       >     >       >       > [    3.771362] sfp_register_bus: upstream ops attach
>       >     >       >       > [    3.776119] sfp_register_bus: Bus registered
>       >     >       >       > [    3.780459] sfp_register_socket: register sfp_bus succeeded
>       >     >       >       > [    3.789399] of_cfs_init
>       >     >       >       > [    3.789499] of_cfs_init: OK
>       >     >       >       > [    3.791685] clk: Not disabling unused clocks
>       >     >       >       > [   11.010355] SError Interrupt on CPU0, code 0xbe000000 -- SError
>       >     >       >       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>       >     >       >       > [   11.010393] Workqueue: events_unbound async_run_entry_fn
>       >     >       >       > [   11.010414] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
>       >     >       >       > [   11.010422] pc : simple_write_end+0xd0/0x130
>       >     >       >       > [   11.010431] lr : generic_perform_write+0x118/0x1e0
>       >     >       >       > [   11.010438] sp : ffffffc00809b910
>       >     >       >       > [   11.010441] x29: ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
>       >     >       >       > [   11.010451] x26: 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
>       >     >       >       > [   11.010459] x23: ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
>       >     >       >       > [   11.010472] x20: 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
>       >     >       >       > [   11.010481] x17: 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
>       >     >       >       > [   11.010490] x14: 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
>       >     >       >       > [   11.010498] x11: 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
>       >     >       >       > [   11.010507] x8 : 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
>       >     >       >       > [   11.010515] x5 : fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
>       >     >       >       > [   11.010524] x2 : 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
>       >     >       >       > [   11.010534] Kernel panic - not syncing: Asynchronous SError Interrupt
>       >     >       >       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>       >     >       >       > [   11.010545] Hardware name: D14 Viper Board - White Unit (DT)
>       >     >       >       > [   11.010548] Workqueue: events_unbound async_run_entry_fn
>       >     >       >       > [   11.010556] Call trace:
>       >     >       >       > [   11.010558]  dump_backtrace+0x0/0x1c4
>       >     >       >       > [   11.010567]  show_stack+0x18/0x2c
>       >     >       >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
>       >     >       >       > [   11.010583]  dump_stack+0x18/0x34
>       >     >       >       > [   11.010588]  panic+0x14c/0x2f8
>       >     >       >       > [   11.010597]  print_tainted+0x0/0xb0
>       >     >       >       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
>       >     >       >       > [   11.010614]  do_serror+0x28/0x60
>       >     >       >       > [   11.010621]  el1h_64_error_handler+0x30/0x50
>       >     >       >       > [   11.010628]  el1h_64_error+0x78/0x7c
>       >     >       >       > [   11.010633]  simple_write_end+0xd0/0x130
>       >     >       >       > [   11.010639]  generic_perform_write+0x118/0x1e0
>       >     >       >       > [   11.010644]  __generic_file_write_iter+0x138/0x1c4
>       >     >       >       > [   11.010650]  generic_file_write_iter+0x78/0xd0
>       >     >       >       > [   11.010656]  __kernel_write+0xfc/0x2ac
>       >     >       >       > [   11.010665]  kernel_write+0x88/0x160
>       >     >       >       > [   11.010673]  xwrite+0x44/0x94
>       >     >       >       > [   11.010680]  do_copy+0xa8/0x104
>       >     >       >       > [   11.010686]  write_buffer+0x38/0x58
>       >     >       >       > [   11.010692]  flush_buffer+0x4c/0xbc
>       >     >       >       > [   11.010698]  __gunzip+0x280/0x310
>       >     >       >       > [   11.010704]  gunzip+0x1c/0x28
>       >     >       >       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
>       >     >       >       > [   11.010715]  do_populate_rootfs+0x80/0x164
>       >     >       >       > [   11.010722]  async_run_entry_fn+0x48/0x164
>       >     >       >       > [   11.010728]  process_one_work+0x1e4/0x3a0
>       >     >       >       > [   11.010736]  worker_thread+0x7c/0x4c0
>       >     >       >       > [   11.010743]  kthread+0x120/0x130
>       >     >       >       > [   11.010750]  ret_from_fork+0x10/0x20
>       >     >       >       > [   11.010757] SMP: stopping secondary CPUs
>       >     >       >       > [   11.010784] Kernel Offset: 0x2f61200000 from 0xffffffc008000000
>       >     >       >       > [   11.010788] PHYS_OFFSET: 0x0
>       >     >       >       > [   11.010790] CPU features: 0x00000401,00000842
>       >     >       >       > [   11.010795] Memory Limit: none
>       >     >       >       > [   11.277509] ---[ end Kernel panic - not syncing: Asynchronous SError Interrupt ]---
>       >     >       >       >
>       >     >       >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
>       >     >       >       >       Hi Oleg,
>       >     >       >       >
>       >     >       >       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
>       >     >       >       >       >       
>       >     >       >       >       >
>       >     >       >       >       >
>       >     >       >       >       > Hello Michal,
>       >     >       >       >       >
>       >     >       >       >       > I was not able to enable earlyprintk in the xen for now.
>       >     >       >       >       > I decided to choose another way.
>       >     >       >       >       > This is a xen's command line that I found out completely.
>       >     >       >       >       >
>       >     >       >       >       > (XEN) $$$$ console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
>       bootscrub=0
>       >     >       vwfi=native
>       >     >       >       sched=null
>       >     >       >       >       timer_slop=0
>       >     >       >       >       Yes, adding a printk() in Xen was also a good idea.
>       >     >       >       >
>       >     >       >       >       >
>       >     >       >       >       > So you are absolutely right about a command line.
>       >     >       >       >       > Now I am going to find out why xen did not have the correct parameters from the device
>       tree.
>       >     >       >       >       Maybe you will find this document helpful:
>       >     >       >       >       https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
>       <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
>       >     >       >       >
>       >     >       >       >       ~Michal
>       >     >       >       >
>       >     >       >       >       >
>       >     >       >       >       > Regards,
>       >     >       >       >       > Oleg
>       >     >       >       >       >
>       >     >       >       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com
>       <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
>       >     >       >       >       >
>       >     >       >       >       >
>       >     >       >       >       >     On 21/04/2023 10:04, Oleg Nikitenko wrote:
>       >     >       >       >       >     >       
>       >     >       >       >       >     >
>       >     >       >       >       >     >
>       >     >       >       >       >     > Hello Michal,
>       >     >       >       >       >     >
>       >     >       >       >       >     > Yes, I use yocto.
>       >     >       >       >       >     >
>       >     >       >       >       >     > Yesterday all day long I tried to follow your suggestions.
>       >     >       >       >       >     > I faced a problem.
>       >     >       >       >       >     > Manually in the xen config build file I pasted the strings:
>       >     >       >       >       >     In the .config file or in some Yocto file (listing additional Kconfig options) added
>       to SRC_URI?
>       >     >       >       >       >     You shouldn't really modify .config file but if you do, you should execute "make
>       olddefconfig"
>       >     >       afterwards.
>       >     >       >       >       >
>       >     >       >       >       >     >
>       >     >       >       >       >     > CONFIG_EARLY_PRINTK
>       >     >       >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
>       >     >       >       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
>       >     >       >       >       >     I hope you added =y to them.
>       >     >       >       >       >
>       >     >       >       >       >     Anyway, you have at least the following solutions:
>       >     >       >       >       >     1) Run bitbake xen -c menuconfig to properly set early printk
>       >     >       >       >       >     2) Find out how you enable other Kconfig options in your project (e.g.
>       CONFIG_COLORING=y that is not
>       >     >       enabled by
>       >     >       >       default)
>       >     >       >       >       >     3) Append the following to "xen/arch/arm/configs/arm64_defconfig":
>       >     >       >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
>       >     >       >       >       >
>       >     >       >       >       >     ~Michal
>       >     >       >       >       >
>       >     >       >       >       >     >
>       >     >       >       >       >     > Host hangs in build time. 
>       >     >       >       >       >     > Maybe I did not set something in the config build file ?
>       >     >       >       >       >     >
>       >     >       >       >       >     > Regards,
>       >     >       >       >       >     > Oleg
>       >     >       >       >       >     >
>       >     >       >       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg Nikitenko <oleshiiwood@gmail.com
>       <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
>       <mailto:oleshiiwood@gmail.com>>>>:
>       >     >       >       >       >     >
>       >     >       >       >       >     >     Thanks Michal,
>       >     >       >       >       >     >
>       >     >       >       >       >     >     You gave me an idea.
>       >     >       >       >       >     >     I am going to try it today.
>       >     >       >       >       >     >
>       >     >       >       >       >     >     Regards,
>       >     >       >       >       >     >     O.
>       >     >       >       >       >     >
>       >     >       >       >       >     >     чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com
>       <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
>       <mailto:oleshiiwood@gmail.com>>>>:
>       >     >       >       >       >     >
>       >     >       >       >       >     >         Thanks Stefano.
>       >     >       >       >       >     >
>       >     >       >       >       >     >         I am going to do it today.
>       >     >       >       >       >     >
>       >     >       >       >       >     >         Regards,
>       >     >       >       >       >     >         O.
>       >     >       >       >       >     >
>       >     >       >       >       >     >         ср, 19 апр. 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org
>       <mailto:sstabellini@kernel.org>
>       >     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
>       >     >       >       >       >     >
>       >     >       >       >       >     >             On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
>       >     >       >       >       >     >             > Hi Michal,
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             > I corrected xen's command line.
>       >     >       >       >       >     >             > Now it is
>       >     >       >       >       >     >             > xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M
>       dom0_max_vcpus=2
>       >     >       dom0_vcpus_pin
>       >     >       >       >       bootscrub=0 vwfi=native sched=null
>       >     >       >       >       >     >             > timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
>       >     >       >       >       >     >
>       >     >       >       >       >     >             4 colors is way too many for xen, just do xen_colors=0-0. There is no
>       >     >       >       >       >     >             advantage in using more than 1 color for Xen.
>       >     >       >       >       >     >
>       >     >       >       >       >     >             4 colors is too few for dom0, if you are giving 1600M of memory to
>       Dom0.
>       >     >       >       >       >     >             Each color is 256M. For 1600M you should give at least 7 colors. Try:
>       >     >       >       >       >     >
>       >     >       >       >       >     >             xen_colors=0-0 dom0_colors=1-8
>       >     >       >       >       >     >
>       >     >       >       >       >     >
>       >     >       >       >       >     >
>       >     >       >       >       >     >             > Unfortunately the result was the same.
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             > (XEN)  - Dom0 mode: Relaxed
>       >     >       >       >       >     >             > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>       >     >       >       >       >     >             > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>       >     >       >       >       >     >             > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>       >     >       >       >       >     >             > (XEN) Coloring general information
>       >     >       >       >       >     >             > (XEN) Way size: 64kB
>       >     >       >       >       >     >             > (XEN) Max. number of colors available: 16
>       >     >       >       >       >     >             > (XEN) Xen color(s): [ 0 ]
>       >     >       >       >       >     >             > (XEN) alternatives: Patching with alt table 00000000002cc690 ->
>       00000000002ccc0c
>       >     >       >       >       >     >             > (XEN) Color array allocation failed for dom0
>       >     >       >       >       >     >             > (XEN)
>       >     >       >       >       >     >             > (XEN) ****************************************
>       >     >       >       >       >     >             > (XEN) Panic on CPU 0:
>       >     >       >       >       >     >             > (XEN) Error creating domain 0
>       >     >       >       >       >     >             > (XEN) ****************************************
>       >     >       >       >       >     >             > (XEN)
>       >     >       >       >       >     >             > (XEN) Reboot in five seconds...
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             > I am going to find out how command line arguments passed and parsed.
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             > Regards,
>       >     >       >       >       >     >             > Oleg
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com
>       <mailto:oleshiiwood@gmail.com>
>       >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>       >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com
>       <mailto:oleshiiwood@gmail.com>>>>:
>       >     >       >       >       >     >             >       Hi Michal,
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             > You put my nose into the problem. Thank you.
>       >     >       >       >       >     >             > I am going to use your point.
>       >     >       >       >       >     >             > Let's see what happens.
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             > Regards,
>       >     >       >       >       >     >             > Oleg
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com
>       <mailto:michal.orzel@amd.com>
>       >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
>       >     >       >       >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com
>       <mailto:michal.orzel@amd.com>>>>:
>       >     >       >       >       >     >             >       Hi Oleg,
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >       On 19/04/2023 09:03, Oleg Nikitenko wrote:
>       >     >       >       >       >     >             >       >       
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       > Hello Stefano,
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       > Thanks for the clarification.
>       >     >       >       >       >     >             >       > My company uses yocto for image generation.
>       >     >       >       >       >     >             >       > What kind of information do you need to consult me in this
>       case ?
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       > Maybe modules sizes/addresses which were mentioned by @Julien
>       Grall
>       >     >       >       <mailto:julien@xen.org <mailto:julien@xen.org>
>       >     >       >       >       <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org
>       <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>> ?
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >       Sorry for jumping into discussion, but FWICS the Xen command
>       line you provided
>       >     >       seems to be
>       >     >       >       not the
>       >     >       >       >       one
>       >     >       >       >       >     >             >       Xen booted with. The error you are observing most likely is due
>       to dom0 colors
>       >     >       >       configuration not
>       >     >       >       >       being
>       >     >       >       >       >     >             >       specified (i.e. lack of dom0_colors=<> parameter). Although in
>       the command line you
>       >     >       >       provided, this
>       >     >       >       >       parameter
>       >     >       >       >       >     >             >       is set, I strongly doubt that this is the actual command line
>       in use.
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >       You wrote:
>       >     >       >       >       >     >             >       xen,xen-bootargs = "console=dtuart dtuart=serial0
>       dom0_mem=1600M dom0_max_vcpus=2
>       >     >       >       dom0_vcpus_pin
>       >     >       >       >       bootscrub=0 vwfi=native
>       >     >       >       >       >     >             >       sched=null timer_slop=0 way_szize=65536 xen_colors=0-3
>       dom0_colors=4-7";
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >       but:
>       >     >       >       >       >     >             >       1) way_szize has a typo
>       >     >       >       >       >     >             >       2) you specified 4 colors (0-3) for Xen, but the boot log says
>       that Xen has only
>       >     >       one:
>       >     >       >       >       >     >             >       (XEN) Xen color(s): [ 0 ]
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >       This makes me believe that no colors configuration actually end
>       up in command line
>       >     >       that Xen
>       >     >       >       booted
>       >     >       >       >       with.
>       >     >       >       >       >     >             >       Single color for Xen is a "default if not specified" and way
>       size was probably
>       >     >       calculated
>       >     >       >       by asking
>       >     >       >       >       HW.
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >       So I would suggest to first cross-check the command line in
>       use.
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >       ~Michal
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       > Regards,
>       >     >       >       >       >     >             >       > Oleg
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       > вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini
>       <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org
>       <mailto:sstabellini@kernel.org>>>
>       >     >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>       >     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org
>       <mailto:sstabellini@kernel.org>>>>>:
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
>       >     >       >       >       >     >             >       >     > Hi Julien,
>       >     >       >       >       >     >             >       >     >
>       >     >       >       >       >     >             >       >     > >> This feature has not been merged in Xen upstream yet
>       >     >       >       >       >     >             >       >     >
>       >     >       >       >       >     >             >       >     > > would assume that upstream + the series on the ML [1]
>       work
>       >     >       >       >       >     >             >       >     >
>       >     >       >       >       >     >             >       >     > Please clarify this point.
>       >     >       >       >       >     >             >       >     > Because the two thoughts are controversial.
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >     Hi Oleg,
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >     As Julien wrote, there is nothing controversial. As you
>       are aware,
>       >     >       >       >       >     >             >       >     Xilinx maintains a separate Xen tree specific for Xilinx
>       here:
>       >     >       >       >       >     >             >       >     https://github.com/xilinx/xen
>       <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>
>       >     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>       >     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>
>       <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen
>       <https://github.com/xilinx/xen>>
>       >     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>       >     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >     and the branch you are using (xlnx_rebase_4.16) comes
>       from there.
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >     Instead, the upstream Xen tree lives here:
>       >     >       >       >       >     >             >       >     https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>       >     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >     The Cache Coloring feature that you are trying to
>       configure is present
>       >     >       >       >       >     >             >       >     in xlnx_rebase_4.16, but not yet present upstream (there
>       is an
>       >     >       >       >       >     >             >       >     outstanding patch series to add cache coloring to Xen
>       upstream but it
>       >     >       >       >       >     >             >       >     hasn't been merged yet.)
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >     Anyway, if you are using xlnx_rebase_4.16 it doesn't
>       matter too much for
>       >     >       >       >       >     >             >       >     you as you already have Cache Coloring as a feature
>       there.
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >     I take you are using ImageBuilder to generate the boot
>       configuration? If
>       >     >       >       >       >     >             >       >     so, please post the ImageBuilder config file that you are
>       using.
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >       >     But from the boot message, it looks like the colors
>       configuration for
>       >     >       >       >       >     >             >       >     Dom0 is incorrect.
>       >     >       >       >       >     >             >       >
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >             >
>       >     >       >       >       >     >
>       >     >       >       >       >
>       >     >       >       >
>       >     >       >       >
>       >     >       >       >
>       >     >       >
>       >     >       >
>       >     >       >
>       >     >
>       >     >
>       >     >
>       >
> 
> 
> 

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-05  8:48  0%                                           ` Oleg Nikitenko
@ 2023-05-09  6:58  0%                                             ` Oleg Nikitenko
  2023-05-09 19:49  0%                                               ` Stefano Stabellini
  0 siblings, 1 reply; 200+ results
From: Oleg Nikitenko @ 2023-05-09  6:58 UTC (permalink / raw)
  To: Michal Orzel
  Cc: Stefano Stabellini, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand

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

Hello guys,

I have a couple of more questions.
Have you ever run xen with the cache coloring at Zynq UltraScale+ MPSoC
zcu102 xczu15eg ?
When did you run xen with the cache coloring last time ?
What kernel version did you use for Dom0 when you ran xen with the cache
coloring last time ?

Regards,
Oleg

пт, 5 мая 2023 г. в 11:48, Oleg Nikitenko <oleshiiwood@gmail.com>:

> Hi Michal,
>
> Thanks.
>
> Regards,
> Oleg
>
> пт, 5 мая 2023 г. в 11:34, Michal Orzel <michal.orzel@amd.com>:
>
>> Hi Oleg,
>>
>> Replying, so that you do not need to wait for Stefano.
>>
>> On 05/05/2023 10:28, Oleg Nikitenko wrote:
>> >
>> >
>> >
>> > Hello Stefano,
>> >
>> > I would like to try a xen cache color property from this repo
>> https://xenbits.xen.org/git-http/xen.git <
>> https://xenbits.xen.org/git-http/xen.git>
>> > Could you tell whot branch I should use ?
>> Cache coloring feature is not part of the upstream tree and it is still
>> under review.
>> You can only find it integrated in the Xilinx Xen tree.
>>
>> ~Michal
>>
>> >
>> > Regards,
>> > Oleg
>> >
>> > пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <sstabellini@kernel.org
>> <mailto:sstabellini@kernel.org>>:
>> >
>> >     I am familiar with the zcu102 but I don't know how you could
>> possibly
>> >     generate a SError.
>> >
>> >     I suggest to try to use ImageBuilder [1] to generate the boot
>> >     configuration as a test because that is known to work well for
>> zcu102.
>> >
>> >     [1] https://gitlab.com/xen-project/imagebuilder <
>> https://gitlab.com/xen-project/imagebuilder>
>> >
>> >
>> >     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
>> >     > Hello Stefano,
>> >     >
>> >     > Thanks for clarification.
>> >     > We nighter use ImageBuilder nor uboot boot script.
>> >     > A model is zcu102 compatible.
>> >     >
>> >     > Regards,
>> >     > O.
>> >     >
>> >     > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
>> >     >       This is interesting. Are you using Xilinx hardware by any
>> chance? If so,
>> >     >       which board?
>> >     >
>> >     >       Are you using ImageBuilder to generate your boot.scr boot
>> script? If so,
>> >     >       could you please post your ImageBuilder config file? If
>> not, can you
>> >     >       post the source of your uboot boot script?
>> >     >
>> >     >       SErrors are supposed to be related to a hardware failure of
>> some kind.
>> >     >       You are not supposed to be able to trigger an SError easily
>> by
>> >     >       "mistake". I have not seen SErrors due to wrong cache
>> coloring
>> >     >       configurations on any Xilinx board before.
>> >     >
>> >     >       The differences between Xen with and without cache coloring
>> from a
>> >     >       hardware perspective are:
>> >     >
>> >     >       - With cache coloring, the SMMU is enabled and does address
>> translations
>> >     >         even for dom0. Without cache coloring the SMMU could be
>> disabled, and
>> >     >         if enabled, the SMMU doesn't do any address translations
>> for Dom0. If
>> >     >         there is a hardware failure related to SMMU address
>> translation it
>> >     >         could only trigger with cache coloring. This would be my
>> normal
>> >     >         suggestion for you to explore, but the failure happens
>> too early
>> >     >         before any DMA-capable device is programmed. So I don't
>> think this can
>> >     >         be the issue.
>> >     >
>> >     >       - With cache coloring, the memory allocation is very
>> different so you'll
>> >     >         end up using different DDR regions for Dom0. So if your
>> DDR is
>> >     >         defective, you might only see a failure with cache
>> coloring enabled
>> >     >         because you end up using different regions.
>> >     >
>> >     >
>> >     >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
>> >     >       > Hi Stefano,
>> >     >       >
>> >     >       > Thank you.
>> >     >       > If I build xen without colors support there is not this
>> error.
>> >     >       > All the domains are booted well.
>> >     >       > Hense it can not be a hardware issue.
>> >     >       > This panic arrived during unpacking the rootfs.
>> >     >       > Here I attached the boot log xen/Dom0 without color.
>> >     >       > A highlighted strings printed exactly after the place
>> where 1-st time panic arrived.
>> >     >       >
>> >     >       >  Xen 4.16.1-pre
>> >     >       > (XEN) Xen version 4.16.1-pre (nole2390@(none))
>> (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y 2023-04-21
>> >     >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300
>> git:321687b231-dirty
>> >     >       > (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
>> >     >       > (XEN) Processor: 00000000410fd034: "ARM Limited",
>> variant: 0x0, part 0xd03,rev 0x4
>> >     >       > (XEN) 64-bit Execution:
>> >     >       > (XEN)   Processor Features: 0000000000002222
>> 0000000000000000
>> >     >       > (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32
>> EL0:64+32
>> >     >       > (XEN)     Extensions: FloatingPoint AdvancedSIMD
>> >     >       > (XEN)   Debug Features: 0000000010305106 0000000000000000
>> >     >       > (XEN)   Auxiliary Features: 0000000000000000
>> 0000000000000000
>> >     >       > (XEN)   Memory Model Features: 0000000000001122
>> 0000000000000000
>> >     >       > (XEN)   ISA Features:  0000000000011120 0000000000000000
>> >     >       > (XEN) 32-bit Execution:
>> >     >       > (XEN)   Processor Features:
>> 0000000000000131:0000000000011011
>> >     >       > (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2
>> Jazelle
>> >     >       > (XEN)     Extensions: GenericTimer Security
>> >     >       > (XEN)   Debug Features: 0000000003010066
>> >     >       > (XEN)   Auxiliary Features: 0000000000000000
>> >     >       > (XEN)   Memory Model Features: 0000000010201105
>> 0000000040000000
>> >     >       > (XEN)                          0000000001260000
>> 0000000002102211
>> >     >       > (XEN)   ISA Features: 0000000002101110 0000000013112111
>> 0000000021232042
>> >     >       > (XEN)                 0000000001112131 0000000000011142
>> 0000000000011121
>> >     >       > (XEN) Using SMC Calling Convention v1.2
>> >     >       > (XEN) Using PSCI v1.1
>> >     >       > (XEN) SMP: Allowing 4 CPUs
>> >     >       > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq:
>> 100000 KHz
>> >     >       > (XEN) GICv2 initialization:
>> >     >       > (XEN)         gic_dist_addr=00000000f9010000
>> >     >       > (XEN)         gic_cpu_addr=00000000f9020000
>> >     >       > (XEN)         gic_hyp_addr=00000000f9040000
>> >     >       > (XEN)         gic_vcpu_addr=00000000f9060000
>> >     >       > (XEN)         gic_maintenance_irq=25
>> >     >       > (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
>> >     >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
>> >     >       > (XEN) Using scheduler: null Scheduler (null)
>> >     >       > (XEN) Initializing null scheduler
>> >     >       > (XEN) WARNING: This is experimental software in
>> development.
>> >     >       > (XEN) Use at your own risk.
>> >     >       > (XEN) Allocated console ring of 32 KiB.
>> >     >       > (XEN) CPU0: Guest atomics will try 12 times before
>> pausing the domain
>> >     >       > (XEN) Bringing up CPU1
>> >     >       > (XEN) CPU1: Guest atomics will try 13 times before
>> pausing the domain
>> >     >       > (XEN) CPU 1 booted.
>> >     >       > (XEN) Bringing up CPU2
>> >     >       > (XEN) CPU2: Guest atomics will try 13 times before
>> pausing the domain
>> >     >       > (XEN) CPU 2 booted.
>> >     >       > (XEN) Bringing up CPU3
>> >     >       > (XEN) CPU3: Guest atomics will try 13 times before
>> pausing the domain
>> >     >       > (XEN) Brought up 4 CPUs
>> >     >       > (XEN) CPU 3 booted.
>> >     >       > (XEN) smmu: /axi/smmu@fd800000: probing hardware
>> configuration...
>> >     >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
>> >     >       > (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
>> >     >       > (XEN) smmu: /axi/smmu@fd800000: stream matching with 48
>> register groups, mask 0x7fff<2>smmu: /axi/smmu@fd800000: 16 context
>> >     >       banks (0
>> >     >       > stage-2 only)
>> >     >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA ->
>> 48-bit PA
>> >     >       > (XEN) smmu: /axi/smmu@fd800000: registered 29 master
>> devices
>> >     >       > (XEN) I/O virtualisation enabled
>> >     >       > (XEN)  - Dom0 mode: Relaxed
>> >     >       > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>> >     >       > (XEN) P2M: 3 levels with order-1 root, VTCR
>> 0x0000000080023558
>> >     >       > (XEN) Scheduling granularity: cpu, 1 CPU per
>> sched-resource
>> >     >       > (XEN) alternatives: Patching with alt table
>> 00000000002cc5c8 -> 00000000002ccb2c
>> >     >       > (XEN) *** LOADING DOMAIN 0 ***
>> >     >       > (XEN) Loading d0 kernel from boot module @
>> 0000000001000000
>> >     >       > (XEN) Loading ramdisk from boot module @ 0000000002000000
>> >     >       > (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
>> >     >       > (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
>> >     >       > (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
>> >     >       > (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
>> >     >       > (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
>> >     >       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr
>> 0x000000087bf94000
>> >     >       > (XEN) Allocating PPI 16 for event channel interrupt
>> >     >       > (XEN) Extended region 0: 0x81200000->0xa0000000
>> >     >       > (XEN) Extended region 1: 0xb1200000->0xc0000000
>> >     >       > (XEN) Extended region 2: 0xc8000000->0xe0000000
>> >     >       > (XEN) Extended region 3: 0xf0000000->0xf9000000
>> >     >       > (XEN) Extended region 4: 0x100000000->0x600000000
>> >     >       > (XEN) Extended region 5: 0x880000000->0x8000000000
>> >     >       > (XEN) Extended region 6: 0x8001000000->0x10000000000
>> >     >       > (XEN) Loading zImage from 0000000001000000 to
>> 0000000010000000-0000000010e41008
>> >     >       > (XEN) Loading d0 initrd from 0000000002000000 to
>> 0x0000000013600000-0x000000001ff3a617
>> >     >       > (XEN) Loading d0 DTB to
>> 0x0000000013400000-0x000000001340cbdc
>> >     >       > (XEN) Initial low memory virq threshold set at 0x4000
>> pages.
>> >     >       > (XEN) Std. Loglevel: All
>> >     >       > (XEN) Guest Loglevel: All
>> >     >       > (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times
>> to switch input)
>> >     >       > (XEN) null.c:353: 0 <-- d0v0
>> >     >       > (XEN) Freed 356kB init memory.
>> >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
>> >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
>> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
>> to ICACTIVER4
>> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
>> to ICACTIVER8
>> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
>> to ICACTIVER12
>> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
>> to ICACTIVER16
>> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
>> to ICACTIVER20
>> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
>> to ICACTIVER0
>> >     >       > [    0.000000] Booting Linux on physical CPU 0x0000000000
>> [0x410fd034]
>> >     >       > [    0.000000] Linux version 5.15.72-xilinx-v2022.1
>> (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC) 11.3.0, GNU ld (GNU
>> >     >       Binutils)
>> >     >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
>> >     >       > [    0.000000] Machine model: D14 Viper Board - White Unit
>> >     >       > [    0.000000] Xen 4.16 support found
>> >     >       > [    0.000000] Zone ranges:
>> >     >       > [    0.000000]   DMA      [mem
>> 0x0000000010000000-0x000000007fffffff]
>> >     >       > [    0.000000]   DMA32    empty
>> >     >       > [    0.000000]   Normal   empty
>> >     >       > [    0.000000] Movable zone start for each node
>> >     >       > [    0.000000] Early memory node ranges
>> >     >       > [    0.000000]   node   0: [mem
>> 0x0000000010000000-0x000000001fffffff]
>> >     >       > [    0.000000]   node   0: [mem
>> 0x0000000022000000-0x0000000022147fff]
>> >     >       > [    0.000000]   node   0: [mem
>> 0x0000000022200000-0x0000000022347fff]
>> >     >       > [    0.000000]   node   0: [mem
>> 0x0000000024000000-0x0000000027ffffff]
>> >     >       > [    0.000000]   node   0: [mem
>> 0x0000000030000000-0x000000007fffffff]
>> >     >       > [    0.000000] Initmem setup node 0 [mem
>> 0x0000000010000000-0x000000007fffffff]
>> >     >       > [    0.000000] On node 0, zone DMA: 8192 pages in
>> unavailable ranges
>> >     >       > [    0.000000] On node 0, zone DMA: 184 pages in
>> unavailable ranges
>> >     >       > [    0.000000] On node 0, zone DMA: 7352 pages in
>> unavailable ranges
>> >     >       > [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
>> >     >       > [    0.000000] psci: probing for conduit method from DT.
>> >     >       > [    0.000000] psci: PSCIv1.1 detected in firmware.
>> >     >       > [    0.000000] psci: Using standard PSCI v0.2 function IDs
>> >     >       > [    0.000000] psci: Trusted OS migration not required
>> >     >       > [    0.000000] psci: SMC Calling Convention v1.1
>> >     >       > [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0
>> d32744 u65536
>> >     >       > [    0.000000] Detected VIPT I-cache on CPU0
>> >     >       > [    0.000000] CPU features: kernel page table isolation
>> forced ON by KASLR
>> >     >       > [    0.000000] CPU features: detected: Kernel page table
>> isolation (KPTI)
>> >     >       > [    0.000000] Built 1 zonelists, mobility grouping on.
>> Total pages: 403845
>> >     >       > [    0.000000] Kernel command line: console=hvc0
>> earlycon=xen earlyprintk=xen clk_ignore_unused fips=1 root=/dev/ram0
>> >     >       maxcpus=2
>> >     >       > [    0.000000] Unknown kernel command line parameters
>> "earlyprintk=xen fips=1", will be passed to user space.
>> >     >       > [    0.000000] Dentry cache hash table entries: 262144
>> (order: 9, 2097152 bytes, linear)
>> >     >       > [    0.000000] Inode-cache hash table entries: 131072
>> (order: 8, 1048576 bytes, linear)
>> >     >       > [    0.000000] mem auto-init: stack:off, heap alloc:on,
>> heap free:on
>> >     >       > [    0.000000] mem auto-init: clearing system memory may
>> take some time...
>> >     >       > [    0.000000] Memory: 1121936K/1641024K available (9728K
>> kernel code, 836K rwdata, 2396K rodata, 1536K init, 262K bss,
>> >     >       256944K reserved,
>> >     >       > 262144K cma-reserved)
>> >     >       > [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0,
>> CPUs=2, Nodes=1
>> >     >       > [    0.000000] rcu: Hierarchical RCU implementation.
>> >     >       > [    0.000000] rcu: RCU event tracing is enabled.
>> >     >       > [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8
>> to nr_cpu_ids=2.
>> >     >       > [    0.000000] rcu: RCU calculated value of
>> scheduler-enlistment delay is 25 jiffies.
>> >     >       > [    0.000000] rcu: Adjusting geometry for
>> rcu_fanout_leaf=16, nr_cpu_ids=2
>> >     >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated
>> irqs: 0
>> >     >       > [    0.000000] Root IRQ handler: gic_handle_irq
>> >     >       > [    0.000000] arch_timer: cp15 timer(s) running at
>> 100.00MHz (virt).
>> >     >       > [    0.000000] clocksource: arch_sys_counter: mask:
>> 0xffffffffffffff max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
>> >     >       > [    0.000000] sched_clock: 56 bits at 100MHz, resolution
>> 10ns, wraps every 4398046511100ns
>> >     >       > [    0.000258] Console: colour dummy device 80x25
>> >     >       > [    0.310231] printk: console [hvc0] enabled
>> >     >       > [    0.314403] Calibrating delay loop (skipped), value
>> calculated using timer frequency.. 200.00 BogoMIPS (lpj=400000)
>> >     >       > [    0.324851] pid_max: default: 32768 minimum: 301
>> >     >       > [    0.329706] LSM: Security Framework initializing
>> >     >       > [    0.334204] Yama: becoming mindful.
>> >     >       > [    0.337865] Mount-cache hash table entries: 4096
>> (order: 3, 32768 bytes, linear)
>> >     >       > [    0.345180] Mountpoint-cache hash table entries: 4096
>> (order: 3, 32768 bytes, linear)
>> >     >       > [    0.354743] xen:grant_table: Grant tables using
>> version 1 layout
>> >     >       > [    0.359132] Grant table initialized
>> >     >       > [    0.362664] xen:events: Using FIFO-based ABI
>> >     >       > [    0.366993] Xen: initializing cpu0
>> >     >       > [    0.370515] rcu: Hierarchical SRCU implementation.
>> >     >       > [    0.375930] smp: Bringing up secondary CPUs ...
>> >     >       > (XEN) null.c:353: 1 <-- d0v1
>> >     >       > (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff
>> to ICACTIVER0
>> >     >       > [    0.382549] Detected VIPT I-cache on CPU1
>> >     >       > [    0.388712] Xen: initializing cpu1
>> >     >       > [    0.388743] CPU1: Booted secondary processor
>> 0x0000000001 [0x410fd034]
>> >     >       > [    0.388829] smp: Brought up 1 node, 2 CPUs
>> >     >       > [    0.406941] SMP: Total of 2 processors activated.
>> >     >       > [    0.411698] CPU features: detected: 32-bit EL0 Support
>> >     >       > [    0.416888] CPU features: detected: CRC32 instructions
>> >     >       > [    0.422121] CPU: All CPU(s) started at EL1
>> >     >       > [    0.426248] alternatives: patching kernel code
>> >     >       > [    0.431424] devtmpfs: initialized
>> >     >       > [    0.441454] KASLR enabled
>> >     >       > [    0.441602] clocksource: jiffies: mask: 0xffffffff
>> max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
>> >     >       > [    0.448321] futex hash table entries: 512 (order: 3,
>> 32768 bytes, linear)
>> >     >       > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE
>> protocol family
>> >     >       > [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool
>> for atomic allocations
>> >     >       > [    0.503772] DMA: preallocated 256 KiB
>> GFP_KERNEL|GFP_DMA pool for atomic allocations
>> >     >       > [    0.511610] DMA: preallocated 256 KiB
>> GFP_KERNEL|GFP_DMA32 pool for atomic allocations
>> >     >       > [    0.519478] audit: initializing netlink subsys
>> (disabled)
>> >     >       > [    0.524985] audit: type=2000 audit(0.336:1):
>> state=initialized audit_enabled=0 res=1
>> >     >       > [    0.529169] thermal_sys: Registered thermal governor
>> 'step_wise'
>> >     >       > [    0.533023] hw-breakpoint: found 6 breakpoint and 4
>> watchpoint registers.
>> >     >       > [    0.545608] ASID allocator initialised with 32768
>> entries
>> >     >       > [    0.551030] xen:swiotlb_xen: Warning: only able to
>> allocate 4 MB for software IO TLB
>> >     >       > [    0.559332] software IO TLB: mapped [mem
>> 0x0000000011800000-0x0000000011c00000] (4MB)
>> >     >       > [    0.583565] HugeTLB registered 1.00 GiB page size,
>> pre-allocated 0 pages
>> >     >       > [    0.584721] HugeTLB registered 32.0 MiB page size,
>> pre-allocated 0 pages
>> >     >       > [    0.591478] HugeTLB registered 2.00 MiB page size,
>> pre-allocated 0 pages
>> >     >       > [    0.598225] HugeTLB registered 64.0 KiB page size,
>> pre-allocated 0 pages
>> >     >       > [    0.636520] DRBG: Continuing without Jitter RNG
>> >     >       > [    0.737187] raid6: neonx8   gen()  2143 MB/s
>> >     >       > [    0.805294] raid6: neonx8   xor()  1589 MB/s
>> >     >       > [    0.873406] raid6: neonx4   gen()  2177 MB/s
>> >     >       > [    0.941499] raid6: neonx4   xor()  1556 MB/s
>> >     >       > [    1.009612] raid6: neonx2   gen()  2072 MB/s
>> >     >       > [    1.077715] raid6: neonx2   xor()  1430 MB/s
>> >     >       > [    1.145834] raid6: neonx1   gen()  1769 MB/s
>> >     >       > [    1.213935] raid6: neonx1   xor()  1214 MB/s
>> >     >       > [    1.282046] raid6: int64x8  gen()  1366 MB/s
>> >     >       > [    1.350132] raid6: int64x8  xor()   773 MB/s
>> >     >       > [    1.418259] raid6: int64x4  gen()  1602 MB/s
>> >     >       > [    1.486349] raid6: int64x4  xor()   851 MB/s
>> >     >       > [    1.554464] raid6: int64x2  gen()  1396 MB/s
>> >     >       > [    1.622561] raid6: int64x2  xor()   744 MB/s
>> >     >       > [    1.690687] raid6: int64x1  gen()  1033 MB/s
>> >     >       > [    1.758770] raid6: int64x1  xor()   517 MB/s
>> >     >       > [    1.758809] raid6: using algorithm neonx4 gen() 2177
>> MB/s
>> >     >       > [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
>> >     >       > [    1.767957] raid6: using neon recovery algorithm
>> >     >       > [    1.772824] xen:balloon: Initialising balloon driver
>> >     >       > [    1.778021] iommu: Default domain type: Translated
>> >     >       > [    1.782584] iommu: DMA domain TLB invalidation policy:
>> strict mode
>> >     >       > [    1.789149] SCSI subsystem initialized
>> >     >       > [    1.792820] usbcore: registered new interface driver
>> usbfs
>> >     >       > [    1.798254] usbcore: registered new interface driver
>> hub
>> >     >       > [    1.803626] usbcore: registered new device driver usb
>> >     >       > [    1.808761] pps_core: LinuxPPS API ver. 1 registered
>> >     >       > [    1.813716] pps_core: Software ver. 5.3.6 - Copyright
>> 2005-2007 Rodolfo Giometti <giometti@linux.it <mailto:giometti@linux.it>>
>> >     >       > [    1.822903] PTP clock support registered
>> >     >       > [    1.826893] EDAC MC: Ver: 3.0.0
>> >     >       > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400:
>> Registered ZynqMP IPI mbox with TX/RX channels.
>> >     >       > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600:
>> Registered ZynqMP IPI mbox with TX/RX channels.
>> >     >       > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800:
>> Registered ZynqMP IPI mbox with TX/RX channels.
>> >     >       > [    1.855907] FPGA manager framework
>> >     >       > [    1.859952] clocksource: Switched to clocksource
>> arch_sys_counter
>> >     >       > [    1.871712] NET: Registered PF_INET protocol family
>> >     >       > [    1.871838] IP idents hash table entries: 32768
>> (order: 6, 262144 bytes, linear)
>> >     >       > [    1.879392] tcp_listen_portaddr_hash hash table
>> entries: 1024 (order: 2, 16384 bytes, linear)
>> >     >       > [    1.887078] Table-perturb hash table entries: 65536
>> (order: 6, 262144 bytes, linear)
>> >     >       > [    1.894846] TCP established hash table entries: 16384
>> (order: 5, 131072 bytes, linear)
>> >     >       > [    1.902900] TCP bind hash table entries: 16384 (order:
>> 6, 262144 bytes, linear)
>> >     >       > [    1.910350] TCP: Hash tables configured (established
>> 16384 bind 16384)
>> >     >       > [    1.916778] UDP hash table entries: 1024 (order: 3,
>> 32768 bytes, linear)
>> >     >       > [    1.923509] UDP-Lite hash table entries: 1024 (order:
>> 3, 32768 bytes, linear)
>> >     >       > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol
>> family
>> >     >       > [    1.936834] RPC: Registered named UNIX socket
>> transport module.
>> >     >       > [    1.942342] RPC: Registered udp transport module.
>> >     >       > [    1.947088] RPC: Registered tcp transport module.
>> >     >       > [    1.951843] RPC: Registered tcp NFSv4.1 backchannel
>> transport module.
>> >     >       > [    1.958334] PCI: CLS 0 bytes, default 64
>> >     >       > [    1.962709] Trying to unpack rootfs image as
>> initramfs...
>> >     >       > [    1.977090] workingset: timestamp_bits=62 max_order=19
>> bucket_order=0
>> >     >       > [    1.982863] Installing knfsd (copyright (C) 1996
>> okir@monad.swb.de <mailto:okir@monad.swb.de>).
>> >     >       > [    2.021045] NET: Registered PF_ALG protocol family
>> >     >       > [    2.021122] xor: measuring software checksum speed
>> >     >       > [    2.029347]    8regs           :  2366 MB/sec
>> >     >       > [    2.033081]    32regs          :  2802 MB/sec
>> >     >       > [    2.038223]    arm64_neon      :  2320 MB/sec
>> >     >       > [    2.038385] xor: using function: 32regs (2802 MB/sec)
>> >     >       > [    2.043614] Block layer SCSI generic (bsg) driver
>> version 0.4 loaded (major 247)
>> >     >       > [    2.050959] io scheduler mq-deadline registered
>> >     >       > [    2.055521] io scheduler kyber registered
>> >     >       > [    2.068227] xen:xen_evtchn: Event-channel device
>> installed
>> >     >       > [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ
>> sharing disabled
>> >     >       > [    2.076190] cacheinfo: Unable to detect cache
>> hierarchy for CPU 0
>> >     >       > [    2.085548] brd: module loaded
>> >     >       > [    2.089290] loop: module loaded
>> >     >       > [    2.089341] Invalid max_queues (4), will use default
>> max: 2.
>> >     >       > [    2.094565] tun: Universal TUN/TAP device driver, 1.6
>> >     >       > [    2.098655] xen_netfront: Initialising Xen virtual
>> ethernet driver
>> >     >       > [    2.104156] usbcore: registered new interface driver
>> rtl8150
>> >     >       > [    2.109813] usbcore: registered new interface driver
>> r8152
>> >     >       > [    2.115367] usbcore: registered new interface driver
>> asix
>> >     >       > [    2.120794] usbcore: registered new interface driver
>> ax88179_178a
>> >     >       > [    2.126934] usbcore: registered new interface driver
>> cdc_ether
>> >     >       > [    2.132816] usbcore: registered new interface driver
>> cdc_eem
>> >     >       > [    2.138527] usbcore: registered new interface driver
>> net1080
>> >     >       > [    2.144256] usbcore: registered new interface driver
>> cdc_subset
>> >     >       > [    2.150205] usbcore: registered new interface driver
>> zaurus
>> >     >       > [    2.155837] usbcore: registered new interface driver
>> cdc_ncm
>> >     >       > [    2.161550] usbcore: registered new interface driver
>> r8153_ecm
>> >     >       > [    2.168240] usbcore: registered new interface driver
>> cdc_acm
>> >     >       > [    2.173109] cdc_acm: USB Abstract Control Model driver
>> for USB modems and ISDN adapters
>> >     >       > [    2.181358] usbcore: registered new interface driver
>> uas
>> >     >       > [    2.186547] usbcore: registered new interface driver
>> usb-storage
>> >     >       > [    2.192643] usbcore: registered new interface driver
>> ftdi_sio
>> >     >       > [    2.198384] usbserial: USB Serial support registered
>> for FTDI USB Serial Device
>> >     >       > [    2.206118] udc-core: couldn't find an available UDC -
>> added [g_mass_storage] to list of pending drivers
>> >     >       > [    2.215332] i2c_dev: i2c /dev entries driver
>> >     >       > [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s,
>> nowayout=0)
>> >     >       > [    2.225923] device-mapper: uevent: version 1.0.3
>> >     >       > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl
>> (2021-03-22) initialised: dm-devel@redhat.com <mailto:dm-devel@redhat.com
>> >
>> >     >       > [    2.239315] EDAC MC0: Giving out device to module 1
>> controller synps_ddr_controller: DEV synps_edac (INTERRUPT)
>> >     >       > [    2.249405] EDAC DEVICE0: Giving out device to module
>> zynqmp-ocm-edac controller zynqmp_ocm: DEV
>> >     >       ff960000.memory-controller (INTERRUPT)
>> >     >       > [    2.261719] sdhci: Secure Digital Host Controller
>> Interface driver
>> >     >       > [    2.267487] sdhci: Copyright(c) Pierre Ossman
>> >     >       > [    2.271890] sdhci-pltfm: SDHCI platform and OF driver
>> helper
>> >     >       > [    2.278157] ledtrig-cpu: registered to indicate
>> activity on CPUs
>> >     >       > [    2.283816] zynqmp_firmware_probe Platform Management
>> API v1.1
>> >     >       > [    2.289554] zynqmp_firmware_probe Trustzone version
>> v1.0
>> >     >       > [    2.327875] securefw securefw: securefw probed
>> >     >       > [    2.328324] alg: No test for xilinx-zynqmp-aes
>> (zynqmp-aes)
>> >     >       > [    2.332563] zynqmp_aes
>> firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
>> >     >       > [    2.341183] alg: No test for xilinx-zynqmp-rsa
>> (zynqmp-rsa)
>> >     >       > [    2.347667] remoteproc remoteproc0:
>> ff9a0000.rf5ss:r5f_0 is available
>> >     >       > [    2.353003] remoteproc remoteproc1:
>> ff9a0000.rf5ss:r5f_1 is available
>> >     >       > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA
>> Manager registered
>> >     >       > [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen
>> Proxy registered
>> >     >       > [    2.372525] viper-vdpp a4000000.vdpp: Device Tree
>> Probing
>> >     >       > [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version:
>> 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>> >     >       > [    2.386432] viper-vdpp a4000000.vdpp: Unable to
>> register tamper handler. Retrying...
>> >     >       > [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device
>> Tree Probing
>> >     >       > [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device
>> registered
>> >     >       > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device
>> Tree Probing
>> >     >       > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build
>> parameters: VTI Count: 512 Event Count: 32
>> >     >       > [    2.420856] default preset
>> >     >       > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device
>> registered
>> >     >       > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device
>> Tree Probing
>> >     >       > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device
>> registered
>> >     >       > [    2.441976] vmcu driver init
>> >     >       > [    2.444922] VMCU: : (240:0) registered
>> >     >       > [    2.444956] In K81 Updater init
>> >     >       > [    2.449003] pktgen: Packet Generator for packet
>> performance testing. Version: 2.75
>> >     >       > [    2.468833] Initializing XFRM netlink socket
>> >     >       > [    2.468902] NET: Registered PF_PACKET protocol family
>> >     >       > [    2.472729] Bridge firewalling registered
>> >     >       > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
>> >     >       > [    2.481341] registered taskstats version 1
>> >     >       > [    2.486394] Btrfs loaded, crc32c=crc32c-generic,
>> zoned=no, fsverity=no
>> >     >       > [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000
>> (irq = 36, base_baud = 6250000) is a xuartps
>> >     >       > [    2.507103] of-fpga-region fpga-full: FPGA Region
>> probed
>> >     >       > [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller:
>> ZynqMP DMA driver Probe success
>> >     >       > [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller:
>> ZynqMP DMA driver Probe success
>> >     >       > [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller:
>> ZynqMP DMA driver Probe success
>> >     >       > [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller:
>> ZynqMP DMA driver Probe success
>> >     >       > [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller:
>> ZynqMP DMA driver Probe success
>> >     >       > [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller:
>> ZynqMP DMA driver Probe success
>> >     >       > [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller:
>> ZynqMP DMA driver Probe success
>> >     >       > [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller:
>> ZynqMP DMA driver Probe success
>> >     >       > [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller:
>> ZynqMP DMA driver Probe success
>> >     >       > [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller:
>> ZynqMP DMA driver Probe success
>> >     >       > [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
>> >     >       > [    2.946467] 2 fixed-partitions partitions found on MTD
>> device spi0.0
>> >     >       > [    2.952393] Creating 2 MTD partitions on "spi0.0":
>> >     >       > [    2.957231] 0x000004000000-0x000008000000 : "bank A"
>> >     >       > [    2.963332] 0x000000000000-0x000004000000 : "bank B"
>> >     >       > [    2.968694] macb ff0b0000.ethernet: Not enabling
>> partial store and forward
>> >     >       > [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM
>> rev 0x50070106 at 0xff0b0000 irq 25 (18:41:fe:0f:ff:02)
>> >     >       > [    2.984472] macb ff0c0000.ethernet: Not enabling
>> partial store and forward
>> >     >       > [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM
>> rev 0x50070106 at 0xff0c0000 irq 26 (18:41:fe:0f:ff:03)
>> >     >       > [    3.001043] viper_enet viper_enet: Viper power GPIOs
>> initialised
>> >     >       > [    3.007313] viper_enet viper_enet vnet0
>> (uninitialized): Validate interface QSGMII
>> >     >       > [    3.014914] viper_enet viper_enet vnet1
>> (uninitialized): Validate interface QSGMII
>> >     >       > [    3.022138] viper_enet viper_enet vnet1
>> (uninitialized): Validate interface type 18
>> >     >       > [    3.030274] viper_enet viper_enet vnet2
>> (uninitialized): Validate interface QSGMII
>> >     >       > [    3.037785] viper_enet viper_enet vnet3
>> (uninitialized): Validate interface QSGMII
>> >     >       > [    3.045301] viper_enet viper_enet: Viper enet
>> registered
>> >     >       > [    3.050958] xilinx-axipmon ffa00000.perf-monitor:
>> Probed Xilinx APM
>> >     >       > [    3.057135] xilinx-axipmon fd0b0000.perf-monitor:
>> Probed Xilinx APM
>> >     >       > [    3.063538] xilinx-axipmon fd490000.perf-monitor:
>> Probed Xilinx APM
>> >     >       > [    3.069920] xilinx-axipmon ffa10000.perf-monitor:
>> Probed Xilinx APM
>> >     >       > [    3.097729] si70xx: probe of 2-0040 failed with error
>> -5
>> >     >       > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx
>> Watchdog Timer with timeout 60s
>> >     >       > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx
>> Watchdog Timer with timeout 10s
>> >     >       > [    3.112457] viper-tamper viper-tamper: Device
>> registered
>> >     >       > [    3.117593] active_bank active_bank: boot bank: 1
>> >     >       > [    3.122184] active_bank active_bank: boot mode: (0x02)
>> qspi32
>> >     >       > [    3.128247] viper-vdpp a4000000.vdpp: Device Tree
>> Probing
>> >     >       > [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version:
>> 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>> >     >       > [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler
>> registered
>> >     >       > [    3.147438] viper-vdpp a4000000.vdpp: Device registered
>> >     >       > [    3.153007] lpc55_l2 spi1.0: registered handler for
>> protocol 0
>> >     >       > [    3.158582] lpc55_user lpc55_user: The major number
>> for your device is 236
>> >     >       > [    3.165976] lpc55_l2 spi1.0: registered handler for
>> protocol 1
>> >     >       > [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time:
>> bad result: 1
>> >     >       > [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
>> >     >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
>> >     >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
>> >     >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
>> >     >       > [    3.202932] mmc0: SDHCI controller on ff160000.mmc
>> [ff160000.mmc] using ADMA 64-bit
>> >     >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
>> >     >       > [    3.215694] lpc55_l2 spi1.0: rx error: -110
>> >     >       > [    3.284438] mmc0: new HS200 MMC card at address 0001
>> >     >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
>> >     >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
>> >     >       > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
>> >     >       > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
>> >     >       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB,
>> chardev (244:0)
>> >     >       > [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time:
>> bad result: 1
>> >     >       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to
>> read the hardware clock
>> >     >       > [    3.591252] cdns-i2c ff020000.i2c: recovery
>> information complete
>> >     >       > [    3.597085] at24 0-0050: supply vcc not found, using
>> dummy regulator
>> >     >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
>> >     >       > [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
>> >     >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
>> >     >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
>> >     >       > [    3.624224] rtc-rv3028 0-0052: registered as rtc1
>> >     >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
>> >     >       > [    3.633253] lpc55_l2 spi1.0: rx error: -110
>> >     >       > [    3.639104] k81_bootloader 0-0010: probe
>> >     >       > [    3.641628] VMCU: : (235:0) registered
>> >     >       > [    3.641635] k81_bootloader 0-0010: probe completed
>> >     >       > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio
>> ff020000 irq 28
>> >     >       > [    3.669154] cdns-i2c ff030000.i2c: recovery
>> information complete
>> >     >       > [    3.675412] lm75 1-0048: supply vs not found, using
>> dummy regulator
>> >     >       > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
>> >     >       > [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
>> >     >       > [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
>> >     >       > [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
>> >     >       > [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
>> >     >       > [    3.705157] pca954x 1-0070: registered 4 multiplexed
>> busses for I2C switch pca9546
>> >     >       > [    3.713049] at24 1-0054: supply vcc not found, using
>> dummy regulator
>> >     >       > [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM,
>> read-only
>> >     >       > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio
>> ff030000 irq 29
>> >     >       > [    3.731272] sfp viper_enet:sfp-eth1: Host maximum
>> power 2.0W
>> >     >       > [    3.737549] sfp_register_socket: got sfp_bus
>> >     >       > [    3.740709] sfp_register_socket: register sfp_bus
>> >     >       > [    3.745459] sfp_register_bus: ops ok!
>> >     >       > [    3.749179] sfp_register_bus: Try to attach
>> >     >       > [    3.753419] sfp_register_bus: Attach succeeded
>> >     >       > [    3.757914] sfp_register_bus: upstream ops attach
>> >     >       > [    3.762677] sfp_register_bus: Bus registered
>> >     >       > [    3.766999] sfp_register_socket: register sfp_bus
>> succeeded
>> >     >       > [    3.775870] of_cfs_init
>> >     >       > [    3.776000] of_cfs_init: OK
>> >     >       > [    3.778211] clk: Not disabling unused clocks
>> >     >       > [   11.278477] Freeing initrd memory: 206056K
>> >     >       > [   11.279406] Freeing unused kernel memory: 1536K
>> >     >       > [   11.314006] Checked W+X mappings: passed, no W+X pages
>> found
>> >     >       > [   11.314142] Run /init as init process
>> >     >       > INIT: version 3.01 booting
>> >     >       > fsck (busybox 1.35.0)
>> >     >       > /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600
>> blocks
>> >     >       > /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600
>> blocks
>> >     >       > /dev/mmcblk0p3 was not cleanly unmounted, check forced.
>> >     >       > /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous),
>> 663/16384 blocks
>> >     >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem
>> without journal. Opts: (null). Quota mode: disabled.
>> >     >       > Starting random number generator daemon.
>> >     >       > [   11.580662] random: crng init done
>> >     >       > Starting udev
>> >     >       > [   11.613159] udevd[142]: starting version 3.2.10
>> >     >       > [   11.620385] udevd[143]: starting eudev-3.2.10
>> >     >       > [   11.704481] macb ff0b0000.ethernet control_red:
>> renamed from eth0
>> >     >       > [   11.720264] macb ff0c0000.ethernet control_black:
>> renamed from eth1
>> >     >       > [   12.063396] ip_local_port_range: prefer different
>> parity for start/end values.
>> >     >       > [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time:
>> bad result: 1
>> >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>> >     >       > Mon Feb 27 08:40:53 UTC 2023
>> >     >       > [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time:
>> bad result
>> >     >       > hwclock: RTC_SET_TIME: Invalid exchange
>> >     >       > [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time:
>> bad result: 1
>> >     >       > Starting mcud
>> >     >       > INIT: Entering runlevel: 5
>> >     >       > Configuring network interfaces... done.
>> >     >       > resetting network interface
>> >     >       > [   12.718295] macb ff0b0000.ethernet control_red: PHY
>> [ff0b0000.ethernet-ffffffff:02] driver [Xilinx PCS/PMA PHY] (irq=POLL)
>> >     >       > [   12.723919] macb ff0b0000.ethernet control_red:
>> configuring for phy/gmii link mode
>> >     >       > [   12.732151] pps pps0: new PPS source ptp0
>> >     >       > [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp
>> clock registered.
>> >     >       > [   12.745724] macb ff0c0000.ethernet control_black: PHY
>> [ff0c0000.ethernet-ffffffff:01] driver [Xilinx PCS/PMA PHY]
>> >     >       (irq=POLL)
>> >     >       > [   12.753469] macb ff0c0000.ethernet control_black:
>> configuring for phy/gmii link mode
>> >     >       > [   12.761804] pps pps1: new PPS source ptp1
>> >     >       > [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp
>> clock registered.
>> >     >       > Auto-negotiation: off
>> >     >       > Auto-negotiation: off
>> >     >       > [   16.828151] macb ff0b0000.ethernet control_red: unable
>> to generate target frequency: 125000000 Hz
>> >     >       > [   16.834553] macb ff0b0000.ethernet control_red: Link
>> is Up - 1Gbps/Full - flow control off
>> >     >       > [   16.860552] macb ff0c0000.ethernet control_black:
>> unable to generate target frequency: 125000000 Hz
>> >     >       > [   16.867052] macb ff0c0000.ethernet control_black: Link
>> is Up - 1Gbps/Full - flow control off
>> >     >       > Starting Failsafe Secure Shell server in port 2222: sshd
>> >     >       > done.
>> >     >       > Starting rpcbind daemon...done.
>> >     >       >
>> >     >       > [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time:
>> bad result: 1
>> >     >       > hwclock: RTC_RD_TIME: Invalid exchange
>> >     >       > Starting State Manager Service
>> >     >       > Start state-manager restarter...
>> >     >       > (XEN) d0v1 Forwarding AES operation: 3254779951
>> >     >       > Starting /usr/sbin/xenstored....[   17.265256] BTRFS:
>> device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa devid 1 transid 744
>> >     >       /dev/dm-0
>> >     >       > scanned by udevd (385)
>> >     >       > [   17.349933] BTRFS info (device dm-0): disk space
>> caching is enabled
>> >     >       > [   17.350670] BTRFS info (device dm-0): has skinny
>> extents
>> >     >       > [   17.364384] BTRFS info (device dm-0): enabling ssd
>> optimizations
>> >     >       > [   17.830462] BTRFS: device fsid
>> 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
>> /dev/mapper/client_prov scanned by
>> >     >       mkfs.btrfs
>> >     >       > (526)
>> >     >       > [   17.872699] BTRFS info (device dm-1): using free space
>> tree
>> >     >       > [   17.872771] BTRFS info (device dm-1): has skinny
>> extents
>> >     >       > [   17.878114] BTRFS info (device dm-1): flagging fs with
>> big metadata feature
>> >     >       > [   17.894289] BTRFS info (device dm-1): enabling ssd
>> optimizations
>> >     >       > [   17.895695] BTRFS info (device dm-1): checking UUID
>> tree
>> >     >       >
>> >     >       > Setting domain 0 name, domid and JSON config...
>> >     >       > Done setting up Dom0
>> >     >       > Starting xenconsoled...
>> >     >       > Starting QEMU as disk backend for dom0
>> >     >       > Starting domain watchdog daemon: xenwatchdogd startup
>> >     >       >
>> >     >       > [   18.408647] BTRFS: device fsid
>> 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
>> /dev/mapper/client_config scanned by
>> >     >       mkfs.btrfs
>> >     >       > (574)
>> >     >       > [done]
>> >     >       > [   18.465552] BTRFS info (device dm-2): using free space
>> tree
>> >     >       > [   18.465629] BTRFS info (device dm-2): has skinny
>> extents
>> >     >       > [   18.471002] BTRFS info (device dm-2): flagging fs with
>> big metadata feature
>> >     >       > Starting crond: [   18.482371] BTRFS info (device dm-2):
>> enabling ssd optimizations
>> >     >       > [   18.486659] BTRFS info (device dm-2): checking UUID
>> tree
>> >     >       > OK
>> >     >       > starting rsyslogd ... Log partition ready after 0 poll
>> loops
>> >     >       > done
>> >     >       > rsyslogd: cannot connect to 172.18.0.1:514 <
>> http://172.18.0.1:514>: Network is unreachable [v8.2208.0 try
>> https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> ]
>> >     >       > [   18.670637] BTRFS: device fsid
>> 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3 scanned
>> by udevd (518)
>> >     >       >
>> >     >       > Please insert USB token and enter your role in login
>> prompt.
>> >     >       >
>> >     >       > login:
>> >     >       >
>> >     >       > Regards,
>> >     >       > O.
>> >     >       >
>> >     >       >
>> >     >       > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <
>> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
>> >     >       >       Hi Oleg,
>> >     >       >
>> >     >       >       Here is the issue from your logs:
>> >     >       >
>> >     >       >       SError Interrupt on CPU0, code 0xbe000000 -- SError
>> >     >       >
>> >     >       >       SErrors are special signals to notify software of
>> serious hardware
>> >     >       >       errors.  Something is going very wrong. Defective
>> hardware is a
>> >     >       >       possibility.  Another possibility if software
>> accessing address ranges
>> >     >       >       that it is not supposed to, sometimes it causes
>> SErrors.
>> >     >       >
>> >     >       >       Cheers,
>> >     >       >
>> >     >       >       Stefano
>> >     >       >
>> >     >       >
>> >     >       >
>> >     >       >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
>> >     >       >
>> >     >       >       > Hello,
>> >     >       >       >
>> >     >       >       > Thanks guys.
>> >     >       >       > I found out where the problem was.
>> >     >       >       > Now dom0 booted more. But I have a new one.
>> >     >       >       > This is a kernel panic during Dom0 loading.
>> >     >       >       > Maybe someone is able to suggest something ?
>> >     >       >       >
>> >     >       >       > Regards,
>> >     >       >       > O.
>> >     >       >       >
>> >     >       >       > [    3.771362] sfp_register_bus: upstream ops
>> attach
>> >     >       >       > [    3.776119] sfp_register_bus: Bus registered
>> >     >       >       > [    3.780459] sfp_register_socket: register
>> sfp_bus succeeded
>> >     >       >       > [    3.789399] of_cfs_init
>> >     >       >       > [    3.789499] of_cfs_init: OK
>> >     >       >       > [    3.791685] clk: Not disabling unused clocks
>> >     >       >       > [   11.010355] SError Interrupt on CPU0, code
>> 0xbe000000 -- SError
>> >     >       >       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0
>> Not tainted 5.15.72-xilinx-v2022.1 #1
>> >     >       >       > [   11.010393] Workqueue: events_unbound
>> async_run_entry_fn
>> >     >       >       > [   11.010414] pstate: 60000005 (nZCv daif -PAN
>> -UAO -TCO -DIT -SSBS BTYPE=--)
>> >     >       >       > [   11.010422] pc : simple_write_end+0xd0/0x130
>> >     >       >       > [   11.010431] lr :
>> generic_perform_write+0x118/0x1e0
>> >     >       >       > [   11.010438] sp : ffffffc00809b910
>> >     >       >       > [   11.010441] x29: ffffffc00809b910 x28:
>> 0000000000000000 x27: ffffffef69ba88c0
>> >     >       >       > [   11.010451] x26: 0000000000003eec x25:
>> ffffff807515db00 x24: 0000000000000000
>> >     >       >       > [   11.010459] x23: ffffffc00809ba90 x22:
>> 0000000002aac000 x21: ffffff807315a260
>> >     >       >       > [   11.010472] x20: 0000000000001000 x19:
>> fffffffe02000000 x18: 0000000000000000
>> >     >       >       > [   11.010481] x17: 00000000ffffffff x16:
>> 0000000000008000 x15: 0000000000000000
>> >     >       >       > [   11.010490] x14: 0000000000000000 x13:
>> 0000000000000000 x12: 0000000000000000
>> >     >       >       > [   11.010498] x11: 0000000000000000 x10:
>> 0000000000000000 x9 : 0000000000000000
>> >     >       >       > [   11.010507] x8 : 0000000000000000 x7 :
>> ffffffef693ba680 x6 : 000000002d89b700
>> >     >       >       > [   11.010515] x5 : fffffffe02000000 x4 :
>> ffffff807315a3c8 x3 : 0000000000001000
>> >     >       >       > [   11.010524] x2 : 0000000002aab000 x1 :
>> 0000000000000001 x0 : 0000000000000005
>> >     >       >       > [   11.010534] Kernel panic - not syncing:
>> Asynchronous SError Interrupt
>> >     >       >       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0
>> Not tainted 5.15.72-xilinx-v2022.1 #1
>> >     >       >       > [   11.010545] Hardware name: D14 Viper Board -
>> White Unit (DT)
>> >     >       >       > [   11.010548] Workqueue: events_unbound
>> async_run_entry_fn
>> >     >       >       > [   11.010556] Call trace:
>> >     >       >       > [   11.010558]  dump_backtrace+0x0/0x1c4
>> >     >       >       > [   11.010567]  show_stack+0x18/0x2c
>> >     >       >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
>> >     >       >       > [   11.010583]  dump_stack+0x18/0x34
>> >     >       >       > [   11.010588]  panic+0x14c/0x2f8
>> >     >       >       > [   11.010597]  print_tainted+0x0/0xb0
>> >     >       >       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
>> >     >       >       > [   11.010614]  do_serror+0x28/0x60
>> >     >       >       > [   11.010621]  el1h_64_error_handler+0x30/0x50
>> >     >       >       > [   11.010628]  el1h_64_error+0x78/0x7c
>> >     >       >       > [   11.010633]  simple_write_end+0xd0/0x130
>> >     >       >       > [   11.010639]  generic_perform_write+0x118/0x1e0
>> >     >       >       > [   11.010644]
>>  __generic_file_write_iter+0x138/0x1c4
>> >     >       >       > [   11.010650]  generic_file_write_iter+0x78/0xd0
>> >     >       >       > [   11.010656]  __kernel_write+0xfc/0x2ac
>> >     >       >       > [   11.010665]  kernel_write+0x88/0x160
>> >     >       >       > [   11.010673]  xwrite+0x44/0x94
>> >     >       >       > [   11.010680]  do_copy+0xa8/0x104
>> >     >       >       > [   11.010686]  write_buffer+0x38/0x58
>> >     >       >       > [   11.010692]  flush_buffer+0x4c/0xbc
>> >     >       >       > [   11.010698]  __gunzip+0x280/0x310
>> >     >       >       > [   11.010704]  gunzip+0x1c/0x28
>> >     >       >       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
>> >     >       >       > [   11.010715]  do_populate_rootfs+0x80/0x164
>> >     >       >       > [   11.010722]  async_run_entry_fn+0x48/0x164
>> >     >       >       > [   11.010728]  process_one_work+0x1e4/0x3a0
>> >     >       >       > [   11.010736]  worker_thread+0x7c/0x4c0
>> >     >       >       > [   11.010743]  kthread+0x120/0x130
>> >     >       >       > [   11.010750]  ret_from_fork+0x10/0x20
>> >     >       >       > [   11.010757] SMP: stopping secondary CPUs
>> >     >       >       > [   11.010784] Kernel Offset: 0x2f61200000 from
>> 0xffffffc008000000
>> >     >       >       > [   11.010788] PHYS_OFFSET: 0x0
>> >     >       >       > [   11.010790] CPU features: 0x00000401,00000842
>> >     >       >       > [   11.010795] Memory Limit: none
>> >     >       >       > [   11.277509] ---[ end Kernel panic - not
>> syncing: Asynchronous SError Interrupt ]---
>> >     >       >       >
>> >     >       >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <
>> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
>> >     >       >       >       Hi Oleg,
>> >     >       >       >
>> >     >       >       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
>> >     >       >       >       >
>> >     >       >       >       >
>> >     >       >       >       >
>> >     >       >       >       > Hello Michal,
>> >     >       >       >       >
>> >     >       >       >       > I was not able to enable earlyprintk in
>> the xen for now.
>> >     >       >       >       > I decided to choose another way.
>> >     >       >       >       > This is a xen's command line that I found
>> out completely.
>> >     >       >       >       >
>> >     >       >       >       > (XEN) $$$$ console=dtuart dtuart=serial0
>> dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin bootscrub=0
>> >     >       vwfi=native
>> >     >       >       sched=null
>> >     >       >       >       timer_slop=0
>> >     >       >       >       Yes, adding a printk() in Xen was also a
>> good idea.
>> >     >       >       >
>> >     >       >       >       >
>> >     >       >       >       > So you are absolutely right about a
>> command line.
>> >     >       >       >       > Now I am going to find out why xen did
>> not have the correct parameters from the device tree.
>> >     >       >       >       Maybe you will find this document helpful:
>> >     >       >       >
>> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
>> <
>> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
>> >
>> >     >       >       >
>> >     >       >       >       ~Michal
>> >     >       >       >
>> >     >       >       >       >
>> >     >       >       >       > Regards,
>> >     >       >       >       > Oleg
>> >     >       >       >       >
>> >     >       >       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel
>> <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
>> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
>> >     >       >       >       >
>> >     >       >       >       >
>> >     >       >       >       >     On 21/04/2023 10:04, Oleg Nikitenko
>> wrote:
>> >     >       >       >       >     >
>> >     >       >       >       >     >
>> >     >       >       >       >     >
>> >     >       >       >       >     > Hello Michal,
>> >     >       >       >       >     >
>> >     >       >       >       >     > Yes, I use yocto.
>> >     >       >       >       >     >
>> >     >       >       >       >     > Yesterday all day long I tried to
>> follow your suggestions.
>> >     >       >       >       >     > I faced a problem.
>> >     >       >       >       >     > Manually in the xen config build
>> file I pasted the strings:
>> >     >       >       >       >     In the .config file or in some Yocto
>> file (listing additional Kconfig options) added to SRC_URI?
>> >     >       >       >       >     You shouldn't really modify .config
>> file but if you do, you should execute "make olddefconfig"
>> >     >       afterwards.
>> >     >       >       >       >
>> >     >       >       >       >     >
>> >     >       >       >       >     > CONFIG_EARLY_PRINTK
>> >     >       >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
>> >     >       >       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
>> >     >       >       >       >     I hope you added =y to them.
>> >     >       >       >       >
>> >     >       >       >       >     Anyway, you have at least the
>> following solutions:
>> >     >       >       >       >     1) Run bitbake xen -c menuconfig to
>> properly set early printk
>> >     >       >       >       >     2) Find out how you enable other
>> Kconfig options in your project (e.g. CONFIG_COLORING=y that is not
>> >     >       enabled by
>> >     >       >       default)
>> >     >       >       >       >     3) Append the following to
>> "xen/arch/arm/configs/arm64_defconfig":
>> >     >       >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
>> >     >       >       >       >
>> >     >       >       >       >     ~Michal
>> >     >       >       >       >
>> >     >       >       >       >     >
>> >     >       >       >       >     > Host hangs in build time.
>> >     >       >       >       >     > Maybe I did not set something in
>> the config build file ?
>> >     >       >       >       >     >
>> >     >       >       >       >     > Regards,
>> >     >       >       >       >     > Oleg
>> >     >       >       >       >     >
>> >     >       >       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg
>> Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
>> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>> >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>>>>:
>> >     >       >       >       >     >
>> >     >       >       >       >     >     Thanks Michal,
>> >     >       >       >       >     >
>> >     >       >       >       >     >     You gave me an idea.
>> >     >       >       >       >     >     I am going to try it today.
>> >     >       >       >       >     >
>> >     >       >       >       >     >     Regards,
>> >     >       >       >       >     >     O.
>> >     >       >       >       >     >
>> >     >       >       >       >     >     чт, 20 апр. 2023 г. в 11:56,
>> Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>> >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>>>>:
>> >     >       >       >       >     >
>> >     >       >       >       >     >         Thanks Stefano.
>> >     >       >       >       >     >
>> >     >       >       >       >     >         I am going to do it today.
>> >     >       >       >       >     >
>> >     >       >       >       >     >         Regards,
>> >     >       >       >       >     >         O.
>> >     >       >       >       >     >
>> >     >       >       >       >     >         ср, 19 апр. 2023 г. в
>> 23:05, Stefano Stabellini <sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>
>> >     >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>>
>> >     >       >       >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>>>>:
>> >     >       >       >       >     >
>> >     >       >       >       >     >             On Wed, 19 Apr 2023,
>> Oleg Nikitenko wrote:
>> >     >       >       >       >     >             > Hi Michal,
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             > I corrected xen's
>> command line.
>> >     >       >       >       >     >             > Now it is
>> >     >       >       >       >     >             > xen,xen-bootargs =
>> "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
>> >     >       dom0_vcpus_pin
>> >     >       >       >       bootscrub=0 vwfi=native sched=null
>> >     >       >       >       >     >             > timer_slop=0
>> way_size=65536 xen_colors=0-3 dom0_colors=4-7";
>> >     >       >       >       >     >
>> >     >       >       >       >     >             4 colors is way too
>> many for xen, just do xen_colors=0-0. There is no
>> >     >       >       >       >     >             advantage in using more
>> than 1 color for Xen.
>> >     >       >       >       >     >
>> >     >       >       >       >     >             4 colors is too few for
>> dom0, if you are giving 1600M of memory to Dom0.
>> >     >       >       >       >     >             Each color is 256M. For
>> 1600M you should give at least 7 colors. Try:
>> >     >       >       >       >     >
>> >     >       >       >       >     >             xen_colors=0-0
>> dom0_colors=1-8
>> >     >       >       >       >     >
>> >     >       >       >       >     >
>> >     >       >       >       >     >
>> >     >       >       >       >     >             > Unfortunately the
>> result was the same.
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             > (XEN)  - Dom0 mode:
>> Relaxed
>> >     >       >       >       >     >             > (XEN) P2M: 40-bit IPA
>> with 40-bit PA and 8-bit VMID
>> >     >       >       >       >     >             > (XEN) P2M: 3 levels
>> with order-1 root, VTCR 0x0000000080023558
>> >     >       >       >       >     >             > (XEN) Scheduling
>> granularity: cpu, 1 CPU per sched-resource
>> >     >       >       >       >     >             > (XEN) Coloring
>> general information
>> >     >       >       >       >     >             > (XEN) Way size: 64kB
>> >     >       >       >       >     >             > (XEN) Max. number of
>> colors available: 16
>> >     >       >       >       >     >             > (XEN) Xen color(s): [
>> 0 ]
>> >     >       >       >       >     >             > (XEN) alternatives:
>> Patching with alt table 00000000002cc690 -> 00000000002ccc0c
>> >     >       >       >       >     >             > (XEN) Color array
>> allocation failed for dom0
>> >     >       >       >       >     >             > (XEN)
>> >     >       >       >       >     >             > (XEN)
>> ****************************************
>> >     >       >       >       >     >             > (XEN) Panic on CPU 0:
>> >     >       >       >       >     >             > (XEN) Error creating
>> domain 0
>> >     >       >       >       >     >             > (XEN)
>> ****************************************
>> >     >       >       >       >     >             > (XEN)
>> >     >       >       >       >     >             > (XEN) Reboot in five
>> seconds...
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             > I am going to find
>> out how command line arguments passed and parsed.
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             > Regards,
>> >     >       >       >       >     >             > Oleg
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             > ср, 19 апр. 2023 г. в
>> 11:25, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>
>> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
>> >>
>> >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
>> oleshiiwood@gmail.com>>>>:
>> >     >       >       >       >     >             >       Hi Michal,
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             > You put my nose into
>> the problem. Thank you.
>> >     >       >       >       >     >             > I am going to use
>> your point.
>> >     >       >       >       >     >             > Let's see what
>> happens.
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             > Regards,
>> >     >       >       >       >     >             > Oleg
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             > ср, 19 апр. 2023 г. в
>> 10:37, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>
>> >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
>> >     >       >       >       <mailto:michal.orzel@amd.com <mailto:
>> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
>> michal.orzel@amd.com>>>>:
>> >     >       >       >       >     >             >       Hi Oleg,
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >       On 19/04/2023
>> 09:03, Oleg Nikitenko wrote:
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       > Hello Stefano,
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       > Thanks for
>> the clarification.
>> >     >       >       >       >     >             >       > My company
>> uses yocto for image generation.
>> >     >       >       >       >     >             >       > What kind of
>> information do you need to consult me in this case ?
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       > Maybe modules
>> sizes/addresses which were mentioned by @Julien Grall
>> >     >       >       <mailto:julien@xen.org <mailto:julien@xen.org>
>> >     >       >       >       <mailto:julien@xen.org <mailto:
>> julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
>> julien@xen.org <mailto:julien@xen.org>>>> ?
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >       Sorry for
>> jumping into discussion, but FWICS the Xen command line you provided
>> >     >       seems to be
>> >     >       >       not the
>> >     >       >       >       one
>> >     >       >       >       >     >             >       Xen booted
>> with. The error you are observing most likely is due to dom0 colors
>> >     >       >       configuration not
>> >     >       >       >       being
>> >     >       >       >       >     >             >       specified (i.e.
>> lack of dom0_colors=<> parameter). Although in the command line you
>> >     >       >       provided, this
>> >     >       >       >       parameter
>> >     >       >       >       >     >             >       is set, I
>> strongly doubt that this is the actual command line in use.
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >       You wrote:
>> >     >       >       >       >     >             >
>>  xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M
>> dom0_max_vcpus=2
>> >     >       >       dom0_vcpus_pin
>> >     >       >       >       bootscrub=0 vwfi=native
>> >     >       >       >       >     >             >       sched=null
>> timer_slop=0 way_szize=65536 xen_colors=0-3 dom0_colors=4-7";
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >       but:
>> >     >       >       >       >     >             >       1) way_szize
>> has a typo
>> >     >       >       >       >     >             >       2) you
>> specified 4 colors (0-3) for Xen, but the boot log says that Xen has only
>> >     >       one:
>> >     >       >       >       >     >             >       (XEN) Xen
>> color(s): [ 0 ]
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >       This makes me
>> believe that no colors configuration actually end up in command line
>> >     >       that Xen
>> >     >       >       booted
>> >     >       >       >       with.
>> >     >       >       >       >     >             >       Single color
>> for Xen is a "default if not specified" and way size was probably
>> >     >       calculated
>> >     >       >       by asking
>> >     >       >       >       HW.
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >       So I would
>> suggest to first cross-check the command line in use.
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >       ~Michal
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       > Regards,
>> >     >       >       >       >     >             >       > Oleg
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       > вт, 18 апр.
>> 2023 г. в 20:44, Stefano Stabellini <sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>
>> >     >       >       >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>>>
>> >     >       >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>
>> >     >       >       >       <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
>> sstabellini@kernel.org>>>>>:
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >     On Tue,
>> 18 Apr 2023, Oleg Nikitenko wrote:
>> >     >       >       >       >     >             >       >     > Hi
>> Julien,
>> >     >       >       >       >     >             >       >     >
>> >     >       >       >       >     >             >       >     > >> This
>> feature has not been merged in Xen upstream yet
>> >     >       >       >       >     >             >       >     >
>> >     >       >       >       >     >             >       >     > > would
>> assume that upstream + the series on the ML [1] work
>> >     >       >       >       >     >             >       >     >
>> >     >       >       >       >     >             >       >     > Please
>> clarify this point.
>> >     >       >       >       >     >             >       >     > Because
>> the two thoughts are controversial.
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >     Hi Oleg,
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >     As Julien
>> wrote, there is nothing controversial. As you are aware,
>> >     >       >       >       >     >             >       >     Xilinx
>> maintains a separate Xen tree specific for Xilinx here:
>> >     >       >       >       >     >             >       >
>> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
>> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>
>> >     >       >       <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>
>> >     >       >       >       <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>>
>> >     >       >       <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>
>> >     >       >       >       <https://github.com/xilinx/xen <
>> https://github.com/xilinx/xen>>>>
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >     and the
>> branch you are using (xlnx_rebase_4.16) comes from there.
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >     Instead,
>> the upstream Xen tree lives here:
>> >     >       >       >       >     >             >       >
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       >       >       <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       >       >       <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       >       >       <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>> >     >       >       >       <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
>> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >     The Cache
>> Coloring feature that you are trying to configure is present
>> >     >       >       >       >     >             >       >     in
>> xlnx_rebase_4.16, but not yet present upstream (there is an
>> >     >       >       >       >     >             >       >
>>  outstanding patch series to add cache coloring to Xen upstream but it
>> >     >       >       >       >     >             >       >     hasn't
>> been merged yet.)
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >     Anyway,
>> if you are using xlnx_rebase_4.16 it doesn't matter too much for
>> >     >       >       >       >     >             >       >     you as
>> you already have Cache Coloring as a feature there.
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >     I take
>> you are using ImageBuilder to generate the boot configuration? If
>> >     >       >       >       >     >             >       >     so,
>> please post the ImageBuilder config file that you are using.
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >       >     But from
>> the boot message, it looks like the colors configuration for
>> >     >       >       >       >     >             >       >     Dom0 is
>> incorrect.
>> >     >       >       >       >     >             >       >
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >             >
>> >     >       >       >       >     >
>> >     >       >       >       >
>> >     >       >       >
>> >     >       >       >
>> >     >       >       >
>> >     >       >
>> >     >       >
>> >     >       >
>> >     >
>> >     >
>> >     >
>> >
>>
>

[-- Attachment #2: Type: text/html, Size: 109649 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-05  8:34  0%                                         ` Michal Orzel
@ 2023-05-05  8:48  0%                                           ` Oleg Nikitenko
  2023-05-09  6:58  0%                                             ` Oleg Nikitenko
  0 siblings, 1 reply; 200+ results
From: Oleg Nikitenko @ 2023-05-05  8:48 UTC (permalink / raw)
  To: Michal Orzel
  Cc: Stefano Stabellini, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand

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

Hi Michal,

Thanks.

Regards,
Oleg

пт, 5 мая 2023 г. в 11:34, Michal Orzel <michal.orzel@amd.com>:

> Hi Oleg,
>
> Replying, so that you do not need to wait for Stefano.
>
> On 05/05/2023 10:28, Oleg Nikitenko wrote:
> >
> >
> >
> > Hello Stefano,
> >
> > I would like to try a xen cache color property from this repo
> https://xenbits.xen.org/git-http/xen.git <
> https://xenbits.xen.org/git-http/xen.git>
> > Could you tell whot branch I should use ?
> Cache coloring feature is not part of the upstream tree and it is still
> under review.
> You can only find it integrated in the Xilinx Xen tree.
>
> ~Michal
>
> >
> > Regards,
> > Oleg
> >
> > пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>>:
> >
> >     I am familiar with the zcu102 but I don't know how you could possibly
> >     generate a SError.
> >
> >     I suggest to try to use ImageBuilder [1] to generate the boot
> >     configuration as a test because that is known to work well for
> zcu102.
> >
> >     [1] https://gitlab.com/xen-project/imagebuilder <
> https://gitlab.com/xen-project/imagebuilder>
> >
> >
> >     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
> >     > Hello Stefano,
> >     >
> >     > Thanks for clarification.
> >     > We nighter use ImageBuilder nor uboot boot script.
> >     > A model is zcu102 compatible.
> >     >
> >     > Regards,
> >     > O.
> >     >
> >     > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
> >     >       This is interesting. Are you using Xilinx hardware by any
> chance? If so,
> >     >       which board?
> >     >
> >     >       Are you using ImageBuilder to generate your boot.scr boot
> script? If so,
> >     >       could you please post your ImageBuilder config file? If not,
> can you
> >     >       post the source of your uboot boot script?
> >     >
> >     >       SErrors are supposed to be related to a hardware failure of
> some kind.
> >     >       You are not supposed to be able to trigger an SError easily
> by
> >     >       "mistake". I have not seen SErrors due to wrong cache
> coloring
> >     >       configurations on any Xilinx board before.
> >     >
> >     >       The differences between Xen with and without cache coloring
> from a
> >     >       hardware perspective are:
> >     >
> >     >       - With cache coloring, the SMMU is enabled and does address
> translations
> >     >         even for dom0. Without cache coloring the SMMU could be
> disabled, and
> >     >         if enabled, the SMMU doesn't do any address translations
> for Dom0. If
> >     >         there is a hardware failure related to SMMU address
> translation it
> >     >         could only trigger with cache coloring. This would be my
> normal
> >     >         suggestion for you to explore, but the failure happens too
> early
> >     >         before any DMA-capable device is programmed. So I don't
> think this can
> >     >         be the issue.
> >     >
> >     >       - With cache coloring, the memory allocation is very
> different so you'll
> >     >         end up using different DDR regions for Dom0. So if your
> DDR is
> >     >         defective, you might only see a failure with cache
> coloring enabled
> >     >         because you end up using different regions.
> >     >
> >     >
> >     >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
> >     >       > Hi Stefano,
> >     >       >
> >     >       > Thank you.
> >     >       > If I build xen without colors support there is not this
> error.
> >     >       > All the domains are booted well.
> >     >       > Hense it can not be a hardware issue.
> >     >       > This panic arrived during unpacking the rootfs.
> >     >       > Here I attached the boot log xen/Dom0 without color.
> >     >       > A highlighted strings printed exactly after the place
> where 1-st time panic arrived.
> >     >       >
> >     >       >  Xen 4.16.1-pre
> >     >       > (XEN) Xen version 4.16.1-pre (nole2390@(none))
> (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y 2023-04-21
> >     >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300
> git:321687b231-dirty
> >     >       > (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
> >     >       > (XEN) Processor: 00000000410fd034: "ARM Limited", variant:
> 0x0, part 0xd03,rev 0x4
> >     >       > (XEN) 64-bit Execution:
> >     >       > (XEN)   Processor Features: 0000000000002222
> 0000000000000000
> >     >       > (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32
> EL0:64+32
> >     >       > (XEN)     Extensions: FloatingPoint AdvancedSIMD
> >     >       > (XEN)   Debug Features: 0000000010305106 0000000000000000
> >     >       > (XEN)   Auxiliary Features: 0000000000000000
> 0000000000000000
> >     >       > (XEN)   Memory Model Features: 0000000000001122
> 0000000000000000
> >     >       > (XEN)   ISA Features:  0000000000011120 0000000000000000
> >     >       > (XEN) 32-bit Execution:
> >     >       > (XEN)   Processor Features:
> 0000000000000131:0000000000011011
> >     >       > (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2
> Jazelle
> >     >       > (XEN)     Extensions: GenericTimer Security
> >     >       > (XEN)   Debug Features: 0000000003010066
> >     >       > (XEN)   Auxiliary Features: 0000000000000000
> >     >       > (XEN)   Memory Model Features: 0000000010201105
> 0000000040000000
> >     >       > (XEN)                          0000000001260000
> 0000000002102211
> >     >       > (XEN)   ISA Features: 0000000002101110 0000000013112111
> 0000000021232042
> >     >       > (XEN)                 0000000001112131 0000000000011142
> 0000000000011121
> >     >       > (XEN) Using SMC Calling Convention v1.2
> >     >       > (XEN) Using PSCI v1.1
> >     >       > (XEN) SMP: Allowing 4 CPUs
> >     >       > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq:
> 100000 KHz
> >     >       > (XEN) GICv2 initialization:
> >     >       > (XEN)         gic_dist_addr=00000000f9010000
> >     >       > (XEN)         gic_cpu_addr=00000000f9020000
> >     >       > (XEN)         gic_hyp_addr=00000000f9040000
> >     >       > (XEN)         gic_vcpu_addr=00000000f9060000
> >     >       > (XEN)         gic_maintenance_irq=25
> >     >       > (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
> >     >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
> >     >       > (XEN) Using scheduler: null Scheduler (null)
> >     >       > (XEN) Initializing null scheduler
> >     >       > (XEN) WARNING: This is experimental software in
> development.
> >     >       > (XEN) Use at your own risk.
> >     >       > (XEN) Allocated console ring of 32 KiB.
> >     >       > (XEN) CPU0: Guest atomics will try 12 times before pausing
> the domain
> >     >       > (XEN) Bringing up CPU1
> >     >       > (XEN) CPU1: Guest atomics will try 13 times before pausing
> the domain
> >     >       > (XEN) CPU 1 booted.
> >     >       > (XEN) Bringing up CPU2
> >     >       > (XEN) CPU2: Guest atomics will try 13 times before pausing
> the domain
> >     >       > (XEN) CPU 2 booted.
> >     >       > (XEN) Bringing up CPU3
> >     >       > (XEN) CPU3: Guest atomics will try 13 times before pausing
> the domain
> >     >       > (XEN) Brought up 4 CPUs
> >     >       > (XEN) CPU 3 booted.
> >     >       > (XEN) smmu: /axi/smmu@fd800000: probing hardware
> configuration...
> >     >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
> >     >       > (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
> >     >       > (XEN) smmu: /axi/smmu@fd800000: stream matching with 48
> register groups, mask 0x7fff<2>smmu: /axi/smmu@fd800000: 16 context
> >     >       banks (0
> >     >       > stage-2 only)
> >     >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA ->
> 48-bit PA
> >     >       > (XEN) smmu: /axi/smmu@fd800000: registered 29 master
> devices
> >     >       > (XEN) I/O virtualisation enabled
> >     >       > (XEN)  - Dom0 mode: Relaxed
> >     >       > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
> >     >       > (XEN) P2M: 3 levels with order-1 root, VTCR
> 0x0000000080023558
> >     >       > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
> >     >       > (XEN) alternatives: Patching with alt table
> 00000000002cc5c8 -> 00000000002ccb2c
> >     >       > (XEN) *** LOADING DOMAIN 0 ***
> >     >       > (XEN) Loading d0 kernel from boot module @ 0000000001000000
> >     >       > (XEN) Loading ramdisk from boot module @ 0000000002000000
> >     >       > (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
> >     >       > (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
> >     >       > (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
> >     >       > (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
> >     >       > (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
> >     >       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr
> 0x000000087bf94000
> >     >       > (XEN) Allocating PPI 16 for event channel interrupt
> >     >       > (XEN) Extended region 0: 0x81200000->0xa0000000
> >     >       > (XEN) Extended region 1: 0xb1200000->0xc0000000
> >     >       > (XEN) Extended region 2: 0xc8000000->0xe0000000
> >     >       > (XEN) Extended region 3: 0xf0000000->0xf9000000
> >     >       > (XEN) Extended region 4: 0x100000000->0x600000000
> >     >       > (XEN) Extended region 5: 0x880000000->0x8000000000
> >     >       > (XEN) Extended region 6: 0x8001000000->0x10000000000
> >     >       > (XEN) Loading zImage from 0000000001000000 to
> 0000000010000000-0000000010e41008
> >     >       > (XEN) Loading d0 initrd from 0000000002000000 to
> 0x0000000013600000-0x000000001ff3a617
> >     >       > (XEN) Loading d0 DTB to
> 0x0000000013400000-0x000000001340cbdc
> >     >       > (XEN) Initial low memory virq threshold set at 0x4000
> pages.
> >     >       > (XEN) Std. Loglevel: All
> >     >       > (XEN) Guest Loglevel: All
> >     >       > (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times
> to switch input)
> >     >       > (XEN) null.c:353: 0 <-- d0v0
> >     >       > (XEN) Freed 356kB init memory.
> >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
> >     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
> to ICACTIVER4
> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
> to ICACTIVER8
> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
> to ICACTIVER12
> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
> to ICACTIVER16
> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
> to ICACTIVER20
> >     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff
> to ICACTIVER0
> >     >       > [    0.000000] Booting Linux on physical CPU 0x0000000000
> [0x410fd034]
> >     >       > [    0.000000] Linux version 5.15.72-xilinx-v2022.1
> (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC) 11.3.0, GNU ld (GNU
> >     >       Binutils)
> >     >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
> >     >       > [    0.000000] Machine model: D14 Viper Board - White Unit
> >     >       > [    0.000000] Xen 4.16 support found
> >     >       > [    0.000000] Zone ranges:
> >     >       > [    0.000000]   DMA      [mem
> 0x0000000010000000-0x000000007fffffff]
> >     >       > [    0.000000]   DMA32    empty
> >     >       > [    0.000000]   Normal   empty
> >     >       > [    0.000000] Movable zone start for each node
> >     >       > [    0.000000] Early memory node ranges
> >     >       > [    0.000000]   node   0: [mem
> 0x0000000010000000-0x000000001fffffff]
> >     >       > [    0.000000]   node   0: [mem
> 0x0000000022000000-0x0000000022147fff]
> >     >       > [    0.000000]   node   0: [mem
> 0x0000000022200000-0x0000000022347fff]
> >     >       > [    0.000000]   node   0: [mem
> 0x0000000024000000-0x0000000027ffffff]
> >     >       > [    0.000000]   node   0: [mem
> 0x0000000030000000-0x000000007fffffff]
> >     >       > [    0.000000] Initmem setup node 0 [mem
> 0x0000000010000000-0x000000007fffffff]
> >     >       > [    0.000000] On node 0, zone DMA: 8192 pages in
> unavailable ranges
> >     >       > [    0.000000] On node 0, zone DMA: 184 pages in
> unavailable ranges
> >     >       > [    0.000000] On node 0, zone DMA: 7352 pages in
> unavailable ranges
> >     >       > [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
> >     >       > [    0.000000] psci: probing for conduit method from DT.
> >     >       > [    0.000000] psci: PSCIv1.1 detected in firmware.
> >     >       > [    0.000000] psci: Using standard PSCI v0.2 function IDs
> >     >       > [    0.000000] psci: Trusted OS migration not required
> >     >       > [    0.000000] psci: SMC Calling Convention v1.1
> >     >       > [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0
> d32744 u65536
> >     >       > [    0.000000] Detected VIPT I-cache on CPU0
> >     >       > [    0.000000] CPU features: kernel page table isolation
> forced ON by KASLR
> >     >       > [    0.000000] CPU features: detected: Kernel page table
> isolation (KPTI)
> >     >       > [    0.000000] Built 1 zonelists, mobility grouping on.
> Total pages: 403845
> >     >       > [    0.000000] Kernel command line: console=hvc0
> earlycon=xen earlyprintk=xen clk_ignore_unused fips=1 root=/dev/ram0
> >     >       maxcpus=2
> >     >       > [    0.000000] Unknown kernel command line parameters
> "earlyprintk=xen fips=1", will be passed to user space.
> >     >       > [    0.000000] Dentry cache hash table entries: 262144
> (order: 9, 2097152 bytes, linear)
> >     >       > [    0.000000] Inode-cache hash table entries: 131072
> (order: 8, 1048576 bytes, linear)
> >     >       > [    0.000000] mem auto-init: stack:off, heap alloc:on,
> heap free:on
> >     >       > [    0.000000] mem auto-init: clearing system memory may
> take some time...
> >     >       > [    0.000000] Memory: 1121936K/1641024K available (9728K
> kernel code, 836K rwdata, 2396K rodata, 1536K init, 262K bss,
> >     >       256944K reserved,
> >     >       > 262144K cma-reserved)
> >     >       > [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0,
> CPUs=2, Nodes=1
> >     >       > [    0.000000] rcu: Hierarchical RCU implementation.
> >     >       > [    0.000000] rcu: RCU event tracing is enabled.
> >     >       > [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to
> nr_cpu_ids=2.
> >     >       > [    0.000000] rcu: RCU calculated value of
> scheduler-enlistment delay is 25 jiffies.
> >     >       > [    0.000000] rcu: Adjusting geometry for
> rcu_fanout_leaf=16, nr_cpu_ids=2
> >     >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated
> irqs: 0
> >     >       > [    0.000000] Root IRQ handler: gic_handle_irq
> >     >       > [    0.000000] arch_timer: cp15 timer(s) running at
> 100.00MHz (virt).
> >     >       > [    0.000000] clocksource: arch_sys_counter: mask:
> 0xffffffffffffff max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
> >     >       > [    0.000000] sched_clock: 56 bits at 100MHz, resolution
> 10ns, wraps every 4398046511100ns
> >     >       > [    0.000258] Console: colour dummy device 80x25
> >     >       > [    0.310231] printk: console [hvc0] enabled
> >     >       > [    0.314403] Calibrating delay loop (skipped), value
> calculated using timer frequency.. 200.00 BogoMIPS (lpj=400000)
> >     >       > [    0.324851] pid_max: default: 32768 minimum: 301
> >     >       > [    0.329706] LSM: Security Framework initializing
> >     >       > [    0.334204] Yama: becoming mindful.
> >     >       > [    0.337865] Mount-cache hash table entries: 4096
> (order: 3, 32768 bytes, linear)
> >     >       > [    0.345180] Mountpoint-cache hash table entries: 4096
> (order: 3, 32768 bytes, linear)
> >     >       > [    0.354743] xen:grant_table: Grant tables using version
> 1 layout
> >     >       > [    0.359132] Grant table initialized
> >     >       > [    0.362664] xen:events: Using FIFO-based ABI
> >     >       > [    0.366993] Xen: initializing cpu0
> >     >       > [    0.370515] rcu: Hierarchical SRCU implementation.
> >     >       > [    0.375930] smp: Bringing up secondary CPUs ...
> >     >       > (XEN) null.c:353: 1 <-- d0v1
> >     >       > (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff
> to ICACTIVER0
> >     >       > [    0.382549] Detected VIPT I-cache on CPU1
> >     >       > [    0.388712] Xen: initializing cpu1
> >     >       > [    0.388743] CPU1: Booted secondary processor
> 0x0000000001 [0x410fd034]
> >     >       > [    0.388829] smp: Brought up 1 node, 2 CPUs
> >     >       > [    0.406941] SMP: Total of 2 processors activated.
> >     >       > [    0.411698] CPU features: detected: 32-bit EL0 Support
> >     >       > [    0.416888] CPU features: detected: CRC32 instructions
> >     >       > [    0.422121] CPU: All CPU(s) started at EL1
> >     >       > [    0.426248] alternatives: patching kernel code
> >     >       > [    0.431424] devtmpfs: initialized
> >     >       > [    0.441454] KASLR enabled
> >     >       > [    0.441602] clocksource: jiffies: mask: 0xffffffff
> max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
> >     >       > [    0.448321] futex hash table entries: 512 (order: 3,
> 32768 bytes, linear)
> >     >       > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE
> protocol family
> >     >       > [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool
> for atomic allocations
> >     >       > [    0.503772] DMA: preallocated 256 KiB
> GFP_KERNEL|GFP_DMA pool for atomic allocations
> >     >       > [    0.511610] DMA: preallocated 256 KiB
> GFP_KERNEL|GFP_DMA32 pool for atomic allocations
> >     >       > [    0.519478] audit: initializing netlink subsys
> (disabled)
> >     >       > [    0.524985] audit: type=2000 audit(0.336:1):
> state=initialized audit_enabled=0 res=1
> >     >       > [    0.529169] thermal_sys: Registered thermal governor
> 'step_wise'
> >     >       > [    0.533023] hw-breakpoint: found 6 breakpoint and 4
> watchpoint registers.
> >     >       > [    0.545608] ASID allocator initialised with 32768
> entries
> >     >       > [    0.551030] xen:swiotlb_xen: Warning: only able to
> allocate 4 MB for software IO TLB
> >     >       > [    0.559332] software IO TLB: mapped [mem
> 0x0000000011800000-0x0000000011c00000] (4MB)
> >     >       > [    0.583565] HugeTLB registered 1.00 GiB page size,
> pre-allocated 0 pages
> >     >       > [    0.584721] HugeTLB registered 32.0 MiB page size,
> pre-allocated 0 pages
> >     >       > [    0.591478] HugeTLB registered 2.00 MiB page size,
> pre-allocated 0 pages
> >     >       > [    0.598225] HugeTLB registered 64.0 KiB page size,
> pre-allocated 0 pages
> >     >       > [    0.636520] DRBG: Continuing without Jitter RNG
> >     >       > [    0.737187] raid6: neonx8   gen()  2143 MB/s
> >     >       > [    0.805294] raid6: neonx8   xor()  1589 MB/s
> >     >       > [    0.873406] raid6: neonx4   gen()  2177 MB/s
> >     >       > [    0.941499] raid6: neonx4   xor()  1556 MB/s
> >     >       > [    1.009612] raid6: neonx2   gen()  2072 MB/s
> >     >       > [    1.077715] raid6: neonx2   xor()  1430 MB/s
> >     >       > [    1.145834] raid6: neonx1   gen()  1769 MB/s
> >     >       > [    1.213935] raid6: neonx1   xor()  1214 MB/s
> >     >       > [    1.282046] raid6: int64x8  gen()  1366 MB/s
> >     >       > [    1.350132] raid6: int64x8  xor()   773 MB/s
> >     >       > [    1.418259] raid6: int64x4  gen()  1602 MB/s
> >     >       > [    1.486349] raid6: int64x4  xor()   851 MB/s
> >     >       > [    1.554464] raid6: int64x2  gen()  1396 MB/s
> >     >       > [    1.622561] raid6: int64x2  xor()   744 MB/s
> >     >       > [    1.690687] raid6: int64x1  gen()  1033 MB/s
> >     >       > [    1.758770] raid6: int64x1  xor()   517 MB/s
> >     >       > [    1.758809] raid6: using algorithm neonx4 gen() 2177
> MB/s
> >     >       > [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
> >     >       > [    1.767957] raid6: using neon recovery algorithm
> >     >       > [    1.772824] xen:balloon: Initialising balloon driver
> >     >       > [    1.778021] iommu: Default domain type: Translated
> >     >       > [    1.782584] iommu: DMA domain TLB invalidation policy:
> strict mode
> >     >       > [    1.789149] SCSI subsystem initialized
> >     >       > [    1.792820] usbcore: registered new interface driver
> usbfs
> >     >       > [    1.798254] usbcore: registered new interface driver hub
> >     >       > [    1.803626] usbcore: registered new device driver usb
> >     >       > [    1.808761] pps_core: LinuxPPS API ver. 1 registered
> >     >       > [    1.813716] pps_core: Software ver. 5.3.6 - Copyright
> 2005-2007 Rodolfo Giometti <giometti@linux.it <mailto:giometti@linux.it>>
> >     >       > [    1.822903] PTP clock support registered
> >     >       > [    1.826893] EDAC MC: Ver: 3.0.0
> >     >       > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400:
> Registered ZynqMP IPI mbox with TX/RX channels.
> >     >       > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600:
> Registered ZynqMP IPI mbox with TX/RX channels.
> >     >       > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800:
> Registered ZynqMP IPI mbox with TX/RX channels.
> >     >       > [    1.855907] FPGA manager framework
> >     >       > [    1.859952] clocksource: Switched to clocksource
> arch_sys_counter
> >     >       > [    1.871712] NET: Registered PF_INET protocol family
> >     >       > [    1.871838] IP idents hash table entries: 32768 (order:
> 6, 262144 bytes, linear)
> >     >       > [    1.879392] tcp_listen_portaddr_hash hash table
> entries: 1024 (order: 2, 16384 bytes, linear)
> >     >       > [    1.887078] Table-perturb hash table entries: 65536
> (order: 6, 262144 bytes, linear)
> >     >       > [    1.894846] TCP established hash table entries: 16384
> (order: 5, 131072 bytes, linear)
> >     >       > [    1.902900] TCP bind hash table entries: 16384 (order:
> 6, 262144 bytes, linear)
> >     >       > [    1.910350] TCP: Hash tables configured (established
> 16384 bind 16384)
> >     >       > [    1.916778] UDP hash table entries: 1024 (order: 3,
> 32768 bytes, linear)
> >     >       > [    1.923509] UDP-Lite hash table entries: 1024 (order:
> 3, 32768 bytes, linear)
> >     >       > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol
> family
> >     >       > [    1.936834] RPC: Registered named UNIX socket transport
> module.
> >     >       > [    1.942342] RPC: Registered udp transport module.
> >     >       > [    1.947088] RPC: Registered tcp transport module.
> >     >       > [    1.951843] RPC: Registered tcp NFSv4.1 backchannel
> transport module.
> >     >       > [    1.958334] PCI: CLS 0 bytes, default 64
> >     >       > [    1.962709] Trying to unpack rootfs image as
> initramfs...
> >     >       > [    1.977090] workingset: timestamp_bits=62 max_order=19
> bucket_order=0
> >     >       > [    1.982863] Installing knfsd (copyright (C) 1996
> okir@monad.swb.de <mailto:okir@monad.swb.de>).
> >     >       > [    2.021045] NET: Registered PF_ALG protocol family
> >     >       > [    2.021122] xor: measuring software checksum speed
> >     >       > [    2.029347]    8regs           :  2366 MB/sec
> >     >       > [    2.033081]    32regs          :  2802 MB/sec
> >     >       > [    2.038223]    arm64_neon      :  2320 MB/sec
> >     >       > [    2.038385] xor: using function: 32regs (2802 MB/sec)
> >     >       > [    2.043614] Block layer SCSI generic (bsg) driver
> version 0.4 loaded (major 247)
> >     >       > [    2.050959] io scheduler mq-deadline registered
> >     >       > [    2.055521] io scheduler kyber registered
> >     >       > [    2.068227] xen:xen_evtchn: Event-channel device
> installed
> >     >       > [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ
> sharing disabled
> >     >       > [    2.076190] cacheinfo: Unable to detect cache hierarchy
> for CPU 0
> >     >       > [    2.085548] brd: module loaded
> >     >       > [    2.089290] loop: module loaded
> >     >       > [    2.089341] Invalid max_queues (4), will use default
> max: 2.
> >     >       > [    2.094565] tun: Universal TUN/TAP device driver, 1.6
> >     >       > [    2.098655] xen_netfront: Initialising Xen virtual
> ethernet driver
> >     >       > [    2.104156] usbcore: registered new interface driver
> rtl8150
> >     >       > [    2.109813] usbcore: registered new interface driver
> r8152
> >     >       > [    2.115367] usbcore: registered new interface driver
> asix
> >     >       > [    2.120794] usbcore: registered new interface driver
> ax88179_178a
> >     >       > [    2.126934] usbcore: registered new interface driver
> cdc_ether
> >     >       > [    2.132816] usbcore: registered new interface driver
> cdc_eem
> >     >       > [    2.138527] usbcore: registered new interface driver
> net1080
> >     >       > [    2.144256] usbcore: registered new interface driver
> cdc_subset
> >     >       > [    2.150205] usbcore: registered new interface driver
> zaurus
> >     >       > [    2.155837] usbcore: registered new interface driver
> cdc_ncm
> >     >       > [    2.161550] usbcore: registered new interface driver
> r8153_ecm
> >     >       > [    2.168240] usbcore: registered new interface driver
> cdc_acm
> >     >       > [    2.173109] cdc_acm: USB Abstract Control Model driver
> for USB modems and ISDN adapters
> >     >       > [    2.181358] usbcore: registered new interface driver uas
> >     >       > [    2.186547] usbcore: registered new interface driver
> usb-storage
> >     >       > [    2.192643] usbcore: registered new interface driver
> ftdi_sio
> >     >       > [    2.198384] usbserial: USB Serial support registered
> for FTDI USB Serial Device
> >     >       > [    2.206118] udc-core: couldn't find an available UDC -
> added [g_mass_storage] to list of pending drivers
> >     >       > [    2.215332] i2c_dev: i2c /dev entries driver
> >     >       > [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s,
> nowayout=0)
> >     >       > [    2.225923] device-mapper: uevent: version 1.0.3
> >     >       > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl
> (2021-03-22) initialised: dm-devel@redhat.com <mailto:dm-devel@redhat.com>
> >     >       > [    2.239315] EDAC MC0: Giving out device to module 1
> controller synps_ddr_controller: DEV synps_edac (INTERRUPT)
> >     >       > [    2.249405] EDAC DEVICE0: Giving out device to module
> zynqmp-ocm-edac controller zynqmp_ocm: DEV
> >     >       ff960000.memory-controller (INTERRUPT)
> >     >       > [    2.261719] sdhci: Secure Digital Host Controller
> Interface driver
> >     >       > [    2.267487] sdhci: Copyright(c) Pierre Ossman
> >     >       > [    2.271890] sdhci-pltfm: SDHCI platform and OF driver
> helper
> >     >       > [    2.278157] ledtrig-cpu: registered to indicate
> activity on CPUs
> >     >       > [    2.283816] zynqmp_firmware_probe Platform Management
> API v1.1
> >     >       > [    2.289554] zynqmp_firmware_probe Trustzone version v1.0
> >     >       > [    2.327875] securefw securefw: securefw probed
> >     >       > [    2.328324] alg: No test for xilinx-zynqmp-aes
> (zynqmp-aes)
> >     >       > [    2.332563] zynqmp_aes
> firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
> >     >       > [    2.341183] alg: No test for xilinx-zynqmp-rsa
> (zynqmp-rsa)
> >     >       > [    2.347667] remoteproc remoteproc0:
> ff9a0000.rf5ss:r5f_0 is available
> >     >       > [    2.353003] remoteproc remoteproc1:
> ff9a0000.rf5ss:r5f_1 is available
> >     >       > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA
> Manager registered
> >     >       > [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen
> Proxy registered
> >     >       > [    2.372525] viper-vdpp a4000000.vdpp: Device Tree
> Probing
> >     >       > [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version:
> 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >     >       > [    2.386432] viper-vdpp a4000000.vdpp: Unable to
> register tamper handler. Retrying...
> >     >       > [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device
> Tree Probing
> >     >       > [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device
> registered
> >     >       > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device
> Tree Probing
> >     >       > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build
> parameters: VTI Count: 512 Event Count: 32
> >     >       > [    2.420856] default preset
> >     >       > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device
> registered
> >     >       > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device
> Tree Probing
> >     >       > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device
> registered
> >     >       > [    2.441976] vmcu driver init
> >     >       > [    2.444922] VMCU: : (240:0) registered
> >     >       > [    2.444956] In K81 Updater init
> >     >       > [    2.449003] pktgen: Packet Generator for packet
> performance testing. Version: 2.75
> >     >       > [    2.468833] Initializing XFRM netlink socket
> >     >       > [    2.468902] NET: Registered PF_PACKET protocol family
> >     >       > [    2.472729] Bridge firewalling registered
> >     >       > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
> >     >       > [    2.481341] registered taskstats version 1
> >     >       > [    2.486394] Btrfs loaded, crc32c=crc32c-generic,
> zoned=no, fsverity=no
> >     >       > [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000
> (irq = 36, base_baud = 6250000) is a xuartps
> >     >       > [    2.507103] of-fpga-region fpga-full: FPGA Region probed
> >     >       > [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller:
> ZynqMP DMA driver Probe success
> >     >       > [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller:
> ZynqMP DMA driver Probe success
> >     >       > [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller:
> ZynqMP DMA driver Probe success
> >     >       > [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller:
> ZynqMP DMA driver Probe success
> >     >       > [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller:
> ZynqMP DMA driver Probe success
> >     >       > [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller:
> ZynqMP DMA driver Probe success
> >     >       > [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller:
> ZynqMP DMA driver Probe success
> >     >       > [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller:
> ZynqMP DMA driver Probe success
> >     >       > [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller:
> ZynqMP DMA driver Probe success
> >     >       > [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller:
> ZynqMP DMA driver Probe success
> >     >       > [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
> >     >       > [    2.946467] 2 fixed-partitions partitions found on MTD
> device spi0.0
> >     >       > [    2.952393] Creating 2 MTD partitions on "spi0.0":
> >     >       > [    2.957231] 0x000004000000-0x000008000000 : "bank A"
> >     >       > [    2.963332] 0x000000000000-0x000004000000 : "bank B"
> >     >       > [    2.968694] macb ff0b0000.ethernet: Not enabling
> partial store and forward
> >     >       > [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM
> rev 0x50070106 at 0xff0b0000 irq 25 (18:41:fe:0f:ff:02)
> >     >       > [    2.984472] macb ff0c0000.ethernet: Not enabling
> partial store and forward
> >     >       > [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM
> rev 0x50070106 at 0xff0c0000 irq 26 (18:41:fe:0f:ff:03)
> >     >       > [    3.001043] viper_enet viper_enet: Viper power GPIOs
> initialised
> >     >       > [    3.007313] viper_enet viper_enet vnet0
> (uninitialized): Validate interface QSGMII
> >     >       > [    3.014914] viper_enet viper_enet vnet1
> (uninitialized): Validate interface QSGMII
> >     >       > [    3.022138] viper_enet viper_enet vnet1
> (uninitialized): Validate interface type 18
> >     >       > [    3.030274] viper_enet viper_enet vnet2
> (uninitialized): Validate interface QSGMII
> >     >       > [    3.037785] viper_enet viper_enet vnet3
> (uninitialized): Validate interface QSGMII
> >     >       > [    3.045301] viper_enet viper_enet: Viper enet registered
> >     >       > [    3.050958] xilinx-axipmon ffa00000.perf-monitor:
> Probed Xilinx APM
> >     >       > [    3.057135] xilinx-axipmon fd0b0000.perf-monitor:
> Probed Xilinx APM
> >     >       > [    3.063538] xilinx-axipmon fd490000.perf-monitor:
> Probed Xilinx APM
> >     >       > [    3.069920] xilinx-axipmon ffa10000.perf-monitor:
> Probed Xilinx APM
> >     >       > [    3.097729] si70xx: probe of 2-0040 failed with error -5
> >     >       > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog
> Timer with timeout 60s
> >     >       > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog
> Timer with timeout 10s
> >     >       > [    3.112457] viper-tamper viper-tamper: Device registered
> >     >       > [    3.117593] active_bank active_bank: boot bank: 1
> >     >       > [    3.122184] active_bank active_bank: boot mode: (0x02)
> qspi32
> >     >       > [    3.128247] viper-vdpp a4000000.vdpp: Device Tree
> Probing
> >     >       > [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version:
> 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> >     >       > [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler
> registered
> >     >       > [    3.147438] viper-vdpp a4000000.vdpp: Device registered
> >     >       > [    3.153007] lpc55_l2 spi1.0: registered handler for
> protocol 0
> >     >       > [    3.158582] lpc55_user lpc55_user: The major number for
> your device is 236
> >     >       > [    3.165976] lpc55_l2 spi1.0: registered handler for
> protocol 1
> >     >       > [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time:
> bad result: 1
> >     >       > [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
> >     >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
> >     >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
> >     >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
> >     >       > [    3.202932] mmc0: SDHCI controller on ff160000.mmc
> [ff160000.mmc] using ADMA 64-bit
> >     >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
> >     >       > [    3.215694] lpc55_l2 spi1.0: rx error: -110
> >     >       > [    3.284438] mmc0: new HS200 MMC card at address 0001
> >     >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
> >     >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
> >     >       > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
> >     >       > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
> >     >       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB,
> chardev (244:0)
> >     >       > [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time:
> bad result: 1
> >     >       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to
> read the hardware clock
> >     >       > [    3.591252] cdns-i2c ff020000.i2c: recovery information
> complete
> >     >       > [    3.597085] at24 0-0050: supply vcc not found, using
> dummy regulator
> >     >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
> >     >       > [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
> >     >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
> >     >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
> >     >       > [    3.624224] rtc-rv3028 0-0052: registered as rtc1
> >     >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
> >     >       > [    3.633253] lpc55_l2 spi1.0: rx error: -110
> >     >       > [    3.639104] k81_bootloader 0-0010: probe
> >     >       > [    3.641628] VMCU: : (235:0) registered
> >     >       > [    3.641635] k81_bootloader 0-0010: probe completed
> >     >       > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio
> ff020000 irq 28
> >     >       > [    3.669154] cdns-i2c ff030000.i2c: recovery information
> complete
> >     >       > [    3.675412] lm75 1-0048: supply vs not found, using
> dummy regulator
> >     >       > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
> >     >       > [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
> >     >       > [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
> >     >       > [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
> >     >       > [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
> >     >       > [    3.705157] pca954x 1-0070: registered 4 multiplexed
> busses for I2C switch pca9546
> >     >       > [    3.713049] at24 1-0054: supply vcc not found, using
> dummy regulator
> >     >       > [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM,
> read-only
> >     >       > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio
> ff030000 irq 29
> >     >       > [    3.731272] sfp viper_enet:sfp-eth1: Host maximum power
> 2.0W
> >     >       > [    3.737549] sfp_register_socket: got sfp_bus
> >     >       > [    3.740709] sfp_register_socket: register sfp_bus
> >     >       > [    3.745459] sfp_register_bus: ops ok!
> >     >       > [    3.749179] sfp_register_bus: Try to attach
> >     >       > [    3.753419] sfp_register_bus: Attach succeeded
> >     >       > [    3.757914] sfp_register_bus: upstream ops attach
> >     >       > [    3.762677] sfp_register_bus: Bus registered
> >     >       > [    3.766999] sfp_register_socket: register sfp_bus
> succeeded
> >     >       > [    3.775870] of_cfs_init
> >     >       > [    3.776000] of_cfs_init: OK
> >     >       > [    3.778211] clk: Not disabling unused clocks
> >     >       > [   11.278477] Freeing initrd memory: 206056K
> >     >       > [   11.279406] Freeing unused kernel memory: 1536K
> >     >       > [   11.314006] Checked W+X mappings: passed, no W+X pages
> found
> >     >       > [   11.314142] Run /init as init process
> >     >       > INIT: version 3.01 booting
> >     >       > fsck (busybox 1.35.0)
> >     >       > /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600
> blocks
> >     >       > /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600
> blocks
> >     >       > /dev/mmcblk0p3 was not cleanly unmounted, check forced.
> >     >       > /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous),
> 663/16384 blocks
> >     >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem
> without journal. Opts: (null). Quota mode: disabled.
> >     >       > Starting random number generator daemon.
> >     >       > [   11.580662] random: crng init done
> >     >       > Starting udev
> >     >       > [   11.613159] udevd[142]: starting version 3.2.10
> >     >       > [   11.620385] udevd[143]: starting eudev-3.2.10
> >     >       > [   11.704481] macb ff0b0000.ethernet control_red: renamed
> from eth0
> >     >       > [   11.720264] macb ff0c0000.ethernet control_black:
> renamed from eth1
> >     >       > [   12.063396] ip_local_port_range: prefer different
> parity for start/end values.
> >     >       > [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time:
> bad result: 1
> >     >       > hwclock: RTC_RD_TIME: Invalid exchange
> >     >       > Mon Feb 27 08:40:53 UTC 2023
> >     >       > [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time:
> bad result
> >     >       > hwclock: RTC_SET_TIME: Invalid exchange
> >     >       > [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time:
> bad result: 1
> >     >       > Starting mcud
> >     >       > INIT: Entering runlevel: 5
> >     >       > Configuring network interfaces... done.
> >     >       > resetting network interface
> >     >       > [   12.718295] macb ff0b0000.ethernet control_red: PHY
> [ff0b0000.ethernet-ffffffff:02] driver [Xilinx PCS/PMA PHY] (irq=POLL)
> >     >       > [   12.723919] macb ff0b0000.ethernet control_red:
> configuring for phy/gmii link mode
> >     >       > [   12.732151] pps pps0: new PPS source ptp0
> >     >       > [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp
> clock registered.
> >     >       > [   12.745724] macb ff0c0000.ethernet control_black: PHY
> [ff0c0000.ethernet-ffffffff:01] driver [Xilinx PCS/PMA PHY]
> >     >       (irq=POLL)
> >     >       > [   12.753469] macb ff0c0000.ethernet control_black:
> configuring for phy/gmii link mode
> >     >       > [   12.761804] pps pps1: new PPS source ptp1
> >     >       > [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp
> clock registered.
> >     >       > Auto-negotiation: off
> >     >       > Auto-negotiation: off
> >     >       > [   16.828151] macb ff0b0000.ethernet control_red: unable
> to generate target frequency: 125000000 Hz
> >     >       > [   16.834553] macb ff0b0000.ethernet control_red: Link is
> Up - 1Gbps/Full - flow control off
> >     >       > [   16.860552] macb ff0c0000.ethernet control_black:
> unable to generate target frequency: 125000000 Hz
> >     >       > [   16.867052] macb ff0c0000.ethernet control_black: Link
> is Up - 1Gbps/Full - flow control off
> >     >       > Starting Failsafe Secure Shell server in port 2222: sshd
> >     >       > done.
> >     >       > Starting rpcbind daemon...done.
> >     >       >
> >     >       > [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time:
> bad result: 1
> >     >       > hwclock: RTC_RD_TIME: Invalid exchange
> >     >       > Starting State Manager Service
> >     >       > Start state-manager restarter...
> >     >       > (XEN) d0v1 Forwarding AES operation: 3254779951
> >     >       > Starting /usr/sbin/xenstored....[   17.265256] BTRFS:
> device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa devid 1 transid 744
> >     >       /dev/dm-0
> >     >       > scanned by udevd (385)
> >     >       > [   17.349933] BTRFS info (device dm-0): disk space
> caching is enabled
> >     >       > [   17.350670] BTRFS info (device dm-0): has skinny extents
> >     >       > [   17.364384] BTRFS info (device dm-0): enabling ssd
> optimizations
> >     >       > [   17.830462] BTRFS: device fsid
> 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
> /dev/mapper/client_prov scanned by
> >     >       mkfs.btrfs
> >     >       > (526)
> >     >       > [   17.872699] BTRFS info (device dm-1): using free space
> tree
> >     >       > [   17.872771] BTRFS info (device dm-1): has skinny extents
> >     >       > [   17.878114] BTRFS info (device dm-1): flagging fs with
> big metadata feature
> >     >       > [   17.894289] BTRFS info (device dm-1): enabling ssd
> optimizations
> >     >       > [   17.895695] BTRFS info (device dm-1): checking UUID tree
> >     >       >
> >     >       > Setting domain 0 name, domid and JSON config...
> >     >       > Done setting up Dom0
> >     >       > Starting xenconsoled...
> >     >       > Starting QEMU as disk backend for dom0
> >     >       > Starting domain watchdog daemon: xenwatchdogd startup
> >     >       >
> >     >       > [   18.408647] BTRFS: device fsid
> 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
> /dev/mapper/client_config scanned by
> >     >       mkfs.btrfs
> >     >       > (574)
> >     >       > [done]
> >     >       > [   18.465552] BTRFS info (device dm-2): using free space
> tree
> >     >       > [   18.465629] BTRFS info (device dm-2): has skinny extents
> >     >       > [   18.471002] BTRFS info (device dm-2): flagging fs with
> big metadata feature
> >     >       > Starting crond: [   18.482371] BTRFS info (device dm-2):
> enabling ssd optimizations
> >     >       > [   18.486659] BTRFS info (device dm-2): checking UUID tree
> >     >       > OK
> >     >       > starting rsyslogd ... Log partition ready after 0 poll
> loops
> >     >       > done
> >     >       > rsyslogd: cannot connect to 172.18.0.1:514 <
> http://172.18.0.1:514>: Network is unreachable [v8.2208.0 try
> https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> ]
> >     >       > [   18.670637] BTRFS: device fsid
> 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3 scanned
> by udevd (518)
> >     >       >
> >     >       > Please insert USB token and enter your role in login
> prompt.
> >     >       >
> >     >       > login:
> >     >       >
> >     >       > Regards,
> >     >       > O.
> >     >       >
> >     >       >
> >     >       > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
> >     >       >       Hi Oleg,
> >     >       >
> >     >       >       Here is the issue from your logs:
> >     >       >
> >     >       >       SError Interrupt on CPU0, code 0xbe000000 -- SError
> >     >       >
> >     >       >       SErrors are special signals to notify software of
> serious hardware
> >     >       >       errors.  Something is going very wrong. Defective
> hardware is a
> >     >       >       possibility.  Another possibility if software
> accessing address ranges
> >     >       >       that it is not supposed to, sometimes it causes
> SErrors.
> >     >       >
> >     >       >       Cheers,
> >     >       >
> >     >       >       Stefano
> >     >       >
> >     >       >
> >     >       >
> >     >       >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
> >     >       >
> >     >       >       > Hello,
> >     >       >       >
> >     >       >       > Thanks guys.
> >     >       >       > I found out where the problem was.
> >     >       >       > Now dom0 booted more. But I have a new one.
> >     >       >       > This is a kernel panic during Dom0 loading.
> >     >       >       > Maybe someone is able to suggest something ?
> >     >       >       >
> >     >       >       > Regards,
> >     >       >       > O.
> >     >       >       >
> >     >       >       > [    3.771362] sfp_register_bus: upstream ops
> attach
> >     >       >       > [    3.776119] sfp_register_bus: Bus registered
> >     >       >       > [    3.780459] sfp_register_socket: register
> sfp_bus succeeded
> >     >       >       > [    3.789399] of_cfs_init
> >     >       >       > [    3.789499] of_cfs_init: OK
> >     >       >       > [    3.791685] clk: Not disabling unused clocks
> >     >       >       > [   11.010355] SError Interrupt on CPU0, code
> 0xbe000000 -- SError
> >     >       >       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0
> Not tainted 5.15.72-xilinx-v2022.1 #1
> >     >       >       > [   11.010393] Workqueue: events_unbound
> async_run_entry_fn
> >     >       >       > [   11.010414] pstate: 60000005 (nZCv daif -PAN
> -UAO -TCO -DIT -SSBS BTYPE=--)
> >     >       >       > [   11.010422] pc : simple_write_end+0xd0/0x130
> >     >       >       > [   11.010431] lr :
> generic_perform_write+0x118/0x1e0
> >     >       >       > [   11.010438] sp : ffffffc00809b910
> >     >       >       > [   11.010441] x29: ffffffc00809b910 x28:
> 0000000000000000 x27: ffffffef69ba88c0
> >     >       >       > [   11.010451] x26: 0000000000003eec x25:
> ffffff807515db00 x24: 0000000000000000
> >     >       >       > [   11.010459] x23: ffffffc00809ba90 x22:
> 0000000002aac000 x21: ffffff807315a260
> >     >       >       > [   11.010472] x20: 0000000000001000 x19:
> fffffffe02000000 x18: 0000000000000000
> >     >       >       > [   11.010481] x17: 00000000ffffffff x16:
> 0000000000008000 x15: 0000000000000000
> >     >       >       > [   11.010490] x14: 0000000000000000 x13:
> 0000000000000000 x12: 0000000000000000
> >     >       >       > [   11.010498] x11: 0000000000000000 x10:
> 0000000000000000 x9 : 0000000000000000
> >     >       >       > [   11.010507] x8 : 0000000000000000 x7 :
> ffffffef693ba680 x6 : 000000002d89b700
> >     >       >       > [   11.010515] x5 : fffffffe02000000 x4 :
> ffffff807315a3c8 x3 : 0000000000001000
> >     >       >       > [   11.010524] x2 : 0000000002aab000 x1 :
> 0000000000000001 x0 : 0000000000000005
> >     >       >       > [   11.010534] Kernel panic - not syncing:
> Asynchronous SError Interrupt
> >     >       >       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0
> Not tainted 5.15.72-xilinx-v2022.1 #1
> >     >       >       > [   11.010545] Hardware name: D14 Viper Board -
> White Unit (DT)
> >     >       >       > [   11.010548] Workqueue: events_unbound
> async_run_entry_fn
> >     >       >       > [   11.010556] Call trace:
> >     >       >       > [   11.010558]  dump_backtrace+0x0/0x1c4
> >     >       >       > [   11.010567]  show_stack+0x18/0x2c
> >     >       >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
> >     >       >       > [   11.010583]  dump_stack+0x18/0x34
> >     >       >       > [   11.010588]  panic+0x14c/0x2f8
> >     >       >       > [   11.010597]  print_tainted+0x0/0xb0
> >     >       >       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
> >     >       >       > [   11.010614]  do_serror+0x28/0x60
> >     >       >       > [   11.010621]  el1h_64_error_handler+0x30/0x50
> >     >       >       > [   11.010628]  el1h_64_error+0x78/0x7c
> >     >       >       > [   11.010633]  simple_write_end+0xd0/0x130
> >     >       >       > [   11.010639]  generic_perform_write+0x118/0x1e0
> >     >       >       > [   11.010644]
>  __generic_file_write_iter+0x138/0x1c4
> >     >       >       > [   11.010650]  generic_file_write_iter+0x78/0xd0
> >     >       >       > [   11.010656]  __kernel_write+0xfc/0x2ac
> >     >       >       > [   11.010665]  kernel_write+0x88/0x160
> >     >       >       > [   11.010673]  xwrite+0x44/0x94
> >     >       >       > [   11.010680]  do_copy+0xa8/0x104
> >     >       >       > [   11.010686]  write_buffer+0x38/0x58
> >     >       >       > [   11.010692]  flush_buffer+0x4c/0xbc
> >     >       >       > [   11.010698]  __gunzip+0x280/0x310
> >     >       >       > [   11.010704]  gunzip+0x1c/0x28
> >     >       >       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
> >     >       >       > [   11.010715]  do_populate_rootfs+0x80/0x164
> >     >       >       > [   11.010722]  async_run_entry_fn+0x48/0x164
> >     >       >       > [   11.010728]  process_one_work+0x1e4/0x3a0
> >     >       >       > [   11.010736]  worker_thread+0x7c/0x4c0
> >     >       >       > [   11.010743]  kthread+0x120/0x130
> >     >       >       > [   11.010750]  ret_from_fork+0x10/0x20
> >     >       >       > [   11.010757] SMP: stopping secondary CPUs
> >     >       >       > [   11.010784] Kernel Offset: 0x2f61200000 from
> 0xffffffc008000000
> >     >       >       > [   11.010788] PHYS_OFFSET: 0x0
> >     >       >       > [   11.010790] CPU features: 0x00000401,00000842
> >     >       >       > [   11.010795] Memory Limit: none
> >     >       >       > [   11.277509] ---[ end Kernel panic - not
> syncing: Asynchronous SError Interrupt ]---
> >     >       >       >
> >     >       >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
> >     >       >       >       Hi Oleg,
> >     >       >       >
> >     >       >       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
> >     >       >       >       >
> >     >       >       >       >
> >     >       >       >       >
> >     >       >       >       > Hello Michal,
> >     >       >       >       >
> >     >       >       >       > I was not able to enable earlyprintk in
> the xen for now.
> >     >       >       >       > I decided to choose another way.
> >     >       >       >       > This is a xen's command line that I found
> out completely.
> >     >       >       >       >
> >     >       >       >       > (XEN) $$$$ console=dtuart dtuart=serial0
> dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin bootscrub=0
> >     >       vwfi=native
> >     >       >       sched=null
> >     >       >       >       timer_slop=0
> >     >       >       >       Yes, adding a printk() in Xen was also a
> good idea.
> >     >       >       >
> >     >       >       >       >
> >     >       >       >       > So you are absolutely right about a
> command line.
> >     >       >       >       > Now I am going to find out why xen did not
> have the correct parameters from the device tree.
> >     >       >       >       Maybe you will find this document helpful:
> >     >       >       >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> <
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >
> >     >       >       >
> >     >       >       >       ~Michal
> >     >       >       >
> >     >       >       >       >
> >     >       >       >       > Regards,
> >     >       >       >       > Oleg
> >     >       >       >       >
> >     >       >       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <
> michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
> >     >       >       >       >
> >     >       >       >       >
> >     >       >       >       >     On 21/04/2023 10:04, Oleg Nikitenko
> wrote:
> >     >       >       >       >     >
> >     >       >       >       >     >
> >     >       >       >       >     >
> >     >       >       >       >     > Hello Michal,
> >     >       >       >       >     >
> >     >       >       >       >     > Yes, I use yocto.
> >     >       >       >       >     >
> >     >       >       >       >     > Yesterday all day long I tried to
> follow your suggestions.
> >     >       >       >       >     > I faced a problem.
> >     >       >       >       >     > Manually in the xen config build
> file I pasted the strings:
> >     >       >       >       >     In the .config file or in some Yocto
> file (listing additional Kconfig options) added to SRC_URI?
> >     >       >       >       >     You shouldn't really modify .config
> file but if you do, you should execute "make olddefconfig"
> >     >       afterwards.
> >     >       >       >       >
> >     >       >       >       >     >
> >     >       >       >       >     > CONFIG_EARLY_PRINTK
> >     >       >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
> >     >       >       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
> >     >       >       >       >     I hope you added =y to them.
> >     >       >       >       >
> >     >       >       >       >     Anyway, you have at least the
> following solutions:
> >     >       >       >       >     1) Run bitbake xen -c menuconfig to
> properly set early printk
> >     >       >       >       >     2) Find out how you enable other
> Kconfig options in your project (e.g. CONFIG_COLORING=y that is not
> >     >       enabled by
> >     >       >       default)
> >     >       >       >       >     3) Append the following to
> "xen/arch/arm/configs/arm64_defconfig":
> >     >       >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
> >     >       >       >       >
> >     >       >       >       >     ~Michal
> >     >       >       >       >
> >     >       >       >       >     >
> >     >       >       >       >     > Host hangs in build time.
> >     >       >       >       >     > Maybe I did not set something in the
> config build file ?
> >     >       >       >       >     >
> >     >       >       >       >     > Regards,
> >     >       >       >       >     > Oleg
> >     >       >       >       >     >
> >     >       >       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg
> Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
> >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>:
> >     >       >       >       >     >
> >     >       >       >       >     >     Thanks Michal,
> >     >       >       >       >     >
> >     >       >       >       >     >     You gave me an idea.
> >     >       >       >       >     >     I am going to try it today.
> >     >       >       >       >     >
> >     >       >       >       >     >     Regards,
> >     >       >       >       >     >     O.
> >     >       >       >       >     >
> >     >       >       >       >     >     чт, 20 апр. 2023 г. в 11:56,
> Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
> >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>:
> >     >       >       >       >     >
> >     >       >       >       >     >         Thanks Stefano.
> >     >       >       >       >     >
> >     >       >       >       >     >         I am going to do it today.
> >     >       >       >       >     >
> >     >       >       >       >     >         Regards,
> >     >       >       >       >     >         O.
> >     >       >       >       >     >
> >     >       >       >       >     >         ср, 19 апр. 2023 г. в 23:05,
> Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> >     >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>
> >     >       >       >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>:
> >     >       >       >       >     >
> >     >       >       >       >     >             On Wed, 19 Apr 2023,
> Oleg Nikitenko wrote:
> >     >       >       >       >     >             > Hi Michal,
> >     >       >       >       >     >             >
> >     >       >       >       >     >             > I corrected xen's
> command line.
> >     >       >       >       >     >             > Now it is
> >     >       >       >       >     >             > xen,xen-bootargs =
> "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
> >     >       dom0_vcpus_pin
> >     >       >       >       bootscrub=0 vwfi=native sched=null
> >     >       >       >       >     >             > timer_slop=0
> way_size=65536 xen_colors=0-3 dom0_colors=4-7";
> >     >       >       >       >     >
> >     >       >       >       >     >             4 colors is way too many
> for xen, just do xen_colors=0-0. There is no
> >     >       >       >       >     >             advantage in using more
> than 1 color for Xen.
> >     >       >       >       >     >
> >     >       >       >       >     >             4 colors is too few for
> dom0, if you are giving 1600M of memory to Dom0.
> >     >       >       >       >     >             Each color is 256M. For
> 1600M you should give at least 7 colors. Try:
> >     >       >       >       >     >
> >     >       >       >       >     >             xen_colors=0-0
> dom0_colors=1-8
> >     >       >       >       >     >
> >     >       >       >       >     >
> >     >       >       >       >     >
> >     >       >       >       >     >             > Unfortunately the
> result was the same.
> >     >       >       >       >     >             >
> >     >       >       >       >     >             > (XEN)  - Dom0 mode:
> Relaxed
> >     >       >       >       >     >             > (XEN) P2M: 40-bit IPA
> with 40-bit PA and 8-bit VMID
> >     >       >       >       >     >             > (XEN) P2M: 3 levels
> with order-1 root, VTCR 0x0000000080023558
> >     >       >       >       >     >             > (XEN) Scheduling
> granularity: cpu, 1 CPU per sched-resource
> >     >       >       >       >     >             > (XEN) Coloring general
> information
> >     >       >       >       >     >             > (XEN) Way size: 64kB
> >     >       >       >       >     >             > (XEN) Max. number of
> colors available: 16
> >     >       >       >       >     >             > (XEN) Xen color(s): [
> 0 ]
> >     >       >       >       >     >             > (XEN) alternatives:
> Patching with alt table 00000000002cc690 -> 00000000002ccc0c
> >     >       >       >       >     >             > (XEN) Color array
> allocation failed for dom0
> >     >       >       >       >     >             > (XEN)
> >     >       >       >       >     >             > (XEN)
> ****************************************
> >     >       >       >       >     >             > (XEN) Panic on CPU 0:
> >     >       >       >       >     >             > (XEN) Error creating
> domain 0
> >     >       >       >       >     >             > (XEN)
> ****************************************
> >     >       >       >       >     >             > (XEN)
> >     >       >       >       >     >             > (XEN) Reboot in five
> seconds...
> >     >       >       >       >     >             >
> >     >       >       >       >     >             > I am going to find out
> how command line arguments passed and parsed.
> >     >       >       >       >     >             >
> >     >       >       >       >     >             > Regards,
> >     >       >       >       >     >             > Oleg
> >     >       >       >       >     >             >
> >     >       >       >       >     >             > ср, 19 апр. 2023 г. в
> 11:25, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
> >
> >     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com
> >>
> >     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>>:
> >     >       >       >       >     >             >       Hi Michal,
> >     >       >       >       >     >             >
> >     >       >       >       >     >             > You put my nose into
> the problem. Thank you.
> >     >       >       >       >     >             > I am going to use your
> point.
> >     >       >       >       >     >             > Let's see what happens.
> >     >       >       >       >     >             >
> >     >       >       >       >     >             > Regards,
> >     >       >       >       >     >             > Oleg
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >
> >     >       >       >       >     >             > ср, 19 апр. 2023 г. в
> 10:37, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>
> >     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
> >     >       >       >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>>:
> >     >       >       >       >     >             >       Hi Oleg,
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >       On 19/04/2023
> 09:03, Oleg Nikitenko wrote:
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       > Hello Stefano,
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       > Thanks for the
> clarification.
> >     >       >       >       >     >             >       > My company
> uses yocto for image generation.
> >     >       >       >       >     >             >       > What kind of
> information do you need to consult me in this case ?
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       > Maybe modules
> sizes/addresses which were mentioned by @Julien Grall
> >     >       >       <mailto:julien@xen.org <mailto:julien@xen.org>
> >     >       >       >       <mailto:julien@xen.org <mailto:
> julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:
> julien@xen.org <mailto:julien@xen.org>>>> ?
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >       Sorry for
> jumping into discussion, but FWICS the Xen command line you provided
> >     >       seems to be
> >     >       >       not the
> >     >       >       >       one
> >     >       >       >       >     >             >       Xen booted with.
> The error you are observing most likely is due to dom0 colors
> >     >       >       configuration not
> >     >       >       >       being
> >     >       >       >       >     >             >       specified (i.e.
> lack of dom0_colors=<> parameter). Although in the command line you
> >     >       >       provided, this
> >     >       >       >       parameter
> >     >       >       >       >     >             >       is set, I
> strongly doubt that this is the actual command line in use.
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >       You wrote:
> >     >       >       >       >     >             >       xen,xen-bootargs
> = "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
> >     >       >       dom0_vcpus_pin
> >     >       >       >       bootscrub=0 vwfi=native
> >     >       >       >       >     >             >       sched=null
> timer_slop=0 way_szize=65536 xen_colors=0-3 dom0_colors=4-7";
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >       but:
> >     >       >       >       >     >             >       1) way_szize has
> a typo
> >     >       >       >       >     >             >       2) you specified
> 4 colors (0-3) for Xen, but the boot log says that Xen has only
> >     >       one:
> >     >       >       >       >     >             >       (XEN) Xen
> color(s): [ 0 ]
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >       This makes me
> believe that no colors configuration actually end up in command line
> >     >       that Xen
> >     >       >       booted
> >     >       >       >       with.
> >     >       >       >       >     >             >       Single color for
> Xen is a "default if not specified" and way size was probably
> >     >       calculated
> >     >       >       by asking
> >     >       >       >       HW.
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >       So I would
> suggest to first cross-check the command line in use.
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >       ~Michal
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       > Regards,
> >     >       >       >       >     >             >       > Oleg
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       > вт, 18 апр.
> 2023 г. в 20:44, Stefano Stabellini <sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>
> >     >       >       >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>
> >     >       >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>
> >     >       >       >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>>>:
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >     On Tue, 18
> Apr 2023, Oleg Nikitenko wrote:
> >     >       >       >       >     >             >       >     > Hi
> Julien,
> >     >       >       >       >     >             >       >     >
> >     >       >       >       >     >             >       >     > >> This
> feature has not been merged in Xen upstream yet
> >     >       >       >       >     >             >       >     >
> >     >       >       >       >     >             >       >     > > would
> assume that upstream + the series on the ML [1] work
> >     >       >       >       >     >             >       >     >
> >     >       >       >       >     >             >       >     > Please
> clarify this point.
> >     >       >       >       >     >             >       >     > Because
> the two thoughts are controversial.
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >     Hi Oleg,
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >     As Julien
> wrote, there is nothing controversial. As you are aware,
> >     >       >       >       >     >             >       >     Xilinx
> maintains a separate Xen tree specific for Xilinx here:
> >     >       >       >       >     >             >       >
> https://github.com/xilinx/xen <https://github.com/xilinx/xen> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>>
> >     >       >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>
> >     >       >       >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>
> >     >       >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>
> >     >       >       >       <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen>>>>
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >     and the
> branch you are using (xlnx_rebase_4.16) comes from there.
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >     Instead,
> the upstream Xen tree lives here:
> >     >       >       >       >     >             >       >
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
> >     >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >     The Cache
> Coloring feature that you are trying to configure is present
> >     >       >       >       >     >             >       >     in
> xlnx_rebase_4.16, but not yet present upstream (there is an
> >     >       >       >       >     >             >       >
>  outstanding patch series to add cache coloring to Xen upstream but it
> >     >       >       >       >     >             >       >     hasn't
> been merged yet.)
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >     Anyway, if
> you are using xlnx_rebase_4.16 it doesn't matter too much for
> >     >       >       >       >     >             >       >     you as you
> already have Cache Coloring as a feature there.
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >     I take you
> are using ImageBuilder to generate the boot configuration? If
> >     >       >       >       >     >             >       >     so, please
> post the ImageBuilder config file that you are using.
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >       >     But from
> the boot message, it looks like the colors configuration for
> >     >       >       >       >     >             >       >     Dom0 is
> incorrect.
> >     >       >       >       >     >             >       >
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >
> >     >       >       >       >     >             >
> >     >       >       >       >     >
> >     >       >       >       >
> >     >       >       >
> >     >       >       >
> >     >       >       >
> >     >       >
> >     >       >
> >     >       >
> >     >
> >     >
> >     >
> >
>

[-- Attachment #2: Type: text/html, Size: 108867 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-05-05  8:28  0%                                       ` Oleg Nikitenko
@ 2023-05-05  8:34  0%                                         ` Michal Orzel
  2023-05-05  8:48  0%                                           ` Oleg Nikitenko
  0 siblings, 1 reply; 200+ results
From: Michal Orzel @ 2023-05-05  8:34 UTC (permalink / raw)
  To: Oleg Nikitenko, Stefano Stabellini
  Cc: Julien Grall, xen-devel, Bertrand Marquis, Carlo Nonato,
	Stewart.Hildebrand

Hi Oleg,

Replying, so that you do not need to wait for Stefano.

On 05/05/2023 10:28, Oleg Nikitenko wrote:
> 	
> 
> 
> Hello Stefano,
> 
> I would like to try a xen cache color property from this repo  https://xenbits.xen.org/git-http/xen.git <https://xenbits.xen.org/git-http/xen.git>
> Could you tell whot branch I should use ?
Cache coloring feature is not part of the upstream tree and it is still under review.
You can only find it integrated in the Xilinx Xen tree.

~Michal

> 
> Regards,
> Oleg
> 
> пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
> 
>     I am familiar with the zcu102 but I don't know how you could possibly
>     generate a SError.
> 
>     I suggest to try to use ImageBuilder [1] to generate the boot
>     configuration as a test because that is known to work well for zcu102.
> 
>     [1] https://gitlab.com/xen-project/imagebuilder <https://gitlab.com/xen-project/imagebuilder>
> 
> 
>     On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
>     > Hello Stefano,
>     >
>     > Thanks for clarification.
>     > We nighter use ImageBuilder nor uboot boot script.
>     > A model is zcu102 compatible.
>     >
>     > Regards,
>     > O.
>     >
>     > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
>     >       This is interesting. Are you using Xilinx hardware by any chance? If so,
>     >       which board?
>     >
>     >       Are you using ImageBuilder to generate your boot.scr boot script? If so,
>     >       could you please post your ImageBuilder config file? If not, can you
>     >       post the source of your uboot boot script?
>     >
>     >       SErrors are supposed to be related to a hardware failure of some kind.
>     >       You are not supposed to be able to trigger an SError easily by
>     >       "mistake". I have not seen SErrors due to wrong cache coloring
>     >       configurations on any Xilinx board before.
>     >
>     >       The differences between Xen with and without cache coloring from a
>     >       hardware perspective are:
>     >
>     >       - With cache coloring, the SMMU is enabled and does address translations
>     >         even for dom0. Without cache coloring the SMMU could be disabled, and
>     >         if enabled, the SMMU doesn't do any address translations for Dom0. If
>     >         there is a hardware failure related to SMMU address translation it
>     >         could only trigger with cache coloring. This would be my normal
>     >         suggestion for you to explore, but the failure happens too early
>     >         before any DMA-capable device is programmed. So I don't think this can
>     >         be the issue.
>     >
>     >       - With cache coloring, the memory allocation is very different so you'll
>     >         end up using different DDR regions for Dom0. So if your DDR is
>     >         defective, you might only see a failure with cache coloring enabled
>     >         because you end up using different regions.
>     >
>     >
>     >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
>     >       > Hi Stefano,
>     >       >
>     >       > Thank you.
>     >       > If I build xen without colors support there is not this error.
>     >       > All the domains are booted well.
>     >       > Hense it can not be a hardware issue.
>     >       > This panic arrived during unpacking the rootfs.
>     >       > Here I attached the boot log xen/Dom0 without color.
>     >       > A highlighted strings printed exactly after the place where 1-st time panic arrived.
>     >       >
>     >       >  Xen 4.16.1-pre
>     >       > (XEN) Xen version 4.16.1-pre (nole2390@(none)) (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y 2023-04-21
>     >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300 git:321687b231-dirty
>     >       > (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
>     >       > (XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0, part 0xd03,rev 0x4
>     >       > (XEN) 64-bit Execution:
>     >       > (XEN)   Processor Features: 0000000000002222 0000000000000000
>     >       > (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
>     >       > (XEN)     Extensions: FloatingPoint AdvancedSIMD
>     >       > (XEN)   Debug Features: 0000000010305106 0000000000000000
>     >       > (XEN)   Auxiliary Features: 0000000000000000 0000000000000000
>     >       > (XEN)   Memory Model Features: 0000000000001122 0000000000000000
>     >       > (XEN)   ISA Features:  0000000000011120 0000000000000000
>     >       > (XEN) 32-bit Execution:
>     >       > (XEN)   Processor Features: 0000000000000131:0000000000011011
>     >       > (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
>     >       > (XEN)     Extensions: GenericTimer Security
>     >       > (XEN)   Debug Features: 0000000003010066
>     >       > (XEN)   Auxiliary Features: 0000000000000000
>     >       > (XEN)   Memory Model Features: 0000000010201105 0000000040000000
>     >       > (XEN)                          0000000001260000 0000000002102211
>     >       > (XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
>     >       > (XEN)                 0000000001112131 0000000000011142 0000000000011121
>     >       > (XEN) Using SMC Calling Convention v1.2
>     >       > (XEN) Using PSCI v1.1
>     >       > (XEN) SMP: Allowing 4 CPUs
>     >       > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
>     >       > (XEN) GICv2 initialization:
>     >       > (XEN)         gic_dist_addr=00000000f9010000
>     >       > (XEN)         gic_cpu_addr=00000000f9020000
>     >       > (XEN)         gic_hyp_addr=00000000f9040000
>     >       > (XEN)         gic_vcpu_addr=00000000f9060000
>     >       > (XEN)         gic_maintenance_irq=25
>     >       > (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
>     >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
>     >       > (XEN) Using scheduler: null Scheduler (null)
>     >       > (XEN) Initializing null scheduler
>     >       > (XEN) WARNING: This is experimental software in development.
>     >       > (XEN) Use at your own risk.
>     >       > (XEN) Allocated console ring of 32 KiB.
>     >       > (XEN) CPU0: Guest atomics will try 12 times before pausing the domain
>     >       > (XEN) Bringing up CPU1
>     >       > (XEN) CPU1: Guest atomics will try 13 times before pausing the domain
>     >       > (XEN) CPU 1 booted.
>     >       > (XEN) Bringing up CPU2
>     >       > (XEN) CPU2: Guest atomics will try 13 times before pausing the domain
>     >       > (XEN) CPU 2 booted.
>     >       > (XEN) Bringing up CPU3
>     >       > (XEN) CPU3: Guest atomics will try 13 times before pausing the domain
>     >       > (XEN) Brought up 4 CPUs
>     >       > (XEN) CPU 3 booted.
>     >       > (XEN) smmu: /axi/smmu@fd800000: probing hardware configuration...
>     >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
>     >       > (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
>     >       > (XEN) smmu: /axi/smmu@fd800000: stream matching with 48 register groups, mask 0x7fff<2>smmu: /axi/smmu@fd800000: 16 context
>     >       banks (0
>     >       > stage-2 only)
>     >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
>     >       > (XEN) smmu: /axi/smmu@fd800000: registered 29 master devices
>     >       > (XEN) I/O virtualisation enabled
>     >       > (XEN)  - Dom0 mode: Relaxed
>     >       > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>     >       > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>     >       > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>     >       > (XEN) alternatives: Patching with alt table 00000000002cc5c8 -> 00000000002ccb2c
>     >       > (XEN) *** LOADING DOMAIN 0 ***
>     >       > (XEN) Loading d0 kernel from boot module @ 0000000001000000
>     >       > (XEN) Loading ramdisk from boot module @ 0000000002000000
>     >       > (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
>     >       > (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
>     >       > (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
>     >       > (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
>     >       > (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
>     >       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
>     >       > (XEN) Allocating PPI 16 for event channel interrupt
>     >       > (XEN) Extended region 0: 0x81200000->0xa0000000
>     >       > (XEN) Extended region 1: 0xb1200000->0xc0000000
>     >       > (XEN) Extended region 2: 0xc8000000->0xe0000000
>     >       > (XEN) Extended region 3: 0xf0000000->0xf9000000
>     >       > (XEN) Extended region 4: 0x100000000->0x600000000
>     >       > (XEN) Extended region 5: 0x880000000->0x8000000000
>     >       > (XEN) Extended region 6: 0x8001000000->0x10000000000
>     >       > (XEN) Loading zImage from 0000000001000000 to 0000000010000000-0000000010e41008
>     >       > (XEN) Loading d0 initrd from 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
>     >       > (XEN) Loading d0 DTB to 0x0000000013400000-0x000000001340cbdc
>     >       > (XEN) Initial low memory virq threshold set at 0x4000 pages.
>     >       > (XEN) Std. Loglevel: All
>     >       > (XEN) Guest Loglevel: All
>     >       > (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
>     >       > (XEN) null.c:353: 0 <-- d0v0
>     >       > (XEN) Freed 356kB init memory.
>     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
>     >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
>     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
>     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
>     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
>     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
>     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
>     >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>     >       > [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
>     >       > [    0.000000] Linux version 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC) 11.3.0, GNU ld (GNU
>     >       Binutils)
>     >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
>     >       > [    0.000000] Machine model: D14 Viper Board - White Unit
>     >       > [    0.000000] Xen 4.16 support found
>     >       > [    0.000000] Zone ranges:
>     >       > [    0.000000]   DMA      [mem 0x0000000010000000-0x000000007fffffff]
>     >       > [    0.000000]   DMA32    empty
>     >       > [    0.000000]   Normal   empty
>     >       > [    0.000000] Movable zone start for each node
>     >       > [    0.000000] Early memory node ranges
>     >       > [    0.000000]   node   0: [mem 0x0000000010000000-0x000000001fffffff]
>     >       > [    0.000000]   node   0: [mem 0x0000000022000000-0x0000000022147fff]
>     >       > [    0.000000]   node   0: [mem 0x0000000022200000-0x0000000022347fff]
>     >       > [    0.000000]   node   0: [mem 0x0000000024000000-0x0000000027ffffff]
>     >       > [    0.000000]   node   0: [mem 0x0000000030000000-0x000000007fffffff]
>     >       > [    0.000000] Initmem setup node 0 [mem 0x0000000010000000-0x000000007fffffff]
>     >       > [    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
>     >       > [    0.000000] On node 0, zone DMA: 184 pages in unavailable ranges
>     >       > [    0.000000] On node 0, zone DMA: 7352 pages in unavailable ranges
>     >       > [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
>     >       > [    0.000000] psci: probing for conduit method from DT.
>     >       > [    0.000000] psci: PSCIv1.1 detected in firmware.
>     >       > [    0.000000] psci: Using standard PSCI v0.2 function IDs
>     >       > [    0.000000] psci: Trusted OS migration not required
>     >       > [    0.000000] psci: SMC Calling Convention v1.1
>     >       > [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0 d32744 u65536
>     >       > [    0.000000] Detected VIPT I-cache on CPU0
>     >       > [    0.000000] CPU features: kernel page table isolation forced ON by KASLR
>     >       > [    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
>     >       > [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 403845
>     >       > [    0.000000] Kernel command line: console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused fips=1 root=/dev/ram0
>     >       maxcpus=2
>     >       > [    0.000000] Unknown kernel command line parameters "earlyprintk=xen fips=1", will be passed to user space.
>     >       > [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>     >       > [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>     >       > [    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:on
>     >       > [    0.000000] mem auto-init: clearing system memory may take some time...
>     >       > [    0.000000] Memory: 1121936K/1641024K available (9728K kernel code, 836K rwdata, 2396K rodata, 1536K init, 262K bss,
>     >       256944K reserved,
>     >       > 262144K cma-reserved)
>     >       > [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
>     >       > [    0.000000] rcu: Hierarchical RCU implementation.
>     >       > [    0.000000] rcu: RCU event tracing is enabled.
>     >       > [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
>     >       > [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>     >       > [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
>     >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
>     >       > [    0.000000] Root IRQ handler: gic_handle_irq
>     >       > [    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (virt).
>     >       > [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
>     >       > [    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
>     >       > [    0.000258] Console: colour dummy device 80x25
>     >       > [    0.310231] printk: console [hvc0] enabled
>     >       > [    0.314403] Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS (lpj=400000)
>     >       > [    0.324851] pid_max: default: 32768 minimum: 301
>     >       > [    0.329706] LSM: Security Framework initializing
>     >       > [    0.334204] Yama: becoming mindful.
>     >       > [    0.337865] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>     >       > [    0.345180] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>     >       > [    0.354743] xen:grant_table: Grant tables using version 1 layout
>     >       > [    0.359132] Grant table initialized
>     >       > [    0.362664] xen:events: Using FIFO-based ABI
>     >       > [    0.366993] Xen: initializing cpu0
>     >       > [    0.370515] rcu: Hierarchical SRCU implementation.
>     >       > [    0.375930] smp: Bringing up secondary CPUs ...
>     >       > (XEN) null.c:353: 1 <-- d0v1
>     >       > (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>     >       > [    0.382549] Detected VIPT I-cache on CPU1
>     >       > [    0.388712] Xen: initializing cpu1
>     >       > [    0.388743] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
>     >       > [    0.388829] smp: Brought up 1 node, 2 CPUs
>     >       > [    0.406941] SMP: Total of 2 processors activated.
>     >       > [    0.411698] CPU features: detected: 32-bit EL0 Support
>     >       > [    0.416888] CPU features: detected: CRC32 instructions
>     >       > [    0.422121] CPU: All CPU(s) started at EL1
>     >       > [    0.426248] alternatives: patching kernel code
>     >       > [    0.431424] devtmpfs: initialized
>     >       > [    0.441454] KASLR enabled
>     >       > [    0.441602] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
>     >       > [    0.448321] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
>     >       > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE protocol family
>     >       > [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
>     >       > [    0.503772] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
>     >       > [    0.511610] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
>     >       > [    0.519478] audit: initializing netlink subsys (disabled)
>     >       > [    0.524985] audit: type=2000 audit(0.336:1): state=initialized audit_enabled=0 res=1
>     >       > [    0.529169] thermal_sys: Registered thermal governor 'step_wise'
>     >       > [    0.533023] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
>     >       > [    0.545608] ASID allocator initialised with 32768 entries
>     >       > [    0.551030] xen:swiotlb_xen: Warning: only able to allocate 4 MB for software IO TLB
>     >       > [    0.559332] software IO TLB: mapped [mem 0x0000000011800000-0x0000000011c00000] (4MB)
>     >       > [    0.583565] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>     >       > [    0.584721] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
>     >       > [    0.591478] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>     >       > [    0.598225] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
>     >       > [    0.636520] DRBG: Continuing without Jitter RNG
>     >       > [    0.737187] raid6: neonx8   gen()  2143 MB/s
>     >       > [    0.805294] raid6: neonx8   xor()  1589 MB/s
>     >       > [    0.873406] raid6: neonx4   gen()  2177 MB/s
>     >       > [    0.941499] raid6: neonx4   xor()  1556 MB/s
>     >       > [    1.009612] raid6: neonx2   gen()  2072 MB/s
>     >       > [    1.077715] raid6: neonx2   xor()  1430 MB/s
>     >       > [    1.145834] raid6: neonx1   gen()  1769 MB/s
>     >       > [    1.213935] raid6: neonx1   xor()  1214 MB/s
>     >       > [    1.282046] raid6: int64x8  gen()  1366 MB/s
>     >       > [    1.350132] raid6: int64x8  xor()   773 MB/s
>     >       > [    1.418259] raid6: int64x4  gen()  1602 MB/s
>     >       > [    1.486349] raid6: int64x4  xor()   851 MB/s
>     >       > [    1.554464] raid6: int64x2  gen()  1396 MB/s
>     >       > [    1.622561] raid6: int64x2  xor()   744 MB/s
>     >       > [    1.690687] raid6: int64x1  gen()  1033 MB/s
>     >       > [    1.758770] raid6: int64x1  xor()   517 MB/s
>     >       > [    1.758809] raid6: using algorithm neonx4 gen() 2177 MB/s
>     >       > [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
>     >       > [    1.767957] raid6: using neon recovery algorithm
>     >       > [    1.772824] xen:balloon: Initialising balloon driver
>     >       > [    1.778021] iommu: Default domain type: Translated
>     >       > [    1.782584] iommu: DMA domain TLB invalidation policy: strict mode
>     >       > [    1.789149] SCSI subsystem initialized
>     >       > [    1.792820] usbcore: registered new interface driver usbfs
>     >       > [    1.798254] usbcore: registered new interface driver hub
>     >       > [    1.803626] usbcore: registered new device driver usb
>     >       > [    1.808761] pps_core: LinuxPPS API ver. 1 registered
>     >       > [    1.813716] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it <mailto:giometti@linux.it>>
>     >       > [    1.822903] PTP clock support registered
>     >       > [    1.826893] EDAC MC: Ver: 3.0.0
>     >       > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
>     >       > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX channels.
>     >       > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX channels.
>     >       > [    1.855907] FPGA manager framework
>     >       > [    1.859952] clocksource: Switched to clocksource arch_sys_counter
>     >       > [    1.871712] NET: Registered PF_INET protocol family
>     >       > [    1.871838] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
>     >       > [    1.879392] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
>     >       > [    1.887078] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
>     >       > [    1.894846] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
>     >       > [    1.902900] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
>     >       > [    1.910350] TCP: Hash tables configured (established 16384 bind 16384)
>     >       > [    1.916778] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
>     >       > [    1.923509] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
>     >       > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol family
>     >       > [    1.936834] RPC: Registered named UNIX socket transport module.
>     >       > [    1.942342] RPC: Registered udp transport module.
>     >       > [    1.947088] RPC: Registered tcp transport module.
>     >       > [    1.951843] RPC: Registered tcp NFSv4.1 backchannel transport module.
>     >       > [    1.958334] PCI: CLS 0 bytes, default 64
>     >       > [    1.962709] Trying to unpack rootfs image as initramfs...
>     >       > [    1.977090] workingset: timestamp_bits=62 max_order=19 bucket_order=0
>     >       > [    1.982863] Installing knfsd (copyright (C) 1996 okir@monad.swb.de <mailto:okir@monad.swb.de>).
>     >       > [    2.021045] NET: Registered PF_ALG protocol family
>     >       > [    2.021122] xor: measuring software checksum speed
>     >       > [    2.029347]    8regs           :  2366 MB/sec
>     >       > [    2.033081]    32regs          :  2802 MB/sec
>     >       > [    2.038223]    arm64_neon      :  2320 MB/sec
>     >       > [    2.038385] xor: using function: 32regs (2802 MB/sec)
>     >       > [    2.043614] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
>     >       > [    2.050959] io scheduler mq-deadline registered
>     >       > [    2.055521] io scheduler kyber registered
>     >       > [    2.068227] xen:xen_evtchn: Event-channel device installed
>     >       > [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
>     >       > [    2.076190] cacheinfo: Unable to detect cache hierarchy for CPU 0
>     >       > [    2.085548] brd: module loaded
>     >       > [    2.089290] loop: module loaded
>     >       > [    2.089341] Invalid max_queues (4), will use default max: 2.
>     >       > [    2.094565] tun: Universal TUN/TAP device driver, 1.6
>     >       > [    2.098655] xen_netfront: Initialising Xen virtual ethernet driver
>     >       > [    2.104156] usbcore: registered new interface driver rtl8150
>     >       > [    2.109813] usbcore: registered new interface driver r8152
>     >       > [    2.115367] usbcore: registered new interface driver asix
>     >       > [    2.120794] usbcore: registered new interface driver ax88179_178a
>     >       > [    2.126934] usbcore: registered new interface driver cdc_ether
>     >       > [    2.132816] usbcore: registered new interface driver cdc_eem
>     >       > [    2.138527] usbcore: registered new interface driver net1080
>     >       > [    2.144256] usbcore: registered new interface driver cdc_subset
>     >       > [    2.150205] usbcore: registered new interface driver zaurus
>     >       > [    2.155837] usbcore: registered new interface driver cdc_ncm
>     >       > [    2.161550] usbcore: registered new interface driver r8153_ecm
>     >       > [    2.168240] usbcore: registered new interface driver cdc_acm
>     >       > [    2.173109] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
>     >       > [    2.181358] usbcore: registered new interface driver uas
>     >       > [    2.186547] usbcore: registered new interface driver usb-storage
>     >       > [    2.192643] usbcore: registered new interface driver ftdi_sio
>     >       > [    2.198384] usbserial: USB Serial support registered for FTDI USB Serial Device
>     >       > [    2.206118] udc-core: couldn't find an available UDC - added [g_mass_storage] to list of pending drivers
>     >       > [    2.215332] i2c_dev: i2c /dev entries driver
>     >       > [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)
>     >       > [    2.225923] device-mapper: uevent: version 1.0.3
>     >       > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com <mailto:dm-devel@redhat.com>
>     >       > [    2.239315] EDAC MC0: Giving out device to module 1 controller synps_ddr_controller: DEV synps_edac (INTERRUPT)
>     >       > [    2.249405] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV
>     >       ff960000.memory-controller (INTERRUPT)
>     >       > [    2.261719] sdhci: Secure Digital Host Controller Interface driver
>     >       > [    2.267487] sdhci: Copyright(c) Pierre Ossman
>     >       > [    2.271890] sdhci-pltfm: SDHCI platform and OF driver helper
>     >       > [    2.278157] ledtrig-cpu: registered to indicate activity on CPUs
>     >       > [    2.283816] zynqmp_firmware_probe Platform Management API v1.1
>     >       > [    2.289554] zynqmp_firmware_probe Trustzone version v1.0
>     >       > [    2.327875] securefw securefw: securefw probed
>     >       > [    2.328324] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
>     >       > [    2.332563] zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
>     >       > [    2.341183] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
>     >       > [    2.347667] remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is available
>     >       > [    2.353003] remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is available
>     >       > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
>     >       > [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen Proxy registered
>     >       > [    2.372525] viper-vdpp a4000000.vdpp: Device Tree Probing
>     >       > [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>     >       > [    2.386432] viper-vdpp a4000000.vdpp: Unable to register tamper handler. Retrying...
>     >       > [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
>     >       > [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device registered
>     >       > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
>     >       > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event Count: 32
>     >       > [    2.420856] default preset
>     >       > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device registered
>     >       > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
>     >       > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device registered
>     >       > [    2.441976] vmcu driver init
>     >       > [    2.444922] VMCU: : (240:0) registered
>     >       > [    2.444956] In K81 Updater init
>     >       > [    2.449003] pktgen: Packet Generator for packet performance testing. Version: 2.75
>     >       > [    2.468833] Initializing XFRM netlink socket
>     >       > [    2.468902] NET: Registered PF_PACKET protocol family
>     >       > [    2.472729] Bridge firewalling registered
>     >       > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
>     >       > [    2.481341] registered taskstats version 1
>     >       > [    2.486394] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
>     >       > [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
>     >       > [    2.507103] of-fpga-region fpga-full: FPGA Region probed
>     >       > [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver Probe success
>     >       > [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver Probe success
>     >       > [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver Probe success
>     >       > [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver Probe success
>     >       > [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver Probe success
>     >       > [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver Probe success
>     >       > [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver Probe success
>     >       > [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver Probe success
>     >       > [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver Probe success
>     >       > [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver Probe success
>     >       > [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
>     >       > [    2.946467] 2 fixed-partitions partitions found on MTD device spi0.0
>     >       > [    2.952393] Creating 2 MTD partitions on "spi0.0":
>     >       > [    2.957231] 0x000004000000-0x000008000000 : "bank A"
>     >       > [    2.963332] 0x000000000000-0x000004000000 : "bank B"
>     >       > [    2.968694] macb ff0b0000.ethernet: Not enabling partial store and forward
>     >       > [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25 (18:41:fe:0f:ff:02)
>     >       > [    2.984472] macb ff0c0000.ethernet: Not enabling partial store and forward
>     >       > [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26 (18:41:fe:0f:ff:03)
>     >       > [    3.001043] viper_enet viper_enet: Viper power GPIOs initialised
>     >       > [    3.007313] viper_enet viper_enet vnet0 (uninitialized): Validate interface QSGMII
>     >       > [    3.014914] viper_enet viper_enet vnet1 (uninitialized): Validate interface QSGMII
>     >       > [    3.022138] viper_enet viper_enet vnet1 (uninitialized): Validate interface type 18
>     >       > [    3.030274] viper_enet viper_enet vnet2 (uninitialized): Validate interface QSGMII
>     >       > [    3.037785] viper_enet viper_enet vnet3 (uninitialized): Validate interface QSGMII
>     >       > [    3.045301] viper_enet viper_enet: Viper enet registered
>     >       > [    3.050958] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
>     >       > [    3.057135] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
>     >       > [    3.063538] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
>     >       > [    3.069920] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
>     >       > [    3.097729] si70xx: probe of 2-0040 failed with error -5
>     >       > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
>     >       > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
>     >       > [    3.112457] viper-tamper viper-tamper: Device registered
>     >       > [    3.117593] active_bank active_bank: boot bank: 1
>     >       > [    3.122184] active_bank active_bank: boot mode: (0x02) qspi32
>     >       > [    3.128247] viper-vdpp a4000000.vdpp: Device Tree Probing
>     >       > [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>     >       > [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler registered
>     >       > [    3.147438] viper-vdpp a4000000.vdpp: Device registered
>     >       > [    3.153007] lpc55_l2 spi1.0: registered handler for protocol 0
>     >       > [    3.158582] lpc55_user lpc55_user: The major number for your device is 236
>     >       > [    3.165976] lpc55_l2 spi1.0: registered handler for protocol 1
>     >       > [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >       > [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
>     >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
>     >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
>     >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
>     >       > [    3.202932] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
>     >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
>     >       > [    3.215694] lpc55_l2 spi1.0: rx error: -110
>     >       > [    3.284438] mmc0: new HS200 MMC card at address 0001
>     >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
>     >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
>     >       > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
>     >       > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
>     >       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
>     >       > [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to read the hardware clock
>     >       > [    3.591252] cdns-i2c ff020000.i2c: recovery information complete
>     >       > [    3.597085] at24 0-0050: supply vcc not found, using dummy regulator
>     >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
>     >       > [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
>     >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
>     >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
>     >       > [    3.624224] rtc-rv3028 0-0052: registered as rtc1
>     >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
>     >       > [    3.633253] lpc55_l2 spi1.0: rx error: -110
>     >       > [    3.639104] k81_bootloader 0-0010: probe
>     >       > [    3.641628] VMCU: : (235:0) registered
>     >       > [    3.641635] k81_bootloader 0-0010: probe completed
>     >       > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 28
>     >       > [    3.669154] cdns-i2c ff030000.i2c: recovery information complete
>     >       > [    3.675412] lm75 1-0048: supply vs not found, using dummy regulator
>     >       > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
>     >       > [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
>     >       > [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
>     >       > [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
>     >       > [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
>     >       > [    3.705157] pca954x 1-0070: registered 4 multiplexed busses for I2C switch pca9546
>     >       > [    3.713049] at24 1-0054: supply vcc not found, using dummy regulator
>     >       > [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM, read-only
>     >       > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq 29
>     >       > [    3.731272] sfp viper_enet:sfp-eth1: Host maximum power 2.0W
>     >       > [    3.737549] sfp_register_socket: got sfp_bus
>     >       > [    3.740709] sfp_register_socket: register sfp_bus
>     >       > [    3.745459] sfp_register_bus: ops ok!
>     >       > [    3.749179] sfp_register_bus: Try to attach
>     >       > [    3.753419] sfp_register_bus: Attach succeeded
>     >       > [    3.757914] sfp_register_bus: upstream ops attach
>     >       > [    3.762677] sfp_register_bus: Bus registered
>     >       > [    3.766999] sfp_register_socket: register sfp_bus succeeded
>     >       > [    3.775870] of_cfs_init
>     >       > [    3.776000] of_cfs_init: OK
>     >       > [    3.778211] clk: Not disabling unused clocks
>     >       > [   11.278477] Freeing initrd memory: 206056K
>     >       > [   11.279406] Freeing unused kernel memory: 1536K
>     >       > [   11.314006] Checked W+X mappings: passed, no W+X pages found
>     >       > [   11.314142] Run /init as init process
>     >       > INIT: version 3.01 booting
>     >       > fsck (busybox 1.35.0)
>     >       > /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600 blocks
>     >       > /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600 blocks
>     >       > /dev/mmcblk0p3 was not cleanly unmounted, check forced.
>     >       > /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous), 663/16384 blocks
>     >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode: disabled.
>     >       > Starting random number generator daemon.
>     >       > [   11.580662] random: crng init done
>     >       > Starting udev
>     >       > [   11.613159] udevd[142]: starting version 3.2.10
>     >       > [   11.620385] udevd[143]: starting eudev-3.2.10
>     >       > [   11.704481] macb ff0b0000.ethernet control_red: renamed from eth0
>     >       > [   11.720264] macb ff0c0000.ethernet control_black: renamed from eth1
>     >       > [   12.063396] ip_local_port_range: prefer different parity for start/end values.
>     >       > [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >       > hwclock: RTC_RD_TIME: Invalid exchange
>     >       > Mon Feb 27 08:40:53 UTC 2023
>     >       > [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad result
>     >       > hwclock: RTC_SET_TIME: Invalid exchange
>     >       > [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >       > Starting mcud
>     >       > INIT: Entering runlevel: 5
>     >       > Configuring network interfaces... done.
>     >       > resetting network interface
>     >       > [   12.718295] macb ff0b0000.ethernet control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver [Xilinx PCS/PMA PHY] (irq=POLL)
>     >       > [   12.723919] macb ff0b0000.ethernet control_red: configuring for phy/gmii link mode
>     >       > [   12.732151] pps pps0: new PPS source ptp0
>     >       > [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
>     >       > [   12.745724] macb ff0c0000.ethernet control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver [Xilinx PCS/PMA PHY]
>     >       (irq=POLL)
>     >       > [   12.753469] macb ff0c0000.ethernet control_black: configuring for phy/gmii link mode
>     >       > [   12.761804] pps pps1: new PPS source ptp1
>     >       > [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
>     >       > Auto-negotiation: off
>     >       > Auto-negotiation: off
>     >       > [   16.828151] macb ff0b0000.ethernet control_red: unable to generate target frequency: 125000000 Hz
>     >       > [   16.834553] macb ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full - flow control off
>     >       > [   16.860552] macb ff0c0000.ethernet control_black: unable to generate target frequency: 125000000 Hz
>     >       > [   16.867052] macb ff0c0000.ethernet control_black: Link is Up - 1Gbps/Full - flow control off
>     >       > Starting Failsafe Secure Shell server in port 2222: sshd
>     >       > done.
>     >       > Starting rpcbind daemon...done.
>     >       >
>     >       > [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>     >       > hwclock: RTC_RD_TIME: Invalid exchange
>     >       > Starting State Manager Service
>     >       > Start state-manager restarter...
>     >       > (XEN) d0v1 Forwarding AES operation: 3254779951
>     >       > Starting /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa devid 1 transid 744
>     >       /dev/dm-0
>     >       > scanned by udevd (385)
>     >       > [   17.349933] BTRFS info (device dm-0): disk space caching is enabled
>     >       > [   17.350670] BTRFS info (device dm-0): has skinny extents
>     >       > [   17.364384] BTRFS info (device dm-0): enabling ssd optimizations
>     >       > [   17.830462] BTRFS: device fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6 /dev/mapper/client_prov scanned by
>     >       mkfs.btrfs
>     >       > (526)
>     >       > [   17.872699] BTRFS info (device dm-1): using free space tree
>     >       > [   17.872771] BTRFS info (device dm-1): has skinny extents
>     >       > [   17.878114] BTRFS info (device dm-1): flagging fs with big metadata feature
>     >       > [   17.894289] BTRFS info (device dm-1): enabling ssd optimizations
>     >       > [   17.895695] BTRFS info (device dm-1): checking UUID tree
>     >       >
>     >       > Setting domain 0 name, domid and JSON config...
>     >       > Done setting up Dom0
>     >       > Starting xenconsoled...
>     >       > Starting QEMU as disk backend for dom0
>     >       > Starting domain watchdog daemon: xenwatchdogd startup
>     >       >
>     >       > [   18.408647] BTRFS: device fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6 /dev/mapper/client_config scanned by
>     >       mkfs.btrfs
>     >       > (574)
>     >       > [done]
>     >       > [   18.465552] BTRFS info (device dm-2): using free space tree
>     >       > [   18.465629] BTRFS info (device dm-2): has skinny extents
>     >       > [   18.471002] BTRFS info (device dm-2): flagging fs with big metadata feature
>     >       > Starting crond: [   18.482371] BTRFS info (device dm-2): enabling ssd optimizations
>     >       > [   18.486659] BTRFS info (device dm-2): checking UUID tree
>     >       > OK
>     >       > starting rsyslogd ... Log partition ready after 0 poll loops
>     >       > done
>     >       > rsyslogd: cannot connect to 172.18.0.1:514 <http://172.18.0.1:514>: Network is unreachable [v8.2208.0 try https://www.rsyslog.com/e/2027 <https://www.rsyslog.com/e/2027> ]
>     >       > [   18.670637] BTRFS: device fsid 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3 scanned by udevd (518)
>     >       >
>     >       > Please insert USB token and enter your role in login prompt.
>     >       >
>     >       > login:
>     >       >
>     >       > Regards,
>     >       > O.
>     >       >
>     >       >
>     >       > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>>:
>     >       >       Hi Oleg,
>     >       >
>     >       >       Here is the issue from your logs:
>     >       >
>     >       >       SError Interrupt on CPU0, code 0xbe000000 -- SError
>     >       >
>     >       >       SErrors are special signals to notify software of serious hardware
>     >       >       errors.  Something is going very wrong. Defective hardware is a
>     >       >       possibility.  Another possibility if software accessing address ranges
>     >       >       that it is not supposed to, sometimes it causes SErrors.
>     >       >
>     >       >       Cheers,
>     >       >
>     >       >       Stefano
>     >       >
>     >       >
>     >       >
>     >       >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
>     >       >
>     >       >       > Hello,
>     >       >       >
>     >       >       > Thanks guys.
>     >       >       > I found out where the problem was.
>     >       >       > Now dom0 booted more. But I have a new one.
>     >       >       > This is a kernel panic during Dom0 loading.
>     >       >       > Maybe someone is able to suggest something ?
>     >       >       >
>     >       >       > Regards,
>     >       >       > O.
>     >       >       >
>     >       >       > [    3.771362] sfp_register_bus: upstream ops attach
>     >       >       > [    3.776119] sfp_register_bus: Bus registered
>     >       >       > [    3.780459] sfp_register_socket: register sfp_bus succeeded
>     >       >       > [    3.789399] of_cfs_init
>     >       >       > [    3.789499] of_cfs_init: OK
>     >       >       > [    3.791685] clk: Not disabling unused clocks
>     >       >       > [   11.010355] SError Interrupt on CPU0, code 0xbe000000 -- SError
>     >       >       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>     >       >       > [   11.010393] Workqueue: events_unbound async_run_entry_fn
>     >       >       > [   11.010414] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
>     >       >       > [   11.010422] pc : simple_write_end+0xd0/0x130
>     >       >       > [   11.010431] lr : generic_perform_write+0x118/0x1e0
>     >       >       > [   11.010438] sp : ffffffc00809b910
>     >       >       > [   11.010441] x29: ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
>     >       >       > [   11.010451] x26: 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
>     >       >       > [   11.010459] x23: ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
>     >       >       > [   11.010472] x20: 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
>     >       >       > [   11.010481] x17: 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
>     >       >       > [   11.010490] x14: 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
>     >       >       > [   11.010498] x11: 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
>     >       >       > [   11.010507] x8 : 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
>     >       >       > [   11.010515] x5 : fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
>     >       >       > [   11.010524] x2 : 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
>     >       >       > [   11.010534] Kernel panic - not syncing: Asynchronous SError Interrupt
>     >       >       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>     >       >       > [   11.010545] Hardware name: D14 Viper Board - White Unit (DT)
>     >       >       > [   11.010548] Workqueue: events_unbound async_run_entry_fn
>     >       >       > [   11.010556] Call trace:
>     >       >       > [   11.010558]  dump_backtrace+0x0/0x1c4
>     >       >       > [   11.010567]  show_stack+0x18/0x2c
>     >       >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
>     >       >       > [   11.010583]  dump_stack+0x18/0x34
>     >       >       > [   11.010588]  panic+0x14c/0x2f8
>     >       >       > [   11.010597]  print_tainted+0x0/0xb0
>     >       >       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
>     >       >       > [   11.010614]  do_serror+0x28/0x60
>     >       >       > [   11.010621]  el1h_64_error_handler+0x30/0x50
>     >       >       > [   11.010628]  el1h_64_error+0x78/0x7c
>     >       >       > [   11.010633]  simple_write_end+0xd0/0x130
>     >       >       > [   11.010639]  generic_perform_write+0x118/0x1e0
>     >       >       > [   11.010644]  __generic_file_write_iter+0x138/0x1c4
>     >       >       > [   11.010650]  generic_file_write_iter+0x78/0xd0
>     >       >       > [   11.010656]  __kernel_write+0xfc/0x2ac
>     >       >       > [   11.010665]  kernel_write+0x88/0x160
>     >       >       > [   11.010673]  xwrite+0x44/0x94
>     >       >       > [   11.010680]  do_copy+0xa8/0x104
>     >       >       > [   11.010686]  write_buffer+0x38/0x58
>     >       >       > [   11.010692]  flush_buffer+0x4c/0xbc
>     >       >       > [   11.010698]  __gunzip+0x280/0x310
>     >       >       > [   11.010704]  gunzip+0x1c/0x28
>     >       >       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
>     >       >       > [   11.010715]  do_populate_rootfs+0x80/0x164
>     >       >       > [   11.010722]  async_run_entry_fn+0x48/0x164
>     >       >       > [   11.010728]  process_one_work+0x1e4/0x3a0
>     >       >       > [   11.010736]  worker_thread+0x7c/0x4c0
>     >       >       > [   11.010743]  kthread+0x120/0x130
>     >       >       > [   11.010750]  ret_from_fork+0x10/0x20
>     >       >       > [   11.010757] SMP: stopping secondary CPUs
>     >       >       > [   11.010784] Kernel Offset: 0x2f61200000 from 0xffffffc008000000
>     >       >       > [   11.010788] PHYS_OFFSET: 0x0
>     >       >       > [   11.010790] CPU features: 0x00000401,00000842
>     >       >       > [   11.010795] Memory Limit: none
>     >       >       > [   11.277509] ---[ end Kernel panic - not syncing: Asynchronous SError Interrupt ]---
>     >       >       >
>     >       >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
>     >       >       >       Hi Oleg,
>     >       >       >
>     >       >       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
>     >       >       >       >       
>     >       >       >       >
>     >       >       >       >
>     >       >       >       > Hello Michal,
>     >       >       >       >
>     >       >       >       > I was not able to enable earlyprintk in the xen for now.
>     >       >       >       > I decided to choose another way.
>     >       >       >       > This is a xen's command line that I found out completely.
>     >       >       >       >
>     >       >       >       > (XEN) $$$$ console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin bootscrub=0
>     >       vwfi=native
>     >       >       sched=null
>     >       >       >       timer_slop=0
>     >       >       >       Yes, adding a printk() in Xen was also a good idea.
>     >       >       >
>     >       >       >       >
>     >       >       >       > So you are absolutely right about a command line.
>     >       >       >       > Now I am going to find out why xen did not have the correct parameters from the device tree.
>     >       >       >       Maybe you will find this document helpful:
>     >       >       >       https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt <https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt>
>     >       >       >
>     >       >       >       ~Michal
>     >       >       >
>     >       >       >       >
>     >       >       >       > Regards,
>     >       >       >       > Oleg
>     >       >       >       >
>     >       >       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
>     >       >       >       >
>     >       >       >       >
>     >       >       >       >     On 21/04/2023 10:04, Oleg Nikitenko wrote:
>     >       >       >       >     >       
>     >       >       >       >     >
>     >       >       >       >     >
>     >       >       >       >     > Hello Michal,
>     >       >       >       >     >
>     >       >       >       >     > Yes, I use yocto.
>     >       >       >       >     >
>     >       >       >       >     > Yesterday all day long I tried to follow your suggestions.
>     >       >       >       >     > I faced a problem.
>     >       >       >       >     > Manually in the xen config build file I pasted the strings:
>     >       >       >       >     In the .config file or in some Yocto file (listing additional Kconfig options) added to SRC_URI?
>     >       >       >       >     You shouldn't really modify .config file but if you do, you should execute "make olddefconfig"
>     >       afterwards.
>     >       >       >       >
>     >       >       >       >     >
>     >       >       >       >     > CONFIG_EARLY_PRINTK
>     >       >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
>     >       >       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
>     >       >       >       >     I hope you added =y to them.
>     >       >       >       >
>     >       >       >       >     Anyway, you have at least the following solutions:
>     >       >       >       >     1) Run bitbake xen -c menuconfig to properly set early printk
>     >       >       >       >     2) Find out how you enable other Kconfig options in your project (e.g. CONFIG_COLORING=y that is not
>     >       enabled by
>     >       >       default)
>     >       >       >       >     3) Append the following to "xen/arch/arm/configs/arm64_defconfig":
>     >       >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
>     >       >       >       >
>     >       >       >       >     ~Michal
>     >       >       >       >
>     >       >       >       >     >
>     >       >       >       >     > Host hangs in build time. 
>     >       >       >       >     > Maybe I did not set something in the config build file ?
>     >       >       >       >     >
>     >       >       >       >     > Regards,
>     >       >       >       >     > Oleg
>     >       >       >       >     >
>     >       >       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>:
>     >       >       >       >     >
>     >       >       >       >     >     Thanks Michal,
>     >       >       >       >     >
>     >       >       >       >     >     You gave me an idea.
>     >       >       >       >     >     I am going to try it today.
>     >       >       >       >     >
>     >       >       >       >     >     Regards,
>     >       >       >       >     >     O.
>     >       >       >       >     >
>     >       >       >       >     >     чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>:
>     >       >       >       >     >
>     >       >       >       >     >         Thanks Stefano.
>     >       >       >       >     >
>     >       >       >       >     >         I am going to do it today.
>     >       >       >       >     >
>     >       >       >       >     >         Regards,
>     >       >       >       >     >         O.
>     >       >       >       >     >
>     >       >       >       >     >         ср, 19 апр. 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>     >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
>     >       >       >       >     >
>     >       >       >       >     >             On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
>     >       >       >       >     >             > Hi Michal,
>     >       >       >       >     >             >
>     >       >       >       >     >             > I corrected xen's command line.
>     >       >       >       >     >             > Now it is
>     >       >       >       >     >             > xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
>     >       dom0_vcpus_pin
>     >       >       >       bootscrub=0 vwfi=native sched=null
>     >       >       >       >     >             > timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
>     >       >       >       >     >
>     >       >       >       >     >             4 colors is way too many for xen, just do xen_colors=0-0. There is no
>     >       >       >       >     >             advantage in using more than 1 color for Xen.
>     >       >       >       >     >
>     >       >       >       >     >             4 colors is too few for dom0, if you are giving 1600M of memory to Dom0.
>     >       >       >       >     >             Each color is 256M. For 1600M you should give at least 7 colors. Try:
>     >       >       >       >     >
>     >       >       >       >     >             xen_colors=0-0 dom0_colors=1-8
>     >       >       >       >     >
>     >       >       >       >     >
>     >       >       >       >     >
>     >       >       >       >     >             > Unfortunately the result was the same.
>     >       >       >       >     >             >
>     >       >       >       >     >             > (XEN)  - Dom0 mode: Relaxed
>     >       >       >       >     >             > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>     >       >       >       >     >             > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>     >       >       >       >     >             > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>     >       >       >       >     >             > (XEN) Coloring general information
>     >       >       >       >     >             > (XEN) Way size: 64kB
>     >       >       >       >     >             > (XEN) Max. number of colors available: 16
>     >       >       >       >     >             > (XEN) Xen color(s): [ 0 ]
>     >       >       >       >     >             > (XEN) alternatives: Patching with alt table 00000000002cc690 -> 00000000002ccc0c
>     >       >       >       >     >             > (XEN) Color array allocation failed for dom0
>     >       >       >       >     >             > (XEN)
>     >       >       >       >     >             > (XEN) ****************************************
>     >       >       >       >     >             > (XEN) Panic on CPU 0:
>     >       >       >       >     >             > (XEN) Error creating domain 0
>     >       >       >       >     >             > (XEN) ****************************************
>     >       >       >       >     >             > (XEN)
>     >       >       >       >     >             > (XEN) Reboot in five seconds...
>     >       >       >       >     >             >
>     >       >       >       >     >             > I am going to find out how command line arguments passed and parsed.
>     >       >       >       >     >             >
>     >       >       >       >     >             > Regards,
>     >       >       >       >     >             > Oleg
>     >       >       >       >     >             >
>     >       >       >       >     >             > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>     >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>
>     >       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com> <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>>:
>     >       >       >       >     >             >       Hi Michal,
>     >       >       >       >     >             >
>     >       >       >       >     >             > You put my nose into the problem. Thank you.
>     >       >       >       >     >             > I am going to use your point.
>     >       >       >       >     >             > Let's see what happens.
>     >       >       >       >     >             >
>     >       >       >       >     >             > Regards,
>     >       >       >       >     >             > Oleg
>     >       >       >       >     >             >
>     >       >       >       >     >             >
>     >       >       >       >     >             > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>
>     >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>
>     >       >       >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com> <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>>:
>     >       >       >       >     >             >       Hi Oleg,
>     >       >       >       >     >             >
>     >       >       >       >     >             >       On 19/04/2023 09:03, Oleg Nikitenko wrote:
>     >       >       >       >     >             >       >       
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       > Hello Stefano,
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       > Thanks for the clarification.
>     >       >       >       >     >             >       > My company uses yocto for image generation.
>     >       >       >       >     >             >       > What kind of information do you need to consult me in this case ?
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       > Maybe modules sizes/addresses which were mentioned by @Julien Grall
>     >       >       <mailto:julien@xen.org <mailto:julien@xen.org>
>     >       >       >       <mailto:julien@xen.org <mailto:julien@xen.org>> <mailto:julien@xen.org <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>>> ?
>     >       >       >       >     >             >
>     >       >       >       >     >             >       Sorry for jumping into discussion, but FWICS the Xen command line you provided
>     >       seems to be
>     >       >       not the
>     >       >       >       one
>     >       >       >       >     >             >       Xen booted with. The error you are observing most likely is due to dom0 colors
>     >       >       configuration not
>     >       >       >       being
>     >       >       >       >     >             >       specified (i.e. lack of dom0_colors=<> parameter). Although in the command line you
>     >       >       provided, this
>     >       >       >       parameter
>     >       >       >       >     >             >       is set, I strongly doubt that this is the actual command line in use.
>     >       >       >       >     >             >
>     >       >       >       >     >             >       You wrote:
>     >       >       >       >     >             >       xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
>     >       >       dom0_vcpus_pin
>     >       >       >       bootscrub=0 vwfi=native
>     >       >       >       >     >             >       sched=null timer_slop=0 way_szize=65536 xen_colors=0-3 dom0_colors=4-7";
>     >       >       >       >     >             >
>     >       >       >       >     >             >       but:
>     >       >       >       >     >             >       1) way_szize has a typo
>     >       >       >       >     >             >       2) you specified 4 colors (0-3) for Xen, but the boot log says that Xen has only
>     >       one:
>     >       >       >       >     >             >       (XEN) Xen color(s): [ 0 ]
>     >       >       >       >     >             >
>     >       >       >       >     >             >       This makes me believe that no colors configuration actually end up in command line
>     >       that Xen
>     >       >       booted
>     >       >       >       with.
>     >       >       >       >     >             >       Single color for Xen is a "default if not specified" and way size was probably
>     >       calculated
>     >       >       by asking
>     >       >       >       HW.
>     >       >       >       >     >             >
>     >       >       >       >     >             >       So I would suggest to first cross-check the command line in use.
>     >       >       >       >     >             >
>     >       >       >       >     >             >       ~Michal
>     >       >       >       >     >             >
>     >       >       >       >     >             >
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       > Regards,
>     >       >       >       >     >             >       > Oleg
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       > вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>
>     >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>     >       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>>:
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
>     >       >       >       >     >             >       >     > Hi Julien,
>     >       >       >       >     >             >       >     >
>     >       >       >       >     >             >       >     > >> This feature has not been merged in Xen upstream yet
>     >       >       >       >     >             >       >     >
>     >       >       >       >     >             >       >     > > would assume that upstream + the series on the ML [1] work
>     >       >       >       >     >             >       >     >
>     >       >       >       >     >             >       >     > Please clarify this point.
>     >       >       >       >     >             >       >     > Because the two thoughts are controversial.
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >     Hi Oleg,
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >     As Julien wrote, there is nothing controversial. As you are aware,
>     >       >       >       >     >             >       >     Xilinx maintains a separate Xen tree specific for Xilinx here:
>     >       >       >       >     >             >       >     https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>
>     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>
>     >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>     >       >       >       <https://github.com/xilinx/xen <https://github.com/xilinx/xen>>>>
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >     and the branch you are using (xlnx_rebase_4.16) comes from there.
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >     Instead, the upstream Xen tree lives here:
>     >       >       >       >     >             >       >     https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>
>     >       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>>
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >     The Cache Coloring feature that you are trying to configure is present
>     >       >       >       >     >             >       >     in xlnx_rebase_4.16, but not yet present upstream (there is an
>     >       >       >       >     >             >       >     outstanding patch series to add cache coloring to Xen upstream but it
>     >       >       >       >     >             >       >     hasn't been merged yet.)
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >     Anyway, if you are using xlnx_rebase_4.16 it doesn't matter too much for
>     >       >       >       >     >             >       >     you as you already have Cache Coloring as a feature there.
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >     I take you are using ImageBuilder to generate the boot configuration? If
>     >       >       >       >     >             >       >     so, please post the ImageBuilder config file that you are using.
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >       >     But from the boot message, it looks like the colors configuration for
>     >       >       >       >     >             >       >     Dom0 is incorrect.
>     >       >       >       >     >             >       >
>     >       >       >       >     >             >
>     >       >       >       >     >             >
>     >       >       >       >     >             >
>     >       >       >       >     >
>     >       >       >       >
>     >       >       >
>     >       >       >
>     >       >       >
>     >       >
>     >       >
>     >       >
>     >
>     >
>     > 
> 


^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-04-27 21:51  0%                                     ` Stefano Stabellini
@ 2023-05-05  8:28  0%                                       ` Oleg Nikitenko
  2023-05-05  8:34  0%                                         ` Michal Orzel
  0 siblings, 1 reply; 200+ results
From: Oleg Nikitenko @ 2023-05-05  8:28 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: Michal Orzel, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand

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

Hello Stefano,

I would like to try a xen cache color property from this repo
https://xenbits.xen.org/git-http/xen.git
Could you tell whot branch I should use ?

Regards,
Oleg

пт, 28 апр. 2023 г. в 00:51, Stefano Stabellini <sstabellini@kernel.org>:

> I am familiar with the zcu102 but I don't know how you could possibly
> generate a SError.
>
> I suggest to try to use ImageBuilder [1] to generate the boot
> configuration as a test because that is known to work well for zcu102.
>
> [1] https://gitlab.com/xen-project/imagebuilder
>
>
> On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
> > Hello Stefano,
> >
> > Thanks for clarification.
> > We nighter use ImageBuilder nor uboot boot script.
> > A model is zcu102 compatible.
> >
> > Regards,
> > O.
> >
> > вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <sstabellini@kernel.org
> >:
> >       This is interesting. Are you using Xilinx hardware by any chance?
> If so,
> >       which board?
> >
> >       Are you using ImageBuilder to generate your boot.scr boot script?
> If so,
> >       could you please post your ImageBuilder config file? If not, can
> you
> >       post the source of your uboot boot script?
> >
> >       SErrors are supposed to be related to a hardware failure of some
> kind.
> >       You are not supposed to be able to trigger an SError easily by
> >       "mistake". I have not seen SErrors due to wrong cache coloring
> >       configurations on any Xilinx board before.
> >
> >       The differences between Xen with and without cache coloring from a
> >       hardware perspective are:
> >
> >       - With cache coloring, the SMMU is enabled and does address
> translations
> >         even for dom0. Without cache coloring the SMMU could be
> disabled, and
> >         if enabled, the SMMU doesn't do any address translations for
> Dom0. If
> >         there is a hardware failure related to SMMU address translation
> it
> >         could only trigger with cache coloring. This would be my normal
> >         suggestion for you to explore, but the failure happens too early
> >         before any DMA-capable device is programmed. So I don't think
> this can
> >         be the issue.
> >
> >       - With cache coloring, the memory allocation is very different so
> you'll
> >         end up using different DDR regions for Dom0. So if your DDR is
> >         defective, you might only see a failure with cache coloring
> enabled
> >         because you end up using different regions.
> >
> >
> >       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
> >       > Hi Stefano,
> >       >
> >       > Thank you.
> >       > If I build xen without colors support there is not this error.
> >       > All the domains are booted well.
> >       > Hense it can not be a hardware issue.
> >       > This panic arrived during unpacking the rootfs.
> >       > Here I attached the boot log xen/Dom0 without color.
> >       > A highlighted strings printed exactly after the place where 1-st
> time panic arrived.
> >       >
> >       >  Xen 4.16.1-pre
> >       > (XEN) Xen version 4.16.1-pre (nole2390@(none))
> (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y 2023-04-21
> >       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300
> git:321687b231-dirty
> >       > (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
> >       > (XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0,
> part 0xd03,rev 0x4
> >       > (XEN) 64-bit Execution:
> >       > (XEN)   Processor Features: 0000000000002222 0000000000000000
> >       > (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32
> EL0:64+32
> >       > (XEN)     Extensions: FloatingPoint AdvancedSIMD
> >       > (XEN)   Debug Features: 0000000010305106 0000000000000000
> >       > (XEN)   Auxiliary Features: 0000000000000000 0000000000000000
> >       > (XEN)   Memory Model Features: 0000000000001122 0000000000000000
> >       > (XEN)   ISA Features:  0000000000011120 0000000000000000
> >       > (XEN) 32-bit Execution:
> >       > (XEN)   Processor Features: 0000000000000131:0000000000011011
> >       > (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
> >       > (XEN)     Extensions: GenericTimer Security
> >       > (XEN)   Debug Features: 0000000003010066
> >       > (XEN)   Auxiliary Features: 0000000000000000
> >       > (XEN)   Memory Model Features: 0000000010201105 0000000040000000
> >       > (XEN)                          0000000001260000 0000000002102211
> >       > (XEN)   ISA Features: 0000000002101110 0000000013112111
> 0000000021232042
> >       > (XEN)                 0000000001112131 0000000000011142
> 0000000000011121
> >       > (XEN) Using SMC Calling Convention v1.2
> >       > (XEN) Using PSCI v1.1
> >       > (XEN) SMP: Allowing 4 CPUs
> >       > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
> >       > (XEN) GICv2 initialization:
> >       > (XEN)         gic_dist_addr=00000000f9010000
> >       > (XEN)         gic_cpu_addr=00000000f9020000
> >       > (XEN)         gic_hyp_addr=00000000f9040000
> >       > (XEN)         gic_vcpu_addr=00000000f9060000
> >       > (XEN)         gic_maintenance_irq=25
> >       > (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
> >       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
> >       > (XEN) Using scheduler: null Scheduler (null)
> >       > (XEN) Initializing null scheduler
> >       > (XEN) WARNING: This is experimental software in development.
> >       > (XEN) Use at your own risk.
> >       > (XEN) Allocated console ring of 32 KiB.
> >       > (XEN) CPU0: Guest atomics will try 12 times before pausing the
> domain
> >       > (XEN) Bringing up CPU1
> >       > (XEN) CPU1: Guest atomics will try 13 times before pausing the
> domain
> >       > (XEN) CPU 1 booted.
> >       > (XEN) Bringing up CPU2
> >       > (XEN) CPU2: Guest atomics will try 13 times before pausing the
> domain
> >       > (XEN) CPU 2 booted.
> >       > (XEN) Bringing up CPU3
> >       > (XEN) CPU3: Guest atomics will try 13 times before pausing the
> domain
> >       > (XEN) Brought up 4 CPUs
> >       > (XEN) CPU 3 booted.
> >       > (XEN) smmu: /axi/smmu@fd800000: probing hardware
> configuration...
> >       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
> >       > (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
> >       > (XEN) smmu: /axi/smmu@fd800000: stream matching with 48
> register groups, mask 0x7fff<2>smmu: /axi/smmu@fd800000: 16 context
> >       banks (0
> >       > stage-2 only)
> >       > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
> >       > (XEN) smmu: /axi/smmu@fd800000: registered 29 master devices
> >       > (XEN) I/O virtualisation enabled
> >       > (XEN)  - Dom0 mode: Relaxed
> >       > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
> >       > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
> >       > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
> >       > (XEN) alternatives: Patching with alt table 00000000002cc5c8 ->
> 00000000002ccb2c
> >       > (XEN) *** LOADING DOMAIN 0 ***
> >       > (XEN) Loading d0 kernel from boot module @ 0000000001000000
> >       > (XEN) Loading ramdisk from boot module @ 0000000002000000
> >       > (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
> >       > (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
> >       > (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
> >       > (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
> >       > (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
> >       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
> >       > (XEN) Allocating PPI 16 for event channel interrupt
> >       > (XEN) Extended region 0: 0x81200000->0xa0000000
> >       > (XEN) Extended region 1: 0xb1200000->0xc0000000
> >       > (XEN) Extended region 2: 0xc8000000->0xe0000000
> >       > (XEN) Extended region 3: 0xf0000000->0xf9000000
> >       > (XEN) Extended region 4: 0x100000000->0x600000000
> >       > (XEN) Extended region 5: 0x880000000->0x8000000000
> >       > (XEN) Extended region 6: 0x8001000000->0x10000000000
> >       > (XEN) Loading zImage from 0000000001000000 to
> 0000000010000000-0000000010e41008
> >       > (XEN) Loading d0 initrd from 0000000002000000 to
> 0x0000000013600000-0x000000001ff3a617
> >       > (XEN) Loading d0 DTB to 0x0000000013400000-0x000000001340cbdc
> >       > (XEN) Initial low memory virq threshold set at 0x4000 pages.
> >       > (XEN) Std. Loglevel: All
> >       > (XEN) Guest Loglevel: All
> >       > (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to
> switch input)
> >       > (XEN) null.c:353: 0 <-- d0v0
> >       > (XEN) Freed 356kB init memory.
> >       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
> >       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
> >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to
> ICACTIVER4
> >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to
> ICACTIVER8
> >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to
> ICACTIVER12
> >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to
> ICACTIVER16
> >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to
> ICACTIVER20
> >       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to
> ICACTIVER0
> >       > [    0.000000] Booting Linux on physical CPU 0x0000000000
> [0x410fd034]
> >       > [    0.000000] Linux version 5.15.72-xilinx-v2022.1
> (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC) 11.3.0, GNU ld (GNU
> >       Binutils)
> >       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
> >       > [    0.000000] Machine model: D14 Viper Board - White Unit
> >       > [    0.000000] Xen 4.16 support found
> >       > [    0.000000] Zone ranges:
> >       > [    0.000000]   DMA      [mem
> 0x0000000010000000-0x000000007fffffff]
> >       > [    0.000000]   DMA32    empty
> >       > [    0.000000]   Normal   empty
> >       > [    0.000000] Movable zone start for each node
> >       > [    0.000000] Early memory node ranges
> >       > [    0.000000]   node   0: [mem
> 0x0000000010000000-0x000000001fffffff]
> >       > [    0.000000]   node   0: [mem
> 0x0000000022000000-0x0000000022147fff]
> >       > [    0.000000]   node   0: [mem
> 0x0000000022200000-0x0000000022347fff]
> >       > [    0.000000]   node   0: [mem
> 0x0000000024000000-0x0000000027ffffff]
> >       > [    0.000000]   node   0: [mem
> 0x0000000030000000-0x000000007fffffff]
> >       > [    0.000000] Initmem setup node 0 [mem
> 0x0000000010000000-0x000000007fffffff]
> >       > [    0.000000] On node 0, zone DMA: 8192 pages in unavailable
> ranges
> >       > [    0.000000] On node 0, zone DMA: 184 pages in unavailable
> ranges
> >       > [    0.000000] On node 0, zone DMA: 7352 pages in unavailable
> ranges
> >       > [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
> >       > [    0.000000] psci: probing for conduit method from DT.
> >       > [    0.000000] psci: PSCIv1.1 detected in firmware.
> >       > [    0.000000] psci: Using standard PSCI v0.2 function IDs
> >       > [    0.000000] psci: Trusted OS migration not required
> >       > [    0.000000] psci: SMC Calling Convention v1.1
> >       > [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0 d32744
> u65536
> >       > [    0.000000] Detected VIPT I-cache on CPU0
> >       > [    0.000000] CPU features: kernel page table isolation forced
> ON by KASLR
> >       > [    0.000000] CPU features: detected: Kernel page table
> isolation (KPTI)
> >       > [    0.000000] Built 1 zonelists, mobility grouping on.  Total
> pages: 403845
> >       > [    0.000000] Kernel command line: console=hvc0 earlycon=xen
> earlyprintk=xen clk_ignore_unused fips=1 root=/dev/ram0
> >       maxcpus=2
> >       > [    0.000000] Unknown kernel command line parameters
> "earlyprintk=xen fips=1", will be passed to user space.
> >       > [    0.000000] Dentry cache hash table entries: 262144 (order:
> 9, 2097152 bytes, linear)
> >       > [    0.000000] Inode-cache hash table entries: 131072 (order: 8,
> 1048576 bytes, linear)
> >       > [    0.000000] mem auto-init: stack:off, heap alloc:on, heap
> free:on
> >       > [    0.000000] mem auto-init: clearing system memory may take
> some time...
> >       > [    0.000000] Memory: 1121936K/1641024K available (9728K kernel
> code, 836K rwdata, 2396K rodata, 1536K init, 262K bss,
> >       256944K reserved,
> >       > 262144K cma-reserved)
> >       > [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0,
> CPUs=2, Nodes=1
> >       > [    0.000000] rcu: Hierarchical RCU implementation.
> >       > [    0.000000] rcu: RCU event tracing is enabled.
> >       > [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to
> nr_cpu_ids=2.
> >       > [    0.000000] rcu: RCU calculated value of scheduler-enlistment
> delay is 25 jiffies.
> >       > [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16,
> nr_cpu_ids=2
> >       > [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
> >       > [    0.000000] Root IRQ handler: gic_handle_irq
> >       > [    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz
> (virt).
> >       > [    0.000000] clocksource: arch_sys_counter: mask:
> 0xffffffffffffff max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
> >       > [    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns,
> wraps every 4398046511100ns
> >       > [    0.000258] Console: colour dummy device 80x25
> >       > [    0.310231] printk: console [hvc0] enabled
> >       > [    0.314403] Calibrating delay loop (skipped), value
> calculated using timer frequency.. 200.00 BogoMIPS (lpj=400000)
> >       > [    0.324851] pid_max: default: 32768 minimum: 301
> >       > [    0.329706] LSM: Security Framework initializing
> >       > [    0.334204] Yama: becoming mindful.
> >       > [    0.337865] Mount-cache hash table entries: 4096 (order: 3,
> 32768 bytes, linear)
> >       > [    0.345180] Mountpoint-cache hash table entries: 4096 (order:
> 3, 32768 bytes, linear)
> >       > [    0.354743] xen:grant_table: Grant tables using version 1
> layout
> >       > [    0.359132] Grant table initialized
> >       > [    0.362664] xen:events: Using FIFO-based ABI
> >       > [    0.366993] Xen: initializing cpu0
> >       > [    0.370515] rcu: Hierarchical SRCU implementation.
> >       > [    0.375930] smp: Bringing up secondary CPUs ...
> >       > (XEN) null.c:353: 1 <-- d0v1
> >       > (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff to
> ICACTIVER0
> >       > [    0.382549] Detected VIPT I-cache on CPU1
> >       > [    0.388712] Xen: initializing cpu1
> >       > [    0.388743] CPU1: Booted secondary processor 0x0000000001
> [0x410fd034]
> >       > [    0.388829] smp: Brought up 1 node, 2 CPUs
> >       > [    0.406941] SMP: Total of 2 processors activated.
> >       > [    0.411698] CPU features: detected: 32-bit EL0 Support
> >       > [    0.416888] CPU features: detected: CRC32 instructions
> >       > [    0.422121] CPU: All CPU(s) started at EL1
> >       > [    0.426248] alternatives: patching kernel code
> >       > [    0.431424] devtmpfs: initialized
> >       > [    0.441454] KASLR enabled
> >       > [    0.441602] clocksource: jiffies: mask: 0xffffffff
> max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
> >       > [    0.448321] futex hash table entries: 512 (order: 3, 32768
> bytes, linear)
> >       > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE protocol
> family
> >       > [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool for
> atomic allocations
> >       > [    0.503772] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool
> for atomic allocations
> >       > [    0.511610] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32
> pool for atomic allocations
> >       > [    0.519478] audit: initializing netlink subsys (disabled)
> >       > [    0.524985] audit: type=2000 audit(0.336:1):
> state=initialized audit_enabled=0 res=1
> >       > [    0.529169] thermal_sys: Registered thermal governor
> 'step_wise'
> >       > [    0.533023] hw-breakpoint: found 6 breakpoint and 4
> watchpoint registers.
> >       > [    0.545608] ASID allocator initialised with 32768 entries
> >       > [    0.551030] xen:swiotlb_xen: Warning: only able to allocate 4
> MB for software IO TLB
> >       > [    0.559332] software IO TLB: mapped [mem
> 0x0000000011800000-0x0000000011c00000] (4MB)
> >       > [    0.583565] HugeTLB registered 1.00 GiB page size,
> pre-allocated 0 pages
> >       > [    0.584721] HugeTLB registered 32.0 MiB page size,
> pre-allocated 0 pages
> >       > [    0.591478] HugeTLB registered 2.00 MiB page size,
> pre-allocated 0 pages
> >       > [    0.598225] HugeTLB registered 64.0 KiB page size,
> pre-allocated 0 pages
> >       > [    0.636520] DRBG: Continuing without Jitter RNG
> >       > [    0.737187] raid6: neonx8   gen()  2143 MB/s
> >       > [    0.805294] raid6: neonx8   xor()  1589 MB/s
> >       > [    0.873406] raid6: neonx4   gen()  2177 MB/s
> >       > [    0.941499] raid6: neonx4   xor()  1556 MB/s
> >       > [    1.009612] raid6: neonx2   gen()  2072 MB/s
> >       > [    1.077715] raid6: neonx2   xor()  1430 MB/s
> >       > [    1.145834] raid6: neonx1   gen()  1769 MB/s
> >       > [    1.213935] raid6: neonx1   xor()  1214 MB/s
> >       > [    1.282046] raid6: int64x8  gen()  1366 MB/s
> >       > [    1.350132] raid6: int64x8  xor()   773 MB/s
> >       > [    1.418259] raid6: int64x4  gen()  1602 MB/s
> >       > [    1.486349] raid6: int64x4  xor()   851 MB/s
> >       > [    1.554464] raid6: int64x2  gen()  1396 MB/s
> >       > [    1.622561] raid6: int64x2  xor()   744 MB/s
> >       > [    1.690687] raid6: int64x1  gen()  1033 MB/s
> >       > [    1.758770] raid6: int64x1  xor()   517 MB/s
> >       > [    1.758809] raid6: using algorithm neonx4 gen() 2177 MB/s
> >       > [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
> >       > [    1.767957] raid6: using neon recovery algorithm
> >       > [    1.772824] xen:balloon: Initialising balloon driver
> >       > [    1.778021] iommu: Default domain type: Translated
> >       > [    1.782584] iommu: DMA domain TLB invalidation policy: strict
> mode
> >       > [    1.789149] SCSI subsystem initialized
> >       > [    1.792820] usbcore: registered new interface driver usbfs
> >       > [    1.798254] usbcore: registered new interface driver hub
> >       > [    1.803626] usbcore: registered new device driver usb
> >       > [    1.808761] pps_core: LinuxPPS API ver. 1 registered
> >       > [    1.813716] pps_core: Software ver. 5.3.6 - Copyright
> 2005-2007 Rodolfo Giometti <giometti@linux.it>
> >       > [    1.822903] PTP clock support registered
> >       > [    1.826893] EDAC MC: Ver: 3.0.0
> >       > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400: Registered
> ZynqMP IPI mbox with TX/RX channels.
> >       > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600: Registered
> ZynqMP IPI mbox with TX/RX channels.
> >       > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800: Registered
> ZynqMP IPI mbox with TX/RX channels.
> >       > [    1.855907] FPGA manager framework
> >       > [    1.859952] clocksource: Switched to clocksource
> arch_sys_counter
> >       > [    1.871712] NET: Registered PF_INET protocol family
> >       > [    1.871838] IP idents hash table entries: 32768 (order: 6,
> 262144 bytes, linear)
> >       > [    1.879392] tcp_listen_portaddr_hash hash table entries: 1024
> (order: 2, 16384 bytes, linear)
> >       > [    1.887078] Table-perturb hash table entries: 65536 (order:
> 6, 262144 bytes, linear)
> >       > [    1.894846] TCP established hash table entries: 16384 (order:
> 5, 131072 bytes, linear)
> >       > [    1.902900] TCP bind hash table entries: 16384 (order: 6,
> 262144 bytes, linear)
> >       > [    1.910350] TCP: Hash tables configured (established 16384
> bind 16384)
> >       > [    1.916778] UDP hash table entries: 1024 (order: 3, 32768
> bytes, linear)
> >       > [    1.923509] UDP-Lite hash table entries: 1024 (order: 3,
> 32768 bytes, linear)
> >       > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol family
> >       > [    1.936834] RPC: Registered named UNIX socket transport
> module.
> >       > [    1.942342] RPC: Registered udp transport module.
> >       > [    1.947088] RPC: Registered tcp transport module.
> >       > [    1.951843] RPC: Registered tcp NFSv4.1 backchannel transport
> module.
> >       > [    1.958334] PCI: CLS 0 bytes, default 64
> >       > [    1.962709] Trying to unpack rootfs image as initramfs...
> >       > [    1.977090] workingset: timestamp_bits=62 max_order=19
> bucket_order=0
> >       > [    1.982863] Installing knfsd (copyright (C) 1996
> okir@monad.swb.de).
> >       > [    2.021045] NET: Registered PF_ALG protocol family
> >       > [    2.021122] xor: measuring software checksum speed
> >       > [    2.029347]    8regs           :  2366 MB/sec
> >       > [    2.033081]    32regs          :  2802 MB/sec
> >       > [    2.038223]    arm64_neon      :  2320 MB/sec
> >       > [    2.038385] xor: using function: 32regs (2802 MB/sec)
> >       > [    2.043614] Block layer SCSI generic (bsg) driver version 0.4
> loaded (major 247)
> >       > [    2.050959] io scheduler mq-deadline registered
> >       > [    2.055521] io scheduler kyber registered
> >       > [    2.068227] xen:xen_evtchn: Event-channel device installed
> >       > [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ sharing
> disabled
> >       > [    2.076190] cacheinfo: Unable to detect cache hierarchy for
> CPU 0
> >       > [    2.085548] brd: module loaded
> >       > [    2.089290] loop: module loaded
> >       > [    2.089341] Invalid max_queues (4), will use default max: 2.
> >       > [    2.094565] tun: Universal TUN/TAP device driver, 1.6
> >       > [    2.098655] xen_netfront: Initialising Xen virtual ethernet
> driver
> >       > [    2.104156] usbcore: registered new interface driver rtl8150
> >       > [    2.109813] usbcore: registered new interface driver r8152
> >       > [    2.115367] usbcore: registered new interface driver asix
> >       > [    2.120794] usbcore: registered new interface driver
> ax88179_178a
> >       > [    2.126934] usbcore: registered new interface driver cdc_ether
> >       > [    2.132816] usbcore: registered new interface driver cdc_eem
> >       > [    2.138527] usbcore: registered new interface driver net1080
> >       > [    2.144256] usbcore: registered new interface driver
> cdc_subset
> >       > [    2.150205] usbcore: registered new interface driver zaurus
> >       > [    2.155837] usbcore: registered new interface driver cdc_ncm
> >       > [    2.161550] usbcore: registered new interface driver r8153_ecm
> >       > [    2.168240] usbcore: registered new interface driver cdc_acm
> >       > [    2.173109] cdc_acm: USB Abstract Control Model driver for
> USB modems and ISDN adapters
> >       > [    2.181358] usbcore: registered new interface driver uas
> >       > [    2.186547] usbcore: registered new interface driver
> usb-storage
> >       > [    2.192643] usbcore: registered new interface driver ftdi_sio
> >       > [    2.198384] usbserial: USB Serial support registered for FTDI
> USB Serial Device
> >       > [    2.206118] udc-core: couldn't find an available UDC - added
> [g_mass_storage] to list of pending drivers
> >       > [    2.215332] i2c_dev: i2c /dev entries driver
> >       > [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s,
> nowayout=0)
> >       > [    2.225923] device-mapper: uevent: version 1.0.3
> >       > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22)
> initialised: dm-devel@redhat.com
> >       > [    2.239315] EDAC MC0: Giving out device to module 1
> controller synps_ddr_controller: DEV synps_edac (INTERRUPT)
> >       > [    2.249405] EDAC DEVICE0: Giving out device to module
> zynqmp-ocm-edac controller zynqmp_ocm: DEV
> >       ff960000.memory-controller (INTERRUPT)
> >       > [    2.261719] sdhci: Secure Digital Host Controller Interface
> driver
> >       > [    2.267487] sdhci: Copyright(c) Pierre Ossman
> >       > [    2.271890] sdhci-pltfm: SDHCI platform and OF driver helper
> >       > [    2.278157] ledtrig-cpu: registered to indicate activity on
> CPUs
> >       > [    2.283816] zynqmp_firmware_probe Platform Management API v1.1
> >       > [    2.289554] zynqmp_firmware_probe Trustzone version v1.0
> >       > [    2.327875] securefw securefw: securefw probed
> >       > [    2.328324] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
> >       > [    2.332563] zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes:
> AES Successfully Registered
> >       > [    2.341183] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
> >       > [    2.347667] remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is
> available
> >       > [    2.353003] remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is
> available
> >       > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager
> registered
> >       > [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen Proxy
> registered
> >       > [    2.372525] viper-vdpp a4000000.vdpp: Device Tree Probing
> >       > [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0
> Info: 1.512.15.0 KeyLen: 32
> >       > [    2.386432] viper-vdpp a4000000.vdpp: Unable to register
> tamper handler. Retrying...
> >       > [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device Tree
> Probing
> >       > [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device
> registered
> >       > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device Tree
> Probing
> >       > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build
> parameters: VTI Count: 512 Event Count: 32
> >       > [    2.420856] default preset
> >       > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device
> registered
> >       > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device Tree
> Probing
> >       > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device
> registered
> >       > [    2.441976] vmcu driver init
> >       > [    2.444922] VMCU: : (240:0) registered
> >       > [    2.444956] In K81 Updater init
> >       > [    2.449003] pktgen: Packet Generator for packet performance
> testing. Version: 2.75
> >       > [    2.468833] Initializing XFRM netlink socket
> >       > [    2.468902] NET: Registered PF_PACKET protocol family
> >       > [    2.472729] Bridge firewalling registered
> >       > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
> >       > [    2.481341] registered taskstats version 1
> >       > [    2.486394] Btrfs loaded, crc32c=crc32c-generic, zoned=no,
> fsverity=no
> >       > [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq =
> 36, base_baud = 6250000) is a xuartps
> >       > [    2.507103] of-fpga-region fpga-full: FPGA Region probed
> >       > [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP
> DMA driver Probe success
> >       > [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP
> DMA driver Probe success
> >       > [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP
> DMA driver Probe success
> >       > [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP
> DMA driver Probe success
> >       > [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP
> DMA driver Probe success
> >       > [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP
> DMA driver Probe success
> >       > [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP
> DMA driver Probe success
> >       > [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP
> DMA driver Probe success
> >       > [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP
> DMA driver Probe success
> >       > [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP
> DMA driver Probe success
> >       > [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
> >       > [    2.946467] 2 fixed-partitions partitions found on MTD device
> spi0.0
> >       > [    2.952393] Creating 2 MTD partitions on "spi0.0":
> >       > [    2.957231] 0x000004000000-0x000008000000 : "bank A"
> >       > [    2.963332] 0x000000000000-0x000004000000 : "bank B"
> >       > [    2.968694] macb ff0b0000.ethernet: Not enabling partial
> store and forward
> >       > [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM rev
> 0x50070106 at 0xff0b0000 irq 25 (18:41:fe:0f:ff:02)
> >       > [    2.984472] macb ff0c0000.ethernet: Not enabling partial
> store and forward
> >       > [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM rev
> 0x50070106 at 0xff0c0000 irq 26 (18:41:fe:0f:ff:03)
> >       > [    3.001043] viper_enet viper_enet: Viper power GPIOs
> initialised
> >       > [    3.007313] viper_enet viper_enet vnet0 (uninitialized):
> Validate interface QSGMII
> >       > [    3.014914] viper_enet viper_enet vnet1 (uninitialized):
> Validate interface QSGMII
> >       > [    3.022138] viper_enet viper_enet vnet1 (uninitialized):
> Validate interface type 18
> >       > [    3.030274] viper_enet viper_enet vnet2 (uninitialized):
> Validate interface QSGMII
> >       > [    3.037785] viper_enet viper_enet vnet3 (uninitialized):
> Validate interface QSGMII
> >       > [    3.045301] viper_enet viper_enet: Viper enet registered
> >       > [    3.050958] xilinx-axipmon ffa00000.perf-monitor: Probed
> Xilinx APM
> >       > [    3.057135] xilinx-axipmon fd0b0000.perf-monitor: Probed
> Xilinx APM
> >       > [    3.063538] xilinx-axipmon fd490000.perf-monitor: Probed
> Xilinx APM
> >       > [    3.069920] xilinx-axipmon ffa10000.perf-monitor: Probed
> Xilinx APM
> >       > [    3.097729] si70xx: probe of 2-0040 failed with error -5
> >       > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer
> with timeout 60s
> >       > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer
> with timeout 10s
> >       > [    3.112457] viper-tamper viper-tamper: Device registered
> >       > [    3.117593] active_bank active_bank: boot bank: 1
> >       > [    3.122184] active_bank active_bank: boot mode: (0x02) qspi32
> >       > [    3.128247] viper-vdpp a4000000.vdpp: Device Tree Probing
> >       > [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0
> Info: 1.512.15.0 KeyLen: 32
> >       > [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler
> registered
> >       > [    3.147438] viper-vdpp a4000000.vdpp: Device registered
> >       > [    3.153007] lpc55_l2 spi1.0: registered handler for protocol 0
> >       > [    3.158582] lpc55_user lpc55_user: The major number for your
> device is 236
> >       > [    3.165976] lpc55_l2 spi1.0: registered handler for protocol 1
> >       > [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad
> result: 1
> >       > [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
> >       > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
> >       > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
> >       > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
> >       > [    3.202932] mmc0: SDHCI controller on ff160000.mmc
> [ff160000.mmc] using ADMA 64-bit
> >       > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
> >       > [    3.215694] lpc55_l2 spi1.0: rx error: -110
> >       > [    3.284438] mmc0: new HS200 MMC card at address 0001
> >       > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
> >       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
> >       > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
> >       > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
> >       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev
> (244:0)
> >       > [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad
> result: 1
> >       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to read the
> hardware clock
> >       > [    3.591252] cdns-i2c ff020000.i2c: recovery information
> complete
> >       > [    3.597085] at24 0-0050: supply vcc not found, using dummy
> regulator
> >       > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
> >       > [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
> >       > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
> >       > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
> >       > [    3.624224] rtc-rv3028 0-0052: registered as rtc1
> >       > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
> >       > [    3.633253] lpc55_l2 spi1.0: rx error: -110
> >       > [    3.639104] k81_bootloader 0-0010: probe
> >       > [    3.641628] VMCU: : (235:0) registered
> >       > [    3.641635] k81_bootloader 0-0010: probe completed
> >       > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq
> 28
> >       > [    3.669154] cdns-i2c ff030000.i2c: recovery information
> complete
> >       > [    3.675412] lm75 1-0048: supply vs not found, using dummy
> regulator
> >       > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
> >       > [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
> >       > [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
> >       > [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
> >       > [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
> >       > [    3.705157] pca954x 1-0070: registered 4 multiplexed busses
> for I2C switch pca9546
> >       > [    3.713049] at24 1-0054: supply vcc not found, using dummy
> regulator
> >       > [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM, read-only
> >       > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq
> 29
> >       > [    3.731272] sfp viper_enet:sfp-eth1: Host maximum power 2.0W
> >       > [    3.737549] sfp_register_socket: got sfp_bus
> >       > [    3.740709] sfp_register_socket: register sfp_bus
> >       > [    3.745459] sfp_register_bus: ops ok!
> >       > [    3.749179] sfp_register_bus: Try to attach
> >       > [    3.753419] sfp_register_bus: Attach succeeded
> >       > [    3.757914] sfp_register_bus: upstream ops attach
> >       > [    3.762677] sfp_register_bus: Bus registered
> >       > [    3.766999] sfp_register_socket: register sfp_bus succeeded
> >       > [    3.775870] of_cfs_init
> >       > [    3.776000] of_cfs_init: OK
> >       > [    3.778211] clk: Not disabling unused clocks
> >       > [   11.278477] Freeing initrd memory: 206056K
> >       > [   11.279406] Freeing unused kernel memory: 1536K
> >       > [   11.314006] Checked W+X mappings: passed, no W+X pages found
> >       > [   11.314142] Run /init as init process
> >       > INIT: version 3.01 booting
> >       > fsck (busybox 1.35.0)
> >       > /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600 blocks
> >       > /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600 blocks
> >       > /dev/mmcblk0p3 was not cleanly unmounted, check forced.
> >       > /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous), 663/16384
> blocks
> >       > [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem without
> journal. Opts: (null). Quota mode: disabled.
> >       > Starting random number generator daemon.
> >       > [   11.580662] random: crng init done
> >       > Starting udev
> >       > [   11.613159] udevd[142]: starting version 3.2.10
> >       > [   11.620385] udevd[143]: starting eudev-3.2.10
> >       > [   11.704481] macb ff0b0000.ethernet control_red: renamed from
> eth0
> >       > [   11.720264] macb ff0c0000.ethernet control_black: renamed
> from eth1
> >       > [   12.063396] ip_local_port_range: prefer different parity for
> start/end values.
> >       > [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad
> result: 1
> >       > hwclock: RTC_RD_TIME: Invalid exchange
> >       > Mon Feb 27 08:40:53 UTC 2023
> >       > [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad
> result
> >       > hwclock: RTC_SET_TIME: Invalid exchange
> >       > [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad
> result: 1
> >       > Starting mcud
> >       > INIT: Entering runlevel: 5
> >       > Configuring network interfaces... done.
> >       > resetting network interface
> >       > [   12.718295] macb ff0b0000.ethernet control_red: PHY
> [ff0b0000.ethernet-ffffffff:02] driver [Xilinx PCS/PMA PHY] (irq=POLL)
> >       > [   12.723919] macb ff0b0000.ethernet control_red: configuring
> for phy/gmii link mode
> >       > [   12.732151] pps pps0: new PPS source ptp0
> >       > [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp clock
> registered.
> >       > [   12.745724] macb ff0c0000.ethernet control_black: PHY
> [ff0c0000.ethernet-ffffffff:01] driver [Xilinx PCS/PMA PHY]
> >       (irq=POLL)
> >       > [   12.753469] macb ff0c0000.ethernet control_black: configuring
> for phy/gmii link mode
> >       > [   12.761804] pps pps1: new PPS source ptp1
> >       > [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp clock
> registered.
> >       > Auto-negotiation: off
> >       > Auto-negotiation: off
> >       > [   16.828151] macb ff0b0000.ethernet control_red: unable to
> generate target frequency: 125000000 Hz
> >       > [   16.834553] macb ff0b0000.ethernet control_red: Link is Up -
> 1Gbps/Full - flow control off
> >       > [   16.860552] macb ff0c0000.ethernet control_black: unable to
> generate target frequency: 125000000 Hz
> >       > [   16.867052] macb ff0c0000.ethernet control_black: Link is Up
> - 1Gbps/Full - flow control off
> >       > Starting Failsafe Secure Shell server in port 2222: sshd
> >       > done.
> >       > Starting rpcbind daemon...done.
> >       >
> >       > [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad
> result: 1
> >       > hwclock: RTC_RD_TIME: Invalid exchange
> >       > Starting State Manager Service
> >       > Start state-manager restarter...
> >       > (XEN) d0v1 Forwarding AES operation: 3254779951
> >       > Starting /usr/sbin/xenstored....[   17.265256] BTRFS: device
> fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa devid 1 transid 744
> >       /dev/dm-0
> >       > scanned by udevd (385)
> >       > [   17.349933] BTRFS info (device dm-0): disk space caching is
> enabled
> >       > [   17.350670] BTRFS info (device dm-0): has skinny extents
> >       > [   17.364384] BTRFS info (device dm-0): enabling ssd
> optimizations
> >       > [   17.830462] BTRFS: device fsid
> 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6
> /dev/mapper/client_prov scanned by
> >       mkfs.btrfs
> >       > (526)
> >       > [   17.872699] BTRFS info (device dm-1): using free space tree
> >       > [   17.872771] BTRFS info (device dm-1): has skinny extents
> >       > [   17.878114] BTRFS info (device dm-1): flagging fs with big
> metadata feature
> >       > [   17.894289] BTRFS info (device dm-1): enabling ssd
> optimizations
> >       > [   17.895695] BTRFS info (device dm-1): checking UUID tree
> >       >
> >       > Setting domain 0 name, domid and JSON config...
> >       > Done setting up Dom0
> >       > Starting xenconsoled...
> >       > Starting QEMU as disk backend for dom0
> >       > Starting domain watchdog daemon: xenwatchdogd startup
> >       >
> >       > [   18.408647] BTRFS: device fsid
> 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6
> /dev/mapper/client_config scanned by
> >       mkfs.btrfs
> >       > (574)
> >       > [done]
> >       > [   18.465552] BTRFS info (device dm-2): using free space tree
> >       > [   18.465629] BTRFS info (device dm-2): has skinny extents
> >       > [   18.471002] BTRFS info (device dm-2): flagging fs with big
> metadata feature
> >       > Starting crond: [   18.482371] BTRFS info (device dm-2):
> enabling ssd optimizations
> >       > [   18.486659] BTRFS info (device dm-2): checking UUID tree
> >       > OK
> >       > starting rsyslogd ... Log partition ready after 0 poll loops
> >       > done
> >       > rsyslogd: cannot connect to 172.18.0.1:514: Network is
> unreachable [v8.2208.0 try https://www.rsyslog.com/e/2027 ]
> >       > [   18.670637] BTRFS: device fsid
> 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3 scanned
> by udevd (518)
> >       >
> >       > Please insert USB token and enter your role in login prompt.
> >       >
> >       > login:
> >       >
> >       > Regards,
> >       > O.
> >       >
> >       >
> >       > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <
> sstabellini@kernel.org>:
> >       >       Hi Oleg,
> >       >
> >       >       Here is the issue from your logs:
> >       >
> >       >       SError Interrupt on CPU0, code 0xbe000000 -- SError
> >       >
> >       >       SErrors are special signals to notify software of serious
> hardware
> >       >       errors.  Something is going very wrong. Defective hardware
> is a
> >       >       possibility.  Another possibility if software accessing
> address ranges
> >       >       that it is not supposed to, sometimes it causes SErrors.
> >       >
> >       >       Cheers,
> >       >
> >       >       Stefano
> >       >
> >       >
> >       >
> >       >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
> >       >
> >       >       > Hello,
> >       >       >
> >       >       > Thanks guys.
> >       >       > I found out where the problem was.
> >       >       > Now dom0 booted more. But I have a new one.
> >       >       > This is a kernel panic during Dom0 loading.
> >       >       > Maybe someone is able to suggest something ?
> >       >       >
> >       >       > Regards,
> >       >       > O.
> >       >       >
> >       >       > [    3.771362] sfp_register_bus: upstream ops attach
> >       >       > [    3.776119] sfp_register_bus: Bus registered
> >       >       > [    3.780459] sfp_register_socket: register sfp_bus
> succeeded
> >       >       > [    3.789399] of_cfs_init
> >       >       > [    3.789499] of_cfs_init: OK
> >       >       > [    3.791685] clk: Not disabling unused clocks
> >       >       > [   11.010355] SError Interrupt on CPU0, code 0xbe000000
> -- SError
> >       >       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0 Not
> tainted 5.15.72-xilinx-v2022.1 #1
> >       >       > [   11.010393] Workqueue: events_unbound
> async_run_entry_fn
> >       >       > [   11.010414] pstate: 60000005 (nZCv daif -PAN -UAO
> -TCO -DIT -SSBS BTYPE=--)
> >       >       > [   11.010422] pc : simple_write_end+0xd0/0x130
> >       >       > [   11.010431] lr : generic_perform_write+0x118/0x1e0
> >       >       > [   11.010438] sp : ffffffc00809b910
> >       >       > [   11.010441] x29: ffffffc00809b910 x28:
> 0000000000000000 x27: ffffffef69ba88c0
> >       >       > [   11.010451] x26: 0000000000003eec x25:
> ffffff807515db00 x24: 0000000000000000
> >       >       > [   11.010459] x23: ffffffc00809ba90 x22:
> 0000000002aac000 x21: ffffff807315a260
> >       >       > [   11.010472] x20: 0000000000001000 x19:
> fffffffe02000000 x18: 0000000000000000
> >       >       > [   11.010481] x17: 00000000ffffffff x16:
> 0000000000008000 x15: 0000000000000000
> >       >       > [   11.010490] x14: 0000000000000000 x13:
> 0000000000000000 x12: 0000000000000000
> >       >       > [   11.010498] x11: 0000000000000000 x10:
> 0000000000000000 x9 : 0000000000000000
> >       >       > [   11.010507] x8 : 0000000000000000 x7 :
> ffffffef693ba680 x6 : 000000002d89b700
> >       >       > [   11.010515] x5 : fffffffe02000000 x4 :
> ffffff807315a3c8 x3 : 0000000000001000
> >       >       > [   11.010524] x2 : 0000000002aab000 x1 :
> 0000000000000001 x0 : 0000000000000005
> >       >       > [   11.010534] Kernel panic - not syncing: Asynchronous
> SError Interrupt
> >       >       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0 Not
> tainted 5.15.72-xilinx-v2022.1 #1
> >       >       > [   11.010545] Hardware name: D14 Viper Board - White
> Unit (DT)
> >       >       > [   11.010548] Workqueue: events_unbound
> async_run_entry_fn
> >       >       > [   11.010556] Call trace:
> >       >       > [   11.010558]  dump_backtrace+0x0/0x1c4
> >       >       > [   11.010567]  show_stack+0x18/0x2c
> >       >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
> >       >       > [   11.010583]  dump_stack+0x18/0x34
> >       >       > [   11.010588]  panic+0x14c/0x2f8
> >       >       > [   11.010597]  print_tainted+0x0/0xb0
> >       >       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
> >       >       > [   11.010614]  do_serror+0x28/0x60
> >       >       > [   11.010621]  el1h_64_error_handler+0x30/0x50
> >       >       > [   11.010628]  el1h_64_error+0x78/0x7c
> >       >       > [   11.010633]  simple_write_end+0xd0/0x130
> >       >       > [   11.010639]  generic_perform_write+0x118/0x1e0
> >       >       > [   11.010644]  __generic_file_write_iter+0x138/0x1c4
> >       >       > [   11.010650]  generic_file_write_iter+0x78/0xd0
> >       >       > [   11.010656]  __kernel_write+0xfc/0x2ac
> >       >       > [   11.010665]  kernel_write+0x88/0x160
> >       >       > [   11.010673]  xwrite+0x44/0x94
> >       >       > [   11.010680]  do_copy+0xa8/0x104
> >       >       > [   11.010686]  write_buffer+0x38/0x58
> >       >       > [   11.010692]  flush_buffer+0x4c/0xbc
> >       >       > [   11.010698]  __gunzip+0x280/0x310
> >       >       > [   11.010704]  gunzip+0x1c/0x28
> >       >       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
> >       >       > [   11.010715]  do_populate_rootfs+0x80/0x164
> >       >       > [   11.010722]  async_run_entry_fn+0x48/0x164
> >       >       > [   11.010728]  process_one_work+0x1e4/0x3a0
> >       >       > [   11.010736]  worker_thread+0x7c/0x4c0
> >       >       > [   11.010743]  kthread+0x120/0x130
> >       >       > [   11.010750]  ret_from_fork+0x10/0x20
> >       >       > [   11.010757] SMP: stopping secondary CPUs
> >       >       > [   11.010784] Kernel Offset: 0x2f61200000 from
> 0xffffffc008000000
> >       >       > [   11.010788] PHYS_OFFSET: 0x0
> >       >       > [   11.010790] CPU features: 0x00000401,00000842
> >       >       > [   11.010795] Memory Limit: none
> >       >       > [   11.277509] ---[ end Kernel panic - not syncing:
> Asynchronous SError Interrupt ]---
> >       >       >
> >       >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <
> michal.orzel@amd.com>:
> >       >       >       Hi Oleg,
> >       >       >
> >       >       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
> >       >       >       >
> >       >       >       >
> >       >       >       >
> >       >       >       > Hello Michal,
> >       >       >       >
> >       >       >       > I was not able to enable earlyprintk in the xen
> for now.
> >       >       >       > I decided to choose another way.
> >       >       >       > This is a xen's command line that I found out
> completely.
> >       >       >       >
> >       >       >       > (XEN) $$$$ console=dtuart dtuart=serial0
> dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin bootscrub=0
> >       vwfi=native
> >       >       sched=null
> >       >       >       timer_slop=0
> >       >       >       Yes, adding a printk() in Xen was also a good idea.
> >       >       >
> >       >       >       >
> >       >       >       > So you are absolutely right about a command line.
> >       >       >       > Now I am going to find out why xen did not have
> the correct parameters from the device tree.
> >       >       >       Maybe you will find this document helpful:
> >       >       >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >       >       >
> >       >       >       ~Michal
> >       >       >
> >       >       >       >
> >       >       >       > Regards,
> >       >       >       > Oleg
> >       >       >       >
> >       >       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
> >       >       >       >
> >       >       >       >
> >       >       >       >     On 21/04/2023 10:04, Oleg Nikitenko wrote:
> >       >       >       >     >
> >       >       >       >     >
> >       >       >       >     >
> >       >       >       >     > Hello Michal,
> >       >       >       >     >
> >       >       >       >     > Yes, I use yocto.
> >       >       >       >     >
> >       >       >       >     > Yesterday all day long I tried to follow
> your suggestions.
> >       >       >       >     > I faced a problem.
> >       >       >       >     > Manually in the xen config build file I
> pasted the strings:
> >       >       >       >     In the .config file or in some Yocto file
> (listing additional Kconfig options) added to SRC_URI?
> >       >       >       >     You shouldn't really modify .config file but
> if you do, you should execute "make olddefconfig"
> >       afterwards.
> >       >       >       >
> >       >       >       >     >
> >       >       >       >     > CONFIG_EARLY_PRINTK
> >       >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
> >       >       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
> >       >       >       >     I hope you added =y to them.
> >       >       >       >
> >       >       >       >     Anyway, you have at least the following
> solutions:
> >       >       >       >     1) Run bitbake xen -c menuconfig to properly
> set early printk
> >       >       >       >     2) Find out how you enable other Kconfig
> options in your project (e.g. CONFIG_COLORING=y that is not
> >       enabled by
> >       >       default)
> >       >       >       >     3) Append the following to
> "xen/arch/arm/configs/arm64_defconfig":
> >       >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
> >       >       >       >
> >       >       >       >     ~Michal
> >       >       >       >
> >       >       >       >     >
> >       >       >       >     > Host hangs in build time.
> >       >       >       >     > Maybe I did not set something in the
> config build file ?
> >       >       >       >     >
> >       >       >       >     > Regards,
> >       >       >       >     > Oleg
> >       >       >       >     >
> >       >       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg
> Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >       >       >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>:
> >       >       >       >     >
> >       >       >       >     >     Thanks Michal,
> >       >       >       >     >
> >       >       >       >     >     You gave me an idea.
> >       >       >       >     >     I am going to try it today.
> >       >       >       >     >
> >       >       >       >     >     Regards,
> >       >       >       >     >     O.
> >       >       >       >     >
> >       >       >       >     >     чт, 20 апр. 2023 г. в 11:56, Oleg
> Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >       >       >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>:
> >       >       >       >     >
> >       >       >       >     >         Thanks Stefano.
> >       >       >       >     >
> >       >       >       >     >         I am going to do it today.
> >       >       >       >     >
> >       >       >       >     >         Regards,
> >       >       >       >     >         O.
> >       >       >       >     >
> >       >       >       >     >         ср, 19 апр. 2023 г. в 23:05,
> Stefano Stabellini <sstabellini@kernel.org
> >       <mailto:sstabellini@kernel.org>
> >       >       >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>:
> >       >       >       >     >
> >       >       >       >     >             On Wed, 19 Apr 2023, Oleg
> Nikitenko wrote:
> >       >       >       >     >             > Hi Michal,
> >       >       >       >     >             >
> >       >       >       >     >             > I corrected xen's command
> line.
> >       >       >       >     >             > Now it is
> >       >       >       >     >             > xen,xen-bootargs =
> "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
> >       dom0_vcpus_pin
> >       >       >       bootscrub=0 vwfi=native sched=null
> >       >       >       >     >             > timer_slop=0 way_size=65536
> xen_colors=0-3 dom0_colors=4-7";
> >       >       >       >     >
> >       >       >       >     >             4 colors is way too many for
> xen, just do xen_colors=0-0. There is no
> >       >       >       >     >             advantage in using more than 1
> color for Xen.
> >       >       >       >     >
> >       >       >       >     >             4 colors is too few for dom0,
> if you are giving 1600M of memory to Dom0.
> >       >       >       >     >             Each color is 256M. For 1600M
> you should give at least 7 colors. Try:
> >       >       >       >     >
> >       >       >       >     >             xen_colors=0-0 dom0_colors=1-8
> >       >       >       >     >
> >       >       >       >     >
> >       >       >       >     >
> >       >       >       >     >             > Unfortunately the result was
> the same.
> >       >       >       >     >             >
> >       >       >       >     >             > (XEN)  - Dom0 mode: Relaxed
> >       >       >       >     >             > (XEN) P2M: 40-bit IPA with
> 40-bit PA and 8-bit VMID
> >       >       >       >     >             > (XEN) P2M: 3 levels with
> order-1 root, VTCR 0x0000000080023558
> >       >       >       >     >             > (XEN) Scheduling
> granularity: cpu, 1 CPU per sched-resource
> >       >       >       >     >             > (XEN) Coloring general
> information
> >       >       >       >     >             > (XEN) Way size: 64kB
> >       >       >       >     >             > (XEN) Max. number of colors
> available: 16
> >       >       >       >     >             > (XEN) Xen color(s): [ 0 ]
> >       >       >       >     >             > (XEN) alternatives: Patching
> with alt table 00000000002cc690 -> 00000000002ccc0c
> >       >       >       >     >             > (XEN) Color array allocation
> failed for dom0
> >       >       >       >     >             > (XEN)
> >       >       >       >     >             > (XEN)
> ****************************************
> >       >       >       >     >             > (XEN) Panic on CPU 0:
> >       >       >       >     >             > (XEN) Error creating domain 0
> >       >       >       >     >             > (XEN)
> ****************************************
> >       >       >       >     >             > (XEN)
> >       >       >       >     >             > (XEN) Reboot in five
> seconds...
> >       >       >       >     >             >
> >       >       >       >     >             > I am going to find out how
> command line arguments passed and parsed.
> >       >       >       >     >             >
> >       >       >       >     >             > Regards,
> >       >       >       >     >             > Oleg
> >       >       >       >     >             >
> >       >       >       >     >             > ср, 19 апр. 2023 г. в 11:25,
> Oleg Nikitenko <oleshiiwood@gmail.com
> >       <mailto:oleshiiwood@gmail.com>
> >       >       >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>:
> >       >       >       >     >             >       Hi Michal,
> >       >       >       >     >             >
> >       >       >       >     >             > You put my nose into the
> problem. Thank you.
> >       >       >       >     >             > I am going to use your point.
> >       >       >       >     >             > Let's see what happens.
> >       >       >       >     >             >
> >       >       >       >     >             > Regards,
> >       >       >       >     >             > Oleg
> >       >       >       >     >             >
> >       >       >       >     >             >
> >       >       >       >     >             > ср, 19 апр. 2023 г. в 10:37,
> Michal Orzel <michal.orzel@amd.com
> >       <mailto:michal.orzel@amd.com>
> >       >       >       <mailto:michal.orzel@amd.com <mailto:
> michal.orzel@amd.com>>>:
> >       >       >       >     >             >       Hi Oleg,
> >       >       >       >     >             >
> >       >       >       >     >             >       On 19/04/2023 09:03,
> Oleg Nikitenko wrote:
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >
> >       >       >       >     >             >       > Hello Stefano,
> >       >       >       >     >             >       >
> >       >       >       >     >             >       > Thanks for the
> clarification.
> >       >       >       >     >             >       > My company uses
> yocto for image generation.
> >       >       >       >     >             >       > What kind of
> information do you need to consult me in this case ?
> >       >       >       >     >             >       >
> >       >       >       >     >             >       > Maybe modules
> sizes/addresses which were mentioned by @Julien Grall
> >       >       <mailto:julien@xen.org
> >       >       >       <mailto:julien@xen.org> <mailto:julien@xen.org
> <mailto:julien@xen.org>>> ?
> >       >       >       >     >             >
> >       >       >       >     >             >       Sorry for jumping into
> discussion, but FWICS the Xen command line you provided
> >       seems to be
> >       >       not the
> >       >       >       one
> >       >       >       >     >             >       Xen booted with. The
> error you are observing most likely is due to dom0 colors
> >       >       configuration not
> >       >       >       being
> >       >       >       >     >             >       specified (i.e. lack
> of dom0_colors=<> parameter). Although in the command line you
> >       >       provided, this
> >       >       >       parameter
> >       >       >       >     >             >       is set, I strongly
> doubt that this is the actual command line in use.
> >       >       >       >     >             >
> >       >       >       >     >             >       You wrote:
> >       >       >       >     >             >       xen,xen-bootargs =
> "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
> >       >       dom0_vcpus_pin
> >       >       >       bootscrub=0 vwfi=native
> >       >       >       >     >             >       sched=null
> timer_slop=0 way_szize=65536 xen_colors=0-3 dom0_colors=4-7";
> >       >       >       >     >             >
> >       >       >       >     >             >       but:
> >       >       >       >     >             >       1) way_szize has a typo
> >       >       >       >     >             >       2) you specified 4
> colors (0-3) for Xen, but the boot log says that Xen has only
> >       one:
> >       >       >       >     >             >       (XEN) Xen color(s): [
> 0 ]
> >       >       >       >     >             >
> >       >       >       >     >             >       This makes me believe
> that no colors configuration actually end up in command line
> >       that Xen
> >       >       booted
> >       >       >       with.
> >       >       >       >     >             >       Single color for Xen
> is a "default if not specified" and way size was probably
> >       calculated
> >       >       by asking
> >       >       >       HW.
> >       >       >       >     >             >
> >       >       >       >     >             >       So I would suggest to
> first cross-check the command line in use.
> >       >       >       >     >             >
> >       >       >       >     >             >       ~Michal
> >       >       >       >     >             >
> >       >       >       >     >             >
> >       >       >       >     >             >       >
> >       >       >       >     >             >       > Regards,
> >       >       >       >     >             >       > Oleg
> >       >       >       >     >             >       >
> >       >       >       >     >             >       > вт, 18 апр. 2023 г.
> в 20:44, Stefano Stabellini <sstabellini@kernel.org
> >       >       >       <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
> >       >       <mailto:sstabellini@kernel.org
> >       >       >       <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >     On Tue, 18 Apr
> 2023, Oleg Nikitenko wrote:
> >       >       >       >     >             >       >     > Hi Julien,
> >       >       >       >     >             >       >     >
> >       >       >       >     >             >       >     > >> This
> feature has not been merged in Xen upstream yet
> >       >       >       >     >             >       >     >
> >       >       >       >     >             >       >     > > would assume
> that upstream + the series on the ML [1] work
> >       >       >       >     >             >       >     >
> >       >       >       >     >             >       >     > Please clarify
> this point.
> >       >       >       >     >             >       >     > Because the
> two thoughts are controversial.
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >     Hi Oleg,
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >     As Julien wrote,
> there is nothing controversial. As you are aware,
> >       >       >       >     >             >       >     Xilinx maintains
> a separate Xen tree specific for Xilinx here:
> >       >       >       >     >             >       >
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>
> >       >       <https://github.com/xilinx/xen
> >       >       >       <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>
> >       >       <https://github.com/xilinx/xen
> >       >       >       <https://github.com/xilinx/xen>>>
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >     and the branch
> you are using (xlnx_rebase_4.16) comes from there.
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >     Instead, the
> upstream Xen tree lives here:
> >       >       >       >     >             >       >
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       >       >       <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >     The Cache
> Coloring feature that you are trying to configure is present
> >       >       >       >     >             >       >     in
> xlnx_rebase_4.16, but not yet present upstream (there is an
> >       >       >       >     >             >       >     outstanding
> patch series to add cache coloring to Xen upstream but it
> >       >       >       >     >             >       >     hasn't been
> merged yet.)
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >     Anyway, if you
> are using xlnx_rebase_4.16 it doesn't matter too much for
> >       >       >       >     >             >       >     you as you
> already have Cache Coloring as a feature there.
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >     I take you are
> using ImageBuilder to generate the boot configuration? If
> >       >       >       >     >             >       >     so, please post
> the ImageBuilder config file that you are using.
> >       >       >       >     >             >       >
> >       >       >       >     >             >       >     But from the
> boot message, it looks like the colors configuration for
> >       >       >       >     >             >       >     Dom0 is
> incorrect.
> >       >       >       >     >             >       >
> >       >       >       >     >             >
> >       >       >       >     >             >
> >       >       >       >     >             >
> >       >       >       >     >
> >       >       >       >
> >       >       >
> >       >       >
> >       >       >
> >       >
> >       >
> >       >
> >
> >
> >

[-- Attachment #2: Type: text/html, Size: 89921 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-04-27  6:46  0%                                   ` Oleg Nikitenko
@ 2023-04-27 21:51  0%                                     ` Stefano Stabellini
  2023-05-05  8:28  0%                                       ` Oleg Nikitenko
  0 siblings, 1 reply; 200+ results
From: Stefano Stabellini @ 2023-04-27 21:51 UTC (permalink / raw)
  To: Oleg Nikitenko
  Cc: Stefano Stabellini, Michal Orzel, Julien Grall, xen-devel,
	Bertrand Marquis, Carlo Nonato, Stewart.Hildebrand

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

I am familiar with the zcu102 but I don't know how you could possibly
generate a SError.

I suggest to try to use ImageBuilder [1] to generate the boot
configuration as a test because that is known to work well for zcu102.

[1] https://gitlab.com/xen-project/imagebuilder


On Thu, 27 Apr 2023, Oleg Nikitenko wrote:
> Hello Stefano,
> 
> Thanks for clarification.
> We nighter use ImageBuilder nor uboot boot script.
> A model is zcu102 compatible.
> 
> Regards,
> O.
> 
> вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <sstabellini@kernel.org>:
>       This is interesting. Are you using Xilinx hardware by any chance? If so,
>       which board?
> 
>       Are you using ImageBuilder to generate your boot.scr boot script? If so,
>       could you please post your ImageBuilder config file? If not, can you
>       post the source of your uboot boot script?
> 
>       SErrors are supposed to be related to a hardware failure of some kind.
>       You are not supposed to be able to trigger an SError easily by
>       "mistake". I have not seen SErrors due to wrong cache coloring
>       configurations on any Xilinx board before.
> 
>       The differences between Xen with and without cache coloring from a
>       hardware perspective are:
> 
>       - With cache coloring, the SMMU is enabled and does address translations
>         even for dom0. Without cache coloring the SMMU could be disabled, and
>         if enabled, the SMMU doesn't do any address translations for Dom0. If
>         there is a hardware failure related to SMMU address translation it
>         could only trigger with cache coloring. This would be my normal
>         suggestion for you to explore, but the failure happens too early
>         before any DMA-capable device is programmed. So I don't think this can
>         be the issue.
> 
>       - With cache coloring, the memory allocation is very different so you'll
>         end up using different DDR regions for Dom0. So if your DDR is
>         defective, you might only see a failure with cache coloring enabled
>         because you end up using different regions.
> 
> 
>       On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
>       > Hi Stefano,
>       >
>       > Thank you.
>       > If I build xen without colors support there is not this error.
>       > All the domains are booted well.
>       > Hense it can not be a hardware issue.
>       > This panic arrived during unpacking the rootfs.
>       > Here I attached the boot log xen/Dom0 without color.
>       > A highlighted strings printed exactly after the place where 1-st time panic arrived.
>       >
>       >  Xen 4.16.1-pre
>       > (XEN) Xen version 4.16.1-pre (nole2390@(none)) (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y 2023-04-21
>       > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300 git:321687b231-dirty
>       > (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
>       > (XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0, part 0xd03,rev 0x4
>       > (XEN) 64-bit Execution:
>       > (XEN)   Processor Features: 0000000000002222 0000000000000000
>       > (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
>       > (XEN)     Extensions: FloatingPoint AdvancedSIMD
>       > (XEN)   Debug Features: 0000000010305106 0000000000000000
>       > (XEN)   Auxiliary Features: 0000000000000000 0000000000000000
>       > (XEN)   Memory Model Features: 0000000000001122 0000000000000000
>       > (XEN)   ISA Features:  0000000000011120 0000000000000000
>       > (XEN) 32-bit Execution:
>       > (XEN)   Processor Features: 0000000000000131:0000000000011011
>       > (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
>       > (XEN)     Extensions: GenericTimer Security
>       > (XEN)   Debug Features: 0000000003010066
>       > (XEN)   Auxiliary Features: 0000000000000000
>       > (XEN)   Memory Model Features: 0000000010201105 0000000040000000
>       > (XEN)                          0000000001260000 0000000002102211
>       > (XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
>       > (XEN)                 0000000001112131 0000000000011142 0000000000011121
>       > (XEN) Using SMC Calling Convention v1.2
>       > (XEN) Using PSCI v1.1
>       > (XEN) SMP: Allowing 4 CPUs
>       > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
>       > (XEN) GICv2 initialization:
>       > (XEN)         gic_dist_addr=00000000f9010000
>       > (XEN)         gic_cpu_addr=00000000f9020000
>       > (XEN)         gic_hyp_addr=00000000f9040000
>       > (XEN)         gic_vcpu_addr=00000000f9060000
>       > (XEN)         gic_maintenance_irq=25
>       > (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
>       > (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
>       > (XEN) Using scheduler: null Scheduler (null)
>       > (XEN) Initializing null scheduler
>       > (XEN) WARNING: This is experimental software in development.
>       > (XEN) Use at your own risk.
>       > (XEN) Allocated console ring of 32 KiB.
>       > (XEN) CPU0: Guest atomics will try 12 times before pausing the domain
>       > (XEN) Bringing up CPU1
>       > (XEN) CPU1: Guest atomics will try 13 times before pausing the domain
>       > (XEN) CPU 1 booted.
>       > (XEN) Bringing up CPU2
>       > (XEN) CPU2: Guest atomics will try 13 times before pausing the domain
>       > (XEN) CPU 2 booted.
>       > (XEN) Bringing up CPU3
>       > (XEN) CPU3: Guest atomics will try 13 times before pausing the domain
>       > (XEN) Brought up 4 CPUs
>       > (XEN) CPU 3 booted.
>       > (XEN) smmu: /axi/smmu@fd800000: probing hardware configuration...
>       > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
>       > (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
>       > (XEN) smmu: /axi/smmu@fd800000: stream matching with 48 register groups, mask 0x7fff<2>smmu: /axi/smmu@fd800000: 16 context
>       banks (0
>       > stage-2 only)
>       > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
>       > (XEN) smmu: /axi/smmu@fd800000: registered 29 master devices
>       > (XEN) I/O virtualisation enabled
>       > (XEN)  - Dom0 mode: Relaxed
>       > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>       > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>       > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>       > (XEN) alternatives: Patching with alt table 00000000002cc5c8 -> 00000000002ccb2c
>       > (XEN) *** LOADING DOMAIN 0 ***
>       > (XEN) Loading d0 kernel from boot module @ 0000000001000000
>       > (XEN) Loading ramdisk from boot module @ 0000000002000000
>       > (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
>       > (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
>       > (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
>       > (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
>       > (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
>       > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
>       > (XEN) Allocating PPI 16 for event channel interrupt
>       > (XEN) Extended region 0: 0x81200000->0xa0000000
>       > (XEN) Extended region 1: 0xb1200000->0xc0000000
>       > (XEN) Extended region 2: 0xc8000000->0xe0000000
>       > (XEN) Extended region 3: 0xf0000000->0xf9000000
>       > (XEN) Extended region 4: 0x100000000->0x600000000
>       > (XEN) Extended region 5: 0x880000000->0x8000000000
>       > (XEN) Extended region 6: 0x8001000000->0x10000000000
>       > (XEN) Loading zImage from 0000000001000000 to 0000000010000000-0000000010e41008
>       > (XEN) Loading d0 initrd from 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
>       > (XEN) Loading d0 DTB to 0x0000000013400000-0x000000001340cbdc
>       > (XEN) Initial low memory virq threshold set at 0x4000 pages.
>       > (XEN) Std. Loglevel: All
>       > (XEN) Guest Loglevel: All
>       > (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
>       > (XEN) null.c:353: 0 <-- d0v0
>       > (XEN) Freed 356kB init memory.
>       > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
>       > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
>       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
>       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
>       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
>       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
>       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
>       > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>       > [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
>       > [    0.000000] Linux version 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC) 11.3.0, GNU ld (GNU
>       Binutils)
>       > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
>       > [    0.000000] Machine model: D14 Viper Board - White Unit
>       > [    0.000000] Xen 4.16 support found
>       > [    0.000000] Zone ranges:
>       > [    0.000000]   DMA      [mem 0x0000000010000000-0x000000007fffffff]
>       > [    0.000000]   DMA32    empty
>       > [    0.000000]   Normal   empty
>       > [    0.000000] Movable zone start for each node
>       > [    0.000000] Early memory node ranges
>       > [    0.000000]   node   0: [mem 0x0000000010000000-0x000000001fffffff]
>       > [    0.000000]   node   0: [mem 0x0000000022000000-0x0000000022147fff]
>       > [    0.000000]   node   0: [mem 0x0000000022200000-0x0000000022347fff]
>       > [    0.000000]   node   0: [mem 0x0000000024000000-0x0000000027ffffff]
>       > [    0.000000]   node   0: [mem 0x0000000030000000-0x000000007fffffff]
>       > [    0.000000] Initmem setup node 0 [mem 0x0000000010000000-0x000000007fffffff]
>       > [    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
>       > [    0.000000] On node 0, zone DMA: 184 pages in unavailable ranges
>       > [    0.000000] On node 0, zone DMA: 7352 pages in unavailable ranges
>       > [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
>       > [    0.000000] psci: probing for conduit method from DT.
>       > [    0.000000] psci: PSCIv1.1 detected in firmware.
>       > [    0.000000] psci: Using standard PSCI v0.2 function IDs
>       > [    0.000000] psci: Trusted OS migration not required
>       > [    0.000000] psci: SMC Calling Convention v1.1
>       > [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0 d32744 u65536
>       > [    0.000000] Detected VIPT I-cache on CPU0
>       > [    0.000000] CPU features: kernel page table isolation forced ON by KASLR
>       > [    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
>       > [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 403845
>       > [    0.000000] Kernel command line: console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused fips=1 root=/dev/ram0
>       maxcpus=2
>       > [    0.000000] Unknown kernel command line parameters "earlyprintk=xen fips=1", will be passed to user space.
>       > [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>       > [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>       > [    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:on
>       > [    0.000000] mem auto-init: clearing system memory may take some time...
>       > [    0.000000] Memory: 1121936K/1641024K available (9728K kernel code, 836K rwdata, 2396K rodata, 1536K init, 262K bss,
>       256944K reserved,
>       > 262144K cma-reserved)
>       > [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
>       > [    0.000000] rcu: Hierarchical RCU implementation.
>       > [    0.000000] rcu: RCU event tracing is enabled.
>       > [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
>       > [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
>       > [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
>       > [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
>       > [    0.000000] Root IRQ handler: gic_handle_irq
>       > [    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (virt).
>       > [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
>       > [    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
>       > [    0.000258] Console: colour dummy device 80x25
>       > [    0.310231] printk: console [hvc0] enabled
>       > [    0.314403] Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS (lpj=400000)
>       > [    0.324851] pid_max: default: 32768 minimum: 301
>       > [    0.329706] LSM: Security Framework initializing
>       > [    0.334204] Yama: becoming mindful.
>       > [    0.337865] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>       > [    0.345180] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
>       > [    0.354743] xen:grant_table: Grant tables using version 1 layout
>       > [    0.359132] Grant table initialized
>       > [    0.362664] xen:events: Using FIFO-based ABI
>       > [    0.366993] Xen: initializing cpu0
>       > [    0.370515] rcu: Hierarchical SRCU implementation.
>       > [    0.375930] smp: Bringing up secondary CPUs ...
>       > (XEN) null.c:353: 1 <-- d0v1
>       > (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
>       > [    0.382549] Detected VIPT I-cache on CPU1
>       > [    0.388712] Xen: initializing cpu1
>       > [    0.388743] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
>       > [    0.388829] smp: Brought up 1 node, 2 CPUs
>       > [    0.406941] SMP: Total of 2 processors activated.
>       > [    0.411698] CPU features: detected: 32-bit EL0 Support
>       > [    0.416888] CPU features: detected: CRC32 instructions
>       > [    0.422121] CPU: All CPU(s) started at EL1
>       > [    0.426248] alternatives: patching kernel code
>       > [    0.431424] devtmpfs: initialized
>       > [    0.441454] KASLR enabled
>       > [    0.441602] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
>       > [    0.448321] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
>       > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE protocol family
>       > [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
>       > [    0.503772] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
>       > [    0.511610] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
>       > [    0.519478] audit: initializing netlink subsys (disabled)
>       > [    0.524985] audit: type=2000 audit(0.336:1): state=initialized audit_enabled=0 res=1
>       > [    0.529169] thermal_sys: Registered thermal governor 'step_wise'
>       > [    0.533023] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
>       > [    0.545608] ASID allocator initialised with 32768 entries
>       > [    0.551030] xen:swiotlb_xen: Warning: only able to allocate 4 MB for software IO TLB
>       > [    0.559332] software IO TLB: mapped [mem 0x0000000011800000-0x0000000011c00000] (4MB)
>       > [    0.583565] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
>       > [    0.584721] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
>       > [    0.591478] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
>       > [    0.598225] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
>       > [    0.636520] DRBG: Continuing without Jitter RNG
>       > [    0.737187] raid6: neonx8   gen()  2143 MB/s
>       > [    0.805294] raid6: neonx8   xor()  1589 MB/s
>       > [    0.873406] raid6: neonx4   gen()  2177 MB/s
>       > [    0.941499] raid6: neonx4   xor()  1556 MB/s
>       > [    1.009612] raid6: neonx2   gen()  2072 MB/s
>       > [    1.077715] raid6: neonx2   xor()  1430 MB/s
>       > [    1.145834] raid6: neonx1   gen()  1769 MB/s
>       > [    1.213935] raid6: neonx1   xor()  1214 MB/s
>       > [    1.282046] raid6: int64x8  gen()  1366 MB/s
>       > [    1.350132] raid6: int64x8  xor()   773 MB/s
>       > [    1.418259] raid6: int64x4  gen()  1602 MB/s
>       > [    1.486349] raid6: int64x4  xor()   851 MB/s
>       > [    1.554464] raid6: int64x2  gen()  1396 MB/s
>       > [    1.622561] raid6: int64x2  xor()   744 MB/s
>       > [    1.690687] raid6: int64x1  gen()  1033 MB/s
>       > [    1.758770] raid6: int64x1  xor()   517 MB/s
>       > [    1.758809] raid6: using algorithm neonx4 gen() 2177 MB/s
>       > [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
>       > [    1.767957] raid6: using neon recovery algorithm
>       > [    1.772824] xen:balloon: Initialising balloon driver
>       > [    1.778021] iommu: Default domain type: Translated
>       > [    1.782584] iommu: DMA domain TLB invalidation policy: strict mode
>       > [    1.789149] SCSI subsystem initialized
>       > [    1.792820] usbcore: registered new interface driver usbfs
>       > [    1.798254] usbcore: registered new interface driver hub
>       > [    1.803626] usbcore: registered new device driver usb
>       > [    1.808761] pps_core: LinuxPPS API ver. 1 registered
>       > [    1.813716] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
>       > [    1.822903] PTP clock support registered
>       > [    1.826893] EDAC MC: Ver: 3.0.0
>       > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
>       > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX channels.
>       > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX channels.
>       > [    1.855907] FPGA manager framework
>       > [    1.859952] clocksource: Switched to clocksource arch_sys_counter
>       > [    1.871712] NET: Registered PF_INET protocol family
>       > [    1.871838] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
>       > [    1.879392] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
>       > [    1.887078] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
>       > [    1.894846] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
>       > [    1.902900] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
>       > [    1.910350] TCP: Hash tables configured (established 16384 bind 16384)
>       > [    1.916778] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
>       > [    1.923509] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
>       > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol family
>       > [    1.936834] RPC: Registered named UNIX socket transport module.
>       > [    1.942342] RPC: Registered udp transport module.
>       > [    1.947088] RPC: Registered tcp transport module.
>       > [    1.951843] RPC: Registered tcp NFSv4.1 backchannel transport module.
>       > [    1.958334] PCI: CLS 0 bytes, default 64
>       > [    1.962709] Trying to unpack rootfs image as initramfs...
>       > [    1.977090] workingset: timestamp_bits=62 max_order=19 bucket_order=0
>       > [    1.982863] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
>       > [    2.021045] NET: Registered PF_ALG protocol family
>       > [    2.021122] xor: measuring software checksum speed
>       > [    2.029347]    8regs           :  2366 MB/sec
>       > [    2.033081]    32regs          :  2802 MB/sec
>       > [    2.038223]    arm64_neon      :  2320 MB/sec
>       > [    2.038385] xor: using function: 32regs (2802 MB/sec)
>       > [    2.043614] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
>       > [    2.050959] io scheduler mq-deadline registered
>       > [    2.055521] io scheduler kyber registered
>       > [    2.068227] xen:xen_evtchn: Event-channel device installed
>       > [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
>       > [    2.076190] cacheinfo: Unable to detect cache hierarchy for CPU 0
>       > [    2.085548] brd: module loaded
>       > [    2.089290] loop: module loaded
>       > [    2.089341] Invalid max_queues (4), will use default max: 2.
>       > [    2.094565] tun: Universal TUN/TAP device driver, 1.6
>       > [    2.098655] xen_netfront: Initialising Xen virtual ethernet driver
>       > [    2.104156] usbcore: registered new interface driver rtl8150
>       > [    2.109813] usbcore: registered new interface driver r8152
>       > [    2.115367] usbcore: registered new interface driver asix
>       > [    2.120794] usbcore: registered new interface driver ax88179_178a
>       > [    2.126934] usbcore: registered new interface driver cdc_ether
>       > [    2.132816] usbcore: registered new interface driver cdc_eem
>       > [    2.138527] usbcore: registered new interface driver net1080
>       > [    2.144256] usbcore: registered new interface driver cdc_subset
>       > [    2.150205] usbcore: registered new interface driver zaurus
>       > [    2.155837] usbcore: registered new interface driver cdc_ncm
>       > [    2.161550] usbcore: registered new interface driver r8153_ecm
>       > [    2.168240] usbcore: registered new interface driver cdc_acm
>       > [    2.173109] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
>       > [    2.181358] usbcore: registered new interface driver uas
>       > [    2.186547] usbcore: registered new interface driver usb-storage
>       > [    2.192643] usbcore: registered new interface driver ftdi_sio
>       > [    2.198384] usbserial: USB Serial support registered for FTDI USB Serial Device
>       > [    2.206118] udc-core: couldn't find an available UDC - added [g_mass_storage] to list of pending drivers
>       > [    2.215332] i2c_dev: i2c /dev entries driver
>       > [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)
>       > [    2.225923] device-mapper: uevent: version 1.0.3
>       > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
>       > [    2.239315] EDAC MC0: Giving out device to module 1 controller synps_ddr_controller: DEV synps_edac (INTERRUPT)
>       > [    2.249405] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV
>       ff960000.memory-controller (INTERRUPT)
>       > [    2.261719] sdhci: Secure Digital Host Controller Interface driver
>       > [    2.267487] sdhci: Copyright(c) Pierre Ossman
>       > [    2.271890] sdhci-pltfm: SDHCI platform and OF driver helper
>       > [    2.278157] ledtrig-cpu: registered to indicate activity on CPUs
>       > [    2.283816] zynqmp_firmware_probe Platform Management API v1.1
>       > [    2.289554] zynqmp_firmware_probe Trustzone version v1.0
>       > [    2.327875] securefw securefw: securefw probed
>       > [    2.328324] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
>       > [    2.332563] zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
>       > [    2.341183] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
>       > [    2.347667] remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is available
>       > [    2.353003] remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is available
>       > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
>       > [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen Proxy registered
>       > [    2.372525] viper-vdpp a4000000.vdpp: Device Tree Probing
>       > [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>       > [    2.386432] viper-vdpp a4000000.vdpp: Unable to register tamper handler. Retrying...
>       > [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
>       > [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device registered
>       > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
>       > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event Count: 32
>       > [    2.420856] default preset
>       > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device registered
>       > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
>       > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device registered
>       > [    2.441976] vmcu driver init
>       > [    2.444922] VMCU: : (240:0) registered
>       > [    2.444956] In K81 Updater init
>       > [    2.449003] pktgen: Packet Generator for packet performance testing. Version: 2.75
>       > [    2.468833] Initializing XFRM netlink socket
>       > [    2.468902] NET: Registered PF_PACKET protocol family
>       > [    2.472729] Bridge firewalling registered
>       > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
>       > [    2.481341] registered taskstats version 1
>       > [    2.486394] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
>       > [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
>       > [    2.507103] of-fpga-region fpga-full: FPGA Region probed
>       > [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver Probe success
>       > [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver Probe success
>       > [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver Probe success
>       > [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver Probe success
>       > [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver Probe success
>       > [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver Probe success
>       > [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver Probe success
>       > [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver Probe success
>       > [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver Probe success
>       > [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver Probe success
>       > [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
>       > [    2.946467] 2 fixed-partitions partitions found on MTD device spi0.0
>       > [    2.952393] Creating 2 MTD partitions on "spi0.0":
>       > [    2.957231] 0x000004000000-0x000008000000 : "bank A"
>       > [    2.963332] 0x000000000000-0x000004000000 : "bank B"
>       > [    2.968694] macb ff0b0000.ethernet: Not enabling partial store and forward
>       > [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25 (18:41:fe:0f:ff:02)
>       > [    2.984472] macb ff0c0000.ethernet: Not enabling partial store and forward
>       > [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26 (18:41:fe:0f:ff:03)
>       > [    3.001043] viper_enet viper_enet: Viper power GPIOs initialised
>       > [    3.007313] viper_enet viper_enet vnet0 (uninitialized): Validate interface QSGMII
>       > [    3.014914] viper_enet viper_enet vnet1 (uninitialized): Validate interface QSGMII
>       > [    3.022138] viper_enet viper_enet vnet1 (uninitialized): Validate interface type 18
>       > [    3.030274] viper_enet viper_enet vnet2 (uninitialized): Validate interface QSGMII
>       > [    3.037785] viper_enet viper_enet vnet3 (uninitialized): Validate interface QSGMII
>       > [    3.045301] viper_enet viper_enet: Viper enet registered
>       > [    3.050958] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
>       > [    3.057135] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
>       > [    3.063538] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
>       > [    3.069920] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
>       > [    3.097729] si70xx: probe of 2-0040 failed with error -5
>       > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
>       > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
>       > [    3.112457] viper-tamper viper-tamper: Device registered
>       > [    3.117593] active_bank active_bank: boot bank: 1
>       > [    3.122184] active_bank active_bank: boot mode: (0x02) qspi32
>       > [    3.128247] viper-vdpp a4000000.vdpp: Device Tree Probing
>       > [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
>       > [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler registered
>       > [    3.147438] viper-vdpp a4000000.vdpp: Device registered
>       > [    3.153007] lpc55_l2 spi1.0: registered handler for protocol 0
>       > [    3.158582] lpc55_user lpc55_user: The major number for your device is 236
>       > [    3.165976] lpc55_l2 spi1.0: registered handler for protocol 1
>       > [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>       > [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
>       > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
>       > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
>       > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
>       > [    3.202932] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
>       > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
>       > [    3.215694] lpc55_l2 spi1.0: rx error: -110
>       > [    3.284438] mmc0: new HS200 MMC card at address 0001
>       > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
>       > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
>       > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
>       > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
>       > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
>       > [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>       > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to read the hardware clock
>       > [    3.591252] cdns-i2c ff020000.i2c: recovery information complete
>       > [    3.597085] at24 0-0050: supply vcc not found, using dummy regulator
>       > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
>       > [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
>       > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
>       > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
>       > [    3.624224] rtc-rv3028 0-0052: registered as rtc1
>       > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
>       > [    3.633253] lpc55_l2 spi1.0: rx error: -110
>       > [    3.639104] k81_bootloader 0-0010: probe
>       > [    3.641628] VMCU: : (235:0) registered
>       > [    3.641635] k81_bootloader 0-0010: probe completed
>       > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 28
>       > [    3.669154] cdns-i2c ff030000.i2c: recovery information complete
>       > [    3.675412] lm75 1-0048: supply vs not found, using dummy regulator
>       > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
>       > [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
>       > [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
>       > [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
>       > [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
>       > [    3.705157] pca954x 1-0070: registered 4 multiplexed busses for I2C switch pca9546
>       > [    3.713049] at24 1-0054: supply vcc not found, using dummy regulator
>       > [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM, read-only
>       > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq 29
>       > [    3.731272] sfp viper_enet:sfp-eth1: Host maximum power 2.0W
>       > [    3.737549] sfp_register_socket: got sfp_bus
>       > [    3.740709] sfp_register_socket: register sfp_bus
>       > [    3.745459] sfp_register_bus: ops ok!
>       > [    3.749179] sfp_register_bus: Try to attach
>       > [    3.753419] sfp_register_bus: Attach succeeded
>       > [    3.757914] sfp_register_bus: upstream ops attach
>       > [    3.762677] sfp_register_bus: Bus registered
>       > [    3.766999] sfp_register_socket: register sfp_bus succeeded
>       > [    3.775870] of_cfs_init
>       > [    3.776000] of_cfs_init: OK
>       > [    3.778211] clk: Not disabling unused clocks
>       > [   11.278477] Freeing initrd memory: 206056K
>       > [   11.279406] Freeing unused kernel memory: 1536K
>       > [   11.314006] Checked W+X mappings: passed, no W+X pages found
>       > [   11.314142] Run /init as init process
>       > INIT: version 3.01 booting
>       > fsck (busybox 1.35.0)
>       > /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600 blocks
>       > /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600 blocks
>       > /dev/mmcblk0p3 was not cleanly unmounted, check forced.
>       > /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous), 663/16384 blocks
>       > [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode: disabled.
>       > Starting random number generator daemon.
>       > [   11.580662] random: crng init done
>       > Starting udev
>       > [   11.613159] udevd[142]: starting version 3.2.10
>       > [   11.620385] udevd[143]: starting eudev-3.2.10
>       > [   11.704481] macb ff0b0000.ethernet control_red: renamed from eth0
>       > [   11.720264] macb ff0c0000.ethernet control_black: renamed from eth1
>       > [   12.063396] ip_local_port_range: prefer different parity for start/end values.
>       > [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>       > hwclock: RTC_RD_TIME: Invalid exchange
>       > Mon Feb 27 08:40:53 UTC 2023
>       > [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad result
>       > hwclock: RTC_SET_TIME: Invalid exchange
>       > [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>       > Starting mcud
>       > INIT: Entering runlevel: 5
>       > Configuring network interfaces... done.
>       > resetting network interface
>       > [   12.718295] macb ff0b0000.ethernet control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver [Xilinx PCS/PMA PHY] (irq=POLL)
>       > [   12.723919] macb ff0b0000.ethernet control_red: configuring for phy/gmii link mode
>       > [   12.732151] pps pps0: new PPS source ptp0
>       > [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
>       > [   12.745724] macb ff0c0000.ethernet control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver [Xilinx PCS/PMA PHY]
>       (irq=POLL)
>       > [   12.753469] macb ff0c0000.ethernet control_black: configuring for phy/gmii link mode
>       > [   12.761804] pps pps1: new PPS source ptp1
>       > [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
>       > Auto-negotiation: off
>       > Auto-negotiation: off
>       > [   16.828151] macb ff0b0000.ethernet control_red: unable to generate target frequency: 125000000 Hz
>       > [   16.834553] macb ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full - flow control off
>       > [   16.860552] macb ff0c0000.ethernet control_black: unable to generate target frequency: 125000000 Hz
>       > [   16.867052] macb ff0c0000.ethernet control_black: Link is Up - 1Gbps/Full - flow control off
>       > Starting Failsafe Secure Shell server in port 2222: sshd
>       > done.
>       > Starting rpcbind daemon...done.
>       >
>       > [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
>       > hwclock: RTC_RD_TIME: Invalid exchange
>       > Starting State Manager Service
>       > Start state-manager restarter...
>       > (XEN) d0v1 Forwarding AES operation: 3254779951
>       > Starting /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa devid 1 transid 744
>       /dev/dm-0
>       > scanned by udevd (385)
>       > [   17.349933] BTRFS info (device dm-0): disk space caching is enabled
>       > [   17.350670] BTRFS info (device dm-0): has skinny extents
>       > [   17.364384] BTRFS info (device dm-0): enabling ssd optimizations
>       > [   17.830462] BTRFS: device fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6 /dev/mapper/client_prov scanned by
>       mkfs.btrfs
>       > (526)
>       > [   17.872699] BTRFS info (device dm-1): using free space tree
>       > [   17.872771] BTRFS info (device dm-1): has skinny extents
>       > [   17.878114] BTRFS info (device dm-1): flagging fs with big metadata feature
>       > [   17.894289] BTRFS info (device dm-1): enabling ssd optimizations
>       > [   17.895695] BTRFS info (device dm-1): checking UUID tree
>       >
>       > Setting domain 0 name, domid and JSON config...
>       > Done setting up Dom0
>       > Starting xenconsoled...
>       > Starting QEMU as disk backend for dom0
>       > Starting domain watchdog daemon: xenwatchdogd startup
>       >
>       > [   18.408647] BTRFS: device fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6 /dev/mapper/client_config scanned by
>       mkfs.btrfs
>       > (574)
>       > [done]
>       > [   18.465552] BTRFS info (device dm-2): using free space tree
>       > [   18.465629] BTRFS info (device dm-2): has skinny extents
>       > [   18.471002] BTRFS info (device dm-2): flagging fs with big metadata feature
>       > Starting crond: [   18.482371] BTRFS info (device dm-2): enabling ssd optimizations
>       > [   18.486659] BTRFS info (device dm-2): checking UUID tree
>       > OK
>       > starting rsyslogd ... Log partition ready after 0 poll loops
>       > done
>       > rsyslogd: cannot connect to 172.18.0.1:514: Network is unreachable [v8.2208.0 try https://www.rsyslog.com/e/2027 ]
>       > [   18.670637] BTRFS: device fsid 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3 scanned by udevd (518)
>       >
>       > Please insert USB token and enter your role in login prompt.
>       >
>       > login:
>       >
>       > Regards,
>       > O.
>       >
>       >
>       > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <sstabellini@kernel.org>:
>       >       Hi Oleg,
>       >
>       >       Here is the issue from your logs:
>       >
>       >       SError Interrupt on CPU0, code 0xbe000000 -- SError
>       >
>       >       SErrors are special signals to notify software of serious hardware
>       >       errors.  Something is going very wrong. Defective hardware is a
>       >       possibility.  Another possibility if software accessing address ranges
>       >       that it is not supposed to, sometimes it causes SErrors.
>       >
>       >       Cheers,
>       >
>       >       Stefano
>       >
>       >
>       >
>       >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
>       >
>       >       > Hello,
>       >       >
>       >       > Thanks guys.
>       >       > I found out where the problem was.
>       >       > Now dom0 booted more. But I have a new one.
>       >       > This is a kernel panic during Dom0 loading.
>       >       > Maybe someone is able to suggest something ?
>       >       >
>       >       > Regards,
>       >       > O.
>       >       >
>       >       > [    3.771362] sfp_register_bus: upstream ops attach
>       >       > [    3.776119] sfp_register_bus: Bus registered
>       >       > [    3.780459] sfp_register_socket: register sfp_bus succeeded
>       >       > [    3.789399] of_cfs_init
>       >       > [    3.789499] of_cfs_init: OK
>       >       > [    3.791685] clk: Not disabling unused clocks
>       >       > [   11.010355] SError Interrupt on CPU0, code 0xbe000000 -- SError
>       >       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>       >       > [   11.010393] Workqueue: events_unbound async_run_entry_fn
>       >       > [   11.010414] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
>       >       > [   11.010422] pc : simple_write_end+0xd0/0x130
>       >       > [   11.010431] lr : generic_perform_write+0x118/0x1e0
>       >       > [   11.010438] sp : ffffffc00809b910
>       >       > [   11.010441] x29: ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
>       >       > [   11.010451] x26: 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
>       >       > [   11.010459] x23: ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
>       >       > [   11.010472] x20: 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
>       >       > [   11.010481] x17: 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
>       >       > [   11.010490] x14: 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
>       >       > [   11.010498] x11: 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
>       >       > [   11.010507] x8 : 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
>       >       > [   11.010515] x5 : fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
>       >       > [   11.010524] x2 : 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
>       >       > [   11.010534] Kernel panic - not syncing: Asynchronous SError Interrupt
>       >       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>       >       > [   11.010545] Hardware name: D14 Viper Board - White Unit (DT)
>       >       > [   11.010548] Workqueue: events_unbound async_run_entry_fn
>       >       > [   11.010556] Call trace:
>       >       > [   11.010558]  dump_backtrace+0x0/0x1c4
>       >       > [   11.010567]  show_stack+0x18/0x2c
>       >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
>       >       > [   11.010583]  dump_stack+0x18/0x34
>       >       > [   11.010588]  panic+0x14c/0x2f8
>       >       > [   11.010597]  print_tainted+0x0/0xb0
>       >       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
>       >       > [   11.010614]  do_serror+0x28/0x60
>       >       > [   11.010621]  el1h_64_error_handler+0x30/0x50
>       >       > [   11.010628]  el1h_64_error+0x78/0x7c
>       >       > [   11.010633]  simple_write_end+0xd0/0x130
>       >       > [   11.010639]  generic_perform_write+0x118/0x1e0
>       >       > [   11.010644]  __generic_file_write_iter+0x138/0x1c4
>       >       > [   11.010650]  generic_file_write_iter+0x78/0xd0
>       >       > [   11.010656]  __kernel_write+0xfc/0x2ac
>       >       > [   11.010665]  kernel_write+0x88/0x160
>       >       > [   11.010673]  xwrite+0x44/0x94
>       >       > [   11.010680]  do_copy+0xa8/0x104
>       >       > [   11.010686]  write_buffer+0x38/0x58
>       >       > [   11.010692]  flush_buffer+0x4c/0xbc
>       >       > [   11.010698]  __gunzip+0x280/0x310
>       >       > [   11.010704]  gunzip+0x1c/0x28
>       >       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
>       >       > [   11.010715]  do_populate_rootfs+0x80/0x164
>       >       > [   11.010722]  async_run_entry_fn+0x48/0x164
>       >       > [   11.010728]  process_one_work+0x1e4/0x3a0
>       >       > [   11.010736]  worker_thread+0x7c/0x4c0
>       >       > [   11.010743]  kthread+0x120/0x130
>       >       > [   11.010750]  ret_from_fork+0x10/0x20
>       >       > [   11.010757] SMP: stopping secondary CPUs
>       >       > [   11.010784] Kernel Offset: 0x2f61200000 from 0xffffffc008000000
>       >       > [   11.010788] PHYS_OFFSET: 0x0
>       >       > [   11.010790] CPU features: 0x00000401,00000842
>       >       > [   11.010795] Memory Limit: none
>       >       > [   11.277509] ---[ end Kernel panic - not syncing: Asynchronous SError Interrupt ]---
>       >       >
>       >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <michal.orzel@amd.com>:
>       >       >       Hi Oleg,
>       >       >
>       >       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
>       >       >       >       
>       >       >       >
>       >       >       >
>       >       >       > Hello Michal,
>       >       >       >
>       >       >       > I was not able to enable earlyprintk in the xen for now.
>       >       >       > I decided to choose another way.
>       >       >       > This is a xen's command line that I found out completely.
>       >       >       >
>       >       >       > (XEN) $$$$ console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin bootscrub=0
>       vwfi=native
>       >       sched=null
>       >       >       timer_slop=0
>       >       >       Yes, adding a printk() in Xen was also a good idea.
>       >       >
>       >       >       >
>       >       >       > So you are absolutely right about a command line.
>       >       >       > Now I am going to find out why xen did not have the correct parameters from the device tree.
>       >       >       Maybe you will find this document helpful:
>       >       >       https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
>       >       >
>       >       >       ~Michal
>       >       >
>       >       >       >
>       >       >       > Regards,
>       >       >       > Oleg
>       >       >       >
>       >       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
>       >       >       >
>       >       >       >
>       >       >       >     On 21/04/2023 10:04, Oleg Nikitenko wrote:
>       >       >       >     >       
>       >       >       >     >
>       >       >       >     >
>       >       >       >     > Hello Michal,
>       >       >       >     >
>       >       >       >     > Yes, I use yocto.
>       >       >       >     >
>       >       >       >     > Yesterday all day long I tried to follow your suggestions.
>       >       >       >     > I faced a problem.
>       >       >       >     > Manually in the xen config build file I pasted the strings:
>       >       >       >     In the .config file or in some Yocto file (listing additional Kconfig options) added to SRC_URI?
>       >       >       >     You shouldn't really modify .config file but if you do, you should execute "make olddefconfig"
>       afterwards.
>       >       >       >
>       >       >       >     >
>       >       >       >     > CONFIG_EARLY_PRINTK
>       >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
>       >       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
>       >       >       >     I hope you added =y to them.
>       >       >       >
>       >       >       >     Anyway, you have at least the following solutions:
>       >       >       >     1) Run bitbake xen -c menuconfig to properly set early printk
>       >       >       >     2) Find out how you enable other Kconfig options in your project (e.g. CONFIG_COLORING=y that is not
>       enabled by
>       >       default)
>       >       >       >     3) Append the following to "xen/arch/arm/configs/arm64_defconfig":
>       >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
>       >       >       >
>       >       >       >     ~Michal
>       >       >       >
>       >       >       >     >
>       >       >       >     > Host hangs in build time. 
>       >       >       >     > Maybe I did not set something in the config build file ?
>       >       >       >     >
>       >       >       >     > Regards,
>       >       >       >     > Oleg
>       >       >       >     >
>       >       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
>       >       >       >     >
>       >       >       >     >     Thanks Michal,
>       >       >       >     >
>       >       >       >     >     You gave me an idea.
>       >       >       >     >     I am going to try it today.
>       >       >       >     >
>       >       >       >     >     Regards,
>       >       >       >     >     O.
>       >       >       >     >
>       >       >       >     >     чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
>       >       >       >     >
>       >       >       >     >         Thanks Stefano.
>       >       >       >     >
>       >       >       >     >         I am going to do it today.
>       >       >       >     >
>       >       >       >     >         Regards,
>       >       >       >     >         O.
>       >       >       >     >
>       >       >       >     >         ср, 19 апр. 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org
>       <mailto:sstabellini@kernel.org>
>       >       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
>       >       >       >     >
>       >       >       >     >             On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
>       >       >       >     >             > Hi Michal,
>       >       >       >     >             >
>       >       >       >     >             > I corrected xen's command line.
>       >       >       >     >             > Now it is
>       >       >       >     >             > xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
>       dom0_vcpus_pin
>       >       >       bootscrub=0 vwfi=native sched=null
>       >       >       >     >             > timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
>       >       >       >     >
>       >       >       >     >             4 colors is way too many for xen, just do xen_colors=0-0. There is no
>       >       >       >     >             advantage in using more than 1 color for Xen.
>       >       >       >     >
>       >       >       >     >             4 colors is too few for dom0, if you are giving 1600M of memory to Dom0.
>       >       >       >     >             Each color is 256M. For 1600M you should give at least 7 colors. Try:
>       >       >       >     >
>       >       >       >     >             xen_colors=0-0 dom0_colors=1-8
>       >       >       >     >
>       >       >       >     >
>       >       >       >     >
>       >       >       >     >             > Unfortunately the result was the same.
>       >       >       >     >             >
>       >       >       >     >             > (XEN)  - Dom0 mode: Relaxed
>       >       >       >     >             > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>       >       >       >     >             > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>       >       >       >     >             > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>       >       >       >     >             > (XEN) Coloring general information
>       >       >       >     >             > (XEN) Way size: 64kB
>       >       >       >     >             > (XEN) Max. number of colors available: 16
>       >       >       >     >             > (XEN) Xen color(s): [ 0 ]
>       >       >       >     >             > (XEN) alternatives: Patching with alt table 00000000002cc690 -> 00000000002ccc0c
>       >       >       >     >             > (XEN) Color array allocation failed for dom0
>       >       >       >     >             > (XEN)
>       >       >       >     >             > (XEN) ****************************************
>       >       >       >     >             > (XEN) Panic on CPU 0:
>       >       >       >     >             > (XEN) Error creating domain 0
>       >       >       >     >             > (XEN) ****************************************
>       >       >       >     >             > (XEN)
>       >       >       >     >             > (XEN) Reboot in five seconds...
>       >       >       >     >             >
>       >       >       >     >             > I am going to find out how command line arguments passed and parsed.
>       >       >       >     >             >
>       >       >       >     >             > Regards,
>       >       >       >     >             > Oleg
>       >       >       >     >             >
>       >       >       >     >             > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com
>       <mailto:oleshiiwood@gmail.com>
>       >       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
>       >       >       >     >             >       Hi Michal,
>       >       >       >     >             >
>       >       >       >     >             > You put my nose into the problem. Thank you.
>       >       >       >     >             > I am going to use your point.
>       >       >       >     >             > Let's see what happens.
>       >       >       >     >             >
>       >       >       >     >             > Regards,
>       >       >       >     >             > Oleg
>       >       >       >     >             >
>       >       >       >     >             >
>       >       >       >     >             > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com
>       <mailto:michal.orzel@amd.com>
>       >       >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
>       >       >       >     >             >       Hi Oleg,
>       >       >       >     >             >
>       >       >       >     >             >       On 19/04/2023 09:03, Oleg Nikitenko wrote:
>       >       >       >     >             >       >       
>       >       >       >     >             >       >
>       >       >       >     >             >       >
>       >       >       >     >             >       > Hello Stefano,
>       >       >       >     >             >       >
>       >       >       >     >             >       > Thanks for the clarification.
>       >       >       >     >             >       > My company uses yocto for image generation.
>       >       >       >     >             >       > What kind of information do you need to consult me in this case ?
>       >       >       >     >             >       >
>       >       >       >     >             >       > Maybe modules sizes/addresses which were mentioned by @Julien Grall
>       >       <mailto:julien@xen.org
>       >       >       <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> ?
>       >       >       >     >             >
>       >       >       >     >             >       Sorry for jumping into discussion, but FWICS the Xen command line you provided
>       seems to be
>       >       not the
>       >       >       one
>       >       >       >     >             >       Xen booted with. The error you are observing most likely is due to dom0 colors
>       >       configuration not
>       >       >       being
>       >       >       >     >             >       specified (i.e. lack of dom0_colors=<> parameter). Although in the command line you
>       >       provided, this
>       >       >       parameter
>       >       >       >     >             >       is set, I strongly doubt that this is the actual command line in use.
>       >       >       >     >             >
>       >       >       >     >             >       You wrote:
>       >       >       >     >             >       xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
>       >       dom0_vcpus_pin
>       >       >       bootscrub=0 vwfi=native
>       >       >       >     >             >       sched=null timer_slop=0 way_szize=65536 xen_colors=0-3 dom0_colors=4-7";
>       >       >       >     >             >
>       >       >       >     >             >       but:
>       >       >       >     >             >       1) way_szize has a typo
>       >       >       >     >             >       2) you specified 4 colors (0-3) for Xen, but the boot log says that Xen has only
>       one:
>       >       >       >     >             >       (XEN) Xen color(s): [ 0 ]
>       >       >       >     >             >
>       >       >       >     >             >       This makes me believe that no colors configuration actually end up in command line
>       that Xen
>       >       booted
>       >       >       with.
>       >       >       >     >             >       Single color for Xen is a "default if not specified" and way size was probably
>       calculated
>       >       by asking
>       >       >       HW.
>       >       >       >     >             >
>       >       >       >     >             >       So I would suggest to first cross-check the command line in use.
>       >       >       >     >             >
>       >       >       >     >             >       ~Michal
>       >       >       >     >             >
>       >       >       >     >             >
>       >       >       >     >             >       >
>       >       >       >     >             >       > Regards,
>       >       >       >     >             >       > Oleg
>       >       >       >     >             >       >
>       >       >       >     >             >       > вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini <sstabellini@kernel.org
>       >       >       <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>       >       <mailto:sstabellini@kernel.org
>       >       >       <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
>       >       >       >     >             >       >
>       >       >       >     >             >       >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
>       >       >       >     >             >       >     > Hi Julien,
>       >       >       >     >             >       >     >
>       >       >       >     >             >       >     > >> This feature has not been merged in Xen upstream yet
>       >       >       >     >             >       >     >
>       >       >       >     >             >       >     > > would assume that upstream + the series on the ML [1] work
>       >       >       >     >             >       >     >
>       >       >       >     >             >       >     > Please clarify this point.
>       >       >       >     >             >       >     > Because the two thoughts are controversial.
>       >       >       >     >             >       >
>       >       >       >     >             >       >     Hi Oleg,
>       >       >       >     >             >       >
>       >       >       >     >             >       >     As Julien wrote, there is nothing controversial. As you are aware,
>       >       >       >     >             >       >     Xilinx maintains a separate Xen tree specific for Xilinx here:
>       >       >       >     >             >       >     https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>       >       <https://github.com/xilinx/xen
>       >       >       <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>       >       <https://github.com/xilinx/xen
>       >       >       <https://github.com/xilinx/xen>>>
>       >       >       >     >             >       >
>       >       >       >     >             >       >     and the branch you are using (xlnx_rebase_4.16) comes from there.
>       >       >       >     >             >       >
>       >       >       >     >             >       >
>       >       >       >     >             >       >     Instead, the upstream Xen tree lives here:
>       >       >       >     >             >       >     https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>       >       >       >     >             >       >
>       >       >       >     >             >       >
>       >       >       >     >             >       >     The Cache Coloring feature that you are trying to configure is present
>       >       >       >     >             >       >     in xlnx_rebase_4.16, but not yet present upstream (there is an
>       >       >       >     >             >       >     outstanding patch series to add cache coloring to Xen upstream but it
>       >       >       >     >             >       >     hasn't been merged yet.)
>       >       >       >     >             >       >
>       >       >       >     >             >       >
>       >       >       >     >             >       >     Anyway, if you are using xlnx_rebase_4.16 it doesn't matter too much for
>       >       >       >     >             >       >     you as you already have Cache Coloring as a feature there.
>       >       >       >     >             >       >
>       >       >       >     >             >       >
>       >       >       >     >             >       >     I take you are using ImageBuilder to generate the boot configuration? If
>       >       >       >     >             >       >     so, please post the ImageBuilder config file that you are using.
>       >       >       >     >             >       >
>       >       >       >     >             >       >     But from the boot message, it looks like the colors configuration for
>       >       >       >     >             >       >     Dom0 is incorrect.
>       >       >       >     >             >       >
>       >       >       >     >             >
>       >       >       >     >             >
>       >       >       >     >             >
>       >       >       >     >
>       >       >       >
>       >       >
>       >       >
>       >       >
>       >
>       >
>       >
> 
> 
> 

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-04-25 18:20  0%                                 ` Stefano Stabellini
@ 2023-04-27  6:46  0%                                   ` Oleg Nikitenko
  2023-04-27 21:51  0%                                     ` Stefano Stabellini
  0 siblings, 1 reply; 200+ results
From: Oleg Nikitenko @ 2023-04-27  6:46 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: Michal Orzel, Julien Grall, xen-devel, Bertrand Marquis,
	Carlo Nonato, Stewart.Hildebrand

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

Hello Stefano,

Thanks for clarification.
We nighter use ImageBuilder nor uboot boot script.
A model is zcu102 compatible.

Regards,
O.

вт, 25 апр. 2023 г. в 21:21, Stefano Stabellini <sstabellini@kernel.org>:

> This is interesting. Are you using Xilinx hardware by any chance? If so,
> which board?
>
> Are you using ImageBuilder to generate your boot.scr boot script? If so,
> could you please post your ImageBuilder config file? If not, can you
> post the source of your uboot boot script?
>
> SErrors are supposed to be related to a hardware failure of some kind.
> You are not supposed to be able to trigger an SError easily by
> "mistake". I have not seen SErrors due to wrong cache coloring
> configurations on any Xilinx board before.
>
> The differences between Xen with and without cache coloring from a
> hardware perspective are:
>
> - With cache coloring, the SMMU is enabled and does address translations
>   even for dom0. Without cache coloring the SMMU could be disabled, and
>   if enabled, the SMMU doesn't do any address translations for Dom0. If
>   there is a hardware failure related to SMMU address translation it
>   could only trigger with cache coloring. This would be my normal
>   suggestion for you to explore, but the failure happens too early
>   before any DMA-capable device is programmed. So I don't think this can
>   be the issue.
>
> - With cache coloring, the memory allocation is very different so you'll
>   end up using different DDR regions for Dom0. So if your DDR is
>   defective, you might only see a failure with cache coloring enabled
>   because you end up using different regions.
>
>
> On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
> > Hi Stefano,
> >
> > Thank you.
> > If I build xen without colors support there is not this error.
> > All the domains are booted well.
> > Hense it can not be a hardware issue.
> > This panic arrived during unpacking the rootfs.
> > Here I attached the boot log xen/Dom0 without color.
> > A highlighted strings printed exactly after the place where 1-st time
> panic arrived.
> >
> >  Xen 4.16.1-pre
> > (XEN) Xen version 4.16.1-pre (nole2390@(none))
> (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y 2023-04-21
> > (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300
> git:321687b231-dirty
> > (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
> > (XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0, part
> 0xd03,rev 0x4
> > (XEN) 64-bit Execution:
> > (XEN)   Processor Features: 0000000000002222 0000000000000000
> > (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
> > (XEN)     Extensions: FloatingPoint AdvancedSIMD
> > (XEN)   Debug Features: 0000000010305106 0000000000000000
> > (XEN)   Auxiliary Features: 0000000000000000 0000000000000000
> > (XEN)   Memory Model Features: 0000000000001122 0000000000000000
> > (XEN)   ISA Features:  0000000000011120 0000000000000000
> > (XEN) 32-bit Execution:
> > (XEN)   Processor Features: 0000000000000131:0000000000011011
> > (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
> > (XEN)     Extensions: GenericTimer Security
> > (XEN)   Debug Features: 0000000003010066
> > (XEN)   Auxiliary Features: 0000000000000000
> > (XEN)   Memory Model Features: 0000000010201105 0000000040000000
> > (XEN)                          0000000001260000 0000000002102211
> > (XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
> > (XEN)                 0000000001112131 0000000000011142 0000000000011121
> > (XEN) Using SMC Calling Convention v1.2
> > (XEN) Using PSCI v1.1
> > (XEN) SMP: Allowing 4 CPUs
> > (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
> > (XEN) GICv2 initialization:
> > (XEN)         gic_dist_addr=00000000f9010000
> > (XEN)         gic_cpu_addr=00000000f9020000
> > (XEN)         gic_hyp_addr=00000000f9040000
> > (XEN)         gic_vcpu_addr=00000000f9060000
> > (XEN)         gic_maintenance_irq=25
> > (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
> > (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
> > (XEN) Using scheduler: null Scheduler (null)
> > (XEN) Initializing null scheduler
> > (XEN) WARNING: This is experimental software in development.
> > (XEN) Use at your own risk.
> > (XEN) Allocated console ring of 32 KiB.
> > (XEN) CPU0: Guest atomics will try 12 times before pausing the domain
> > (XEN) Bringing up CPU1
> > (XEN) CPU1: Guest atomics will try 13 times before pausing the domain
> > (XEN) CPU 1 booted.
> > (XEN) Bringing up CPU2
> > (XEN) CPU2: Guest atomics will try 13 times before pausing the domain
> > (XEN) CPU 2 booted.
> > (XEN) Bringing up CPU3
> > (XEN) CPU3: Guest atomics will try 13 times before pausing the domain
> > (XEN) Brought up 4 CPUs
> > (XEN) CPU 3 booted.
> > (XEN) smmu: /axi/smmu@fd800000: probing hardware configuration...
> > (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
> > (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
> > (XEN) smmu: /axi/smmu@fd800000: stream matching with 48 register
> groups, mask 0x7fff<2>smmu: /axi/smmu@fd800000: 16 context banks (0
> > stage-2 only)
> > (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
> > (XEN) smmu: /axi/smmu@fd800000: registered 29 master devices
> > (XEN) I/O virtualisation enabled
> > (XEN)  - Dom0 mode: Relaxed
> > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
> > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
> > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
> > (XEN) alternatives: Patching with alt table 00000000002cc5c8 ->
> 00000000002ccb2c
> > (XEN) *** LOADING DOMAIN 0 ***
> > (XEN) Loading d0 kernel from boot module @ 0000000001000000
> > (XEN) Loading ramdisk from boot module @ 0000000002000000
> > (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
> > (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
> > (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
> > (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
> > (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
> > (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
> > (XEN) Allocating PPI 16 for event channel interrupt
> > (XEN) Extended region 0: 0x81200000->0xa0000000
> > (XEN) Extended region 1: 0xb1200000->0xc0000000
> > (XEN) Extended region 2: 0xc8000000->0xe0000000
> > (XEN) Extended region 3: 0xf0000000->0xf9000000
> > (XEN) Extended region 4: 0x100000000->0x600000000
> > (XEN) Extended region 5: 0x880000000->0x8000000000
> > (XEN) Extended region 6: 0x8001000000->0x10000000000
> > (XEN) Loading zImage from 0000000001000000 to
> 0000000010000000-0000000010e41008
> > (XEN) Loading d0 initrd from 0000000002000000 to
> 0x0000000013600000-0x000000001ff3a617
> > (XEN) Loading d0 DTB to 0x0000000013400000-0x000000001340cbdc
> > (XEN) Initial low memory virq threshold set at 0x4000 pages.
> > (XEN) Std. Loglevel: All
> > (XEN) Guest Loglevel: All
> > (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch
> input)
> > (XEN) null.c:353: 0 <-- d0v0
> > (XEN) Freed 356kB init memory.
> > (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
> > (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
> > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
> > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
> > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
> > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
> > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
> > (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
> > [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
> > [    0.000000] Linux version 5.15.72-xilinx-v2022.1 (oe-user@oe-host)
> (aarch64-portable-linux-gcc (GCC) 11.3.0, GNU ld (GNU Binutils)
> > 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
> > [    0.000000] Machine model: D14 Viper Board - White Unit
> > [    0.000000] Xen 4.16 support found
> > [    0.000000] Zone ranges:
> > [    0.000000]   DMA      [mem 0x0000000010000000-0x000000007fffffff]
> > [    0.000000]   DMA32    empty
> > [    0.000000]   Normal   empty
> > [    0.000000] Movable zone start for each node
> > [    0.000000] Early memory node ranges
> > [    0.000000]   node   0: [mem 0x0000000010000000-0x000000001fffffff]
> > [    0.000000]   node   0: [mem 0x0000000022000000-0x0000000022147fff]
> > [    0.000000]   node   0: [mem 0x0000000022200000-0x0000000022347fff]
> > [    0.000000]   node   0: [mem 0x0000000024000000-0x0000000027ffffff]
> > [    0.000000]   node   0: [mem 0x0000000030000000-0x000000007fffffff]
> > [    0.000000] Initmem setup node 0 [mem
> 0x0000000010000000-0x000000007fffffff]
> > [    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
> > [    0.000000] On node 0, zone DMA: 184 pages in unavailable ranges
> > [    0.000000] On node 0, zone DMA: 7352 pages in unavailable ranges
> > [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
> > [    0.000000] psci: probing for conduit method from DT.
> > [    0.000000] psci: PSCIv1.1 detected in firmware.
> > [    0.000000] psci: Using standard PSCI v0.2 function IDs
> > [    0.000000] psci: Trusted OS migration not required
> > [    0.000000] psci: SMC Calling Convention v1.1
> > [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0 d32744 u65536
> > [    0.000000] Detected VIPT I-cache on CPU0
> > [    0.000000] CPU features: kernel page table isolation forced ON by
> KASLR
> > [    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
> > [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages:
> 403845
> > [    0.000000] Kernel command line: console=hvc0 earlycon=xen
> earlyprintk=xen clk_ignore_unused fips=1 root=/dev/ram0 maxcpus=2
> > [    0.000000] Unknown kernel command line parameters "earlyprintk=xen
> fips=1", will be passed to user space.
> > [    0.000000] Dentry cache hash table entries: 262144 (order: 9,
> 2097152 bytes, linear)
> > [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576
> bytes, linear)
> > [    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:on
> > [    0.000000] mem auto-init: clearing system memory may take some
> time...
> > [    0.000000] Memory: 1121936K/1641024K available (9728K kernel code,
> 836K rwdata, 2396K rodata, 1536K init, 262K bss, 256944K reserved,
> > 262144K cma-reserved)
> > [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
> > [    0.000000] rcu: Hierarchical RCU implementation.
> > [    0.000000] rcu: RCU event tracing is enabled.
> > [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
> > [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay
> is 25 jiffies.
> > [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16,
> nr_cpu_ids=2
> > [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
> > [    0.000000] Root IRQ handler: gic_handle_irq
> > [    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (virt).
> > [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff
> max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
> > [    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps
> every 4398046511100ns
> > [    0.000258] Console: colour dummy device 80x25
> > [    0.310231] printk: console [hvc0] enabled
> > [    0.314403] Calibrating delay loop (skipped), value calculated using
> timer frequency.. 200.00 BogoMIPS (lpj=400000)
> > [    0.324851] pid_max: default: 32768 minimum: 301
> > [    0.329706] LSM: Security Framework initializing
> > [    0.334204] Yama: becoming mindful.
> > [    0.337865] Mount-cache hash table entries: 4096 (order: 3, 32768
> bytes, linear)
> > [    0.345180] Mountpoint-cache hash table entries: 4096 (order: 3,
> 32768 bytes, linear)
> > [    0.354743] xen:grant_table: Grant tables using version 1 layout
> > [    0.359132] Grant table initialized
> > [    0.362664] xen:events: Using FIFO-based ABI
> > [    0.366993] Xen: initializing cpu0
> > [    0.370515] rcu: Hierarchical SRCU implementation.
> > [    0.375930] smp: Bringing up secondary CPUs ...
> > (XEN) null.c:353: 1 <-- d0v1
> > (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
> > [    0.382549] Detected VIPT I-cache on CPU1
> > [    0.388712] Xen: initializing cpu1
> > [    0.388743] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
> > [    0.388829] smp: Brought up 1 node, 2 CPUs
> > [    0.406941] SMP: Total of 2 processors activated.
> > [    0.411698] CPU features: detected: 32-bit EL0 Support
> > [    0.416888] CPU features: detected: CRC32 instructions
> > [    0.422121] CPU: All CPU(s) started at EL1
> > [    0.426248] alternatives: patching kernel code
> > [    0.431424] devtmpfs: initialized
> > [    0.441454] KASLR enabled
> > [    0.441602] clocksource: jiffies: mask: 0xffffffff max_cycles:
> 0xffffffff, max_idle_ns: 7645041785100000 ns
> > [    0.448321] futex hash table entries: 512 (order: 3, 32768 bytes,
> linear)
> > [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE protocol family
> > [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic
> allocations
> > [    0.503772] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for
> atomic allocations
> > [    0.511610] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for
> atomic allocations
> > [    0.519478] audit: initializing netlink subsys (disabled)
> > [    0.524985] audit: type=2000 audit(0.336:1): state=initialized
> audit_enabled=0 res=1
> > [    0.529169] thermal_sys: Registered thermal governor 'step_wise'
> > [    0.533023] hw-breakpoint: found 6 breakpoint and 4 watchpoint
> registers.
> > [    0.545608] ASID allocator initialised with 32768 entries
> > [    0.551030] xen:swiotlb_xen: Warning: only able to allocate 4 MB for
> software IO TLB
> > [    0.559332] software IO TLB: mapped [mem
> 0x0000000011800000-0x0000000011c00000] (4MB)
> > [    0.583565] HugeTLB registered 1.00 GiB page size, pre-allocated 0
> pages
> > [    0.584721] HugeTLB registered 32.0 MiB page size, pre-allocated 0
> pages
> > [    0.591478] HugeTLB registered 2.00 MiB page size, pre-allocated 0
> pages
> > [    0.598225] HugeTLB registered 64.0 KiB page size, pre-allocated 0
> pages
> > [    0.636520] DRBG: Continuing without Jitter RNG
> > [    0.737187] raid6: neonx8   gen()  2143 MB/s
> > [    0.805294] raid6: neonx8   xor()  1589 MB/s
> > [    0.873406] raid6: neonx4   gen()  2177 MB/s
> > [    0.941499] raid6: neonx4   xor()  1556 MB/s
> > [    1.009612] raid6: neonx2   gen()  2072 MB/s
> > [    1.077715] raid6: neonx2   xor()  1430 MB/s
> > [    1.145834] raid6: neonx1   gen()  1769 MB/s
> > [    1.213935] raid6: neonx1   xor()  1214 MB/s
> > [    1.282046] raid6: int64x8  gen()  1366 MB/s
> > [    1.350132] raid6: int64x8  xor()   773 MB/s
> > [    1.418259] raid6: int64x4  gen()  1602 MB/s
> > [    1.486349] raid6: int64x4  xor()   851 MB/s
> > [    1.554464] raid6: int64x2  gen()  1396 MB/s
> > [    1.622561] raid6: int64x2  xor()   744 MB/s
> > [    1.690687] raid6: int64x1  gen()  1033 MB/s
> > [    1.758770] raid6: int64x1  xor()   517 MB/s
> > [    1.758809] raid6: using algorithm neonx4 gen() 2177 MB/s
> > [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
> > [    1.767957] raid6: using neon recovery algorithm
> > [    1.772824] xen:balloon: Initialising balloon driver
> > [    1.778021] iommu: Default domain type: Translated
> > [    1.782584] iommu: DMA domain TLB invalidation policy: strict mode
> > [    1.789149] SCSI subsystem initialized
> > [    1.792820] usbcore: registered new interface driver usbfs
> > [    1.798254] usbcore: registered new interface driver hub
> > [    1.803626] usbcore: registered new device driver usb
> > [    1.808761] pps_core: LinuxPPS API ver. 1 registered
> > [    1.813716] pps_core: Software ver. 5.3.6 - Copyright 2005-2007
> Rodolfo Giometti <giometti@linux.it>
> > [    1.822903] PTP clock support registered
> > [    1.826893] EDAC MC: Ver: 3.0.0
> > [    1.830375] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI
> mbox with TX/RX channels.
> > [    1.838863] zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI
> mbox with TX/RX channels.
> > [    1.847356] zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI
> mbox with TX/RX channels.
> > [    1.855907] FPGA manager framework
> > [    1.859952] clocksource: Switched to clocksource arch_sys_counter
> > [    1.871712] NET: Registered PF_INET protocol family
> > [    1.871838] IP idents hash table entries: 32768 (order: 6, 262144
> bytes, linear)
> > [    1.879392] tcp_listen_portaddr_hash hash table entries: 1024 (order:
> 2, 16384 bytes, linear)
> > [    1.887078] Table-perturb hash table entries: 65536 (order: 6, 262144
> bytes, linear)
> > [    1.894846] TCP established hash table entries: 16384 (order: 5,
> 131072 bytes, linear)
> > [    1.902900] TCP bind hash table entries: 16384 (order: 6, 262144
> bytes, linear)
> > [    1.910350] TCP: Hash tables configured (established 16384 bind 16384)
> > [    1.916778] UDP hash table entries: 1024 (order: 3, 32768 bytes,
> linear)
> > [    1.923509] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes,
> linear)
> > [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol family
> > [    1.936834] RPC: Registered named UNIX socket transport module.
> > [    1.942342] RPC: Registered udp transport module.
> > [    1.947088] RPC: Registered tcp transport module.
> > [    1.951843] RPC: Registered tcp NFSv4.1 backchannel transport module.
> > [    1.958334] PCI: CLS 0 bytes, default 64
> > [    1.962709] Trying to unpack rootfs image as initramfs...
> > [    1.977090] workingset: timestamp_bits=62 max_order=19 bucket_order=0
> > [    1.982863] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
> > [    2.021045] NET: Registered PF_ALG protocol family
> > [    2.021122] xor: measuring software checksum speed
> > [    2.029347]    8regs           :  2366 MB/sec
> > [    2.033081]    32regs          :  2802 MB/sec
> > [    2.038223]    arm64_neon      :  2320 MB/sec
> > [    2.038385] xor: using function: 32regs (2802 MB/sec)
> > [    2.043614] Block layer SCSI generic (bsg) driver version 0.4 loaded
> (major 247)
> > [    2.050959] io scheduler mq-deadline registered
> > [    2.055521] io scheduler kyber registered
> > [    2.068227] xen:xen_evtchn: Event-channel device installed
> > [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
> > [    2.076190] cacheinfo: Unable to detect cache hierarchy for CPU 0
> > [    2.085548] brd: module loaded
> > [    2.089290] loop: module loaded
> > [    2.089341] Invalid max_queues (4), will use default max: 2.
> > [    2.094565] tun: Universal TUN/TAP device driver, 1.6
> > [    2.098655] xen_netfront: Initialising Xen virtual ethernet driver
> > [    2.104156] usbcore: registered new interface driver rtl8150
> > [    2.109813] usbcore: registered new interface driver r8152
> > [    2.115367] usbcore: registered new interface driver asix
> > [    2.120794] usbcore: registered new interface driver ax88179_178a
> > [    2.126934] usbcore: registered new interface driver cdc_ether
> > [    2.132816] usbcore: registered new interface driver cdc_eem
> > [    2.138527] usbcore: registered new interface driver net1080
> > [    2.144256] usbcore: registered new interface driver cdc_subset
> > [    2.150205] usbcore: registered new interface driver zaurus
> > [    2.155837] usbcore: registered new interface driver cdc_ncm
> > [    2.161550] usbcore: registered new interface driver r8153_ecm
> > [    2.168240] usbcore: registered new interface driver cdc_acm
> > [    2.173109] cdc_acm: USB Abstract Control Model driver for USB modems
> and ISDN adapters
> > [    2.181358] usbcore: registered new interface driver uas
> > [    2.186547] usbcore: registered new interface driver usb-storage
> > [    2.192643] usbcore: registered new interface driver ftdi_sio
> > [    2.198384] usbserial: USB Serial support registered for FTDI USB
> Serial Device
> > [    2.206118] udc-core: couldn't find an available UDC - added
> [g_mass_storage] to list of pending drivers
> > [    2.215332] i2c_dev: i2c /dev entries driver
> > [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)
> > [    2.225923] device-mapper: uevent: version 1.0.3
> > [    2.230668] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22)
> initialised: dm-devel@redhat.com
> > [    2.239315] EDAC MC0: Giving out device to module 1 controller
> synps_ddr_controller: DEV synps_edac (INTERRUPT)
> > [    2.249405] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac
> controller zynqmp_ocm: DEV ff960000.memory-controller (INTERRUPT)
> > [    2.261719] sdhci: Secure Digital Host Controller Interface driver
> > [    2.267487] sdhci: Copyright(c) Pierre Ossman
> > [    2.271890] sdhci-pltfm: SDHCI platform and OF driver helper
> > [    2.278157] ledtrig-cpu: registered to indicate activity on CPUs
> > [    2.283816] zynqmp_firmware_probe Platform Management API v1.1
> > [    2.289554] zynqmp_firmware_probe Trustzone version v1.0
> > [    2.327875] securefw securefw: securefw probed
> > [    2.328324] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
> > [    2.332563] zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes: AES
> Successfully Registered
> > [    2.341183] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
> > [    2.347667] remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is available
> > [    2.353003] remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is available
> > [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
> > [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen Proxy
> registered
> > [    2.372525] viper-vdpp a4000000.vdpp: Device Tree Probing
> > [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info:
> 1.512.15.0 KeyLen: 32
> > [    2.386432] viper-vdpp a4000000.vdpp: Unable to register tamper
> handler. Retrying...
> > [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
> > [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device registered
> > [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
> > [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI
> Count: 512 Event Count: 32
> > [    2.420856] default preset
> > [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device registered
> > [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
> > [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device registered
> > [    2.441976] vmcu driver init
> > [    2.444922] VMCU: : (240:0) registered
> > [    2.444956] In K81 Updater init
> > [    2.449003] pktgen: Packet Generator for packet performance testing.
> Version: 2.75
> > [    2.468833] Initializing XFRM netlink socket
> > [    2.468902] NET: Registered PF_PACKET protocol family
> > [    2.472729] Bridge firewalling registered
> > [    2.476785] 8021q: 802.1Q VLAN Support v1.8
> > [    2.481341] registered taskstats version 1
> > [    2.486394] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
> > [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36,
> base_baud = 6250000) is a xuartps
> > [    2.507103] of-fpga-region fpga-full: FPGA Region probed
> > [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA
> driver Probe success
> > [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA
> driver Probe success
> > [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA
> driver Probe success
> > [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA
> driver Probe success
> > [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA
> driver Probe success
> > [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA
> driver Probe success
> > [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA
> driver Probe success
> > [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA
> driver Probe success
> > [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA
> driver Probe success
> > [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA
> driver Probe success
> > [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
> > [    2.946467] 2 fixed-partitions partitions found on MTD device spi0.0
> > [    2.952393] Creating 2 MTD partitions on "spi0.0":
> > [    2.957231] 0x000004000000-0x000008000000 : "bank A"
> > [    2.963332] 0x000000000000-0x000004000000 : "bank B"
> > [    2.968694] macb ff0b0000.ethernet: Not enabling partial store and
> forward
> > [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106
> at 0xff0b0000 irq 25 (18:41:fe:0f:ff:02)
> > [    2.984472] macb ff0c0000.ethernet: Not enabling partial store and
> forward
> > [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106
> at 0xff0c0000 irq 26 (18:41:fe:0f:ff:03)
> > [    3.001043] viper_enet viper_enet: Viper power GPIOs initialised
> > [    3.007313] viper_enet viper_enet vnet0 (uninitialized): Validate
> interface QSGMII
> > [    3.014914] viper_enet viper_enet vnet1 (uninitialized): Validate
> interface QSGMII
> > [    3.022138] viper_enet viper_enet vnet1 (uninitialized): Validate
> interface type 18
> > [    3.030274] viper_enet viper_enet vnet2 (uninitialized): Validate
> interface QSGMII
> > [    3.037785] viper_enet viper_enet vnet3 (uninitialized): Validate
> interface QSGMII
> > [    3.045301] viper_enet viper_enet: Viper enet registered
> > [    3.050958] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
> > [    3.057135] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
> > [    3.063538] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
> > [    3.069920] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
> > [    3.097729] si70xx: probe of 2-0040 failed with error -5
> > [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with
> timeout 60s
> > [    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with
> timeout 10s
> > [    3.112457] viper-tamper viper-tamper: Device registered
> > [    3.117593] active_bank active_bank: boot bank: 1
> > [    3.122184] active_bank active_bank: boot mode: (0x02) qspi32
> > [    3.128247] viper-vdpp a4000000.vdpp: Device Tree Probing
> > [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info:
> 1.512.15.0 KeyLen: 32
> > [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler registered
> > [    3.147438] viper-vdpp a4000000.vdpp: Device registered
> > [    3.153007] lpc55_l2 spi1.0: registered handler for protocol 0
> > [    3.158582] lpc55_user lpc55_user: The major number for your device
> is 236
> > [    3.165976] lpc55_l2 spi1.0: registered handler for protocol 1
> > [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> > [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
> > [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
> > [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
> > [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
> > [    3.202932] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc]
> using ADMA 64-bit
> > [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
> > [    3.215694] lpc55_l2 spi1.0: rx error: -110
> > [    3.284438] mmc0: new HS200 MMC card at address 0001
> > [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
> > [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
> > [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
> > [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
> > [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
> > [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> > [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to read the hardware
> clock
> > [    3.591252] cdns-i2c ff020000.i2c: recovery information complete
> > [    3.597085] at24 0-0050: supply vcc not found, using dummy regulator
> > [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
> > [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
> > [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
> > [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
> > [    3.624224] rtc-rv3028 0-0052: registered as rtc1
> > [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
> > [    3.633253] lpc55_l2 spi1.0: rx error: -110
> > [    3.639104] k81_bootloader 0-0010: probe
> > [    3.641628] VMCU: : (235:0) registered
> > [    3.641635] k81_bootloader 0-0010: probe completed
> > [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 28
> > [    3.669154] cdns-i2c ff030000.i2c: recovery information complete
> > [    3.675412] lm75 1-0048: supply vs not found, using dummy regulator
> > [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
> > [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
> > [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
> > [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
> > [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
> > [    3.705157] pca954x 1-0070: registered 4 multiplexed busses for I2C
> switch pca9546
> > [    3.713049] at24 1-0054: supply vcc not found, using dummy regulator
> > [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM, read-only
> > [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq 29
> > [    3.731272] sfp viper_enet:sfp-eth1: Host maximum power 2.0W
> > [    3.737549] sfp_register_socket: got sfp_bus
> > [    3.740709] sfp_register_socket: register sfp_bus
> > [    3.745459] sfp_register_bus: ops ok!
> > [    3.749179] sfp_register_bus: Try to attach
> > [    3.753419] sfp_register_bus: Attach succeeded
> > [    3.757914] sfp_register_bus: upstream ops attach
> > [    3.762677] sfp_register_bus: Bus registered
> > [    3.766999] sfp_register_socket: register sfp_bus succeeded
> > [    3.775870] of_cfs_init
> > [    3.776000] of_cfs_init: OK
> > [    3.778211] clk: Not disabling unused clocks
> > [   11.278477] Freeing initrd memory: 206056K
> > [   11.279406] Freeing unused kernel memory: 1536K
> > [   11.314006] Checked W+X mappings: passed, no W+X pages found
> > [   11.314142] Run /init as init process
> > INIT: version 3.01 booting
> > fsck (busybox 1.35.0)
> > /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600 blocks
> > /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600 blocks
> > /dev/mmcblk0p3 was not cleanly unmounted, check forced.
> > /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous), 663/16384 blocks
> > [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem without journal.
> Opts: (null). Quota mode: disabled.
> > Starting random number generator daemon.
> > [   11.580662] random: crng init done
> > Starting udev
> > [   11.613159] udevd[142]: starting version 3.2.10
> > [   11.620385] udevd[143]: starting eudev-3.2.10
> > [   11.704481] macb ff0b0000.ethernet control_red: renamed from eth0
> > [   11.720264] macb ff0c0000.ethernet control_black: renamed from eth1
> > [   12.063396] ip_local_port_range: prefer different parity for
> start/end values.
> > [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> > hwclock: RTC_RD_TIME: Invalid exchange
> > Mon Feb 27 08:40:53 UTC 2023
> > [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad result
> > hwclock: RTC_SET_TIME: Invalid exchange
> > [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> > Starting mcud
> > INIT: Entering runlevel: 5
> > Configuring network interfaces... done.
> > resetting network interface
> > [   12.718295] macb ff0b0000.ethernet control_red: PHY
> [ff0b0000.ethernet-ffffffff:02] driver [Xilinx PCS/PMA PHY] (irq=POLL)
> > [   12.723919] macb ff0b0000.ethernet control_red: configuring for
> phy/gmii link mode
> > [   12.732151] pps pps0: new PPS source ptp0
> > [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp clock
> registered.
> > [   12.745724] macb ff0c0000.ethernet control_black: PHY
> [ff0c0000.ethernet-ffffffff:01] driver [Xilinx PCS/PMA PHY] (irq=POLL)
> > [   12.753469] macb ff0c0000.ethernet control_black: configuring for
> phy/gmii link mode
> > [   12.761804] pps pps1: new PPS source ptp1
> > [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp clock
> registered.
> > Auto-negotiation: off
> > Auto-negotiation: off
> > [   16.828151] macb ff0b0000.ethernet control_red: unable to generate
> target frequency: 125000000 Hz
> > [   16.834553] macb ff0b0000.ethernet control_red: Link is Up -
> 1Gbps/Full - flow control off
> > [   16.860552] macb ff0c0000.ethernet control_black: unable to generate
> target frequency: 125000000 Hz
> > [   16.867052] macb ff0c0000.ethernet control_black: Link is Up -
> 1Gbps/Full - flow control off
> > Starting Failsafe Secure Shell server in port 2222: sshd
> > done.
> > Starting rpcbind daemon...done.
> >
> > [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> > hwclock: RTC_RD_TIME: Invalid exchange
> > Starting State Manager Service
> > Start state-manager restarter...
> > (XEN) d0v1 Forwarding AES operation: 3254779951
> > Starting /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid
> 80efc224-c202-4f8e-a949-4dae7f04a0aa devid 1 transid 744 /dev/dm-0
> > scanned by udevd (385)
> > [   17.349933] BTRFS info (device dm-0): disk space caching is enabled
> > [   17.350670] BTRFS info (device dm-0): has skinny extents
> > [   17.364384] BTRFS info (device dm-0): enabling ssd optimizations
> > [   17.830462] BTRFS: device fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e
> devid 1 transid 6 /dev/mapper/client_prov scanned by mkfs.btrfs
> > (526)
> > [   17.872699] BTRFS info (device dm-1): using free space tree
> > [   17.872771] BTRFS info (device dm-1): has skinny extents
> > [   17.878114] BTRFS info (device dm-1): flagging fs with big metadata
> feature
> > [   17.894289] BTRFS info (device dm-1): enabling ssd optimizations
> > [   17.895695] BTRFS info (device dm-1): checking UUID tree
> >
> > Setting domain 0 name, domid and JSON config...
> > Done setting up Dom0
> > Starting xenconsoled...
> > Starting QEMU as disk backend for dom0
> > Starting domain watchdog daemon: xenwatchdogd startup
> >
> > [   18.408647] BTRFS: device fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921
> devid 1 transid 6 /dev/mapper/client_config scanned by mkfs.btrfs
> > (574)
> > [done]
> > [   18.465552] BTRFS info (device dm-2): using free space tree
> > [   18.465629] BTRFS info (device dm-2): has skinny extents
> > [   18.471002] BTRFS info (device dm-2): flagging fs with big metadata
> feature
> > Starting crond: [   18.482371] BTRFS info (device dm-2): enabling ssd
> optimizations
> > [   18.486659] BTRFS info (device dm-2): checking UUID tree
> > OK
> > starting rsyslogd ... Log partition ready after 0 poll loops
> > done
> > rsyslogd: cannot connect to 172.18.0.1:514: Network is unreachable
> [v8.2208.0 try https://www.rsyslog.com/e/2027 ]
> > [   18.670637] BTRFS: device fsid 39d7d9e1-967d-478e-94ae-690deb722095
> devid 1 transid 608 /dev/dm-3 scanned by udevd (518)
> >
> > Please insert USB token and enter your role in login prompt.
> >
> > login:
> >
> > Regards,
> > O.
> >
> >
> > пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <sstabellini@kernel.org
> >:
> >       Hi Oleg,
> >
> >       Here is the issue from your logs:
> >
> >       SError Interrupt on CPU0, code 0xbe000000 -- SError
> >
> >       SErrors are special signals to notify software of serious hardware
> >       errors.  Something is going very wrong. Defective hardware is a
> >       possibility.  Another possibility if software accessing address
> ranges
> >       that it is not supposed to, sometimes it causes SErrors.
> >
> >       Cheers,
> >
> >       Stefano
> >
> >
> >
> >       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
> >
> >       > Hello,
> >       >
> >       > Thanks guys.
> >       > I found out where the problem was.
> >       > Now dom0 booted more. But I have a new one.
> >       > This is a kernel panic during Dom0 loading.
> >       > Maybe someone is able to suggest something ?
> >       >
> >       > Regards,
> >       > O.
> >       >
> >       > [    3.771362] sfp_register_bus: upstream ops attach
> >       > [    3.776119] sfp_register_bus: Bus registered
> >       > [    3.780459] sfp_register_socket: register sfp_bus succeeded
> >       > [    3.789399] of_cfs_init
> >       > [    3.789499] of_cfs_init: OK
> >       > [    3.791685] clk: Not disabling unused clocks
> >       > [   11.010355] SError Interrupt on CPU0, code 0xbe000000 --
> SError
> >       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted
> 5.15.72-xilinx-v2022.1 #1
> >       > [   11.010393] Workqueue: events_unbound async_run_entry_fn
> >       > [   11.010414] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT
> -SSBS BTYPE=--)
> >       > [   11.010422] pc : simple_write_end+0xd0/0x130
> >       > [   11.010431] lr : generic_perform_write+0x118/0x1e0
> >       > [   11.010438] sp : ffffffc00809b910
> >       > [   11.010441] x29: ffffffc00809b910 x28: 0000000000000000 x27:
> ffffffef69ba88c0
> >       > [   11.010451] x26: 0000000000003eec x25: ffffff807515db00 x24:
> 0000000000000000
> >       > [   11.010459] x23: ffffffc00809ba90 x22: 0000000002aac000 x21:
> ffffff807315a260
> >       > [   11.010472] x20: 0000000000001000 x19: fffffffe02000000 x18:
> 0000000000000000
> >       > [   11.010481] x17: 00000000ffffffff x16: 0000000000008000 x15:
> 0000000000000000
> >       > [   11.010490] x14: 0000000000000000 x13: 0000000000000000 x12:
> 0000000000000000
> >       > [   11.010498] x11: 0000000000000000 x10: 0000000000000000 x9 :
> 0000000000000000
> >       > [   11.010507] x8 : 0000000000000000 x7 : ffffffef693ba680 x6 :
> 000000002d89b700
> >       > [   11.010515] x5 : fffffffe02000000 x4 : ffffff807315a3c8 x3 :
> 0000000000001000
> >       > [   11.010524] x2 : 0000000002aab000 x1 : 0000000000000001 x0 :
> 0000000000000005
> >       > [   11.010534] Kernel panic - not syncing: Asynchronous SError
> Interrupt
> >       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted
> 5.15.72-xilinx-v2022.1 #1
> >       > [   11.010545] Hardware name: D14 Viper Board - White Unit (DT)
> >       > [   11.010548] Workqueue: events_unbound async_run_entry_fn
> >       > [   11.010556] Call trace:
> >       > [   11.010558]  dump_backtrace+0x0/0x1c4
> >       > [   11.010567]  show_stack+0x18/0x2c
> >       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
> >       > [   11.010583]  dump_stack+0x18/0x34
> >       > [   11.010588]  panic+0x14c/0x2f8
> >       > [   11.010597]  print_tainted+0x0/0xb0
> >       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
> >       > [   11.010614]  do_serror+0x28/0x60
> >       > [   11.010621]  el1h_64_error_handler+0x30/0x50
> >       > [   11.010628]  el1h_64_error+0x78/0x7c
> >       > [   11.010633]  simple_write_end+0xd0/0x130
> >       > [   11.010639]  generic_perform_write+0x118/0x1e0
> >       > [   11.010644]  __generic_file_write_iter+0x138/0x1c4
> >       > [   11.010650]  generic_file_write_iter+0x78/0xd0
> >       > [   11.010656]  __kernel_write+0xfc/0x2ac
> >       > [   11.010665]  kernel_write+0x88/0x160
> >       > [   11.010673]  xwrite+0x44/0x94
> >       > [   11.010680]  do_copy+0xa8/0x104
> >       > [   11.010686]  write_buffer+0x38/0x58
> >       > [   11.010692]  flush_buffer+0x4c/0xbc
> >       > [   11.010698]  __gunzip+0x280/0x310
> >       > [   11.010704]  gunzip+0x1c/0x28
> >       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
> >       > [   11.010715]  do_populate_rootfs+0x80/0x164
> >       > [   11.010722]  async_run_entry_fn+0x48/0x164
> >       > [   11.010728]  process_one_work+0x1e4/0x3a0
> >       > [   11.010736]  worker_thread+0x7c/0x4c0
> >       > [   11.010743]  kthread+0x120/0x130
> >       > [   11.010750]  ret_from_fork+0x10/0x20
> >       > [   11.010757] SMP: stopping secondary CPUs
> >       > [   11.010784] Kernel Offset: 0x2f61200000 from
> 0xffffffc008000000
> >       > [   11.010788] PHYS_OFFSET: 0x0
> >       > [   11.010790] CPU features: 0x00000401,00000842
> >       > [   11.010795] Memory Limit: none
> >       > [   11.277509] ---[ end Kernel panic - not syncing: Asynchronous
> SError Interrupt ]---
> >       >
> >       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <michal.orzel@amd.com
> >:
> >       >       Hi Oleg,
> >       >
> >       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
> >       >       >
> >       >       >
> >       >       >
> >       >       > Hello Michal,
> >       >       >
> >       >       > I was not able to enable earlyprintk in the xen for now.
> >       >       > I decided to choose another way.
> >       >       > This is a xen's command line that I found out completely.
> >       >       >
> >       >       > (XEN) $$$$ console=dtuart dtuart=serial0 dom0_mem=1600M
> dom0_max_vcpus=2 dom0_vcpus_pin bootscrub=0 vwfi=native
> >       sched=null
> >       >       timer_slop=0
> >       >       Yes, adding a printk() in Xen was also a good idea.
> >       >
> >       >       >
> >       >       > So you are absolutely right about a command line.
> >       >       > Now I am going to find out why xen did not have the
> correct parameters from the device tree.
> >       >       Maybe you will find this document helpful:
> >       >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >       >
> >       >       ~Michal
> >       >
> >       >       >
> >       >       > Regards,
> >       >       > Oleg
> >       >       >
> >       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
> >       >       >
> >       >       >
> >       >       >     On 21/04/2023 10:04, Oleg Nikitenko wrote:
> >       >       >     >
> >       >       >     >
> >       >       >     >
> >       >       >     > Hello Michal,
> >       >       >     >
> >       >       >     > Yes, I use yocto.
> >       >       >     >
> >       >       >     > Yesterday all day long I tried to follow your
> suggestions.
> >       >       >     > I faced a problem.
> >       >       >     > Manually in the xen config build file I pasted the
> strings:
> >       >       >     In the .config file or in some Yocto file (listing
> additional Kconfig options) added to SRC_URI?
> >       >       >     You shouldn't really modify .config file but if you
> do, you should execute "make olddefconfig" afterwards.
> >       >       >
> >       >       >     >
> >       >       >     > CONFIG_EARLY_PRINTK
> >       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
> >       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
> >       >       >     I hope you added =y to them.
> >       >       >
> >       >       >     Anyway, you have at least the following solutions:
> >       >       >     1) Run bitbake xen -c menuconfig to properly set
> early printk
> >       >       >     2) Find out how you enable other Kconfig options in
> your project (e.g. CONFIG_COLORING=y that is not enabled by
> >       default)
> >       >       >     3) Append the following to
> "xen/arch/arm/configs/arm64_defconfig":
> >       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
> >       >       >
> >       >       >     ~Michal
> >       >       >
> >       >       >     >
> >       >       >     > Host hangs in build time.
> >       >       >     > Maybe I did not set something in the config build
> file ?
> >       >       >     >
> >       >       >     > Regards,
> >       >       >     > Oleg
> >       >       >     >
> >       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg Nikitenko <
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >       >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>:
> >       >       >     >
> >       >       >     >     Thanks Michal,
> >       >       >     >
> >       >       >     >     You gave me an idea.
> >       >       >     >     I am going to try it today.
> >       >       >     >
> >       >       >     >     Regards,
> >       >       >     >     O.
> >       >       >     >
> >       >       >     >     чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >       >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>:
> >       >       >     >
> >       >       >     >         Thanks Stefano.
> >       >       >     >
> >       >       >     >         I am going to do it today.
> >       >       >     >
> >       >       >     >         Regards,
> >       >       >     >         O.
> >       >       >     >
> >       >       >     >         ср, 19 апр. 2023 г. в 23:05, Stefano
> Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> >       >       <mailto:sstabellini@kernel.org <mailto:
> sstabellini@kernel.org>>>:
> >       >       >     >
> >       >       >     >             On Wed, 19 Apr 2023, Oleg Nikitenko
> wrote:
> >       >       >     >             > Hi Michal,
> >       >       >     >             >
> >       >       >     >             > I corrected xen's command line.
> >       >       >     >             > Now it is
> >       >       >     >             > xen,xen-bootargs = "console=dtuart
> dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
> >       >       bootscrub=0 vwfi=native sched=null
> >       >       >     >             > timer_slop=0 way_size=65536
> xen_colors=0-3 dom0_colors=4-7";
> >       >       >     >
> >       >       >     >             4 colors is way too many for xen, just
> do xen_colors=0-0. There is no
> >       >       >     >             advantage in using more than 1 color
> for Xen.
> >       >       >     >
> >       >       >     >             4 colors is too few for dom0, if you
> are giving 1600M of memory to Dom0.
> >       >       >     >             Each color is 256M. For 1600M you
> should give at least 7 colors. Try:
> >       >       >     >
> >       >       >     >             xen_colors=0-0 dom0_colors=1-8
> >       >       >     >
> >       >       >     >
> >       >       >     >
> >       >       >     >             > Unfortunately the result was the
> same.
> >       >       >     >             >
> >       >       >     >             > (XEN)  - Dom0 mode: Relaxed
> >       >       >     >             > (XEN) P2M: 40-bit IPA with 40-bit PA
> and 8-bit VMID
> >       >       >     >             > (XEN) P2M: 3 levels with order-1
> root, VTCR 0x0000000080023558
> >       >       >     >             > (XEN) Scheduling granularity: cpu, 1
> CPU per sched-resource
> >       >       >     >             > (XEN) Coloring general information
> >       >       >     >             > (XEN) Way size: 64kB
> >       >       >     >             > (XEN) Max. number of colors
> available: 16
> >       >       >     >             > (XEN) Xen color(s): [ 0 ]
> >       >       >     >             > (XEN) alternatives: Patching with
> alt table 00000000002cc690 -> 00000000002ccc0c
> >       >       >     >             > (XEN) Color array allocation failed
> for dom0
> >       >       >     >             > (XEN)
> >       >       >     >             > (XEN)
> ****************************************
> >       >       >     >             > (XEN) Panic on CPU 0:
> >       >       >     >             > (XEN) Error creating domain 0
> >       >       >     >             > (XEN)
> ****************************************
> >       >       >     >             > (XEN)
> >       >       >     >             > (XEN) Reboot in five seconds...
> >       >       >     >             >
> >       >       >     >             > I am going to find out how command
> line arguments passed and parsed.
> >       >       >     >             >
> >       >       >     >             > Regards,
> >       >       >     >             > Oleg
> >       >       >     >             >
> >       >       >     >             > ср, 19 апр. 2023 г. в 11:25, Oleg
> Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >       >       <mailto:oleshiiwood@gmail.com <mailto:
> oleshiiwood@gmail.com>>>:
> >       >       >     >             >       Hi Michal,
> >       >       >     >             >
> >       >       >     >             > You put my nose into the problem.
> Thank you.
> >       >       >     >             > I am going to use your point.
> >       >       >     >             > Let's see what happens.
> >       >       >     >             >
> >       >       >     >             > Regards,
> >       >       >     >             > Oleg
> >       >       >     >             >
> >       >       >     >             >
> >       >       >     >             > ср, 19 апр. 2023 г. в 10:37, Michal
> Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>
> >       >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com
> >>>:
> >       >       >     >             >       Hi Oleg,
> >       >       >     >             >
> >       >       >     >             >       On 19/04/2023 09:03, Oleg
> Nikitenko wrote:
> >       >       >     >             >       >
> >       >       >     >             >       >
> >       >       >     >             >       >
> >       >       >     >             >       > Hello Stefano,
> >       >       >     >             >       >
> >       >       >     >             >       > Thanks for the clarification.
> >       >       >     >             >       > My company uses yocto for
> image generation.
> >       >       >     >             >       > What kind of information do
> you need to consult me in this case ?
> >       >       >     >             >       >
> >       >       >     >             >       > Maybe modules
> sizes/addresses which were mentioned by @Julien Grall
> >       <mailto:julien@xen.org
> >       >       <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>>> ?
> >       >       >     >             >
> >       >       >     >             >       Sorry for jumping into
> discussion, but FWICS the Xen command line you provided seems to be
> >       not the
> >       >       one
> >       >       >     >             >       Xen booted with. The error you
> are observing most likely is due to dom0 colors
> >       configuration not
> >       >       being
> >       >       >     >             >       specified (i.e. lack of
> dom0_colors=<> parameter). Although in the command line you
> >       provided, this
> >       >       parameter
> >       >       >     >             >       is set, I strongly doubt that
> this is the actual command line in use.
> >       >       >     >             >
> >       >       >     >             >       You wrote:
> >       >       >     >             >       xen,xen-bootargs =
> "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
> >       dom0_vcpus_pin
> >       >       bootscrub=0 vwfi=native
> >       >       >     >             >       sched=null timer_slop=0
> way_szize=65536 xen_colors=0-3 dom0_colors=4-7";
> >       >       >     >             >
> >       >       >     >             >       but:
> >       >       >     >             >       1) way_szize has a typo
> >       >       >     >             >       2) you specified 4 colors
> (0-3) for Xen, but the boot log says that Xen has only one:
> >       >       >     >             >       (XEN) Xen color(s): [ 0 ]
> >       >       >     >             >
> >       >       >     >             >       This makes me believe that no
> colors configuration actually end up in command line that Xen
> >       booted
> >       >       with.
> >       >       >     >             >       Single color for Xen is a
> "default if not specified" and way size was probably calculated
> >       by asking
> >       >       HW.
> >       >       >     >             >
> >       >       >     >             >       So I would suggest to first
> cross-check the command line in use.
> >       >       >     >             >
> >       >       >     >             >       ~Michal
> >       >       >     >             >
> >       >       >     >             >
> >       >       >     >             >       >
> >       >       >     >             >       > Regards,
> >       >       >     >             >       > Oleg
> >       >       >     >             >       >
> >       >       >     >             >       > вт, 18 апр. 2023 г. в 20:44,
> Stefano Stabellini <sstabellini@kernel.org
> >       >       <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
> >       <mailto:sstabellini@kernel.org
> >       >       <mailto:sstabellini@kernel.org> <mailto:
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
> >       >       >     >             >       >
> >       >       >     >             >       >     On Tue, 18 Apr 2023,
> Oleg Nikitenko wrote:
> >       >       >     >             >       >     > Hi Julien,
> >       >       >     >             >       >     >
> >       >       >     >             >       >     > >> This feature has
> not been merged in Xen upstream yet
> >       >       >     >             >       >     >
> >       >       >     >             >       >     > > would assume that
> upstream + the series on the ML [1] work
> >       >       >     >             >       >     >
> >       >       >     >             >       >     > Please clarify this
> point.
> >       >       >     >             >       >     > Because the two
> thoughts are controversial.
> >       >       >     >             >       >
> >       >       >     >             >       >     Hi Oleg,
> >       >       >     >             >       >
> >       >       >     >             >       >     As Julien wrote, there
> is nothing controversial. As you are aware,
> >       >       >     >             >       >     Xilinx maintains a
> separate Xen tree specific for Xilinx here:
> >       >       >     >             >       >
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>
> >       <https://github.com/xilinx/xen
> >       >       <https://github.com/xilinx/xen>> <
> https://github.com/xilinx/xen <https://github.com/xilinx/xen>
> >       <https://github.com/xilinx/xen
> >       >       <https://github.com/xilinx/xen>>>
> >       >       >     >             >       >
> >       >       >     >             >       >     and the branch you are
> using (xlnx_rebase_4.16) comes from there.
> >       >       >     >             >       >
> >       >       >     >             >       >
> >       >       >     >             >       >     Instead, the upstream
> Xen tree lives here:
> >       >       >     >             >       >
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >       >       >     >             >       >
> >       >       >     >             >       >
> >       >       >     >             >       >     The Cache Coloring
> feature that you are trying to configure is present
> >       >       >     >             >       >     in xlnx_rebase_4.16, but
> not yet present upstream (there is an
> >       >       >     >             >       >     outstanding patch series
> to add cache coloring to Xen upstream but it
> >       >       >     >             >       >     hasn't been merged yet.)
> >       >       >     >             >       >
> >       >       >     >             >       >
> >       >       >     >             >       >     Anyway, if you are using
> xlnx_rebase_4.16 it doesn't matter too much for
> >       >       >     >             >       >     you as you already have
> Cache Coloring as a feature there.
> >       >       >     >             >       >
> >       >       >     >             >       >
> >       >       >     >             >       >     I take you are using
> ImageBuilder to generate the boot configuration? If
> >       >       >     >             >       >     so, please post the
> ImageBuilder config file that you are using.
> >       >       >     >             >       >
> >       >       >     >             >       >     But from the boot
> message, it looks like the colors configuration for
> >       >       >     >             >       >     Dom0 is incorrect.
> >       >       >     >             >       >
> >       >       >     >             >
> >       >       >     >             >
> >       >       >     >             >
> >       >       >     >
> >       >       >
> >       >
> >       >
> >       >
> >
> >
> >

[-- Attachment #2: Type: text/html, Size: 74905 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  2023-04-25  7:33  4%                               ` Oleg Nikitenko
@ 2023-04-25 18:20  0%                                 ` Stefano Stabellini
  2023-04-27  6:46  0%                                   ` Oleg Nikitenko
  0 siblings, 1 reply; 200+ results
From: Stefano Stabellini @ 2023-04-25 18:20 UTC (permalink / raw)
  To: Oleg Nikitenko
  Cc: Stefano Stabellini, Michal Orzel, Julien Grall, xen-devel,
	Bertrand Marquis, Carlo Nonato, Stewart.Hildebrand

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

This is interesting. Are you using Xilinx hardware by any chance? If so,
which board?

Are you using ImageBuilder to generate your boot.scr boot script? If so,
could you please post your ImageBuilder config file? If not, can you
post the source of your uboot boot script?

SErrors are supposed to be related to a hardware failure of some kind.
You are not supposed to be able to trigger an SError easily by
"mistake". I have not seen SErrors due to wrong cache coloring
configurations on any Xilinx board before.

The differences between Xen with and without cache coloring from a
hardware perspective are:

- With cache coloring, the SMMU is enabled and does address translations
  even for dom0. Without cache coloring the SMMU could be disabled, and
  if enabled, the SMMU doesn't do any address translations for Dom0. If
  there is a hardware failure related to SMMU address translation it
  could only trigger with cache coloring. This would be my normal
  suggestion for you to explore, but the failure happens too early
  before any DMA-capable device is programmed. So I don't think this can
  be the issue.

- With cache coloring, the memory allocation is very different so you'll
  end up using different DDR regions for Dom0. So if your DDR is
  defective, you might only see a failure with cache coloring enabled
  because you end up using different regions.


On Tue, 25 Apr 2023, Oleg Nikitenko wrote:
> Hi Stefano,
> 
> Thank you.
> If I build xen without colors support there is not this error.
> All the domains are booted well.
> Hense it can not be a hardware issue.
> This panic arrived during unpacking the rootfs.
> Here I attached the boot log xen/Dom0 without color.
> A highlighted strings printed exactly after the place where 1-st time panic arrived.
> 
>  Xen 4.16.1-pre
> (XEN) Xen version 4.16.1-pre (nole2390@(none)) (aarch64-portable-linux-gcc (GCC) 11.3.0) debug=y 2023-04-21
> (XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300 git:321687b231-dirty
> (XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
> (XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0, part 0xd03,rev 0x4
> (XEN) 64-bit Execution:
> (XEN)   Processor Features: 0000000000002222 0000000000000000
> (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
> (XEN)     Extensions: FloatingPoint AdvancedSIMD
> (XEN)   Debug Features: 0000000010305106 0000000000000000
> (XEN)   Auxiliary Features: 0000000000000000 0000000000000000
> (XEN)   Memory Model Features: 0000000000001122 0000000000000000
> (XEN)   ISA Features:  0000000000011120 0000000000000000
> (XEN) 32-bit Execution:
> (XEN)   Processor Features: 0000000000000131:0000000000011011
> (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
> (XEN)     Extensions: GenericTimer Security
> (XEN)   Debug Features: 0000000003010066
> (XEN)   Auxiliary Features: 0000000000000000
> (XEN)   Memory Model Features: 0000000010201105 0000000040000000
> (XEN)                          0000000001260000 0000000002102211
> (XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
> (XEN)                 0000000001112131 0000000000011142 0000000000011121
> (XEN) Using SMC Calling Convention v1.2
> (XEN) Using PSCI v1.1
> (XEN) SMP: Allowing 4 CPUs
> (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
> (XEN) GICv2 initialization:
> (XEN)         gic_dist_addr=00000000f9010000
> (XEN)         gic_cpu_addr=00000000f9020000
> (XEN)         gic_hyp_addr=00000000f9040000
> (XEN)         gic_vcpu_addr=00000000f9060000
> (XEN)         gic_maintenance_irq=25
> (XEN) GICv2: Adjusting CPU interface base to 0xf902f000
> (XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
> (XEN) Using scheduler: null Scheduler (null)
> (XEN) Initializing null scheduler
> (XEN) WARNING: This is experimental software in development.
> (XEN) Use at your own risk.
> (XEN) Allocated console ring of 32 KiB.
> (XEN) CPU0: Guest atomics will try 12 times before pausing the domain
> (XEN) Bringing up CPU1
> (XEN) CPU1: Guest atomics will try 13 times before pausing the domain
> (XEN) CPU 1 booted.
> (XEN) Bringing up CPU2
> (XEN) CPU2: Guest atomics will try 13 times before pausing the domain
> (XEN) CPU 2 booted.
> (XEN) Bringing up CPU3
> (XEN) CPU3: Guest atomics will try 13 times before pausing the domain
> (XEN) Brought up 4 CPUs
> (XEN) CPU 3 booted.
> (XEN) smmu: /axi/smmu@fd800000: probing hardware configuration...
> (XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
> (XEN) smmu: /axi/smmu@fd800000: stage 2 translation
> (XEN) smmu: /axi/smmu@fd800000: stream matching with 48 register groups, mask 0x7fff<2>smmu: /axi/smmu@fd800000: 16 context banks (0
> stage-2 only)
> (XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
> (XEN) smmu: /axi/smmu@fd800000: registered 29 master devices
> (XEN) I/O virtualisation enabled
> (XEN)  - Dom0 mode: Relaxed
> (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
> (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
> (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
> (XEN) alternatives: Patching with alt table 00000000002cc5c8 -> 00000000002ccb2c
> (XEN) *** LOADING DOMAIN 0 ***
> (XEN) Loading d0 kernel from boot module @ 0000000001000000
> (XEN) Loading ramdisk from boot module @ 0000000002000000
> (XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
> (XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
> (XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
> (XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
> (XEN) Grant table range: 0x00000000e00000-0x00000000e40000
> (XEN) smmu: /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
> (XEN) Allocating PPI 16 for event channel interrupt
> (XEN) Extended region 0: 0x81200000->0xa0000000
> (XEN) Extended region 1: 0xb1200000->0xc0000000
> (XEN) Extended region 2: 0xc8000000->0xe0000000
> (XEN) Extended region 3: 0xf0000000->0xf9000000
> (XEN) Extended region 4: 0x100000000->0x600000000
> (XEN) Extended region 5: 0x880000000->0x8000000000
> (XEN) Extended region 6: 0x8001000000->0x10000000000
> (XEN) Loading zImage from 0000000001000000 to 0000000010000000-0000000010e41008
> (XEN) Loading d0 initrd from 0000000002000000 to 0x0000000013600000-0x000000001ff3a617
> (XEN) Loading d0 DTB to 0x0000000013400000-0x000000001340cbdc
> (XEN) Initial low memory virq threshold set at 0x4000 pages.
> (XEN) Std. Loglevel: All
> (XEN) Guest Loglevel: All
> (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
> (XEN) null.c:353: 0 <-- d0v0
> (XEN) Freed 356kB init memory.
> (XEN) d0v0 Unhandled SMC/HVC: 0x84000050
> (XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
> [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
> [    0.000000] Linux version 5.15.72-xilinx-v2022.1 (oe-user@oe-host) (aarch64-portable-linux-gcc (GCC) 11.3.0, GNU ld (GNU Binutils)
> 2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
> [    0.000000] Machine model: D14 Viper Board - White Unit
> [    0.000000] Xen 4.16 support found
> [    0.000000] Zone ranges:
> [    0.000000]   DMA      [mem 0x0000000010000000-0x000000007fffffff]
> [    0.000000]   DMA32    empty
> [    0.000000]   Normal   empty
> [    0.000000] Movable zone start for each node
> [    0.000000] Early memory node ranges
> [    0.000000]   node   0: [mem 0x0000000010000000-0x000000001fffffff]
> [    0.000000]   node   0: [mem 0x0000000022000000-0x0000000022147fff]
> [    0.000000]   node   0: [mem 0x0000000022200000-0x0000000022347fff]
> [    0.000000]   node   0: [mem 0x0000000024000000-0x0000000027ffffff]
> [    0.000000]   node   0: [mem 0x0000000030000000-0x000000007fffffff]
> [    0.000000] Initmem setup node 0 [mem 0x0000000010000000-0x000000007fffffff]
> [    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
> [    0.000000] On node 0, zone DMA: 184 pages in unavailable ranges
> [    0.000000] On node 0, zone DMA: 7352 pages in unavailable ranges
> [    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
> [    0.000000] psci: probing for conduit method from DT.
> [    0.000000] psci: PSCIv1.1 detected in firmware.
> [    0.000000] psci: Using standard PSCI v0.2 function IDs
> [    0.000000] psci: Trusted OS migration not required
> [    0.000000] psci: SMC Calling Convention v1.1
> [    0.000000] percpu: Embedded 16 pages/cpu s32792 r0 d32744 u65536
> [    0.000000] Detected VIPT I-cache on CPU0
> [    0.000000] CPU features: kernel page table isolation forced ON by KASLR
> [    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
> [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 403845
> [    0.000000] Kernel command line: console=hvc0 earlycon=xen earlyprintk=xen clk_ignore_unused fips=1 root=/dev/ram0 maxcpus=2
> [    0.000000] Unknown kernel command line parameters "earlyprintk=xen fips=1", will be passed to user space.
> [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
> [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
> [    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:on
> [    0.000000] mem auto-init: clearing system memory may take some time...
> [    0.000000] Memory: 1121936K/1641024K available (9728K kernel code, 836K rwdata, 2396K rodata, 1536K init, 262K bss, 256944K reserved,
> 262144K cma-reserved)
> [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
> [    0.000000] rcu: Hierarchical RCU implementation.
> [    0.000000] rcu: RCU event tracing is enabled.
> [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
> [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
> [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
> [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
> [    0.000000] Root IRQ handler: gic_handle_irq
> [    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (virt).
> [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
> [    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every 4398046511100ns
> [    0.000258] Console: colour dummy device 80x25
> [    0.310231] printk: console [hvc0] enabled
> [    0.314403] Calibrating delay loop (skipped), value calculated using timer frequency.. 200.00 BogoMIPS (lpj=400000)
> [    0.324851] pid_max: default: 32768 minimum: 301
> [    0.329706] LSM: Security Framework initializing
> [    0.334204] Yama: becoming mindful.
> [    0.337865] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
> [    0.345180] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
> [    0.354743] xen:grant_table: Grant tables using version 1 layout
> [    0.359132] Grant table initialized
> [    0.362664] xen:events: Using FIFO-based ABI
> [    0.366993] Xen: initializing cpu0
> [    0.370515] rcu: Hierarchical SRCU implementation.
> [    0.375930] smp: Bringing up secondary CPUs ...
> (XEN) null.c:353: 1 <-- d0v1
> (XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
> [    0.382549] Detected VIPT I-cache on CPU1
> [    0.388712] Xen: initializing cpu1
> [    0.388743] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
> [    0.388829] smp: Brought up 1 node, 2 CPUs
> [    0.406941] SMP: Total of 2 processors activated.
> [    0.411698] CPU features: detected: 32-bit EL0 Support
> [    0.416888] CPU features: detected: CRC32 instructions
> [    0.422121] CPU: All CPU(s) started at EL1
> [    0.426248] alternatives: patching kernel code
> [    0.431424] devtmpfs: initialized
> [    0.441454] KASLR enabled
> [    0.441602] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
> [    0.448321] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
> [    0.496183] NET: Registered PF_NETLINK/PF_ROUTE protocol family
> [    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
> [    0.503772] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
> [    0.511610] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
> [    0.519478] audit: initializing netlink subsys (disabled)
> [    0.524985] audit: type=2000 audit(0.336:1): state=initialized audit_enabled=0 res=1
> [    0.529169] thermal_sys: Registered thermal governor 'step_wise'
> [    0.533023] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
> [    0.545608] ASID allocator initialised with 32768 entries
> [    0.551030] xen:swiotlb_xen: Warning: only able to allocate 4 MB for software IO TLB
> [    0.559332] software IO TLB: mapped [mem 0x0000000011800000-0x0000000011c00000] (4MB)
> [    0.583565] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
> [    0.584721] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
> [    0.591478] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
> [    0.598225] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
> [    0.636520] DRBG: Continuing without Jitter RNG
> [    0.737187] raid6: neonx8   gen()  2143 MB/s
> [    0.805294] raid6: neonx8   xor()  1589 MB/s
> [    0.873406] raid6: neonx4   gen()  2177 MB/s
> [    0.941499] raid6: neonx4   xor()  1556 MB/s
> [    1.009612] raid6: neonx2   gen()  2072 MB/s
> [    1.077715] raid6: neonx2   xor()  1430 MB/s
> [    1.145834] raid6: neonx1   gen()  1769 MB/s
> [    1.213935] raid6: neonx1   xor()  1214 MB/s
> [    1.282046] raid6: int64x8  gen()  1366 MB/s
> [    1.350132] raid6: int64x8  xor()   773 MB/s
> [    1.418259] raid6: int64x4  gen()  1602 MB/s
> [    1.486349] raid6: int64x4  xor()   851 MB/s
> [    1.554464] raid6: int64x2  gen()  1396 MB/s
> [    1.622561] raid6: int64x2  xor()   744 MB/s
> [    1.690687] raid6: int64x1  gen()  1033 MB/s
> [    1.758770] raid6: int64x1  xor()   517 MB/s
> [    1.758809] raid6: using algorithm neonx4 gen() 2177 MB/s
> [    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
> [    1.767957] raid6: using neon recovery algorithm
> [    1.772824] xen:balloon: Initialising balloon driver
> [    1.778021] iommu: Default domain type: Translated
> [    1.782584] iommu: DMA domain TLB invalidation policy: strict mode
> [    1.789149] SCSI subsystem initialized
> [    1.792820] usbcore: registered new interface driver usbfs
> [    1.798254] usbcore: registered new interface driver hub
> [    1.803626] usbcore: registered new device driver usb
> [    1.808761] pps_core: LinuxPPS API ver. 1 registered
> [    1.813716] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
> [    1.822903] PTP clock support registered
> [    1.826893] EDAC MC: Ver: 3.0.0
> [    1.830375] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox with TX/RX channels.
> [    1.838863] zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI mbox with TX/RX channels.
> [    1.847356] zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI mbox with TX/RX channels.
> [    1.855907] FPGA manager framework
> [    1.859952] clocksource: Switched to clocksource arch_sys_counter
> [    1.871712] NET: Registered PF_INET protocol family
> [    1.871838] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
> [    1.879392] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
> [    1.887078] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
> [    1.894846] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
> [    1.902900] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
> [    1.910350] TCP: Hash tables configured (established 16384 bind 16384)
> [    1.916778] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
> [    1.923509] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
> [    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol family
> [    1.936834] RPC: Registered named UNIX socket transport module.
> [    1.942342] RPC: Registered udp transport module.
> [    1.947088] RPC: Registered tcp transport module.
> [    1.951843] RPC: Registered tcp NFSv4.1 backchannel transport module.
> [    1.958334] PCI: CLS 0 bytes, default 64
> [    1.962709] Trying to unpack rootfs image as initramfs...
> [    1.977090] workingset: timestamp_bits=62 max_order=19 bucket_order=0
> [    1.982863] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
> [    2.021045] NET: Registered PF_ALG protocol family
> [    2.021122] xor: measuring software checksum speed
> [    2.029347]    8regs           :  2366 MB/sec
> [    2.033081]    32regs          :  2802 MB/sec
> [    2.038223]    arm64_neon      :  2320 MB/sec
> [    2.038385] xor: using function: 32regs (2802 MB/sec)
> [    2.043614] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
> [    2.050959] io scheduler mq-deadline registered
> [    2.055521] io scheduler kyber registered
> [    2.068227] xen:xen_evtchn: Event-channel device installed
> [    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
> [    2.076190] cacheinfo: Unable to detect cache hierarchy for CPU 0
> [    2.085548] brd: module loaded
> [    2.089290] loop: module loaded
> [    2.089341] Invalid max_queues (4), will use default max: 2.
> [    2.094565] tun: Universal TUN/TAP device driver, 1.6
> [    2.098655] xen_netfront: Initialising Xen virtual ethernet driver
> [    2.104156] usbcore: registered new interface driver rtl8150
> [    2.109813] usbcore: registered new interface driver r8152
> [    2.115367] usbcore: registered new interface driver asix
> [    2.120794] usbcore: registered new interface driver ax88179_178a
> [    2.126934] usbcore: registered new interface driver cdc_ether
> [    2.132816] usbcore: registered new interface driver cdc_eem
> [    2.138527] usbcore: registered new interface driver net1080
> [    2.144256] usbcore: registered new interface driver cdc_subset
> [    2.150205] usbcore: registered new interface driver zaurus
> [    2.155837] usbcore: registered new interface driver cdc_ncm
> [    2.161550] usbcore: registered new interface driver r8153_ecm
> [    2.168240] usbcore: registered new interface driver cdc_acm
> [    2.173109] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
> [    2.181358] usbcore: registered new interface driver uas
> [    2.186547] usbcore: registered new interface driver usb-storage
> [    2.192643] usbcore: registered new interface driver ftdi_sio
> [    2.198384] usbserial: USB Serial support registered for FTDI USB Serial Device
> [    2.206118] udc-core: couldn't find an available UDC - added [g_mass_storage] to list of pending drivers
> [    2.215332] i2c_dev: i2c /dev entries driver
> [    2.220467] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)
> [    2.225923] device-mapper: uevent: version 1.0.3
> [    2.230668] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
> [    2.239315] EDAC MC0: Giving out device to module 1 controller synps_ddr_controller: DEV synps_edac (INTERRUPT)
> [    2.249405] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac controller zynqmp_ocm: DEV ff960000.memory-controller (INTERRUPT)
> [    2.261719] sdhci: Secure Digital Host Controller Interface driver
> [    2.267487] sdhci: Copyright(c) Pierre Ossman
> [    2.271890] sdhci-pltfm: SDHCI platform and OF driver helper
> [    2.278157] ledtrig-cpu: registered to indicate activity on CPUs
> [    2.283816] zynqmp_firmware_probe Platform Management API v1.1
> [    2.289554] zynqmp_firmware_probe Trustzone version v1.0
> [    2.327875] securefw securefw: securefw probed
> [    2.328324] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
> [    2.332563] zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes: AES Successfully Registered
> [    2.341183] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
> [    2.347667] remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is available
> [    2.353003] remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is available
> [    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
> [    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen Proxy registered
> [    2.372525] viper-vdpp a4000000.vdpp: Device Tree Probing
> [    2.377778] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> [    2.386432] viper-vdpp a4000000.vdpp: Unable to register tamper handler. Retrying...
> [    2.394094] viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
> [    2.399854] viper-vdpp-net a5000000.vdpp_net: Device registered
> [    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
> [    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI Count: 512 Event Count: 32
> [    2.420856] default preset
> [    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device registered
> [    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
> [    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device registered
> [    2.441976] vmcu driver init
> [    2.444922] VMCU: : (240:0) registered
> [    2.444956] In K81 Updater init
> [    2.449003] pktgen: Packet Generator for packet performance testing. Version: 2.75
> [    2.468833] Initializing XFRM netlink socket
> [    2.468902] NET: Registered PF_PACKET protocol family
> [    2.472729] Bridge firewalling registered
> [    2.476785] 8021q: 802.1Q VLAN Support v1.8
> [    2.481341] registered taskstats version 1
> [    2.486394] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
> [    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36, base_baud = 6250000) is a xuartps
> [    2.507103] of-fpga-region fpga-full: FPGA Region probed
> [    2.512986] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver Probe success
> [    2.520267] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver Probe success
> [    2.528239] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver Probe success
> [    2.536152] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver Probe success
> [    2.544153] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver Probe success
> [    2.552127] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver Probe success
> [    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver Probe success
> [    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver Probe success
> [    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver Probe success
> [    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver Probe success
> [    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
> [    2.946467] 2 fixed-partitions partitions found on MTD device spi0.0
> [    2.952393] Creating 2 MTD partitions on "spi0.0":
> [    2.957231] 0x000004000000-0x000008000000 : "bank A"
> [    2.963332] 0x000000000000-0x000004000000 : "bank B"
> [    2.968694] macb ff0b0000.ethernet: Not enabling partial store and forward
> [    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at 0xff0b0000 irq 25 (18:41:fe:0f:ff:02)
> [    2.984472] macb ff0c0000.ethernet: Not enabling partial store and forward
> [    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at 0xff0c0000 irq 26 (18:41:fe:0f:ff:03)
> [    3.001043] viper_enet viper_enet: Viper power GPIOs initialised
> [    3.007313] viper_enet viper_enet vnet0 (uninitialized): Validate interface QSGMII
> [    3.014914] viper_enet viper_enet vnet1 (uninitialized): Validate interface QSGMII
> [    3.022138] viper_enet viper_enet vnet1 (uninitialized): Validate interface type 18
> [    3.030274] viper_enet viper_enet vnet2 (uninitialized): Validate interface QSGMII
> [    3.037785] viper_enet viper_enet vnet3 (uninitialized): Validate interface QSGMII
> [    3.045301] viper_enet viper_enet: Viper enet registered
> [    3.050958] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
> [    3.057135] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
> [    3.063538] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
> [    3.069920] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
> [    3.097729] si70xx: probe of 2-0040 failed with error -5
> [    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with timeout 60s
> [    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with timeout 10s
> [    3.112457] viper-tamper viper-tamper: Device registered
> [    3.117593] active_bank active_bank: boot bank: 1
> [    3.122184] active_bank active_bank: boot mode: (0x02) qspi32
> [    3.128247] viper-vdpp a4000000.vdpp: Device Tree Probing
> [    3.133439] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info: 1.512.15.0 KeyLen: 32
> [    3.142151] viper-vdpp a4000000.vdpp: Tamper handler registered
> [    3.147438] viper-vdpp a4000000.vdpp: Device registered
> [    3.153007] lpc55_l2 spi1.0: registered handler for protocol 0
> [    3.158582] lpc55_user lpc55_user: The major number for your device is 236
> [    3.165976] lpc55_l2 spi1.0: registered handler for protocol 1
> [    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> [    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
> [    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
> [    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
> [    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
> [    3.202932] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc] using ADMA 64-bit
> [    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
> [    3.215694] lpc55_l2 spi1.0: rx error: -110
> [    3.284438] mmc0: new HS200 MMC card at address 0001
> [    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
> [    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
> [    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
> [    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
> [    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
> [    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> [    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to read the hardware clock
> [    3.591252] cdns-i2c ff020000.i2c: recovery information complete
> [    3.597085] at24 0-0050: supply vcc not found, using dummy regulator
> [    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
> [    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
> [    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
> [    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
> [    3.624224] rtc-rv3028 0-0052: registered as rtc1
> [    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
> [    3.633253] lpc55_l2 spi1.0: rx error: -110
> [    3.639104] k81_bootloader 0-0010: probe
> [    3.641628] VMCU: : (235:0) registered
> [    3.641635] k81_bootloader 0-0010: probe completed
> [    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 28
> [    3.669154] cdns-i2c ff030000.i2c: recovery information complete
> [    3.675412] lm75 1-0048: supply vs not found, using dummy regulator
> [    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
> [    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
> [    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
> [    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
> [    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
> [    3.705157] pca954x 1-0070: registered 4 multiplexed busses for I2C switch pca9546
> [    3.713049] at24 1-0054: supply vcc not found, using dummy regulator
> [    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM, read-only
> [    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq 29
> [    3.731272] sfp viper_enet:sfp-eth1: Host maximum power 2.0W
> [    3.737549] sfp_register_socket: got sfp_bus
> [    3.740709] sfp_register_socket: register sfp_bus
> [    3.745459] sfp_register_bus: ops ok!
> [    3.749179] sfp_register_bus: Try to attach
> [    3.753419] sfp_register_bus: Attach succeeded
> [    3.757914] sfp_register_bus: upstream ops attach
> [    3.762677] sfp_register_bus: Bus registered
> [    3.766999] sfp_register_socket: register sfp_bus succeeded
> [    3.775870] of_cfs_init
> [    3.776000] of_cfs_init: OK
> [    3.778211] clk: Not disabling unused clocks
> [   11.278477] Freeing initrd memory: 206056K
> [   11.279406] Freeing unused kernel memory: 1536K
> [   11.314006] Checked W+X mappings: passed, no W+X pages found
> [   11.314142] Run /init as init process
> INIT: version 3.01 booting
> fsck (busybox 1.35.0)
> /dev/mmcblk0p1: clean, 12/102400 files, 238162/409600 blocks
> /dev/mmcblk0p2: clean, 12/102400 files, 171972/409600 blocks
> /dev/mmcblk0p3 was not cleanly unmounted, check forced.
> /dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous), 663/16384 blocks
> [   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem without journal. Opts: (null). Quota mode: disabled.
> Starting random number generator daemon.
> [   11.580662] random: crng init done
> Starting udev
> [   11.613159] udevd[142]: starting version 3.2.10
> [   11.620385] udevd[143]: starting eudev-3.2.10
> [   11.704481] macb ff0b0000.ethernet control_red: renamed from eth0
> [   11.720264] macb ff0c0000.ethernet control_black: renamed from eth1
> [   12.063396] ip_local_port_range: prefer different parity for start/end values.
> [   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> hwclock: RTC_RD_TIME: Invalid exchange
> Mon Feb 27 08:40:53 UTC 2023
> [   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad result
> hwclock: RTC_SET_TIME: Invalid exchange
> [   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> Starting mcud
> INIT: Entering runlevel: 5
> Configuring network interfaces... done.
> resetting network interface
> [   12.718295] macb ff0b0000.ethernet control_red: PHY [ff0b0000.ethernet-ffffffff:02] driver [Xilinx PCS/PMA PHY] (irq=POLL)
> [   12.723919] macb ff0b0000.ethernet control_red: configuring for phy/gmii link mode
> [   12.732151] pps pps0: new PPS source ptp0
> [   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
> [   12.745724] macb ff0c0000.ethernet control_black: PHY [ff0c0000.ethernet-ffffffff:01] driver [Xilinx PCS/PMA PHY] (irq=POLL)
> [   12.753469] macb ff0c0000.ethernet control_black: configuring for phy/gmii link mode
> [   12.761804] pps pps1: new PPS source ptp1
> [   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
> Auto-negotiation: off
> Auto-negotiation: off
> [   16.828151] macb ff0b0000.ethernet control_red: unable to generate target frequency: 125000000 Hz
> [   16.834553] macb ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full - flow control off
> [   16.860552] macb ff0c0000.ethernet control_black: unable to generate target frequency: 125000000 Hz
> [   16.867052] macb ff0c0000.ethernet control_black: Link is Up - 1Gbps/Full - flow control off
> Starting Failsafe Secure Shell server in port 2222: sshd
> done.
> Starting rpcbind daemon...done.
> 
> [   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
> hwclock: RTC_RD_TIME: Invalid exchange
> Starting State Manager Service
> Start state-manager restarter...
> (XEN) d0v1 Forwarding AES operation: 3254779951
> Starting /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid 80efc224-c202-4f8e-a949-4dae7f04a0aa devid 1 transid 744 /dev/dm-0
> scanned by udevd (385)
> [   17.349933] BTRFS info (device dm-0): disk space caching is enabled
> [   17.350670] BTRFS info (device dm-0): has skinny extents
> [   17.364384] BTRFS info (device dm-0): enabling ssd optimizations
> [   17.830462] BTRFS: device fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e devid 1 transid 6 /dev/mapper/client_prov scanned by mkfs.btrfs
> (526)
> [   17.872699] BTRFS info (device dm-1): using free space tree
> [   17.872771] BTRFS info (device dm-1): has skinny extents
> [   17.878114] BTRFS info (device dm-1): flagging fs with big metadata feature
> [   17.894289] BTRFS info (device dm-1): enabling ssd optimizations
> [   17.895695] BTRFS info (device dm-1): checking UUID tree
> 
> Setting domain 0 name, domid and JSON config...
> Done setting up Dom0
> Starting xenconsoled...
> Starting QEMU as disk backend for dom0
> Starting domain watchdog daemon: xenwatchdogd startup
> 
> [   18.408647] BTRFS: device fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921 devid 1 transid 6 /dev/mapper/client_config scanned by mkfs.btrfs
> (574)
> [done]
> [   18.465552] BTRFS info (device dm-2): using free space tree
> [   18.465629] BTRFS info (device dm-2): has skinny extents
> [   18.471002] BTRFS info (device dm-2): flagging fs with big metadata feature
> Starting crond: [   18.482371] BTRFS info (device dm-2): enabling ssd optimizations
> [   18.486659] BTRFS info (device dm-2): checking UUID tree
> OK
> starting rsyslogd ... Log partition ready after 0 poll loops
> done
> rsyslogd: cannot connect to 172.18.0.1:514: Network is unreachable [v8.2208.0 try https://www.rsyslog.com/e/2027 ]
> [   18.670637] BTRFS: device fsid 39d7d9e1-967d-478e-94ae-690deb722095 devid 1 transid 608 /dev/dm-3 scanned by udevd (518)
> 
> Please insert USB token and enter your role in login prompt.
> 
> login:
> 
> Regards,
> O.
> 
> 
> пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <sstabellini@kernel.org>:
>       Hi Oleg,
> 
>       Here is the issue from your logs:
> 
>       SError Interrupt on CPU0, code 0xbe000000 -- SError
> 
>       SErrors are special signals to notify software of serious hardware
>       errors.  Something is going very wrong. Defective hardware is a
>       possibility.  Another possibility if software accessing address ranges
>       that it is not supposed to, sometimes it causes SErrors.
> 
>       Cheers,
> 
>       Stefano
> 
> 
> 
>       On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
> 
>       > Hello,
>       >
>       > Thanks guys.
>       > I found out where the problem was.
>       > Now dom0 booted more. But I have a new one.
>       > This is a kernel panic during Dom0 loading.
>       > Maybe someone is able to suggest something ?
>       >
>       > Regards,
>       > O.
>       >
>       > [    3.771362] sfp_register_bus: upstream ops attach
>       > [    3.776119] sfp_register_bus: Bus registered
>       > [    3.780459] sfp_register_socket: register sfp_bus succeeded
>       > [    3.789399] of_cfs_init
>       > [    3.789499] of_cfs_init: OK
>       > [    3.791685] clk: Not disabling unused clocks
>       > [   11.010355] SError Interrupt on CPU0, code 0xbe000000 -- SError
>       > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>       > [   11.010393] Workqueue: events_unbound async_run_entry_fn
>       > [   11.010414] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
>       > [   11.010422] pc : simple_write_end+0xd0/0x130
>       > [   11.010431] lr : generic_perform_write+0x118/0x1e0
>       > [   11.010438] sp : ffffffc00809b910
>       > [   11.010441] x29: ffffffc00809b910 x28: 0000000000000000 x27: ffffffef69ba88c0
>       > [   11.010451] x26: 0000000000003eec x25: ffffff807515db00 x24: 0000000000000000
>       > [   11.010459] x23: ffffffc00809ba90 x22: 0000000002aac000 x21: ffffff807315a260
>       > [   11.010472] x20: 0000000000001000 x19: fffffffe02000000 x18: 0000000000000000
>       > [   11.010481] x17: 00000000ffffffff x16: 0000000000008000 x15: 0000000000000000
>       > [   11.010490] x14: 0000000000000000 x13: 0000000000000000 x12: 0000000000000000
>       > [   11.010498] x11: 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
>       > [   11.010507] x8 : 0000000000000000 x7 : ffffffef693ba680 x6 : 000000002d89b700
>       > [   11.010515] x5 : fffffffe02000000 x4 : ffffff807315a3c8 x3 : 0000000000001000
>       > [   11.010524] x2 : 0000000002aab000 x1 : 0000000000000001 x0 : 0000000000000005
>       > [   11.010534] Kernel panic - not syncing: Asynchronous SError Interrupt
>       > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted 5.15.72-xilinx-v2022.1 #1
>       > [   11.010545] Hardware name: D14 Viper Board - White Unit (DT)
>       > [   11.010548] Workqueue: events_unbound async_run_entry_fn
>       > [   11.010556] Call trace:
>       > [   11.010558]  dump_backtrace+0x0/0x1c4
>       > [   11.010567]  show_stack+0x18/0x2c
>       > [   11.010574]  dump_stack_lvl+0x7c/0xa0
>       > [   11.010583]  dump_stack+0x18/0x34
>       > [   11.010588]  panic+0x14c/0x2f8
>       > [   11.010597]  print_tainted+0x0/0xb0
>       > [   11.010606]  arm64_serror_panic+0x6c/0x7c
>       > [   11.010614]  do_serror+0x28/0x60
>       > [   11.010621]  el1h_64_error_handler+0x30/0x50
>       > [   11.010628]  el1h_64_error+0x78/0x7c
>       > [   11.010633]  simple_write_end+0xd0/0x130
>       > [   11.010639]  generic_perform_write+0x118/0x1e0
>       > [   11.010644]  __generic_file_write_iter+0x138/0x1c4
>       > [   11.010650]  generic_file_write_iter+0x78/0xd0
>       > [   11.010656]  __kernel_write+0xfc/0x2ac
>       > [   11.010665]  kernel_write+0x88/0x160
>       > [   11.010673]  xwrite+0x44/0x94
>       > [   11.010680]  do_copy+0xa8/0x104
>       > [   11.010686]  write_buffer+0x38/0x58
>       > [   11.010692]  flush_buffer+0x4c/0xbc
>       > [   11.010698]  __gunzip+0x280/0x310
>       > [   11.010704]  gunzip+0x1c/0x28
>       > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
>       > [   11.010715]  do_populate_rootfs+0x80/0x164
>       > [   11.010722]  async_run_entry_fn+0x48/0x164
>       > [   11.010728]  process_one_work+0x1e4/0x3a0
>       > [   11.010736]  worker_thread+0x7c/0x4c0
>       > [   11.010743]  kthread+0x120/0x130
>       > [   11.010750]  ret_from_fork+0x10/0x20
>       > [   11.010757] SMP: stopping secondary CPUs
>       > [   11.010784] Kernel Offset: 0x2f61200000 from 0xffffffc008000000
>       > [   11.010788] PHYS_OFFSET: 0x0
>       > [   11.010790] CPU features: 0x00000401,00000842
>       > [   11.010795] Memory Limit: none
>       > [   11.277509] ---[ end Kernel panic - not syncing: Asynchronous SError Interrupt ]---
>       >
>       > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <michal.orzel@amd.com>:
>       >       Hi Oleg,
>       >
>       >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
>       >       >       
>       >       >
>       >       >
>       >       > Hello Michal,
>       >       >
>       >       > I was not able to enable earlyprintk in the xen for now.
>       >       > I decided to choose another way.
>       >       > This is a xen's command line that I found out completely.
>       >       >
>       >       > (XEN) $$$$ console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin bootscrub=0 vwfi=native
>       sched=null
>       >       timer_slop=0
>       >       Yes, adding a printk() in Xen was also a good idea.
>       >
>       >       >
>       >       > So you are absolutely right about a command line.
>       >       > Now I am going to find out why xen did not have the correct parameters from the device tree.
>       >       Maybe you will find this document helpful:
>       >       https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
>       >
>       >       ~Michal
>       >
>       >       >
>       >       > Regards,
>       >       > Oleg
>       >       >
>       >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>>:
>       >       >
>       >       >
>       >       >     On 21/04/2023 10:04, Oleg Nikitenko wrote:
>       >       >     >       
>       >       >     >
>       >       >     >
>       >       >     > Hello Michal,
>       >       >     >
>       >       >     > Yes, I use yocto.
>       >       >     >
>       >       >     > Yesterday all day long I tried to follow your suggestions.
>       >       >     > I faced a problem.
>       >       >     > Manually in the xen config build file I pasted the strings:
>       >       >     In the .config file or in some Yocto file (listing additional Kconfig options) added to SRC_URI?
>       >       >     You shouldn't really modify .config file but if you do, you should execute "make olddefconfig" afterwards.
>       >       >
>       >       >     >
>       >       >     > CONFIG_EARLY_PRINTK
>       >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
>       >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
>       >       >     I hope you added =y to them.
>       >       >
>       >       >     Anyway, you have at least the following solutions:
>       >       >     1) Run bitbake xen -c menuconfig to properly set early printk
>       >       >     2) Find out how you enable other Kconfig options in your project (e.g. CONFIG_COLORING=y that is not enabled by
>       default)
>       >       >     3) Append the following to "xen/arch/arm/configs/arm64_defconfig":
>       >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
>       >       >
>       >       >     ~Michal
>       >       >
>       >       >     >
>       >       >     > Host hangs in build time. 
>       >       >     > Maybe I did not set something in the config build file ?
>       >       >     >
>       >       >     > Regards,
>       >       >     > Oleg
>       >       >     >
>       >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
>       >       >     >
>       >       >     >     Thanks Michal,
>       >       >     >
>       >       >     >     You gave me an idea.
>       >       >     >     I am going to try it today.
>       >       >     >
>       >       >     >     Regards,
>       >       >     >     O.
>       >       >     >
>       >       >     >     чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
>       >       >     >
>       >       >     >         Thanks Stefano.
>       >       >     >
>       >       >     >         I am going to do it today.
>       >       >     >
>       >       >     >         Regards,
>       >       >     >         O.
>       >       >     >
>       >       >     >         ср, 19 апр. 2023 г. в 23:05, Stefano Stabellini <sstabellini@kernel.org <mailto:sstabellini@kernel.org>
>       >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
>       >       >     >
>       >       >     >             On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
>       >       >     >             > Hi Michal,
>       >       >     >             >
>       >       >     >             > I corrected xen's command line.
>       >       >     >             > Now it is
>       >       >     >             > xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
>       >       bootscrub=0 vwfi=native sched=null
>       >       >     >             > timer_slop=0 way_size=65536 xen_colors=0-3 dom0_colors=4-7";
>       >       >     >
>       >       >     >             4 colors is way too many for xen, just do xen_colors=0-0. There is no
>       >       >     >             advantage in using more than 1 color for Xen.
>       >       >     >
>       >       >     >             4 colors is too few for dom0, if you are giving 1600M of memory to Dom0.
>       >       >     >             Each color is 256M. For 1600M you should give at least 7 colors. Try:
>       >       >     >
>       >       >     >             xen_colors=0-0 dom0_colors=1-8
>       >       >     >
>       >       >     >
>       >       >     >
>       >       >     >             > Unfortunately the result was the same.
>       >       >     >             >
>       >       >     >             > (XEN)  - Dom0 mode: Relaxed
>       >       >     >             > (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
>       >       >     >             > (XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
>       >       >     >             > (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>       >       >     >             > (XEN) Coloring general information
>       >       >     >             > (XEN) Way size: 64kB
>       >       >     >             > (XEN) Max. number of colors available: 16
>       >       >     >             > (XEN) Xen color(s): [ 0 ]
>       >       >     >             > (XEN) alternatives: Patching with alt table 00000000002cc690 -> 00000000002ccc0c
>       >       >     >             > (XEN) Color array allocation failed for dom0
>       >       >     >             > (XEN)
>       >       >     >             > (XEN) ****************************************
>       >       >     >             > (XEN) Panic on CPU 0:
>       >       >     >             > (XEN) Error creating domain 0
>       >       >     >             > (XEN) ****************************************
>       >       >     >             > (XEN)
>       >       >     >             > (XEN) Reboot in five seconds...
>       >       >     >             >
>       >       >     >             > I am going to find out how command line arguments passed and parsed.
>       >       >     >             >
>       >       >     >             > Regards,
>       >       >     >             > Oleg
>       >       >     >             >
>       >       >     >             > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
>       >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
>       >       >     >             >       Hi Michal,
>       >       >     >             >
>       >       >     >             > You put my nose into the problem. Thank you.
>       >       >     >             > I am going to use your point.
>       >       >     >             > Let's see what happens.
>       >       >     >             >
>       >       >     >             > Regards,
>       >       >     >             > Oleg
>       >       >     >             >
>       >       >     >             >
>       >       >     >             > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <michal.orzel@amd.com <mailto:michal.orzel@amd.com>
>       >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
>       >       >     >             >       Hi Oleg,
>       >       >     >             >
>       >       >     >             >       On 19/04/2023 09:03, Oleg Nikitenko wrote:
>       >       >     >             >       >       
>       >       >     >             >       >
>       >       >     >             >       >
>       >       >     >             >       > Hello Stefano,
>       >       >     >             >       >
>       >       >     >             >       > Thanks for the clarification.
>       >       >     >             >       > My company uses yocto for image generation.
>       >       >     >             >       > What kind of information do you need to consult me in this case ?
>       >       >     >             >       >
>       >       >     >             >       > Maybe modules sizes/addresses which were mentioned by @Julien Grall
>       <mailto:julien@xen.org
>       >       <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:julien@xen.org>>> ?
>       >       >     >             >
>       >       >     >             >       Sorry for jumping into discussion, but FWICS the Xen command line you provided seems to be
>       not the
>       >       one
>       >       >     >             >       Xen booted with. The error you are observing most likely is due to dom0 colors
>       configuration not
>       >       being
>       >       >     >             >       specified (i.e. lack of dom0_colors=<> parameter). Although in the command line you
>       provided, this
>       >       parameter
>       >       >     >             >       is set, I strongly doubt that this is the actual command line in use.
>       >       >     >             >
>       >       >     >             >       You wrote:
>       >       >     >             >       xen,xen-bootargs = "console=dtuart dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2
>       dom0_vcpus_pin
>       >       bootscrub=0 vwfi=native
>       >       >     >             >       sched=null timer_slop=0 way_szize=65536 xen_colors=0-3 dom0_colors=4-7";
>       >       >     >             >
>       >       >     >             >       but:
>       >       >     >             >       1) way_szize has a typo
>       >       >     >             >       2) you specified 4 colors (0-3) for Xen, but the boot log says that Xen has only one:
>       >       >     >             >       (XEN) Xen color(s): [ 0 ]
>       >       >     >             >
>       >       >     >             >       This makes me believe that no colors configuration actually end up in command line that Xen
>       booted
>       >       with.
>       >       >     >             >       Single color for Xen is a "default if not specified" and way size was probably calculated
>       by asking
>       >       HW.
>       >       >     >             >
>       >       >     >             >       So I would suggest to first cross-check the command line in use.
>       >       >     >             >
>       >       >     >             >       ~Michal
>       >       >     >             >
>       >       >     >             >
>       >       >     >             >       >
>       >       >     >             >       > Regards,
>       >       >     >             >       > Oleg
>       >       >     >             >       >
>       >       >     >             >       > вт, 18 апр. 2023 г. в 20:44, Stefano Stabellini <sstabellini@kernel.org
>       >       <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>
>       <mailto:sstabellini@kernel.org
>       >       <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>>:
>       >       >     >             >       >
>       >       >     >             >       >     On Tue, 18 Apr 2023, Oleg Nikitenko wrote:
>       >       >     >             >       >     > Hi Julien,
>       >       >     >             >       >     >
>       >       >     >             >       >     > >> This feature has not been merged in Xen upstream yet
>       >       >     >             >       >     >
>       >       >     >             >       >     > > would assume that upstream + the series on the ML [1] work
>       >       >     >             >       >     >
>       >       >     >             >       >     > Please clarify this point.
>       >       >     >             >       >     > Because the two thoughts are controversial.
>       >       >     >             >       >
>       >       >     >             >       >     Hi Oleg,
>       >       >     >             >       >
>       >       >     >             >       >     As Julien wrote, there is nothing controversial. As you are aware,
>       >       >     >             >       >     Xilinx maintains a separate Xen tree specific for Xilinx here:
>       >       >     >             >       >     https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>       <https://github.com/xilinx/xen
>       >       <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <https://github.com/xilinx/xen>
>       <https://github.com/xilinx/xen
>       >       <https://github.com/xilinx/xen>>>
>       >       >     >             >       >
>       >       >     >             >       >     and the branch you are using (xlnx_rebase_4.16) comes from there.
>       >       >     >             >       >
>       >       >     >             >       >
>       >       >     >             >       >     Instead, the upstream Xen tree lives here:
>       >       >     >             >       >     https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
>       >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
>       >       >     >             >       >
>       >       >     >             >       >
>       >       >     >             >       >     The Cache Coloring feature that you are trying to configure is present
>       >       >     >             >       >     in xlnx_rebase_4.16, but not yet present upstream (there is an
>       >       >     >             >       >     outstanding patch series to add cache coloring to Xen upstream but it
>       >       >     >             >       >     hasn't been merged yet.)
>       >       >     >             >       >
>       >       >     >             >       >
>       >       >     >             >       >     Anyway, if you are using xlnx_rebase_4.16 it doesn't matter too much for
>       >       >     >             >       >     you as you already have Cache Coloring as a feature there.
>       >       >     >             >       >
>       >       >     >             >       >
>       >       >     >             >       >     I take you are using ImageBuilder to generate the boot configuration? If
>       >       >     >             >       >     so, please post the ImageBuilder config file that you are using.
>       >       >     >             >       >
>       >       >     >             >       >     But from the boot message, it looks like the colors configuration for
>       >       >     >             >       >     Dom0 is incorrect.
>       >       >     >             >       >
>       >       >     >             >
>       >       >     >             >
>       >       >     >             >
>       >       >     >
>       >       >
>       >
>       >
>       >
> 
> 
> 

^ permalink raw reply	[relevance 0%]

* Re: xen cache colors in ARM
  @ 2023-04-25  7:33  4%                               ` Oleg Nikitenko
  2023-04-25 18:20  0%                                 ` Stefano Stabellini
  0 siblings, 1 reply; 200+ results
From: Oleg Nikitenko @ 2023-04-25  7:33 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: Michal Orzel, Julien Grall, xen-devel, Bertrand Marquis, Carlo Nonato

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

Hi Stefano,

Thank you.
If I build xen without colors support there is not this error.
All the domains are booted well.
Hense it can not be a hardware issue.
This panic arrived during unpacking the rootfs.
Here I attached the boot log xen/Dom0 without color.
A highlighted strings printed exactly after the place where 1-st time panic
arrived.

 Xen 4.16.1-pre
(XEN) Xen version 4.16.1-pre (nole2390@(none)) (aarch64-portable-linux-gcc
(GCC) 11.3.0) debug=y 2023-04-21
(XEN) Latest ChangeSet: Wed Apr 19 12:56:14 2023 +0300 git:321687b231-dirty
(XEN) build-id: c1847258fdb1b79562fc710dda40008f96c0fde5
(XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0, part
0xd03,rev 0x4
(XEN) 64-bit Execution:
(XEN)   Processor Features: 0000000000002222 0000000000000000
(XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
(XEN)     Extensions: FloatingPoint AdvancedSIMD
(XEN)   Debug Features: 0000000010305106 0000000000000000
(XEN)   Auxiliary Features: 0000000000000000 0000000000000000
(XEN)   Memory Model Features: 0000000000001122 0000000000000000
(XEN)   ISA Features:  0000000000011120 0000000000000000
(XEN) 32-bit Execution:
(XEN)   Processor Features: 0000000000000131:0000000000011011
(XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
(XEN)     Extensions: GenericTimer Security
(XEN)   Debug Features: 0000000003010066
(XEN)   Auxiliary Features: 0000000000000000
(XEN)   Memory Model Features: 0000000010201105 0000000040000000
(XEN)                          0000000001260000 0000000002102211
(XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
(XEN)                 0000000001112131 0000000000011142 0000000000011121
(XEN) Using SMC Calling Convention v1.2
(XEN) Using PSCI v1.1
(XEN) SMP: Allowing 4 CPUs
(XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 100000 KHz
(XEN) GICv2 initialization:
(XEN)         gic_dist_addr=00000000f9010000
(XEN)         gic_cpu_addr=00000000f9020000
(XEN)         gic_hyp_addr=00000000f9040000
(XEN)         gic_vcpu_addr=00000000f9060000
(XEN)         gic_maintenance_irq=25
(XEN) GICv2: Adjusting CPU interface base to 0xf902f000
(XEN) GICv2: 192 lines, 4 cpus, secure (IID 0200143b).
(XEN) Using scheduler: null Scheduler (null)
(XEN) Initializing null scheduler
(XEN) WARNING: This is experimental software in development.
(XEN) Use at your own risk.
(XEN) Allocated console ring of 32 KiB.
(XEN) CPU0: Guest atomics will try 12 times before pausing the domain
(XEN) Bringing up CPU1
(XEN) CPU1: Guest atomics will try 13 times before pausing the domain
(XEN) CPU 1 booted.
(XEN) Bringing up CPU2
(XEN) CPU2: Guest atomics will try 13 times before pausing the domain
(XEN) CPU 2 booted.
(XEN) Bringing up CPU3
(XEN) CPU3: Guest atomics will try 13 times before pausing the domain
(XEN) Brought up 4 CPUs
(XEN) CPU 3 booted.
(XEN) smmu: /axi/smmu@fd800000: probing hardware configuration...
(XEN) smmu: /axi/smmu@fd800000: SMMUv2 with:
(XEN) smmu: /axi/smmu@fd800000: stage 2 translation
(XEN) smmu: /axi/smmu@fd800000: stream matching with 48 register groups,
mask 0x7fff<2>smmu: /axi/smmu@fd800000: 16 context banks (0 stage-2 only)
(XEN) smmu: /axi/smmu@fd800000: Stage-2: 48-bit IPA -> 48-bit PA
(XEN) smmu: /axi/smmu@fd800000: registered 29 master devices
(XEN) I/O virtualisation enabled
(XEN)  - Dom0 mode: Relaxed
(XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
(XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) alternatives: Patching with alt table 00000000002cc5c8 ->
00000000002ccb2c
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Loading d0 kernel from boot module @ 0000000001000000
(XEN) Loading ramdisk from boot module @ 0000000002000000
(XEN) Allocating 1:1 mappings totalling 1600MB for dom0:
(XEN) BANK[0] 0x00000010000000-0x00000020000000 (256MB)
(XEN) BANK[1] 0x00000024000000-0x00000028000000 (64MB)
(XEN) BANK[2] 0x00000030000000-0x00000080000000 (1280MB)
(XEN) Grant table range: 0x00000000e00000-0x00000000e40000
(XEN) smmu: /axi/smmu@fd800000: d0: p2maddr 0x000000087bf94000
(XEN) Allocating PPI 16 for event channel interrupt
(XEN) Extended region 0: 0x81200000->0xa0000000
(XEN) Extended region 1: 0xb1200000->0xc0000000
(XEN) Extended region 2: 0xc8000000->0xe0000000
(XEN) Extended region 3: 0xf0000000->0xf9000000
(XEN) Extended region 4: 0x100000000->0x600000000
(XEN) Extended region 5: 0x880000000->0x8000000000
(XEN) Extended region 6: 0x8001000000->0x10000000000
(XEN) Loading zImage from 0000000001000000 to
0000000010000000-0000000010e41008
(XEN) Loading d0 initrd from 0000000002000000 to
0x0000000013600000-0x000000001ff3a617
(XEN) Loading d0 DTB to 0x0000000013400000-0x000000001340cbdc
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) null.c:353: 0 <-- d0v0
(XEN) Freed 356kB init memory.
(XEN) d0v0 Unhandled SMC/HVC: 0x84000050
(XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 5.15.72-xilinx-v2022.1 (oe-user@oe-host)
(aarch64-portable-linux-gcc (GCC) 11.3.0, GNU ld (GNU Binutils)
2.38.20220708) #1 SMP Tue Feb 21 05:47:54 UTC 2023
[    0.000000] Machine model: D14 Viper Board - White Unit
[    0.000000] Xen 4.16 support found
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000010000000-0x000000007fffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000010000000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000022000000-0x0000000022147fff]
[    0.000000]   node   0: [mem 0x0000000022200000-0x0000000022347fff]
[    0.000000]   node   0: [mem 0x0000000024000000-0x0000000027ffffff]
[    0.000000]   node   0: [mem 0x0000000030000000-0x000000007fffffff]
[    0.000000] Initmem setup node 0 [mem
0x0000000010000000-0x000000007fffffff]
[    0.000000] On node 0, zone DMA: 8192 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 184 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 7352 pages in unavailable ranges
[    0.000000] cma: Reserved 256 MiB at 0x000000006e000000
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 16 pages/cpu s32792 r0 d32744 u65536
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: kernel page table isolation forced ON by KASLR
[    0.000000] CPU features: detected: Kernel page table isolation (KPTI)
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 403845
[    0.000000] Kernel command line: console=hvc0 earlycon=xen
earlyprintk=xen clk_ignore_unused fips=1 root=/dev/ram0 maxcpus=2
[    0.000000] Unknown kernel command line parameters "earlyprintk=xen
fips=1", will be passed to user space.
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152
bytes, linear)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576
bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:on
[    0.000000] mem auto-init: clearing system memory may take some time...
[    0.000000] Memory: 1121936K/1641024K available (9728K kernel code, 836K
rwdata, 2396K rodata, 1536K init, 262K bss, 256944K reserved, 262144K
cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu: RCU event tracing is enabled.
[    0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is
25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] arch_timer: cp15 timer(s) running at 100.00MHz (virt).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff
max_cycles: 0x171024e7e0, max_idle_ns: 440795205315 ns
[    0.000000] sched_clock: 56 bits at 100MHz, resolution 10ns, wraps every
4398046511100ns
[    0.000258] Console: colour dummy device 80x25
[    0.310231] printk: console [hvc0] enabled
[    0.314403] Calibrating delay loop (skipped), value calculated using
timer frequency.. 200.00 BogoMIPS (lpj=400000)
[    0.324851] pid_max: default: 32768 minimum: 301
[    0.329706] LSM: Security Framework initializing
[    0.334204] Yama: becoming mindful.
[    0.337865] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes,
linear)
[    0.345180] Mountpoint-cache hash table entries: 4096 (order: 3, 32768
bytes, linear)
[    0.354743] xen:grant_table: Grant tables using version 1 layout
[    0.359132] Grant table initialized
[    0.362664] xen:events: Using FIFO-based ABI
[    0.366993] Xen: initializing cpu0
[    0.370515] rcu: Hierarchical SRCU implementation.
[    0.375930] smp: Bringing up secondary CPUs ...
(XEN) null.c:353: 1 <-- d0v1
(XEN) d0v1: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER0
[    0.382549] Detected VIPT I-cache on CPU1
[    0.388712] Xen: initializing cpu1
[    0.388743] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.388829] smp: Brought up 1 node, 2 CPUs
[    0.406941] SMP: Total of 2 processors activated.
[    0.411698] CPU features: detected: 32-bit EL0 Support
[    0.416888] CPU features: detected: CRC32 instructions
[    0.422121] CPU: All CPU(s) started at EL1
[    0.426248] alternatives: patching kernel code
[    0.431424] devtmpfs: initialized
[    0.441454] KASLR enabled
[    0.441602] clocksource: jiffies: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.448321] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.496183] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.498277] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic
allocations
[    0.503772] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic
allocations
[    0.511610] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for
atomic allocations
[    0.519478] audit: initializing netlink subsys (disabled)
[    0.524985] audit: type=2000 audit(0.336:1): state=initialized
audit_enabled=0 res=1
[    0.529169] thermal_sys: Registered thermal governor 'step_wise'
[    0.533023] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.545608] ASID allocator initialised with 32768 entries
[    0.551030] xen:swiotlb_xen: Warning: only able to allocate 4 MB for
software IO TLB
[    0.559332] software IO TLB: mapped [mem
0x0000000011800000-0x0000000011c00000] (4MB)
[    0.583565] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.584721] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.591478] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.598225] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.636520] DRBG: Continuing without Jitter RNG
[    0.737187] raid6: neonx8   gen()  2143 MB/s
[    0.805294] raid6: neonx8   xor()  1589 MB/s
[    0.873406] raid6: neonx4   gen()  2177 MB/s
[    0.941499] raid6: neonx4   xor()  1556 MB/s
[    1.009612] raid6: neonx2   gen()  2072 MB/s
[    1.077715] raid6: neonx2   xor()  1430 MB/s
[    1.145834] raid6: neonx1   gen()  1769 MB/s
[    1.213935] raid6: neonx1   xor()  1214 MB/s
[    1.282046] raid6: int64x8  gen()  1366 MB/s
[    1.350132] raid6: int64x8  xor()   773 MB/s
[    1.418259] raid6: int64x4  gen()  1602 MB/s
[    1.486349] raid6: int64x4  xor()   851 MB/s
[    1.554464] raid6: int64x2  gen()  1396 MB/s
[    1.622561] raid6: int64x2  xor()   744 MB/s
[    1.690687] raid6: int64x1  gen()  1033 MB/s
[    1.758770] raid6: int64x1  xor()   517 MB/s
[    1.758809] raid6: using algorithm neonx4 gen() 2177 MB/s
[    1.762941] raid6: .... xor() 1556 MB/s, rmw enabled
[    1.767957] raid6: using neon recovery algorithm
[    1.772824] xen:balloon: Initialising balloon driver
[    1.778021] iommu: Default domain type: Translated
[    1.782584] iommu: DMA domain TLB invalidation policy: strict mode
[    1.789149] SCSI subsystem initialized
[    1.792820] usbcore: registered new interface driver usbfs
[    1.798254] usbcore: registered new interface driver hub
[    1.803626] usbcore: registered new device driver usb
[    1.808761] pps_core: LinuxPPS API ver. 1 registered
[    1.813716] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo
Giometti <giometti@linux.it>
[    1.822903] PTP clock support registered
[    1.826893] EDAC MC: Ver: 3.0.0
[    1.830375] zynqmp-ipi-mbox mailbox@ff990400: Registered ZynqMP IPI mbox
with TX/RX channels.
[    1.838863] zynqmp-ipi-mbox mailbox@ff990600: Registered ZynqMP IPI mbox
with TX/RX channels.
[    1.847356] zynqmp-ipi-mbox mailbox@ff990800: Registered ZynqMP IPI mbox
with TX/RX channels.
[    1.855907] FPGA manager framework
[    1.859952] clocksource: Switched to clocksource arch_sys_counter
[    1.871712] NET: Registered PF_INET protocol family
[    1.871838] IP idents hash table entries: 32768 (order: 6, 262144 bytes,
linear)
[    1.879392] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2,
16384 bytes, linear)
[    1.887078] Table-perturb hash table entries: 65536 (order: 6, 262144
bytes, linear)
[    1.894846] TCP established hash table entries: 16384 (order: 5, 131072
bytes, linear)
[    1.902900] TCP bind hash table entries: 16384 (order: 6, 262144 bytes,
linear)
[    1.910350] TCP: Hash tables configured (established 16384 bind 16384)
[    1.916778] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.923509] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes,
linear)
[    1.930759] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.936834] RPC: Registered named UNIX socket transport module.
[    1.942342] RPC: Registered udp transport module.
[    1.947088] RPC: Registered tcp transport module.
[    1.951843] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.958334] PCI: CLS 0 bytes, default 64
[    1.962709] Trying to unpack rootfs image as initramfs...
[    1.977090] workingset: timestamp_bits=62 max_order=19 bucket_order=0
[    1.982863] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    2.021045] NET: Registered PF_ALG protocol family
[    2.021122] xor: measuring software checksum speed
[    2.029347]    8regs           :  2366 MB/sec
[    2.033081]    32regs          :  2802 MB/sec
[    2.038223]    arm64_neon      :  2320 MB/sec
[    2.038385] xor: using function: 32regs (2802 MB/sec)
[    2.043614] Block layer SCSI generic (bsg) driver version 0.4 loaded
(major 247)
[    2.050959] io scheduler mq-deadline registered
[    2.055521] io scheduler kyber registered
[    2.068227] xen:xen_evtchn: Event-channel device installed
[    2.069281] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    2.076190] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    2.085548] brd: module loaded
[    2.089290] loop: module loaded
[    2.089341] Invalid max_queues (4), will use default max: 2.
[    2.094565] tun: Universal TUN/TAP device driver, 1.6
[    2.098655] xen_netfront: Initialising Xen virtual ethernet driver
[    2.104156] usbcore: registered new interface driver rtl8150
[    2.109813] usbcore: registered new interface driver r8152
[    2.115367] usbcore: registered new interface driver asix
[    2.120794] usbcore: registered new interface driver ax88179_178a
[    2.126934] usbcore: registered new interface driver cdc_ether
[    2.132816] usbcore: registered new interface driver cdc_eem
[    2.138527] usbcore: registered new interface driver net1080
[    2.144256] usbcore: registered new interface driver cdc_subset
[    2.150205] usbcore: registered new interface driver zaurus
[    2.155837] usbcore: registered new interface driver cdc_ncm
[    2.161550] usbcore: registered new interface driver r8153_ecm
[    2.168240] usbcore: registered new interface driver cdc_acm
[    2.173109] cdc_acm: USB Abstract Control Model driver for USB modems
and ISDN adapters
[    2.181358] usbcore: registered new interface driver uas
[    2.186547] usbcore: registered new interface driver usb-storage
[    2.192643] usbcore: registered new interface driver ftdi_sio
[    2.198384] usbserial: USB Serial support registered for FTDI USB Serial
Device
[    2.206118] udc-core: couldn't find an available UDC - added
[g_mass_storage] to list of pending drivers
[    2.215332] i2c_dev: i2c /dev entries driver
[    2.220467] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)
[    2.225923] device-mapper: uevent: version 1.0.3
[    2.230668] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised:
dm-devel@redhat.com
[    2.239315] EDAC MC0: Giving out device to module 1 controller
synps_ddr_controller: DEV synps_edac (INTERRUPT)
[    2.249405] EDAC DEVICE0: Giving out device to module zynqmp-ocm-edac
controller zynqmp_ocm: DEV ff960000.memory-controller (INTERRUPT)
[    2.261719] sdhci: Secure Digital Host Controller Interface driver
[    2.267487] sdhci: Copyright(c) Pierre Ossman
[    2.271890] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.278157] ledtrig-cpu: registered to indicate activity on CPUs
[    2.283816] zynqmp_firmware_probe Platform Management API v1.1
[    2.289554] zynqmp_firmware_probe Trustzone version v1.0
[    2.327875] securefw securefw: securefw probed
[    2.328324] alg: No test for xilinx-zynqmp-aes (zynqmp-aes)
[    2.332563] zynqmp_aes firmware:zynqmp-firmware:zynqmp-aes: AES
Successfully Registered
[    2.341183] alg: No test for xilinx-zynqmp-rsa (zynqmp-rsa)
[    2.347667] remoteproc remoteproc0: ff9a0000.rf5ss:r5f_0 is available
[    2.353003] remoteproc remoteproc1: ff9a0000.rf5ss:r5f_1 is available
[    2.362605] fpga_manager fpga0: Xilinx ZynqMP FPGA Manager registered
[    2.366540] viper-xen-proxy viper-xen-proxy: Viper Xen Proxy registered
[    2.372525] viper-vdpp a4000000.vdpp: Device Tree Probing
[    2.377778] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info:
1.512.15.0 KeyLen: 32
[    2.386432] viper-vdpp a4000000.vdpp: Unable to register tamper handler.
Retrying...
[    2.394094] viper-vdpp-net a5000000.vdpp_net: Device Tree Probing
[    2.399854] viper-vdpp-net a5000000.vdpp_net: Device registered
[    2.405931] viper-vdpp-stat a8000000.vdpp_stat: Device Tree Probing
[    2.412037] viper-vdpp-stat a8000000.vdpp_stat: Build parameters: VTI
Count: 512 Event Count: 32
[    2.420856] default preset
[    2.423797] viper-vdpp-stat a8000000.vdpp_stat: Device registered
[    2.430054] viper-vdpp-rng ac000000.vdpp_rng: Device Tree Probing
[    2.435948] viper-vdpp-rng ac000000.vdpp_rng: Device registered
[    2.441976] vmcu driver init
[    2.444922] VMCU: : (240:0) registered
[    2.444956] In K81 Updater init
[    2.449003] pktgen: Packet Generator for packet performance testing.
Version: 2.75
[    2.468833] Initializing XFRM netlink socket
[    2.468902] NET: Registered PF_PACKET protocol family
[    2.472729] Bridge firewalling registered
[    2.476785] 8021q: 802.1Q VLAN Support v1.8
[    2.481341] registered taskstats version 1
[    2.486394] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
[    2.503145] ff010000.serial: ttyPS1 at MMIO 0xff010000 (irq = 36,
base_baud = 6250000) is a xuartps
[    2.507103] of-fpga-region fpga-full: FPGA Region probed
[    2.512986] xilinx-zynqmp-dma fd500000.dma-controller: ZynqMP DMA driver
Probe success
[    2.520267] xilinx-zynqmp-dma fd510000.dma-controller: ZynqMP DMA driver
Probe success
[    2.528239] xilinx-zynqmp-dma fd520000.dma-controller: ZynqMP DMA driver
Probe success
[    2.536152] xilinx-zynqmp-dma fd530000.dma-controller: ZynqMP DMA driver
Probe success
[    2.544153] xilinx-zynqmp-dma fd540000.dma-controller: ZynqMP DMA driver
Probe success
[    2.552127] xilinx-zynqmp-dma fd550000.dma-controller: ZynqMP DMA driver
Probe success
[    2.560178] xilinx-zynqmp-dma ffa80000.dma-controller: ZynqMP DMA driver
Probe success
[    2.567987] xilinx-zynqmp-dma ffa90000.dma-controller: ZynqMP DMA driver
Probe success
[    2.576018] xilinx-zynqmp-dma ffaa0000.dma-controller: ZynqMP DMA driver
Probe success
[    2.583889] xilinx-zynqmp-dma ffab0000.dma-controller: ZynqMP DMA driver
Probe success
[    2.946379] spi-nor spi0.0: mt25qu512a (131072 Kbytes)
[    2.946467] 2 fixed-partitions partitions found on MTD device spi0.0
[    2.952393] Creating 2 MTD partitions on "spi0.0":
[    2.957231] 0x000004000000-0x000008000000 : "bank A"
[    2.963332] 0x000000000000-0x000004000000 : "bank B"
[    2.968694] macb ff0b0000.ethernet: Not enabling partial store and
forward
[    2.975333] macb ff0b0000.ethernet eth0: Cadence GEM rev 0x50070106 at
0xff0b0000 irq 25 (18:41:fe:0f:ff:02)
[    2.984472] macb ff0c0000.ethernet: Not enabling partial store and
forward
[    2.992144] macb ff0c0000.ethernet eth1: Cadence GEM rev 0x50070106 at
0xff0c0000 irq 26 (18:41:fe:0f:ff:03)
[    3.001043] viper_enet viper_enet: Viper power GPIOs initialised
[    3.007313] viper_enet viper_enet vnet0 (uninitialized): Validate
interface QSGMII
[    3.014914] viper_enet viper_enet vnet1 (uninitialized): Validate
interface QSGMII
[    3.022138] viper_enet viper_enet vnet1 (uninitialized): Validate
interface type 18
[    3.030274] viper_enet viper_enet vnet2 (uninitialized): Validate
interface QSGMII
[    3.037785] viper_enet viper_enet vnet3 (uninitialized): Validate
interface QSGMII
[    3.045301] viper_enet viper_enet: Viper enet registered
[    3.050958] xilinx-axipmon ffa00000.perf-monitor: Probed Xilinx APM
[    3.057135] xilinx-axipmon fd0b0000.perf-monitor: Probed Xilinx APM
[    3.063538] xilinx-axipmon fd490000.perf-monitor: Probed Xilinx APM
[    3.069920] xilinx-axipmon ffa10000.perf-monitor: Probed Xilinx APM
[    3.097729] si70xx: probe of 2-0040 failed with error -5
[    3.098042] cdns-wdt fd4d0000.watchdog: Xilinx Watchdog Timer with
timeout 60s
[    3.105111] cdns-wdt ff150000.watchdog: Xilinx Watchdog Timer with
timeout 10s
[    3.112457] viper-tamper viper-tamper: Device registered
[    3.117593] active_bank active_bank: boot bank: 1
[    3.122184] active_bank active_bank: boot mode: (0x02) qspi32
[    3.128247] viper-vdpp a4000000.vdpp: Device Tree Probing
[    3.133439] viper-vdpp a4000000.vdpp: VDPP Version: 1.3.9.0 Info:
1.512.15.0 KeyLen: 32
[    3.142151] viper-vdpp a4000000.vdpp: Tamper handler registered
[    3.147438] viper-vdpp a4000000.vdpp: Device registered
[    3.153007] lpc55_l2 spi1.0: registered handler for protocol 0
[    3.158582] lpc55_user lpc55_user: The major number for your device is
236
[    3.165976] lpc55_l2 spi1.0: registered handler for protocol 1
[    3.181999] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
[    3.182856] rtc-lpc55 rtc_lpc55: registered as rtc0
[    3.188656] lpc55_l2 spi1.0: (2) mcu still not ready?
[    3.193744] lpc55_l2 spi1.0: (3) mcu still not ready?
[    3.198848] lpc55_l2 spi1.0: (4) mcu still not ready?
[    3.202932] mmc0: SDHCI controller on ff160000.mmc [ff160000.mmc] using
ADMA 64-bit
[    3.210689] lpc55_l2 spi1.0: (5) mcu still not ready?
[    3.215694] lpc55_l2 spi1.0: rx error: -110
[    3.284438] mmc0: new HS200 MMC card at address 0001
[    3.285179] mmcblk0: mmc0:0001 SEM16G 14.6 GiB
[    3.291784]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
[    3.293915] mmcblk0boot0: mmc0:0001 SEM16G 4.00 MiB
[    3.299054] mmcblk0boot1: mmc0:0001 SEM16G 4.00 MiB
[    3.303905] mmcblk0rpmb: mmc0:0001 SEM16G 4.00 MiB, chardev (244:0)
[    3.582676] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
[    3.583332] rtc-lpc55 rtc_lpc55: hctosys: unable to read the hardware
clock
[    3.591252] cdns-i2c ff020000.i2c: recovery information complete
[    3.597085] at24 0-0050: supply vcc not found, using dummy regulator
[    3.603011] lpc55_l2 spi1.0: (2) mcu still not ready?
[    3.608093] at24 0-0050: 256 byte spd EEPROM, read-only
[    3.613620] lpc55_l2 spi1.0: (3) mcu still not ready?
[    3.619362] lpc55_l2 spi1.0: (4) mcu still not ready?
[    3.624224] rtc-rv3028 0-0052: registered as rtc1
[    3.628343] lpc55_l2 spi1.0: (5) mcu still not ready?
[    3.633253] lpc55_l2 spi1.0: rx error: -110
[    3.639104] k81_bootloader 0-0010: probe
[    3.641628] VMCU: : (235:0) registered
[    3.641635] k81_bootloader 0-0010: probe completed
[    3.668346] cdns-i2c ff020000.i2c: 400 kHz mmio ff020000 irq 28
[    3.669154] cdns-i2c ff030000.i2c: recovery information complete
[    3.675412] lm75 1-0048: supply vs not found, using dummy regulator
[    3.682920] lm75 1-0048: hwmon1: sensor 'tmp112'
[    3.686548] i2c i2c-1: Added multiplexed i2c bus 3
[    3.690795] i2c i2c-1: Added multiplexed i2c bus 4
[    3.695629] i2c i2c-1: Added multiplexed i2c bus 5
[    3.700492] i2c i2c-1: Added multiplexed i2c bus 6
[    3.705157] pca954x 1-0070: registered 4 multiplexed busses for I2C
switch pca9546
[    3.713049] at24 1-0054: supply vcc not found, using dummy regulator
[    3.720067] at24 1-0054: 1024 byte 24c08 EEPROM, read-only
[    3.724761] cdns-i2c ff030000.i2c: 100 kHz mmio ff030000 irq 29
[    3.731272] sfp viper_enet:sfp-eth1: Host maximum power 2.0W
[    3.737549] sfp_register_socket: got sfp_bus
[    3.740709] sfp_register_socket: register sfp_bus
[    3.745459] sfp_register_bus: ops ok!
[    3.749179] sfp_register_bus: Try to attach
[    3.753419] sfp_register_bus: Attach succeeded
[    3.757914] sfp_register_bus: upstream ops attach
[    3.762677] sfp_register_bus: Bus registered
[    3.766999] sfp_register_socket: register sfp_bus succeeded
[    3.775870] of_cfs_init
[    3.776000] of_cfs_init: OK
[    3.778211] clk: Not disabling unused clocks
*[   11.278477] Freeing initrd memory: 206056K*
*[   11.279406] Freeing unused kernel memory: 1536K*
[   11.314006] Checked W+X mappings: passed, no W+X pages found
[   11.314142] Run /init as init process
INIT: version 3.01 booting
fsck (busybox 1.35.0)
/dev/mmcblk0p1: clean, 12/102400 files, 238162/409600 blocks
/dev/mmcblk0p2: clean, 12/102400 files, 171972/409600 blocks
/dev/mmcblk0p3 was not cleanly unmounted, check forced.
/dev/mmcblk0p3: 20/4096 files (0.0% non-contiguous), 663/16384 blocks
[   11.553073] EXT4-fs (mmcblk0p3): mounted filesystem without journal.
Opts: (null). Quota mode: disabled.
Starting random number generator daemon.
[   11.580662] random: crng init done
Starting udev
[   11.613159] udevd[142]: starting version 3.2.10
[   11.620385] udevd[143]: starting eudev-3.2.10
[   11.704481] macb ff0b0000.ethernet control_red: renamed from eth0
[   11.720264] macb ff0c0000.ethernet control_black: renamed from eth1
[   12.063396] ip_local_port_range: prefer different parity for start/end
values.
[   12.084801] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
hwclock: RTC_RD_TIME: Invalid exchange
Mon Feb 27 08:40:53 UTC 2023
[   12.115309] rtc-lpc55 rtc_lpc55: lpc55_rtc_set_time: bad result
hwclock: RTC_SET_TIME: Invalid exchange
[   12.131027] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
Starting mcud
INIT: Entering runlevel: 5
Configuring network interfaces... done.
resetting network interface
[   12.718295] macb ff0b0000.ethernet control_red: PHY
[ff0b0000.ethernet-ffffffff:02] driver [Xilinx PCS/PMA PHY] (irq=POLL)
[   12.723919] macb ff0b0000.ethernet control_red: configuring for phy/gmii
link mode
[   12.732151] pps pps0: new PPS source ptp0
[   12.735563] macb ff0b0000.ethernet: gem-ptp-timer ptp clock registered.
[   12.745724] macb ff0c0000.ethernet control_black: PHY
[ff0c0000.ethernet-ffffffff:01] driver [Xilinx PCS/PMA PHY] (irq=POLL)
[   12.753469] macb ff0c0000.ethernet control_black: configuring for
phy/gmii link mode
[   12.761804] pps pps1: new PPS source ptp1
[   12.765398] macb ff0c0000.ethernet: gem-ptp-timer ptp clock registered.
Auto-negotiation: off
Auto-negotiation: off
[   16.828151] macb ff0b0000.ethernet control_red: unable to generate
target frequency: 125000000 Hz
[   16.834553] macb ff0b0000.ethernet control_red: Link is Up - 1Gbps/Full
- flow control off
[   16.860552] macb ff0c0000.ethernet control_black: unable to generate
target frequency: 125000000 Hz
[   16.867052] macb ff0c0000.ethernet control_black: Link is Up -
1Gbps/Full - flow control off
Starting Failsafe Secure Shell server in port 2222: sshd
done.
Starting rpcbind daemon...done.

[   17.093019] rtc-lpc55 rtc_lpc55: lpc55_rtc_get_time: bad result: 1
hwclock: RTC_RD_TIME: Invalid exchange
Starting State Manager Service
Start state-manager restarter...
(XEN) d0v1 Forwarding AES operation: 3254779951
Starting /usr/sbin/xenstored....[   17.265256] BTRFS: device fsid
80efc224-c202-4f8e-a949-4dae7f04a0aa devid 1 transid 744 /dev/dm-0 scanned
by udevd (385)
[   17.349933] BTRFS info (device dm-0): disk space caching is enabled
[   17.350670] BTRFS info (device dm-0): has skinny extents
[   17.364384] BTRFS info (device dm-0): enabling ssd optimizations
[   17.830462] BTRFS: device fsid 27ff666b-f4e5-4f90-9054-c210db5b2e2e
devid 1 transid 6 /dev/mapper/client_prov scanned by mkfs.btrfs (526)
[   17.872699] BTRFS info (device dm-1): using free space tree
[   17.872771] BTRFS info (device dm-1): has skinny extents
[   17.878114] BTRFS info (device dm-1): flagging fs with big metadata
feature
[   17.894289] BTRFS info (device dm-1): enabling ssd optimizations
[   17.895695] BTRFS info (device dm-1): checking UUID tree

Setting domain 0 name, domid and JSON config...
Done setting up Dom0
Starting xenconsoled...
Starting QEMU as disk backend for dom0
Starting domain watchdog daemon: xenwatchdogd startup

[   18.408647] BTRFS: device fsid 5e08d5e9-bc2a-46b9-af6a-44c7087b8921
devid 1 transid 6 /dev/mapper/client_config scanned by mkfs.btrfs (574)
[done]
[   18.465552] BTRFS info (device dm-2): using free space tree
[   18.465629] BTRFS info (device dm-2): has skinny extents
[   18.471002] BTRFS info (device dm-2): flagging fs with big metadata
feature
Starting crond: [   18.482371] BTRFS info (device dm-2): enabling ssd
optimizations
[   18.486659] BTRFS info (device dm-2): checking UUID tree
OK
starting rsyslogd ... Log partition ready after 0 poll loops
done
rsyslogd: cannot connect to 172.18.0.1:514: Network is unreachable
[v8.2208.0 try https://www.rsyslog.com/e/2027 ]
[   18.670637] BTRFS: device fsid 39d7d9e1-967d-478e-94ae-690deb722095
devid 1 transid 608 /dev/dm-3 scanned by udevd (518)

Please insert USB token and enter your role in login prompt.

login:

Regards,
O.


пн, 24 апр. 2023 г. в 23:39, Stefano Stabellini <sstabellini@kernel.org>:

> Hi Oleg,
>
> Here is the issue from your logs:
>
> SError Interrupt on CPU0, code 0xbe000000 -- SError
>
> SErrors are special signals to notify software of serious hardware
> errors.  Something is going very wrong. Defective hardware is a
> possibility.  Another possibility if software accessing address ranges
> that it is not supposed to, sometimes it causes SErrors.
>
> Cheers,
>
> Stefano
>
>
>
> On Mon, 24 Apr 2023, Oleg Nikitenko wrote:
>
> > Hello,
> >
> > Thanks guys.
> > I found out where the problem was.
> > Now dom0 booted more. But I have a new one.
> > This is a kernel panic during Dom0 loading.
> > Maybe someone is able to suggest something ?
> >
> > Regards,
> > O.
> >
> > [    3.771362] sfp_register_bus: upstream ops attach
> > [    3.776119] sfp_register_bus: Bus registered
> > [    3.780459] sfp_register_socket: register sfp_bus succeeded
> > [    3.789399] of_cfs_init
> > [    3.789499] of_cfs_init: OK
> > [    3.791685] clk: Not disabling unused clocks
> > [   11.010355] SError Interrupt on CPU0, code 0xbe000000 -- SError
> > [   11.010380] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted
> 5.15.72-xilinx-v2022.1 #1
> > [   11.010393] Workqueue: events_unbound async_run_entry_fn
> > [   11.010414] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS
> BTYPE=--)
> > [   11.010422] pc : simple_write_end+0xd0/0x130
> > [   11.010431] lr : generic_perform_write+0x118/0x1e0
> > [   11.010438] sp : ffffffc00809b910
> > [   11.010441] x29: ffffffc00809b910 x28: 0000000000000000 x27:
> ffffffef69ba88c0
> > [   11.010451] x26: 0000000000003eec x25: ffffff807515db00 x24:
> 0000000000000000
> > [   11.010459] x23: ffffffc00809ba90 x22: 0000000002aac000 x21:
> ffffff807315a260
> > [   11.010472] x20: 0000000000001000 x19: fffffffe02000000 x18:
> 0000000000000000
> > [   11.010481] x17: 00000000ffffffff x16: 0000000000008000 x15:
> 0000000000000000
> > [   11.010490] x14: 0000000000000000 x13: 0000000000000000 x12:
> 0000000000000000
> > [   11.010498] x11: 0000000000000000 x10: 0000000000000000 x9 :
> 0000000000000000
> > [   11.010507] x8 : 0000000000000000 x7 : ffffffef693ba680 x6 :
> 000000002d89b700
> > [   11.010515] x5 : fffffffe02000000 x4 : ffffff807315a3c8 x3 :
> 0000000000001000
> > [   11.010524] x2 : 0000000002aab000 x1 : 0000000000000001 x0 :
> 0000000000000005
> > [   11.010534] Kernel panic - not syncing: Asynchronous SError Interrupt
> > [   11.010539] CPU: 0 PID: 9 Comm: kworker/u4:0 Not tainted
> 5.15.72-xilinx-v2022.1 #1
> > [   11.010545] Hardware name: D14 Viper Board - White Unit (DT)
> > [   11.010548] Workqueue: events_unbound async_run_entry_fn
> > [   11.010556] Call trace:
> > [   11.010558]  dump_backtrace+0x0/0x1c4
> > [   11.010567]  show_stack+0x18/0x2c
> > [   11.010574]  dump_stack_lvl+0x7c/0xa0
> > [   11.010583]  dump_stack+0x18/0x34
> > [   11.010588]  panic+0x14c/0x2f8
> > [   11.010597]  print_tainted+0x0/0xb0
> > [   11.010606]  arm64_serror_panic+0x6c/0x7c
> > [   11.010614]  do_serror+0x28/0x60
> > [   11.010621]  el1h_64_error_handler+0x30/0x50
> > [   11.010628]  el1h_64_error+0x78/0x7c
> > [   11.010633]  simple_write_end+0xd0/0x130
> > [   11.010639]  generic_perform_write+0x118/0x1e0
> > [   11.010644]  __generic_file_write_iter+0x138/0x1c4
> > [   11.010650]  generic_file_write_iter+0x78/0xd0
> > [   11.010656]  __kernel_write+0xfc/0x2ac
> > [   11.010665]  kernel_write+0x88/0x160
> > [   11.010673]  xwrite+0x44/0x94
> > [   11.010680]  do_copy+0xa8/0x104
> > [   11.010686]  write_buffer+0x38/0x58
> > [   11.010692]  flush_buffer+0x4c/0xbc
> > [   11.010698]  __gunzip+0x280/0x310
> > [   11.010704]  gunzip+0x1c/0x28
> > [   11.010709]  unpack_to_rootfs+0x170/0x2b0
> > [   11.010715]  do_populate_rootfs+0x80/0x164
> > [   11.010722]  async_run_entry_fn+0x48/0x164
> > [   11.010728]  process_one_work+0x1e4/0x3a0
> > [   11.010736]  worker_thread+0x7c/0x4c0
> > [   11.010743]  kthread+0x120/0x130
> > [   11.010750]  ret_from_fork+0x10/0x20
> > [   11.010757] SMP: stopping secondary CPUs
> > [   11.010784] Kernel Offset: 0x2f61200000 from 0xffffffc008000000
> > [   11.010788] PHYS_OFFSET: 0x0
> > [   11.010790] CPU features: 0x00000401,00000842
> > [   11.010795] Memory Limit: none
> > [   11.277509] ---[ end Kernel panic - not syncing: Asynchronous SError
> Interrupt ]---
> >
> > пт, 21 апр. 2023 г. в 15:52, Michal Orzel <michal.orzel@amd.com>:
> >       Hi Oleg,
> >
> >       On 21/04/2023 14:49, Oleg Nikitenko wrote:
> >       >
> >       >
> >       >
> >       > Hello Michal,
> >       >
> >       > I was not able to enable earlyprintk in the xen for now.
> >       > I decided to choose another way.
> >       > This is a xen's command line that I found out completely.
> >       >
> >       > (XEN) $$$$ console=dtuart dtuart=serial0 dom0_mem=1600M
> dom0_max_vcpus=2 dom0_vcpus_pin bootscrub=0 vwfi=native sched=null
> >       timer_slop=0
> >       Yes, adding a printk() in Xen was also a good idea.
> >
> >       >
> >       > So you are absolutely right about a command line.
> >       > Now I am going to find out why xen did not have the correct
> parameters from the device tree.
> >       Maybe you will find this document helpful:
> >
> https://github.com/Xilinx/xen/blob/xlnx_rebase_4.16/docs/misc/arm/device-tree/booting.txt
> >
> >       ~Michal
> >
> >       >
> >       > Regards,
> >       > Oleg
> >       >
> >       > пт, 21 апр. 2023 г. в 11:16, Michal Orzel <michal.orzel@amd.com
> <mailto:michal.orzel@amd.com>>:
> >       >
> >       >
> >       >     On 21/04/2023 10:04, Oleg Nikitenko wrote:
> >       >     >
> >       >     >
> >       >     >
> >       >     > Hello Michal,
> >       >     >
> >       >     > Yes, I use yocto.
> >       >     >
> >       >     > Yesterday all day long I tried to follow your suggestions.
> >       >     > I faced a problem.
> >       >     > Manually in the xen config build file I pasted the strings:
> >       >     In the .config file or in some Yocto file (listing
> additional Kconfig options) added to SRC_URI?
> >       >     You shouldn't really modify .config file but if you do, you
> should execute "make olddefconfig" afterwards.
> >       >
> >       >     >
> >       >     > CONFIG_EARLY_PRINTK
> >       >     > CONFIG_EARLY_PRINTK_ZYNQMP
> >       >     > CONFIG_EARLY_UART_CHOICE_CADENCE
> >       >     I hope you added =y to them.
> >       >
> >       >     Anyway, you have at least the following solutions:
> >       >     1) Run bitbake xen -c menuconfig to properly set early printk
> >       >     2) Find out how you enable other Kconfig options in your
> project (e.g. CONFIG_COLORING=y that is not enabled by default)
> >       >     3) Append the following to
> "xen/arch/arm/configs/arm64_defconfig":
> >       >     CONFIG_EARLY_PRINTK_ZYNQMP=y
> >       >
> >       >     ~Michal
> >       >
> >       >     >
> >       >     > Host hangs in build time.
> >       >     > Maybe I did not set something in the config build file ?
> >       >     >
> >       >     > Regards,
> >       >     > Oleg
> >       >     >
> >       >     > чт, 20 апр. 2023 г. в 11:57, Oleg Nikitenko <
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
> >       >     >
> >       >     >     Thanks Michal,
> >       >     >
> >       >     >     You gave me an idea.
> >       >     >     I am going to try it today.
> >       >     >
> >       >     >     Regards,
> >       >     >     O.
> >       >     >
> >       >     >     чт, 20 апр. 2023 г. в 11:56, Oleg Nikitenko <
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
> >       >     >
> >       >     >         Thanks Stefano.
> >       >     >
> >       >     >         I am going to do it today.
> >       >     >
> >       >     >         Regards,
> >       >     >         O.
> >       >     >
> >       >     >         ср, 19 апр. 2023 г. в 23:05, Stefano Stabellini <
> sstabellini@kernel.org <mailto:sstabellini@kernel.org>
> >       <mailto:sstabellini@kernel.org <mailto:sstabellini@kernel.org>>>:
> >       >     >
> >       >     >             On Wed, 19 Apr 2023, Oleg Nikitenko wrote:
> >       >     >             > Hi Michal,
> >       >     >             >
> >       >     >             > I corrected xen's command line.
> >       >     >             > Now it is
> >       >     >             > xen,xen-bootargs = "console=dtuart
> dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
> >       bootscrub=0 vwfi=native sched=null
> >       >     >             > timer_slop=0 way_size=65536 xen_colors=0-3
> dom0_colors=4-7";
> >       >     >
> >       >     >             4 colors is way too many for xen, just do
> xen_colors=0-0. There is no
> >       >     >             advantage in using more than 1 color for Xen.
> >       >     >
> >       >     >             4 colors is too few for dom0, if you are
> giving 1600M of memory to Dom0.
> >       >     >             Each color is 256M. For 1600M you should give
> at least 7 colors. Try:
> >       >     >
> >       >     >             xen_colors=0-0 dom0_colors=1-8
> >       >     >
> >       >     >
> >       >     >
> >       >     >             > Unfortunately the result was the same.
> >       >     >             >
> >       >     >             > (XEN)  - Dom0 mode: Relaxed
> >       >     >             > (XEN) P2M: 40-bit IPA with 40-bit PA and
> 8-bit VMID
> >       >     >             > (XEN) P2M: 3 levels with order-1 root, VTCR
> 0x0000000080023558
> >       >     >             > (XEN) Scheduling granularity: cpu, 1 CPU per
> sched-resource
> >       >     >             > (XEN) Coloring general information
> >       >     >             > (XEN) Way size: 64kB
> >       >     >             > (XEN) Max. number of colors available: 16
> >       >     >             > (XEN) Xen color(s): [ 0 ]
> >       >     >             > (XEN) alternatives: Patching with alt table
> 00000000002cc690 -> 00000000002ccc0c
> >       >     >             > (XEN) Color array allocation failed for dom0
> >       >     >             > (XEN)
> >       >     >             > (XEN)
> ****************************************
> >       >     >             > (XEN) Panic on CPU 0:
> >       >     >             > (XEN) Error creating domain 0
> >       >     >             > (XEN)
> ****************************************
> >       >     >             > (XEN)
> >       >     >             > (XEN) Reboot in five seconds...
> >       >     >             >
> >       >     >             > I am going to find out how command line
> arguments passed and parsed.
> >       >     >             >
> >       >     >             > Regards,
> >       >     >             > Oleg
> >       >     >             >
> >       >     >             > ср, 19 апр. 2023 г. в 11:25, Oleg Nikitenko <
> oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>
> >       <mailto:oleshiiwood@gmail.com <mailto:oleshiiwood@gmail.com>>>:
> >       >     >             >       Hi Michal,
> >       >     >             >
> >       >     >             > You put my nose into the problem. Thank you.
> >       >     >             > I am going to use your point.
> >       >     >             > Let's see what happens.
> >       >     >             >
> >       >     >             > Regards,
> >       >     >             > Oleg
> >       >     >             >
> >       >     >             >
> >       >     >             > ср, 19 апр. 2023 г. в 10:37, Michal Orzel <
> michal.orzel@amd.com <mailto:michal.orzel@amd.com>
> >       <mailto:michal.orzel@amd.com <mailto:michal.orzel@amd.com>>>:
> >       >     >             >       Hi Oleg,
> >       >     >             >
> >       >     >             >       On 19/04/2023 09:03, Oleg Nikitenko
> wrote:
> >       >     >             >       >
> >       >     >             >       >
> >       >     >             >       >
> >       >     >             >       > Hello Stefano,
> >       >     >             >       >
> >       >     >             >       > Thanks for the clarification.
> >       >     >             >       > My company uses yocto for image
> generation.
> >       >     >             >       > What kind of information do you need
> to consult me in this case ?
> >       >     >             >       >
> >       >     >             >       > Maybe modules sizes/addresses which
> were mentioned by @Julien Grall <mailto:julien@xen.org
> >       <mailto:julien@xen.org> <mailto:julien@xen.org <mailto:
> julien@xen.org>>> ?
> >       >     >             >
> >       >     >             >       Sorry for jumping into discussion, but
> FWICS the Xen command line you provided seems to be not the
> >       one
> >       >     >             >       Xen booted with. The error you are
> observing most likely is due to dom0 colors configuration not
> >       being
> >       >     >             >       specified (i.e. lack of dom0_colors=<>
> parameter). Although in the command line you provided, this
> >       parameter
> >       >     >             >       is set, I strongly doubt that this is
> the actual command line in use.
> >       >     >             >
> >       >     >             >       You wrote:
> >       >     >             >       xen,xen-bootargs = "console=dtuart
> dtuart=serial0 dom0_mem=1600M dom0_max_vcpus=2 dom0_vcpus_pin
> >       bootscrub=0 vwfi=native
> >       >     >             >       sched=null timer_slop=0
> way_szize=65536 xen_colors=0-3 dom0_colors=4-7";
> >       >     >             >
> >       >     >             >       but:
> >       >     >             >       1) way_szize has a typo
> >       >     >             >       2) you specified 4 colors (0-3) for
> Xen, but the boot log says that Xen has only one:
> >       >     >             >       (XEN) Xen color(s): [ 0 ]
> >       >     >             >
> >       >     >             >       This makes me believe that no colors
> configuration actually end up in command line that Xen booted
> >       with.
> >       >     >             >       Single color for Xen is a "default if
> not specified" and way size was probably calculated by asking
> >       HW.
> >       >     >             >
> >       >     >             >       So I would suggest to first
> cross-check the command line in use.
> >       >     >             >
> >       >     >             >       ~Michal
> >       >     >             >
> >       >     >             >
> >       >     >             >       >
> >       >     >             >       > Regards,
> >       >     >             >       > Oleg
> >       >     >             >       >
> >       >     >             >       > вт, 18 апр. 2023 г. в 20:44, Stefano
> Stabellini <sstabellini@kernel.org
> >       <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>> <mailto:sstabellini@kernel.org
> >       <mailto:sstabellini@kernel.org> <mailto:sstabellini@kernel.org
> <mailto:sstabellini@kernel.org>>>>:
> >       >     >             >       >
> >       >     >             >       >     On Tue, 18 Apr 2023, Oleg
> Nikitenko wrote:
> >       >     >             >       >     > Hi Julien,
> >       >     >             >       >     >
> >       >     >             >       >     > >> This feature has not been
> merged in Xen upstream yet
> >       >     >             >       >     >
> >       >     >             >       >     > > would assume that upstream +
> the series on the ML [1] work
> >       >     >             >       >     >
> >       >     >             >       >     > Please clarify this point.
> >       >     >             >       >     > Because the two thoughts are
> controversial.
> >       >     >             >       >
> >       >     >             >       >     Hi Oleg,
> >       >     >             >       >
> >       >     >             >       >     As Julien wrote, there is
> nothing controversial. As you are aware,
> >       >     >             >       >     Xilinx maintains a separate Xen
> tree specific for Xilinx here:
> >       >     >             >       >     https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen
> >       <https://github.com/xilinx/xen>> <https://github.com/xilinx/xen <
> https://github.com/xilinx/xen> <https://github.com/xilinx/xen
> >       <https://github.com/xilinx/xen>>>
> >       >     >             >       >
> >       >     >             >       >     and the branch you are using
> (xlnx_rebase_4.16) comes from there.
> >       >     >             >       >
> >       >     >             >       >
> >       >     >             >       >     Instead, the upstream Xen tree
> lives here:
> >       >     >             >       >
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary> <
> https://xenbits.xen.org/gitweb/?p=xen.git;a=summary
> >       <https://xenbits.xen.org/gitweb/?p=xen.git;a=summary>>>
> >       >     >             >       >
> >       >     >             >       >
> >       >     >             >       >     The Cache Coloring feature that
> you are trying to configure is present
> >       >     >             >       >     in xlnx_rebase_4.16, but not yet
> present upstream (there is an
> >       >     >             >       >     outstanding patch series to add
> cache coloring to Xen upstream but it
> >       >     >             >       >     hasn't been merged yet.)
> >       >     >             >       >
> >       >     >             >       >
> >       >     >             >       >     Anyway, if you are using
> xlnx_rebase_4.16 it doesn't matter too much for
> >       >     >             >       >     you as you already have Cache
> Coloring as a feature there.
> >       >     >             >       >
> >       >     >             >       >
> >       >     >             >       >     I take you are using
> ImageBuilder to generate the boot configuration? If
> >       >     >             >       >     so, please post the ImageBuilder
> config file that you are using.
> >       >     >             >       >
> >       >     >             >       >     But from the boot message, it
> looks like the colors configuration for
> >       >     >             >       >     Dom0 is incorrect.
> >       >     >             >       >
> >       >     >             >
> >       >     >             >
> >       >     >             >
> >       >     >
> >       >
> >
> >
> >

[-- Attachment #2: Type: text/html, Size: 63978 bytes --]

^ permalink raw reply	[relevance 4%]

* [RFC PATCH 5/5] xen/privcmd: add IOCTL_PRIVCMD_GSI_FROM_IRQ
  @ 2023-03-12 12:01  6% ` Huang Rui
  0 siblings, 0 replies; 200+ results
From: Huang Rui @ 2023-03-12 12:01 UTC (permalink / raw)
  To: Juergen Gross, Stefano Stabellini, Oleksandr Tyshchenko,
	Boris Ostrovsky, Roger Pau Monné,
	xen-devel, linux-kernel, dri-devel, amd-gfx
  Cc: Alex Deucher, Christian König, Stewart Hildebrand,
	Xenia Ragiadakou, Honglei Huang, Julia Zhang, Chen Jiqian,
	Huang Rui

From: Chen Jiqian <Jiqian.Chen@amd.com>

When hypervisor get an interrupt, it needs interrupt's
gsi number instead of irq number. Gsi number is unique
in xen, but irq number is only unique in one domain.
So, we need to record the relationship between irq and
gsi when dom0 initialized pci devices, and provide syscall
IOCTL_PRIVCMD_GSI_FROM_IRQ to translate irq to gsi. So
that, we can map pirq successfully in hypervisor side.

Signed-off-by: Chen Jiqian <Jiqian.Chen@amd.com>
Signed-off-by: Huang Rui <ray.huang@amd.com>
---
 arch/x86/pci/xen.c               |  4 ++++
 drivers/xen/events/events_base.c | 37 ++++++++++++++++++++++++++++++++
 drivers/xen/privcmd.c            | 20 +++++++++++++++++
 include/uapi/xen/privcmd.h       |  7 ++++++
 include/xen/events.h             |  5 +++++
 5 files changed, 73 insertions(+)

diff --git a/arch/x86/pci/xen.c b/arch/x86/pci/xen.c
index 43b8b6d7147b..3237961c7640 100644
--- a/arch/x86/pci/xen.c
+++ b/arch/x86/pci/xen.c
@@ -143,6 +143,10 @@ static int acpi_register_gsi_xen_pvh(struct device *dev, u32 gsi,
 	else if (rc)
 		printk(KERN_ERR "Failed to setup GSI :%u, err_code:%d\n", gsi, rc);
 
+	rc = xen_pvh_add_gsi_irq_map(gsi, irq);
+	if (rc == -EEXIST)
+		printk(KERN_INFO "Already map the GSI :%u and IRQ: %d\n", gsi, irq);
+
 	return irq;
 }
 
diff --git a/drivers/xen/events/events_base.c b/drivers/xen/events/events_base.c
index 48dff0ed9acd..39a57fed2de3 100644
--- a/drivers/xen/events/events_base.c
+++ b/drivers/xen/events/events_base.c
@@ -967,6 +967,43 @@ int xen_irq_from_gsi(unsigned gsi)
 }
 EXPORT_SYMBOL_GPL(xen_irq_from_gsi);
 
+int xen_gsi_from_irq(unsigned irq)
+{
+	struct irq_info *info;
+
+	list_for_each_entry(info, &xen_irq_list_head, list) {
+		if (info->type != IRQT_PIRQ)
+			continue;
+
+		if (info->irq == irq)
+			return info->u.pirq.gsi;
+	}
+
+	return -1;
+}
+EXPORT_SYMBOL_GPL(xen_gsi_from_irq);
+
+int xen_pvh_add_gsi_irq_map(unsigned gsi, unsigned irq)
+{
+	int tmp_irq;
+	struct irq_info *info;
+
+	tmp_irq = xen_irq_from_gsi(gsi);
+	if (tmp_irq != -1)
+		return -EEXIST;
+
+	info = kzalloc(sizeof(*info), GFP_KERNEL);
+	if (info == NULL)
+		panic("Unable to allocate metadata for GSI%d\n", gsi);
+
+	info->type = IRQT_PIRQ;
+	info->irq = irq;
+	info->u.pirq.gsi = gsi;
+	list_add_tail(&info->list, &xen_irq_list_head);
+
+	return 0;
+}
+
 static void __unbind_from_irq(unsigned int irq)
 {
 	evtchn_port_t evtchn = evtchn_from_irq(irq);
diff --git a/drivers/xen/privcmd.c b/drivers/xen/privcmd.c
index e88e8f6f0a33..830e84451731 100644
--- a/drivers/xen/privcmd.c
+++ b/drivers/xen/privcmd.c
@@ -37,6 +37,7 @@
 #include <xen/page.h>
 #include <xen/xen-ops.h>
 #include <xen/balloon.h>
+#include <xen/events.h>
 
 #include "privcmd.h"
 
@@ -833,6 +834,21 @@ static long privcmd_ioctl_mmap_resource(struct file *file,
 	return rc;
 }
 
+static long privcmd_ioctl_gsi_from_irq(struct file *file, void __user *udata)
+{
+	struct privcmd_gsi_from_irq kdata;
+
+	if (copy_from_user(&kdata, udata, sizeof(kdata)))
+		return -EFAULT;
+
+	kdata.gsi = xen_gsi_from_irq(kdata.irq);
+
+	if (copy_to_user(udata, &kdata, sizeof(kdata)))
+		return -EFAULT;
+
+	return 0;
+}
+
 static long privcmd_ioctl(struct file *file,
 			  unsigned int cmd, unsigned long data)
 {
@@ -868,6 +884,10 @@ static long privcmd_ioctl(struct file *file,
 		ret = privcmd_ioctl_mmap_resource(file, udata);
 		break;
 
+	case IOCTL_PRIVCMD_GSI_FROM_IRQ:
+		ret = privcmd_ioctl_gsi_from_irq(file, udata);
+		break;
+
 	default:
 		break;
 	}
diff --git a/include/uapi/xen/privcmd.h b/include/uapi/xen/privcmd.h
index d2029556083e..55fe748bbfd7 100644
--- a/include/uapi/xen/privcmd.h
+++ b/include/uapi/xen/privcmd.h
@@ -98,6 +98,11 @@ struct privcmd_mmap_resource {
 	__u64 addr;
 };
 
+struct privcmd_gsi_from_irq {
+	__u32 irq;
+	__u32 gsi;
+};
+
 /*
  * @cmd: IOCTL_PRIVCMD_HYPERCALL
  * @arg: &privcmd_hypercall_t
@@ -125,5 +130,7 @@ struct privcmd_mmap_resource {
 	_IOC(_IOC_NONE, 'P', 6, sizeof(domid_t))
 #define IOCTL_PRIVCMD_MMAP_RESOURCE				\
 	_IOC(_IOC_NONE, 'P', 7, sizeof(struct privcmd_mmap_resource))
+#define IOCTL_PRIVCMD_GSI_FROM_IRQ				\
+	_IOC(_IOC_NONE, 'P', 8, sizeof(struct privcmd_gsi_from_irq))
 
 #endif /* __LINUX_PUBLIC_PRIVCMD_H__ */
diff --git a/include/xen/events.h b/include/xen/events.h
index 344081e71584..8377d8dfaa71 100644
--- a/include/xen/events.h
+++ b/include/xen/events.h
@@ -133,6 +133,11 @@ int xen_pirq_from_irq(unsigned irq);
 /* Return the irq allocated to the gsi */
 int xen_irq_from_gsi(unsigned gsi);
 
+/* Return the gsi from irq */
+int xen_gsi_from_irq(unsigned irq);
+
+int xen_pvh_add_gsi_irq_map(unsigned gsi, unsigned irq);
+
 /* Determine whether to ignore this IRQ if it is passed to a guest. */
 int xen_test_irq_shared(int irq);
 
-- 
2.25.1



^ permalink raw reply related	[relevance 6%]

* [PATCH 7/7] xen: simplify sysctl registration for balloon
  2023-03-02 20:46  5% [PATCH 0/7] sysctl: slowly deprecate register_sysctl_table() Luis Chamberlain
@ 2023-03-02 20:46 18% ` Luis Chamberlain
  0 siblings, 0 replies; 200+ results
From: Luis Chamberlain @ 2023-03-02 20:46 UTC (permalink / raw)
  To: ebiederm, keescook, yzaikin, jejb, martin.petersen, minyard, kys,
	haiyangz, wei.liu, decui, song, robinmholt, steve.wahl,
	mike.travis, arnd, gregkh, jirislaby, jgross, sstabellini,
	oleksandr_tyshchenko, xen-devel
  Cc: j.granados, zhangpeng362, tangmeng, willy, nixiaoming, sujiaxun,
	patches, linux-fsdevel, apparmor, linux-raid, linux-scsi,
	linux-hyperv, openipmi-developer, linux-kernel, Luis Chamberlain

register_sysctl_table() is a deprecated compatibility wrapper.
register_sysctl_init() can do the directory creation for you so just
use that.

Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
---
 drivers/xen/balloon.c | 20 +-------------------
 1 file changed, 1 insertion(+), 19 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 617a7f4f07a8..586a1673459e 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -97,24 +97,6 @@ static struct ctl_table balloon_table[] = {
 	{ }
 };
 
-static struct ctl_table balloon_root[] = {
-	{
-		.procname	= "balloon",
-		.mode		= 0555,
-		.child		= balloon_table,
-	},
-	{ }
-};
-
-static struct ctl_table xen_root[] = {
-	{
-		.procname	= "xen",
-		.mode		= 0555,
-		.child		= balloon_root,
-	},
-	{ }
-};
-
 #else
 #define xen_hotplug_unpopulated 0
 #endif
@@ -747,7 +729,7 @@ static int __init balloon_init(void)
 #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
 	set_online_page_callback(&xen_online_page);
 	register_memory_notifier(&xen_memory_nb);
-	register_sysctl_table(xen_root);
+	register_sysctl_init("xen/balloon", balloon_table);
 #endif
 
 	balloon_add_regions();
-- 
2.39.1



^ permalink raw reply related	[relevance 18%]

* [PATCH 0/7] sysctl: slowly deprecate register_sysctl_table()
@ 2023-03-02 20:46  5% Luis Chamberlain
  2023-03-02 20:46 18% ` [PATCH 7/7] xen: simplify sysctl registration for balloon Luis Chamberlain
  0 siblings, 1 reply; 200+ results
From: Luis Chamberlain @ 2023-03-02 20:46 UTC (permalink / raw)
  To: ebiederm, keescook, yzaikin, jejb, martin.petersen, minyard, kys,
	haiyangz, wei.liu, decui, song, robinmholt, steve.wahl,
	mike.travis, arnd, gregkh, jirislaby, jgross, sstabellini,
	oleksandr_tyshchenko, xen-devel
  Cc: j.granados, zhangpeng362, tangmeng, willy, nixiaoming, sujiaxun,
	patches, linux-fsdevel, apparmor, linux-raid, linux-scsi,
	linux-hyperv, openipmi-developer, linux-kernel, Luis Chamberlain

As the large array of sysctls in kernel/sysctl.c is reduced we get to
the point of wanting to optimize how we register sysctls by only dealing
with flat simple structures, with no subdirectories. In particular the
last empty element should not be needed. We'll get there, and save some
memory, but as we move forward that path will be come the more relevant
path to use in the sysctl registration. It is much simpler as it avoids
recursion.

Turns out we can also convert existing users of register_sysctl_table()
which just need their subdirectories created for them. This effort
addresses most users of register_sysctl_table() in drivers/ except
parport -- that needs a bit more review.

This is part of the process to deprecate older sysctl users which uses
APIs which can incur recursion, but don't need it [0]. This is the
second effort.

Yes -- we'll get to the point *each* of these conversions means saving
one empty syctl, but that change needs a bit more careful review before
merging. But since these conversion are also deleting tables for
subdirectories, the delta in size of the kernel should not incrase
really.

The most complex change is the sgi-xp change which does deal with
a case where we have a subdirectory with an entry, I just split
that in two registrations. No point in keeping recursion just for
a few minor if we can simplify code around. More eyeballs / review /
testing on that change is appreciated.

Sending these out early so they can get tested properly early on
linux-next. I'm happy to take these via sysctl-next [0] but since
I don' think register_sysctl_table() will be nuked on v6.4 I think
it's fine for each of these to go into each respective tree. I can
pick up last stragglers on sysctl-next. If you want me to take this
via sysctl-next too, just let me know and I'm happy to do that. Either
way works.

[0] https://lkml.kernel.org/r/20230302202826.776286-1-mcgrof@kernel.org

Luis Chamberlain (7):
  scsi: simplify sysctl registration with register_sysctl()
  ipmi: simplify sysctl registration
  hv: simplify sysctl registration
  md: simplify sysctl registration
  sgi-xp: simplify sysctl registration
  tty: simplify sysctl registration
  xen: simplify sysctl registration for balloon

 drivers/char/ipmi/ipmi_poweroff.c | 16 +---------------
 drivers/hv/vmbus_drv.c            | 11 +----------
 drivers/md/md.c                   | 22 +---------------------
 drivers/misc/sgi-xp/xpc_main.c    | 24 ++++++++++--------------
 drivers/scsi/scsi_sysctl.c        | 16 +---------------
 drivers/tty/tty_io.c              | 20 +-------------------
 drivers/xen/balloon.c             | 20 +-------------------
 7 files changed, 16 insertions(+), 113 deletions(-)

-- 
2.39.1



^ permalink raw reply	[relevance 5%]

* Re: AW: AW: Xenstore failed to start / Xenalyze on ARM ( NXP S32G3 with Cortex-A53)
  2023-02-07  9:35  4%       ` AW: AW: Xenstore failed to start / " El Mesdadi Youssef ESK UILD7
@ 2023-02-11  0:56  0%         ` Stefano Stabellini
  0 siblings, 0 replies; 200+ results
From: Stefano Stabellini @ 2023-02-11  0:56 UTC (permalink / raw)
  To: El Mesdadi Youssef ESK UILD7; +Cc: Julien Grall, xen-devel, Stefano Stabellini

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

On Tue, 7 Feb 2023, El Mesdadi Youssef ESK UILD7 wrote:
> > hello Julien,
> 
> >first of all thank you so much for the support,  after flashing Xen on the S32G3 I noticed that I cannot create DomUs.
> >when I also give the xl list, it does not even show Dom0 and stays blocked.
> 
> root@s32g399aevb3:~# xl list
> Name                                        ID   Mem VCPUs      State   Time(s)
> 
> root@s32g399aevb3:~# 

This is usually due to the init script (/etc/init.d/xencommons or
systemd scripts) hanging or crashing. As a consequence xenstored doesn't
get launched properly.

 
> >I assume this is because xenstore failed to start, the error is shown in the messages during the boot time.
> 
> [FAILED] Failed to start The Xen xenstore.
> See 'systemctl status xenstored.service' for details.

You need to fix this. A couple of options:

- ignore the systemd scripts, and instead try to execute manually
  bash /etc/init.d/xencommons start
- try to launch xenstored manually with: xenstored &
- have a look at the way Yocto meta-virtualization sets up the systemd
  init scripts as this seems to be a "distro" error
  https://github.com/lgirdk/meta-virtualization/blob/master/recipes-extended/xen/xen-tools.inc
- switch from systemd to SysVinit


> [FAILED] Failed to mount NFSD configuration filesystem.
> See 'systemctl status proc-fs-nfsd.mount' for details.
> 
> >Here is xl.conf in case you need information about this file:
> 
> root@s32g399aevb3:/etc/xen# cat xl.conf
> ## Global XL config file ##
> 
> # Set domain-id policy. "xen" means that the hypervisor will choose the
> # id of a new domain. "random" means that a random value will be chosen.
> #domid_policy="xen"
> 
> # Control whether dom0 is ballooned down when xen doesn't have enough
> # free memory to create a domain.  "auto" means only balloon if dom0
> # starts with all the host's memory.
> #autoballoon="auto"
> 
> # full path of the lockfile used by xl during domain creation
> #lockfile="/var/lock/xl"
> 
> # default output format used by "xl list -l"
> #output_format="json"
> 
> # first block device to be used for temporary VM disk mounts
> #blkdev_start="xvda"
> 
> # default option to run hotplug scripts from xl
> # if disabled the old behaviour will be used, and hotplug scripts will be
> # launched by udev.
> #run_hotplug_scripts=1
> 
> # default backend domain to connect guest vifs to.  This can be any
> # valid domain identifier.
> #vif.default.backend="0"
> 
> # default gateway device to use with vif-route hotplug script
> #vif.default.gatewaydev="eth0"
> 
> # default vif script to use if none is specified in the guest config
> #vif.default.script="vif-bridge"
> 
> # default bridge device to use with vif-bridge hotplug scripts
> #vif.default.bridge="xenbr0"
> 
> # Reserve a claim of memory when launching a guest. This guarantees immediate
> # feedback whether the guest can be launched due to memory exhaustion
> # (which can take a long time to find out if launching huge guests).
> # see xl.conf(5) for details.
> #claim_mode=1
> 
> # Specify global vcpu hard affinity masks. See xl.conf(5) for details.
> #vm.cpumask="0-7"
> #vm.pv.cpumask="0-3"
> #vm.hvm.cpumask="3-7"
> 
> 
> >next are the messages during the boot time:
> 
> NOTICE:  Reset status: Power-On Reset
> NOTICE:  BL2: v2.5(release):bsp33.0-2.5-dirty
> NOTICE:  BL2: Built : 14:01:09, Jun 15 2022
> NOTICE:  BL2: Booting BL31
> 
> 
> U-Boot 2020.04+g9cdfca686e (Jun 10 2022 - 11:46:41 +0000)
> 
> CPU:   NXP S32G399A rev. 1.0
> Model: NXP S32G3XXX-EVB
> DRAM:  3.5 GiB
> MMC:   FSL_SDHC: 0
> Loading Environment from MMC... OK
> Using internal clock for PCIe0, CRNS
> Configuring PCIe0 as RootComplex(x2)
> Using internal clock for PCIe1, CRNS
> Frequency 100Mhz configured for PCIe1
> Configuring PCIe1 as SGMII [XPCS0 1G, XPCS1 OFF(PCIex1)]
> Setting PCI Device and Vendor IDs to 0x4300:0x1957
> PCIe0: Failed to get link up
> Pcie0: LINK_DBG_1: 0x00000000, LINK_DBG_2: 0x00000800 (expected 0x000000d1)
> DEBUG_R0: 0x00ed4001, DEBUG_R1: 0x08600000
> PCI: Failed autoconfig bar 1c
> PCIe1: Not configuring PCIe, PHY not configured
> In:    serial@401c8000
> Out:   serial@401c8000
> Err:   serial@401c8000
> Loading SJA1105 firmware over SPI 5:0
> No matching device ID found for devid FFFFFFFF, cs 0.
> Error SJA1105 configuration not completed
> Net:   EQOS phy: rgmii @ 4
> 
> Warning: eth_eqos (eth0) using random MAC address - f6:65:86:a2:0e:f8
> eth0: eth_eqos PFE: emac0: sgmii emac1: none emac2: none
> 
> Warning: eth_pfeng using MAC address from ROM
> , eth1: eth_pfeng
> Hit any key to stop autoboot:  0
>  PFE: emac0: sgmii emac1: none emac2: none
>  PFE: emac0: sgmii emac1: none emac2: none
> 1039 bytes read in 9 ms (112.3 KiB/s)
> ## Executing script at 80200000
> 1048688 bytes read in 36 ms (27.8 MiB/s)
> 14034952 bytes read in 201 ms (66.6 MiB/s)
> 38461 bytes read in 9 ms (4.1 MiB/s)
> ## Flattened Device Tree blob at 86600000
>    Booting using the fdt blob at 0x86600000
>    Using Device Tree in place at 0000000086600000, end 000000008660dfff
> DT: Enabling PFE
> DT: Enabling PFE_EMAC_0
> DT: pfe0 set to 00:01:be:be:ef:11
> DT: Disabling PFE_EMAC_1
> DT: Disabling PFE_EMAC_2
> 
> Starting kernel ...
> 
> - UART enabled -
> - Boot CPU booting -
> - Current EL 00000008 -
> - Initialize CPU -
> - Turning on paging -
> - Zero BSS -
> - Ready -
> (XEN) Checking for initrd in /chosen
> (XEN) RAM: 0000000080000000 - 00000000ffffffff
> (XEN) RAM: 0000000880000000 - 00000008dfffffff
> (XEN)
> (XEN) MODULE[0]: 0000000085600000 - 00000000857430c8 Xen
> (XEN) MODULE[1]: 0000000086600000 - 000000008660a000 Device Tree
> (XEN) MODULE[2]: 0000000085800000 - 0000000086562808 Kernel
> (XEN)  RESVD[0]: 00000000ff800000 - 00000000ff9fffff
> (XEN)  RESVD[1]: 00000000c0000000 - 00000000c03fffff
> (XEN)  RESVD[2]: 00000000c0400000 - 00000000c07fffff
> (XEN)  RESVD[3]: 00000000d0000000 - 00000000d03fffff
> (XEN)  RESVD[4]: 0000000084000000 - 000000008407ffff
> (XEN)  RESVD[5]: 0000000034000000 - 000000003407ffff
> (XEN)  RESVD[6]: 0000000034080000 - 000000003409ffff
> (XEN)  RESVD[7]: 0000000083200000 - 00000000835dffff
> (XEN)  RESVD[8]: 00000000835e0000 - 00000000835fffff
> (XEN)
> (XEN)
> (XEN) Command line: dom0_mem=512M dom0_max_vcpus=1 bootscrub=0
> (XEN) PFN compression on bits 20...22
> (XEN) Domain heap initialised
> (XEN) Booting using Device Tree
> (XEN) Platform: NXP S32-Gen1
> (XEN) No dtuart path configured
> (XEN) Bad console= option 'dtuart'
>  Xen 4.14.0
> (XEN) Xen version 4.14.0 (xen-4.14-r0@fsl-auto) (aarch64-fsl-linux-gcc (GCC) 10.                                                                                                                               2.0) debug=y  2022-05-18
> (XEN) Latest ChangeSet: Wed May 18 15:47:26 2022 +0300 git:becdd18e50-dirty
> (XEN) build-id: c93be820bfe87b5abccd95ea86e98121e1231249
> (XEN) Processor: 410fd034: "ARM Limited", variant: 0x0, part 0xd03, rev 0x4
> (XEN) 64-bit Execution:
> (XEN)   Processor Features: 0000000001002222 0000000000000000
> (XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
> (XEN)     Extensions: FloatingPoint AdvancedSIMD GICv3-SysReg
> (XEN)   Debug Features: 0000000010305106 0000000000000000
> (XEN)   Auxiliary Features: 0000000000000000 0000000000000000
> (XEN)   Memory Model Features: 0000000000001122 0000000000000000
> (XEN)   ISA Features:  0000000000011120 0000000000000000
> (XEN) 32-bit Execution:
> (XEN)   Processor Features: 00000131:10011011
> (XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
> (XEN)     Extensions: GenericTimer Security
> (XEN)   Debug Features: 03010066
> (XEN)   Auxiliary Features: 00000000
> (XEN)   Memory Model Features: 10201105 40000000 01260000 02102211
> (XEN)  ISA Features: 02101110 13112111 21232042 01112131 00011142 00011121
> (XEN) Using SMC Calling Convention v1.2
> (XEN) Using PSCI v1.1
> (XEN) SMP: Allowing 8 CPUs
> (XEN) enabled workaround for: ARM erratum 1530924
> (XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 5000 KHz
> (XEN) GICv3 initialization:
> (XEN)       gic_dist_addr=0x00000050800000
> (XEN)       gic_maintenance_irq=25
> (XEN)       gic_rdist_stride=0
> (XEN)       gic_rdist_regions=1
> (XEN)       redistributor regions:
> (XEN)         - region 0: 0x00000050900000 - 0x00000050b00000
> (XEN) GICv3 compatible with GICv2 cbase 0x00000050400000 vbase 0x00000050420000
> (XEN) GICv3: 576 lines, (IID 0001143b).
> (XEN) GICv3: CPU0: Found redistributor in region 0 @000000004001a000
> (XEN) XSM Framework v1.0.0 initialized
> (XEN) Initialising XSM SILO mode
> (XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
> (XEN) Initializing Credit2 scheduler
> (XEN)  load_precision_shift: 18
> (XEN)  load_window_shift: 30
> (XEN)  underload_balance_tolerance: 0
> (XEN)  overload_balance_tolerance: -3
> (XEN)  runqueues arrangement: socket
> (XEN)  cap enforcement granularity: 10ms
> (XEN) load tracking window length 1073741824 ns
> (XEN) Allocated console ring of 64 KiB.
> (XEN) CPU0: Guest atomics will try 13 times before pausing the domain
> (XEN) Bringing up CPU1
> - CPU 00000001 booting -
> - Current EL 00000008 -
> - Initialize CPU -
> - Turning on paging -
> - Ready -
> (XEN) GICv3: CPU1: Found redistributor in region 0 @000000004003a000
> (XEN) CPU1: Guest atomics will try 15 times before pausing the domain
> (XEN) CPU 1 booted.
> (XEN) Bringing up CPU2
> - CPU 00000100 booting -
> - Current EL 00000008 -
> - Initialize CPU -
> - Turning on paging -
> - Ready -
> (XEN) GICv3: CPU2: Found redistributor in region 0 @000000004009a000
> (XEN) CPU2: Guest atomics will try 15 times before pausing the domain
> (XEN) CPU 2 booted.
> (XEN) Bringing up CPU3
> - CPU 00000101 booting -
> - Current EL 00000008 -
> - Initialize CPU -
> - Turning on paging -
> - Ready -
> (XEN) GICv3: CPU3: Found redistributor in region 0 @00000000400ba000
> (XEN) CPU3: Guest atomics will try 15 times before pausing the domain
> (XEN) CPU 3 booted.
> (XEN) Bringing up CPU4
> - CPU 00000002 booting -
> - Current EL 00000008 -
> - Initialize CPU -
> - Turning on paging -
> - Ready -
> (XEN) GICv3: CPU4: Found redistributor in region 0 @000000004005a000
> (XEN) CPU4: Guest atomics will try 14 times before pausing the domain
> (XEN) CPU 4 booted.
> (XEN) Bringing up CPU5
> - CPU 00000003 booting -
> - Current EL 00000008 -
> - Initialize CPU -
> - Turning on paging -
> - Ready -
> (XEN) GICv3: CPU5: Found redistributor in region 0 @000000004007a000
> (XEN) CPU5: Guest atomics will try 15 times before pausing the domain
> (XEN) CPU 5 booted.
> (XEN) Bringing up CPU6
> - CPU 00000102 booting -
> - Current EL 00000008 -
> - Initialize CPU -
> - Turning on paging -
> - Ready -
> (XEN) GICv3: CPU6: Found redistributor in region 0 @00000000400da000
> (XEN) CPU6: Guest atomics will try 16 times before pausing the domain
> (XEN) CPU 6 booted.
> (XEN) Bringing up CPU7
> - CPU 00000103 booting -
> - Current EL 00000008 -
> - Initialize CPU -
> - Turning on paging -
> - Ready -
> (XEN) GICv3: CPU7: Found redistributor in region 0 @00000000400fa000
> (XEN) CPU7: Guest atomics will try 15 times before pausing the domain
> (XEN) CPU 7 booted.
> (XEN) Brought up 8 CPUs
> (XEN) I/O virtualisation disabled
> (XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
> (XEN) P2M: 3 levels with order-1 root, VTCR 0x80023558
> (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
> (XEN) Adding cpu 0 to runqueue 0
> (XEN)  First cpu on runqueue, activating
> (XEN) Adding cpu 1 to runqueue 0
> (XEN) Adding cpu 2 to runqueue 0
> (XEN) Adding cpu 3 to runqueue 0
> (XEN) Adding cpu 4 to runqueue 0
> (XEN) Adding cpu 5 to runqueue 0
> (XEN) Adding cpu 6 to runqueue 0
> (XEN) Adding cpu 7 to runqueue 0
> (XEN) alternatives: Patching with alt table 00000000002d4308 -> 00000000002d4b3c
> (XEN) *** LOADING DOMAIN 0 ***
> (XEN) Loading d0 kernel from boot module @ 0000000085800000
> (XEN) Allocating 1:1 mappings totalling 512MB for dom0:
> (XEN) BANK[0] 0x000000a0000000-0x000000c0000000 (512MB)
> (XEN) Grant table range: 0x00000085600000-0x00000085640000
> (XEN) Allocating PPI 16 for event channel interrupt
> (XEN) Loading zImage from 0000000085800000 to 00000000a0000000-00000000a0d62808
> (XEN) Loading d0 DTB to 0x00000000a8000000-0x00000000a800947a
> (XEN) Initial low memory virq threshold set at 0x4000 pages.
> (XEN) Std. Loglevel: All
> (XEN) Guest Loglevel: All
> (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
> (XEN) Freed 352kB init memory.
> (XEN) d0v0: vGICD: RAZ on reserved register offset 0x00000c
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER24
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER28
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER32
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER36
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER40
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER44
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER48
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER52
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER56
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER60
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER64
> (XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER68
> (XEN) d0v0: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
> [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
> [    0.000000] Linux version 5.10.109-rt65+g0bace7fde5f5 (oe-user@oe-host) (aarc                                                                                                                               h64-fsl-linux-gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.35.1) #1 SMP PREEMPT Fri                                                                                                                                Jun 24 15:01:08 UTC 2022
> [    0.000000] Machine model: NXP S32G3XXX-EVB3
> [    0.000000] Xen 4.14 support found
> [    0.000000] Reserved memory: created DMA memory pool at 0x0000000083200000, s                                                                                                                               ize 3 MiB
> [    0.000000] OF: reserved mem: initialized node pfebufs@83200000, compatible i                                                                                                                               d shared-dma-pool
> [    0.000000] Zone ranges:
> [    0.000000]   DMA      [mem 0x0000000034000000-0x00000000ff9fffff]
> [    0.000000]   DMA32    empty
> [    0.000000]   Normal   empty
> [    0.000000] Movable zone start for each node
> [    0.000000] Early memory node ranges
> [    0.000000]   node   0: [mem 0x0000000034000000-0x000000003409ffff]
> [    0.000000]   node   0: [mem 0x0000000083200000-0x00000000835dffff]
> [    0.000000]   node   0: [mem 0x00000000835e0000-0x00000000835fffff]
> [    0.000000]   node   0: [mem 0x0000000084000000-0x000000008407ffff]
> [    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000bfffffff]
> [    0.000000]   node   0: [mem 0x00000000c0000000-0x00000000c07fffff]
> [    0.000000]   node   0: [mem 0x00000000d0000000-0x00000000d03fffff]
> [    0.000000]   node   0: [mem 0x00000000ff800000-0x00000000ff9fffff]
> [    0.000000] Initmem setup node 0 [mem 0x0000000034000000-0x00000000ff9fffff]
> [    0.000000] cma: Reserved 256 MiB at 0x00000000ad000000
> [    0.000000] psci: probing for conduit method from DT.
> [    0.000000] psci: PSCIv1.1 detected in firmware.
> [    0.000000] psci: Using standard PSCI v0.2 function IDs
> [    0.000000] psci: Trusted OS migration not required
> [    0.000000] psci: SMC Calling Convention v1.1
> [    0.000000] percpu: Embedded 17 pages/cpu s32024 r8192 d29416 u69632
> [    0.000000] Detected VIPT I-cache on CPU0
> [    0.000000] CPU features: detected: ARM erratum 845719
> [    0.000000] CPU features: detected: GIC system register CPU interface
> [    0.000000] CPU features: detected: ARM errata 1165522, 1319367, 1530923, or                                                                                                                                1530924
> [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 134109
> [    0.000000] Kernel command line: console=ttyLF0,115200 earlycon=xen earlyprin                                                                                                                               tk=xen root=/dev/mmcblk0p2 rw clk_ignore_unused
> [    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes,                                                                                                                                linear)
> [    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, li                                                                                                                               near)
> [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
> [    0.000000] Memory: 202252K/543872K available (8766K kernel code, 650K rwdata                                                                                                                               , 2880K rodata, 1344K init, 245K bss, 79476K reserved, 262144K cma-reserved)
> [    0.000000] rcu: Preemptible hierarchical RCU implementation.
> [    0.000000] rcu:     RCU event tracing is enabled.
> [    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.
> [    0.000000]  Trampoline variant of Tasks RCU enabled.
> [    0.000000]  Tracing variant of Tasks RCU enabled.
> [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jif                                                                                                                               fies.
> [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
> [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
> [    0.000000] GICv3: 544 SPIs implemented
> [    0.000000] GICv3: 0 Extended SPIs implemented
> [    0.000000] GICv3: Distributor has no Range Selector support
> [    0.000000] GICv3: 16 PPIs implemented
> [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000050900000
> [    0.000000] random: get_random_bytes called from start_kernel+0x31c/0x4ec wit                                                                                                                               h crng_init=0
> [    0.000000] arch_timer: cp15 timer(s) running at 5.00MHz (virt).
> [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles:                                                                                                                                0x127350b88, max_idle_ns: 440795202120 ns
> [    0.000001] sched_clock: 56 bits at 5MHz, resolution 200ns, wraps every 43980                                                                                                                               46511100ns
> [    0.000357] Console: colour dummy device 80x25
> [    0.000385] Calibrating delay loop (skipped), value calculated using timer fr                                                                                                                               equency.. 10.00 BogoMIPS (lpj=20000)
> [    0.000395] pid_max: default: 32768 minimum: 301
> [    0.000489] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, line                                                                                                                               ar)
> [    0.000500] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes,                                                                                                                                linear)
> [    0.001943] xen:grant_table: Grant tables using version 1 layout
> [    0.001964] Grant table initialized
> [    0.001994] xen:events: Using FIFO-based ABI
> [    0.002023] Xen: initializing cpu0
> [    0.002127] rcu: Hierarchical SRCU implementation.
> [    0.002412] smp: Bringing up secondary CPUs ...
> [    0.002415] smp: Brought up 1 node, 1 CPU
> [    0.002419] SMP: Total of 1 processors activated.
> [    0.002427] CPU features: detected: 32-bit EL0 Support
> [    0.002433] CPU features: detected: CRC32 instructions
> [    0.009718] CPU: All CPU(s) started at EL1
> [    0.009731] alternatives: patching kernel code
> [    0.010183] devtmpfs: initialized
> [    0.014415] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, ma                                                                                                                               x_idle_ns: 7645041785100000 ns
> [    0.014429] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
> [    0.020426] pinctrl core: initialized pinctrl subsystem
> [    0.020983] NET: Registered protocol family 16
> [    0.022141] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
> [    0.022218] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allo                                                                                                                               cations
> [    0.022309] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic al                                                                                                                               locations
> [    0.022851] thermal_sys: Registered thermal governor 'step_wise'
> [    0.023110] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
> [    0.023153] ASID allocator initialised with 65536 entries
> [    0.023218] xen:swiotlb_xen: Warning: only able to allocate 4 MB for software                                                                                                                                IO TLB
> [    0.023933] software IO TLB: mapped [mem 0x00000000a1800000-0x00000000a1c0000                                                                                                                               0] (4MB)
> [    0.023998] Serial: AMBA PL011 UART driver
> [    0.024571] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
> [    0.024649] arm-scmi firmware:scmi: No. of Protocol > MAX_PROTOCOLS_IMP
> [    0.024654] arm-scmi firmware:scmi: SCMI Protocol v2.0 'NXP:S32G399A' Firmwar                                                                                                                               e version 0x0
> [    0.039850] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
> [    0.039858] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
> [    0.039862] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
> [    0.039866] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
> [    0.043412] scmi-clocks scmi_dev.1: failed to register clock 87
> [    0.043421] scmi-clocks scmi_dev.1: failed to register clock 88
> [    0.043428] scmi-clocks scmi_dev.1: failed to register clock 89
> [    0.043434] scmi-clocks scmi_dev.1: failed to register clock 90
> [    0.043507] scmi-clocks scmi_dev.1: failed to register clock 95
> [    0.043514] scmi-clocks scmi_dev.1: failed to register clock 96
> [    0.043520] scmi-clocks scmi_dev.1: failed to register clock 97
> [    0.043526] scmi-clocks scmi_dev.1: failed to register clock 98
> [    0.046871] xen:balloon: Initialising balloon driver
> [    0.047230] vgaarb: loaded
> [    0.047367] SCSI subsystem initialized
> [    0.047494] usbcore: registered new interface driver usbfs
> [    0.047521] usbcore: registered new interface driver hub
> [    0.047541] usbcore: registered new device driver usb
> [    0.047818] pps_core: LinuxPPS API ver. 1 registered
> [    0.047821] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giome                                                                                                                               tti <giometti@linux.it>
> [    0.047831] PTP clock support registered
> [    0.048664] clocksource: Switched to clocksource arch_sys_counter
> [    0.053083] NET: Registered protocol family 2
> [    0.053173] IP idents hash table entries: 16384 (order: 5, 131072 bytes, line                                                                                                                               ar)
> [    0.053762] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192                                                                                                                                bytes, linear)
> [    0.053787] TCP established hash table entries: 8192 (order: 4, 65536 bytes,                                                                                                                                linear)
> [    0.053847] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear                                                                                                                               )
> [    0.053970] TCP: Hash tables configured (established 8192 bind 8192)
> [    0.054028] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
> [    0.054052] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
> [    0.054147] NET: Registered protocol family 1
> [    0.054435] RPC: Registered named UNIX socket transport module.
> [    0.054439] RPC: Registered udp transport module.
> [    0.054441] RPC: Registered tcp transport module.
> [    0.054443] RPC: Registered tcp NFSv4.1 backchannel transport module.
> [    0.054451] PCI: CLS 0 bytes, default 64
> [    0.055375] workingset: timestamp_bits=62 max_order=17 bucket_order=0
> [    0.055858] fuse: init (API version 7.32)
> [    0.055965] NET: Registered protocol family 38
> [    0.055988] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 2                                                                                                                               48)
> [    0.055993] io scheduler mq-deadline registered
> [    0.055997] io scheduler kyber registered
> [    0.057025] s32g-siul2-pinctrl 4009c240.siul2-pinctrl: initialized s32 pinctr                                                                                                                               l driver
> [    0.057965] gpio-339 (llcecan0-en): hogged as output/high
> [    0.057983] gpio-340 (llcecan0-stby): hogged as output/high
> [    0.057998] gpio-342 (llcecan4-en): hogged as output/high
> [    0.058014] gpio-343 (llcecan4-stby): hogged as output/high
> [    0.058029] gpio-345 (llcecan5-en): hogged as output/high
> [    0.058044] gpio-346 (llcecan5-stby): hogged as output/high
> [    0.058058] gpio-351 (llcecan6-en): hogged as output/high
> [    0.058072] gpio-352 (llcecan6-stby): hogged as output/high
> [    0.058089] gpio-353 (llcecan12-stby): hogged as output/high
> [    0.058103] gpio-358 (llcecan12-en): hogged as output/high
> [    0.058120] gpio-360 (llcecan13-en): hogged as output/high
> [    0.058135] gpio-361 (llcecan13-stby): hogged as output/high
> [    0.058151] gpio-382 (llcecan15-en): hogged as output/high
> [    0.058165] gpio-383 (llcecan15-stby): hogged as output/high
> [    0.059358] xen:xen_evtchn: Event-channel device installed
> [    0.060467] serial: Freescale linflex driver
> [    0.060686] 401c8000.serial: ttyLF0 at MMIO 0x401c8000 (irq = 25, base_baud =                                                                                                                                7812500) is a FSL_LINFLEX
> [    0.060735] printk: console [ttyLF0] enabled
> [    0.061072] 401cc000.serial: ttyLF1 at MMIO 0x401cc000 (irq = 26, base_baud =                                                                                                                                7812500) is a FSL_LINFLEX
> [    0.061385] 402bc000.serial: ttyLF2 at MMIO 0x402bc000 (irq = 44, base_baud =                                                                                                                                7812500) is a FSL_LINFLEX
> [    0.061832] cacheinfo: Unable to detect cache hierarchy for CPU 0
> [    0.061846] Invalid max_queues (4), will use default max: 1.
> [    0.062193] fsl_fccu 4030c000.fccu: FCCU status is 0 (normal)
> [    0.063813] spi-nor spi0.0: mt35xu02g (262144 Kbytes)
> [    0.065365] vcan: Virtual CAN interface driver
> [    0.065370] slcan: serial line CAN interface driver
> [    0.065372] slcan: 10 dynamic interface channels.
> [    0.065377] CAN device driver interface
> [    0.065555] e100: Intel(R) PRO/100 Network Driver
> [    0.065558] e100: Copyright(c) 1999-2006 Intel Corporation
> [    0.065585] e1000: Intel(R) PRO/1000 Network Driver
> [    0.065588] e1000: Copyright (c) 1999-2006 Intel Corporation.
> [    0.065615] e1000e: Intel(R) PRO/1000 Network Driver
> [    0.065616] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
> [    0.065642] igb: Intel(R) Gigabit Ethernet Network Driver
> [    0.065645] igb: Copyright (c) 2007-2014 Intel Corporation.
> [    0.065920] xen_netfront: Initialising Xen virtual ethernet driver
> [    0.066016] hse-uio 40211000.mu1b: firmware not found
> [    0.066208] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
> [    0.066213] ehci-pci: EHCI PCI platform driver
> [    0.066318] usbcore: registered new interface driver uas
> [    0.066346] usbcore: registered new interface driver usb-storage
> [    0.067503] s32gen1-rtc 40060000.rtc: registered as rtc0
> [    0.067533] s32gen1-rtc 40060000.rtc: setting system clock to 1970-01-01T00:0                                                                                                                               0:00 UTC (0)
> [    0.067665] i2c /dev entries driver
> [    0.068026] sac58r-wdt 4010c000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
> [    0.068204] sac58r-wdt 40200000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
> [    0.068371] sac58r-wdt 40204000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
> [    0.068538] sac58r-wdt 40208000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
> [    0.068776] sac58r-wdt 40500000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
> [    0.068950] sac58r-wdt 40504000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
> [    0.069112] sac58r-wdt 40508000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
> [    0.069279] sac58r-wdt 4050c000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
> [    0.069492] sdhci: Secure Digital Host Controller Interface driver
> [    0.069495] sdhci: Copyright(c) Pierre Ossman
> [    0.069497] sdhci-pltfm: SDHCI platform and OF driver helper
> [    0.069837] mmc0: CQHCI version 5.10
> [    0.070452] hse 40210000.mu0b: firmware not found
> [    0.070658] usbcore: registered new interface driver usbhid
> [    0.070662] usbhid: USB HID core driver
> [    0.082993] s32-adc 401f8000.adc: Device initialized successfully.
> [    0.094947] s32-adc 402e8000.adc: Device initialized successfully.
> [    0.095109] nxp_s32_ddr_perf 403e0000.ddr-perf: probing device
> [    0.095353] nxp_s32_ddr_perf 403e0000.ddr-perf: device initialized successful                                                                                                                               ly
> [    0.095430] s32-siul2-nvmem 4009c000.nvram: initialize s32 siul2 nvmem driver
> [    0.095550] s32-siul2-nvmem 44010000.nvram: initialize s32 siul2 nvmem driver
> [    0.095949] NET: Registered protocol family 10
> [    0.096436] Segment Routing with IPv6
> [    0.096476] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
> [    0.096852] NET: Registered protocol family 17
> [    0.096947] can: controller area network core
> [    0.096980] NET: Registered protocol family 29
> [    0.096984] can: raw protocol
> [    0.096989] can: broadcast manager protocol
> [    0.096996] can: netlink gateway - max_hops=1
> [    0.097014] 8021q: 802.1Q VLAN Support v1.8
> [    0.097149] printk: console [ttyLF0]: printing thread started
> [    0.100703] mmc0: SDHCI controller on 402f0000.usdhc [402f0000.usdhc] using A                                                                                                                               DMA
> [    0.108674] phy-s32gen1-serdes 40480000.serdes: Using mode 0 for SerDes subsy                                                                                                                               stem
> [    0.109020] phy-s32gen1-serdes 44180000.serdes: Using mode 3 for SerDes subsy                                                                                                                               stem
> [    0.115131] phy-s32gen1-serdes 44180000.serdes: Unstable RX detected on XPCS1
> [    0.115158] phy-s32gen1-serdes 44180000.serdes: Unstable RX detected on XPCS0
> [    0.115337] s32gen1-pcie 40400000.pcie: Configured as RootComplex
> [    0.115627] s32gen1-pcie 40400000.pcie: Setting PCI Device and Vendor IDs to                                                                                                                                0x4300:0x1957
> [    0.116614] s32gen1-pcie 40400000.pcie: Allocated line 0 for interrupt 52 (ms                                                                                                                               i)
> [    0.383316] mmc0: Command Queue Engine enabled
> [    0.383326] mmc0: new DDR MMC card at address 0001
> [    0.391409] mmcblk0: mmc0:0001 G1M15M 59.3 GiB
> [    0.391539] mmcblk0boot0: mmc0:0001 G1M15M partition 1 31.5 MiB
> [    0.391661] mmcblk0boot1: mmc0:0001 G1M15M partition 2 31.5 MiB
> [    0.391804] mmcblk0rpmb: mmc0:0001 G1M15M partition 3 4.00 MiB, chardev (243:                                                                                                                               0)
> [    0.399208]  mmcblk0: p1 p2 p3
> [    1.136116] s32gen1-pcie 40400000.pcie: Failed to stabilize PHY link
> [    1.136123] s32gen1-pcie 40400000.pcie: Configuring as RootComplex
> [    1.136136] s32gen1-pcie 40400000.pcie: host bridge /soc/pcie@40400000 ranges                                                                                                                               :
> [    1.136177] s32gen1-pcie 40400000.pcie:       IO 0x5ffffe0000..0x5ffffeffff -                                                                                                                               > 0x0000000000
> [    1.136195] s32gen1-pcie 40400000.pcie:      MEM 0x5800000000..0x5ffffdffff -                                                                                                                               > 0x0000000000
> (XEN) physdev.c:16:d0v0 PHYSDEVOP cmd=25: not implemented
> [    2.142041] s32gen1-pcie 40400000.pcie: Phy link never came up
> (XEN) physdev.c:16:d0v0 PHYSDEVOP cmd=15: not implemented
> [    2.142133] s32gen1-pcie 40400000.pcie: PCI host bridge to bus 0000:00
> [    2.142139] pci_bus 0000:00: root bus resource [bus 00-ff]
> [    2.142147] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
> [    2.142153] pci_bus 0000:00: root bus resource [mem 0x5800000000-0x5ffffdffff                                                                                                                               ] (bus address [0x00000000-0x7fffdffff])
> [    2.142201] pci 0000:00:00.0: [16c3:4300] type 01 class 0x060400
> [    2.142224] pci 0000:00:00.0: reg 0x10: [mem 0x5800000000-0x58000fffff]
> [    2.142242] pci 0000:00:00.0: reg 0x38: [mem 0x5800000000-0x580000ffff pref]
> [    2.142339] pci 0000:00:00.0: supports D1
> [    2.142344] pci 0000:00:00.0: PME# supported from D0 D1 D3hot D3cold
> [    2.165526] pci 0000:00:00.0: Failed to add - passthrough or MSI/MSI-X might                                                                                                                                fail!
> [    2.168521] pci 0000:00:00.0: BAR 0: assigned [mem 0x5800000000-0x58000fffff]
> [    2.168532] pci 0000:00:00.0: BAR 6: assigned [mem 0x5800100000-0x580010ffff                                                                                                                                pref]
> [    2.168541] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
> [    2.168839] pcieport 0000:00:00.0: PME: Signaling with IRQ 67
> [    2.175158] clk: Not disabling unused clocks
> [    2.270457] random: fast init done
> [    2.282422] EXT4-fs (mmcblk0p2): recovery complete
> [    2.283171] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. O                                                                                                                               pts: (null)
> [    2.283229] VFS: Mounted root (ext4 filesystem) on device 179:2.
> [    2.283571] devtmpfs: mounted
> [    2.284179] Freeing unused kernel memory: 1344K
> [    2.284312] Run /sbin/init as init process
> [    2.413488] systemd[1]: System time before build time, advancing clock.
> [    2.441298] systemd[1]: systemd 246 running in system mode. (+PAM -AUDIT -SEL                                                                                                                               INUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +                                                                                                                               XZ -LZ4 -ZSTD -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarch                                                                                                                               y=hybrid)
> 
> W[    2.442307] systemd[1]: Detected architecture arm64.
> elcome to Auto Linux BSP 33.0 (gatesgarth)!
> 
> [    2.484975] systemd[1]: Set hostname to <s32g399aevb3>.
> [    2.577683] systemd-sysv-generator[76]: SysV service '/etc/init.d/netperf' la                                                                                                                               cks a native systemd unit file. Automatically generating a unit file for compati                                                                                                                               bility. Please update package to include a native systemd unit file, in order to                                                                                                                                make it more safe and robust.
> [    2.766744] systemd[1]: /lib/systemd/system/xen-qemu-dom0-disk-backend.servic                                                                                                                               e:11: PIDFile= references a path below legacy directory /var/run/, updating /var                                                                                                                               /run/xen/qemu-dom0.pid → /run/xen/qemu-dom0.pid; please update the unit file acc                                                                                                                               ordingly.
> [  OK  [    2.849603] systemd[1]: Queued start job for default target Multi-User                                                                                                                                System.
>  random: systemd: uninitialized urandom read (16 bytes read)
> [[    2.851615] systemd[1]: Created slice system-getty.slice.
> 0m] Created slice system-getty.slice.
> [  OK  ] Created slice sy[    2.884743] random: systemd: uninitialized urandom r                                                                                                                               ead (16 bytes read)
> s[    2.885064] systemd[1]: Created slice system-modprobe.slice.
> tem-modprobe.slice.
> [  OK  ] Created slice sys[    2.912705] random: systemd: uninitialized urandom                                                                                                                                read (16 bytes read)
> t[    2.913002] systemd[1]: Created slice system-serial\x2dgetty.slice.
> em-serial\x2dgetty.slice.
> [  OK  ] Created slice Use[    2.940962] systemd[1]: Created slice User and Sess                                                                                                                               ion Slice.
> r and Session Slice.
> [  OK  ] Started Dispatch P[    2.960876] systemd[1]: Started Dispatch Password                                                                                                                                Requests to Console Directory Watch.
> assword …ts to Console Directory Watch.
> [  OK  ] Started Forward Pas[    2.988824] systemd[1]: Started Forward Password                                                                                                                                Requests to Wall Directory Watch.
> sword R…uests to Wall Directory Watch.
> [  OK  ] Reached target Path[    3.012877] systemd[1]: Reached target Paths.
> s.
> [  OK  ] Reached target Remot[    3.032754] systemd[1]: Reached target Remote Fi                                                                                                                               le Systems.
> e File Systems.
> [  OK  ] Reached target Slice[    3.052744] systemd[1]: Reached target Slices.
> s.
> [  OK  ] Reached target Swap systemd[1]: Reached target Swap.
> [0m.
> [  OK   systemd[1]: Listening on RPCbind Server Activation Socket.
> [0m] Listening on RPCbind Server Activation Socket.
> [  OK  ] Reached target RPC [    3.124844] systemd[1]: Reached target RPC Port M                                                                                                                               apper.
> Port Mapper.
> [  OK  ] Listening on Sy[    3.145153] systemd[1]: Listening on Syslog Socket.
> slog Socket.
> [  OK  ] Listening on initc[    3.164886] systemd[1]: Listening on initctl Compa                                                                                                                               tibility Named Pipe.
> tl Compatibility Named Pipe.
> [  OK      3.191035] systemd[1]: Condition check resulted in Journal Audit Socke                                                                                                                               t being skipped.
> m[    3.191496] systemd[1]: Listening on Journal Socket (/dev/log).
> ] Listening on Journal Socket (/dev/log).
> [  OK  ] Listening on Jou[    3.221106] systemd[1]: Listening on Journal Socket.
> rnal Socket.
> [  OK  ] Listening on Ne[    3.241190] systemd[1]: Listening on Network Service                                                                                                                                Netlink Socket.
> twork Service Netlink Socket.
> [  OK  ] Listening on ude[    3.265051] systemd[1]: Listening on udev Control So                                                                                                                               cket.
> v Control Socket.
> [  OK  ] Listening on udev [    3.284919] systemd[1]: Listening on udev Kernel S                                                                                                                               ocket.
> Kernel Socket.
> [  OK  ] Listening on User [    3.304936] systemd[1]: Listening on User Database                                                                                                                                Manager Socket.
> Database Manager Socket.
>          Mounting H[    3.330591] systemd[1]: Mounting Huge Pages File System...
> uge Pages File System...
>          Mounting     3.353156] systemd[1]: Condition check resulted in POSIX Me                                                                                                                               ssage Queue File System being skipped.
> ;39mMount /proc/xen files...
>       [    3.354954] systemd[1]: Mounting Mount /proc/xen files...
>  [    3.370933] systemd[1]: Mounting Kernel Debug File System...
>   Mounting Kernel Debug File System...
>          Starti[    3.401191] systemd[1]: Condition check resulted in Kernel Tra                                                                                                                               ce File System being skipped.
> ng Load Kernel Module con[    3.401679] systemd[1]: Condition check resulted in                                                                                                                                Create list of static device nodes for the current kernel being skipped.
> fi[    3.403642] systemd[1]: Starting Load Kernel Module configfs...
> gfs...
>          Starting     3.446771] systemd[1]: Starting Load Kernel Module drm...
> 9mLoad Kernel Module drm...
>          Starting     3.470771] systemd[1]: Starting Load Kernel Module fuse...
> 9mLoad Kernel Module fuse...
>          Starting     3.494788] systemd[1]: Starting RPC Bind...
> 9mRPC Bind...
>      [    3.513000] systemd[1]: Condition check resulted in File System Check on                                                                                                                                Root Device being skipped.
>     Starting Jour[    3.516455] systemd[1]: Starting Journal Service...
> nal Service...
>          [    3.548101] systemd[1]: Starting Load Kernel Modules...
> Starting Load Kernel Modules...
>          Starting     3.570819] systemd[1]: Starting Remount Root and Kernel Fil                                                                                                                               e Systems...
> 9mRemount Root and Kernel File Systems...
>      [    3.595018] systemd[1]: Starting Coldplug All udev Devices...
>     Starting Coldplug All udev Devices...
> [    3.632457] llce_core 43ff8000.llce: Successfully loaded LLCE firmware
> [    3.639641] systemd[1]: Started RPC Bind.
> 32m  OK  ] Started RPC Bind.
> [    3.651233] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
> [    3.706544] systemd[1]: Mounted Huge Pages File System.
> 32m  OK  ] Mounted Huge Pages File System.
> [    3.729184] systemd[1]: Mounted Mount /proc/xen files.
> 32m  OK  ] Mounted Mount /proc/xen files.
> [  OK  ] Started Journa[    3.749158] systemd[1]: Started Journal Service.
> l Service.
> [  OK  ] Mounted Kernel Debug File System.
> [  OK  ] Finished Load Kernel Module configfs.
> [  OK  ] Finished Load Kernel Module drm.
> [    3.804694] llce_mb 43a00000.llce_mb: LLCE firmware version: GGEE_3A
> [    3.804711] llce_mb 43a00000.llce_mb: LLCE firmware: logging support disabled
> [  OK  ] Finished Load Kernel Module fuse.
> [  OK  ] Finished Remount Root and Kernel File Systems.
>          Mounting FUSE Control File System...
>          Mounting Kernel Configuration File System...
> [    3.916363] llce_can: unknown parameter 'logging' ignored
>          Starting Flush Journal to Persistent Storage...
>          Starting Create Static Device Nodes in /dev...
> [  OK  ] Mounted FUSE Control File System.
> [  OK  ] Finished Load Kernel Modules.
> [  OK  ] Mounted Kernel Configuration File System.
> [  OK  ] Finished Flush Journal to Persistent Storage.
> [  OK  ] Finished Create Static Device Nodes in /dev.
> [  OK  ] Reached target Local File Systems (Pre).
>          Mounting NFSD configuration filesystem...
>          Mounting /tmp...
>          Mounting mount xenstore file system...
>          Mounting /var/volatile...
>          Starting Apply Kernel Variables...
>          Starting Rule-based Manage…for Device Events and Files...
> [  OK  ] Finished Coldplug All udev Devices.
> [FAILED] Failed to mount NFSD configuration filesystem.
> See 'systemctl status proc-fs-nfsd.mount' for details.
> [DEPEND] Dependency failed for NFS server and services.
> [DEPEND] Dependency failed for NFS Mount Daemon.
> [  OK  ] Started Rule-based Manager for Device Events and Files.
> [  OK  ] Mounted /tmp.
> [  OK  ] Mounted mount xenstore file system.
> [  OK  ] Mounted /var/volatile.
> [  OK  ] Finished Apply Kernel Variables.
>          Mounting /var/volatile/tmp...
>          Starting Load/Save Random Seed...
> [  OK  ] Mounted /var/volatile/tmp.
> [  OK  ] Reached target Local File Systems.
>          Starting Create Volatile Files and Directories...
> [  OK  ] Finished Create Volatile Files and Directories.
> [    5.060091] pfeng: loading out-of-tree module taints kernel.
> [    5.087732] pfeng 46000000.pfe: PFEng ethernet driver loading ...
> [    5.087749] pfeng 46000000.pfe: Version: RTM 1.0.0
> [    5.087753] pfeng 46000000.pfe: Multi instance support: disabled (standalone)
> [    5.087756] pfeng 46000000.pfe: Compiled by: 10.2.0
> [    5.087783] pfeng 46000000.pfe: Cbus addr 0x46000000 size 0x1000000
> [    5.087791] pfeng 46000000.pfe: nxp,fw-class-name: s32g_pfe_class.fw
> [    5.087796] pfeng 46000000.pfe: nxp,fw-util-name: s32g_pfe_util.fw
> [    5.087848] pfeng 46000000.pfe: irq 'hif0' : 58
> [    5.087862] pfeng 46000000.pfe: irq 'hif1' : 59
> [    5.087874] pfeng 46000000.pfe: irq 'hif2' : 60
> [    5.087879] pfeng 46000000.pfe: HIF channels mask: 0x0007
> [    5.087890] pfeng 46000000.pfe: netif name: pfe0
> [    5.087896] pfeng 46000000.pfe: DT mac addr: 00:01:be:be:ef:11
> [    5.087903] pfeng 46000000.pfe: netif(pfe0) mode: std
> [    5.087908] pfeng 46000000.pfe: netif(pfe0) EMAC: 0
> [    5.087914] pfeng 46000000.pfe: netif(pfe0) HIFs: count 1 map 01
> [    5.087923] pfeng 46000000.pfe: EMAC0 interface mode: 4
> [    5.088060] pfeng 46000000.pfe: PFE port coherency enabled, mask 0x1e
> [    5.088249] pfeng 46000000.pfe: Clocks: sys=300MHz pe=600MHz
> [    5.088263] pfeng 46000000.pfe: Interface selected: EMAC0: 0x4 EMAC1: 0xfffff                                                                                                                               fff EMAC2: 0xffffffff
> [    5.120057] pfeng 46000000.pfe: PFE controller reset done
> [    5.120169] pfeng 46000000.pfe: TX clock on EMAC0 for interface sgmii install                                                                                                                               ed
> [    5.120219] pfeng 46000000.pfe: RX clock on EMAC0 for interface sgmii install                                                                                                                               ed
> [    5.120556] pfeng 46000000.pfe: assigned reserved memory node pfebufs@3400000                                                                                                                               0
>      [    5.129221] pfeng 46000000.pfe: assigned reserved memory node pfebufs@34                                                                                                                               080000
>     Starting Network Time Synchronization...
> [    5.129320] pfeng 46000000.pfe: assigned reserved memory node pfebufs@8320000                                                                                                                               0
>      [    5.129353] pfeng 46000000.pfe: assigned reserved memory node pfebufs@83                                                                                                                               5e0000
>     Starting Update UTMP about System Boot/Shutdown...
> [    5.137731] pfeng 46000000.pfe: Firmware: CLASS s32g_pfe_class.fw [39860 byte                                                                                                                               s]
> [    5.137746] pfeng 46000000.pfe: Firmware: UTIL s32g_pfe_util.fw [19940 bytes]
> 32m  OK  ] Finished Update UTMP about System Boot/Shutdown.
> [    5.137765] pfeng 46000000.pfe: PFE CBUS p0x46000000 mapped @ v0xffffffc01300                                                                                                                               0000
> [    5.137781] pfeng 46000000.pfe: HW version 0x101
> [    5.137788] pfeng 46000000.pfe: Silicon S32G3
> [    5.137795] pfeng 46000000.pfe: Fail-Stop mode disabled
> [    5.139219] pfeng 46000000.pfe: BMU1 buffer base: p0xc0000000
> [    5.139318] pfeng 46000000.pfe: BMU2 buffer base: p0x34000000 (0x80000 bytes)
> [    5.140631] pfeng 46000000.pfe: register IRQ 62 by name 'PFE BMU IRQ'
> [    5.173797] pfeng 46000000.pfe: BMU_EMPTY_INT (BMU @ p0x(____ptrval____)). Po                                                                                                                               ol ready.
> [    5.173819] pfeng 46000000.pfe: BMU_EMPTY_INT (BMU @ p0x(____ptrval____)). Po                                                                                                                               ol ready.
> [    5.173857] pfeng 46000000.pfe: Firmware .elf detected
> 32m  OK  ] Started Network Time Synchronization    5.173864] pfeng 46000000.pfe:                                                                                                                                Uploading CLASS firmware
> 0m.
> [    5.173871] pfeng 46000000.pfe: Selected FW loading OPs to load 8 PEs in para                                                                                                                               llel
> [    5.341346] pfeng 46000000.pfe: pfe_ct.h file version"e1cb376b67fa4d1de800b13                                                                                                                               2b328b42c"
> [    5.383695] pfeng 46000000.pfe: [FW VERSION] 1.3.0, Build: May 31 2022, 08:22                                                                                                                               :22 (), ID: 0x31454650
> [    5.384015] pfeng 46000000.pfe: SAFETY instance created
> 32m  OK  ] Reached target System Initialization    5.384025] pfeng 46000000.pfe:                                                                                                                                Watchdog instance created
> 0m.
> [    5.384038] pfeng 46000000.pfe: Uploading UTIL firmware
> [    5.384043] pfeng 46000000.pfe: Selected FW loading OPs to load 1 PEs in para                                                                                                                               llel
> 32m  OK  ] Started Daily Cleanup of Temporary Directories.
> [    5.396834] pfeng 46000000.pfe: pfe_ct.h file version"e1cb376b67fa4d1de800b13                                                                                                                               2b328b42c"
> [    5.410446] pfeng 46000000.pfe: VLAN ID incorrect or not set. Using default V                                                                                                                               LAN ID = 0x01.
> 32m  OK  ] Reached target System Time Set.
> [    5.410452] pfeng 46000000.pfe: VLAN stats size incorrect or not set. Using d                                                                                                                               efault VLAN stats size = 20.
> [    5.410544] pfeng 46000000.pfe: Fall-back bridge domain @ 0x20000a34 (class)
> [    5.410551] pfeng 46000000.pfe: Default bridge domain @ 0x20000a2c (class)
> [    5.416680] pfeng 46000000.pfe: Routing table created, Hash Table @ p0x340800                                                                                                                               00, Pool @ p0x34088000 (65536 bytes)
> [    5.416989] pfeng 46000000.pfe: Feature err051211_workaround: DISABLED
> 32m  OK  ] Reached target System Time Synchronized.
> [    5.418364] pfeng 46000000.pfe: MDIO bus 0 disabled: Not found in DT
> [    5.418370] pfeng 46000000.pfe: MDIO bus 1 disabled: No EMAC
> [    5.418374] pfeng 46000000.pfe: MDIO bus 2 disabled: No EMAC
> 32m  OK  ] Started Daily rotation of log files.
> [    5.418705] pfeng 46000000.pfe: HIF0 enabled
> [    5.418967] pfeng 46000000.pfe: HIF1 enabled
> [    5.419229] pfeng 46000000.pfe: HIF2 enabled
> [    5.419235] pfeng 46000000.pfe: HIF3 not configured, skipped
> 32m  OK  ] Reached target Timers.
> [    5.424471] pfeng 46000000.pfe pfe0: registered
> [    5.424496] pfeng 46000000.pfe pfe0: Subscribe to HIF0
> 32m  OK  ] Listening on D-Bus System Message Bus[    5.425044] pfeng 46000000.pf                                                                                                                               e pfe0: Enable HIF0
>  Socket.
> [    5.425207] pfeng 46000000.pfe pfe0: setting MAC addr: 00:01:be:be:ef:11
>      [    5.425234] pfeng 46000000.pfe pfe0: PTP HW addend 0x80000000, max_adj c                                                                                                                               onfigured to 46566128 ppb
>     Starting sshd.socket.
> [    5.425243] pfeng 46000000.pfe: IEEE1588: Input Clock: 200000000Hz, Output: 1                                                                                                                               00000000Hz, Accuracy: 10.0ns
> [    5.431115] pfeng 46000000.pfe pfe0: Registered PTP HW clock successfully on                                                                                                                                EMAC0
> [  OK  ] Listening on sshd.socket.
> [  OK  ] Reached target Sockets.
> [  OK  ] Reached target Basic System.
> [  OK  ] Started Job spooling tools.
> [  OK  ] Started Periodic Command Scheduler.
> [  OK  ] Started D-Bus System Message Bus.
> [  OK  ] Started A minimalistic net…Pv4, rdisc and DHCPv6 support.
>          Starting IPv6 Packet Filtering Framework...
>          Starting IPv4 Packet Filtering Framework...
> [  OK  ] Started irqbalance daemon.
> [  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
> [  OK  ] Started strongSwan IPsec I…IKEv2 daemon using ipsec.conf.
> [    6.625086] random: crng init done
> [    6.625101] random: 7 urandom warning(s) missed due to ratelimiting
> [  OK  ] Started System Logging Service.
>          Starting User Login Management...
>          Starting The Xen xenstore...
>          Starting OpenSSH Key Generation...
> [  OK  ] Finished Load/Save Random Seed.
> [  OK  ] Finished IPv6 Packet Filtering Framework.
> [  OK  ] Finished IPv4 Packet Filtering Framework.
> [  OK  ] Reached target Network (Pre).
>          Starting Network Service...
> [FAILED] Failed to start The Xen xenstore.

Yep, this is the problem



> See 'systemctl status xenstored.service' for details.
> [DEPEND] Dependency failed for xen-…des, JSON configuration stub).
> [DEPEND] Dependency failed for Xenc…guest consoles and hypervisor.
> [DEPEND] Dependency failed for Xend…p guests on boot and shutdown.
> [DEPEND] Dependency failed for qemu for xen dom0 disk backend.
> [  OK  ] Started Network Service.
> [  OK  ] Finished OpenSSH Key Generation.
> [  OK  ] Started User Login Management.
>          Starting Network Name Resolution...
>          Starting Xen-watchdog - run xen watchdog daemon...
> [  OK  ] Started Xen-watchdog - run xen watchdog daemon.
> [  OK  ] Started Network Name Resolution.
> [  OK  ] Reached target Network.
> [  OK  ] Reached target Host and Network Name Lookups.
> [  OK  ] Started NFS status monitor for NFSv2/3 locking..
> [  OK  ] Started Respond to IPv6 Node Information Queries.
> [  OK  ] Started Network Router Discovery Daemon.
>          Starting Permit User Sessions...
> [  OK  ] Started Xinetd A Powerful Replacement For Inetd.
> [  OK  ] Finished Permit User Sessions.
> [  OK  ] Started Getty on tty1.
> [  OK  ] Started Serial Getty on hvc0.
> [  OK  ] Started Serial Getty on ttyLF0.
> [  OK  ] Reached target Login Prompts.
> [  OK  ] Reached target Multi-User System.
>          Starting Update UTMP about System Runlevel Changes...
> [  OK  ] Finished Update UTMP about System Runlevel Changes.
> 
> 33.Auto Linux vb3 3t.LFs32g399aevb3 hvc0
> 
> 
> >Some extra information about xenstore:
> 
> root@s32g399aevb3:~# systemctl status xenstored.service
> * xenstored.service - The Xen xenstore
>      Loaded: loaded (/lib/systemd/system/xenstored.service; enabled; vendor pre>
>      Active: failed (Result: protocol) since Wed 2020-12-16 17:25:20 UTC; 6min >
>     Process: 182 ExecStartPre=/bin/grep -q control_d /proc/xen/capabilities (co>
>     Process: 186 ExecStart=/etc/xen/scripts/launch-xenstore (code=exited, statu>
>    Main PID: 186 (code=exited, status=0/SUCCESS)
> 
> Dec 16 17:25:20 s32g399aevb3 systemd[1]: Starting The Xen xenstore...
> Dec 16 17:25:20 s32g399aevb3 launch-xenstore[186]: Starting /usr/sbin/xenstored>
> Dec 16 17:25:20 s32g399aevb3 launch-xenstore[193]: FATAL: Failed to open connec>

This has been truncated, but I bet there is a missing module in your
Linux kernel build. Make sure you have all the following:

CONFIG_XEN_BALLOON=y
CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
CONFIG_XEN_SCRUB_PAGES_DEFAULT=y
CONFIG_XEN_DEV_EVTCHN=y
CONFIG_XEN_BACKEND=y
CONFIG_XENFS=y
CONFIG_XEN_COMPAT_XENFS=y
CONFIG_XEN_SYS_HYPERVISOR=y
CONFIG_XEN_XENBUS_FRONTEND=y
CONFIG_XEN_GNTDEV=y
CONFIG_XEN_GRANT_DEV_ALLOC=y
CONFIG_XEN_GRANT_DMA_ALLOC=y
CONFIG_SWIOTLB_XEN=y
CONFIG_XEN_PRIVCMD=y


> Dec 16 17:25:20 s32g399aevb3 systemd[1]: xenstored.service: Failed with result >
> Dec 16 17:25:20 s32g399aevb3 systemd[1]: Failed to start The Xen xenstore.
> 
> 
> >Any idea of how can I fix that? Thank you so much for the support
> 
> Best regards
> Youssef El Mesdadi
> 
> 
> 
> -----Ursprüngliche Nachricht-----
> Von: Julien Grall <julien@xen.org> 
> Gesendet: Dienstag, 17. Januar 2023 15:38
> An: El Mesdadi Youssef ESK UILD7 <youssef.elmesdadi@zf.com>; xen-devel@lists.xenproject.org
> Cc: Stefano Stabellini <sstabellini@kernel.org>
> Betreff: Re: AW: Xenalyze on ARM ( NXP S32G3 with Cortex-A53)
> 
> 
> 
> On 13/01/2023 12:56, El Mesdadi Youssef ESK UILD7 wrote:
> > Hello Julien,
> 
> Hi,
> 
> >>>> xentrace should work on upstream Xen. What did you version did you try?
> > 
> > While building my image using the BSP-linux of NXP, the version that was downloaded is Xen 4.14.
> 
> Do you know where the source are downloaded from?
> 
> > 
> > 
> >>>> Can you also clarify the error you are seen?
> > 
> > The error I receive while tipping xentrace is: Command not found.
> 
> 
> "Command not found" means the program hasn't been installed.
> 
> > I assume in this Xen version, Xentrace is not compatible with ARM 
> > architecture
> The support for xentrace on Arm has been added around Xen 4.12. So it should work for Xen 4.14 (even though I don't recommend using older release).
> 
> I would suggest to check how you are building the tools and which package will be installed.
> 
> > 
> > My question is, is there any new version of Xen that supports Xentrace on ARM? If yes how could I install it? Because Xen.4.14 was installed automatically by typing this ( DISTRO_FEATURES_append += "xen") in the local.conf file while creating my image.
> 
> I am not familiar with the BSP-linux of NXP as this is not a project maintained by Xen Project.
> 
> If you need support for it, then I would suggest to discuss with NXP directly.
> 
> > 
> > Or is there any source on Xentrace that is compatible with ARM on GitHub, that I could download and compile myself?
> Even if the hypervisor is Xen, you seem to use code provided by an external entity. I can't advise on the next steps without knowing the modification that NXP made in the hypervisor.
> 
> > 
> >>>> Yes if you assign (or provide para-virtualized driver) the GPIO/LED/Can-Interface to the guest.
> > 
> > Is there any tutorial that could help me create those drivers? And how complicated is that, to create them?
> 
> I am not aware of any tutorial. Regarding the complexity, it all depends on what exactly you want to do.
> 
> > Or can they be assigned just with PCI-Passthrough?
> 
> PCI passthrough is not yet supported on Arm. That said, I was not expecting the GPIO/LED/Can-interface to be PCI devices.
> 
> If they are platform devices (i.e non-PCI devices), then you could potentially directly assign them to *one* guest (this would not work if you need to share them).
> 
> I wrote potentially because if the device is DMA-capabable, then the device must be behind an IOMMU.
> 
> Cheers,
> 
> --
> Julien Grall
> 
> 

^ permalink raw reply	[relevance 0%]

* AW: AW: Xenstore failed to start / Xenalyze on ARM ( NXP S32G3 with Cortex-A53)
  @ 2023-02-07  9:35  4%       ` El Mesdadi Youssef ESK UILD7
  2023-02-11  0:56  0%         ` Stefano Stabellini
  0 siblings, 1 reply; 200+ results
From: El Mesdadi Youssef ESK UILD7 @ 2023-02-07  9:35 UTC (permalink / raw)
  To: Julien Grall, xen-devel; +Cc: Stefano Stabellini

> hello Julien,

>first of all thank you so much for the support,  after flashing Xen on the S32G3 I noticed that I cannot create DomUs.
>when I also give the xl list, it does not even show Dom0 and stays blocked.

root@s32g399aevb3:~# xl list
Name                                        ID   Mem VCPUs      State   Time(s)

root@s32g399aevb3:~# 


>I assume this is because xenstore failed to start, the error is shown in the messages during the boot time.

[FAILED] Failed to start The Xen xenstore.
See 'systemctl status xenstored.service' for details.

[FAILED] Failed to mount NFSD configuration filesystem.
See 'systemctl status proc-fs-nfsd.mount' for details.

>Here is xl.conf in case you need information about this file:

root@s32g399aevb3:/etc/xen# cat xl.conf
## Global XL config file ##

# Set domain-id policy. "xen" means that the hypervisor will choose the
# id of a new domain. "random" means that a random value will be chosen.
#domid_policy="xen"

# Control whether dom0 is ballooned down when xen doesn't have enough
# free memory to create a domain.  "auto" means only balloon if dom0
# starts with all the host's memory.
#autoballoon="auto"

# full path of the lockfile used by xl during domain creation
#lockfile="/var/lock/xl"

# default output format used by "xl list -l"
#output_format="json"

# first block device to be used for temporary VM disk mounts
#blkdev_start="xvda"

# default option to run hotplug scripts from xl
# if disabled the old behaviour will be used, and hotplug scripts will be
# launched by udev.
#run_hotplug_scripts=1

# default backend domain to connect guest vifs to.  This can be any
# valid domain identifier.
#vif.default.backend="0"

# default gateway device to use with vif-route hotplug script
#vif.default.gatewaydev="eth0"

# default vif script to use if none is specified in the guest config
#vif.default.script="vif-bridge"

# default bridge device to use with vif-bridge hotplug scripts
#vif.default.bridge="xenbr0"

# Reserve a claim of memory when launching a guest. This guarantees immediate
# feedback whether the guest can be launched due to memory exhaustion
# (which can take a long time to find out if launching huge guests).
# see xl.conf(5) for details.
#claim_mode=1

# Specify global vcpu hard affinity masks. See xl.conf(5) for details.
#vm.cpumask="0-7"
#vm.pv.cpumask="0-3"
#vm.hvm.cpumask="3-7"


>next are the messages during the boot time:

NOTICE:  Reset status: Power-On Reset
NOTICE:  BL2: v2.5(release):bsp33.0-2.5-dirty
NOTICE:  BL2: Built : 14:01:09, Jun 15 2022
NOTICE:  BL2: Booting BL31


U-Boot 2020.04+g9cdfca686e (Jun 10 2022 - 11:46:41 +0000)

CPU:   NXP S32G399A rev. 1.0
Model: NXP S32G3XXX-EVB
DRAM:  3.5 GiB
MMC:   FSL_SDHC: 0
Loading Environment from MMC... OK
Using internal clock for PCIe0, CRNS
Configuring PCIe0 as RootComplex(x2)
Using internal clock for PCIe1, CRNS
Frequency 100Mhz configured for PCIe1
Configuring PCIe1 as SGMII [XPCS0 1G, XPCS1 OFF(PCIex1)]
Setting PCI Device and Vendor IDs to 0x4300:0x1957
PCIe0: Failed to get link up
Pcie0: LINK_DBG_1: 0x00000000, LINK_DBG_2: 0x00000800 (expected 0x000000d1)
DEBUG_R0: 0x00ed4001, DEBUG_R1: 0x08600000
PCI: Failed autoconfig bar 1c
PCIe1: Not configuring PCIe, PHY not configured
In:    serial@401c8000
Out:   serial@401c8000
Err:   serial@401c8000
Loading SJA1105 firmware over SPI 5:0
No matching device ID found for devid FFFFFFFF, cs 0.
Error SJA1105 configuration not completed
Net:   EQOS phy: rgmii @ 4

Warning: eth_eqos (eth0) using random MAC address - f6:65:86:a2:0e:f8
eth0: eth_eqos PFE: emac0: sgmii emac1: none emac2: none

Warning: eth_pfeng using MAC address from ROM
, eth1: eth_pfeng
Hit any key to stop autoboot:  0
 PFE: emac0: sgmii emac1: none emac2: none
 PFE: emac0: sgmii emac1: none emac2: none
1039 bytes read in 9 ms (112.3 KiB/s)
## Executing script at 80200000
1048688 bytes read in 36 ms (27.8 MiB/s)
14034952 bytes read in 201 ms (66.6 MiB/s)
38461 bytes read in 9 ms (4.1 MiB/s)
## Flattened Device Tree blob at 86600000
   Booting using the fdt blob at 0x86600000
   Using Device Tree in place at 0000000086600000, end 000000008660dfff
DT: Enabling PFE
DT: Enabling PFE_EMAC_0
DT: pfe0 set to 00:01:be:be:ef:11
DT: Disabling PFE_EMAC_1
DT: Disabling PFE_EMAC_2

Starting kernel ...

- UART enabled -
- Boot CPU booting -
- Current EL 00000008 -
- Initialize CPU -
- Turning on paging -
- Zero BSS -
- Ready -
(XEN) Checking for initrd in /chosen
(XEN) RAM: 0000000080000000 - 00000000ffffffff
(XEN) RAM: 0000000880000000 - 00000008dfffffff
(XEN)
(XEN) MODULE[0]: 0000000085600000 - 00000000857430c8 Xen
(XEN) MODULE[1]: 0000000086600000 - 000000008660a000 Device Tree
(XEN) MODULE[2]: 0000000085800000 - 0000000086562808 Kernel
(XEN)  RESVD[0]: 00000000ff800000 - 00000000ff9fffff
(XEN)  RESVD[1]: 00000000c0000000 - 00000000c03fffff
(XEN)  RESVD[2]: 00000000c0400000 - 00000000c07fffff
(XEN)  RESVD[3]: 00000000d0000000 - 00000000d03fffff
(XEN)  RESVD[4]: 0000000084000000 - 000000008407ffff
(XEN)  RESVD[5]: 0000000034000000 - 000000003407ffff
(XEN)  RESVD[6]: 0000000034080000 - 000000003409ffff
(XEN)  RESVD[7]: 0000000083200000 - 00000000835dffff
(XEN)  RESVD[8]: 00000000835e0000 - 00000000835fffff
(XEN)
(XEN)
(XEN) Command line: dom0_mem=512M dom0_max_vcpus=1 bootscrub=0
(XEN) PFN compression on bits 20...22
(XEN) Domain heap initialised
(XEN) Booting using Device Tree
(XEN) Platform: NXP S32-Gen1
(XEN) No dtuart path configured
(XEN) Bad console= option 'dtuart'
 Xen 4.14.0
(XEN) Xen version 4.14.0 (xen-4.14-r0@fsl-auto) (aarch64-fsl-linux-gcc (GCC) 10.                                                                                                                               2.0) debug=y  2022-05-18
(XEN) Latest ChangeSet: Wed May 18 15:47:26 2022 +0300 git:becdd18e50-dirty
(XEN) build-id: c93be820bfe87b5abccd95ea86e98121e1231249
(XEN) Processor: 410fd034: "ARM Limited", variant: 0x0, part 0xd03, rev 0x4
(XEN) 64-bit Execution:
(XEN)   Processor Features: 0000000001002222 0000000000000000
(XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
(XEN)     Extensions: FloatingPoint AdvancedSIMD GICv3-SysReg
(XEN)   Debug Features: 0000000010305106 0000000000000000
(XEN)   Auxiliary Features: 0000000000000000 0000000000000000
(XEN)   Memory Model Features: 0000000000001122 0000000000000000
(XEN)   ISA Features:  0000000000011120 0000000000000000
(XEN) 32-bit Execution:
(XEN)   Processor Features: 00000131:10011011
(XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
(XEN)     Extensions: GenericTimer Security
(XEN)   Debug Features: 03010066
(XEN)   Auxiliary Features: 00000000
(XEN)   Memory Model Features: 10201105 40000000 01260000 02102211
(XEN)  ISA Features: 02101110 13112111 21232042 01112131 00011142 00011121
(XEN) Using SMC Calling Convention v1.2
(XEN) Using PSCI v1.1
(XEN) SMP: Allowing 8 CPUs
(XEN) enabled workaround for: ARM erratum 1530924
(XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 5000 KHz
(XEN) GICv3 initialization:
(XEN)       gic_dist_addr=0x00000050800000
(XEN)       gic_maintenance_irq=25
(XEN)       gic_rdist_stride=0
(XEN)       gic_rdist_regions=1
(XEN)       redistributor regions:
(XEN)         - region 0: 0x00000050900000 - 0x00000050b00000
(XEN) GICv3 compatible with GICv2 cbase 0x00000050400000 vbase 0x00000050420000
(XEN) GICv3: 576 lines, (IID 0001143b).
(XEN) GICv3: CPU0: Found redistributor in region 0 @000000004001a000
(XEN) XSM Framework v1.0.0 initialized
(XEN) Initialising XSM SILO mode
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Allocated console ring of 64 KiB.
(XEN) CPU0: Guest atomics will try 13 times before pausing the domain
(XEN) Bringing up CPU1
- CPU 00000001 booting -
- Current EL 00000008 -
- Initialize CPU -
- Turning on paging -
- Ready -
(XEN) GICv3: CPU1: Found redistributor in region 0 @000000004003a000
(XEN) CPU1: Guest atomics will try 15 times before pausing the domain
(XEN) CPU 1 booted.
(XEN) Bringing up CPU2
- CPU 00000100 booting -
- Current EL 00000008 -
- Initialize CPU -
- Turning on paging -
- Ready -
(XEN) GICv3: CPU2: Found redistributor in region 0 @000000004009a000
(XEN) CPU2: Guest atomics will try 15 times before pausing the domain
(XEN) CPU 2 booted.
(XEN) Bringing up CPU3
- CPU 00000101 booting -
- Current EL 00000008 -
- Initialize CPU -
- Turning on paging -
- Ready -
(XEN) GICv3: CPU3: Found redistributor in region 0 @00000000400ba000
(XEN) CPU3: Guest atomics will try 15 times before pausing the domain
(XEN) CPU 3 booted.
(XEN) Bringing up CPU4
- CPU 00000002 booting -
- Current EL 00000008 -
- Initialize CPU -
- Turning on paging -
- Ready -
(XEN) GICv3: CPU4: Found redistributor in region 0 @000000004005a000
(XEN) CPU4: Guest atomics will try 14 times before pausing the domain
(XEN) CPU 4 booted.
(XEN) Bringing up CPU5
- CPU 00000003 booting -
- Current EL 00000008 -
- Initialize CPU -
- Turning on paging -
- Ready -
(XEN) GICv3: CPU5: Found redistributor in region 0 @000000004007a000
(XEN) CPU5: Guest atomics will try 15 times before pausing the domain
(XEN) CPU 5 booted.
(XEN) Bringing up CPU6
- CPU 00000102 booting -
- Current EL 00000008 -
- Initialize CPU -
- Turning on paging -
- Ready -
(XEN) GICv3: CPU6: Found redistributor in region 0 @00000000400da000
(XEN) CPU6: Guest atomics will try 16 times before pausing the domain
(XEN) CPU 6 booted.
(XEN) Bringing up CPU7
- CPU 00000103 booting -
- Current EL 00000008 -
- Initialize CPU -
- Turning on paging -
- Ready -
(XEN) GICv3: CPU7: Found redistributor in region 0 @00000000400fa000
(XEN) CPU7: Guest atomics will try 15 times before pausing the domain
(XEN) CPU 7 booted.
(XEN) Brought up 8 CPUs
(XEN) I/O virtualisation disabled
(XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
(XEN) P2M: 3 levels with order-1 root, VTCR 0x80023558
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Adding cpu 0 to runqueue 0
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 1 to runqueue 0
(XEN) Adding cpu 2 to runqueue 0
(XEN) Adding cpu 3 to runqueue 0
(XEN) Adding cpu 4 to runqueue 0
(XEN) Adding cpu 5 to runqueue 0
(XEN) Adding cpu 6 to runqueue 0
(XEN) Adding cpu 7 to runqueue 0
(XEN) alternatives: Patching with alt table 00000000002d4308 -> 00000000002d4b3c
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Loading d0 kernel from boot module @ 0000000085800000
(XEN) Allocating 1:1 mappings totalling 512MB for dom0:
(XEN) BANK[0] 0x000000a0000000-0x000000c0000000 (512MB)
(XEN) Grant table range: 0x00000085600000-0x00000085640000
(XEN) Allocating PPI 16 for event channel interrupt
(XEN) Loading zImage from 0000000085800000 to 00000000a0000000-00000000a0d62808
(XEN) Loading d0 DTB to 0x00000000a8000000-0x00000000a800947a
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 352kB init memory.
(XEN) d0v0: vGICD: RAZ on reserved register offset 0x00000c
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER24
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER28
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER32
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER36
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER40
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER44
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER48
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER52
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER56
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER60
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER64
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER68
(XEN) d0v0: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 5.10.109-rt65+g0bace7fde5f5 (oe-user@oe-host) (aarc                                                                                                                               h64-fsl-linux-gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.35.1) #1 SMP PREEMPT Fri                                                                                                                                Jun 24 15:01:08 UTC 2022
[    0.000000] Machine model: NXP S32G3XXX-EVB3
[    0.000000] Xen 4.14 support found
[    0.000000] Reserved memory: created DMA memory pool at 0x0000000083200000, s                                                                                                                               ize 3 MiB
[    0.000000] OF: reserved mem: initialized node pfebufs@83200000, compatible i                                                                                                                               d shared-dma-pool
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000034000000-0x00000000ff9fffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000034000000-0x000000003409ffff]
[    0.000000]   node   0: [mem 0x0000000083200000-0x00000000835dffff]
[    0.000000]   node   0: [mem 0x00000000835e0000-0x00000000835fffff]
[    0.000000]   node   0: [mem 0x0000000084000000-0x000000008407ffff]
[    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000bfffffff]
[    0.000000]   node   0: [mem 0x00000000c0000000-0x00000000c07fffff]
[    0.000000]   node   0: [mem 0x00000000d0000000-0x00000000d03fffff]
[    0.000000]   node   0: [mem 0x00000000ff800000-0x00000000ff9fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000034000000-0x00000000ff9fffff]
[    0.000000] cma: Reserved 256 MiB at 0x00000000ad000000
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 17 pages/cpu s32024 r8192 d29416 u69632
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, 1530923, or                                                                                                                                1530924
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 134109
[    0.000000] Kernel command line: console=ttyLF0,115200 earlycon=xen earlyprin                                                                                                                               tk=xen root=/dev/mmcblk0p2 rw clk_ignore_unused
[    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes,                                                                                                                                linear)
[    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, li                                                                                                                               near)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 202252K/543872K available (8766K kernel code, 650K rwdata                                                                                                                               , 2880K rodata, 1344K init, 245K bss, 79476K reserved, 262144K cma-reserved)
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.
[    0.000000]  Trampoline variant of Tasks RCU enabled.
[    0.000000]  Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jif                                                                                                                               fies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: 544 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000050900000
[    0.000000] random: get_random_bytes called from start_kernel+0x31c/0x4ec wit                                                                                                                               h crng_init=0
[    0.000000] arch_timer: cp15 timer(s) running at 5.00MHz (virt).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles:                                                                                                                                0x127350b88, max_idle_ns: 440795202120 ns
[    0.000001] sched_clock: 56 bits at 5MHz, resolution 200ns, wraps every 43980                                                                                                                               46511100ns
[    0.000357] Console: colour dummy device 80x25
[    0.000385] Calibrating delay loop (skipped), value calculated using timer fr                                                                                                                               equency.. 10.00 BogoMIPS (lpj=20000)
[    0.000395] pid_max: default: 32768 minimum: 301
[    0.000489] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, line                                                                                                                               ar)
[    0.000500] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes,                                                                                                                                linear)
[    0.001943] xen:grant_table: Grant tables using version 1 layout
[    0.001964] Grant table initialized
[    0.001994] xen:events: Using FIFO-based ABI
[    0.002023] Xen: initializing cpu0
[    0.002127] rcu: Hierarchical SRCU implementation.
[    0.002412] smp: Bringing up secondary CPUs ...
[    0.002415] smp: Brought up 1 node, 1 CPU
[    0.002419] SMP: Total of 1 processors activated.
[    0.002427] CPU features: detected: 32-bit EL0 Support
[    0.002433] CPU features: detected: CRC32 instructions
[    0.009718] CPU: All CPU(s) started at EL1
[    0.009731] alternatives: patching kernel code
[    0.010183] devtmpfs: initialized
[    0.014415] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, ma                                                                                                                               x_idle_ns: 7645041785100000 ns
[    0.014429] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
[    0.020426] pinctrl core: initialized pinctrl subsystem
[    0.020983] NET: Registered protocol family 16
[    0.022141] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
[    0.022218] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allo                                                                                                                               cations
[    0.022309] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic al                                                                                                                               locations
[    0.022851] thermal_sys: Registered thermal governor 'step_wise'
[    0.023110] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.023153] ASID allocator initialised with 65536 entries
[    0.023218] xen:swiotlb_xen: Warning: only able to allocate 4 MB for software                                                                                                                                IO TLB
[    0.023933] software IO TLB: mapped [mem 0x00000000a1800000-0x00000000a1c0000                                                                                                                               0] (4MB)
[    0.023998] Serial: AMBA PL011 UART driver
[    0.024571] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
[    0.024649] arm-scmi firmware:scmi: No. of Protocol > MAX_PROTOCOLS_IMP
[    0.024654] arm-scmi firmware:scmi: SCMI Protocol v2.0 'NXP:S32G399A' Firmwar                                                                                                                               e version 0x0
[    0.039850] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.039858] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.039862] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.039866] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.043412] scmi-clocks scmi_dev.1: failed to register clock 87
[    0.043421] scmi-clocks scmi_dev.1: failed to register clock 88
[    0.043428] scmi-clocks scmi_dev.1: failed to register clock 89
[    0.043434] scmi-clocks scmi_dev.1: failed to register clock 90
[    0.043507] scmi-clocks scmi_dev.1: failed to register clock 95
[    0.043514] scmi-clocks scmi_dev.1: failed to register clock 96
[    0.043520] scmi-clocks scmi_dev.1: failed to register clock 97
[    0.043526] scmi-clocks scmi_dev.1: failed to register clock 98
[    0.046871] xen:balloon: Initialising balloon driver
[    0.047230] vgaarb: loaded
[    0.047367] SCSI subsystem initialized
[    0.047494] usbcore: registered new interface driver usbfs
[    0.047521] usbcore: registered new interface driver hub
[    0.047541] usbcore: registered new device driver usb
[    0.047818] pps_core: LinuxPPS API ver. 1 registered
[    0.047821] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giome                                                                                                                               tti <giometti@linux.it>
[    0.047831] PTP clock support registered
[    0.048664] clocksource: Switched to clocksource arch_sys_counter
[    0.053083] NET: Registered protocol family 2
[    0.053173] IP idents hash table entries: 16384 (order: 5, 131072 bytes, line                                                                                                                               ar)
[    0.053762] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192                                                                                                                                bytes, linear)
[    0.053787] TCP established hash table entries: 8192 (order: 4, 65536 bytes,                                                                                                                                linear)
[    0.053847] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear                                                                                                                               )
[    0.053970] TCP: Hash tables configured (established 8192 bind 8192)
[    0.054028] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)
[    0.054052] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)
[    0.054147] NET: Registered protocol family 1
[    0.054435] RPC: Registered named UNIX socket transport module.
[    0.054439] RPC: Registered udp transport module.
[    0.054441] RPC: Registered tcp transport module.
[    0.054443] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.054451] PCI: CLS 0 bytes, default 64
[    0.055375] workingset: timestamp_bits=62 max_order=17 bucket_order=0
[    0.055858] fuse: init (API version 7.32)
[    0.055965] NET: Registered protocol family 38
[    0.055988] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 2                                                                                                                               48)
[    0.055993] io scheduler mq-deadline registered
[    0.055997] io scheduler kyber registered
[    0.057025] s32g-siul2-pinctrl 4009c240.siul2-pinctrl: initialized s32 pinctr                                                                                                                               l driver
[    0.057965] gpio-339 (llcecan0-en): hogged as output/high
[    0.057983] gpio-340 (llcecan0-stby): hogged as output/high
[    0.057998] gpio-342 (llcecan4-en): hogged as output/high
[    0.058014] gpio-343 (llcecan4-stby): hogged as output/high
[    0.058029] gpio-345 (llcecan5-en): hogged as output/high
[    0.058044] gpio-346 (llcecan5-stby): hogged as output/high
[    0.058058] gpio-351 (llcecan6-en): hogged as output/high
[    0.058072] gpio-352 (llcecan6-stby): hogged as output/high
[    0.058089] gpio-353 (llcecan12-stby): hogged as output/high
[    0.058103] gpio-358 (llcecan12-en): hogged as output/high
[    0.058120] gpio-360 (llcecan13-en): hogged as output/high
[    0.058135] gpio-361 (llcecan13-stby): hogged as output/high
[    0.058151] gpio-382 (llcecan15-en): hogged as output/high
[    0.058165] gpio-383 (llcecan15-stby): hogged as output/high
[    0.059358] xen:xen_evtchn: Event-channel device installed
[    0.060467] serial: Freescale linflex driver
[    0.060686] 401c8000.serial: ttyLF0 at MMIO 0x401c8000 (irq = 25, base_baud =                                                                                                                                7812500) is a FSL_LINFLEX
[    0.060735] printk: console [ttyLF0] enabled
[    0.061072] 401cc000.serial: ttyLF1 at MMIO 0x401cc000 (irq = 26, base_baud =                                                                                                                                7812500) is a FSL_LINFLEX
[    0.061385] 402bc000.serial: ttyLF2 at MMIO 0x402bc000 (irq = 44, base_baud =                                                                                                                                7812500) is a FSL_LINFLEX
[    0.061832] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    0.061846] Invalid max_queues (4), will use default max: 1.
[    0.062193] fsl_fccu 4030c000.fccu: FCCU status is 0 (normal)
[    0.063813] spi-nor spi0.0: mt35xu02g (262144 Kbytes)
[    0.065365] vcan: Virtual CAN interface driver
[    0.065370] slcan: serial line CAN interface driver
[    0.065372] slcan: 10 dynamic interface channels.
[    0.065377] CAN device driver interface
[    0.065555] e100: Intel(R) PRO/100 Network Driver
[    0.065558] e100: Copyright(c) 1999-2006 Intel Corporation
[    0.065585] e1000: Intel(R) PRO/1000 Network Driver
[    0.065588] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    0.065615] e1000e: Intel(R) PRO/1000 Network Driver
[    0.065616] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    0.065642] igb: Intel(R) Gigabit Ethernet Network Driver
[    0.065645] igb: Copyright (c) 2007-2014 Intel Corporation.
[    0.065920] xen_netfront: Initialising Xen virtual ethernet driver
[    0.066016] hse-uio 40211000.mu1b: firmware not found
[    0.066208] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.066213] ehci-pci: EHCI PCI platform driver
[    0.066318] usbcore: registered new interface driver uas
[    0.066346] usbcore: registered new interface driver usb-storage
[    0.067503] s32gen1-rtc 40060000.rtc: registered as rtc0
[    0.067533] s32gen1-rtc 40060000.rtc: setting system clock to 1970-01-01T00:0                                                                                                                               0:00 UTC (0)
[    0.067665] i2c /dev entries driver
[    0.068026] sac58r-wdt 4010c000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
[    0.068204] sac58r-wdt 40200000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
[    0.068371] sac58r-wdt 40204000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
[    0.068538] sac58r-wdt 40208000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
[    0.068776] sac58r-wdt 40500000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
[    0.068950] sac58r-wdt 40504000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
[    0.069112] sac58r-wdt 40508000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
[    0.069279] sac58r-wdt 4050c000.swt: SAC58R/S32GEN1 Watchdog Timer Registered                                                                                                                               . timeout=30s (nowayout=0)
[    0.069492] sdhci: Secure Digital Host Controller Interface driver
[    0.069495] sdhci: Copyright(c) Pierre Ossman
[    0.069497] sdhci-pltfm: SDHCI platform and OF driver helper
[    0.069837] mmc0: CQHCI version 5.10
[    0.070452] hse 40210000.mu0b: firmware not found
[    0.070658] usbcore: registered new interface driver usbhid
[    0.070662] usbhid: USB HID core driver
[    0.082993] s32-adc 401f8000.adc: Device initialized successfully.
[    0.094947] s32-adc 402e8000.adc: Device initialized successfully.
[    0.095109] nxp_s32_ddr_perf 403e0000.ddr-perf: probing device
[    0.095353] nxp_s32_ddr_perf 403e0000.ddr-perf: device initialized successful                                                                                                                               ly
[    0.095430] s32-siul2-nvmem 4009c000.nvram: initialize s32 siul2 nvmem driver
[    0.095550] s32-siul2-nvmem 44010000.nvram: initialize s32 siul2 nvmem driver
[    0.095949] NET: Registered protocol family 10
[    0.096436] Segment Routing with IPv6
[    0.096476] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    0.096852] NET: Registered protocol family 17
[    0.096947] can: controller area network core
[    0.096980] NET: Registered protocol family 29
[    0.096984] can: raw protocol
[    0.096989] can: broadcast manager protocol
[    0.096996] can: netlink gateway - max_hops=1
[    0.097014] 8021q: 802.1Q VLAN Support v1.8
[    0.097149] printk: console [ttyLF0]: printing thread started
[    0.100703] mmc0: SDHCI controller on 402f0000.usdhc [402f0000.usdhc] using A                                                                                                                               DMA
[    0.108674] phy-s32gen1-serdes 40480000.serdes: Using mode 0 for SerDes subsy                                                                                                                               stem
[    0.109020] phy-s32gen1-serdes 44180000.serdes: Using mode 3 for SerDes subsy                                                                                                                               stem
[    0.115131] phy-s32gen1-serdes 44180000.serdes: Unstable RX detected on XPCS1
[    0.115158] phy-s32gen1-serdes 44180000.serdes: Unstable RX detected on XPCS0
[    0.115337] s32gen1-pcie 40400000.pcie: Configured as RootComplex
[    0.115627] s32gen1-pcie 40400000.pcie: Setting PCI Device and Vendor IDs to                                                                                                                                0x4300:0x1957
[    0.116614] s32gen1-pcie 40400000.pcie: Allocated line 0 for interrupt 52 (ms                                                                                                                               i)
[    0.383316] mmc0: Command Queue Engine enabled
[    0.383326] mmc0: new DDR MMC card at address 0001
[    0.391409] mmcblk0: mmc0:0001 G1M15M 59.3 GiB
[    0.391539] mmcblk0boot0: mmc0:0001 G1M15M partition 1 31.5 MiB
[    0.391661] mmcblk0boot1: mmc0:0001 G1M15M partition 2 31.5 MiB
[    0.391804] mmcblk0rpmb: mmc0:0001 G1M15M partition 3 4.00 MiB, chardev (243:                                                                                                                               0)
[    0.399208]  mmcblk0: p1 p2 p3
[    1.136116] s32gen1-pcie 40400000.pcie: Failed to stabilize PHY link
[    1.136123] s32gen1-pcie 40400000.pcie: Configuring as RootComplex
[    1.136136] s32gen1-pcie 40400000.pcie: host bridge /soc/pcie@40400000 ranges                                                                                                                               :
[    1.136177] s32gen1-pcie 40400000.pcie:       IO 0x5ffffe0000..0x5ffffeffff -                                                                                                                               > 0x0000000000
[    1.136195] s32gen1-pcie 40400000.pcie:      MEM 0x5800000000..0x5ffffdffff -                                                                                                                               > 0x0000000000
(XEN) physdev.c:16:d0v0 PHYSDEVOP cmd=25: not implemented
[    2.142041] s32gen1-pcie 40400000.pcie: Phy link never came up
(XEN) physdev.c:16:d0v0 PHYSDEVOP cmd=15: not implemented
[    2.142133] s32gen1-pcie 40400000.pcie: PCI host bridge to bus 0000:00
[    2.142139] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.142147] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    2.142153] pci_bus 0000:00: root bus resource [mem 0x5800000000-0x5ffffdffff                                                                                                                               ] (bus address [0x00000000-0x7fffdffff])
[    2.142201] pci 0000:00:00.0: [16c3:4300] type 01 class 0x060400
[    2.142224] pci 0000:00:00.0: reg 0x10: [mem 0x5800000000-0x58000fffff]
[    2.142242] pci 0000:00:00.0: reg 0x38: [mem 0x5800000000-0x580000ffff pref]
[    2.142339] pci 0000:00:00.0: supports D1
[    2.142344] pci 0000:00:00.0: PME# supported from D0 D1 D3hot D3cold
[    2.165526] pci 0000:00:00.0: Failed to add - passthrough or MSI/MSI-X might                                                                                                                                fail!
[    2.168521] pci 0000:00:00.0: BAR 0: assigned [mem 0x5800000000-0x58000fffff]
[    2.168532] pci 0000:00:00.0: BAR 6: assigned [mem 0x5800100000-0x580010ffff                                                                                                                                pref]
[    2.168541] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[    2.168839] pcieport 0000:00:00.0: PME: Signaling with IRQ 67
[    2.175158] clk: Not disabling unused clocks
[    2.270457] random: fast init done
[    2.282422] EXT4-fs (mmcblk0p2): recovery complete
[    2.283171] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. O                                                                                                                               pts: (null)
[    2.283229] VFS: Mounted root (ext4 filesystem) on device 179:2.
[    2.283571] devtmpfs: mounted
[    2.284179] Freeing unused kernel memory: 1344K
[    2.284312] Run /sbin/init as init process
[    2.413488] systemd[1]: System time before build time, advancing clock.
[    2.441298] systemd[1]: systemd 246 running in system mode. (+PAM -AUDIT -SEL                                                                                                                               INUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +                                                                                                                               XZ -LZ4 -ZSTD -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarch                                                                                                                               y=hybrid)

W[    2.442307] systemd[1]: Detected architecture arm64.
elcome to Auto Linux BSP 33.0 (gatesgarth)!

[    2.484975] systemd[1]: Set hostname to <s32g399aevb3>.
[    2.577683] systemd-sysv-generator[76]: SysV service '/etc/init.d/netperf' la                                                                                                                               cks a native systemd unit file. Automatically generating a unit file for compati                                                                                                                               bility. Please update package to include a native systemd unit file, in order to                                                                                                                                make it more safe and robust.
[    2.766744] systemd[1]: /lib/systemd/system/xen-qemu-dom0-disk-backend.servic                                                                                                                               e:11: PIDFile= references a path below legacy directory /var/run/, updating /var                                                                                                                               /run/xen/qemu-dom0.pid → /run/xen/qemu-dom0.pid; please update the unit file acc                                                                                                                               ordingly.
[  OK  [    2.849603] systemd[1]: Queued start job for default target Multi-User                                                                                                                                System.
 random: systemd: uninitialized urandom read (16 bytes read)
[[    2.851615] systemd[1]: Created slice system-getty.slice.
0m] Created slice system-getty.slice.
[  OK  ] Created slice sy[    2.884743] random: systemd: uninitialized urandom r                                                                                                                               ead (16 bytes read)
s[    2.885064] systemd[1]: Created slice system-modprobe.slice.
tem-modprobe.slice.
[  OK  ] Created slice sys[    2.912705] random: systemd: uninitialized urandom                                                                                                                                read (16 bytes read)
t[    2.913002] systemd[1]: Created slice system-serial\x2dgetty.slice.
em-serial\x2dgetty.slice.
[  OK  ] Created slice Use[    2.940962] systemd[1]: Created slice User and Sess                                                                                                                               ion Slice.
r and Session Slice.
[  OK  ] Started Dispatch P[    2.960876] systemd[1]: Started Dispatch Password                                                                                                                                Requests to Console Directory Watch.
assword …ts to Console Directory Watch.
[  OK  ] Started Forward Pas[    2.988824] systemd[1]: Started Forward Password                                                                                                                                Requests to Wall Directory Watch.
sword R…uests to Wall Directory Watch.
[  OK  ] Reached target Path[    3.012877] systemd[1]: Reached target Paths.
s.
[  OK  ] Reached target Remot[    3.032754] systemd[1]: Reached target Remote Fi                                                                                                                               le Systems.
e File Systems.
[  OK  ] Reached target Slice[    3.052744] systemd[1]: Reached target Slices.
s.
[  OK  ] Reached target Swap systemd[1]: Reached target Swap.
[0m.
[  OK   systemd[1]: Listening on RPCbind Server Activation Socket.
[0m] Listening on RPCbind Server Activation Socket.
[  OK  ] Reached target RPC [    3.124844] systemd[1]: Reached target RPC Port M                                                                                                                               apper.
Port Mapper.
[  OK  ] Listening on Sy[    3.145153] systemd[1]: Listening on Syslog Socket.
slog Socket.
[  OK  ] Listening on initc[    3.164886] systemd[1]: Listening on initctl Compa                                                                                                                               tibility Named Pipe.
tl Compatibility Named Pipe.
[  OK      3.191035] systemd[1]: Condition check resulted in Journal Audit Socke                                                                                                                               t being skipped.
m[    3.191496] systemd[1]: Listening on Journal Socket (/dev/log).
] Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Jou[    3.221106] systemd[1]: Listening on Journal Socket.
rnal Socket.
[  OK  ] Listening on Ne[    3.241190] systemd[1]: Listening on Network Service                                                                                                                                Netlink Socket.
twork Service Netlink Socket.
[  OK  ] Listening on ude[    3.265051] systemd[1]: Listening on udev Control So                                                                                                                               cket.
v Control Socket.
[  OK  ] Listening on udev [    3.284919] systemd[1]: Listening on udev Kernel S                                                                                                                               ocket.
Kernel Socket.
[  OK  ] Listening on User [    3.304936] systemd[1]: Listening on User Database                                                                                                                                Manager Socket.
Database Manager Socket.
         Mounting H[    3.330591] systemd[1]: Mounting Huge Pages File System...
uge Pages File System...
         Mounting     3.353156] systemd[1]: Condition check resulted in POSIX Me                                                                                                                               ssage Queue File System being skipped.
;39mMount /proc/xen files...
      [    3.354954] systemd[1]: Mounting Mount /proc/xen files...
 [    3.370933] systemd[1]: Mounting Kernel Debug File System...
  Mounting Kernel Debug File System...
         Starti[    3.401191] systemd[1]: Condition check resulted in Kernel Tra                                                                                                                               ce File System being skipped.
ng Load Kernel Module con[    3.401679] systemd[1]: Condition check resulted in                                                                                                                                Create list of static device nodes for the current kernel being skipped.
fi[    3.403642] systemd[1]: Starting Load Kernel Module configfs...
gfs...
         Starting     3.446771] systemd[1]: Starting Load Kernel Module drm...
9mLoad Kernel Module drm...
         Starting     3.470771] systemd[1]: Starting Load Kernel Module fuse...
9mLoad Kernel Module fuse...
         Starting     3.494788] systemd[1]: Starting RPC Bind...
9mRPC Bind...
     [    3.513000] systemd[1]: Condition check resulted in File System Check on                                                                                                                                Root Device being skipped.
    Starting Jour[    3.516455] systemd[1]: Starting Journal Service...
nal Service...
         [    3.548101] systemd[1]: Starting Load Kernel Modules...
Starting Load Kernel Modules...
         Starting     3.570819] systemd[1]: Starting Remount Root and Kernel Fil                                                                                                                               e Systems...
9mRemount Root and Kernel File Systems...
     [    3.595018] systemd[1]: Starting Coldplug All udev Devices...
    Starting Coldplug All udev Devices...
[    3.632457] llce_core 43ff8000.llce: Successfully loaded LLCE firmware
[    3.639641] systemd[1]: Started RPC Bind.
32m  OK  ] Started RPC Bind.
[    3.651233] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
[    3.706544] systemd[1]: Mounted Huge Pages File System.
32m  OK  ] Mounted Huge Pages File System.
[    3.729184] systemd[1]: Mounted Mount /proc/xen files.
32m  OK  ] Mounted Mount /proc/xen files.
[  OK  ] Started Journa[    3.749158] systemd[1]: Started Journal Service.
l Service.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module drm.
[    3.804694] llce_mb 43a00000.llce_mb: LLCE firmware version: GGEE_3A
[    3.804711] llce_mb 43a00000.llce_mb: LLCE firmware: logging support disabled
[  OK  ] Finished Load Kernel Module fuse.
[  OK  ] Finished Remount Root and Kernel File Systems.
         Mounting FUSE Control File System...
         Mounting Kernel Configuration File System...
[    3.916363] llce_can: unknown parameter 'logging' ignored
         Starting Flush Journal to Persistent Storage...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Mounted FUSE Control File System.
[  OK  ] Finished Load Kernel Modules.
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Reached target Local File Systems (Pre).
         Mounting NFSD configuration filesystem...
         Mounting /tmp...
         Mounting mount xenstore file system...
         Mounting /var/volatile...
         Starting Apply Kernel Variables...
         Starting Rule-based Manage…for Device Events and Files...
[  OK  ] Finished Coldplug All udev Devices.
[FAILED] Failed to mount NFSD configuration filesystem.
See 'systemctl status proc-fs-nfsd.mount' for details.
[DEPEND] Dependency failed for NFS server and services.
[DEPEND] Dependency failed for NFS Mount Daemon.
[  OK  ] Started Rule-based Manager for Device Events and Files.
[  OK  ] Mounted /tmp.
[  OK  ] Mounted mount xenstore file system.
[  OK  ] Mounted /var/volatile.
[  OK  ] Finished Apply Kernel Variables.
         Mounting /var/volatile/tmp...
         Starting Load/Save Random Seed...
[  OK  ] Mounted /var/volatile/tmp.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Create Volatile Files and Directories.
[    5.060091] pfeng: loading out-of-tree module taints kernel.
[    5.087732] pfeng 46000000.pfe: PFEng ethernet driver loading ...
[    5.087749] pfeng 46000000.pfe: Version: RTM 1.0.0
[    5.087753] pfeng 46000000.pfe: Multi instance support: disabled (standalone)
[    5.087756] pfeng 46000000.pfe: Compiled by: 10.2.0
[    5.087783] pfeng 46000000.pfe: Cbus addr 0x46000000 size 0x1000000
[    5.087791] pfeng 46000000.pfe: nxp,fw-class-name: s32g_pfe_class.fw
[    5.087796] pfeng 46000000.pfe: nxp,fw-util-name: s32g_pfe_util.fw
[    5.087848] pfeng 46000000.pfe: irq 'hif0' : 58
[    5.087862] pfeng 46000000.pfe: irq 'hif1' : 59
[    5.087874] pfeng 46000000.pfe: irq 'hif2' : 60
[    5.087879] pfeng 46000000.pfe: HIF channels mask: 0x0007
[    5.087890] pfeng 46000000.pfe: netif name: pfe0
[    5.087896] pfeng 46000000.pfe: DT mac addr: 00:01:be:be:ef:11
[    5.087903] pfeng 46000000.pfe: netif(pfe0) mode: std
[    5.087908] pfeng 46000000.pfe: netif(pfe0) EMAC: 0
[    5.087914] pfeng 46000000.pfe: netif(pfe0) HIFs: count 1 map 01
[    5.087923] pfeng 46000000.pfe: EMAC0 interface mode: 4
[    5.088060] pfeng 46000000.pfe: PFE port coherency enabled, mask 0x1e
[    5.088249] pfeng 46000000.pfe: Clocks: sys=300MHz pe=600MHz
[    5.088263] pfeng 46000000.pfe: Interface selected: EMAC0: 0x4 EMAC1: 0xfffff                                                                                                                               fff EMAC2: 0xffffffff
[    5.120057] pfeng 46000000.pfe: PFE controller reset done
[    5.120169] pfeng 46000000.pfe: TX clock on EMAC0 for interface sgmii install                                                                                                                               ed
[    5.120219] pfeng 46000000.pfe: RX clock on EMAC0 for interface sgmii install                                                                                                                               ed
[    5.120556] pfeng 46000000.pfe: assigned reserved memory node pfebufs@3400000                                                                                                                               0
     [    5.129221] pfeng 46000000.pfe: assigned reserved memory node pfebufs@34                                                                                                                               080000
    Starting Network Time Synchronization...
[    5.129320] pfeng 46000000.pfe: assigned reserved memory node pfebufs@8320000                                                                                                                               0
     [    5.129353] pfeng 46000000.pfe: assigned reserved memory node pfebufs@83                                                                                                                               5e0000
    Starting Update UTMP about System Boot/Shutdown...
[    5.137731] pfeng 46000000.pfe: Firmware: CLASS s32g_pfe_class.fw [39860 byte                                                                                                                               s]
[    5.137746] pfeng 46000000.pfe: Firmware: UTIL s32g_pfe_util.fw [19940 bytes]
32m  OK  ] Finished Update UTMP about System Boot/Shutdown.
[    5.137765] pfeng 46000000.pfe: PFE CBUS p0x46000000 mapped @ v0xffffffc01300                                                                                                                               0000
[    5.137781] pfeng 46000000.pfe: HW version 0x101
[    5.137788] pfeng 46000000.pfe: Silicon S32G3
[    5.137795] pfeng 46000000.pfe: Fail-Stop mode disabled
[    5.139219] pfeng 46000000.pfe: BMU1 buffer base: p0xc0000000
[    5.139318] pfeng 46000000.pfe: BMU2 buffer base: p0x34000000 (0x80000 bytes)
[    5.140631] pfeng 46000000.pfe: register IRQ 62 by name 'PFE BMU IRQ'
[    5.173797] pfeng 46000000.pfe: BMU_EMPTY_INT (BMU @ p0x(____ptrval____)). Po                                                                                                                               ol ready.
[    5.173819] pfeng 46000000.pfe: BMU_EMPTY_INT (BMU @ p0x(____ptrval____)). Po                                                                                                                               ol ready.
[    5.173857] pfeng 46000000.pfe: Firmware .elf detected
32m  OK  ] Started Network Time Synchronization    5.173864] pfeng 46000000.pfe:                                                                                                                                Uploading CLASS firmware
0m.
[    5.173871] pfeng 46000000.pfe: Selected FW loading OPs to load 8 PEs in para                                                                                                                               llel
[    5.341346] pfeng 46000000.pfe: pfe_ct.h file version"e1cb376b67fa4d1de800b13                                                                                                                               2b328b42c"
[    5.383695] pfeng 46000000.pfe: [FW VERSION] 1.3.0, Build: May 31 2022, 08:22                                                                                                                               :22 (), ID: 0x31454650
[    5.384015] pfeng 46000000.pfe: SAFETY instance created
32m  OK  ] Reached target System Initialization    5.384025] pfeng 46000000.pfe:                                                                                                                                Watchdog instance created
0m.
[    5.384038] pfeng 46000000.pfe: Uploading UTIL firmware
[    5.384043] pfeng 46000000.pfe: Selected FW loading OPs to load 1 PEs in para                                                                                                                               llel
32m  OK  ] Started Daily Cleanup of Temporary Directories.
[    5.396834] pfeng 46000000.pfe: pfe_ct.h file version"e1cb376b67fa4d1de800b13                                                                                                                               2b328b42c"
[    5.410446] pfeng 46000000.pfe: VLAN ID incorrect or not set. Using default V                                                                                                                               LAN ID = 0x01.
32m  OK  ] Reached target System Time Set.
[    5.410452] pfeng 46000000.pfe: VLAN stats size incorrect or not set. Using d                                                                                                                               efault VLAN stats size = 20.
[    5.410544] pfeng 46000000.pfe: Fall-back bridge domain @ 0x20000a34 (class)
[    5.410551] pfeng 46000000.pfe: Default bridge domain @ 0x20000a2c (class)
[    5.416680] pfeng 46000000.pfe: Routing table created, Hash Table @ p0x340800                                                                                                                               00, Pool @ p0x34088000 (65536 bytes)
[    5.416989] pfeng 46000000.pfe: Feature err051211_workaround: DISABLED
32m  OK  ] Reached target System Time Synchronized.
[    5.418364] pfeng 46000000.pfe: MDIO bus 0 disabled: Not found in DT
[    5.418370] pfeng 46000000.pfe: MDIO bus 1 disabled: No EMAC
[    5.418374] pfeng 46000000.pfe: MDIO bus 2 disabled: No EMAC
32m  OK  ] Started Daily rotation of log files.
[    5.418705] pfeng 46000000.pfe: HIF0 enabled
[    5.418967] pfeng 46000000.pfe: HIF1 enabled
[    5.419229] pfeng 46000000.pfe: HIF2 enabled
[    5.419235] pfeng 46000000.pfe: HIF3 not configured, skipped
32m  OK  ] Reached target Timers.
[    5.424471] pfeng 46000000.pfe pfe0: registered
[    5.424496] pfeng 46000000.pfe pfe0: Subscribe to HIF0
32m  OK  ] Listening on D-Bus System Message Bus[    5.425044] pfeng 46000000.pf                                                                                                                               e pfe0: Enable HIF0
 Socket.
[    5.425207] pfeng 46000000.pfe pfe0: setting MAC addr: 00:01:be:be:ef:11
     [    5.425234] pfeng 46000000.pfe pfe0: PTP HW addend 0x80000000, max_adj c                                                                                                                               onfigured to 46566128 ppb
    Starting sshd.socket.
[    5.425243] pfeng 46000000.pfe: IEEE1588: Input Clock: 200000000Hz, Output: 1                                                                                                                               00000000Hz, Accuracy: 10.0ns
[    5.431115] pfeng 46000000.pfe pfe0: Registered PTP HW clock successfully on                                                                                                                                EMAC0
[  OK  ] Listening on sshd.socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
[  OK  ] Started Job spooling tools.
[  OK  ] Started Periodic Command Scheduler.
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started A minimalistic net…Pv4, rdisc and DHCPv6 support.
         Starting IPv6 Packet Filtering Framework...
         Starting IPv4 Packet Filtering Framework...
[  OK  ] Started irqbalance daemon.
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
[  OK  ] Started strongSwan IPsec I…IKEv2 daemon using ipsec.conf.
[    6.625086] random: crng init done
[    6.625101] random: 7 urandom warning(s) missed due to ratelimiting
[  OK  ] Started System Logging Service.
         Starting User Login Management...
         Starting The Xen xenstore...
         Starting OpenSSH Key Generation...
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Finished IPv6 Packet Filtering Framework.
[  OK  ] Finished IPv4 Packet Filtering Framework.
[  OK  ] Reached target Network (Pre).
         Starting Network Service...
[FAILED] Failed to start The Xen xenstore.
See 'systemctl status xenstored.service' for details.
[DEPEND] Dependency failed for xen-…des, JSON configuration stub).
[DEPEND] Dependency failed for Xenc…guest consoles and hypervisor.
[DEPEND] Dependency failed for Xend…p guests on boot and shutdown.
[DEPEND] Dependency failed for qemu for xen dom0 disk backend.
[  OK  ] Started Network Service.
[  OK  ] Finished OpenSSH Key Generation.
[  OK  ] Started User Login Management.
         Starting Network Name Resolution...
         Starting Xen-watchdog - run xen watchdog daemon...
[  OK  ] Started Xen-watchdog - run xen watchdog daemon.
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
[  OK  ] Started NFS status monitor for NFSv2/3 locking..
[  OK  ] Started Respond to IPv6 Node Information Queries.
[  OK  ] Started Network Router Discovery Daemon.
         Starting Permit User Sessions...
[  OK  ] Started Xinetd A Powerful Replacement For Inetd.
[  OK  ] Finished Permit User Sessions.
[  OK  ] Started Getty on tty1.
[  OK  ] Started Serial Getty on hvc0.
[  OK  ] Started Serial Getty on ttyLF0.
[  OK  ] Reached target Login Prompts.
[  OK  ] Reached target Multi-User System.
         Starting Update UTMP about System Runlevel Changes...
[  OK  ] Finished Update UTMP about System Runlevel Changes.

33.Auto Linux vb3 3t.LFs32g399aevb3 hvc0


>Some extra information about xenstore:

root@s32g399aevb3:~# systemctl status xenstored.service
* xenstored.service - The Xen xenstore
     Loaded: loaded (/lib/systemd/system/xenstored.service; enabled; vendor pre>
     Active: failed (Result: protocol) since Wed 2020-12-16 17:25:20 UTC; 6min >
    Process: 182 ExecStartPre=/bin/grep -q control_d /proc/xen/capabilities (co>
    Process: 186 ExecStart=/etc/xen/scripts/launch-xenstore (code=exited, statu>
   Main PID: 186 (code=exited, status=0/SUCCESS)

Dec 16 17:25:20 s32g399aevb3 systemd[1]: Starting The Xen xenstore...
Dec 16 17:25:20 s32g399aevb3 launch-xenstore[186]: Starting /usr/sbin/xenstored>
Dec 16 17:25:20 s32g399aevb3 launch-xenstore[193]: FATAL: Failed to open connec>
Dec 16 17:25:20 s32g399aevb3 systemd[1]: xenstored.service: Failed with result >
Dec 16 17:25:20 s32g399aevb3 systemd[1]: Failed to start The Xen xenstore.


>Any idea of how can I fix that? Thank you so much for the support

Best regards
Youssef El Mesdadi



-----Ursprüngliche Nachricht-----
Von: Julien Grall <julien@xen.org> 
Gesendet: Dienstag, 17. Januar 2023 15:38
An: El Mesdadi Youssef ESK UILD7 <youssef.elmesdadi@zf.com>; xen-devel@lists.xenproject.org
Cc: Stefano Stabellini <sstabellini@kernel.org>
Betreff: Re: AW: Xenalyze on ARM ( NXP S32G3 with Cortex-A53)



On 13/01/2023 12:56, El Mesdadi Youssef ESK UILD7 wrote:
> Hello Julien,

Hi,

>>>> xentrace should work on upstream Xen. What did you version did you try?
> 
> While building my image using the BSP-linux of NXP, the version that was downloaded is Xen 4.14.

Do you know where the source are downloaded from?

> 
> 
>>>> Can you also clarify the error you are seen?
> 
> The error I receive while tipping xentrace is: Command not found.


"Command not found" means the program hasn't been installed.

> I assume in this Xen version, Xentrace is not compatible with ARM 
> architecture
The support for xentrace on Arm has been added around Xen 4.12. So it should work for Xen 4.14 (even though I don't recommend using older release).

I would suggest to check how you are building the tools and which package will be installed.

> 
> My question is, is there any new version of Xen that supports Xentrace on ARM? If yes how could I install it? Because Xen.4.14 was installed automatically by typing this ( DISTRO_FEATURES_append += "xen") in the local.conf file while creating my image.

I am not familiar with the BSP-linux of NXP as this is not a project maintained by Xen Project.

If you need support for it, then I would suggest to discuss with NXP directly.

> 
> Or is there any source on Xentrace that is compatible with ARM on GitHub, that I could download and compile myself?
Even if the hypervisor is Xen, you seem to use code provided by an external entity. I can't advise on the next steps without knowing the modification that NXP made in the hypervisor.

> 
>>>> Yes if you assign (or provide para-virtualized driver) the GPIO/LED/Can-Interface to the guest.
> 
> Is there any tutorial that could help me create those drivers? And how complicated is that, to create them?

I am not aware of any tutorial. Regarding the complexity, it all depends on what exactly you want to do.

> Or can they be assigned just with PCI-Passthrough?

PCI passthrough is not yet supported on Arm. That said, I was not expecting the GPIO/LED/Can-interface to be PCI devices.

If they are platform devices (i.e non-PCI devices), then you could potentially directly assign them to *one* guest (this would not work if you need to share them).

I wrote potentially because if the device is DMA-capabable, then the device must be behind an IOMMU.

Cheers,

--
Julien Grall


^ permalink raw reply	[relevance 4%]

* Re: [BUG]Add PCIE devie to SMMUv3 fail
  @ 2022-12-13  1:18  3%       ` sisyphean
  0 siblings, 0 replies; 200+ results
From: sisyphean @ 2022-12-13  1:18 UTC (permalink / raw)
  To: Rahul Singh, Julien Grall; +Cc: xen-devel, Stefano Stabellini, Bertrand Marquis

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

Hi,

在 2022/12/13 00:30, Rahul Singh 写道:
> Hi Sisyphean,
>
>> On 12 Dec 2022, at 5:49 am, sisyphean <sisyphean@zlw.email> wrote:
>>
>> Hi,
>> 在 2022/12/9 17:50, Rahul Singh 写道:
>>> Hi Sisyphean,
>>>
>>>> On 9 Dec 2022, at 6:15 am, sisyphean <sisyphean@zlw.email> wrote:
>>>>
>>>> Hi,
>>>>
>>>> I try to run XEN on my ARM board(Sorry, for some commercial reasons, I can't tell you
>>>> on which platform I run XEN)  and add PCIE device passthrough to DomU.But an error
>>>> occurred while adding the PCIE device to SMMUv3.
>>> PCI passthrough support is not fully upstream to Xen on ARM. We have working
>>> PCI passthrough branch that you can use to test it.
>>>
>>> https://gitlab.com/xen-project/fusa/xen-integration/-/commits/integration/pci-passthrough
>>>
>>>> Through reading the code and tracing debugging, the error is found in the function
>>>> arm_smmu_add_device, which will obtain and determine whether the fwspec of the
>>>> device to be added to SMMU exists.But for the XEN of arm, the fwspec of the device is
>>>> created and added by judging whether the iommu field exists in the device node when
>>>> XEN parses the device tree.However, the PCIE device does not appear in the device tree,
>>>> so there will be no fwspec for all PCIE devices. When attempting to add a PCIE device to
>>>> SMMU, a ENODEV error will be returned.
>>> As of now Xen doesn’t support to add PCI device to IOMMU on ARM.
>>>> In addition, the code at xen/drivers/passthrough/pci.c also verifies the above view.
>>>> For PCIE devices, pdev is alloc in function pci_add_device by alloc_pdev.However,
>>>> the function alloc_pdev does not create and add fwspec to the PCIE device.Therefore,
>>>> when function pci_add_device executes to iommu_add_device,it will get the error
>>>> return of ENODEV.
>>>>
>>>> How can I resolve the above errors?
>>> If you want to test the PCI passthrough please follow below steps.
>>>
>>> Xen setup:
>>>      • A checkout of the “integration/pci-passthrough” branch from the  gitlab https://gitlab.com/xen-project/fusa/xen-integration/-/commits/integration/pci-passthrough
>>>      • Pass iommu=yes  and pci-passthrough=on to Xen command line to enable PCI passthrough.
>>>
>>>   Linux Kernel setup:
>>>   
>>>      • Some changes are required for the kernel to work with PCI passthrough. First are some configuration options, enable them in kernel config.
>>>           CONFIG_XEN=y
>>>           CONFIG_XEN_BACKEND=y
>>>           CONFIG_XEN_PCIDEV_BACKEND=y
>>>      • Then a patch needs to be applied for enabling the pciback driver. Patch is attached in this email.
>>>   
>>> Using PCI passthrough:
>>>   
>>>      • In order to pass a device to a guest, you first need its PCI address(SBDF). You can either get it from a bare-metal
>>>        Linux running on the platform or by having pciutils  installed (if you are using a yocto-based dom0 or have apt available), which provides lspci.
>>>   
>>>       For example, let's pass one ethernet interface to the guest. Running lspci gives us this output (truncated) :
>>>         0000:00:00.0 Host bridge: Ampere Computing, LLC Device e100
>>>         0000:00:01.0 PCI bridge: Ampere Computing, LLC Device e101 (rev 04)
>>>         0000:01:00.0 Ethernet controller: Intel Corporation Ethernet Controller X710/X557-AT 10GBASE-T (rev 01)
>>>                 [...]
>>>   
>>>       We will pass one of the ethernet from the PCI network card : 0000:01:00.0 .
>>>   
>>>      • Add the following line to the guest configuration file :
>>>            pci = ['0000:01:00.0']
>>>   
>>>      • Run the following command before starting the guest :
>>>             xl pci-assignable-add 0000:01:00.0
>>>      • Start the guest. The network interface should appear as 00:00.0  in the guest and be usable.
>>>   
>>> Please let me know if you need more info.
>>>
>>>
>>>
>>> Regards,
>>> Rahul
>>>
>> Thank you for your reply.
>> After setting XEN and kernel as above, I tried the following two methods to add a PCIE device passthrough:
>> 1. According to your suggestion, use the command xl pci-assignable-add 0002:21:00.0 to set in the Dom0. But in function
>> iommu_do_pci_domctl,  after device_assigned is called, ENODEV error is obtained.
>> 2. Add xen-pciback.hide=(0002:21:00.0) to dom0-bootargs in the device tree, I encountered the same problem as before
>> when initializing the kernel. In function pci_add_device, PCIE devices cannot be added to SMMUv3.
> It is hard to find what is happening without logs. Could you please share the Xen and Linux boot logs so that I can
> check what is the root cause of this issue.
>
>> The kernel version I use is 5.10. Does this have an impact?
> I am using the Linux version 5.15.44 but I don’t think is because of Linux.
>
> Regards,
> Rahul

The attachment is a log file. I have to delete some content that may 
involve commercial. Please forgive me.

In addition, I have forgotten to tell you a very important information. 
The PCIE controller used on my board
is DesignWare. I referred to the code of ECAM under XEN and added some 
support related to DesignWare
(DBI space mapping and PCIE read/write).

In addition, if needed ,I can pre initialized PCIE controller in the 
uboot stage, so  I can scan the PCIE device
in the uboot command line.

Cheers,

[-- Attachment #2: xen.log --]
[-- Type: text/x-log, Size: 11836 bytes --]

(XEN) Checking for initrd in /chosen
(XEN) RAM: 0000000000200000 - 00000000083fffff
(XEN) RAM: 0000000009400000 - 00000000efffffff
(XEN) 
(XEN) MODULE[0]: 0000000000400000 - 00000000005870f8 Xen         
(XEN) MODULE[1]: 0000000008300000 - 0000000008329000 Device Tree 
(XEN) MODULE[2]: 0000000000600000 - 0000000002600000 Kernel      
(XEN)  RESVD[0]: 0000000008300000 - 0000000008329000
(XEN) 
(XEN) 
(XEN) Command line: iommu=1 dom0_mem=2G dom0_max_vcpus=8 hmp-unsafe=1 loglvl=all dtuart=serial2 console=dtuart sync_console=1 pci-passthrough=1
(XEN) Domain heap initialised
(XEN) Booting using Device Tree
(XEN) Platform: Generic System
(XEN) Looking for dtuart at "serial2", options ""
 Xen 4.16.2
(XEN) Xen version 4.16.2 (zlw@) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 10.3-2021.07 (arm-10.29)) 10.3.1 20210621) debug=y Tue Dec 13 08:34:25 CST 2022
(XEN) Latest ChangeSet: Thu Nov 3 10:20:40 2022 +0800 git:3b060c3-dirty
(XEN) build-id: a0bcd92c2e9c44c2b86268a2bc500f0474bf78da
(XEN) Console output is synchronous.
(XEN) Processor: 00000000412fd050: "ARM Limited", variant: 0x2, part 0xd05,rev 0x0
(XEN) 64-bit Execution:
(XEN)   Processor Features: 0000000011112222 0000000000000010
(XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
(XEN)     Extensions: FloatingPoint AdvancedSIMD GICv3-SysReg
(XEN)   Debug Features: 0000000010305408 0000000000000000
(XEN)   Auxiliary Features: 0000000000000000 0000000000000000
(XEN)   Memory Model Features: 0000000000101122 0000000010212122
(XEN)   ISA Features:  0000100010211120 0000000000100001
(XEN) 32-bit Execution:
(XEN)   Processor Features: 0000000010000131:0000000010011011
(XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
(XEN)     Extensions: GenericTimer Security
(XEN)   Debug Features: 0000000004010088
(XEN)   Auxiliary Features: 0000000000000000
(XEN)   Memory Model Features: 0000000010201105 0000000040000000
(XEN)                          0000000001260000 0000000002122211
(XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
(XEN)                 0000000001112131 0000000000011142 0000000001011121
(XEN) Using SMC Calling Convention v1.2
(XEN) Using PSCI v1.1
(XEN) SMP: Allowing 8 CPUs
(XEN) enabled workaround for: ARM erratum 1530923
(XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 24000 KHz
(XEN) GICv3 initialization:
(XEN)       gic_dist_addr=0x000000fe600000
(XEN)       gic_maintenance_irq=25
(XEN)       gic_rdist_stride=0
(XEN)       gic_rdist_regions=1
(XEN)       redistributor regions:
(XEN)         - region 0: 0x000000fe680000 - 0x000000fe780000
(XEN) GICv3: using at most 57344 LPIs on the host.
(XEN) GICv3: 512 lines, (IID 0201743b).
(XEN) GICv3: Found ITS @0xfe640000
(XEN) GICv3: Found ITS @0xfe660000
(XEN) GICv3: CPU0: Found redistributor in region 0 @000000004001c000
(XEN) gicv3_enable_lpis,000000004001c008, type:val:0x21
(XEN) gicv3_enable_lpis,000000004001c000, ctl:val:0x0
(XEN) XSM Framework v1.0.1 initialized
(XEN) Initialising XSM SILO mode
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Allocated console ring of 64 KiB.
(XEN) CPU0: Guest atomics will try 11 times before pausing the domain
(XEN) Bringing up CPU1
(XEN) GICv3: CPU1: Found redistributor in region 0 @000000004003c000
(XEN) CPU1: Guest atomics will try 13 times before pausing the domain
(XEN) CPU 1 booted.
(XEN) Bringing up CPU2
(XEN) GICv3: CPU2: Found redistributor in region 0 @000000004005c000
(XEN) CPU2: Guest atomics will try 7 times before pausing the domain
(XEN) CPU 2 booted.
(XEN) Bringing up CPU3
(XEN) GICv3: CPU3: Found redistributor in region 0 @000000004007c000
(XEN) CPU3: Guest atomics will try 13 times before pausing the domain
(XEN) CPU 3 booted.
(XEN) Bringing up CPU4
(XEN) CPU4 MIDR (0x00000000414fd0b0) does not match boot CPU MIDR (0x00000000412fd050),
(XEN) hmp-unsafe turned on so tainting Xen and keep core on!!
(XEN) SANITY DIF: aa64pfr0 0x11112222 -> 0x1100000011111112
(XEN) SANITY FIX: aa64pfr0 0x11112222 -> 0x11111112
(XEN) SANITY DIF: ctr 0x84448004 -> 0x9444c004
(XEN) SANITY CHECK: Unexpected variation in ctr.
(XEN) SANITY DIF: pfr0 0x10000131 -> 0x10010131
(XEN) SANITY DIF: pfr1 0x10011011 -> 0x10010000
(XEN) SANITY FIX: pfr1 0x10011011 -> 0x10010000
(XEN) SANITY CHECK: Unexpected variation in pfr1.
(XEN) SANITY DIF: pfr2 0x10 -> 0x11
(XEN) SANITY DIF: isar4 0x11142 -> 0x10142
(XEN) SANITY FIX: isar4 0x11142 -> 0x10142
(XEN) SANITY CHECK: Unexpected variation in isar4.
(XEN) GICv3: CPU4: Found redistributor in region 0 @000000004009c000
(XEN) CPU4: Guest atomics will try 13 times before pausing the domain
(XEN) CPU 4 booted.
(XEN) Bringing up CPU5
(XEN) CPU5 MIDR (0x00000000414fd0b0) does not match boot CPU MIDR (0x00000000412fd050),
(XEN) hmp-unsafe turned on so tainting Xen and keep core on!!
(XEN) SANITY DIF: aa64pfr0 0x11111112 -> 0x1100000011111112
(XEN) SANITY DIF: ctr 0x84448004 -> 0x9444c004
(XEN) SANITY CHECK: Unexpected variation in ctr.
(XEN) SANITY DIF: pfr0 0x10000131 -> 0x10010131
(XEN) SANITY DIF: pfr2 0x10 -> 0x11
(XEN) GICv3: CPU5: Found redistributor in region 0 @00000000400bc000
(XEN) CPU5: Guest atomics will try 16 times before pausing the domain
(XEN) CPU 5 booted.
(XEN) Bringing up CPU6
(XEN) CPU6 MIDR (0x00000000414fd0b0) does not match boot CPU MIDR (0x00000000412fd050),
(XEN) hmp-unsafe turned on so tainting Xen and keep core on!!
(XEN) SANITY DIF: aa64pfr0 0x11111112 -> 0x1100000011111112
(XEN) SANITY DIF: ctr 0x84448004 -> 0x9444c004
(XEN) SANITY CHECK: Unexpected variation in ctr.
(XEN) SANITY DIF: pfr0 0x10000131 -> 0x10010131
(XEN) SANITY DIF: pfr2 0x10 -> 0x11
(XEN) GICv3: CPU6: Found redistributor in region 0 @00000000400dc000
(XEN) CPU6: Guest atomics will try 12 times before pausing the domain
(XEN) CPU 6 booted.
(XEN) Bringing up CPU7
(XEN) CPU7 MIDR (0x00000000414fd0b0) does not match boot CPU MIDR (0x00000000412fd050),
(XEN) hmp-unsafe turned on so tainting Xen and keep core on!!
(XEN) SANITY DIF: aa64pfr0 0x11111112 -> 0x1100000011111112
(XEN) SANITY DIF: ctr 0x84448004 -> 0x9444c004
(XEN) SANITY CHECK: Unexpected variation in ctr.
(XEN) SANITY DIF: pfr0 0x10000131 -> 0x10010131
(XEN) SANITY DIF: pfr2 0x10 -> 0x11
(XEN) GICv3: CPU7: Found redistributor in region 0 @00000000400fc000
(XEN) CPU7: Guest atomics will try 13 times before pausing the domain
(XEN) CPU 7 booted.
(XEN) Brought up 8 CPUs
(XEN) SMMUv3: /iommu@fc900000: IRQ combined not found
(XEN) SMMUv3: /iommu@fc900000: ias 48-bit, oas 48-bit (features 0x00001c1f)
(XEN) SMMUv3: /iommu@fc900000: allocated 524288 entries for cmdq
(XEN) SMMUv3: /iommu@fc900000: allocated 524288 entries for evtq
(XEN) SMMUv3: /iommu@fc900000: allocated 524288 entries for priq
(XEN) I/O virtualisation enabled
(XEN)  - Dom0 mode: Relaxed
(XEN) P2M: 40-bit IPA with 40-bit PA and 16-bit VMID
(XEN) P2M: 3 levels with order-1 root, VTCR 0x00000000800a3558
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Adding cpu 0 to runqueue 0
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 1 to runqueue 0
(XEN) Adding cpu 2 to runqueue 0
(XEN) Adding cpu 3 to runqueue 0
(XEN) Adding cpu 4 to runqueue 0
(XEN) Adding cpu 5 to runqueue 0
(XEN) Adding cpu 6 to runqueue 0
(XEN) Adding cpu 7 to runqueue 0
(XEN) DWC at [mem 0x00000000f2000000-0x00000000f20fffff] for [bus 20-2f] 
(XEN) DWC dbi at [mem 0x0000000a40800000-0x0000000a40bfffff] for [bus 20-2f] 
(XEN) /chosen/passthrough/pcie@fe170000: No bus range found for pci controller
(XEN) OP-TEE supports 2 simultaneous threads per guest.
(XEN) alternatives: Patching with alt table 0000000000305118 -> 0000000000305b5c
(XEN) CPU6 will use 24 loops workaround on exception entry
(XEN) CPU5 will use 24 loops workaround on exception entry
(XEN) CPU7 will use 24 loops workaround on exception entry
(XEN) CPU4 will use 24 loops workaround on exception entry
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Loading d0 kernel from boot module @ 0000000000600000
(XEN) Allocating 1:1 mappings totalling 2048MB for dom0:
(XEN) BANK[0] 0x00000040000000-0x000000c0000000 (2048MB)
(XEN) Grant table range: 0x00000000400000-0x00000000440000
(XEN) SMMUv3: /pcie@fe170000: Added master device (SMMUv3 /iommu@fc900000 StreamIds 1)
(XEN) SMMUv3: d0: vmid 0x1 vtcr 0x0000000000053558 p2maddr 0x000000000832e000
(XEN) Allocating PPI 16 for event channel interrupt
(XEN) Failed to allocate extended regions
(XEN) Loading zImage from 0000000000600000 to 0000000040000000-0000000042000000
(XEN) Loading d0 DTB to 0x0000000048000000-0x00000000480274fc
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Scrubbing Free RAM in background
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) ***************************************************
(XEN) WARNING: CONSOLE OUTPUT IS SYNCHRONOUS
(XEN) This option is intended to aid debugging of Xen by ensuring
(XEN) that all output is synchronously delivered on the serial line.
(XEN) However it can introduce SIGNIFICANT latencies and affect
(XEN) timekeeping. It is NOT recommended for production use!
(XEN) ***************************************************
(XEN) WARNING: HMP COMPUTING HAS BEEN ENABLED.
(XEN) It has implications on the security and stability of the system,
(XEN) unless the cpu affinity of all domains is specified.
(XEN) ***************************************************
(XEN) 3... 2... 1... 
(XEN) *** Serial input to DOM0 (type 'CTRL-b' three times to switch input)
(XEN) Freed 360kB init memory.
(XEN) d0v0: vGICD: RAZ on reserved register offset 0x00000c
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER24
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER28
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER32
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER36
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER40
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER44
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER48
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER52
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER56
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER60
(XEN) d0v0: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v1: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v2: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v3: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v4: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v5: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v6: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v7: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v0 Unhandled SMC/HVC: 0x82000010
(XEN) d0v0 Unhandled SMC/HVC: 0x82000009
(XEN) d0v0 Unhandled SMC/HVC: 0x82000009
(XEN) d0v4 Unhandled SMC/HVC: 0xbf00ff01
(XEN) d0v4 Unhandled SMC/HVC: 0x82000003
(XEN) d0v4 Unhandled SMC/HVC: 0x82000003
(XEN) d0v4 Unhandled SMC/HVC: 0x82000003
(XEN) d0v4 Unhandled SMC/HVC: 0x82000003

[-- Attachment #3: kernel.log --]
[-- Type: text/x-log, Size: 129767 bytes --]

[    4.073110] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    4.073128] Linux version 5.10.110 (zlw@Sisyphean) (Android (7284624, based on r416183b) clang version 12.0.5 (https://android.googlesource.com/toolchain/llvm-project c935d99d7cf2016289302412d708641d52d2f7ee), LLD 12.0.5 (/buildbot/src/android/llvm-toolchain/out/llvm-project/lld c935d99d7cf2016289302412d708641d52d2f7ee)) #192 SMP Mon Dec 12 09:50:32 CST 2022
[    4.082735] Machine model: Rockchip RK3588 TOYBRICK X10 Board
[    4.082756] PCI: Unknown option `msi'
[    4.085551] Xen 4.16 support found
[    4.090209] efi: UEFI not found.
[    4.095532] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-logo@00000000': base 0x0000000000000000, size 0 MiB
[    4.095550] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-cubic-lut@00000000': base 0x0000000000000000, size 0 MiB
[    4.137010] Zone ranges:
[    4.137020]   DMA      [mem 0x0000000040000000-0x00000000bfffffff]
[    4.137029]   DMA32    empty
[    4.137034]   Normal   empty
[    4.137039] Movable zone start for each node
[    4.137042] Early memory node ranges
[    4.137047]   node   0: [mem 0x0000000040000000-0x00000000bfffffff]
[    4.137055] Initmem setup node 0 [mem 0x0000000040000000-0x00000000bfffffff]
[    4.137062] On node 0 totalpages: 524288
[    4.137066]   DMA zone: 8192 pages used for memmap
[    4.137069]   DMA zone: 0 pages reserved
[    4.137072]   DMA zone: 524288 pages, LIFO batch:63
[    4.149483] cma: Reserved 128 MiB at 0x00000000b5800000
[    4.150054] psci: probing for conduit method from DT.
[    4.150066] psci: PSCIv1.1 detected in firmware.
[    4.150070] psci: Using standard PSCI v0.2 function IDs
[    4.150076] psci: Trusted OS migration not required
[    4.150083] psci: SMC Calling Convention v1.1
[    4.150761] percpu: Embedded 30 pages/cpu s85016 r8192 d29672 u122880
[    4.150805] pcpu-alloc: s85016 r8192 d29672 u122880 alloc=30*4096
[    4.150811] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 
[    4.150957] Detected VIPT I-cache on CPU0
[    4.150992] CPU features: detected: GIC system register CPU interface
[    4.151004] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    4.151386] Built 1 zonelists, mobility grouping on.  Total pages: 516096
[    4.151395] Kernel command line: pci=msi iommu=1 psi=1 console=hvc0 root=PARTUUID=614e0000-0000-4b53-8000-1d28000054a9 rw rootwait xen-pciback.hide=(0002:21:00.0)
[    4.151756] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    4.151864] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    4.151871] mem auto-init: stack:off, heap alloc:off, heap free:off
[    4.167043] Memory: 1891696K/2097152K available (20480K kernel code, 3218K rwdata, 6196K rodata, 1856K init, 583K bss, 74384K reserved, 131072K cma-reserved)
[    4.167156] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    4.167183] ftrace: allocating 56449 entries in 221 pages
[    4.247305] ftrace: allocated 221 pages with 6 groups
[    4.247537] rcu: Hierarchical RCU implementation.
[    4.247544] rcu: 	RCU event tracing is enabled.
[    4.247549] 	Rude variant of Tasks RCU enabled.
[    4.247554] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    4.251680] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    4.253542] GICv3: 480 SPIs implemented
[    4.253548] GICv3: 0 Extended SPIs implemented
[    4.254033] GICv3: Distributor has no Range Selector support
[    4.254059] GICv3: 16 PPIs implemented
[    4.262937] GICv3: CPU0: found redistributor 0 region 0:0x00000000fe680000
[    4.263640] ITS [mem 0xfe640000-0xfe65ffff]
[    4.263789] ITS@0x00000000fe640000: Devices doesn't stick: 8907000042200207 9907000042200207
[    4.263806] ITS@0x00000000fe640000: failed probing (-6)
[    4.263826] ITS [mem 0xfe660000-0xfe67ffff]
[    4.263961] ITS@0x00000000fe660000: Devices doesn't stick: 8907000042200207 9907000042200207
[    4.263970] ITS@0x00000000fe660000: failed probing (-6)
[    4.264079] ITS: No ITS available, not enabling LPIs
[    4.264186] random: get_random_bytes called from start_kernel+0x250/0x4f0 with crng_init=0
[    4.395022] arch_timer: cp15 timer(s) running at 24.00MHz (virt).
[    4.395034] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    4.395043] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    4.395943] Console: colour dummy device 80x25
[    4.428315] printk: console [hvc0] enabled
[    4.428690] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[    4.429583] pid_max: default: 32768 minimum: 301
[    4.430086] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    4.430735] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    4.433091] xen:grant_table: Grant tables using version 1 layout
[    4.433635] Grant table initialized
[    4.433965] xen:events: Using FIFO-based ABI
[    4.434354] Xen: initializing cpu0
[    4.434755] rcu: Hierarchical SRCU implementation.
[    4.435886] msi-controller: unable to locate ITS domain
[    4.436343] msi-controller: unable to locate ITS domain
[    4.437022] msi-controller: Unable to locate ITS domain
[    4.437476] msi-controller: Unable to locate ITS domain
[    4.438038] EFI services will not be available.
[    4.438679] smp: Bringing up secondary CPUs ...
[    4.439527] Detected VIPT I-cache on CPU1
[    4.439564] GICv3: CPU1: found redistributor 1 region 0:0x00000000fe6a0000
[    4.440193] Xen: initializing cpu1
[    4.440250] CPU1: Booted secondary processor 0x0000000001 [0x412fd050]
[    4.441019] Detected VIPT I-cache on CPU2
[    4.441059] GICv3: CPU2: found redistributor 2 region 0:0x00000000fe6c0000
[    4.441690] Xen: initializing cpu2
[    4.441742] CPU2: Booted secondary processor 0x0000000002 [0x412fd050]
[    4.442435] Detected VIPT I-cache on CPU3
[    4.442473] GICv3: CPU3: found redistributor 3 region 0:0x00000000fe6e0000
[    4.443098] Xen: initializing cpu3
[    4.443145] CPU3: Booted secondary processor 0x0000000003 [0x412fd050]
[    4.443680] CPU features: detected: Kernel page table isolation (KPTI)
[    4.443684] CPU features: detected: Spectre-v2
[    4.443686] CPU features: detected: Spectre-v4
[    4.443691] CPU features: detected: Spectre-BHB
[    4.443711] Detected PIPT I-cache on CPU4
[    4.443734] GICv3: CPU4: found redistributor 4 region 0:0x00000000fe700000
[    4.444332] Xen: initializing cpu4
[    4.444359] CPU4: Booted secondary processor 0x0000000004 [0x414fd0b0]
[    4.444838] Detected PIPT I-cache on CPU5
[    4.444859] GICv3: CPU5: found redistributor 5 region 0:0x00000000fe720000
[    4.445450] Xen: initializing cpu5
[    4.445475] CPU5: Booted secondary processor 0x0000000005 [0x414fd0b0]
[    4.445945] Detected PIPT I-cache on CPU6
[    4.445966] GICv3: CPU6: found redistributor 6 region 0:0x00000000fe740000
[    4.446556] Xen: initializing cpu6
[    4.446581] CPU6: Booted secondary processor 0x0000000006 [0x414fd0b0]
[    4.447036] Detected PIPT I-cache on CPU7
[    4.447059] GICv3: CPU7: found redistributor 7 region 0:0x00000000fe760000
[    4.447649] Xen: initializing cpu7
[    4.447675] CPU7: Booted secondary processor 0x0000000007 [0x414fd0b0]
[    4.447762] smp: Brought up 1 node, 8 CPUs
[    4.462650] SMP: Total of 8 processors activated.
[    4.463072] CPU features: detected: Privileged Access Never
[    4.463553] CPU features: detected: User Access Override
[    4.464019] CPU features: detected: 32-bit EL0 Support
[    4.464468] CPU features: detected: Common not Private translations
[    4.465017] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    4.465766] CPU features: detected: CRC32 instructions
[    4.466216] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    4.466835] CPU features: detected: RCpc load-acquire (LDAPR)
[    4.595758] CPU: All CPU(s) started at EL1
[    4.596184] alternatives: patching kernel code
[    4.597899] devtmpfs: initialized
[    4.608026] Duplicate name in interrupt-controller, renamed to "msi-controller#1"
[    4.617360] Registered cp15_barrier emulation handler
[    4.617861] Registered setend emulation handler
[    4.618385] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    4.619271] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    4.622898] pinctrl core: initialized pinctrl subsystem
[    4.623906] DMI not present or invalid.
[    4.624431] NET: Registered protocol family 16
[    4.626602] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    4.627395] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    4.629301] thermal_sys: Registered thermal governor 'fair_share'
[    4.629321] thermal_sys: Registered thermal governor 'step_wise'
[    4.629851] thermal_sys: Registered thermal governor 'user_space'
[    4.630377] thermal_sys: Registered thermal governor 'power_allocator'
[    4.631125] thermal thermal_zone1: power_allocator: sustainable_power will be estimated
[    4.632448] thermal thermal_zone2: power_allocator: sustainable_power will be estimated
[    4.633212] thermal thermal_zone3: power_allocator: sustainable_power will be estimated
[    4.633964] thermal thermal_zone4: power_allocator: sustainable_power will be estimated
[    4.634715] thermal thermal_zone5: power_allocator: sustainable_power will be estimated
[    4.635465] thermal thermal_zone6: power_allocator: sustainable_power will be estimated
[    4.636171] Registered FIQ tty driver
[    4.636666] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    4.637662] ASID allocator initialised with 32768 entries
[    4.638157] xen:swiotlb_xen: Warning: only able to allocate 4 MB for software IO TLB
[    4.639214] software IO TLB: mapped [mem 0x0000000043000000-0x0000000043400000] (4MB)
[    4.728702] gpio fd8a0000.gpio: probed /pinctrl/gpio@fd8a0000
[    4.729678] gpio fec20000.gpio: probed /pinctrl/gpio@fec20000
[    4.730658] gpio fec30000.gpio: probed /pinctrl/gpio@fec30000
[    4.731661] gpio fec40000.gpio: probed /pinctrl/gpio@fec40000
[    4.732696] gpio fec50000.gpio: probed /pinctrl/gpio@fec50000
[    4.733311] pinctrl pinctrl: probed pinctrl
[    4.757243] fiq_debugger fiq_debugger.0: IRQ fiq not found
[    4.757724] fiq_debugger fiq_debugger.0: IRQ uart_irq not found
[    4.758242] fiq_debugger fiq_debugger.0: IRQ signal not found
[    4.758743] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[    4.759640] printk: console [ttyFIQ0] enabled
[    4.760165] Registered fiq debugger ttyFIQ0
[    4.760600] xen:balloon: Initialising balloon driver
[    4.761688] vcc5v0_sys: supplied by vcc12v_dcin
[    4.762284] vcc5v0_usbdcin: supplied by vcc12v_dcin
[    4.762919] vcc5v0_usb: supplied by vcc5v0_usbdcin
[    4.763540] vcc_1v1_nldo_s3: supplied by vcc5v0_sys
[    4.764368] vbus5v0_typec: supplied by vcc5v0_usb
[    4.764994] vcc3v3_pcie30: supplied by vcc12v_dcin
[    4.765595] vcc5v0_host: supplied by vcc5v0_usb
[    4.766570] debugfs: Directory 'vcc_mipicsi1' with parent 'regulator' already present!
[    4.767273] debugfs: Directory 'vcc_mipicsi1' with parent 'vcc_mipicsi1' already present!
[    4.768467] iommu: Default domain type: Translated 
[    4.769389] SCSI subsystem initialized
[    4.769746] libata version 3.00 loaded.
[    4.769876] usbcore: registered new interface driver usbfs
[    4.770388] usbcore: registered new interface driver hub
[    4.770873] usbcore: registered new device driver usb
[    4.771403] mc: Linux media interface: v0.10
[    4.771796] videodev: Linux video capture interface: v2.00
[    4.772321] pps_core: LinuxPPS API ver. 1 registered
[    4.772752] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    4.773561] PTP clock support registered
[    4.774314] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
[    4.775233] arm-scmi firmware:scmi: unable to communicate with SCMI
[    4.775873] arm-scmi: probe of firmware:scmi failed with error -95
[    4.777917] Advanced Linux Sound Architecture Driver Initialized.
[    4.778764] Bluetooth: Core ver 2.22
[    4.779100] NET: Registered protocol family 31
[    4.779486] Bluetooth: HCI device and connection manager initialized
[    4.780048] Bluetooth: HCI socket layer initialized
[    4.780479] Bluetooth: L2CAP socket layer initialized
[    4.780928] Bluetooth: SCO socket layer initialized
[    4.782774] cpuinfo cpuinfo: SoC		: 0
[    4.783169] cpuinfo cpuinfo: Serial		: 0000000000000000
[    4.784168] clocksource: Switched to clocksource arch_sys_counter
[    5.218160] NET: Registered protocol family 2
[    5.218638] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    5.220471] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    5.221288] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    5.222080] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    5.222885] TCP: Hash tables configured (established 16384 bind 16384)
[    5.223524] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    5.224139] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    5.224901] NET: Registered protocol family 1
[    5.225722] RPC: Registered named UNIX socket transport module.
[    5.226238] RPC: Registered udp transport module.
[    5.226649] RPC: Registered tcp transport module.
[    5.227062] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.228157] PCI: CLS 0 bytes, default 64
[    5.233388] Initialise system trusted keyrings
[    5.233910] workingset: timestamp_bits=62 max_order=19 bucket_order=0
[    5.238130] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    5.239100] NFS: Registering the id_resolver key type
[    5.239557] Key type id_resolver registered
[    5.239920] Key type id_legacy registered
[    5.240295] ntfs: driver 2.1.32 [Flags: R/O].
[    5.240845] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    5.241594] fuse: init (API version 7.32)
[    5.242170] SGI XFS with security attributes, no debug enabled
[    5.275886] NET: Registered protocol family 38
[    5.276281] Key type asymmetric registered
[    5.276637] Asymmetric key parser 'x509' registered
[    5.277087] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)
[    5.277763] io scheduler mq-deadline registered
[    5.278157] io scheduler kyber registered
[    5.294748] hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy init success
[    5.298583] pcie fe170000.pcie: invalid prsnt-gpios property in node
[    5.298866] pwm-backlight backlight: supply power not found, using dummy regulator
[    5.299160] pcie fe170000.pcie: no vpcie3v3 regulator found
[    5.300318] iep: Module initialized.
[    5.300469] pcie fe170000.pcie: missing legacy IRQ resource
[    5.301176] pcie fe170000.pcie: IRQ msi not found
[    5.301602] pcie fe170000.pcie: use outband MSI support
[    5.302088] pcie fe170000.pcie: host bridge /pcie@fe170000 ranges:
[    5.302683] pcie fe170000.pcie:       IO 0x00f2100000..0x00f21fffff -> 0x00f2100000
[    5.303368] pcie fe170000.pcie:      MEM 0x00f2200000..0x00f2ffffff -> 0x00f2200000
[    5.304056] pcie fe170000.pcie:      MEM 0x0980000000..0x09bfffffff -> 0x0980000000
[    5.304783] pcie fe170000.pcie: invalid resource
[    5.305232] dma-pl330 fea10000.dma-controller: Loaded driver for PL330 DMAC-241330
[    5.305898] dma-pl330 fea10000.dma-controller: 	DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    5.308142] dma-pl330 fea30000.dma-controller: Loaded driver for PL330 DMAC-241330
[    5.308809] dma-pl330 fea30000.dma-controller: 	DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    5.311070] dma-pl330 fed10000.dma-controller: Loaded driver for PL330 DMAC-241330
[    5.311737] dma-pl330 fed10000.dma-controller: 	DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    5.313365] pvtm fda40000.pvtm: pvtm@0 probed
[    5.313893] pvtm fda50000.pvtm: pvtm@1 probed
[    5.314446] pvtm fda60000.pvtm: pvtm@2 probed
[    5.314983] pvtm fdaf0000.pvtm: pvtm@3 probed
[    5.315505] pvtm fdb30000.pvtm: pvtm@4 probed
[    5.316515] system-monitor system-monitor: system monitor probe
[    5.317774] xen:xen_evtchn: Event-channel device installed
[    5.318292] xen_pciback: backend is vpci
[    5.326006] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[    5.327159] febb0000.serial: ttyS8 at MMIO 0xfebb0000 (irq = 42, base_baud = 1500000) is a 16550A
[    5.333990] drm display-subsystem: [drm:drm_platform_probe] *ERROR* No available vop found for display-subsystem.
[    5.335514] no ATF memory for init
[    5.341681] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    5.342668] brd: module loaded
[    5.347731] loop: module loaded
[    5.348366] zram: Added device: zram0
[    5.348877] lkdtm: No crash points registered, enable through debugfs
[    5.349603] system_heap: orders[0] = 6
[    5.349930] system_heap: orders[1] = 4
[    5.350259] system_heap: orders[2] = 0
[    5.351366] no ATF memory for init
[    5.352908] ahci fe210000.sata: supply ahci not found, using dummy regulator
[    5.353608] ahci fe210000.sata: supply phy not found, using dummy regulator
[    5.354325] ahci fe210000.sata: supply target not found, using dummy regulator
[    5.355037] ahci fe210000.sata: forcing port_map 0x0 -> 0x1
[    5.355548] ahci fe210000.sata: AHCI 0001.0300 32 slots 1 ports 6 Gbps 0x1 impl platform mode
[    5.356296] ahci fe210000.sata: flags: ncq sntf pm led clo only pmp fbs pio slum part ccc apst 
[    5.357061] ahci fe210000.sata: port 0 can do FBS, forcing FBSCP
[    5.358635] scsi host0: ahci
[    5.359083] ata1: SATA max UDMA/133 mmio [mem 0xfe210000-0xfe210fff] port 0x100 irq 32
[    5.361079] spi feb20000.spi: no high_speed pinctrl state
[    5.367075] vdd_gpu_s0: supplied by vcc5v0_sys
[    5.368924] vdd_cpu_lit_s0: supplied by vcc5v0_sys
[    5.370411] vdd_log_s0: supplied by vcc5v0_sys
[    5.371758] vdd_vdenc_s0: supplied by vcc5v0_sys
[    5.373305] vdd_ddr_s0: supplied by vcc5v0_sys
[    5.374390] vdd2_ddr_s3: supplied by vcc5v0_sys
[    5.375840] vdd_2v0_pldo_s3: supplied by vcc5v0_sys
[    5.377216] vcc_3v3_s3: supplied by vcc5v0_sys
[    5.378533] vddq_ddr_s0: supplied by vcc5v0_sys
[    5.379984] vcc_1v8_s3: supplied by vcc5v0_sys
[    5.381354] vdd_0v75_s3: supplied by vcc_1v1_nldo_s3
[    5.382810] vdd_ddr_pll_s0: supplied by vcc_1v1_nldo_s3
[    5.384194] avdd_0v75_s0: supplied by vcc_1v1_nldo_s3
[    5.385549] vdd_0v85_s0: supplied by vcc_1v1_nldo_s3
[    5.386907] vdd_0v75_s0: supplied by vcc_1v1_nldo_s3
[    5.388422] avcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[    5.390019] vcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[    5.391504] avdd_1v2_s0: supplied by vdd_2v0_pldo_s3
[    5.392978] vcc_3v3_s0: supplied by vcc5v0_sys
[    5.394293] vccio_sd_s0: supplied by vcc5v0_sys
[    5.394801] random: fast init done
[    5.395950] pldo6_s3: supplied by vcc5v0_sys
[    5.401950] CAN device driver interface
[    5.403486] gmac-dwmac fe1b0000.ethernet: IRQ eth_lpi not found
[    5.404296] gmac-dwmac fe1b0000.ethernet: no regulator found
[    5.404820] gmac-dwmac fe1b0000.ethernet: clock input or output? (output).
[    5.405440] gmac-dwmac fe1b0000.ethernet: TX delay(0x43).
[    5.405935] gmac-dwmac fe1b0000.ethernet: Can not read property: rx_delay.
[    5.406556] gmac-dwmac fe1b0000.ethernet: set rx_delay to 0xffffffff
[    5.407149] gmac-dwmac fe1b0000.ethernet: integrated PHY? (no).
[    5.407704] gmac-dwmac fe1b0000.ethernet: cannot get clock mac_clk_rx
[    5.408293] gmac-dwmac fe1b0000.ethernet: cannot get clock mac_clk_tx
[    5.408891] gmac-dwmac fe1b0000.ethernet: cannot get clock clk_mac_speed
[    5.409730] gmac-dwmac fe1b0000.ethernet: init for RGMII_RXID
[    5.410415] gmac-dwmac fe1b0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    5.411055] gmac-dwmac fe1b0000.ethernet: 	DWMAC4/5
[    5.411507] gmac-dwmac fe1b0000.ethernet: DMA HW capability register supported
[    5.412157] gmac-dwmac fe1b0000.ethernet: RX Checksum Offload Engine supported
[    5.412808] gmac-dwmac fe1b0000.ethernet: TX Checksum insertion supported
[    5.413424] gmac-dwmac fe1b0000.ethernet: Wake-Up On Lan supported
[    5.414027] gmac-dwmac fe1b0000.ethernet: TSO supported
[    5.414518] gmac-dwmac fe1b0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    5.415218] gmac-dwmac fe1b0000.ethernet: Enabled Flow TC (entries=2)
[    5.415799] gmac-dwmac fe1b0000.ethernet: TSO feature enabled
[    5.416325] gmac-dwmac fe1b0000.ethernet: Using 32 bits DMA width
[    5.549786] [dhd] STATIC-MSG) dhd_static_buf_init : 101.10.361.18 (wlan=r892223-20220519-1)
[    5.550804] [dhd] STATIC-MSG) dhd_init_wlan_mem : prealloc ok for index 0: 8131584(7941K)
[    5.551618] usbcore: registered new interface driver rtl8150
[    5.552141] usbcore: registered new interface driver r8152
[    5.566711] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.567298] ehci-pci: EHCI PCI platform driver
[    5.567501] pcie fe170000.pcie: PCIe Link up, LTSSM is 0x30011
[    5.567735] ehci-platform: EHCI generic platform driver
[    5.568266] pcie fe170000.pcie: PCI host bridge to bus 0002:20
[    5.569207] pci_bus 0002:20: root bus resource [bus 20-2f]
[    5.569686] pci_bus 0002:20: root bus resource [io  0x0000-0xfffff] (bus address [0xf2100000-0xf21fffff])
[    5.570518] pci_bus 0002:20: root bus resource [mem 0xf2200000-0xf2ffffff]
[    5.570855] ehci-platform fc800000.usb: EHCI Host Controller
[    5.571126] pci_bus 0002:20: root bus resource [mem 0x980000000-0x9bfffffff pref]
[    5.571785] ehci-platform fc800000.usb: new USB bus registered, assigned bus number 1
[    5.572281] pci 0002:20:00.0: [1d87:3588] type 01 class 0x060400
[    5.573047] ehci-platform fc800000.usb: irq 18, io mem 0xfc800000
[    5.573484] pci 0002:20:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[    5.578445] pci 0002:20:00.0: supports D1 D2
[    5.578811] pci 0002:20:00.0: PME# supported from D0 D1 D3hot
[    5.584183] ehci-platform fc800000.usb: USB 2.0 started, EHCI 1.00
[    5.586649] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    5.589996] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.592243] pci 0002:20:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    5.592275] usb usb1: Product: EHCI Host Controller
[    5.593355] usb usb1: Manufacturer: Linux 5.10.110 ehci_hcd
[    5.594120] usb usb1: SerialNumber: fc800000.usb
[    5.595135] hub 1-0:1.0: USB hub found
[    5.595559] hub 1-0:1.0: 1 port detected
[    5.598960] ehci-platform fc880000.usb: EHCI Host Controller
[    5.599593] ehci-platform fc880000.usb: new USB bus registered, assigned bus number 2
[    5.600568] ehci-platform fc880000.usb: irq 20, io mem 0xfc880000
[    5.609675] pci 0002:20:00.0: Primary bus is hard wired to 0
[    5.610161] pci 0002:20:00.0: bridge configuration invalid ([bus 01-ff]), reconfiguring
[    5.614193] ehci-platform fc880000.usb: USB 2.0 started, EHCI 1.00
[    5.615127] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    5.616241] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.617380] usb usb2: Product: EHCI Host Controller
[    5.618337] usb usb2: Manufacturer: Linux 5.10.110 ehci_hcd
[    5.619355] usb usb2: SerialNumber: fc880000.usb
[    5.620685] hub 2-0:1.0: USB hub found
[    5.621409] hub 2-0:1.0: 1 port detected
[    5.622822] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.623147] pci 0002:21:00.0: [14e4:449d] type 00 class 0x028000
[    5.623661] ohci-platform: OHCI generic platform driver
[    5.624866] ohci-platform fc840000.usb: Generic Platform OHCI controller
[    5.625669] ohci-platform fc840000.usb: new USB bus registered, assigned bus number 3
[    5.626680] ohci-platform fc840000.usb: irq 19, io mem 0xfc840000
[    5.636509] pci 0002:21:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit]
[    5.641692] pci 0002:21:00.0: reg 0x18: [mem 0x00000000-0x003fffff 64bit]
[    5.673735] ata1: SATA link down (SStatus 0 SControl 300)
[    5.688295] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[    5.689140] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.690279] usb usb3: Product: Generic Platform OHCI controller
[    5.691316] usb usb3: Manufacturer: Linux 5.10.110 ohci_hcd
[    5.692304] usb usb3: SerialNumber: fc840000.usb
[    5.693522] hub 3-0:1.0: USB hub found
[    5.694077] hub 3-0:1.0: 1 port detected
[    5.695303] ohci-platform fc8c0000.usb: Generic Platform OHCI controller
[    5.696086] ohci-platform fc8c0000.usb: new USB bus registered, assigned bus number 4
[    5.697120] ohci-platform fc8c0000.usb: irq 21, io mem 0xfc8c0000
[    5.697553] pci 0002:21:00.0: supports D1 D2
[    5.697555] pci 0002:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.735357] pci 0002:21:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    5.753853] pci_bus 0002:21: busn_res: [bus 21-2f] end is updated to 21
[    5.754434] pci 0002:20:00.0: BAR 8: assigned [mem 0xf2200000-0xf27fffff]
[    5.755019] pci 0002:20:00.0: BAR 6: assigned [mem 0xf2800000-0xf280ffff pref]
[    5.755649] pci 0002:21:00.0: BAR 2: assigned [mem 0xf2400000-0xf27fffff 64bit]
[    5.758299] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[    5.759049] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.760188] usb usb4: Product: Generic Platform OHCI controller
[    5.761224] usb usb4: Manufacturer: Linux 5.10.110 ohci_hcd
[    5.761728] pci 0002:21:00.0: BAR 0: assigned [mem 0xf2200000-0xf220ffff 64bit]
[    5.762213] usb usb4: SerialNumber: fc8c0000.usb
[    5.763568] hub 4-0:1.0: USB hub found
[    5.764114] hub 4-0:1.0: 1 port detected
[    5.765715] phy phy-fd5d4000.syscon:usb2-phy@4000.3: illegal mode
[    5.766499] xhci-hcd xhci-hcd.4.auto: xHCI Host Controller
[    5.767689] xhci-hcd xhci-hcd.4.auto: new USB bus registered, assigned bus number 5
[    5.768018] pci 0002:20:00.0: PCI bridge to [bus 21]
[    5.768639] xhci-hcd xhci-hcd.4.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000080002010010
[    5.769195] pci 0002:20:00.0:   bridge window [mem 0xf2200000-0xf27fffff]
[    5.769671] xhci-hcd xhci-hcd.4.auto: irq 68, io mem 0xfc400000
[    5.770555] ------------[ cut here ]------------
[    5.771237] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    5.771559] WARNING: CPU: 7 PID: 142 at include/linux/msi.h:219 __pci_enable_msi_range+0x308/0x4d8
[    5.771566] Modules linked in:
[    5.771966] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    5.772691] CPU: 7 PID: 142 Comm: pcie Not tainted 5.10.110 #192
[    5.773466] usb usb5: Product: xHCI Host Controller
[    5.773732] Hardware name: Rockchip RK3588 TOYBRICK X10 Board (DT)
[    5.773741] pstate: 20c00005 (nzCv daif +PAN +UAO -TCO BTYPE=--)
[    5.774398] usb usb5: Manufacturer: Linux 5.10.110 xhci-hcd
[    5.774497] pc : __pci_enable_msi_range+0x308/0x4d8
[    5.774506] lr : __pci_enable_msi_range+0x298/0x4d8
[    5.775048] usb usb5: SerialNumber: xhci-hcd.4.auto
[    5.775471] sp : ffffffc0129039b0
[    5.775479] x29: ffffffc0129039c0 
[    5.776332] hub 5-0:1.0: USB hub found
[    5.776536] x28: ffffff8004c40ad8 
[    5.777052] hub 5-0:1.0: 1 port detected
[    5.777456] x27: 00000000ffffffff x26: ffffff8004c40e61 
[    5.778106] xhci-hcd xhci-hcd.4.auto: xHCI Host Controller

[    5.778325] x25: 0000000000000000 
[    5.778741] xhci-hcd xhci-hcd.4.auto: new USB bus registered, assigned bus number 6
[    5.778907] x24: ffffff8004c48200 
[    5.779248] xhci-hcd xhci-hcd.4.auto: Host supports USB 3.0 SuperSpeed
[    5.779539] x23: ffffff8004c408b0 x22: 0000000000000020 
[    5.779928] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.

[    5.780361] x21: 0000000000000001 
[    5.780917] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    5.780964] x20: 0000000000000000 
[    5.781271] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.781934] x19: ffffff8004c40800 x18: 0000000000000000 
[    5.782237] usb usb6: Product: xHCI Host Controller

[    5.782812] x17: 0000000000000000 
[    5.783273] usb usb6: Manufacturer: Linux 5.10.110 xhci-hcd
[    5.783974] x16: 0000000000000001 
[    5.784111] usb usb6: SerialNumber: xhci-hcd.4.auto
[    5.784409] x15: 0000000000000000 x14: 0000000000000001 
[    5.784411] x13: 00000000fffffc7e x12: 00000000ffffffff 
[    5.784413] x11: 00000000ffffffff x10: 0000000000000005 
[    5.784415] x9 : 0000000000000000 x8 : ffffff8004c40ad8 
[    5.784427] x7 : 0000000000000000 
[    5.785470] hub 6-0:1.0: USB hub found
[    5.786067] x6 : 000000000000003f 
[    5.786559] hub 6-0:1.0: 1 port detected
[    5.786964] x5 : 0000000000000040 x4 : ffffffc012903954 
[    5.787389] usbcore: registered new interface driver cdc_acm

[    5.787413] x3 : 0000000000000002 
[    5.787906] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    5.788190] x2 : 0000000000000052 
[    5.788778] usbcore: registered new interface driver uas
[    5.789084] x1 : ffffffc0106a8cc8 x0 : 0000000000000000 
[    5.789623] usbcore: registered new interface driver usb-storage

[    5.790024] Call trace:
[    5.790537] usbcore: registered new interface driver usbserial_generic
[    5.790784]  __pci_enable_msi_range+0x308/0x4d8
[    5.791147] usbserial: USB Serial support registered for generic
[    5.791411]  pci_alloc_irq_vectors_affinity+0xbc/0x134
[    5.791423]  pcie_port_device_register+0x150/0x404
[    5.791786] usbcore: registered new interface driver cp210x
[    5.792222]  pcie_portdrv_probe+0x44/0xb8
[    5.792232]  pci_device_probe+0xe0/0x158
[    5.792730] usbserial: USB Serial support registered for cp210x
[    5.792855]  really_probe+0x274/0x724
[    5.792861]  driver_probe_device+0xec/0x164
[    5.793197] usbcore: registered new interface driver ftdi_sio
[    5.793851]  __device_attach_driver+0x124/0x1bc
[    5.793860]  bus_for_each_drv+0x8c/0xd8
[    5.794177] usbserial: USB Serial support registered for FTDI USB Serial Device
[    5.794615]  __device_attach+0x118/0x1b0
[    5.794625]  device_attach+0x20/0x2c
[    5.795192] usbcore: registered new interface driver keyspan
[    5.795607]  pci_bus_add_device+0x5c/0xa8
[    5.795616]  pci_bus_add_devices+0x4c/0x8c
[    5.795755] usbserial: USB Serial support registered for Keyspan - (without firmware)
[    5.795959]  pci_host_probe+0x80/0xb4
[    5.795967]  dw_pcie_host_init+0x310/0x3fc
[    5.796541] usbserial: USB Serial support registered for Keyspan 1 port adapter
[    5.796926]  pcie_really_probe+0x958/0xe04
[    5.796935]  kthread+0x120/0x258
[    5.797464] usbserial: USB Serial support registered for Keyspan 2 port adapter
[    5.797902]  ret_from_fork+0x10/0x30
[    5.797903] 
               PC: 0xffffffc0106a8d38:
[    5.797904] 8b38  aa1303e0 97ff3b0a 79400be8 5280003b 53010d08 1ac82368 6b15011f 5400006a
[    5.798349] usbserial: USB Serial support registered for Keyspan 4 port adapter

[    5.798827] 8b58 
[    5.799202] usbcore: registered new interface driver option
[    5.799515]  12800376 17ffffde
[    5.800048] usbserial: USB Serial support registered for GSM modem (1-port)
[    5.800355]  6b18011f 9102c277
[    5.800896] usbcore: registered new interface driver oti6858
[    5.801225]  910b627c 1a88c319
[    5.801641] usbserial: USB Serial support registered for oti6858
[    5.801963]  b4000134 2a1503e0
[    5.802630] usbcore: registered new interface driver pl2303

[    5.802955] 8b78 
[    5.803275] usbserial: USB Serial support registered for pl2303
[    5.803756]  2a1903e1 aa1403e2
[    5.804143] usbcore: registered new interface driver qcserial
[    5.804468]  97e8e375 2a0003f6 6b15001f 5400006a 17fffff2 2a1903f6
[    5.804472] 8b98  39412e68 910013e2 aa1303e0 11000901 97ff3aef 79400be8 aa1303e0 121f7902
[    5.804478] 8bb8  79000be2 39412e68 11000901 97ff3b70 b40000d4 2a1603e0 aa1403e1 97e8e275
[    5.804484] 8bd8  aa0003f9 14000002 aa1f03f9 aa1703e0 2a1603e1 aa1903e2 97e8dd1b b4001160
[    5.804489] 8bf8  39412e68 aa0003f8 910013e2 aa1303e0 11000901 97ff3ad6 39599e69 79400be8
[    5.804495] 8c18  36200069 32180108 79000be8 7940ab09 1280702d 53077d0a 53017d0b
[    5.805195] usbserial: USB Serial support registered for Qualcomm USB modem
[    5.805499]  0a0d0129
[    5.805906] usbcore: registered new interface driver sierra
[    5.806497] 8c38  33180149
[    5.806895] usbserial: USB Serial support registered for Sierra USB modem
[    5.807165]  1219016a 2a0a0129
[    5.808449] usbcore: registered new interface driver usbtouchscreen
[    5.808560]  93407eca f100054a
[    5.811588]  dac0114a cb0a03ea
[    5.812284] i2c /dev entries driver
[    5.812356]  531d710c
[    5.816612] vdd_cpu_big0_s0: supplied by vcc5v0_sys
[    5.816762] 8c58  9aca236a 7900af1f 121c098c 9a9f154a 7900ab09 12196529 dac0114a 2a0c0129
[    5.825638] 8c78  b9439e6c 531f094a 2a090149 521f0929 b9005b0c 7900ab09 39412e69 7219011f
[    5.826349] 8c98  52800208 5280018a 1a880148 0b080128 39018308 363800ab 12001d01 91014302
[    5.826777] vdd_cpu_big1_s0: supplied by vcc5v0_sys
[    5.827062] 8cb8  aa1303e0 97ff3afa aa1903e0 97edbde7 7940ab08 b000c6e9 b9440929 1280000c
[    5.828204] 8cd8  5304190a 1aca236b 1acb218b 7100115f 2a1f03f9 5a8b819b 35000129 36380108
[    5.828917] 8cf8  b9405308 f9400f09 39418301 2a1b0119 d102c120 2a1903e2 97ff3b54 b9005319
[    5.829629] 8d18  f9417268 f9017278 a900231c f9000118 f9416660 b4000060 3940a008 37000088
[    5.830342] 8d38* d4210000 12800259 14000006 aa1703e1 2a1603e2 97e8df09 2a0003f9 340001c0
[    5.831054] 8d58  b000c6e8 b9440908 35000408 39415308 363803c8 b9405308 f9400f09 39418301
[    5.831767] 8d78  0a3b0116 d102c120 2a1603e2 97ff3b37 14000017 f9400388 eb1c011f 54000180
[    5.832479] 8d98  3940134a b9400349 b3607d49 14000004 f9400108 eb1c011f 540000a0 363fffa9
[    5.833192] 8db8  b940250a 34ffff6a 14000037 aa1303e0 940003a3 34000360 b000c6e8 b9440908
[    5.833904] 8dd8  2a0003f9 34fffc48 2a1f03f6 aa1303e0 b9005316 97fffe15 5280003b 37f801f9
[    5.834617] 8df8  6b15033f 12800376 54ffeb8a 17ffff34 f0009701 9102c260
[    5.834625] husb311 2-004e: fail to read Vendor id(-6)
[    5.834629] husb311 2-004e: check vid/pid fail(-6)
[    5.835195]  9126b021 94353395
[    5.836336] 8e18  128002b6 17ffff2e aa1903e0 97edbd8f 12800176 17ffff2a 2a1903f6 17ffff28
[    5.836807] rtc-hym8563 2-0051: rtc information is valid
[    5.837049] 8e38  39599a68 37000088 aa1303e0 2a1f03e1 97ff6cbc 39412e68 910013e2 aa1303e0
[    5.838229] 8e58  11000901 97ff3a42 79400be8 aa1303e0 32000102 79000be2 39412e68 11000901
[    5.838942] 8e78  97ff3ac3 b9400348 aa1303e0 32140108 b9000348 97ff7caa b9401308 b9039e68
[    5.839388] rtc-hym8563 2-0051: registered as rtc0
[    5.839654] 8e98  17ffff0f 90008e61 912c3021 aa1703e0 943534a9 b000c6e8 b9440908 35000068
[    5.840791] 8eb8  39415308 373800e8 2a1f03f4 aa1303e0 b9005314 97fffddd 12800096 17ffff00
[    5.841503] 8ed8  b9405308 f9400f09 39418301 0a3b0114 d102c120 2a1403e2 97ff3adc 17fffff4
[    5.842216] 8ef8  d4210000 128002b6 17fffef5 94353baa d503245f aa1e03e9 d503201f d503233f
[    5.842928] 8f18  a9bf7bfd 910003fd aa1f03e4 2a1f03e5 94000004 a8c17bfd d50323bf d65f03c0
[    5.843641] 
               LR: 0xffffffc0106a8cc8:
[    5.844083] 8ac8  b9408269 34000229 128002b6 b0009789 f94007e8 f9462929 eb08013f 54002101
[    5.844795] 8ae8  2a1603e0 a9464ff4 a94557f6 a9445ff8 a94367fa a9426ffc a9417bfd 9101c3ff
[    5.845508] 8b08  d50323bf d65f03c0 376817c8 6b15031f 5400006a 12800436 17ffffed 37601ea8
[    5.846221] 8b28  39412e68 34fffd28 11000901 910013e2 aa1303e0 97ff3b0a 79400be8 5280003b
[    5.846933] 8b48  53010d08 1ac82368 6b15011f 5400006a 12800376 17ffffde 6b18011f 9102c277
[    5.847646] 8b68  910b627c 1a88c319 b4000134 2a1503e0 2a1903e1 aa1403e2 97e8e375 2a0003f6
[    5.848358] 8b88  6b15001f 5400006a 17fffff2 2a1903f6 39412e68 910013e2 aa1303e0 11000901
[    5.849071] 8ba8  97ff3aef 79400be8 aa1303e0 121f7902 79000be2 39412e68 11000901 97ff3b70
[    5.849783] 8bc8  b40000d4 2a1603e0 aa1403e1 97e8e275 aa0003f9 14000002 aa1f03f9 aa1703e0
[    5.850496] 8be8  2a1603e1 aa1903e2 97e8dd1b b4001160 39412e68 aa0003f8 910013e2 aa1303e0
[    5.851208] 8c08  11000901 97ff3ad6 39599e69 79400be8 36200069 32180108 79000be8 7940ab09
[    5.851921] 8c28  1280702d 53077d0a 53017d0b 0a0d0129 33180149 1219016a 2a0a0129 93407eca
[    5.852633] 8c48  f100054a dac0114a cb0a03ea 531d710c 9aca236a 7900af1f 121c098c 9a9f154a
[    5.853346] 8c68  7900ab09 12196529 dac0114a 2a0c0129 b9439e6c 531f094a 2a090149 521f0929
[    5.854058] 8c88  b9005b0c 7900ab09 39412e69 7219011f 52800208 5280018a 1a880148 0b080128
[    5.854771] 8ca8  39018308 363800ab 12001d01 91014302 aa1303e0 97ff3afa aa1903e0 97edbde7
[    5.855483] 8cc8* 7940ab08 b000c6e9 b9440929 1280000c 5304190a 1aca236b 1acb218b 7100115f
[    5.856195] 8ce8  2a1f03f9 5a8b819b 35000129 36380108 b9405308 f9400f09 39418301 2a1b0119
[    5.856908] 8d08  d102c120 2a1903e2 97ff3b54 b9005319 f9417268 f9017278 a900231c f9000118
[    5.857621] 8d28  f9416660 b4000060 3940a008 37000088 d4210000 12800259 14000006 aa1703e1
[    5.858333] 8d48  2a1603e2 97e8df09 2a0003f9 340001c0 b000c6e8 b9440908 35000408 39415308
[    5.859046] 8d68  363803c8 b9405308 f9400f09 39418301 0a3b0116 d102c120 2a1603e2 97ff3b37
[    5.859758] 8d88  14000017 f9400388 eb1c011f 54000180 3940134a b9400349 b3607d49 14000004
[    5.860471] 8da8  f9400108 eb1c011f 540000a0 363fffa9 b940250a 34ffff6a 14000037 aa1303e0
[    5.861183] 8dc8  940003a3 34000360 b000c6e8 b9440908 2a0003f9 34fffc48 2a1f03f6 aa1303e0
[    5.861896] 8de8  b9005316 97fffe15 5280003b 37f801f9 6b15033f 12800376 54ffeb8a 17ffff34
[    5.862608] 8e08  f0009701 9102c260 9126b021 94353395 128002b6 17ffff2e aa1903e0 97edbd8f
[    5.863321] 8e28  12800176 17ffff2a 2a1903f6 17ffff28 39599a68 37000088 aa1303e0 2a1f03e1
[    5.864033] 8e48  97ff6cbc 39412e68 910013e2 aa1303e0 11000901 97ff3a42 79400be8 aa1303e0
[    5.864746] 8e68  32000102 79000be2 39412e68 11000901 97ff3ac3 b9400348 aa1303e0 32140108
[    5.865458] 8e88  b9000348 97ff7caa b9401308 b9039e68 17ffff0f 90008e61 912c3021 aa1703e0
[    5.866170] 8ea8  943534a9 b000c6e8 b9440908 35000068 39415308 373800e8 2a1f03f4 aa1303e0
[    5.866883] 
               SP: 0xffffffc0129039b0:
[    5.867325] 37b0  12903860 ffffffc0 40f20b00 d8c209e0 129037e0 ffffffc0 1003b7c0 ffffffc0
[    5.868038] 37d0  f2000800 00000000 04ce4000 ffffff80 12903820 ffffffc0 113f6d98 ffffffc0
[    5.868751] 37f0  04c48200 ffffff80 20c00005 00000000 106a8d38 ffffffc0 00000000 00000000
[    5.869463] 3810  12903860 ffffffc0 f2000800 00000000 12903850 ffffffc0 113f6a64 ffffffc0
[    5.870176] 3830  129039b0 ffffffc0 04ce4140 ffffff80 ffffffff 0000007f 04c40800 ffffff80
[    5.870888] 3850  12903990 ffffffc0 10012408 ffffffc0 00000000 00000000 106a8cc8 ffffffc0
[    5.871600] 3870  00000052 00000000 00000002 00000000 12903954 ffffffc0 00000040 00000000
[    5.872313] 3890  0000003f 00000000 00000000 00000000 04c40ad8 ffffff80 00000000 00000000
[    5.873025] 38b0  00000005 00000000 ffffffff 00000000 ffffffff 00000000 fffffc7e 00000000
[    5.873738] 38d0  00000001 00000000 00000000 00000000 00000001 00000000 00000000 00000000
[    5.874451] 38f0  00000000 00000000 04c40800 ffffff80 00000000 00000000 00000001 00000000
[    5.875163] 3910  00000020 00000000 04c408b0 ffffff80 04c48200 ffffff80 00000000 00000000
[    5.875876] 3930  04c40e61 ffffff80 ffffffff 00000000 04c40ad8 ffffff80 129039c0 ffffffc0
[    5.876588] 3950  106a8cc8 ffffffc0 129039b0 ffffffc0 106a8d38 ffffffc0 20c00005 00000000
[    5.877301] 3970  04c40e61 ffffff80 00000000 00000000 ffffffff ffffffff 04c408b0 ffffff80
[    5.878013] 3990  129039c0 ffffffc0 106a8d38 ffffffc0 00000000 00000000 04c40800 ffffff80
[    5.878726] 39b0* 0000c07f 0002008a 40f20b00 d8c209e0 12903a60 ffffffc0 106a964c ffffffc0
[    5.879438] 39d0  00000000 00000000 02d66c00 ffffff80 04050f10 ffffff80 04050f10 ffffff80
[    5.880151] 39f0  fffffff4 00000000 00000020 00000000 00000000 00000000 00000001 00000000
[    5.880863] 3a10  00000006 00000000 04c40800 ffffff80 12903a60 ffffffc0 00000000 00000000
[    5.881575] 3a30  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.882288] 3a50  00000000 00000000 40f20b00 d8c209e0 12903ad0 ffffffc0 10693564 ffffffc0
[    5.883001] 3a70  00000011 00000000 04c40e61 ffffff80 114c2c68 ffffffc0 11f85000 ffffffc0
[    5.883713] 3a90  04050c00 ffffff80 04c40800 ffffff80 00000001 00000000 10675eb8 ffffffc0
[    5.884426] 3ab0  ffffffff ffffffff ffffffff ffffffff ffffffff ffffffc0 40f20b00 d8c209e0
[    5.885138] 3ad0  12903b30 ffffffc0 10693dd0 ffffffc0 00000000 00000000 02d66c00 ffffff80
[    5.885851] 3af0  04050f10 ffffff80 04050f10 ffffff80 11da88d0 ffffffc0 04c40e61 ffffff80
[    5.886563] 3b10  114c2c68 ffffffc0 04c408b0 ffffff80 11da8870 ffffffc0 04c40800 ffffff80
[    5.887275] 3b30  12903b50 ffffffc0 10688638 ffffffc0 11da8870 ffffffc0 04c40800 ffffff80
[    5.887989] 3b50  12903b90 ffffffc0 1099e9f0 ffffffc0 04050480 ffffff80 00000000 00000000
[    5.888701] 3b70  11f92000 ffffffc0 00000000 00000000 11da88d0 ffffffc0 04c408b0 ffffff80
[    5.889413] 3b90  12903bd0 ffffffc0 1099e704 ffffffc0 04050480 ffffff80 040504a0 ffffff80
[    5.890126] 
               X1: 0xffffffc0106a8cc8:
[    5.890568] 8ac8  b9408269 34000229 128002b6 b0009789 f94007e8 f9462929 eb08013f 54002101
[    5.891281] 8ae8  2a1603e0 a9464ff4 a94557f6 a9445ff8 a94367fa a9426ffc a9417bfd 9101c3ff
[    5.891993] 8b08  d50323bf d65f03c0 376817c8 6b15031f 5400006a 12800436 17ffffed 37601ea8
[    5.892706] 8b28  39412e68 34fffd28 11000901 910013e2 aa1303e0 97ff3b0a 79400be8 5280003b
[    5.893418] 8b48  53010d08 1ac82368 6b15011f 5400006a 12800376 17ffffde 6b18011f 9102c277
[    5.894130] 8b68  910b627c 1a88c319 b4000134 2a1503e0 2a1903e1 aa1403e2 97e8e375 2a0003f6
[    5.894843] 8b88  6b15001f 5400006a 17fffff2 2a1903f6 39412e68 910013e2 aa1303e0 11000901
[    5.895556] 8ba8  97ff3aef 79400be8 aa1303e0 121f7902 79000be2 39412e68 11000901 97ff3b70
[    5.896271] 8bc8  b40000d4 2a1603e0 aa1403e1 97e8e275 aa0003f9 14000002 aa1f03f9 aa1703e0
[    5.896981] 8be8  2a1603e1 aa1903e2 97e8dd1b b4001160 39412e68 aa0003f8 910013e2 aa1303e0
[    5.897694] 8c08  11000901 97ff3ad6 39599e69 79400be8 36200069 32180108 79000be8 7940ab09
[    5.898406] 8c28  1280702d 53077d0a 53017d0b 0a0d0129 33180149 1219016a 2a0a0129 93407eca
[    5.899118] 8c48  f100054a dac0114a cb0a03ea 531d710c 9aca236a 7900af1f 121c098c 9a9f154a
[    5.899831] 8c68  7900ab09 12196529 dac0114a 2a0c0129 b9439e6c 531f094a 2a090149 521f0929
[    5.900543] 8c88  b9005b0c 7900ab09 39412e69 7219011f 52800208 5280018a 1a880148 0b080128
[    5.901256] 8ca8  39018308 363800ab 12001d01 91014302 aa1303e0 97ff3afa aa1903e0 97edbde7
[    5.901968] 8cc8* 7940ab08 b000c6e9 b9440929 1280000c 5304190a 1aca236b 1acb218b 7100115f
[    5.902681] 8ce8  2a1f03f9 5a8b819b 35000129 36380108 b9405308 f9400f09 39418301 2a1b0119
[    5.903394] 8d08  d102c120 2a1903e2 97ff3b54 b9005319 f9417268 f9017278 a900231c f9000118
[    5.904106] 8d28  f9416660 b4000060 3940a008 37000088 d4210000 12800259 14000006 aa1703e1
[    5.904818] 8d48  2a1603e2 97e8df09 2a0003f9 340001c0 b000c6e8 b9440908 35000408 39415308
[    5.905531] 8d68  363803c8 b9405308 f9400f09 39418301 0a3b0116 d102c120 2a1603e2 97ff3b37
[    5.906247] 8d88  14000017 f9400388 eb1c011f 54000180 3940134a b9400349 b3607d49 14000004
[    5.906957] 8da8  f9400108 eb1c011f 540000a0 363fffa9 b940250a 34ffff6a 14000037 aa1303e0
[    5.907669] 8dc8  940003a3 34000360 b000c6e8 b9440908 2a0003f9 34fffc48 2a1f03f6 aa1303e0
[    5.908382] 8de8  b9005316 97fffe15 5280003b 37f801f9 6b15033f 12800376 54ffeb8a 17ffff34
[    5.909094] 8e08  f0009701 9102c260 9126b021 94353395 128002b6 17ffff2e aa1903e0 97edbd8f
[    5.909807] 8e28  12800176 17ffff2a 2a1903f6 17ffff28 39599a68 37000088 aa1303e0 2a1f03e1
[    5.910519] 8e48  97ff6cbc 39412e68 910013e2 aa1303e0 11000901 97ff3a42 79400be8 aa1303e0
[    5.911232] 8e68  32000102 79000be2 39412e68 11000901 97ff3ac3 b9400348 aa1303e0 32140108
[    5.911944] 8e88  b9000348 97ff7caa b9401308 b9039e68 17ffff0f 90008e61 912c3021 aa1703e0
[    5.912657] 8ea8  943534a9 b000c6e8 b9440908 35000068 39415308 373800e8 2a1f03f4 aa1303e0
[    5.913370] 
               X4: 0xffffffc012903954:
[    5.913812] 3754  ffffffc0 106a8d38 ffffffc0 129037a0 ffffffc0 10022e54 ffffffc0 11e8b298
[    5.914524] 3774  ffffffc0 00000006 00000000 00000000 00000000 106a8d38 ffffffc0 12903860
[    5.915237] 3794  ffffffc0 12903860 ffffffc0 129037c0 ffffffc0 100176a8 ffffffc0 12903860
[    5.915949] 37b4  ffffffc0 40f20b00 d8c209e0 129037e0 ffffffc0 1003b7c0 ffffffc0 f2000800
[    5.916662] 37d4  00000000 04ce4000 ffffff80 12903820 ffffffc0 113f6d98 ffffffc0 04c48200
[    5.917375] 37f4  ffffff80 20c00005 00000000 106a8d38 ffffffc0 00000000 00000000 12903860
[    5.918087] 3814  ffffffc0 f2000800 00000000 12903850 ffffffc0 113f6a64 ffffffc0 129039b0
[    5.918799] 3834  ffffffc0 04ce4140 ffffff80 ffffffff 0000007f 04c40800 ffffff80 12903990
[    5.919512] 3854  ffffffc0 10012408 ffffffc0 00000000 00000000 106a8cc8 ffffffc0 00000052
[    5.920224] 3874  00000000 00000002 00000000 12903954 ffffffc0 00000040 00000000 0000003f
[    5.920937] 3894  00000000 00000000 00000000 04c40ad8 ffffff80 00000000 00000000 00000005
[    5.921650] 38b4  00000000 ffffffff 00000000 ffffffff 00000000 fffffc7e 00000000 00000001
[    5.922362] 38d4  00000000 00000000 00000000 00000001 00000000 00000000 00000000 00000000
[    5.923074] 38f4  00000000 04c40800 ffffff80 00000000 00000000 00000001 00000000 00000020
[    5.923787] 3914  00000000 04c408b0 ffffff80 04c48200 ffffff80 00000000 00000000 04c40e61
[    5.924499] 3934  ffffff80 ffffffff 00000000 04c40ad8 ffffff80 129039c0 ffffffc0 106a8cc8
[    5.925212] 3954* ffffffc0 129039b0 ffffffc0 106a8d38 ffffffc0 20c00005 00000000 04c40e61
[    5.925924] 3974  ffffff80 00000000 00000000 ffffffff ffffffff 04c408b0 ffffff80 129039c0
[    5.926637] 3994  ffffffc0 106a8d38 ffffffc0 00000000 00000000 04c40800 ffffff80 0000c07f
[    5.927349] 39b4  0002008a 40f20b00 d8c209e0 12903a60 ffffffc0 106a964c ffffffc0 00000000
[    5.928062] 39d4  00000000 02d66c00 ffffff80 04050f10 ffffff80 04050f10 ffffff80 fffffff4
[    5.928774] 39f4  00000000 00000020 00000000 00000000 00000000 00000001 00000000 00000006
[    5.929487] 3a14  00000000 04c40800 ffffff80 12903a60 ffffffc0 00000000 00000000 00000000
[    5.930199] 3a34  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.930912] 3a54  00000000 40f20b00 d8c209e0 12903ad0 ffffffc0 10693564 ffffffc0 00000011
[    5.931624] 3a74  00000000 04c40e61 ffffff80 114c2c68 ffffffc0 11f85000 ffffffc0 04050c00
[    5.932336] 3a94  ffffff80 04c40800 ffffff80 00000001 00000000 10675eb8 ffffffc0 ffffffff
[    5.933050] 3ab4  ffffffff ffffffff ffffffff ffffffff ffffffc0 40f20b00 d8c209e0 12903b30
[    5.933762] 3ad4  ffffffc0 10693dd0 ffffffc0 00000000 00000000 02d66c00 ffffff80 04050f10
[    5.934474] 3af4  ffffff80 04050f10 ffffff80 11da88d0 ffffffc0 04c40e61 ffffff80 114c2c68
[    5.935187] 3b14  ffffffc0 04c408b0 ffffff80 11da8870 ffffffc0 04c40800 ffffff80 12903b50
[    5.935899] 3b34  ffffffc0 10688638 ffffffc0 11da8870 ffffffc0 04c40800 ffffff80 12903b90
[    5.936613] 
               X8: 0xffffff8004c40ad8:
[    5.937054] 08d8  11de0330 ffffffc0 044dc880 ffffff80 00000009 00000007 04050c00 ffffff80
[    5.937767] 08f8  02d27a00 ffffff80 00000000 00000000 114c2ac8 ffffffc0 11da7fb8 ffffffc0
[    5.938479] 0918  11da88d0 ffffffc0 00000000 00000000 00000000 00000000 03f9ee00 ffffff80
[    5.939192] 0938  00000000 00000000 04c40940 ffffff80 04c40940 ffffff80 04c40950 ffffff80
[    5.939905] 0958  04c40950 ffffff80 04c40960 ffffff80 04c40960 ffffff80 04c40970 ffffff80
[    5.940617] 0978  04c40970 ffffff80 00000001 00000000 00000000 00000107 00000000 00000000
[    5.941329] 0998  04c88988 ffffff80 04c904e8 ffffff80 ffffffff 00000000 00000000 00000000
[    5.942042] 09b8  04c409b8 ffffff80 04c409b8 ffffff80 00000000 00000000 00000000 00000000
[    5.942754] 09d8  04c409d8 ffffff80 00000000 00000000 00000000 00000000 00000000 00000000
[    5.943467] 09f8  00000000 00000000 109b41c0 ffffffc0 7fb1b1c0 ffffff80 00000000 00000000
[    5.944179] 0a18  00000000 00000000 ffffffe0 0000000f 04c40a28 ffffff80 04c40a28 ffffff80
[    5.944892] 0a38  109b4090 ffffffc0 00000000 00000000 04c40a48 ffffff80 04c40a48 ffffff80
[    5.945604] 0a58  00000000 00000000 00000002 00000001 00000000 00000000 00000000 00000000
[    5.946321] 0a78  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.947030] 0a98  3e718258 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.947743] 0ab8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.948455] 0ad8* 04c48200 ffffff80 04c48200 ffffff80 114d9270 ffffffc0 04c40868 ffffff80
[    5.949168] 0af8  ffffffff 00000000 00000000 00000000 00000000 00000000 04c40870 ffffff80
[    5.949881] 0b18  04c40b18 ffffff80 04c40b18 ffffff80 00000000 00000000 00000000 00000000
[    5.950593] 0b38  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.951305] 0b58  04c40b58 ffffff80 04c40b58 ffffff80 00000000 00000000 00000000 00000000
[    5.952018] 0b78  1067b65c ffffffc0 00000000 00000000 00000000 00000000 00000000 00000000
[    5.952730] 0b98  00001000 00000045 00000000 00000000 00000000 00000000 03e36980 ffffff80
[    5.953443] 0bb8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.954155] 0bd8  00000000 00000000 00000000 00000000 00000000 00000000 03e36980 ffffff80
[    5.954868] 0bf8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.955581] 0c18  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.956296] 0c38  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.957006] 0c58  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.957718] 0c78  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.958431] 0c98  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.959143] 0cb8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.959857] 
               X19: 0xffffff8004c40800:
[    5.960306] 0600  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.961018] 0620  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.961731] 0640  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.962443] 0660  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.963156] 0680  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.963868] 06a0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.964581] 06c0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.965293] 06e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.966006] 0700  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.966718] 0720  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.967431] 0740  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.968143] 0760  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.968855] 0780  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.969568] 07a0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.970281] 07c0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.970993] 07e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.971706] 0800* 04c40028 ffffff80 04c40028 ffffff80 04c40000 ffffff80 04c41000 ffffff80
[    5.972418] 0820  040504a8 ffffff80 03e35780 ffffff80 00000000 00000000 00000000 35881d87
[    5.973131] 0840  00000000 00060400 50700101 013801b0 00001042 00000000 00000000 00000000
[    5.973843] 0860  11da8870 ffffffc0 ffffffff 00000000 00010000 00000000 ffffffff 00000000
[    5.974556] 0880  00000000 08eb4000 00000000 0000000a 00000064 00000000 02d27d00 ffffff80
[    5.975268] 08a0  00000001 00000180 00000000 00000001 03e36980 ffffff80 04c888a8 ffffff80
[    5.975981] 08c0  04c90408 ffffff80 04050c00 ffffff80 02871d00 ffffff80 11de0330 ffffffc0
[    5.976693] 08e0  044dc880 ffffff80 00000009 00000007 04050c00 ffffff80 02d27a00 ffffff80
[    5.977406] 0900  00000000 00000000 114c2ac8 ffffffc0 11da7fb8 ffffffc0 11da88d0 ffffffc0
[    5.978119] 0920  00000000 00000000 00000000 00000000 03f9ee00 ffffff80 00000000 00000000
[    5.978830] 0940  04c40940 ffffff80 04c40940 ffffff80 04c40950 ffffff80 04c40950 ffffff80
[    5.979543] 0960  04c40960 ffffff80 04c40960 ffffff80 04c40970 ffffff80 04c40970 ffffff80
[    5.980255] 0980  00000001 00000000 00000000 00000107 00000000 00000000 04c88988 ffffff80
[    5.980968] 09a0  04c904e8 ffffff80 ffffffff 00000000 00000000 00000000 04c409b8 ffffff80
[    5.981681] 09c0  04c409b8 ffffff80 00000000 00000000 00000000 00000000 04c409d8 ffffff80
[    5.982393] 09e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.983106] 
               X23: 0xffffff8004c408b0:
[    5.983555] 06b0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.984268] 06d0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.984981] 06f0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.985693] 0710  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.986406] 0730  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.987118] 0750  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.987831] 0770  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.988543] 0790  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.989256] 07b0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.989968] 07d0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    5.990681] 07f0  00000000 00000000 00000000 00000000 04c40028 ffffff80 04c40028 ffffff80
[    5.991393] 0810  04c40000 ffffff80 04c41000 ffffff80 040504a8 ffffff80 03e35780 ffffff80
[    5.992106] 0830  00000000 00000000 00000000 35881d87 00000000 00060400 50700101 013801b0
[    5.992818] 0850  00001042 00000000 00000000 00000000 11da8870 ffffffc0 ffffffff 00000000
[    5.993531] 0870  00010000 00000000 ffffffff 00000000 00000000 08eb4000 00000000 0000000a
[    5.994243] 0890  00000064 00000000 02d27d00 ffffff80 00000001 00000180 00000000 00000001
[    5.994956] 08b0* 03e36980 ffffff80 04c888a8 ffffff80 04c90408 ffffff80 04050c00 ffffff80
[    5.995668] 08d0  02871d00 ffffff80 11de0330 ffffffc0 044dc880 ffffff80 00000009 00000007
[    5.996381] 08f0  04050c00 ffffff80 02d27a00 ffffff80 00000000 00000000 114c2ac8 ffffffc0
[    5.997093] 0910  11da7fb8 ffffffc0 11da88d0 ffffffc0 00000000 00000000 00000000 00000000
[    5.997806] 0930  03f9ee00 ffffff80 00000000 00000000 04c40940 ffffff80 04c40940 ffffff80
[    5.998518] 0950  04c40950 ffffff80 04c40950 ffffff80 04c40960 ffffff80 04c40960 ffffff80
[    5.999231] 0970  04c40970 ffffff80 04c40970 ffffff80 00000001 00000000 00000000 00000107
[    5.999943] 0990  00000000 00000000 04c88988 ffffff80 04c904e8 ffffff80 ffffffff 00000000
[    6.000656] 09b0  00000000 00000000 04c409b8 ffffff80 04c409b8 ffffff80 00000000 00000000
[    6.001368] 09d0  00000000 00000000 04c409d8 ffffff80 00000000 00000000 00000000 00000000
[    6.002081] 09f0  00000000 00000000 00000000 00000000 109b41c0 ffffffc0 7fb1b1c0 ffffff80
[    6.002794] 0a10  00000000 00000000 00000000 00000000 ffffffe0 0000000f 04c40a28 ffffff80
[    6.003505] 0a30  04c40a28 ffffff80 109b4090 ffffffc0 00000000 00000000 04c40a48 ffffff80
[    6.004218] 0a50  04c40a48 ffffff80 00000000 00000000 00000002 00000001 00000000 00000000
[    6.004931] 0a70  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.005643] 0a90  00000000 00000000 3e718258 00000000 00000000 00000000 00000000 00000000
[    6.006356] 
               X24: 0xffffff8004c48200:
[    6.006805] 8000  32303030 3a31323a 302e3030 c2c2c200 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.007518] 8020  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.008230] 8040  04c48080 ffffff80 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.008943] 8060  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.009656] 8080  32303030 3a30323a 302e3030 dead0000 04c408b0 ffffff80 04c48098 ffffff80
[    6.010368] 80a0  04c48098 ffffff80 00000000 00000000 04c480b0 ffffff80 04c480b0 ffffff80
[    6.011081] 80c0  04c48200 ffffff80 00000000 00000000 00000000 00000000 00000000 00000000
[    6.011793] 80e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.012505] 8100  00003936 dead0000 00000122 dead0000 04c41c20 ffffff80 04c41800 ffffff80
[    6.013218] 8120  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.013931] 8140  04c48180 ffffff80 00000000 00000000 00000000 00000000 00000000 00000000
[    6.014643] 8160  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.015355] 8180  c2003936 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.016068] 81a0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.016780] 81c0  04c48200 ffffff80 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.017494] 81e0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.018205] 8200* 04c40ad8 ffffff80 04c40ad8 ffffff80 00000000 00000020 04c408b0 ffffff80
[    6.018919] 8220  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.019631] 8240  00000000 00000000 00000000 00000000 00000000 0000015a 00000045 00000000
[    6.020343] 8260  00000060 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.021056] 8280  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.021768] 82a0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.022481] 82c0  04c48300 ffffff80 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.023193] 82e0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.023906] 8300  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.024618] 8320  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.025331] 8340  04c48380 ffffff80 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.026043] 8360  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.026756] 8380  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.027468] 83a0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.028180] 83c0  04c48400 ffffff80 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.028893] 83e0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.029606] 
               X26: 0xffffff8004c40e61:
[    6.030055] 0c60  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.030768] 0c80  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.031480] 0ca0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.032193] 0cc0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.032906] 0ce0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.033618] 0d00  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.034331] 0d20  f2800000 00000000 f280ffff 00000000 03e36980 ffffff80 00046200 00000000
[    6.035043] 0d40  00000000 00000000 02d27180 ffffff80 00000000 00000000 00000000 00000000
[    6.035755] 0d60  00000000 00000000 00000000 00000000 04c410e8 ffffff80 00000000 00000000
[    6.036468] 0d80  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.037181] 0da0  f2200000 00000000 f27fffff 00000000 04c410e8 ffffff80 00000200 00000000
[    6.037893] 0dc0  00000000 00000000 02d27180 ffffff80 04c40d20 ffffff80 04c41ba0 ffffff80
[    6.038606] 0de0  00000000 00000000 00000000 00000000 04c410e8 ffffff80 00000000 00000000
[    6.039318] 0e00  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.040031] 0e20  00000000 00000000 00000000 00000000 04c410e8 ffffff80 00000000 00000000
[    6.040743] 0e40  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.041456] 0e60* 00002e01 00000600 00000001 00000000 00000000 00000000 00000000 00000000
[    6.042168] 0e80  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.042881] 0ea0  00000000 00000000 00000000 00000000 03e36a00 ffffff80 00000000 00000000
[    6.043593] 0ec0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.044306] 0ee0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.045018] 0f00  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.045731] 0f20  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.046443] 0f40  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.047156] 0f60  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.047868] 0f80  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.048581] 0fa0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.049293] 0fc0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.050006] 0fe0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.050718] 1000  04c40018 ffffff80 04c40018 ffffff80 04c40000 ffffff80 04c41018 ffffff80
[    6.051431] 1020  04c41018 ffffff80 04c41800 ffffff80 04c41800 ffffff80 04c40800 ffffff80
[    6.052144] 1040  04c41040 ffffff80 04c41040 ffffff80 04c40d60 ffffff80 04c40da0 ffffff80
[    6.052856] 1060  04c40de0 ffffff80 04c40e20 ffffff80 04c41070 ffffff80 04c41070 ffffff80
[    6.053569] 
               X28: 0xffffff8004c40ad8:
[    6.054018] 08d8  11de0330 ffffffc0 044dc880 ffffff80 00000009 00000007 04050c00 ffffff80
[    6.054731] 08f8  02d27a00 ffffff80 00000000 00000000 114c2ac8 ffffffc0 11da7fb8 ffffffc0
[    6.055443] 0918  11da88d0 ffffffc0 00000000 00000000 00000000 00000000 03f9ee00 ffffff80
[    6.056156] 0938  00000000 00000000 04c40940 ffffff80 04c40940 ffffff80 04c40950 ffffff80
[    6.056868] 0958  04c40950 ffffff80 04c40960 ffffff80 04c40960 ffffff80 04c40970 ffffff80
[    6.057580] 0978  04c40970 ffffff80 00000001 00000000 00000000 00000107 00000000 00000000
[    6.058293] 0998  04c88988 ffffff80 04c904e8 ffffff80 ffffffff 00000000 00000000 00000000
[    6.059006] 09b8  04c409b8 ffffff80 04c409b8 ffffff80 00000000 00000000 00000000 00000000
[    6.059718] 09d8  04c409d8 ffffff80 00000000 00000000 00000000 00000000 00000000 00000000
[    6.060431] 09f8  00000000 00000000 109b41c0 ffffffc0 7fb1b1c0 ffffff80 00000000 00000000
[    6.061143] 0a18  00000000 00000000 ffffffe0 0000000f 04c40a28 ffffff80 04c40a28 ffffff80
[    6.061856] 0a38  109b4090 ffffffc0 00000000 00000000 04c40a48 ffffff80 04c40a48 ffffff80
[    6.062568] 0a58  00000000 00000000 00000002 00000001 00000000 00000000 00000000 00000000
[    6.063281] 0a78  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.063993] 0a98  3e718258 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.064706] 0ab8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.065418] 0ad8* 04c48200 ffffff80 04c48200 ffffff80 114d9270 ffffffc0 04c40868 ffffff80
[    6.066131] 0af8  ffffffff 00000000 00000000 00000000 00000000 00000000 04c40870 ffffff80
[    6.066843] 0b18  04c40b18 ffffff80 04c40b18 ffffff80 00000000 00000000 00000000 00000000
[    6.067556] 0b38  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.068268] 0b58  04c40b58 ffffff80 04c40b58 ffffff80 00000000 00000000 00000000 00000000
[    6.068981] 0b78  1067b65c ffffffc0 00000000 00000000 00000000 00000000 00000000 00000000
[    6.069693] 0b98  00001000 00000045 00000000 00000000 00000000 00000000 03e36980 ffffff80
[    6.070406] 0bb8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.071118] 0bd8  00000000 00000000 00000000 00000000 00000000 00000000 03e36980 ffffff80
[    6.071831] 0bf8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.072543] 0c18  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.073256] 0c38  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.073968] 0c58  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.074681] 0c78  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.075393] 0c98  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.076106] 0cb8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.076819] 
               X29: 0xffffffc0129039c0:
[    6.077268] 37c0  129037e0 ffffffc0 1003b7c0 ffffffc0 f2000800 00000000 04ce4000 ffffff80
[    6.077981] 37e0  12903820 ffffffc0 113f6d98 ffffffc0 04c48200 ffffff80 20c00005 00000000
[    6.078693] 3800  106a8d38 ffffffc0 00000000 00000000 12903860 ffffffc0 f2000800 00000000
[    6.079406] 3820  12903850 ffffffc0 113f6a64 ffffffc0 129039b0 ffffffc0 04ce4140 ffffff80
[    6.080118] 3840  ffffffff 0000007f 04c40800 ffffff80 12903990 ffffffc0 10012408 ffffffc0
[    6.080831] 3860  00000000 00000000 106a8cc8 ffffffc0 00000052 00000000 00000002 00000000
[    6.081543] 3880  12903954 ffffffc0 00000040 00000000 0000003f 00000000 00000000 00000000
[    6.082256] 38a0  04c40ad8 ffffff80 00000000 00000000 00000005 00000000 ffffffff 00000000
[    6.082968] 38c0  ffffffff 00000000 fffffc7e 00000000 00000001 00000000 00000000 00000000
[    6.083681] 38e0  00000001 00000000 00000000 00000000 00000000 00000000 04c40800 ffffff80
[    6.084393] 3900  00000000 00000000 00000001 00000000 00000020 00000000 04c408b0 ffffff80
[    6.085106] 3920  04c48200 ffffff80 00000000 00000000 04c40e61 ffffff80 ffffffff 00000000
[    6.085818] 3940  04c40ad8 ffffff80 129039c0 ffffffc0 106a8cc8 ffffffc0 129039b0 ffffffc0
[    6.086531] 3960  106a8d38 ffffffc0 20c00005 00000000 04c40e61 ffffff80 00000000 00000000
[    6.087243] 3980  ffffffff ffffffff 04c408b0 ffffff80 129039c0 ffffffc0 106a8d38 ffffffc0
[    6.087956] 39a0  00000000 00000000 04c40800 ffffff80 0000c07f 0002008a 40f20b00 d8c209e0
[    6.088668] 39c0* 12903a60 ffffffc0 106a964c ffffffc0 00000000 00000000 02d66c00 ffffff80
[    6.089381] 39e0  04050f10 ffffff80 04050f10 ffffff80 fffffff4 00000000 00000020 00000000
[    6.090093] 3a00  00000000 00000000 00000001 00000000 00000006 00000000 04c40800 ffffff80
[    6.090806] 3a20  12903a60 ffffffc0 00000000 00000000 00000000 00000000 00000000 00000000
[    6.091518] 3a40  00000000 00000000 00000000 00000000 00000000 00000000 40f20b00 d8c209e0
[    6.092231] 3a60  12903ad0 ffffffc0 10693564 ffffffc0 00000011 00000000 04c40e61 ffffff80
[    6.092943] 3a80  114c2c68 ffffffc0 11f85000 ffffffc0 04050c00 ffffff80 04c40800 ffffff80
[    6.093656] 3aa0  00000001 00000000 10675eb8 ffffffc0 ffffffff ffffffff ffffffff ffffffff
[    6.094368] 3ac0  ffffffff ffffffc0 40f20b00 d8c209e0 12903b30 ffffffc0 10693dd0 ffffffc0
[    6.095081] 3ae0  00000000 00000000 02d66c00 ffffff80 04050f10 ffffff80 04050f10 ffffff80
[    6.095793] 3b00  11da88d0 ffffffc0 04c40e61 ffffff80 114c2c68 ffffffc0 04c408b0 ffffff80
[    6.096505] 3b20  11da8870 ffffffc0 04c40800 ffffff80 12903b50 ffffffc0 10688638 ffffffc0
[    6.097218] 3b40  11da8870 ffffffc0 04c40800 ffffff80 12903b90 ffffffc0 1099e9f0 ffffffc0
[    6.097931] 3b60  04050480 ffffff80 00000000 00000000 11f92000 ffffffc0 00000000 00000000
[    6.098643] 3b80  11da88d0 ffffffc0 04c408b0 ffffff80 12903bd0 ffffffc0 1099e704 ffffffc0
[    6.099356] 3ba0  04050480 ffffff80 040504a0 ffffff80 00000000 00000000 12903c88 ffffffc0
[    6.100070] ---[ end trace 8352f34018bfd64b ]---
[    6.100491] rtc-hym8563 2-0051: setting system clock to 2022-12-13T00:43:31 UTC (1670892211)
[    6.100493] ------------[ cut here ]------------
[    6.100504] WARNING: CPU: 7 PID: 142 at include/linux/msi.h:225 free_msi_irqs+0xfc/0x190
[    6.102337] Modules linked in:
[    6.102608] CPU: 7 PID: 142 Comm: pcie Tainted: G        W         5.10.110 #192
[    6.103274] Hardware name: Rockchip RK3588 TOYBRICK X10 Board (DT)
[    6.103815] pstate: 60c00005 (nZCv daif +PAN +UAO -TCO BTYPE=--)
[    6.104341] pc : free_msi_irqs+0xfc/0x190
[    6.104638] vdd_npu_s0: supplied by vcc5v0_sys
[    6.104692] lr : __pci_enable_msi_range+0x3c0/0x4d8
[    6.104704] sp : ffffffc012903970
[    6.105803] x29: ffffffc012903970 x28: ffffff8004c40ad8 
[    6.106272] x27: 00000000ffffffff x26: ffffff8004c40e61 
[    6.106734] x25: 00000000ffffffed x24: ffffff8004c48200 
[    6.107198] x23: ffffff8004c408b0 x22: ffffff8004c40ad8 
[    6.107664] x21: 0000000000000001 x20: ffffff8004c40ad8 
[    6.108129] x19: ffffff8004c40800 x18: 0000000000000000 
[    6.108593] x17: 0000000000000000 x16: 0000000000000001 
[    6.109058] x15: 0000000000000000 x14: 0000000000000001 
[    6.109524] x13: 00000000fffffc7e x12: 00000000ffffffff 
[    6.109989] x11: 00000000ffffffff x10: 0000000000000005 
[    6.110453] x9 : ffffffc0106a8df0 x8 : 000000000000005a 
[    6.110918] x7 : 0000000000000000 x6 : 000000000000003f 
[    6.111123] usbcore: registered new interface driver uvcvideo
[    6.111383] x5 : 0000000000000040 x4 : ffffffc012903954 
[    6.111900] USB Video Class driver (1.1.1)
[    6.112717] x3 : 0000000000000002 x2 : 0000000000000052 
[    6.113182] x1 : 0000000000000000 x0 : 0000000000000000 
[    6.113219] thermal fec00000.tsadc: Missing ,grf property
[    6.113647] Call trace:
[    6.113656]  free_msi_irqs+0xfc/0x190
[    6.114637] thermal fec00000.tsadc: tsadc is probed successfully!
[    6.114787]  __pci_enable_msi_range+0x3c0/0x4d8
[    6.114792]  pci_alloc_irq_vectors_affinity+0xbc/0x134
[    6.115653] device-mapper: ioctl: 4.44.0-ioctl (2021-02-01) initialised: dm-devel@redhat.com
[    6.115785]  pcie_port_device_register+0x150/0x404
[    6.115792]  pcie_portdrv_probe+0x44/0xb8
[    6.116273] Bluetooth: HCI UART driver ver 2.3
[    6.116971]  pci_device_probe+0xe0/0x158
[    6.116976]  really_probe+0x274/0x724
[    6.117392] Bluetooth: HCI UART protocol H4 registered
[    6.117743]  driver_probe_device+0xec/0x164
[    6.117746]  __device_attach_driver+0x124/0x1bc
[    6.117748]  bus_for_each_drv+0x8c/0xd8
[    6.117750]  __device_attach+0x118/0x1b0
[    6.117757]  device_attach+0x20/0x2c
[    6.118132] Bluetooth: HCI UART protocol ATH3K registered
[    6.118148] usbcore: registered new interface driver bfusb
[    6.118478]  pci_bus_add_device+0x5c/0xa8
[    6.118483]  pci_bus_add_devices+0x4c/0x8c
[    6.118812] usbcore: registered new interface driver btusb
[    6.119251]  pci_host_probe+0x80/0xb4
[    6.119255]  dw_pcie_host_init+0x310/0x3fc
[    6.119753] Failed to initialize dvfs info cpu0
[    6.120016]  pcie_really_probe+0x958/0xe04
[    6.120021]  kthread+0x120/0x258
[    6.120561] sdhci: Secure Digital Host Controller Interface driver
[    6.120698]  ret_from_fork+0x10/0x30
[    6.120702] 
               PC: 0xffffffc0106a873c:
[    6.121017] sdhci: Copyright(c) Pierre Ossman
[    6.121484] 853c  910b6268
[    6.121965] Synopsys Designware Multimedia Card Interface Driver
[    6.122137] sdhci-pltfm: SDHCI platform and OF driver helper
[    6.122317]  eb0802bf 540007c0
[    6.123939] cryptodev: driver 1.12 loaded.
[    6.124237]  39412e68 910013e2 aa1303e0 11000901 97ff3c83
[    6.124241] 855c  79400be8
[    6.124633] hid: raw HID events driver (C) Jiri Kosina
[    6.124904]  aa1303e0 121f7902
[    6.125538] usbcore: registered new interface driver usbhid
[    6.125759]  79000be2 39412e68
[    6.126202] usbhid: USB HID core driver
[    6.127616] optee: probing for conduit method.
[    6.127844]  11000901 97ff3d04
[    6.128551] optee: api uid mismatch
[    6.128789]  39599a68
[    6.129265] optee: probe of firmware:optee failed with error -22
[    6.129501] 857c  37000088
[    6.130143] usbcore: registered new interface driver snd-usb-audio
[    6.130222]  52800021 aa1303e0 97ff6eec 39401288 b9400289 b3601d09 9273f928
[    6.134399] 859c  b9000288 b000c6e8 b9440908 2a1f03f4 35000228 7940aaa8 363801e8 53041908
[    6.135112] 85bc  b94052a9 5280002a 1280000b f9400eac 1ac8214a 394182a1 7100111f 1aca2168
[    6.135824] 85dc  1a8883e8 0a080134 d102c180 2a1403e2 97ff3d1d b9405aa8 aa1303e0 b90052b4
[    6.136537] 85fc  b9039e68 97ff7ec6 aa1303e0 9400000e b0009789 f94007e8 f9462929 eb08013f
[    6.137249] 861c  540000e1 a9434ff4 f94013f5 a9417bfd 910103ff d50323bf d65f03c0 94353ddd
[    6.137962] 863c  d4210000 d503245f aa1e03e9 d503201f d503233f a9bc7bfd f9000bf7 a90257f6
[    6.138674] 865c  a9034ff4 910003fd f9416c14 aa0003f3 910b6016 14000002 f9400294 eb16029f
[    6.139387] 867c  54000260 b9401280 34ffff80 b9401688 34ffff48 97e89ed1 f9403c08 b5000168
[    6.140099] 869c  52800035 b9401688 6b0802bf 54fffe62 b9401288 0b0802a0 97e89ec8 f9403c08
[    6.140812] 86bc  110006b5 b4ffff08 d4210000 f943be61 b4000301 9102c260 97f0f38f f943be68
[    6.141524] 86dc  f9400108 f9400d14 f9400295 b4000135 52800037 f94002a0 97edbf5b aa1503e0
[    6.142237] 86fc  97edbf59 f877da95 110006f7 b5ffff55 aa1403e0 97edbf54 f943be68 f9400100
[    6.142950] 871c  97edbf51 f943be60 97edbf4f f903be7f f9416660 b4000060 3940a008 37000068
[    6.143662] 873c* d4210000 14000003 9102c261 97e8e07d f94002d3 eb16027f 54000320 d2802014
[    6.144374] 875c  f2fbd5b4 1400000c aa1503e8 f9400669 91008a8a aa1303e0 f9000509 f9000128
[    6.145087] 877c  a9002a74 97e8de5e eb1602bf aa1503f3 54000160 39415268 f9400275 3607fe68
[    6.145799] 879c  eb1602bf aa1503e8 54fffe21 f9403260 97e650e0 f9400268 17ffffed a9434ff4
[    6.146512] 87bc  a94257f6 f9400bf7 a8c47bfd d50323bf d65f03c0 d503245f aa1e03e9 d503201f
[    6.147224] 87dc  d503233f d10083ff a9017bfd 910043fd b0009788 f9462908 f90007e8 39413008
[    6.147937] 87fc  34000108 11000901 910013e2 97ff3bd7 79400be8 12002908 11000500 14000002
[    6.148649] 881c  128002a0 b0009789 f94007e8 f9462929 eb08013f 540000a1 a9417bfd 910083ff
[    6.149362] 883c  d50323bf d65f03c0 94353d5a d503245f aa1e03e9 d503201f d503233f d100c3ff
[    6.150074] 885c  a9017bfd a9024ff4 910043fd b0009788 f9462908 f90007e8 b4000860 b000c6e8
[    6.150787] 887c  39503108 35000808 91198414 39401289 b9400288 aa0003f3 b3601d28 36680748
[    6.151499] 889c  b940ae69 71000d3f 540000c1 9272f909 d360fd08 39001288 b9000289 14000030
[    6.152212] 88bc  f9416e68 910b6269 eb09011f 54000280 b000c6ea 14000004 f9400108 eb09011f
[    6.152924] 88dc  540001e0 b944094b 35ffff8b 3941550b 370fff4b f940310b 7940ad0c ab0c116b
[    6.153399] mmc0: SDHCI controller on fe2e0000.mmc [fe2e0000.mmc] using ADMA
[    6.153637] 88fc  54fffec0 b940510c d50332bf 9100316b 3200018c b900016c 17fffff0 39413268
[    6.154967] 891c  910013e2 aa1303e0 11000901 97ff3b8f 79400be8 aa1303e0 12003902 79000be2
[    6.155680] 
               LR: 0xffffffc0106a8df0:
[    6.156122] 8bf0  97e8dd1b b4001160 39412e68 aa0003f8 910013e2 aa1303e0 11000901 97ff3ad6
[    6.156834] 8c10  39599e69 79400be8 36200069 32180108 79000be8 7940ab09 1280702d 53077d0a
[    6.157547] 8c30  53017d0b 0a0d0129 33180149 1219016a 2a0a0129 93407eca f100054a dac0114a
[    6.158259] 8c50  cb0a03ea 531d710c 9aca236a 7900af1f 121c098c 9a9f154a 7900ab09 12196529
[    6.158972] 8c70  dac0114a 2a0c0129 b9439e6c 531f094a 2a090149 521f0929 b9005b0c 7900ab09
[    6.159685] 8c90  39412e69 7219011f 52800208 5280018a 1a880148 0b080128 39018308 363800ab
[    6.160397] 8cb0  12001d01 91014302 aa1303e0 97ff3afa aa1903e0 97edbde7 7940ab08 b000c6e9
[    6.161110] 8cd0  b9440929 1280000c 5304190a 1aca236b 1acb218b 7100115f 2a1f03f9 5a8b819b
[    6.161822] 8cf0  35000129 36380108 b9405308 f9400f09 39418301 2a1b0119 d102c120 2a1903e2
[    6.162534] 8d10  97ff3b54 b9005319 f9417268 f9017278 a900231c f9000118 f9416660 b4000060
[    6.163247] 8d30  3940a008 37000088 d4210000 12800259 14000006 aa1703e1 2a1603e2 97e8df09
[    6.163959] 8d50  2a0003f9 340001c0 b000c6e8 b9440908 35000408 39415308 363803c8 b9405308
[    6.164672] 8d70  f9400f09 39418301 0a3b0116 d102c120 2a1603e2 97ff3b37 14000017 f9400388
[    6.165385] 8d90  eb1c011f 54000180 3940134a b9400349 b3607d49 14000004 f9400108 eb1c011f
[    6.166097] 8db0  540000a0 363fffa9 b940250a 34ffff6a 14000037 aa1303e0 940003a3 34000360
[    6.166809] 8dd0  b000c6e8 b9440908 2a0003f9 34fffc48 2a1f03f6 aa1303e0 b9005316 97fffe15
[    6.167522] 8df0* 5280003b 37f801f9 6b15033f 12800376 54ffeb8a 17ffff34 f0009701 9102c260
[    6.168234] 8e10  9126b021 94353395 128002b6 17ffff2e aa1903e0 97edbd8f 12800176 17ffff2a
[    6.168947] 8e30  2a1903f6 17ffff28 39599a68 37000088 aa1303e0 2a1f03e1 97ff6cbc 39412e68
[    6.169660] 8e50  910013e2 aa1303e0 11000901 97ff3a42 79400be8 aa1303e0 32000102 79000be2
[    6.170372] 8e70  39412e68 11000901 97ff3ac3 b9400348 aa1303e0 32140108 b9000348 97ff7caa
[    6.171084] 8e90  b9401308 b9039e68 17ffff0f 90008e61 912c3021 aa1703e0 943534a9 b000c6e8
[    6.171797] 8eb0  b9440908 35000068 39415308 373800e8 2a1f03f4 aa1303e0 b9005314 97fffddd
[    6.172510] 8ed0  12800096 17ffff00 b9405308 f9400f09 39418301 0a3b0114 d102c120 2a1403e2
[    6.173222] 8ef0  97ff3adc 17fffff4 d4210000 128002b6 17fffef5 94353baa d503245f aa1e03e9
[    6.173935] 8f10  d503201f d503233f a9bf7bfd 910003fd aa1f03e4 2a1f03e5 94000004 a8c17bfd
[    6.174647] 8f30  d50323bf d65f03c0 d503245f aa1e03e9 d503201f d503233f d10303ff a9067bfd
[    6.175359] 8f50  a9076ffc a90867fa a9095ff8 a90a57f6 a90b4ff4 910183fd b0009788 f9462908
[    6.176072] 8f70  6b02007f f81f83a8 5400006a 12800420 1400014f 91198419 39401328 b9400329
[    6.176784] 8f90  aa0003f3 b3601d09 376828e9 9102c268 f100003f f81e83a8 91001028 f90017e8
[    6.177497] 8fb0  1a9f07e8 2a0503f5 aa0403f6 2a0303f4 2a0203f7 aa0103f8 910b627a 9100303b
[    6.177550] usb 4-1: new full-speed USB device number 2 using ohci-platform
[    6.178209] 8fd0  52000108 b81e43a8 b4000116 2a1703e0 2a1403e1 aa1603e2 97e8e25b 2a0003f4
[    6.179534] 
               SP: 0xffffffc012903970:
[    6.179977] 3770  12903820 ffffffc0 00000006 00000000 129037a0 ffffffc0 1003b7c0 ffffffc0
[    6.180689] 3790  f2000800 00000000 12903860 ffffffc0 129037e0 ffffffc0 113f6d98 ffffffc0
[    6.181402] 37b0  04c48200 ffffff80 60c00005 00000000 106a873c ffffffc0 00000000 00000000
[    6.182114] 37d0  12903820 ffffffc0 f2000800 00000000 12903810 ffffffc0 113f6a64 ffffffc0
[    6.182827] 37f0  12903970 ffffffc0 113f7984 ffffffc0 ffffffff 0000007f 04c40800 ffffff80
[    6.183539] 3810  12903950 ffffffc0 10012408 ffffffc0 00000000 00000000 00000000 00000000
[    6.184252] 3830  00000052 00000000 00000002 00000000 12903954 ffffffc0 00000040 00000000
[    6.184964] 3850  0000003f 00000000 00000000 00000000 0000005a 00000000 106a8df0 ffffffc0
[    6.185677] 3870  00000005 00000000 ffffffff 00000000 ffffffff 00000000 fffffc7e 00000000
[    6.186389] 3890  00000001 00000000 00000000 00000000 00000001 00000000 00000000 00000000
[    6.187102] 38b0  00000000 00000000 04c40800 ffffff80 04c40ad8 ffffff80 00000001 00000000
[    6.187814] 38d0  04c40ad8 ffffff80 04c408b0 ffffff80 04c48200 ffffff80 ffffffed 00000000
[    6.188527] 38f0  04c40e61 ffffff80 ffffffff 00000000 04c40ad8 ffffff80 12903970 ffffffc0
[    6.189239] 3910  106a8df0 ffffffc0 12903970 ffffffc0 106a873c ffffffc0 60c00005 00000000
[    6.189332] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    6.189952] 3930  04c40e61 ffffff80 ffffffff 00000000 ffffffff ffffffff 129039c0 ffffffc0
[    6.190935] mmcblk0: mmc0:0001 BJTD4R 29.1 GiB 
[    6.191221] 3950  12903970 ffffffc0 106a873c ffffffc0 00000000 00000000 20c00005 00000000
[    6.191760] mmcblk0boot0: mmc0:0001 BJTD4R partition 1 4.00 MiB
[    6.192335] 3970* 129039c0 ffffffc0 106a8df0 ffffffc0 04c408b0 ffffff80 04c408b0 ffffff80
[    6.192989] mmcblk0boot1: mmc0:0001 BJTD4R partition 2 4.00 MiB
[    6.193569] 3990  00000000 00000000 00000001 00000000 00000000 00000000 04c40800 ffffff80
[    6.194186] mmcblk0rpmb: mmc0:0001 BJTD4R partition 3 4.00 MiB, chardev (236:0)
[    6.194801] 39b0  0000c07f 0002008a 40f20b00 d8c209e0 12903a60 ffffffc0 106a964c ffffffc0
[    6.196155] 39d0  00000000 00000000 02d66c00 ffffff80 04050f10 ffffff80 04050f10 ffffff80
[    6.196867] 39f0  fffffff4 00000000 00000020 00000000 00000000 00000000 00000001 00000000
[    6.197579] 3a10  00000006 00000000 04c40800 ffffff80 12903a60 ffffffc0 00000000 00000000
[    6.197954]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
[    6.198292] 3a30  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.199390] 3a50  00000000 00000000 40f20b00 d8c209e0 12903ad0 ffffffc0 10693564 ffffffc0
[    6.200102] 3a70  00000011 00000000 04c40e61 ffffff80 114c2c68 ffffffc0 11f85000 ffffffc0
[    6.200814] 3a90  04050c00 ffffff80 04c40800 ffffff80 00000001 00000000 10675eb8 ffffffc0
[    6.201527] 3ab0  ffffffff ffffffff ffffffff ffffffff ffffffff ffffffc0 40f20b00 d8c209e0
[    6.202240] 3ad0  12903b30 ffffffc0 10693dd0 ffffffc0 00000000 00000000 02d66c00 ffffff80
[    6.202952] 3af0  04050f10 ffffff80 04050f10 ffffff80 11da88d0 ffffffc0 04c40e61 ffffff80
[    6.203665] 3b10  114c2c68 ffffffc0 04c408b0 ffffff80 11da8870 ffffffc0 04c40800 ffffff80
[    6.204377] 3b30  12903b50 ffffffc0 10688638 ffffffc0 11da8870 ffffffc0 04c40800 ffffff80
[    6.205089] 3b50  12903b90 ffffffc0 1099e9f0 ffffffc0 04050480 ffffff80 00000000 00000000
[    6.205803] 
               X4: 0xffffffc012903954:
[    6.206247] 3754  ffffffc0 12903820 ffffffc0 12903780 ffffffc0 100176a8 ffffffc0 12903820
[    6.206957] 3774  ffffffc0 00000006 00000000 129037a0 ffffffc0 1003b7c0 ffffffc0 f2000800
[    6.207670] 3794  00000000 12903860 ffffffc0 129037e0 ffffffc0 113f6d98 ffffffc0 04c48200
[    6.208382] 37b4  ffffff80 60c00005 00000000 106a873c ffffffc0 00000000 00000000 12903820
[    6.209095] 37d4  ffffffc0 f2000800 00000000 12903810 ffffffc0 113f6a64 ffffffc0 12903970
[    6.209807] 37f4  ffffffc0 113f7984 ffffffc0 ffffffff 0000007f 04c40800 ffffff80 12903950
[    6.210519] 3814  ffffffc0 10012408 ffffffc0 00000000 00000000 00000000 00000000 00000052
[    6.211232] 3834  00000000 00000002 00000000 12903954 ffffffc0 00000040 00000000 0000003f
[    6.211944] 3854  00000000 00000000 00000000 0000005a 00000000 106a8df0 ffffffc0 00000005
[    6.212657] 3874  00000000 ffffffff 00000000 ffffffff 00000000 fffffc7e 00000000 00000001
[    6.213370] 3894  00000000 00000000 00000000 00000001 00000000 00000000 00000000 00000000
[    6.214082] 38b4  00000000 04c40800 ffffff80 04c40ad8 ffffff80 00000001 00000000 04c40ad8
[    6.214794] 38d4  ffffff80 04c408b0 ffffff80 04c48200 ffffff80 ffffffed 00000000 04c40e61
[    6.215507] 38f4  ffffff80 ffffffff 00000000 04c40ad8 ffffff80 12903970 ffffffc0 106a8df0
[    6.216219] 3914  ffffffc0 12903970 ffffffc0 106a873c ffffffc0 60c00005 00000000 04c40e61
[    6.216932] 3934  ffffff80 ffffffff 00000000 ffffffff ffffffff 129039c0 ffffffc0 12903970
[    6.217644] 3954* ffffffc0 106a873c ffffffc0 00000000 00000000 20c00005 00000000 129039c0
[    6.218357] 3974  ffffffc0 106a8df0 ffffffc0 04c408b0 ffffff80 04c408b0 ffffff80 00000000
[    6.219070] 3994  00000000 00000001 00000000 00000000 00000000 04c40800 ffffff80 0000c07f
[    6.219782] 39b4  0002008a 40f20b00 d8c209e0 12903a60 ffffffc0 106a964c ffffffc0 00000000
[    6.220494] 39d4  00000000 02d66c00 ffffff80 04050f10 ffffff80 04050f10 ffffff80 fffffff4
[    6.221207] 39f4  00000000 00000020 00000000 00000000 00000000 00000001 00000000 00000006
[    6.221920] 3a14  00000000 04c40800 ffffff80 12903a60 ffffffc0 00000000 00000000 00000000
[    6.222632] 3a34  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.223344] 3a54  00000000 40f20b00 d8c209e0 12903ad0 ffffffc0 10693564 ffffffc0 00000011
[    6.224057] 3a74  00000000 04c40e61 ffffff80 114c2c68 ffffffc0 11f85000 ffffffc0 04050c00
[    6.224769] 3a94  ffffff80 04c40800 ffffff80 00000001 00000000 10675eb8 ffffffc0 ffffffff
[    6.225482] 3ab4  ffffffff ffffffff ffffffff ffffffff ffffffc0 40f20b00 d8c209e0 12903b30
[    6.226195] 3ad4  ffffffc0 10693dd0 ffffffc0 00000000 00000000 02d66c00 ffffff80 04050f10
[    6.226907] 3af4  ffffff80 04050f10 ffffff80 11da88d0 ffffffc0 04c40e61 ffffff80 114c2c68
[    6.227620] 3b14  ffffffc0 04c408b0 ffffff80 11da8870 ffffffc0 04c40800 ffffff80 12903b50
[    6.228332] 3b34  ffffffc0 10688638 ffffffc0 11da8870 ffffffc0 04c40800 ffffff80 12903b90
[    6.229045] 
               X9: 0xffffffc0106a8df0:
[    6.229487] 8bf0  97e8dd1b b4001160 39412e68 aa0003f8 910013e2 aa1303e0 11000901 97ff3ad6
[    6.230200] 8c10  39599e69 79400be8 36200069 32180108 79000be8 7940ab09 1280702d 53077d0a
[    6.230912] 8c30  53017d0b 0a0d0129 33180149 1219016a 2a0a0129 93407eca f100054a dac0114a
[    6.231625] 8c50  cb0a03ea 531d710c 9aca236a 7900af1f 121c098c 9a9f154a 7900ab09 12196529
[    6.232337] 8c70  dac0114a 2a0c0129 b9439e6c 531f094a 2a090149 521f0929 b9005b0c 7900ab09
[    6.233050] 8c90  39412e69 7219011f 52800208 5280018a 1a880148 0b080128 39018308 363800ab
[    6.233762] 8cb0  12001d01 91014302 aa1303e0 97ff3afa aa1903e0 97edbde7 7940ab08 b000c6e9
[    6.234475] 8cd0  b9440929 1280000c 5304190a 1aca236b 1acb218b
[    6.234996] ES8323 7-0011: i2c recv Failed
[    6.234998]  7100115f 2a1f03f9 5a8b819b
[    6.235531] ES8323: probe of 7-0011 failed with error -110

[    6.235866] 8cf0  35000129 36380108 b9405308 f9400f09 39418301 2a1b0119 d102c120 2a1903e2
[    6.237527] 8d10  97ff3b54 b9005319 f9417268 f9017278 a900231c f9000118 f9416660 b4000060
[    6.238240] 8d30  3940a008 37000088 d4210000 12800259 14000006 aa1703e1 2a1603e2 97e8df09
[    6.238442] Initializing XFRM netlink socket
[    6.238952] 8d50  2a0003f9 340001c0 b000c6e8 b9440908 35000408 39415308 363803c8 b9405308
[    6.239466] NET: Registered protocol family 10
[    6.240040] 8d70  f9400f09 39418301 0a3b0116 d102c120 2a1603e2 97ff3b37 14000017 f9400388
[    6.240766] Segment Routing with IPv6
[    6.241142] 8d90  eb1c011f 54000180 3940134a b9400349 b3607d49 14000004 f9400108 eb1c011f
[    6.241489] NET: Registered protocol family 17
[    6.242178] 8db0  540000a0 363fffa9 b940250a 34ffff6a 14000037 aa1303e0
[    6.242572] NET: Registered protocol family 15
[    6.242580] can: controller area network core
[    6.243146]  940003a3 34000360
[    6.243551] NET: Registered protocol family 29

[    6.243922] 8dd0 
[    6.244191] can: raw protocol
[    6.244578]  b000c6e8 b9440908
[    6.244714] can: broadcast manager protocol
[    6.244886]  2a0003f9 34fffc48
[    6.245150] can: netlink gateway - max_hops=1
[    6.245418]  2a1f03f6 aa1303e0
[    6.245910] Bluetooth: RFCOMM socket layer initialized
[    6.246056]  b9005316 97fffe15
[    6.246443] Bluetooth: RFCOMM ver 1.11

[    6.246712] 8df0*
[    6.247161] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    6.247428]  5280003b 37f801f9
[    6.247767] Bluetooth: HIDP socket layer initialized
[    6.247893]  6b15033f 12800376
[    6.248080] [BT_RFKILL]: Enter rfkill_init
[    6.248583]  54ffeb8a 17ffff34
[    6.248853] [WLAN_RFKILL]: Enter rfkill_wlan_init
[    6.249000] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[    6.249288]  f0009701 9102c260
[    6.249568] [WLAN_RFKILL]: can't find ,grf property

[    6.249945] 8e10 
[    6.250214] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6255
[    6.250624]  9126b021 94353395
[    6.251048] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
[    6.251313]  128002b6 17ffff2e
[    6.251802] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[    6.251813] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,poweren_gpio = 105 flags = 0.
[    6.251936]  aa1903e0 97edbd8f
[    6.252116] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 103, flags = 0.
[    6.252709]  12800176 17ffff2a
[    6.252981] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found !

[    6.253605] 8e30 
[    6.253871] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio
[    6.253876] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[    6.254516]  2a1903f6 17ffff28 39599a68 37000088
[    6.255200] [WLAN_RFKILL]: Exit rfkill_wlan_probe
[    6.255468]  aa1303e0 2a1f03e1
[    6.256383] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 100.
[    6.256436]  97ff6cbc 39412e68
[    6.257080] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 102.

[    6.257212] 8e50 
[    6.257384] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 97.
[    6.257839]  910013e2 aa1303e0 11000901 97ff3a42 79400be8 aa1303e0 32000102 79000be2
[    6.257844] 8e70  39412e68 11000901 97ff3ac3 b9400348 aa1303e0
[    6.258296] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 96.
[    6.258698]  32140108 b9000348
[    6.259137] [BT_RFKILL]: Request irq for bt wakeup host
[    6.259380]  97ff7caa
[    6.260119] [BT_RFKILL]: ** disable irq
[    6.260363] 8e90  b9401308
[    6.261099] [BT_RFKILL]: rfkill_set_power: set bt wake_host high!
[    6.261203]  b9039e68 17ffff0f 90008e61 912c3021 aa1703e0 943534a9 b000c6e8
[    6.266640] 8eb0  b9440908 35000068 39415308 373800e8 2a1f03f4 aa1303e0 b9005314 97fffddd
[    6.267352] 8ed0  12800096 17ffff00 b9405308 f9400f09 39418301 0a3b0114 d102c120 2a1403e2
[    6.268065] 8ef0  97ff3adc 17fffff4 d4210000 128002b6 17fffef5 94353baa d503245f aa1e03e9
[    6.268778] 8f10  d503201f d503233f a9bf7bfd 910003fd aa1f03e4 2a1f03e5 94000004 a8c17bfd
[    6.269490] 8f30  d50323bf d65f03c0 d503245f aa1e03e9 d503201f d503233f d10303ff a9067bfd
[    6.270203] 8f50  a9076ffc a90867fa a9095ff8 a90a57f6 a90b4ff4 910183fd b0009788 f9462908
[    6.270915] 8f70  6b02007f f81f83a8 5400006a 12800420 1400014f 91198419 39401328 b9400329
[    6.271627] 8f90  aa0003f3 b3601d09 376828e9 9102c268 f100003f f81e83a8 91001028 f90017e8
[    6.272340] 8fb0  1a9f07e8 2a0503f5 aa0403f6 2a0303f4 2a0203f7 aa0103f8 910b627a 9100303b
[    6.273052] 8fd0  52000108 b81e43a8 b4000116 2a1703e0 2a1403e1 aa1603e2 97e8e25b 2a0003f4
[    6.273767] 
               X19: 0xffffff8004c40800:
[    6.274215] 0600  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.274928] 0620  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.275640] 0640  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.276352] 0660  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.277065] 0680  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.277778] 06a0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.278490] 06c0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.279203] 06e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.279915] 0700  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.280627] 0720  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.281340] 0740  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.282052] 0760  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.282765] 0780  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.283477] 07a0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.284190] 07c0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.284903] 07e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.285615] 0800* 04c40028 ffffff80 04c40028 ffffff80 04c40000 ffffff80 04c41000 ffffff80
[    6.286331] 0820  040504a8 ffffff80 03e35780 ffffff80 00000000 00000000 00000000 35881d87
[    6.287040] 0840  00000000 00060400 50700101 013801b0 00001042 00000000 00000000 00000000
[    6.287752] 0860  11da8870 ffffffc0 ffffffff 00000000 00010000 00000000 ffffffff 00000000
[    6.288465] 0880  00000000 08eb4000 00000000 0000000a 00000064 00000000 02d27d00 ffffff80
[    6.289178] 08a0  00000001 00000180 00000000 00000001 03e36980 ffffff80 04c888a8 ffffff80
[    6.289890] 08c0  04c90408 ffffff80 04050c00 ffffff80 02871d00 ffffff80 11de0330 ffffffc0
[    6.290603] 08e0  044dc880 ffffff80 00000009 00000007 04050c00 ffffff80 02d27a00 ffffff80
[    6.291315] 0900  00000000 00000000 114c2ac8 ffffffc0 11da7fb8 ffffffc0 11da88d0 ffffffc0
[    6.292027] 0920  00000000 00000000 00000000 00000000 03f9ee00 ffffff80 00000000 00000000
[    6.292740] 0940  04c40940 ffffff80 04c40940 ffffff80 04c40950 ffffff80 04c40950 ffffff80
[    6.293452] 0960  04c40960 ffffff80 04c40960 ffffff80 04c40970 ffffff80 04c40970 ffffff80
[    6.294165] 0980  00000001 00000000 00000000 00000107 00000000 00000000 04c88988 ffffff80
[    6.294878] 09a0  04c904e8 ffffff80 ffffffff 00000000 00000000 00000000 04c409b8 ffffff80
[    6.295590] 09c0  04c409b8 ffffff80 00000000 00000000 00000000 00000000 04c409d8 ffffff80
[    6.296306] 09e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.297015] 
               X20: 0xffffff8004c40ad8:
[    6.297465] 08d8  11de0330 ffffffc0 044dc880 ffffff80 00000009 00000007 04050c00 ffffff80
[    6.298178] 08f8  02d27a00 ffffff80 00000000 00000000 114c2ac8 ffffffc0 11da7fb8 ffffffc0
[    6.298890] 0918  11da88d0 ffffffc0 00000000 00000000 00000000 00000000 03f9ee00 ffffff80
[    6.299603] 0938  00000000 00000000 04c40940 ffffff80 04c40940 ffffff80 04c40950 ffffff80
[    6.300315] 0958  04c40950 ffffff80 04c40960 ffffff80 04c40960 ffffff80 04c40970 ffffff80
[    6.301028] 0978  04c40970 ffffff80 00000001 00000000 00000000 00000107 00000000 00000000
[    6.301740] 0998  04c88988 ffffff80 04c904e8 ffffff80 ffffffff 00000000 00000000 00000000
[    6.302453] 09b8  04c409b8 ffffff80 04c409b8 ffffff80 00000000 00000000 00000000 00000000
[    6.303165] 09d8  04c409d8 ffffff80 00000000 00000000 00000000 00000000 00000000 00000000
[    6.303878] 09f8  00000000 00000000 109b41c0 ffffffc0 7fb1b1c0 ffffff80 00000000 00000000
[    6.304590] 0a18  00000000 00000000 ffffffe0 0000000f 04c40a28 ffffff80 04c40a28 ffffff80
[    6.305302] 0a38  109b4090 ffffffc0 00000000 00000000 04c40a48 ffffff80 04c40a48 ffffff80
[    6.306015] 0a58  00000000 00000000 00000002 00000001 00000000 00000000 00000000 00000000
[    6.306727] 0a78  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.307440] 0a98  3e718258 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.308153] 0ab8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.308865] 0ad8* 04c48200 ffffff80 04c48200 ffffff80 114d9270 ffffffc0 04c40868 ffffff80
[    6.309578] 0af8  ffffffff 00000000 00000000 00000000 00000000 00000000 04c40870 ffffff80
[    6.310290] 0b18  04c40b18 ffffff80 04c40b18 ffffff80 00000000 00000000 00000000 00000000
[    6.311003] 0b38  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.311715] 0b58  04c40b58 ffffff80 04c40b58 ffffff80 00000000 00000000 00000000 00000000
[    6.312428] 0b78  1067b65c ffffffc0 00000000 00000000 00000000 00000000 00000000 00000000
[    6.313140] 0b98  00001000 00000045 00000000 00000000 00000000 00000000 03e36980 ffffff80
[    6.313853] 0bb8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.314565] 0bd8  00000000 00000000 00000000 00000000 00000000 00000000 03e36980 ffffff80
[    6.315278] 0bf8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.315990] 0c18  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.316703] 0c38  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.317416] 0c58  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.318128] 0c78  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.318840] 0c98  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.319553] 0cb8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.320265] 
               X22: 0xffffff8004c40ad8:
[    6.320715] 08d8  11de0330 ffffffc0 044dc880 ffffff80 00000009 00000007 04050c00 ffffff80
[    6.320836] [BT_RFKILL]: ENABLE UART_RTS
[    6.321428] 08f8  02d27a00 ffffff80 00000000 00000000 114c2ac8 ffffffc0 11da7fb8 ffffffc0
[    6.322486] 0918  11da88d0 ffffffc0 00000000 00000000 00000000 00000000 03f9ee00 ffffff80
[    6.323198] 0938  00000000 00000000 04c40940 ffffff80 04c40940 ffffff80 04c40950 ffffff80
[    6.323910] 0958  04c40950 ffffff80 04c40960 ffffff80 04c40960 ffffff80 04c40970 ffffff80
[    6.324623] 0978  04c40970 ffffff80 00000001 00000000 00000000 00000107 00000000 00000000
[    6.325335] 0998  04c88988 ffffff80 04c904e8 ffffff80 ffffffff 00000000 00000000 00000000
[    6.326048] 09b8  04c409b8 ffffff80 04c409b8 ffffff80 00000000 00000000 00000000 00000000
[    6.326761] 09d8  04c409d8 ffffff80 00000000 00000000 00000000 00000000 00000000 00000000
[    6.327473] 09f8  00000000 00000000 109b41c0 ffffffc0 7fb1b1c0 ffffff80 00000000 00000000
[    6.328185] 0a18  00000000 00000000 ffffffe0 0000000f 04c40a28 ffffff80 04c40a28 ffffff80
[    6.328898] 0a38  109b4090 ffffffc0 00000000 00000000 04c40a48 ffffff80 04c40a48 ffffff80
[    6.329610] 0a58  00000000 00000000 00000002 00000001 00000000 00000000 00000000 00000000
[    6.330322] 0a78  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.331035] 0a98  3e718258 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.331747] 0ab8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.332460] 0ad8* 04c48200 ffffff80 04c48200 ffffff80 114d9270 ffffffc0 04c40868 ffffff80
[    6.333173] 0af8  ffffffff 00000000 00000000 00000000 00000000 00000000 04c40870 ffffff80
[    6.333885] 0b18  04c40b18 ffffff80 04c40b18 ffffff80 00000000 00000000 00000000 00000000
[    6.334598] 0b38  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.335310] 0b58  04c40b58 ffffff80 04c40b58 ffffff80 00000000 00000000 00000000 00000000
[    6.336023] 0b78  1067b65c ffffffc0 00000000 00000000 00000000 00000000 00000000 00000000
[    6.336735] 0b98  00001000 00000045 00000000 00000000 00000000 00000000 03e36980 ffffff80
[    6.337447] 0bb8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.338160] 0bd8  00000000 00000000 00000000 00000000 00000000 00000000 03e36980 ffffff80
[    6.338873] 0bf8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.339585] 0c18  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.340298] 0c38  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.341010] 0c58  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.341723] 0c78  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.342435] 0c98  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.343148] 0cb8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.343861] 
               X23: 0xffffff8004c408b0:
[    6.344310] 06b0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.345022] 06d0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.345735] 06f0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.346447] 0710  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.347160] 0730  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.347873] 0750  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.348585] 0770  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.349298] 0790  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.350010] 07b0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.350722] 07d0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.351435] 07f0  00000000 00000000 00000000 00000000 04c40028 ffffff80 04c40028 ffffff80
[    6.352147] 0810  04c40000 ffffff80 04c41000 ffffff80 040504a8 ffffff80 03e35780 ffffff80
[    6.352860] 0830  00000000 00000000 00000000 35881d87 00000000 00060400 50700101 013801b0
[    6.353573] 0850  00001042 00000000 00000000 00000000 11da8870 ffffffc0 ffffffff 00000000
[    6.354285] 0870  00010000 00000000 ffffffff 00000000 00000000 08eb4000 00000000 0000000a
[    6.354998] 0890  00000064 00000000 02d27d00 ffffff80 00000001 00000180 00000000 00000001
[    6.355710] 08b0* 03e36980 ffffff80 04c888a8 ffffff80 04c90408 ffffff80 04050c00 ffffff80
[    6.356423] 08d0  02871d00 ffffff80 11de0330 ffffffc0 044dc880 ffffff80 00000009 00000007
[    6.357135] 08f0  04050c00 ffffff80 02d27a00 ffffff80 00000000 00000000 114c2ac8 ffffffc0
[    6.357848] 0910  11da7fb8 ffffffc0 11da88d0 ffffffc0 00000000 00000000 00000000 00000000
[    6.358560] 0930  03f9ee00 ffffff80 00000000 00000000 04c40940 ffffff80 04c40940 ffffff80
[    6.359273] 0950  04c40950 ffffff80 04c40950 ffffff80 04c40960 ffffff80 04c40960 ffffff80
[    6.359985] 0970  04c40970 ffffff80 04c40970 ffffff80 00000001 00000000 00000000 00000107
[    6.360697] 0990  00000000 00000000 04c88988 ffffff80 04c904e8 ffffff80 ffffffff 00000000
[    6.361410] 09b0  00000000 00000000 04c409b8 ffffff80 04c409b8 ffffff80 00000000 00000000
[    6.362122] 09d0  00000000 00000000 04c409d8 ffffff80 00000000 00000000 00000000 00000000
[    6.362835] 09f0  00000000 00000000 00000000 00000000 109b41c0 ffffffc0 7fb1b1c0 ffffff80
[    6.363548] 0a10  00000000 00000000 00000000 00000000 ffffffe0 0000000f 04c40a28 ffffff80
[    6.364260] 0a30  04c40a28 ffffff80 109b4090 ffffffc0 00000000 00000000 04c40a48 ffffff80
[    6.364972] 0a50  04c40a48 ffffff80 00000000 00000000 00000002 00000001 00000000 00000000
[    6.365685] 0a70  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.366398] 0a90  00000000 00000000 3e718258 00000000 00000000 00000000 00000000 00000000
[    6.367111] 
               X24: 0xffffff8004c48200:
[    6.367560] 8000  32303030 3a31323a 302e3030 c2c2c200 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.368273] 8020  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.368985] 8040  04c48080 ffffff80 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.369698] 8060  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.370410] 8080  32303030 3a30323a 302e3030 dead0000 04c408b0 ffffff80 04c48098 ffffff80
[    6.371122] 80a0  04c48098 ffffff80 00000000 00000000 04c480b0 ffffff80 04c480b0 ffffff80
[    6.371835] 80c0  04c48200 ffffff80 00000000 00000000 00000000 00000000 00000000 00000000
[    6.372548] 80e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.373260] 8100  00003936 dead0000 00000122 dead0000 04c41c20 ffffff80 04c41800 ffffff80
[    6.373972] 8120  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.374685] 8140  04c48180 ffffff80 00000000 00000000 00000000 00000000 00000000 00000000
[    6.375398] 8160  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.376110] 8180  c2003936 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.376822] 81a0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.377535] 81c0  04c48200 ffffff80 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.378248] 81e0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.378960] 8200* 04c40ad8 ffffff80 04c40ad8 ffffff80 00000000 00000020 04c408b0 ffffff80
[    6.379673] 8220  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.380385] 8240  00000000 00000000 00000000 00000000 00000000 0000015a 00000045 00000000
[    6.381098] 8260  00000060 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.381810] 8280  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.382523] 82a0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.383235] 82c0  04c48300 ffffff80 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.383948] 82e0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.384660] 8300  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.385373] 8320  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.386085] 8340  04c48380 ffffff80 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.386798] 8360  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.387510] 8380  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.388223] 83a0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.388935] 83c0  04c48400 ffffff80 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.389648] 83e0  c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2 c2c2c2c2
[    6.390361] 
               X26: 0xffffff8004c40e61:
[    6.390810] 0c60  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.391523] 0c80  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.392235] 0ca0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.392948] 0cc0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.393660] 0ce0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.394373] 0d00  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.395085] 0d20  f2800000 00000000 f280ffff 00000000 03e36980 ffffff80 00046200 00000000
[    6.395797] 0d40  00000000 00000000 02d27180 ffffff80 00000000 00000000 00000000 00000000
[    6.396510] 0d60  00000000 00000000 00000000 00000000 04c410e8 ffffff80 00000000 00000000
[    6.397223] 0d80  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.397935] 0da0  f2200000 00000000 f27fffff 00000000 04c410e8 ffffff80 00000200 00000000
[    6.398648] 0dc0  00000000 00000000 02d27180 ffffff80 04c40d20 ffffff80 04c41ba0 ffffff80
[    6.399360] 0de0  00000000 00000000 00000000 00000000 04c410e8 ffffff80 00000000 00000000
[    6.399923] usb 4-1: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00
[    6.400072] 0e00  00000000 00000000 00000000
[    6.400798] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    6.400802]  00000000 00000000 00000000 00000000 00000000
[    6.401214] usb 4-1: Product: FT232R USB UART
[    6.401799] 0e20  00000000
[    6.402277] usb 4-1: Manufacturer: FTDI
[    6.402656]  00000000 00000000
[    6.402900] usb 4-1: SerialNumber: A103T36T
[    6.403233]  00000000 04c410e8 ffffff80 00000000 00000000
[    6.404343] 0e40  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.405056] 0e60* 00002e01 00000600 00000001 00000000 00000000 00000000 00000000 00000000
[    6.405769] 0e80  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.406481] 0ea0  00000000 00000000 00000000 00000000 03e36a00 ffffff80 00000000 00000000
[    6.407193] 0ec0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.407906] 0ee0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.408007] ftdi_sio 4-1:1.0: FTDI USB Serial Device converter detected
[    6.408618] 0f00  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.409307] usb 4-1: Detected FT232RL
[    6.409914] 0f20  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.410952] 0f40  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.411665] 0f60  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.412378] 0f80  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.413090] 0fa0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.413802] 0fc0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.414515] 0fe0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.415227] 1000  04c40018 ffffff80 04c40018 ffffff80 04c40000 ffffff80 04c41018 ffffff80
[    6.415250] usb 4-1: FTDI USB Serial Device converter now attached to ttyUSB0
[    6.415940] 1020  04c41018 ffffff80 04c41800 ffffff80 04c41800 ffffff80 04c40800 ffffff80
[    6.415945] 1040  04c41040 ffffff80 04c41040 ffffff80 04c40d60 ffffff80 04c40da0 ffffff80
[    6.415965] 1060  04c40de0 ffffff80 04c40e20 ffffff80 04c41070 ffffff80 04c41070 ffffff80
[    6.418715] 
               X28: 0xffffff8004c40ad8:
[    6.419164] 08d8  11de0330 ffffffc0 044dc880 ffffff80 00000009 00000007 04050c00 ffffff80
[    6.419876] 08f8  02d27a00 ffffff80 00000000 00000000 114c2ac8 ffffffc0 11da7fb8 ffffffc0
[    6.420589] 0918  11da88d0 ffffffc0 00000000 00000000 00000000 00000000 03f9ee00 ffffff80
[    6.421301] 0938  00000000 00000000 04c40940 ffffff80 04c40940 ffffff80 04c40950 ffffff80
[    6.422014] 0958  04c40950 ffffff80 04c40960 ffffff80 04c40960 ffffff80 04c40970 ffffff80
[    6.422726] 0978  04c40970 ffffff80 00000001 00000000 00000000 00000107 00000000 00000000
[    6.423439] 0998  04c88988 ffffff80 04c904e8 ffffff80 ffffffff 00000000 00000000 00000000
[    6.424151] 09b8  04c409b8 ffffff80 04c409b8 ffffff80 00000000 00000000 00000000 00000000
[    6.424864] 09d8  04c409d8 ffffff80 00000000 00000000 00000000 00000000 00000000 00000000
[    6.425576] 09f8  00000000 00000000 109b41c0 ffffffc0 7fb1b1c0 ffffff80 00000000 00000000
[    6.426292] 0a18  00000000 00000000 ffffffe0 0000000f 04c40a28 ffffff80 04c40a28 ffffff80
[    6.427002] 0a38  109b4090 ffffffc0 00000000 00000000 04c40a48 ffffff80 04c40a48 ffffff80
[    6.427714] 0a58  00000000 00000000 00000002 00000001 00000000 00000000 00000000 00000000
[    6.428427] 0a78  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.429139] 0a98  3e718258 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.429852] 0ab8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.430564] 0ad8* 04c48200 ffffff80 04c48200 ffffff80 114d9270 ffffffc0 04c40868 ffffff80
[    6.430831] [BT_RFKILL]: DISABLE UART_RTS
[    6.431277] 0af8  ffffffff 00000000 00000000 00000000 00000000 00000000 04c40870 ffffff80
[    6.431640] [BT_RFKILL]: bt turn on power
[    6.432342] 0b18  04c40b18 ffffff80 04c40b18 ffffff80 00000000
[    6.432700] [BT_RFKILL]: Request irq for bt wakeup host
[    6.432706] [BT_RFKILL]: ** disable irq
[    6.433204]  00000000 00000000
[    6.433663] [BT_RFKILL]: bt_default device registered.
[    6.433999]  00000000
[    6.434306] Key type dns_resolver registered
[    6.434719] 0b38  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.435345] Loading compiled-in X.509 certificates
[    6.436009] 0b58  04c40b58 ffffff80 04c40b58 ffffff80 00000000 00000000 00000000 00000000
[    6.437122] rga2_mmu: rga_iommu_bind, binding map scheduler failed!
[    6.437142] 0b78  1067b65c ffffffc0 00000000 00000000 00000000 00000000 00000000 00000000
[    6.437701] rga: rga iommu bind failed!
[    6.438402] 0b98  00001000 00000045 00000000 00000000 00000000 00000000 03e36980 ffffff80

[    6.439452] 0bb8  00000000
[    6.439587] ********************************************************************
[    6.439591] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE           **
[    6.439827]  00000000 00000000
[    6.440472] **                                                                **
[    6.440476] **  WRITEABLE clk DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL **
[    6.441117]  00000000 00000000 00000000 00000000 00000000
[    6.441386] **                                                                **
[    6.441390] ** This means that this kernel is built to expose clk operations  **
[    6.442032] 0bd8  00000000
[    6.442677] ** such as parent or rate setting, enabling, disabling, etc.      **
[    6.442681] ** to userspace, which may compromise security on your system.    **
[    6.443149]  00000000 00000000
[    6.443794] **                                                                **
[    6.443798] ** If you see this message and you are not debugging the          **
[    6.444439]  00000000 00000000 00000000 03e36980 ffffff80
[    6.444443] 0bf8  00000000 00000000 00000000
[    6.444679] ** kernel, report this immediately to your vendor!                **
[    6.444683] **                                                                **
[    6.445325]  00000000 00000000
[    6.445970] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE           **
[    6.445974] ********************************************************************
[    6.446239]  00000000 00000000 00000000
[    6.451564] 0c18  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.452277] 0c38  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.452989] 0c58  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.453701] 0c78  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.454414] 0c98  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.455127] 0cb8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.455840] 
               X29: 0xffffffc012903970:
[    6.456292] 3770  12903820 ffffffc0 00000006 00000000 129037a0 ffffffc0 1003b7c0 ffffffc0
[    6.457002] 3790  f2000800 00000000 12903860 ffffffc0 129037e0 ffffffc0 113f6d98 ffffffc0
[    6.457173] vendor storage:20190527 ret = 0
[    6.457714] 37b0  04c48200 ffffff80 60c00005 00000000 106a873c ffffffc0 00000000 00000000
[    6.457720] 37d0  12903820 ffffffc0 f2000800 00000000 12903810 ffffffc0 113f6a64 ffffffc0
[    6.459521] 37f0  12903970 ffffffc0 113f7984 ffffffc0 ffffffff 0000007f 04c40800 ffffff80
[    6.460234] 3810  12903950 ffffffc0 10012408 ffffffc0 00000000 00000000 00000000 00000000
[    6.460770] vcc_3v3_sd_s0: supplied by vcc_3v3_s3
[    6.460946] 3830  00000052 00000000 00000002 00000000 12903954 ffffffc0 00000040 00000000
[    6.460951] 3850  0000003f 00000000 00000000 00000000 0000005a 00000000 106a8df0 ffffffc0
[    6.460957] 3870  00000005
[    6.461821] pcie20_avdd0v85: supplied by vdd_0v85_s0
[    6.462088]  00000000 ffffffff
[    6.463286] pinctrl pinctrl: pin gpio3-7 already requested by wireless-wlan; cannot claim for pcie20-avdd1v8
[    6.463479]  00000000 ffffffff
[    6.463758] pinctrl pinctrl: pin-103 (pcie20-avdd1v8) status -22
[    6.464677]  00000000 fffffc7e 00000000
[    6.464679] 3890  00000001 00000000 00000000 00000000 00000001 00000000 00000000 00000000
[    6.464684] 38b0  00000000 00000000 04c40800 ffffff80 04c40ad8 ffffff80 00000001 00000000
[    6.464690] 38d0  04c40ad8 ffffff80 04c408b0 ffffff80 04c48200 ffffff80 ffffffed 00000000
[    6.464695] 38f0  04c40e61 ffffff80 ffffffff 00000000 04c40ad8 ffffff80
[    6.464969] pinctrl pinctrl: could not request pin 103 (gpio3-7) from group wifi-host-wake-irq  on device pinctrl
[    6.465555]  12903970 ffffffc0
[    6.465896] reg-fixed-voltage pcie20-avdd1v8: Error applying setting, reverse things back

[    6.466614] 3910 
[    6.467333] reg-fixed-voltage: probe of pcie20-avdd1v8 failed with error -22
[    6.468030]  106a8df0 ffffffc0 12903970 ffffffc0 106a873c ffffffc0 60c00005 00000000
[    6.468035] 3930  04c40e61 ffffff80 ffffffff 00000000 ffffffff
[    6.468948] pcie30_avdd0v75: supplied by avdd_0v75_s0
[    6.469637]  ffffffff 129039c0
[    6.470356] pcie30_avdd1v8: supplied by avcc_1v8_s0
[    6.470624]  ffffffc0
[    6.471186] vcc3v3_lcd0_n: supplied by vcc_1v8_s0
[    6.471550] 3950  12903970
[    6.473094] input: adc-keys as /devices/platform/adc-keys/input/input1
[    6.473184]  ffffffc0 106a873c ffffffc0 00000000 00000000 20c00005 00000000
[    6.475918] 3970* 129039c0 ffffffc0 106a8df0 ffffffc0 04c408b0 ffffff80 04c408b0 ffffff80
[    6.476631] 3990  00000000 00000000 00000001 00000000 00000000 00000000 04c40800 ffffff80
[    6.477343] 39b0  0000c07f 0002008a 40f20b00 d8c209e0 12903a60 ffffffc0 106a964c ffffffc0
[    6.477503] [dhd] _dhd_module_init: in Dongle Host Driver, version 101.10.361.20 (wlan=r892223-20220701-3)

[    6.478056] 39d0  00000000
[    6.478167] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    6.479267] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    6.479554] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    6.479557] cfg80211: failed to load regulatory.db
[    6.479797] [dhd] ANDROID_VERSION = 12
[    6.479802] [dhd] ======== dhd_wlan_init_plat_data ========
[    6.480351]  00000000 02d66c00
[    6.480668] pm suspend: not set pwm-regulator-config
[    6.481976] [WLAN_RFKILL]: wifi_get_oob_irq: Enter
[    6.482275] I : [File] : drivers/gpu/arm/mali400/mali/linux/mali_kernel_linux.c; [Line] : 409; [Func] : mali_module_init(); svn_rev_string_from_arm of this mali_ko is '', ko_ver is '5', built at '11:01:21', on 'Dec  1 2022'.
[    6.482541]  ffffff80 04050f10
[    6.482764] Mali: 
[    6.482765] Mali device driver loaded
[    6.482767] ALSA device list:
[    6.482770]   No soundcards found.
[    6.483316] [dhd] dhd_wlan_init_gpio: WL_HOST_WAKE=-1, oob_irq=73, oob_irq_flags=0x4
[    6.483711]  ffffff80 04050f10
[    6.484041] [dhd] dhd_wlan_init_gpio: WL_REG_ON=-1
[    6.484045] [dhd] dhd_wifi_platform_load: Enter
[    6.484528]  ffffff80
[    6.484529] 39f0  fffffff4 00000000 00000020
[    6.484837] [dhd] _dhd_module_init: Exit err=0
[    6.485368]  00000000 00000000 00000000 00000001 00000000
[    6.491676] 3a10  00000006 00000000 04c40800 ffffff80 12903a60 ffffffc0 00000000 00000000
[    6.492857] 3a30  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    6.493569] 3a50  00000000 00000000 40f20b00 d8c209e0 12903ad0 ffffffc0 10693564 ffffffc0
[    6.494282] 3a70  00000011 00000000 04c40e61 ffffff80 114c2c68 ffffffc0 11f85000 ffffffc0
[    6.494994] 3a90  04050c00 ffffff80 04c40800 ffffff80 00000001 00000000 10675eb8 ffffffc0
[    6.495707] 3ab0  ffffffff ffffffff ffffffff ffffffff ffffffff ffffffc0 40f20b00 d8c209e0
[    6.496420] 3ad0  12903b30 ffffffc0 10693dd0 ffffffc0 00000000 00000000 02d66c00 ffffff80
[    6.497132] 3af0  04050f10 ffffff80 04050f10 ffffff80 11da88d0 ffffffc0 04c40e61 ffffff80
[    6.497844] 3b10  114c2c68 ffffffc0 04c408b0 ffffff80 11da8870 ffffffc0 04c40800 ffffff80
[    6.498557] 3b30  12903b50 ffffffc0 10688638 ffffffc0 11da8870 ffffffc0 04c40800 ffffff80
[    6.499269] 3b50  12903b90 ffffffc0 1099e9f0 ffffffc0 04050480 ffffff80 00000000 00000000
[    6.499983] ---[ end trace 8352f34018bfd64d ]---
[    6.500479] pcieport 0002:20:00.0: PME: Signaling with IRQ 69
[    6.501060] sysfs: cannot create duplicate filename '/devices/platform/fe170000.pcie/pci0002:20/0002:20:00.0/0002:21:00.0/config'
[    6.502067] CPU: 5 PID: 142 Comm: pcie Tainted: G        W         5.10.110 #192
[    6.502732] Hardware name: Rockchip RK3588 TOYBRICK X10 Board (DT)
[    6.503272] Call trace:
[    6.503493]  dump_backtrace+0x0/0x1e4
[    6.503813]  show_stack+0x24/0x30
[    6.504107]  dump_stack_lvl+0xd4/0x124
[    6.504435]  dump_stack+0x18/0x3c
[    6.504728]  sysfs_warn_dup+0x74/0x90
[    6.505050]  sysfs_create_bin_file+0xec/0x134
[    6.505086] EXT4-fs (mmcblk0p6): mounted filesystem with ordered data mode. Opts: (null)
[    6.505433]  pci_create_sysfs_dev_files+0x58/0x218
[    6.505440]  pci_bus_add_device+0x38/0xa8
[    6.506152] VFS: Mounted root (ext4 filesystem) on device 179:6.
[    6.506558]  pci_bus_add_devices+0x4c/0x8c
[    6.506562]  pci_bus_add_devices+0x78/0x8c
[    6.508155]  pci_host_probe+0x80/0xb4
[    6.508477]  dw_pcie_host_init+0x310/0x3fc
[    6.508820] devtmpfs: mounted
[    6.508837]  pcie_really_probe+0x958/0xe04
[    6.508843]  kthread+0x120/0x258
[    6.509767]  ret_from_fork+0x10/0x30
[    6.510418] Freeing unused kernel memory: 1856K
[    6.512041] pciback 0002:21:00.0: xen_pciback: seizing device
[    6.526840] pciback 0002:21:00.0: enabling device (0000 -> 0002)
[    6.584219] Run /sbin/init as init process
[    6.584572]   with arguments:
[    6.584573]     /sbin/init
[    6.584575]   with environment:
[    6.584576]     HOME=/
[    6.584578]     TERM=linux
[    6.584579]     iommu=1
[    6.584580]     psi=1
[    6.708578] systemd[1]: Failed to find module 'autofs4'
[    6.714290] systemd[1]: systemd 252.1-1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    6.717052] systemd[1]: Detected architecture arm64.
[    6.723575] systemd[1]: Hostname set to <debian.toybrick>.
[    6.834204] systemd-sysv-generator[205]: Overwriting existing symlink /run/systemd/generator.late/xen.service with real service.
[    6.990880] systemd[1]: Queued start job for default target Graphical Interface.
[    6.992394] systemd[1]: Created slice Slice /system/getty.
[    6.993824] systemd[1]: Created slice Slice /system/modprobe.
[    6.995240] systemd[1]: Created slice Slice /system/serial-getty.
[    6.996648] systemd[1]: Created slice Slice /system/systemd-fsck.
[    6.997944] systemd[1]: Created slice User and Session Slice.
[    6.999118] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    7.000654] systemd[1]: Arbitrary Executable File Formats File System Automount Point was skipped because of an unmet condition check (ConditionPathExists=/proc/sys/fs/binfmt_misc).
[    7.002144] systemd[1]: Reached target Local Integrity Protected Volumes.
[    7.003448] systemd[1]: Reached target User and Group Name Lookups.
[    7.004638] systemd[1]: Reached target Remote File Systems.
[    7.005695] systemd[1]: Reached target Slice Units.
[    7.006646] systemd[1]: Reached target Swaps.
[    7.007537] systemd[1]: Reached target Local Verity Protected Volumes.
[    7.008930] systemd[1]: Listening on Syslog Socket.
[    7.009984] systemd[1]: Listening on fsck to fsckd communication Socket.
[    7.011302] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    7.016985] systemd[1]: Journal Audit Socket was skipped because of an unmet condition check (ConditionSecurity=audit).
[    7.018102] systemd[1]: Listening on Journal Socket (/dev/log).
[    7.019393] systemd[1]: Listening on Journal Socket.
[    7.020863] systemd[1]: Listening on udev Control Socket.
[    7.022016] systemd[1]: Listening on udev Kernel Socket.
[    7.023204] systemd[1]: Huge Pages File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/mm/hugepages).
[    7.024421] systemd[1]: POSIX Message Queue File System was skipped because of an unmet condition check (ConditionPathExists=/proc/sys/fs/mqueue).
[    7.026273] systemd[1]: Mounting Kernel Debug File System...
[    7.028020] systemd[1]: Mounting Kernel Trace File System...
[    7.029215] systemd[1]: Create List of Static Device Nodes was skipped because of an unmet condition check (ConditionFileNotEmpty=/lib/modules/5.10.110/modules.devname).
[    7.031478] systemd[1]: Starting Load Kernel Module configfs...
[    7.033420] systemd[1]: Starting Load Kernel Module drm...
[    7.035325] systemd[1]: Starting Load Kernel Module efi_pstore...
[    7.037333] systemd[1]: Starting Load Kernel Module fuse...
[    7.038787] systemd[1]: systemd-journald.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
[    7.039902] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
[    7.041336] systemd[1]: Starting Journal Service...
[    7.044146] systemd[1]: Starting Load Kernel Modules...
[    7.045991] systemd[1]: Starting Remount Root and Kernel File Systems...
[    7.047275] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[    7.048925] systemd[1]: Starting Coldplug All udev Devices...
[    7.051373] systemd[1]: Mounted Kernel Debug File System.
[    7.052570] systemd[1]: Mounted Kernel Trace File System.
[    7.053867] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    7.054667] systemd[1]: Finished Load Kernel Module configfs.
[    7.061990] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    7.062734] systemd[1]: Finished Load Kernel Module drm.
[    7.064098] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[    7.064905] systemd[1]: Finished Load Kernel Module efi_pstore.
[    7.066341] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    7.067040] systemd[1]: Finished Load Kernel Module fuse.
[    7.068317] systemd[1]: Finished Load Kernel Modules.
[    7.069510] systemd[1]: Finished Remount Root and Kernel File Systems.
[    7.071757] systemd[1]: Mounting FUSE Control File System...
[    7.073497] systemd[1]: Mounting Kernel Configuration File System...
[    7.074699] systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[    7.075663] systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[    7.077724] systemd[1]: Starting Load/Save Random Seed...
[    7.079538] systemd[1]: Starting Apply Kernel Variables...
[    7.081382] systemd[1]: Starting Create System Users...
[    7.083986] systemd[1]: Mounted FUSE Control File System.
[    7.086347] systemd[1]: Mounted Kernel Configuration File System.
[    7.104018] systemd[1]: Finished Apply Kernel Variables.
[    7.110065] systemd[1]: Finished Create System Users.
[    7.112120] systemd[1]: Starting Create Static Device Nodes in /dev...
[    7.130186] systemd[1]: Started Journal Service.
[    7.152995] systemd-journald[217]: Received client request to flush runtime journal.
[    7.385950] gmac-dwmac fe1b0000.ethernet end0: renamed from eth0
[    7.420061] random: avahi-daemon: uninitialized urandom read (4 bytes read)
[    7.427623] random: dbus-daemon: uninitialized urandom read (12 bytes read)
[    7.577677] random: dbus-daemon: uninitialized urandom read (12 bytes read)
[    8.069928] EXT4-fs (mmcblk0p8): mounted filesystem with ordered data mode. Opts: (null)
[    8.103077] Mass Storage Function, version: 2009/09/11
[    8.103606] LUN: removable file: (no medium)
[    8.106247] mass_storage.0/lun.0: unable to open backing file: /var/doc.img
[    8.108858] Mass Storage Function, version: 2009/09/11
[    8.109309] LUN: removable file: (no medium)
[    8.112772] mass_storage.1/lun.0: unable to open backing file: /var/doc.img
[    8.117323] using random self ethernet address
[    8.117761] using random host ethernet address
[    8.328679] file system registered
[    8.440643] udc fc000000.usb: failed to start : -19
[    9.613981] read descriptors
[    9.614319] read strings
[    9.749737] ffs_data_put(): freeing
[    9.987902] android_work: did not send uevent (0 0 0000000000000000)
[   10.184170] random: crng init done
[   10.184467] random: 2 urandom warning(s) missed due to ratelimiting
[   10.293698] EXT4-fs (mmcblk0p3): mounting ext2 file system using the ext4 subsystem
[   10.296690] EXT4-fs (mmcblk0p3): mounted filesystem without journal. Opts: (null)
[   10.297345] ext2 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
[   36.584174] vcc_mipicsi0: disabling
[   36.584482] vcc_mipicsi1: disabling
[   36.584787] vcc_mipicsi1: disabling
[   36.585228] vdd_gpu_s0: disabling
[   36.585694] vcc3v3_lcd0_n: disabling
[   69.889654] of_dma_request_slave_channel: dma-names property of node '/serial@febb0000' missing or empty
[   69.890494] dw-apb-uart febb0000.serial: failed to request DMA, use interrupt mode
[   75.736579] ttyFIQ ttyFIQ0: tty_port_close_start: tty->count = 1 port count = 2

^ permalink raw reply	[relevance 3%]

* Re: [BUG] problems with NICs pass through to OpenBSD guest
  @ 2022-09-20  8:12  4%         ` Adam Szewczyk
  0 siblings, 0 replies; 200+ results
From: Adam Szewczyk @ 2022-09-20  8:12 UTC (permalink / raw)
  To: Roger Pau Monné; +Cc: xen-devel

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

On, log section i Qubes manager also those logs are empty, but I can attach
/var/log/xen/console/guest-openbsd-71-dm.log:
[2022-09-19 19:50:55] Logfile Opened
[2022-09-19 19:50:56] Linux version 5.10.105-xen-stubdom
(mockbuild@0c9ad8f2058f40c49bc934dcc2ea73c7) (gcc (GCC) 10.3.1 20210422
(Red Hat 10.3.1-1), GNU ld version 2.34-6.fc32) #1 Fri Apr 22 17:53:39 CEST
2022
[2022-09-19 19:50:56] Command line:
[2022-09-19 19:50:56] x86/fpu: Supporting XSAVE feature 0x001: 'x87
floating point registers'
[2022-09-19 19:50:56] x86/fpu: Supporting XSAVE feature 0x002: 'SSE
registers'
[2022-09-19 19:50:56] x86/fpu: Supporting XSAVE feature 0x004: 'AVX
registers'
[2022-09-19 19:50:56] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[2022-09-19 19:50:56] x86/fpu: Enabled xstate features 0x7, context size is
832 bytes, using 'standard' format.
[2022-09-19 19:50:56] Released 0 page(s)
[2022-09-19 19:50:56] BIOS-provided physical RAM map:
[2022-09-19 19:50:56] Xen: [mem 0x0000000000000000-0x000000000009ffff]
usable
[2022-09-19 19:50:56] Xen: [mem 0x00000000000a0000-0x00000000000fffff]
reserved
[2022-09-19 19:50:56] Xen: [mem 0x0000000000100000-0x0000000008ffffff]
usable
[2022-09-19 19:50:56] NX (Execute Disable) protection: active
[2022-09-19 19:50:56] Hypervisor detected: Xen PV
[2022-09-19 19:50:56] tsc: Fast TSC calibration failed
[2022-09-19 19:50:56] tsc: Detected 2591.990 MHz processor
[2022-09-19 19:50:56] last_pfn = 0x9000 max_arch_pfn = 0x400000000
[2022-09-19 19:50:56] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP
 UC  UC
[2022-09-19 19:50:56] RAMDISK: [mem 0x02000000-0x03f7afff]
[2022-09-19 19:50:56] Zone ranges:
[2022-09-19 19:50:56]   DMA32    [mem 0x0000000000001000-0x0000000008ffffff]
[2022-09-19 19:50:56]   Normal   empty
[2022-09-19 19:50:56] Movable zone start for each node
[2022-09-19 19:50:56] Early memory node ranges
[2022-09-19 19:50:56]   node   0: [mem
0x0000000000001000-0x000000000009ffff]
[2022-09-19 19:50:56]   node   0: [mem
0x0000000000100000-0x0000000008ffffff]
[2022-09-19 19:50:56] Initmem setup node 0 [mem
0x0000000000001000-0x0000000008ffffff]
[2022-09-19 19:50:56] On node 0, zone DMA32: 1 pages in unavailable ranges
[2022-09-19 19:50:56] On node 0, zone DMA32: 96 pages in unavailable ranges
[2022-09-19 19:50:56] On node 0, zone DMA32: 28672 pages in unavailable
ranges
[2022-09-19 19:50:56] p2m virtual area at (____ptrval____), size is 200000
[2022-09-19 19:50:56] Remapped 0 page(s)
[2022-09-19 19:50:56] [mem 0x09000000-0xffffffff] available for PCI devices
[2022-09-19 19:50:56] Booting paravirtualized kernel on Xen
[2022-09-19 19:50:56] Xen version: 4.14.5 (preserve-AD)
[2022-09-19 19:50:56] clocksource: refined-jiffies: mask: 0xffffffff
max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[2022-09-19 19:50:56] Built 1 zonelists, mobility grouping on.  Total
pages: 36170
[2022-09-19 19:50:56] Kernel command line: clocksource=tsc
[2022-09-19 19:50:56] Dentry cache hash table entries: 32768 (order: 6,
262144 bytes, linear)
[2022-09-19 19:50:56] Inode-cache hash table entries: 16384 (order: 5,
131072 bytes, linear)
[2022-09-19 19:50:56] mem auto-init: stack:byref_all(zero), heap alloc:off,
heap free:off
[2022-09-19 19:50:56] Memory: 96968K/147068K available (6145K kernel code,
842K rwdata, 428K rodata, 696K init, 476K bss, 49848K reserved, 0K
cma-reserved)
[2022-09-19 19:50:56] random: get_random_u64 called from 0xffffffff810a0f18
with crng_init=0
[2022-09-19 19:50:56] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1,
Nodes=1
[2022-09-19 19:50:56] Using NULL legacy PIC
[2022-09-19 19:50:56] NR_IRQS: 4352, nr_irqs: 24, preallocated irqs: 0
[2022-09-19 19:50:56] xen:events: Using FIFO-based ABI
[2022-09-19 19:50:56] printk: console [hvc0] enabled
[2022-09-19 19:50:56] clocksource: xen: mask: 0xffffffffffffffff
max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[2022-09-19 19:50:56] installing Xen timer for CPU 0
[2022-09-19 19:50:56] clocksource: tsc-early: mask: 0xffffffffffffffff
max_cycles: 0x255cad98bda, max_idle_ns: 440795306906 ns
[2022-09-19 19:50:56] Calibrating delay loop (skipped), value calculated
using timer frequency.. 5183.98 BogoMIPS (lpj=10367960)
[2022-09-19 19:50:56] pid_max: default: 4096 minimum: 301
[2022-09-19 19:50:56] Mount-cache hash table entries: 512 (order: 0, 4096
bytes, linear)
[2022-09-19 19:50:56] Mountpoint-cache hash table entries: 512 (order: 0,
4096 bytes, linear)
[2022-09-19 19:50:56] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[2022-09-19 19:50:56] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[2022-09-19 19:50:56] CPU: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz
(family: 0x6, model: 0x9e, stepping: 0xa)
[2022-09-19 19:50:56] Spectre V1 : Mitigation: usercopy/swapgs barriers and
__user pointer sanitization
[2022-09-19 19:50:56] Spectre V2 : Mitigation: Retpolines
[2022-09-19 19:50:56] Spectre V2 : Spectre v2 / SpectreRSB mitigation:
Filling RSB on context switch
[2022-09-19 19:50:56] Spectre V2 : Enabling Restricted Speculation for
firmware calls
[2022-09-19 19:50:56] Spectre V2 : mitigation: Enabling conditional
Indirect Branch Prediction Barrier
[2022-09-19 19:50:56] Speculative Store Bypass: Mitigation: Speculative
Store Bypass disabled via prctl and seccomp
[2022-09-19 19:50:56] SRBDS: Unknown: Dependent on hypervisor status
[2022-09-19 19:50:56] MDS: Mitigation: Clear CPU buffers
[2022-09-19 19:50:56] Performance Events: unsupported p6 CPU model 158 no
PMU driver, software events only.
[2022-09-19 19:50:56] devtmpfs: initialized
[2022-09-19 19:50:56] clocksource: jiffies: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 7645041785100000 ns
[2022-09-19 19:50:56] futex hash table entries: 16 (order: -4, 384 bytes,
linear)
[2022-09-19 19:50:56] NET: Registered protocol family 16
[2022-09-19 19:50:56] xen:grant_table: Grant tables using version 1 layout
[2022-09-19 19:50:56] Grant table initialized
[2022-09-19 19:50:56] PCI: setting up Xen PCI frontend stub
[2022-09-19 19:50:56] xen:balloon: Initialising balloon driver
[2022-09-19 19:50:56] usbcore: registered new interface driver usbfs
[2022-09-19 19:50:56] usbcore: registered new interface driver hub
[2022-09-19 19:50:56] usbcore: registered new device driver usb
[2022-09-19 19:50:56] PCI: System does not support PCI
[2022-09-19 19:50:56] clocksource: Switched to clocksource xen
[2022-09-19 19:50:56] NET: Registered protocol family 2
[2022-09-19 19:50:56] IP idents hash table entries: 4096 (order: 3, 32768
bytes, linear)
[2022-09-19 19:50:56] tcp_listen_portaddr_hash hash table entries: 256
(order: 0, 4096 bytes, linear)
[2022-09-19 19:50:56] TCP established hash table entries: 2048 (order: 2,
16384 bytes, linear)
[2022-09-19 19:50:56] TCP bind hash table entries: 2048 (order: 2, 16384
bytes, linear)
[2022-09-19 19:50:56] TCP: Hash tables configured (established 2048 bind
2048)
[2022-09-19 19:50:56] UDP hash table entries: 128 (order: 0, 4096 bytes,
linear)
[2022-09-19 19:50:56] UDP-Lite hash table entries: 128 (order: 0, 4096
bytes, linear)
[2022-09-19 19:50:56] NET: Registered protocol family 1
[2022-09-19 19:50:56] Unpacking initramfs...
[2022-09-19 19:50:56] Freeing initrd memory: 32236K
[2022-09-19 19:50:56] clocksource: tsc: mask: 0xffffffffffffffff
max_cycles: 0x255cad98bda, max_idle_ns: 440795306906 ns
[2022-09-19 19:50:56] clocksource: Switched to clocksource tsc
[2022-09-19 19:50:56] workingset: timestamp_bits=62 max_order=15
bucket_order=0
[2022-09-19 19:50:56] xen:xen_evtchn: Event-channel device installed
[2022-09-19 19:50:56] Invalid max_queues (4), will use default max: 1.
[2022-09-19 19:50:56] tun: Universal TUN/TAP device driver, 1.6
[2022-09-19 19:50:56] xen_netfront: Initialising Xen virtual ethernet driver
[2022-09-19 19:50:56] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[2022-09-19 19:50:56] vhci_hcd vhci_hcd.0: new USB bus registered, assigned
bus number 1
[2022-09-19 19:50:56] vhci_hcd: created sysfs vhci_hcd.0
[2022-09-19 19:50:56] hub 1-0:1.0: USB hub found
[2022-09-19 19:50:56] hub 1-0:1.0: 8 ports detected
[2022-09-19 19:50:56] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[2022-09-19 19:50:56] vhci_hcd vhci_hcd.0: new USB bus registered, assigned
bus number 2
[2022-09-19 19:50:56] usb usb2: We don't know the algorithms for LPM for
this host, disabling LPM.
[2022-09-19 19:50:56] hub 2-0:1.0: USB hub found
[2022-09-19 19:50:56] hub 2-0:1.0: 8 ports detected
[2022-09-19 19:50:56] NET: Registered protocol family 17
[2022-09-19 19:50:56] sched_clock: Marking stable (273283961,
179377)->(275136085, -1672747)
[2022-09-19 19:50:56] random: fast init done
[2022-09-19 19:50:56] blkfront: xvda: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-19 19:50:56]  xvda: xvda4
[2022-09-19 19:50:56] blkfront: xvdb: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-19 19:50:56] blkfront: xvdc: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-19 19:50:56] Freeing unused kernel image (initmem) memory: 696K
[2022-09-19 19:50:56] Write protecting the kernel read-only data: 10240k
[2022-09-19 19:50:56] Freeing unused kernel image (text/rodata gap) memory:
2044K
[2022-09-19 19:50:56] Freeing unused kernel image (rodata/data gap) memory:
1620K
[2022-09-19 19:50:56] Run /init as init process
[2022-09-19 19:50:56] + mount -t devtmpfs none /dev
[2022-09-19 19:50:56] + mount -t sysfs /sys /sys
[2022-09-19 19:50:56] + mount -t proc /proc /proc
[2022-09-19 19:50:56] + mount -t tmpfs -o 'size=1m,nodev,noexec' /tmp /tmp
[2022-09-19 19:50:56] + mount -o remount,ro /
[2022-09-19 19:50:56] + echo 1
[2022-09-19 19:50:56] + printf '%d\n' 1073741824
[2022-09-19 19:50:56] + /bin/xenstore-read target
[2022-09-19 19:50:56] + domid=62
[2022-09-19 19:50:56] + xenstore-read /local/domain/62/vm
[2022-09-19 19:50:56] + vm_path=/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3
[2022-09-19 19:50:56] + sort
[2022-09-19 19:50:56] + xenstore-list -p
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv
[2022-09-19 19:50:56] + xenstore-read
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/001
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/002
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/003
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/004
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/005
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/006
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/007
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/008
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/009
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/010
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/011
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/012
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/013
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/014
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/015
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/016
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/017
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/018
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/019
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/020
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/021
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/022
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/023
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/024
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/025
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/026
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/027
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/028
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/029
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/030
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/031
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/032
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/033
[2022-09-19 19:50:56] + dm_args='-xen-domid
[2022-09-19 19:50:56] 62
[2022-09-19 19:50:56] -no-shutdown
[2022-09-19 19:50:56] -nodefaults
[2022-09-19 19:50:56] -no-user-config
[2022-09-19 19:50:56] -name
[2022-09-19 19:50:56] openbsd-71
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] VGA,vgamem_mb=16
[2022-09-19 19:50:56] -boot
[2022-09-19 19:50:56] order=dc
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-ehci,id=ehci
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-tablet,bus=ehci.0
[2022-09-19 19:50:56] -smp
[2022-09-19 19:50:56] 2,maxcpus=2
[2022-09-19 19:50:56] -net
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] qubes-gui,domid=0,log-level=0
[2022-09-19 19:50:56] -machine
[2022-09-19 19:50:56] xenfv
[2022-09-19 19:50:56] -m
[2022-09-19 19:50:56] 496
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 19:50:56] + usb_args=
[2022-09-19 19:50:56] + test -e /bin/qrexec-agent
[2022-09-19 19:50:56] + usb_args='-device
[2022-09-19 19:50:56] nec-usb-xhci,id=xhci'
[2022-09-19 19:50:56] + mkdir -p /var/run/qubes
[2022-09-19 19:50:56] + touch /dev/mdev.log
[2022-09-19 19:50:56] + mdev -d
[2022-09-19 19:50:56] + USER=root qrexec-agent
[2022-09-19 19:50:56] + sed -n '/^-soundhw/ {n;p}'
[2022-09-19 19:50:56] + echo '-xen-domid
[2022-09-19 19:50:56] 62
[2022-09-19 19:50:56] -no-shutdown
[2022-09-19 19:50:56] -nodefaults
[2022-09-19 19:50:56] -no-user-config
[2022-09-19 19:50:56] -name
[2022-09-19 19:50:56] openbsd-71
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] VGA,vgamem_mb=16
[2022-09-19 19:50:56] -boot
[2022-09-19 19:50:56] order=dc
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-ehci,id=ehci
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-tablet,bus=ehci.0
[2022-09-19 19:50:56] -smp
[2022-09-19 19:50:56] 2,maxcpus=2
[2022-09-19 19:50:56] -net
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] qubes-gui,domid=0,log-level=0
[2022-09-19 19:50:56] -machine
[2022-09-19 19:50:56] xenfv
[2022-09-19 19:50:56] -m
[2022-09-19 19:50:56] 496
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 19:50:56] + audio_model=
[2022-09-19 19:50:56] + '[' -n  ]
[2022-09-19 19:50:56] + sed -n /^-qubes-net:/p
[2022-09-19 19:50:56] + echo '-xen-domid
[2022-09-19 19:50:56] 62
[2022-09-19 19:50:56] -no-shutdown
[2022-09-19 19:50:56] -nodefaults
[2022-09-19 19:50:56] -no-user-config
[2022-09-19 19:50:56] -name
[2022-09-19 19:50:56] openbsd-71
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] VGA,vgamem_mb=16
[2022-09-19 19:50:56] -boot
[2022-09-19 19:50:56] order=dc
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-ehci,id=ehci
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-tablet,bus=ehci.0
[2022-09-19 19:50:56] -smp
[2022-09-19 19:50:56] 2,maxcpus=2
[2022-09-19 19:50:56] -net
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] qubes-gui,domid=0,log-level=0
[2022-09-19 19:50:56] -machine
[2022-09-19 19:50:56] xenfv
[2022-09-19 19:50:56] -m
[2022-09-19 19:50:56] 496
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 19:50:56] + net_args=
[2022-09-19 19:50:56] + sed /^-qubes-net:/d
[2022-09-19 19:50:56] + echo '-xen-domid
[2022-09-19 19:50:56] 62
[2022-09-19 19:50:56] -no-shutdown
[2022-09-19 19:50:56] -nodefaults
[2022-09-19 19:50:56] -no-user-config
[2022-09-19 19:50:56] -name
[2022-09-19 19:50:56] openbsd-71
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] VGA,vgamem_mb=16
[2022-09-19 19:50:56] -boot
[2022-09-19 19:50:56] order=dc
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-ehci,id=ehci
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-tablet,bus=ehci.0
[2022-09-19 19:50:56] -smp
[2022-09-19 19:50:56] 2,maxcpus=2
[2022-09-19 19:50:56] -net
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] qubes-gui,domid=0,log-level=0
[2022-09-19 19:50:56] -machine
[2022-09-19 19:50:56] xenfv
[2022-09-19 19:50:56] -m
[2022-09-19 19:50:56] 496
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 19:50:56] + dm_args='-xen-domid
[2022-09-19 19:50:56] 62
[2022-09-19 19:50:56] -no-shutdown
[2022-09-19 19:50:56] -nodefaults
[2022-09-19 19:50:56] -no-user-config
[2022-09-19 19:50:56] -name
[2022-09-19 19:50:56] openbsd-71
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] VGA,vgamem_mb=16
[2022-09-19 19:50:56] -boot
[2022-09-19 19:50:56] order=dc
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-ehci,id=ehci
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-tablet,bus=ehci.0
[2022-09-19 19:50:56] -smp
[2022-09-19 19:50:56] 2,maxcpus=2
[2022-09-19 19:50:56] -net
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] qubes-gui,domid=0,log-level=0
[2022-09-19 19:50:56] -machine
[2022-09-19 19:50:56] xenfv
[2022-09-19 19:50:56] -m
[2022-09-19 19:50:56] 496
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 19:50:56] + test -e /sys/class/net/eth0
[2022-09-19 19:50:56] + echo 'No network interface named eth0.'
[2022-09-19 19:50:56] No network interface named eth0.
[2022-09-19 19:50:56] + ls -l /sys/class/net/
[2022-09-19 19:50:56] total 0
[2022-09-19 19:50:56] lrwxrwxrwx    1 root     0                0 Sep 19
17:50 .[1;36mlo.[m -> .[1;34m../../devices/virtual/net/lo.[m
[2022-09-19 19:50:56] + xenstore-read target
[2022-09-19 19:50:56] + target=62
[2022-09-19 19:50:56] + device_model=device-model/62
[2022-09-19 19:50:56] + mkdir /tmp/qmp
[2022-09-19 19:50:56] + kernel=
[2022-09-19 19:50:56] + grep -q ^-append
[2022-09-19 19:50:56] + echo '-xen-domid
[2022-09-19 19:50:56] 62
[2022-09-19 19:50:56] -no-shutdown
[2022-09-19 19:50:56] -nodefaults
[2022-09-19 19:50:56] -no-user-config
[2022-09-19 19:50:56] -name
[2022-09-19 19:50:56] openbsd-71
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] VGA,vgamem_mb=16
[2022-09-19 19:50:56] -boot
[2022-09-19 19:50:56] order=dc
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-ehci,id=ehci
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-tablet,bus=ehci.0
[2022-09-19 19:50:56] -smp
[2022-09-19 19:50:56] 2,maxcpus=2
[2022-09-19 19:50:56] -net
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] qubes-gui,domid=0,log-level=0
[2022-09-19 19:50:56] -machine
[2022-09-19 19:50:56] xenfv
[2022-09-19 19:50:56] -m
[2022-09-19 19:50:56] 496
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 19:50:56] + mkfifo /tmp/qmp/qemu.in /tmp/qmp/qemu.out
[2022-09-19 19:50:56] + set +x
[2022-09-19 19:50:56] Clearing kmsg buffer...
[2022-09-19 19:50:56] + set +x
[2022-09-19 19:50:56] + set +x
[2022-09-19 19:50:56] + sed 's/\$STUBDOM_RESTORE_INCOMING_ARG/fd:3/'
[2022-09-19 19:50:56] + echo '-xen-domid
[2022-09-19 19:50:56] 62
[2022-09-19 19:50:56] -no-shutdown
[2022-09-19 19:50:56] -nodefaults
[2022-09-19 19:50:56] -no-user-config
[2022-09-19 19:50:56] -name
[2022-09-19 19:50:56] openbsd-71
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] VGA,vgamem_mb=16
[2022-09-19 19:50:56] -boot
[2022-09-19 19:50:56] order=dc
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-ehci,id=ehci
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-tablet,bus=ehci.0
[2022-09-19 19:50:56] -smp
[2022-09-19 19:50:56] 2,maxcpus=2
[2022-09-19 19:50:56] -net
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] qubes-gui,domid=0,log-level=0
[2022-09-19 19:50:56] -machine
[2022-09-19 19:50:56] xenfv
[2022-09-19 19:50:56] -m
[2022-09-19 19:50:56] 496
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 19:50:56] + dm_args='-xen-domid
[2022-09-19 19:50:56] 62
[2022-09-19 19:50:56] -no-shutdown
[2022-09-19 19:50:56] -nodefaults
[2022-09-19 19:50:56] -no-user-config
[2022-09-19 19:50:56] -name
[2022-09-19 19:50:56] openbsd-71
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] VGA,vgamem_mb=16
[2022-09-19 19:50:56] -boot
[2022-09-19 19:50:56] order=dc
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-ehci,id=ehci
[2022-09-19 19:50:56] -device
[2022-09-19 19:50:56] usb-tablet,bus=ehci.0
[2022-09-19 19:50:56] -smp
[2022-09-19 19:50:56] 2,maxcpus=2
[2022-09-19 19:50:56] -net
[2022-09-19 19:50:56] none
[2022-09-19 19:50:56] -display
[2022-09-19 19:50:56] qubes-gui,domid=0,log-level=0
[2022-09-19 19:50:56] -machine
[2022-09-19 19:50:56] xenfv
[2022-09-19 19:50:56] -m
[2022-09-19 19:50:56] 496
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 19:50:56] -drive
[2022-09-19 19:50:56]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 19:50:56] + xenstore-read device/console/2
[2022-09-19 19:50:56] + xenstore-read device/console/1
[2022-09-19 19:50:57] + IFS='
[2022-09-19 19:50:57] '
[2022-09-19 19:50:57] + set -f
[2022-09-19 19:50:57] + set +f
[2022-09-19 19:50:57] + unset IFS
[2022-09-19 19:50:57] + qemu_pid=171
[2022-09-19 19:50:57] + '[' '!' -e /tmp/qemu.qmp ]
[2022-09-19 19:50:57] + sleep 0.1
[2022-09-19 19:50:57] + qemu -sandbox
'on,obsolete=deny,elevateprivileges=deny,spawn=deny,resourcecontrol=deny'
-chardev 'pipe,path=/tmp/qmp/qemu,id=m' -mon 'chardev=m,mode=control'
-chardev 'socket,server,nowait,path=/tmp/qemu.qmp,id=m2' -mon
'chardev=m2,mode=control' -xen-domid 62 -no-shutdown -nodefaults
-no-user-config -name openbsd-71 -display none -device 'VGA,vgamem_mb=16'
-boot 'order=dc' -device 'usb-ehci,id=ehci' -device 'usb-tablet,bus=ehci.0'
-smp '2,maxcpus=2' -net none -display 'qubes-gui,domid=0,log-level=0'
-machine xenfv -m 496 -drive
'file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback'
-drive
'file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback'
-drive
'file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
-device 'nec-usb-xhci,id=xhci'
[2022-09-19 19:50:57] qemu: -chardev
socket,server,nowait,path=/tmp/qemu.qmp,id=m2: warning: short-form boolean
option 'server' deprecated
[2022-09-19 19:50:57] Please use server=on instead
[2022-09-19 19:50:57] qemu: -chardev
socket,server,nowait,path=/tmp/qemu.qmp,id=m2: warning: short-form boolean
option 'nowait' deprecated
[2022-09-19 19:50:57] Please use wait=off instead
[2022-09-19 19:50:57] random: qemu: uninitialized urandom read (16 bytes
read)
[2022-09-19 19:50:57] + tee /proc/self/fd/2
[2022-09-19 19:50:57] + echo '{"execute": "qmp_capabilities"}'
[2022-09-19 19:50:57] {"QMP": {"version": {"qemu": {"micro": 0, "minor": 1,
"major": 6}, "package": ""}, "capabilities": ["oob"]}}

[2022-09-19 19:50:57] {"execute": "qmp_capabilities"}
[2022-09-19 19:50:57] qubes_gui/init: 573
[2022-09-19 19:50:57] qubes_gui/init: 582
[2022-09-19 19:50:57] qubes_gui/init: 584
[2022-09-19 19:50:57] qubes_gui/init[611]: version sent, waiting for xorg
conf
[2022-09-19 19:50:57] {"return": {}}

[2022-09-19 19:50:57] + '[' '!' -e /tmp/qemu.qmp ]
[2022-09-19 19:50:57] + '[' -e /proc/self/fd/4 ]
[2022-09-19 19:50:57] + '[' -e /proc/self/fd/3 ]
[2022-09-19 19:50:57] + true
[2022-09-19 19:50:57] + printf '==== Press enter for shell ====\n'
[2022-09-19 19:50:57] ==== Press enter for shell ====
[2022-09-19 19:50:57] + read
[2022-09-19 19:50:57] + vchan-socket-proxy 0 device-model/62/qmp-vchan
/tmp/qemu.qmp
[2022-09-19 19:50:57] written 110 bytes to vchan
[2022-09-19 19:50:57] written 34 bytes to vchan
[2022-09-19 19:50:57] written 34 bytes to vchan
[2022-09-19 19:50:57] qubes_gui/init[622]: got xorg conf, creating window
[2022-09-19 19:50:57] qubes_gui/init: 632
[2022-09-19 19:50:57] random: crng init done
[2022-09-19 19:50:57] configure msg, x/y 600 365 (was 0 0), w/h 720 400
[2022-09-19 20:03:09] {"timestamp": {"seconds": 1663610590, "microseconds":
147671}, "event": "RESET", "data": {"guest": true, "reason": "guest-reset"}}

[2022-09-19 20:03:09] {"timestamp": {"seconds": 1663610590, "microseconds":
148655}, "event": "RESET", "data": {"guest": true, "reason": "guest-reset"}}

[2022-09-19 20:25:36] Logfile Opened
[2022-09-19 20:25:36] Linux version 5.10.105-xen-stubdom
(mockbuild@0c9ad8f2058f40c49bc934dcc2ea73c7) (gcc (GCC) 10.3.1 20210422
(Red Hat 10.3.1-1), GNU ld version 2.34-6.fc32) #1 Fri Apr 22 17:53:39 CEST
2022
[2022-09-19 20:25:36] Command line:
[2022-09-19 20:25:36] x86/fpu: Supporting XSAVE feature 0x001: 'x87
floating point registers'
[2022-09-19 20:25:36] x86/fpu: Supporting XSAVE feature 0x002: 'SSE
registers'
[2022-09-19 20:25:36] x86/fpu: Supporting XSAVE feature 0x004: 'AVX
registers'
[2022-09-19 20:25:36] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[2022-09-19 20:25:36] x86/fpu: Enabled xstate features 0x7, context size is
832 bytes, using 'standard' format.
[2022-09-19 20:25:36] Released 0 page(s)
[2022-09-19 20:25:36] BIOS-provided physical RAM map:
[2022-09-19 20:25:36] Xen: [mem 0x0000000000000000-0x000000000009ffff]
usable
[2022-09-19 20:25:36] Xen: [mem 0x00000000000a0000-0x00000000000fffff]
reserved
[2022-09-19 20:25:36] Xen: [mem 0x0000000000100000-0x0000000008ffffff]
usable
[2022-09-19 20:25:36] NX (Execute Disable) protection: active
[2022-09-19 20:25:36] Hypervisor detected: Xen PV
[2022-09-19 20:25:36] tsc: Fast TSC calibration failed
[2022-09-19 20:25:36] tsc: Detected 2591.998 MHz processor
[2022-09-19 20:25:36] last_pfn = 0x9000 max_arch_pfn = 0x400000000
[2022-09-19 20:25:36] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP
 UC  UC
[2022-09-19 20:25:36] RAMDISK: [mem 0x02000000-0x03f7afff]
[2022-09-19 20:25:36] Zone ranges:
[2022-09-19 20:25:36]   DMA32    [mem 0x0000000000001000-0x0000000008ffffff]
[2022-09-19 20:25:36]   Normal   empty
[2022-09-19 20:25:36] Movable zone start for each node
[2022-09-19 20:25:36] Early memory node ranges
[2022-09-19 20:25:36]   node   0: [mem
0x0000000000001000-0x000000000009ffff]
[2022-09-19 20:25:36]   node   0: [mem
0x0000000000100000-0x0000000008ffffff]
[2022-09-19 20:25:36] Initmem setup node 0 [mem
0x0000000000001000-0x0000000008ffffff]
[2022-09-19 20:25:36] On node 0, zone DMA32: 1 pages in unavailable ranges
[2022-09-19 20:25:36] On node 0, zone DMA32: 96 pages in unavailable ranges
[2022-09-19 20:25:36] On node 0, zone DMA32: 28672 pages in unavailable
ranges
[2022-09-19 20:25:36] p2m virtual area at (____ptrval____), size is 200000
[2022-09-19 20:25:36] Remapped 0 page(s)
[2022-09-19 20:25:36] [mem 0x09000000-0xffffffff] available for PCI devices
[2022-09-19 20:25:36] Booting paravirtualized kernel on Xen
[2022-09-19 20:25:36] Xen version: 4.14.5 (preserve-AD)
[2022-09-19 20:25:36] clocksource: refined-jiffies: mask: 0xffffffff
max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[2022-09-19 20:25:36] Built 1 zonelists, mobility grouping on.  Total
pages: 36170
[2022-09-19 20:25:36] Kernel command line: clocksource=tsc
[2022-09-19 20:25:36] Dentry cache hash table entries: 32768 (order: 6,
262144 bytes, linear)
[2022-09-19 20:25:36] Inode-cache hash table entries: 16384 (order: 5,
131072 bytes, linear)
[2022-09-19 20:25:36] mem auto-init: stack:byref_all(zero), heap alloc:off,
heap free:off
[2022-09-19 20:25:36] Memory: 96968K/147068K available (6145K kernel code,
842K rwdata, 428K rodata, 696K init, 476K bss, 49848K reserved, 0K
cma-reserved)
[2022-09-19 20:25:36] random: get_random_u64 called from 0xffffffff810a0f18
with crng_init=0
[2022-09-19 20:25:36] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1,
Nodes=1
[2022-09-19 20:25:36] Using NULL legacy PIC
[2022-09-19 20:25:36] NR_IRQS: 4352, nr_irqs: 24, preallocated irqs: 0
[2022-09-19 20:25:36] xen:events: Using FIFO-based ABI
[2022-09-19 20:25:36] printk: console [hvc0] enabled
[2022-09-19 20:25:36] clocksource: xen: mask: 0xffffffffffffffff
max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[2022-09-19 20:25:36] installing Xen timer for CPU 0
[2022-09-19 20:25:36] clocksource: tsc-early: mask: 0xffffffffffffffff
max_cycles: 0x255cb518234, max_idle_ns: 440795279333 ns
[2022-09-19 20:25:36] Calibrating delay loop (skipped), value calculated
using timer frequency.. 5183.99 BogoMIPS (lpj=10367992)
[2022-09-19 20:25:36] pid_max: default: 4096 minimum: 301
[2022-09-19 20:25:36] Mount-cache hash table entries: 512 (order: 0, 4096
bytes, linear)
[2022-09-19 20:25:36] Mountpoint-cache hash table entries: 512 (order: 0,
4096 bytes, linear)
[2022-09-19 20:25:36] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[2022-09-19 20:25:36] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[2022-09-19 20:25:36] CPU: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz
(family: 0x6, model: 0x9e, stepping: 0xa)
[2022-09-19 20:25:36] Spectre V1 : Mitigation: usercopy/swapgs barriers and
__user pointer sanitization
[2022-09-19 20:25:36] Spectre V2 : Mitigation: Retpolines
[2022-09-19 20:25:36] Spectre V2 : Spectre v2 / SpectreRSB mitigation:
Filling RSB on context switch
[2022-09-19 20:25:36] Spectre V2 : Enabling Restricted Speculation for
firmware calls
[2022-09-19 20:25:36] Spectre V2 : mitigation: Enabling conditional
Indirect Branch Prediction Barrier
[2022-09-19 20:25:36] Speculative Store Bypass: Mitigation: Speculative
Store Bypass disabled via prctl and seccomp
[2022-09-19 20:25:36] SRBDS: Unknown: Dependent on hypervisor status
[2022-09-19 20:25:36] MDS: Mitigation: Clear CPU buffers
[2022-09-19 20:25:36] Performance Events: unsupported p6 CPU model 158 no
PMU driver, software events only.
[2022-09-19 20:25:36] devtmpfs: initialized
[2022-09-19 20:25:36] clocksource: jiffies: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 7645041785100000 ns
[2022-09-19 20:25:36] futex hash table entries: 16 (order: -4, 384 bytes,
linear)
[2022-09-19 20:25:36] NET: Registered protocol family 16
[2022-09-19 20:25:36] xen:grant_table: Grant tables using version 1 layout
[2022-09-19 20:25:36] Grant table initialized
[2022-09-19 20:25:36] PCI: setting up Xen PCI frontend stub
[2022-09-19 20:25:36] xen:balloon: Initialising balloon driver
[2022-09-19 20:25:36] usbcore: registered new interface driver usbfs
[2022-09-19 20:25:36] usbcore: registered new interface driver hub
[2022-09-19 20:25:36] usbcore: registered new device driver usb
[2022-09-19 20:25:36] PCI: System does not support PCI
[2022-09-19 20:25:36] clocksource: Switched to clocksource xen
[2022-09-19 20:25:36] NET: Registered protocol family 2
[2022-09-19 20:25:36] IP idents hash table entries: 4096 (order: 3, 32768
bytes, linear)
[2022-09-19 20:25:36] tcp_listen_portaddr_hash hash table entries: 256
(order: 0, 4096 bytes, linear)
[2022-09-19 20:25:36] TCP established hash table entries: 2048 (order: 2,
16384 bytes, linear)
[2022-09-19 20:25:36] TCP bind hash table entries: 2048 (order: 2, 16384
bytes, linear)
[2022-09-19 20:25:36] TCP: Hash tables configured (established 2048 bind
2048)
[2022-09-19 20:25:36] UDP hash table entries: 128 (order: 0, 4096 bytes,
linear)
[2022-09-19 20:25:36] UDP-Lite hash table entries: 128 (order: 0, 4096
bytes, linear)
[2022-09-19 20:25:36] NET: Registered protocol family 1
[2022-09-19 20:25:36] Unpacking initramfs...
[2022-09-19 20:25:36] Freeing initrd memory: 32236K
[2022-09-19 20:25:36] clocksource: tsc: mask: 0xffffffffffffffff
max_cycles: 0x255cb518234, max_idle_ns: 440795279333 ns
[2022-09-19 20:25:36] clocksource: Switched to clocksource tsc
[2022-09-19 20:25:36] workingset: timestamp_bits=62 max_order=15
bucket_order=0
[2022-09-19 20:25:36] xen:xen_evtchn: Event-channel device installed
[2022-09-19 20:25:36] Invalid max_queues (4), will use default max: 1.
[2022-09-19 20:25:36] tun: Universal TUN/TAP device driver, 1.6
[2022-09-19 20:25:36] xen_netfront: Initialising Xen virtual ethernet driver
[2022-09-19 20:25:36] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[2022-09-19 20:25:36] vhci_hcd vhci_hcd.0: new USB bus registered, assigned
bus number 1
[2022-09-19 20:25:36] vhci_hcd: created sysfs vhci_hcd.0
[2022-09-19 20:25:36] hub 1-0:1.0: USB hub found
[2022-09-19 20:25:36] hub 1-0:1.0: 8 ports detected
[2022-09-19 20:25:36] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[2022-09-19 20:25:36] vhci_hcd vhci_hcd.0: new USB bus registered, assigned
bus number 2
[2022-09-19 20:25:36] usb usb2: We don't know the algorithms for LPM for
this host, disabling LPM.
[2022-09-19 20:25:36] hub 2-0:1.0: USB hub found
[2022-09-19 20:25:36] hub 2-0:1.0: 8 ports detected
[2022-09-19 20:25:36] NET: Registered protocol family 17
[2022-09-19 20:25:36] sched_clock: Marking stable (269302379,
234771)->(271578343, -2041193)
[2022-09-19 20:25:36] random: fast init done
[2022-09-19 20:25:36] pcifront pci-0: Installing PCI frontend
[2022-09-19 20:25:36] xen:swiotlb_xen: Warning: only able to allocate 4 MB
for software IO TLB
[2022-09-19 20:25:36] software IO TLB: mapped [mem
0x0000000003800000-0x0000000003c00000] (4MB)
[2022-09-19 20:25:36] pcifront pci-0: Creating PCI Frontend Bus 0000:00
[2022-09-19 20:25:36] pcifront pci-0: PCI host bridge to bus 0000:00
[2022-09-19 20:25:36] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[2022-09-19 20:25:36] pci_bus 0000:00: root bus resource [mem
0x00000000-0x7fffffffff]
[2022-09-19 20:25:36] pci_bus 0000:00: root bus resource [bus 00-ff]
[2022-09-19 20:25:36] pci 0000:00:00.0: [10ec:8168] type 00 class 0x020000
[2022-09-19 20:25:36] pci 0000:00:00.0: reg 0x10: [io  0x3000-0x30ff]
[2022-09-19 20:25:36] pci 0000:00:00.0: reg 0x18: [mem
0xb4304000-0xb4304fff 64bit]
[2022-09-19 20:25:36] pci 0000:00:00.0: reg 0x20: [mem
0xb4300000-0xb4303fff 64bit]
[2022-09-19 20:25:36] pci 0000:00:00.0: supports D1 D2
[2022-09-19 20:25:36] pcifront pci-0: claiming resource 0000:00:00.0/0
[2022-09-19 20:25:36] pcifront pci-0: claiming resource 0000:00:00.0/2
[2022-09-19 20:25:36] pcifront pci-0: claiming resource 0000:00:00.0/4
[2022-09-19 20:25:36] blkfront: xvda: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-19 20:25:36]  xvda: xvda4
[2022-09-19 20:25:36] blkfront: xvdb: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-19 20:25:36] blkfront: xvdc: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-19 20:25:36] Freeing unused kernel image (initmem) memory: 696K
[2022-09-19 20:25:36] Write protecting the kernel read-only data: 10240k
[2022-09-19 20:25:36] Freeing unused kernel image (text/rodata gap) memory:
2044K
[2022-09-19 20:25:36] Freeing unused kernel image (rodata/data gap) memory:
1620K
[2022-09-19 20:25:36] Run /init as init process
[2022-09-19 20:25:36] + mount -t devtmpfs none /dev
[2022-09-19 20:25:36] + mount -t sysfs /sys /sys
[2022-09-19 20:25:36] + mount -t proc /proc /proc
[2022-09-19 20:25:36] + mount -t tmpfs -o 'size=1m,nodev,noexec' /tmp /tmp
[2022-09-19 20:25:36] + mount -o remount,ro /
[2022-09-19 20:25:36] + echo 1
[2022-09-19 20:25:36] + printf '%d\n' 1073741824
[2022-09-19 20:25:36] + /bin/xenstore-read target
[2022-09-19 20:25:36] + domid=12
[2022-09-19 20:25:36] + xenstore-read /local/domain/12/vm
[2022-09-19 20:25:36] + vm_path=/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3
[2022-09-19 20:25:36] + sort
[2022-09-19 20:25:36] + xenstore-list -p
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv
[2022-09-19 20:25:36] + xenstore-read
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/001
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/002
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/003
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/004
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/005
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/006
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/007
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/008
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/009
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/010
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/011
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/012
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/013
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/014
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/015
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/016
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/017
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/018
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/019
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/020
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/021
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/022
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/023
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/024
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/025
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/026
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/027
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/028
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/029
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/030
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/031
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/032
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/033
[2022-09-19 20:25:36] + dm_args='-xen-domid
[2022-09-19 20:25:36] 12
[2022-09-19 20:25:36] -no-shutdown
[2022-09-19 20:25:36] -nodefaults
[2022-09-19 20:25:36] -no-user-config
[2022-09-19 20:25:36] -name
[2022-09-19 20:25:36] openbsd-71
[2022-09-19 20:25:36] -display
[2022-09-19 20:25:36] none
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] VGA,vgamem_mb=16
[2022-09-19 20:25:36] -boot
[2022-09-19 20:25:36] order=dc
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] usb-ehci,id=ehci
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] usb-tablet,bus=ehci.0
[2022-09-19 20:25:36] -smp
[2022-09-19 20:25:36] 2,maxcpus=2
[2022-09-19 20:25:36] -net
[2022-09-19 20:25:36] none
[2022-09-19 20:25:36] -display
[2022-09-19 20:25:36] qubes-gui,domid=0,log-level=0
[2022-09-19 20:25:36] -machine
[2022-09-19 20:25:36] xenfv
[2022-09-19 20:25:36] -m
[2022-09-19 20:25:36] 496
[2022-09-19 20:25:36] -drive
[2022-09-19 20:25:36]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:36] -drive
[2022-09-19 20:25:36]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:36] -drive
[2022-09-19 20:25:36]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 20:25:36] + usb_args=
[2022-09-19 20:25:36] + test -e /bin/qrexec-agent
[2022-09-19 20:25:36] + usb_args='-device
[2022-09-19 20:25:36] nec-usb-xhci,id=xhci'
[2022-09-19 20:25:36] + mkdir -p /var/run/qubes
[2022-09-19 20:25:36] + touch /dev/mdev.log
[2022-09-19 20:25:36] + USER=root qrexec-agent
[2022-09-19 20:25:36] + mdev -d
[2022-09-19 20:25:36] + sed -n '/^-soundhw/ {n;p}'
[2022-09-19 20:25:36] + echo '-xen-domid
[2022-09-19 20:25:36] 12
[2022-09-19 20:25:36] -no-shutdown
[2022-09-19 20:25:36] -nodefaults
[2022-09-19 20:25:36] -no-user-config
[2022-09-19 20:25:36] -name
[2022-09-19 20:25:36] openbsd-71
[2022-09-19 20:25:36] -display
[2022-09-19 20:25:36] none
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] VGA,vgamem_mb=16
[2022-09-19 20:25:36] -boot
[2022-09-19 20:25:36] order=dc
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] usb-ehci,id=ehci
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] usb-tablet,bus=ehci.0
[2022-09-19 20:25:36] -smp
[2022-09-19 20:25:36] 2,maxcpus=2
[2022-09-19 20:25:36] -net
[2022-09-19 20:25:36] none
[2022-09-19 20:25:36] -display
[2022-09-19 20:25:36] qubes-gui,domid=0,log-level=0
[2022-09-19 20:25:36] -machine
[2022-09-19 20:25:36] xenfv
[2022-09-19 20:25:36] -m
[2022-09-19 20:25:36] 496
[2022-09-19 20:25:36] -drive
[2022-09-19 20:25:36]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:36] -drive
[2022-09-19 20:25:36]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:36] -drive
[2022-09-19 20:25:36]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 20:25:36] + audio_model=
[2022-09-19 20:25:36] + '[' -n  ]
[2022-09-19 20:25:36] + sed -n /^-qubes-net:/p
[2022-09-19 20:25:36] + echo '-xen-domid
[2022-09-19 20:25:36] 12
[2022-09-19 20:25:36] -no-shutdown
[2022-09-19 20:25:36] -nodefaults
[2022-09-19 20:25:36] -no-user-config
[2022-09-19 20:25:36] -name
[2022-09-19 20:25:36] openbsd-71
[2022-09-19 20:25:36] -display
[2022-09-19 20:25:36] none
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] VGA,vgamem_mb=16
[2022-09-19 20:25:36] -boot
[2022-09-19 20:25:36] order=dc
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] usb-ehci,id=ehci
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] usb-tablet,bus=ehci.0
[2022-09-19 20:25:36] -smp
[2022-09-19 20:25:36] 2,maxcpus=2
[2022-09-19 20:25:36] -net
[2022-09-19 20:25:36] none
[2022-09-19 20:25:36] -display
[2022-09-19 20:25:36] qubes-gui,domid=0,log-level=0
[2022-09-19 20:25:36] -machine
[2022-09-19 20:25:36] xenfv
[2022-09-19 20:25:36] -m
[2022-09-19 20:25:36] 496
[2022-09-19 20:25:36] -drive
[2022-09-19 20:25:36]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:36] -drive
[2022-09-19 20:25:36]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:36] -drive
[2022-09-19 20:25:36]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 20:25:36] + net_args=
[2022-09-19 20:25:36] + sed /^-qubes-net:/d
[2022-09-19 20:25:36] + echo '-xen-domid
[2022-09-19 20:25:36] 12
[2022-09-19 20:25:36] -no-shutdown
[2022-09-19 20:25:36] -nodefaults
[2022-09-19 20:25:36] -no-user-config
[2022-09-19 20:25:36] -name
[2022-09-19 20:25:36] openbsd-71
[2022-09-19 20:25:36] -display
[2022-09-19 20:25:36] none
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] VGA,vgamem_mb=16
[2022-09-19 20:25:36] -boot
[2022-09-19 20:25:36] order=dc
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] usb-ehci,id=ehci
[2022-09-19 20:25:36] -device
[2022-09-19 20:25:36] usb-tablet,bus=ehci.0
[2022-09-19 20:25:36] -smp
[2022-09-19 20:25:36] 2,maxcpus=2
[2022-09-19 20:25:36] -net
[2022-09-19 20:25:36] none
[2022-09-19 20:25:36] -display
[2022-09-19 20:25:37] qubes-gui,domid=0,log-level=0
[2022-09-19 20:25:37] -machine
[2022-09-19 20:25:37] xenfv
[2022-09-19 20:25:37] -m
[2022-09-19 20:25:37] 496
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 20:25:37] + dm_args='-xen-domid
[2022-09-19 20:25:37] 12
[2022-09-19 20:25:37] -no-shutdown
[2022-09-19 20:25:37] -nodefaults
[2022-09-19 20:25:37] -no-user-config
[2022-09-19 20:25:37] -name
[2022-09-19 20:25:37] openbsd-71
[2022-09-19 20:25:37] -display
[2022-09-19 20:25:37] none
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] VGA,vgamem_mb=16
[2022-09-19 20:25:37] -boot
[2022-09-19 20:25:37] order=dc
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] usb-ehci,id=ehci
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] usb-tablet,bus=ehci.0
[2022-09-19 20:25:37] -smp
[2022-09-19 20:25:37] 2,maxcpus=2
[2022-09-19 20:25:37] -net
[2022-09-19 20:25:37] none
[2022-09-19 20:25:37] -display
[2022-09-19 20:25:37] qubes-gui,domid=0,log-level=0
[2022-09-19 20:25:37] -machine
[2022-09-19 20:25:37] xenfv
[2022-09-19 20:25:37] -m
[2022-09-19 20:25:37] 496
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 20:25:37] + test -e /sys/class/net/eth0
[2022-09-19 20:25:37] + echo 'No network interface named eth0.'
[2022-09-19 20:25:37] No network interface named eth0.
[2022-09-19 20:25:37] + ls -l /sys/class/net/
[2022-09-19 20:25:37] total 0
[2022-09-19 20:25:37] lrwxrwxrwx    1 root     0                0 Sep 19
18:25 .[1;36mlo.[m -> .[1;34m../../devices/virtual/net/lo.[m
[2022-09-19 20:25:37] + xenstore-read target
[2022-09-19 20:25:37] + target=12
[2022-09-19 20:25:37] + device_model=device-model/12
[2022-09-19 20:25:37] + mkdir /tmp/qmp
[2022-09-19 20:25:37] + kernel=
[2022-09-19 20:25:37] + grep -q ^-append
[2022-09-19 20:25:37] + echo '-xen-domid
[2022-09-19 20:25:37] 12
[2022-09-19 20:25:37] -no-shutdown
[2022-09-19 20:25:37] -nodefaults
[2022-09-19 20:25:37] -no-user-config
[2022-09-19 20:25:37] -name
[2022-09-19 20:25:37] openbsd-71
[2022-09-19 20:25:37] -display
[2022-09-19 20:25:37] none
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] VGA,vgamem_mb=16
[2022-09-19 20:25:37] -boot
[2022-09-19 20:25:37] order=dc
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] usb-ehci,id=ehci
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] usb-tablet,bus=ehci.0
[2022-09-19 20:25:37] -smp
[2022-09-19 20:25:37] 2,maxcpus=2
[2022-09-19 20:25:37] -net
[2022-09-19 20:25:37] none
[2022-09-19 20:25:37] -display
[2022-09-19 20:25:37] qubes-gui,domid=0,log-level=0
[2022-09-19 20:25:37] -machine
[2022-09-19 20:25:37] xenfv
[2022-09-19 20:25:37] -m
[2022-09-19 20:25:37] 496
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 20:25:37] + mkfifo /tmp/qmp/qemu.in /tmp/qmp/qemu.out
[2022-09-19 20:25:37] + set +x
[2022-09-19 20:25:37] Clearing kmsg buffer...
[2022-09-19 20:25:37] + set +x
[2022-09-19 20:25:37] + set +x
[2022-09-19 20:25:37] + sed 's/\$STUBDOM_RESTORE_INCOMING_ARG/fd:3/'
[2022-09-19 20:25:37] + echo '-xen-domid
[2022-09-19 20:25:37] 12
[2022-09-19 20:25:37] -no-shutdown
[2022-09-19 20:25:37] -nodefaults
[2022-09-19 20:25:37] -no-user-config
[2022-09-19 20:25:37] -name
[2022-09-19 20:25:37] openbsd-71
[2022-09-19 20:25:37] -display
[2022-09-19 20:25:37] none
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] VGA,vgamem_mb=16
[2022-09-19 20:25:37] -boot
[2022-09-19 20:25:37] order=dc
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] usb-ehci,id=ehci
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] usb-tablet,bus=ehci.0
[2022-09-19 20:25:37] -smp
[2022-09-19 20:25:37] 2,maxcpus=2
[2022-09-19 20:25:37] -net
[2022-09-19 20:25:37] none
[2022-09-19 20:25:37] -display
[2022-09-19 20:25:37] qubes-gui,domid=0,log-level=0
[2022-09-19 20:25:37] -machine
[2022-09-19 20:25:37] xenfv
[2022-09-19 20:25:37] -m
[2022-09-19 20:25:37] 496
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 20:25:37] + dm_args='-xen-domid
[2022-09-19 20:25:37] 12
[2022-09-19 20:25:37] -no-shutdown
[2022-09-19 20:25:37] -nodefaults
[2022-09-19 20:25:37] -no-user-config
[2022-09-19 20:25:37] -name
[2022-09-19 20:25:37] openbsd-71
[2022-09-19 20:25:37] -display
[2022-09-19 20:25:37] none
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] VGA,vgamem_mb=16
[2022-09-19 20:25:37] -boot
[2022-09-19 20:25:37] order=dc
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] usb-ehci,id=ehci
[2022-09-19 20:25:37] -device
[2022-09-19 20:25:37] usb-tablet,bus=ehci.0
[2022-09-19 20:25:37] -smp
[2022-09-19 20:25:37] 2,maxcpus=2
[2022-09-19 20:25:37] -net
[2022-09-19 20:25:37] none
[2022-09-19 20:25:37] -display
[2022-09-19 20:25:37] qubes-gui,domid=0,log-level=0
[2022-09-19 20:25:37] -machine
[2022-09-19 20:25:37] xenfv
[2022-09-19 20:25:37] -m
[2022-09-19 20:25:37] 496
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-19 20:25:37] -drive
[2022-09-19 20:25:37]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-19 20:25:37] + xenstore-read device/console/2
[2022-09-19 20:25:37] + xenstore-read device/console/1
[2022-09-19 20:25:37] + IFS='
[2022-09-19 20:25:37] '
[2022-09-19 20:25:37] + set -f
[2022-09-19 20:25:37] + set +f
[2022-09-19 20:25:37] + unset IFS
[2022-09-19 20:25:37] + qemu_pid=130
[2022-09-19 20:25:37] + '[' '!' -e /tmp/qemu.qmp ]
[2022-09-19 20:25:37] + sleep 0.1
[2022-09-19 20:25:37] + qemu -sandbox
'on,obsolete=deny,elevateprivileges=deny,spawn=deny,resourcecontrol=deny'
-chardev 'pipe,path=/tmp/qmp/qemu,id=m' -mon 'chardev=m,mode=control'
-chardev 'socket,server,nowait,path=/tmp/qemu.qmp,id=m2' -mon
'chardev=m2,mode=control' -xen-domid 12 -no-shutdown -nodefaults
-no-user-config -name openbsd-71 -display none -device 'VGA,vgamem_mb=16'
-boot 'order=dc' -device 'usb-ehci,id=ehci' -device 'usb-tablet,bus=ehci.0'
-smp '2,maxcpus=2' -net none -display 'qubes-gui,domid=0,log-level=0'
-machine xenfv -m 496 -drive
'file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback'
-drive
'file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback'
-drive
'file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
-device 'nec-usb-xhci,id=xhci'
[2022-09-19 20:25:37] qemu: -chardev
socket,server,nowait,path=/tmp/qemu.qmp,id=m2: warning: short-form boolean
option 'server' deprecated
[2022-09-19 20:25:37] Please use server=on instead
[2022-09-19 20:25:37] qemu: -chardev
socket,server,nowait,path=/tmp/qemu.qmp,id=m2: warning: short-form boolean
option 'nowait' deprecated
[2022-09-19 20:25:37] Please use wait=off instead
[2022-09-19 20:25:37] + tee /proc/self/fd/2
[2022-09-19 20:25:37] + echo '{"execute": "qmp_capabilities"}'
[2022-09-19 20:25:37] random: qemu: uninitialized urandom read (16 bytes
read)
[2022-09-19 20:25:37] {"execute": "qmp_capabilities"}
[2022-09-19 20:25:37] {"QMP": {"version": {"qemu": {"micro": 0, "minor": 1,
"major": 6}, "package": ""}, "capabilities": ["oob"]}}

[2022-09-19 20:25:37] qubes_gui/init: 573
[2022-09-19 20:25:37] qubes_gui/init: 582
[2022-09-19 20:25:37] qubes_gui/init: 584
[2022-09-19 20:25:37] qubes_gui/init[611]: version sent, waiting for xorg
conf
[2022-09-19 20:25:37] {"return": {}}

[2022-09-19 20:25:37] + '[' '!' -e /tmp/qemu.qmp ]
[2022-09-19 20:25:37] + '[' -e /proc/self/fd/4 ]
[2022-09-19 20:25:37] + '[' -e /proc/self/fd/3 ]
[2022-09-19 20:25:37] + true
[2022-09-19 20:25:37] + printf '==== Press enter for shell ====\n'
[2022-09-19 20:25:37] ==== Press enter for shell ====
[2022-09-19 20:25:37] + read
[2022-09-19 20:25:37] + vchan-socket-proxy 0 device-model/12/qmp-vchan
/tmp/qemu.qmp
[2022-09-19 20:25:37] written 110 bytes to vchan
[2022-09-19 20:25:37] written 34 bytes to vchan
[2022-09-19 20:25:37] [00:06.0] xen_pt_realize: Assigning real physical
device 07:00.0 to devfn 0x30
[2022-09-19 20:25:37] [00:06.0] xen_pt_register_regions: IO region 0
registered (size=0x00000100 base_addr=0x00003000 type: 0x1)
[2022-09-19 20:25:37] [00:06.0] xen_pt_register_regions: IO region 2
registered (size=0x00001000 base_addr=0xb4304000 type: 0x4)
[2022-09-19 20:25:37] [00:06.0] xen_pt_register_regions: IO region 4
registered (size=0x00004000 base_addr=0xb4300000 type: 0x4)
[2022-09-19 20:25:37] [00:06.0] xen_pt_config_reg_init: Offset 0x000e
mismatch! Emulated=0x0080, host=0x0000, syncing to 0x0000.
[2022-09-19 20:25:37] [00:06.0] xen_pt_config_reg_init: Offset 0x0010
mismatch! Emulated=0x0000, host=0x3001, syncing to 0x3001.
[2022-09-19 20:25:37] [00:06.0] xen_pt_config_reg_init: Offset 0x0018
mismatch! Emulated=0x0000, host=0xb4304004, syncing to 0xb4304004.
[2022-09-19 20:25:37] [00:06.0] xen_pt_config_reg_init: Offset 0x0020
mismatch! Emulated=0x0000, host=0xb4300004, syncing to 0xb4300004.
[2022-09-19 20:25:37] [00:06.0] xen_pt_config_reg_init: Offset 0x0042
mismatch! Emulated=0x0000, host=0x07c3, syncing to 0x0603.
[2022-09-19 20:25:37] [00:06.0] xen_pt_config_reg_init: Offset 0x0052
mismatch! Emulated=0x0000, host=0x0080, syncing to 0x0080.
[2022-09-19 20:25:37] [00:06.0] xen_pt_config_reg_init: Offset 0x0074
mismatch! Emulated=0x0000, host=0x5908cc0, syncing to 0x5908cc0.
[2022-09-19 20:25:37] [00:06.0] xen_pt_config_reg_init: Offset 0x007a
mismatch! Emulated=0x0000, host=0x0010, syncing to 0x0010.
[2022-09-19 20:25:37] [00:06.0] xen_pt_config_reg_init: Offset 0x0082
mismatch! Emulated=0x0000, host=0x1011, syncing to 0x1011.
[2022-09-19 20:25:37] [00:06.0] xen_pt_pci_intx: intx=1
[2022-09-19 20:25:37] [00:06.0] xen_pt_realize: Real physical device
07:00.0 registered successfully
[2022-09-19 20:25:37] written 34 bytes to vchan
[2022-09-19 20:25:37] written 2048 bytes to vchan
[2022-09-19 20:25:37] written 979 bytes to vchan
[2022-09-19 20:25:37] written 110 bytes to vchan
[2022-09-19 20:25:37] written 34 bytes to vchan
[2022-09-19 20:25:37] written 34 bytes to vchan
[2022-09-19 20:25:37] qubes_gui/init[622]: got xorg conf, creating window
[2022-09-19 20:25:37] qubes_gui/init: 632
[2022-09-19 20:25:37] configure msg, x/y 640 325 (was 0 0), w/h 640 480
[2022-09-19 20:25:37] configure msg, x/y 640 325 (was 640 325), w/h 640 480
[2022-09-19 20:25:37] random: crng init done
[2022-09-19 20:25:39] qubes_gui: got unknown msg type 145, ignoring
[2022-09-19 20:25:57] [00:06.0] Write-back to unknown field 0x44
(partially) inhibited (0x0000ffff)
[2022-09-19 20:25:57] [00:06.0] If the device doesn't work, try enabling
permissive mode
[2022-09-19 20:25:57] [00:06.0] (unsafe) and if it helps report the problem
to xen-devel
[2022-09-19 20:25:57] [00:06.0] xen_pt_msgctrl_reg_write: setup MSI
(register: 81).
[2022-09-19 20:25:57] [00:06.0] xen_pt_msi_setup: MSI mapped with pirq 151.
[2022-09-19 20:25:57] [00:06.0] msi_msix_update: Updating MSI with pirq 151
gvec 0x72 gflags 0x0 (entry: 0x0)
[2022-09-19 20:27:19] qubes_gui: got unknown msg type 145, ignoring
[2022-09-19 21:48:58] {"timestamp": {"seconds": 1663616939, "microseconds":
194886}, "event": "RESET", "data": {"guest": true, "reason": "guest-reset"}}

[2022-09-19 21:48:58] {"timestamp": {"seconds": 1663616939, "microseconds":
196105}, "event": "RESET", "data": {"guest": true, "reason": "guest-reset"}}

[2022-09-19 21:49:00] pcifront pci-0: Rescanning PCI Frontend Bus 0000:00
[2022-09-20 09:21:32] Logfile Opened
[2022-09-20 09:21:33] Linux version 5.10.105-xen-stubdom
(mockbuild@0c9ad8f2058f40c49bc934dcc2ea73c7) (gcc (GCC) 10.3.1 20210422
(Red Hat 10.3.1-1), GNU ld version 2.34-6.fc32) #1 Fri Apr 22 17:53:39 CEST
2022
[2022-09-20 09:21:33] Command line:
[2022-09-20 09:21:33] x86/fpu: Supporting XSAVE feature 0x001: 'x87
floating point registers'
[2022-09-20 09:21:33] x86/fpu: Supporting XSAVE feature 0x002: 'SSE
registers'
[2022-09-20 09:21:33] x86/fpu: Supporting XSAVE feature 0x004: 'AVX
registers'
[2022-09-20 09:21:33] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[2022-09-20 09:21:33] x86/fpu: Enabled xstate features 0x7, context size is
832 bytes, using 'standard' format.
[2022-09-20 09:21:33] Released 0 page(s)
[2022-09-20 09:21:33] BIOS-provided physical RAM map:
[2022-09-20 09:21:33] Xen: [mem 0x0000000000000000-0x000000000009ffff]
usable
[2022-09-20 09:21:33] Xen: [mem 0x00000000000a0000-0x00000000000fffff]
reserved
[2022-09-20 09:21:33] Xen: [mem 0x0000000000100000-0x0000000008ffffff]
usable
[2022-09-20 09:21:33] NX (Execute Disable) protection: active
[2022-09-20 09:21:33] Hypervisor detected: Xen PV
[2022-09-20 09:21:33] tsc: Fast TSC calibration failed
[2022-09-20 09:21:33] tsc: Detected 2591.998 MHz processor
[2022-09-20 09:21:33] last_pfn = 0x9000 max_arch_pfn = 0x400000000
[2022-09-20 09:21:33] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP
 UC  UC
[2022-09-20 09:21:33] RAMDISK: [mem 0x02000000-0x03f7afff]
[2022-09-20 09:21:33] Zone ranges:
[2022-09-20 09:21:33]   DMA32    [mem 0x0000000000001000-0x0000000008ffffff]
[2022-09-20 09:21:33]   Normal   empty
[2022-09-20 09:21:33] Movable zone start for each node
[2022-09-20 09:21:33] Early memory node ranges
[2022-09-20 09:21:33]   node   0: [mem
0x0000000000001000-0x000000000009ffff]
[2022-09-20 09:21:33]   node   0: [mem
0x0000000000100000-0x0000000008ffffff]
[2022-09-20 09:21:33] Initmem setup node 0 [mem
0x0000000000001000-0x0000000008ffffff]
[2022-09-20 09:21:33] On node 0, zone DMA32: 1 pages in unavailable ranges
[2022-09-20 09:21:33] On node 0, zone DMA32: 96 pages in unavailable ranges
[2022-09-20 09:21:33] On node 0, zone DMA32: 28672 pages in unavailable
ranges
[2022-09-20 09:21:33] p2m virtual area at (____ptrval____), size is 200000
[2022-09-20 09:21:33] Remapped 0 page(s)
[2022-09-20 09:21:33] [mem 0x09000000-0xffffffff] available for PCI devices
[2022-09-20 09:21:33] Booting paravirtualized kernel on Xen
[2022-09-20 09:21:33] Xen version: 4.14.5 (preserve-AD)
[2022-09-20 09:21:33] clocksource: refined-jiffies: mask: 0xffffffff
max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[2022-09-20 09:21:33] Built 1 zonelists, mobility grouping on.  Total
pages: 36170
[2022-09-20 09:21:33] Kernel command line: clocksource=tsc
[2022-09-20 09:21:33] Dentry cache hash table entries: 32768 (order: 6,
262144 bytes, linear)
[2022-09-20 09:21:33] Inode-cache hash table entries: 16384 (order: 5,
131072 bytes, linear)
[2022-09-20 09:21:33] mem auto-init: stack:byref_all(zero), heap alloc:off,
heap free:off
[2022-09-20 09:21:33] Memory: 96968K/147068K available (6145K kernel code,
842K rwdata, 428K rodata, 696K init, 476K bss, 49848K reserved, 0K
cma-reserved)
[2022-09-20 09:21:33] random: get_random_u64 called from 0xffffffff810a0f18
with crng_init=0
[2022-09-20 09:21:33] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1,
Nodes=1
[2022-09-20 09:21:33] Using NULL legacy PIC
[2022-09-20 09:21:33] NR_IRQS: 4352, nr_irqs: 24, preallocated irqs: 0
[2022-09-20 09:21:33] xen:events: Using FIFO-based ABI
[2022-09-20 09:21:33] printk: console [hvc0] enabled
[2022-09-20 09:21:33] clocksource: xen: mask: 0xffffffffffffffff
max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[2022-09-20 09:21:33] installing Xen timer for CPU 0
[2022-09-20 09:21:33] clocksource: tsc-early: mask: 0xffffffffffffffff
max_cycles: 0x255cb518234, max_idle_ns: 440795279333 ns
[2022-09-20 09:21:33] Calibrating delay loop (skipped), value calculated
using timer frequency.. 5183.99 BogoMIPS (lpj=10367992)
[2022-09-20 09:21:33] pid_max: default: 4096 minimum: 301
[2022-09-20 09:21:33] Mount-cache hash table entries: 512 (order: 0, 4096
bytes, linear)
[2022-09-20 09:21:33] Mountpoint-cache hash table entries: 512 (order: 0,
4096 bytes, linear)
[2022-09-20 09:21:33] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[2022-09-20 09:21:33] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[2022-09-20 09:21:33] CPU: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz
(family: 0x6, model: 0x9e, stepping: 0xa)
[2022-09-20 09:21:33] Spectre V1 : Mitigation: usercopy/swapgs barriers and
__user pointer sanitization
[2022-09-20 09:21:33] Spectre V2 : Mitigation: Retpolines
[2022-09-20 09:21:33] Spectre V2 : Spectre v2 / SpectreRSB mitigation:
Filling RSB on context switch
[2022-09-20 09:21:33] Spectre V2 : Enabling Restricted Speculation for
firmware calls
[2022-09-20 09:21:33] Spectre V2 : mitigation: Enabling conditional
Indirect Branch Prediction Barrier
[2022-09-20 09:21:33] Speculative Store Bypass: Mitigation: Speculative
Store Bypass disabled via prctl and seccomp
[2022-09-20 09:21:33] SRBDS: Unknown: Dependent on hypervisor status
[2022-09-20 09:21:33] MDS: Mitigation: Clear CPU buffers
[2022-09-20 09:21:33] Performance Events: unsupported p6 CPU model 158 no
PMU driver, software events only.
[2022-09-20 09:21:33] devtmpfs: initialized
[2022-09-20 09:21:33] clocksource: jiffies: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 7645041785100000 ns
[2022-09-20 09:21:33] futex hash table entries: 16 (order: -4, 384 bytes,
linear)
[2022-09-20 09:21:33] NET: Registered protocol family 16
[2022-09-20 09:21:33] xen:grant_table: Grant tables using version 1 layout
[2022-09-20 09:21:33] Grant table initialized
[2022-09-20 09:21:33] PCI: setting up Xen PCI frontend stub
[2022-09-20 09:21:33] xen:balloon: Initialising balloon driver
[2022-09-20 09:21:33] usbcore: registered new interface driver usbfs
[2022-09-20 09:21:33] usbcore: registered new interface driver hub
[2022-09-20 09:21:33] usbcore: registered new device driver usb
[2022-09-20 09:21:33] PCI: System does not support PCI
[2022-09-20 09:21:33] clocksource: Switched to clocksource xen
[2022-09-20 09:21:33] NET: Registered protocol family 2
[2022-09-20 09:21:33] IP idents hash table entries: 4096 (order: 3, 32768
bytes, linear)
[2022-09-20 09:21:33] tcp_listen_portaddr_hash hash table entries: 256
(order: 0, 4096 bytes, linear)
[2022-09-20 09:21:33] TCP established hash table entries: 2048 (order: 2,
16384 bytes, linear)
[2022-09-20 09:21:33] TCP bind hash table entries: 2048 (order: 2, 16384
bytes, linear)
[2022-09-20 09:21:33] TCP: Hash tables configured (established 2048 bind
2048)
[2022-09-20 09:21:33] UDP hash table entries: 128 (order: 0, 4096 bytes,
linear)
[2022-09-20 09:21:33] UDP-Lite hash table entries: 128 (order: 0, 4096
bytes, linear)
[2022-09-20 09:21:33] NET: Registered protocol family 1
[2022-09-20 09:21:33] Unpacking initramfs...
[2022-09-20 09:21:33] Freeing initrd memory: 32236K
[2022-09-20 09:21:33] clocksource: tsc: mask: 0xffffffffffffffff
max_cycles: 0x255cb518234, max_idle_ns: 440795279333 ns
[2022-09-20 09:21:33] clocksource: Switched to clocksource tsc
[2022-09-20 09:21:33] workingset: timestamp_bits=62 max_order=15
bucket_order=0
[2022-09-20 09:21:33] xen:xen_evtchn: Event-channel device installed
[2022-09-20 09:21:33] Invalid max_queues (4), will use default max: 1.
[2022-09-20 09:21:33] random: fast init done
[2022-09-20 09:21:33] tun: Universal TUN/TAP device driver, 1.6
[2022-09-20 09:21:33] xen_netfront: Initialising Xen virtual ethernet driver
[2022-09-20 09:21:33] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[2022-09-20 09:21:33] vhci_hcd vhci_hcd.0: new USB bus registered, assigned
bus number 1
[2022-09-20 09:21:33] vhci_hcd: created sysfs vhci_hcd.0
[2022-09-20 09:21:33] hub 1-0:1.0: USB hub found
[2022-09-20 09:21:33] hub 1-0:1.0: 8 ports detected
[2022-09-20 09:21:33] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[2022-09-20 09:21:33] vhci_hcd vhci_hcd.0: new USB bus registered, assigned
bus number 2
[2022-09-20 09:21:33] usb usb2: We don't know the algorithms for LPM for
this host, disabling LPM.
[2022-09-20 09:21:33] hub 2-0:1.0: USB hub found
[2022-09-20 09:21:33] hub 2-0:1.0: 8 ports detected
[2022-09-20 09:21:33] NET: Registered protocol family 17
[2022-09-20 09:21:33] sched_clock: Marking stable (439658149,
279138)->(442513139, -2575852)
[2022-09-20 09:21:33] pcifront pci-0: Installing PCI frontend
[2022-09-20 09:21:33] xen:swiotlb_xen: Warning: only able to allocate 4 MB
for software IO TLB
[2022-09-20 09:21:33] software IO TLB: mapped [mem
0x0000000003800000-0x0000000003c00000] (4MB)
[2022-09-20 09:21:33] pcifront pci-0: Creating PCI Frontend Bus 0000:00
[2022-09-20 09:21:33] pcifront pci-0: PCI host bridge to bus 0000:00
[2022-09-20 09:21:33] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[2022-09-20 09:21:33] pci_bus 0000:00: root bus resource [mem
0x00000000-0x7fffffffff]
[2022-09-20 09:21:33] pci_bus 0000:00: root bus resource [bus 00-ff]
[2022-09-20 09:21:33] pci 0000:00:00.0: [10ec:8168] type 00 class 0x020000
[2022-09-20 09:21:33] pci 0000:00:00.0: reg 0x10: [io  0x3000-0x30ff]
[2022-09-20 09:21:33] pci 0000:00:00.0: reg 0x18: [mem
0xb4304000-0xb4304fff 64bit]
[2022-09-20 09:21:33] pci 0000:00:00.0: reg 0x20: [mem
0xb4300000-0xb4303fff 64bit]
[2022-09-20 09:21:33] pci 0000:00:00.0: supports D1 D2
[2022-09-20 09:21:33] pcifront pci-0: claiming resource 0000:00:00.0/0
[2022-09-20 09:21:33] pcifront pci-0: claiming resource 0000:00:00.0/2
[2022-09-20 09:21:33] pcifront pci-0: claiming resource 0000:00:00.0/4
[2022-09-20 09:21:33] blkfront: xvda: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-20 09:21:33]  xvda: xvda4
[2022-09-20 09:21:33] blkfront: xvdb: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-20 09:21:33] blkfront: xvdc: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-20 09:21:33] Freeing unused kernel image (initmem) memory: 696K
[2022-09-20 09:21:33] Write protecting the kernel read-only data: 10240k
[2022-09-20 09:21:33] Freeing unused kernel image (text/rodata gap) memory:
2044K
[2022-09-20 09:21:33] Freeing unused kernel image (rodata/data gap) memory:
1620K
[2022-09-20 09:21:33] Run /init as init process
[2022-09-20 09:21:33] + mount -t devtmpfs none /dev
[2022-09-20 09:21:33] + mount -t sysfs /sys /sys
[2022-09-20 09:21:33] + mount -t proc /proc /proc
[2022-09-20 09:21:33] + mount -t tmpfs -o 'size=1m,nodev,noexec' /tmp /tmp
[2022-09-20 09:21:33] + mount -o remount,ro /
[2022-09-20 09:21:33] + echo 1
[2022-09-20 09:21:33] + printf '%d\n' 1073741824
[2022-09-20 09:21:33] + /bin/xenstore-read target
[2022-09-20 09:21:33] + domid=7
[2022-09-20 09:21:33] + xenstore-read /local/domain/7/vm
[2022-09-20 09:21:33] + vm_path=/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3
[2022-09-20 09:21:33] + sort
[2022-09-20 09:21:33] + xenstore-list -p
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv
[2022-09-20 09:21:33] + xenstore-read
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/001
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/002
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/003
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/004
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/005
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/006
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/007
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/008
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/009
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/010
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/011
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/012
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/013
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/014
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/015
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/016
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/017
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/018
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/019
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/020
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/021
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/022
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/023
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/024
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/025
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/026
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/027
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/028
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/029
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/030
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/031
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/032
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/033
[2022-09-20 09:21:33] + dm_args='-xen-domid
[2022-09-20 09:21:33] 7
[2022-09-20 09:21:33] -no-shutdown
[2022-09-20 09:21:33] -nodefaults
[2022-09-20 09:21:33] -no-user-config
[2022-09-20 09:21:33] -name
[2022-09-20 09:21:33] openbsd-71
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] VGA,vgamem_mb=16
[2022-09-20 09:21:33] -boot
[2022-09-20 09:21:33] order=dc
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-ehci,id=ehci
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-tablet,bus=ehci.0
[2022-09-20 09:21:33] -smp
[2022-09-20 09:21:33] 2,maxcpus=2
[2022-09-20 09:21:33] -net
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] qubes-gui,domid=0,log-level=0
[2022-09-20 09:21:33] -machine
[2022-09-20 09:21:33] xenfv
[2022-09-20 09:21:33] -m
[2022-09-20 09:21:33] 496
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 09:21:33] + usb_args=
[2022-09-20 09:21:33] + test -e /bin/qrexec-agent
[2022-09-20 09:21:33] + usb_args='-device
[2022-09-20 09:21:33] nec-usb-xhci,id=xhci'
[2022-09-20 09:21:33] + mkdir -p /var/run/qubes
[2022-09-20 09:21:33] + touch /dev/mdev.log
[2022-09-20 09:21:33] + mdev -d
[2022-09-20 09:21:33] + USER=root qrexec-agent
[2022-09-20 09:21:33] + sed -n '/^-soundhw/ {n;p}'
[2022-09-20 09:21:33] + echo '-xen-domid
[2022-09-20 09:21:33] 7
[2022-09-20 09:21:33] -no-shutdown
[2022-09-20 09:21:33] -nodefaults
[2022-09-20 09:21:33] -no-user-config
[2022-09-20 09:21:33] -name
[2022-09-20 09:21:33] openbsd-71
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] VGA,vgamem_mb=16
[2022-09-20 09:21:33] -boot
[2022-09-20 09:21:33] order=dc
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-ehci,id=ehci
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-tablet,bus=ehci.0
[2022-09-20 09:21:33] -smp
[2022-09-20 09:21:33] 2,maxcpus=2
[2022-09-20 09:21:33] -net
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] qubes-gui,domid=0,log-level=0
[2022-09-20 09:21:33] -machine
[2022-09-20 09:21:33] xenfv
[2022-09-20 09:21:33] -m
[2022-09-20 09:21:33] 496
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 09:21:33] + audio_model=
[2022-09-20 09:21:33] + '[' -n  ]
[2022-09-20 09:21:33] + sed -n /^-qubes-net:/p
[2022-09-20 09:21:33] + echo '-xen-domid
[2022-09-20 09:21:33] 7
[2022-09-20 09:21:33] -no-shutdown
[2022-09-20 09:21:33] -nodefaults
[2022-09-20 09:21:33] -no-user-config
[2022-09-20 09:21:33] -name
[2022-09-20 09:21:33] openbsd-71
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] VGA,vgamem_mb=16
[2022-09-20 09:21:33] -boot
[2022-09-20 09:21:33] order=dc
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-ehci,id=ehci
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-tablet,bus=ehci.0
[2022-09-20 09:21:33] -smp
[2022-09-20 09:21:33] 2,maxcpus=2
[2022-09-20 09:21:33] -net
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] qubes-gui,domid=0,log-level=0
[2022-09-20 09:21:33] -machine
[2022-09-20 09:21:33] xenfv
[2022-09-20 09:21:33] -m
[2022-09-20 09:21:33] 496
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 09:21:33] + net_args=
[2022-09-20 09:21:33] + sed /^-qubes-net:/d
[2022-09-20 09:21:33] + echo '-xen-domid
[2022-09-20 09:21:33] 7
[2022-09-20 09:21:33] -no-shutdown
[2022-09-20 09:21:33] -nodefaults
[2022-09-20 09:21:33] -no-user-config
[2022-09-20 09:21:33] -name
[2022-09-20 09:21:33] openbsd-71
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] VGA,vgamem_mb=16
[2022-09-20 09:21:33] -boot
[2022-09-20 09:21:33] order=dc
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-ehci,id=ehci
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-tablet,bus=ehci.0
[2022-09-20 09:21:33] -smp
[2022-09-20 09:21:33] 2,maxcpus=2
[2022-09-20 09:21:33] -net
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] qubes-gui,domid=0,log-level=0
[2022-09-20 09:21:33] -machine
[2022-09-20 09:21:33] xenfv
[2022-09-20 09:21:33] -m
[2022-09-20 09:21:33] 496
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 09:21:33] + dm_args='-xen-domid
[2022-09-20 09:21:33] 7
[2022-09-20 09:21:33] -no-shutdown
[2022-09-20 09:21:33] -nodefaults
[2022-09-20 09:21:33] -no-user-config
[2022-09-20 09:21:33] -name
[2022-09-20 09:21:33] openbsd-71
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] VGA,vgamem_mb=16
[2022-09-20 09:21:33] -boot
[2022-09-20 09:21:33] order=dc
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-ehci,id=ehci
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-tablet,bus=ehci.0
[2022-09-20 09:21:33] -smp
[2022-09-20 09:21:33] 2,maxcpus=2
[2022-09-20 09:21:33] -net
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] qubes-gui,domid=0,log-level=0
[2022-09-20 09:21:33] -machine
[2022-09-20 09:21:33] xenfv
[2022-09-20 09:21:33] -m
[2022-09-20 09:21:33] 496
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 09:21:33] + test -e /sys/class/net/eth0
[2022-09-20 09:21:33] + echo 'No network interface named eth0.'
[2022-09-20 09:21:33] No network interface named eth0.
[2022-09-20 09:21:33] + ls -l /sys/class/net/
[2022-09-20 09:21:33] total 0
[2022-09-20 09:21:33] lrwxrwxrwx    1 root     0                0 Sep 20
07:21 .[1;36mlo.[m -> .[1;34m../../devices/virtual/net/lo.[m
[2022-09-20 09:21:33] + xenstore-read target
[2022-09-20 09:21:33] + target=7
[2022-09-20 09:21:33] + device_model=device-model/7
[2022-09-20 09:21:33] + mkdir /tmp/qmp
[2022-09-20 09:21:33] + kernel=
[2022-09-20 09:21:33] + grep -q ^-append
[2022-09-20 09:21:33] + echo '-xen-domid
[2022-09-20 09:21:33] 7
[2022-09-20 09:21:33] -no-shutdown
[2022-09-20 09:21:33] -nodefaults
[2022-09-20 09:21:33] -no-user-config
[2022-09-20 09:21:33] -name
[2022-09-20 09:21:33] openbsd-71
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] VGA,vgamem_mb=16
[2022-09-20 09:21:33] -boot
[2022-09-20 09:21:33] order=dc
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-ehci,id=ehci
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-tablet,bus=ehci.0
[2022-09-20 09:21:33] -smp
[2022-09-20 09:21:33] 2,maxcpus=2
[2022-09-20 09:21:33] -net
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] qubes-gui,domid=0,log-level=0
[2022-09-20 09:21:33] -machine
[2022-09-20 09:21:33] xenfv
[2022-09-20 09:21:33] -m
[2022-09-20 09:21:33] 496
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 09:21:33] + mkfifo /tmp/qmp/qemu.in /tmp/qmp/qemu.out
[2022-09-20 09:21:33] + set +x
[2022-09-20 09:21:33] Clearing kmsg buffer...
[2022-09-20 09:21:33] + set +x
[2022-09-20 09:21:33] + set+ sed 's/\$STUBDOM_RESTORE_INCOMING_ARG/fd:3/'
[2022-09-20 09:21:33]  +x
[2022-09-20 09:21:33] + echo '-xen-domid
[2022-09-20 09:21:33] 7
[2022-09-20 09:21:33] -no-shutdown
[2022-09-20 09:21:33] -nodefaults
[2022-09-20 09:21:33] -no-user-config
[2022-09-20 09:21:33] -name
[2022-09-20 09:21:33] openbsd-71
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] VGA,vgamem_mb=16
[2022-09-20 09:21:33] -boot
[2022-09-20 09:21:33] order=dc
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-ehci,id=ehci
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-tablet,bus=ehci.0
[2022-09-20 09:21:33] -smp
[2022-09-20 09:21:33] 2,maxcpus=2
[2022-09-20 09:21:33] -net
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] qubes-gui,domid=0,log-level=0
[2022-09-20 09:21:33] -machine
[2022-09-20 09:21:33] xenfv
[2022-09-20 09:21:33] -m
[2022-09-20 09:21:33] 496
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 09:21:33] + dm_args='-xen-domid
[2022-09-20 09:21:33] 7
[2022-09-20 09:21:33] -no-shutdown
[2022-09-20 09:21:33] -nodefaults
[2022-09-20 09:21:33] -no-user-config
[2022-09-20 09:21:33] -name
[2022-09-20 09:21:33] openbsd-71
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] VGA,vgamem_mb=16
[2022-09-20 09:21:33] -boot
[2022-09-20 09:21:33] order=dc
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-ehci,id=ehci
[2022-09-20 09:21:33] -device
[2022-09-20 09:21:33] usb-tablet,bus=ehci.0
[2022-09-20 09:21:33] -smp
[2022-09-20 09:21:33] 2,maxcpus=2
[2022-09-20 09:21:33] -net
[2022-09-20 09:21:33] none
[2022-09-20 09:21:33] -display
[2022-09-20 09:21:33] qubes-gui,domid=0,log-level=0
[2022-09-20 09:21:33] -machine
[2022-09-20 09:21:33] xenfv
[2022-09-20 09:21:33] -m
[2022-09-20 09:21:33] 496
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 09:21:33] -drive
[2022-09-20 09:21:33]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 09:21:33] + xenstore-read device/console/2
[2022-09-20 09:21:33] + xenstore-read device/console/1
[2022-09-20 09:21:33] + IFS='
[2022-09-20 09:21:33] '
[2022-09-20 09:21:33] + set -f
[2022-09-20 09:21:33] + set +f
[2022-09-20 09:21:33] + unset IFS
[2022-09-20 09:21:33] + qemu_pid=72
[2022-09-20 09:21:33] + '[' '!' -e /tmp/qemu.qmp ]
[2022-09-20 09:21:33] + sleep 0.1
[2022-09-20 09:21:33] + qemu -sandbox+ '[' '!' -e /tmp/qemu.qmp ]
[2022-09-20 09:21:33] + sleep 0.1
[2022-09-20 09:21:34]
 'on,obsolete=deny,elevateprivileges=deny,spawn=deny,resourcecontrol=deny'
-chardev 'pipe,path=/tmp/qmp/qemu,id=m' -mon 'chardev=m,mode=control'
-chardev 'socket,server,nowait,path=/tmp/qemu.qmp,id=m2' -mon
'chardev=m2,mode=control' -xen-domid 7 -no-shutdown -nodefaults
-no-user-config -name openbsd-71 -display none -device 'VGA,vgamem_mb=16'
-boot 'order=dc' -device 'usb-ehci,id=ehci' -device 'usb-tablet,bus=ehci.0'
-smp '2,maxcpus=2' -net none -display 'qubes-gui,domid=0,log-level=0'
-machine xenfv -m 496 -drive
'file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback'
-drive
'file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback'
-drive
'file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
-device 'nec-usb-xhci,id=xhci'
[2022-09-20 09:21:34] + '[' '!' -e /tmp/qemu.qmp ]
[2022-09-20 09:21:34] + sleep 0.1
[2022-09-20 09:21:34] qemu: -chardev
socket,server,nowait,path=/tmp/qemu.qmp,id=m2: warning: short-form boolean
option 'server' deprecated
[2022-09-20 09:21:34] Please use server=on instead
[2022-09-20 09:21:34] qemu: -chardev
socket,server,nowait,path=/tmp/qemu.qmp,id=m2: warning: short-form boolean
option 'nowait' deprecated
[2022-09-20 09:21:34] Please use wait=off instead
[2022-09-20 09:21:34] + tee /proc/self/fd/2
[2022-09-20 09:21:34] + echo '{"execute": "qmp_capabilities"}'
[2022-09-20 09:21:34] {"execute": "qmp_capabilities"}
[2022-09-20 09:21:34] random: qemu: uninitialized urandom read (16 bytes
read)
[2022-09-20 09:21:34] {"QMP": {"version": {"qemu": {"micro": 0, "minor": 1,
"major": 6}, "package": ""}, "capabilities": ["oob"]}}

[2022-09-20 09:21:34] qubes_gui/init: 573
[2022-09-20 09:21:34] qubes_gui/init: 582
[2022-09-20 09:21:34] qubes_gui/init: 584
[2022-09-20 09:21:34] + '[' '!' -e /tmp/qemu.qmp ]
[2022-09-20 09:21:34] + '[' -e /proc/self/fd/4 ]
[2022-09-20 09:21:34] + '[' -e /proc/self/fd/3 ]
[2022-09-20 09:21:34] + true
[2022-09-20 09:21:34] + printf '==== Press enter for shell ====\n'
[2022-09-20 09:21:34] ==== Press enter for shell ====
[2022-09-20 09:21:34] + read
[2022-09-20 09:21:34] + vchan-socket-proxy 0 device-model/7/qmp-vchan
/tmp/qemu.qmp
[2022-09-20 09:21:34] qubes_gui/init[611]: version sent, waiting for xorg
conf
[2022-09-20 09:21:34] {"return": {}}

[2022-09-20 09:21:34] written 110 bytes to vchan
[2022-09-20 09:21:34] written 34 bytes to vchan
[2022-09-20 09:21:34] [00:06.0] xen_pt_realize: Assigning real physical
device 07:00.0 to devfn 0x30
[2022-09-20 09:21:34] [00:06.0] xen_pt_register_regions: IO region 0
registered (size=0x00000100 base_addr=0x00003000 type: 0x1)
[2022-09-20 09:21:34] [00:06.0] xen_pt_register_regions: IO region 2
registered (size=0x00001000 base_addr=0xb4304000 type: 0x4)
[2022-09-20 09:21:34] [00:06.0] xen_pt_register_regions: IO region 4
registered (size=0x00004000 base_addr=0xb4300000 type: 0x4)
[2022-09-20 09:21:34] [00:06.0] xen_pt_config_reg_init: Offset 0x000e
mismatch! Emulated=0x0080, host=0x0000, syncing to 0x0000.
[2022-09-20 09:21:34] [00:06.0] xen_pt_config_reg_init: Offset 0x0010
mismatch! Emulated=0x0000, host=0x3001, syncing to 0x3001.
[2022-09-20 09:21:34] [00:06.0] xen_pt_config_reg_init: Offset 0x0018
mismatch! Emulated=0x0000, host=0xb4304004, syncing to 0xb4304004.
[2022-09-20 09:21:34] [00:06.0] xen_pt_config_reg_init: Offset 0x0020
mismatch! Emulated=0x0000, host=0xb4300004, syncing to 0xb4300004.
[2022-09-20 09:21:34] [00:06.0] xen_pt_config_reg_init: Offset 0x0042
mismatch! Emulated=0x0000, host=0x07c3, syncing to 0x0603.
[2022-09-20 09:21:34] [00:06.0] xen_pt_config_reg_init: Offset 0x0052
mismatch! Emulated=0x0000, host=0x0080, syncing to 0x0080.
[2022-09-20 09:21:34] [00:06.0] xen_pt_config_reg_init: Offset 0x0074
mismatch! Emulated=0x0000, host=0x5908cc0, syncing to 0x5908cc0.
[2022-09-20 09:21:34] [00:06.0] xen_pt_config_reg_init: Offset 0x007a
mismatch! Emulated=0x0000, host=0x0010, syncing to 0x0010.
[2022-09-20 09:21:34] [00:06.0] xen_pt_config_reg_init: Offset 0x0082
mismatch! Emulated=0x0000, host=0x1011, syncing to 0x1011.
[2022-09-20 09:21:34] [00:06.0] xen_pt_pci_intx: intx=1
[2022-09-20 09:21:34] [00:06.0] xen_pt_realize: Real physical device
07:00.0 registered successfully
[2022-09-20 09:21:34] written 34 bytes to vchan
[2022-09-20 09:21:34] written 2048 bytes to vchan
[2022-09-20 09:21:34] written 979 bytes to vchan
[2022-09-20 09:21:34] written 110 bytes to vchan
[2022-09-20 09:21:34] written 34 bytes to vchan
[2022-09-20 09:21:34] written 34 bytes to vchan
[2022-09-20 09:21:34] qubes_gui/init[622]: got xorg conf, creating window
[2022-09-20 09:21:34] qubes_gui/init: 632
[2022-09-20 09:21:34] configure msg, x/y 640 325 (was 0 0), w/h 640 480
[2022-09-20 09:21:34] configure msg, x/y 640 325 (was 640 325), w/h 640 480
[2022-09-20 09:21:35] random: crng init done
[2022-09-20 09:21:58] [00:06.0] Write-back to unknown field 0x44
(partially) inhibited (0x0000ffff)
[2022-09-20 09:21:58] [00:06.0] If the device doesn't work, try enabling
permissive mode
[2022-09-20 09:21:58] [00:06.0] (unsafe) and if it helps report the problem
to xen-devel
[2022-09-20 09:21:58] [00:06.0] xen_pt_msgctrl_reg_write: setup MSI
(register: 81).
[2022-09-20 09:21:58] [00:06.0] xen_pt_msi_setup: MSI mapped with pirq 151.
[2022-09-20 09:21:58] [00:06.0] msi_msix_update: Updating MSI with pirq 151
gvec 0x72 gflags 0x0 (entry: 0x0)
[2022-09-20 09:31:19] qubes_gui: got unknown msg type 145, ignoring
[2022-09-20 09:33:54] qubes_gui: got unknown msg type 145, ignoring
[2022-09-20 09:42:36] {"timestamp": {"seconds": 1663659756, "microseconds":
783476}, "event": "RESET", "data": {"guest": true, "reason": "guest-reset"}}

[2022-09-20 09:42:36] {"timestamp": {"seconds": 1663659756, "microseconds":
784673}, "event": "RESET", "data": {"guest": true, "reason": "guest-reset"}}

[2022-09-20 09:42:38] pcifront pci-0: Rescanning PCI Frontend Bus 0000:00
[2022-09-20 10:08:20] Logfile Opened
[2022-09-20 10:08:20] Linux version 5.10.105-xen-stubdom
(mockbuild@0c9ad8f2058f40c49bc934dcc2ea73c7) (gcc (GCC) 10.3.1 20210422
(Red Hat 10.3.1-1), GNU ld version 2.34-6.fc32) #1 Fri Apr 22 17:53:39 CEST
2022
[2022-09-20 10:08:20] Command line:
[2022-09-20 10:08:20] x86/fpu: Supporting XSAVE feature 0x001: 'x87
floating point registers'
[2022-09-20 10:08:20] x86/fpu: Supporting XSAVE feature 0x002: 'SSE
registers'
[2022-09-20 10:08:20] x86/fpu: Supporting XSAVE feature 0x004: 'AVX
registers'
[2022-09-20 10:08:20] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[2022-09-20 10:08:20] x86/fpu: Enabled xstate features 0x7, context size is
832 bytes, using 'standard' format.
[2022-09-20 10:08:20] Released 0 page(s)
[2022-09-20 10:08:20] BIOS-provided physical RAM map:
[2022-09-20 10:08:20] Xen: [mem 0x0000000000000000-0x000000000009ffff]
usable
[2022-09-20 10:08:20] Xen: [mem 0x00000000000a0000-0x00000000000fffff]
reserved
[2022-09-20 10:08:20] Xen: [mem 0x0000000000100000-0x0000000008ffffff]
usable
[2022-09-20 10:08:20] NX (Execute Disable) protection: active
[2022-09-20 10:08:20] Hypervisor detected: Xen PV
[2022-09-20 10:08:20] tsc: Fast TSC calibration failed
[2022-09-20 10:08:20] tsc: Detected 2591.998 MHz processor
[2022-09-20 10:08:20] last_pfn = 0x9000 max_arch_pfn = 0x400000000
[2022-09-20 10:08:20] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP
 UC  UC
[2022-09-20 10:08:20] RAMDISK: [mem 0x02000000-0x03f7afff]
[2022-09-20 10:08:20] Zone ranges:
[2022-09-20 10:08:20]   DMA32    [mem 0x0000000000001000-0x0000000008ffffff]
[2022-09-20 10:08:20]   Normal   empty
[2022-09-20 10:08:20] Movable zone start for each node
[2022-09-20 10:08:20] Early memory node ranges
[2022-09-20 10:08:20]   node   0: [mem
0x0000000000001000-0x000000000009ffff]
[2022-09-20 10:08:20]   node   0: [mem
0x0000000000100000-0x0000000008ffffff]
[2022-09-20 10:08:20] Initmem setup node 0 [mem
0x0000000000001000-0x0000000008ffffff]
[2022-09-20 10:08:20] On node 0, zone DMA32: 1 pages in unavailable ranges
[2022-09-20 10:08:20] On node 0, zone DMA32: 96 pages in unavailable ranges
[2022-09-20 10:08:20] On node 0, zone DMA32: 28672 pages in unavailable
ranges
[2022-09-20 10:08:20] p2m virtual area at (____ptrval____), size is 200000
[2022-09-20 10:08:20] Remapped 0 page(s)
[2022-09-20 10:08:20] [mem 0x09000000-0xffffffff] available for PCI devices
[2022-09-20 10:08:20] Booting paravirtualized kernel on Xen
[2022-09-20 10:08:20] Xen version: 4.14.5 (preserve-AD)
[2022-09-20 10:08:20] clocksource: refined-jiffies: mask: 0xffffffff
max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[2022-09-20 10:08:20] Built 1 zonelists, mobility grouping on.  Total
pages: 36170
[2022-09-20 10:08:20] Kernel command line: clocksource=tsc
[2022-09-20 10:08:20] Dentry cache hash table entries: 32768 (order: 6,
262144 bytes, linear)
[2022-09-20 10:08:20] Inode-cache hash table entries: 16384 (order: 5,
131072 bytes, linear)
[2022-09-20 10:08:20] mem auto-init: stack:byref_all(zero), heap alloc:off,
heap free:off
[2022-09-20 10:08:20] Memory: 96968K/147068K available (6145K kernel code,
842K rwdata, 428K rodata, 696K init, 476K bss, 49848K reserved, 0K
cma-reserved)
[2022-09-20 10:08:20] random: get_random_u64 called from 0xffffffff810a0f18
with crng_init=0
[2022-09-20 10:08:20] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1,
Nodes=1
[2022-09-20 10:08:20] Using NULL legacy PIC
[2022-09-20 10:08:20] NR_IRQS: 4352, nr_irqs: 24, preallocated irqs: 0
[2022-09-20 10:08:20] xen:events: Using FIFO-based ABI
[2022-09-20 10:08:20] printk: console [hvc0] enabled
[2022-09-20 10:08:20] clocksource: xen: mask: 0xffffffffffffffff
max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[2022-09-20 10:08:20] installing Xen timer for CPU 0
[2022-09-20 10:08:20] clocksource: tsc-early: mask: 0xffffffffffffffff
max_cycles: 0x255cb518234, max_idle_ns: 440795279333 ns
[2022-09-20 10:08:20] Calibrating delay loop (skipped), value calculated
using timer frequency.. 5183.99 BogoMIPS (lpj=10367992)
[2022-09-20 10:08:20] pid_max: default: 4096 minimum: 301
[2022-09-20 10:08:20] Mount-cache hash table entries: 512 (order: 0, 4096
bytes, linear)
[2022-09-20 10:08:20] Mountpoint-cache hash table entries: 512 (order: 0,
4096 bytes, linear)
[2022-09-20 10:08:20] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[2022-09-20 10:08:20] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[2022-09-20 10:08:20] CPU: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz
(family: 0x6, model: 0x9e, stepping: 0xa)
[2022-09-20 10:08:20] Spectre V1 : Mitigation: usercopy/swapgs barriers and
__user pointer sanitization
[2022-09-20 10:08:20] Spectre V2 : Mitigation: Retpolines
[2022-09-20 10:08:20] Spectre V2 : Spectre v2 / SpectreRSB mitigation:
Filling RSB on context switch
[2022-09-20 10:08:20] Spectre V2 : Enabling Restricted Speculation for
firmware calls
[2022-09-20 10:08:20] Spectre V2 : mitigation: Enabling conditional
Indirect Branch Prediction Barrier
[2022-09-20 10:08:20] Speculative Store Bypass: Mitigation: Speculative
Store Bypass disabled via prctl and seccomp
[2022-09-20 10:08:20] SRBDS: Unknown: Dependent on hypervisor status
[2022-09-20 10:08:20] MDS: Mitigation: Clear CPU buffers
[2022-09-20 10:08:20] Performance Events: unsupported p6 CPU model 158 no
PMU driver, software events only.
[2022-09-20 10:08:20] devtmpfs: initialized
[2022-09-20 10:08:20] clocksource: jiffies: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 7645041785100000 ns
[2022-09-20 10:08:20] futex hash table entries: 16 (order: -4, 384 bytes,
linear)
[2022-09-20 10:08:20] NET: Registered protocol family 16
[2022-09-20 10:08:20] xen:grant_table: Grant tables using version 1 layout
[2022-09-20 10:08:20] Grant table initialized
[2022-09-20 10:08:20] PCI: setting up Xen PCI frontend stub
[2022-09-20 10:08:20] xen:balloon: Initialising balloon driver
[2022-09-20 10:08:20] usbcore: registered new interface driver usbfs
[2022-09-20 10:08:20] usbcore: registered new interface driver hub
[2022-09-20 10:08:20] usbcore: registered new device driver usb
[2022-09-20 10:08:20] PCI: System does not support PCI
[2022-09-20 10:08:20] clocksource: Switched to clocksource xen
[2022-09-20 10:08:20] NET: Registered protocol family 2
[2022-09-20 10:08:20] IP idents hash table entries: 4096 (order: 3, 32768
bytes, linear)
[2022-09-20 10:08:20] tcp_listen_portaddr_hash hash table entries: 256
(order: 0, 4096 bytes, linear)
[2022-09-20 10:08:20] TCP established hash table entries: 2048 (order: 2,
16384 bytes, linear)
[2022-09-20 10:08:20] TCP bind hash table entries: 2048 (order: 2, 16384
bytes, linear)
[2022-09-20 10:08:20] TCP: Hash tables configured (established 2048 bind
2048)
[2022-09-20 10:08:20] UDP hash table entries: 128 (order: 0, 4096 bytes,
linear)
[2022-09-20 10:08:20] UDP-Lite hash table entries: 128 (order: 0, 4096
bytes, linear)
[2022-09-20 10:08:20] NET: Registered protocol family 1
[2022-09-20 10:08:20] Unpacking initramfs...
[2022-09-20 10:08:20] Freeing initrd memory: 32236K
[2022-09-20 10:08:20] clocksource: tsc: mask: 0xffffffffffffffff
max_cycles: 0x255cb518234, max_idle_ns: 440795279333 ns
[2022-09-20 10:08:20] clocksource: Switched to clocksource tsc
[2022-09-20 10:08:20] workingset: timestamp_bits=62 max_order=15
bucket_order=0
[2022-09-20 10:08:20] xen:xen_evtchn: Event-channel device installed
[2022-09-20 10:08:20] Invalid max_queues (4), will use default max: 1.
[2022-09-20 10:08:21] random: fast init done
[2022-09-20 10:08:21] tun: Universal TUN/TAP device driver, 1.6
[2022-09-20 10:08:21] xen_netfront: Initialising Xen virtual ethernet driver
[2022-09-20 10:08:21] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[2022-09-20 10:08:21] vhci_hcd vhci_hcd.0: new USB bus registered, assigned
bus number 1
[2022-09-20 10:08:21] vhci_hcd: created sysfs vhci_hcd.0
[2022-09-20 10:08:21] hub 1-0:1.0: USB hub found
[2022-09-20 10:08:21] hub 1-0:1.0: 8 ports detected
[2022-09-20 10:08:21] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[2022-09-20 10:08:21] vhci_hcd vhci_hcd.0: new USB bus registered, assigned
bus number 2
[2022-09-20 10:08:21] usb usb2: We don't know the algorithms for LPM for
this host, disabling LPM.
[2022-09-20 10:08:21] hub 2-0:1.0: USB hub found
[2022-09-20 10:08:21] hub 2-0:1.0: 8 ports detected
[2022-09-20 10:08:21] NET: Registered protocol family 17
[2022-09-20 10:08:21] sched_clock: Marking stable (312462849,
188928)->(314330248, -1678471)
[2022-09-20 10:08:21] pcifront pci-0: Installing PCI frontend
[2022-09-20 10:08:21] xen:swiotlb_xen: Warning: only able to allocate 4 MB
for software IO TLB
[2022-09-20 10:08:21] software IO TLB: mapped [mem
0x0000000003800000-0x0000000003c00000] (4MB)
[2022-09-20 10:08:21] pcifront pci-0: Creating PCI Frontend Bus 0000:00
[2022-09-20 10:08:21] pcifront pci-0: PCI host bridge to bus 0000:00
[2022-09-20 10:08:21] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[2022-09-20 10:08:21] pci_bus 0000:00: root bus resource [mem
0x00000000-0x7fffffffff]
[2022-09-20 10:08:21] pci_bus 0000:00: root bus resource [bus 00-ff]
[2022-09-20 10:08:21] pci 0000:00:00.0: [10ec:8168] type 00 class 0x020000
[2022-09-20 10:08:21] pci 0000:00:00.0: reg 0x10: [io  0x3000-0x30ff]
[2022-09-20 10:08:21] pci 0000:00:00.0: reg 0x18: [mem
0xb4304000-0xb4304fff 64bit]
[2022-09-20 10:08:21] pci 0000:00:00.0: reg 0x20: [mem
0xb4300000-0xb4303fff 64bit]
[2022-09-20 10:08:21] pci 0000:00:00.0: supports D1 D2
[2022-09-20 10:08:21] pcifront pci-0: claiming resource 0000:00:00.0/0
[2022-09-20 10:08:21] pcifront pci-0: claiming resource 0000:00:00.0/2
[2022-09-20 10:08:21] pcifront pci-0: claiming resource 0000:00:00.0/4
[2022-09-20 10:08:21] blkfront: xvda: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-20 10:08:21]  xvda: xvda4
[2022-09-20 10:08:21] blkfront: xvdb: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-20 10:08:21] blkfront: xvdc: flush diskcache: enabled; persistent
grants: enabled; indirect descriptors: enabled;
[2022-09-20 10:08:21] Freeing unused kernel image (initmem) memory: 696K
[2022-09-20 10:08:21] Write protecting the kernel read-only data: 10240k
[2022-09-20 10:08:21] Freeing unused kernel image (text/rodata gap) memory:
2044K
[2022-09-20 10:08:21] Freeing unused kernel image (rodata/data gap) memory:
1620K
[2022-09-20 10:08:21] Run /init as init process
[2022-09-20 10:08:21] + mount -t devtmpfs none /dev
[2022-09-20 10:08:21] + mount -t sysfs /sys /sys
[2022-09-20 10:08:21] + mount -t proc /proc /proc
[2022-09-20 10:08:21] + mount -t tmpfs -o 'size=1m,nodev,noexec' /tmp /tmp
[2022-09-20 10:08:21] + mount -o remount,ro /
[2022-09-20 10:08:21] + echo 1
[2022-09-20 10:08:21] + printf '%d\n' 1073741824
[2022-09-20 10:08:21] + /bin/xenstore-read target
[2022-09-20 10:08:21] + domid=19
[2022-09-20 10:08:21] + xenstore-read /local/domain/19/vm
[2022-09-20 10:08:21] + vm_path=/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3
[2022-09-20 10:08:21] + sort
[2022-09-20 10:08:21] + xenstore-list -p
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv
[2022-09-20 10:08:21] + xenstore-read
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/001
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/002
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/003
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/004
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/005
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/006
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/007
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/008
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/009
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/010
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/011
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/012
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/013
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/014
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/015
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/016
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/017
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/018
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/019
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/020
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/021
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/022
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/023
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/024
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/025
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/026
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/027
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/028
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/029
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/030
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/031
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/032
/vm/53ce9bfa-8c06-4587-9b52-dcccd76169b3/image/dm-argv/033
[2022-09-20 10:08:21] + dm_args='-xen-domid
[2022-09-20 10:08:21] 19
[2022-09-20 10:08:21] -no-shutdown
[2022-09-20 10:08:21] -nodefaults
[2022-09-20 10:08:21] -no-user-config
[2022-09-20 10:08:21] -name
[2022-09-20 10:08:21] openbsd-71
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] VGA,vgamem_mb=16
[2022-09-20 10:08:21] -boot
[2022-09-20 10:08:21] order=dc
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-ehci,id=ehci
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-tablet,bus=ehci.0
[2022-09-20 10:08:21] -smp
[2022-09-20 10:08:21] 2,maxcpus=2
[2022-09-20 10:08:21] -net
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] qubes-gui,domid=0,log-level=0
[2022-09-20 10:08:21] -machine
[2022-09-20 10:08:21] xenfv
[2022-09-20 10:08:21] -m
[2022-09-20 10:08:21] 496
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 10:08:21] + usb_args=
[2022-09-20 10:08:21] + test -e /bin/qrexec-agent
[2022-09-20 10:08:21] + usb_args='-device
[2022-09-20 10:08:21] nec-usb-xhci,id=xhci'
[2022-09-20 10:08:21] + mkdir -p /var/run/qubes
[2022-09-20 10:08:21] + touch /dev/mdev.log
[2022-09-20 10:08:21] + USER=root qrexec-agent
[2022-09-20 10:08:21] + mdev -d
[2022-09-20 10:08:21] + sed -n '/^-soundhw/ {n;p}'
[2022-09-20 10:08:21] + echo '-xen-domid
[2022-09-20 10:08:21] 19
[2022-09-20 10:08:21] -no-shutdown
[2022-09-20 10:08:21] -nodefaults
[2022-09-20 10:08:21] -no-user-config
[2022-09-20 10:08:21] -name
[2022-09-20 10:08:21] openbsd-71
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] VGA,vgamem_mb=16
[2022-09-20 10:08:21] -boot
[2022-09-20 10:08:21] order=dc
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-ehci,id=ehci
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-tablet,bus=ehci.0
[2022-09-20 10:08:21] -smp
[2022-09-20 10:08:21] 2,maxcpus=2
[2022-09-20 10:08:21] -net
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] qubes-gui,domid=0,log-level=0
[2022-09-20 10:08:21] -machine
[2022-09-20 10:08:21] xenfv
[2022-09-20 10:08:21] -m
[2022-09-20 10:08:21] 496
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 10:08:21] + audio_model=
[2022-09-20 10:08:21] + '[' -n  ]
[2022-09-20 10:08:21] + sed -n /^-qubes-net:/p
[2022-09-20 10:08:21] + echo '-xen-domid
[2022-09-20 10:08:21] 19
[2022-09-20 10:08:21] -no-shutdown
[2022-09-20 10:08:21] -nodefaults
[2022-09-20 10:08:21] -no-user-config
[2022-09-20 10:08:21] -name
[2022-09-20 10:08:21] openbsd-71
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] VGA,vgamem_mb=16
[2022-09-20 10:08:21] -boot
[2022-09-20 10:08:21] order=dc
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-ehci,id=ehci
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-tablet,bus=ehci.0
[2022-09-20 10:08:21] -smp
[2022-09-20 10:08:21] 2,maxcpus=2
[2022-09-20 10:08:21] -net
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] qubes-gui,domid=0,log-level=0
[2022-09-20 10:08:21] -machine
[2022-09-20 10:08:21] xenfv
[2022-09-20 10:08:21] -m
[2022-09-20 10:08:21] 496
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 10:08:21] + net_args=
[2022-09-20 10:08:21] + sed /^-qubes-net:/d
[2022-09-20 10:08:21] + echo '-xen-domid
[2022-09-20 10:08:21] 19
[2022-09-20 10:08:21] -no-shutdown
[2022-09-20 10:08:21] -nodefaults
[2022-09-20 10:08:21] -no-user-config
[2022-09-20 10:08:21] -name
[2022-09-20 10:08:21] openbsd-71
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] VGA,vgamem_mb=16
[2022-09-20 10:08:21] -boot
[2022-09-20 10:08:21] order=dc
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-ehci,id=ehci
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-tablet,bus=ehci.0
[2022-09-20 10:08:21] -smp
[2022-09-20 10:08:21] 2,maxcpus=2
[2022-09-20 10:08:21] -net
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] qubes-gui,domid=0,log-level=0
[2022-09-20 10:08:21] -machine
[2022-09-20 10:08:21] xenfv
[2022-09-20 10:08:21] -m
[2022-09-20 10:08:21] 496
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 10:08:21] + dm_args='-xen-domid
[2022-09-20 10:08:21] 19
[2022-09-20 10:08:21] -no-shutdown
[2022-09-20 10:08:21] -nodefaults
[2022-09-20 10:08:21] -no-user-config
[2022-09-20 10:08:21] -name
[2022-09-20 10:08:21] openbsd-71
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] VGA,vgamem_mb=16
[2022-09-20 10:08:21] -boot
[2022-09-20 10:08:21] order=dc
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-ehci,id=ehci
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-tablet,bus=ehci.0
[2022-09-20 10:08:21] -smp
[2022-09-20 10:08:21] 2,maxcpus=2
[2022-09-20 10:08:21] -net
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] qubes-gui,domid=0,log-level=0
[2022-09-20 10:08:21] -machine
[2022-09-20 10:08:21] xenfv
[2022-09-20 10:08:21] -m
[2022-09-20 10:08:21] 496
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 10:08:21] + test -e /sys/class/net/eth0
[2022-09-20 10:08:21] + echo 'No network interface named eth0.'
[2022-09-20 10:08:21] No network interface named eth0.
[2022-09-20 10:08:21] + ls -l /sys/class/net/
[2022-09-20 10:08:21] total 0
[2022-09-20 10:08:21] lrwxrwxrwx    1 root     0                0 Sep 20
08:08 .[1;36mlo.[m -> .[1;34m../../devices/virtual/net/lo.[m
[2022-09-20 10:08:21] + xenstore-read target
[2022-09-20 10:08:21] + target=19
[2022-09-20 10:08:21] + device_model=device-model/19
[2022-09-20 10:08:21] + mkdir /tmp/qmp
[2022-09-20 10:08:21] + kernel=
[2022-09-20 10:08:21] + grep -q ^-append
[2022-09-20 10:08:21] + echo '-xen-domid
[2022-09-20 10:08:21] 19
[2022-09-20 10:08:21] -no-shutdown
[2022-09-20 10:08:21] -nodefaults
[2022-09-20 10:08:21] -no-user-config
[2022-09-20 10:08:21] -name
[2022-09-20 10:08:21] openbsd-71
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] VGA,vgamem_mb=16
[2022-09-20 10:08:21] -boot
[2022-09-20 10:08:21] order=dc
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-ehci,id=ehci
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-tablet,bus=ehci.0
[2022-09-20 10:08:21] -smp
[2022-09-20 10:08:21] 2,maxcpus=2
[2022-09-20 10:08:21] -net
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] qubes-gui,domid=0,log-level=0
[2022-09-20 10:08:21] -machine
[2022-09-20 10:08:21] xenfv
[2022-09-20 10:08:21] -m
[2022-09-20 10:08:21] 496
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 10:08:21] + mkfifo /tmp/qmp/qemu.in /tmp/qmp/qemu.out
[2022-09-20 10:08:21] + set +x
[2022-09-20 10:08:21] Clearing kmsg buffer...
[2022-09-20 10:08:21] + set +x
[2022-09-20 10:08:21] + set +x
[2022-09-20 10:08:21] + sed 's/\$STUBDOM_RESTORE_INCOMING_ARG/fd:3/'
[2022-09-20 10:08:21] + echo '-xen-domid
[2022-09-20 10:08:21] 19
[2022-09-20 10:08:21] -no-shutdown
[2022-09-20 10:08:21] -nodefaults
[2022-09-20 10:08:21] -no-user-config
[2022-09-20 10:08:21] -name
[2022-09-20 10:08:21] openbsd-71
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] VGA,vgamem_mb=16
[2022-09-20 10:08:21] -boot
[2022-09-20 10:08:21] order=dc
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-ehci,id=ehci
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-tablet,bus=ehci.0
[2022-09-20 10:08:21] -smp
[2022-09-20 10:08:21] 2,maxcpus=2
[2022-09-20 10:08:21] -net
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] qubes-gui,domid=0,log-level=0
[2022-09-20 10:08:21] -machine
[2022-09-20 10:08:21] xenfv
[2022-09-20 10:08:21] -m
[2022-09-20 10:08:21] 496
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 10:08:21] + dm_args='-xen-domid
[2022-09-20 10:08:21] 19
[2022-09-20 10:08:21] -no-shutdown
[2022-09-20 10:08:21] -nodefaults
[2022-09-20 10:08:21] -no-user-config
[2022-09-20 10:08:21] -name
[2022-09-20 10:08:21] openbsd-71
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] VGA,vgamem_mb=16
[2022-09-20 10:08:21] -boot
[2022-09-20 10:08:21] order=dc
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-ehci,id=ehci
[2022-09-20 10:08:21] -device
[2022-09-20 10:08:21] usb-tablet,bus=ehci.0
[2022-09-20 10:08:21] -smp
[2022-09-20 10:08:21] 2,maxcpus=2
[2022-09-20 10:08:21] -net
[2022-09-20 10:08:21] none
[2022-09-20 10:08:21] -display
[2022-09-20 10:08:21] qubes-gui,domid=0,log-level=0
[2022-09-20 10:08:21] -machine
[2022-09-20 10:08:21] xenfv
[2022-09-20 10:08:21] -m
[2022-09-20 10:08:21] 496
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback
[2022-09-20 10:08:21] -drive
[2022-09-20 10:08:21]
file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
[2022-09-20 10:08:21] + xenstore-read device/console/2
[2022-09-20 10:08:21] + xenstore-read device/console/1
[2022-09-20 10:08:21] + IFS='
[2022-09-20 10:08:21] '
[2022-09-20 10:08:21] + set -f
[2022-09-20 10:08:21] + set +f
[2022-09-20 10:08:21] + unset IFS
[2022-09-20 10:08:21] + qemu_pid=148
[2022-09-20 10:08:21] + '[' '!' -e /tmp/qemu.qmp ]
[2022-09-20 10:08:21] + sleep 0.1
[2022-09-20 10:08:21] + qemu -sandbox
'on,obsolete=deny,elevateprivileges=deny,spawn=deny,resourcecontrol=deny'
-chardev 'pipe,path=/tmp/qmp/qemu,id=m' -mon 'chardev=m,mode=control'
-chardev 'socket,server,nowait,path=/tmp/qemu.qmp,id=m2' -mon
'chardev=m2,mode=control' -xen-domid 19 -no-shutdown -nodefaults
-no-user-config -name openbsd-71 -display none -device 'VGA,vgamem_mb=16'
-boot 'order=dc' -device 'usb-ehci,id=ehci' -device 'usb-tablet,bus=ehci.0'
-smp '2,maxcpus=2' -net none -display 'qubes-gui,domid=0,log-level=0'
-machine xenfv -m 496 -drive
'file=/dev/xvda,if=ide,index=0,media=disk,format=host_device,cache=writeback'
-drive
'file=/dev/xvdb,if=ide,index=1,media=disk,format=host_device,cache=writeback'
-drive
'file=/dev/xvdc,if=ide,index=2,media=disk,format=host_device,cache=writeback'
-device 'nec-usb-xhci,id=xhci'
[2022-09-20 10:08:21] qemu: -chardev
socket,server,nowait,path=/tmp/qemu.qmp,id=m2: warning: short-form boolean
option 'server' deprecated
[2022-09-20 10:08:21] Please use server=on instead
[2022-09-20 10:08:21] qemu: -chardev
socket,server,nowait,path=/tmp/qemu.qmp,id=m2: warning: short-form boolean
option 'nowait' deprecated
[2022-09-20 10:08:21] Please use wait=off instead
[2022-09-20 10:08:21] + tee /proc/self/fd/2
[2022-09-20 10:08:21] random: qemu: uninitialized urandom read (16 bytes
read)
[2022-09-20 10:08:21] + echo '{"execute": "qmp_capabilities"}'
[2022-09-20 10:08:21] {"QMP": {"version": {"qemu": {"micro": 0, "minor": 1,
"major": 6}, "package": ""}, "capabilities": ["oob"]}}

[2022-09-20 10:08:21] {"execute": "qmp_capabilities"}
[2022-09-20 10:08:21] qubes_gui/init: 573
[2022-09-20 10:08:21] qubes_gui/init: 582
[2022-09-20 10:08:21] qubes_gui/init: 584
[2022-09-20 10:08:21] qubes_gui/init[611]: version sent, waiting for xorg
conf
[2022-09-20 10:08:21] {"return": {}}

[2022-09-20 10:08:21] + '[' '!' -e /tmp/qemu.qmp ]
[2022-09-20 10:08:21] + '[' -e /proc/self/fd/4 ]
[2022-09-20 10:08:21] + '[' -e /proc/self/fd/3 ]
[2022-09-20 10:08:21] + true
[2022-09-20 10:08:21] + printf '==== Press enter for shell ====\n'
[2022-09-20 10:08:21] ==== Press enter for shell ====
[2022-09-20 10:08:21] + read
[2022-09-20 10:08:21] + vchan-socket-proxy 0 device-model/19/qmp-vchan
/tmp/qemu.qmp
[2022-09-20 10:08:21] written 110 bytes to vchan
[2022-09-20 10:08:21] written 34 bytes to vchan
[2022-09-20 10:08:22] [00:06.0] xen_pt_realize: Assigning real physical
device 07:00.0 to devfn 0x30
[2022-09-20 10:08:22] [00:06.0] xen_pt_register_regions: IO region 0
registered (size=0x00000100 base_addr=0x00003000 type: 0x1)
[2022-09-20 10:08:22] [00:06.0] xen_pt_register_regions: IO region 2
registered (size=0x00001000 base_addr=0xb4304000 type: 0x4)
[2022-09-20 10:08:22] [00:06.0] xen_pt_register_regions: IO region 4
registered (size=0x00004000 base_addr=0xb4300000 type: 0x4)
[2022-09-20 10:08:22] [00:06.0] xen_pt_config_reg_init: Offset 0x000e
mismatch! Emulated=0x0080, host=0x0000, syncing to 0x0000.
[2022-09-20 10:08:22] [00:06.0] xen_pt_config_reg_init: Offset 0x0010
mismatch! Emulated=0x0000, host=0x3001, syncing to 0x3001.
[2022-09-20 10:08:22] [00:06.0] xen_pt_config_reg_init: Offset 0x0018
mismatch! Emulated=0x0000, host=0xb4304004, syncing to 0xb4304004.
[2022-09-20 10:08:22] [00:06.0] xen_pt_config_reg_init: Offset 0x0020
mismatch! Emulated=0x0000, host=0xb4300004, syncing to 0xb4300004.
[2022-09-20 10:08:22] [00:06.0] xen_pt_config_reg_init: Offset 0x0042
mismatch! Emulated=0x0000, host=0x07c3, syncing to 0x0603.
[2022-09-20 10:08:22] [00:06.0] xen_pt_config_reg_init: Offset 0x0052
mismatch! Emulated=0x0000, host=0x0080, syncing to 0x0080.
[2022-09-20 10:08:22] [00:06.0] xen_pt_config_reg_init: Offset 0x0074
mismatch! Emulated=0x0000, host=0x5908cc0, syncing to 0x5908cc0.
[2022-09-20 10:08:22] [00:06.0] xen_pt_config_reg_init: Offset 0x007a
mismatch! Emulated=0x0000, host=0x0010, syncing to 0x0010.
[2022-09-20 10:08:22] [00:06.0] xen_pt_config_reg_init: Offset 0x0082
mismatch! Emulated=0x0000, host=0x1011, syncing to 0x1011.
[2022-09-20 10:08:22] [00:06.0] xen_pt_pci_intx: intx=1
[2022-09-20 10:08:22] [00:06.0] xen_pt_realize: Real physical device
07:00.0 registered successfully
[2022-09-20 10:08:22] written 34 bytes to vchan
[2022-09-20 10:08:22] written 2048 bytes to vchan
[2022-09-20 10:08:22] written 979 bytes to vchan
[2022-09-20 10:08:22] written 110 bytes to vchan
[2022-09-20 10:08:22] written 34 bytes to vchan
[2022-09-20 10:08:22] written 34 bytes to vchan
[2022-09-20 10:08:22] qubes_gui/init[622]: got xorg conf, creating window
[2022-09-20 10:08:22] qubes_gui/init: 632
[2022-09-20 10:08:22] configure msg, x/y 640 325 (was 0 0), w/h 640 480
[2022-09-20 10:08:23] random: crng init done
[2022-09-20 10:08:43] [00:06.0] Write-back to unknown field 0x44
(partially) inhibited (0x0000ffff)
[2022-09-20 10:08:43] [00:06.0] If the device doesn't work, try enabling
permissive mode
[2022-09-20 10:08:43] [00:06.0] (unsafe) and if it helps report the problem
to xen-devel
[2022-09-20 10:08:43] [00:06.0] xen_pt_msgctrl_reg_write: setup MSI
(register: 81).
[2022-09-20 10:08:43] [00:06.0] xen_pt_msi_setup: MSI mapped with pirq 151.
[2022-09-20 10:08:43] [00:06.0] msi_msix_update: Updating MSI with pirq 151
gvec 0x72 gflags 0x0 (entry: 0x0)

BR Adam




wt., 20 wrz 2022 o 09:41 Adam Szewczyk <szewcson@gmail.com> napisał(a):

> (XEN) Built-in command line: ept=exec-sp spec-ctrl=unpriv-mmio
>> (XEN) parameter "no-real-mode" unknown!
>>  Xen 4.14.5
>> (XEN) Xen version 4.14.5 (mockbuild@[unknown]) (gcc (GCC) 10.3.1
>> 20210422 (Red Hat 10.3.1-1)) debug=n  Wed Aug 24 00:00:00 UTC 2022
>> (XEN) Latest ChangeSet:
>> (XEN) Bootloader: GRUB 2.04
>> (XEN) Command line: placeholder console=none dom0_mem=min:1024M
>> dom0_mem=max:4096M ucode=scan smt=off gnttab_max_frames=2048
>> gnttab_max_maptrack_frames=4096 no-real-mode edd=off
>> (XEN) Xen image load base address: 0x9c200000
>> (XEN) Video information:
>> (XEN)  VGA is graphics mode 1920x1080, 32 bpp
>> (XEN) Disc information:
>> (XEN)  Found 0 MBR signatures
>> (XEN)  Found 2 EDD information structures
>> (XEN) EFI RAM map:
>> (XEN)  [0000000000000000, 000000000009efff] (usable)
>> (XEN)  [000000000009f000, 00000000000fffff] (reserved)
>> (XEN)  [0000000000100000, 0000000086466fff] (usable)
>> (XEN)  [0000000086467000, 0000000086d66fff] (reserved)
>> (XEN)  [0000000086d67000, 000000009cf7dfff] (usable)
>> (XEN)  [000000009cf7e000, 000000009e49dfff] (reserved)
>> (XEN)  [000000009e49e000, 000000009eb8dfff] (ACPI NVS)
>> (XEN)  [000000009eb8e000, 000000009ec0dfff] (ACPI data)
>> (XEN)  [000000009ec0e000, 000000009ec0efff] (usable)
>> (XEN)  [000000009ec0f000, 000000009fffffff] (reserved)
>> (XEN)  [00000000e0000000, 00000000efffffff] (reserved)
>> (XEN)  [00000000fe000000, 00000000fe010fff] (reserved)
>> (XEN)  [00000000fed10000, 00000000fed19fff] (reserved)
>> (XEN)  [00000000fed84000, 00000000fed84fff] (reserved)
>> (XEN)  [00000000fee00000, 00000000fee00fff] (reserved)
>> (XEN)  [00000000ff600000, 00000000ffffffff] (reserved)
>> (XEN)  [0000000100000000, 000000085dffffff] (usable)
>> (XEN) ACPI: RSDP 9EC0D014, 0024 (r2 LENOVO)
>> (XEN) ACPI: XSDT 9EBEE188, 00FC (r1 LENOVO CB-01           1
>> 1000013)
>> (XEN) ACPI: FACP 9EBF1000, 010C (r5 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: DSDT 9EBBD000, 2FF34 (r2 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: FACS 9EB0D000, 0040
>> (XEN) ACPI: UEFI 9EC0C000, 0236 (r1 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: SSDT 9EC0A000, 1B1C (r2 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: SSDT 9EC06000, 31D0 (r2 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: UEFI 9EC05000, 0042 (r1 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: SSDT 9EC04000, 045A (r2 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: SSDT 9EC03000, 0046 (r2 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: TPM2 9EC02000, 0034 (r3 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: POAT 9EC01000, 0055 (r3 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: SSDT 9EBFC000, 44B6 (r2 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: LPIT 9EBFB000, 0094 (r1 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: WSMT 9EBFA000, 0028 (r1 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: SSDT 9EBF9000, 0C2F (r2 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: DBGP 9EBF8000, 0034 (r1 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: DBG2 9EBF7000, 0061 (r0 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: SSDT 9EBF6000, 0896 (r2 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: SSDT 9EBF3000, 2F89 (r2 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: ASF! 9EBF2000, 00A5 (r32 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: HPET 9EBF0000, 0038 (r1 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: APIC 9EBEF000, 012C (r3 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: MCFG 9EBED000, 003C (r1 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: SSDT 9EBBA000, 2BBF (r2 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: DMAR 9EBB9000, 0070 (r1 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: SSDT 9EBB6000, 2B68 (r1 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: SSDT 9EBB5000, 004C (r2 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: FPDT 9EBB4000, 0044 (r1 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) ACPI: BGRT 9EBB3000, 0038 (r1 LENOVO CB-01           1 ACPI
>>  40000)
>> (XEN) System RAM: 32678MB (33462392kB)
>> (XEN) Domain heap initialised
>> (XEN) ACPI: 32/64X FACS address mismatch in FADT -
>> 9eb0d000/0000000000000000, using 32
>> (XEN) IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
>> (XEN) Enabling APIC mode:  Phys.  Using 1 I/O APICs
>> (XEN) Switched to APIC driver x2apic_cluster
>> (XEN) CPU0: TSC: ratio: 216 / 2
>> (XEN) CPU0: bus: 100 MHz base: 2600 MHz max: 4500 MHz
>> (XEN) CPU0: 800 ... 2600 MHz
>> (XEN) xstate: size: 0x440 and states: 0x1f
>> (XEN) Speculative mitigation facilities:
>> (XEN)   Hardware hints: RSBA
>> (XEN)   Hardware features: IBPB IBRS STIBP SSBD L1D_FLUSH MD_CLEAR
>> SRBDS_CTRL
>> (XEN)   Compiled-in support: INDIRECT_THUNK
>> (XEN)   Xen settings: BTI-Thunk JMP, SPEC_CTRL: IBRS+ STIBP+ SSBD-,
>> Other: SRB_LOCK+ IBPB-ctxt L1D_FLUSH VERW BRANCH_HARDEN
>> (XEN)   L1TF: believed vulnerable, maxphysaddr L1D 46, CPUID 39, Safe
>> address 8000000000
>> (XEN)   Support for HVM VMs: MSR_SPEC_CTRL RSB EAGER_FPU MD_CLEAR
>> (XEN)   Support for PV VMs: MSR_SPEC_CTRL EAGER_FPU MD_CLEAR
>> (XEN)   XPTI (64-bit PV only): Dom0 enabled, DomU enabled (with PCID)
>> (XEN)   PV L1TF shadowing: Dom0 disabled, DomU enabled
>> (XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
>> (XEN) Initializing Credit2 scheduler
>> (XEN) Disabling HPET for being unreliable
>> (XEN) Platform timer is 3.580MHz ACPI PM Timer
>> (XEN) Detected 2591.999 MHz processor.
>> (XEN) Unknown cachability for MFNs 0xa0-0xff
>> (XEN) Unknown cachability for MFNs 0x9f000-0x9ffff
>> (XEN) Intel VT-d iommu 0 supported page sizes: 4kB, 2MB, 1GB
>> (XEN) Intel VT-d Snoop Control enabled.
>> (XEN) Intel VT-d Dom0 DMA Passthrough not enabled.
>> (XEN) Intel VT-d Queued Invalidation enabled.
>> (XEN) Intel VT-d Interrupt Remapping enabled.
>> (XEN) Intel VT-d Posted Interrupt not enabled.
>> (XEN) Intel VT-d Shared EPT tables enabled.
>> (XEN) I/O virtualisation enabled
>> (XEN)  - Dom0 mode: Relaxed
>> (XEN) Interrupt remapping enabled
>> (XEN) Enabled directed EOI with ioapic_ack_old on!
>> (XEN) ENABLING IO-APIC IRQs
>> (XEN)  -> Using old ACK method
>> (XEN) Allocated console ring of 32 KiB.
>> (XEN) VMX: Supported advanced features:
>> (XEN)  - APIC MMIO access virtualisation
>> (XEN)  - APIC TPR shadow
>> (XEN)  - Extended Page Tables (EPT)
>> (XEN)  - Virtual-Processor Identifiers (VPID)
>> (XEN)  - Virtual NMI
>> (XEN)  - MSR direct-access bitmap
>> (XEN)  - Unrestricted Guest
>> (XEN)  - VM Functions
>> (XEN)  - Virtualisation Exceptions
>> (XEN)  - Page Modification Logging
>> (XEN) HVM: ASIDs enabled.
>> (XEN) HVM: VMX enabled
>> (XEN) HVM: Hardware Assisted Paging (HAP) detected
>> (XEN) HVM: HAP page sizes: 4kB, 2MB, 1GB
>> (XEN) Brought up 6 CPUs
>> (XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
>> (XEN) Dom0 has maximum 952 PIRQs
>> (XEN)  Xen  kernel: 64-bit, lsb, compat32
>> (XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x4000000
>> (XEN) PHYSICAL MEMORY ARRANGEMENT:
>> (XEN)  Dom0 alloc.:   0000000838000000->0000000840000000 (1007932 pages
>> to be allocated)
>> (XEN)  Init. ramdisk: 000000085c13c000->000000085dffff1d
>> (XEN) VIRTUAL MEMORY ARRANGEMENT:
>> (XEN)  Loaded kernel: ffffffff81000000->ffffffff84000000
>> (XEN)  Init. ramdisk: 0000000000000000->0000000000000000
>> (XEN)  Phys-Mach map: 0000008000000000->0000008000800000
>> (XEN)  Start info:    ffffffff84000000->ffffffff840004b8
>> (XEN)  Xenstore ring: 0000000000000000->0000000000000000
>> (XEN)  Console ring:  0000000000000000->0000000000000000
>> (XEN)  Page tables:   ffffffff84001000->ffffffff84026000
>> (XEN)  Boot stack:    ffffffff84026000->ffffffff84027000
>> (XEN)  TOTAL:         ffffffff80000000->ffffffff84400000
>> (XEN)  ENTRY ADDRESS: ffffffff830fb1c0
>> (XEN) Dom0 has maximum 6 VCPUs
>> (XEN) Initial low memory virq threshold set at 0x4000 pages.
>> (XEN) Scrubbing Free RAM in background
>> (XEN) Std. Loglevel: Errors and warnings
>> (XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings)
>> (XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
>> (XEN) Freed 580kB init memory
>> (XEN) MSI information:
>> (XEN)  IOMMU  120 vec=30 lowest  edge   assert  log lowest dest=00000001
>> mask=1/  /?
>> (XEN)  MSI    121 vec=c8 lowest  edge   assert  log lowest dest=00000001
>> mask=0/  /?
>> (XEN)  MSI    122 vec=d0 lowest  edge   assert  log lowest dest=00000001
>> mask=0/  /?
>> (XEN)  MSI    123 vec=e0 lowest  edge   assert  log lowest dest=00000001
>> mask=0/  /?
>> (XEN)  MSI    124 vec=31 lowest  edge   assert  log lowest dest=00000040
>> mask=0/  /?
>> (XEN)  MSI-X  125 vec=51 lowest  edge   assert  log lowest dest=00000040
>> mask=1/  /0
>> (XEN)  MSI-X  126 vec=59 lowest  edge   assert  log lowest dest=00000004
>> mask=1/  /0
>> (XEN)  MSI-X  127 vec=61 lowest  edge   assert  log lowest dest=00000040
>> mask=1/  /0
>> (XEN)  MSI-X  128 vec=69 lowest  edge   assert  log lowest dest=00000001
>> mask=1/  /0
>> (XEN)  MSI-X  129 vec=71 lowest  edge   assert  log lowest dest=00000010
>> mask=1/  /0
>> (XEN)  MSI-X  130 vec=79 lowest  edge   assert  log lowest dest=00000040
>> mask=1/  /0
>> (XEN)  MSI-X  131 vec=81 lowest  edge   assert  log lowest dest=00000001
>> mask=1/  /0
>> (XEN)  MSI    132 vec=d9 lowest  edge   assert  log lowest dest=00000100
>> mask=0/  /?
>> (XEN)  MSI    133 vec=c9 lowest  edge   assert  log lowest dest=00000004
>> mask=0/  /?
>> (XEN)  MSI    134 vec=99 lowest  edge   assert  log lowest dest=00000100
>> mask=0/  /?
>> (XEN)  MSI    135 vec=a9 lowest  edge   assert  log lowest dest=00000555
>> mask=0/  /?
>> (XEN)  MSI    136 vec=b1 lowest  edge   assert  log lowest dest=00000010
>> mask=0/  /?
>> (XEN)  MSI    137 vec=b9 lowest  edge   assert  log lowest dest=00000010
>> mask=0/  /?
>> (XEN)  MSI    138 vec=d1 lowest  edge   assert  log lowest dest=00000100
>> mask=0/  /?
>> (XEN) IRQ information:
>> (XEN)    IRQ:   0 vec:f0 IO-APIC-edge    status=000 aff:{0}/{0}
>> time.c#timer_interrupt()
>> (XEN)    IRQ:   1 vec:39 IO-APIC-edge    status=034 aff:{8}/{0-11}
>> in-flight=0 d0:  1(---)
>> (XEN)    IRQ:   3 vec:40 IO-APIC-edge    status=002 aff:{0}/{0} mapped,
>> unbound
>> (XEN)    IRQ:   4 vec:48 IO-APIC-edge    status=002 aff:{0}/{0} mapped,
>> unbound
>> (XEN)    IRQ:   5 vec:50 IO-APIC-edge    status=002 aff:{0}/{0} mapped,
>> unbound
>> (XEN)    IRQ:   6 vec:58 IO-APIC-edge    status=002 aff:{0}/{0} mapped,
>> unbound
>> (XEN)    IRQ:   7 vec:60 IO-APIC-edge    status=002 aff:{0}/{0} mapped,
>> unbound
>> (XEN)    IRQ:   8 vec:68 IO-APIC-edge    status=030 aff:{0}/{0}
>> in-flight=0 d0:  8(---)
>> (XEN)    IRQ:   9 vec:b0 IO-APIC-level   status=030 aff:{8}/{0-11}
>> in-flight=0 d0:  9(---)
>> (XEN)    IRQ:  10 vec:78 IO-APIC-edge    status=002 aff:{0}/{0} mapped,
>> unbound
>> (XEN)    IRQ:  11 vec:88 IO-APIC-edge    status=002 aff:{0}/{0} mapped,
>> unbound
>> (XEN)    IRQ:  12 vec:90 IO-APIC-edge    status=002 aff:{0}/{0} mapped,
>> unbound
>> (XEN)    IRQ:  13 vec:98 IO-APIC-edge    status=002 aff:{0-15}/{0}
>> mapped, unbound
>> (XEN)    IRQ:  14 vec:a0 IO-APIC-level   status=030 aff:{0}/{0}
>> in-flight=0 d0: 14(---)
>> (XEN)    IRQ:  15 vec:a8 IO-APIC-edge    status=002 aff:{0}/{0} mapped,
>> unbound
>> (XEN)    IRQ:  16 vec:b8 IO-APIC-level   status=030 aff:{2}/{0-11}
>> in-flight=0 d0: 16(---),d3: 16(-M-)
>> (XEN)    IRQ:  17 vec:d8 IO-APIC-level   status=010 aff:{10}/{0-11}
>> in-flight=2 d0: 17(P-M),d7: 17(-MM)
>> (XEN)    IRQ:  18 vec:c0 IO-APIC-level   status=030 aff:{8}/{0-11}
>> in-flight=0 d0: 18(---),d3: 18(-M-)
>> (XEN)    IRQ:  19 vec:a1 IO-APIC-level   status=002 aff:{0-15}/{0-11}
>> mapped, unbound
>> (XEN)    IRQ:  20 vec:e8 IO-APIC-level   status=030 aff:{0}/{0-11}
>> in-flight=0 d0: 20(---)
>> (XEN)    IRQ:  83 vec:41 IO-APIC-level   status=030 aff:{4}/{0-11}
>> in-flight=0 d0: 83(---)
>> (XEN)    IRQ: 120 vec:30 DMA_MSI         status=000 aff:{0-15}/{0}
>> iommu.c#iommu_page_fault()
>> (XEN)    IRQ: 121 vec:c8 PCI-MSI         status=030 aff:{0}/{0-11}
>> in-flight=0 d0:951(---)
>> (XEN)    IRQ: 122 vec:d0 PCI-MSI         status=030 aff:{0}/{0-11}
>> in-flight=0 d0:950(---)
>> (XEN)    IRQ: 123 vec:e0 PCI-MSI         status=030 aff:{0}/{0-11}
>> in-flight=0 d0:949(---)
>> (XEN)    IRQ: 124 vec:31 PCI-MSI         status=030 aff:{6}/{0-11}
>> in-flight=0 d0:948(---)
>> (XEN)    IRQ: 125 vec:51 PCI-MSI/-X      status=030 aff:{6}/{0-11}
>> in-flight=0 d0:947(---)
>> (XEN)    IRQ: 126 vec:59 PCI-MSI/-X      status=010 aff:{2}/{0-11}
>> in-flight=0 d0:946(---)
>> (XEN)    IRQ: 127 vec:61 PCI-MSI/-X      status=030 aff:{6}/{0-11}
>> in-flight=0 d0:945(---)
>> (XEN)    IRQ: 128 vec:69 PCI-MSI/-X      status=030 aff:{0}/{0-11}
>> in-flight=0 d0:944(---)
>> (XEN)    IRQ: 129 vec:71 PCI-MSI/-X      status=030 aff:{4}/{0-11}
>> in-flight=0 d0:943(---)
>> (XEN)    IRQ: 130 vec:79 PCI-MSI/-X      status=030 aff:{6}/{0-11}
>> in-flight=0 d0:942(---)
>> (XEN)    IRQ: 131 vec:81 PCI-MSI/-X      status=030 aff:{0}/{0-11}
>> in-flight=0 d0:941(---)
>> (XEN)    IRQ: 132 vec:d9 PCI-MSI         status=030 aff:{8}/{0-11}
>> in-flight=0 d7:151(-M-)
>> (XEN)    IRQ: 133 vec:c9 PCI-MSI         status=030 aff:{2}/{0-11}
>> in-flight=0 d3:151(---)
>> (XEN)    IRQ: 134 vec:99 PCI-MSI         status=030 aff:{8}/{0-11}
>> in-flight=0 d0:938(---)
>> (XEN)    IRQ: 135 vec:a9 PCI-MSI         status=002 aff:{0-15}/{0-11}
>> mapped, unbound
>> (XEN)    IRQ: 136 vec:b1 PCI-MSI         status=030 aff:{4}/{0-11}
>> in-flight=0 d0:936(---)
>> (XEN)    IRQ: 137 vec:b9 PCI-MSI         status=030 aff:{4}/{0-11}
>> in-flight=0 d0:935(---)
>> (XEN)    IRQ: 138 vec:d1 PCI-MSI         status=010 aff:{8}/{0-11}
>> in-flight=0 d3:150(---)
>> (XEN) Direct vector information:
>> (XEN)    0x22 -> irq_move_cleanup_interrupt()
>> (XEN)    0xf1 -> mce_intel.c#cmci_interrupt()
>> (XEN)    0xf2 -> mce_intel.c#intel_thermal_interrupt()
>> (XEN)    0xf9 -> pmu_apic_interrupt()
>> (XEN)    0xfa -> apic_timer_interrupt()
>> (XEN)    0xfb -> call_function_interrupt()
>> (XEN)    0xfc -> event_check_interrupt()
>> (XEN)    0xfd -> invalidate_interrupt()
>> (XEN)    0xfe -> error_interrupt()
>> (XEN)    0xff -> spurious_interrupt()
>> (XEN) IO-APIC interrupt information:
>> (XEN)     IRQ  0 Vec240:
>> (XEN)       Apic 0x00, Pin  2: vec=f0 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000001
>> (XEN)     IRQ  1 Vec 57:
>> (XEN)       Apic 0x00, Pin  1: vec=39 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000100
>> (XEN)     IRQ  3 Vec 64:
>> (XEN)       Apic 0x00, Pin  3: vec=40 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000001
>> (XEN)     IRQ  4 Vec 72:
>> (XEN)       Apic 0x00, Pin  4: vec=48 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000001
>> (XEN)     IRQ  5 Vec 80:
>> (XEN)       Apic 0x00, Pin  5: vec=50 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000001
>> (XEN)     IRQ  6 Vec 88:
>> (XEN)       Apic 0x00, Pin  6: vec=58 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000001
>> (XEN)     IRQ  7 Vec 96:
>> (XEN)       Apic 0x00, Pin  7: vec=60 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000001
>> (XEN)     IRQ  8 Vec104:
>> (XEN)       Apic 0x00, Pin  8: vec=68 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000001
>> (XEN)     IRQ  9 Vec176:
>> (XEN)       Apic 0x00, Pin  9: vec=b0 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=L mask=0 dest_id:00000100
>> (XEN)     IRQ 10 Vec120:
>> (XEN)       Apic 0x00, Pin 10: vec=78 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000001
>> (XEN)     IRQ 11 Vec136:
>> (XEN)       Apic 0x00, Pin 11: vec=88 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000001
>> (XEN)     IRQ 12 Vec144:
>> (XEN)       Apic 0x00, Pin 12: vec=90 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000001
>> (XEN)     IRQ 13 Vec152:
>> (XEN)       Apic 0x00, Pin 13: vec=98 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=1 dest_id:00000001
>> (XEN)     IRQ 14 Vec160:
>> (XEN)       Apic 0x00, Pin 14: vec=a0 delivery=LoPri dest=L status=0
>> polarity=1 irr=0 trig=L mask=0 dest_id:00000001
>> (XEN)     IRQ 15 Vec168:
>> (XEN)       Apic 0x00, Pin 15: vec=a8 delivery=LoPri dest=L status=0
>> polarity=0 irr=0 trig=E mask=0 dest_id:00000001
>> (XEN)     IRQ 16 Vec184:
>> (XEN)       Apic 0x00, Pin 16: vec=b8 delivery=LoPri dest=L status=0
>> polarity=1 irr=0 trig=L mask=0 dest_id:00000004
>> (XEN)     IRQ 17 Vec216:
>> (XEN)       Apic 0x00, Pin 17: vec=d8 delivery=LoPri dest=L status=1
>> polarity=1 irr=1 trig=L mask=0 dest_id:00000400
>> (XEN)     IRQ 18 Vec192:
>> (XEN)       Apic 0x00, Pin 18: vec=c0 delivery=LoPri dest=L status=0
>> polarity=1 irr=0 trig=L mask=0 dest_id:00000100
>> (XEN)     IRQ 19 Vec161:
>> (XEN)       Apic 0x00, Pin 19: vec=a1 delivery=LoPri dest=L status=0
>> polarity=1 irr=0 trig=L mask=1 dest_id:00000555
>> (XEN)     IRQ 20 Vec232:
>> (XEN)       Apic 0x00, Pin 20: vec=e8 delivery=LoPri dest=L status=0
>> polarity=1 irr=0 trig=L mask=0 dest_id:00000001
>> (XEN)     IRQ 83 Vec 65:
>> (XEN)       Apic 0x00, Pin 83: vec=41 delivery=LoPri dest=L status=0
>> polarity=1 irr=0 trig=L mask=0 dest_id:00000010
>
>
>  Name                                        ID   Mem VCPUs State Time(s)
>> Domain-0                                     0  4080     6     r-----
>> 288.6
>> sys-usb                                      3   284     2     -b----
>>  20.5
>> sys-usb-dm                                   4   144     1     -b----
>>   3.5
>> openbsd-71                                   7   511     2     -b----
>>  63.0
>> openbsd-71-dm                                8   144     1     -b----
>>  14.0
>>
>
> How I can enable install this debug hypervisor? I have problems finding
> anything about it.
>
> I don't have logs with qemu in the name, instead I have gmp-proxy logs.
> But their all looks empty.
>
> BR Adam
>
> pon., 19 wrz 2022 o 11:21 Roger Pau Monné <roger.pau@citrix.com>
> napisał(a):
>
>> On Fri, Sep 16, 2022 at 05:08:59PM +0200, Adam Szewczyk wrote:
>> > Sorry, I always forgot that default answer is "answer" to not "answer to
>> > all".
>> >
>> > My xl dmesg after calling those debug-keys is:
>>
>> Trimming the trace:
>>
>> > (XEN) MSI information:
>>
>> > (XEN)  MSI    125 vec=72 lowest  edge   assert  log lowest dest=00000100
>> > mask=0/  /?
>>
>> > (XEN)  MSI    138 vec=62 lowest  edge   assert  log lowest dest=00000001
>> > mask=0/  /?
>> > (XEN)  MSI    139 vec=6a lowest  edge   assert  log lowest dest=00000010
>> > mask=0/  /?
>>
>> > (XEN) IRQ information:
>>
>> > (XEN)    IRQ: 125 vec:72 PCI-MSI         status=030 aff:{8}/{0-11}
>> > in-flight=0 d94:151(-M-)
>>
>> > (XEN)    IRQ: 138 vec:62 PCI-MSI         status=030 aff:{0}/{0-11}
>> > in-flight=0 d92:151(---)
>> > (XEN)    IRQ: 139 vec:6a PCI-MSI         status=010 aff:{4}/{0-11}
>> > in-flight=0 d92:150(---)
>>
>> Was domain with ID 94 your OpenBSD box? There's another domain with
>> passthrough devices (ID 92).
>>
>> If your OpenBSD domain is the one with ID 94 it seems like the
>> interrupt source is masked, so no interrupts will be injected to the
>> guest.  That however might be just the response from the guest after
>> seeing that the interrupt source is not behaving correctly.
>>
>> Are yuo using a debug hypervisor? If not it would be helpful to do so,
>> in order to maybe get more information on `xl dmesg`.
>>
>> Can you also paste the QEMU log for the OpeNSD domain?  Those logs are
>> in /var/log/xen/qemu-dm-<domain name>.log, on most distros, not sure
>> if QubesOS puts them at the same place.
>>
>> Regards, Roger.
>>
>

[-- Attachment #2: Type: text/html, Size: 150028 bytes --]

^ permalink raw reply	[relevance 4%]

* USB passthrough fails with 64GB drive but works fine with 8GB drive
@ 2022-08-18  6:18  3% A Sudheer
  0 siblings, 0 replies; 200+ results
From: A Sudheer @ 2022-08-18  6:18 UTC (permalink / raw)
  To: xen-devel, xen-users

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

Hi All

On XEN-4.16 with Ubuntu 22.04 Dom0 and HVM-DomU, I tried to do a USB mass
storage device passthrough to DomU.
I followed the PVUSB method mentioned in
https://wiki.xenproject.org/wiki/Xen_USB_Passthrough.

With 8GB sandisk pen drive, i am able to do USB passthrough to DomU.
But with 64GB sandisk pendrive, though able to mount/umount in Dom0, not
able to do passthrough to DomU.
I see IO errors in dmesg  when tried to access the usb disk folder in DomU.
Both 8GB and 64GB disks are 3.2Gen1. (Not tried with 16GB & 32GB drives).

Does anyone know why 64GB usb disk passthrough fails with the below error ?

Dmesg Error:
-----------------
[  128.333409] usb 2-1: reset high-speed USB device number 2 using ehci-pci
[  128.502872] sd 2:0:0:0: [sda] tag#0 FAILED Result: hostbyte=DID_ERROR
driverbyte=DRIVER_OK cmd_age=0s
[  128.502881] sd 2:0:0:0: [sda] tag#0 CDB: Read(10) 28 00 00 00 7a b7 00
00 3f 00
[  128.502883] blk_update_request: I/O error, dev sda, sector 31415 op
0x0:(READ) flags 0x80700 phys_seg 63 prio class 0

Complete dmesg log:
---------------------------
[    0.000000] Linux version 5.15.0-25-generic (buildd@ubuntu) (gcc (Ubuntu
11.2.0-19ubuntu1) 11.2.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #25-Ubuntu
SMP Wed Mar 30 15:54:22 UTC 2022 (Ubuntu 5.15.0-25.25-generic 5.15.30)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-25-generic
root=UUID=a1f59e2d-4208-42bb-90ad-f19c9608db6b ro quiet splash vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point
registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832
bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff]
reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff]
reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000efffefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000effff000-0x00000000efffffff]
reserved
[    0.000000] BIOS-e820: [mem 0x00000000fc000000-0x00000000fc00afff] ACPI
NVS
[    0.000000] BIOS-e820: [mem 0x00000000fc00b000-0x00000000ffffffff]
reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000010f7fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Xen HVM domU, BIOS 4.16.2-pre 07/23/2022
[    0.000000] Hypervisor detected: Xen HVM
[    0.000000] Xen version 4.16.
[    0.000000] platform_pci_unplug: Netfront and the Xen platform PCI
driver have been compiled for this kernel: unplug emulated NICs.
[    0.000000] platform_pci_unplug: Blkfront and the Xen platform PCI
driver have been compiled for this kernel: unplug emulated disks.
               You might have to change the root device
               from /dev/hd[a-d] to /dev/xvd[a-d]
               in your root= kernel command line option
[    0.000348] HVMOP_pagetable_dying not supported
[    0.019897] tsc: Fast TSC calibration using PIT
[    0.019899] tsc: Detected 2096.153 MHz processor
[    0.019901] tsc: Detected 2096.060 MHz TSC
[    0.020426] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.020429] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.020434] last_pfn = 0x10f800 max_arch_pfn = 0x400000000
[    0.020507] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT

[    0.020726] last_pfn = 0xeffff max_arch_pfn = 0x400000000
[    0.022710] found SMP MP-table at [mem 0x000f5aa0-0x000f5aaf]
[    0.022731] Using GB pages for direct mapping
[    0.022866] RAMDISK: [mem 0x309b9000-0x344d3fff]
[    0.022871] ACPI: Early table checksum verification disabled
[    0.022876] ACPI: RSDP 0x00000000000F59F0 000024 (v02 Xen   )
[    0.022880] ACPI: XSDT 0x00000000FC00A660 000054 (v01 Xen    HVM
 00000000 HVML 00000000)
[    0.022885] ACPI: FACP 0x00000000FC00A370 0000F4 (v04 Xen    HVM
 00000000 HVML 00000000)
[    0.022890] ACPI: DSDT 0x00000000FC001040 0092A3 (v02 Xen    HVM
 00000000 INTL 20200925)
[    0.022893] ACPI: FACS 0x00000000FC001000 000040
[    0.022895] ACPI: FACS 0x00000000FC001000 000040
[    0.022897] ACPI: APIC 0x00000000FC00A470 000080 (v02 Xen    HVM
 00000000 HVML 00000000)
[    0.022899] ACPI: HPET 0x00000000FC00A570 000038 (v01 Xen    HVM
 00000000 HVML 00000000)
[    0.022901] ACPI: WAET 0x00000000FC00A5B0 000028 (v01 Xen    HVM
 00000000 HVML 00000000)
[    0.022903] ACPI: SSDT 0x00000000FC00A5E0 000031 (v02 Xen    HVM
 00000000 INTL 20200925)
[    0.022905] ACPI: SSDT 0x00000000FC00A620 000031 (v02 Xen    HVM
 00000000 INTL 20200925)
[    0.022907] ACPI: Reserving FACP table memory at [mem
0xfc00a370-0xfc00a463]
[    0.022908] ACPI: Reserving DSDT table memory at [mem
0xfc001040-0xfc00a2e2]
[    0.022909] ACPI: Reserving FACS table memory at [mem
0xfc001000-0xfc00103f]
[    0.022910] ACPI: Reserving FACS table memory at [mem
0xfc001000-0xfc00103f]
[    0.022910] ACPI: Reserving APIC table memory at [mem
0xfc00a470-0xfc00a4ef]
[    0.022911] ACPI: Reserving HPET table memory at [mem
0xfc00a570-0xfc00a5a7]
[    0.022912] ACPI: Reserving WAET table memory at [mem
0xfc00a5b0-0xfc00a5d7]
[    0.022912] ACPI: Reserving SSDT table memory at [mem
0xfc00a5e0-0xfc00a610]
[    0.022913] ACPI: Reserving SSDT table memory at [mem
0xfc00a620-0xfc00a650]
[    0.023846] No NUMA configuration found
[    0.023847] Faking a node at [mem 0x0000000000000000-0x000000010f7fffff]
[    0.023853] NODE_DATA(0) allocated [mem 0x10f7d6000-0x10f7fffff]
[    0.024106] Zone ranges:
[    0.024106]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.024108]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.024109]   Normal   [mem 0x0000000100000000-0x000000010f7fffff]
[    0.024110]   Device   empty
[    0.024111] Movable zone start for each node
[    0.024113] Early memory node ranges
[    0.024114]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.024115]   node   0: [mem 0x0000000000100000-0x00000000efffefff]
[    0.024116]   node   0: [mem 0x0000000100000000-0x000000010f7fffff]
[    0.024117] Initmem setup node 0 [mem
0x0000000000001000-0x000000010f7fffff]
[    0.024121] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.024147] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.034654] On node 0, zone Normal: 1 pages in unavailable ranges
[    0.034688] On node 0, zone Normal: 2048 pages in unavailable ranges
[    0.036207] ACPI: PM-Timer IO Port: 0xb008
[    0.036257] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI
0-47
[    0.036260] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.036262] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 low level)
[    0.036263] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 low level)
[    0.036263] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 low level)
[    0.036266] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.036267] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.036276] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.036286] PM: hibernation: Registered nosave memory: [mem
0x00000000-0x00000fff]
[    0.036288] PM: hibernation: Registered nosave memory: [mem
0x0009f000-0x0009ffff]
[    0.036289] PM: hibernation: Registered nosave memory: [mem
0x000a0000-0x000effff]
[    0.036289] PM: hibernation: Registered nosave memory: [mem
0x000f0000-0x000fffff]
[    0.036290] PM: hibernation: Registered nosave memory: [mem
0xeffff000-0xefffffff]
[    0.036291] PM: hibernation: Registered nosave memory: [mem
0xf0000000-0xfbffffff]
[    0.036291] PM: hibernation: Registered nosave memory: [mem
0xfc000000-0xfc00afff]
[    0.036292] PM: hibernation: Registered nosave memory: [mem
0xfc00b000-0xffffffff]
[    0.036293] [mem 0xf0000000-0xfbffffff] available for PCI devices
[    0.036294] Booting paravirtualized kernel on Xen HVM
[    0.036298] clocksource: refined-jiffies: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.036305] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4
nr_node_ids:1
[    0.036720] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u524288
[    0.036725] pcpu-alloc: s212992 r8192 d28672 u524288 alloc=1*2097152
[    0.036727] pcpu-alloc: [0] 0 1 2 3
[    0.036749] xen: PV spinlocks enabled
[    0.036751] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes,
linear)
[    0.036757] Built 1 zonelists, mobility grouping on.  Total pages:
1029919
[    0.036758] Policy zone: Normal
[    0.036759] Kernel command line:
BOOT_IMAGE=/boot/vmlinuz-5.15.0-25-generic
root=UUID=a1f59e2d-4208-42bb-90ad-f19c9608db6b ro quiet splash vt.handoff=7
[    0.036818] Unknown kernel command line parameters "splash
BOOT_IMAGE=/boot/vmlinuz-5.15.0-25-generic", will be passed to user space.
[    0.037443] Dentry cache hash table entries: 524288 (order: 10, 4194304
bytes, linear)
[    0.037771] Inode-cache hash table entries: 262144 (order: 9, 2097152
bytes, linear)
[    0.037813] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.073557] Memory: 3942040K/4185716K available (16393K kernel code,
4385K rwdata, 10784K rodata, 2952K init, 4796K bss, 243416K reserved, 0K
cma-reserved)
[    0.073573] random: get_random_u64 called from
kmem_cache_open+0x2b/0x320 with crng_init=0
[    0.073845] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.073871] ftrace: allocating 50352 entries in 197 pages
[    0.090580] ftrace: allocated 197 pages with 4 groups
[    0.090692] rcu: Hierarchical RCU implementation.
[    0.090693] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.090694] Rude variant of Tasks RCU enabled.
[    0.090695] Tracing variant of Tasks RCU enabled.
[    0.090695] rcu: RCU calculated value of scheduler-enlistment delay is
25 jiffies.
[    0.090696] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.093376] NR_IRQS: 524544, nr_irqs: 864, preallocated irqs: 16
[    0.093409] xen:events: Using FIFO-based ABI
[    0.093414] xen:events: Xen HVM callback vector for event delivery is
enabled
[    0.093618] random: crng done (trusting CPU's manufacturer)
[    0.093648] Console: colour dummy device 80x25
[    0.093656] printk: console [tty0] enabled
[    0.093682] ACPI: Core revision 20210730
[    0.093792] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff,
max_idle_ns: 30580167144 ns
[    0.093843] APIC: Switch to symmetric I/O mode setup
[    0.094256] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.096199] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.117318] tsc: Marking TSC unstable due to TSCs unsynchronized
[    0.117326] Calibrating delay loop (skipped), value calculated using
timer frequency.. 4192.12 BogoMIPS (lpj=8384240)
[    0.117328] pid_max: default: 32768 minimum: 301
[    0.117354] LSM: Security Framework initializing
[    0.117364] landlock: Up and running.
[    0.117365] Yama: becoming mindful.
[    0.117390] AppArmor: AppArmor initialized
[    0.117420] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes,
linear)
[    0.117432] Mountpoint-cache hash table entries: 8192 (order: 4, 65536
bytes, linear)
[    0.117710] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.117751] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.117752] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    0.117756] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user
pointer sanitization
[    0.117758] Spectre V2 : Mitigation: Retpolines
[    0.117758] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB
on context switch
[    0.117759] Spectre V2 : Enabling Restricted Speculation for firmware
calls
[    0.117760] Spectre V2 : mitigation: Enabling conditional Indirect
Branch Prediction Barrier
[    0.117761] Speculative Store Bypass: Mitigation: Speculative Store
Bypass disabled via prctl and seccomp
[    0.121847] Freeing SMP alternatives memory: 40K
[    0.121917] clocksource: xen: mask: 0xffffffffffffffff max_cycles:
0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.121921] Xen: using vcpuop timer interface
[    0.121927] installing Xen timer for CPU 0
[    0.121969] smpboot: CPU0: AMD Ryzen Embedded V2516 with Radeon Graphics
(family: 0x17, model: 0x60, stepping: 0x1)
[    0.121990] cpu 0 spinlock event irq 52
[    0.122104] Performance Events: PMU not available due to virtualization,
using software events only.
[    0.122129] rcu: Hierarchical SRCU implementation.
[    0.122481] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.122523] smp: Bringing up secondary CPUs ...
[    0.122593] installing Xen timer for CPU 1
[    0.122629] x86: Booting SMP configuration:
[    0.122629] .... node  #0, CPUs:      #1
[    0.201732] cpu 1 spinlock event irq 57
[    0.201732] installing Xen timer for CPU 2
[    0.201732]  #2
[    0.281442] cpu 2 spinlock event irq 62
[    0.281442] installing Xen timer for CPU 3
[    0.281484]  #3
[    0.361387] cpu 3 spinlock event irq 67
[    0.361409] smp: Brought up 1 node, 4 CPUs
[    0.361413] smpboot: Max logical packages: 1
[    0.361414] smpboot: Total of 4 processors activated (16782.38 BogoMIPS)
[    0.361965] devtmpfs: initialized
[    0.361965] x86/mm: Memory block size: 128MB
[    0.361965] ACPI: PM: Registering ACPI NVS region [mem
0xfc000000-0xfc00afff] (45056 bytes)
[    0.361965] clocksource: jiffies: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.361965] futex hash table entries: 1024 (order: 4, 65536 bytes,
linear)
[    0.361965] pinctrl core: initialized pinctrl subsystem
[    0.361965] PM: RTC time: 10:03:51, date: 2022-08-16
[    0.361965] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.361965] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic
allocations
[    0.361965] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic
allocations
[    0.361965] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for
atomic allocations
[    0.361965] audit: initializing netlink subsys (disabled)
[    0.361971] audit: type=2000 audit(1660644231.158:1): state=initialized
audit_enabled=0 res=1
[    0.361971] thermal_sys: Registered thermal governor 'fair_share'
[    0.361971] thermal_sys: Registered thermal governor 'bang_bang'
[    0.361971] thermal_sys: Registered thermal governor 'step_wise'
[    0.361971] thermal_sys: Registered thermal governor 'user_space'
[    0.361971] thermal_sys: Registered thermal governor 'power_allocator'
[    0.361971] EISA bus registered
[    0.361971] cpuidle: using governor ladder
[    0.361971] cpuidle: using governor menu
[    0.365559] ACPI: bus type PCI registered
[    0.365559] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.365690] PCI: Using configuration type 1 for base access
[    0.365690] PCI: Using configuration type 1 for extended access
[    0.366624] Kprobes globally optimized
[    0.366633] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.366633] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.369383] ACPI: Added _OSI(Module Device)
[    0.369385] ACPI: Added _OSI(Processor Device)
[    0.369385] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.369386] ACPI: Added _OSI(Processor Aggregator Device)
[    0.369387] ACPI: Added _OSI(Linux-Dell-Video)
[    0.369388] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.369388] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.374303] ACPI: 3 ACPI AML tables successfully acquired and loaded
[    0.375004] xen: --> pirq=16 -> irq=9 (gsi=9)
[    0.382575] ACPI: Interpreter enabled
[    0.382587] ACPI: PM: (supports S0 S3 S4 S5)
[    0.382588] ACPI: Using IOAPIC for interrupt routing
[    0.382603] PCI: Using host bridge windows from ACPI; if necessary, use
"pci=nocrs" and report a bug
[    0.382912] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.389818] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.389825] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM
ClockPM Segments MSI HPX-Type3]
[    0.390288] acpiphp: Slot [3] registered
[    0.390343] acpiphp: Slot [4] registered
[    0.390374] acpiphp: Slot [5] registered
[    0.390407] acpiphp: Slot [6] registered
[    0.390437] acpiphp: Slot [7] registered
[    0.390467] acpiphp: Slot [8] registered
[    0.390497] acpiphp: Slot [9] registered
[    0.390529] acpiphp: Slot [10] registered
[    0.390559] acpiphp: Slot [11] registered
[    0.390588] acpiphp: Slot [12] registered
[    0.390619] acpiphp: Slot [13] registered
[    0.390649] acpiphp: Slot [14] registered
[    0.390679] acpiphp: Slot [15] registered
[    0.390710] acpiphp: Slot [16] registered
[    0.390742] acpiphp: Slot [17] registered
[    0.390771] acpiphp: Slot [18] registered
[    0.390801] acpiphp: Slot [19] registered
[    0.390831] acpiphp: Slot [20] registered
[    0.390862] acpiphp: Slot [21] registered
[    0.390892] acpiphp: Slot [22] registered
[    0.390924] acpiphp: Slot [23] registered
[    0.390953] acpiphp: Slot [24] registered
[    0.390983] acpiphp: Slot [25] registered
[    0.391014] acpiphp: Slot [26] registered
[    0.391044] acpiphp: Slot [27] registered
[    0.391074] acpiphp: Slot [28] registered
[    0.391105] acpiphp: Slot [29] registered
[    0.391136] acpiphp: Slot [30] registered
[    0.391166] acpiphp: Slot [31] registered
[    0.391193] PCI host bridge to bus 0000:00
[    0.391195] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.391196] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.391197] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.391198] pci_bus 0000:00: root bus resource [mem
0x000a0000-0x000bffff window]
[    0.391200] pci_bus 0000:00: root bus resource [mem
0xf0000000-0xfbffffff window]
[    0.392097] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[    0.395106] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[    0.398764] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
[    0.401310] pci 0000:00:01.1: reg 0x20: [io  0xc200-0xc20f]
[    0.402042] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io
 0x01f0-0x01f7]
[    0.402046] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.402048] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io
 0x0170-0x0177]
[    0.402050] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.403095] pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300
[    0.408382] pci 0000:00:01.2: reg 0x20: [io  0xc200-0xc21f]
[    0.411492] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
[    0.414058] pci 0000:00:01.3: quirk: [io  0xb000-0xb03f] claimed by
PIIX4 ACPI
[    0.414125] pci 0000:00:01.3: quirk: [io  0xb100-0xb10f] claimed by
PIIX4 SMB
[    0.415904] pci 0000:00:02.0: [5853:0001] type 00 class 0xff8000
[    0.416975] pci 0000:00:02.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.417744] pci 0000:00:02.0: reg 0x14: [mem 0xf0000000-0xf0ffffff pref]
[    0.423658] pci 0000:00:03.0: [1af4:1050] type 00 class 0x030000
[    0.424674] pci 0000:00:03.0: reg 0x10: [mem 0xf1000000-0xf17fffff pref]
[    0.426331] pci 0000:00:03.0: reg 0x18: [mem 0xf1850000-0xf1853fff 64bit
pref]
[    0.427343] pci 0000:00:03.0: reg 0x20: [mem 0xf1854000-0xf1854fff]
[    0.429328] pci 0000:00:03.0: reg 0x30: [mem 0xf1840000-0xf184ffff pref]
[    0.429561] pci 0000:00:03.0: Video device with shadowed ROM at [mem
0x000c0000-0x000dffff]
[    0.442223] ACPI: PCI: Interrupt link LNKA configured for IRQ 5
[    0.445589] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.446086] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.446565] ACPI: PCI: Interrupt link LNKD configured for IRQ 5
[    0.452471] xen:balloon: Initialising balloon driver
[    0.452504] iommu: Default domain type: Translated
[    0.452504] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.452504] SCSI subsystem initialized
[    0.452504] libata version 3.00 loaded.
[    0.453475] pci 0000:00:03.0: vgaarb: setting as boot VGA device
[    0.453478] pci 0000:00:03.0: vgaarb: VGA device added:
decodes=io+mem,owns=io+mem,locks=none
[    0.453482] pci 0000:00:03.0: vgaarb: bridge control possible
[    0.453484] vgaarb: loaded
[    0.453513] ACPI: bus type USB registered
[    0.453533] usbcore: registered new interface driver usbfs
[    0.453543] usbcore: registered new interface driver hub
[    0.453553] usbcore: registered new device driver usb
[    0.453586] pps_core: LinuxPPS API ver. 1 registered
[    0.453588] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo
Giometti <giometti@linux.it>
[    0.453592] PTP clock support registered
[    0.453619] EDAC MC: Ver: 3.0.0
[    0.454282] NetLabel: Initializing
[    0.454282] NetLabel:  domain hash size = 128
[    0.454282] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.454282] NetLabel:  unlabeled traffic allowed by default
[    0.454282] PCI: Using ACPI for IRQ routing
[    0.454282] PCI: pci_cache_line_size set to 64 bytes
[    0.454282] pci 0000:00:01.1: can't claim BAR 4 [io  0xc200-0xc20f]:
address conflict with 0000:00:01.2 [io  0xc200-0xc21f]
[    0.454282] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.454282] e820: reserve RAM buffer [mem 0xeffff000-0xefffffff]
[    0.454282] e820: reserve RAM buffer [mem 0x10f800000-0x10fffffff]
[    0.454282] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.454282] hpet0: 3 comparators, 64-bit 62.500000 MHz counter
[    0.460486] clocksource: Switched to clocksource xen
[    0.472984] VFS: Disk quotas dquot_6.6.0
[    0.473001] VFS: Dquot-cache hash table entries: 512 (order 0, 4096
bytes)
[    0.473105] AppArmor: AppArmor Filesystem Enabled
[    0.473124] pnp: PnP ACPI init
[    0.473202] system 00:00: [mem 0x00000000-0x0009ffff] could not be
reserved
[    0.473273] system 00:01: [io  0x08a0-0x08a3] has been reserved
[    0.473275] system 00:01: [io  0x0cc0-0x0ccf] has been reserved
[    0.473275] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    0.473304] xen: --> pirq=17 -> irq=8 (gsi=8)
[    0.473363] xen: --> pirq=18 -> irq=12 (gsi=12)
[    0.473388] xen: --> pirq=19 -> irq=1 (gsi=1)
[    0.473414] xen: --> pirq=20 -> irq=6 (gsi=6)
[    0.473417] pnp 00:05: [dma 2]
[    0.473473] system 00:06: [io  0xae00-0xae0f] has been reserved
[    0.473475] system 00:06: [io  0xb044-0xb047] has been reserved
[    0.475437] pnp: PnP ACPI: found 7 devices
[    0.482559] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff,
max_idle_ns: 2085701024 ns
[    0.482606] NET: Registered PF_INET protocol family
[    0.482689] IP idents hash table entries: 65536 (order: 7, 524288 bytes,
linear)
[    0.483191] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3,
32768 bytes, linear)
[    0.483225] TCP established hash table entries: 32768 (order: 6, 262144
bytes, linear)
[    0.483322] TCP bind hash table entries: 32768 (order: 7, 524288 bytes,
linear)
[    0.483357] TCP: Hash tables configured (established 32768 bind 32768)
[    0.483430] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes,
linear)
[    0.483462] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    0.483475] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes,
linear)
[    0.483502] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.483506] NET: Registered PF_XDP protocol family
[    0.483517] pci 0000:00:01.1: BAR 4: assigned [io  0x1000-0x100f]
[    0.483647] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.483648] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.483649] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff
window]
[    0.483650] pci_bus 0000:00: resource 7 [mem 0xf0000000-0xfbffffff
window]
[    0.483750] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.483803] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.483855] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[    0.484244] xen: --> pirq=21 -> irq=23 (gsi=23)
[    0.485535] PCI: CLS 0 bytes, default 64
[    0.485545] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.485546] software IO TLB: mapped [mem
0x00000000ebfff000-0x00000000effff000] (64MB)
[    0.485628] Trying to unpack rootfs image as initramfs...
[    0.486028] Initialise system trusted keyrings
[    0.486049] Key type blacklist registered
[    0.486122] workingset: timestamp_bits=36 max_order=20 bucket_order=0
[    0.486920] zbud: loaded
[    0.487097] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.487273] fuse: init (API version 7.34)
[    0.487499] integrity: Platform Keyring initialized
[    0.490112] Key type asymmetric registered
[    0.490112] Asymmetric key parser 'x509' registered
[    0.490129] Block layer SCSI generic (bsg) driver version 0.4 loaded
(major 243)
[    0.490202] io scheduler mq-deadline registered
[    0.490536] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.490642] input: Power Button as
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.490669] ACPI: button: Power Button [PWRF]
[    0.490694] input: Sleep Button as
/devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[    0.490703] ACPI: button: Sleep Button [SLPF]
[    0.491294] xen: --> pirq=22 -> irq=28 (gsi=28)
[    0.502206] xen: --> pirq=23 -> irq=24 (gsi=24)
[    0.502508] xen:grant_table: Grant tables using version 1 layout
[    0.502550] Grant table initialized
[    0.503306] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.506090] Linux agpgart interface v0.103
[    0.512183] loop: module loaded
[    0.513365] ata_piix 0000:00:01.1: version 2.13
[    0.513594] ata_piix 0000:00:01.1: enabling device (0000 -> 0001)
[    0.518007] blkfront: xvda: flush diskcache: enabled; persistent grants:
disabled; indirect descriptors: disabled;
[    0.520138] scsi host0: ata_piix
[    0.520399] scsi host1: ata_piix
[    0.520445] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0x1000 irq 14
[    0.520449] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0x1008 irq 15
[    0.520658] tun: Universal TUN/TAP device driver, 1.6
[    0.520757] PPP generic driver version 2.4.2
[    0.520870] xen_netfront: Initialising Xen virtual ethernet driver
[    0.521168]  xvda: xvda1 xvda2 xvda3
[    0.521950] VFIO - User Level meta-driver version: 0.3
[    0.522059] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.522064] ehci-pci: EHCI PCI platform driver
[    0.522072] ehci-platform: EHCI generic platform driver
[    0.522076] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.522078] ohci-pci: OHCI PCI platform driver
[    0.522081] ohci-platform: OHCI generic platform driver
[    0.522087] uhci_hcd: USB Universal Host Controller Interface driver
[    0.523764] uhci_hcd 0000:00:01.2: UHCI Host Controller
[    0.523779] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus
number 1
[    0.523910] uhci_hcd 0000:00:01.2: detected 2 ports
[    0.524363] uhci_hcd 0000:00:01.2: irq 23, io base 0x0000c200
[    0.524805] usb usb1: New USB device found, idVendor=1d6b,
idProduct=0001, bcdDevice= 5.15
[    0.524812] usb usb1: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[    0.524815] usb usb1: Product: UHCI Host Controller
[    0.524818] usb usb1: Manufacturer: Linux 5.15.0-25-generic uhci_hcd
[    0.524820] usb usb1: SerialNumber: 0000:00:01.2
[    0.524995] hub 1-0:1.0: USB hub found
[    0.525002] hub 1-0:1.0: 2 ports detected
[    0.525428] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at
0x60,0x64 irq 1,12
[    0.527062] xen_netfront: backend supports XDP headroom
[    0.529071] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.529083] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.529290] mousedev: PS/2 mouse device common for all mice
[    0.530692] input: AT Translated Set 2 keyboard as
/devices/platform/i8042/serio0/input/input2
[    0.531233] rtc_cmos 00:02: registered as rtc0
[    0.532070] rtc_cmos 00:02: setting system clock to 2022-08-16T10:03:51
UTC (1660644231)
[    0.532110] rtc_cmos 00:02: alarms up to one day, 114 bytes nvram, hpet
irqs
[    0.532128] i2c_dev: i2c /dev entries driver
[    0.532168] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled.
Duplicate IMA measurements will not be recorded in the IMA log.
[    0.532221] device-mapper: uevent: version 1.0.3
[    0.532343] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised:
dm-devel@redhat.com
[    0.532392] platform eisa.0: Probing EISA bus 0
[    0.532395] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    0.532398] platform eisa.0: Cannot allocate resource for EISA slot 1
[    0.532400] platform eisa.0: Cannot allocate resource for EISA slot 2
[    0.532402] platform eisa.0: Cannot allocate resource for EISA slot 3
[    0.532403] platform eisa.0: Cannot allocate resource for EISA slot 4
[    0.532405] platform eisa.0: Cannot allocate resource for EISA slot 5
[    0.532407] platform eisa.0: Cannot allocate resource for EISA slot 6
[    0.532408] platform eisa.0: Cannot allocate resource for EISA slot 7
[    0.532410] platform eisa.0: Cannot allocate resource for EISA slot 8
[    0.532412] platform eisa.0: EISA: Detected 0 cards
[    0.532528] ledtrig-cpu: registered to indicate activity on CPUs
[    0.532550] vesafb: mode is 640x480x32, linelength=2560, pages=0
[    0.532552] vesafb: scrolling: redraw
[    0.532552] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.532568] vesafb: framebuffer at 0xf1000000, mapped to
0x000000006e7c94d5, using 1216k, total 1216k
[    0.532629] fbcon: Deferring console take-over
[    0.532630] fb0: VESA VGA frame buffer device
[    0.532721] drop_monitor: Initializing network drop monitor service
[    0.532841] NET: Registered PF_INET6 protocol family
[    0.842492] Freeing initrd memory: 60524K
[    0.850586] Segment Routing with IPv6
[    0.850608] In-situ OAM (IOAM) with IPv6
[    0.850657] NET: Registered PF_PACKET protocol family
[    0.850754] Key type dns_resolver registered
[    0.851230] IPI shorthand broadcast: enabled
[    0.851247] sched_clock: Marking stable (851343609,
-194696)->(857336759, -6187846)
[    0.851532] registered taskstats version 1
[    0.851696] Loading compiled-in X.509 certificates
[    0.852907] Loaded X.509 cert 'Build time autogenerated kernel key:
c887ab1fa6442665629113512b4db089a7808038'
[    0.853729] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing:
14df34d1a87cf37625abec039ef2bf521249b969'
[    0.854530] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing:
88f752e560a1e0737e31163a466ad7b70a850c19'
[    0.854534] blacklist: Loading compiled-in revocation X.509 certificates
[    0.854568] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing:
61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[    0.854781] zswap: loaded using pool lzo/zbud
[    0.855324] Key type ._fscrypt registered
[    0.855328] Key type .fscrypt registered
[    0.855330] Key type fscrypt-provisioning registered
[    0.857364] usb 1-1: new full-speed USB device number 2 using uhci_hcd
[    0.859895] Key type encrypted registered
[    0.859902] AppArmor: AppArmor sha1 policy hashing enabled
[    0.859910] ima: No TPM chip found, activating TPM-bypass!
[    0.859918] Loading compiled-in module X.509 certificates
[    0.861118] Loaded X.509 cert 'Build time autogenerated kernel key:
c887ab1fa6442665629113512b4db089a7808038'
[    0.861122] ima: Allocated hash algorithm: sha1
[    0.861133] ima: No architecture policies found
[    0.861149] evm: Initialising EVM extended attributes:
[    0.861150] evm: security.selinux
[    0.861152] evm: security.SMACK64
[    0.861153] evm: security.SMACK64EXEC
[    0.861154] evm: security.SMACK64TRANSMUTE
[    0.861155] evm: security.SMACK64MMAP
[    0.861156] evm: security.apparmor
[    0.861157] evm: security.ima
[    0.861158] evm: security.capability
[    0.861160] evm: HMAC attrs: 0x1
[    0.861788] xenbus_probe_frontend: Device with no driver: device/vkbd/0
[    0.861870] PM:   Magic number: 2:786:72
[    0.862376] RAS: Correctable Errors collector initialized.
[    0.865608] Freeing unused decrypted memory: 2036K
[    0.866378] Freeing unused kernel image (initmem) memory: 2952K
[    0.889375] Write protecting the kernel read-only data: 30720k
[    0.890318] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    0.890802] Freeing unused kernel image (rodata/data gap) memory: 1504K
[    0.936352] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.936636] Run /init as init process
[    0.936643]   with arguments:
[    0.936645]     /init
[    0.936646]     splash
[    0.936648]   with environment:
[    0.936649]     HOME=/
[    0.936650]     TERM=linux
[    0.936651]     BOOT_IMAGE=/boot/vmlinuz-5.15.0-25-generic
[    1.036484] piix4_smbus 0000:00:01.3: SMBus Host Controller not enabled!
[    1.036490] fbcon: Taking over console
[    1.039250] Console: switching to colour frame buffer device 80x30
[    1.055941] FDC 0 is a S82078B
[    1.078207] usb 1-1: New USB device found, idVendor=0627,
idProduct=0001, bcdDevice= 0.00
[    1.078215] usb 1-1: New USB device strings: Mfr=1, Product=3,
SerialNumber=10
[    1.078218] usb 1-1: Product: QEMU USB Tablet
[    1.078220] usb 1-1: Manufacturer: QEMU
[    1.078221] usb 1-1: SerialNumber: 42
[    1.098463] hid: raw HID events driver (C) Jiri Kosina
[    1.104173] usbcore: registered new interface driver usbhid
[    1.104177] usbhid: USB HID core driver
[    1.108771] input: QEMU QEMU USB Tablet as
/devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input5
[    1.109051] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID
v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:01.2-1/input0
[    1.242332] EXT4-fs (xvda3): mounted filesystem with ordered data mode.
Opts: (null). Quota mode: none.
[    1.353433] systemd[1]: Inserted module 'autofs4'
[    1.372606] systemd[1]: systemd 249.11-0ubuntu3 running in system mode
(+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS
-OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN +IPTC +KMOD
+LIBCRYPTSETUP -LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4
+XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    1.372690] systemd[1]: Detected virtualization xen.
[    1.372697] systemd[1]: Detected architecture x86-64.
[    1.373227] systemd[1]: Hostname set to <HVM-GUEST>.
[    1.590054] systemd[1]: Queued start job for default target Graphical
Interface.
[    1.592059] systemd[1]: Created slice Slice /system/modprobe.
[    1.592607] systemd[1]: Created slice Slice /system/serial-getty.
[    1.593111] systemd[1]: Created slice Slice /system/systemd-fsck.
[    1.593423] systemd[1]: Created slice User and Session Slice.
[    1.593540] systemd[1]: Started Forward Password Requests to Wall
Directory Watch.
[    1.593816] systemd[1]: Set up automount Arbitrary Executable File
Formats File System Automount Point.
[    1.593945] systemd[1]: Reached target User and Group Name Lookups.
[    1.593972] systemd[1]: Reached target Remote File Systems.
[    1.593994] systemd[1]: Reached target Slice Units.
[    1.594047] systemd[1]: Reached target Local Verity Protected Volumes.
[    1.594241] systemd[1]: Listening on Syslog Socket.
[    1.594362] systemd[1]: Listening on fsck to fsckd communication Socket.
[    1.594450] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    1.594705] systemd[1]: Listening on Journal Audit Socket.
[    1.594833] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.594992] systemd[1]: Listening on Journal Socket.
[    1.595593] systemd[1]: Listening on udev Control Socket.
[    1.595751] systemd[1]: Listening on udev Kernel Socket.
[    1.596837] systemd[1]: Mounting Huge Pages File System...
[    1.598024] systemd[1]: Mounting POSIX Message Queue File System...
[    1.599213] systemd[1]: Mounting Kernel Debug File System...
[    1.600394] systemd[1]: Mounting Kernel Trace File System...
[    1.603377] systemd[1]: Starting Journal Service...
[    1.605041] systemd[1]: Starting Set the console keyboard layout...
[    1.606625] systemd[1]: Starting Create List of Static Device Nodes...
[    1.608115] systemd[1]: Starting Load Kernel Module configfs...
[    1.609446] systemd[1]: Starting Load Kernel Module drm...
[    1.610757] systemd[1]: Starting Load Kernel Module fuse...
[    1.611025] systemd[1]: Condition check resulted in File System Check on
Root Device being skipped.
[    1.614076] systemd[1]: Starting Load Kernel Modules...
[    1.616455] systemd[1]: Starting Remount Root and Kernel File Systems...
[    1.624748] systemd[1]: Starting Coldplug All udev Devices...
[    1.627022] systemd[1]: Mounted Huge Pages File System.
[    1.627141] systemd[1]: Mounted POSIX Message Queue File System.
[    1.627227] systemd[1]: Mounted Kernel Debug File System.
[    1.627315] systemd[1]: Mounted Kernel Trace File System.
[    1.627636] systemd[1]: Finished Create List of Static Device Nodes.
[    1.627985] systemd[1]: modprobe@configfs.service: Deactivated
successfully.
[    1.628221] systemd[1]: Finished Load Kernel Module configfs.
[    1.628480] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    1.628704] systemd[1]: Finished Load Kernel Module fuse.
[    1.629866] EXT4-fs (xvda3): re-mounted. Opts: errors=remount-ro. Quota
mode: none.
[    1.630115] systemd[1]: Mounting FUSE Control File System...
[    1.631378] systemd[1]: Mounting Kernel Configuration File System...
[    1.634418] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    1.634598] systemd[1]: Finished Load Kernel Module drm.
[    1.634842] systemd[1]: Finished Remount Root and Kernel File Systems.
[    1.634938] systemd[1]: Mounted FUSE Control File System.
[    1.634982] systemd[1]: Mounted Kernel Configuration File System.
[    1.635685] systemd[1]: Activating swap /swapfile...
[    1.635752] systemd[1]: Condition check resulted in Platform Persistent
Storage Archival being skipped.
[    1.637031] systemd[1]: Starting Load/Save Random Seed...
[    1.641131] Adding 2097148k swap on /swapfile.  Priority:-2 extents:6
across:2260988k SSFS
[    1.642488] systemd[1]: Starting Create System Users...
[    1.642572] systemd[1]: Activated swap /swapfile.
[    1.642765] systemd[1]: Reached target Swaps.
[    1.643321] lp: driver loaded but no devices found
[    1.651810] systemd[1]: Started Journal Service.
[    1.655589] systemd-journald[259]: Received client request to flush
runtime journal.
[    1.657118] ppdev: user-space parallel port driver
[    1.667097] IPMI message handler: version 39.2
[    1.668319] ipmi device interface
[    1.675912] loop0: detected capacity change from 0 to 8
[    1.678683] loop1: detected capacity change from 0 to 126760
[    1.681650] loop2: detected capacity change from 0 to 318728
[    1.683964] loop3: detected capacity change from 0 to 509456
[    1.686052] loop4: detected capacity change from 0 to 166424
[    1.687119] loop5: detected capacity change from 0 to 93920
[    1.687391] loop6: detected capacity change from 0 to 89352
[    1.692831] loop7: detected capacity change from 0 to 568
[    1.957855] cryptd: max_cpu_qlen set to 1000
[    1.999918] AVX2 version of gcm_enc/dec engaged.
[    2.000019] AES CTR mode by8 optimization enabled
[    2.043047] input: Xen Virtual Keyboard as /devices/virtual/input/input6
[    2.043943] input: Xen Virtual Pointer as /devices/virtual/input/input7
[    2.073671] [drm] pci: virtio-vga detected at 0000:00:03.0
[    2.073675] checking generic (f1000000 130000) vs hw (f1000000 800000)
[    2.073677] fb0: switching to virtio_gpu from VESA VGA
[    2.123276] Console: switching to colour dummy device 80x25
[    2.123582] virtio-pci 0000:00:03.0: vgaarb: deactivate vga console
[    2.125945] [drm] features: +virgl -edid -resource_blob -host_visible
[    2.136638] [drm] number of scanouts: 1
[    2.136692] [drm] number of cap sets: 2
[    2.179337] [drm] cap set 0: id 1, max-version 1, max-size 308
[    2.179388] input: ImExPS/2 Generic Explorer Mouse as
/devices/platform/i8042/serio1/input/input4
[    2.179638] [drm] cap set 1: id 2, max-version 2, max-size 856
[    2.182465] [drm] Initialized virtio_gpu 0.1.0 0 for virtio0 on minor 0
[    2.193057] virtio_gpu virtio0: [drm] drm_plane_enable_fb_damage_clips()
not called
[    2.194721] Console: switching to colour frame buffer device 128x48
[    2.219672] virtio_gpu virtio0: [drm] fb0: virtio_gpudrmfb frame buffer
device
[    2.280885] audit: type=1400 audit(1660644233.244:2): apparmor="STATUS"
operation="profile_load" profile="unconfined" name="nvidia_modprobe"
pid=417 comm="apparmor_parser"
[    2.280898] audit: type=1400 audit(1660644233.244:3): apparmor="STATUS"
operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod"
pid=417 comm="apparmor_parser"
[    2.283374] audit: type=1400 audit(1660644233.248:4): apparmor="STATUS"
operation="profile_load" profile="unconfined" name="lsb_release" pid=416
comm="apparmor_parser"
[    2.287067] audit: type=1400 audit(1660644233.248:5): apparmor="STATUS"
operation="profile_load" profile="unconfined"
name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=418
comm="apparmor_parser"
[    2.287073] audit: type=1400 audit(1660644233.248:6): apparmor="STATUS"
operation="profile_load" profile="unconfined"
name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=418 comm="apparmor_parser"
[    2.287075] audit: type=1400 audit(1660644233.248:7): apparmor="STATUS"
operation="profile_load" profile="unconfined"
name="/usr/lib/connman/scripts/dhclient-script" pid=418
comm="apparmor_parser"
[    2.287076] audit: type=1400 audit(1660644233.248:8): apparmor="STATUS"
operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient"
pid=418 comm="apparmor_parser"
[    2.294768] audit: type=1400 audit(1660644233.260:9): apparmor="STATUS"
operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=422
comm="apparmor_parser"
[    2.294783] audit: type=1400 audit(1660644233.260:10): apparmor="STATUS"
operation="profile_load" profile="unconfined" name="man_filter" pid=422
comm="apparmor_parser"
[    2.765051] loop8: detected capacity change from 0 to 8
[    4.617492] rfkill: input handler disabled
[   32.054348] kauditd_printk_skb: 38 callbacks suppressed
[   32.054351] audit: type=1400 audit(1660644263.020:49): apparmor="DENIED"
operation="capable" profile="/usr/sbin/cups-browsed" pid=1390
comm="cups-browsed" capability=23  capname="sys_nice"
[   68.680921] pci 0000:00:04.0: [8086:24cd] type 00 class 0x0c0320
[   68.681909] pci 0000:00:04.0: reg 0x10: [mem 0x00000000-0x00000fff]
[   68.686395] pci 0000:00:04.0: BAR 0: assigned [mem 0xf1800000-0xf1800fff]
[   68.687377] pci 0000:00:04.0: enabling device (0000 -> 0002)
[   68.689224] xen: --> pirq=24 -> irq=35 (gsi=35)
[   68.692834] ehci-pci 0000:00:04.0: EHCI Host Controller
[   68.692850] ehci-pci 0000:00:04.0: new USB bus registered, assigned bus
number 2
[   68.694281] ehci-pci 0000:00:04.0: irq 35, io mem 0xf1800000
[   68.708467] ehci-pci 0000:00:04.0: USB 2.0 started, EHCI 1.00
[   68.708678] usb usb2: New USB device found, idVendor=1d6b,
idProduct=0002, bcdDevice= 5.15
[   68.708684] usb usb2: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[   68.708687] usb usb2: Product: EHCI Host Controller
[   68.708690] usb usb2: Manufacturer: Linux 5.15.0-25-generic ehci_hcd
[   68.708693] usb usb2: SerialNumber: 0000:00:04.0
[   68.709004] hub 2-0:1.0: USB hub found
[   68.709014] hub 2-0:1.0: 6 ports detected
[  125.693224] usb 2-1: new high-speed USB device number 2 using ehci-pci
[  125.860036] usb 2-1: config 1 interface 0 altsetting 0 bulk endpoint
0x81 has invalid maxpacket 1024
[  125.860046] usb 2-1: config 1 interface 0 altsetting 0 bulk endpoint 0x2
has invalid maxpacket 1024
[  125.868162] usb 2-1: New USB device found, idVendor=0781,
idProduct=55a9, bcdDevice= 1.00
[  125.868169] usb 2-1: New USB device strings: Mfr=1, Product=2,
SerialNumber=3
[  125.868172] usb 2-1: Product:  SanDisk 3.2Gen1
[  125.868175] usb 2-1: Manufacturer:  USB
[  125.868177] usb 2-1: SerialNumber:
0401679941e4bd74075d85f9c579b3ea676bfcb7793d641baffeb9351793d80925ba000000000000000000004c882c7f00906e18a955810790aaa0fa
[  125.886442] usb-storage 2-1:1.0: USB Mass Storage device detected
[  125.886855] scsi host2: usb-storage 2-1:1.0
[  125.887014] usbcore: registered new interface driver usb-storage
[  125.892109] usbcore: registered new interface driver uas
[  126.914284] scsi 2:0:0:0: Direct-Access      USB      SanDisk 3.2Gen1
1.00 PQ: 0 ANSI: 6
[  126.914710] sd 2:0:0:0: Attached scsi generic sg0 type 0













*[  126.926413] sd 2:0:0:0: [sda] 120176640 512-byte logical blocks: (61.5
GB/57.3 GiB)[  126.939662] sd 2:0:0:0: [sda] Write Protect is off[
 126.939670] sd 2:0:0:0: [sda] Mode Sense: 43 00 00 00[  126.952697] sd
2:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support
DPO or FUA[  127.045601]  sda: sda1[  127.086759] sd 2:0:0:0: [sda]
Attached SCSI removable disk[  128.333409] usb 2-1: reset high-speed USB
device number 2 using ehci-pci[  128.502872] sd 2:0:0:0: [sda] tag#0 FAILED
Result: hostbyte=DID_ERROR driverbyte=DRIVER_OK cmd_age=0s[  128.502881] sd
2:0:0:0: [sda] tag#0 CDB: Read(10) 28 00 00 00 7a b7 00 00 3f 00[
 128.502883] blk_update_request: I/O error, dev sda, sector 31415 op
0x0:(READ) flags 0x80700 phys_seg 63 prio class 0[  159.238904] usb 2-1:
reset high-speed USB device number 2 using ehci-pci[  363.738313] INFO:
task kworker/u8:1:103 blocked for more than 120 seconds.[  363.738327]
  Not tainted 5.15.0-25-generic #25-Ubuntu*[  363.738331] "echo 0 >
/proc/sys/kernel/hung_task_timeout_secs" disables this message.
[  363.738334] task:kworker/u8:1    state:D stack:    0 pid:  103 ppid:
2 flags:0x00004000
[  363.738343] Workqueue: events_freezable_power_ disk_events_workfn
[  363.738357] Call Trace:
[  363.738361]  <TASK>
[  363.738366]  __schedule+0x23d/0x590
[  363.738375]  schedule+0x4e/0xb0
[  363.738380]  io_schedule+0x46/0x70
[  363.738385]  blk_mq_get_tag+0x11b/0x300
[  363.738391]  ? wait_woken+0x70/0x70
[  363.738398]  __blk_mq_alloc_request+0x101/0x180
[  363.738402]  blk_mq_alloc_request+0x7a/0xc0
[  363.738406]  blk_get_request+0x27/0x60
[  363.738412]  __scsi_execute+0x48/0x260
[  363.738417]  scsi_test_unit_ready+0x60/0xe0
[  363.738421]  sd_check_events+0x194/0x230
[  363.738426]  disk_check_events+0x3c/0x110
[  363.738431]  disk_events_workfn+0x19/0x20
[  363.738435]  process_one_work+0x22b/0x3d0
[  363.738442]  worker_thread+0x53/0x410
[  363.738447]  ? process_one_work+0x3d0/0x3d0
[  363.738452]  kthread+0x12a/0x150
[  363.738457]  ? set_kthread_struct+0x50/0x50
[  363.738461]  ret_from_fork+0x22/0x30
[  363.738469]  </TASK>
[  363.738491] INFO: task pool-udisksd:1698 blocked for more than 120
seconds.
[  363.738494]       Not tainted 5.15.0-25-generic #25-Ubuntu
[  363.738497] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables
this message.
[  363.738499] task:pool-udisksd    state:D stack:    0 pid: 1698 ppid:
1 flags:0x00004002
[  363.738504] Call Trace:
[  363.738506]  <TASK>
[  363.738507]  __schedule+0x23d/0x590
[  363.738513]  ? bit_wait+0x60/0x60
[  363.738517]  schedule+0x4e/0xb0
[  363.738522]  io_schedule+0x46/0x70
[  363.738527]  bit_wait_io+0x11/0x60
[  363.738532]  __wait_on_bit+0x33/0xa0
[  363.738537]  out_of_line_wait_on_bit+0x8d/0xb0
[  363.738542]  ? var_wake_function+0x30/0x30
[  363.738546]  __bread_gfp+0xf6/0x120
[  363.738553]  fat__get_entry+0x15c/0x240
[  363.738561]  fat_get_short_entry+0x62/0xb0
[  363.738566]  fat_subdirs+0x5c/0x90
[  363.738571]  fat_read_root+0x130/0x170
[  363.738574]  fat_fill_super+0x63c/0x880
[  363.738578]  ? snprintf+0x49/0x60
[  363.738583]  vfat_fill_super+0x1a/0x20
[  363.738586]  mount_bdev+0x196/0x1c0
[  363.738591]  ? vfat_mount+0x20/0x20
[  363.738595]  vfat_mount+0x15/0x20
[  363.738598]  legacy_get_tree+0x2b/0x50
[  363.738602]  vfs_get_tree+0x2a/0xc0
[  363.738606]  do_new_mount+0x16e/0x2d0
[  363.738611]  path_mount+0x1db/0x880
[  363.738614]  ? putname+0x55/0x60
[  363.738619]  __x64_sys_mount+0x108/0x140
[  363.738623]  do_syscall_64+0x5c/0xc0
[  363.738629]  ? do_syscall_64+0x69/0xc0
[  363.738633]  ? exit_to_user_mode_prepare+0x37/0xb0
[  363.738639]  ? syscall_exit_to_user_mode+0x27/0x50
[  363.738643]  ? __do_sys_getuid+0x28/0x30
[  363.738646]  ? do_syscall_64+0x69/0xc0
[  363.738650]  ? syscall_exit_to_user_mode+0x27/0x50
[  363.738654]  ? exit_to_user_mode_prepare+0x37/0xb0
[  363.738657]  ? syscall_exit_to_user_mode+0x27/0x50
[  363.738660]  ? __do_sys_getgid+0x28/0x30
[  363.738663]  ? do_syscall_64+0x69/0xc0
[  363.738667]  ? __x64_sys_readlink+0x1e/0x30
[  363.738671]  ? do_syscall_64+0x69/0xc0
[  363.738675]  ? irqentry_exit+0x19/0x30
[  363.738679]  ? exc_page_fault+0x89/0x160
[  363.738681]  ? asm_exc_page_fault+0x8/0x30
[  363.738686]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[  363.738691] RIP: 0033:0x7f511763eeae
[  363.738696] RSP: 002b:00007f51163782e8 EFLAGS: 00000246 ORIG_RAX:
00000000000000a5
[  363.738701] RAX: ffffffffffffffda RBX: 0000000000000000 RCX:
00007f511763eeae
[  363.738703] RDX: 00007f51080188e0 RSI: 00007f5108018960 RDI:
00007f5108018940
[  363.738706] RBP: 00007f5108018b50 R08: 00007f5108018d80 R09:
0000000000000001
[  363.738708] R10: 0000000000000006 R11: 0000000000000246 R12:
0000000000000000
[  363.738710] R13: 00007f51080188e0 R14: 00007f5108018940 R15:
00007f5108018b50
[  363.738715]  </TASK>
[  363.738761] INFO: task scsi_eh_2:1671 blocked for more than 120 seconds.
[  363.738765]       Not tainted 5.15.0-25-generic #25-Ubuntu
[  363.738767] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables
this message.
[  363.738769] task:scsi_eh_2       state:D stack:    0 pid: 1671 ppid:
2 flags:0x00004000
[  363.738773] Call Trace:
[  363.738775]  <TASK>
[  363.738777]  __schedule+0x23d/0x590
[  363.738782]  schedule+0x4e/0xb0
[  363.738787]  schedule_preempt_disabled+0xe/0x10
[  363.738792]  __mutex_lock.constprop.0+0x263/0x490
[  363.738796]  ? update_load_avg+0x82/0x620
[  363.738801]  __mutex_lock_slowpath+0x13/0x20
[  363.738804]  mutex_lock+0x34/0x40
[  363.738810]  device_reset+0x22/0x50 [usb_storage]
[  363.738818]  scsi_eh_bus_device_reset+0xee/0x2a0
[  363.738824]  scsi_eh_ready_devs+0x67/0x240
[  363.738829]  ? finish_task_switch.isra.0+0xa6/0x270
[  363.738834]  scsi_unjam_host+0x101/0x1c0
[  363.738839]  ? _raw_spin_unlock_irqrestore+0xe/0x30
[  363.738844]  scsi_error_handler+0x139/0x180
[  363.738849]  ? scsi_unjam_host+0x1c0/0x1c0
[  363.738854]  kthread+0x12a/0x150
[  363.738858]  ? set_kthread_struct+0x50/0x50
[  363.738863]  ret_from_fork+0x22/0x30
[  363.738868]  </TASK>
[  363.738870] INFO: task usb-storage:1674 blocked for more than 120
seconds.
[  363.738873]       Not tainted 5.15.0-25-generic #25-Ubuntu
[  363.738875] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables
this message.
[  363.738877] task:usb-storage     state:D stack:    0 pid: 1674 ppid:
2 flags:0x00004000
[  363.738881] Call Trace:
[  363.738883]  <TASK>
[  363.738884]  __schedule+0x23d/0x590
[  363.738889]  schedule+0x4e/0xb0
[  363.738894]  schedule_timeout+0xfb/0x140
[  363.738898]  __wait_for_common+0xae/0x150
[  363.738903]  ? usleep_range_state+0x90/0x90
[  363.738907]  wait_for_completion+0x24/0x30
[  363.738912]  usb_sg_wait+0xee/0x1b0
[  363.738916]  usb_stor_bulk_transfer_sglist+0x8f/0xe0 [usb_storage]
[  363.738924]  usb_stor_Bulk_transport+0x191/0x440 [usb_storage]
[  363.738931]  usb_stor_invoke_transport+0x3e/0x540 [usb_storage]
[  363.738937]  ? try_to_wake_up+0x1fc/0x5a0
[  363.738942]  ? __wait_for_common+0x11d/0x150
[  363.738947]  ? usleep_range_state+0x90/0x90
[  363.738951]  usb_stor_transparent_scsi_command+0xe/0x10 [usb_storage]
[  363.738957]  usb_stor_control_thread+0x198/0x290 [usb_storage]
[  363.738964]  ? storage_probe+0xd0/0xd0 [usb_storage]
[  363.738971]  kthread+0x12a/0x150
[  363.738975]  ? set_kthread_struct+0x50/0x50
[  363.738979]  ret_from_fork+0x22/0x30
[  363.738985]  </TASK>
[  484.572086] INFO: task kworker/u8:1:103 blocked for more than 241
seconds.
[  484.572098]       Not tainted 5.15.0-25-generic #25-Ubuntu
[  484.572102] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables
this message.
[  484.572104] task:kworker/u8:1    state:D stack:    0 pid:  103 ppid:
2 flags:0x00004000
[  484.572113] Workqueue: events_freezable_power_ disk_events_workfn
[  484.572124] Call Trace:
[  484.572127]  <TASK>
[  484.572131]  __schedule+0x23d/0x590
[  484.572140]  schedule+0x4e/0xb0
[  484.572145]  io_schedule+0x46/0x70
[  484.572150]  blk_mq_get_tag+0x11b/0x300
[  484.572155]  ? wait_woken+0x70/0x70
[  484.572161]  __blk_mq_alloc_request+0x101/0x180
[  484.572165]  blk_mq_alloc_request+0x7a/0xc0
[  484.572169]  blk_get_request+0x27/0x60
[  484.572175]  __scsi_execute+0x48/0x260
[  484.572179]  scsi_test_unit_ready+0x60/0xe0
[  484.572183]  sd_check_events+0x194/0x230
[  484.572188]  disk_check_events+0x3c/0x110
[  484.572193]  disk_events_workfn+0x19/0x20
[  484.572197]  process_one_work+0x22b/0x3d0
[  484.572203]  worker_thread+0x53/0x410
[  484.572208]  ? process_one_work+0x3d0/0x3d0
[  484.572213]  kthread+0x12a/0x150
[  484.572217]  ? set_kthread_struct+0x50/0x50
[  484.572222]  ret_from_fork+0x22/0x30
[  484.572229]  </TASK>
[  484.572259] INFO: task pool-udisksd:1698 blocked for more than 241
seconds.
[  484.572263]       Not tainted 5.15.0-25-generic #25-Ubuntu
[  484.572265] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables
this message.
[  484.572267] task:pool-udisksd    state:D stack:    0 pid: 1698 ppid:
1 flags:0x00004002
[  484.572273] Call Trace:
[  484.572274]  <TASK>
[  484.572276]  __schedule+0x23d/0x590
[  484.572281]  ? bit_wait+0x60/0x60
[  484.572286]  schedule+0x4e/0xb0
[  484.572291]  io_schedule+0x46/0x70
[  484.572295]  bit_wait_io+0x11/0x60
[  484.572300]  __wait_on_bit+0x33/0xa0
[  484.572305]  out_of_line_wait_on_bit+0x8d/0xb0
[  484.572310]  ? var_wake_function+0x30/0x30
[  484.572314]  __bread_gfp+0xf6/0x120
[  484.572322]  fat__get_entry+0x15c/0x240
[  484.572329]  fat_get_short_entry+0x62/0xb0
[  484.572334]  fat_subdirs+0x5c/0x90
[  484.572339]  fat_read_root+0x130/0x170
[  484.572342]  fat_fill_super+0x63c/0x880
[  484.572345]  ? snprintf+0x49/0x60
[  484.572351]  vfat_fill_super+0x1a/0x20
[  484.572354]  mount_bdev+0x196/0x1c0
[  484.572359]  ? vfat_mount+0x20/0x20
[  484.572363]  vfat_mount+0x15/0x20
[  484.572365]  legacy_get_tree+0x2b/0x50
[  484.572369]  vfs_get_tree+0x2a/0xc0
[  484.572373]  do_new_mount+0x16e/0x2d0
[  484.572378]  path_mount+0x1db/0x880
[  484.572381]  ? putname+0x55/0x60
[  484.572385]  __x64_sys_mount+0x108/0x140
[  484.572389]  do_syscall_64+0x5c/0xc0
[  484.572395]  ? do_syscall_64+0x69/0xc0
[  484.572399]  ? exit_to_user_mode_prepare+0x37/0xb0
[  484.572405]  ? syscall_exit_to_user_mode+0x27/0x50
[  484.572409]  ? __do_sys_getuid+0x28/0x30
[  484.572412]  ? do_syscall_64+0x69/0xc0
[  484.572417]  ? syscall_exit_to_user_mode+0x27/0x50
[  484.572420]  ? exit_to_user_mode_prepare+0x37/0xb0
[  484.572423]  ? syscall_exit_to_user_mode+0x27/0x50
[  484.572426]  ? __do_sys_getgid+0x28/0x30
[  484.572429]  ? do_syscall_64+0x69/0xc0
[  484.572433]  ? __x64_sys_readlink+0x1e/0x30
[  484.572438]  ? do_syscall_64+0x69/0xc0
[  484.572442]  ? irqentry_exit+0x19/0x30
[  484.572445]  ? exc_page_fault+0x89/0x160
[  484.572448]  ? asm_exc_page_fault+0x8/0x30
[  484.572452]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[  484.572457] RIP: 0033:0x7f511763eeae
[  484.572462] RSP: 002b:00007f51163782e8 EFLAGS: 00000246 ORIG_RAX:
00000000000000a5
[  484.572466] RAX: ffffffffffffffda RBX: 0000000000000000 RCX:
00007f511763eeae
[  484.572469] RDX: 00007f51080188e0 RSI: 00007f5108018960 RDI:
00007f5108018940
[  484.572472] RBP: 00007f5108018b50 R08: 00007f5108018d80 R09:
0000000000000001
[  484.572474] R10: 0000000000000006 R11: 0000000000000246 R12:
0000000000000000
[  484.572476] R13: 00007f51080188e0 R14: 00007f5108018940 R15:
00007f5108018b50
[  484.572481]  </TASK>
[  484.572526] INFO: task scsi_eh_2:1671 blocked for more than 241 seconds.
[  484.572529]       Not tainted 5.15.0-25-generic #25-Ubuntu
[  484.572531] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables
this message.
[  484.572533] task:scsi_eh_2       state:D stack:    0 pid: 1671 ppid:
2 flags:0x00004000
[  484.572538] Call Trace:
[  484.572539]  <TASK>
[  484.572541]  __schedule+0x23d/0x590
[  484.572546]  schedule+0x4e/0xb0
[  484.572551]  schedule_preempt_disabled+0xe/0x10
[  484.572556]  __mutex_lock.constprop.0+0x263/0x490
[  484.572560]  ? update_load_avg+0x82/0x620
[  484.572565]  __mutex_lock_slowpath+0x13/0x20
[  484.572568]  mutex_lock+0x34/0x40
[  484.572574]  device_reset+0x22/0x50 [usb_storage]
[  484.572582]  scsi_eh_bus_device_reset+0xee/0x2a0
[  484.572588]  scsi_eh_ready_devs+0x67/0x240
[  484.572593]  ? finish_task_switch.isra.0+0xa6/0x270
[  484.572598]  scsi_unjam_host+0x101/0x1c0
[  484.572603]  ? _raw_spin_unlock_irqrestore+0xe/0x30
[  484.572608]  scsi_error_handler+0x139/0x180
[  484.572613]  ? scsi_unjam_host+0x1c0/0x1c0
[  484.572618]  kthread+0x12a/0x150
[  484.572622]  ? set_kthread_struct+0x50/0x50
[  484.572626]  ret_from_fork+0x22/0x30
[  484.572632]  </TASK>
[  484.572634] INFO: task usb-storage:1674 blocked for more than 241
seconds.
[  484.572636]       Not tainted 5.15.0-25-generic #25-Ubuntu
[  484.572639] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables
this message.
[  484.572641] task:usb-storage     state:D stack:    0 pid: 1674 ppid:
2 flags:0x00004000
[  484.572644] Call Trace:
[  484.572646]  <TASK>
[  484.572647]  __schedule+0x23d/0x590
[  484.572653]  schedule+0x4e/0xb0
[  484.572657]  schedule_timeout+0xfb/0x140
[  484.572661]  __wait_for_common+0xae/0x150
[  484.572666]  ? usleep_range_state+0x90/0x90
[  484.572670]  wait_for_completion+0x24/0x30
[  484.572675]  usb_sg_wait+0xee/0x1b0
[  484.572680]  usb_stor_bulk_transfer_sglist+0x8f/0xe0 [usb_storage]
[  484.572687]  usb_stor_Bulk_transport+0x191/0x440 [usb_storage]
[  484.572694]  usb_stor_invoke_transport+0x3e/0x540 [usb_storage]
[  484.572701]  ? try_to_wake_up+0x1fc/0x5a0
[  484.572705]  ? __wait_for_common+0x11d/0x150
[  484.572710]  ? usleep_range_state+0x90/0x90
[  484.572714]  usb_stor_transparent_scsi_command+0xe/0x10 [usb_storage]
[  484.572720]  usb_stor_control_thread+0x198/0x290 [usb_storage]
[  484.572728]  ? storage_probe+0xd0/0xd0 [usb_storage]
[  484.572734]  kthread+0x12a/0x150
[  484.572738]  ? set_kthread_struct+0x50/0x50
[  484.572742]  ret_from_fork+0x22/0x30
[  484.572748]  </TASK>

Thanks
Sudheer

[-- Attachment #2: Type: text/html, Size: 65201 bytes --]

^ permalink raw reply	[relevance 3%]

* Re: Ryzen 6000 (Mobile)
  @ 2022-08-15 16:54  2%                 ` Dylanger Daly
  0 siblings, 0 replies; 200+ results
From: Dylanger Daly @ 2022-08-15 16:54 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel, Andrew Cooper

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

Hi Jan,

Please see the attached dom0 dmesg log, verbose lspci output and a tar of all SSDT and DSDT decompiled ACPI tables.

Please let let me know if I can send anything else

Cheers

[-- Attachment #2: ACPI_Tables.tar.bz2 --]
[-- Type: application/x-bzip, Size: 113280 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: lspci_verbose.log --]
[-- Type: text/x-log; name=lspci_verbose.log, Size: 69051 bytes --]

00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 14b5 (rev 01)
	Subsystem: Lenovo Device 380a
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:00.2 IOMMU: Advanced Micro Devices, Inc. [AMD] Device 14b6
	Subsystem: Lenovo Device 3808
	Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 255
	Capabilities: [40] Secure device <?>
	Capabilities: [64] MSI: Enable+ Count=1/4 Maskable- 64bit+
		Address: 00000000fee0100c  Data: 4130
	Capabilities: [74] HyperTransport: MSI Mapping Enable+ Fixed+

00:01.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 14b7 (rev 01)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:01.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 14b8 (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin ? routed to IRQ 70
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
	I/O behind bridge: 00002000-00002fff [size=4K]
	Memory behind bridge: 80000000-80ffffff [size=16M]
	Prefetchable memory behind bridge: 0000008200000000-0000008301ffffff [size=4128M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x8, ASPM L1, Exit Latency L1 <64us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x8 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise-
			Slot #0, PowerLimit 75.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq+ LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState-
		RootCap: CRSVisible+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp+ 10BitTagReq+ OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp+ ExtTPHComp- ARIFwd+
			 AtomicOpsCap: Routing+ 32bit+ 64bit+ 128bitCAS-
		DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
		LnkCtl2: Target Link Speed: 16GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0100c  Data: 4000
	Capabilities: [c0] Subsystem: Lenovo Device 3827
	Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [150 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
		RootCmd: CERptEn- NFERptEn- FERptEn-
		RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
			 FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0
		ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
	Capabilities: [270 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans+
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [370 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=255us PortTPowerOnTime=150us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=255us LTR1.2_Threshold=393216ns
		L1SubCtl2: T_PwrOn=150us
	Capabilities: [400 v1] Data Link Feature <?>
	Capabilities: [410 v1] Physical Layer 16.0 GT/s <?>
	Capabilities: [440 v1] Lane Margining at the Receiver <?>
	Kernel driver in use: pcieport

00:02.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 14b7 (rev 01)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:02.3 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 14ba (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin ? routed to IRQ 71
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	I/O behind bridge: 0000f000-00000fff [disabled]
	Memory behind bridge: 81800000-818fffff [size=1M]
	Prefetchable memory behind bridge: 0000008302000000-00000083020fffff [size=1M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #3, Speed 16GT/s, Width x1, ASPM L1, Exit Latency L1 <64us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s (downgraded), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt+
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 75.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState+
		RootCap: CRSVisible+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp+ 10BitTagReq+ OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp+ ExtTPHComp- ARIFwd+
			 AtomicOpsCap: Routing+ 32bit+ 64bit+ 128bitCAS-
		DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0100c  Data: 4000
	Capabilities: [c0] Subsystem: Lenovo Device 3827
	Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [150 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
		RootCmd: CERptEn- NFERptEn- FERptEn-
		RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
			 FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0
		ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
	Capabilities: [270 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans+
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [370 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=10us PortTPowerOnTime=150us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=10us LTR1.2_Threshold=163840ns
		L1SubCtl2: T_PwrOn=150us
	Capabilities: [400 v1] Data Link Feature <?>
	Capabilities: [410 v1] Physical Layer 16.0 GT/s <?>
	Capabilities: [440 v1] Lane Margining at the Receiver <?>
	Kernel driver in use: pcieport

00:02.4 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 14ba (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin ? routed to IRQ 72
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	I/O behind bridge: 0000f000-00000fff [disabled]
	Memory behind bridge: 81700000-817fffff [size=1M]
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x4, ASPM L1, Exit Latency L1 <64us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
			Slot #0, PowerLimit 75.000W; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet- LinkState-
		RootCap: CRSVisible+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp+ 10BitTagReq+ OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp+ ExtTPHComp- ARIFwd+
			 AtomicOpsCap: Routing+ 32bit+ 64bit+ 128bitCAS-
		DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis- LTR+ OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
		LnkCtl2: Target Link Speed: 16GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0100c  Data: 4000
	Capabilities: [c0] Subsystem: Lenovo Device 3827
	Capabilities: [c8] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [150 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
		RootCmd: CERptEn- NFERptEn- FERptEn-
		RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
			 FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0
		ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
	Capabilities: [270 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans+
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [370 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=32us PortTPowerOnTime=150us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1-
			   T_CommonMode=32us LTR1.2_Threshold=163840ns
		L1SubCtl2: T_PwrOn=150us
	Capabilities: [400 v1] Data Link Feature <?>
	Capabilities: [410 v1] Physical Layer 16.0 GT/s <?>
	Capabilities: [440 v1] Lane Margining at the Receiver <?>
	Kernel driver in use: pcieport

00:03.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 14b7 (rev 01)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:04.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 14b7 (rev 01)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:08.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 14b7 (rev 01)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:08.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 14b9 (rev 10) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 73
	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
	I/O behind bridge: 00001000-00001fff [size=4K]
	Memory behind bridge: 81300000-816fffff [size=4M]
	Prefetchable memory behind bridge: 0000008310000000-00000083201fffff [size=258M]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA+ VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		RootCap: CRSVisible+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 4
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-
			 AtomicOpsCap: Routing+ 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
		LnkCtl2: Target Link Speed: 16GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0100c  Data: 4000
	Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Device 14b9
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [270 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans+
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [400 v1] Data Link Feature <?>
	Capabilities: [410 v1] Physical Layer 16.0 GT/s <?>
	Capabilities: [450 v1] Lane Margining at the Receiver <?>
	Kernel driver in use: pcieport

00:08.3 PCI bridge: Advanced Micro Devices, Inc. [AMD] Device 14b9 (rev 10) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 74
	Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
	I/O behind bridge: 0000f000-00000fff [disabled]
	Memory behind bridge: 81000000-812fffff [size=3M]
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff [disabled]
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		RootCap: CRSVisible+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
		RootSta: PME ReqID 0503, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd-
			 AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled, ARIFwd-
			 AtomicOpsCtl: ReqEn- EgressBlck-
		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
		LnkCtl2: Target Link Speed: 16GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0100c  Data: 4000
	Capabilities: [c0] Subsystem: Advanced Micro Devices, Inc. [AMD] Device 14b9
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [150 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
		RootCmd: CERptEn- NFERptEn- FERptEn-
		RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
			 FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0
		ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
	Capabilities: [270 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans+
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [400 v1] Data Link Feature <?>
	Capabilities: [410 v1] Physical Layer 16.0 GT/s <?>
	Capabilities: [450 v1] Lane Margining at the Receiver <?>
	Kernel driver in use: pcieport

00:14.0 SMBus: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller (rev 71)
	Subsystem: Lenovo Device 386c
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: piix4_smbus
	Kernel modules: i2c_piix4, sp5100_tco

00:14.3 ISA bridge: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge (rev 51)
	Subsystem: Lenovo Device 3857
	Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0

00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 1679
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 167a
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 167b
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 167c
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: k10temp
	Kernel modules: k10temp

00:18.4 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 167d
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.5 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 167e
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.6 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 167f
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.7 Host bridge: Advanced Micro Devices, Inc. [AMD] Device 1680
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

01:00.0 VGA compatible controller: NVIDIA Corporation GA107BM (rev a1) (prog-if 00 [VGA controller])
	Subsystem: Lenovo Device 3b12
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 92
	Region 0: Memory at 80000000 (32-bit, non-prefetchable) [size=16M]
	Region 1: Memory at 8200000000 (64-bit, prefetchable) [size=4G]
	Region 3: Memory at 8300000000 (64-bit, prefetchable) [size=32M]
	Region 5: I/O ports at 2000 [size=128]
	Expansion ROM at <ignored> [disabled]
	Capabilities: [60] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold-)
		Status: D3 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [68] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0100c  Data: 4000
	Capabilities: [78] Express (v2) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 <64us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+ FLReset-
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <1us, L1 <4us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x8 (downgraded)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range AB, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp+ 10BitTagReq+ OBFF Via message, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
		LnkCtl2: Target Link Speed: 16GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [b4] Vendor Specific Information: Len=14 <?>
	Capabilities: [100 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [250 v1] Latency Tolerance Reporting
		Max snoop latency: 1048576ns
		Max no snoop latency: 1048576ns
	Capabilities: [258 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=255us PortTPowerOnTime=10us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+
			   T_CommonMode=0us LTR1.2_Threshold=393216ns
		L1SubCtl2: T_PwrOn=150us
	Capabilities: [128 v1] Power Budgeting <?>
	Capabilities: [420 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>
	Capabilities: [900 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [bb0 v1] Physical Resizable BAR
		BAR 0: current size: 16MB, supported: 16MB
		BAR 1: current size: 4GB, supported: 64MB 128MB 256MB 512MB 1GB 2GB 4GB
		BAR 3: current size: 32MB, supported: 32MB
	Capabilities: [c1c v1] Physical Layer 16.0 GT/s <?>
	Capabilities: [d00 v1] Lane Margining at the Receiver <?>
	Capabilities: [e00 v1] Data Link Feature <?>
	Kernel driver in use: nouveau
	Kernel modules: nouveau

02:00.0 Network controller: MEDIATEK Corp. Device 0616
	Subsystem: Lenovo Device e0c6
	Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 46
	Region 0: Memory at 8302000000 (64-bit, prefetchable) [size=1M]
	Region 2: Memory at 81800000 (64-bit, non-prefetchable) [size=32K]
	Capabilities: [80] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 75.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+ FLReset-
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #1, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <2us, L1 <8us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s (ok), Width x1 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCap2: Supported Link Speeds: 2.5-5GT/s, Crosslink- Retimer- 2Retimers- DRS-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [e0] MSI: Enable- Count=1/32 Maskable+ 64bit+
		Address: 0000000000000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [f8] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=1556 Rev=1 Len=008 <?>
	Capabilities: [108 v1] Latency Tolerance Reporting
		Max snoop latency: 1048576ns
		Max no snoop latency: 1048576ns
	Capabilities: [110 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
			  PortCommonModeRestoreTime=3us PortTPowerOnTime=52us
		L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
			   T_CommonMode=0us LTR1.2_Threshold=0ns
		L1SubCtl2: T_PwrOn=10us
	Capabilities: [200 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Kernel driver in use: pciback
	Kernel modules: mt7921e

03:00.0 Non-Volatile memory controller: Micron Technology Inc Device 5407 (prog-if 02 [NVM Express])
	DeviceName: Realtek
	Subsystem: Micron Technology Inc Device 0100
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 46
	NUMA node: 0
	Region 0: Memory at 81700000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI-X: Enable+ Count=32 Masked-
		Vector table: BAR=0 offset=00003000
		PBA: BAR=0 offset=00002000
	Capabilities: [60] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 75.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+ FLReset-
			MaxPayload 256 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x4, ASPM L1, Exit Latency L1 <8us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM L1 Enabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x4 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR+
			 10BitTagComp+ 10BitTagReq- OBFF Via message, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 17s to 64s, TimeoutDis- LTR+ OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
		LnkCtl2: Target Link Speed: 16GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
		AERCap:	First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
			MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
		HeaderLog: 00000000 00000000 00000000 00000000
	Capabilities: [2a0 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2d0 v1] Latency Tolerance Reporting
		Max snoop latency: 1048576ns
		Max no snoop latency: 1048576ns
	Capabilities: [320 v1] Data Link Feature <?>
	Capabilities: [330 v1] Physical Layer 16.0 GT/s <?>
	Capabilities: [360 v1] Lane Margining at the Receiver <?>
	Capabilities: [700 v1] L1 PM Substates
		L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1- L1_PM_Substates+
			  PortCommonModeRestoreTime=32us PortTPowerOnTime=20us
		L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1-
			   T_CommonMode=0us LTR1.2_Threshold=163840ns
		L1SubCtl2: T_PwrOn=150us
	Kernel driver in use: nvme
	Kernel modules: nvme

04:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Device 1681 (rev 02) (prog-if 00 [VGA controller])
	Subsystem: Lenovo Device 3b1e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 34
	Region 0: Memory at 8310000000 (64-bit, prefetchable) [size=256M]
	Region 2: Memory at 8320000000 (64-bit, prefetchable) [size=2M]
	Region 4: I/O ports at 1000 [size=256]
	Region 5: Memory at 81600000 (32-bit, non-prefetchable) [size=512K]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr+ FatalErr- UnsupReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: 32bit+ 64bit+ 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn+
		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
		LnkCtl2: Target Link Speed: 16GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/4 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] MSI-X: Enable+ Count=4 Masked-
		Vector table: BAR=5 offset=00042000
		PBA: BAR=5 offset=00043000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [270 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Capabilities: [2b0 v1] Address Translation Service (ATS)
		ATSCap:	Invalidate Queue Depth: 00
		ATSCtl:	Enable-, Smallest Translation Unit: 00
	Capabilities: [2c0 v1] Page Request Interface (PRI)
		PRICtl: Enable- Reset-
		PRISta: RF- UPRGI- Stopped+
		Page Request Capacity: 00000100, Page Request Allocation: 00000000
	Capabilities: [2d0 v1] Process Address Space ID (PASID)
		PASIDCap: Exec+ Priv+, Max PASID Width: 10
		PASIDCtl: Enable- Exec- Priv-
	Capabilities: [410 v1] Physical Layer 16.0 GT/s <?>
	Capabilities: [450 v1] Lane Margining at the Receiver <?>
	Kernel driver in use: amdgpu
	Kernel modules: amdgpu

04:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Device 1640
	Subsystem: Lenovo Device 3807
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 94
	Region 0: Memory at 816c8000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn+
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0100c  Data: 4000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

04:00.2 Encryption controller: Advanced Micro Devices, Inc. [AMD] VanGogh PSP/CCP
	Subsystem: Lenovo Device 382d
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 32
	Region 2: Memory at 81500000 (32-bit, non-prefetchable) [size=1M]
	Region 5: Memory at 816cc000 (32-bit, non-prefetchable) [size=8K]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/2 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] MSI-X: Enable+ Count=2 Masked-
		Vector table: BAR=5 offset=00000000
		PBA: BAR=5 offset=00001000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: ccp
	Kernel modules: ccp

04:00.3 USB controller: Advanced Micro Devices, Inc. [AMD] Device 161d (prog-if 30 [XHCI])
	Subsystem: Advanced Micro Devices, Inc. [AMD] Device 161d
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 33
	Region 0: Memory at 81300000 (64-bit, non-prefetchable) [size=1M]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] MSI-X: Enable+ Count=8 Masked-
		Vector table: BAR=0 offset=000fe000
		PBA: BAR=0 offset=000ff000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

04:00.4 USB controller: Advanced Micro Devices, Inc. [AMD] Device 161e (prog-if 30 [XHCI])
	Subsystem: Advanced Micro Devices, Inc. [AMD] Device 161e
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 34
	Region 0: Memory at 81400000 (64-bit, non-prefetchable) [size=1M]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] MSI-X: Enable+ Count=8 Masked-
		Vector table: BAR=0 offset=000fe000
		PBA: BAR=0 offset=000ff000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

04:00.5 Multimedia controller: Advanced Micro Devices, Inc. [AMD] Raven/Raven2/FireFlight/Renoir Audio Processor (rev 60)
	Subsystem: Lenovo Device 3858
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 35
	Region 0: Memory at 81680000 (32-bit, non-prefetchable) [size=256K]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: snd_pci_acp6x
	Kernel modules: snd_pci_acp3x, snd_rn_pci_acp3x, snd_pci_acp5x, snd_pci_acp6x, snd_sof_amd_renoir

04:00.6 Audio device: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) HD Audio Controller
	Subsystem: Lenovo Device 3855
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 95
	Region 0: Memory at 816c0000 (32-bit, non-prefetchable) [size=32K]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt+ EETLPPrefix+, MaxEETLPPrefixes 1
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0100c  Data: 4000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel

05:00.0 USB controller: Advanced Micro Devices, Inc. [AMD] Device 161f (prog-if 30 [XHCI])
	Subsystem: Advanced Micro Devices, Inc. [AMD] Device 161f
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 26
	Region 0: Memory at 81000000 (64-bit, non-prefetchable) [size=1M]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkCap2: Supported Link Speeds: 2.5-16GT/s, Crosslink- Retimer+ 2Retimers+ DRS-
		LnkCtl2: Target Link Speed: 16GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+ EqualizationPhase1+
			 EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] MSI-X: Enable+ Count=8 Masked-
		Vector table: BAR=0 offset=000fe000
		PBA: BAR=0 offset=000ff000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [270 v1] Secondary PCI Express
		LnkCtl3: LnkEquIntrruptEn- PerformEqu-
		LaneErrStat: 0
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Capabilities: [410 v1] Physical Layer 16.0 GT/s <?>
	Capabilities: [450 v1] Lane Margining at the Receiver <?>
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

05:00.3 USB controller: Advanced Micro Devices, Inc. [AMD] Device 15d6 (prog-if 30 [XHCI])
	Subsystem: Advanced Micro Devices, Inc. [AMD] Device 15d6
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 24
	Region 0: Memory at 81100000 (64-bit, non-prefetchable) [size=1M]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] MSI-X: Enable+ Count=8 Masked-
		Vector table: BAR=0 offset=000fe000
		PBA: BAR=0 offset=000ff000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci

05:00.4 USB controller: Advanced Micro Devices, Inc. [AMD] Device 15d7 (prog-if 30 [XHCI])
	Subsystem: Advanced Micro Devices, Inc. [AMD] Device 15d7
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 25
	Region 0: Memory at 81200000 (64-bit, non-prefetchable) [size=1M]
	Capabilities: [48] Vendor Specific Information: Len=08 <?>
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [64] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	CorrErr- NonFatalErr- FatalErr- UnsupReq-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 512 bytes
		DevSta:	CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 16GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
		LnkCtl:	ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 16GT/s (ok), Width x16 (ok)
			TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
			 10BitTagComp+ 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
			 EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
			 FRS- TPHComp- ExtTPHComp-
			 AtomicOpsCap: 32bit- 64bit- 128bitCAS-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR- OBFF Disabled,
			 AtomicOpsCtl: ReqEn-
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
			 EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
			 Retimer- 2Retimers- CrosslinkRes: unsupported
	Capabilities: [a0] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] MSI-X: Enable+ Count=8 Masked-
		Vector table: BAR=0 offset=000fe000
		PBA: BAR=0 offset=000ff000
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Capabilities: [2a0 v1] Access Control Services
		ACSCap:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #4: dom0_dmesg.log --]
[-- Type: text/x-log; name=dom0_dmesg.log, Size: 101867 bytes --]

[    0.000000] Linux version 5.18.9-2.fc32.qubes.x86_64 (user@build) (gcc (GCC) 10.3.1 20210422 (Red Hat 10.3.1-1), GNU ld version 2.34-6.fc32) #1 SMP PREEMPT_DYNAMIC Wed Jul 20 07:09:10 UTC 2022
[    0.000000] Command line: placeholder root=/dev/mapper/qubes_dom0-root ro rd.luks.uuid=luks-c4c112f4-ad10-4cb0-bfbb-c9d365323322 rd.lvm.lv=qubes_dom0/root rd.lvm.lv=qubes_dom0/swap plymouth.ignore-serial-consoles rd.driver.pre=btrfs rhgb quiet
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] initrd moved from [mem 0x08000000-0x0b06f49d] to [mem 0x04026000-0x0709549d]
[    0.000000] Released 0 page(s)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] Xen: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] Xen: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] Xen: [mem 0x0000000000100000-0x0000000009afffff] usable
[    0.000000] Xen: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
[    0.000000] Xen: [mem 0x0000000009e00000-0x0000000009efffff] usable
[    0.000000] Xen: [mem 0x0000000009f00000-0x0000000009f27fff] ACPI NVS
[    0.000000] Xen: [mem 0x0000000009f28000-0x000000005fbfefff] usable
[    0.000000] Xen: [mem 0x000000005fbff000-0x000000005fbfffff] reserved
[    0.000000] Xen: [mem 0x000000005fc00000-0x0000000062363fff] usable
[    0.000000] Xen: [mem 0x0000000062364000-0x0000000064563fff] reserved
[    0.000000] Xen: [mem 0x0000000064564000-0x000000006456cfff] usable
[    0.000000] Xen: [mem 0x000000006456d000-0x000000006456ffff] reserved
[    0.000000] Xen: [mem 0x0000000064570000-0x000000007077efff] usable
[    0.000000] Xen: [mem 0x000000007077f000-0x0000000072f7efff] reserved
[    0.000000] Xen: [mem 0x0000000072f7f000-0x000000007af7efff] ACPI NVS
[    0.000000] Xen: [mem 0x000000007af7f000-0x000000007affefff] ACPI data
[    0.000000] Xen: [mem 0x000000007afff000-0x000000007affffff] usable
[    0.000000] Xen: [mem 0x000000007b000000-0x000000007bffffff] reserved
[    0.000000] Xen: [mem 0x000000007d800000-0x000000007fffffff] reserved
[    0.000000] Xen: [mem 0x00000000a0200000-0x00000000a02fffff] reserved
[    0.000000] Xen: [mem 0x00000000a0400000-0x00000000a0403fff] reserved
[    0.000000] Xen: [mem 0x00000000fec00000-0x00000000fec01fff] reserved
[    0.000000] Xen: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
[    0.000000] Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] Xen: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] Xen: [mem 0x0000000100000000-0x0000000191e0cfff] usable
[    0.000000] Xen: [mem 0x000000083f340000-0x00000008a01fffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.80 by INSYDE Corp.
[    0.000000] efi: ACPI=0x7affe000 ACPI 2.0=0x7affe014 TPMFinalLog=0x7af3e000 SMBIOS=0x716e5000 SMBIOS 3.0=0x716e3000 MEMATTR=0x6c0d2018 ESRT=0x6c120d18 
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: LENOVO 82TL/LNVNB161216, BIOS JVCN29WW 07/01/2022
[    0.000000] Hypervisor detected: Xen PV
[    0.026640] tsc: Fast TSC calibration using PIT
[    0.026641] tsc: Detected 3193.946 MHz processor
[    0.026641] tsc: Detected 3194.014 MHz TSC
[    0.026723] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.026726] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.026733] last_pfn = 0x191e0d max_arch_pfn = 0x400000000
[    0.026734] Disabled
[    0.026735] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[    0.026738] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP  UC  UC  
[    0.026739] last_pfn = 0x7b000 max_arch_pfn = 0x400000000
[    0.080563] Secure boot disabled
[    0.080565] RAMDISK: [mem 0x04026000-0x07095fff]
[    0.080569] ACPI: Early table checksum verification disabled
[    0.080575] ACPI: RSDP 0x000000007AFFE014 000024 (v02 LENOVO)
[    0.080581] ACPI: XSDT 0x000000007AF9B228 00018C (v01 LENOVO CB-01    00000001      01000013)
[    0.080648] ACPI: FACP 0x000000007AFE9000 00010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080733] ACPI: DSDT 0x000000007AFD5000 00DABE (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080738] ACPI: FACS 0x000000007AEB2000 000040
[    0.080744] ACPI: UEFI 0x000000007AF7E000 000236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080749] ACPI: SSDT 0x000000007AFFC000 000906 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080755] ACPI: IVRS 0x000000007AFFB000 0001A4 (v02 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080761] ACPI: SSDT 0x000000007AFF3000 007DF6 (v02 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080766] ACPI: SSDT 0x000000007AFF2000 000573 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080772] ACPI: SSDT 0x000000007AFF1000 0001CC (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080777] ACPI: SSDT 0x000000007AFEF000 001980 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080783] ACPI: SSDT 0x000000007AFEE000 000471 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080788] ACPI: TPM2 0x000000007AFED000 000034 (v04 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080793] ACPI: MSDM 0x000000007AFEC000 000055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080799] ACPI: ASF! 0x000000007AFEB000 0000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080804] ACPI: BOOT 0x000000007AFEA000 000028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080809] ACPI: HPET 0x000000007AFE8000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080815] ACPI: APIC 0x000000007AFE7000 000138 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080820] ACPI: MCFG 0x000000007AFE6000 00003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080825] ACPI: SLIC 0x000000007AFE5000 000176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080831] ACPI: SSDT 0x000000007AFD4000 000099 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080836] ACPI: $H2O 0x000000007AFFD000 00002C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080841] ACPI: SSDT 0x000000007AFD0000 002E8E (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080846] ACPI: VFCT 0x000000007AFC5000 00AE84 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080852] ACPI: SSDT 0x000000007AFC4000 0000F8 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080857] ACPI: SSDT 0x000000007AFBE000 005354 (v02 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080862] ACPI: CRAT 0x000000007AFBD000 000EE8 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080868] ACPI: CDIT 0x000000007AFBC000 000029 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080873] ACPI: SSDT 0x000000007AFBB000 0000D9 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080878] ACPI: SSDT 0x000000007AFB9000 001590 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080883] ACPI: SSDT 0x000000007AFB7000 001565 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080889] ACPI: SSDT 0x000000007AFB6000 00074F (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080894] ACPI: SSDT 0x000000007AFB4000 001A5C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080899] ACPI: SSDT 0x000000007AFAC000 007E2F (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080904] ACPI: FPDT 0x000000007AFAB000 000044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080910] ACPI: WSMT 0x000000007AFA9000 000028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080915] ACPI: SSDT 0x000000007AFE3000 001E23 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080920] ACPI: SSDT 0x000000007AFA8000 000761 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080926] ACPI: SSDT 0x000000007AFA7000 00075B (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080931] ACPI: SSDT 0x000000007AFA5000 001B0C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080936] ACPI: SSDT 0x000000007AFA4000 0007A5 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080942] ACPI: SSDT 0x000000007AF9C000 007A2A (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080947] ACPI: SSDT 0x000000007AF96000 004CFE (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080953] ACPI: SSDT 0x000000007AFD3000 000E6E (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080958] ACPI: SSDT 0x000000007AF95000 000742 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080963] ACPI: SSDT 0x000000007AF94000 00008D (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080968] ACPI: SSDT 0x000000007AF92000 00121E (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080973] ACPI: BGRT 0x000000007AFAA000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.080976] ACPI: Reserving FACP table memory at [mem 0x7afe9000-0x7afe910b]
[    0.080976] ACPI: Reserving DSDT table memory at [mem 0x7afd5000-0x7afe2abd]
[    0.080977] ACPI: Reserving FACS table memory at [mem 0x7aeb2000-0x7aeb203f]
[    0.080978] ACPI: Reserving UEFI table memory at [mem 0x7af7e000-0x7af7e235]
[    0.080978] ACPI: Reserving SSDT table memory at [mem 0x7affc000-0x7affc905]
[    0.080979] ACPI: Reserving IVRS table memory at [mem 0x7affb000-0x7affb1a3]
[    0.080979] ACPI: Reserving SSDT table memory at [mem 0x7aff3000-0x7affadf5]
[    0.080980] ACPI: Reserving SSDT table memory at [mem 0x7aff2000-0x7aff2572]
[    0.080981] ACPI: Reserving SSDT table memory at [mem 0x7aff1000-0x7aff11cb]
[    0.080981] ACPI: Reserving SSDT table memory at [mem 0x7afef000-0x7aff097f]
[    0.080982] ACPI: Reserving SSDT table memory at [mem 0x7afee000-0x7afee470]
[    0.080982] ACPI: Reserving TPM2 table memory at [mem 0x7afed000-0x7afed033]
[    0.080983] ACPI: Reserving MSDM table memory at [mem 0x7afec000-0x7afec054]
[    0.080983] ACPI: Reserving ASF! table memory at [mem 0x7afeb000-0x7afeb0a4]
[    0.080984] ACPI: Reserving BOOT table memory at [mem 0x7afea000-0x7afea027]
[    0.080985] ACPI: Reserving HPET table memory at [mem 0x7afe8000-0x7afe8037]
[    0.080985] ACPI: Reserving APIC table memory at [mem 0x7afe7000-0x7afe7137]
[    0.080986] ACPI: Reserving MCFG table memory at [mem 0x7afe6000-0x7afe603b]
[    0.080986] ACPI: Reserving SLIC table memory at [mem 0x7afe5000-0x7afe5175]
[    0.080987] ACPI: Reserving SSDT table memory at [mem 0x7afd4000-0x7afd4098]
[    0.080987] ACPI: Reserving $H2O table memory at [mem 0x7affd000-0x7affd02b]
[    0.080988] ACPI: Reserving SSDT table memory at [mem 0x7afd0000-0x7afd2e8d]
[    0.080989] ACPI: Reserving VFCT table memory at [mem 0x7afc5000-0x7afcfe83]
[    0.080989] ACPI: Reserving SSDT table memory at [mem 0x7afc4000-0x7afc40f7]
[    0.080990] ACPI: Reserving SSDT table memory at [mem 0x7afbe000-0x7afc3353]
[    0.080991] ACPI: Reserving CRAT table memory at [mem 0x7afbd000-0x7afbdee7]
[    0.080991] ACPI: Reserving CDIT table memory at [mem 0x7afbc000-0x7afbc028]
[    0.080992] ACPI: Reserving SSDT table memory at [mem 0x7afbb000-0x7afbb0d8]
[    0.080992] ACPI: Reserving SSDT table memory at [mem 0x7afb9000-0x7afba58f]
[    0.080993] ACPI: Reserving SSDT table memory at [mem 0x7afb7000-0x7afb8564]
[    0.080994] ACPI: Reserving SSDT table memory at [mem 0x7afb6000-0x7afb674e]
[    0.080994] ACPI: Reserving SSDT table memory at [mem 0x7afb4000-0x7afb5a5b]
[    0.080995] ACPI: Reserving SSDT table memory at [mem 0x7afac000-0x7afb3e2e]
[    0.080995] ACPI: Reserving FPDT table memory at [mem 0x7afab000-0x7afab043]
[    0.080996] ACPI: Reserving WSMT table memory at [mem 0x7afa9000-0x7afa9027]
[    0.080997] ACPI: Reserving SSDT table memory at [mem 0x7afe3000-0x7afe4e22]
[    0.080997] ACPI: Reserving SSDT table memory at [mem 0x7afa8000-0x7afa8760]
[    0.080998] ACPI: Reserving SSDT table memory at [mem 0x7afa7000-0x7afa775a]
[    0.080998] ACPI: Reserving SSDT table memory at [mem 0x7afa5000-0x7afa6b0b]
[    0.080999] ACPI: Reserving SSDT table memory at [mem 0x7afa4000-0x7afa47a4]
[    0.081000] ACPI: Reserving SSDT table memory at [mem 0x7af9c000-0x7afa3a29]
[    0.081000] ACPI: Reserving SSDT table memory at [mem 0x7af96000-0x7af9acfd]
[    0.081001] ACPI: Reserving SSDT table memory at [mem 0x7afd3000-0x7afd3e6d]
[    0.081002] ACPI: Reserving SSDT table memory at [mem 0x7af95000-0x7af95741]
[    0.081002] ACPI: Reserving SSDT table memory at [mem 0x7af94000-0x7af9408c]
[    0.081003] ACPI: Reserving SSDT table memory at [mem 0x7af92000-0x7af9321d]
[    0.081004] ACPI: Reserving BGRT table memory at [mem 0x7afaa000-0x7afaa037]
[    0.081032] Setting APIC routing to Xen PV.
[    0.081058] NUMA turned off
[    0.081059] Faking a node at [mem 0x0000000000000000-0x0000000191e0cfff]
[    0.081065] NODE_DATA(0) allocated [mem 0x6ff7f000-0x6ffa9fff]
[    0.091998] Zone ranges:
[    0.092002]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.092005]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.092006]   Normal   [mem 0x0000000100000000-0x0000000191e0cfff]
[    0.092007]   Device   empty
[    0.092008] Movable zone start for each node
[    0.092009] Early memory node ranges
[    0.092010]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.092011]   node   0: [mem 0x0000000000100000-0x0000000009afffff]
[    0.092012]   node   0: [mem 0x0000000009e00000-0x0000000009efffff]
[    0.092012]   node   0: [mem 0x0000000009f28000-0x000000005fbfefff]
[    0.092013]   node   0: [mem 0x000000005fc00000-0x0000000062363fff]
[    0.092014]   node   0: [mem 0x0000000064564000-0x000000006456cfff]
[    0.092015]   node   0: [mem 0x0000000064570000-0x000000007077efff]
[    0.092015]   node   0: [mem 0x000000007afff000-0x000000007affffff]
[    0.092016]   node   0: [mem 0x0000000100000000-0x0000000191e0cfff]
[    0.092018] Initmem setup node 0 [mem 0x0000000000001000-0x0000000191e0cfff]
[    0.092024] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.092049] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.092272] On node 0, zone DMA32: 768 pages in unavailable ranges
[    0.094317] On node 0, zone DMA32: 40 pages in unavailable ranges
[    0.094379] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.094444] On node 0, zone DMA32: 8704 pages in unavailable ranges
[    0.094739] On node 0, zone DMA32: 3 pages in unavailable ranges
[    0.095060] On node 0, zone DMA32: 43136 pages in unavailable ranges
[    0.098835] On node 0, zone Normal: 20480 pages in unavailable ranges
[    0.099018] On node 0, zone Normal: 25075 pages in unavailable ranges
[    0.099020] p2m virtual area at (____ptrval____), size is 40000000
[    0.397858] Remapped 597517 page(s)
[    0.398191] ACPI: PM-Timer IO Port: 0x408
[    0.398253] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.398255] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.398257] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.398259] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.398261] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.398262] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.398264] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.398266] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.398268] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.398269] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.398271] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.398273] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.398274] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.398276] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.398278] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.398279] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.398310] IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
[    0.398317] IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
[    0.398332] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.398335] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.398355] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.398357] ACPI: HPET id: 0x10228210 base: 0xfed00000
[    0.398766] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.398789] [mem 0xa0404000-0xfebfffff] available for PCI devices
[    0.398792] Booting kernel on Xen
[    0.398792] Xen version: 4.14.5 (preserve-AD)
[    0.398795] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.402015] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
[    0.402216] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u2097152
[    0.402221] pcpu-alloc: s212992 r8192 d28672 u2097152 alloc=1*2097152
[    0.402223] pcpu-alloc: [0] 0 
[    0.402256] xen: PV spinlocks disabled
[    0.402263] Fallback order for Node 0: 0 
[    0.402266] Built 1 zonelists, mobility grouping on.  Total pages: 1032030
[    0.402267] Policy zone: Normal
[    0.402268] Kernel command line: placeholder root=/dev/mapper/qubes_dom0-root ro rd.luks.uuid=luks-c4c112f4-ad10-4cb0-bfbb-c9d365323322 rd.lvm.lv=qubes_dom0/root rd.lvm.lv=qubes_dom0/swap plymouth.ignore-serial-consoles rd.driver.pre=btrfs rhgb quiet
[    0.402346] Unknown kernel command line parameters "placeholder rhgb", will be passed to user space.
[    0.402683] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.402859] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.403090] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:on
[    0.403092] mem auto-init: clearing system memory may take some time...
[    0.428488] software IO TLB: mapped [mem 0x000000018d400000-0x0000000191400000] (64MB)
[    0.732965] Memory: 3937472K/4194300K available (16392K kernel code, 3690K rwdata, 6124K rodata, 3216K init, 5680K bss, 256576K reserved, 0K cma-reserved)
[    0.740067] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.740514] ftrace: allocating 54344 entries in 213 pages
[    0.748538] ftrace: allocated 213 pages with 5 groups
[    0.749302] Dynamic Preempt: voluntary
[    0.749785] rcu: Preemptible hierarchical RCU implementation.
[    0.749786] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.
[    0.749787] 	Trampoline variant of Tasks RCU enabled.
[    0.749788] 	Rude variant of Tasks RCU enabled.
[    0.749788] 	Tracing variant of Tasks RCU enabled.
[    0.749789] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.749790] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.760776] Using NULL legacy PIC
[    0.760777] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 0
[    0.760800] xen:events: Using FIFO-based ABI
[    0.760814] xen: --> pirq=1 -> irq=1 (gsi=1)
[    0.760818] xen: --> pirq=2 -> irq=2 (gsi=2)
[    0.760821] xen: --> pirq=3 -> irq=3 (gsi=3)
[    0.760824] xen: --> pirq=4 -> irq=4 (gsi=4)
[    0.760827] xen: --> pirq=5 -> irq=5 (gsi=5)
[    0.760830] xen: --> pirq=6 -> irq=6 (gsi=6)
[    0.760833] xen: --> pirq=7 -> irq=7 (gsi=7)
[    0.760905] xen: --> pirq=8 -> irq=8 (gsi=8)
[    0.760908] xen: --> pirq=9 -> irq=9 (gsi=9)
[    0.760911] xen: --> pirq=10 -> irq=10 (gsi=10)
[    0.760914] xen: --> pirq=11 -> irq=11 (gsi=11)
[    0.760917] xen: --> pirq=12 -> irq=12 (gsi=12)
[    0.760920] xen: --> pirq=13 -> irq=13 (gsi=13)
[    0.760923] xen: --> pirq=14 -> irq=14 (gsi=14)
[    0.760926] xen: --> pirq=15 -> irq=15 (gsi=15)
[    0.761076] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.761277] random: crng init done
[    0.761299] Console: colour dummy device 80x25
[    0.761310] printk: console [tty0] enabled
[    0.761318] printk: console [hvc0] enabled
[    0.761336] ACPI: Core revision 20211217
[    0.807674] ACPI BIOS Warning (bug): Incorrect checksum in table [BGRT] - 0x57, should be 0x35 (20211217/tbprint-174)
[    0.807706] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.807708] Xen: using vcpuop timer interface
[    0.807710] installing Xen timer for CPU 0
[    0.807722] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2e0a334ccc6, max_idle_ns: 440795314254 ns
[    0.807724] Calibrating delay loop (skipped), value calculated using timer frequency.. 6388.02 BogoMIPS (lpj=3194014)
[    0.807726] pid_max: default: 32768 minimum: 301
[    0.807749] LSM: Security Framework initializing
[    0.807754] Yama: becoming mindful.
[    0.807780] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.807781] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.808001] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[    0.808002] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[    0.808004] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.808006] Spectre V2 : Mitigation: Retpolines
[    0.808006] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.808008] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.808009] Speculative Store Bypass: Vulnerable
[    0.828325] Freeing SMP alternatives memory: 48K
[    0.828772] VPMU disabled by hypervisor.
[    0.828909] cblist_init_generic: Setting adjustable number of callback queues.
[    0.828911] cblist_init_generic: Setting shift to 0 and lim to 1.
[    0.828923] cblist_init_generic: Setting shift to 0 and lim to 1.
[    0.828935] cblist_init_generic: Setting shift to 0 and lim to 1.
[    0.828946] Performance Events: PMU not available due to virtualization, using software events only.
[    0.828977] rcu: Hierarchical SRCU implementation.
[    0.829233] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.829269] smp: Bringing up secondary CPUs ...
[    0.829269] smp: Brought up 1 node, 1 CPU
[    0.829270] smpboot: Max logical packages: 1
[    0.829354] devtmpfs: initialized
[    0.829381] x86/mm: Memory block size: 128MB
[    0.829677] ACPI: PM: Registering ACPI NVS region [mem 0x09f00000-0x09f27fff] (163840 bytes)
[    0.829680] ACPI: PM: Registering ACPI NVS region [mem 0x72f7f000-0x7af7efff] (134217728 bytes)
[    0.830887] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.830889] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
[    0.830914] pinctrl core: initialized pinctrl subsystem
[    0.831000] PM: RTC time: 04:34:59, date: 2022-08-15
[    0.831587] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.831598] xen:grant_table: Grant tables using version 1 layout
[    0.831640] Grant table initialized
[    0.831692] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[    0.831695] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.831697] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.831704] audit: initializing netlink subsys (disabled)
[    0.831766] audit: type=2000 audit(1660538100.338:1): state=initialized audit_enabled=0 res=1
[    0.831818] thermal_sys: Registered thermal governor 'fair_share'
[    0.831819] thermal_sys: Registered thermal governor 'bang_bang'
[    0.831820] thermal_sys: Registered thermal governor 'step_wise'
[    0.831820] thermal_sys: Registered thermal governor 'user_space'
[    0.831899] Simple Boot Flag at 0x44 set to 0x1
[    0.832026] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.832029] PCI: not using MMCONFIG
[    0.832030] PCI: Using configuration type 1 for base access
[    0.832031] PCI: Using configuration type 1 for extended access
[    0.832879] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.832980] cryptd: max_cpu_qlen set to 1000
[    0.833064] raid6: skipped pq benchmark and selected avx2x4
[    0.833065] raid6: using avx2x2 recovery algorithm
[    0.833089] ACPI: Added _OSI(Module Device)
[    0.833089] ACPI: Added _OSI(Processor Device)
[    0.833090] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.833090] ACPI: Added _OSI(Processor Aggregator Device)
[    0.833091] ACPI: Added _OSI(Linux-Dell-Video)
[    0.833091] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.833092] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.855299] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.PB2], AE_NOT_FOUND (20211217/dswload2-162)
[    0.855303] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20211217/psobject-220)
[    0.855305] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0010)
[    0.855350] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.PB2], AE_NOT_FOUND (20211217/dswload2-162)
[    0.855353] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20211217/psobject-220)
[    0.855354] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0010)
[    0.859482] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GPP7.DEV0], AE_NOT_FOUND (20211217/dswload2-162)
[    0.859485] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20211217/psobject-220)
[    0.859486] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0010)
[    0.860431] ACPI BIOS Error (bug): Failure creating named object [\_TZ.TZ01], AE_ALREADY_EXISTS (20211217/dswload2-326)
[    0.860434] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20211217/psobject-220)
[    0.860435] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x5B85)
[    0.864579] ACPI: 28 ACPI AML tables successfully acquired and loaded
[    0.865589] xen: registering gsi 9 triggering 0 polarity 1
[    0.866853] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.878247] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[    0.878249] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[    0.878928] ACPI: EC: EC started
[    0.878928] ACPI: EC: interrupt blocked
[    0.921917] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.921919] ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC used to handle transactions
[    0.921920] ACPI: Interpreter enabled
[    0.921931] ACPI: PM: (supports S0 S5)
[    0.921931] ACPI: Using IOAPIC for interrupt routing
[    0.922356] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.926181] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] not reserved in ACPI motherboard resources
[    0.926183] PCI: not using MMCONFIG
[    0.926185] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.926527] ACPI: Enabled 2 GPEs in block 00 to 1F
[    0.927659] ACPI: PM: Power Resource [PG00]
[    0.928409] ACPI: PM: Power Resource [WRST]
[    0.928670] ACPI: PM: Power Resource [P0NV]
[    0.929996] ACPI: PM: Power Resource [PWRS]
[    0.930671] ACPI: PM: Power Resource [PWRS]
[    0.931006] ACPI: PM: Power Resource [PWRS]
[    0.931350] ACPI: PM: Power Resource [PWRS]
[    0.931735] ACPI: PM: Power Resource [PWRS]
[    0.932326] ACPI: PM: Power Resource [PWRS]
[    0.932908] ACPI: PM: Power Resource [PWRS]
[    0.933429] ACPI: PM: Power Resource [PWRS]
[    0.934389] ACPI: PM: Power Resource [PWRS]
[    0.934873] ACPI: PM: Power Resource [BTPR]
[    0.934996] ACPI: PM: Power Resource [P0S0]
[    0.935015] ACPI: PM: Power Resource [P3S0]
[    0.935645] ACPI: PM: Power Resource [PWRS]
[    0.936547] ACPI: PM: Power Resource [PWRS]
[    0.937435] ACPI: PM: Power Resource [PWRS]
[    0.938139] ACPI: PM: Power Resource [PWRS]
[    0.938528] ACPI: PM: Power Resource [PWRS]
[    0.943922] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.943927] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.944188] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.944680] acpi PNP0A08:00: _OSC: OS now controls [PME PCIeCapability LTR DPC]
[    0.945049] PCI host bridge to bus 0000:00
[    0.945050] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.945052] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.945053] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.945054] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000cffff window]
[    0.945055] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000effff window]
[    0.945055] pci_bus 0000:00: root bus resource [mem 0x80000000-0xdfffffff window]
[    0.945056] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfeafffff window]
[    0.945057] pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfed814ff window]
[    0.945057] pci_bus 0000:00: root bus resource [mem 0xfed81900-0xfed81fff window]
[    0.945058] pci_bus 0000:00: root bus resource [mem 0xfedc0000-0xfedc0fff window]
[    0.945059] pci_bus 0000:00: root bus resource [mem 0xfedc6000-0xfedc6fff window]
[    0.945059] pci_bus 0000:00: root bus resource [mem 0x8a0200000-0x833fffffff window]
[    0.945060] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.945083] pci 0000:00:00.0: [1022:14b5] type 00 class 0x060000
[    0.945219] pci 0000:00:00.2: [1022:14b6] type 00 class 0x080600
[    0.945352] pci 0000:00:01.0: [1022:14b7] type 00 class 0x060000
[    0.945446] pci 0000:00:01.1: [1022:14b8] type 01 class 0x060400
[    0.945600] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.945769] pci 0000:00:02.0: [1022:14b7] type 00 class 0x060000
[    0.945874] pci 0000:00:02.3: [1022:14ba] type 01 class 0x060400
[    0.946055] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
[    0.946226] pci 0000:00:02.4: [1022:14ba] type 01 class 0x060400
[    0.946408] pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
[    0.946578] pci 0000:00:03.0: [1022:14b7] type 00 class 0x060000
[    0.946686] pci 0000:00:04.0: [1022:14b7] type 00 class 0x060000
[    0.946802] pci 0000:00:08.0: [1022:14b7] type 00 class 0x060000
[    0.946898] pci 0000:00:08.1: [1022:14b9] type 01 class 0x060400
[    0.946954] pci 0000:00:08.1: enabling Extended Tags
[    0.947044] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.947183] pci 0000:00:08.3: [1022:14b9] type 01 class 0x060400
[    0.947239] pci 0000:00:08.3: enabling Extended Tags
[    0.947335] pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
[    0.947661] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.947829] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.948003] pci 0000:00:18.0: [1022:1679] type 00 class 0x060000
[    0.948073] pci 0000:00:18.1: [1022:167a] type 00 class 0x060000
[    0.948142] pci 0000:00:18.2: [1022:167b] type 00 class 0x060000
[    0.948212] pci 0000:00:18.3: [1022:167c] type 00 class 0x060000
[    0.948283] pci 0000:00:18.4: [1022:167d] type 00 class 0x060000
[    0.948353] pci 0000:00:18.5: [1022:167e] type 00 class 0x060000
[    0.948424] pci 0000:00:18.6: [1022:167f] type 00 class 0x060000
[    0.948493] pci 0000:00:18.7: [1022:1680] type 00 class 0x060000
[    0.948642] pci 0000:01:00.0: [10de:25e2] type 00 class 0x030000
[    0.948658] pci 0000:01:00.0: reg 0x10: [mem 0x80000000-0x80ffffff]
[    0.948671] pci 0000:01:00.0: reg 0x14: [mem 0x8200000000-0x82ffffffff 64bit pref]
[    0.948683] pci 0000:01:00.0: reg 0x1c: [mem 0x8300000000-0x8301ffffff 64bit pref]
[    0.948691] pci 0000:01:00.0: reg 0x24: [io  0x2000-0x207f]
[    0.948698] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    0.948804] pci 0000:01:00.0: PME# supported from D0 D3hot
[    0.948966] pci 0000:01:00.0: 126.024 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[    0.949247] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.949253] pci 0000:00:01.1:   bridge window [io  0x2000-0x2fff]
[    0.949257] pci 0000:00:01.1:   bridge window [mem 0x80000000-0x80ffffff]
[    0.949264] pci 0000:00:01.1:   bridge window [mem 0x8200000000-0x8301ffffff 64bit pref]
[    0.949348] pci 0000:02:00.0: [14c3:0616] type 00 class 0x028000
[    0.949379] pci 0000:02:00.0: reg 0x10: [mem 0x8302000000-0x83020fffff 64bit pref]
[    0.949398] pci 0000:02:00.0: reg 0x18: [mem 0x81800000-0x81807fff 64bit]
[    0.949543] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.949770] pci 0000:00:02.3: PCI bridge to [bus 02]
[    0.949781] pci 0000:00:02.3:   bridge window [mem 0x81800000-0x818fffff]
[    0.949788] pci 0000:00:02.3:   bridge window [mem 0x8302000000-0x83020fffff 64bit pref]
[    0.949927] pci 0000:03:00.0: [1344:5407] type 00 class 0x010802
[    0.949954] pci 0000:03:00.0: reg 0x10: [mem 0x81700000-0x81703fff 64bit]
[    0.950307] pci 0000:00:02.4: PCI bridge to [bus 03]
[    0.950316] pci 0000:00:02.4:   bridge window [mem 0x81700000-0x817fffff]
[    0.950395] pci 0000:04:00.0: [1002:1681] type 00 class 0x030000
[    0.950418] pci 0000:04:00.0: reg 0x10: [mem 0x8310000000-0x831fffffff 64bit pref]
[    0.950433] pci 0000:04:00.0: reg 0x18: [mem 0x8320000000-0x83201fffff 64bit pref]
[    0.950444] pci 0000:04:00.0: reg 0x20: [io  0x1000-0x10ff]
[    0.950454] pci 0000:04:00.0: reg 0x24: [mem 0x81600000-0x8167ffff]
[    0.950472] pci 0000:04:00.0: enabling Extended Tags
[    0.950500] pci 0000:04:00.0: BAR 0: assigned to efifb
[    0.950595] pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.950765] pci 0000:04:00.1: [1002:1640] type 00 class 0x040300
[    0.950781] pci 0000:04:00.1: reg 0x10: [mem 0x816c8000-0x816cbfff]
[    0.950828] pci 0000:04:00.1: enabling Extended Tags
[    0.950897] pci 0000:04:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.950999] pci 0000:04:00.2: [1022:1649] type 00 class 0x108000
[    0.951082] pci 0000:04:00.2: reg 0x18: [mem 0x81500000-0x815fffff]
[    0.951103] pci 0000:04:00.2: reg 0x24: [mem 0x816cc000-0x816cdfff]
[    0.951118] pci 0000:04:00.2: enabling Extended Tags
[    0.951294] pci 0000:04:00.3: [1022:161d] type 00 class 0x0c0330
[    0.951319] pci 0000:04:00.3: reg 0x10: [mem 0x81300000-0x813fffff 64bit]
[    0.951377] pci 0000:04:00.3: enabling Extended Tags
[    0.951461] pci 0000:04:00.3: PME# supported from D0 D3hot D3cold
[    0.951580] pci 0000:04:00.4: [1022:161e] type 00 class 0x0c0330
[    0.951604] pci 0000:04:00.4: reg 0x10: [mem 0x81400000-0x814fffff 64bit]
[    0.951661] pci 0000:04:00.4: enabling Extended Tags
[    0.951746] pci 0000:04:00.4: PME# supported from D0 D3hot D3cold
[    0.951865] pci 0000:04:00.5: [1022:15e2] type 00 class 0x048000
[    0.951881] pci 0000:04:00.5: reg 0x10: [mem 0x81680000-0x816bffff]
[    0.951931] pci 0000:04:00.5: enabling Extended Tags
[    0.952003] pci 0000:04:00.5: PME# supported from D0 D3hot D3cold
[    0.952106] pci 0000:04:00.6: [1022:15e3] type 00 class 0x040300
[    0.952122] pci 0000:04:00.6: reg 0x10: [mem 0x816c0000-0x816c7fff]
[    0.952172] pci 0000:04:00.6: enabling Extended Tags
[    0.952244] pci 0000:04:00.6: PME# supported from D0 D3hot D3cold
[    0.952430] pci 0000:00:08.1: PCI bridge to [bus 04]
[    0.952436] pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
[    0.952440] pci 0000:00:08.1:   bridge window [mem 0x81300000-0x816fffff]
[    0.952445] pci 0000:00:08.1:   bridge window [mem 0x8310000000-0x83201fffff 64bit pref]
[    0.952515] pci 0000:05:00.0: [1022:161f] type 00 class 0x0c0330
[    0.952539] pci 0000:05:00.0: reg 0x10: [mem 0x81000000-0x810fffff 64bit]
[    0.952594] pci 0000:05:00.0: enabling Extended Tags
[    0.952694] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
[    0.952845] pci 0000:05:00.3: [1022:15d6] type 00 class 0x0c0330
[    0.952868] pci 0000:05:00.3: reg 0x10: [mem 0x81100000-0x811fffff 64bit]
[    0.952923] pci 0000:05:00.3: enabling Extended Tags
[    0.953004] pci 0000:05:00.3: PME# supported from D0 D3hot D3cold
[    0.953119] pci 0000:05:00.4: [1022:15d7] type 00 class 0x0c0330
[    0.953143] pci 0000:05:00.4: reg 0x10: [mem 0x81200000-0x812fffff 64bit]
[    0.953198] pci 0000:05:00.4: enabling Extended Tags
[    0.953279] pci 0000:05:00.4: PME# supported from D0 D3hot D3cold
[    0.953432] pci 0000:00:08.3: PCI bridge to [bus 05]
[    0.953440] pci 0000:00:08.3:   bridge window [mem 0x81000000-0x812fffff]
[    0.957594] xen: registering gsi 8 triggering 1 polarity 0
[    0.957652] xen: registering gsi 13 triggering 1 polarity 0
[    0.958287] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.958288] ACPI: PCI: Interrupt link LNKA disabled
[    0.958554] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.958555] ACPI: PCI: Interrupt link LNKB disabled
[    0.958801] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.958802] ACPI: PCI: Interrupt link LNKC disabled
[    0.959065] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.959066] ACPI: PCI: Interrupt link LNKD disabled
[    0.959321] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.959322] ACPI: PCI: Interrupt link LNKE disabled
[    0.959524] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.959525] ACPI: PCI: Interrupt link LNKF disabled
[    0.959725] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.959725] ACPI: PCI: Interrupt link LNKG disabled
[    0.959925] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.959925] ACPI: PCI: Interrupt link LNKH disabled
[    0.960024] xen: registering gsi 7 triggering 0 polarity 1
[    0.960114] xen: registering gsi 10 triggering 1 polarity 0
[    0.960276] xen: registering gsi 11 triggering 1 polarity 0
[    0.960364] xen: registering gsi 4 triggering 1 polarity 0
[    0.960467] xen: registering gsi 6 triggering 1 polarity 0
[    0.961699] ACPI: EC: interrupt unblocked
[    0.961700] ACPI: EC: event unblocked
[    0.961707] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.961708] ACPI: EC: GPE=0x9
[    0.961709] ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC initialization complete
[    0.961711] ACPI: \_SB_.PCI0.LPC0.EC0_: EC: Used to handle transactions and events
[    0.961730] xen:balloon: Initialising balloon driver
[    0.961832] iommu: Default domain type: Translated 
[    0.961833] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.961882] SCSI subsystem initialized
[    0.961909] libata version 3.00 loaded.
[    0.961922] ACPI: bus type USB registered
[    0.961929] usbcore: registered new interface driver usbfs
[    0.961934] usbcore: registered new interface driver hub
[    0.961937] usbcore: registered new device driver usb
[    0.986258] pps_core: LinuxPPS API ver. 1 registered
[    0.986259] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.986262] PTP clock support registered
[    0.986373] EDAC MC: Ver: 3.0.0
[    0.986521] Registered efivars operations
[    0.986613] NetLabel: Initializing
[    0.986613] NetLabel:  domain hash size = 128
[    0.986614] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.986624] NetLabel:  unlabeled traffic allowed by default
[    0.986627] mctp: management component transport protocol core
[    0.986627] NET: Registered PF_MCTP protocol family
[    0.986630] PCI: Using ACPI for IRQ routing
[    0.986630] PCI: pci_cache_line_size set to 64 bytes
[    0.986741] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.986743] e820: reserve RAM buffer [mem 0x09b00000-0x0bffffff]
[    0.986744] e820: reserve RAM buffer [mem 0x09f00000-0x0bffffff]
[    0.986744] e820: reserve RAM buffer [mem 0x5fbff000-0x5fffffff]
[    0.986745] e820: reserve RAM buffer [mem 0x62364000-0x63ffffff]
[    0.986746] e820: reserve RAM buffer [mem 0x6456d000-0x67ffffff]
[    0.986746] e820: reserve RAM buffer [mem 0x7077f000-0x73ffffff]
[    0.986747] e820: reserve RAM buffer [mem 0x7b000000-0x7bffffff]
[    0.986747] e820: reserve RAM buffer [mem 0x191e0d000-0x193ffffff]
[    0.986780] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[    0.986782] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.986782] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.986791] pci 0000:04:00.0: vgaarb: setting as boot VGA device (overriding previous)
[    0.986792] pci 0000:04:00.0: vgaarb: bridge control possible
[    0.986792] pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.986793] vgaarb: loaded
[    0.986874] clocksource: Switched to clocksource tsc-early
[    0.993955] VFS: Disk quotas dquot_6.6.0
[    0.993963] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.993977] hugetlbfs: disabling because there are no supported hugepage sizes
[    0.994008] pnp: PnP ACPI init
[    0.994235] system 00:00: [mem 0xfec00000-0xfec01fff] could not be reserved
[    0.994237] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.994239] system 00:00: [mem 0xa0200000-0xa02fffff] has been reserved
[    0.996228] xen: registering gsi 1 triggering 1 polarity 1
[    0.996277] system 00:03: [io  0x0400-0x04cf] could not be reserved
[    0.996278] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.996279] system 00:03: [io  0x04d6] has been reserved
[    0.996280] system 00:03: [io  0x0c00-0x0c01] has been reserved
[    0.996280] system 00:03: [io  0x0c14] has been reserved
[    0.996281] system 00:03: [io  0x0c50-0x0c52] has been reserved
[    0.996282] system 00:03: [io  0x0c6c] has been reserved
[    0.996283] system 00:03: [io  0x0c6f] has been reserved
[    0.996283] system 00:03: [io  0x0cd0-0x0cdb] has been reserved
[    0.996344] system 00:04: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.996345] system 00:04: [mem 0xfe000000-0xffffffff] could not be reserved
[    0.997475] pnp: PnP ACPI: found 5 devices
[    1.006589] PM-Timer failed consistency check  (0xffffff) - aborting.
[    1.006625] NET: Registered PF_INET protocol family
[    1.006642] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.006864] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    1.006872] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    1.006875] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    1.006912] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    1.006987] TCP: Hash tables configured (established 32768 bind 32768)
[    1.007019] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[    1.007040] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    1.007051] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    1.007083] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.007088] NET: Registered PF_XDP protocol family
[    1.007090] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    1.007100] pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
[    1.007102] pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
[    1.007103] pci 0000:00:01.1: PCI bridge to [bus 01]
[    1.007112] pci 0000:00:01.1:   bridge window [io  0x2000-0x2fff]
[    1.007118] pci 0000:00:01.1:   bridge window [mem 0x80000000-0x80ffffff]
[    1.007122] pci 0000:00:01.1:   bridge window [mem 0x8200000000-0x8301ffffff 64bit pref]
[    1.007129] pci 0000:00:02.3: PCI bridge to [bus 02]
[    1.007135] pci 0000:00:02.3:   bridge window [mem 0x81800000-0x818fffff]
[    1.007140] pci 0000:00:02.3:   bridge window [mem 0x8302000000-0x83020fffff 64bit pref]
[    1.007147] pci 0000:00:02.4: PCI bridge to [bus 03]
[    1.007153] pci 0000:00:02.4:   bridge window [mem 0x81700000-0x817fffff]
[    1.007164] pci 0000:00:08.1: PCI bridge to [bus 04]
[    1.007166] pci 0000:00:08.1:   bridge window [io  0x1000-0x1fff]
[    1.007174] pci 0000:00:08.1:   bridge window [mem 0x81300000-0x816fffff]
[    1.007177] pci 0000:00:08.1:   bridge window [mem 0x8310000000-0x83201fffff 64bit pref]
[    1.007184] pci 0000:00:08.3: PCI bridge to [bus 05]
[    1.007189] pci 0000:00:08.3:   bridge window [mem 0x81000000-0x812fffff]
[    1.007199] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    1.007200] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    1.007201] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    1.007201] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000cffff window]
[    1.007202] pci_bus 0000:00: resource 8 [mem 0x000d0000-0x000effff window]
[    1.007203] pci_bus 0000:00: resource 9 [mem 0x80000000-0xdfffffff window]
[    1.007203] pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfeafffff window]
[    1.007204] pci_bus 0000:00: resource 11 [mem 0xfed45000-0xfed814ff window]
[    1.007205] pci_bus 0000:00: resource 12 [mem 0xfed81900-0xfed81fff window]
[    1.007206] pci_bus 0000:00: resource 13 [mem 0xfedc0000-0xfedc0fff window]
[    1.007206] pci_bus 0000:00: resource 14 [mem 0xfedc6000-0xfedc6fff window]
[    1.007207] pci_bus 0000:00: resource 15 [mem 0x8a0200000-0x833fffffff window]
[    1.007208] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    1.007208] pci_bus 0000:01: resource 1 [mem 0x80000000-0x80ffffff]
[    1.007209] pci_bus 0000:01: resource 2 [mem 0x8200000000-0x8301ffffff 64bit pref]
[    1.007210] pci_bus 0000:02: resource 1 [mem 0x81800000-0x818fffff]
[    1.007211] pci_bus 0000:02: resource 2 [mem 0x8302000000-0x83020fffff 64bit pref]
[    1.007212] pci_bus 0000:03: resource 1 [mem 0x81700000-0x817fffff]
[    1.007213] pci_bus 0000:04: resource 0 [io  0x1000-0x1fff]
[    1.007213] pci_bus 0000:04: resource 1 [mem 0x81300000-0x816fffff]
[    1.007214] pci_bus 0000:04: resource 2 [mem 0x8310000000-0x83201fffff 64bit pref]
[    1.007215] pci_bus 0000:05: resource 1 [mem 0x81000000-0x812fffff]
[    1.007332] pci 0000:04:00.1: D0 power state depends on 0000:04:00.0
[    1.007398] xen: registering gsi 32 triggering 0 polarity 1
[    1.007408] xen: --> pirq=32 -> irq=32 (gsi=32)
[    1.007471] xen: registering gsi 33 triggering 0 polarity 1
[    1.007475] xen: --> pirq=33 -> irq=33 (gsi=33)
[    1.007783] xen: registering gsi 34 triggering 0 polarity 1
[    1.007790] xen: --> pirq=34 -> irq=34 (gsi=34)
[    1.008113] xen: registering gsi 32 triggering 0 polarity 1
[    1.008114] Already setup the GSI :32
[    1.008156] xen: registering gsi 26 triggering 0 polarity 1
[    1.008162] xen: --> pirq=26 -> irq=26 (gsi=26)
[    1.008454] xen: registering gsi 24 triggering 0 polarity 1
[    1.008460] xen: --> pirq=24 -> irq=24 (gsi=24)
[    1.008747] xen: registering gsi 25 triggering 0 polarity 1
[    1.008752] xen: --> pirq=25 -> irq=25 (gsi=25)
[    1.008999] PCI: CLS 64 bytes, default 64
[    1.009037] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e0a334ccc6, max_idle_ns: 440795314254 ns
[    1.009395] Trying to unpack rootfs image as initramfs...
[    1.056793] clocksource: Switched to clocksource tsc
[    1.057738] Initialise system trusted keyrings
[    1.057747] Key type blacklist registered
[    1.059806] workingset: timestamp_bits=36 max_order=20 bucket_order=0
[    1.060578] zbud: loaded
[    1.060880] integrity: Platform Keyring initialized
[    1.060882] integrity: Machine keyring initialized
[    1.063402] NET: Registered PF_ALG protocol family
[    1.063404] xor: automatically using best checksumming function   avx       
[    1.063405] Key type asymmetric registered
[    1.063406] Asymmetric key parser 'x509' registered
[    1.440969] Freeing initrd memory: 49600K
[    1.444500] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[    1.444527] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    1.444555] io scheduler mq-deadline registered
[    1.444556] io scheduler kyber registered
[    1.444583] io scheduler bfq registered
[    1.445636] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    1.447243] pcieport 0000:00:01.1: PME: Signaling with IRQ 70
[    1.447456] pcieport 0000:00:02.3: PME: Signaling with IRQ 71
[    1.447680] pcieport 0000:00:02.4: PME: Signaling with IRQ 72
[    1.447908] pcieport 0000:00:08.1: PME: Signaling with IRQ 73
[    1.448077] pcieport 0000:00:08.3: PME: Signaling with IRQ 74
[    1.449334] ACPI: AC: AC Adapter [ADP0] (on-line)
[    1.449379] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.449389] ACPI: button: Lid Switch [LID0]
[    1.449404] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.449414] ACPI: button: Power Button [PWRB]
[    1.449464] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    1.449474] ACPI: \_SB_.PLTF.C000: Found 3 idle states
[    1.449797] thermal LNXTHERM:00: registered as thermal_zone0
[    1.449799] ACPI: thermal: Thermal Zone [TZ01] (67 C)
[    1.450751] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.451656] hpet_acpi_add: no address or irqs in _CRS
[    1.451680] Non-volatile memory driver v1.3
[    1.451685] Linux agpgart interface v0.103
[    1.470860] ACPI: bus type drm_connector registered
[    1.472103] usbcore: registered new interface driver usbserial_generic
[    1.472107] usbserial: USB Serial support registered for generic
[    1.472125] i8042: PNP: PS/2 Controller [PNP0303:KBC0] at 0x60,0x64 irq 1
[    1.472127] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.473335] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.473389] mousedev: PS/2 mouse device common for all mice
[    1.473496] rtc_cmos 00:01: RTC can wake from S4
[    1.473577] rtc_cmos 00:01: registered as rtc0
[    1.473610] rtc_cmos 00:01: setting system clock to 2022-08-15T04:35:00 UTC (1660538100)
[    1.473623] rtc_cmos 00:01: no alarms, 114 bytes nvram
[    1.473635] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.473645] device-mapper: uevent: version 1.0.3
[    1.473693] device-mapper: ioctl: 4.46.0-ioctl (2022-02-22) initialised: dm-devel@redhat.com
[    1.473749] amd_pstate: This processor supports shared memory solution, you can enable it with amd_pstate.shared_mem=1
[    1.474125] sysfb: VRAM smaller than advertised
[    1.474139] efifb: probing for efifb
[    1.475209] efifb: No BGRT, not showing boot graphics
[    1.475210] efifb: framebuffer at 0x8310000000, using 23040k, total 23040k
[    1.475211] efifb: mode is 3072x1920x32, linelength=12288, pages=1
[    1.475212] efifb: scrolling: redraw
[    1.475212] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.475237] fbcon: Deferring console take-over
[    1.475238] fb0: EFI VGA frame buffer device
[    1.483300] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    1.483827] pstore: Registered efi as persistent store backend
[    1.483854] hid: raw HID events driver (C) Jiri Kosina
[    1.483923] usbcore: registered new interface driver usbhid
[    1.483924] usbhid: USB HID core driver
[    1.484117] drop_monitor: Initializing network drop monitor service
[    1.484173] Initializing XFRM netlink socket
[    1.484234] NET: Registered PF_INET6 protocol family
[    1.487667] Segment Routing with IPv6
[    1.487669] RPL Segment Routing with IPv6
[    1.487675] In-situ OAM (IOAM) with IPv6
[    1.487688] mip6: Mobile IPv6
[    1.487689] NET: Registered PF_PACKET protocol family
[    1.487843] IPI shorthand broadcast: enabled
[    1.487849] AVX2 version of gcm_enc/dec engaged.
[    1.487912] AES CTR mode by8 optimization enabled
[    1.488061] sched_clock: Marking stable (1440935138, 46793220)->(1489766942, -2038584)
[    1.488169] registered taskstats version 1
[    1.488201] Loading compiled-in X.509 certificates
[    1.505121] Loaded X.509 cert 'Build time autogenerated kernel key: f92ee6df0ea6b50b008440174aa40f620272ec8f'
[    1.505250] zswap: loaded using pool lzo/zbud
[    1.505311] page_owner is disabled
[    1.505338] Key type ._fscrypt registered
[    1.505339] Key type .fscrypt registered
[    1.505340] Key type fscrypt-provisioning registered
[    1.505529] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=yes
[    1.505693] pstore: Using crash dump compression: deflate
[    1.505702] Key type big_key registered
[    1.505785] Key type trusted registered
[    1.508424] Key type encrypted registered
[    1.509450] integrity: Loading X.509 certificate: UEFI:db
[    1.509481] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    1.509483] integrity: Loading X.509 certificate: UEFI:db
[    1.509495] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    1.509496] integrity: Loading X.509 certificate: UEFI:db
[    1.509503] integrity: Loaded X.509 cert ': cd806e3a28f730a04a8c4fd0f2156bd6'
[    1.509504] integrity: Loading X.509 certificate: UEFI:db
[    1.509505] integrity: Problem loading X.509 certificate -65
[    1.509506] integrity: Error adding keys to platform keyring UEFI:db
[    1.510415] Loading compiled-in module X.509 certificates
[    1.510747] Loaded X.509 cert 'Build time autogenerated kernel key: f92ee6df0ea6b50b008440174aa40f620272ec8f'
[    1.510749] ima: Allocated hash algorithm: sha256
[    1.522061] ACPI: battery: Slot [BAT0] (battery present)
[    1.525887] ima: No architecture policies found
[    1.525916] evm: Initialising EVM extended attributes:
[    1.525918] evm: security.selinux
[    1.525921] evm: security.SMACK64 (disabled)
[    1.525922] evm: security.SMACK64EXEC (disabled)
[    1.525924] evm: security.SMACK64TRANSMUTE (disabled)
[    1.525925] evm: security.SMACK64MMAP (disabled)
[    1.525926] evm: security.apparmor
[    1.525927] evm: security.ima
[    1.525928] evm: security.capability
[    1.525930] evm: HMAC attrs: 0x1
[    1.548349] alg: No test for 842 (842-scomp)
[    1.548366] alg: No test for 842 (842-generic)
[    1.618828] PM:   Magic number: 2:590:565
[    1.618926] acpi LNXPOWER:0a: hash matches
[    1.618997] RAS: Correctable Errors collector initialized.
[    1.619063] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    1.619861] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    1.619894] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    1.619928] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    1.619959] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    1.619990] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    1.620020] amd_gpio AMDI0030:00: failed to enable wake-up interrupt
[    1.621238] Freeing unused decrypted memory: 2036K
[    1.621987] Freeing unused kernel image (initmem) memory: 3216K
[    1.622757] Write protecting the kernel read-only data: 24576k
[    1.626659] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    1.626667] Freeing unused kernel image (rodata/data gap) memory: 20K
[    1.626671] rodata_test: all tests were successful
[    1.626675] Run /init as init process
[    1.626676]   with arguments:
[    1.626677]     /init
[    1.626678]     placeholder
[    1.626678]     rhgb
[    1.626679]   with environment:
[    1.626679]     HOME=/
[    1.626680]     TERM=linux
[    1.642489] systemd[1]: systemd v245.9-1.fc32 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
[    1.642576] systemd[1]: Detected architecture x86-64.
[    1.642578] systemd[1]: Running in initial RAM disk.
[    1.642595] systemd[1]: Set hostname to <dom0>.
[    1.724853] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice.
[    1.724914] systemd[1]: Reached target Local File Systems.
[    1.724926] systemd[1]: Reached target Slices.
[    1.724935] systemd[1]: Reached target Swap.
[    1.724943] systemd[1]: Reached target Timers.
[    1.725075] systemd[1]: Listening on Journal Audit Socket.
[    1.725148] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.725222] systemd[1]: Listening on Journal Socket.
[    1.725292] systemd[1]: Listening on udev Control Socket.
[    1.725340] systemd[1]: Listening on udev Kernel Socket.
[    1.725348] systemd[1]: Reached target Sockets.
[    1.726155] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    1.727308] systemd[1]: Starting Journal Service...
[    1.728143] systemd[1]: Starting Load Kernel Modules...
[    1.728830] systemd[1]: Starting Setup Virtual Console...
[    1.734759] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    1.743838] systemd[1]: Starting Create Static Device Nodes in /dev...
[    1.754445] systemd[1]: Finished Create Static Device Nodes in /dev.
[    1.805516] xen:xen_evtchn: Event-channel device installed
[    1.815975] xen_pciback: backend is vpci
[    1.819406] xen_acpi_processor: Uploading Xen processor PM info
[    1.823537] systemd[1]: Finished Load Kernel Modules.
[    1.824307] systemd[1]: Starting Apply Kernel Variables...
[    1.824331] audit: type=1130 audit(1660538100.849:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.836212] systemd[1]: Finished Apply Kernel Variables.
[    1.836307] audit: type=1130 audit(1660538100.862:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.859801] systemd[1]: Started Journal Service.
[    1.860790] audit: type=1130 audit(1660538100.886:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.877110] audit: type=1130 audit(1660538100.903:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.903127] audit: type=1130 audit(1660538100.928:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.942780] fbcon: Taking over console
[    1.942864] Console: switching to colour frame buffer device 384x120
[    1.958791] pciback 0000:02:00.0: xen_pciback: seizing device
[    1.958857] pciback 0000:02:00.0: enabling device (0000 -> 0002)
[    1.958927] xen: registering gsi 46 triggering 0 polarity 1
[    1.958945] xen: --> pirq=46 -> irq=46 (gsi=46)
[    3.144028] pciback 0000:02:00.0: not ready 1023ms after FLR; waiting
[    4.231949] pciback 0000:02:00.0: not ready 2047ms after FLR; waiting
[    6.343951] pciback 0000:02:00.0: not ready 4095ms after FLR; waiting
[   10.504002] pciback 0000:02:00.0: not ready 8191ms after FLR; waiting
[   19.207981] pciback 0000:02:00.0: not ready 16383ms after FLR; waiting
[   36.103947] pciback 0000:02:00.0: not ready 32767ms after FLR; waiting
[   71.432010] pciback 0000:02:00.0: not ready 65535ms after FLR; giving up
[   72.541289] audit: type=1130 audit(1660538171.566:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   72.568737] audit: type=1130 audit(1660538171.594:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   72.568740] audit: type=1334 audit(1660538171.594:9): prog-id=6 op=LOAD
[   72.568742] audit: type=1334 audit(1660538171.594:10): prog-id=7 op=LOAD
[   72.592563] audit: type=1130 audit(1660538171.617:11): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   72.793178] audit: type=1130 audit(1660538171.818:12): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   72.814668] audit: type=1130 audit(1660538171.840:13): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   72.835373] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[   72.836119] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[   72.836166] acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[   72.836694] acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[   72.837866] acpi PNP0C14:05: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[   72.838147] ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[   72.838162] ACPI: video: Video Device [PEGP] (multi-head: yes  rom: no  post: no)
[   72.838338] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input3
[   72.841105] ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
[   72.841337] acpi device:17: registered as cooling_device1
[   72.841362] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:16/LNXVIDEO:01/input/input4
[   72.891114] ccp 0000:04:00.2: enabling device (0000 -> 0002)
[   72.891193] xen: registering gsi 32 triggering 0 polarity 1
[   72.891197] Already setup the GSI :32
[   72.891469] ccp 0000:04:00.2: ccp: unable to access the device: you might be running a broken BIOS.
[   72.901747] ccp 0000:04:00.2: tee: ring init command failed (0x00000005)
[   72.901751] ccp 0000:04:00.2: tee: failed to init ring buffer
[   72.901752] ccp 0000:04:00.2: tee initialization failed
[   72.901777] ccp 0000:04:00.2: psp initialization failed
[   72.903712] input: MSFT0001:00 04F3:3202 Mouse as /devices/platform/AMDI0010:00/i2c-0/i2c-MSFT0001:00/0018:04F3:3202.0001/input/input5
[   72.903770] input: MSFT0001:00 04F3:3202 Touchpad as /devices/platform/AMDI0010:00/i2c-0/i2c-MSFT0001:00/0018:04F3:3202.0001/input/input7
[   72.903805] hid-generic 0018:04F3:3202.0001: input,hidraw0: I2C HID v1.00 Mouse [MSFT0001:00 04F3:3202] on i2c-MSFT0001:00
[   72.943927] xen: registering gsi 33 triggering 0 polarity 1
[   72.943932] Already setup the GSI :33
[   72.944047] xhci_hcd 0000:04:00.3: xHCI Host Controller
[   72.949576] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 1
[   72.953363] xhci_hcd 0000:04:00.3: hcc params 0x0120ffc5 hci version 0x120 quirks 0x0000000200000410
[   72.953689] xhci_hcd 0000:04:00.3: xHCI Host Controller
[   72.962138] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 2
[   72.962141] xhci_hcd 0000:04:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[   72.964033] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.18
[   72.964036] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   72.964037] usb usb1: Product: xHCI Host Controller
[   72.964038] usb usb1: Manufacturer: Linux 5.18.9-2.fc32.qubes.x86_64 xhci-hcd
[   72.964039] usb usb1: SerialNumber: 0000:04:00.3
[   72.965292] hub 1-0:1.0: USB hub found
[   72.965656] hub 1-0:1.0: 4 ports detected
[   72.969446] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[   72.969803] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.18
[   72.969806] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   72.969807] usb usb2: Product: xHCI Host Controller
[   72.969808] usb usb2: Manufacturer: Linux 5.18.9-2.fc32.qubes.x86_64 xhci-hcd
[   72.969808] usb usb2: SerialNumber: 0000:04:00.3
[   72.971765] hub 2-0:1.0: USB hub found
[   72.971786] hub 2-0:1.0: 2 ports detected
[   72.973809] xen: registering gsi 34 triggering 0 polarity 1
[   72.973813] Already setup the GSI :34
[   72.973905] xhci_hcd 0000:04:00.4: xHCI Host Controller
[   72.975876] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 3
[   72.976251] xhci_hcd 0000:04:00.4: hcc params 0x0120ffc5 hci version 0x120 quirks 0x0000000200000410
[   72.976545] xhci_hcd 0000:04:00.4: xHCI Host Controller
[   72.989224] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 4
[   72.989239] xhci_hcd 0000:04:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[   72.989299] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.18
[   72.989301] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   72.989302] usb usb3: Product: xHCI Host Controller
[   72.989312] usb usb3: Manufacturer: Linux 5.18.9-2.fc32.qubes.x86_64 xhci-hcd
[   72.989313] usb usb3: SerialNumber: 0000:04:00.4
[   72.991551] hub 3-0:1.0: USB hub found
[   72.992999] hub 3-0:1.0: 3 ports detected
[   72.995828] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[   72.995870] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.18
[   72.995872] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   72.995873] usb usb4: Product: xHCI Host Controller
[   72.995873] usb usb4: Manufacturer: Linux 5.18.9-2.fc32.qubes.x86_64 xhci-hcd
[   72.995874] usb usb4: SerialNumber: 0000:04:00.4
[   72.998350] hub 4-0:1.0: USB hub found
[   72.998415] hub 4-0:1.0: 2 ports detected
[   72.999852] xen: registering gsi 26 triggering 0 polarity 1
[   72.999855] Already setup the GSI :26
[   72.999994] xhci_hcd 0000:05:00.0: xHCI Host Controller
[   73.002095] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 5
[   73.009576] xhci_hcd 0000:05:00.0: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[   73.013257] xhci_hcd 0000:05:00.0: xHCI Host Controller
[   73.016455] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 6
[   73.016458] xhci_hcd 0000:05:00.0: Host supports USB 3.0 SuperSpeed
[   73.017195] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.18
[   73.017197] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   73.017198] usb usb5: Product: xHCI Host Controller
[   73.017199] usb usb5: Manufacturer: Linux 5.18.9-2.fc32.qubes.x86_64 xhci-hcd
[   73.017200] usb usb5: SerialNumber: 0000:05:00.0
[   73.017281] hub 5-0:1.0: USB hub found
[   73.019770] hub 5-0:1.0: 1 port detected
[   73.021405] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[   73.021450] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.18
[   73.021451] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   73.021452] usb usb6: Product: xHCI Host Controller
[   73.021453] usb usb6: Manufacturer: Linux 5.18.9-2.fc32.qubes.x86_64 xhci-hcd
[   73.021454] usb usb6: SerialNumber: 0000:05:00.0
[   73.021549] hub 6-0:1.0: USB hub found
[   73.021554] hub 6-0:1.0: config failed, hub doesn't have any ports! (err -19)
[   73.023306] xen: registering gsi 24 triggering 0 polarity 1
[   73.023309] Already setup the GSI :24
[   73.023436] xhci_hcd 0000:05:00.3: xHCI Host Controller
[   73.025347] hid-generic 0018:048D:8320.0002: hidraw1: I2C HID v1.00 Device [ITE8120:00 048D:8320] on i2c-ITE8120:00
[   73.026558] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
[   73.032315] nvme 0000:03:00.0: platform quirk: setting simple suspend
[   73.033765] nvme nvme0: pci function 0000:03:00.0
[   73.033819] xen: registering gsi 46 triggering 0 polarity 1
[   73.033822] Already setup the GSI :46
[   73.035346] xhci_hcd 0000:05:00.3: new USB bus registered, assigned bus number 7
[   73.042324] xhci_hcd 0000:05:00.3: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[   73.042610] xhci_hcd 0000:05:00.3: xHCI Host Controller
[   73.045111] xhci_hcd 0000:05:00.3: new USB bus registered, assigned bus number 8
[   73.045114] xhci_hcd 0000:05:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[   73.045405] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.18
[   73.045407] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   73.045408] usb usb7: Product: xHCI Host Controller
[   73.045409] usb usb7: Manufacturer: Linux 5.18.9-2.fc32.qubes.x86_64 xhci-hcd
[   73.045409] usb usb7: SerialNumber: 0000:05:00.3
[   73.045702] hub 7-0:1.0: USB hub found
[   73.046892] hub 7-0:1.0: 1 port detected
[   73.047529] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
[   73.048275] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.18
[   73.048277] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   73.048278] usb usb8: Product: xHCI Host Controller
[   73.048279] usb usb8: Manufacturer: Linux 5.18.9-2.fc32.qubes.x86_64 xhci-hcd
[   73.048280] usb usb8: SerialNumber: 0000:05:00.3
[   73.048327] hub 8-0:1.0: USB hub found
[   73.048346] hub 8-0:1.0: 1 port detected
[   73.050273] xen: registering gsi 25 triggering 0 polarity 1
[   73.050276] Already setup the GSI :25
[   73.050376] xhci_hcd 0000:05:00.4: xHCI Host Controller
[   73.051677] xhci_hcd 0000:05:00.4: new USB bus registered, assigned bus number 9
[   73.053298] xhci_hcd 0000:05:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000410
[   73.053566] xhci_hcd 0000:05:00.4: xHCI Host Controller
[   73.060018] xhci_hcd 0000:05:00.4: new USB bus registered, assigned bus number 10
[   73.060022] xhci_hcd 0000:05:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[   73.060531] usb usb9: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.18
[   73.060534] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   73.060535] usb usb9: Product: xHCI Host Controller
[   73.060535] usb usb9: Manufacturer: Linux 5.18.9-2.fc32.qubes.x86_64 xhci-hcd
[   73.060536] usb usb9: SerialNumber: 0000:05:00.4
[   73.060586] hub 9-0:1.0: USB hub found
[   73.062106] hub 9-0:1.0: 1 port detected
[   73.063110] usb usb10: We don't know the algorithms for LPM for this host, disabling LPM.
[   73.063131] usb usb10: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.18
[   73.063133] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   73.063134] usb usb10: Product: xHCI Host Controller
[   73.063134] usb usb10: Manufacturer: Linux 5.18.9-2.fc32.qubes.x86_64 xhci-hcd
[   73.063135] usb usb10: SerialNumber: 0000:05:00.4
[   73.063186] hub 10-0:1.0: USB hub found
[   73.063680] hub 10-0:1.0: 1 port detected
[   73.086237] nvme nvme0: 1/0/0 default/read/poll queues
[   73.088524]  nvme0n1: p1 p2 p3
[   73.180642] input: MSFT0001:00 04F3:3202 Mouse as /devices/platform/AMDI0010:00/i2c-0/i2c-MSFT0001:00/0018:04F3:3202.0001/input/input8
[   73.180687] input: MSFT0001:00 04F3:3202 Touchpad as /devices/platform/AMDI0010:00/i2c-0/i2c-MSFT0001:00/0018:04F3:3202.0001/input/input10
[   73.180786] hid-multitouch 0018:04F3:3202.0001: input,hidraw0: I2C HID v1.00 Mouse [MSFT0001:00 04F3:3202] on i2c-MSFT0001:00
[   73.261696] usb 5-1: new high-speed USB device number 2 using xhci_hcd
[   73.261709] usb 3-3: new high-speed USB device number 2 using xhci_hcd
[   73.276933] audit: type=1334 audit(1660538172.303:14): prog-id=0 op=UNLOAD
[   73.276987] audit: type=1334 audit(1660538172.303:15): prog-id=0 op=UNLOAD
[   73.277037] audit: type=1334 audit(1660538172.303:16): prog-id=0 op=UNLOAD
[   73.387374] ACPI Warning: \_SB.PCI0.GPP0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20211217/nsarguments-61)
[   73.390931] pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
[   73.390944] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.GPP0.PEGP handle
[   73.390944] nouveau: detected PR support, will not use DSM
[   73.391347] usb 3-3: New USB device found, idVendor=0489, idProduct=e0d8, bcdDevice= 1.00
[   73.391350] usb 3-3: New USB device strings: Mfr=5, Product=6, SerialNumber=7
[   73.391352] usb 3-3: Product: Wireless_Device
[   73.391353] usb 3-3: Manufacturer: MediaTek Inc.
[   73.391354] usb 3-3: SerialNumber: 000000000
[   73.391567] nouveau 0000:01:00.0: enabling device (0000 -> 0003)
[   73.391633] xen: registering gsi 24 triggering 0 polarity 1
[   73.391639] Already setup the GSI :24
[   73.422001] checking generic (8310000000 1680000) vs hw (80000000 1000000)
[   73.422004] checking generic (8310000000 1680000) vs hw (8200000000 100000000)
[   73.422005] checking generic (8310000000 1680000) vs hw (8300000000 2000000)
[   73.422035] xen: registering gsi 24 triggering 0 polarity 1
[   73.422040] Already setup the GSI :24
[   73.425858] nouveau 0000:01:00.0: NVIDIA GA107 (b77000a1)
[   73.429183] usb 5-1: New USB device found, idVendor=30c9, idProduct=0057, bcdDevice= 0.26
[   73.429186] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   73.429187] usb 5-1: Product: Integrated RGB Camera
[   73.429188] usb 5-1: Manufacturer: 8SSC21D70376V1SR25S7ELS
[   73.429189] usb 5-1: SerialNumber: 01.00.00
[   73.799434] [drm] amdgpu kernel modesetting enabled.
[   73.799459] amdgpu: vga_switcheroo: detected switching method \_SB_.PCI0.GP17.VGA_.ATPX handle
[   73.800028] ATPX version 1, functions 0x00000001
[   73.800085] ATPX Hybrid Graphics
[   73.807000] amdgpu: Virtual CRAT table created for CPU
[   73.807009] amdgpu: Topology: Add CPU node
[   73.807313] checking generic (8310000000 1680000) vs hw (8310000000 10000000)
[   73.807315] checking generic (8310000000 1680000) vs hw (8310000000 10000000)
[   73.807316] fb0: switching to amdgpu from EFI VGA
[   73.807570] Console: switching to colour dummy device 80x25
[   73.810933] amdgpu 0000:04:00.0: vgaarb: deactivate vga console
[   73.810979] amdgpu 0000:04:00.0: enabling device (0006 -> 0007)
[   73.811023] xen: registering gsi 34 triggering 0 polarity 1
[   73.811027] Already setup the GSI :34
[   73.811042] [drm] initializing kernel modesetting (YELLOW_CARP 0x1002:0x1681 0x17AA:0x3B1E 0x02).
[   73.811045] amdgpu 0000:04:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[   73.811187] [drm] register mmio base: 0x81600000
[   73.811188] [drm] register mmio size: 524288
[   73.811665] nouveau 0000:01:00.0: bios: version 94.07.57.00.6a
[   73.814282] [drm] add ip block number 0 <nv_common>
[   73.814284] [drm] add ip block number 1 <gmc_v10_0>
[   73.814285] [drm] add ip block number 2 <navi10_ih>
[   73.814285] [drm] add ip block number 3 <psp>
[   73.814286] [drm] add ip block number 4 <smu>
[   73.814287] [drm] add ip block number 5 <dm>
[   73.814288] [drm] add ip block number 6 <gfx_v10_0>
[   73.814289] [drm] add ip block number 7 <sdma_v5_2>
[   73.814290] [drm] add ip block number 8 <vcn_v3_0>
[   73.814290] [drm] add ip block number 9 <jpeg_v3_0>
[   73.815157] amdgpu 0000:04:00.0: amdgpu: Fetched VBIOS from VFCT
[   73.816131] amdgpu: ATOM BIOS: 113-REMBRANDT-X35
[   73.816139] [drm] VCN(0) decode is enabled in VM mode
[   73.816140] [drm] VCN(0) encode is enabled in VM mode
[   73.816141] [drm] JPEG decode is enabled in VM mode
[   73.816149] amdgpu 0000:04:00.0: amdgpu: PCIE atomic ops is not supported
[   73.816177] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[   73.816181] amdgpu 0000:04:00.0: amdgpu: VRAM: 1024M 0x000000F400000000 - 0x000000F43FFFFFFF (1024M used)
[   73.816183] amdgpu 0000:04:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[   73.816184] amdgpu 0000:04:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[   73.816190] [drm] Detected VRAM RAM=1024M, BAR=1024M
[   73.816190] [drm] RAM width 256bits DDR5
[   73.821973] nouveau 0000:01:00.0: fb: 4096 MiB GDDR6
[   73.843833] nouveau 0000:01:00.0: DRM: VRAM: 4096 MiB
[   73.843835] nouveau 0000:01:00.0: DRM: GART: 536870912 MiB
[   73.843838] nouveau 0000:01:00.0: DRM: BIT table 'A' not found
[   73.843839] nouveau 0000:01:00.0: DRM: BIT table 'L' not found
[   73.843840] nouveau 0000:01:00.0: DRM: TMDS table version 2.0
[   73.843840] nouveau 0000:01:00.0: DRM: DCB version 4.1
[   73.843841] nouveau 0000:01:00.0: DRM: DCB outp 00: 02800f66 04610020
[   73.843842] nouveau 0000:01:00.0: DRM: DCB conn 00: 00020047
[   73.844140] nouveau 0000:01:00.0: DRM: MM: using COPY for buffer copies
[   73.889277] [drm] amdgpu: 1024M of VRAM memory ready
[   73.889279] [drm] amdgpu: 2925M of GTT memory ready.
[   73.889286] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   73.889675] [drm] PCIE GART of 512M enabled (table at 0x000000F401680000).
[   73.889968] amdgpu 0000:04:00.0: amdgpu: PSP runtime database doesn't exist
[   73.890103] [drm] Loading DMUB firmware via PSP: version=0x04000008
[   73.891171] [drm] use_doorbell being set to: [true]
[   73.891302] [drm] Found VCN firmware Version ENC: 1.14 DEC: 2 VEP: 0 Revision: 3
[   73.891307] amdgpu 0000:04:00.0: amdgpu: Will use PSP to load VCN firmware
[   73.914909] [drm] reserve 0xa00000 from 0xf43f400000 for PSP TMR
[   74.070272] amdgpu 0000:04:00.0: amdgpu: RAS: optional ras ta ucode is not available
[   74.081856] amdgpu 0000:04:00.0: amdgpu: RAP: optional rap ta ucode is not available
[   74.081860] amdgpu 0000:04:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[   74.085106] amdgpu 0000:04:00.0: amdgpu: SMU is initialized successfully!
[   74.085409] [drm] Display Core initialized with v3.2.177!
[   74.087295] [drm] DMUB hardware initialized: version=0x04000008
[   74.176481] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
[   74.177050] [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.0 on minor 1
[   74.208276] nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
[   74.229798] [drm] PSR support:0
[   74.230597] [drm] kiq ring mec 2 pipe 1 q 0
[   74.233211] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[   74.233248] [drm] JPEG decode initialized successfully.
[   74.234665] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[   74.243190] memmap_init_zone_device initialised 262144 pages in 2ms
[   74.243204] amdgpu: HMM registered 1024MB device memory
[   74.243652] amdgpu: SRAT table not found
[   74.243653] amdgpu: Virtual CRAT table created for GPU
[   74.244807] amdgpu: Topology: Add dGPU node [0x1681:0x1002]
[   74.244815] kfd kfd: amdgpu: added device 1002:1681
[   74.244832] amdgpu 0000:04:00.0: amdgpu: SE 1, SH per SE 2, CU per SH 6, active_cu_number 12
[   74.246325] amdgpu 0000:04:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[   74.246327] amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[   74.246329] amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[   74.246329] amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[   74.246330] amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[   74.246331] amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[   74.246332] amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[   74.246332] amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[   74.246333] amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[   74.246334] amdgpu 0000:04:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[   74.246334] amdgpu 0000:04:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[   74.246335] amdgpu 0000:04:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 1
[   74.246336] amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 1
[   74.246337] amdgpu 0000:04:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 1
[   74.246338] amdgpu 0000:04:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 1
[   74.250901] [drm] Initialized amdgpu 3.46.0 20150101 for 0000:04:00.0 on minor 0
[   74.265337] fbcon: amdgpudrmfb (fb0) is primary device
[   74.266479] [drm] DSC precompute is not needed.
[   75.184355] Console: switching to colour frame buffer device 384x120
[   75.204072] amdgpu 0000:04:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[   85.851446] kauditd_printk_skb: 8 callbacks suppressed
[   85.851448] audit: type=1338 audit(1660538184.877:25): module=crypt op=ctr ppid=1 pid=434 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="systemd-cryptse" exe="/usr/lib/systemd/systemd-cryptsetup" dev=253:0 error_msg='success' res=1
[   85.851685] audit: type=1300 audit(1660538184.877:25): arch=c000003e syscall=16 success=yes exit=0 a0=4 a1=c138fd09 a2=5ede5463f340 a3=5ede546366a0 items=6 ppid=1 pid=434 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="systemd-cryptse" exe="/usr/lib/systemd/systemd-cryptsetup" key=(null)
[   85.851688] audit: type=1307 audit(1660538184.877:25): cwd="/"
[   85.851689] audit: type=1302 audit(1660538184.877:25): item=0 name=(null) inode=34 dev=00:07 mode=040755 ouid=0 ogid=0 rdev=00:00 nametype=PARENT cap_fp=0 cap_fi=0 cap_fe=0 cap_fver=0 cap_frootid=0
[   85.851691] audit: type=1302 audit(1660538184.877:25): item=1 name=(null) inode=18071 dev=00:07 mode=040755 ouid=0 ogid=0 rdev=00:00 nametype=CREATE cap_fp=0 cap_fi=0 cap_fe=0 cap_fver=0 cap_frootid=0
[   85.851692] audit: type=1302 audit(1660538184.877:25): item=2 name=(null) inode=23 dev=00:07 mode=040755 ouid=0 ogid=0 rdev=00:00 nametype=PARENT cap_fp=0 cap_fi=0 cap_fe=0 cap_fver=0 cap_frootid=0
[   85.851693] audit: type=1302 audit(1660538184.877:25): item=3 name=(null) inode=18072 dev=00:07 mode=040755 ouid=0 ogid=0 rdev=00:00 nametype=CREATE cap_fp=0 cap_fi=0 cap_fe=0 cap_fver=0 cap_frootid=0
[   85.851694] audit: type=1302 audit(1660538184.877:25): item=4 name=(null) inode=18072 dev=00:07 mode=040755 ouid=0 ogid=0 rdev=00:00 nametype=PARENT cap_fp=0 cap_fi=0 cap_fe=0 cap_fver=0 cap_frootid=0
[   85.851696] audit: type=1302 audit(1660538184.877:25): item=5 name=(null) inode=18073 dev=00:07 mode=0100444 ouid=0 ogid=0 rdev=00:00 nametype=CREATE cap_fp=0 cap_fi=0 cap_fe=0 cap_fver=0 cap_frootid=0
[   85.851697] audit: type=1327 audit(1660538184.877:25): proctitle=2F7573722F6C69622F73797374656D642F73797374656D642D6372797074736574757000617474616368006C756B732D63346331313266342D616431302D346362302D626662622D633964333635333233333232002F6465762F6469736B2F62792D757569642F63346331313266342D616431302D346362302D626662622D63
[   86.342666] EXT4-fs (dm-4): mounted filesystem with ordered data mode. Quota mode: none.
[   86.596748] systemd-journald[221]: Received SIGTERM from PID 1 (systemd).
[   86.672991] systemd[1]: RTC configured in localtime, applying delta of 600 minutes to system time.
[   86.685258] systemd[1]: systemd v245.9-1.fc32 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
[   86.685366] systemd[1]: Detected architecture x86-64.
[   86.685785] systemd[1]: Set hostname to <dom0>.
[   86.800795] systemd[1]: /usr/lib/systemd/system/usbguard.service:15: PIDFile= references a path below legacy directory /var/run/, updating /var/run/usbguard.pid → /run/usbguard.pid; please update the unit file accordingly.
[   86.915927] systemd[1]: initrd-switch-root.service: Succeeded.
[   86.916057] systemd[1]: Stopped Switch Root.
[   86.916359] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[   86.916508] systemd[1]: Created slice system-getty.slice.
[   86.916707] systemd[1]: Created slice system-modprobe.slice.
[   86.916923] systemd[1]: Created slice system-serial\x2dgetty.slice.
[   86.917118] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[   86.917297] systemd[1]: Created slice User and Session Slice.
[   86.917366] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
[   86.917487] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   86.917570] systemd[1]: Reached target Block Device Preparation for /dev/mapper/luks-c4c112f4-ad10-4cb0-bfbb-c9d365323322.
[   86.917645] systemd[1]: Stopped target Switch Root.
[   86.917702] systemd[1]: Stopped target Initrd File Systems.
[   86.917939] systemd[1]: Stopped target Initrd Root File System.
[   86.918005] systemd[1]: Reached target Remote Encrypted Volumes.
[   86.918061] systemd[1]: Reached target Remote File Systems.
[   86.918132] systemd[1]: Reached target Slices.
[   86.918255] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[   86.919350] systemd[1]: Listening on Process Core Dump Socket.
[   86.919451] systemd[1]: Listening on initctl Compatibility Named Pipe.
[   86.919572] systemd[1]: Listening on udev Control Socket.
[   86.919684] systemd[1]: Listening on udev Kernel Socket.
[   86.919847] systemd[1]: Listening on User Database Manager Socket.
[   86.920762] systemd[1]: Activating swap /dev/mapper/qubes_dom0-swap...
[   86.920996] systemd[1]: Condition check resulted in Huge Pages File System being skipped.
[   86.921802] systemd[1]: Mounting POSIX Message Queue File System...
[   86.922610] systemd[1]: Mounting Mount /proc/xen files...
[   86.923557] systemd[1]: Mounting Kernel Debug File System...
[   86.928371] Adding 4128764k swap on /dev/mapper/qubes_dom0-swap.  Priority:-2 extents:1 across:4128764k SSFS
[   86.928590] systemd[1]: Mounting Kernel Trace File System...
[   86.932689] systemd[1]: Starting Create list of static device nodes for the current kernel...
[   86.937239] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   86.938447] systemd[1]: Condition check resulted in Load Kernel Module configfs being skipped.
[   86.945783] systemd[1]: Mounting Kernel Configuration File System...
[   86.945893] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
[   86.950035] systemd[1]: Starting Load Kernel Module fuse...
[   86.951920] systemd[1]: plymouth-switch-root.service: Succeeded.
[   86.953767] systemd[1]: Stopped Plymouth switch root service.
[   86.957597] fuse: init (API version 7.36)
[   86.959786] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[   86.959832] systemd[1]: Stopped Journal Service.
[   86.961673] systemd[1]: Starting Journal Service...
[   86.962798] systemd[1]: Starting Load Kernel Modules...
[   86.963542] systemd[1]: Starting Remount Root and Kernel File Systems...
[   86.964310] systemd[1]: Starting Repartition Root Disk...
[   86.965112] systemd[1]: Starting udev Coldplug all Devices...
[   86.969551] systemd[1]: sysroot.mount: Succeeded.
[   87.003088] systemd[1]: Activated swap /dev/mapper/qubes_dom0-swap.
[   87.004438] systemd[1]: Mounted POSIX Message Queue File System.
[   87.006445] systemd[1]: Mounted Mount /proc/xen files.
[   87.006949] systemd[1]: Mounted Kernel Debug File System.
[   87.007159] systemd[1]: Mounted Kernel Trace File System.
[   87.007195] EXT4-fs (dm-4): re-mounted. Quota mode: none.
[   87.011747] systemd[1]: Finished Create list of static device nodes for the current kernel.
[   87.012038] systemd[1]: Mounted Kernel Configuration File System.
[   87.012332] systemd[1]: modprobe@fuse.service: Succeeded.
[   87.012755] systemd[1]: Finished Load Kernel Module fuse.
[   87.013854] systemd[1]: Finished Load Kernel Modules.
[   87.015023] systemd[1]: Finished Remount Root and Kernel File Systems.
[   87.015384] systemd[1]: Finished Repartition Root Disk.
[   87.015941] systemd[1]: Reached target Swap.
[   87.019780] systemd[1]: Mounting FUSE Control File System...
[   87.020853] systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
[   87.021781] systemd[1]: Mounting Temporary Directory (/tmp)...
[   87.022016] systemd[1]: Condition check resulted in First Boot Wizard being skipped.
[   87.027155] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[   87.027199] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[   87.032824] systemd[1]: Starting Load/Save Random Seed...
[   87.041056] systemd-journald[807]: File /run/log/journal/20fb4a6318df4cb18eab3f31c5e5395c/system.journal corrupted or uncleanly shut down, renaming and replacing.
[   87.042786] systemd[1]: Starting Apply Kernel Variables...
[   87.042905] systemd[1]: Condition check resulted in Create System Users being skipped.
[   87.050745] systemd[1]: Starting Create Static Device Nodes in /dev...
[   87.057737] systemd[1]: Started Journal Service.
[   87.095843] systemd-journald[807]: Received client request to flush runtime journal.
[   87.098214] systemd-journald[807]: File /var/log/journal/20fb4a6318df4cb18eab3f31c5e5395c/system.journal corrupted or uncleanly shut down, renaming and replacing.
[   87.364237] acpi-tad ACPI000E:00: Missing _PRW
[   87.566744] ACPI Error: No handler for Region [ECSI] (0000000041c6cbfd) [EmbeddedControl] (20211217/evregion-130)
[   87.566750] ACPI Error: Region EmbeddedControl (ID=3) has no handler (20211217/exfldio-261)
[   87.566753] ACPI Error: Aborting method \_SB.UBTC.ECRD due to previous error (AE_NOT_EXIST) (20211217/psparse-529)
[   87.566758] ACPI Error: Aborting method \_SB.UBTC._DSM due to previous error (AE_NOT_EXIST) (20211217/psparse-529)
[   87.566765] ACPI: \_SB_.UBTC: failed to evaluate _DSM (0x6)
[   87.566767] ucsi_acpi USBC000:00: ucsi_acpi_dsm: failed to evaluate _DSM 2
[   87.571001] input: Ideapad extra buttons as /devices/pci0000:00/0000:00:14.3/PNP0C09:00/VPC2004:00/input/input11
[   87.571026] ideapad_acpi VPC2004:00: Keyboard backlight control not available
[   87.727243] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[   87.727246] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[   87.727292] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[   87.728657] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[   87.731113] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[   87.735152] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[   87.826942] snd_pci_acp6x 0000:04:00.5: enabling device (0000 -> 0002)
[   87.827030] xen: registering gsi 35 triggering 0 polarity 1
[   87.827053] xen: --> pirq=35 -> irq=35 (gsi=35)
[   87.922259] snd_hda_intel 0000:04:00.1: enabling device (0000 -> 0002)
[   87.922329] xen: registering gsi 35 triggering 0 polarity 1
[   87.922337] Already setup the GSI :35
[   87.922370] snd_hda_intel 0000:04:00.1: Handle vga_switcheroo audio client
[   87.922677] snd_hda_intel 0000:04:00.6: enabling device (0000 -> 0002)
[   87.923260] xen: registering gsi 32 triggering 0 polarity 1
[   87.923263] Already setup the GSI :32
[   87.945231] snd_hda_intel 0000:04:00.1: bound 0000:04:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[   87.946108] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card0/input12
[   87.946165] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card0/input13
[   87.956382] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC257: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   87.956385] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   87.956387] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   87.956388] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[   87.956388] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[   87.956389] snd_hda_codec_realtek hdaudioC1D0:      Mic=0x19
[   87.959953] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   87.962945] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   87.964084] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[   87.964088] cfg80211: failed to load regulatory.db
[   88.000915] input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:04:00.6/sound/card1/input14
[   88.000942] input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:04:00.6/sound/card1/input15
[   88.063120] input: PC Speaker as /devices/platform/pcspkr/input/input16
[   88.241800] mc: Linux media interface: v0.10
[   88.268695] videodev: Linux video capture interface: v2.00
[   88.383641] Bluetooth: Core ver 2.22
[   88.383898] NET: Registered PF_BLUETOOTH protocol family
[   88.383900] Bluetooth: HCI device and connection manager initialized
[   88.383903] Bluetooth: HCI socket layer initialized
[   88.383905] Bluetooth: L2CAP socket layer initialized
[   88.383908] Bluetooth: SCO socket layer initialized
[   88.397435] usb 5-1: Found UVC 1.50 device Integrated RGB Camera (30c9:0057)
[   88.408309] usbcore: registered new interface driver btusb
[   88.445071] input: Integrated RGB Camera: Integrat as /devices/pci0000:00/0000:00:08.3/0000:05:00.0/usb5/5-1/5-1:1.0/input/input17
[   88.447387] usb 5-1: Found UVC 1.50 device Integrated RGB Camera (30c9:0057)
[   88.464212] input: Integrated RGB Camera: Integrat as /devices/pci0000:00/0000:00:08.3/0000:05:00.0/usb5/5-1/5-1:1.2/input/input18
[   88.464249] usbcore: registered new interface driver uvcvideo
[   88.687747] ucsi_acpi: probe of USBC000:00 failed with error -5
[   90.640888] Bluetooth: hci0: Device setup in 2175904 usecs
[   90.717744] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Quota mode: none.
[   90.866000] kauditd_printk_skb: 90 callbacks suppressed
[   90.866003] audit: type=1130 audit(1660502189.891:114): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus-broker comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   90.871361] audit: type=1130 audit(1660502189.896:115): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=alsa-state comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   90.898373] audit: type=1130 audit(1660502189.923:116): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=qubes-input-sender-keyboard@event7 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   90.920610] audit: type=1334 audit(1660502189.945:117): prog-id=29 op=LOAD
[   90.927944] audit: type=1334 audit(1660502189.953:118): prog-id=30 op=LOAD
[   90.928263] audit: type=1334 audit(1660502189.953:119): prog-id=31 op=LOAD
[   90.935710] audit: type=1334 audit(1660502189.960:120): prog-id=32 op=LOAD
[   90.949882] audit: type=1334 audit(1660502189.975:121): prog-id=33 op=LOAD
[   90.949993] audit: type=1334 audit(1660502189.975:122): prog-id=34 op=LOAD
[   90.956733] audit: type=1334 audit(1660502189.981:123): prog-id=35 op=LOAD
[   94.175238] nouveau 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
[   94.175242] amdgpu 0000:04:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
[  110.127154] kauditd_printk_skb: 40 callbacks suppressed
[  110.127157] audit: type=1100 audit(1660502209.152:162): pid=3173 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_unix acct="chairman" exe="/usr/sbin/lightdm" hostname=? addr=? terminal=:0 res=success'
[  110.127908] audit: type=1101 audit(1660502209.153:163): pid=3173 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_unix acct="chairman" exe="/usr/sbin/lightdm" hostname=? addr=? terminal=:0 res=success'
[  110.199505] audit: type=1106 audit(1660502209.224:164): pid=2809 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_unix,pam_systemd acct="lightdm" exe="/usr/sbin/lightdm" hostname=? addr=? terminal=:0 res=success'
[  110.199510] audit: type=1104 audit(1660502209.224:165): pid=2809 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_env,pam_permit acct="lightdm" exe="/usr/sbin/lightdm" hostname=? addr=? terminal=:0 res=success'
[  110.210207] audit: type=1103 audit(1660502209.235:166): pid=3173 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_unix acct="chairman" exe="/usr/sbin/lightdm" hostname=? addr=? terminal=:0 res=success'
[  110.210321] audit: type=1006 audit(1660502209.235:167): pid=3173 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
[  110.210346] audit: type=1300 audit(1660502209.235:167): arch=c000003e syscall=1 success=yes exit=4 a0=7 a1=7ffcd5c0b5f0 a2=4 a3=7ffcd5c0b304 items=0 ppid=2548 pid=3173 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=2 comm="lightdm" exe="/usr/sbin/lightdm" key=(null)
[  110.210428] audit: type=1327 audit(1660502209.235:167): proctitle=6C69676874646D002D2D73657373696F6E2D6368696C64003132003139
[  110.240496] audit: type=1130 audit(1660502209.264:168): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  110.245465] audit: type=1101 audit(1660502209.270:169): pid=3182 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_unix acct="chairman" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  110.397568] systemd-journald[807]: File /var/log/journal/20fb4a6318df4cb18eab3f31c5e5395c/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
[  111.016113] [drm:dc_dmub_srv_wait_idle [amdgpu]] *ERROR* Error waiting for DMUB idle: status=3
[  115.190396] kauditd_printk_skb: 18 callbacks suppressed
[  115.190398] audit: type=1101 audit(1660502214.215:186): pid=3381 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix acct="chairman" exe="/usr/bin/sudo" hostname=? addr=? terminal=? res=success'
[  115.191742] audit: type=1123 audit(1660502214.217:187): pid=3381 uid=1000 auid=1000 ses=2 msg='cwd="/home/chairman" cmd=2F62696E2F73797374656D63746C202D2D6E6F2D626C6F636B2073746172742071756265732D696E7075742D73656E6465722D7461626C6574406576656E74362E73657276696365 exe="/usr/bin/sudo" terminal=? res=success'
[  115.192863] audit: type=1110 audit(1660502214.218:188): pid=3381 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=? res=success'
[  115.198782] audit: type=1105 audit(1660502214.224:189): pid=3381 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=? res=success'
[  115.233544] audit: type=1130 audit(1660502214.258:190): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=qubes-input-sender-tablet@event6 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  115.238922] audit: type=1131 audit(1660502214.264:191): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=qubes-input-sender-tablet@event6 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  115.245639] audit: type=1106 audit(1660502214.270:192): pid=3381 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=? res=success'
[  115.245845] audit: type=1104 audit(1660502214.271:193): pid=3381 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=? res=success'
[  115.333494] audit: type=1101 audit(1660502214.358:194): pid=3386 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix acct="chairman" exe="/usr/bin/sudo" hostname=? addr=? terminal=? res=success'
[  115.336471] audit: type=1123 audit(1660502214.361:195): pid=3386 uid=1000 auid=1000 ses=2 msg='cwd="/home/chairman" cmd=2F62696E2F73797374656D63746C202D2D6E6F2D626C6F636B2073746172742071756265732D696E7075742D73656E6465722D6D6F757365406576656E74352E73657276696365 exe="/usr/bin/sudo" terminal=? res=success'
[  120.427955] kauditd_printk_skb: 38 callbacks suppressed
[  120.427958] audit: type=1131 audit(1660502219.451:234): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@994 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  120.442375] audit: type=1131 audit(1660502219.467:235): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@994 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  133.576816] audit: type=1101 audit(1660502232.602:236): pid=3445 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix acct="chairman" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  133.577073] audit: type=1123 audit(1660502232.602:237): pid=3445 uid=1000 auid=1000 ses=2 msg='cwd="/home/chairman" cmd="dmesg" exe="/usr/bin/sudo" terminal=pts/0 res=success'
[  133.577539] audit: type=1110 audit(1660502232.602:238): pid=3445 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_env,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  133.580014] audit: type=1105 audit(1660502232.605:239): pid=3445 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'

^ permalink raw reply	[relevance 2%]

* Re: [PATCH 2/4] xen: remove XEN_SCRUB_PAGES in xen.config
  2022-08-10  5:07  5% ` [PATCH 2/4] xen: remove XEN_SCRUB_PAGES in xen.config Lukas Bulwahn
  2022-08-12  8:41  0%   ` Juergen Gross
@ 2022-08-14  8:38  0%   ` Juergen Gross
  1 sibling, 0 replies; 200+ results
From: Juergen Gross @ 2022-08-14  8:38 UTC (permalink / raw)
  To: Lukas Bulwahn, Boris Ostrovsky, Stefano Stabellini,
	Oleksandr Tyshchenko, xen-devel
  Cc: Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
	H . Peter Anvin, kernel-janitors, linux-kernel


[-- Attachment #1.1.1: Type: text/plain, Size: 586 bytes --]

On 10.08.22 07:07, Lukas Bulwahn wrote:
> Commit 197ecb3802c0 ("xen/balloon: add runtime control for scrubbing
> ballooned out pages") changed config XEN_SCRUB_PAGES to config
> XEN_SCRUB_PAGES_DEFAULT. As xen.config sets 'XEN_BALLOON=y' and
> XEN_SCRUB_PAGES_DEFAULT defaults to yes, there is no further need to set
> this config in the xen.config file.
> 
> Remove setting XEN_SCRUB_PAGES in xen.config, which is without
> effect since the commit above anyway.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>

Pushed to xen/tip.git for-linus-6.0


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3149 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: [PATCH 2/4] xen: remove XEN_SCRUB_PAGES in xen.config
  2022-08-10  5:07  5% ` [PATCH 2/4] xen: remove XEN_SCRUB_PAGES in xen.config Lukas Bulwahn
@ 2022-08-12  8:41  0%   ` Juergen Gross
  2022-08-14  8:38  0%   ` Juergen Gross
  1 sibling, 0 replies; 200+ results
From: Juergen Gross @ 2022-08-12  8:41 UTC (permalink / raw)
  To: Lukas Bulwahn, Boris Ostrovsky, Stefano Stabellini,
	Oleksandr Tyshchenko, xen-devel
  Cc: Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
	H . Peter Anvin, kernel-janitors, linux-kernel


[-- Attachment #1.1.1: Type: text/plain, Size: 595 bytes --]

On 10.08.22 07:07, Lukas Bulwahn wrote:
> Commit 197ecb3802c0 ("xen/balloon: add runtime control for scrubbing
> ballooned out pages") changed config XEN_SCRUB_PAGES to config
> XEN_SCRUB_PAGES_DEFAULT. As xen.config sets 'XEN_BALLOON=y' and
> XEN_SCRUB_PAGES_DEFAULT defaults to yes, there is no further need to set
> this config in the xen.config file.
> 
> Remove setting XEN_SCRUB_PAGES in xen.config, which is without
> effect since the commit above anyway.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>

Reviewed-by: Juergen Gross <jgross@suse.com>


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3149 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 0%]

* [PATCH 2/4] xen: remove XEN_SCRUB_PAGES in xen.config
  @ 2022-08-10  5:07  5% ` Lukas Bulwahn
  2022-08-12  8:41  0%   ` Juergen Gross
  2022-08-14  8:38  0%   ` Juergen Gross
  0 siblings, 2 replies; 200+ results
From: Lukas Bulwahn @ 2022-08-10  5:07 UTC (permalink / raw)
  To: Juergen Gross, Boris Ostrovsky, Stefano Stabellini,
	Oleksandr Tyshchenko, xen-devel
  Cc: Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen, x86,
	H . Peter Anvin, kernel-janitors, linux-kernel, Lukas Bulwahn

Commit 197ecb3802c0 ("xen/balloon: add runtime control for scrubbing
ballooned out pages") changed config XEN_SCRUB_PAGES to config
XEN_SCRUB_PAGES_DEFAULT. As xen.config sets 'XEN_BALLOON=y' and
XEN_SCRUB_PAGES_DEFAULT defaults to yes, there is no further need to set
this config in the xen.config file.

Remove setting XEN_SCRUB_PAGES in xen.config, which is without
effect since the commit above anyway.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 kernel/configs/xen.config | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kernel/configs/xen.config b/kernel/configs/xen.config
index ff756221f112..436f806aa1ed 100644
--- a/kernel/configs/xen.config
+++ b/kernel/configs/xen.config
@@ -34,7 +34,6 @@ CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m
 CONFIG_XEN_SCSI_FRONTEND=m
 # others
 CONFIG_XEN_BALLOON=y
-CONFIG_XEN_SCRUB_PAGES=y
 CONFIG_XEN_DEV_EVTCHN=m
 CONFIG_XEN_BLKDEV_FRONTEND=m
 CONFIG_XEN_NETDEV_FRONTEND=m
-- 
2.17.1



^ permalink raw reply related	[relevance 5%]

* [BUG] Xen causes a host hang by using xen-hptool cpu-offline
@ 2022-07-27  1:19  3% Gao, Ruifeng
  0 siblings, 0 replies; 200+ results
From: Gao, Ruifeng @ 2022-07-27  1:19 UTC (permalink / raw)
  To: xen-devel

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

Problem Description:
Trying to execute "/usr/local/sbin/xen-hptool cpu-offline <cpuid>", the host will hang immediately.

Version-Release and System Details:
Platform: Ice Lake Server
Host OS: Red Hat Enterprise Linux 8.3 (Ootpa)
Kernel: 5.19.0-rc6
HW: Intel(R) Xeon(R) Gold 6336Y CPU @ 2.40GHz 
Xen Version: 4.17-unstable(ab2977b027-dirty)

Reproduce Steps:
1. Boot from Xen and check the information:
[root@icx-2s1 ~]# xl info
host                   : icx-2s1
release                : 5.19.0-rc6
xen_version            : 4.17-unstable
xen_caps               : xen-3.0-x86_64 hvm-3.0-x86_32 hvm-3.0-x86_32p hvm-3.0-x86_64
platform_params        : virt_start=0xffff800000000000
xen_changeset          : Thu Jul 14 19:45:36 2022 +0100 git:ab2977b027-dirty
2. Execute the cpu-offline command, here cpuid is 48 as an example:
[root@icx-2s1 ~]# /usr/local/sbin/xen-hptool cpu-offline 48

Actual Results:
The host will hang immediately.

Expected Results:
The selected CPUs will be offline after executing the "xen-hptool cpu-offline" command.

Additional Info:
On previous Xen commit 4.17-unstable(58ce5b6c-dirty), after executing the same command, the host works normally.

[-- Attachment #2: icx-2s1.log --]
[-- Type: application/octet-stream, Size: 193525 bytes --]

 Xen 4.17-unstable
(XEN) Xen version 4.17-unstable (gcc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5)) debug=y Sun Jul 17 03:11:02 CST 2022
(XEN) Latest ChangeSet: Thu Jul 14 19:45:36 2022 +0100 git:ab2977b027-dirty
(XEN) build-id: 4904d142a3ce16b58160756d6f4a8245
(XEN) Console output is synchronous.
(XEN) Bootloader: EFI
(XEN) Command line: dom0_mem=8192M dom0_max_vcpus=8 loglvl=all guest_loglvl=all msi=1 conring_size=4M console=vga,com1 console=com1 com1=115200,8n1 sync_console vpid=1 vpmu=1 altp2m=1 psr=cmt psr=cat psr=cdp psr=mba ept=pml iommu=on,intpost hvm_fep=true extra_guest_irqs=1024,1024
(XEN) Xen image load base address: 0x59400000
(XEN) Video information:
(XEN)  VGA is graphics mode 1024x768, 32 bpp
(XEN) Disc information:
(XEN)  Found 0 MBR signatures
(XEN)  Found 1 EDD information structures
(XEN) CPU Vendor: Intel, Family 6 (0x6), Model 106 (0x6a), Stepping 6 (raw 000606a6)
(XEN) EFI RAM map:
(XEN)  [0000000000000000, 000000000009dfff] (usable)
(XEN)  [000000000009e000, 000000000009efff] (reserved)
(XEN)  [000000000009f000, 000000000009ffff] (ACPI NVS)
(XEN)  [00000000000a0000, 00000000000fffff] (reserved)
(XEN)  [0000000000100000, 0000000063582fff] (usable)
(XEN)  [0000000063583000, 0000000064ecbfff] (reserved)
(XEN)  [0000000064ecc000, 000000006651afff] (ACPI NVS)
(XEN)  [000000006651b000, 00000000669fdfff] (ACPI data)
(XEN)  [00000000669fe000, 000000006f7fffff] (usable)
(XEN)  [000000006f800000, 000000008fffffff] (reserved)
(XEN)  [00000000fe000000, 00000000fe010fff] (reserved)
(XEN)  [0000000100000000, 000000407fffffff] (usable)
(XEN) ACPI: RSDP 669FD014, 0024 (r2 INTEL )
(XEN) ACPI: XSDT 667F2188, 010C (r1 INTEL  INTEL ID        0 INTL  1000013)
(XEN) ACPI: FACP 669F2000, 0114 (r6 INTEL  INTEL ID        0 INTL 20091013)
(XEN) ACPI: DSDT 66985000, 65320 (r2 INTEL  INTEL ID        3 INTL 20091013)
(XEN) ACPI: FACS 66482000, 0040
(XEN) ACPI: SSDT 669FB000, 0943 (r2  INTEL xh_wccrb        0 INTL 20200925)
(XEN) ACPI: SSDT 669FA000, 04C5 (r2 INTEL  INTEL ID        0 MSFT  100000D)
(XEN) ACPI: SSDT 669F9000, 0748 (r2  INTEL RAS_ACPI        1 INTL 20200925)
(XEN) ACPI: SSDT 669F8000, 0632 (r2 INTEL  Tpm2Tabl     1000 INTL 20200925)
(XEN) ACPI: TPM2 669F7000, 004C (r4 INTEL  INTEL ID        2 INTL  1000013)
(XEN) ACPI: SSDT 669F6000, 0745 (r2  INTEL ADDRXLAT        1 INTL 20200925)
(XEN) ACPI: BERT 669F5000, 0030 (r1 INTEL  INTEL ID        1 INTL        1)
(XEN) ACPI: ERST 669F4000, 0230 (r1 INTEL  INTEL ID        1 INTL        1)
(XEN) ACPI: BDAT 669F3000, 0030 (r1 INTEL  INTEL ID        0 INTL 20091013)
(XEN) ACPI: HMAT 669F1000, 0180 (r1 INTEL  INTEL ID        1 INTL 20091013)
(XEN) ACPI: HPET 669F0000, 0038 (r1 INTEL  INTEL ID        1 INTL 20091013)
(XEN) ACPI: MCFG 669EF000, 003C (r1 INTEL  INTEL ID        1 INTL 20091013)
(XEN) ACPI: MIGT 669EE000, 0040 (r1 INTEL  INTEL ID        0 INTL 20091013)
(XEN) ACPI: MSCT 669ED000, 0090 (r1 INTEL  INTEL ID        1 INTL 20091013)
(XEN) ACPI: WDDT 669EC000, 0040 (r1 INTEL  INTEL ID        0 INTL 20091013)
(XEN) ACPI: WSMT 669EB000, 0028 (r1 INTEL  INTEL ID        0 INTL 20091013)
(XEN) ACPI: APIC 66984000, 035E (r4 INTEL  INTEL ID        0 INTL 20091013)
(XEN) ACPI: SLIT 66982000, 102C (r1 INTEL  INTEL ID        1 INTL  1000013)
(XEN) ACPI: SRAT 6697B000, 6430 (r3 INTEL  INTEL ID        2 INTL  1000013)
(XEN) ACPI: OEM4 667F3000, 187A61 (r2  INTEL CPU  CST     3000 INTL 20200925)
(XEN) ACPI: OEM1 666DE000, 113489 (r2  INTEL CPU EIST     3000 INTL 20200925)
(XEN) ACPI: OEM2 66697000, 46031 (r2  INTEL CPU  HWP     3000 INTL 20200925)
(XEN) ACPI: SSDT 66620000, 764A5 (r2  INTEL SSDT  PM     4000 INTL 20200925)
(XEN) ACPI: HEST 669FC000, 013C (r1 INTEL  INTEL ID        1 INTL        1)
(XEN) ACPI: DMAR 6661F000, 0180 (r1 INTEL  INTEL ID        1 INTL 20091013)
(XEN) ACPI: SSDT 66617000, 78BA (r2  INTEL SpsNm           2 INTL 20200925)
(XEN) ACPI: SPCR 66616000, 0050 (r2 INTEL  INTEL ID        0 INTL  1000013)
(XEN) ACPI: FPDT 66615000, 0044 (r1 INTEL  INTEL ID        2 INTL  1000013)
(XEN) System RAM: 261827MB (268110988kB)
(XEN) SRAT: Node 0 PXM 0 [0000000000000000, 000000007fffffff]
(XEN) SRAT: Node 0 PXM 0 [0000000100000000, 000000207fffffff]
(XEN) SRAT: Node 1 PXM 1 [0000002080000000, 000000407fffffff]
(XEN) NUMA: Allocated memnodemap from 407b8ee000 - 407b8ef000
(XEN) NUMA: Using 19 for the hash shift.
(XEN) Domain heap initialised DMA width 32 bits
(XEN) Allocated console ring of 4096 KiB.
(XEN) SMBIOS 3.3 present.
(XEN) Using APIC driver default
(XEN) ACPI: PM-Timer IO Port: 0x508 (24 bits)
(XEN) ACPI: v5 SLEEP INFO: control[0:0], status[0:0]
(XEN) ACPI: SLEEP INFO: pm1x_cnt[1:504,1:0], pm1x_evt[1:500,1:0]
(XEN) ACPI: 32/64X FACS address mismatch in FADT - 66482000/0000000000000000, using 32
(XEN) ACPI:             wakeup_vec[6648200c], vec_size[20]
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) Overriding APIC driver with bigsmp
(XEN) ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
(XEN) IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-119
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
(XEN) ACPI: IRQ0 used by override.
(XEN) ACPI: IRQ2 used by override.
(XEN) ACPI: IRQ9 used by override.
(XEN) ACPI: HPET id: 0x8086a701 base: 0xfed00000
(XEN) PCI: MCFG configuration 0: base 80000000 segment 0000 buses 00 - ff
(XEN) PCI: MCFG area at 80000000 reserved in E820
(XEN) PCI: Using MCFG for segment 0000 bus 00-ff
(XEN) Xen ERST support is initialized.
(XEN) HEST: Table parsing has been initialized
(XEN) Using ACPI (MADT) for SMP configuration information
(XEN) SMP: Allowing 96 CPUs (0 hotplug CPUs)
(XEN) IRQ limits: 120 GSI, 19848 MSI/MSI-X
(XEN) [VT-D]drivers/passthrough/vtd/qinval.c:423: QI: using 256-entry ring(s)
(XEN) Switched to APIC driver x2apic_cluster
(XEN) CPU0: TSC: ratio: 192 / 2
(XEN) CPU0: bus: 100 MHz base: 2400 MHz max: 3600 MHz
(XEN) CPU0: 800 ... 2400 MHz
(XEN) xstate: size: 0xa88 and states: 0x2e7
(XEN) arch/x86/cpu/mcheck/mce_intel.c:776: MCA Capability: firstbank 0, extended MCE MSR 0, BCAST, SER, CMCI, LMCE
(XEN) CPU0: Intel machine check reporting enabled
(XEN) Unrecognised CPU model 0x6a - assuming vulnerable to LazyFPU
(XEN) Speculative mitigation facilities:
(XEN)   Hardware hints: RDCL_NO IBRS_ALL SKIP_L1DFL MDS_NO TAA_NO
(XEN)   Hardware features: IBPB IBRS STIBP SSBD L1D_FLUSH MD_CLEAR TSX_CTRL
(XEN)   Compiled-in support: INDIRECT_THUNK SHADOW_PAGING
(XEN)   Xen settings: BTI-Thunk JMP, SPEC_CTRL: IBRS+ STIBP+ SSBD- TSX+, Other: IBPB-ctxt BRANCH_HARDEN
(XEN)   Support for HVM VMs: MSR_SPEC_CTRL RSB EAGER_FPU MD_CLEAR
(XEN)   Support for PV VMs: MSR_SPEC_CTRL EAGER_FPU MD_CLEAR
(XEN)   XPTI (64-bit PV only): Dom0 disabled, DomU disabled (with PCID)
(XEN)   PV L1TF shadowing: Dom0 disabled, DomU disabled
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Platform timer is 24.000MHz HPET
(XEN) Detected 2394.375 MHz processor.
(XEN) EFI memory map:
(XEN)  0000000000000-0000000086fff type=7 attr=000000000000000f
(XEN)  0000000087000-0000000087fff type=4 attr=000000000000000f
(XEN)  0000000088000-000000009bfff type=7 attr=000000000000000f
(XEN)  000000009c000-000000009dfff type=2 attr=000000000000000f
(XEN)  000000009e000-000000009efff type=0 attr=000000000000000f
(XEN)  000000009f000-000000009ffff type=10 attr=000000000000000f
(XEN)  0000000100000-00000567e0fff type=7 attr=000000000000000f
(XEN)  00000567e1000-0000058384fff type=2 attr=000000000000000f
(XEN)  0000058385000-0000058464fff type=4 attr=000000000000000f
(XEN)  0000058465000-0000058a73fff type=7 attr=000000000000000f
(XEN)  0000058a74000-0000059272fff type=2 attr=000000000000000f
(XEN)  0000059273000-000005a472fff type=1 attr=000000000000000f
(XEN)  000005a473000-000005a475fff type=4 attr=000000000000000f
(XEN)  000005a476000-000005a7b3fff type=7 attr=000000000000000f
(XEN)  000005a7b4000-000005a9b7fff type=4 attr=000000000000000f
(XEN)  000005a9b8000-000005a9c4fff type=7 attr=000000000000000f
(XEN)  000005a9c5000-000005aa5ffff type=4 attr=000000000000000f
(XEN)  000005aa60000-000005aa63fff type=3 attr=000000000000000f
(XEN)  000005aa64000-000005aa66fff type=7 attr=000000000000000f
(XEN)  000005aa67000-000005af02fff type=4 attr=000000000000000f
(XEN)  000005af03000-000005af0dfff type=7 attr=000000000000000f
(XEN)  000005af0e000-000005b124fff type=4 attr=000000000000000f
(XEN)  000005b125000-000005b128fff type=7 attr=000000000000000f
(XEN)  000005b129000-000005b1fefff type=4 attr=000000000000000f
(XEN)  000005b1ff000-000005b202fff type=7 attr=000000000000000f
(XEN)  000005b203000-000005b2a7fff type=4 attr=000000000000000f
(XEN)  000005b2a8000-000005b36afff type=3 attr=000000000000000f
(XEN)  000005b36b000-000005b42dfff type=4 attr=000000000000000f
(XEN)  000005b42e000-000005b45ffff type=3 attr=000000000000000f
(XEN)  000005b460000-000005b513fff type=4 attr=000000000000000f
(XEN)  000005b514000-000005b547fff type=3 attr=000000000000000f
(XEN)  000005b548000-000005b553fff type=4 attr=000000000000000f
(XEN)  000005b554000-000005b57bfff type=3 attr=000000000000000f
(XEN)  000005b57c000-000005b5d3fff type=4 attr=000000000000000f
(XEN)  000005b5d4000-000005b73efff type=3 attr=000000000000000f
(XEN)  000005b73f000-000005b744fff type=4 attr=000000000000000f
(XEN)  000005b745000-000005b786fff type=3 attr=000000000000000f
(XEN)  000005b787000-000005b78bfff type=4 attr=000000000000000f
(XEN)  000005b78c000-000005b7a8fff type=3 attr=000000000000000f
(XEN)  000005b7a9000-000005b7aefff type=4 attr=000000000000000f
(XEN)  000005b7af000-000005b81ffff type=3 attr=000000000000000f
(XEN)  000005b820000-000005b82afff type=4 attr=000000000000000f
(XEN)  000005b82b000-000005b856fff type=3 attr=000000000000000f
(XEN)  000005b857000-000005b85afff type=4 attr=000000000000000f
(XEN)  000005b85b000-000005b8b5fff type=3 attr=000000000000000f
(XEN)  000005b8b6000-000005b8b6fff type=4 attr=000000000000000f
(XEN)  000005b8b7000-000005b8e0fff type=3 attr=000000000000000f
(XEN)  000005b8e1000-000005b8e3fff type=4 attr=000000000000000f
(XEN)  000005b8e4000-000005b8f3fff type=3 attr=000000000000000f
(XEN)  000005b8f4000-000005b8f4fff type=4 attr=000000000000000f
(XEN)  000005b8f5000-000005b900fff type=3 attr=000000000000000f
(XEN)  000005b901000-000005b906fff type=4 attr=000000000000000f
(XEN)  000005b907000-000005b90bfff type=3 attr=000000000000000f
(XEN)  000005b90c000-000005b910fff type=4 attr=000000000000000f
(XEN)  000005b911000-000005b962fff type=3 attr=000000000000000f
(XEN)  000005b963000-000005b965fff type=4 attr=000000000000000f
(XEN)  000005b966000-000005b973fff type=3 attr=000000000000000f
(XEN)  000005b974000-000005b976fff type=4 attr=000000000000000f
(XEN)  000005b977000-000005b993fff type=3 attr=000000000000000f
(XEN)  000005b994000-000005b997fff type=4 attr=000000000000000f
(XEN)  000005b998000-000005b9a9fff type=3 attr=000000000000000f
(XEN)  000005b9aa000-000005b9aafff type=4 attr=000000000000000f
(XEN)  000005b9ab000-000005b9b4fff type=3 attr=000000000000000f
(XEN)  000005b9b5000-000005c3dffff type=4 attr=000000000000000f
(XEN)  000005c3e0000-000005c40ffff type=3 attr=000000000000000f
(XEN)  000005c410000-000005c43ffff type=4 attr=000000000000000f
(XEN)  000005c440000-000005c452fff type=3 attr=000000000000000f
(XEN)  000005c453000-000005c465fff type=4 attr=000000000000000f
(XEN)  000005c466000-000005c470fff type=3 attr=000000000000000f
(XEN)  000005c471000-000005c471fff type=4 attr=000000000000000f
(XEN)  000005c472000-000005c475fff type=3 attr=000000000000000f
(XEN)  000005c476000-000005c479fff type=4 attr=000000000000000f
(XEN)  000005c47a000-000005c482fff type=3 attr=000000000000000f
(XEN)  000005c483000-000005c483fff type=4 attr=000000000000000f
(XEN)  000005c484000-000005c486fff type=3 attr=000000000000000f
(XEN)  000005c487000-000005c580fff type=4 attr=000000000000000f
(XEN)  000005c581000-000005c5a3fff type=3 attr=000000000000000f
(XEN)  000005c5a4000-000005c5b5fff type=4 attr=000000000000000f
(XEN)  000005c5b6000-000005c5f4fff type=3 attr=000000000000000f
(XEN)  000005c5f5000-000005c673fff type=4 attr=000000000000000f
(XEN)  000005c674000-000005c6c2fff type=3 attr=000000000000000f
(XEN)  000005c6c3000-000005c6f3fff type=4 attr=000000000000000f
(XEN)  000005c6f4000-000005c6fdfff type=3 attr=000000000000000f
(XEN)  000005c6fe000-000005c707fff type=4 attr=000000000000000f
(XEN)  000005c708000-000005c784fff type=3 attr=000000000000000f
(XEN)  000005c785000-000005c7a0fff type=4 attr=000000000000000f
(XEN)  000005c7a1000-000005c7a8fff type=3 attr=000000000000000f
(XEN)  000005c7a9000-000005c7abfff type=4 attr=000000000000000f
(XEN)  000005c7ac000-000005c7d3fff type=3 attr=000000000000000f
(XEN)  000005c7d4000-000005c7d4fff type=4 attr=000000000000000f
(XEN)  000005c7d5000-000005c7d8fff type=3 attr=000000000000000f
(XEN)  000005c7d9000-000005c7dcfff type=4 attr=000000000000000f
(XEN)  000005c7dd000-000005c80cfff type=3 attr=000000000000000f
(XEN)  000005c80d000-000005c80ffff type=4 attr=000000000000000f
(XEN)  000005c810000-000005c819fff type=3 attr=000000000000000f
(XEN)  000005c81a000-000005c81afff type=4 attr=000000000000000f
(XEN)  000005c81b000-000005c83ffff type=3 attr=000000000000000f
(XEN)  000005c840000-000005c844fff type=4 attr=000000000000000f
(XEN)  000005c845000-000005c84efff type=3 attr=000000000000000f
(XEN)  000005c84f000-000005c853fff type=4 attr=000000000000000f
(XEN)  000005c854000-000005c858fff type=3 attr=000000000000000f
(XEN)  000005c859000-000005c970fff type=4 attr=000000000000000f
(XEN)  000005c971000-000005c97cfff type=3 attr=000000000000000f
(XEN)  000005c97d000-000005c988fff type=4 attr=000000000000000f
(XEN)  000005c989000-000005c999fff type=3 attr=000000000000000f
(XEN)  000005c99a000-000005c99efff type=4 attr=000000000000000f
(XEN)  000005c99f000-000005c9a4fff type=3 attr=000000000000000f
(XEN)  000005c9a5000-000005c9aafff type=4 attr=000000000000000f
(XEN)  000005c9ab000-000005c9b5fff type=3 attr=000000000000000f
(XEN)  000005c9b6000-000005c9b6fff type=4 attr=000000000000000f
(XEN)  000005c9b7000-000005c9bbfff type=3 attr=000000000000000f
(XEN)  000005c9bc000-000005c9c0fff type=4 attr=000000000000000f
(XEN)  000005c9c1000-000005c9d1fff type=3 attr=000000000000000f
(XEN)  000005c9d2000-000005c9d3fff type=4 attr=000000000000000f
(XEN)  000005c9d4000-000005c9dafff type=3 attr=000000000000000f
(XEN)  000005c9db000-000005c9e4fff type=4 attr=000000000000000f
(XEN)  000005c9e5000-000005c9e8fff type=3 attr=000000000000000f
(XEN)  000005c9e9000-000005d6b7fff type=4 attr=000000000000000f
(XEN)  000005d6b8000-000005d6d8fff type=3 attr=000000000000000f
(XEN)  000005d6d9000-000005d6e8fff type=4 attr=000000000000000f
(XEN)  000005d6e9000-000005d6ecfff type=3 attr=000000000000000f
(XEN)  000005d6ed000-000005d6f0fff type=4 attr=000000000000000f
(XEN)  000005d6f1000-000005d6fbfff type=3 attr=000000000000000f
(XEN)  000005d6fc000-000005d6fdfff type=4 attr=000000000000000f
(XEN)  000005d6fe000-000005d701fff type=3 attr=000000000000000f
(XEN)  000005d702000-000005d706fff type=4 attr=000000000000000f
(XEN)  000005d707000-000005d744fff type=3 attr=000000000000000f
(XEN)  000005d745000-000005d745fff type=4 attr=000000000000000f
(XEN)  000005d746000-000005d769fff type=3 attr=000000000000000f
(XEN)  000005d76a000-000005d76afff type=4 attr=000000000000000f
(XEN)  000005d76b000-000005d76dfff type=3 attr=000000000000000f
(XEN)  000005d76e000-000005d770fff type=4 attr=000000000000000f
(XEN)  000005d771000-000005d776fff type=3 attr=000000000000000f
(XEN)  000005d777000-000005d779fff type=4 attr=000000000000000f
(XEN)  000005d77a000-000005d7c0fff type=3 attr=000000000000000f
(XEN)  000005d7c1000-000005d7c3fff type=4 attr=000000000000000f
(XEN)  000005d7c4000-000005d7f3fff type=3 attr=000000000000000f
(XEN)  000005d7f4000-000005de02fff type=4 attr=000000000000000f
(XEN)  000005de03000-000005de20fff type=3 attr=000000000000000f
(XEN)  000005de21000-000005de23fff type=4 attr=000000000000000f
(XEN)  000005de24000-000005de25fff type=3 attr=000000000000000f
(XEN)  000005de26000-000005de26fff type=4 attr=000000000000000f
(XEN)  000005de27000-000005de39fff type=3 attr=000000000000000f
(XEN)  000005de3a000-000005de47fff type=4 attr=000000000000000f
(XEN)  000005de48000-000005de62fff type=3 attr=000000000000000f
(XEN)  000005de63000-000005de65fff type=4 attr=000000000000000f
(XEN)  000005de66000-000005de69fff type=3 attr=000000000000000f
(XEN)  000005de6a000-000005de6afff type=4 attr=000000000000000f
(XEN)  000005de6b000-000005de72fff type=3 attr=000000000000000f
(XEN)  000005de73000-000005de77fff type=4 attr=000000000000000f
(XEN)  000005de78000-000005df00fff type=3 attr=000000000000000f
(XEN)  000005df01000-000005df02fff type=4 attr=000000000000000f
(XEN)  000005df03000-000005df0dfff type=3 attr=000000000000000f
(XEN)  000005df0e000-000005df11fff type=4 attr=000000000000000f
(XEN)  000005df12000-000005df22fff type=3 attr=000000000000000f
(XEN)  000005df23000-000005df23fff type=4 attr=000000000000000f
(XEN)  000005df24000-000005df26fff type=3 attr=000000000000000f
(XEN)  000005df27000-000005df2bfff type=4 attr=000000000000000f
(XEN)  000005df2c000-000005df2efff type=3 attr=000000000000000f
(XEN)  000005df2f000-000005df31fff type=4 attr=000000000000000f
(XEN)  000005df32000-000005df37fff type=3 attr=000000000000000f
(XEN)  000005df38000-000005df3bfff type=4 attr=000000000000000f
(XEN)  000005df3c000-000005df41fff type=3 attr=000000000000000f
(XEN)  000005df42000-000005df44fff type=4 attr=000000000000000f
(XEN)  000005df45000-000005df58fff type=3 attr=000000000000000f
(XEN)  000005df59000-000005df59fff type=4 attr=000000000000000f
(XEN)  000005df5a000-000005df63fff type=3 attr=000000000000000f
(XEN)  000005df64000-000005df65fff type=4 attr=000000000000000f
(XEN)  000005df66000-000005df68fff type=3 attr=000000000000000f
(XEN)  000005df69000-000005df69fff type=4 attr=000000000000000f
(XEN)  000005df6a000-000005df72fff type=3 attr=000000000000000f
(XEN)  000005df73000-000005df73fff type=4 attr=000000000000000f
(XEN)  000005df74000-000005df76fff type=3 attr=000000000000000f
(XEN)  000005df77000-000005df77fff type=4 attr=000000000000000f
(XEN)  000005df78000-000005df81fff type=3 attr=000000000000000f
(XEN)  000005df82000-000005df82fff type=4 attr=000000000000000f
(XEN)  000005df83000-000005df84fff type=3 attr=000000000000000f
(XEN)  000005df85000-000005df86fff type=4 attr=000000000000000f
(XEN)  000005df87000-000005df89fff type=3 attr=000000000000000f
(XEN)  000005df8a000-000005dff0fff type=4 attr=000000000000000f
(XEN)  000005dff1000-000005e020fff type=3 attr=000000000000000f
(XEN)  000005e021000-000005e021fff type=4 attr=000000000000000f
(XEN)  000005e022000-000005e023fff type=3 attr=000000000000000f
(XEN)  000005e024000-000005e026fff type=4 attr=000000000000000f
(XEN)  000005e027000-000005e02dfff type=3 attr=000000000000000f
(XEN)  000005e02e000-000005e030fff type=4 attr=000000000000000f
(XEN)  000005e031000-000005e032fff type=3 attr=000000000000000f
(XEN)  000005e033000-000005e034fff type=4 attr=000000000000000f
(XEN)  000005e035000-000005e035fff type=3 attr=000000000000000f
(XEN)  000005e036000-000005e037fff type=4 attr=000000000000000f
(XEN)  000005e038000-000005e041fff type=3 attr=000000000000000f
(XEN)  000005e042000-000005e044fff type=4 attr=000000000000000f
(XEN)  000005e045000-000005e047fff type=3 attr=000000000000000f
(XEN)  000005e048000-000005e04afff type=4 attr=000000000000000f
(XEN)  000005e04b000-000005e04cfff type=3 attr=000000000000000f
(XEN)  000005e04d000-000005e04ffff type=4 attr=000000000000000f
(XEN)  000005e050000-000005e051fff type=3 attr=000000000000000f
(XEN)  000005e052000-000005e054fff type=4 attr=000000000000000f
(XEN)  000005e055000-000005e05afff type=3 attr=000000000000000f
(XEN)  000005e05b000-0000063582fff type=4 attr=000000000000000f
(XEN)  0000063583000-0000063682fff type=6 attr=800000000000000f
(XEN)  0000063683000-0000063844fff type=5 attr=800000000000000f
(XEN)  0000063845000-0000064ecbfff type=0 attr=000000000000000f
(XEN)  0000064ecc000-000006651afff type=10 attr=000000000000000f
(XEN)  000006651b000-00000669fdfff type=9 attr=000000000000000f
(XEN)  00000669fe000-0000066bfffff type=4 attr=000000000000000f
(XEN)  0000066c00000-0000066dcafff type=7 attr=000000000000000f
(XEN)  0000066dcb000-0000066deafff type=4 attr=000000000000000f
(XEN)  0000066deb000-0000066e32fff type=3 attr=000000000000000f
(XEN)  0000066e33000-0000066e46fff type=4 attr=000000000000000f
(XEN)  0000066e47000-0000066e49fff type=3 attr=000000000000000f
(XEN)  0000066e4a000-0000066e5cfff type=4 attr=000000000000000f
(XEN)  0000066e5d000-0000066e92fff type=3 attr=000000000000000f
(XEN)  0000066e93000-000006bf7afff type=4 attr=000000000000000f
(XEN)  000006bf7b000-000006bf7efff type=3 attr=000000000000000f
(XEN)  000006bf7f000-000006bf92fff type=4 attr=000000000000000f
(XEN)  000006bf93000-000006bf95fff type=3 attr=000000000000000f
(XEN)  000006bf96000-000006bfa8fff type=4 attr=000000000000000f
(XEN)  000006bfa9000-000006bfb1fff type=3 attr=000000000000000f
(XEN)  000006bfb2000-000006c20cfff type=4 attr=000000000000000f
(XEN)  000006c20d000-000006c217fff type=3 attr=000000000000000f
(XEN)  000006c218000-000006c232fff type=4 attr=000000000000000f
(XEN)  000006c233000-000006c25bfff type=3 attr=000000000000000f
(XEN)  000006c25c000-000006c26ffff type=4 attr=000000000000000f
(XEN)  000006c270000-000006c272fff type=3 attr=000000000000000f
(XEN)  000006c273000-000006c2c7fff type=4 attr=000000000000000f
(XEN)  000006c2c8000-000006c2d2fff type=3 attr=000000000000000f
(XEN)  000006c2d3000-000006c2d4fff type=4 attr=000000000000000f
(XEN)  000006c2d5000-000006c2e4fff type=3 attr=000000000000000f
(XEN)  000006c2e5000-000006c37ffff type=4 attr=000000000000000f
(XEN)  000006c380000-000006f7fffff type=7 attr=000000000000000f
(XEN)  0000100000000-000407fffffff type=7 attr=000000000000000f
(XEN)  00000000a0000-00000000fffff type=0 attr=0000000000000000
(XEN)  000006f800000-000006fffffff type=0 attr=0000000000000000
(XEN)  0000070000000-0000077bfffff type=0 attr=0000000000000009
(XEN)  0000077c00000-000007fffffff type=0 attr=0000000000000000
(XEN)  0000080000000-000008fffffff type=11 attr=8000000000000001
(XEN)  00000fe000000-00000fe010fff type=11 attr=8000000000000001
(XEN) alt table ffff82d0406930f0 -> ffff82d0406a1320
(XEN) 0000:00:1f.5 disabled: BAR [0xfe010, 0xfe010] overlaps with memory map
(XEN) Intel VT-d iommu 8 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d iommu 7 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d iommu 6 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d iommu 5 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d iommu 4 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d iommu 3 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d iommu 2 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d iommu 1 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d iommu 0 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d iommu 9 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d Snoop Control enabled.
(XEN) Intel VT-d Dom0 DMA Passthrough not enabled.
(XEN) Intel VT-d Queued Invalidation enabled.
(XEN) Intel VT-d Interrupt Remapping enabled.
(XEN) Intel VT-d Posted Interrupt enabled.
(XEN) Intel VT-d Shared EPT tables enabled.
(XEN) I/O virtualisation enabled
(XEN)  - Dom0 mode: Relaxed
(XEN) Interrupt remapping enabled
(XEN) nr_sockets: 2
(XEN) Enabled directed EOI with ioapic_ack_old on!
(XEN) Enabling APIC mode:  Clustered.  Using 1 I/O APICs
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using old ACK method
(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) TSC deadline timer enabled
(XEN) Defaulting to alternative key handling; send 'A' to switch to normal mode.
(XEN) mwait-idle: MWAIT substates: 0x1020
(XEN) mwait-idle: v0.4.1 model 0x6a
(XEN) mwait-idle: lapic_timer_reliable_states 0xffffffff
(XEN) VPMU: PMU version 5 is not fully supported. Emulating version 3
(XEN) VPMU: version 0.1
(XEN) VMX: Supported advanced features:
(XEN)  - APIC MMIO access virtualisation
(XEN)  - APIC TPR shadow
(XEN)  - Extended Page Tables (EPT)
(XEN)  - Virtual-Processor Identifiers (VPID)
(XEN)  - Virtual NMI
(XEN)  - MSR direct-access bitmap
(XEN)  - Unrestricted Guest
(XEN)  - APIC Register Virtualization
(XEN)  - Virtual Interrupt Delivery
(XEN)  - Posted Interrupt Processing
(XEN)  - VMCS shadowing
(XEN)  - VM Functions
(XEN)  - Virtualisation Exceptions
(XEN)  - Page Modification Logging
(XEN)  - TSC Scaling
(XEN) HVM: ASIDs enabled.
(XEN) HVM: VMX enabled
(XEN) HVM: Hardware Assisted Paging (HAP) detected
(XEN) HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) Cache Monitoring Technology enabled
(XEN) alt table ffff82d0406930f0 -> ffff82d0406a1320
(XEN) Brought up 96 CPUs
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Adding cpu 0 to runqueue 0
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 1 to runqueue 0
(XEN) Adding cpu 2 to runqueue 0
(XEN) Adding cpu 3 to runqueue 0
(XEN) Adding cpu 4 to runqueue 0
(XEN) Adding cpu 5 to runqueue 0
(XEN) Adding cpu 6 to runqueue 0
(XEN) Adding cpu 7 to runqueue 0
(XEN) Adding cpu 8 to runqueue 0
(XEN) Adding cpu 9 to runqueue 0
(XEN) Adding cpu 10 to runqueue 0
(XEN) Adding cpu 11 to runqueue 0
(XEN) Adding cpu 12 to runqueue 0
(XEN) Adding cpu 13 to runqueue 0
(XEN) Adding cpu 14 to runqueue 0
(XEN) Adding cpu 15 to runqueue 0
(XEN) Adding cpu 16 to runqueue 1
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 17 to runqueue 1
(XEN) Adding cpu 18 to runqueue 1
(XEN) Adding cpu 19 to runqueue 1
(XEN) Adding cpu 20 to runqueue 1
(XEN) Adding cpu 21 to runqueue 1
(XEN) Adding cpu 22 to runqueue 1
(XEN) Adding cpu 23 to runqueue 1
(XEN) Adding cpu 24 to runqueue 1
(XEN) Adding cpu 25 to runqueue 1
(XEN) Adding cpu 26 to runqueue 1
(XEN) Adding cpu 27 to runqueue 1
(XEN) Adding cpu 28 to runqueue 1
(XEN) Adding cpu 29 to runqueue 1
(XEN) Adding cpu 30 to runqueue 1
(XEN) Adding cpu 31 to runqueue 1
(XEN) Adding cpu 32 to runqueue 2
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 33 to runqueue 2
(XEN) Adding cpu 34 to runqueue 2
(XEN) Adding cpu 35 to runqueue 2
(XEN) Adding cpu 36 to runqueue 2
(XEN) Adding cpu 37 to runqueue 2
(XEN) Adding cpu 38 to runqueue 2
(XEN) Adding cpu 39 to runqueue 2
(XEN) Adding cpu 40 to runqueue 2
(XEN) Adding cpu 41 to runqueue 2
(XEN) Adding cpu 42 to runqueue 2
(XEN) Adding cpu 43 to runqueue 2
(XEN) Adding cpu 44 to runqueue 2
(XEN) Adding cpu 45 to runqueue 2
(XEN) Adding cpu 46 to runqueue 2
(XEN) Adding cpu 47 to runqueue 2
(XEN) Adding cpu 48 to runqueue 3
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 49 to runqueue 3
(XEN) Adding cpu 50 to runqueue 3
(XEN) Adding cpu 51 to runqueue 3
(XEN) Adding cpu 52 to runqueue 3
(XEN) Adding cpu 53 to runqueue 3
(XEN) Adding cpu 54 to runqueue 3
(XEN) Adding cpu 55 to runqueue 3
(XEN) Adding cpu 56 to runqueue 3
(XEN) Adding cpu 57 to runqueue 3
(XEN) Adding cpu 58 to runqueue 3
(XEN) Adding cpu 59 to runqueue 3
(XEN) Adding cpu 60 to runqueue 3
(XEN) Adding cpu 61 to runqueue 3
(XEN) Adding cpu 62 to runqueue 3
(XEN) Adding cpu 63 to runqueue 3
(XEN) Adding cpu 64 to runqueue 4
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 65 to runqueue 4
(XEN) Adding cpu 66 to runqueue 4
(XEN) Adding cpu 67 to runqueue 4
(XEN) Adding cpu 68 to runqueue 4
(XEN) Adding cpu 69 to runqueue 4
(XEN) Adding cpu 70 to runqueue 4
(XEN) Adding cpu 71 to runqueue 4
(XEN) Adding cpu 72 to runqueue 4
(XEN) Adding cpu 73 to runqueue 4
(XEN) Adding cpu 74 to runqueue 4
(XEN) Adding cpu 75 to runqueue 4
(XEN) Adding cpu 76 to runqueue 4
(XEN) Adding cpu 77 to runqueue 4
(XEN) Adding cpu 78 to runqueue 4
(XEN) Adding cpu 79 to runqueue 4
(XEN) Adding cpu 80 to runqueue 5
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 81 to runqueue 5
(XEN) Adding cpu 82 to runqueue 5
(XEN) Adding cpu 83 to runqueue 5
(XEN) Adding cpu 84 to runqueue 5
(XEN) Adding cpu 85 to runqueue 5
(XEN) Adding cpu 86 to runqueue 5
(XEN) Adding cpu 87 to runqueue 5
(XEN) Adding cpu 88 to runqueue 5
(XEN) Adding cpu 89 to runqueue 5
(XEN) Adding cpu 90 to runqueue 5
(XEN) Adding cpu 91 to runqueue 5
(XEN) Adding cpu 92 to runqueue 5
(XEN) Adding cpu 93 to runqueue 5
(XEN) Adding cpu 94 to runqueue 5
(XEN) Adding cpu 95 to runqueue 5
(XEN) mcheck_poll: Machine check polling timer started.
(XEN) Running stub recovery selftests...
(XEN) Fixup #UD[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d0403983f9
(XEN) Fixup #GP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d0403983f9
(XEN) Fixup #SS[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d0403983f9
(XEN) Fixup #BP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d0403983f9
(XEN) NX (Execute Disable) protection active
(XEN) *** Building a PV Dom0 ***
(XEN) ELF: phdr: paddr=0x1000000 memsz=0x1254088
(XEN) ELF: phdr: paddr=0x2400000 memsz=0x8f1000
(XEN) ELF: phdr: paddr=0x2cf1000 memsz=0x2cae8
(XEN) ELF: phdr: paddr=0x2d1e000 memsz=0xb0a000
(XEN) ELF: memory: 0x1000000 -> 0x3828000
(XEN) ELF: note: GUEST_OS = "linux"
(XEN) ELF: note: GUEST_VERSION = "2.6"
(XEN) ELF: note: XEN_VERSION = "xen-3.0"
(XEN) ELF: note: VIRT_BASE = 0xffffffff80000000
(XEN) ELF: note: INIT_P2M = 0x8000000000
(XEN) ELF: note: ENTRY = 0xffffffff82d1e160
(XEN) ELF: note: HYPERCALL_PAGE = 0xffffffff818f0000
(XEN) ELF: note: FEATURES = "!writable_page_tables|pae_pgdir_above_4gb"
(XEN) ELF: note: SUPPORTED_FEATURES = 0x8801
(XEN) ELF: note: PAE_MODE = "yes"
(XEN) ELF: note: LOADER = "generic"
(XEN) ELF: note: unknown (0xd)
(XEN) ELF: note: SUSPEND_CANCEL = 0x1
(XEN) ELF: note: MOD_START_PFN = 0x1
(XEN) ELF: note: HV_START_LOW = 0xffff800000000000
(XEN) ELF: note: PADDR_OFFSET = 0
(XEN) ELF: addresses:
(XEN)     virt_base        = 0xffffffff80000000
(XEN)     elf_paddr_offset = 0x0
(XEN)     virt_offset      = 0xffffffff80000000
(XEN)     virt_kstart      = 0xffffffff81000000
(XEN)     virt_kend        = 0xffffffff83828000
(XEN)     virt_entry       = 0xffffffff82d1e160
(XEN)     p2m_base         = 0x8000000000
(XEN)  Xen  kernel: 64-bit, lsb
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x3828000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000002028000000->000000202c000000 (2073692 pages to be allocated)
(XEN)  Init. ramdisk: 000000407e45c000->000000407fffff4c
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff83828000
(XEN)  Phys-Mach map: 0000008000000000->0000008001000000
(XEN)  Start info:    ffffffff83828000->ffffffff838284b8
(XEN)  Page tables:   ffffffff83829000->ffffffff8384a000
(XEN)  Boot stack:    ffffffff8384a000->ffffffff8384b000
(XEN)  TOTAL:         ffffffff80000000->ffffffff83c00000
(XEN)  ENTRY ADDRESS: ffffffff82d1e160
(XEN) Dom0 has maximum 8 VCPUs
(XEN) ELF: phdr 0 at 0xffffffff81000000 -> 0xffffffff82254088
(XEN) ELF: phdr 1 at 0xffffffff82400000 -> 0xffffffff82cf1000
(XEN) ELF: phdr 2 at 0xffffffff82cf1000 -> 0xffffffff82d1dae8
(XEN) ELF: phdr 3 at 0xffffffff82d1e000 -> 0xffffffff82f5d000
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Scrubbing Free RAM in background
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) ***************************************************
(XEN) WARNING: CONSOLE OUTPUT IS SYNCHRONOUS
(XEN) This option is intended to aid debugging of Xen by ensuring
(XEN) that all output is synchronously delivered on the serial line.
(XEN) However it can introduce SIGNIFICANT latencies and affect
(XEN) timekeeping. It is NOT recommended for production use!
(XEN) ***************************************************
(XEN) WARNING: HVM FORCED EMULATION PREFIX IS AVAILABLE
(XEN) This option is *ONLY* intended to aid testing of Xen.
(XEN) It has implications on the security of the system.
(XEN) Please *DO NOT* use this in production.
(XEN) ***************************************************
(XEN) 3... 2... 1... 
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 2048kB init memory
mapping kernel into physical memory
about to get started...
[    0.000000] Linux version 5.19.0-rc6  (gcc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5), GNU ld (GNU Binutils) 2.32) #1 SMP PREEMPT_DYNAMIC Sun Jul 17 03:27:06 CST 2022
[    0.000000] Command line: root=/dev/mapper/rhel-root ro crashkernel=auto console=hvc0,console=ttyS0,115200,8n1 intel_iommu=on
[    0.000000] ------------[ cut here ]------------
[    0.000000] XSAVE consistency problem, dumping leaves
[    0.000000] WARNING: CPU: 0 PID: 0 at arch/x86/kernel/fpu/xstate.c:606 fpu__init_system_xstate+0x7ea/0xa98
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 5.19.0-rc6 #1
[    0.000000] RIP: e030:fpu__init_system_xstate+0x7ea/0xa98
[    0.000000] Code: be c9 48 ff e8 11 42 31 fe 41 39 c6 74 23 80 3d 44 b6 bd ff 00 75 8b 48 c7 c7 e0 af 0e 82 c6 05 34 b6 bd ff 01 e8 35 f3 b7 fe <0f> 0b e9 71 ff ff ff 8b 44 24 10 44 89 35 7e c9 48 ff ba 40 02 00
[    0.000000] RSP: e02b:ffffffff82403d50 EFLAGS: 00010082 ORIG_RAX: 0000000000000000
[    0.000000] RAX: 0000000000000000 RBX: 0000000000000040 RCX: 0000000000000002
[    0.000000] RDX: 0000000000000002 RSI: 0000000000000000 RDI: 00000000ffffffff
[    0.000000] RBP: 0000000000000400 R08: ffffffff8246f980 R09: 73657661656c2067
[    0.000000] R10: 656c626f72702079 R11: 69706d7564202c6d R12: 0000000000000001
[    0.000000] R13: 0000000000000001 R14: 0000000000000000 R15: 00000000000000e7
[    0.000000] FS:  0000000000000000(0000) GS:ffffffff82cf1000(0000) knlGS:0000000000000000
[    0.000000] CS:  10000e030 DS: 0000 ES: 0000 CR0: 0000000080050033
[    0.000000] CR2: 0000000000000000 CR3: 000000000240a000 CR4: 0000000000040660
[    0.000000] Call Trace:
[    0.000000]  <TASK>
[    0.000000]  ? fpu__init_system+0x147/0x18c
[    0.000000]  ? early_cpu_init+0x363/0x38d
[    0.000000]  ? setup_arch+0x5a/0xca5
[    0.000000]  ? _printk+0x58/0x6f
[    0.000000]  ? start_kernel+0x70/0x6c9
[    0.000000]  ? xen_start_kernel+0x500/0x50a
[    0.000000]  ? startup_xen+0x1f/0x1f
[    0.000000]  </TASK>
[    0.000000] ---[ end trace 0000000000000000 ]---
[    0.000000] CPUID[0d, 00]: eax=000000e7 ebx=00000a80 ecx=00000a80 edx=00000000
[    0.000000] CPUID[0d, 01]: eax=00000007 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 02]: eax=00000100 ebx=00000240 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 03]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 04]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 05]: eax=00000040 ebx=00000440 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 06]: eax=00000200 ebx=00000480 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 07]: eax=00000400 ebx=00000680 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 08]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 09]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0d]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0e]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 0f]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 10]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 11]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 12]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 13]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 14]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 15]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 16]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 17]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 18]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 19]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 1a]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 1b]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] CPUID[0d, 1c]: eax=00000000 ebx=00000000 ecx=00000000 edx=00000000
[    0.000000] signal: max sigframe size: 1440
[    0.000000] Released 0 page(s)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] Xen: [mem 0x0000000000000000-0x000000000009dfff] usable
[    0.000000] Xen: [mem 0x000000000009e000-0x000000000009efff] reserved
[    0.000000] Xen: [mem 0x000000000009f000-0x000000000009ffff] ACPI NVS
[    0.000000] Xen: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] Xen: [mem 0x0000000000100000-0x0000000063582fff] usable
[    0.000000] Xen: [mem 0x0000000063583000-0x0000000064ecbfff] reserved
[    0.000000] Xen: [mem 0x0000000064ecc000-0x000000006651afff] ACPI NVS
[    0.000000] Xen: [mem 0x000000006651b000-0x00000000669fdfff] ACPI data
[    0.000000] Xen: [mem 0x00000000669fe000-0x000000006f7fffff] usable
[    0.000000] Xen: [mem 0x000000006f800000-0x000000008fffffff] reserved
[    0.000000] Xen: [mem 0x000000009b7fc000-0x000000009b7fcfff] reserved
[    0.000000] Xen: [mem 0x00000000a63fc000-0x00000000a63fcfff] reserved
[    0.000000] Xen: [mem 0x00000000b0ffc000-0x00000000b0ffcfff] reserved
[    0.000000] Xen: [mem 0x00000000bbbfc000-0x00000000bbbfcfff] reserved
[    0.000000] Xen: [mem 0x00000000c5ffc000-0x00000000c5ffcfff] reserved
[    0.000000] Xen: [mem 0x00000000d0ffc000-0x00000000d0ffcfff] reserved
[    0.000000] Xen: [mem 0x00000000dbbfc000-0x00000000dbbfcfff] reserved
[    0.000000] Xen: [mem 0x00000000e67fc000-0x00000000e67fcfff] reserved
[    0.000000] Xen: [mem 0x00000000f13fc000-0x00000000f13fcfff] reserved
[    0.000000] Xen: [mem 0x00000000fb7fc000-0x00000000fb7fcfff] reserved
[    0.000000] Xen: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] Xen: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] Xen: [mem 0x0000000100000000-0x00000015ffffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: ACPI=0x669fd000 ACPI 2.0=0x669fd014 TPMFinalLog=0x66491000 SMBIOS=0x63608000 SMBIOS 3.0=0x63606000 MEMATTR=0x5af0e018 
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: Intel Corporation S2600WC/S2600WC, BIOS WLYDCRB1.SYS.0020.P95.2104010233 04/01/2021
[    0.000000] Hypervisor detected: Xen PV
[    0.000804] tsc: Detected 2394.374 MHz processor
[    0.001131] last_pfn = 0x1600000 max_arch_pfn = 0x400000000
[    0.001132] Disabled
[    0.001133] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[    0.001137] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP  UC  UC  
[    0.001138] last_pfn = 0x6f800 max_arch_pfn = 0x400000000
[    1.301054] Secure boot disabled
[    1.301057] RAMDISK: [mem 0x04000000-0x05ba3fff]
[    1.301061] ACPI: Early table checksum verification disabled
[    1.301069] ACPI: RSDP 0x00000000669FD014 000024 (v02 INTEL )
[    1.301080] ACPI: XSDT 0x00000000667F2188 00010C (v01 INTEL  INTEL ID 00000000 INTL 01000013)
[    1.301125] ACPI: FACP 0x00000000669F2000 000114 (v06 INTEL  INTEL ID 00000000 INTL 20091013)
[    1.301197] ACPI: DSDT 0x0000000066985000 065320 (v02 INTEL  INTEL ID 00000003 INTL 20091013)
[    1.301209] ACPI: FACS 0x0000000066482000 000040
[    1.301222] ACPI: SSDT 0x00000000669FB000 000943 (v02 INTEL  xh_wccrb 00000000 INTL 20200925)
[    1.301234] ACPI: SSDT 0x00000000669FA000 0004C5 (v02 INTEL  INTEL ID 00000000 MSFT 0100000D)
[    1.301247] ACPI: SSDT 0x00000000669F9000 000748 (v02 INTEL  RAS_ACPI 00000001 INTL 20200925)
[    1.301259] ACPI: SSDT 0x00000000669F8000 000632 (v02 INTEL  Tpm2Tabl 00001000 INTL 20200925)
[    1.301271] ACPI: TPM2 0x00000000669F7000 00004C (v04 INTEL  INTEL ID 00000002 INTL 01000013)
[    1.301284] ACPI: SSDT 0x00000000669F6000 000745 (v02 INTEL  ADDRXLAT 00000001 INTL 20200925)
[    1.301296] ACPI: BERT 0x00000000669F5000 000030 (v01 INTEL  INTEL ID 00000001 INTL 00000001)
[    1.301308] ACPI: ERST 0x00000000669F4000 000230 (v01 INTEL  INTEL ID 00000001 INTL 00000001)
[    1.301321] ACPI: BDAT 0x00000000669F3000 000030 (v01 INTEL  INTEL ID 00000000 INTL 20091013)
[    1.301333] ACPI: HMAT 0x00000000669F1000 000180 (v01 INTEL  INTEL ID 00000001 INTL 20091013)
[    1.301345] ACPI: HPET 0x00000000669F0000 000038 (v01 INTEL  INTEL ID 00000001 INTL 20091013)
[    1.301358] ACPI: MCFG 0x00000000669EF000 00003C (v01 INTEL  INTEL ID 00000001 INTL 20091013)
[    1.301370] ACPI: MIGT 0x00000000669EE000 000040 (v01 INTEL  INTEL ID 00000000 INTL 20091013)
[    1.301382] ACPI: MSCT 0x00000000669ED000 000090 (v01 INTEL  INTEL ID 00000001 INTL 20091013)
[    1.301394] ACPI: WDDT 0x00000000669EC000 000040 (v01 INTEL  INTEL ID 00000000 INTL 20091013)
[    1.301406] ACPI: WSMT 0x00000000669EB000 000028 (v01 INTEL  INTEL ID 00000000 INTL 20091013)
[    1.301418] ACPI: APIC 0x0000000066984000 00035E (v04 INTEL  INTEL ID 00000000 INTL 20091013)
[    1.301431] ACPI: SLIT 0x0000000066982000 00102C (v01 INTEL  INTEL ID 00000001 INTL 01000013)
[    1.301443] ACPI: SRAT 0x000000006697B000 006430 (v03 INTEL  INTEL ID 00000002 INTL 01000013)
[    1.301455] ACPI: OEM4 0x00000000667F3000 187A61 (v02 INTEL  CPU  CST 00003000 INTL 20200925)
[    1.301468] ACPI: OEM1 0x00000000666DE000 113489 (v02 INTEL  CPU EIST 00003000 INTL 20200925)
[    1.301480] ACPI: OEM2 0x0000000066697000 046031 (v02 INTEL  CPU  HWP 00003000 INTL 20200925)
[    1.301493] ACPI: SSDT 0x0000000066620000 0764A5 (v02 INTEL  SSDT  PM 00004000 INTL 20200925)
[    1.301505] ACPI: HEST 0x00000000669FC000 00013C (v01 INTEL  INTEL ID 00000001 INTL 00000001)
[    1.301518] ACPI: RMAD 0x000000006661F000 000180 (v01 INTEL  INTEL ID 00000001 INTL 20091013)
[    1.301530] ACPI: SSDT 0x0000000066617000 0078BA (v02 INTEL  SpsNm    00000002 INTL 20200925)
[    1.301543] ACPI: SPCR 0x0000000066616000 000050 (v02 INTEL  INTEL ID 00000000 INTL 01000013)
[    1.301558] ACPI: FPDT 0x0000000066615000 000044 (v01 INTEL  INTEL ID 00000002 INTL 01000013)
[    1.301564] ACPI: Reserving FACP table memory at [mem 0x669f2000-0x669f2113]
[    1.301566] ACPI: Reserving DSDT table memory at [mem 0x66985000-0x669ea31f]
[    1.301567] ACPI: Reserving FACS table memory at [mem 0x66482000-0x6648203f]
[    1.301568] ACPI: Reserving SSDT table memory at [mem 0x669fb000-0x669fb942]
[    1.301568] ACPI: Reserving SSDT table memory at [mem 0x669fa000-0x669fa4c4]
[    1.301569] ACPI: Reserving SSDT table memory at [mem 0x669f9000-0x669f9747]
[    1.301570] ACPI: Reserving SSDT table memory at [mem 0x669f8000-0x669f8631]
[    1.301571] ACPI: Reserving TPM2 table memory at [mem 0x669f7000-0x669f704b]
[    1.301571] ACPI: Reserving SSDT table memory at [mem 0x669f6000-0x669f6744]
[    1.301572] ACPI: Reserving BERT table memory at [mem 0x669f5000-0x669f502f]
[    1.301573] ACPI: Reserving ERST table memory at [mem 0x669f4000-0x669f422f]
[    1.301574] ACPI: Reserving BDAT table memory at [mem 0x669f3000-0x669f302f]
[    1.301574] ACPI: Reserving HMAT table memory at [mem 0x669f1000-0x669f117f]
[    1.301575] ACPI: Reserving HPET table memory at [mem 0x669f0000-0x669f0037]
[    1.301576] ACPI: Reserving MCFG table memory at [mem 0x669ef000-0x669ef03b]
[    1.301577] ACPI: Reserving MIGT table memory at [mem 0x669ee000-0x669ee03f]
[    1.301577] ACPI: Reserving MSCT table memory at [mem 0x669ed000-0x669ed08f]
[    1.301578] ACPI: Reserving WDDT table memory at [mem 0x669ec000-0x669ec03f]
[    1.301579] ACPI: Reserving WSMT table memory at [mem 0x669eb000-0x669eb027]
[    1.301580] ACPI: Reserving APIC table memory at [mem 0x66984000-0x6698435d]
[    1.301581] ACPI: Reserving SLIT table memory at [mem 0x66982000-0x6698302b]
[    1.301581] ACPI: Reserving SRAT table memory at [mem 0x6697b000-0x6698142f]
[    1.301582] ACPI: Reserving OEM4 table memory at [mem 0x667f3000-0x6697aa60]
[    1.301583] ACPI: Reserving OEM1 table memory at [mem 0x666de000-0x667f1488]
[    1.301584] ACPI: Reserving OEM2 table memory at [mem 0x66697000-0x666dd030]
[    1.301585] ACPI: Reserving SSDT table memory at [mem 0x66620000-0x666964a4]
[    1.301586] ACPI: Reserving HEST table memory at [mem 0x669fc000-0x669fc13b]
[    1.301587] ACPI: Reserving RMAD table memory at [mem 0x6661f000-0x6661f17f]
[    1.301588] ACPI: Reserving SSDT table memory at [mem 0x66617000-0x6661e8b9]
[    1.301588] ACPI: Reserving SPCR table memory at [mem 0x66616000-0x6661604f]
[    1.301589] ACPI: Reserving FPDT table memory at [mem 0x66615000-0x66615043]
[    1.301630] Setting APIC routing to Xen PV.
[    1.301700] NUMA turned off
[    1.301701] Faking a node at [mem 0x0000000000000000-0x00000015ffffffff]
[    1.301711] NODE_DATA(0) allocated [mem 0x1f544c000-0x1f546dfff]
[    1.301967] crashkernel: memory value expected
[    1.714033] Zone ranges:
[    1.714035]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    1.714037]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    1.714039]   Normal   [mem 0x0000000100000000-0x00000015ffffffff]
[    1.714041] Movable zone start for each node
[    1.714044] Early memory node ranges
[    1.714045]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    1.714047]   node   0: [mem 0x0000000000100000-0x0000000063582fff]
[    1.714048]   node   0: [mem 0x00000000669fe000-0x000000006f7fffff]
[    1.714049]   node   0: [mem 0x0000000100000000-0x00000015ffffffff]
[    1.714057] Initmem setup node 0 [mem 0x0000000000001000-0x00000015ffffffff]
[    1.714062] On node 0, zone DMA: 1 pages in unavailable ranges
[    1.714085] On node 0, zone DMA: 98 pages in unavailable ranges
[    1.716571] On node 0, zone DMA32: 13435 pages in unavailable ranges
[    1.871300] On node 0, zone Normal: 2048 pages in unavailable ranges
[    1.871304] p2m virtual area at (____ptrval____), size is 40000000
[    2.140022] kmemleak: Memory pool empty, consider increasing CONFIG_DEBUG_KMEMLEAK_MEM_POOL_SIZE
[    2.140025] kmemleak: Cannot allocate a kmemleak_object structure
[    2.140025] kmemleak: Kernel memory leak detector disabled
[    3.493774] Remapped 605405 page(s)
[    3.494380] ACPI: PM-Timer IO Port: 0x508
[    3.494523] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[    3.494551] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    3.494605] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-119
[    3.494633] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    3.494636] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    3.494693] ACPI: Using ACPI (MADT) for SMP configuration information
[    3.494697] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    3.494708] ACPI: SPCR: console: uart,io,0x3f8,115200
[    3.500413] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    3.500439] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    3.500442] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    3.500443] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    3.500444] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    3.500445] PM: hibernation: Registered nosave memory: [mem 0x63583000-0x64ecbfff]
[    3.500446] PM: hibernation: Registered nosave memory: [mem 0x64ecc000-0x6651afff]
[    3.500447] PM: hibernation: Registered nosave memory: [mem 0x6651b000-0x669fdfff]
[    3.500449] PM: hibernation: Registered nosave memory: [mem 0x6f800000-0x8fffffff]
[    3.500449] PM: hibernation: Registered nosave memory: [mem 0x90000000-0x9b7fbfff]
[    3.500450] PM: hibernation: Registered nosave memory: [mem 0x9b7fc000-0x9b7fcfff]
[    3.500451] PM: hibernation: Registered nosave memory: [mem 0x9b7fd000-0xa63fbfff]
[    3.500452] PM: hibernation: Registered nosave memory: [mem 0xa63fc000-0xa63fcfff]
[    3.500452] PM: hibernation: Registered nosave memory: [mem 0xa63fd000-0xb0ffbfff]
[    3.500453] PM: hibernation: Registered nosave memory: [mem 0xb0ffc000-0xb0ffcfff]
[    3.500453] PM: hibernation: Registered nosave memory: [mem 0xb0ffd000-0xbbbfbfff]
[    3.500454] PM: hibernation: Registered nosave memory: [mem 0xbbbfc000-0xbbbfcfff]
[    3.500455] PM: hibernation: Registered nosave memory: [mem 0xbbbfd000-0xc5ffbfff]
[    3.500455] PM: hibernation: Registered nosave memory: [mem 0xc5ffc000-0xc5ffcfff]
[    3.500456] PM: hibernation: Registered nosave memory: [mem 0xc5ffd000-0xd0ffbfff]
[    3.500456] PM: hibernation: Registered nosave memory: [mem 0xd0ffc000-0xd0ffcfff]
[    3.500457] PM: hibernation: Registered nosave memory: [mem 0xd0ffd000-0xdbbfbfff]
[    3.500457] PM: hibernation: Registered nosave memory: [mem 0xdbbfc000-0xdbbfcfff]
[    3.500458] PM: hibernation: Registered nosave memory: [mem 0xdbbfd000-0xe67fbfff]
[    3.500459] PM: hibernation: Registered nosave memory: [mem 0xe67fc000-0xe67fcfff]
[    3.500459] PM: hibernation: Registered nosave memory: [mem 0xe67fd000-0xf13fbfff]
[    3.500460] PM: hibernation: Registered nosave memory: [mem 0xf13fc000-0xf13fcfff]
[    3.500460] PM: hibernation: Registered nosave memory: [mem 0xf13fd000-0xfb7fbfff]
[    3.500461] PM: hibernation: Registered nosave memory: [mem 0xfb7fc000-0xfb7fcfff]
[    3.500462] PM: hibernation: Registered nosave memory: [mem 0xfb7fd000-0xfdffffff]
[    3.500462] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    3.500463] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    3.500463] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    3.500464] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[    3.500464] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
[    3.500465] PM: hibernation: Registered nosave memory: [mem 0xfef00000-0xffffffff]
[    3.500467] [mem 0x90000000-0x9b7fbfff] available for PCI devices
[    3.500471] Booting kernel on Xen
[    3.500471] Xen version: 4.17-unstable (preserve-AD)
[    3.500474] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    3.505142] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    3.505491] percpu: Embedded 54 pages/cpu s183016 r8192 d29976 u262144
[    3.505571] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    3.505576] Fallback order for Node 0: 0 
[    3.505580] Built 1 zonelists, mobility grouping on.  Total pages: 22112118
[    3.505581] Policy zone: Normal
[    3.505583] Kernel command line: root=/dev/mapper/rhel-root ro crashkernel=auto console=hvc0,console=ttyS0,115200,8n1 intel_iommu=on
[    3.505644] DMAR: IOMMU enabled
[    3.513526] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[    3.517536] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    3.518485] mem auto-init: stack:off, heap alloc:off, heap free:off
[    3.808478] Memory: 6392140K/89853064K available (12294K kernel code, 5414K rwdata, 4436K rodata, 2444K init, 8844K bss, 83460672K reserved, 0K cma-reserved)
[    3.808653] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    3.809734] ftrace: allocating 38797 entries in 152 pages
[    3.816845] ftrace: allocated 152 pages with 3 groups
[    3.817615] Dynamic Preempt: voluntary
[    3.817725] rcu: Preemptible hierarchical RCU implementation.
[    3.817726] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[    3.817727] 	Trampoline variant of Tasks RCU enabled.
[    3.817728] 	Rude variant of Tasks RCU enabled.
[    3.817728] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    3.817729] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    3.826955] Using NULL legacy PIC
[    3.826956] NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 0
[    3.827029] xen:events: Using FIFO-based ABI
[    3.827218] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    3.827238] random: crng init done
[    3.827285] Console: colour dummy device 80x25
[    3.827647] printk: console [tty0] enabled
[    5.638956] printk: console [hvc0] enabled
[    5.643139] ACPI: Core revision 20220331
[    6.065724] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    6.075563] installing Xen timer for CPU 0
[    6.079745] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x228374dae5d, max_idle_ns: 440795268352 ns
[    6.090301] Calibrating delay loop (skipped), value calculated using timer frequency.. 4788.74 BogoMIPS (lpj=2394374)
[    6.091305] pid_max: default: 32768 minimum: 301
[    6.092348] LSM: Security Framework initializing
[    6.093322] SELinux:  Initializing.
[    6.094304] SELinux: CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE is non-zero.  This is deprecated and will be rejected in a future kernel release.
[    6.095306] SELinux: https://github.com/SELinuxProject/selinux-kernel/wiki/DEPRECATE-checkreqprot
[    6.096533] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    6.097407] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    6.098902] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    6.099307] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    6.100310] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    6.101307] Spectre V2 : Mitigation: Enhanced IBRS
[    6.102304] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    6.103305] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    6.104305] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    6.105310] MMIO Stale Data: Vulnerable: Clear CPU buffers attempted, no microcode
[    6.110398] Freeing SMP alternatives memory: 32K
[    6.111382] cpu 0 spinlock event irq 121
[    6.112748] cblist_init_generic: Setting adjustable number of callback queues.
[    6.113303] cblist_init_generic: Setting shift to 3 and lim to 1.
[    6.114340] cblist_init_generic: Setting shift to 3 and lim to 1.
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x000001c9 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x000001a6 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x000001a7 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x000003f6 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x000003f7 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x0000018a unimplemented
[    6.115335] Performance Events: Icelake events, PMU not available due to virtualization, using software events only.
[    6.122384] rcu: Hierarchical SRCU implementation.
[    6.123765] NMI watchdog: Perf NMI watchdog permanently disabled
[    6.124487] smp: Bringing up secondary CPUs ...
[    6.125467] installing Xen timer for CPU 1
[    6.126749] cpu 1 spinlock event irq 133
[    6.130732] MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
[    6.131495] installing Xen timer for CPU 2
[    6.132689] cpu 2 spinlock event irq 140
[    6.136485] installing Xen timer for CPU 3
[    6.137614] cpu 3 spinlock event irq 147
[    6.141475] installing Xen timer for CPU 4
[    6.142585] cpu 4 spinlock event irq 154
[    6.146467] installing Xen timer for CPU 5
[    6.147645] cpu 5 spinlock event irq 161
[    6.151501] installing Xen timer for CPU 6
[    6.152619] cpu 6 spinlock event irq 168
[    6.156466] installing Xen timer for CPU 7
[    6.157630] cpu 7 spinlock event irq 175
[    6.161421] smp: Brought up 1 node, 8 CPUs
[    6.162306] smpboot: Max logical packages: 1
[    6.166350] devtmpfs: initialized
[    6.167347] x86/mm: Memory block size: 2048MB
[    6.168852] ACPI: PM: Registering ACPI NVS region [mem 0x0009f000-0x0009ffff] (4096 bytes)
[    6.169306] ACPI: PM: Registering ACPI NVS region [mem 0x64ecc000-0x6651afff] (23392256 bytes)
[    6.170630] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    6.171312] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    6.174023] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    6.174320] xen:grant_table: Grant tables using version 1 layout
[    6.175330] Grant table initialized
[    6.176517] audit: initializing netlink subsys (disabled)
[    6.177339] audit: type=2000 audit(1658382802.423:1): state=initialized audit_enabled=0 res=1
[    6.177370] thermal_sys: Registered thermal governor 'fair_share'
[    6.178311] thermal_sys: Registered thermal governor 'bang_bang'
[    6.179306] thermal_sys: Registered thermal governor 'step_wise'
[    6.180304] thermal_sys: Registered thermal governor 'user_space'
[    6.181335] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    6.184078] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
[    6.184306] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
(XEN) d0: Forcing write emulation on MFNs 80000-8ffff
[    6.268517] PCI: Using configuration type 1 for base access
[    6.270608] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    6.271373] ACPI: Added _OSI(Module Device)
[    6.275307] ACPI: Added _OSI(Processor Device)
[    6.280308] ACPI: Added _OSI(3.0 _SCP Extensions)
[    6.284306] ACPI: Added _OSI(Processor Aggregator Device)
[    6.290308] ACPI: Added _OSI(Linux-Dell-Video)
[    6.294306] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    6.300308] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    6.477436] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    6.497176] ACPI: Dynamic OEM Table Load:
[    6.682823] ACPI: Dynamic OEM Table Load:
[    6.732907] ACPI: Dynamic OEM Table Load:
[    7.107099] ACPI: Interpreter enabled
[    7.107322] ACPI: PM: (supports S0 S5)
[    7.108305] ACPI: Using IOAPIC for interrupt routing
[    7.109407] HEST: Table parsing has been initialized.
[    7.110434] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    7.111308] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    7.112308] PCI: Using E820 reservations for host bridge windows
[    7.136910] ACPI: Enabled 5 GPEs in block 00 to 7F
[    7.227315] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 8/0x10 ignored.
[    7.234308] ACPI: Unable to map lapic to logical cpu number
[    7.240712] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 9/0x12 ignored.
[    7.248313] ACPI: Unable to map lapic to logical cpu number
[    7.253669] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 10/0x14 ignored.
[    7.261306] ACPI: Unable to map lapic to logical cpu number
[    7.267665] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 11/0x16 ignored.
[    7.275306] ACPI: Unable to map lapic to logical cpu number
[    7.281663] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 12/0x18 ignored.
[    7.289307] ACPI: Unable to map lapic to logical cpu number
[    7.294663] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 13/0x1a ignored.
[    7.302307] ACPI: Unable to map lapic to logical cpu number
[    7.308664] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 14/0x1c ignored.
[    7.316307] ACPI: Unable to map lapic to logical cpu number
[    7.322655] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 15/0x1e ignored.
[    7.330306] ACPI: Unable to map lapic to logical cpu number
[    7.335662] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 16/0x20 ignored.
[    7.343307] ACPI: Unable to map lapic to logical cpu number
[    7.349659] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 17/0x22 ignored.
[    7.357307] ACPI: Unable to map lapic to logical cpu number
[    7.363664] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 18/0x24 ignored.
[    7.371311] ACPI: Unable to map lapic to logical cpu number
[    7.376665] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 19/0x26 ignored.
[    7.384312] ACPI: Unable to map lapic to logical cpu number
[    7.390662] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 20/0x28 ignored.
[    7.398307] ACPI: Unable to map lapic to logical cpu number
[    7.404656] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 21/0x2a ignored.
[    7.412306] ACPI: Unable to map lapic to logical cpu number
[    7.417660] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 22/0x2c ignored.
[    7.425306] ACPI: Unable to map lapic to logical cpu number
[    7.431658] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 23/0x2e ignored.
[    7.439307] ACPI: Unable to map lapic to logical cpu number
[    7.445657] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 24/0x1 ignored.
[    7.453306] ACPI: Unable to map lapic to logical cpu number
[    7.458662] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 25/0x3 ignored.
[    7.466307] ACPI: Unable to map lapic to logical cpu number
[    7.472659] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 26/0x5 ignored.
[    7.480308] ACPI: Unable to map lapic to logical cpu number
[    7.485661] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 27/0x7 ignored.
[    7.493307] ACPI: Unable to map lapic to logical cpu number
[    7.499659] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 28/0x9 ignored.
[    7.507312] ACPI: Unable to map lapic to logical cpu number
[    7.513666] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 29/0xb ignored.
[    7.521312] ACPI: Unable to map lapic to logical cpu number
[    7.526661] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 30/0xd ignored.
[    7.534306] ACPI: Unable to map lapic to logical cpu number
[    7.540658] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 31/0xf ignored.
[    7.548307] ACPI: Unable to map lapic to logical cpu number
[    7.553657] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 32/0x11 ignored.
[    7.561307] ACPI: Unable to map lapic to logical cpu number
[    7.567661] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 33/0x13 ignored.
[    7.575307] ACPI: Unable to map lapic to logical cpu number
[    7.580657] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 34/0x15 ignored.
[    7.588306] ACPI: Unable to map lapic to logical cpu number
[    7.594664] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 35/0x17 ignored.
[    7.602307] ACPI: Unable to map lapic to logical cpu number
[    7.608658] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 36/0x19 ignored.
[    7.616306] ACPI: Unable to map lapic to logical cpu number
[    7.621663] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 37/0x1b ignored.
[    7.629306] ACPI: Unable to map lapic to logical cpu number
[    7.635663] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 38/0x1d ignored.
[    7.643312] ACPI: Unable to map lapic to logical cpu number
[    7.649665] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 39/0x1f ignored.
[    7.657313] ACPI: Unable to map lapic to logical cpu number
[    7.662664] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 40/0x21 ignored.
[    7.670307] ACPI: Unable to map lapic to logical cpu number
[    7.676660] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 41/0x23 ignored.
[    7.684306] ACPI: Unable to map lapic to logical cpu number
[    7.690660] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 42/0x25 ignored.
[    7.698306] ACPI: Unable to map lapic to logical cpu number
[    7.703661] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 43/0x27 ignored.
[    7.711306] ACPI: Unable to map lapic to logical cpu number
[    7.717661] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 44/0x29 ignored.
[    7.725307] ACPI: Unable to map lapic to logical cpu number
[    7.731660] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 45/0x2b ignored.
[    7.739309] ACPI: Unable to map lapic to logical cpu number
[    7.744660] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 46/0x2d ignored.
[    7.752307] ACPI: Unable to map lapic to logical cpu number
[    7.758659] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 47/0x2f ignored.
[    7.766306] ACPI: Unable to map lapic to logical cpu number
[    7.775365] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 48/0x40 ignored.
[    7.782306] ACPI: Unable to map lapic to logical cpu number
[    7.788662] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 49/0x42 ignored.
[    7.796306] ACPI: Unable to map lapic to logical cpu number
[    7.802662] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 50/0x44 ignored.
[    7.810306] ACPI: Unable to map lapic to logical cpu number
[    7.815661] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 51/0x46 ignored.
[    7.823307] ACPI: Unable to map lapic to logical cpu number
[    7.829658] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 52/0x48 ignored.
[    7.837306] ACPI: Unable to map lapic to logical cpu number
[    7.843663] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 53/0x4a ignored.
[    7.851306] ACPI: Unable to map lapic to logical cpu number
[    7.856670] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 54/0x4c ignored.
[    7.864307] ACPI: Unable to map lapic to logical cpu number
[    7.870661] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 55/0x4e ignored.
[    7.878307] ACPI: Unable to map lapic to logical cpu number
[    7.884509] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 56/0x50 ignored.
[    7.892309] ACPI: Unable to map lapic to logical cpu number
[    7.897737] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 57/0x52 ignored.
[    7.906311] ACPI: Unable to map lapic to logical cpu number
[    7.911731] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 58/0x54 ignored.
[    7.919306] ACPI: Unable to map lapic to logical cpu number
[    7.925726] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 59/0x56 ignored.
[    7.933306] ACPI: Unable to map lapic to logical cpu number
[    7.939726] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 60/0x58 ignored.
[    7.947305] ACPI: Unable to map lapic to logical cpu number
[    7.952723] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 61/0x5a ignored.
[    7.961305] ACPI: Unable to map lapic to logical cpu number
[    7.966723] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 62/0x5c ignored.
[    7.974306] ACPI: Unable to map lapic to logical cpu number
[    7.980726] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 63/0x5e ignored.
[    7.988306] ACPI: Unable to map lapic to logical cpu number
[    7.994722] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 64/0x60 ignored.
[    8.002306] ACPI: Unable to map lapic to logical cpu number
[    8.007726] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 65/0x62 ignored.
[    8.015308] ACPI: Unable to map lapic to logical cpu number
[    8.021727] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 66/0x64 ignored.
[    8.029311] ACPI: Unable to map lapic to logical cpu number
[    8.035725] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 67/0x66 ignored.
[    8.043311] ACPI: Unable to map lapic to logical cpu number
[    8.048726] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 68/0x68 ignored.
[    8.057306] ACPI: Unable to map lapic to logical cpu number
[    8.062725] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 69/0x6a ignored.
[    8.070305] ACPI: Unable to map lapic to logical cpu number
[    8.076722] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 70/0x6c ignored.
[    8.084306] ACPI: Unable to map lapic to logical cpu number
[    8.090724] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 71/0x6e ignored.
[    8.098307] ACPI: Unable to map lapic to logical cpu number
[    8.103726] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 72/0x41 ignored.
[    8.111306] ACPI: Unable to map lapic to logical cpu number
[    8.117723] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 73/0x43 ignored.
[    8.125306] ACPI: Unable to map lapic to logical cpu number
[    8.131724] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 74/0x45 ignored.
[    8.139305] ACPI: Unable to map lapic to logical cpu number
[    8.145739] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 75/0x47 ignored.
[    8.153312] ACPI: Unable to map lapic to logical cpu number
[    8.158726] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 76/0x49 ignored.
[    8.166311] ACPI: Unable to map lapic to logical cpu number
[    8.172729] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 77/0x4b ignored.
[    8.180306] ACPI: Unable to map lapic to logical cpu number
[    8.186723] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 78/0x4d ignored.
[    8.194306] ACPI: Unable to map lapic to logical cpu number
[    8.199724] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 79/0x4f ignored.
[    8.208306] ACPI: Unable to map lapic to logical cpu number
[    8.213723] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 80/0x51 ignored.
[    8.221306] ACPI: Unable to map lapic to logical cpu number
[    8.227726] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 81/0x53 ignored.
[    8.235306] ACPI: Unable to map lapic to logical cpu number
[    8.241724] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 82/0x55 ignored.
[    8.249306] ACPI: Unable to map lapic to logical cpu number
[    8.254724] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 83/0x57 ignored.
[    8.262306] ACPI: Unable to map lapic to logical cpu number
[    8.268724] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 84/0x59 ignored.
[    8.276308] ACPI: Unable to map lapic to logical cpu number
[    8.282724] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 85/0x5b ignored.
[    8.290311] ACPI: Unable to map lapic to logical cpu number
[    8.296722] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 86/0x5d ignored.
[    8.304311] ACPI: Unable to map lapic to logical cpu number
[    8.309724] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 87/0x5f ignored.
[    8.317306] ACPI: Unable to map lapic to logical cpu number
[    8.323731] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 88/0x61 ignored.
[    8.331306] ACPI: Unable to map lapic to logical cpu number
[    8.337722] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 89/0x63 ignored.
[    8.345306] ACPI: Unable to map lapic to logical cpu number
[    8.350727] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 90/0x65 ignored.
[    8.359306] ACPI: Unable to map lapic to logical cpu number
[    8.364725] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 91/0x67 ignored.
[    8.372305] ACPI: Unable to map lapic to logical cpu number
[    8.378728] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 92/0x69 ignored.
[    8.386306] ACPI: Unable to map lapic to logical cpu number
[    8.392723] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 93/0x6b ignored.
[    8.400306] ACPI: Unable to map lapic to logical cpu number
[    8.405725] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 94/0x6d ignored.
[    8.414306] ACPI: Unable to map lapic to logical cpu number
[    8.419719] APIC: NR_CPUS/possible_cpus limit of 8 reached. Processor 95/0x6f ignored.
[    8.427310] ACPI: Unable to map lapic to logical cpu number
[    8.437211] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-15])
[    8.443311] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    8.508801] acpi PNP0A08:00: _OSC: platform does not support [AER LTR]
[    8.515820] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    8.526288] PCI host bridge to bus 0000:00
[    8.530306] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    8.537309] pci_bus 0000:00: root bus resource [io  0x1000-0x4fff window]
[    8.543312] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    8.550307] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cffff window]
[    8.558305] pci_bus 0000:00: root bus resource [mem 0xfe010000-0xfe010fff window]
[    8.565305] pci_bus 0000:00: root bus resource [mem 0x90000000-0x9b7fffff window]
[    8.573306] pci_bus 0000:00: root bus resource [mem 0x200000000000-0x200fffffffff window]
[    8.581306] pci_bus 0000:00: root bus resource [bus 00-15]
[    8.587352] pci 0000:00:00.0: [8086:09a2] type 00 class 0x088000
(XEN) PCI add device 0000:00:00.0
[    8.596340] pci 0000:00:00.1: [8086:09a4] type 00 class 0x088000
(XEN) PCI add device 0000:00:00.1
[    8.605339] pci 0000:00:00.2: [8086:09a3] type 00 class 0x088000
(XEN) PCI add device 0000:00:00.2
[    8.614347] pci 0000:00:00.4: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:00:00.4
[    8.623354] pci 0000:00:01.0: [8086:0b00] type 00 class 0x088000
[    8.629354] pci 0000:00:01.0: reg 0x10: [mem 0x200ffff50000-0x200ffff53fff 64bit]
(XEN) PCI add device 0000:00:01.0
[    8.640338] pci 0000:00:01.1: [8086:0b00] type 00 class 0x088000
[    8.646357] pci 0000:00:01.1: reg 0x10: [mem 0x200ffff4c000-0x200ffff4ffff 64bit]
(XEN) PCI add device 0000:00:01.1
[    8.656343] pci 0000:00:01.2: [8086:0b00] type 00 class 0x088000
[    8.662364] pci 0000:00:01.2: reg 0x10: [mem 0x200ffff48000-0x200ffff4bfff 64bit]
(XEN) PCI add device 0000:00:01.2
[    8.673338] pci 0000:00:01.3: [8086:0b00] type 00 class 0x088000
[    8.679353] pci 0000:00:01.3: reg 0x10: [mem 0x200ffff44000-0x200ffff47fff 64bit]
(XEN) PCI add device 0000:00:01.3
[    8.690348] pci 0000:00:01.4: [8086:0b00] type 00 class 0x088000
[    8.696357] pci 0000:00:01.4: reg 0x10: [mem 0x200ffff40000-0x200ffff43fff 64bit]
(XEN) PCI add device 0000:00:01.4
[    8.706339] pci 0000:00:01.5: [8086:0b00] type 00 class 0x088000
[    8.712353] pci 0000:00:01.5: reg 0x10: [mem 0x200ffff3c000-0x200ffff3ffff 64bit]
(XEN) PCI add device 0000:00:01.5
[    8.723338] pci 0000:00:01.6: [8086:0b00] type 00 class 0x088000
[    8.729353] pci 0000:00:01.6: reg 0x10: [mem 0x200ffff38000-0x200ffff3bfff 64bit]
(XEN) PCI add device 0000:00:01.6
[    8.739337] pci 0000:00:01.7: [8086:0b00] type 00 class 0x088000
[    8.745353] pci 0000:00:01.7: reg 0x10: [mem 0x200ffff34000-0x200ffff37fff 64bit]
(XEN) PCI add device 0000:00:01.7
[    8.756331] pci 0000:00:02.0: [8086:09a6] type 00 class 0x088000
[    8.762344] pci 0000:00:02.0: reg 0x10: [mem 0x92488000-0x92489fff]
(XEN) PCI add device 0000:00:02.0
[    8.771330] pci 0000:00:02.1: [8086:09a7] type 00 class 0x088000
[    8.777344] pci 0000:00:02.1: reg 0x10: [mem 0x92400000-0x9247ffff]
[    8.784327] pci 0000:00:02.1: reg 0x14: [mem 0x92380000-0x923fffff]
(XEN) PCI add device 0000:00:02.1
[    8.793338] pci 0000:00:02.2: [8086:09a8] type 00 class 0x088000
[    8.799345] pci 0000:00:02.2: reg 0x10: [mem 0x92300000-0x9237ffff]
(XEN) PCI add device 0000:00:02.2
[    8.808346] pci 0000:00:02.4: [8086:3456] type 00 class 0x130000
[    8.814357] pci 0000:00:02.4: reg 0x10: [mem 0x200fffe00000-0x200fffefffff 64bit]
[    8.822335] pci 0000:00:02.4: reg 0x18: [mem 0x200ffff30000-0x200ffff33fff 64bit]
[    8.829335] pci 0000:00:02.4: reg 0x20: [mem 0x200ffff00000-0x200ffff1ffff 64bit]
(XEN) PCI add device 0000:00:02.4
[    8.840441] pci 0000:00:11.0: [8086:a1ec] type 00 class 0xff0000
(XEN) PCI add device 0000:00:11.0
[    8.849352] pci 0000:00:11.1: [8086:a1ed] type 00 class 0xff0000
(XEN) PCI add device 0000:00:11.1
[    8.858377] pci 0000:00:11.5: [8086:a1d2] type 00 class 0x010601
[    8.864357] pci 0000:00:11.5: reg 0x10: [mem 0x92486000-0x92487fff]
[    8.871335] pci 0000:00:11.5: reg 0x14: [mem 0x9248c000-0x9248c0ff]
[    8.877331] pci 0000:00:11.5: reg 0x18: [io  0x4068-0x406f]
[    8.882334] pci 0000:00:11.5: reg 0x1c: [io  0x4074-0x4077]
[    8.888335] pci 0000:00:11.5: reg 0x20: [io  0x4040-0x405f]
[    8.894334] pci 0000:00:11.5: reg 0x24: [mem 0x92280000-0x922fffff]
[    8.900460] pci 0000:00:11.5: PME# supported from D3hot
(XEN) PCI add device 0000:00:11.5
[    8.908375] pci 0000:00:14.0: [8086:a1af] type 00 class 0x0c0330
[    8.914366] pci 0000:00:14.0: reg 0x10: [mem 0x200ffff20000-0x200ffff2ffff 64bit]
[    8.922542] pci 0000:00:14.0: PME# supported from D3hot D3cold
(XEN) PCI add device 0000:00:14.0
[    8.931363] pci 0000:00:14.2: [8086:a1b1] type 00 class 0x118000
[    8.937370] pci 0000:00:14.2: reg 0x10: [mem 0x200ffff58000-0x200ffff58fff 64bit]
(XEN) PCI add device 0000:00:14.2
[    8.948386] pci 0000:00:16.0: [8086:a1ba] type 00 class 0x078000
[    8.954375] pci 0000:00:16.0: reg 0x10: [mem 0x200ffff57000-0x200ffff57fff 64bit]
[    8.961567] pci 0000:00:16.0: PME# supported from D3hot
(XEN) PCI add device 0000:00:16.0
[    8.969360] pci 0000:00:16.1: [8086:a1bb] type 00 class 0x078000
[    8.975371] pci 0000:00:16.1: reg 0x10: [mem 0x200ffff56000-0x200ffff56fff 64bit]
[    8.983562] pci 0000:00:16.1: PME# supported from D3hot
(XEN) PCI add device 0000:00:16.1
[    8.991367] pci 0000:00:16.4: [8086:a1be] type 00 class 0x078000
[    8.997375] pci 0000:00:16.4: reg 0x10: [mem 0x200ffff55000-0x200ffff55fff 64bit]
[    9.005563] pci 0000:00:16.4: PME# supported from D3hot
(XEN) PCI add device 0000:00:16.4
[    9.013374] pci 0000:00:17.0: [8086:a182] type 00 class 0x010601
[    9.019356] pci 0000:00:17.0: reg 0x10: [mem 0x92484000-0x92485fff]
[    9.025333] pci 0000:00:17.0: reg 0x14: [mem 0x9248b000-0x9248b0ff]
[    9.032333] pci 0000:00:17.0: reg 0x18: [io  0x4060-0x4067]
[    9.037334] pci 0000:00:17.0: reg 0x1c: [io  0x4070-0x4073]
[    9.043333] pci 0000:00:17.0: reg 0x20: [io  0x4020-0x403f]
[    9.048329] pci 0000:00:17.0: reg 0x24: [mem 0x92200000-0x9227ffff]
[    9.055454] pci 0000:00:17.0: PME# supported from D3hot
(XEN) PCI add device 0000:00:17.0
[    9.063369] pci 0000:00:1c.0: [8086:a194] type 01 class 0x060400
[    9.069598] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
(XEN) PCI add device 0000:00:1c.0
[    9.079368] pci 0000:00:1c.5: [8086:a195] type 01 class 0x060400
[    9.085599] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
(XEN) PCI add device 0000:00:1c.5
[    9.095354] pci 0000:00:1f.0: [8086:a1cb] type 00 class 0x060100
(XEN) PCI add device 0000:00:1f.0
[    9.104341] pci 0000:00:1f.2: [8086:a1a1] type 00 class 0x058000
[    9.110347] pci 0000:00:1f.2: reg 0x10: [mem 0x92480000-0x92483fff]
(XEN) PCI add device 0000:00:1f.2
[    9.119337] pci 0000:00:1f.4: [8086:a1a3] type 00 class 0x0c0500
[    9.126364] pci 0000:00:1f.4: reg 0x10: [mem 0x200ffff54000-0x200ffff540ff 64bit]
[    9.133364] pci 0000:00:1f.4: reg 0x20: [io  0x4000-0x401f]
(XEN) PCI add device 0000:00:1f.4
[    9.142335] pci 0000:00:1f.5: [8086:a1a4] type 00 class 0x0c8000
[    9.148348] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
(XEN) PCI add device 0000:00:1f.5
[    9.157668] pci 0000:01:00.0: working around ROM BAR overlap defect
[    9.163305] pci 0000:01:00.0: [8086:1533] type 00 class 0x020000
[    9.169418] pci 0000:01:00.0: reg 0x10: [mem 0x92100000-0x9217ffff]
[    9.176412] pci 0000:01:00.0: reg 0x18: [io  0x3000-0x301f]
[    9.181388] pci 0000:01:00.0: reg 0x1c: [mem 0x92180000-0x92183fff]
[    9.189031] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
(XEN) PCI add device 0000:01:00.0
[    9.196464] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    9.197317] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    9.198316] pci 0000:00:1c.0:   bridge window [mem 0x92100000-0x921fffff]
[    9.199502] pci 0000:02:00.0: [1a03:1150] type 01 class 0x060400
[    9.200517] pci 0000:02:00.0: enabling Extended Tags
[    9.201530] pci 0000:02:00.0: supports D1 D2
[    9.202305] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
(XEN) PCI add device 0000:02:00.0
[    9.204380] pci 0000:00:1c.5: PCI bridge to [bus 02-03]
[    9.205316] pci 0000:00:1c.5:   bridge window [io  0x2000-0x2fff]
[    9.206315] pci 0000:00:1c.5:   bridge window [mem 0x91000000-0x920fffff]
[    9.207460] pci_bus 0000:03: extended config space not accessible
[    9.208352] pci 0000:03:00.0: [1a03:2000] type 00 class 0x030000
[    9.209372] pci 0000:03:00.0: reg 0x10: [mem 0x91000000-0x91ffffff]
[    9.210345] pci 0000:03:00.0: reg 0x14: [mem 0x92000000-0x9201ffff]
[    9.211344] pci 0000:03:00.0: reg 0x18: [io  0x2000-0x207f]
[    9.212465] pci 0000:03:00.0: BAR 0: assigned to efifb
[    9.213432] pci 0000:03:00.0: supports D1 D2
[    9.214304] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
(XEN) PCI add device 0000:03:00.0
[    9.216458] pci 0000:02:00.0: PCI bridge to [bus 03]
[    9.217330] pci 0000:02:00.0:   bridge window [io  0x2000-0x2fff]
[    9.218320] pci 0000:02:00.0:   bridge window [mem 0x91000000-0x920fffff]
[    9.220046] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 16-2f])
[    9.220307] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.233830] acpi PNP0A08:01: _OSC: platform does not support [AER]
[    9.234822] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    9.235430] PCI host bridge to bus 0000:16
[    9.236305] pci_bus 0000:16: root bus resource [io  0x5000-0x6fff window]
[    9.237304] pci_bus 0000:16: root bus resource [mem 0x9b800000-0xa63fffff window]
[    9.238305] pci_bus 0000:16: root bus resource [mem 0x201000000000-0x201fffffffff window]
[    9.239305] pci_bus 0000:16: root bus resource [bus 16-2f]
[    9.240339] pci 0000:16:00.0: [8086:09a2] type 00 class 0x088000
(XEN) PCI add device 0000:16:00.0
[    9.242337] pci 0000:16:00.1: [8086:09a4] type 00 class 0x088000
(XEN) PCI add device 0000:16:00.1
[    9.244337] pci 0000:16:00.2: [8086:09a3] type 00 class 0x088000
(XEN) PCI add device 0000:16:00.2
[    9.246340] pci 0000:16:00.4: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:16:00.4
[    9.248354] pci 0000:16:02.0: [8086:347a] type 01 class 0x060400
[    9.249358] pci 0000:16:02.0: reg 0x10: [mem 0x201fffd00000-0x201fffd1ffff 64bit]
[    9.250376] pci 0000:16:02.0: enabling Extended Tags
[    9.251439] pci 0000:16:02.0: PME# supported from D0 D3hot D3cold
(XEN) PCI add device 0000:16:02.0
[    9.253737] pci 0000:17:00.0: [8086:1563] type 00 class 0x020000
[    9.254362] pci 0000:17:00.0: reg 0x10: [mem 0x201fff800000-0x201fffbfffff 64bit pref]
[    9.255375] pci 0000:17:00.0: reg 0x20: [mem 0x201fffc04000-0x201fffc07fff 64bit pref]
[    9.256327] pci 0000:17:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    9.257518] pci 0000:17:00.0: PME# supported from D0 D3hot
[    9.258392] pci 0000:17:00.0: reg 0x184: [mem 0x9b800000-0x9b803fff 64bit]
[    9.259305] pci 0000:17:00.0: VF(n) BAR0 space: [mem 0x9b800000-0x9b8fffff 64bit] (contains BAR0 for 64 VFs)
[    9.260333] pci 0000:17:00.0: reg 0x190: [mem 0x9b900000-0x9b903fff 64bit]
[    9.261305] pci 0000:17:00.0: VF(n) BAR3 space: [mem 0x9b900000-0x9b9fffff 64bit] (contains BAR3 for 64 VFs)
(XEN) PCI add device 0000:17:00.0
[    9.263363] pci 0000:17:00.1: [8086:1563] type 00 class 0x020000
[    9.264361] pci 0000:17:00.1: reg 0x10: [mem 0x201fff400000-0x201fff7fffff 64bit pref]
[    9.265376] pci 0000:17:00.1: reg 0x20: [mem 0x201fffc00000-0x201fffc03fff 64bit pref]
[    9.266327] pci 0000:17:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    9.267511] pci 0000:17:00.1: PME# supported from D0 D3hot
[    9.268372] pci 0000:17:00.1: reg 0x184: [mem 0x9ba00000-0x9ba03fff 64bit]
[    9.269305] pci 0000:17:00.1: VF(n) BAR0 space: [mem 0x9ba00000-0x9bafffff 64bit] (contains BAR0 for 64 VFs)
[    9.270333] pci 0000:17:00.1: reg 0x190: [mem 0x9bb00000-0x9bb03fff 64bit]
[    9.271305] pci 0000:17:00.1: VF(n) BAR3 space: [mem 0x9bb00000-0x9bbfffff 64bit] (contains BAR3 for 64 VFs)
(XEN) PCI add device 0000:17:00.1
[    9.273443] pci 0000:16:02.0: PCI bridge to [bus 17-18]
[    9.274317] pci 0000:16:02.0:   bridge window [mem 0x9b800000-0x9bbfffff]
[    9.275317] pci 0000:16:02.0:   bridge window [mem 0x201fff400000-0x201fffcfffff 64bit pref]
[    9.276427] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 30-49])
[    9.277306] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.290680] acpi PNP0A08:02: _OSC: platform does not support [AER]
[    9.291814] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    9.292429] PCI host bridge to bus 0000:30
[    9.293305] pci_bus 0000:30: root bus resource [io  0x7000-0x8fff window]
[    9.294305] pci_bus 0000:30: root bus resource [mem 0xa6400000-0xb0ffffff window]
[    9.295305] pci_bus 0000:30: root bus resource [mem 0x202000000000-0x202fffffffff window]
[    9.296305] pci_bus 0000:30: root bus resource [bus 30-49]
[    9.297338] pci 0000:30:00.0: [8086:09a2] type 00 class 0x088000
(XEN) PCI add device 0000:30:00.0
[    9.299336] pci 0000:30:00.1: [8086:09a4] type 00 class 0x088000
(XEN) PCI add device 0000:30:00.1
[    9.301336] pci 0000:30:00.2: [8086:09a3] type 00 class 0x088000
(XEN) PCI add device 0000:30:00.2
[    9.303343] pci 0000:30:00.4: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:30:00.4
[    9.305513] ACPI: PCI Root Bridge [PC04] (domain 0000 [bus 4a-63])
[    9.306306] acpi PNP0A08:04: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.319679] acpi PNP0A08:04: _OSC: platform does not support [AER]
[    9.320814] acpi PNP0A08:04: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    9.321424] PCI host bridge to bus 0000:4a
[    9.322305] pci_bus 0000:4a: root bus resource [io  0x9000-0x9fff window]
[    9.323305] pci_bus 0000:4a: root bus resource [mem 0xb1000000-0xbbbfffff window]
[    9.324306] pci_bus 0000:4a: root bus resource [mem 0x203000000000-0x203fffffffff window]
[    9.325310] pci_bus 0000:4a: root bus resource [bus 4a-63]
[    9.326340] pci 0000:4a:00.0: [8086:09a2] type 00 class 0x088000
(XEN) PCI add device 0000:4a:00.0
[    9.328336] pci 0000:4a:00.1: [8086:09a4] type 00 class 0x088000
(XEN) PCI add device 0000:4a:00.1
[    9.330336] pci 0000:4a:00.2: [8086:09a3] type 00 class 0x088000
(XEN) PCI add device 0000:4a:00.2
[    9.332340] pci 0000:4a:00.4: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:4a:00.4
[    9.334490] ACPI: PCI Root Bridge [PC05] (domain 0000 [bus 64-7d])
[    9.335306] acpi PNP0A08:05: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.348665] acpi PNP0A08:05: _OSC: platform does not support [AER]
[    9.349731] acpi PNP0A08:05: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[    9.357474] PCI host bridge to bus 0000:64
[    9.361306] pci_bus 0000:64: root bus resource [io  0xa000-0xafff window]
[    9.368305] pci_bus 0000:64: root bus resource [mem 0xbbc00000-0xc5ffffff window]
[    9.375305] pci_bus 0000:64: root bus resource [mem 0x204000000000-0x204fffffffff window]
[    9.384306] pci_bus 0000:64: root bus resource [bus 64-7d]
[    9.389342] pci 0000:64:00.0: [8086:09a2] type 00 class 0x088000
(XEN) PCI add device 0000:64:00.0
[    9.398340] pci 0000:64:00.1: [8086:09a4] type 00 class 0x088000
(XEN) PCI add device 0000:64:00.1
[    9.407338] pci 0000:64:00.2: [8086:09a3] type 00 class 0x088000
(XEN) PCI add device 0000:64:00.2
[    9.416341] pci 0000:64:00.4: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:64:00.4
[    9.426513] ACPI: PCI Root Bridge [UC06] (domain 0000 [bus 7e])
[    9.432307] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.441444] acpi PNP0A03:00: _OSC: platform does not support [AER LTR]
[    9.447558] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    9.455447] PCI host bridge to bus 0000:7e
[    9.459305] pci_bus 0000:7e: root bus resource [bus 7e]
[    9.464338] pci 0000:7e:00.0: [8086:3450] type 00 class 0x088000
(XEN) PCI add device 0000:7e:00.0
[    9.473336] pci 0000:7e:00.1: [8086:3451] type 00 class 0x088000
(XEN) PCI add device 0000:7e:00.1
[    9.482336] pci 0000:7e:00.2: [8086:3452] type 00 class 0x088000
(XEN) PCI add device 0000:7e:00.2
[    9.492337] pci 0000:7e:00.3: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:7e:00.3
[    9.501340] pci 0000:7e:00.5: [8086:3455] type 00 class 0x088000
(XEN) PCI add device 0000:7e:00.5
[    9.510353] pci 0000:7e:02.0: [8086:3440] type 00 class 0x088000
(XEN) PCI add device 0000:7e:02.0
[    9.519342] pci 0000:7e:02.1: [8086:3441] type 00 class 0x088000
(XEN) PCI add device 0000:7e:02.1
[    9.528343] pci 0000:7e:02.2: [8086:3442] type 00 class 0x088000
(XEN) PCI add device 0000:7e:02.2
[    9.537355] pci 0000:7e:03.0: [8086:3440] type 00 class 0x088000
(XEN) PCI add device 0000:7e:03.0
[    9.546338] pci 0000:7e:03.1: [8086:3441] type 00 class 0x088000
(XEN) PCI add device 0000:7e:03.1
[    9.555338] pci 0000:7e:03.2: [8086:3442] type 00 class 0x088000
(XEN) PCI add device 0000:7e:03.2
[    9.564360] pci 0000:7e:04.0: [8086:3440] type 00 class 0x088000
(XEN) PCI add device 0000:7e:04.0
[    9.574344] pci 0000:7e:04.1: [8086:3441] type 00 class 0x088000
(XEN) PCI add device 0000:7e:04.1
[    9.583343] pci 0000:7e:04.2: [8086:3442] type 00 class 0x088000
(XEN) PCI add device 0000:7e:04.2
[    9.592344] pci 0000:7e:04.3: [8086:3443] type 00 class 0x088000
(XEN) PCI add device 0000:7e:04.3
[    9.601356] pci 0000:7e:05.0: [8086:3445] type 00 class 0x088000
(XEN) PCI add device 0000:7e:05.0
[    9.610343] pci 0000:7e:05.1: [8086:3446] type 00 class 0x088000
(XEN) PCI add device 0000:7e:05.1
[    9.619343] pci 0000:7e:05.2: [8086:3447] type 00 class 0x088000
(XEN) PCI add device 0000:7e:05.2
[    9.628355] pci 0000:7e:06.0: [8086:3445] type 00 class 0x088000
(XEN) PCI add device 0000:7e:06.0
[    9.638338] pci 0000:7e:06.1: [8086:3446] type 00 class 0x088000
(XEN) PCI add device 0000:7e:06.1
[    9.647340] pci 0000:7e:06.2: [8086:3447] type 00 class 0x088000
(XEN) PCI add device 0000:7e:06.2
[    9.656360] pci 0000:7e:07.0: [8086:3445] type 00 class 0x088000
(XEN) PCI add device 0000:7e:07.0
[    9.665343] pci 0000:7e:07.1: [8086:3446] type 00 class 0x088000
(XEN) PCI add device 0000:7e:07.1
[    9.674344] pci 0000:7e:07.2: [8086:3447] type 00 class 0x088000
(XEN) PCI add device 0000:7e:07.2
[    9.683351] pci 0000:7e:0b.0: [8086:3448] type 00 class 0x088000
(XEN) PCI add device 0000:7e:0b.0
[    9.692325] pci 0000:7e:0b.1: [8086:3448] type 00 class 0x088000
(XEN) PCI add device 0000:7e:0b.1
[    9.701325] pci 0000:7e:0b.2: [8086:344b] type 00 class 0x088000
(XEN) PCI add device 0000:7e:0b.2
[    9.710357] pci 0000:7e:0c.0: [8086:344a] type 00 class 0x110100
(XEN) PCI add device 0000:7e:0c.0
[    9.720361] pci 0000:7e:0d.0: [8086:344a] type 00 class 0x110100
(XEN) PCI add device 0000:7e:0d.0
[    9.729368] pci 0000:7e:0e.0: [8086:344a] type 00 class 0x110100
(XEN) PCI add device 0000:7e:0e.0
[    9.738370] pci 0000:7e:0f.0: [8086:344a] type 00 class 0x110100
(XEN) PCI add device 0000:7e:0f.0
[    9.747396] pci 0000:7e:1a.0: [8086:2880] type 00 class 0x110100
(XEN) PCI add device 0000:7e:1a.0
[    9.756361] pci 0000:7e:1b.0: [8086:2880] type 00 class 0x110100
(XEN) PCI add device 0000:7e:1b.0
[    9.765368] pci 0000:7e:1c.0: [8086:2880] type 00 class 0x110100
(XEN) PCI add device 0000:7e:1c.0
[    9.774370] pci 0000:7e:1d.0: [8086:2880] type 00 class 0x110100
(XEN) PCI add device 0000:7e:1d.0
[    9.784409] ACPI: PCI Root Bridge [UC07] (domain 0000 [bus 7f])
[    9.790307] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.799443] acpi PNP0A03:01: _OSC: platform does not support [AER LTR]
[    9.805558] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    9.813460] PCI host bridge to bus 0000:7f
[    9.817305] pci_bus 0000:7f: root bus resource [bus 7f]
[    9.822343] pci 0000:7f:00.0: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:00.0
[    9.831341] pci 0000:7f:00.1: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:00.1
[    9.841343] pci 0000:7f:00.2: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:00.2
[    9.850341] pci 0000:7f:00.3: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:00.3
[    9.859341] pci 0000:7f:00.4: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:00.4
[    9.866346] pci 0000:7f:00.5: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:00.5
[    9.868338] pci 0000:7f:00.6: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:00.6
[    9.870344] pci 0000:7f:00.7: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:00.7
[    9.872339] pci 0000:7f:01.0: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:01.0
[    9.874338] pci 0000:7f:01.1: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:01.1
[    9.876343] pci 0000:7f:01.2: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:01.2
[    9.878337] pci 0000:7f:01.3: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:01.3
[    9.880342] pci 0000:7f:01.4: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:01.4
[    9.882342] pci 0000:7f:01.5: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:01.5
[    9.884343] pci 0000:7f:01.6: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:01.6
[    9.886343] pci 0000:7f:01.7: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:01.7
[    9.888344] pci 0000:7f:02.0: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:02.0
[    9.890344] pci 0000:7f:02.1: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:02.1
[    9.892344] pci 0000:7f:02.2: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:02.2
[    9.894345] pci 0000:7f:02.3: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:02.3
[    9.896345] pci 0000:7f:02.4: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:02.4
[    9.898345] pci 0000:7f:02.5: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:02.5
[    9.900346] pci 0000:7f:02.6: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:02.6
[    9.902347] pci 0000:7f:02.7: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:02.7
[    9.904346] pci 0000:7f:03.0: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:03.0
[    9.906342] pci 0000:7f:03.1: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:03.1
[    9.908343] pci 0000:7f:03.2: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:03.2
[    9.910345] pci 0000:7f:03.3: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:03.3
[    9.912373] pci 0000:7f:0a.0: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0a.0
[    9.914340] pci 0000:7f:0a.1: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0a.1
[    9.916342] pci 0000:7f:0a.2: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0a.2
[    9.918339] pci 0000:7f:0a.3: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0a.3
[    9.920341] pci 0000:7f:0a.4: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0a.4
[    9.922343] pci 0000:7f:0a.5: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0a.5
[    9.924339] pci 0000:7f:0a.6: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0a.6
[    9.926343] pci 0000:7f:0a.7: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0a.7
[    9.928338] pci 0000:7f:0b.0: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0b.0
[    9.930338] pci 0000:7f:0b.1: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0b.1
[    9.932344] pci 0000:7f:0b.2: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0b.2
[    9.934337] pci 0000:7f:0b.3: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0b.3
[    9.936344] pci 0000:7f:0b.4: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0b.4
[    9.938343] pci 0000:7f:0b.5: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0b.5
[    9.940343] pci 0000:7f:0b.6: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0b.6
[    9.942343] pci 0000:7f:0b.7: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0b.7
[    9.944344] pci 0000:7f:0c.0: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0c.0
[    9.946344] pci 0000:7f:0c.1: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0c.1
[    9.948344] pci 0000:7f:0c.2: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0c.2
[    9.950345] pci 0000:7f:0c.3: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0c.3
[    9.952347] pci 0000:7f:0c.4: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0c.4
[    9.954345] pci 0000:7f:0c.5: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0c.5
[    9.956346] pci 0000:7f:0c.6: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0c.6
[    9.958348] pci 0000:7f:0c.7: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0c.7
[    9.960345] pci 0000:7f:0d.0: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0d.0
[    9.962342] pci 0000:7f:0d.1: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0d.1
[    9.964343] pci 0000:7f:0d.2: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0d.2
[    9.966346] pci 0000:7f:0d.3: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:0d.3
[    9.968408] pci 0000:7f:1d.0: [8086:344f] type 00 class 0x088000
(XEN) PCI add device 0000:7f:1d.0
[    9.970341] pci 0000:7f:1d.1: [8086:3457] type 00 class 0x088000
(XEN) PCI add device 0000:7f:1d.1
[    9.972347] pci 0000:7f:1e.0: [8086:3458] type 00 class 0x088000
(XEN) PCI add device 0000:7f:1e.0
[    9.974325] pci 0000:7f:1e.1: [8086:3459] type 00 class 0x088000
(XEN) PCI add device 0000:7f:1e.1
[    9.976325] pci 0000:7f:1e.2: [8086:345a] type 00 class 0x088000
(XEN) PCI add device 0000:7f:1e.2
[    9.978325] pci 0000:7f:1e.3: [8086:345b] type 00 class 0x088000
(XEN) PCI add device 0000:7f:1e.3
[    9.980325] pci 0000:7f:1e.4: [8086:345c] type 00 class 0x088000
(XEN) PCI add device 0000:7f:1e.4
[    9.982325] pci 0000:7f:1e.5: [8086:345d] type 00 class 0x088000
(XEN) PCI add device 0000:7f:1e.5
[    9.984325] pci 0000:7f:1e.6: [8086:345e] type 00 class 0x088000
(XEN) PCI add device 0000:7f:1e.6
[    9.986325] pci 0000:7f:1e.7: [8086:345f] type 00 class 0x088000
(XEN) PCI add device 0000:7f:1e.7
[    9.988396] ACPI: PCI Root Bridge [PC06] (domain 0000 [bus 80-96])
[    9.989309] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.002546] acpi PNP0A08:06: _OSC: platform does not support [AER]
[   10.003641] acpi PNP0A08:06: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[   10.004461] PCI host bridge to bus 0000:80
[   10.005305] pci_bus 0000:80: root bus resource [io  0xb000-0xbfff window]
[   10.006304] pci_bus 0000:80: root bus resource [mem 0xc6800000-0xd0ffffff window]
[   10.007305] pci_bus 0000:80: root bus resource [mem 0x205000000000-0x205fffffffff window]
[   10.008305] pci_bus 0000:80: root bus resource [bus 80-96]
[   10.009338] pci 0000:80:00.0: [8086:09a2] type 00 class 0x088000
(XEN) PCI add device 0000:80:00.0
[   10.011337] pci 0000:80:00.1: [8086:09a4] type 00 class 0x088000
(XEN) PCI add device 0000:80:00.1
[   10.013336] pci 0000:80:00.2: [8086:09a3] type 00 class 0x088000
(XEN) PCI add device 0000:80:00.2
[   10.015341] pci 0000:80:00.4: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:80:00.4
[   10.017346] pci 0000:80:01.0: [8086:0b00] type 00 class 0x088000
[   10.018353] pci 0000:80:01.0: reg 0x10: [mem 0x205ffff40000-0x205ffff43fff 64bit]
(XEN) PCI add device 0000:80:01.0
[   10.020336] pci 0000:80:01.1: [8086:0b00] type 00 class 0x088000
[   10.021352] pci 0000:80:01.1: reg 0x10: [mem 0x205ffff3c000-0x205ffff3ffff 64bit]
(XEN) PCI add device 0000:80:01.1
[   10.023336] pci 0000:80:01.2: [8086:0b00] type 00 class 0x088000
[   10.024352] pci 0000:80:01.2: reg 0x10: [mem 0x205ffff38000-0x205ffff3bfff 64bit]
(XEN) PCI add device 0000:80:01.2
[   10.026336] pci 0000:80:01.3: [8086:0b00] type 00 class 0x088000
[   10.027352] pci 0000:80:01.3: reg 0x10: [mem 0x205ffff34000-0x205ffff37fff 64bit]
(XEN) PCI add device 0000:80:01.3
[   10.029336] pci 0000:80:01.4: [8086:0b00] type 00 class 0x088000
[   10.030352] pci 0000:80:01.4: reg 0x10: [mem 0x205ffff30000-0x205ffff33fff 64bit]
(XEN) PCI add device 0000:80:01.4
[   10.032336] pci 0000:80:01.5: [8086:0b00] type 00 class 0x088000
[   10.033352] pci 0000:80:01.5: reg 0x10: [mem 0x205ffff2c000-0x205ffff2ffff 64bit]
(XEN) PCI add device 0000:80:01.5
[   10.035336] pci 0000:80:01.6: [8086:0b00] type 00 class 0x088000
[   10.036352] pci 0000:80:01.6: reg 0x10: [mem 0x205ffff28000-0x205ffff2bfff 64bit]
(XEN) PCI add device 0000:80:01.6
[   10.038336] pci 0000:80:01.7: [8086:0b00] type 00 class 0x088000
[   10.039352] pci 0000:80:01.7: reg 0x10: [mem 0x205ffff24000-0x205ffff27fff 64bit]
(XEN) PCI add device 0000:80:01.7
[   10.041330] pci 0000:80:02.0: [8086:09a6] type 00 class 0x088000
[   10.042344] pci 0000:80:02.0: reg 0x10: [mem 0xc6980000-0xc6981fff]
(XEN) PCI add device 0000:80:02.0
[   10.044330] pci 0000:80:02.1: [8086:09a7] type 00 class 0x088000
[   10.045344] pci 0000:80:02.1: reg 0x10: [mem 0xc6900000-0xc697ffff]
[   10.046327] pci 0000:80:02.1: reg 0x14: [mem 0xc6880000-0xc68fffff]
(XEN) PCI add device 0000:80:02.1
[   10.048330] pci 0000:80:02.2: [8086:09a8] type 00 class 0x088000
[   10.049344] pci 0000:80:02.2: reg 0x10: [mem 0xc6800000-0xc687ffff]
(XEN) PCI add device 0000:80:02.2
[   10.051340] pci 0000:80:02.4: [8086:3456] type 00 class 0x130000
[   10.052354] pci 0000:80:02.4: reg 0x10: [mem 0x205fffe00000-0x205fffefffff 64bit]
[   10.053334] pci 0000:80:02.4: reg 0x18: [mem 0x205ffff20000-0x205ffff23fff 64bit]
[   10.054334] pci 0000:80:02.4: reg 0x20: [mem 0x205ffff00000-0x205ffff1ffff 64bit]
(XEN) PCI add device 0000:80:02.4
[   10.056479] ACPI: PCI Root Bridge [PC07] (domain 0000 [bus 97-af])
[   10.057306] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.070668] acpi PNP0A08:07: _OSC: platform does not support [AER]
[   10.071821] acpi PNP0A08:07: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[   10.072423] PCI host bridge to bus 0000:97
[   10.073305] pci_bus 0000:97: root bus resource [io  0xc000-0xcfff window]
[   10.074305] pci_bus 0000:97: root bus resource [mem 0xd1000000-0xdbbfffff window]
[   10.075305] pci_bus 0000:97: root bus resource [mem 0x206000000000-0x206fffffffff window]
[   10.076305] pci_bus 0000:97: root bus resource [bus 97-af]
[   10.077338] pci 0000:97:00.0: [8086:09a2] type 00 class 0x088000
(XEN) PCI add device 0000:97:00.0
[   10.079337] pci 0000:97:00.1: [8086:09a4] type 00 class 0x088000
(XEN) PCI add device 0000:97:00.1
[   10.081337] pci 0000:97:00.2: [8086:09a3] type 00 class 0x088000
(XEN) PCI add device 0000:97:00.2
[   10.083340] pci 0000:97:00.4: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:97:00.4
[   10.085512] ACPI: PCI Root Bridge [PC08] (domain 0000 [bus b0-c8])
[   10.086306] acpi PNP0A08:08: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.099965] acpi PNP0A08:08: _OSC: platform does not support [AER]
[   10.100810] acpi PNP0A08:08: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[   10.101430] PCI host bridge to bus 0000:b0
[   10.102305] pci_bus 0000:b0: root bus resource [io  0xd000-0xdfff window]
[   10.103305] pci_bus 0000:b0: root bus resource [mem 0xdbc00000-0xe67fffff window]
[   10.104305] pci_bus 0000:b0: root bus resource [mem 0x207000000000-0x207fffffffff window]
[   10.105305] pci_bus 0000:b0: root bus resource [bus b0-c8]
[   10.106339] pci 0000:b0:00.0: [8086:09a2] type 00 class 0x088000
(XEN) PCI add device 0000:b0:00.0
[   10.108337] pci 0000:b0:00.1: [8086:09a4] type 00 class 0x088000
(XEN) PCI add device 0000:b0:00.1
[   10.110338] pci 0000:b0:00.2: [8086:09a3] type 00 class 0x088000
(XEN) PCI add device 0000:b0:00.2
[   10.112340] pci 0000:b0:00.4: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:b0:00.4
[   10.114355] pci 0000:b0:02.0: [8086:347a] type 01 class 0x060400
[   10.115359] pci 0000:b0:02.0: reg 0x10: [mem 0x207fffb00000-0x207fffb1ffff 64bit]
[   10.116522] pci 0000:b0:02.0: PME# supported from D0 D3hot D3cold
(XEN) PCI add device 0000:b0:02.0
[   10.118673] acpiphp: Slot [9] registered
[   10.119401] pci 0000:b1:00.0: [8086:1572] type 00 class 0x020000
[   10.120361] pci 0000:b1:00.0: reg 0x10: [mem 0x207ffe800000-0x207ffeffffff 64bit pref]
[   10.121357] pci 0000:b1:00.0: reg 0x1c: [mem 0x207fff808000-0x207fff80ffff 64bit pref]
[   10.122344] pci 0000:b1:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.123516] pci 0000:b1:00.0: PME# supported from D0 D3hot D3cold
[   10.124435] pci 0000:b1:00.0: reg 0x184: [mem 0x207fff400000-0x207fff40ffff 64bit pref]
[   10.125305] pci 0000:b1:00.0: VF(n) BAR0 space: [mem 0x207fff400000-0x207fff7fffff 64bit pref] (contains BAR0 for 64 VFs)
[   10.126332] pci 0000:b1:00.0: reg 0x190: [mem 0x207fff910000-0x207fff913fff 64bit pref]
[   10.127305] pci 0000:b1:00.0: VF(n) BAR3 space: [mem 0x207fff910000-0x207fffa0ffff 64bit pref] (contains BAR3 for 64 VFs)
(XEN) PCI add device 0000:b1:00.0
[   10.129361] pci 0000:b1:00.1: [8086:1572] type 00 class 0x020000
[   10.130361] pci 0000:b1:00.1: reg 0x10: [mem 0x207ffe000000-0x207ffe7fffff 64bit pref]
[   10.131357] pci 0000:b1:00.1: reg 0x1c: [mem 0x207fff800000-0x207fff807fff 64bit pref]
[   10.132344] pci 0000:b1:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.133513] pci 0000:b1:00.1: PME# supported from D0 D3hot D3cold
[   10.134372] pci 0000:b1:00.1: reg 0x184: [mem 0x207fff000000-0x207fff00ffff 64bit pref]
[   10.135305] pci 0000:b1:00.1: VF(n) BAR0 space: [mem 0x207fff000000-0x207fff3fffff 64bit pref] (contains BAR0 for 64 VFs)
[   10.136332] pci 0000:b1:00.1: reg 0x190: [mem 0x207fff810000-0x207fff813fff 64bit pref]
[   10.137305] pci 0000:b1:00.1: VF(n) BAR3 space: [mem 0x207fff810000-0x207fff90ffff 64bit pref] (contains BAR3 for 64 VFs)
(XEN) PCI add device 0000:b1:00.1
[   10.139442] pci 0000:b0:02.0: PCI bridge to [bus b1-b2]
[   10.140330] pci 0000:b0:02.0:   bridge window [mem 0x207ffe000000-0x207fffafffff 64bit pref]
[   10.141462] ACPI: PCI Root Bridge [PC10] (domain 0000 [bus c9-e1])
[   10.142306] acpi PNP0A08:0a: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.156007] acpi PNP0A08:0a: _OSC: platform does not support [AER]
[   10.156817] acpi PNP0A08:0a: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[   10.157429] PCI host bridge to bus 0000:c9
[   10.158305] pci_bus 0000:c9: root bus resource [io  0xe000-0xefff window]
[   10.159305] pci_bus 0000:c9: root bus resource [mem 0xe6800000-0xf13fffff window]
[   10.160305] pci_bus 0000:c9: root bus resource [mem 0x208000000000-0x208fffffffff window]
[   10.161305] pci_bus 0000:c9: root bus resource [bus c9-e1]
[   10.162338] pci 0000:c9:00.0: [8086:09a2] type 00 class 0x088000
(XEN) PCI add device 0000:c9:00.0
[   10.164337] pci 0000:c9:00.1: [8086:09a4] type 00 class 0x088000
(XEN) PCI add device 0000:c9:00.1
[   10.166337] pci 0000:c9:00.2: [8086:09a3] type 00 class 0x088000
(XEN) PCI add device 0000:c9:00.2
[   10.168343] pci 0000:c9:00.4: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:c9:00.4
[   10.170355] pci 0000:c9:02.0: [8086:347a] type 01 class 0x060400
[   10.171358] pci 0000:c9:02.0: reg 0x10: [mem 0x208ffff00000-0x208ffff1ffff 64bit]
[   10.172378] pci 0000:c9:02.0: enabling Extended Tags
[   10.173442] pci 0000:c9:02.0: PME# supported from D0 D3hot D3cold
(XEN) PCI add device 0000:c9:02.0
[   10.175667] acpiphp: Slot [8] registered
[   10.176422] pci 0000:ca:00.0: working around ROM BAR overlap defect
[   10.177305] pci 0000:ca:00.0: [8086:1533] type 00 class 0x020000
[   10.178363] pci 0000:ca:00.0: reg 0x10: [mem 0xe6800000-0xe68fffff]
[   10.179379] pci 0000:ca:00.0: reg 0x1c: [mem 0xe6900000-0xe6903fff]
[   10.180380] pci 0000:ca:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
[   10.181555] pci 0000:ca:00.0: PME# supported from D0 D3hot D3cold
(XEN) PCI add device 0000:ca:00.0
[   10.183424] pci 0000:c9:02.0: PCI bridge to [bus ca]
[   10.184318] pci 0000:c9:02.0:   bridge window [mem 0xe6800000-0xe69fffff]
[   10.185445] ACPI: PCI Root Bridge [PC11] (domain 0000 [bus e2-fa])
[   10.186306] acpi PNP0A08:0b: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.199660] acpi PNP0A08:0b: _OSC: platform does not support [AER]
[   10.200816] acpi PNP0A08:0b: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR]
[   10.201425] PCI host bridge to bus 0000:e2
[   10.202305] pci_bus 0000:e2: root bus resource [io  0xf000-0xffff window]
[   10.203305] pci_bus 0000:e2: root bus resource [mem 0xf1400000-0xfb7fffff window]
[   10.204304] pci_bus 0000:e2: root bus resource [mem 0x209000000000-0x209fffffffff window]
[   10.205305] pci_bus 0000:e2: root bus resource [bus e2-fa]
[   10.206338] pci 0000:e2:00.0: [8086:09a2] type 00 class 0x088000
(XEN) PCI add device 0000:e2:00.0
[   10.208337] pci 0000:e2:00.1: [8086:09a4] type 00 class 0x088000
(XEN) PCI add device 0000:e2:00.1
[   10.210337] pci 0000:e2:00.2: [8086:09a3] type 00 class 0x088000
(XEN) PCI add device 0000:e2:00.2
[   10.212340] pci 0000:e2:00.4: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:e2:00.4
[   10.214503] ACPI: PCI Root Bridge [UC16] (domain 0000 [bus fe])
[   10.215306] acpi PNP0A03:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.216418] acpi PNP0A03:02: _OSC: platform does not support [AER LTR]
[   10.217506] acpi PNP0A03:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[   10.218439] PCI host bridge to bus 0000:fe
[   10.219305] pci_bus 0000:fe: root bus resource [bus fe]
[   10.220337] pci 0000:fe:00.0: [8086:3450] type 00 class 0x088000
(XEN) PCI add device 0000:fe:00.0
[   10.222336] pci 0000:fe:00.1: [8086:3451] type 00 class 0x088000
(XEN) PCI add device 0000:fe:00.1
[   10.224336] pci 0000:fe:00.2: [8086:3452] type 00 class 0x088000
(XEN) PCI add device 0000:fe:00.2
[   10.226336] pci 0000:fe:00.3: [8086:0998] type 00 class 0x060000
(XEN) PCI add device 0000:fe:00.3
[   10.228338] pci 0000:fe:00.5: [8086:3455] type 00 class 0x088000
(XEN) PCI add device 0000:fe:00.5
[   10.230352] pci 0000:fe:02.0: [8086:3440] type 00 class 0x088000
(XEN) PCI add device 0000:fe:02.0
[   10.232342] pci 0000:fe:02.1: [8086:3441] type 00 class 0x088000
(XEN) PCI add device 0000:fe:02.1
[   10.234342] pci 0000:fe:02.2: [8086:3442] type 00 class 0x088000
(XEN) PCI add device 0000:fe:02.2
[   10.236355] pci 0000:fe:03.0: [8086:3440] type 00 class 0x088000
(XEN) PCI add device 0000:fe:03.0
[   10.238338] pci 0000:fe:03.1: [8086:3441] type 00 class 0x088000
(XEN) PCI add device 0000:fe:03.1
[   10.240338] pci 0000:fe:03.2: [8086:3442] type 00 class 0x088000
(XEN) PCI add device 0000:fe:03.2
[   10.242360] pci 0000:fe:04.0: [8086:3440] type 00 class 0x088000
(XEN) PCI add device 0000:fe:04.0
[   10.244346] pci 0000:fe:04.1: [8086:3441] type 00 class 0x088000
(XEN) PCI add device 0000:fe:04.1
[   10.246343] pci 0000:fe:04.2: [8086:3442] type 00 class 0x088000
(XEN) PCI add device 0000:fe:04.2
[   10.248348] pci 0000:fe:04.3: [8086:3443] type 00 class 0x088000
(XEN) PCI add device 0000:fe:04.3
[   10.250357] pci 0000:fe:05.0: [8086:3445] type 00 class 0x088000
(XEN) PCI add device 0000:fe:05.0
[   10.252342] pci 0000:fe:05.1: [8086:3446] type 00 class 0x088000
(XEN) PCI add device 0000:fe:05.1
[   10.254344] pci 0000:fe:05.2: [8086:3447] type 00 class 0x088000
(XEN) PCI add device 0000:fe:05.2
[   10.256355] pci 0000:fe:06.0: [8086:3445] type 00 class 0x088000
(XEN) PCI add device 0000:fe:06.0
[   10.258338] pci 0000:fe:06.1: [8086:3446] type 00 class 0x088000
(XEN) PCI add device 0000:fe:06.1
[   10.260338] pci 0000:fe:06.2: [8086:3447] type 00 class 0x088000
(XEN) PCI add device 0000:fe:06.2
[   10.262360] pci 0000:fe:07.0: [8086:3445] type 00 class 0x088000
(XEN) PCI add device 0000:fe:07.0
[   10.264343] pci 0000:fe:07.1: [8086:3446] type 00 class 0x088000
(XEN) PCI add device 0000:fe:07.1
[   10.266343] pci 0000:fe:07.2: [8086:3447] type 00 class 0x088000
(XEN) PCI add device 0000:fe:07.2
[   10.268351] pci 0000:fe:0b.0: [8086:3448] type 00 class 0x088000
(XEN) PCI add device 0000:fe:0b.0
[   10.270325] pci 0000:fe:0b.1: [8086:3448] type 00 class 0x088000
(XEN) PCI add device 0000:fe:0b.1
[   10.272324] pci 0000:fe:0b.2: [8086:344b] type 00 class 0x088000
(XEN) PCI add device 0000:fe:0b.2
[   10.274300] pci 0000:fe:0c.0: [8086:344a] type 00 class 0x110100
(XEN) PCI add device 0000:fe:0c.0
[   10.285364] pci 0000:fe:0d.0: [8086:344a] type 00 class 0x110100
(XEN) PCI add device 0000:fe:0d.0
[   10.294368] pci 0000:fe:0e.0: [8086:344a] type 00 class 0x110100
(XEN) PCI add device 0000:fe:0e.0
[   10.303370] pci 0000:fe:0f.0: [8086:344a] type 00 class 0x110100
(XEN) PCI add device 0000:fe:0f.0
[   10.312397] pci 0000:fe:1a.0: [8086:2880] type 00 class 0x110100
(XEN) PCI add device 0000:fe:1a.0
[   10.321362] pci 0000:fe:1b.0: [8086:2880] type 00 class 0x110100
(XEN) PCI add device 0000:fe:1b.0
[   10.330370] pci 0000:fe:1c.0: [8086:2880] type 00 class 0x110100
(XEN) PCI add device 0000:fe:1c.0
[   10.340371] pci 0000:fe:1d.0: [8086:2880] type 00 class 0x110100
(XEN) PCI add device 0000:fe:1d.0
[   10.349412] ACPI: PCI Root Bridge [UC17] (domain 0000 [bus ff])
[   10.355307] acpi PNP0A03:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.364429] acpi PNP0A03:03: _OSC: platform does not support [AER LTR]
[   10.370511] acpi PNP0A03:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[   10.378462] PCI host bridge to bus 0000:ff
[   10.382305] pci_bus 0000:ff: root bus resource [bus ff]
[   10.387343] pci 0000:ff:00.0: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:00.0
[   10.396341] pci 0000:ff:00.1: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:00.1
[   10.406343] pci 0000:ff:00.2: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:00.2
[   10.415340] pci 0000:ff:00.3: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:00.3
[   10.424343] pci 0000:ff:00.4: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:00.4
[   10.433340] pci 0000:ff:00.5: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:00.5
[   10.442345] pci 0000:ff:00.6: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:00.6
[   10.451338] pci 0000:ff:00.7: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:00.7
[   10.460340] pci 0000:ff:01.0: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:01.0
[   10.469344] pci 0000:ff:01.1: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:01.1
[   10.479338] pci 0000:ff:01.2: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:01.2
[   10.488345] pci 0000:ff:01.3: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:01.3
[   10.497343] pci 0000:ff:01.4: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:01.4
[   10.506344] pci 0000:ff:01.5: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:01.5
[   10.514349] pci 0000:ff:01.6: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:01.6
[   10.524344] pci 0000:ff:01.7: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:01.7
[   10.533346] pci 0000:ff:02.0: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:02.0
[   10.542344] pci 0000:ff:02.1: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:02.1
[   10.551345] pci 0000:ff:02.2: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:02.2
[   10.560345] pci 0000:ff:02.3: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:02.3
[   10.569346] pci 0000:ff:02.4: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:02.4
[   10.579346] pci 0000:ff:02.5: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:02.5
[   10.588346] pci 0000:ff:02.6: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:02.6
[   10.597346] pci 0000:ff:02.7: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:02.7
[   10.606341] pci 0000:ff:03.0: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:03.0
[   10.615343] pci 0000:ff:03.1: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:03.1
[   10.624346] pci 0000:ff:03.2: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:03.2
[   10.633348] pci 0000:ff:03.3: [8086:344c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:03.3
[   10.643374] pci 0000:ff:0a.0: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0a.0
[   10.652341] pci 0000:ff:0a.1: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0a.1
[   10.661343] pci 0000:ff:0a.2: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0a.2
[   10.670340] pci 0000:ff:0a.3: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0a.3
[   10.679344] pci 0000:ff:0a.4: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0a.4
[   10.688340] pci 0000:ff:0a.5: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0a.5
[   10.697345] pci 0000:ff:0a.6: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0a.6
[   10.707338] pci 0000:ff:0a.7: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0a.7
[   10.716339] pci 0000:ff:0b.0: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0b.0
[   10.725345] pci 0000:ff:0b.1: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0b.1
[   10.734338] pci 0000:ff:0b.2: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0b.2
[   10.743346] pci 0000:ff:0b.3: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0b.3
[   10.752344] pci 0000:ff:0b.4: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0b.4
[   10.761344] pci 0000:ff:0b.5: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0b.5
[   10.770344] pci 0000:ff:0b.6: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0b.6
[   10.780345] pci 0000:ff:0b.7: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0b.7
[   10.789345] pci 0000:ff:0c.0: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0c.0
[   10.798344] pci 0000:ff:0c.1: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0c.1
[   10.807345] pci 0000:ff:0c.2: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0c.2
[   10.816345] pci 0000:ff:0c.3: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0c.3
[   10.825348] pci 0000:ff:0c.4: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0c.4
[   10.834346] pci 0000:ff:0c.5: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0c.5
[   10.844347] pci 0000:ff:0c.6: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0c.6
[   10.853346] pci 0000:ff:0c.7: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0c.7
[   10.862341] pci 0000:ff:0d.0: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0d.0
[   10.871343] pci 0000:ff:0d.1: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0d.1
[   10.880352] pci 0000:ff:0d.2: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0d.2
[   10.889350] pci 0000:ff:0d.3: [8086:344d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:0d.3
[   10.899413] pci 0000:ff:1d.0: [8086:344f] type 00 class 0x088000
(XEN) PCI add device 0000:ff:1d.0
[   10.908343] pci 0000:ff:1d.1: [8086:3457] type 00 class 0x088000
(XEN) PCI add device 0000:ff:1d.1
[   10.917348] pci 0000:ff:1e.0: [8086:3458] type 00 class 0x088000
(XEN) PCI add device 0000:ff:1e.0
[   10.926326] pci 0000:ff:1e.1: [8086:3459] type 00 class 0x088000
(XEN) PCI add device 0000:ff:1e.1
[   10.935326] pci 0000:ff:1e.2: [8086:345a] type 00 class 0x088000
(XEN) PCI add device 0000:ff:1e.2
[   10.944327] pci 0000:ff:1e.3: [8086:345b] type 00 class 0x088000
(XEN) PCI add device 0000:ff:1e.3
[   10.953326] pci 0000:ff:1e.4: [8086:345c] type 00 class 0x088000
(XEN) PCI add device 0000:ff:1e.4
[   10.962325] pci 0000:ff:1e.5: [8086:345d] type 00 class 0x088000
(XEN) PCI add device 0000:ff:1e.5
[   10.971326] pci 0000:ff:1e.6: [8086:345e] type 00 class 0x088000
(XEN) PCI add device 0000:ff:1e.6
[   10.980326] pci 0000:ff:1e.7: [8086:345f] type 00 class 0x088000
(XEN) PCI add device 0000:ff:1e.7
[   10.990057] xen:balloon: Initialising balloon driver
[   11.721530] iommu: Default domain type: Translated 
[   11.726309] iommu: DMA domain TLB invalidation policy: lazy mode 
[   11.732392] SCSI subsystem initialized
[   11.735321] ACPI: bus type USB registered
[   11.740318] usbcore: registered new interface driver usbfs
[   11.745310] usbcore: registered new interface driver hub
[   11.750310] usbcore: registered new device driver usb
[   11.756333] EDAC MC: Ver: 3.0.0
[   11.761506] Registered efivars operations
[   11.765459] NetLabel: Initializing
[   11.768306] NetLabel:  domain hash size = 128
[   11.773305] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[   11.778318] NetLabel:  unlabeled traffic allowed by default
[   11.784305] PCI: Using ACPI for IRQ routing
[   11.814330] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[   11.815300] pci 0000:03:00.0: vgaarb: bridge control possible
[   11.815300] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[   11.834339] vgaarb: loaded
[   11.837446] clocksource: Switched to clocksource tsc-early
[   11.842762] VFS: Disk quotas dquot_6.6.0
[   11.846647] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[   11.853581] hugetlbfs: disabling because there are no supported hugepage sizes
[   11.860858] pnp: PnP ACPI init
[   11.876923] system 00:01: [io  0x0500-0x05fe] has been reserved
[   11.882693] system 00:01: [io  0x0400-0x041f] has been reserved
[   11.888669] system 00:01: [io  0x0600-0x061f] has been reserved
[   11.894648] system 00:01: [io  0x0ca0-0x0ca1] has been reserved
[   11.900628] system 00:01: [io  0x0ca4-0x0ca6] has been reserved
[   11.906608] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[   11.913638] Already setup the GSI :4
[   11.917634] system 00:04: [mem 0xfd000000-0xfdabffff] has been reserved
[   11.924088] system 00:04: [mem 0xfdad0000-0xfdadffff] has been reserved
[   11.930759] system 00:04: [mem 0xfdb00000-0xfdffffff] has been reserved
[   11.937433] system 00:04: [mem 0xfe000000-0xfe00ffff] has been reserved
[   11.944105] system 00:04: [mem 0xfe011000-0xfe01ffff] has been reserved
[   11.950777] system 00:04: [mem 0xfe036000-0xfe03bfff] has been reserved
[   11.957450] system 00:04: [mem 0xfe03d000-0xfe3fffff] has been reserved
[   11.964123] system 00:04: [mem 0xfe410000-0xfe7fffff] has been reserved
[   11.971239] system 00:05: [io  0x1000-0x10fe] has been reserved
[   11.977882] pnp: PnP ACPI: found 6 devices
[   11.999828] PM-Timer failed consistency check  (0xffffff) - aborting.
[   12.006159] NET: Registered PF_INET protocol family
[   12.011259] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[   12.021943] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[   12.030678] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[   12.038519] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[   12.047113] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[   12.054480] TCP: Hash tables configured (established 524288 bind 65536)
[   12.061094] UDP hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[   12.068308] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[   12.075859] NET: Registered PF_UNIX/PF_LOCAL protocol family
[   12.081372] pci 0000:17:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[   12.091338] pci 0000:17:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[   12.101304] pci 0000:b1:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[   12.111261] pci 0000:b1:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[   12.121232] pci 0000:ca:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
[   12.131213] pci 0000:00:1c.0: PCI bridge to [bus 01]
[   12.136234] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[   12.142397] pci 0000:00:1c.0:   bridge window [mem 0x92100000-0x921fffff]
[   12.149252] pci 0000:02:00.0: PCI bridge to [bus 03]
[   12.154258] pci 0000:02:00.0:   bridge window [io  0x2000-0x2fff]
[   12.160424] pci 0000:02:00.0:   bridge window [mem 0x91000000-0x920fffff]
[   12.167277] pci 0000:00:1c.5: PCI bridge to [bus 02-03]
[   12.172547] pci 0000:00:1c.5:   bridge window [io  0x2000-0x2fff]
[   12.178696] pci 0000:00:1c.5:   bridge window [mem 0x91000000-0x920fffff]
[   12.185554] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[   12.191775] pci_bus 0000:00: resource 5 [io  0x1000-0x4fff window]
[   12.198015] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[   12.204948] pci_bus 0000:00: resource 7 [mem 0x000c8000-0x000cffff window]
[   12.211880] pci_bus 0000:00: resource 8 [mem 0xfe010000-0xfe010fff window]
[   12.218805] pci_bus 0000:00: resource 9 [mem 0x90000000-0x9b7fffff window]
[   12.225746] pci_bus 0000:00: resource 10 [mem 0x200000000000-0x200fffffffff window]
[   12.233451] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[   12.239081] pci_bus 0000:01: resource 1 [mem 0x92100000-0x921fffff]
[   12.245410] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[   12.251047] pci_bus 0000:02: resource 1 [mem 0x91000000-0x920fffff]
[   12.257369] pci_bus 0000:03: resource 0 [io  0x2000-0x2fff]
[   12.263002] pci_bus 0000:03: resource 1 [mem 0x91000000-0x920fffff]
[   12.269432] pci 0000:17:00.0: BAR 6: no space for [mem size 0x00080000 pref]
[   12.276451] pci 0000:17:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
[   12.283895] pci 0000:17:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[   12.290992] pci 0000:17:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[   12.298453] pci 0000:16:02.0: PCI bridge to [bus 17-18]
[   12.303749] pci 0000:16:02.0:   bridge window [mem 0x9b800000-0x9bbfffff]
[   12.310589] pci 0000:16:02.0:   bridge window [mem 0x201fff400000-0x201fffcfffff 64bit pref]
[   12.319084] pci_bus 0000:16: resource 4 [io  0x5000-0x6fff window]
[   12.325316] pci_bus 0000:16: resource 5 [mem 0x9b800000-0xa63fffff window]
[   12.332250] pci_bus 0000:16: resource 6 [mem 0x201000000000-0x201fffffffff window]
[   12.339875] pci_bus 0000:17: resource 1 [mem 0x9b800000-0x9bbfffff]
[   12.346199] pci_bus 0000:17: resource 2 [mem 0x201fff400000-0x201fffcfffff 64bit pref]
[   12.354285] pci_bus 0000:30: resource 4 [io  0x7000-0x8fff window]
[   12.360421] pci_bus 0000:30: resource 5 [mem 0xa6400000-0xb0ffffff window]
[   12.367341] pci_bus 0000:30: resource 6 [mem 0x202000000000-0x202fffffffff window]
[   12.374985] pci_bus 0000:4a: resource 4 [io  0x9000-0x9fff window]
[   12.381205] pci_bus 0000:4a: resource 5 [mem 0xb1000000-0xbbbfffff window]
[   12.388141] pci_bus 0000:4a: resource 6 [mem 0x203000000000-0x203fffffffff window]
[   12.395782] pci_bus 0000:64: resource 4 [io  0xa000-0xafff window]
[   12.402003] pci_bus 0000:64: resource 5 [mem 0xbbc00000-0xc5ffffff window]
[   12.408937] pci_bus 0000:64: resource 6 [mem 0x204000000000-0x204fffffffff window]
[   12.416606] pci_bus 0000:80: resource 4 [io  0xb000-0xbfff window]
[   12.422801] pci_bus 0000:80: resource 5 [mem 0xc6800000-0xd0ffffff window]
[   12.429735] pci_bus 0000:80: resource 6 [mem 0x205000000000-0x205fffffffff window]
[   12.437367] pci_bus 0000:97: resource 4 [io  0xc000-0xcfff window]
[   12.443599] pci_bus 0000:97: resource 5 [mem 0xd1000000-0xdbbfffff window]
[   12.450533] pci_bus 0000:97: resource 6 [mem 0x206000000000-0x206fffffffff window]
[   12.458181] pci 0000:b0:02.0: BAR 14: assigned [mem 0xdbc00000-0xdbcfffff]
[   12.465092] pci 0000:b1:00.0: BAR 6: assigned [mem 0xdbc00000-0xdbc7ffff pref]
[   12.472372] pci 0000:b1:00.1: BAR 6: assigned [mem 0xdbc80000-0xdbcfffff pref]
[   12.479652] pci 0000:b0:02.0: PCI bridge to [bus b1-b2]
[   12.484948] pci 0000:b0:02.0:   bridge window [mem 0xdbc00000-0xdbcfffff]
[   12.491790] pci 0000:b0:02.0:   bridge window [mem 0x207ffe000000-0x207fffafffff 64bit pref]
[   12.500290] pci_bus 0000:b0: resource 4 [io  0xd000-0xdfff window]
[   12.506514] pci_bus 0000:b0: resource 5 [mem 0xdbc00000-0xe67fffff window]
[   12.513449] pci_bus 0000:b0: resource 6 [mem 0x207000000000-0x207fffffffff window]
[   12.521075] pci_bus 0000:b1: resource 1 [mem 0xdbc00000-0xdbcfffff]
[   12.527401] pci_bus 0000:b1: resource 2 [mem 0x207ffe000000-0x207fffafffff 64bit pref]
[   12.535392] pci 0000:ca:00.0: BAR 6: no space for [mem size 0x00100000 pref]
[   12.542480] pci 0000:ca:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
[   12.549931] pci 0000:c9:02.0: PCI bridge to [bus ca]
[   12.554968] pci 0000:c9:02.0:   bridge window [mem 0xe6800000-0xe69fffff]
[   12.561824] pci_bus 0000:c9: resource 4 [io  0xe000-0xefff window]
[   12.568044] pci_bus 0000:c9: resource 5 [mem 0xe6800000-0xf13fffff window]
[   12.574976] pci_bus 0000:c9: resource 6 [mem 0x208000000000-0x208fffffffff window]
[   12.582603] pci_bus 0000:ca: resource 1 [mem 0xe6800000-0xe69fffff]
[   12.588944] pci_bus 0000:e2: resource 4 [io  0xf000-0xffff window]
[   12.595171] pci_bus 0000:e2: resource 5 [mem 0xf1400000-0xfb7fffff window]
[   12.602101] pci_bus 0000:e2: resource 6 [mem 0x209000000000-0x209fffffffff window]
[   12.610288] pci 0000:17:00.0: CLS mismatch (128 != 32), using 64 bytes
[   12.616824] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[   12.616875] T(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x00000639 unimplemented
rying to unpack (XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x00000611 unimplemented
rootfs image as (XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x00000619 unimplemented
initramfs...
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x00000606 unimplemented
[   12.623159] s(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x0000064e unimplemented
oftware IO TLB: (XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x00000034 unimplemented
mapped [mem 0x0000000289a00000-0x000000028da00000] (64MB)
[   12.670396] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x228374dae5d, max_idle_ns: 440795268352 ns
[   12.685881] clocksource: Switched to clocksource tsc
[   12.716290] Initialise system trusted keyrings
[   12.720706] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[   12.728256] zbud: loaded
[   12.743159] NET: Registered PF_ALG protocol family
[   12.747800] Key type asymmetric registered
[   12.751955] Asymmetric key parser 'x509' registered
[   12.756908] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[   12.764425] io scheduler mq-deadline registered
[   12.768942] io scheduler kyber registered
[   12.774377] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[   12.781570] Already setup the GSI :16
[   12.785312] pcieport 0000:00:1c.0: PME: Signaling with IRQ 178
[   12.791436] pcieport 0000:00:1c.5: PME: Signaling with IRQ 179
[   12.797468] pcieport 0000:16:02.0: PME: Signaling with IRQ 180
[   12.803316] Already setup the GSI :18
[   12.806990] pcieport 0000:b0:02.0: PME: Signaling with IRQ 181
[   12.812925] Already setup the GSI :18
[   12.816610] pcieport 0000:c9:02.0: PME: Signaling with IRQ 182
[   12.822881] ACPI: \_SB_.SCK0.C000: Found 2 idle states
[   12.828295] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[   12.835592] ACPI: button: Power Button [PWRF]
[   12.840174] ACPI: \_SB_.SCK0.C000: Found 2 idle states
[   12.845366] ACPI: \_SB_.SCK0.C001: Found 2 idle states
[   12.850666] ACPI: \_SB_.SCK0.C002: Found 2 idle states
[   12.855912] ACPI: \_SB_.SCK0.C003: Found 2 idle states
[   12.880537] ACPI: \_SB_.SCK0.C004: Found 2 idle states
[   12.889531] ACPI: \_SB_.SCK0.C005: Found 2 idle states
[   12.894828] ACPI: \_SB_.SCK0.C006: Found 2 idle states
[   12.900044] ACPI: \_SB_.SCK0.C007: Found 2 idle states
[   12.905881] ERST: Error Record Serialization Table (ERST) support is initialized.
[   12.913201] pstore: Registered erst as persistent store backend
[   12.919491] xen:xen_evtchn: Event-channel device installed
[   12.924902] xen_pciback: backend is vpci
[   12.929285] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[   12.935571] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
(XEN) d0: Forcing read-only access to MFN fed00
[   12.947468] hpet_acpi_add: no address or irqs in _CRS
[   12.952660] Non-volatile memory driver v1.3
[   12.956816] Linux agpgart interface v0.103
[   12.965603] tpm_tis IFX0740:00: 2.0 TPM (device-id 0x1B, rev-id 16)
[   12.975508] tpm tpm0: [Firmware Bug]: TPM interrupt not working, polling instead
[   13.007669] rdac: device handler registered
[   13.011781] hp_sw: device handler registered
[   13.016031] emc: device handler registered
[   13.020299] alua: device handler registered
[   13.024587] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   13.031027] ehci-pci: EHCI PCI platform driver
[   13.035563] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   13.041773] ohci-pci: OHCI PCI platform driver
[   13.046301] uhci_hcd: USB Universal Host Controller Interface driver
[   13.052816] Already setup the GSI :16
[   13.056518] xhci_hcd 0000:00:14.0: xHCI Host Controller
[   13.061755] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[   13.070252] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
[   13.079653] xhci_hcd 0000:00:14.0: xHCI Host Controller
[   13.084763] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[   13.092176] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[   13.098649] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[   13.106817] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   13.114095] usb usb1: Product: xHCI Host Controller
[   13.119032] usb usb1: Manufacturer: Linux 5.19.0-rc6 xhci-hcd
[   13.124839] usb usb1: SerialNumber: 0000:00:14.0
[   13.129673] hub 1-0:1.0: USB hub found
[   13.133384] hub 1-0:1.0: 16 ports detected
[   13.140524] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[   13.143157] Freeing initrd memory: 28304K
[   13.148629] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   13.159988] usb usb2: Product: xHCI Host Controller
[   13.164917] usb usb2: Manufacturer: Linux 5.19.0-rc6 xhci-hcd
[   13.170726] usb usb2: SerialNumber: 0000:00:14.0
[   13.175547] hub 2-0:1.0: USB hub found
[   13.179254] hub 2-0:1.0: 10 ports detected
[   13.184483] usb: port power management may be unreliable
[   13.190445] usbcore: registered new interface driver usbserial_generic
[   13.196817] usbserial: USB Serial support registered for generic
[   13.202888] i8042: PNP: No PS/2 controller found.
[   13.207690] mousedev: PS/2 mouse device common for all mice
[   13.213378] rtc_cmos 00:00: RTC can wake from S4
[   13.218603] rtc_cmos 00:00: registered as rtc0
[   13.223010] rtc_cmos 00:00: setting system clock to 2022-07-21T05:53:32 UTC (1658382812)
[   13.231052] rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram
[   13.237807] intel_pstate: CPU model not supported
[   13.243340] efifb: probing for efifb
[   13.247853] efifb: framebuffer at 0x91000000, using 3072k, total 3072k
[   13.254221] efifb: mode is 1024x768x32, linelength=4096, pages=1
[   13.260288] efifb: scrolling: redraw
[   13.263927] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[   13.278057] Console: switching to colour frame buffer device 128x48
[   13.292326] fb0: EFI VGA frame buffer device
[   13.296636] EFI Variables Facility v0.08 2004-May-17
[   13.302705] hid: raw HID events driver (C) Jiri Kosina
[   13.307851] usbcore: registered new interface driver usbhid
[   13.313406] usbhid: USB HID core driver
[   13.317329] drop_monitor: Initializing network drop monitor service
[   13.323709] Initializing XFRM netlink socket
[   13.328035] NET: Registered PF_INET6 protocol family
[   13.333609] Segment Routing with IPv6
[   13.337190] In-situ OAM (IOAM) with IPv6
[   13.341191] NET: Registered PF_PACKET protocol family
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0xc0011020 unimplemented
[   13.353475] IPI shorthand broadcast: enabled
[   13.357677] sched_clock: Marking stable (11095504447, 2262080120)->(15811866404, -2454281837)
[   13.367006] registered taskstats version 1
[   13.371026] Loading compiled-in X.509 certificates
[   13.383343] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[   13.433880] Loaded X.509 cert 'Build time autogenerated kernel key: be3d0ede92a404dcea9093e1bd0f5f9e6940507d'
[   13.446160] zswap: loaded using pool lzo/zbud
[   13.454635] pstore: Using crash dump compression: deflate
[   13.473429] Key type trusted registered
[   13.489004] Key type encrypted registered
[   13.496183] ima: Allocated hash algorithm: sha1
[   13.518753] usb 1-2: New USB device found, idVendor=1d6b, idProduct=0107, bcdDevice= 1.00
[   13.530174] usb 1-2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   13.540764] usb 1-2: Product: USB Virtual Hub
[   13.543757] ima: No architecture policies found
[   13.544965] usb 1-2: Manufacturer: Aspeed
[   13.549571] evm: Initialising EVM extended attributes:
[   13.553632] usb 1-2: SerialNumber: 00000000
[   13.558826] evm: security.selinux
[   13.558828] evm: security.SMACK64 (disabled)
[   13.558829] evm: security.SMACK64EXEC (disabled)
[   13.558829] evm: security.SMACK64TRANSMUTE (disabled)
[   13.563810] hub 1-2:1.0: USB hub found
[   13.566451] evm: security.SMACK64MMAP (disabled)
[   13.566453] evm: security.apparmor (disabled)
[   13.566454] evm: security.ima
[   13.566454] evm: security.capability
[   13.570990] hub 1-2:1.0: 5 ports detected
[   13.575468] evm: HMAC attrs: 0x1
[   13.688651] Freeing unused kernel image (initmem) memory: 2444K
[   13.708361] Write protecting the kernel read-only data: 20480k
[   13.732905] Freeing unused kernel image (text/rodata gap) memory: 2040K
[   13.743540] Freeing unused kernel image (rodata/data gap) memory: 1708K
[   13.753004] Run /init as init process
[   13.786404] systemd[1]: systemd 239 (239-40.el8) running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[   13.794319] usb 1-5: new full-speed USB device number 3 using xhci_hcd
[   13.808765] systemd[1]: Detected architecture x86-64.
[   13.833424] systemd[1]: Running in initial RAM disk.

Welcome to Red Hat Enterprise Linux 8.3 (Ootpa) dracut-049-95.git20200804.el8 (Initramfs)!

[   13.861368] systemd[1]: Set hostname to <icx-2s1>.
[   13.948327] usb 1-5: New USB device found, idVendor=14dd, idProduct=1005, bcdDevice= 0.00
[   13.959683] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   13.969998] usb 1-5: Product: D2CIM-VUSB
[   13.977092] usb 1-5: Manufacturer: Raritan
[   13.984259] usb 1-5: SerialNumber: 7C07478CDFA4947
[   13.999929] input: Raritan D2CIM-VUSB Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:14DD:1005.0001/input/input1
[   14.049774] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[   14.064364] usb 1-2.1: new high-speed USB device number 4 using xhci_hcd
[   14.064400] systemd[1]: Listening on udev Control Socket.
[   14.071053] input: Raritan D2CIM-VUSB Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:14DD:1005.0001/input/input2
[   14.101760] h[  OK  ] Listening on udev Control Socket.id-generic 0003:
14DD:1005.0001: input,hidraw0: USB HID v1.11 Keyboard [Raritan D2CIM-VUSB] on usb-0000:00:14.0-5/input0
[   14.109223] systemd[1]: Reached target Slices.
[  OK  ] Reached target Slices.
[   14.137702] systemd[1]: Reached target Swap.
[  OK  ] Reached target Swap.
[   14.149383] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[   14.165394] systemd[1]: Started Hardware RNG Entropy Gatherer Daemon.
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
         Starting Journal Service...
         Starting Load Kernel Modules...
         Starting Setup Virtual Console...
[   14.200645] usb 1-2.1: New USB device found, idVendor=1d6b, idProduct=0104, bcdDevice= 1.00
[   14.212573] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   14.212575] usb 1-2.1: Product: virtual_input
[   14.212577] usb 1-2.1: Manufacturer: OpenBMC
[   14.212577] usb 1-2.1: SerialNumber: OBMC0001
[  OK  ] Started Memstrack Anylazing Service.
[   14.254636] f         Starting Create list of required st…ce nodes for the current kernel...use: init (API v
ersion 7.36)
[  OK  ] Listening on udev Kernel Socket.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Reached target Timers.
[  OK  ] Started Create list of required sta…vice nodes for the current kernel.
         Starting Create Static Device Nodes in /dev...
[  OK  ] Started Load Kernel Modules.
         Starting Apply Kernel Variables...
[  OK  ] Started Create Volatile Files and Directories.
[  OK  ] Started Create Static Device Nodes in /dev.
[  OK  ] Started Apply Kernel Variables.
[  OK  ] Started Setup Virtual Console.
         Starting dracut cmdline hook...
[  OK  ] Started Journal Service.
[  OK  ] Started dracut cmdline hook.
         Starting dracut pre-udev hook...
[   14.731049] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[   14.751068] device-mapper: uevent: version 1.0.3
[   14.759790] device-mapper: ioctl: 4.46.0-ioctl (2022-02-22) initialised: dm-devel@redhat.com
[  OK  ] Started dracut pre-udev hook.
         Starting udev Kernel Device Manager...
[  OK  ] Started udev Kernel Device Manager.
         Starting udev Coldplug all Devices...
         Mounting Kernel Configuration File System...
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Started udev Coldplug all Devices.
[  OK  ] Reached target System Initialization.
         Starting Show Plymouth Boot Screen...
         Starting dracut initqueue hook...
[   15.815117] dca service started, version 1.12.1
[   15.838336] ACPI: bus type drm_connector registered
[   15.858068] pps_core: LinuxPPS API ver. 1 registered
[   15.867257] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[   15.882364] PTP clock support registered
[   15.909202] igb: Intel(R) Gigabit Ethernet Network Driver
[   15.919067] igb: Copyright (c) 2007-2014 Intel Corporation.
[   15.929140] igb 0000:01:00.0: enabling device (0140 -> 0142)
[   15.939377] Already setup the GSI :16
[   15.959643] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver
[   15.959646] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[   15.981909] Console: switching to colour dummy device 80x25
[   15.p the
 GSI :17
[  OK  ] Started Forward Password Requests to Plymouth Directory Watch.[   15.989983] i
xgbe 0000:17:00.[  OK  ] Reached target Paths.0: enabling devi
ce (0140 -> 0142[  OK  ] Reached target Basic System.)

[   16.019566] Already setup the GSI :17
[   16.019838] pps pps0: new PPS source ptp0
[   16.020693] igb 0000:01:00.0: added PHC on eth0
[   16.020695] igb 0000:01:00.0: Intel(R) Gigabit Ethernet Network Connection
[   16.020697] igb 0000:01:00.0: eth0: (PCIe:2.5Gb/s:Width x1) a4:bf:01:69:73:7a
[   16.020807] igb 0000:01:00.0: eth0: PBA No: 000300-000
[   16.020808] igb 0000:01:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[   16.020899] igb 0000:ca:00.0: enabling device (0140 -> 0142)
[   16.020935] Already setup the GSI :18
[   16.023718] ast 0000:03:00.0: [drm] Using P2A bridge for configuration
[   16.032223] ast 0000:03:00.0: [drm] AST 2500 detected
[   16.080365] ast 0000:03:00.0: [drm] Using analog VGA
[   16.080377] ast 0000:03:00.0: [drm] dram MCLK=800 Mhz type=7 bus_width=16
[   16.088556] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[   16.088560] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[   16.095258] i40e 0000:b1:00.0: enabling device (0140 -> 0142)
[   16.112500] pps pps1: new PPS source ptp1
[   16.114245] Already setup the GSI :16
[   16.114250] Already setup the GSI :18
[   16.131654] igb 0000:ca:00.0: added PHC on eth1
[   16.136175] igb 0000:ca:00.0: Intel(R) Gigabit Ethernet Network Connection
[   16.143107] igb 0000:ca:00.0: eth1: (PCIe:2.5Gb/s:Width x1) a0:36:9f:c8:9c:74
[   16.150464] igb 0000:ca:00.0: eth1: PBA No: G69016-003
[   16.153725] i40e 0000:b1:00.0: fw 6.0.48442 api 1.7 nvm 6.01 0x80003483 1.1747.0 [8086:1572] [8086:0008]
[   16.155492] igb 0000:ca:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[   16.174872] [drm] Initialized ast 0.1.0 20120228 for 0000:03:00.0 on minor 0
[   16.178217] ahci 0000:00:11.5: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[   16.189924] ahci 0000:00:11.5: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
[   16.320358] igb 0000:01:00.0 enp1s0: renamed from eth0
[   16.469564] i40e 0000:b1:00.0: MAC address: 3c:fd:fe:aa:7e:90
[   16.475676] i40e 0000:b1:00.0: FW LLDP is enabled
[   16.725857] scsi host0: ahci
[   16.728773] scsi host1: ahci
[   16.731592] ata1: SATA max UDMA/133 abar m524288@0x92280000 port 0x92280100 irq 195
[   16.737870] ixgbe 0000:17:00.0: Multiqueue Enabled: Rx Queue count = 8, Tx Queue count = 8 XDP Queue count = 0
[   16.739266] ata2: SATA max UDMA/133 abar m524288@0x92280000 port 0x92280180 irq 195
[   16.757115] Already setup the GSI :16
[   16.761162] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
[   16.769188] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
[   16.799826] scsi host2: ahci
[   16.802751] scsi host3: ahci
[   16.805652] scsi host4: ahci
[   16.808622] scsi host5: ahci
[   16.811570] scsi host6: ahci
[   16.814532] scsi host7: ahci
[   16.817437] scsi host8: ahci
[   16.820422] scsi host9: ahci
[   16.823230] ata3: SATA max UDMA/133 abar m524288@0x92200000 port 0x92200100 irq 223
[   16.830905] ata4: SATA max UDMA/133 abar m524288@0x92200000 port 0x92200180 irq 223
[   16.838613] ata5: SATA max UDMA/133 abar m524288@0x92200000 port 0x92200200 irq 223
[   16.846315] ata6: SATA max UDMA/133 abar m524288@0x92200000 port 0x92200280 irq 223
[   16.848342] ixgbe 0000:17:00.0: 31.504 Gb/s available PCIe bandwidth (8.0 GT/s PCIe x4 link)
[   16.854045] ata7: SATA max UDMA/133 abar m524288@0x92200000 port 0x92200300 irq 223
[   16.870250] ata8: SATA max UDMA/133 abar m524288@0x92200000 port 0x92200380 irq 223
[   16.877966] ata9: SATA max UDMA/133 abar m524288@0x92200000 port 0x92200400 irq 223
[   16.885675] ata10: SATA max UDMA/133 abar m524288@0x92200000 port 0x92200480 irq 223
[   16.974311] ixgbe 0000:17:00.0: MAC: 4, PHY: 0, PBA No: H86377-006
[   16.980344] ixgbe 0000:17:00.0: b4:96:91:49:8b:70
[   17.061679] ata2: SATA link down (SStatus 4 SControl 300)
[   17.066950] ata1: SATA link down (SStatus 4 SControl 300)
[   17.197689] ata8: SATA link down (SStatus 4 SControl 300)
[   17.202964] ata7: SATA link down (SStatus 4 SControl 300)
[   17.208426] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[   17.214651] ata10: SATA link down (SStatus 4 SControl 300)
[   17.220196] ata4: SATA link down (SStatus 4 SControl 300)
[   17.225655] ata5.00: ATA-10: INTEL SSDSC2KG960G8, XCV10110, max UDMA/133
[   17.232394] ata5.00: 1875385008 sectors, multi 1: LBA48 NCQ (depth 32)
[   17.239005] ata3: SATA link down (SStatus 4 SControl 300)
[   17.244472] ata9: SATA link down (SStatus 4 SControl 300)
[   17.249997] ata6: SATA link down (SStatus 4 SControl 300)
[   17.255462] ata5.00: configured for UDMA/133
[   17.259816] scsi 4:0:0:0: Direct-Access     ATA      INTEL SSDSC2KG96 0110 PQ: 0 ANSI: 5
[   17.283943] scsi 4:0:0:0: Attached scsi generic sg0 type 0
[   17.304514] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
[   17.312600] fbcon: astdrmfb (fb0) is primary device
[   17.314712] ata5.00: Enabling discard_zeroes_data
[   17.314727] sd 4:0:0:0: [sda] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[   17.314728] sd 4:0:0:0: [sda] 4096-byte physical blocks
[   17.314741] sd 4:0:0:0: [sda] Write Protect is off
[   17.314767] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   17.314798] sd 4:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[   17.314994] ata5.00: Enabling discard_zeroes_data
[   17.317123]  sda: sda1 sda2 sda3
[   17.317334] sd 4:0:0:0: [sda] Attached SCSI disk
[   17.346870] Console: switching to colour frame buffer device 128x48
[   17.410380] ast 0000:03:00.0: [drm] fb0: astdrmfb frame buffer device
[   19.261165] input: OpenBMC virtual_input as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.1/1-2.1:1.0/0003:1D6B:0104.0002/input/input3
[   19.324501] hid-generic 0003:1D6B:0104.0002: input,hidraw1: USB HID v1.01 Keyboard [OpenBMC virtual_input] on usb-0000:00:14.0-2.1/input0
[   19.338227] input: OpenBMC virtual_input as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.1/1-2.1:1.1/0003:1D6B:0104.0003/input/input4
[   19.350825] hid-generic 0003:1D6B:0104.0003: input,hidraw2: USB HID v1.01 Mouse [OpenBMC virtual_input] on usb-0000:00:14.0-2.1/input1
[   19.467216] igb 0000:ca:00.0 ens8: renamed from eth1
[   19.486466] ixgbe 0000:17:00.0: Intel(R) 10 Gigabit Network Connection
[   19.486818] i40e 0000:b1:00.0: PCI-Express: Speed 8.0GT/s Width x8
[   19.492971] ixgbe 0000:17:00.1: enabling device (0140 -> 0142)
[   19.499563] i40e 0000:b1:00.0: Features: PF-id[0] VFs: 64 VSIs: 66 QP: 8 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[   19.516118] i40e 0000:b1:00.1: enabling device (0140 -> 0142)
[   19.516474] Already setup the GSI :18
[   19.527015] Already setup the GSI :18
[   19.546598] i40e 0000:b1:00.1: fw 6.0.48442 api 1.7 nvm 6.01 0x80003483 1.1747.0 [8086:1572] [8086:0008]
[   19.627670] i40e 0000:b1:00.1: MAC address: 3c:fd:fe:aa:7e:91
[   19.634117] i40e 0000:b1:00.1: FW LLDP is enabled
[   19.651483] i40e 0000:b1:00.1 eth1: NIC Link is Up, 10 Gbps Full Duplex, Flow Control: None
[   19.662143] i40e 0000:b1:00.1: PCI-Express: Speed 8.0GT/s Width x8
[   19.677641] i40e 0000:b1:00.1: Features: PF-id[1] VFs: 64 VSIs: 66 QP: 8 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[   19.690706] i40e 0000:b1:00.1 ens9f1: renamed from eth1
[   19.711619] i40e 0000:b1:00.0 ens9f0: renamed from eth0
[   20.207441] ixgbe 0000:17:00.1: Multiqueue Enabled: Rx Queue count = 8, Tx Queue count = 8 XDP Queue count = 0
[   20.316219] ixgbe 0000:17:00.1: 31.504 Gb/s available PCIe bandwidth (8.0 GT/s PCIe x4 link)
[   20.437286] ixgbe 0000:17:00.1: MAC: 4, PHY: 0, PBA No: H86377-006
[   20.443666] ixgbe 0000:17:00.1: b4:96:91:49:8b:71
[   20.609358] ixgbe 0000:17:00.1: Intel(R) 10 Gigabit Network Connection
[   20.617935] ixgbe 0000:17:00.0 ens6f0: renamed from eth2
[   20.635574] ixgbe 0000:17:00.1 ens6f1: renamed from eth0
[  OK  ] Found device /dev/mapper/rhel-root.
[  OK  ] Reached target Initrd Root Device.
[  OK  ] Started dracut initqueue hook.
[  OK  ] Reached target Remote File Systems (Pre).
[  OK  ] Reached target Remote File Systems.
         Starting File System Check on /dev/mapper/rhel-root...
[  OK  ] Started File System Check on /dev/mapper/rhel-root.
         Mounting /sysroot...
[   21.322573] SGI XFS with ACLs, security attributes, quota, no debug enabled
[   21.333581] XFS (dm-0): Mounting V5 Filesystem
[   21.367359] XFS (dm-0): Ending clean mount
[  OK  ] Mounted /sysroot.
[  OK  ] Reached target Initrd Root File System.
         Starting Reload Configuration from the Real Root...
[  OK  ] Started Reload Configuration from the Real Root.
[  OK  ] Reached target Initrd File Systems.
[  OK  ] Reached target Initrd Default Target.
         Starting dracut pre-pivot and cleanup hook...
[  OK  ] Started dracut pre-pivot and cleanup hook.
         Starting Cleaning Up and Shutting Down Daemons...
[  OK  ] Stopped dracut pre-pivot and cleanup hook.
[  OK  ] Stopped target Initrd Default Target.
[  OK  ] Stopped target Initrd Root Device.
[  OK  ] Stopped target Basic System.
[  OK  ] Stopped target System Initialization.
         Stopping udev Kernel Device Manager...
[  OK  ] Stopped Create Volatile Files and Directories.
[  OK  ] Stopped target Paths.
[  OK  ] Stopped target Local File Systems.
[  OK  ] Stopped target Remote File Systems.
[  OK  ] Stopped target Remote File Systems (Pre).
[  OK  ] Stopped dracut initqueue hook.
[  OK  ] Stopped target Sockets.
[  OK  ] Stopped Apply Kernel Variables.
[  OK  ] Stopped Load Kernel Modules.
[  OK  ] Stopped udev Coldplug all Devices.
         Starting Setup Virtual Console...
[  OK  ] Stopped target Swap.
         Starting Plymouth switch root service...
[  OK  ] Stopped target Timers.
[  OK  ] Stopped target Slices.
[  OK  ] Stopped udev Kernel Device Manager.
[  OK  ] Stopped dracut pre-udev hook.
[  OK  ] Stopped dracut cmdline hook.
         Stopping Hardware RNG Entropy Gatherer Daemon...
[  OK  ] Stopped Create Static Device Nodes in /dev.
[  OK  ] Stopped Create list of required sta…vice nodes for the current kernel.
[  OK  ] Closed udev Kernel Socket.
[  OK  ] Closed udev Control Socket.
         Starting Cleanup udevd DB...
[  OK  ] Started Cleaning Up and Shutting Down Daemons.
[  OK  ] Stopped Hardware RNG Entropy Gatherer Daemon.
[  OK  ] Started Cleanup udevd DB.
[  OK  ] Started Plymouth switch root service.
[  OK  ] Started Setup Virtual Console.
[  OK  ] Reached target Switch Root.
         Starting Switch Root...
[   22.190786] systemd-journald[200]: Received SIGTERM from PID 1 (systemd).
[   22.225471] printk: systemd: 22 output lines suppressed due to ratelimiting
[   22.315537] SELinux:  Runtime disable is deprecated, use selinux=0 on the kernel cmdline.
[   22.323796] SELinux:  https://github.com/SELinuxProject/selinux-kernel/wiki/DEPRECATE-runtime-disable
[   27.560435] SELinux:  Disabled at runtime.
[   27.592439] audit: type=1404 audit(1658382826.868:2): enforcing=0 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=0 old-enabled=1 lsm=selinux res=1
[   27.637669] systemd[1]: systemd 239 (239-40.el8) running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[   27.660551] systemd[1]: Detected architecture x86-64.

Welcome to Red Hat Enterprise Linux 8.3 (Ootpa)![   27.675990] s
ystemd[1]: Set hostname to <icx-
2s1>.
[   28.022978] systemd[1]: basic.target: Found ordering cycle on paths.target/start
[   28.030538] systemd[1]: basic.target: Found dependency on pmlogger_check.path/start
[   28.038326] systemd[1]: basic.target: Found dependency on pmlogger.service/start
[   28.045812] systemd[1]: basic.target: Found dependency on pmcd.service/start
[   28.052943] systemd[1]: basic.target: Found dependency on basic.target/start
[   28.060142] systemd[1]: basic.target: Job paths.target/start deleted to break ordering cycle starting with basic.target/start
[ SKIP ] Ordering cycle found, skipping Paths
[   28.077620] systemd[1]: systemd-journald.service: Succeeded.
[  OK  ] Stopped Switch Root.
[  OK  ] Stopped Journal Service.
         Starting Journal Service...
[  OK  ] Listening on Device-mapper event daemon FIFOs.
         Mounting POSIX Message Queue File System...
[  OK  ] Started Forward Password Requests to Wall Directory Watch.
         Starting Create list of required st…ce nodes for the current kernel...
         Starting Load Kernel Modules...
[  OK  ] Listening on udev Control Socket.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[  OK  ] Created slice User and Session Slice.
         Starting Monitoring of LVM2 mirrors…ng dmeventd or progress polling...
[  OK  ] Set up automount Arbitrary Executab…rmats File System Automount Point.
[  OK  ] Listening on udev Kernel Socket.
[  OK  ] Created slice system-sshd\x2dkeygen.slice.
[  OK  ] Created slice system-getty.slice.
[  OK  ] Created slice system-serial\x2dgetty.slice.
[  OK  ] Reached target Slices.
[  OK  ] Stopped File System Check on Root Device.
         Starting Remount Root and Kernel File Systems...
         Starting Read and set NIS domainname from /etc/sysconfig/network...
[  OK  ] Created slice system-systemd\x2dfsck.slice.
[  OK  ] Listening on Process Core Dump Socket.
[  OK  ] Reached target Local Encrypted Volumes.
         Activating swap /dev/mapper/rhel-swap...
[  OK  ] Listening on RPCbind Server Activation Socket.
[  OK  ] Reached target RPC Port Mapper.
[   28.279195] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff)
         Mounting Kernel Debug File System...
[  OK  ] Stopped target Switch Root.
         Starting Setup Virtual Console...
[  OK  ] Stopped target Initrd File Systems.
[  OK  ] Stopped target Initrd Root File System.
[  OK  ] Stopped Plymouth switch root service.
         Starting udev Coldplug all Devices...
[  OK  ] Listening on LVM2 poll daemon socket.
[  OK  ] Listening on multipathd control socket.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Started Create list of required sta…vice nodes for the current kernel.
[  OK  ] Started Load Kernel Modules.
[  OK  ] Started Remount Root and Kernel File Systems.
[  OK  ] Started Read and set NIS domainname from /etc/sysconfig/network.
[   28.373158] Adding 2097148k swap on /dev/mapper/rhel-swap.  Priority:-2 extents:1 across:2097148k SSFS
         Starting Load/Save Random Seed...
         Starting Apply Kernel Variables...
         Mounting FUSE Control File System...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Activated swap /dev/mapper/rhel-swap.
[  OK  ] Started Journal Service.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Started Load/Save Random Seed.
[  OK  ] Mounted FUSE Control File System.
         Starting Flush Journal to Persistent Storage...
[  OK  ] Reached target Swap.
[  OK  ] Started Apply Kernel Variables.
[   28.492411] systemd-journald[661]: Received request to flush runtime journal from PID 1
[  OK  ] Started Flush Journal to Persistent Storage.
[  OK  ] Started Create Static Device Nodes in /dev.
         Starting udev Kernel Device Manager...
[  OK  ] Started Setup Virtual Console.
[  OK  ] Started udev Kernel Device Manager.
[  OK  ] Started udev Coldplug all Devices.
         Starting udev Wait for Complete Device Initialization...
[   29.496708] power_meter ACPI000D:00: Found ACPI power meter.
[   29.502547] power_meter ACPI000D:00: Ignoring unsafe software power cap!
[   29.509372] power_meter ACPI000D:00: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[*     ] (1 of 2) A start job is running for…r progress polling (6s / no limit)[**    ] (1 of 2) A start job is running for…r progress polling (6s / no limit)[***   ] (1 of 2) A start job is running for…r progress polling (7s / no limit)[ ***  ] (2 of 2) A start job is running for…vice Initialization (7s / 3min 1s)[  *** ] (2 of 2) A start job is running for…vice Initialization (8s / 3min 1s)[   ***] (2 of 2) A start job is running for…vice Initialization (8s / 3min 1s)[    **] (1 of 2) A start job is running for…r progress polling (9s / no limit)[     *] (1 of 2) A start job is running for…r progress polling (9s / no limit)[    **] (1 of 2) A start job is running for… progress polling (10s / no limit)[   ***] (2 of 2) A start job is running for…ice Initialization (10s / 3min 1s)[  *** ] (2 of 2) A start job is running for…ice Initialization (11s / 3min 1s)[ ***  ] (2 of 2) A start job is running for…ice Initialization (11s / 3min 1s)[***   ] (1 of 2) A start job is running for… progress polling (12s / no limit)[**    ] (1 of 2) A start job is running for… progress polling (12s / no limit)[*     ] (1 of 2) A start job is running for… progress polling (13s / no limit)[**    ] (2 of 2) A start job is running for…ice Initialization (13s / 3min 1s)[***   ] (2 of 2) A start job is running for…ice Initialization (14s / 3min 1s)[ ***  ] (2 of 2) A start job is running for…ice Initialization (14s / 3min 1s)[  *** ] (1 of 2) A start job is running for… progress polling (15s / no limit)[   ***] (1 of 2) A start job is running for… progress polling (15s / no limit)[    **] (1 of 2) A start job is running for… progress polling (16s / no limit)[     *] (2 of 2) A start job is running for…ice Initialization (16s / 3min 1s)[    **] (2 of 2) A start job is running for…ice Initialization (17s / 3min 1s)[   ***] (2 of 2) A start job is running for…ice Initialization (17s / 3min 1s)[  *** ] (1 of 2) A start job is running for… progress polling (18s / no limit)[ ***  ] (1 of 2) A start job is running for… progress polling (18s / no limit)[***   ] (1 of 2) A start job is running for… progress polling (19s / no limit)[**    ] (2 of 2) A start job is running for…ice Initialization (19s / 3min 1s)[*     ] (2 of 2) A start job is running for…ice Initialization (20s / 3min 1s)[**    ] (2 of 2) A start job is running for…ice Initialization (20s / 3min 1s)[***   ] (1 of 2) A start job is running for… progress polling (21s / no limit)[ ***  ] (1 of 2) A start job is running for… progress polling (21s / no limit)[  *** ] (1 of 2) A start job is running for… progress polling (22s / no limit)[   ***] (2 of 2) A start job is running for…ice Initialization (22s / 3min 1s)[    **] (2 of 2) A start job is running for…ice Initialization (23s / 3min 1s)[     *] (2 of 2) A start job is running for…ice Initialization (23s / 3min 1s)[    **] (1 of 2) A start job is running for… progress polling (24s / no limit)[   ***] (1 of 2) A start job is running for… progress polling (24s / no limit)[  *** ] (1 of 2) A start job is running for… progress polling (25s / no limit)[ ***  ] (2 of 2) A start job is running for…ice Initialization (25s / 3min 1s)[***   ] (2 of 2) A start job is running for…ice Initialization (26s / 3min 1s)[**    ] (2 of 2) A start job is running for…ice Initialization (26s / 3min 1s)[*     ] (1 of 2) A start job is running for… progress polling (27s / no limit)[**    ] (1 of 2) A start job is running for… progress polling (27s / no limit)[***   ] (1 of 2) A start job is running for… progress polling (28s / no limit)[ ***  ] (2 of 2) A start job is running for…ice Initialization (28s / 3min 1s)[  *** ] (2 of 2) A start job is running for…ice Initialization (29s / 3min 1s)[   ***] (2 of 2) A start job is running for…ice Initialization (29s / 3min 1s)[    **] (1 of 2) A start job is running for… progress polling (30s / no limit)[     *] (1 of 2) A start job is running for… progress polling (30s / no limit)[    **] (1 of 2) A start job is running for… progress polling (31s / no limit)[   ***] (2 of 2) A start job is running for…ice Initialization (31s / 3min 1s)[  *** ] (2 of 2) A start job is running for…ice Initialization (32s / 3min 1s)[ ***  ] (2 of 2) A start job is running for…ice Initialization (32s / 3min 1s)[***   ] (1 of 2) A start job is running for… progress polling (33s / no limit)[**    ] (1 of 2) A start job is running for… progress polling (33s / no limit)[*     ] (1 of 2) A start job is running for… progress polling (34s / no limit)[   62.533577] IPMI message handler: version 39.2
[   62.548322] ipmi device interface
[   62.563711] ipmi_si: IPMI System Interface driver
[   62.576984] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[   62.583451] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[   62.590824] ipmi_si: Adding SMBIOS-specified kcs state machine
[   62.596919] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[   62.603030] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2-0x0ca3] regsize 1 spacing 1 irq 0
[   62.630982] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[   62.639785] ipmi_si: Adding ACPI-specified kcs state machine
[   62.654099] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[   62.794313] ipmi_si IPI0001:00: The BMC does not support clearing the recv irq bit, compensating, but the BMC needs to be fixed.
[   62.927716] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x000157, prod_id: 0x007b, dev_id: 0x23)
[**    ] (2 of 2) A start job is running for…ice Initialization (34s / 3min 1s)[   63.172406] ipmi_si IPI0001:00: IPMI kcs interface initialized
[***   ] (2 of 2) A start job is running for…ice Initialization (35s / 3min 1s)[ ***  ] (2 of 2) A start job is running for…ice Initialization (35s / 3min 1s)[   64.336102] ioatdma: Intel(R) QuickData Technology Driver 5.00
[   64.350936] ioatdma 0000:00:01.0: enabling device (0144 -> 0146)
[   64.365622] Already setup the GSI :17
[   64.391222] ioatdma 0000:00:01.1: enabling device (0144 -> 0146)
[   64.401254] Already setup the GSI :17
[   64.418718] ioatdma 0000:00:01.2: enabling device (0144 -> 0146)
[   64.432845] Already setup the GSI :17
[  *** ] (1 of 2) A start job is running for… progress polling (36s / no limit)[   64.459097] ioatdma 0000:00:01.3: enabling device (0144 -> 0146)
[   64.465922] Already setup the GSI :17
[   64.483118] ioatdma 0000:00:01.4: enabling device (0144 -> 0146)
[   64.490356] Already setup the GSI :17
[   64.507137] ioatdma 0000:00:01.5: enabling device (0144 -> 0146)
[   64.513509] Already setup the GSI :17
[   64.529798] ioatdma 0000:00:01.6: enabling device (0144 -> 0146)
[   64.536636] Already setup the GSI :17
[   64.553991] ioatdma 0000:00:01.7: enabling device (0144 -> 0146)
[   64.560391] Already setup the GSI :17
[   64.577509] ioatdma 0000:80:01.0: enabling device (0144 -> 0146)
[   64.584600] Already setup the GSI :16
[   64.601642] ioatdma 0000:80:01.1: enabling device (0144 -> 0146)
[   64.608077] Already setup the GSI :16
[   64.624416] ioatdma 0000:80:01.2: enabling device (0144 -> 0146)
[   64.631375] Already setup the GSI :16
[   64.648378] ioatdma 0000:80:01.3: enabling device (0144 -> 0146)
[   64.655313] Already setup the GSI :16
[   64.671432] ioatdma 0000:80:01.4: enabling device (0144 -> 0146)
[   64.678568] Already setup the GSI :16
[   64.694901] ioatdma 0000:80:01.5: enabling device (0144 -> 0146)
[   64.701594] Already setup the GSI :16
[   64.718749] ioatdma 0000:80:01.6: enabling device (0144 -> 0146)
[   64.725639] Already setup the GSI :16
[   64.742765] ioatdma 0000:80:01.7: enabling device (0144 -> 0146)
[   64.749133] Already setup the GSI :16
[   64.885736] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[   ***] (1 of 2) A start job is running for… progress polling (36s / no limit)[   64.964165] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[   64.979793] Already setup the GSI :16
[   64.992270] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[   65.006923] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[   65.030970] i2c i2c-1: 8/32 memory slots populated (from DMI)
[   65.037021] i2c i2c-1: Systems with more than 4 memory slots not supported yet, not instantiating SPD
[  OK  ] Created slice system-lvm2\x2dpvscan.slice.
         Starting LVM event activation on device 8:3...
[  OK  ] Started Monitoring of LVM2 mirrors,…sing dmeventd or progress polling.
[   65.204635] input: PC Speaker as /devices/platform/pcspkr/input/input5
[  OK  ] Started LVM event activation on device 8:3.
[   66.967455] cryptd: max_cpu_qlen set to 1000
[   66.982294] SSE version of gcm_enc/dec engaged.
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x0000060d unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x000003f8 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x000003f9 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x000003fa unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x00000630 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x00000631 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x00000632 unimplemented
[   67.145726] intel_powerclamp: No package C-state available
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x0000060d unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x000003f8 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x000003f9 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x000003fa unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x00000630 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x00000631 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x00000632 unimplemented
[   67.228175] intel_powerclamp: No package C-state available
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x0000060d unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x000003f8 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x000003f9 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x000003fa unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x00000630 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x00000631 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v2 RDMSR 0x00000632 unimplemented
[   67.317055] intel_powerclamp: No package C-state available
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x0000060d unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x000003f8 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x000003f9 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x000003fa unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x00000630 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x00000631 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x00000632 unimplemented
[   67.404165] intel_powerclamp: No package C-state available
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x0000060d unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x000003f8 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x000003f9 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x000003fa unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x00000630 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x00000631 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v1 RDMSR 0x00000632 unimplemented
[   67.592106] intel_powerclamp: No package C-state available
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v6 RDMSR 0x0000060d unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v6 RDMSR 0x000003f8 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v6 RDMSR 0x000003f9 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v6 RDMSR 0x000003fa unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v6 RDMSR 0x00000630 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v6 RDMSR 0x00000631 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v6 RDMSR 0x00000632 unimplemented
[   67.682052] intel_powerclamp: No package C-state available
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v5 RDMSR 0x0000060d unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v5 RDMSR 0x000003f8 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v5 RDMSR 0x000003f9 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v5 RDMSR 0x000003fa unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v5 RDMSR 0x00000630 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v5 RDMSR 0x00000631 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v5 RDMSR 0x00000632 unimplemented
[   67.861321] intel_powerclamp: No package C-state available
[   67.874249] iTCO_vendor_support: vendor-support=0
[   67.881720] iTCO_wdt iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x0000060d unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x000003f8 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x000003f9 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x000003fa unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x00000630 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x00000631 unimplemented
(XEN) arch/x86/pv/emul-priv-op.c:1027:d0v0 RDMSR 0x00000632 unimplemented
[   67.996438] intel_powerclamp: No package C-state available
[  OK  ] Started udev Wait for Complete Device Initialization.
[  OK  ] Reached target Local File Systems (Pre).
         Mounting /boot...
         Starting File System Check on /dev/disk/by-uuid/F6F1-E117...
[   68.518616] XFS (sda2): Mounting V5 Filesystem
[   68.549337] XFS (sda2): Ending clean mount
[   68.557280] xfs filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
[  OK  ] Mounted /boot.
[  OK  ] Started File System Check on /dev/disk/by-uuid/F6F1-E117.
         Mounting /boot/efi...
[  OK  ] Mounted /boot/efi.
[  OK  ] Reached target Local File Systems.
         Starting Tell Plymouth To Write Out Runtime Data...
         Starting Import network configuration from initramfs...
         Starting Restore /run/initramfs on shutdown...
[  OK  ] Started Restore /run/initramfs on shutdown.
[  OK  ] Started Tell Plymouth To Write Out Runtime Data.
[  OK  ] Started Import network configuration from initramfs.
         Starting Create Volatile Files and Directories...
[  OK  ] Started Create Volatile Files and Directories.
         Mounting RPC Pipe File System...
         Starting Security Auditing Service...
         Starting RPC Bind...
[  OK  ] Started RPC Bind.
[   68.926295] RPC: Registered named UNIX socket transport module.
[   68.932386] RPC: Registered udp transport module.
[   68.937242] RPC: Registered tcp transport module.
[   68.942035] RPC: Registered tcp NFSv4.1 backchannel transport module.
[  OK  ] Started Security Auditing Service.
         Starting Update UTMP about System Boot/Shutdown...
[  OK  ] Mounted RPC Pipe File System.
[  OK  ] Reached target rpc_pipefs.target.
[  OK  ] Started Update UTMP about System Boot/Shutdown.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily processing of PMIE logs.
[  OK  ] Started Generate summary of yesterday's process accounting.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Listening on Open-iSCSI iscsid Socket.
[  OK  ] Listening on Open-iSCSI iscsiuio Socket.
[  OK  ] Started CUPS Scheduler.
[  OK  ] Started dnf makecache --timer.
[  OK  ] Listening on SSSD Kerberos Cache Manager responder socket.
[  OK  ] Started daily update of the root trust anchor for DNSSEC.
[  OK  ] Started Half-hourly check of PMIE instances.
[  OK  ] Started pmie_check.path.
[  OK  ] Started Run system activity accounting tool every 10 minutes.
[  OK  ] Listening on PC/SC Smart Card Daemon Activation Socket.
[  OK  ] Listening on CUPS Scheduler.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Listening on Activation socket for spice guest agent daemon.
[  OK  ] Reached target Sockets.
[  OK  ] Reached target Basic System.
         Starting Avahi mDNS/DNS-SD Stack...
         Starting ABRT Automated Bug Reporting Tool...
         Starting Generate system activity reports...
[  OK  ] Started Machine Check Exception Logging Daemon.
         Starting Self Monitoring and Reporting Technology (SMART) Daemon...
         Starting NTP client/server...
         Starting Modem Manager...
         Starting Disk Manager...
[  OK  ] Started libstoragemgmt plug-in server daemon.
         Starting Hardware Monitoring Sensors...
         Starting Resets System Activity Logs...
         Starting Rollback uncommitted netcf…work config change transactions...
         Starting Hardware RNG Entropy Gatherer Wake threshold service...
         Starting RealtimeKit Scheduling Policy Service...
[  OK  ] Started irqbalance daemon.
         Starting Kernel Samepage Merging...
[  OK  ] Started D-Bus System Message Bus.
         Starting Authorization Manager...
         Starting System Security Services Daemon...
         Starting Poll system activity report generation...
[  OK  ] Reached target sshd-keygen.target.
         Starting VDO volume services...
[  OK  ] Started Self Monitoring and Reporting Technology (SMART) Daemon.
[  OK  ] Started Rollback uncommitted netcf network config change transactions.
[  OK  ] Started Hardware RNG Entropy Gatherer Wake threshold service.
[  OK  ] Started Kernel Samepage Merging.
         Starting Check PMIE instances are running...
         Starting Kernel Samepage Merging (KSM) Tuning Daemon...
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
         Starting Network Manager...
[  OK  ] Started Resets System Activity Logs.
[  OK  ] Started Hardware Monitoring Sensors.
[  OK  ] Started NTP client/server.
[  OK  ] Started Kernel Samepage Merging (KSM) Tuning Daemon.
[  OK  ] Started RealtimeKit Scheduling Policy Service.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started Network Manager.
         Starting Network Manager Wait Online...
[  OK  ] Reached target Network.
         Starting OpenSSH server daemon...
         Starting CUPS Scheduler...
         Starting GSSAPI Proxy Daemon...
         Starting Dynamic System Tuning Daemon...
         Starting /etc/rc.d/rc.local Compatibility...
         Starting Enable periodic update of entitlement certificates....
         Starting Logout off all iSCSI sessions on shutdown...
[  OK  ] Started Logout off all iSCSI sessions on shutdown.
[  OK  ] Started Enable periodic update of entitlement certificates..
         Starting Hostname Service...
[  OK  ] Started OpenSSH server daemon.
[  OK  ] Started GSSAPI Proxy Daemon.
[  OK  ] Reached target NFS client services.
[  OK  ] Started Modem Manager.
[  OK  ] Started CUPS Scheduler.
[  OK  ] Started Authorization Manager.
[  OK  ] Started Poll system activity report generation.
[  OK  ] Started Generate system activity reports.
[  OK  ] Started Hostname Service.
[  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
         Starting Network Manager Script Dispatcher Service...
[  OK  ] Started Network Manager Script Dispatcher Service.
[  OK  ] Started VDO volume services.
[   70.130833] pps pps2: new PPS source ptp4
[   70.143478] ixgbe 0000:17:00.0: registered PHC device on ens6f0
[  OK  ] Started System Security Services Daemon.
[  OK  ] Reached target User and Group Name Lookups.
         Starting Login Service...
         Starting Accounts Service...
[  OK  ] Started Disk Manager.
[  OK  ] Started Accounts Service.
[   70.364183] pps pps3: new PPS source ptp5
[   70.376925] ixgbe 0000:17:00.1: registered PHC device on ens6f1
[  OK  ] Started Login Service.
[   70.585086] IPv6: ADDRCONF(NETDEV_CHANGE): ens9f1: link becomes ready
[   70.630748] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   70.717246] xenbr0: port 1(enp1s0) entered blocking state
[   70.722815] xenbr0: port 1(enp1s0) entered disabled state
[   70.730182] device enp1s0 entered promiscuous mode
[  OK  ] Started Check PMIE instances are running.
[  OK  ] Started Dynamic System Tuning Daemon.
[  OK  ] Started ABRT Automated Bug Reporting Tool.
[  OK  ] Started ABRT Xorg log watcher.
[  OK  ] Started ABRT kernel log watcher.
         Starting Install ABRT coredump hook...
[  OK  ] Started Install ABRT coredump hook.
[   73.450478] igb 0000:ca:00.0 ens8: igb: ens8 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[   73.569083] IPv6: ADDRCONF(NETDEV_CHANGE): ens8: link becomes ready
[   73.697551] igb 0000:01:00.0 enp1s0: igb: enp1s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[   73.817118] IPv6: ADDRCONF(NETDEV_CHANGE): enp1s0: link becomes ready
[   73.823706] xenbr0: port 1(enp1s0) entered blocking state
[   73.829208] xenbr0: port 1(enp1s0) entered listening state
[   74.859831] ixgbe 0000:17:00.1 ens6f1: NIC Link is Up 1 Gbps, Flow Control: None
[   74.876551] IPv6: ADDRCONF(NETDEV_CHANGE): ens6f1: link becomes ready
[   74.923158] xen_acpi_processor: Uploading Xen processor PM info
(XEN) cpufreq fail to add CPU1:incorrect _PSD(252:2), expect(254/2)
(XEN) cpufreq fail to add CPU3:incorrect _PSD(252:2), expect(254/2)
(XEN) cpufreq fail to add CPU5:incorrect _PSD(252:2), expect(254/2)
(XEN) cpufreq fail to add CPU7:incorrect _PSD(252:2), expect(254/2)
(XEN) cpufreq fail to add CPU9:incorrect _PSD(252:2), expect(254/2)
(XEN) cpufreq fail to add CPU11:incorrect _PSD(252:2), expect(254/2)
(XEN) cpufreq fail to add CPU13:incorrect _PSD(252:2), expect(254/2)
(XEN) cpufreq fail to add CPU15:incorrect _PSD(252:2), expect(254/2)
[    **] (1 of 2) A start job is running for…nager Wait Online (48s / no limit)[     *] (2 of 2) A start job is running for…cal Compatibility (49s / no limit)[    **] (2 of 2) A start job is running for…cal Compatibility (49s / no limit)[   ***] (2 of 2) A start job is running for…cal Compatibility (50s / no limit)[  *** ] (1 of 2) A start job is running for…nager Wait Online (50s / no limit)[ ***  ] (1 of 2) A start job is running for…nager Wait Online (51s / no limit)[***   ] (1 of 2) A start job is running for…nager Wait Online (51s / no limit)[**    ] (2 of 2) A start job is running for…cal Compatibility (52s / no limit)[  OK  ] Started /etc/rc.d/rc.local Compatibility.
         Starting Network Manager Script Dispatcher Service...
[  OK  ] Started Network Manager Script Dispatcher Service.
[*     ] A start job is running for Network …nager Wait Online (59s / no limit)[**    ] A start job is running for Network …ager Wait Online (1min / no limit)[***   ] A start job is running for Network …ager Wait Online (1min / no limit)[   88.998568] xenbr0: port 1(enp1s0) entered learning state
[ ***  ] A start job is running for Network …r Wait Online (1min 1s / no limit)[  *** ] A start job is running for Network …r Wait Online (1min 1s / no limit)[   ***] A start job is running for Network …r Wait Online (1min 2s / no limit)[    **] A start job is running for Network …r Wait Online (1min 2s / no limit)[     *] A start job is running for Network …r Wait Online (1min 3s / no limit)[    **] A start job is running for Network …r Wait Online (1min 3s / no limit)[   ***] A start job is running for Network …r Wait Online (1min 4s / no limit)[  *** ] A start job is running for Network …r Wait Online (1min 4s / no limit)[   93.030223] xenbr0: port 1(enp1s0) entered forwarding state
[ ***  ] A start job is running for Network …r Wait Online (1min 5s / no limit)[***   ] A start job is running for Network …r Wait Online (1min 5s / no limit)[**    ] A start job is running for Network …r Wait Online (1min 6s / no limit)[*     ] A start job is running for Network …r Wait Online (1min 6s / no limit)[**    ] A start job is running for Network …r Wait Online (1min 7s / no limit)[***   ] A start job is running for Network …r Wait Online (1min 7s / no limit)[ ***  ] A start job is running for Network …r Wait Online (1min 8s / no limit)[  *** ] A start job is running for Network …r Wait Online (1min 8s / no limit)[   ***] A start job is running for Network …r Wait Online (1min 9s / no limit)[    **] A start job is running for Network …r Wait Online (1min 9s / no limit)[     *] A start job is running for Network … Wait Online (1min 10s / no limit)[    **] A start job is running for Network … Wait Online (1min 10s / no limit)[   ***] A start job is running for Network … Wait Online (1min 11s / no limit)[  *** ] A start job is running for Network … Wait Online (1min 11s / no limit)[ ***  ] A start job is running for Network … Wait Online (1min 11s / no limit)[***   ] A start job is running for Network … Wait Online (1min 12s / no limit)[**    ] A start job is running for Network … Wait Online (1min 12s / no limit)[*     ] A start job is running for Network … Wait Online (1min 13s / no limit)[**    ] A start job is running for Network … Wait Online (1min 13s / no limit)[***   ] A start job is running for Network … Wait Online (1min 14s / no limit)[ ***  ] A start job is running for Network … Wait Online (1min 14s / no limit)[  *** ] A start job is running for Network … Wait Online (1min 15s / no limit)[   ***] A start job is running for Network … Wait Online (1min 15s / no limit)[    **] A start job is running for Network … Wait Online (1min 16s / no limit)[     *] A start job is running for Network … Wait Online (1min 16s / no limit)[    **] A start job is running for Network … Wait Online (1min 17s / no limit)[   ***] A start job is running for Network … Wait Online (1min 17s / no limit)[  *** ] A start job is running for Network … Wait Online (1min 18s / no limit)[ ***  ] A start job is running for Network … Wait Online (1min 18s / no limit)[***   ] A start job is running for Network … Wait Online (1min 19s / no limit)[**    ] A start job is running for Network … Wait Online (1min 19s / no limit)[*     ] A start job is running for Network … Wait Online (1min 20s / no limit)[**    ] A start job is running for Network … Wait Online (1min 20s / no limit)[***   ] A start job is running for Network … Wait Online (1min 21s / no limit)         Starting Network Manager Script Dispatcher Service...
[  OK  ] Started Network Manager Script Dispatcher Service.
[  OK  ] Started Network Manager Wait Online.
[  OK  ] Reached target Network is Online.
[  OK  ] Reached target Remote File Systems (Pre).
         Mounting /share/xvs/img...
         Starting System Logging Service...
         Starting Notify NFS peers of a restart...
         Starting LSB: Telecom Linux Validation suite...
         Starting Performance Metrics Collector Daemon...
         Mounting /share/xvs/tools...
[  OK  ] Started Notify NFS peers of a restart.
[  OK  ] Started System Logging Service.
[  109.553542] FS-Cache: Loaded
[  109.631291] Key type dns_resolver registered
[  109.822566] NFS: Registering the id_resolver key type
[  109.828527] Key type id_resolver registered
[  109.833757] Key type id_legacy registered
[  OK  ] Mounted /share/xvs/tools.
[  OK  ] Mounted /share/xvs/img.
[  OK  ] Reached target Remote File Systems.
         Starting Crash recovery kernel arming...
         Starting Permit User Sessions...
[  OK  ] Started Permit User Sessions.
         Starting GNOME Display Manager...
         Starting Hold until boot process finishes up...
[  OK  ] Started Job spooling tools.
[  OK  ] Started Command Scheduler.
[FAILED] Failed to start Crash recovery kernel arming.
See 'systemctl status kdump.service' for details.
[  OK  ] Started GNOME Display Manager.
[  112.434030] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
[  113.369909] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
[  116.208963] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
[  117.420303] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125

Red Hat Enterprise Linux 8.3 (Ootpa)
Kernel 5.19.0-rc6 on an x86_64

Activate the web console with: systemctl enable --now cockpit.socket

icx-2s1 login: (XEN) Removing cpu 48 from runqueue 3
(XEN) Assertion '!in_irq() && (local_irq_is_enabled() || num_online_cpus() <= 1)' failed at common/xmalloc_tlsf.c:704
(XEN) ----[ Xen-4.17-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) CPU:    48
(XEN) RIP:    e008:[<ffff82d04023be76>] xfree+0x150/0x1f7
(XEN) RFLAGS: 0000000000010016   CONTEXT: hypervisor
(XEN) rax: 0000000000000060   rbx: 0000000000000000   rcx: 0101010101010101
(XEN) rdx: 0000000000000020   rsi: 3333333333333333   rdi: ffff82d04080b820
(XEN) rbp: ffff83407b80fce0   rsp: ffff83407b80fcb8   r8:  3333333333333333
(XEN) r9:  0000000000000001   r10: 0000000000000001   r11: 0101010101010101
(XEN) r12: ffff83202e7b0810   r13: ffff82d04093c480   r14: ffff82d040800040
(XEN) r15: ffff83202ef12040   cr0: 000000008005003b   cr4: 00000000007526e0
(XEN) cr3: 0000000059c16000   cr2: 0000000000000000
(XEN) fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) Xen code around <ffff82d04023be76> (xfree+0x150/0x1f7):
(XEN)  f8 01 0f 8e ee fe ff ff <0f> 0b 0f 0b 0f 0b 48 b8 ff ff ff ff ff 82 ff ff
(XEN) Xen stack trace from rsp=ffff83407b80fcb8:
(XEN)    ffff83202e7c1df0 ffff83202e7b0710 ffff82d04093c480 ffff82d040800040
(XEN)    ffff83202ef12040 ffff83407b80fcf0 ffff82d040248795 ffff83407b80fd70
(XEN)    ffff82d040259169 ffff83202e7b0710 ffff83202e7b0810 ffff83202e7b06d0
(XEN)    0000000000000082 ffff83202e7c1df0 00000000402558e5 ffff83202ef12040
(XEN)    0000000000000000 0000003000000000 ffff83202ef120e0 ffff83202e7c1d30
(XEN)    0000000000000000 0000000000000030 ffff83202ef0506c ffff83407b80fda8
(XEN)    ffff82d0402430ca 0000000000000000 0000000000000030 ffff82d040818430
(XEN)    0000000000008007 0000000000008000 ffff83407b80fdd8 ffff82d04021d402
(XEN)    ffff82d040818628 ffff82d040818620 ffff82d040818430 0000000000008007
(XEN)    ffff83407b80fe20 ffff82d040229fc3 0000000000000000 0000000000000030
(XEN)    0000000000000001 ffff82d0409221f0 0000004fee5e3000 0000000000000030
(XEN)    0000000000000030 ffff83407b80fe38 ffff82d040204df7 0000000000000003
(XEN)    ffff83407b80fe48 ffff82d040204e33 ffff83407b80fe58 ffff82d040204e43
(XEN)    ffff83407b80fe70 ffff82d040231517 ffff83202ef051a0 ffff83407b80fe88
(XEN)    ffff82d040231cc5 ffff83202ef051e0 ffff83407b80feb8 ffff82d040231f42
(XEN)    0000000000000030 ffff82d04092a780 0000000000007fff 0000000000000030
(XEN)    ffff83407b80fef0 ffff82d040320b60 ffff82d040320ad3 ffff83202ef11000
(XEN)    0000000000000000 0000000000000001 00000033eab4f2aa ffff83407b80fde8
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) Xen call trace:
(XEN)    [<ffff82d04023be76>] R xfree+0x150/0x1f7
(XEN)    [<ffff82d040248795>] F common/sched/credit2.c#csched2_free_udata+0xc/0xe
(XEN)    [<ffff82d040259169>] F schedule_cpu_rm+0x38d/0x4b3
(XEN)    [<ffff82d0402430ca>] F common/sched/cpupool.c#cpupool_unassign_cpu_finish+0x17e/0x22c
(XEN)    [<ffff82d04021d402>] F common/sched/cpupool.c#cpu_callback+0x3fb/0x4dc
(XEN)    [<ffff82d040229fc3>] F notifier_call_chain+0x6b/0x96
(XEN)    [<ffff82d040204df7>] F common/cpu.c#cpu_notifier_call_chain+0x1b/0x33
(XEN)    [<ffff82d040204e33>] F common/cpu.c#_take_cpu_down+0x24/0x2b
(XEN)    [<ffff82d040204e43>] F common/cpu.c#take_cpu_down+0x9/0x10
(XEN)    [<ffff82d040231517>] F common/stop_machine.c#stopmachine_action+0x86/0x96
(XEN)    [<ffff82d040231cc5>] F common/tasklet.c#do_tasklet_work+0x72/0xa5
(XEN)    [<ffff82d040231f42>] F do_tasklet+0x58/0x8a
(XEN)    [<ffff82d040320b60>] F arch/x86/domain.c#idle_loop+0x8d/0xee
(XEN) 
(XEN) 
(XEN) ****************************************
(XEN) Panic on CPU 48:
(XEN) Assertion '!in_irq() && (local_irq_is_enabled() || num_online_cpus() <= 1)' failed at common/xmalloc_tlsf.c:704
(XEN) ****************************************
(XEN) 
(XEN) Reboot in five seconds...

^ permalink raw reply	[relevance 3%]

* Xen on rk3399
@ 2022-07-11 18:38  3% Brad Churchwell
  0 siblings, 0 replies; 200+ results
From: Brad Churchwell @ 2022-07-11 18:38 UTC (permalink / raw)
  To: xen-devel

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

Hello,

I've been trying to get Xen to boot dom0 with my kernel for weeks on an
rk3399 based board and thought I'd reach out for help. It looks like either
Xen is not properly recreating the device tree or the interrupt controller
is just failing. The hypervisor boots but falls to initramfs because it
cannot find the root device (nvme on pcie). Any help would be greatly
appreciated. Here is the complete boot log

DDR Version 1.20 20190314
In
soft reset
SRX
channel 0
CS = 0
MR0=0x98
MR4=0x2
MR5=0xFF
MR8=0x10
MR12=0x72
MR14=0x72
MR18=0x0
MR19=0x0
MR24=0x8
MR25=0x0
channel 1
CS = 0
MR0=0x98
MR4=0x2
MR5=0xFF
MR8=0x10
MR12=0x72
MR14=0x72
MR18=0x0
MR19=0x0
MR24=0x8
MR25=0x0
channel 0 training pass!
channel 1 training pass!
change freq to 400MHz 0,1
channel 0
CS = 0
MR0=0x98
MR4=0x2
MR5=0xFF
MR8=0x10
MR12=0x72
MR14=0x72
MR18=0x0
MR19=0x0
MR24=0x8
MR25=0x0
channel 1
CS = 0
MR0=0x98
MR4=0x2
MR5=0xFF
MR8=0x10
MR12=0x72
MR14=0x72
MR18=0x0
MR19=0x0
MR24=0x8
MR25=0x0
channel 0 training pass!
channel 1 training pass!
change freq to 800MHz 1,0
Channel 0: LPDDR4,800MHz
Bus Width=32 Col=10 Bank=8 Row=16 CS=1 Die Bus-Width=16 Size=2048MB
Channel 1: LPDDR4,800MHz
Bus Width=32 Col=10 Bank=8 Row=16 CS=1 Die Bus-Width=16 Size=2048MB
256B stride
ch 0 ddrconfig = 0x101, ddrsize = 0x40
ch 1 ddrconfig = 0x101, ddrsize = 0x40
pmugrf_os_reg[2] = 0x32C1F2C1, stride = 0xD
OUT
Boot1: 2018-06-26, version: 1.14
CPUId = 0x0
ChipType = 0x10, 280
Spi_ChipId = ef6017
SpiBootInit:0
mmc0:cmd8,32
mmc0:cmd5,32
mmc0:cmd55,32
mmc0:cmd1,32
mmc0:cmd8,32
mmc0:cmd5,32
mmc0:cmd55,32
mmc0:cmd1,32
mmc0:cmd8,32
mmc0:cmd5,32
mmc0:cmd55,32
mmc0:cmd1,32
SdmmcInit=0 1
StorageInit ok = 23477
SecureMode = 0
SecureInit ret = 0, SecureMode = 0
GPT vendor signature is wrong
LoadTrust Addr:0x1800
No find bl30.bin
No find bl32.bin
Load uboot, ReadLba = 1000
Load OK, addr=0x200000, size=0xc3140
RunBL31 0x10000
NOTICE:  BL31: v1.3(debug):0e7a845
NOTICE:  BL31: Built : 16:13:46, Apr 17 2019
NOTICE:  BL31: Rockchip release version: v1.1
INFO:    GICv3 with legacy support detected. ARM GICV3 driver initialized
in EL3
INFO:    Using opteed sec cpu_context!
INFO:    boot cpu mask: 0
INFO:    plat_rockchip_pmu_init(1181): pd status 3e
INFO:    BL31: Initializing runtime services
WARNING: No OPTEE provided by BL2 boot loader, Booting device without OPTEE
initialization. SMC`s destined for OPTEE will return SMC_UNK
ERROR:   Error initializing runtime service opteed_fast
INFO:    BL31: Preparing for EL3 exit to normal world
INFO:    Entry point address = 0x200000
INFO:    SPSR = 0x3c9


U-Boot 2021.10 (Jul 11 2022 - 11:32:57 -0500)

SoC: Rockchip rk3399
Reset cause: RST
Model: Vamrs RK3399 ZAKU
DRAM:  3.9 GiB
PMIC:  RK808
MMC:   mmc@fe310000: 3, mmc@fe330000: 0
Loading Environment from FAT... In:    serial
Out:   serial
Err:   serial
Model: Vamrs RK3399 ZAKU
Net:   No ethernet found.
Hit any key to stop autoboot:  0
zaku =>
zaku => run boot_pci_enum; run nvme_init; fatload nvme 0:1 0x02000000
xen-uImage; fatload nvme 0:1 0x01f00000 rk3399-zaku.dtb;
1114184 bytes read in 8 ms (132.8 MiB/s)
57153 bytes read in 5 ms (10.9 MiB/s)
zaku => fatload nvme 0:1 0x03F80000 Image;fatload nvme 0:1 0x06000000
initrd.img-5.15.16-1-rockchip-g359ffc4bc727;bootm 0x02000000 - 0x00
27885576 bytes read in 75 ms (354.6 MiB/s)
8674182 bytes read in 28 ms (295.4 MiB/s)
## Booting kernel from Legacy Image at 02000000 ...
   Image Name:
   Image Type:   AArch64 Linux Kernel Image (uncompressed)
   Data Size:    1114120 Bytes = 1.1 MiB
   Load Address: 02000000
   Entry Point:  02000000
   Verifying Checksum ... OK
## Flattened Device Tree blob at 01f00000
   Booting using the fdt blob at 0x1f00000
   Loading Kernel Image
   Loading Device Tree to 00000000f1efd000, end 00000000f1f0df40 ... OK

Starting kernel ...

 Xen 4.17-unstable
(XEN) Xen version 4.17-unstable (root@) (aarch64-linux-gnu-gcc (Linaro GCC
7.3-2018.05) 7.3.1 20180425 [linaro-7.3-2018.05 revision d2912
(XEN) Latest ChangeSet:
(XEN) build-id: aaba62ac5bc435965722c47224a16d44f95847b9
(XEN) Processor: 00000000410fd034: "ARM Limited", variant: 0x0, part
0xd03,rev 0x4
(XEN) 64-bit Execution:
(XEN)   Processor Features: 0000000001002222 0000000000000000
(XEN)     Exception Levels: EL3:64+32 EL2:64+32 EL1:64+32 EL0:64+32
(XEN)     Extensions: FloatingPoint AdvancedSIMD GICv3-SysReg
(XEN)   Debug Features: 0000000010305106 0000000000000000
(XEN)   Auxiliary Features: 0000000000000000 0000000000000000
(XEN)   Memory Model Features: 0000000000001122 0000000000000000
(XEN)   ISA Features:  0000000000011120 0000000000000000
(XEN) 32-bit Execution:
(XEN)   Processor Features: 0000000000000131:0000000010011011
(XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
(XEN)     Extensions: GenericTimer Security
(XEN)   Debug Features: 0000000003010066
(XEN)   Auxiliary Features: 0000000000000000
(XEN)   Memory Model Features: 0000000010201105 0000000040000000
(XEN)                          0000000001260000 0000000002102211
(XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
(XEN)                 0000000001112131 0000000000011142 0000000000011121
(XEN) Using SMC Calling Convention v1.0
(XEN) Using PSCI v1.0
(XEN) SMP: Allowing 6 CPUs
(XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 24000 KHz
(XEN) GICv3 initialization:
(XEN)       gic_dist_addr=0x000000fee00000
(XEN)       gic_maintenance_irq=25
(XEN)       gic_rdist_stride=0
(XEN)       gic_rdist_regions=1
(XEN)       redistributor regions:
(XEN)         - region 0: 0x000000fef00000 - 0x000000fefc0000
(XEN) GICv3 compatible with GICv2 cbase 0x000000fff00000 vbase
0x000000fff20000
(XEN) GICv3: 288 lines, (IID 0001143b).
(XEN) GICv3: CPU0: Found redistributor in region 0 @000000004001c000
(XEN) XSM Framework v1.0.1 initialized
(XEN) Initialising XSM SILO mode
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Allocated console ring of 64 KiB.
(XEN) CPU0: Guest atomics will try 2 times before pausing the domain
(XEN) Bringing up CPU1
(XEN) GICv3: CPU1: Found redistributor in region 0 @000000004003c000
(XEN) CPU1: Guest atomics will try 3 times before pausing the domain
(XEN) CPU 1 booted.
(XEN) Bringing up CPU2
(XEN) GICv3: CPU2: Found redistributor in region 0 @000000004005c000
(XEN) CPU2: Guest atomics will try 3 times before pausing the domain
(XEN) CPU 2 booted.
(XEN) Bringing up CPU3
(XEN) GICv3: CPU3: Found redistributor in region 0 @000000004007c000
(XEN) CPU3: Guest atomics will try 3 times before pausing the domain
(XEN) CPU 3 booted.
(XEN) Bringing up CPU4
(XEN) CPU4 MIDR (0x00000000410fd082) does not match boot CPU MIDR
(0x00000000410fd034),
(XEN) hmp-unsafe turned on so tainting Xen and keep core on!!
(XEN) SANITY DIF: aa64mmfr0 0x1122 -> 0x1124
(XEN) SANITY DIF: ctr 0x84448004 -> 0x8444c004
(XEN) GICv3: CPU4: Found redistributor in region 0 @000000004009c000
(XEN) CPU4: Guest atomics will try 1 times before pausing the domain
(XEN) enabled workaround for: ARM erratum 1319537
(XEN) CPU 4 booted.
(XEN) Bringing up CPU5
(XEN) CPU5 MIDR (0x00000000410fd082) does not match boot CPU MIDR
(0x00000000410fd034),
(XEN) hmp-unsafe turned on so tainting Xen and keep core on!!
(XEN) SANITY DIF: aa64mmfr0 0x1122 -> 0x1124
(XEN) SANITY DIF: ctr 0x84448004 -> 0x8444c004
(XEN) GICv3: CPU5: Found redistributor in region 0 @00000000400bc000
(XEN) CPU5: Guest atomics will try 1 times before pausing the domain
(XEN) Brought up 6 CPUs
(XEN) CPU 5 booted.
(XEN) I/O virtualisation disabled
(XEN) P2M: 40-bit IPA with 40-bit PA and 8-bit VMID
(XEN) P2M: 3 levels with order-1 root, VTCR 0x0000000080023558
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Adding cpu 0 to runqueue 0
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 1 to runqueue 0
(XEN) Adding cpu 2 to runqueue 0
(XEN) Adding cpu 3 to runqueue 0
(XEN) Adding cpu 4 to runqueue 0
(XEN) Adding cpu 5 to runqueue 0
(XEN) alternatives: Patching with alt table 00000000002e5388 ->
00000000002e5e74
(XEN) **** No support for ARM_SMCCC_ARCH_WORKAROUND_1. ****
(XEN) **** Please update your firmware.                ****
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Loading d0 kernel from boot module @ 0000000003f80000
(XEN) Loading ramdisk from boot module @ 0000000006000000
(XEN) Allocating 1:1 mappings totalling 512MB for dom0:
(XEN) BANK[0] 0x00000020000000-0x00000040000000 (512MB)
(XEN) Grant table range: 0x00000002000000-0x00000002040000
(XEN) /pinctrl/pcie: Missing device_type
(XEN) /pinctrl/pcie: Missing device_type
(XEN) /pinctrl/pcie: Missing device_type
(XEN) Allocating PPI 16 for event channel interrupt
(XEN) d0: extended region 0: 0x2200000->0x20000000
(XEN) d0: extended region 1: 0x40000000->0xf8000000
(XEN) Loading zImage from 0000000003f80000 to
0000000020000000-0000000021aa8008
(XEN) Loading d0 initrd from 0000000006000000 to
0x0000000028200000-0x000000002a200000
(XEN) Loading d0 DTB to 0x0000000028000000-0x000000002800d5fb
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Scrubbing Free RAM in background
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) ***************************************************
(XEN) WARNING: HMP COMPUTING HAS BEEN ENABLED.
(XEN) It has implications on the security and stability of the system,
(XEN) unless the cpu affinity of all domains is specified.
(XEN) ***************************************************
(XEN) PLEASE SPECIFY dom0_mem PARAMETER - USING 512M FOR NOW
(XEN) ***************************************************
(XEN) 3... 2... 1...
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 356kB init memory.
(XEN) d0v0 Unhandled SMC/HVC: 0x84000050
(XEN) d0v0 Unhandled SMC/HVC: 0x8600ff01
(XEN) d0v0: vGICD: RAZ on reserved register offset 0x00000c
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER24
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER28
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER32
(XEN) d0v0: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v0 Unhandled SMC/HVC: 0x82000008
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 5.15.16-1-rockchip-g359ffc4bc727
(root@brad-ThinkCentre-M82) (aarch64-linux-gnu-gcc (Linaro GCC 7.3-2018.052
[    0.000000] Machine model: Vamrs RK3399 ZAKU
[    0.000000] printk: debug: ignoring loglevel setting.
[    0.000000] Xen 4.17 support found
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000020000000-0x000000003fffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000020000000-0x000000003fffffff]
[    0.000000] Initmem setup node 0 [mem
0x0000000020000000-0x000000003fffffff]
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 27 pages/cpu s69672 r8192 d32728 u110592
[    0.000000] pcpu-alloc: s69672 r8192 d32728 u110592 alloc=27*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
[    0.000000] Kernel command line: console=hvc0 earlyprintk=xen
clk_ignore_unused root=/dev/nvme0n1p2 rw init=/sbin/init rootwait rootfl
[    0.000000] Unknown kernel command line parameters "earlyprintk=xen",
will be passed to user space.
[    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288
bytes, linear)
[    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144
bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 452668K/524288K available (14016K kernel code, 2720K
rwdata, 4856K rodata, 5504K init, 553K bss, 71620K reserved,)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
[    0.000000] ftrace: allocating 54793 entries in 215 pages
[    0.000000] ftrace: allocated 215 pages with 6 groups
[    0.000000] trace event string verifier disabled
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6.
[    0.000000]  Rude variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is
25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: 256 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region
0:0x00000000fef00000
[    0.000000] random: get_random_bytes called from
start_kernel+0x44c/0x6bc with crng_init=0
[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (virt).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff
max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    0.000003] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every
4398046511097ns
[    0.004184] Console: colour dummy device 80x25
[    0.010034] printk: console [hvc0] enabled
[    0.010272] Calibrating delay loop (skipped), value calculated using
timer frequency.. 48.00 BogoMIPS (lpj=96000)
[    0.010509] pid_max: default: 32768 minimum: 301
[    0.011188] LSM: Security Framework initializing
[    0.011384] Yama: becoming mindful.
[    0.011799] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes,
linear)
[    0.012105] Mountpoint-cache hash table entries: 1024 (order: 1, 8192
bytes, linear)
[    0.027498] xen:grant_table: Grant tables using version 1 layout
[    0.027843] Grant table initialized
[    0.028195] xen:events: Using FIFO-based ABI
[    0.028613] Xen: initializing cpu0
[    0.029559] rcu: Hierarchical SRCU implementation.
[    0.038337] smp: Bringing up secondary CPUs ...
(XEN) d0v1: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v2: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v3: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v4: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v5: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    0.042396] Detected VIPT I-cache on CPU1
[    0.042606] GICv3: CPU1: found redistributor 1 region
0:0x00000000fef20000
[    0.043215] Xen: initializing cpu1
[    0.043511] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.047957] Detected VIPT I-cache on CPU2
[    0.048177] GICv3: CPU2: found redistributor 2 region
0:0x00000000fef40000
[    0.048778] Xen: initializing cpu2
[    0.049066] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.052901] Detected VIPT I-cache on CPU3
[    0.053120] GICv3: CPU3: found redistributor 3 region
0:0x00000000fef60000
[    0.053626] Xen: initializing cpu3
[    0.053907] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.062107] CPU features: detected: Spectre-v2
[    0.063039] CPU features: detected: Spectre-v4
[    0.063673] CPU features: detected: ARM errata 1165522, 1319367, or
1530923
[    0.067132] Detected PIPT I-cache on CPU4
[    0.072165] GICv3: CPU4: found redistributor 4 region
0:0x00000000fef80000
[    0.081044] Xen: initializing cpu4
[    0.086534] CPU4: Booted secondary processor 0x0000000004 [0x410fd082]
[    0.111175] Detected PIPT I-cache on CPU5
[    0.116450] GICv3: CPU5: found redistributor 5 region
0:0x00000000fefa0000
[    0.125174] Xen: initializing cpu5
[    0.130645] CPU5: Booted secondary processor 0x0000000005 [0x410fd082]
[    0.141980] smp: Brought up 1 node, 6 CPUs
[    0.144637] SMP: Total of 6 processors activated.
[    0.144881] CPU features: detected: 32-bit EL0 Support
[    0.145127] CPU features: detected: CRC32 instructions
[    0.151947] CPU: All CPU(s) started at EL1
[    0.155749] alternatives: patching kernel code
[    0.163024] devtmpfs: initialized
[    0.235277] Registered cp15_barrier emulation handler
[    0.238449] Registered setend emulation handler
[    0.239670] clocksource: jiffies: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.240040] futex hash table entries: 2048 (order: 5, 131072 bytes,
linear)
[    0.241754] pinctrl core: initialized pinctrl subsystem
[    0.243287] regulator-dummy: no parameters, enabled
[    0.246947] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.260401] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic
allocations
[    0.260878] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic
allocations
[    0.261294] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for
atomic allocations
[    0.261822] audit: initializing netlink subsys (disabled)
[    0.268125] audit: type=2000 audit(0.256:1): state=initialized
audit_enabled=0 res=1
[    0.278540] thermal_sys: Registered thermal governor 'fair_share'
[    0.278731] thermal_sys: Registered thermal governor 'step_wise'
[    0.279675] OF: /thermal-zones/cpu-thermal/cooling-maps/map0: could not
find phandle 6
[    0.280151] thermal_sys: Add a cooling_device property with at least one
device
[    0.280307] thermal_sys: failed to build thermal zone cpu-thermal: -2
[    0.283478] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.299995] ASID allocator initialised with 65536 entries
[    0.300424] xen:swiotlb_xen: Warning: only able to allocate 4 MB for
software IO TLB
[    0.303971] software IO TLB: mapped [mem
0x0000000022800000-0x0000000022c00000] (4MB)
[    0.310583] ------------[ cut here ]------------
[    0.310855] WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic-v3.c:1533
gic_irq_domain_select+0x70/0x12c
[    0.311156] Modules linked in:
[    0.311317] CPU: 0 PID: 1 Comm: swapper/0 Not tainted
5.15.16-1-rockchip-g359ffc4bc727 #1
[    0.311536] Hardware name: Vamrs RK3399 ZAKU (DT)
[    0.311673] pstate: 20000005 (nzCv daif -PAN -UAO -TCO -DIT -SSBS
BTYPE=--)
[    0.311890] pc : gic_irq_domain_select+0x70/0x12c
[    0.312063] lr : gic_irq_domain_select+0x6c/0x12c
[    0.312273] sp : ffffffc011b5b8c0
[    0.312385] x29: ffffffc011b5b8c0 x28: ffffff8021e37a80 x27:
ffffff8021e37a00
[    0.312634] x26: ffffff803feb92b0 x25: 0000000000000000 x24:
ffffffc011b5b9f8
[    0.312871] x23: ffffff8021c0c400 x22: ffffffc01120a000 x21:
ffffffc0118f6000
[    0.313111] x20: ffffffc011b5b9f8 x19: ffffff8021c0c400 x18:
000000000000000a
[    0.313350] x17: ffffffffffffffff x16: ffffffffffffffff x15:
ffffffffffffffff
[    0.313568] x14: ffffffffffffffff x13: ffffffffffffffff x12:
ffffffffffffffff
[    0.313805] x11: 0000000000000038 x10: 0101010101010101 x9 :
ffffffffffffffff
[    0.314042] x8 : 7f7f7f7f7f7f7f7f x7 : ff71646b6b6e7173 x6 :
0000000000000080
[    0.314278] x5 : 0000000000000000 x4 : 0000000000000000 x3 :
ffffffc011b5b90c
[    0.314515] x2 : ffffffc011b5b910 x1 : 00000000a110c8ee x0 :
00000000ffffffea
[    0.314752] Call trace:
[    0.314853]  gic_irq_domain_select+0x70/0x12c
[    0.315004]  irq_find_matching_fwspec+0x78/0xf4
[    0.315307]  irq_create_fwspec_mapping+0x4c/0x2d4
[    0.315476]  irq_create_of_mapping+0x6c/0xa4
[    0.315656]  of_irq_get+0x64/0xa4
[    0.315801]  of_irq_to_resource+0x48/0xfc
[    0.315953]  of_irq_to_resource_table+0x54/0x68
[    0.316166]  of_device_alloc+0x108/0x1b0
[    0.316316]  of_platform_device_create_pdata+0x7c/0xdc
[    0.316506]  of_platform_bus_create+0x3a0/0x468
[    0.316665]  of_platform_populate+0x100/0x118
[    0.316808]  of_platform_default_populate+0x40/0x50
[    0.316959]  of_platform_default_populate_init+0x7c/0xb4
[    0.317149]  do_one_initcall+0x94/0x1c4
[    0.317299]  kernel_init_freeable+0x2b0/0x2b8
[    0.317494]  kernel_init+0x28/0x120
[    0.317628]  ret_from_fork+0x10/0x20
[    0.317804] ---[ end trace 85c6a508ffafc11e ]---
[    0.318293] irq: no irq domain found for interrupt-controller !
[    0.390494] irq: type mismatch, failed to map hwirq-32 for
interrupt-controller!
[    0.401389] irq: type mismatch, failed to map hwirq-32 for
interrupt-controller!
[    0.403373] irq: type mismatch, failed to map hwirq-32 for
interrupt-controller!
[    0.413685] platform ff770000.syscon:phy@f780: Fixing up cyclic
dependency with fe330000.mmc
[    0.439170] platform ff940000.hdmi: Fixing up cyclic dependency with
ff8f0000.vop
[    0.440132] platform ff940000.hdmi: Fixing up cyclic dependency with
ff900000.vop
[    0.442114] irq: type mismatch, failed to map hwirq-32 for
interrupt-controller!
[    0.479376] rockchip-gpio ff720000.gpio0: probed /pinctrl/gpio0@ff720000
[    0.484466] rockchip-gpio ff730000.gpio1: probed /pinctrl/gpio1@ff730000
[    0.489044] rockchip-gpio ff780000.gpio2: probed /pinctrl/gpio2@ff780000
[    0.493295] rockchip-gpio ff788000.gpio3: probed /pinctrl/gpio3@ff788000
[    0.497205] rockchip-gpio ff790000.gpio4: probed /pinctrl/gpio4@ff790000
[    0.601234] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.602111] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.602269] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.602440] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.732446] cryptd: max_cpu_qlen set to 1000
[    0.965984] raid6: neonx8   gen()   343 MB/s
[    1.037514] raid6: neonx8   xor()   265 MB/s
[    1.108822] raid6: neonx4   gen()   358 MB/s
[    1.180595] raid6: neonx4   xor()   264 MB/s
[    1.251750] raid6: neonx2   gen()   332 MB/s
[    1.322968] raid6: neonx2   xor()   242 MB/s
[    1.394615] raid6: neonx1   gen()   289 MB/s
[    1.465958] raid6: neonx1   xor()   199 MB/s
[    1.537820] raid6: int64x8  gen()    87 MB/s
[    1.609578] raid6: int64x8  xor()    51 MB/s
[    1.681302] raid6: int64x4  gen()   107 MB/s
[    1.753475] raid6: int64x4  xor()    56 MB/s
[    1.824651] raid6: int64x2  gen()   182 MB/s
[    1.895619] raid6: int64x2  xor()   100 MB/s
[    1.966829] raid6: int64x1  gen()   136 MB/s
[    2.038152] raid6: int64x1  xor()    62 MB/s
[    2.038278] raid6: using algorithm neonx4 gen() 358 MB/s
[    2.038388] raid6: .... xor() 264 MB/s, rmw enabled
[    2.038485] raid6: using neon recovery algorithm
[    2.039515] xen:balloon: Initialising balloon driver
[    2.043846] vcc12v_dcin: 12000 mV, enabled
[    2.044876] reg-fixed-voltage vcc12v-dcin: vcc12v_dcin supplying
12000000uV
[    2.045966] vcc1v8_s0: 1800 mV, enabled
[    2.046981] reg-fixed-voltage vcc1v8-s0: vcc1v8_s0 supplying 1800000uV
[    2.047907] vcc5v0_sys: will resolve supply early: vin
[    2.048079] reg-fixed-voltage vcc5v0-sys: Looking up vin-supply from
device tree
[    2.048293] vcc5v0_sys: supplied by vcc12v_dcin
[    2.048447] vcc12v_dcin: could not add device link regulator.3: -ENOENT
[    2.048990] vcc5v0_sys: 5000 mV, enabled
[    2.049877] reg-fixed-voltage vcc5v0-sys: vcc5v0_sys supplying 5000000uV
[    2.051218] vcc_phy: no parameters, enabled
[    2.052029] reg-fixed-voltage vcc-phy-regulator: vcc_phy supplying 0uV
[    2.052969] vcc3v3_sys: will resolve supply early: vin
[    2.053173] reg-fixed-voltage vcc3v3-sys: Looking up vin-supply from
device tree
[    2.053379] vcc3v3_sys: supplied by vcc5v0_sys
[    2.053545] vcc5v0_sys: could not add device link regulator.5: -ENOENT
[    2.053932] vcc3v3_sys: 3300 mV, enabled
[    2.054924] reg-fixed-voltage vcc3v3-sys: vcc3v3_sys supplying 3300000uV
[    2.055842] rockchip-pinctrl pinctrl: unsupported driver strength 20
[    2.056049] rockchip-pinctrl pinctrl: pin_config_set op failed for pin
146
[    2.056203] reg-fixed-voltage vcc3v3-pcie-regulator: Error applying
setting, reverse things back
[    2.057192] vcc3v3_pcie: will resolve supply early: vin
[    2.057379] reg-fixed-voltage vcc3v3-pcie-regulator: Looking up
vin-supply from device tree
[    2.057575] vcc3v3_pcie: supplied by vcc3v3_sys
[    2.057760] vcc3v3_sys: could not add device link regulator.6: -ENOENT
[    2.058267] vcc3v3_pcie: 3300 mV, enabled
[    2.059496] reg-fixed-voltage vcc3v3-pcie-regulator: vcc3v3_pcie
supplying 3300000uV
[    2.061208] vcc5v0_usb: will resolve supply early: vin
[    2.061375] reg-fixed-voltage vcc5v0-usb-regulator: Looking up
vin-supply from device tree
[    2.061595] vcc5v0_usb: supplied by vcc5v0_sys
[    2.061736] vcc5v0_sys: could not add device link regulator.7: -ENOENT
[    2.062164] vcc5v0_usb: 5000 mV, enabled
[    2.063312] reg-fixed-voltage vcc5v0-usb-regulator: vcc5v0_usb supplying
5000000uV
[    2.064318] vcc_0v9: will resolve supply early: vin
[    2.064511] reg-fixed-voltage vcc-0v9: Looking up vin-supply from device
tree
[    2.064705] vcc_0v9: supplied by vcc3v3_sys
[    2.064902] vcc3v3_sys: could not add device link regulator.8: -ENOENT
[    2.065383] vcc_0v9: 900 mV, enabled
[    2.066280] reg-fixed-voltage vcc-0v9: vcc_0v9 supplying 900000uV
[    2.071921] iommu: Default domain type: Translated
[    2.072285] iommu: DMA domain TLB invalidation policy: strict mode
[    2.089090] SCSI subsystem initialized
[    2.097346] libata version 3.00 loaded.
[    2.098501] usbcore: registered new interface driver usbfs
[    2.098931] usbcore: registered new interface driver hub
[    2.099344] usbcore: registered new device driver usb
[    2.100020] mc: Linux media interface: v0.10
[    2.100319] videodev: Linux video capture interface: v2.00
[    2.100991] pps_core: LinuxPPS API ver. 1 registered
[    2.101145] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo
Giometti <giometti@linux.it>
[    2.101402] PTP clock support registered
[    2.107595] Advanced Linux Sound Architecture Driver Initialized.
[    2.111011] Bluetooth: Core ver 2.22
[    2.111358] NET: Registered PF_BLUETOOTH protocol family
[    2.111517] Bluetooth: HCI device and connection manager initialized
[    2.111680] Bluetooth: HCI socket layer initialized
[    2.111857] Bluetooth: L2CAP socket layer initialized
[    2.112069] Bluetooth: SCO socket layer initialized
[    2.112296] NetLabel: Initializing
[    2.112402] NetLabel:  domain hash size = 128
[    2.112517] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    2.113111] NetLabel:  unlabeled traffic allowed by default
[    2.122030] clocksource: Switched to clocksource arch_sys_counter
[    2.413055] VFS: Disk quotas dquot_6.6.0
[    2.414148] VFS: Dquot-cache hash table entries: 512 (order 0, 4096
bytes)
[    2.475712] NET: Registered PF_INET protocol family
[    2.476923] IP idents hash table entries: 8192 (order: 4, 65536 bytes,
linear)
[    2.482548] tcp_listen_portaddr_hash hash table entries: 256 (order: 1,
10240 bytes, linear)
[    2.483081] TCP established hash table entries: 4096 (order: 3, 32768
bytes, linear)
[    2.483542] TCP bind hash table entries: 4096 (order: 5, 131072 bytes,
linear)
[    2.484397] TCP: Hash tables configured (established 4096 bind 4096)
[    2.485284] UDP hash table entries: 256 (order: 2, 24576 bytes, linear)
[    2.485892] UDP-Lite hash table entries: 256 (order: 2, 24576 bytes,
linear)
[    2.487194] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    2.487492] PCI: CLS 0 bytes, default 64
[    2.490694] Trying to unpack rootfs image as initramfs...
[    3.097632] rootfs image is not initramfs (Decoding failed); looks like
an initrd
[    3.477246] Freeing initrd memory: 32768K
[    3.816771] Initialise system trusted keyrings
[    3.828487] workingset: timestamp_bits=46 max_order=17 bucket_order=0
[    4.594980] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    4.639877] fuse: init (API version 7.34)
[    4.692812] JFS: nTxBlock = 3790, nTxLock = 30323
[    4.875022] SGI XFS with ACLs, security attributes, realtime, verbose
warnings, quota, no debug enabled
[   10.116665] NET: Registered PF_ALG protocol family
[   10.117252] xor: measuring software checksum speed
[   10.145130]    8regs           :   361 MB/sec
[   10.165698]    32regs          :   482 MB/sec
[   10.191437]    arm64_neon      :   384 MB/sec
[   10.191569] xor: using function: 32regs (482 MB/sec)
[   10.192042] Key type asymmetric registered
[   10.192188] Asymmetric key parser 'x509' registered
[   10.194224] Block layer SCSI generic (bsg) driver version 0.4 loaded
(major 246)
[   10.200293] io scheduler mq-deadline registered
[   10.200447] io scheduler kyber registered
[   10.213640] phy phy-ff770000.syscon:phy@f780.0: Looking up phy-supply
from device tree
[   10.213957] phy phy-ff770000.syscon:phy@f780.0: Looking up phy-supply
property in node /syscon@ff770000/phy@f780 failed
[   10.222938] phy phy-ff770000.syscon:usb2phy@e450.1: Looking up
phy-supply from device tree
[   10.223420] vcc5v0_usb: could not add device link
phy-ff770000.syscon:usb2phy@e450.1: -ENOENT
[   10.228300] phy phy-ff770000.syscon:usb2phy@e450.2: Looking up
phy-supply from device tree
[   10.228648] phy phy-ff770000.syscon:usb2phy@e450.2: Looking up
phy-supply property in node /syscon@ff770000/usb2phy@e450/otg-port faid
[   10.237376] phy phy-ff770000.syscon:usb2phy@e460.3: Looking up
phy-supply from device tree
[   10.238041] vcc5v0_usb: could not add device link
phy-ff770000.syscon:usb2phy@e460.3: -ENOENT
[   10.242605] phy phy-ff770000.syscon:usb2phy@e460.4: Looking up
phy-supply from device tree
[   10.242946] phy phy-ff770000.syscon:usb2phy@e460.4: Looking up
phy-supply property in node /syscon@ff770000/usb2phy@e460/otg-port faid
[   10.247126] phy phy-ff770000.syscon:pcie-phy.5: Looking up phy-supply
from device tree
[   10.247400] phy phy-ff770000.syscon:pcie-phy.5: Looking up phy-supply
property in node /syscon@ff770000/pcie-phy failed
[   10.248209] phy phy-ff770000.syscon:pcie-phy.6: Looking up phy-supply
from device tree
[   10.248426] phy phy-ff770000.syscon:pcie-phy.6: Looking up phy-supply
property in node /syscon@ff770000/pcie-phy failed
[   10.249176] phy phy-ff770000.syscon:pcie-phy.7: Looking up phy-supply
from device tree
[   10.249393] phy phy-ff770000.syscon:pcie-phy.7: Looking up phy-supply
property in node /syscon@ff770000/pcie-phy failed
[   10.250343] phy phy-ff770000.syscon:pcie-phy.8: Looking up phy-supply
from device tree
[   10.250775] phy phy-ff770000.syscon:pcie-phy.8: Looking up phy-supply
property in node /syscon@ff770000/pcie-phy failed
[   10.254471] phy phy-ff7c0000.phy.9: Looking up phy-supply from device
tree
[   10.254748] phy phy-ff7c0000.phy.9: Looking up phy-supply property in
node /phy@ff7c0000/dp-port failed
[   10.255670] phy phy-ff7c0000.phy.10: Looking up phy-supply from device
tree
[   10.255872] phy phy-ff7c0000.phy.10: Looking up phy-supply property in
node /phy@ff7c0000/usb3-port failed
[   10.258831] phy phy-ff800000.phy.11: Looking up phy-supply from device
tree
[   10.259081] phy phy-ff800000.phy.11: Looking up phy-supply property in
node /phy@ff800000/dp-port failed
[   10.259972] phy phy-ff800000.phy.12: Looking up phy-supply from device
tree
[   10.260151] phy phy-ff800000.phy.12: Looking up phy-supply property in
node /phy@ff800000/usb3-port failed
[   10.282297] dma-pl330 ff6d0000.dma-controller: Loaded driver for PL330
DMAC-241330
[   10.282779] dma-pl330 ff6d0000.dma-controller:       DBUFF-32x8bytes
Num_Chans-6 Num_Peri-12 Num_Events-12
[   10.291532] dma-pl330 ff6e0000.dma-controller: Loaded driver for PL330
DMAC-241330
[   10.291829] dma-pl330 ff6e0000.dma-controller:       DBUFF-128x8bytes
Num_Chans-8 Num_Peri-20 Num_Events-16
[   10.300189] xen:xen_evtchn: Event-channel device installed
[   10.318364] Serial: 8250/16550 driver, 5 ports, IRQ sharing disabled
[   10.335497] rockchip-vop ff8f0000.vop: Adding to iommu group 2
[   10.340200] rockchip-vop ff900000.vop: Adding to iommu group 3
[   10.367059] rockchip-drm display-subsystem: bound ff8f0000.vop (ops
0xffffffc010e887e8)
[   10.367999] [drm] unsupported AFBC format[3231564e]
[   10.371622] rockchip-drm display-subsystem: bound ff900000.vop (ops
0xffffffc010e887e8)
[   10.394857] cacheinfo: Unable to detect cache hierarchy for CPU 0
[   10.400560] brd: module loaded
[   10.444804] loop: module loaded
[   10.448040] lkdtm: No crash points registered, enable through debugfs
[   10.481318] libphy: Fixed MDIO Bus: probed
[   10.482042] CAN device driver interface
[   10.484479] usbcore: registered new interface driver cdc_ether
[   10.484987] usbcore: registered new interface driver rndis_host
[   10.528254] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   10.528704] ehci-pci: EHCI PCI platform driver
[   10.529176] ehci-platform: EHCI generic platform driver
[   10.533146] ehci-platform fe380000.usb: EHCI Host Controller
[   10.534559] ehci-platform fe380000.usb: new USB bus registered, assigned
bus number 1
[   10.535808] ehci-platform fe380000.usb: irq 19, io mem 0xfe380000
[   10.549833] ehci-platform fe380000.usb: USB 2.0 started, EHCI 1.00
[   10.551250] usb usb1: New USB device found, idVendor=1d6b,
idProduct=0002, bcdDevice= 5.15
[   10.551441] usb usb1: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[   10.551591] usb usb1: Product: EHCI Host Controller
[   10.551705] usb usb1: Manufacturer: Linux
5.15.16-1-rockchip-g359ffc4bc727 ehci_hcd
[   10.551860] usb usb1: SerialNumber: fe380000.usb
[   10.555156] hub 1-0:1.0: USB hub found
[   10.555443] hub 1-0:1.0: 1 port detected
[   10.561186] ehci-platform fe3c0000.usb: EHCI Host Controller
[   10.562763] ehci-platform fe3c0000.usb: new USB bus registered, assigned
bus number 2
[   10.563759] ehci-platform fe3c0000.usb: irq 21, io mem 0xfe3c0000
[   10.577817] ehci-platform fe3c0000.usb: USB 2.0 started, EHCI 1.00
[   10.579010] usb usb2: New USB device found, idVendor=1d6b,
idProduct=0002, bcdDevice= 5.15
[   10.579200] usb usb2: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[   10.579353] usb usb2: Product: EHCI Host Controller
[   10.579467] usb usb2: Manufacturer: Linux
5.15.16-1-rockchip-g359ffc4bc727 ehci_hcd
[   10.579619] usb usb2: SerialNumber: fe3c0000.usb
[   10.582596] hub 2-0:1.0: USB hub found
[   10.582872] hub 2-0:1.0: 1 port detected
[   10.586210] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   10.586524] ohci-platform: OHCI generic platform driver
[   10.587848] ohci-platform fe3a0000.usb: Generic Platform OHCI controller
[   10.589672] ohci-platform fe3a0000.usb: new USB bus registered, assigned
bus number 3
[   10.590708] ohci-platform fe3a0000.usb: irq 20, io mem 0xfe3a0000
[   10.654476] usb usb3: New USB device found, idVendor=1d6b,
idProduct=0001, bcdDevice= 5.15
[   10.654689] usb usb3: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[   10.654841] usb usb3: Product: Generic Platform OHCI controller
[   10.654973] usb usb3: Manufacturer: Linux
5.15.16-1-rockchip-g359ffc4bc727 ohci_hcd
[   10.655120] usb usb3: SerialNumber: fe3a0000.usb
[   10.658033] hub 3-0:1.0: USB hub found
[   10.658329] hub 3-0:1.0: 1 port detected
[   10.661656] ohci-platform fe3e0000.usb: Generic Platform OHCI controller
[   10.663217] ohci-platform fe3e0000.usb: new USB bus registered, assigned
bus number 4
[   10.664185] ohci-platform fe3e0000.usb: irq 22, io mem 0xfe3e0000
[   10.726670] usb usb4: New USB device found, idVendor=1d6b,
idProduct=0001, bcdDevice= 5.15
[   10.726886] usb usb4: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[   10.727049] usb usb4: Product: Generic Platform OHCI controller
[   10.727181] usb usb4: Manufacturer: Linux
5.15.16-1-rockchip-g359ffc4bc727 ohci_hcd
[   10.727329] usb usb4: SerialNumber: fe3e0000.usb
[   10.730270] hub 4-0:1.0: USB hub found
[   10.730545] hub 4-0:1.0: 1 port detected
[   10.737209] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[   10.739611] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned
bus number 5
[   10.740395] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe64 hci version
0x110 quirks 0x0000000002010010
[   10.740805] xhci-hcd xhci-hcd.0.auto: irq 53, io mem 0xfe800000
[   10.742883] usb usb5: New USB device found, idVendor=1d6b,
idProduct=0002, bcdDevice= 5.15
[   10.743094] usb usb5: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[   10.743246] usb usb5: Product: xHCI Host Controller
[   10.743359] usb usb5: Manufacturer: Linux
5.15.16-1-rockchip-g359ffc4bc727 xhci-hcd
[   10.743512] usb usb5: SerialNumber: xhci-hcd.0.auto
[   10.746576] hub 5-0:1.0: USB hub found
[   10.746865] hub 5-0:1.0: 1 port detected
[   10.749054] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[   10.750454] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned
bus number 6
[   10.750677] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
[   10.751167] usb usb6: We don't know the algorithms for LPM for this
host, disabling LPM.
[   10.752007] usb usb6: New USB device found, idVendor=1d6b,
idProduct=0003, bcdDevice= 5.15
[   10.752187] usb usb6: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[   10.752337] usb usb6: Product: xHCI Host Controller
[   10.752451] usb usb6: Manufacturer: Linux
5.15.16-1-rockchip-g359ffc4bc727 xhci-hcd
[   10.752592] usb usb6: SerialNumber: xhci-hcd.0.auto
[   10.755365] hub 6-0:1.0: USB hub found
[   10.755669] hub 6-0:1.0: 1 port detected
[   10.758922] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[   10.760343] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned
bus number 7
[   10.761128] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe64 hci version
0x110 quirks 0x0000000002010010
[   10.762039] xhci-hcd xhci-hcd.1.auto: irq 54, io mem 0xfe900000
[   10.763994] usb usb7: New USB device found, idVendor=1d6b,
idProduct=0002, bcdDevice= 5.15
[   10.764191] usb usb7: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[   10.764342] usb usb7: Product: xHCI Host Controller
[   10.764455] usb usb7: Manufacturer: Linux
5.15.16-1-rockchip-g359ffc4bc727 xhci-hcd
[   10.764601] usb usb7: SerialNumber: xhci-hcd.1.auto
[   10.767411] hub 7-0:1.0: USB hub found
[   10.767696] hub 7-0:1.0: 1 port detected
[   10.769982] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[   10.771168] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned
bus number 8
[   10.771384] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[   10.771912] usb usb8: We don't know the algorithms for LPM for this
host, disabling LPM.
[   10.772717] usb usb8: New USB device found, idVendor=1d6b,
idProduct=0003, bcdDevice= 5.15
[   10.772896] usb usb8: New USB device strings: Mfr=3, Product=2,
SerialNumber=1
[   10.773046] usb usb8: Product: xHCI Host Controller
[   10.773160] usb usb8: Manufacturer: Linux
5.15.16-1-rockchip-g359ffc4bc727 xhci-hcd
[   10.773302] usb usb8: SerialNumber: xhci-hcd.1.auto
[   10.776389] hub 8-0:1.0: USB hub found
[   10.776678] hub 8-0:1.0: 1 port detected
[   10.784427] usbcore: registered new interface driver uas
[   10.785747] usbcore: registered new interface driver usb-storage
[   10.786109] usbcore: registered new interface driver ums-alauda
[   10.786423] usbcore: registered new interface driver ums-cypress
[   10.786758] usbcore: registered new interface driver ums-datafab
[   10.787095] usbcore: registered new interface driver ums_eneub6250
[   10.787409] usbcore: registered new interface driver ums-freecom
[   10.787719] usbcore: registered new interface driver ums-isd200
[   10.788017] usbcore: registered new interface driver ums-jumpshot
[   10.788326] usbcore: registered new interface driver ums-karma
[   10.788625] usbcore: registered new interface driver ums-onetouch
[   10.789023] usbcore: registered new interface driver ums-realtek
[   10.789333] usbcore: registered new interface driver ums-sddr09
[   10.789756] usbcore: registered new interface driver ums-sddr55
[   10.790070] usbcore: registered new interface driver ums-usbat
[   10.792802] usbcore: registered new interface driver iforce
[   10.793352] usbcore: registered new interface driver xpad
[   10.794485] usbcore: registered new interface driver usbtouchscreen
[   10.797315] i2c_dev: i2c /dev entries driver
[   10.816490] fan53555-regulator 0-0040: FAN53555 Option[8] Rev[1]
Detected!
[   10.818456] vdd_cpu_b: will resolve supply early: vin
[   10.818614] fan53555-regulator 0-0040: Looking up vin-supply from device
tree
[   10.818799] vdd_cpu_b: supplied by vcc5v0_sys
[   10.818944] vcc5v0_sys: could not add device link regulator.9: -ENOENT
[   10.822253] vdd_cpu_b: 712 <--> 1500 mV at 1000 mV, enabled
[   10.827044] fan53555-regulator 0-0041: FAN53555 Option[8] Rev[1]
Detected!
[   10.828780] vdd_gpu: will resolve supply early: vin
[   10.828939] fan53555-regulator 0-0041: Looking up vin-supply from device
tree
[   10.829117] vdd_gpu: supplied by vcc5v0_sys
[   10.829230] vcc5v0_sys: could not add device link regulator.10: -ENOENT
[   10.832556] vdd_gpu: 712 <--> 1500 mV at 1000 mV, enabled
[   10.841882] rk808 0-001b: chip id: 0x0
[   10.862081] rk808-regulator rk808-regulator: there is no dvs0 gpio
[   10.862548] rk808-regulator rk808-regulator: there is no dvs1 gpio
[   10.864173] vdd_center: will resolve supply early: vcc1
[   10.864337] rk808 0-001b: Looking up vcc1-supply from device tree
[   10.864503] vdd_center: supplied by vcc5v0_sys
[   10.864631] vcc5v0_sys: could not add device link regulator.11: -ENOENT
[   10.866313] vdd_center: 750 <--> 1350 mV at 900 mV, enabled
[   10.868084] vdd_cpu_l: will resolve supply early: vcc2
[   10.868241] rk808 0-001b: Looking up vcc2-supply from device tree
[   10.868402] vdd_cpu_l: supplied by vcc5v0_sys
[   10.868524] vcc5v0_sys: could not add device link regulator.12: -ENOENT
[   10.868888] vdd_cpu_l: 750 <--> 1350 mV at 900 mV, enabled
[   10.870335] vcc_ddr: will resolve supply early: vcc3
[   10.870485] rk808 0-001b: Looking up vcc3-supply from device tree
[   10.870646] vcc_ddr: supplied by vcc5v0_sys
[   10.870761] vcc5v0_sys: could not add device link regulator.13: -ENOENT
[   10.871149] vcc_ddr: at 5000 mV, enabled
[   10.873225] vcc_1v8: will resolve supply early: vcc4
[   10.873379] rk808 0-001b: Looking up vcc4-supply from device tree
[   10.873816] vcc_1v8: supplied by vcc5v0_sys
[   10.873940] vcc5v0_sys: could not add device link regulator.14: -ENOENT
[   10.874308] vcc_1v8: 1800 mV, enabled
[   10.876864] vcc1v8_dvp: will resolve supply early: vcc6
[   10.877025] rk808 0-001b: Looking up vcc6-supply from device tree
[   10.877180] vcc1v8_dvp: supplied by vcc5v0_sys
[   10.877300] vcc5v0_sys: could not add device link regulator.15: -ENOENT
[   10.878934] vcc1v8_dvp: 1800 mV, enabled
[   10.881114] vcca1v8_hdmi: will resolve supply early: vcc6
[   10.881268] rk808 0-001b: Looking up vcc6-supply from device tree
[   10.881721] vcca1v8_hdmi: supplied by vcc5v0_sys
[   10.881858] vcc5v0_sys: could not add device link regulator.16: -ENOENT
[   10.882897] vcca1v8_hdmi: 1800 mV, enabled
[   10.885121] vcca_1v8: will resolve supply early: vcc7
[   10.885284] rk808 0-001b: Looking up vcc7-supply from device tree
[   10.885610] vcca_1v8: supplied by vcc5v0_sys
[   10.885752] vcc5v0_sys: could not add device link regulator.17: -ENOENT
[   10.886785] vcca_1v8: 1800 mV, enabled
[   10.888911] vcc_sd: will resolve supply early: vcc9
[   10.889073] rk808 0-001b: Looking up vcc9-supply from device tree
[   10.889227] vcc_sd: supplied by vcc5v0_sys
[   10.889337] vcc5v0_sys: could not add device link regulator.18: -ENOENT
[   10.890587] vcc_sd: 1800 <--> 3300 mV at 3000 mV, enabled
[   10.892799] vcc3v0_sd: will resolve supply early: vcc9
[   10.892957] rk808 0-001b: Looking up vcc9-supply from device tree
[   10.893116] vcc3v0_sd: supplied by vcc5v0_sys
[   10.893261] vcc5v0_sys: could not add device link regulator.19: -ENOENT
[   10.894528] vcc3v0_sd: 3000 mV, enabled
[   10.896651] vcc_1v5: will resolve supply early: vcc10
[   10.896806] rk808 0-001b: Looking up vcc10-supply from device tree
[   10.896961] vcc_1v5: supplied by vcc5v0_sys
[   10.897073] vcc5v0_sys: could not add device link regulator.20: -ENOENT
[   10.898331] vcc_1v5: 1500 mV, enabled
[   10.900480] vcca0v9_hdmi: will resolve supply early: vcc7
[   10.900633] rk808 0-001b: Looking up vcc7-supply from device tree
[   10.900789] vcca0v9_hdmi: supplied by vcc5v0_sys
[   10.900910] vcc5v0_sys: could not add device link regulator.21: -ENOENT
[   10.901947] vcca0v9_hdmi: 900 mV, enabled
[   10.904130] vcc_3v0: will resolve supply early: vcc11
[   10.904283] rk808 0-001b: Looking up vcc11-supply from device tree
[   10.904440] vcc_3v0: supplied by vcc5v0_sys
[   10.904551] vcc5v0_sys: could not add device link regulator.22: -ENOENT
[   10.905603] vcc_3v0: 3000 mV, enabled
[   10.906825] vcc3v3_s3: will resolve supply early: vcc8
[   10.907071] rk808 0-001b: Looking up vcc8-supply from device tree
[   10.907238] vcc3v3_s3: supplied by vcc3v3_sys
[   10.907358] vcc3v3_sys: could not add device link regulator.23: -ENOENT
[   10.907702] vcc3v3_s3: at 3300 mV, enabled
[   10.908814] vcc3v3_s0: will resolve supply early: vcc12
[   10.908951] rk808 0-001b: Looking up vcc12-supply from device tree
[   10.909117] vcc3v3_s0: supplied by vcc3v3_sys
[   10.909238] vcc3v3_sys: could not add device link regulator.24: -ENOENT
[   10.909966] vcc3v3_s0: at 3300 mV, enabled
[   10.923748] rk808-rtc rk808-rtc: registered as rtc0
[   10.925890] rk808-rtc rk808-rtc: setting system clock to
2013-01-18T08:54:34 UTC (1358499274)
[   10.937312] rockchip-rga ff680000.rga: HW Version: 0x03.02
[   10.938723] rockchip-rga: probe of ff680000.rga failed with error -12
[   10.940550] usbcore: registered new interface driver uvcvideo
[   10.947281] rockchip-thermal ff260000.tsadc: failed to register sensor
0: -517
[   10.947553] rockchip-thermal ff260000.tsadc: failed to register
sensor[0] : error = -517
[   10.951347] dw_wdt ff848000.watchdog: No valid TOPs array specified
[   10.957666] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised:
dm-devel@redhat.com
[   10.958918] Bluetooth: HCI UART driver ver 2.3
[   10.959059] Bluetooth: HCI UART protocol H4 registered
[   10.959172] Bluetooth: HCI UART protocol ATH3K registered
[   10.959600] usbcore: registered new interface driver bfusb
[   10.960069] usbcore: registered new interface driver btusb
[   10.960865] cpu cpu0: OPP table can't be empty
[   10.963410] sdhci: Secure Digital Host Controller Interface driver
[   10.963573] sdhci: Copyright(c) Pierre Ossman
[   10.963674] Synopsys Designware Multimedia Card Interface Driver
[   10.966723] sdhci-pltfm: SDHCI platform and OF driver helper
[   10.969834] dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address
mode.
[   10.970158] dwmmc_rockchip fe310000.mmc: Using internal DMA controller.
[   10.970317] dwmmc_rockchip fe310000.mmc: Version ID is 270a
[   10.971055] dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 17,32
bit host data width,256 deep fifo
[   10.972116] dwmmc_rockchip fe310000.mmc: Looking up vmmc-supply from
device tree
[   10.972318] dwmmc_rockchip fe310000.mmc: Looking up vmmc-supply property
in node /mmc@fe310000 failed
[   10.972647] dwmmc_rockchip fe310000.mmc: Looking up vqmmc-supply from
device tree
[   10.972823] dwmmc_rockchip fe310000.mmc: Looking up vqmmc-supply
property in node /mmc@fe310000 failed
[   10.989783] ledtrig-cpu: registered to indicate activity on CPUs
[   10.990632] hid: raw HID events driver (C) Jiri Kosina
[   11.018314] usbcore: registered new interface driver usbhid
[   11.018612] usbhid: USB HID core driver
[   11.020835] rkvdec ff660000.video-codec: Adding to iommu group 1
[   11.068158] hantro-vpu ff650000.video-codec: Adding to iommu group 0
[   11.072492] irq: type mismatch, failed to map hwirq-32 for
interrupt-controller!
[   11.072712] hantro-vpu ff650000.video-codec: IRQ vdpu not found
[   11.074844] Zoran MJPEG board driver version 0.10.1
[   11.075255] Linux video codec intermediate layer: v0.2
[   11.075418] saa7146: register extension 'av7110'
[   11.083859] sdhci-arasan fe330000.mmc: Looking up vmmc-supply from
device tree
[   11.091432] usbcore: registered new interface driver snd-usb-audio
[   11.099500] sdhci-arasan fe330000.mmc: Looking up vmmc-supply property
in node /mmc@fe330000 failed
[   11.112425] u32 classifier
[   11.112499] sdhci-arasan fe330000.mmc: Looking up vqmmc-supply from
device tree
[   11.113020]     input device check on
[   11.114266] Initializing XFRM netlink socket
[   11.120358] sdhci-arasan fe330000.mmc: Looking up vqmmc-supply property
in node /mmc@fe330000 failed
[   11.121602] NET: Registered PF_INET6 protocol family
[   11.123037] usb 8-1: new SuperSpeed USB device number 2 using xhci-hcd
[   11.134670] Segment Routing with IPv6
[   11.135294] In-situ OAM (IOAM) with IPv6
[   11.135867] NET: Registered PF_PACKET protocol family
[   11.136112] NET: Registered PF_KEY protocol family
[   11.136230] mmc2: CQHCI version 5.10
[   11.136568] Bridge firewalling registered
[   11.136633] can: controller area network core
[   11.138034] NET: Registered PF_CAN protocol family
[   11.141093] Bluetooth: RFCOMM socket layer initialized
[   11.141809] Bluetooth: RFCOMM ver 1.11
[   11.142039] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   11.142209] Bluetooth: HIDP socket layer initialized
[   11.142338] 8021q: 802.1Q VLAN Support v1.8
[   11.142653] Key type dns_resolver registered
[   11.149920] registered taskstats version 1
[   11.150671] Loading compiled-in X.509 certificates
[   11.151208] random: fast init done
[   11.155983] usb 8-1: New USB device found, idVendor=152d,
idProduct=0561, bcdDevice= 0.01
[   11.156263] usb 8-1: New USB device strings: Mfr=1, Product=2,
SerialNumber=5
[   11.156439] usb 8-1: Product: JMS56x Series
[   11.156545] usb 8-1: Manufacturer: JMicron
[   11.156646] usb 8-1: SerialNumber: RANDOM__A0840143833E
[   11.168652] usb-storage 8-1:1.0: USB Mass Storage device detected
[   11.178360] scsi host0: usb-storage 8-1:1.0
[   11.196406] Btrfs loaded, crc32c=crc32c-generic, integrity-checker=on,
zoned=no, fsverity=no
[   11.197865] BTRFS: selftest: sectorsize: 4096  nodesize: 4096
[   11.198037] BTRFS: selftest: running btrfs free space cache tests
[   11.198203] BTRFS: selftest: running extent only tests
[   11.198401] BTRFS: selftest: running bitmap only tests
[   11.198583] BTRFS: selftest: running bitmap and extent tests
[   11.198850] BTRFS: selftest: running space stealing from bitmap to
extent tests
[   11.202503] mmc2: SDHCI controller on fe330000.mmc [fe330000.mmc] using
ADMA
[   11.206911] BTRFS: selftest: running extent buffer operation tests
[   11.207131] BTRFS: selftest: running btrfs_split_item tests
[   11.207469] BTRFS: selftest: running extent I/O tests
[   11.207579] BTRFS: selftest: running find delalloc tests
[   13.247196] BTRFS: selftest: running find_first_clear_extent_bit test
[   13.247996] BTRFS: selftest: running extent buffer bitmap tests
[   13.436326] BTRFS: selftest: running inode tests
[   13.436468] BTRFS: selftest: running btrfs_get_extent tests
[   13.437811] BTRFS: selftest: running hole first btrfs_get_extent test
[   13.438152] BTRFS: selftest: running outstanding_extents tests
[   13.438630] BTRFS: selftest: running qgroup tests
[   13.438747] BTRFS: selftest: running qgroup add/remove tests
[   13.439210] BTRFS: selftest: running qgroup multiple refs test
[   13.440099] BTRFS: selftest: running free space tree tests
[   13.880122] BTRFS: selftest: sectorsize: 4096  nodesize: 8192
[   13.880446] BTRFS: selftest: running btrfs free space cache tests
[   13.880648] BTRFS: selftest: running extent only tests
[   13.880883] BTRFS: selftest: running bitmap only tests
[   13.881123] BTRFS: selftest: running bitmap and extent tests
[   13.881545] BTRFS: selftest: running space stealing from bitmap to
extent tests
[   13.889765] BTRFS: selftest: running extent buffer operation tests
[   13.889923] BTRFS: selftest: running btrfs_split_item tests
[   13.890241] BTRFS: selftest: running extent I/O tests
[   13.890369] BTRFS: selftest: running find delalloc tests
[   15.931291] BTRFS: selftest: running find_first_clear_extent_bit test
[   15.932162] BTRFS: selftest: running extent buffer bitmap tests
[   16.532870] BTRFS: selftest: running inode tests
[   16.533138] BTRFS: selftest: running btrfs_get_extent tests
[   16.534815] BTRFS: selftest: running hole first btrfs_get_extent test
[   16.535219] BTRFS: selftest: running outstanding_extents tests
[   16.535736] BTRFS: selftest: running qgroup tests
[   16.535846] BTRFS: selftest: running qgroup add/remove tests
[   16.536300] BTRFS: selftest: running qgroup multiple refs test
[   16.537056] BTRFS: selftest: running free space tree tests
[   16.977337] BTRFS: selftest: sectorsize: 4096  nodesize: 16384
[   16.977814] BTRFS: selftest: running btrfs free space cache tests
[   16.978018] BTRFS: selftest: running extent only tests
[   16.978279] BTRFS: selftest: running bitmap only tests
[   16.978513] BTRFS: selftest: running bitmap and extent tests
[   16.978842] BTRFS: selftest: running space stealing from bitmap to
extent tests
[   16.987056] BTRFS: selftest: running extent buffer operation tests
[   16.987214] BTRFS: selftest: running btrfs_split_item tests
[   16.987541] BTRFS: selftest: running extent I/O tests
[   16.987667] BTRFS: selftest: running find delalloc tests
[   19.025223] BTRFS: selftest: running find_first_clear_extent_bit test
[   19.026172] BTRFS: selftest: running extent buffer bitmap tests
[   20.225626] BTRFS: selftest: running inode tests
[   20.225841] BTRFS: selftest: running btrfs_get_extent tests
[   20.227444] BTRFS: selftest: running hole first btrfs_get_extent test
[   20.227818] BTRFS: selftest: running outstanding_extents tests
[   20.228276] BTRFS: selftest: running qgroup tests
[   20.228399] BTRFS: selftest: running qgroup add/remove tests
[   20.228834] BTRFS: selftest: running qgroup multiple refs test
[   20.229952] BTRFS: selftest: running free space tree tests
[   20.669501] BTRFS: selftest: sectorsize: 4096  nodesize: 32768
[   20.669747] BTRFS: selftest: running btrfs free space cache tests
[   20.669903] BTRFS: selftest: running extent only tests
[   20.670123] BTRFS: selftest: running bitmap only tests
[   20.670366] BTRFS: selftest: running bitmap and extent tests
[   20.670625] BTRFS: selftest: running space stealing from bitmap to
extent tests
[   20.678498] BTRFS: selftest: running extent buffer operation tests
[   20.678644] BTRFS: selftest: running btrfs_split_item tests
[   20.678971] BTRFS: selftest: running extent I/O tests
[   20.679083] BTRFS: selftest: running find delalloc tests
[   22.716824] BTRFS: selftest: running find_first_clear_extent_bit test
[   22.717705] BTRFS: selftest: running extent buffer bitmap tests
[   25.119619] BTRFS: selftest: running inode tests
[   25.119942] BTRFS: selftest: running btrfs_get_extent tests
[   25.121224] BTRFS: selftest: running hole first btrfs_get_extent test
[   25.121825] BTRFS: selftest: running outstanding_extents tests
[   25.122316] BTRFS: selftest: running qgroup tests
[   25.122425] BTRFS: selftest: running qgroup add/remove tests
[   25.122860] BTRFS: selftest: running qgroup multiple refs test
[   25.123715] BTRFS: selftest: running free space tree tests
[   25.564237] BTRFS: selftest: sectorsize: 4096  nodesize: 65536
[   25.564448] BTRFS: selftest: running btrfs free space cache tests
[   25.564600] BTRFS: selftest: running extent only tests
[   25.564762] BTRFS: selftest: running bitmap only tests
[   25.564946] BTRFS: selftest: running bitmap and extent tests
[   25.565204] BTRFS: selftest: running space stealing from bitmap to
extent tests
[   25.573041] BTRFS: selftest: running extent buffer operation tests
[   25.573167] BTRFS: selftest: running btrfs_split_item tests
[   25.573626] BTRFS: selftest: running extent I/O tests
[   25.573739] BTRFS: selftest: running find delalloc tests
[   27.608826] BTRFS: selftest: running find_first_clear_extent_bit test
[   27.609668] BTRFS: selftest: running extent buffer bitmap tests
[   32.430665] BTRFS: selftest: running inode tests
[   32.431202] BTRFS: selftest: running btrfs_get_extent tests
[   32.432886] BTRFS: selftest: running hole first btrfs_get_extent test
[   32.433377] BTRFS: selftest: running outstanding_extents tests
[   32.434257] BTRFS: selftest: running qgroup tests
[   32.434373] BTRFS: selftest: running qgroup add/remove tests
[   32.434818] BTRFS: selftest: running qgroup multiple refs test
[   32.435655] BTRFS: selftest: running free space tree tests
[   32.877773] BTRFS: selftest: running extent_map tests
[   32.878137] BTRFS: selftest: running rmap tests
[   33.072074] rockchip-pcie f8000000.pcie: host bridge /pcie@f8000000
ranges:
[   33.073026] rockchip-pcie f8000000.pcie:      MEM
0x00fa000000..0x00fbdfffff -> 0x00fa000000
[   33.073259] rockchip-pcie f8000000.pcie:       IO
0x00fbe00000..0x00fbefffff -> 0x00fbe00000
[   33.077844] rockchip-pcie f8000000.pcie: Looking up vpcie12v-supply from
device tree
[   33.078083] rockchip-pcie f8000000.pcie: Looking up vpcie12v-supply
property in node /pcie@f8000000 failed
[   33.078823] rockchip-pcie f8000000.pcie: no vpcie12v regulator found
[   33.079068] rockchip-pcie f8000000.pcie: Looking up vpcie3v3-supply from
device tree
[   33.080295] rockchip-pcie f8000000.pcie: Looking up vpcie1v8-supply from
device tree
[   33.081188] rockchip-pcie f8000000.pcie: Looking up vpcie0v9-supply from
device tree
[   33.122020] genirq: Setting trigger mode 2 for irq 15 failed
(gic_set_type+0x0/0x138)
[   33.122820] irq: no irq domain found for interrupt-controller !
[   33.122995] rockchip-pcie f8000000.pcie: IRQ client not found
[   33.132257] rockchip-iodomain ff320000.syscon:io-domains: Looking up
pmu1830-supply from device tree
[   33.135488] rockchip-iodomain ff770000.syscon:io-domains: Looking up
bt656-supply from device tree
[   33.136399] rockchip-iodomain ff770000.syscon:io-domains: Looking up
audio-supply from device tree
[   33.136825] rockchip-iodomain ff770000.syscon:io-domains: Looking up
sdmmc-supply from device tree
[   33.138130] rockchip-iodomain ff770000.syscon:io-domains: Looking up
gpio1830-supply from device tree
[   33.154798] rockchip-drm display-subsystem: bound ff8f0000.vop (ops
0xffffffc010e887e8)
[   33.159530] rockchip-drm display-subsystem: bound ff900000.vop (ops
0xffffffc010e887e8)
[   33.161342] dwhdmi-rockchip ff940000.hdmi: Detected HDMI TX controller
v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
[   33.171366] rockchip-drm display-subsystem: bound ff940000.hdmi (ops
0xffffffc010e8c6c0)
[   33.180852] [drm] Initialized rockchip 1.0.0 20140818 for
display-subsystem on minor 0
[   33.183921] mali ff9a0000.gpu: No IRQ resource at index 1
[   33.184155] mali ff9a0000.gpu: IRQ search failed
[   33.184644] mali: probe of ff9a0000.gpu failed with error -2
[   33.190550] rockchip-thermal ff260000.tsadc: failed to register sensor
0: -517
[   33.190882] rockchip-thermal ff260000.tsadc: failed to register
sensor[0] : error = -517
[   33.200478] dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address
mode.
[   33.201294] dwmmc_rockchip fe310000.mmc: Using internal DMA controller.
[   33.201673] dwmmc_rockchip fe310000.mmc: Version ID is 270a
[   33.202201] dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 17,32
bit host data width,256 deep fifo
[   33.203308] dwmmc_rockchip fe310000.mmc: Looking up vmmc-supply from
device tree
[   33.203527] dwmmc_rockchip fe310000.mmc: Looking up vmmc-supply property
in node /mmc@fe310000 failed
[   33.204253] dwmmc_rockchip fe310000.mmc: Looking up vqmmc-supply from
device tree
[   33.204424] dwmmc_rockchip fe310000.mmc: Looking up vqmmc-supply
property in node /mmc@fe310000 failed
[   33.216884] rockchip-thermal ff260000.tsadc: failed to register sensor
0: -517
[   33.217686] rockchip-thermal ff260000.tsadc: failed to register
sensor[0] : error = -517
[   33.226865] dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address
mode.
[   33.227549] dwmmc_rockchip fe310000.mmc: Using internal DMA controller.
[   33.227708] dwmmc_rockchip fe310000.mmc: Version ID is 270a
[   33.228322] dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 17,32
bit host data width,256 deep fifo
[   33.229879] dwmmc_rockchip fe310000.mmc: Looking up vmmc-supply from
device tree
[   33.230089] dwmmc_rockchip fe310000.mmc: Looking up vmmc-supply property
in node /mmc@fe310000 failed
[   33.230767] dwmmc_rockchip fe310000.mmc: Looking up vqmmc-supply from
device tree
[   33.230963] dwmmc_rockchip fe310000.mmc: Looking up vqmmc-supply
property in node /mmc@fe310000 failed
[   33.268761] rockchip-thermal ff260000.tsadc: failed to register sensor
0: -517
[   33.274833] rockchip-thermal ff260000.tsadc: failed to register
sensor[0] : error = -517
[   33.299373] clk: Not disabling unused clocks
[   33.300367] ALSA device list:
[   33.300487]   #0: hdmi-sound
[   33.325969] Freeing unused kernel memory: 5504K
[   33.334276] Run /init as init process
[   33.334455]   with arguments:
[   33.334569]     /init
[   33.334643]   with environment:
[   33.334724]     HOME=/
[   33.334796]     TERM=linux
[   33.334872]     earlyprintk=xen
Loading, please wait...
Starting version 245.4-4ubuntu3
[   39.458844] rk_gmac-dwmac fe300000.ethernet: IRQ eth_wake_irq not found
[   39.459243] rk_gmac-dwmac fe300000.ethernet: IRQ eth_lpi not found
[   39.460311] rk_gmac-dwmac fe300000.ethernet: PTP uses main clock
[   39.460560] rk_gmac-dwmac fe300000.ethernet: Looking up phy-supply from
device tree
[   39.462867] rk_gmac-dwmac fe300000.ethernet: clock input or output?
(input).
[   39.463089] rk_gmac-dwmac fe300000.ethernet: TX delay(0x28).
[   39.463224] rk_gmac-dwmac fe300000.ethernet: RX delay(0x11).
[   39.463365] rk_gmac-dwmac fe300000.ethernet: integrated PHY? (no).
[   39.463717] rk_gmac-dwmac fe300000.ethernet: cannot get clock
clk_mac_speed
[   39.463995] rk_gmac-dwmac fe300000.ethernet: clock input from PHY
[   39.469266] rk_gmac-dwmac fe300000.ethernet: init for RGMII
[   39.531375] rk_gmac-dwmac fe300000.ethernet: User ID: 0x10, Synopsys ID:
0x35
[   39.540951] rk_gmac-dwmac fe300000.ethernet:         DWMAC1000
[   39.543024] rk_gmac-dwmac fe300000.ethernet: DMA HW capability register
supported
[   39.543220] rk_gmac-dwmac fe300000.ethernet: RX Checksum Offload Engine
supported
[   39.543358] rk_gmac-dwmac fe300000.ethernet: COE Type 2
[   39.543476] rk_gmac-dwmac fe300000.ethernet: TX Checksum insertion
supported
[   39.543614] rk_gmac-dwmac fe300000.ethernet: Wake-Up On Lan supported
[   39.544622] rk_gmac-dwmac fe300000.ethernet: Normal descriptors
[   39.545001] rk_gmac-dwmac fe300000.ethernet: Ring mode enabled
[   39.545138] rk_gmac-dwmac fe300000.ethernet: Enable RX Mitigation via HW
Watchdog Timer
[   39.545312] rk_gmac-dwmac fe300000.ethernet: device MAC address
6e:d0:b3:b7:fc:57
[   40.095457] libphy: stmmac: probed
[   40.096018] mdio_bus stmmac-0:00: attached PHY driver [unbound]
(mii_bus:phy_addr=stmmac-0:00, irq=POLL)
[   40.096233] mdio_bus stmmac-0:01: attached PHY driver [unbound]
(mii_bus:phy_addr=stmmac-0:01, irq=POLL)
[   40.338726] dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address
mode.
[   40.339251] dwmmc_rockchip fe310000.mmc: Using internal DMA controller.
[   40.339415] dwmmc_rockchip fe310000.mmc: Version ID is 270a
[   40.339902] dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 17,32
bit host data width,256 deep fifo
[   40.344800] dwmmc_rockchip fe310000.mmc: Looking up vmmc-supply from
device tree
[   40.345102] dwmmc_rockchip fe310000.mmc: Looking up vmmc-supply property
in node /mmc@fe310000 failed
[   40.345849] rockchip-thermal ff260000.tsadc: failed to register sensor
0: -517
[   40.345897] dwmmc_rockchip fe310000.mmc: Looking up vqmmc-supply from
device tree
[   40.346034] rockchip-thermal ff260000.tsadc: failed to register
sensor[0] : error = -517
[   40.346160] dwmmc_rockchip fe310000.mmc: Looking up vqmmc-supply
property in node /mmc@fe310000 failed

Begin: Loading essential drivers ... done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ...
done.
Begin: Running /scripts/local-premount ...
done.
[   64.586284] vcc3v3_pcie: disabling
Begin: Waiting for root file system ... Begin: Running /scripts/local-block
... done.
done.
Gave up waiting for root file system device.  Common problems:
 - Boot args (cat /proc/cmdline)
   - Check rootdelay= (did the system wait long enough?)
 - Missing modules (cat /proc/modules; ls /dev)
ALERT!  /dev/nvme0n1p2 does not exist.  Dropping to a shell!


BusyBox v1.30.1 (Ubuntu 1:1.30.1-4ubuntu6) built-in shell (ash)
Enter 'help' for a list of built-in commands.

(initramfs)



- Brad

[-- Attachment #2: Type: text/html, Size: 70955 bytes --]

^ permalink raw reply	[relevance 3%]

* [PATCH net-next v2 01/15] eth: remove copies of the NAPI_POLL_WEIGHT define
       [not found]     <20220428212323.104417-1-kuba@kernel.org>
@ 2022-04-28 21:23  4% ` Jakub Kicinski
  0 siblings, 0 replies; 200+ results
From: Jakub Kicinski @ 2022-04-28 21:23 UTC (permalink / raw)
  To: davem, pabeni
  Cc: edumazet, netdev, Jakub Kicinski, ulli.kroll, linus.walleij,
	mlindner, stephen, nbd, john, sean.wang, Mark-MC.Lee,
	matthias.bgg, grygorii.strashko, wei.liu, paul,
	prabhakar.mahadev-lad.rj, linux-arm-kernel, linux-mediatek,
	linux-omap, xen-devel

Defining local versions of NAPI_POLL_WEIGHT with the same
values in the drivers just makes refactoring harder.

Drop the special defines in a bunch of drivers where the
removal is relatively simple so grouping into one patch
does not impact reviewability.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---
CC: ulli.kroll@googlemail.com
CC: linus.walleij@linaro.org
CC: mlindner@marvell.com
CC: stephen@networkplumber.org
CC: nbd@nbd.name
CC: john@phrozen.org
CC: sean.wang@mediatek.com
CC: Mark-MC.Lee@mediatek.com
CC: matthias.bgg@gmail.com
CC: grygorii.strashko@ti.com
CC: wei.liu@kernel.org
CC: paul@xen.org
CC: prabhakar.mahadev-lad.rj@bp.renesas.com
CC: linux-arm-kernel@lists.infradead.org
CC: linux-mediatek@lists.infradead.org
CC: linux-omap@vger.kernel.org
CC: xen-devel@lists.xenproject.org
---
 drivers/net/ethernet/cortina/gemini.c         | 4 +---
 drivers/net/ethernet/marvell/skge.c           | 3 +--
 drivers/net/ethernet/marvell/sky2.c           | 3 +--
 drivers/net/ethernet/mediatek/mtk_star_emac.c | 3 +--
 drivers/net/ethernet/ti/davinci_emac.c        | 3 +--
 drivers/net/ethernet/ti/netcp_core.c          | 5 ++---
 drivers/net/xen-netback/interface.c           | 3 +--
 7 files changed, 8 insertions(+), 16 deletions(-)

diff --git a/drivers/net/ethernet/cortina/gemini.c b/drivers/net/ethernet/cortina/gemini.c
index 8014eb33937c..9e6de2f968fa 100644
--- a/drivers/net/ethernet/cortina/gemini.c
+++ b/drivers/net/ethernet/cortina/gemini.c
@@ -68,7 +68,6 @@ MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
 #define DEFAULT_GMAC_RXQ_ORDER		9
 #define DEFAULT_GMAC_TXQ_ORDER		8
 #define DEFAULT_RX_BUF_ORDER		11
-#define DEFAULT_NAPI_WEIGHT		64
 #define TX_MAX_FRAGS			16
 #define TX_QUEUE_NUM			1	/* max: 6 */
 #define RX_MAX_ALLOC_ORDER		2
@@ -2472,8 +2471,7 @@ static int gemini_ethernet_port_probe(struct platform_device *pdev)
 	netdev->max_mtu = 10236 - VLAN_ETH_HLEN;
 
 	port->freeq_refill = 0;
-	netif_napi_add(netdev, &port->napi, gmac_napi_poll,
-		       DEFAULT_NAPI_WEIGHT);
+	netif_napi_add(netdev, &port->napi, gmac_napi_poll, NAPI_POLL_WEIGHT);
 
 	ret = of_get_mac_address(np, mac);
 	if (!ret) {
diff --git a/drivers/net/ethernet/marvell/skge.c b/drivers/net/ethernet/marvell/skge.c
index cf03c67fbf40..c1e985416c0e 100644
--- a/drivers/net/ethernet/marvell/skge.c
+++ b/drivers/net/ethernet/marvell/skge.c
@@ -50,7 +50,6 @@
 #define PHY_RETRIES	        1000
 #define ETH_JUMBO_MTU		9000
 #define TX_WATCHDOG		(5 * HZ)
-#define NAPI_WEIGHT		64
 #define BLINK_MS		250
 #define LINK_HZ			HZ
 
@@ -3833,7 +3832,7 @@ static struct net_device *skge_devinit(struct skge_hw *hw, int port,
 		dev->features |= NETIF_F_HIGHDMA;
 
 	skge = netdev_priv(dev);
-	netif_napi_add(dev, &skge->napi, skge_poll, NAPI_WEIGHT);
+	netif_napi_add(dev, &skge->napi, skge_poll, NAPI_POLL_WEIGHT);
 	skge->netdev = dev;
 	skge->hw = hw;
 	skge->msg_enable = netif_msg_init(debug, default_msg);
diff --git a/drivers/net/ethernet/marvell/sky2.c b/drivers/net/ethernet/marvell/sky2.c
index ea16b1dd6a98..a1e907c85217 100644
--- a/drivers/net/ethernet/marvell/sky2.c
+++ b/drivers/net/ethernet/marvell/sky2.c
@@ -63,7 +63,6 @@
 #define TX_DEF_PENDING		63
 
 #define TX_WATCHDOG		(5 * HZ)
-#define NAPI_WEIGHT		64
 #define PHY_RETRIES		1000
 
 #define SKY2_EEPROM_MAGIC	0x9955aabb
@@ -4938,7 +4937,7 @@ static int sky2_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
 		}
 	}
 
-	netif_napi_add(dev, &hw->napi, sky2_poll, NAPI_WEIGHT);
+	netif_napi_add(dev, &hw->napi, sky2_poll, NAPI_POLL_WEIGHT);
 
 	err = register_netdev(dev);
 	if (err) {
diff --git a/drivers/net/ethernet/mediatek/mtk_star_emac.c b/drivers/net/ethernet/mediatek/mtk_star_emac.c
index 4cd0747edaff..95839fd84dab 100644
--- a/drivers/net/ethernet/mediatek/mtk_star_emac.c
+++ b/drivers/net/ethernet/mediatek/mtk_star_emac.c
@@ -30,7 +30,6 @@
 #define MTK_STAR_WAIT_TIMEOUT			300
 #define MTK_STAR_MAX_FRAME_SIZE			1514
 #define MTK_STAR_SKB_ALIGNMENT			16
-#define MTK_STAR_NAPI_WEIGHT			64
 #define MTK_STAR_HASHTABLE_MC_LIMIT		256
 #define MTK_STAR_HASHTABLE_SIZE_MAX		512
 
@@ -1551,7 +1550,7 @@ static int mtk_star_probe(struct platform_device *pdev)
 	ndev->netdev_ops = &mtk_star_netdev_ops;
 	ndev->ethtool_ops = &mtk_star_ethtool_ops;
 
-	netif_napi_add(ndev, &priv->napi, mtk_star_poll, MTK_STAR_NAPI_WEIGHT);
+	netif_napi_add(ndev, &priv->napi, mtk_star_poll, NAPI_POLL_WEIGHT);
 
 	return devm_register_netdev(dev, ndev);
 }
diff --git a/drivers/net/ethernet/ti/davinci_emac.c b/drivers/net/ethernet/ti/davinci_emac.c
index 9d1e98db308b..2a3e4e842fa5 100644
--- a/drivers/net/ethernet/ti/davinci_emac.c
+++ b/drivers/net/ethernet/ti/davinci_emac.c
@@ -113,7 +113,6 @@ static const char emac_version_string[] = "TI DaVinci EMAC Linux v6.1";
 #define EMAC_DEF_RX_NUM_DESC		(128)
 #define EMAC_DEF_MAX_TX_CH		(1) /* Max TX channels configured */
 #define EMAC_DEF_MAX_RX_CH		(1) /* Max RX channels configured */
-#define EMAC_POLL_WEIGHT		(64) /* Default NAPI poll weight */
 
 /* Buffer descriptor parameters */
 #define EMAC_DEF_TX_MAX_SERVICE		(32) /* TX max service BD's */
@@ -1949,7 +1948,7 @@ static int davinci_emac_probe(struct platform_device *pdev)
 
 	ndev->netdev_ops = &emac_netdev_ops;
 	ndev->ethtool_ops = &ethtool_ops;
-	netif_napi_add(ndev, &priv->napi, emac_poll, EMAC_POLL_WEIGHT);
+	netif_napi_add(ndev, &priv->napi, emac_poll, NAPI_POLL_WEIGHT);
 
 	pm_runtime_enable(&pdev->dev);
 	rc = pm_runtime_resume_and_get(&pdev->dev);
diff --git a/drivers/net/ethernet/ti/netcp_core.c b/drivers/net/ethernet/ti/netcp_core.c
index 16507bff652a..21b0e961eab5 100644
--- a/drivers/net/ethernet/ti/netcp_core.c
+++ b/drivers/net/ethernet/ti/netcp_core.c
@@ -24,7 +24,6 @@
 #include "netcp.h"
 
 #define NETCP_SOP_OFFSET	(NET_IP_ALIGN + NET_SKB_PAD)
-#define NETCP_NAPI_WEIGHT	64
 #define NETCP_TX_TIMEOUT	(5 * HZ)
 #define NETCP_PACKET_SIZE	(ETH_FRAME_LEN + ETH_FCS_LEN)
 #define NETCP_MIN_PACKET_SIZE	ETH_ZLEN
@@ -2096,8 +2095,8 @@ static int netcp_create_interface(struct netcp_device *netcp_device,
 	}
 
 	/* NAPI register */
-	netif_napi_add(ndev, &netcp->rx_napi, netcp_rx_poll, NETCP_NAPI_WEIGHT);
-	netif_tx_napi_add(ndev, &netcp->tx_napi, netcp_tx_poll, NETCP_NAPI_WEIGHT);
+	netif_napi_add(ndev, &netcp->rx_napi, netcp_rx_poll, NAPI_POLL_WEIGHT);
+	netif_tx_napi_add(ndev, &netcp->tx_napi, netcp_tx_poll, NAPI_POLL_WEIGHT);
 
 	/* Register the network device */
 	ndev->dev_id		= 0;
diff --git a/drivers/net/xen-netback/interface.c b/drivers/net/xen-netback/interface.c
index fe8e21ad8ed9..8e035374a370 100644
--- a/drivers/net/xen-netback/interface.c
+++ b/drivers/net/xen-netback/interface.c
@@ -42,7 +42,6 @@
 #include <xen/balloon.h>
 
 #define XENVIF_QUEUE_LENGTH 32
-#define XENVIF_NAPI_WEIGHT  64
 
 /* Number of bytes allowed on the internal guest Rx queue. */
 #define XENVIF_RX_QUEUE_BYTES (XEN_NETIF_RX_RING_SIZE/2 * PAGE_SIZE)
@@ -739,7 +738,7 @@ int xenvif_connect_data(struct xenvif_queue *queue,
 	atomic_set(&queue->inflight_packets, 0);
 
 	netif_napi_add(queue->vif->dev, &queue->napi, xenvif_poll,
-			XENVIF_NAPI_WEIGHT);
+			NAPI_POLL_WEIGHT);
 
 	queue->stalled = true;
 
-- 
2.34.1



^ permalink raw reply related	[relevance 4%]

* [PATCH net-next 01/14] eth: remove copies of the NAPI_POLL_WEIGHT define
       [not found]     <20220427154111.529975-1-kuba@kernel.org>
@ 2022-04-27 15:40  4% ` Jakub Kicinski
  0 siblings, 0 replies; 200+ results
From: Jakub Kicinski @ 2022-04-27 15:40 UTC (permalink / raw)
  To: davem, pabeni
  Cc: netdev, Jakub Kicinski, ulli.kroll, linus.walleij, mlindner,
	stephen, nbd, john, sean.wang, Mark-MC.Lee, matthias.bgg,
	grygorii.strashko, wei.liu, paul, prabhakar.mahadev-lad.rj,
	linux-arm-kernel, linux-mediatek, linux-omap, xen-devel

Defining local versions of NAPI_POLL_WEIGHT with the same
values in the drivers just makes refactoring harder.

Drop the special defines in a bunch of drivers where the
removal is relatively simple so grouping into one patch
does not impact reviewability.

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
---
CC: ulli.kroll@googlemail.com
CC: linus.walleij@linaro.org
CC: mlindner@marvell.com
CC: stephen@networkplumber.org
CC: nbd@nbd.name
CC: john@phrozen.org
CC: sean.wang@mediatek.com
CC: Mark-MC.Lee@mediatek.com
CC: matthias.bgg@gmail.com
CC: grygorii.strashko@ti.com
CC: wei.liu@kernel.org
CC: paul@xen.org
CC: prabhakar.mahadev-lad.rj@bp.renesas.com
CC: linux-arm-kernel@lists.infradead.org
CC: linux-mediatek@lists.infradead.org
CC: linux-omap@vger.kernel.org
CC: xen-devel@lists.xenproject.org
---
 drivers/net/ethernet/cortina/gemini.c         | 4 +---
 drivers/net/ethernet/marvell/skge.c           | 3 +--
 drivers/net/ethernet/marvell/sky2.c           | 3 +--
 drivers/net/ethernet/mediatek/mtk_star_emac.c | 3 +--
 drivers/net/ethernet/ti/davinci_emac.c        | 3 +--
 drivers/net/ethernet/ti/netcp_core.c          | 5 ++---
 drivers/net/xen-netback/interface.c           | 3 +--
 7 files changed, 8 insertions(+), 16 deletions(-)

diff --git a/drivers/net/ethernet/cortina/gemini.c b/drivers/net/ethernet/cortina/gemini.c
index 8014eb33937c..9e6de2f968fa 100644
--- a/drivers/net/ethernet/cortina/gemini.c
+++ b/drivers/net/ethernet/cortina/gemini.c
@@ -68,7 +68,6 @@ MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
 #define DEFAULT_GMAC_RXQ_ORDER		9
 #define DEFAULT_GMAC_TXQ_ORDER		8
 #define DEFAULT_RX_BUF_ORDER		11
-#define DEFAULT_NAPI_WEIGHT		64
 #define TX_MAX_FRAGS			16
 #define TX_QUEUE_NUM			1	/* max: 6 */
 #define RX_MAX_ALLOC_ORDER		2
@@ -2472,8 +2471,7 @@ static int gemini_ethernet_port_probe(struct platform_device *pdev)
 	netdev->max_mtu = 10236 - VLAN_ETH_HLEN;
 
 	port->freeq_refill = 0;
-	netif_napi_add(netdev, &port->napi, gmac_napi_poll,
-		       DEFAULT_NAPI_WEIGHT);
+	netif_napi_add(netdev, &port->napi, gmac_napi_poll, NAPI_POLL_WEIGHT);
 
 	ret = of_get_mac_address(np, mac);
 	if (!ret) {
diff --git a/drivers/net/ethernet/marvell/skge.c b/drivers/net/ethernet/marvell/skge.c
index cf03c67fbf40..c1e985416c0e 100644
--- a/drivers/net/ethernet/marvell/skge.c
+++ b/drivers/net/ethernet/marvell/skge.c
@@ -50,7 +50,6 @@
 #define PHY_RETRIES	        1000
 #define ETH_JUMBO_MTU		9000
 #define TX_WATCHDOG		(5 * HZ)
-#define NAPI_WEIGHT		64
 #define BLINK_MS		250
 #define LINK_HZ			HZ
 
@@ -3833,7 +3832,7 @@ static struct net_device *skge_devinit(struct skge_hw *hw, int port,
 		dev->features |= NETIF_F_HIGHDMA;
 
 	skge = netdev_priv(dev);
-	netif_napi_add(dev, &skge->napi, skge_poll, NAPI_WEIGHT);
+	netif_napi_add(dev, &skge->napi, skge_poll, NAPI_POLL_WEIGHT);
 	skge->netdev = dev;
 	skge->hw = hw;
 	skge->msg_enable = netif_msg_init(debug, default_msg);
diff --git a/drivers/net/ethernet/marvell/sky2.c b/drivers/net/ethernet/marvell/sky2.c
index ea16b1dd6a98..a1e907c85217 100644
--- a/drivers/net/ethernet/marvell/sky2.c
+++ b/drivers/net/ethernet/marvell/sky2.c
@@ -63,7 +63,6 @@
 #define TX_DEF_PENDING		63
 
 #define TX_WATCHDOG		(5 * HZ)
-#define NAPI_WEIGHT		64
 #define PHY_RETRIES		1000
 
 #define SKY2_EEPROM_MAGIC	0x9955aabb
@@ -4938,7 +4937,7 @@ static int sky2_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
 		}
 	}
 
-	netif_napi_add(dev, &hw->napi, sky2_poll, NAPI_WEIGHT);
+	netif_napi_add(dev, &hw->napi, sky2_poll, NAPI_POLL_WEIGHT);
 
 	err = register_netdev(dev);
 	if (err) {
diff --git a/drivers/net/ethernet/mediatek/mtk_star_emac.c b/drivers/net/ethernet/mediatek/mtk_star_emac.c
index 4cd0747edaff..95839fd84dab 100644
--- a/drivers/net/ethernet/mediatek/mtk_star_emac.c
+++ b/drivers/net/ethernet/mediatek/mtk_star_emac.c
@@ -30,7 +30,6 @@
 #define MTK_STAR_WAIT_TIMEOUT			300
 #define MTK_STAR_MAX_FRAME_SIZE			1514
 #define MTK_STAR_SKB_ALIGNMENT			16
-#define MTK_STAR_NAPI_WEIGHT			64
 #define MTK_STAR_HASHTABLE_MC_LIMIT		256
 #define MTK_STAR_HASHTABLE_SIZE_MAX		512
 
@@ -1551,7 +1550,7 @@ static int mtk_star_probe(struct platform_device *pdev)
 	ndev->netdev_ops = &mtk_star_netdev_ops;
 	ndev->ethtool_ops = &mtk_star_ethtool_ops;
 
-	netif_napi_add(ndev, &priv->napi, mtk_star_poll, MTK_STAR_NAPI_WEIGHT);
+	netif_napi_add(ndev, &priv->napi, mtk_star_poll, NAPI_POLL_WEIGHT);
 
 	return devm_register_netdev(dev, ndev);
 }
diff --git a/drivers/net/ethernet/ti/davinci_emac.c b/drivers/net/ethernet/ti/davinci_emac.c
index 9d1e98db308b..2a3e4e842fa5 100644
--- a/drivers/net/ethernet/ti/davinci_emac.c
+++ b/drivers/net/ethernet/ti/davinci_emac.c
@@ -113,7 +113,6 @@ static const char emac_version_string[] = "TI DaVinci EMAC Linux v6.1";
 #define EMAC_DEF_RX_NUM_DESC		(128)
 #define EMAC_DEF_MAX_TX_CH		(1) /* Max TX channels configured */
 #define EMAC_DEF_MAX_RX_CH		(1) /* Max RX channels configured */
-#define EMAC_POLL_WEIGHT		(64) /* Default NAPI poll weight */
 
 /* Buffer descriptor parameters */
 #define EMAC_DEF_TX_MAX_SERVICE		(32) /* TX max service BD's */
@@ -1949,7 +1948,7 @@ static int davinci_emac_probe(struct platform_device *pdev)
 
 	ndev->netdev_ops = &emac_netdev_ops;
 	ndev->ethtool_ops = &ethtool_ops;
-	netif_napi_add(ndev, &priv->napi, emac_poll, EMAC_POLL_WEIGHT);
+	netif_napi_add(ndev, &priv->napi, emac_poll, NAPI_POLL_WEIGHT);
 
 	pm_runtime_enable(&pdev->dev);
 	rc = pm_runtime_resume_and_get(&pdev->dev);
diff --git a/drivers/net/ethernet/ti/netcp_core.c b/drivers/net/ethernet/ti/netcp_core.c
index 16507bff652a..21b0e961eab5 100644
--- a/drivers/net/ethernet/ti/netcp_core.c
+++ b/drivers/net/ethernet/ti/netcp_core.c
@@ -24,7 +24,6 @@
 #include "netcp.h"
 
 #define NETCP_SOP_OFFSET	(NET_IP_ALIGN + NET_SKB_PAD)
-#define NETCP_NAPI_WEIGHT	64
 #define NETCP_TX_TIMEOUT	(5 * HZ)
 #define NETCP_PACKET_SIZE	(ETH_FRAME_LEN + ETH_FCS_LEN)
 #define NETCP_MIN_PACKET_SIZE	ETH_ZLEN
@@ -2096,8 +2095,8 @@ static int netcp_create_interface(struct netcp_device *netcp_device,
 	}
 
 	/* NAPI register */
-	netif_napi_add(ndev, &netcp->rx_napi, netcp_rx_poll, NETCP_NAPI_WEIGHT);
-	netif_tx_napi_add(ndev, &netcp->tx_napi, netcp_tx_poll, NETCP_NAPI_WEIGHT);
+	netif_napi_add(ndev, &netcp->rx_napi, netcp_rx_poll, NAPI_POLL_WEIGHT);
+	netif_tx_napi_add(ndev, &netcp->tx_napi, netcp_tx_poll, NAPI_POLL_WEIGHT);
 
 	/* Register the network device */
 	ndev->dev_id		= 0;
diff --git a/drivers/net/xen-netback/interface.c b/drivers/net/xen-netback/interface.c
index fe8e21ad8ed9..8e035374a370 100644
--- a/drivers/net/xen-netback/interface.c
+++ b/drivers/net/xen-netback/interface.c
@@ -42,7 +42,6 @@
 #include <xen/balloon.h>
 
 #define XENVIF_QUEUE_LENGTH 32
-#define XENVIF_NAPI_WEIGHT  64
 
 /* Number of bytes allowed on the internal guest Rx queue. */
 #define XENVIF_RX_QUEUE_BYTES (XEN_NETIF_RX_RING_SIZE/2 * PAGE_SIZE)
@@ -739,7 +738,7 @@ int xenvif_connect_data(struct xenvif_queue *queue,
 	atomic_set(&queue->inflight_packets, 0);
 
 	netif_napi_add(queue->vif->dev, &queue->napi, xenvif_poll,
-			XENVIF_NAPI_WEIGHT);
+			NAPI_POLL_WEIGHT);
 
 	queue->stalled = true;
 
-- 
2.34.1



^ permalink raw reply related	[relevance 4%]

* Re: xen-swiotlb issue when NVMe driver is enabled in Dom0 on ARM
  @ 2022-04-20 11:05  2%                   ` Rahul Singh
  0 siblings, 0 replies; 200+ results
From: Rahul Singh @ 2022-04-20 11:05 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: Christoph Hellwig, xen-devel, Bertrand Marquis, Julien Grall,
	Jan Beulich, jgross, boris.ostrovsky


[-- Attachment #1.1: Type: text/plain, Size: 3275 bytes --]

Hi Stefano,

Thanks again for helping us to find the root cause of the issue.

> On 20 Apr 2022, at 3:36 am, Stefano Stabellini <sstabellini@kernel.org> wrote:
>
>>> Then there is xen_swiotlb_init() which allocates some memory for
>>> swiotlb-xen at boot. It could lower the total amount of memory
>>> available, but if you disabled swiotlb-xen like I suggested,
>>> xen_swiotlb_init() still should get called and executed anyway at boot
>>> (it is called from arch/arm/xen/mm.c:xen_mm_init). So xen_swiotlb_init()
>>> shouldn't be the one causing problems.
>>>
>>> That's it -- there is nothing else in swiotlb-xen that I can think of.
>>>
>>> I don't have any good ideas, so I would only suggest to add more printks
>>> and report the results, for instance:
>>
>> As suggested I added the more printks but only difference I see is the size apart
>> from that everything looks same .
>>
>> Please find the attached logs for xen and native linux boot.
>
> One difference is that the order of the allocations is significantly
> different after the first 3 allocations. It is very unlikely but
> possible that this is an unrelated concurrency bug that only occurs on
> Xen. I doubt it.

I am not sure but just to confirm with you, I see below logs in every scenario.
SWIOTLB memory allocated by linux swiotlb and used by xen-swiotlb. Is that okay or it can cause some issue.

[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000f4000000-0x00000000f8000000] (64MB)

snip from int __ref xen_swiotlb_init(int verbose, bool early)
/*
     * IO TLB memory already allocated. Just use it.
     */
    if (io_tlb_start != 0) {
        xen_io_tlb_start = phys_to_virt(io_tlb_start);
        goto end;
    }


>
> I think you could try booting native and Xen with only 1 CPU enabled in
> both cases.
>
> For native, you can do that with maxcpus, e.g. maxcpus=1.
> For Xen, you can do that with dom0_max_vcpus=1. I don't think we need to
> reduce the number of pCPUs seen by Xen, but it could be useful to pass
> sched=null to avoid any scheduler effects. This is just for debugging of
> course.
>

I tried to boot the XEN with "dom0_max_vcpus=1” & “schedule-null” and
issue remains .

>
> In reality, the most likely explanation is that the issue is a memory
> corruption. Something somewhere is corrupting Linux memory and it just
> happens that we see it when calling dma_direct_alloc. This means it is
> going to be difficult to find as the only real clue is that it is
> swiotlb-xen that is causing it.

Agree we observe issue with xen-swiotlb dma ops only.
>
>
> I added more printks with the goal of detecting swiotlb-xen code paths
> that shouldn't be taken in a normal dom0 boot without domUs. For
> instance, range_straddles_page_boundary should always return zero and
> the dma_mask check in xen_swiotlb_alloc_coherent should always succeed.
>
> Fingers crossed we'll notice that the wrong path is taken just before
> the crash.

Please find the attached logs.

I captured the logs for Xen with and without (dom0_max_vcpus=1 & sched=null) and
also for native linux with and without (maxcpus=1)



Regards,
Rahul

[-- Attachment #1.2: Type: text/html, Size: 6283 bytes --]

[-- Attachment #2: xen_boot_with_dom0_max_vcpus_1_debug.log --]
[-- Type: application/octet-stream, Size: 76307 bytes --]

Last login: Tue Apr 19 17:41:06 on ttys006
rahsin01@C02ZX0G9LVDN ~ % telnet e123343.cambridge.arm.com 10020
Trying 10.1.194.25...
Connected to e123343.cambridge.arm.com.
Escape character is '^]'.

AIS target system port 10020 device /dev/ttyUSB1 [115200 N81]


FS0:\> xen.efi





































































































Xen 4.15.1 (c/s Fri Sep 10 09:03:24 2021 +0200 git:84fa99099b-dirty) EFI loader
Using configuration file 'xen.cfg'
Image-xen: 0x00000000fe47c000-0x00000000ffb3f200
PROGRESS CODE: V03101019 I0
 Xen 4.15.1
(XEN) Xen version 4.15.1 (xen-4.15+stableAUTOINC+84fa99099b-r0@ewaol) (aarch64-poky-linux-gcc (GCC) 11.2.0) debug=n 2021-09-10
(XEN) Latest ChangeSet: Fri Sep 10 09:03:24 2021 +0200 git:84fa99099b-dirty
(XEN) build-id: 783448c38aa6ff465e6b4631853bc73076bcf7e4
(XEN) Processor: 413fd0c1: "ARM Limited", variant: 0x3, part 0xd0c, rev 0x1
(XEN) 64-bit Execution:
(XEN)   Processor Features: 1100000011111112 0000000000000020
(XEN)     Exception Levels: EL3:64 EL2:64 EL1:64 EL0:64+32
(XEN)     Extensions: FloatingPoint AdvancedSIMD GICv3-SysReg
(XEN)   Debug Features: 0000000110305408 0000000000000000
(XEN)   Auxiliary Features: 0000000000000000 0000000000000000
(XEN)   Memory Model Features: 0000000000101125 0000000010212122
(XEN)   ISA Features:  0000100010211120 0000000000100001
(XEN) 32-bit Execution:
(XEN)   Processor Features: 10010131:10010000
(XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
(XEN)     Extensions: GenericTimer
(XEN)   Debug Features: 04010088
(XEN)   Auxiliary Features: 00000000
(XEN)   Memory Model Features: 10201105 40000000 01260000 02122211
(XEN)  ISA Features: 02101110 13112111 21232042 01112131 00010142 01011121
(XEN) Using SMC Calling Convention v1.2
(XEN) Using PSCI v1.1
(XEN) ACPI: GICC (acpi_id[0x1000] address[0x0] MPIDR[0x100000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1800] address[0x0] MPIDR[0x180000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1600] address[0x0] MPIDR[0x160000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1e00] address[0x0] MPIDR[0x1e0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0800] address[0x0] MPIDR[0x80000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2000] address[0x0] MPIDR[0x200000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0e00] address[0x0] MPIDR[0xe0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2600] address[0x0] MPIDR[0x260000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1100] address[0x0] MPIDR[0x110000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1900] address[0x0] MPIDR[0x190000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1700] address[0x0] MPIDR[0x170000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1f00] address[0x0] MPIDR[0x1f0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0900] address[0x0] MPIDR[0x90000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2100] address[0x0] MPIDR[0x210000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0f00] address[0x0] MPIDR[0xf0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2700] address[0x0] MPIDR[0x270000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1001] address[0x0] MPIDR[0x100100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1801] address[0x0] MPIDR[0x180100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1601] address[0x0] MPIDR[0x160100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1e01] address[0x0] MPIDR[0x1e0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0801] address[0x0] MPIDR[0x80100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2001] address[0x0] MPIDR[0x200100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0e01] address[0x0] MPIDR[0xe0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2601] address[0x0] MPIDR[0x260100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1101] address[0x0] MPIDR[0x110100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1901] address[0x0] MPIDR[0x190100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1701] address[0x0] MPIDR[0x170100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1f01] address[0x0] MPIDR[0x1f0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0901] address[0x0] MPIDR[0x90100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2101] address[0x0] MPIDR[0x210100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0f01] address[0x0] MPIDR[0xf0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2701] address[0x0] MPIDR[0x270100] enabled)
(XEN) 32 CPUs enabled, 32 CPUs total
(XEN) SMP: Allowing 32 CPUs
(XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 25000 KHz
(XEN) GICv3 initialization:
(XEN)       gic_dist_addr=0x00100100000000
(XEN)       gic_maintenance_irq=25
(XEN)       gic_rdist_stride=0
(XEN)       gic_rdist_regions=1
(XEN)       redistributor regions:
(XEN)         - region 0: 0x00100100140000 - 0x00100101140000
(XEN) GICv3: using at most 57344 LPIs on the host.
(XEN) GICv3: 704 lines, (IID 0201743b).
(XEN) GICv3: Found ITS @0x100100040000
(XEN) GICv3: Found ITS @0x100100060000
(XEN) GICv3: Found ITS @0x100100080000
(XEN) GICv3: Found ITS @0x1001000a0000
(XEN) GICv3: Found ITS @0x1001000c0000
(XEN) GICv3: Found ITS @0x1001000e0000
(XEN) GICv3: Found ITS @0x100100100000
(XEN) GICv3: Found ITS @0x100100120000
(XEN) GICv3: CPU0: Found redistributor in region 0 @0000000040434000
(XEN) XSM Framework v1.0.0 initialized
(XEN) Initialising XSM SILO mode
(XEN) Using scheduler: null Scheduler (null)
(XEN) Initializing null scheduler
(XEN) WARNING: This is experimental software in development.
(XEN) Use at your own risk.
(XEN) Defaulting to alternative key handling; send 'A' to switch to normal mode.
(XEN) Allocated console ring of 256 KiB.
(XEN) CPU0: Guest atomics will try 18 times before pausing the domain
(XEN) Bringing up CPU1
(XEN) GICv3: CPU1: Found redistributor in region 0 @0000000040634000
(XEN) CPU1: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 1 booted.
(XEN) Bringing up CPU2
(XEN) GICv3: CPU2: Found redistributor in region 0 @00000000405b4000
(XEN) CPU2: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 2 booted.
(XEN) Bringing up CPU3
(XEN) GICv3: CPU3: Found redistributor in region 0 @00000000407b4000
(XEN) CPU3: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 3 booted.
(XEN) Bringing up CPU4
(XEN) GICv3: CPU4: Found redistributor in region 0 @0000000040234000
(XEN) CPU4: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 4 booted.
(XEN) Bringing up CPU5
(XEN) GICv3: CPU5: Found redistributor in region 0 @0000000040834000
(XEN) CPU5: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 5 booted.
(XEN) Bringing up CPU6
(XEN) GICv3: CPU6: Found redistributor in region 0 @00000000403b4000
(XEN) CPU6: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 6 booted.
(XEN) Bringing up CPU7
(XEN) GICv3: CPU7: Found redistributor in region 0 @00000000409b4000
(XEN) CPU7: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 7 booted.
(XEN) Bringing up CPU8
(XEN) GICv3: CPU8: Found redistributor in region 0 @0000000040474000
(XEN) CPU8: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 8 booted.
(XEN) Bringing up CPU9
(XEN) GICv3: CPU9: Found redistributor in region 0 @0000000040674000
(XEN) CPU9: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 9 booted.
(XEN) Bringing up CPU10
(XEN) GICv3: CPU10: Found redistributor in region 0 @00000000405f4000
(XEN) CPU10: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 10 booted.
(XEN) Bringing up CPU11
(XEN) GICv3: CPU11: Found redistributor in region 0 @00000000407f4000
(XEN) CPU11: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 11 booted.
(XEN) Bringing up CPU12
(XEN) GICv3: CPU12: Found redistributor in region 0 @0000000040274000
(XEN) CPU12: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 12 booted.
(XEN) Bringing up CPU13
(XEN) GICv3: CPU13: Found redistributor in region 0 @0000000040874000
(XEN) CPU13: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 13 booted.
(XEN) Bringing up CPU14
(XEN) GICv3: CPU14: Found redistributor in region 0 @00000000403f4000
(XEN) CPU14: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 14 booted.
(XEN) Bringing up CPU15
(XEN) GICv3: CPU15: Found redistributor in region 0 @00000000409f4000
(XEN) CPU15: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 15 booted.
(XEN) Bringing up CPU16
(XEN) GICv3: CPU16: Found redistributor in region 0 @0000000040454000
(XEN) CPU16: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 16 booted.
(XEN) Bringing up CPU17
(XEN) GICv3: CPU17: Found redistributor in region 0 @0000000040654000
(XEN) CPU17: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 17 booted.
(XEN) Bringing up CPU18
(XEN) GICv3: CPU18: Found redistributor in region 0 @00000000405d4000
(XEN) CPU18: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 18 booted.
(XEN) Bringing up CPU19
(XEN) GICv3: CPU19: Found redistributor in region 0 @00000000407d4000
(XEN) CPU19: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 19 booted.
(XEN) Bringing up CPU20
(XEN) GICv3: CPU20: Found redistributor in region 0 @0000000040254000
(XEN) CPU20: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 20 booted.
(XEN) Bringing up CPU21
(XEN) GICv3: CPU21: Found redistributor in region 0 @0000000040854000
(XEN) CPU21: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 21 booted.
(XEN) Bringing up CPU22
(XEN) GICv3: CPU22: Found redistributor in region 0 @00000000403d4000
(XEN) CPU22: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 22 booted.
(XEN) Bringing up CPU23
(XEN) GICv3: CPU23: Found redistributor in region 0 @00000000409d4000
(XEN) CPU23: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 23 booted.
(XEN) Bringing up CPU24
(XEN) GICv3: CPU24: Found redistributor in region 0 @0000000040494000
(XEN) CPU24: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 24 booted.
(XEN) Bringing up CPU25
(XEN) GICv3: CPU25: Found redistributor in region 0 @0000000040694000
(XEN) CPU25: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 25 booted.
(XEN) Bringing up CPU26
(XEN) GICv3: CPU26: Found redistributor in region 0 @0000000040614000
(XEN) CPU26: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 26 booted.
(XEN) Bringing up CPU27
(XEN) GICv3: CPU27: Found redistributor in region 0 @0000000040814000
(XEN) CPU27: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 27 booted.
(XEN) Bringing up CPU28
(XEN) GICv3: CPU28: Found redistributor in region 0 @0000000040294000
(XEN) CPU28: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 28 booted.
(XEN) Bringing up CPU29
(XEN) GICv3: CPU29: Found redistributor in region 0 @0000000040894000
(XEN) CPU29: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 29 booted.
(XEN) Bringing up CPU30
(XEN) GICv3: CPU30: Found redistributor in region 0 @0000000040414000
(XEN) CPU30: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 30 booted.
(XEN) Bringing up CPU31
(XEN) GICv3: CPU31: Found redistributor in region 0 @0000000040a14000
(XEN) CPU31: Guest atomics will try 18 times before pausing the domain
(XEN) Brought up 32 CPUs
(XEN) CPU 31 booted.
(XEN) I/O virtualisation disabled
(XEN) P2M: 48-bit IPA with 48-bit PA and 16-bit VMID
(XEN) P2M: 4 levels with order-0 root, VTCR 0x800d3590
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) alternatives: Patching with alt table 00000000002cd0b0 -> 00000000002cd9e0
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Loading d0 kernel from boot module @ 00000000fe47c000
(XEN) Allocating 1:1 mappings totalling 8192MB for dom0:
(XEN) BANK[0] 0x00000098000000-0x000000f8000000 (1536MB)
(XEN) BANK[1] 0x00080000000000-0x00080080000000 (2048MB)
(XEN) BANK[2] 0x00080680000000-0x000807a0000000 (4608MB)
(XEN) Grant table range: 0x000807f6d92000-0x000807f6dd2000
(XEN) Allocating PPI 16 for event channel interrupt
(XEN) Loading zImage from 00000000fe47c000 to 0000000098000000-00000000996c3200
(XEN) Loading d0 DTB to 0x00000000a0000000-0x00000000a000027f
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: Errors
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 360kB init memory.
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER24
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER28
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER32
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER36
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER40
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER44
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER48
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER52
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER56
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER60
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER64
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER68
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER72
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER76
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER80
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER84
(XEN) d0v0: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard+ (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] Xen XEN_VERSION.XEN_SUBVERSION support found
[    0.000000] efi: EFI v2.50 by Xen
[    0.000000] efi: ACPI 2.0=0x807f6d92338 
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807F6D92338 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807F6D92288 0000AC (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807F6D92000 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807F6D92118 000144 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: STAO 0x00000807F6D92260 000025 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x8079efeee00-0x8079eff0fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000098000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807fa0dffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000098000000-0x00000000f7ffffff]
[    0.000000]   node   0: [mem 0x0000080000000000-0x000008007fffffff]
[    0.000000]   node   0: [mem 0x0000080680000000-0x000008079fffffff]
[    0.000000]   node   0: [mem 0x00000807f6d92000-0x00000807f6d92fff]
[    0.000000]   node   0: [mem 0x00000807f8db0000-0x00000807f8ddffff]
[    0.000000]   node   0: [mem 0x00000807fa0d0000-0x00000807fa0dffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000098000000-0x00000807fa0dffff]
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 31 pages/cpu s89240 r8192 d29544 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: ARM erratum 1418040
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2064447
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: console=hvc0 earlycon=xen rootwait root=PARTUUID=6a60524d-061d-454a-bfd1-38989910eccd
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000f4000000-0x00000000f8000000] (64MB)
[    0.000000] Memory: 8105760K/8388868K available (13568K kernel code, 1996K rwdata, 3476K rodata, 4160K init, 822K bss, 283108K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] ftrace: allocating 41306 entries in 162 pages
[    0.000000] ftrace: allocated 162 pages with 3 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: 672 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000100100140000
[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 3 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 4 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 5 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 6 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 7 -> Node 0
[    0.000000] ITS [mem 0x100100040000-0x10010005ffff]
[    0.000000] ITS@0x0000100100040000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100040000: allocated 524288 Devices @80000800000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100040000: allocated 32768 Interrupt Collections @80000190000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100060000-0x10010007ffff]
[    0.000000] ITS@0x0000100100060000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100060000: allocated 524288 Devices @80000c00000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100060000: allocated 32768 Interrupt Collections @800001b0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100080000-0x10010009ffff]
[    0.000000] ITS@0x0000100100080000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100080000: allocated 524288 Devices @80001000000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100080000: allocated 32768 Interrupt Collections @800001d0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000a0000-0x1001000bffff]
[    0.000000] ITS@0x00001001000a0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000a0000: allocated 524288 Devices @80001400000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000a0000: allocated 32768 Interrupt Collections @800001f0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000c0000-0x1001000dffff]
[    0.000000] ITS@0x00001001000c0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000c0000: allocated 524288 Devices @80001800000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000c0000: allocated 32768 Interrupt Collections @80000210000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000e0000-0x1001000fffff]
[    0.000000] ITS@0x00001001000e0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000e0000: allocated 524288 Devices @80001c00000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000e0000: allocated 32768 Interrupt Collections @80000230000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100100000-0x10010011ffff]
[    0.000000] ITS@0x0000100100100000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100100000: allocated 524288 Devices @80002000000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100100000: allocated 32768 Interrupt Collections @80000250000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100120000-0x10010013ffff]
[    0.000000] ITS@0x0000100100120000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100120000: allocated 524288 Devices @80002400000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100120000: allocated 32768 Interrupt Collections @80000270000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: CPU: 0 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:2247 its_init+0x398/0x690
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 5.10.27-ampere-lts-standard+ #1
[    0.000000] pstate: 60000085 (nZCv daIf -PAN -UAO -TCO BTYPE=--)
[    0.000000] pc : its_init+0x398/0x690
[    0.000000] lr : its_init+0x394/0x690
[    0.000000] sp : ffff8000114d3c50
[    0.000000] x29: ffff8000114d3c50 x28: 0000000000000000 
[    0.000000] x27: ffff8000114dc9c0 x26: ffff07ff8010a900 
[    0.000000] x25: 0000000000000000 x24: ffff08071efdd0c0 
[    0.000000] x23: ffff800011622350 x22: ffff07ff8010e400 
[    0.000000] x21: ffff8000114dc9c0 x20: ffff800011622000 
[    0.000000] x19: ffff8000117689f8 x18: ffffffffffffffff 
[    0.000000] x17: 0000000000000000 x16: 0000000000000000 
[    0.000000] x15: ffff07ff80176f1d x14: 0000000000000058 
[    0.000000] x13: 00000000000000c0 x12: 0000000000000000 
[    0.000000] x11: 0000000000000010 x10: ffff8000114fcfb0 
[    0.000000] x9 : ffff800010d36dc0 x8 : ffff07ff80290000 
[    0.000000] x7 : a2a2a2a2a2a2a2a2 x6 : ffff000000000000 
[    0.000000] x5 : fffffdffffe00000 x4 : ffff8000114dc9c0 
[    0.000000] x3 : ffff8000114ddaf0 x2 : 000000000000003d 
[    0.000000] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    0.000000] Call trace:
[    0.000000]  its_init+0x398/0x690
[    0.000000]  gic_init_bases+0x524/0x584
[    0.000000]  gic_acpi_init+0x134/0x278
[    0.000000]  acpi_match_madt+0x50/0x88
[    0.000000]  acpi_table_parse_entries_array+0x164/0x24c
[    0.000000]  acpi_table_parse_entries+0x48/0x70
[    0.000000]  acpi_table_parse_madt+0x34/0x40
[    0.000000]  __acpi_probe_device_table+0x90/0xec
[    0.000000]  irqchip_init+0x40/0x4c
[    0.000000]  init_IRQ+0xd0/0x104
[    0.000000]  start_kernel+0x354/0x554
[    0.000000] random: get_random_bytes called from __warn+0x128/0x1c0 with crng_init=0
[    0.000000] ---[ end trace 0000000000000000 ]---
[    0.000000] GICv3: using LPI property table @0x0000080000280000
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: CPU: 0 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    0.000000] pstate: 60000085 (nZCv daIf -PAN -UAO -TCO BTYPE=--)
[    0.000000] pc : its_cpu_init+0x824/0xb20
[    0.000000] lr : its_cpu_init+0x820/0xb20
[    0.000000] sp : ffff8000114d3c80
[    0.000000] x29: ffff8000114d3c80 x28: 0000000000000000 
[    0.000000] x27: 0000000000000001 x26: ffff800012000070 
[    0.000000] x25: fffffe1ffde0a400 x24: ffff800012000000 
[    0.000000] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    0.000000] x21: ffff8000117689f8 x20: ffff800011622350 
[    0.000000] x19: ffff800011622000 x18: ffffffffffffffff 
[    0.000000] x17: 0000000000000000 x16: 0000000000000000 
[    0.000000] x15: ffff8000914d3967 x14: 0000000000000058 
[    0.000000] x13: 00000000000000c0 x12: 0000000000000000 
[    0.000000] x11: 0000000000000010 x10: ffff8000114fcfb0 
[    0.000000] x9 : ffff800010d36dc0 x8 : 0000000000000000 
[    0.000000] x7 : ffff08071efefbc0 x6 : 0000000000000003 
[    0.000000] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    0.000000] x3 : 0000000000000010 x2 : 000000000000ffff 
[    0.000000] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    0.000000] Call trace:
[    0.000000]  its_cpu_init+0x824/0xb20
[    0.000000]  gic_init_bases+0x528/0x584
[    0.000000]  gic_acpi_init+0x134/0x278
[    0.000000]  acpi_match_madt+0x50/0x88
[    0.000000]  acpi_table_parse_entries_array+0x164/0x24c
[    0.000000]  acpi_table_parse_entries+0x48/0x70
[    0.000000]  acpi_table_parse_madt+0x34/0x40
[    0.000000]  __acpi_probe_device_table+0x90/0xec
[    0.000000]  irqchip_init+0x40/0x4c
[    0.000000]  init_IRQ+0xd0/0x104
[    0.000000]  start_kernel+0x354/0x554
[    0.000000] ---[ end trace f68728a0d3053b52 ]---
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000080000290000
[    0.000000] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.000000] ACPI GTDT: found 1 memory-mapped timer block(s).
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 25.00MHz (virt/phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000001] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000034] Console: colour dummy device 80x25
[    1.242836] printk: console [hvc0] enabled
[    1.247021] ACPI: Core revision 20200925
[    1.251334] ACPI BIOS Warning (bug): Incorrect checksum in table [IORT] - 0xF2, should be 0x0B (20200925/tbprint-173)
[    1.261909] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    1.272257] pid_max: default: 32768 minimum: 301
[    1.276961] LSM: Security Framework initializing
[    1.281691] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.289291] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.297989] xen:grant_table: Grant tables using version 1 layout
[    1.303916] Grant table initialized
[    1.307456] xen:events: Using FIFO-based ABI
[    1.311807] Xen: initializing cpu0
[    1.315296] rcu: Hierarchical SRCU implementation.
[    1.320256] Platform MSI: ITS@0x100100040000 domain created
[    1.325775] Platform MSI: ITS@0x100100060000 domain created
[    1.331433] Platform MSI: ITS@0x100100080000 domain created
[    1.337063] Platform MSI: ITS@0x1001000a0000 domain created
[    1.342695] Platform MSI: ITS@0x1001000c0000 domain created
[    1.348338] Platform MSI: ITS@0x1001000e0000 domain created
[    1.353979] Platform MSI: ITS@0x100100100000 domain created
[    1.359623] Platform MSI: ITS@0x100100120000 domain created
[    1.365267] PCI/MSI: ITS@0x100100040000 domain created
[    1.370473] PCI/MSI: ITS@0x100100060000 domain created
[    1.375681] PCI/MSI: ITS@0x100100080000 domain created
[    1.380889] PCI/MSI: ITS@0x1001000a0000 domain created
[    1.386098] PCI/MSI: ITS@0x1001000c0000 domain created
[    1.391306] PCI/MSI: ITS@0x1001000e0000 domain created
[    1.396514] PCI/MSI: ITS@0x100100100000 domain created
[    1.401723] PCI/MSI: ITS@0x100100120000 domain created
[    1.406933] EFI runtime services access via paravirt.
[    1.412076] smp: Bringing up secondary CPUs ...
[    1.416655] smp: Brought up 1 node, 1 CPU
[    1.420733] SMP: Total of 1 processors activated.
[    1.425508] CPU features: detected: Privileged Access Never
[    1.431149] CPU features: detected: LSE atomic instructions
[    1.436791] CPU features: detected: User Access Override
[    1.442173] CPU features: detected: 32-bit EL0 Support
[    1.447381] CPU features: detected: Common not Private translations
[    1.453719] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    1.462399] CPU features: detected: CRC32 instructions
[    1.467607] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    1.506380] CPU: All CPU(s) started at EL1
[    1.510378] alternatives: patching kernel code
[    1.515437] devtmpfs: initialized
[    1.518893] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    1.528537] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
[    1.535458] DMI not present or invalid.
[    1.539409] NET: Registered protocol family 16
[    1.543942] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    1.551055] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.558953] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    1.567154] thermal_sys: Registered thermal governor 'step_wise'
[    1.567263] Detected 15 PCC Subspaces
[    1.576920] Registering PCC driver as Mailbox controller
[    1.582308] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    1.589152] ASID allocator initialised with 65536 entries
[    1.594613] ACPI: bus type PCI registered
[    1.598688] Serial: AMBA PL011 UART driver
[    1.604529] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    1.611139] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    1.617902] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    1.624676] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    1.631790] cryptd: max_cpu_qlen set to 1000
[    1.704004] raid6: neonx8   gen()  7739 MB/s
[    1.776211] raid6: neonx8   xor()  6066 MB/s
[    1.848414] raid6: neonx4   gen()  7636 MB/s
[    1.920615] raid6: neonx4   xor()  6325 MB/s
[    1.992818] raid6: neonx2   gen()  7306 MB/s
[    2.065020] raid6: neonx2   xor()  5745 MB/s
[    2.137228] raid6: neonx1   gen()  5982 MB/s
[    2.209429] raid6: neonx1   xor()  4935 MB/s
[    2.281634] raid6: int64x8  gen()  3603 MB/s
[    2.353838] raid6: int64x8  xor()  2018 MB/s
[    2.426039] raid6: int64x4  gen()  4130 MB/s
[    2.498249] raid6: int64x4  xor()  2193 MB/s
[    2.570454] raid6: int64x2  gen()  3502 MB/s
[    2.642654] raid6: int64x2  xor()  1891 MB/s
[    2.714864] raid6: int64x1  gen()  2875 MB/s
[    2.787065] raid6: int64x1  xor()  1507 MB/s
[    2.791231] raid6: using algorithm neonx8 gen() 7739 MB/s
[    2.796699] raid6: .... xor() 6066 MB/s, rmw enabled
[    2.801734] raid6: using neon recovery algorithm
[    2.806458] ACPI: Added _OSI(Module Device)
[    2.810677] ACPI: Added _OSI(Processor Device)
[    2.815189] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.819963] ACPI: Added _OSI(Processor Aggregator Device)
[    2.825432] ACPI: Added _OSI(Linux-Dell-Video)
[    2.829946] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    2.835328] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    2.860978] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    2.873504] ACPI: Interpreter enabled
[    2.877067] ACPI: Using GIC for interrupt routing
[    2.881852] ACPI: MCFG table detected, 5 entries
[    2.886611] HEST: Table parsing has been initialized.
[    2.938226] ARMH0011:00: ttyAMA0 at MMIO 0x100002600000 (irq = 79, base_baud = 0) is a SBSA
[    2.965633] printk: console [ttyAMA0] enabled
[    2.971622] ARMH0011:01: ttyAMA1 at MMIO 0x100002620000 (irq = 80, base_baud = 0) is a SBSA
[    2.981931] ACPI: PCI Root Bridge [PCI0] (domain 000c [bus 00-ff])
[    2.988096] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    2.997297] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control
[    3.005121] acpi PNP0A08:00: MCFG quirk: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    3.018031] acpi PNP0A08:00: ECAM area [mem 0x33fff0000000-0x33ffffffffff] reserved by PNP0C02:00
[    3.026917] acpi PNP0A08:00: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff]
[    3.035136] PCI host bridge to bus 000c:00
[    3.039180] pci_bus 000c:00: root bus resource [mem 0x40000000-0x4fffffff window]
[    3.046770] pci_bus 000c:00: root bus resource [mem 0x300000000000-0x33ffdfffffff window]
[    3.055025] pci_bus 000c:00: root bus resource [bus 00-ff]
[    3.060595] pci 000c:00:00.0: [1def:e100] type 00 class 0x060000
[    3.066704] pci 000c:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.074309] pci 000c:00:01.0: [1def:e101] type 01 class 0x060400
[    3.080396] pci 000c:00:01.0: supports D1 D2
[    3.084665] pci 000c:00:01.0: PME# supported from D0 D1 D3hot
[    3.090533] pci 000c:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.099266] pci 000c:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    3.107437] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    3.119021] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    3.129602] pci 000c:00:01.0: BAR 8: assigned [mem 0x40000000-0x401fffff]
[    3.136414] pci 000c:00:01.0: BAR 9: assigned [mem 0x300000000000-0x3000001fffff 64bit pref]
[    3.144940] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    3.151250] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    3.157939] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    3.164271] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    3.170960] pci 000c:00:01.0: PCI bridge to [bus 01]
[    3.175974] pci 000c:00:01.0:   bridge window [mem 0x40000000-0x401fffff]
[    3.182854] pci 000c:00:01.0:   bridge window [mem 0x300000000000-0x3000001fffff 64bit pref]
[    3.191382] pci_bus 000c:00: resource 4 [mem 0x40000000-0x4fffffff window]
[    3.198304] pci_bus 000c:00: resource 5 [mem 0x300000000000-0x33ffdfffffff window]
[    3.205952] pci_bus 000c:01: resource 1 [mem 0x40000000-0x401fffff]
[    3.212274] pci_bus 000c:01: resource 2 [mem 0x300000000000-0x3000001fffff 64bit pref]
[    3.220321] ACPI: PCI Root Bridge [PCI1] (domain 000d [bus 00-ff])
[    3.226518] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    3.235725] acpi PNP0A08:01: PCIe port services disabled; not requesting _OSC control
[    3.243546] acpi PNP0A08:01: MCFG quirk: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    3.256460] acpi PNP0A08:01: ECAM area [mem 0x37fff0000000-0x37ffffffffff] reserved by PNP0C02:00
[    3.265344] acpi PNP0A08:01: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff]
[    3.273555] PCI host bridge to bus 000d:00
[    3.277604] pci_bus 000d:00: root bus resource [mem 0x50000000-0x5fffffff window]
[    3.285195] pci_bus 000d:00: root bus resource [mem 0x340000000000-0x37ffdfffffff window]
[    3.293450] pci_bus 000d:00: root bus resource [bus 00-ff]
[    3.299015] pci 000d:00:00.0: [1def:e100] type 00 class 0x060000
[    3.305107] pci 000d:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.312729] pci 000d:00:01.0: [1def:e101] type 01 class 0x060400
[    3.318806] pci 000d:00:01.0: supports D1 D2
[    3.323090] pci 000d:00:01.0: PME# supported from D0 D1 D3hot
[    3.328956] pci 000d:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.336659] pci 000d:01:00.0: [10de:1e89] type 00 class 0x030000
[    3.342652] pci 000d:01:00.0: reg 0x10: [mem 0x50000000-0x50ffffff]
[    3.348990] pci 000d:01:00.0: reg 0x14: [mem 0x340000000000-0x34000fffffff 64bit pref]
[    3.356996] pci 000d:01:00.0: reg 0x1c: [mem 0x340010000000-0x340011ffffff 64bit pref]
[    3.364979] pci 000d:01:00.0: reg 0x24: [io  0x57ffe000-0x57ffe07f]
[    3.371295] pci 000d:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    3.378129] pci 000d:01:00.0: PME# supported from D0 D3hot D3cold
[    3.384275] pci 000d:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.391901] pci 000d:01:00.1: [10de:10f8] type 00 class 0x040300
[    3.397947] pci 000d:01:00.1: reg 0x10: [mem 0x51000000-0x51003fff]
[    3.404377] pci 000d:01:00.1: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.411950] pci 000d:01:00.2: [10de:1ad8] type 00 class 0x0c0330
[    3.418003] pci 000d:01:00.2: reg 0x10: [mem 0x340012000000-0x34001203ffff 64bit pref]
[    3.426010] pci 000d:01:00.2: reg 0x1c: [mem 0x340012040000-0x34001204ffff 64bit pref]
[    3.434035] pci 000d:01:00.2: PME# supported from D0 D3hot D3cold
[    3.440163] pci 000d:01:00.2: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.447800] pci 000d:01:00.3: [10de:1ad9] type 00 class 0x0c8000
[    3.453850] pci 000d:01:00.3: reg 0x10: [mem 0x51004000-0x51004fff]
[    3.460249] pci 000d:01:00.3: PME# supported from D0 D3hot D3cold
[    3.466377] pci 000d:01:00.3: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.474017] pci 000d:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    3.495395] pci 000d:00:01.0: BAR 9: assigned [mem 0x340000000000-0x340017ffffff 64bit pref]
[    3.503831] pci 000d:00:01.0: BAR 8: assigned [mem 0x50000000-0x517fffff]
[    3.510669] pci 000d:00:01.0: BAR 7: no space for [io  size 0x1000]
[    3.517005] pci 000d:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    3.523690] pci 000d:01:00.0: BAR 1: assigned [mem 0x340000000000-0x34000fffffff 64bit pref]
[    3.532222] pci 000d:01:00.0: BAR 3: assigned [mem 0x340010000000-0x340011ffffff 64bit pref]
[    3.540729] pci 000d:01:00.0: BAR 0: assigned [mem 0x50000000-0x50ffffff]
[    3.547563] pci 000d:01:00.0: BAR 6: assigned [mem 0x51000000-0x5107ffff pref]
[    3.554858] pci 000d:01:00.2: BAR 0: assigned [mem 0x340012000000-0x34001203ffff 64bit pref]
[    3.563386] pci 000d:01:00.2: BAR 3: assigned [mem 0x340012040000-0x34001204ffff 64bit pref]
[    3.571892] pci 000d:01:00.1: BAR 0: assigned [mem 0x51080000-0x51083fff]
[    3.578726] pci 000d:01:00.3: BAR 0: assigned [mem 0x51084000-0x51084fff]
[    3.585584] pci 000d:01:00.0: BAR 5: no space for [io  size 0x0080]
[    3.591912] pci 000d:01:00.0: BAR 5: failed to assign [io  size 0x0080]
[    3.598601] pci 000d:00:01.0: PCI bridge to [bus 01]
[    3.603615] pci 000d:00:01.0:   bridge window [mem 0x50000000-0x517fffff]
[    3.610495] pci 000d:00:01.0:   bridge window [mem 0x340000000000-0x340017ffffff 64bit pref]
[    3.619023] pci_bus 000d:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    3.628144] pci_bus 000d:00: resource 4 [mem 0x50000000-0x5fffffff window]
[    3.635060] pci_bus 000d:00: resource 5 [mem 0x340000000000-0x37ffdfffffff window]
[    3.642707] pci_bus 000d:01: resource 1 [mem 0x50000000-0x517fffff]
[    3.649030] pci_bus 000d:01: resource 2 [mem 0x340000000000-0x340017ffffff 64bit pref]
[    3.657091] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus 00-ff])
[    3.663275] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    3.672482] acpi PNP0A08:03: PCIe port services disabled; not requesting _OSC control
[    3.680304] acpi PNP0A08:03: MCFG quirk: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    3.693214] acpi PNP0A08:03: ECAM area [mem 0x3ffff0000000-0x3fffffffffff] reserved by PNP0C02:00
[    3.702098] acpi PNP0A08:03: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff]
[    3.710312] PCI host bridge to bus 0000:00
[    3.714359] pci_bus 0000:00: root bus resource [mem 0x70000000-0x7fffffff window]
[    3.721949] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3fffdfffffff window]
[    3.730204] pci_bus 0000:00: root bus resource [bus 00-ff]
[    3.735768] pci 0000:00:00.0: [1def:e100] type 00 class 0x060000
[    3.741864] pci 0000:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.749484] pci 0000:00:01.0: [1def:e101] type 01 class 0x060400
[    3.755562] pci 0000:00:01.0: supports D1 D2
[    3.759845] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    3.765713] pci 0000:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.773411] pci 0000:01:00.0: [8086:1589] type 00 class 0x020000
[    3.779411] pci 0000:01:00.0: reg 0x10: [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    3.787417] pci 0000:01:00.0: reg 0x1c: [mem 0x3c0004818000-0x3c000481ffff 64bit pref]
[    3.795400] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    3.802221] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    3.808349] pci 0000:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.815990] pci 0000:01:00.1: [8086:1589] type 00 class 0x020000
[    3.822032] pci 0000:01:00.1: reg 0x10: [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    3.830039] pci 0000:01:00.1: reg 0x1c: [mem 0x3c0004810000-0x3c0004817fff 64bit pref]
[    3.838022] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    3.844839] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    3.850963] pci 0000:01:00.1: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.858609] pci 0000:01:00.2: [8086:1589] type 00 class 0x020000
[    3.864653] pci 0000:01:00.2: reg 0x10: [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    3.872660] pci 0000:01:00.2: reg 0x1c: [mem 0x3c0004808000-0x3c000480ffff 64bit pref]
[    3.880643] pci 0000:01:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    3.887459] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[    3.893584] pci 0000:01:00.2: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.901231] pci 0000:01:00.3: [8086:1589] type 00 class 0x020000
[    3.907274] pci 0000:01:00.3: reg 0x10: [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    3.915282] pci 0000:01:00.3: reg 0x1c: [mem 0x3c0004800000-0x3c0004807fff 64bit pref]
[    3.923265] pci 0000:01:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    3.930081] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[    3.936205] pci 0000:01:00.3: Failed to add - passthrough or MSI/MSI-X might fail!
[    3.943865] pci 0000:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01-02] add_size 1000
[    3.952346] pci 0000:00:01.0: BAR 9: assigned [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    3.960850] pci 0000:00:01.0: BAR 8: assigned [mem 0x70000000-0x701fffff]
[    3.967688] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    3.974018] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    3.980719] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    3.987039] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    3.993729] pci 0000:01:00.0: BAR 0: assigned [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    4.002262] pci 0000:01:00.1: BAR 0: assigned [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    4.010770] pci 0000:01:00.2: BAR 0: assigned [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    4.019276] pci 0000:01:00.3: BAR 0: assigned [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    4.027783] pci 0000:01:00.0: BAR 6: assigned [mem 0x70000000-0x7007ffff pref]
[    4.035054] pci 0000:01:00.1: BAR 6: assigned [mem 0x70080000-0x700fffff pref]
[    4.042347] pci 0000:01:00.2: BAR 6: assigned [mem 0x70100000-0x7017ffff pref]
[    4.049638] pci 0000:01:00.3: BAR 6: assigned [mem 0x70180000-0x701fffff pref]
[    4.056929] pci 0000:01:00.0: BAR 3: assigned [mem 0x3c0004000000-0x3c0004007fff 64bit pref]
[    4.065457] pci 0000:01:00.1: BAR 3: assigned [mem 0x3c0004008000-0x3c000400ffff 64bit pref]
[    4.073964] pci 0000:01:00.2: BAR 3: assigned [mem 0x3c0004010000-0x3c0004017fff 64bit pref]
[    4.082471] pci 0000:01:00.3: BAR 3: assigned [mem 0x3c0004018000-0x3c000401ffff 64bit pref]
[    4.090978] pci 0000:00:01.0: PCI bridge to [bus 01-02]
[    4.096228] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x701fffff]
[    4.103105] pci 0000:00:01.0:   bridge window [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    4.111632] pci_bus 0000:00: resource 4 [mem 0x70000000-0x7fffffff window]
[    4.118556] pci_bus 0000:00: resource 5 [mem 0x3c0000000000-0x3fffdfffffff window]
[    4.126202] pci_bus 0000:01: resource 1 [mem 0x70000000-0x701fffff]
[    4.132525] pci_bus 0000:01: resource 2 [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    4.140590] ACPI: PCI Root Bridge [PCI6] (domain 0004 [bus 00-ff])
[    4.146768] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.155974] acpi PNP0A08:06: PCIe port services disabled; not requesting _OSC control
[    4.163796] acpi PNP0A08:06: MCFG quirk: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.176703] acpi PNP0A08:06: ECAM area [mem 0x2bfff0000000-0x2bffffffffff] reserved by PNP0C02:00
[    4.185585] acpi PNP0A08:06: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff]
[    4.193801] PCI host bridge to bus 0004:00
[    4.197847] pci_bus 0004:00: root bus resource [mem 0x20000000-0x2fffffff window]
[    4.205436] pci_bus 0004:00: root bus resource [mem 0x280000000000-0x2bffdfffffff window]
[    4.213691] pci_bus 0004:00: root bus resource [bus 00-ff]
[    4.219255] pci 0004:00:00.0: [1def:e110] type 00 class 0x060000
[    4.225353] pci 0004:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    4.232972] pci 0004:00:01.0: [1def:e111] type 01 class 0x060400
[    4.239052] pci 0004:00:01.0: supports D1 D2
[    4.243334] pci 0004:00:01.0: PME# supported from D0 D1 D3hot
[    4.249199] pci 0004:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    4.256844] pci 0004:00:03.0: [1def:e113] type 01 class 0x060400
[    4.262924] pci 0004:00:03.0: supports D1 D2
[    4.267205] pci 0004:00:03.0: PME# supported from D0 D1 D3hot
[    4.273069] pci 0004:00:03.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    4.280717] pci 0004:00:05.0: [1def:e115] type 01 class 0x060400
[    4.286804] pci 0004:00:05.0: supports D1 D2
[    4.291076] pci 0004:00:05.0: PME# supported from D0 D1 D3hot
[    4.296942] pci 0004:00:05.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    4.304643] pci 0004:01:00.0: [1a03:1150] type 01 class 0x060400
[    4.310679] pci 0004:01:00.0: enabling Extended Tags
[    4.315712] pci 0004:01:00.0: supports D1 D2
[    4.319983] pci 0004:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    4.326742] pci 0004:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    4.334400] pci_bus 0004:02: extended config space not accessible
[    4.340514] pci 0004:02:00.0: [1a03:2000] type 00 class 0x030000
[    4.346585] pci 0004:02:00.0: reg 0x10: [mem 0x20000000-0x20ffffff]
[    4.352916] pci 0004:02:00.0: reg 0x14: [mem 0x21000000-0x2101ffff]
[    4.359252] pci 0004:02:00.0: reg 0x18: [io  0x27fff000-0x27fff07f]
[    4.365663] pci 0004:02:00.0: supports D1 D2
[    4.369896] pci 0004:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    4.376646] pci 0004:02:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    4.384381] pci 0004:03:00.0: [1912:0014] type 00 class 0x0c0330
[    4.390374] pci 0004:03:00.0: reg 0x10: [mem 0x21200000-0x21201fff 64bit]
[    4.397325] pci 0004:03:00.0: PME# supported from D0 D3hot D3cold
[    4.403441] pci 0004:03:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    4.411128] pci 0004:04:00.0: [8086:1533] type 00 class 0x020000
[    4.417131] pci 0004:04:00.0: reg 0x10: [mem 0x21100000-0x2117ffff]
[    4.423481] pci 0004:04:00.0: reg 0x18: [io  0x27ffe000-0x27ffe01f]
[    4.429794] pci 0004:04:00.0: reg 0x1c: [mem 0x21180000-0x21183fff]
[    4.436293] pci 0004:04:00.0: PME# supported from D0 D3hot D3cold
[    4.442424] pci 0004:04:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    4.450055] pci 0004:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-02] add_size 200000 add_align 100000
[    4.461868] pci 0004:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    4.470071] pci 0004:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    4.481655] pci 0004:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 03] add_size 100000 add_align 100000
[    4.492233] pci 0004:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    4.503790] pci 0004:00:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    4.514371] pci 0004:00:01.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    4.521183] pci 0004:00:01.0: BAR 9: assigned [mem 0x280000000000-0x2800001fffff 64bit pref]
[    4.529708] pci 0004:00:03.0: BAR 8: assigned [mem 0x21800000-0x219fffff]
[    4.536547] pci 0004:00:03.0: BAR 9: assigned [mem 0x280000200000-0x2800003fffff 64bit pref]
[    4.545073] pci 0004:00:05.0: BAR 8: assigned [mem 0x21a00000-0x21bfffff]
[    4.551912] pci 0004:00:05.0: BAR 9: assigned [mem 0x280000400000-0x2800005fffff 64bit pref]
[    4.560438] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.566748] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.573437] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    4.579770] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    4.586458] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    4.592790] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    4.599481] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.605811] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.612499] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    4.618832] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    4.625521] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    4.631853] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    4.638542] pci 0004:01:00.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    4.645401] pci 0004:01:00.0: BAR 7: no space for [io  size 0x1000]
[    4.651731] pci 0004:01:00.0: BAR 7: failed to assign [io  size 0x1000]
[    4.658421] pci 0004:02:00.0: BAR 0: assigned [mem 0x20000000-0x20ffffff]
[    4.665283] pci 0004:02:00.0: BAR 1: assigned [mem 0x21000000-0x2101ffff]
[    4.672140] pci 0004:02:00.0: BAR 2: no space for [io  size 0x0080]
[    4.678467] pci 0004:02:00.0: BAR 2: failed to assign [io  size 0x0080]
[    4.685156] pci 0004:01:00.0: PCI bridge to [bus 02]
[    4.690173] pci 0004:01:00.0:   bridge window [mem 0x20000000-0x217fffff]
[    4.697056] pci 0004:00:01.0: PCI bridge to [bus 01-02]
[    4.702326] pci 0004:00:01.0:   bridge window [mem 0x20000000-0x217fffff]
[    4.709204] pci 0004:00:01.0:   bridge window [mem 0x280000000000-0x2800001fffff 64bit pref]
[    4.717731] pci 0004:03:00.0: BAR 0: assigned [mem 0x21800000-0x21801fff 64bit]
[    4.725104] pci 0004:00:03.0: PCI bridge to [bus 03]
[    4.730101] pci 0004:00:03.0:   bridge window [mem 0x21800000-0x219fffff]
[    4.736981] pci 0004:00:03.0:   bridge window [mem 0x280000200000-0x2800003fffff 64bit pref]
[    4.745509] pci 0004:04:00.0: BAR 0: assigned [mem 0x21a00000-0x21a7ffff]
[    4.752350] pci 0004:04:00.0: BAR 3: assigned [mem 0x21a80000-0x21a83fff]
[    4.759208] pci 0004:04:00.0: BAR 2: no space for [io  size 0x0020]
[    4.765534] pci 0004:04:00.0: BAR 2: failed to assign [io  size 0x0020]
[    4.772222] pci 0004:00:05.0: PCI bridge to [bus 04]
[    4.777237] pci 0004:00:05.0:   bridge window [mem 0x21a00000-0x21bfffff]
[    4.784117] pci 0004:00:05.0:   bridge window [mem 0x280000400000-0x2800005fffff 64bit pref]
[    4.792644] pci_bus 0004:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    4.801765] pci_bus 0004:00: resource 4 [mem 0x20000000-0x2fffffff window]
[    4.808682] pci_bus 0004:00: resource 5 [mem 0x280000000000-0x2bffdfffffff window]
[    4.816328] pci_bus 0004:01: resource 1 [mem 0x20000000-0x217fffff]
[    4.822652] pci_bus 0004:01: resource 2 [mem 0x280000000000-0x2800001fffff 64bit pref]
[    4.830657] pci_bus 0004:02: resource 1 [mem 0x20000000-0x217fffff]
[    4.836975] pci_bus 0004:03: resource 1 [mem 0x21800000-0x219fffff]
[    4.843312] pci_bus 0004:03: resource 2 [mem 0x280000200000-0x2800003fffff 64bit pref]
[    4.851317] pci_bus 0004:04: resource 1 [mem 0x21a00000-0x21bfffff]
[    4.857634] pci_bus 0004:04: resource 2 [mem 0x280000400000-0x2800005fffff 64bit pref]
[    4.865687] ACPI: PCI Root Bridge [PCI7] (domain 0005 [bus 00-ff])
[    4.871879] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.881084] acpi PNP0A08:07: PCIe port services disabled; not requesting _OSC control
[    4.888906] acpi PNP0A08:07: MCFG quirk: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.901810] acpi PNP0A08:07: ECAM area [mem 0x2ffff0000000-0x2fffffffffff] reserved by PNP0C02:00
[    4.910693] acpi PNP0A08:07: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff]
[    4.918907] PCI host bridge to bus 0005:00
[    4.922955] pci_bus 0005:00: root bus resource [mem 0x30000000-0x3fffffff window]
[    4.930545] pci_bus 0005:00: root bus resource [mem 0x2c0000000000-0x2fffdfffffff window]
[    4.938800] pci_bus 0005:00: root bus resource [bus 00-ff]
[    4.944364] pci 0005:00:00.0: [1def:e110] type 00 class 0x060000
[    4.950462] pci 0005:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    4.958082] pci 0005:00:01.0: [1def:e111] type 01 class 0x060400
[    4.964169] pci 0005:00:01.0: supports D1 D2
[    4.968441] pci 0005:00:01.0: PME# supported from D0 D1 D3hot
[    4.974307] pci 0005:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    4.981951] pci 0005:00:03.0: [1def:e113] type 01 class 0x060400
[    4.988031] pci 0005:00:03.0: supports D1 D2
[    4.992313] pci 0005:00:03.0: PME# supported from D0 D1 D3hot
[    4.998177] pci 0005:00:03.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    5.005824] pci 0005:00:05.0: [1def:e115] type 01 class 0x060400
[    5.011912] pci 0005:00:05.0: supports D1 D2
[    5.016184] pci 0005:00:05.0: PME# supported from D0 D1 D3hot
[    5.022050] pci 0005:00:05.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    5.029693] pci 0005:00:07.0: [1def:e117] type 01 class 0x060400
[    5.035770] pci 0005:00:07.0: supports D1 D2
[    5.040056] pci 0005:00:07.0: PME# supported from D0 D1 D3hot
[    5.045919] pci 0005:00:07.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    5.054688] pci 0005:02:00.0: [1912:0014] type 00 class 0x0c0330
[    5.060682] pci 0005:02:00.0: reg 0x10: [mem 0x30100000-0x30101fff 64bit]
[    5.067633] pci 0005:02:00.0: PME# supported from D0 D3hot D3cold
[    5.073750] pci 0005:02:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    5.082478] pci 0005:04:00.0: [126f:2263] type 00 class 0x010802
[    5.088471] pci 0005:04:00.0: reg 0x10: [mem 0x30000000-0x30003fff 64bit]
[    5.095463] pci 0005:04:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    5.103053] pci 0005:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    5.111272] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    5.122856] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    5.133435] pci 0005:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    5.141653] pci 0005:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[    5.153238] pci 0005:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 02] add_size 100000 add_align 100000
[    5.163816] pci 0005:00:05.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    5.172035] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    5.183619] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[    5.194199] pci 0005:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    5.202417] pci 0005:00:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    5.214001] pci 0005:00:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    5.224584] pci 0005:00:01.0: BAR 8: assigned [mem 0x30000000-0x301fffff]
[    5.231394] pci 0005:00:01.0: BAR 9: assigned [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    5.239920] pci 0005:00:03.0: BAR 8: assigned [mem 0x30200000-0x303fffff]
[    5.246758] pci 0005:00:03.0: BAR 9: assigned [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    5.255285] pci 0005:00:05.0: BAR 8: assigned [mem 0x30400000-0x305fffff]
[    5.262123] pci 0005:00:05.0: BAR 9: assigned [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    5.270649] pci 0005:00:07.0: BAR 8: assigned [mem 0x30600000-0x307fffff]
[    5.277488] pci 0005:00:07.0: BAR 9: assigned [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    5.286014] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.292325] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.299013] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.305345] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.312034] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.318366] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.325054] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    5.331387] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    5.338078] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    5.344408] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    5.351096] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.357429] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.364125] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.370450] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.377138] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.383471] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.390159] pci 0005:00:01.0: PCI bridge to [bus 01]
[    5.395174] pci 0005:00:01.0:   bridge window [mem 0x30000000-0x301fffff]
[    5.402054] pci 0005:00:01.0:   bridge window [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    5.410582] pci 0005:02:00.0: BAR 0: assigned [mem 0x30200000-0x30201fff 64bit]
[    5.417954] pci 0005:00:03.0: PCI bridge to [bus 02]
[    5.422952] pci 0005:00:03.0:   bridge window [mem 0x30200000-0x303fffff]
[    5.429831] pci 0005:00:03.0:   bridge window [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    5.438359] pci 0005:00:05.0: PCI bridge to [bus 03]
[    5.443351] pci 0005:00:05.0:   bridge window [mem 0x30400000-0x305fffff]
[    5.450231] pci 0005:00:05.0:   bridge window [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    5.458760] pci 0005:04:00.0: BAR 0: assigned [mem 0x30600000-0x30603fff 64bit]
[    5.466129] pci 0005:00:07.0: PCI bridge to [bus 04]
[    5.471128] pci 0005:00:07.0:   bridge window [mem 0x30600000-0x307fffff]
[    5.478009] pci 0005:00:07.0:   bridge window [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    5.486536] pci_bus 0005:00: resource 4 [mem 0x30000000-0x3fffffff window]
[    5.493459] pci_bus 0005:00: resource 5 [mem 0x2c0000000000-0x2fffdfffffff window]
[    5.501106] pci_bus 0005:01: resource 1 [mem 0x30000000-0x301fffff]
[    5.507429] pci_bus 0005:01: resource 2 [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    5.515435] pci_bus 0005:02: resource 1 [mem 0x30200000-0x303fffff]
[    5.521752] pci_bus 0005:02: resource 2 [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    5.529758] pci_bus 0005:03: resource 1 [mem 0x30400000-0x305fffff]
[    5.536075] pci_bus 0005:03: resource 2 [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    5.544080] pci_bus 0005:04: resource 1 [mem 0x30600000-0x307fffff]
[    5.550398] pci_bus 0005:04: resource 2 [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    5.558595] xen:balloon: Initialising balloon driver
[    5.563560] iommu: Default domain type: Translated 
[    5.568493] pci 000d:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    5.576931] pci 0004:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    5.585344] pci 000d:01:00.0: vgaarb: bridge control possible
[    5.591128] pci 0004:02:00.0: vgaarb: bridge control possible
[    5.596947] pci 0004:02:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[    5.605923] vgaarb: loaded
[    5.608689] SCSI subsystem initialized
[    5.612465] ACPI: bus type USB registered
[    5.616560] usbcore: registered new interface driver usbfs
[    5.622122] usbcore: registered new interface driver hub
[    5.627500] usbcore: registered new device driver usb
[    5.632626] pps_core: LinuxPPS API ver. 1 registered
[    5.637647] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    5.646898] PTP clock support registered
[    5.650890] Registered efivars operations
[    5.654930] No ACPI PMU IRQ for CPU0
[    5.658767] clocksource: Switched to clocksource arch_sys_counter
[    5.840232] pnp: PnP ACPI init
[    5.844590] system 00:00: [mem 0x3bfff0000000-0x3bffffffffff window] has been reserved
[    5.852505] system 00:00: [mem 0x3ffff0000000-0x3fffffffffff window] could not be reserved
[    5.860836] system 00:00: [mem 0x23fff0000000-0x23ffffffffff window] has been reserved
[    5.868819] system 00:00: [mem 0x27fff0000000-0x27ffffffffff window] has been reserved
[    5.876805] system 00:00: [mem 0x2bfff0000000-0x2bffffffffff window] could not be reserved
[    5.885142] system 00:00: [mem 0x2ffff0000000-0x2fffffffffff window] could not be reserved
[    5.893475] system 00:00: [mem 0x7bfff0000000-0x7bffffffffff window] has been reserved
[    5.901457] system 00:00: [mem 0x7ffff0000000-0x7fffffffffff window] has been reserved
[    5.909443] system 00:00: [mem 0x63fff0000000-0x63ffffffffff window] has been reserved
[    5.917429] system 00:00: [mem 0x67fff0000000-0x67ffffffffff window] has been reserved
[    5.925415] system 00:00: [mem 0x6bfff0000000-0x6bffffffffff window] has been reserved
[    5.933401] system 00:00: [mem 0x6ffff0000000-0x6fffffffffff window] has been reserved
[    5.941387] system 00:00: [mem 0x33fff0000000-0x33ffffffffff window] could not be reserved
[    5.949725] system 00:00: [mem 0x37fff0000000-0x37ffffffffff window] could not be reserved
[    5.958068] pnp: PnP ACPI: found 1 devices
[    5.963348] NET: Registered protocol family 2
[    5.967837] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    5.976418] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    5.984572] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    5.992428] TCP: Hash tables configured (established 65536 bind 65536)
[    5.998975] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    6.005883] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    6.013209] NET: Registered protocol family 1
[    6.017611] RPC: Registered named UNIX socket transport module.
[    6.023540] RPC: Registered udp transport module.
[    6.028283] RPC: Registered tcp transport module.
[    6.033056] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    6.039633] pci 000d:01:00.1: D0 power state depends on 000d:01:00.0
[    6.046066] pci 000d:01:00.2: D0 power state depends on 000d:01:00.0
[    6.052474] pci 000d:01:00.2: enabling device (0000 -> 0002)
[    6.058214] pci 000d:01:00.3: D0 power state depends on 000d:01:00.0
[    6.064648] pci 0004:03:00.0: enabling device (0000 -> 0002)
[    6.070353] pci 0005:02:00.0: enabling device (0000 -> 0002)
[    6.076068] PCI: CLS 128 bytes, default 64
[    6.080257] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 1 counters available
[    6.088892] workingset: timestamp_bits=42 max_order=21 bucket_order=0
[    6.096993] NFS: Registering the id_resolver key type
[    6.102022] Key type id_resolver registered
[    6.106271] Key type id_legacy registered
[    6.110476] Key type cifs.idmap registered
[    6.128991] xor: measuring software checksum speed
[    6.134754]    8regs           :  9794 MB/sec
[    6.139900]    32regs          : 11754 MB/sec
[    6.144919]    arm64_neon      : 13960 MB/sec
[    6.149224] xor: using function: arm64_neon (13960 MB/sec)
[    6.154804] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    6.162284] io scheduler mq-deadline registered
[    6.166848] io scheduler kyber registered
[    6.171306] gpio-dwapb APMC0D07:02: no IRQ for port0
[    6.177013] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    6.185390] ACPI: Power Button [PWRB]
[    6.189665] GHES: APEI firmware first mode is enabled by APEI bit.
[    6.196029] EINJ: Error INJection is initialized.
[    6.200733] ACPI GTDT: found 1 SBSA generic Watchdog(s).
[    6.206503] xen:xen_evtchn: Event-channel device installed
[    6.212580] ast 0004:02:00.0: [drm] platform has no IO space, trying MMIO
[    6.219379] ast 0004:02:00.0: [drm] Using P2A bridge for configuration
[    6.225945] ast 0004:02:00.0: [drm] AST 2500 detected
[    6.231049] ast 0004:02:00.0: [drm] Analog VGA only
[    6.235997] ast 0004:02:00.0: [drm] dram MCLK=800 Mhz type=8 bus_width=16
[    6.242913] [TTM] Zone  kernel: Available graphics memory: 4052752 KiB
[    6.249470] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    6.256062] [TTM] Initializing pool allocator
[    6.260466] [TTM] Initializing DMA pool allocator
[    6.265486] [drm] Initialized ast 0.1.0 20120228 for 0004:02:00.0 on minor 0
[    6.290529] Console: switching to colour frame buffer device 128x48
[    6.298730] ast 0004:02:00.0: [drm] fb0: astdrmfb frame buffer device
[    6.316485] brd: module loaded
[    6.320965] loop: module loaded
[    6.324064] Invalid max_queues (4), will use default max: 1.
[    6.330098] nvme nvme0: pci function 0005:04:00.0
[    6.335033] igb: Intel(R) Gigabit Ethernet Network Driver
[    6.340399] DEBUG dma_alloc_attrs 432 size=512 flags=cc0 attr=0
[    6.346396] igb: Copyright (c) 2007-2014 Intel Corporation.
[    6.352028] DEBUG dma_alloc_attrs 436 size=512 flags=cc0 attr=0
[    6.358644] DEBUG xen_swiotlb_alloc_coherent 287 size=512 flags=cc0 attr=0
[    6.365497] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[    6.373169] DEBUG xen_swiotlb_alloc_coherent 323 phys=800041f5000 dev_addr=800041f5000
[    6.381076] DEBUG dma_alloc_attrs 432 size=2048 flags=cc0 attr=0
[    6.390737] DEBUG dma_alloc_attrs 436 size=2048 flags=cc0 attr=0
[    6.397096] pps pps0: new PPS source ptp0
[    6.401052] DEBUG xen_swiotlb_alloc_coherent 287 size=2048 flags=cc0 attr=0
[    6.408143] igb 0004:04:00.0: added PHC on eth0
[    6.412688] igb 0004:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    6.419659] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[    6.426692] igb 0004:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:3b:50:52
[    6.433899] DEBUG xen_swiotlb_alloc_coherent 323 phys=80004200000 dev_addr=80004200000
[    6.441951] igb 0004:04:00.0: eth0: PBA No: 000300-000
[    6.447085] igb 0004:04:00.0: Using MSI-X interrupts. 1 rx queue(s), 1 tx queue(s)
[    6.454792] DEBUG xen_swiotlb_map_page 400 phys=80003c4f000 dev_addr=80003c4f000
[    6.462238] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    6.468544] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    6.474514] DEBUG xen_swiotlb_map_page 400 phys=80000019000 dev_addr=80000019000
[    6.482023] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[    6.488333] nvme nvme0: missing or invalid SUBNQN field.
[    6.493686] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[    6.499615] DEBUG xen_swiotlb_map_page 400 phys=80004201600 dev_addr=80004201600
[    6.507172] i40e 0000:01:00.0: enabling device (0000 -> 0002)
[    6.512912] DEBUG dma_alloc_attrs 432 size=256 flags=cc0 attr=0
[    6.520177] DEBUG dma_alloc_attrs 436 size=256 flags=cc0 attr=0
[    6.526068] DEBUG xen_swiotlb_alloc_coherent 287 size=256 flags=cc0 attr=0
[    6.533030] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[    6.539084] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[    6.546128] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[    6.552192] DEBUG xen_swiotlb_alloc_coherent 323 phys=80004209000 dev_addr=80004209000
[    6.560201] DEBUG xen_swiotlb_alloc_coherent 287 size=8192 flags=cc0 attr=0
[    6.567220] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.573726] DEBUG xen_swiotlb_alloc_coherent 300 size=8192 flags=cc0 attr=0
[    6.580761] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.587269] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000421e000 dev_addr=8000421e000
[    6.595270] DEBUG xen_swiotlb_alloc_coherent 287 size=4194304 flags=cc0 attr=110
[    6.602734] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.608789] DEBUG xen_swiotlb_alloc_coherent 300 size=4194304 flags=cc0 attr=110
[    6.616272] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.622452] DEBUG xen_swiotlb_alloc_coherent 323 phys=80004400000 dev_addr=80004400000
[    6.630359] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[    6.637376] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[    6.644536] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.650950] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000420a000 dev_addr=8000420a000
[    6.658951] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.665446] DEBUG xen_swiotlb_alloc_coherent 287 size=4194304 flags=cc0 attr=110
[    6.672922] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.678980] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.685059] DEBUG xen_swiotlb_alloc_coherent 300 size=4194304 flags=cc0 attr=110
[    6.692540] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[    6.699577] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000008
[    6.708437] Mem abort info:
[    6.711233]   ESR = 0x96000044
[    6.714361]   EC = 0x25: DABT (current EL), IL = 32 bits
[    6.719770]   SET = 0, FnV = 0
[    6.722868]   EA = 0, S1PTW = 0
[    6.726081] Data abort info:
[    6.729029]   ISV = 0, ISS = 0x00000044
[    6.732947]   CM = 0, WnR = 1
[    6.735975] [0000000000000008] user address but active_mm is swapper
[    6.742438] Internal error: Oops: 96000044 [#1] PREEMPT SMP
[    6.748072] Modules linked in:
[    6.751168] CPU: 0 PID: 95 Comm: kworker/u2:1 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    6.760885] Workqueue: nvme-reset-wq nvme_reset_work
[    6.765861] pstate: 60c00085 (nZCv daIf +PAN +UAO -TCO BTYPE=--)
[    6.771949] pc : steal_suitable_fallback+0x138/0x2f0
[    6.776970] lr : steal_suitable_fallback+0x1bc/0x2f0
[    6.782004] sp : ffff800011e0b810
[    6.785371] x29: ffff800011e0b810 x28: 0000000000000000 
[    6.790775] x27: 0000000000000000 x26: ffff8000114dbcb0 
[    6.796157] x25: fffffdffffe00000 x24: 0000000000000001 
[    6.801539] x23: 0000000000000000 x22: fffffe1ffdf20000 
[    6.806921] x21: ffff08071efef980 x20: 0000000000000901 
[    6.812303] x19: 0000000000080000 x18: ffffffffffffffff 
[    6.817685] x17: 000000000000000e x16: 0000000000000012 
[    6.823067] x15: ffff80009184b5d7 x14: 0000000000000006 
[    6.828449] x13: ffff80001184b5df x12: 3033343931343d65 
[    6.833831] x11: 7a69732030303320 x10: 000000000000000c 
[    6.839213] x9 : ffff800010039d58 x8 : 0000000080000000 
[    6.844595] x7 : 0000000000000018 x6 : ffff800011750890 
[    6.849977] x5 : ffff800011750878 x4 : 0000000000000000 
[    6.855359] x3 : 0000000000000000 x2 : 0000000000000000 
[    6.860741] x1 : 0000000000000200 x0 : 0000000000000000 
[    6.866123] Call trace:
[    6.868608]  steal_suitable_fallback+0x138/0x2f0
[    6.873321]  get_page_from_freelist+0xe30/0x12a0
[    6.878008]  __alloc_pages_nodemask+0x148/0xe00
[    6.882609]  __dma_direct_alloc_pages+0xa4/0x1d0
[    6.887296]  dma_direct_alloc+0x1d8/0x340
[    6.891370]  xen_swiotlb_alloc_coherent+0xc0/0x328
[    6.896239]  dma_alloc_attrs+0x144/0x160
[    6.900222]  nvme_reset_work+0x1030/0x1520
[    6.904392]  process_one_work+0x1dc/0x4bc
[    6.908470]  worker_thread+0x144/0x470
[    6.912287]  kthread+0x14c/0x160
[    6.915579]  ret_from_fork+0x10/0x38
[    6.919230] Code: a94082c4 d37ef463 cb3c4063 8b3c4042 (f9000480) 
[    6.925423] ---[ end trace f68728a0d3053b53 ]---
[    6.930092] note: kworker/u2:1[95] exited with preempt_count 1
[    6.936016] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0


[-- Attachment #3: native_linux_with_ maxcpus_1_debug.log --]
[-- Type: application/octet-stream, Size: 370952 bytes --]

Last login: Wed Apr 20 10:52:56 on ttys000
rahsin01@C02ZX0G9LVDN ~ % telnet e123343.cambridge.arm.com 10020
Trying 10.1.194.25...
Connected to e123343.cambridge.arm.com.
Escape character is '^]'.

AIS target system port 10020 device /dev/ttyUSB1 [115200 N81]


FS0:\EFI\BOOT\> 
FS0:\EFI\BOOT\> bootaa64.efi
Welcome to GRUB!

error: no such device: ((hd0,gpt1)/EFI/BOOT)/EFI/BOOT/grub.cfg.
























                             GNU GRUB  version 2.06

 /----------------------------------------------------------------------------\
 | PARTUUID Boot: COM-HPC Yocto Image                                         | 
 | NVMe M.2  SSD Boot: COM-HPC Yocto Image                                    |
 |*USB Boot (If Drive is present): COM-HPC Yocto Image                        |
 | COM-HPC Yocto Image (Xen)                                                  |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            | 
 \----------------------------------------------------------------------------/

      Use the ^ and v keys to select which entry is highlighted.          
      Press enter to boot the selected OS, `e' to edit the commands       
      before booting or `c' for a command-line.                           
                                                                               
                                                                               


















































EFI stub: Booting Linux Kernel...
EFI stub: Using DTB from configuration table
EFI stub: Exiting boot services and installing virtual address map...
PROGRESS CODE: V03101019 I0
[    0.000000] Booting Linux on physical CPU 0x0000100000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard+ (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: TPMFinalLog=0x807f9ef0000 ACPI 2.0=0x807fa0d0018 SMBIOS 3.0=0x807f8e30000 MEMATTR=0x807f7dcc018 ESRT=0x807f7f64b98 TPMEventLog=0x807f7de0018 RNG=0xffb4ba98 MEMRESERVE=0x807f7e85e98 
[    0.000000] efi: seeding entropy pool
[    0.000000] esrt: Reserving ESRT space from 0x00000807f7f64b98 to 0x00000807f7f64bd0.
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807FA0D0018 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807FA0DFE98 0000A4 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807FA0DFB98 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807FA0D7518 000AF4 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x807fc06fe00-0x807fc071fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000088300000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000088300000-0x00000000883fffff]
[    0.000000]   node   0: [mem 0x0000000090000000-0x0000000091ffffff]
[    0.000000]   node   0: [mem 0x0000000092000000-0x00000000927bffff]
[    0.000000]   node   0: [mem 0x00000000927c0000-0x00000000ffb3ffff]
[    0.000000]   node   0: [mem 0x00000000ffb40000-0x00000000ffb4ffff]
[    0.000000]   node   0: [mem 0x00000000ffb50000-0x00000000ffffffff]
[    0.000000]   node   0: [mem 0x0000080000000000-0x000008007fffffff]
[    0.000000]   node   0: [mem 0x0000080100000000-0x00000807f6a7ffff]
[    0.000000]   node   0: [mem 0x00000807f6a80000-0x00000807f6b1ffff]
[    0.000000]   node   0: [mem 0x00000807f6b20000-0x00000807f6c1efff]
[    0.000000]   node   0: [mem 0x00000807f6c1f000-0x00000807f72c7fff]
[    0.000000]   node   0: [mem 0x00000807f72c8000-0x00000807f7ebffff]
[    0.000000]   node   0: [mem 0x00000807f7ec0000-0x00000807f7edffff]
[    0.000000]   node   0: [mem 0x00000807f7ee0000-0x00000807f7eeffff]
[    0.000000]   node   0: [mem 0x00000807f7ef0000-0x00000807f7f2ffff]
[    0.000000]   node   0: [mem 0x00000807f7f30000-0x00000807f87effff]
[    0.000000]   node   0: [mem 0x00000807f87f0000-0x00000807f882ffff]
[    0.000000]   node   0: [mem 0x00000807f8830000-0x00000807f8a6ffff]
[    0.000000]   node   0: [mem 0x00000807f8a70000-0x00000807f8aaffff]
[    0.000000]   node   0: [mem 0x00000807f8ab0000-0x00000807f8e1ffff]
[    0.000000]   node   0: [mem 0x00000807f8e20000-0x00000807f8e3ffff]
[    0.000000]   node   0: [mem 0x00000807f8e40000-0x00000807f8e6ffff]
[    0.000000]   node   0: [mem 0x00000807f8e70000-0x00000807f9e7ffff]
[    0.000000]   node   0: [mem 0x00000807f9e80000-0x00000807f9eeffff]
[    0.000000]   node   0: [mem 0x00000807f9ef0000-0x00000807f9f1ffff]
[    0.000000]   node   0: [mem 0x00000807f9f20000-0x00000807f9fbffff]
[    0.000000]   node   0: [mem 0x00000807f9fc0000-0x00000807f9ffffff]
[    0.000000]   node   0: [mem 0x00000807fa000000-0x00000807fa0fffff]
[    0.000000]   node   0: [mem 0x00000807fa100000-0x00000807fa19ffff]
[    0.000000]   node   0: [mem 0x00000807fa1a0000-0x00000807fa26ffff]
[    0.000000]   node   0: [mem 0x00000807fa270000-0x00000807fa4affff]
[    0.000000]   node   0: [mem 0x00000807fa4b0000-0x00000807fa71ffff]
[    0.000000]   node   0: [mem 0x00000807fa720000-0x00000807fa75ffff]
[    0.000000]   node   0: [mem 0x00000807fa760000-0x00000807fa8cffff]
[    0.000000]   node   0: [mem 0x00000807fa8d0000-0x00000807fa96ffff]
[    0.000000]   node   0: [mem 0x00000807fa970000-0x00000807fa9fffff]
[    0.000000]   node   0: [mem 0x00000807faa00000-0x00000807fbaaffff]
[    0.000000]   node   0: [mem 0x00000807fbab0000-0x00000807fbb3ffff]
[    0.000000]   node   0: [mem 0x00000807fbb40000-0x00000807fbbdffff]
[    0.000000]   node   0: [mem 0x00000807fbbe0000-0x00000807fbcaffff]
[    0.000000]   node   0: [mem 0x00000807fbcb0000-0x00000807fbceffff]
[    0.000000]   node   0: [mem 0x00000807fbcf0000-0x00000807fbd5ffff]
[    0.000000]   node   0: [mem 0x00000807fbd60000-0x00000807fbdfffff]
[    0.000000]   node   0: [mem 0x00000807fbe00000-0x00000807ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000088300000-0x00000807ffffffff]
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270100 -> Node 0
[    0.000000] percpu: Embedded 31 pages/cpu s89240 r8192 d29544 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: ARM erratum 1418040
[    0.000000] alternatives: patching kernel code
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8193276
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/Image rootwait rw maxcpus=1 root=/dev/sda2
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.000000] printk: log_buf_len min size: 131072 bytes
[    0.000000] printk: log_buf_len: 262144 bytes
[    0.000000] printk: early log buf free: 121240(92%)
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000fbb40000-0x00000000ffb40000] (64MB)
[    0.000000] Memory: 32502288K/33293312K available (13568K kernel code, 1996K rwdata, 3476K rodata, 4160K init, 822K bss, 791024K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 41306 entries in 162 pages
[    0.000000] ftrace: allocated 162 pages with 3 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=32.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 672 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 100000 region 0:0x0000100100540000
[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 3 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 4 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 5 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 6 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 7 -> Node 0
[    0.000000] ITS [mem 0x100100040000-0x10010005ffff]
[    0.000000] ITS@0x0000100100040000: allocated 8192 Devices @80000220000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100040000: allocated 32768 Interrupt Collections @80000230000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100060000-0x10010007ffff]
[    0.000000] ITS@0x0000100100060000: allocated 8192 Devices @80000250000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100060000: allocated 32768 Interrupt Collections @80000260000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100080000-0x10010009ffff]
[    0.000000] ITS@0x0000100100080000: allocated 8192 Devices @80000280000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100080000: allocated 32768 Interrupt Collections @80000290000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000a0000-0x1001000bffff]
[    0.000000] ITS@0x00001001000a0000: allocated 8192 Devices @800002b0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000a0000: allocated 32768 Interrupt Collections @800002c0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000c0000-0x1001000dffff]
[    0.000000] ITS@0x00001001000c0000: allocated 8192 Devices @800002e0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000c0000: allocated 32768 Interrupt Collections @800002f0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000e0000-0x1001000fffff]
[    0.000000] ITS@0x00001001000e0000: allocated 8192 Devices @80000310000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000e0000: allocated 32768 Interrupt Collections @80000320000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100100000-0x10010011ffff]
[    0.000000] ITS@0x0000100100100000: allocated 8192 Devices @80000340000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100100000: allocated 32768 Interrupt Collections @80000350000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100120000-0x10010013ffff]
[    0.000000] ITS@0x0000100100120000: allocated 8192 Devices @80000370000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100120000: allocated 32768 Interrupt Collections @80000380000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] GICv3: using LPI property table @0x0000080000390000
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000800003a0000
[    0.000000] random: get_random_bytes called from start_kernel+0x394/0x554 with crng_init=0
[    0.000000] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.000000] ACPI GTDT: found 1 memory-mapped timer block(s).
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 25.00MHz (phys/phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000001] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000054] Console: colour dummy device 80x25
[    0.000075] ACPI: Core revision 20200925
[    0.000489] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    0.000494] pid_max: default: 32768 minimum: 301
[    0.000521] LSM: Security Framework initializing
[    0.000650] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.000733] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.001580] rcu: Hierarchical SRCU implementation.
[    0.001708] Platform MSI: ITS@0x100100040000 domain created
[    0.001711] Platform MSI: ITS@0x100100060000 domain created
[    0.001714] Platform MSI: ITS@0x100100080000 domain created
[    0.001717] Platform MSI: ITS@0x1001000a0000 domain created
[    0.001720] Platform MSI: ITS@0x1001000c0000 domain created
[    0.001722] Platform MSI: ITS@0x1001000e0000 domain created
[    0.001726] Platform MSI: ITS@0x100100100000 domain created
[    0.001730] Platform MSI: ITS@0x100100120000 domain created
[    0.001737] PCI/MSI: ITS@0x100100040000 domain created
[    0.001740] PCI/MSI: ITS@0x100100060000 domain created
[    0.001742] PCI/MSI: ITS@0x100100080000 domain created
[    0.001745] PCI/MSI: ITS@0x1001000a0000 domain created
[    0.001748] PCI/MSI: ITS@0x1001000c0000 domain created
[    0.001752] PCI/MSI: ITS@0x1001000e0000 domain created
[    0.001755] PCI/MSI: ITS@0x100100100000 domain created
[    0.001758] PCI/MSI: ITS@0x100100120000 domain created
[    0.001765] Remapping and enabling EFI services.
[    0.003607] smp: Bringing up secondary CPUs ...
[    0.003611] smp: Brought up 1 node, 1 CPU
[    0.003613] SMP: Total of 1 processors activated.
[    0.003616] CPU features: detected: Privileged Access Never
[    0.003618] CPU features: detected: LSE atomic instructions
[    0.003620] CPU features: detected: User Access Override
[    0.003622] CPU features: detected: 32-bit EL0 Support
[    0.003625] CPU features: detected: Common not Private translations
[    0.003627] CPU features: detected: RAS Extension Support
[    0.003629] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.003631] CPU features: detected: CRC32 instructions
[    0.003632] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.035376] CPU: All CPU(s) started at EL2
[    0.035861] devtmpfs: initialized
[    0.036126] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.036132] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.036362] SMBIOS 3.3.0 present.
[    0.036368] DMI: ADLINK COM-HPC-ALT/COM-HPC-ALT, BIOS TianoCore EDKII 11/23/2021
[    0.036588] NET: Registered protocol family 16
[    0.036854] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.037020] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.037183] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.037279] thermal_sys: Registered thermal governor 'step_wise'
[    0.037329] cpuidle: using governor menu
[    0.037461] Detected 15 PCC Subspaces
[    0.037483] Registering PCC driver as Mailbox controller
[    0.037518] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.037528] ASID allocator initialised with 65536 entries
[    0.037534] ACPI: bus type PCI registered
[    0.037537] Serial: AMBA PL011 UART driver
[    0.039650] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.039654] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.039656] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.039658] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.040036] cryptd: max_cpu_qlen set to 1000
[    0.108033] raid6: neonx8   gen()  7778 MB/s
[    0.176078] raid6: neonx8   xor()  6062 MB/s
[    0.244068] raid6: neonx4   gen()  7630 MB/s
[    0.312089] raid6: neonx4   xor()  6326 MB/s
[    0.380104] raid6: neonx2   gen()  7329 MB/s
[    0.448119] raid6: neonx2   xor()  5728 MB/s
[    0.516139] raid6: neonx1   gen()  5923 MB/s
[    0.584158] raid6: neonx1   xor()  4973 MB/s
[    0.652174] raid6: int64x8  gen()  3602 MB/s
[    0.720196] raid6: int64x8  xor()  2019 MB/s
[    0.788213] raid6: int64x4  gen()  4127 MB/s
[    0.856233] raid6: int64x4  xor()  2191 MB/s
[    0.924247] raid6: int64x2  gen()  3504 MB/s
[    0.992264] raid6: int64x2  xor()  1892 MB/s
[    1.060285] raid6: int64x1  gen()  2875 MB/s
[    1.128303] raid6: int64x1  xor()  1507 MB/s
[    1.128305] raid6: using algorithm neonx8 gen() 7778 MB/s
[    1.128307] raid6: .... xor() 6062 MB/s, rmw enabled
[    1.128308] raid6: using neon recovery algorithm
[    1.128376] ACPI: Added _OSI(Module Device)
[    1.128378] ACPI: Added _OSI(Processor Device)
[    1.128380] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.128382] ACPI: Added _OSI(Processor Aggregator Device)
[    1.128385] ACPI: Added _OSI(Linux-Dell-Video)
[    1.128386] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    1.128389] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    1.148842] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    1.155106] ACPI: Interpreter enabled
[    1.155109] ACPI: Using GIC for interrupt routing
[    1.155127] ACPI: MCFG table detected, 5 entries
[    1.155133] ACPI: IORT: SMMU-v3[33ffe0000000] Mapped to Proximity domain 0
[    1.155157] ACPI: IORT: SMMU-v3[37ffe0000000] Mapped to Proximity domain 0
[    1.155169] ACPI: IORT: SMMU-v3[3fffe0000000] Mapped to Proximity domain 0
[    1.155184] ACPI: IORT: SMMU-v3[2bffe0000000] Mapped to Proximity domain 0
[    1.155197] ACPI: IORT: SMMU-v3[2fffe0000000] Mapped to Proximity domain 0
[    1.155281] HEST: Table parsing has been initialized.
[    1.190202] ARMH0011:00: ttyAMA0 at MMIO 0x100002600000 (irq = 79, base_baud = 0) is a SBSA
[    3.012886] printk: console [ttyAMA0] enabled
[    3.018928] ARMH0011:01: ttyAMA1 at MMIO 0x100002620000 (irq = 80, base_baud = 0) is a SBSA
[    3.029048] ACPI: PCI Root Bridge [PCI0] (domain 000c [bus 00-ff])
[    3.035231] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    3.044331] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control
[    3.052155] acpi PNP0A08:00: MCFG quirk: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    3.064962] acpi PNP0A08:00: ECAM area [mem 0x33fff0000000-0x33ffffffffff] reserved by PNP0C02:00
[    3.073833] acpi PNP0A08:00: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff]
[    3.081992] PCI host bridge to bus 000c:00
[    3.086079] pci_bus 000c:00: root bus resource [mem 0x40000000-0x4fffffff window]
[    3.093550] pci_bus 000c:00: root bus resource [mem 0x300000000000-0x33ffdfffffff window]
[    3.101715] pci_bus 000c:00: root bus resource [bus 00-ff]
[    3.107225] pci 000c:00:00.0: [1def:e100] type 00 class 0x060000
[    3.113302] pci 000c:00:01.0: [1def:e101] type 01 class 0x060400
[    3.119348] pci 000c:00:01.0: supports D1 D2
[    3.123608] pci 000c:00:01.0: PME# supported from D0 D1 D3hot
[    3.130463] pci 000c:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    3.138631] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    3.150095] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    3.160608] pci 000c:00:01.0: BAR 8: assigned [mem 0x40000000-0x401fffff]
[    3.167385] pci 000c:00:01.0: BAR 9: assigned [mem 0x300000000000-0x3000001fffff 64bit pref]
[    3.175812] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    3.182067] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    3.188670] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    3.194925] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    3.201529] pci 000c:00:01.0: PCI bridge to [bus 01]
[    3.206483] pci 000c:00:01.0:   bridge window [mem 0x40000000-0x401fffff]
[    3.213260] pci 000c:00:01.0:   bridge window [mem 0x300000000000-0x3000001fffff 64bit pref]
[    3.221687] pci_bus 000c:00: resource 4 [mem 0x40000000-0x4fffffff window]
[    3.228550] pci_bus 000c:00: resource 5 [mem 0x300000000000-0x33ffdfffffff window]
[    3.236108] pci_bus 000c:01: resource 1 [mem 0x40000000-0x401fffff]
[    3.242363] pci_bus 000c:01: resource 2 [mem 0x300000000000-0x3000001fffff 64bit pref]
[    3.250308] ACPI: PCI Root Bridge [PCI1] (domain 000d [bus 00-ff])
[    3.256484] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    3.265583] acpi PNP0A08:01: PCIe port services disabled; not requesting _OSC control
[    3.273404] acpi PNP0A08:01: MCFG quirk: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    3.286194] acpi PNP0A08:01: ECAM area [mem 0x37fff0000000-0x37ffffffffff] reserved by PNP0C02:00
[    3.295066] acpi PNP0A08:01: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff]
[    3.303219] PCI host bridge to bus 000d:00
[    3.307306] pci_bus 000d:00: root bus resource [mem 0x50000000-0x5fffffff window]
[    3.314777] pci_bus 000d:00: root bus resource [mem 0x340000000000-0x37ffdfffffff window]
[    3.322942] pci_bus 000d:00: root bus resource [bus 00-ff]
[    3.328448] pci 000d:00:00.0: [1def:e100] type 00 class 0x060000
[    3.334512] pci 000d:00:01.0: [1def:e101] type 01 class 0x060400
[    3.340544] pci 000d:00:01.0: supports D1 D2
[    3.344803] pci 000d:00:01.0: PME# supported from D0 D1 D3hot
[    3.350625] pci 000d:01:00.0: [10de:1e89] type 00 class 0x030000
[    3.356630] pci 000d:01:00.0: reg 0x10: [mem 0x50000000-0x50ffffff]
[    3.362893] pci 000d:01:00.0: reg 0x14: [mem 0x340000000000-0x34000fffffff 64bit pref]
[    3.370806] pci 000d:01:00.0: reg 0x1c: [mem 0x340010000000-0x340011ffffff 64bit pref]
[    3.378714] pci 000d:01:00.0: reg 0x24: [io  0x57ffe000-0x57ffe07f]
[    3.384974] pci 000d:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    3.391726] pci 000d:01:00.0: PME# supported from D0 D3hot D3cold
[    3.397877] pci 000d:01:00.1: [10de:10f8] type 00 class 0x040300
[    3.403883] pci 000d:01:00.1: reg 0x10: [mem 0x51000000-0x51003fff]
[    3.410256] pci 000d:01:00.2: [10de:1ad8] type 00 class 0x0c0330
[    3.416265] pci 000d:01:00.2: reg 0x10: [mem 0x340012000000-0x34001203ffff 64bit pref]
[    3.424181] pci 000d:01:00.2: reg 0x1c: [mem 0x340012040000-0x34001204ffff 64bit pref]
[    3.432137] pci 000d:01:00.2: PME# supported from D0 D3hot D3cold
[    3.438272] pci 000d:01:00.3: [10de:1ad9] type 00 class 0x0c8000
[    3.444278] pci 000d:01:00.3: reg 0x10: [mem 0x51004000-0x51004fff]
[    3.450601] pci 000d:01:00.3: PME# supported from D0 D3hot D3cold
[    3.456736] pci 000d:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    3.478011] pci 000d:00:01.0: BAR 9: assigned [mem 0x340000000000-0x340017ffffff 64bit pref]
[    3.486439] pci 000d:00:01.0: BAR 8: assigned [mem 0x50000000-0x517fffff]
[    3.493215] pci 000d:00:01.0: BAR 7: no space for [io  size 0x1000]
[    3.499470] pci 000d:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    3.506075] pci 000d:01:00.0: BAR 1: assigned [mem 0x340000000000-0x34000fffffff 64bit pref]
[    3.514508] pci 000d:01:00.0: BAR 3: assigned [mem 0x340010000000-0x340011ffffff 64bit pref]
[    3.522940] pci 000d:01:00.0: BAR 0: assigned [mem 0x50000000-0x50ffffff]
[    3.529718] pci 000d:01:00.0: BAR 6: assigned [mem 0x51000000-0x5107ffff pref]
[    3.536929] pci 000d:01:00.2: BAR 0: assigned [mem 0x340012000000-0x34001203ffff 64bit pref]
[    3.545361] pci 000d:01:00.2: BAR 3: assigned [mem 0x340012040000-0x34001204ffff 64bit pref]
[    3.553793] pci 000d:01:00.1: BAR 0: assigned [mem 0x51080000-0x51083fff]
[    3.560571] pci 000d:01:00.3: BAR 0: assigned [mem 0x51084000-0x51084fff]
[    3.567350] pci 000d:01:00.0: BAR 5: no space for [io  size 0x0080]
[    3.573605] pci 000d:01:00.0: BAR 5: failed to assign [io  size 0x0080]
[    3.580209] pci 000d:00:01.0: PCI bridge to [bus 01]
[    3.585163] pci 000d:00:01.0:   bridge window [mem 0x50000000-0x517fffff]
[    3.591939] pci 000d:00:01.0:   bridge window [mem 0x340000000000-0x340017ffffff 64bit pref]
[    3.600366] pci_bus 000d:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    3.609399] pci_bus 000d:00: resource 4 [mem 0x50000000-0x5fffffff window]
[    3.616263] pci_bus 000d:00: resource 5 [mem 0x340000000000-0x37ffdfffffff window]
[    3.623820] pci_bus 000d:01: resource 1 [mem 0x50000000-0x517fffff]
[    3.630080] pci_bus 000d:01: resource 2 [mem 0x340000000000-0x340017ffffff 64bit pref]
[    3.638038] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus 00-ff])
[    3.644216] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    3.653316] acpi PNP0A08:03: PCIe port services disabled; not requesting _OSC control
[    3.661137] acpi PNP0A08:03: MCFG quirk: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    3.673925] acpi PNP0A08:03: ECAM area [mem 0x3ffff0000000-0x3fffffffffff] reserved by PNP0C02:00
[    3.682795] acpi PNP0A08:03: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff]
[    3.690948] PCI host bridge to bus 0000:00
[    3.695035] pci_bus 0000:00: root bus resource [mem 0x70000000-0x7fffffff window]
[    3.702505] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3fffdfffffff window]
[    3.710671] pci_bus 0000:00: root bus resource [bus 00-ff]
[    3.716176] pci 0000:00:00.0: [1def:e100] type 00 class 0x060000
[    3.722238] pci 0000:00:01.0: [1def:e101] type 01 class 0x060400
[    3.728271] pci 0000:00:01.0: supports D1 D2
[    3.732530] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    3.738349] pci 0000:01:00.0: [8086:1589] type 00 class 0x020000
[    3.744357] pci 0000:01:00.0: reg 0x10: [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    3.752274] pci 0000:01:00.0: reg 0x1c: [mem 0x3c0004818000-0x3c000481ffff 64bit pref]
[    3.760187] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    3.766949] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    3.773109] pci 0000:01:00.1: [8086:1589] type 00 class 0x020000
[    3.779117] pci 0000:01:00.1: reg 0x10: [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    3.787034] pci 0000:01:00.1: reg 0x1c: [mem 0x3c0004810000-0x3c0004817fff 64bit pref]
[    3.794947] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    3.801704] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    3.807853] pci 0000:01:00.2: [8086:1589] type 00 class 0x020000
[    3.813862] pci 0000:01:00.2: reg 0x10: [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    3.821779] pci 0000:01:00.2: reg 0x1c: [mem 0x3c0004808000-0x3c000480ffff 64bit pref]
[    3.829691] pci 0000:01:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    3.836449] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[    3.842595] pci 0000:01:00.3: [8086:1589] type 00 class 0x020000
[    3.848604] pci 0000:01:00.3: reg 0x10: [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    3.856521] pci 0000:01:00.3: reg 0x1c: [mem 0x3c0004800000-0x3c0004807fff 64bit pref]
[    3.864433] pci 0000:01:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    3.871190] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[    3.877352] pci 0000:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01-02] add_size 1000
[    3.885782] pci 0000:00:01.0: BAR 9: assigned [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    3.894208] pci 0000:00:01.0: BAR 8: assigned [mem 0x70000000-0x701fffff]
[    3.900985] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    3.907240] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    3.913844] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    3.920099] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    3.926704] pci 0000:01:00.0: BAR 0: assigned [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    3.935136] pci 0000:01:00.1: BAR 0: assigned [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    3.943568] pci 0000:01:00.2: BAR 0: assigned [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    3.951999] pci 0000:01:00.3: BAR 0: assigned [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    3.960431] pci 0000:01:00.0: BAR 6: assigned [mem 0x70000000-0x7007ffff pref]
[    3.967642] pci 0000:01:00.1: BAR 6: assigned [mem 0x70080000-0x700fffff pref]
[    3.974864] pci 0000:01:00.2: BAR 6: assigned [mem 0x70100000-0x7017ffff pref]
[    3.982075] pci 0000:01:00.3: BAR 6: assigned [mem 0x70180000-0x701fffff pref]
[    3.989286] pci 0000:01:00.0: BAR 3: assigned [mem 0x3c0004000000-0x3c0004007fff 64bit pref]
[    3.997718] pci 0000:01:00.1: BAR 3: assigned [mem 0x3c0004008000-0x3c000400ffff 64bit pref]
[    4.006150] pci 0000:01:00.2: BAR 3: assigned [mem 0x3c0004010000-0x3c0004017fff 64bit pref]
[    4.014582] pci 0000:01:00.3: BAR 3: assigned [mem 0x3c0004018000-0x3c000401ffff 64bit pref]
[    4.023014] pci 0000:00:01.0: PCI bridge to [bus 01-02]
[    4.028228] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x701fffff]
[    4.035005] pci 0000:00:01.0:   bridge window [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    4.043432] pci_bus 0000:00: resource 4 [mem 0x70000000-0x7fffffff window]
[    4.050295] pci_bus 0000:00: resource 5 [mem 0x3c0000000000-0x3fffdfffffff window]
[    4.057852] pci_bus 0000:01: resource 1 [mem 0x70000000-0x701fffff]
[    4.064108] pci_bus 0000:01: resource 2 [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    4.072071] ACPI: PCI Root Bridge [PCI6] (domain 0004 [bus 00-ff])
[    4.078249] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.087349] acpi PNP0A08:06: PCIe port services disabled; not requesting _OSC control
[    4.095170] acpi PNP0A08:06: MCFG quirk: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.107958] acpi PNP0A08:06: ECAM area [mem 0x2bfff0000000-0x2bffffffffff] reserved by PNP0C02:00
[    4.116836] acpi PNP0A08:06: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff]
[    4.124991] PCI host bridge to bus 0004:00
[    4.129078] pci_bus 0004:00: root bus resource [mem 0x20000000-0x2fffffff window]
[    4.136548] pci_bus 0004:00: root bus resource [mem 0x280000000000-0x2bffdfffffff window]
[    4.144714] pci_bus 0004:00: root bus resource [bus 00-ff]
[    4.150220] pci 0004:00:00.0: [1def:e110] type 00 class 0x060000
[    4.156281] pci 0004:00:01.0: [1def:e111] type 01 class 0x060400
[    4.162316] pci 0004:00:01.0: supports D1 D2
[    4.166575] pci 0004:00:01.0: PME# supported from D0 D1 D3hot
[    4.172355] pci 0004:00:03.0: [1def:e113] type 01 class 0x060400
[    4.178389] pci 0004:00:03.0: supports D1 D2
[    4.182648] pci 0004:00:03.0: PME# supported from D0 D1 D3hot
[    4.188432] pci 0004:00:05.0: [1def:e115] type 01 class 0x060400
[    4.194475] pci 0004:00:05.0: supports D1 D2
[    4.198734] pci 0004:00:05.0: PME# supported from D0 D1 D3hot
[    4.204553] pci 0004:01:00.0: [1a03:1150] type 01 class 0x060400
[    4.210598] pci 0004:01:00.0: enabling Extended Tags
[    4.215613] pci 0004:01:00.0: supports D1 D2
[    4.219872] pci 0004:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    4.226575] pci_bus 0004:02: extended config space not accessible
[    4.232679] pci 0004:02:00.0: [1a03:2000] type 00 class 0x030000
[    4.238693] pci 0004:02:00.0: reg 0x10: [mem 0x20000000-0x20ffffff]
[    4.244959] pci 0004:02:00.0: reg 0x14: [mem 0x21000000-0x2101ffff]
[    4.251224] pci 0004:02:00.0: reg 0x18: [io  0x27fff000-0x27fff07f]
[    4.257562] pci 0004:02:00.0: supports D1 D2
[    4.261821] pci 0004:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    4.268563] pci 0004:03:00.0: [1912:0014] type 00 class 0x0c0330
[    4.274578] pci 0004:03:00.0: reg 0x10: [mem 0x21200000-0x21201fff 64bit]
[    4.281459] pci 0004:03:00.0: PME# supported from D0 D3hot D3cold
[    4.287682] pci 0004:04:00.0: [8086:1533] type 00 class 0x020000
[    4.293707] pci 0004:04:00.0: reg 0x10: [mem 0x21100000-0x2117ffff]
[    4.299993] pci 0004:04:00.0: reg 0x18: [io  0x27ffe000-0x27ffe01f]
[    4.306264] pci 0004:04:00.0: reg 0x1c: [mem 0x21180000-0x21183fff]
[    4.312696] pci 0004:04:00.0: PME# supported from D0 D3hot D3cold
[    4.318891] pci 0004:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-02] add_size 200000 add_align 100000
[    4.330617] pci 0004:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    4.338783] pci 0004:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    4.350248] pci 0004:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 03] add_size 100000 add_align 100000
[    4.360759] pci 0004:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    4.372223] pci 0004:00:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    4.382735] pci 0004:00:01.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    4.389513] pci 0004:00:01.0: BAR 9: assigned [mem 0x280000000000-0x2800001fffff 64bit pref]
[    4.397938] pci 0004:00:03.0: BAR 8: assigned [mem 0x21800000-0x219fffff]
[    4.404715] pci 0004:00:03.0: BAR 9: assigned [mem 0x280000200000-0x2800003fffff 64bit pref]
[    4.413141] pci 0004:00:05.0: BAR 8: assigned [mem 0x21a00000-0x21bfffff]
[    4.419918] pci 0004:00:05.0: BAR 9: assigned [mem 0x280000400000-0x2800005fffff 64bit pref]
[    4.428343] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.434599] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.441202] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    4.447457] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    4.454060] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    4.460315] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    4.466919] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.473175] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.479777] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    4.486033] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    4.492635] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    4.498890] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    4.505494] pci 0004:01:00.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    4.512270] pci 0004:01:00.0: BAR 7: no space for [io  size 0x1000]
[    4.518525] pci 0004:01:00.0: BAR 7: failed to assign [io  size 0x1000]
[    4.525128] pci 0004:02:00.0: BAR 0: assigned [mem 0x20000000-0x20ffffff]
[    4.531916] pci 0004:02:00.0: BAR 1: assigned [mem 0x21000000-0x2101ffff]
[    4.538695] pci 0004:02:00.0: BAR 2: no space for [io  size 0x0080]
[    4.544951] pci 0004:02:00.0: BAR 2: failed to assign [io  size 0x0080]
[    4.551554] pci 0004:01:00.0: PCI bridge to [bus 02]
[    4.556510] pci 0004:01:00.0:   bridge window [mem 0x20000000-0x217fffff]
[    4.563293] pci 0004:00:01.0: PCI bridge to [bus 01-02]
[    4.568507] pci 0004:00:01.0:   bridge window [mem 0x20000000-0x217fffff]
[    4.575284] pci 0004:00:01.0:   bridge window [mem 0x280000000000-0x2800001fffff 64bit pref]
[    4.583712] pci 0004:03:00.0: BAR 0: assigned [mem 0x21800000-0x21801fff 64bit]
[    4.591018] pci 0004:00:03.0: PCI bridge to [bus 03]
[    4.595972] pci 0004:00:03.0:   bridge window [mem 0x21800000-0x219fffff]
[    4.602748] pci 0004:00:03.0:   bridge window [mem 0x280000200000-0x2800003fffff 64bit pref]
[    4.611176] pci 0004:04:00.0: BAR 0: assigned [mem 0x21a00000-0x21a7ffff]
[    4.617958] pci 0004:04:00.0: BAR 3: assigned [mem 0x21a80000-0x21a83fff]
[    4.624738] pci 0004:04:00.0: BAR 2: no space for [io  size 0x0020]
[    4.630993] pci 0004:04:00.0: BAR 2: failed to assign [io  size 0x0020]
[    4.637596] pci 0004:00:05.0: PCI bridge to [bus 04]
[    4.642550] pci 0004:00:05.0:   bridge window [mem 0x21a00000-0x21bfffff]
[    4.649327] pci 0004:00:05.0:   bridge window [mem 0x280000400000-0x2800005fffff 64bit pref]
[    4.657754] pci_bus 0004:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    4.666787] pci_bus 0004:00: resource 4 [mem 0x20000000-0x2fffffff window]
[    4.673650] pci_bus 0004:00: resource 5 [mem 0x280000000000-0x2bffdfffffff window]
[    4.681208] pci_bus 0004:01: resource 1 [mem 0x20000000-0x217fffff]
[    4.687463] pci_bus 0004:01: resource 2 [mem 0x280000000000-0x2800001fffff 64bit pref]
[    4.695368] pci_bus 0004:02: resource 1 [mem 0x20000000-0x217fffff]
[    4.701624] pci_bus 0004:03: resource 1 [mem 0x21800000-0x219fffff]
[    4.707879] pci_bus 0004:03: resource 2 [mem 0x280000200000-0x2800003fffff 64bit pref]
[    4.715784] pci_bus 0004:04: resource 1 [mem 0x21a00000-0x21bfffff]
[    4.722039] pci_bus 0004:04: resource 2 [mem 0x280000400000-0x2800005fffff 64bit pref]
[    4.729993] ACPI: PCI Root Bridge [PCI7] (domain 0005 [bus 00-ff])
[    4.736171] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.745271] acpi PNP0A08:07: PCIe port services disabled; not requesting _OSC control
[    4.753092] acpi PNP0A08:07: MCFG quirk: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.765880] acpi PNP0A08:07: ECAM area [mem 0x2ffff0000000-0x2fffffffffff] reserved by PNP0C02:00
[    4.774751] acpi PNP0A08:07: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff]
[    4.782901] PCI host bridge to bus 0005:00
[    4.786988] pci_bus 0005:00: root bus resource [mem 0x30000000-0x3fffffff window]
[    4.794459] pci_bus 0005:00: root bus resource [mem 0x2c0000000000-0x2fffdfffffff window]
[    4.802624] pci_bus 0005:00: root bus resource [bus 00-ff]
[    4.808130] pci 0005:00:00.0: [1def:e110] type 00 class 0x060000
[    4.814197] pci 0005:00:01.0: [1def:e111] type 01 class 0x060400
[    4.820240] pci 0005:00:01.0: supports D1 D2
[    4.824498] pci 0005:00:01.0: PME# supported from D0 D1 D3hot
[    4.830284] pci 0005:00:03.0: [1def:e113] type 01 class 0x060400
[    4.836318] pci 0005:00:03.0: supports D1 D2
[    4.840577] pci 0005:00:03.0: PME# supported from D0 D1 D3hot
[    4.846359] pci 0005:00:05.0: [1def:e115] type 01 class 0x060400
[    4.852401] pci 0005:00:05.0: supports D1 D2
[    4.856660] pci 0005:00:05.0: PME# supported from D0 D1 D3hot
[    4.862440] pci 0005:00:07.0: [1def:e117] type 01 class 0x060400
[    4.868469] pci 0005:00:07.0: supports D1 D2
[    4.872728] pci 0005:00:07.0: PME# supported from D0 D1 D3hot
[    4.879609] pci 0005:02:00.0: [1912:0014] type 00 class 0x0c0330
[    4.885625] pci 0005:02:00.0: reg 0x10: [mem 0x30100000-0x30101fff 64bit]
[    4.892505] pci 0005:02:00.0: PME# supported from D0 D3hot D3cold
[    4.899768] pci 0005:04:00.0: [126f:2263] type 00 class 0x010802
[    4.905782] pci 0005:04:00.0: reg 0x10: [mem 0x30000000-0x30003fff 64bit]
[    4.912739] pci 0005:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    4.920905] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    4.932369] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    4.942879] pci 0005:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    4.951044] pci 0005:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[    4.962509] pci 0005:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 02] add_size 100000 add_align 100000
[    4.973018] pci 0005:00:05.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    4.981183] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    4.992648] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[    5.003157] pci 0005:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    5.011322] pci 0005:00:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    5.022787] pci 0005:00:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    5.033301] pci 0005:00:01.0: BAR 8: assigned [mem 0x30000000-0x301fffff]
[    5.040079] pci 0005:00:01.0: BAR 9: assigned [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    5.048504] pci 0005:00:03.0: BAR 8: assigned [mem 0x30200000-0x303fffff]
[    5.055281] pci 0005:00:03.0: BAR 9: assigned [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    5.063707] pci 0005:00:05.0: BAR 8: assigned [mem 0x30400000-0x305fffff]
[    5.070484] pci 0005:00:05.0: BAR 9: assigned [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    5.078909] pci 0005:00:07.0: BAR 8: assigned [mem 0x30600000-0x307fffff]
[    5.085686] pci 0005:00:07.0: BAR 9: assigned [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    5.094112] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.100367] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.106970] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.113225] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.119828] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.126083] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.132686] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    5.138941] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    5.145546] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    5.151801] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    5.158404] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.164659] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.171262] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.177518] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.184121] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.190376] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.196979] pci 0005:00:01.0: PCI bridge to [bus 01]
[    5.201933] pci 0005:00:01.0:   bridge window [mem 0x30000000-0x301fffff]
[    5.208710] pci 0005:00:01.0:   bridge window [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    5.217138] pci 0005:02:00.0: BAR 0: assigned [mem 0x30200000-0x30201fff 64bit]
[    5.224444] pci 0005:00:03.0: PCI bridge to [bus 02]
[    5.229398] pci 0005:00:03.0:   bridge window [mem 0x30200000-0x303fffff]
[    5.236174] pci 0005:00:03.0:   bridge window [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    5.244601] pci 0005:00:05.0: PCI bridge to [bus 03]
[    5.249555] pci 0005:00:05.0:   bridge window [mem 0x30400000-0x305fffff]
[    5.256331] pci 0005:00:05.0:   bridge window [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    5.264759] pci 0005:04:00.0: BAR 0: assigned [mem 0x30600000-0x30603fff 64bit]
[    5.272063] pci 0005:00:07.0: PCI bridge to [bus 04]
[    5.277017] pci 0005:00:07.0:   bridge window [mem 0x30600000-0x307fffff]
[    5.283794] pci 0005:00:07.0:   bridge window [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    5.292220] pci_bus 0005:00: resource 4 [mem 0x30000000-0x3fffffff window]
[    5.299083] pci_bus 0005:00: resource 5 [mem 0x2c0000000000-0x2fffdfffffff window]
[    5.306641] pci_bus 0005:01: resource 1 [mem 0x30000000-0x301fffff]
[    5.312897] pci_bus 0005:01: resource 2 [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    5.320801] pci_bus 0005:02: resource 1 [mem 0x30200000-0x303fffff]
[    5.327057] pci_bus 0005:02: resource 2 [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    5.334961] pci_bus 0005:03: resource 1 [mem 0x30400000-0x305fffff]
[    5.341217] pci_bus 0005:03: resource 2 [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    5.349122] pci_bus 0005:04: resource 1 [mem 0x30600000-0x307fffff]
[    5.355377] pci_bus 0005:04: resource 2 [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    5.363491] iommu: Default domain type: Translated 
[    5.368393] pci 000d:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    5.376741] pci 0004:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    5.385083] pci 000d:01:00.0: vgaarb: bridge control possible
[    5.390817] pci 0004:02:00.0: vgaarb: bridge control possible
[    5.396553] pci 0004:02:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[    5.405413] vgaarb: loaded
[    5.408193] SCSI subsystem initialized
[    5.411937] ACPI: bus type USB registered
[    5.415951] usbcore: registered new interface driver usbfs
[    5.421434] usbcore: registered new interface driver hub
[    5.426748] usbcore: registered new device driver usb
[    5.431807] pps_core: LinuxPPS API ver. 1 registered
[    5.436761] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    5.445882] PTP clock support registered
[    5.449885] Registered efivars operations
[    5.454193] clocksource: Switched to clocksource arch_sys_counter
[    5.635554] pnp: PnP ACPI init
[    5.639966] system 00:00: [mem 0x3bfff0000000-0x3bffffffffff window] has been reserved
[    5.647877] system 00:00: [mem 0x3ffff0000000-0x3fffffffffff window] could not be reserved
[    5.656130] system 00:00: [mem 0x23fff0000000-0x23ffffffffff window] has been reserved
[    5.664036] system 00:00: [mem 0x27fff0000000-0x27ffffffffff window] has been reserved
[    5.671942] system 00:00: [mem 0x2bfff0000000-0x2bffffffffff window] could not be reserved
[    5.680195] system 00:00: [mem 0x2ffff0000000-0x2fffffffffff window] could not be reserved
[    5.688448] system 00:00: [mem 0x7bfff0000000-0x7bffffffffff window] has been reserved
[    5.696354] system 00:00: [mem 0x7ffff0000000-0x7fffffffffff window] has been reserved
[    5.704260] system 00:00: [mem 0x63fff0000000-0x63ffffffffff window] has been reserved
[    5.712166] system 00:00: [mem 0x67fff0000000-0x67ffffffffff window] has been reserved
[    5.720072] system 00:00: [mem 0x6bfff0000000-0x6bffffffffff window] has been reserved
[    5.727977] system 00:00: [mem 0x6ffff0000000-0x6fffffffffff window] has been reserved
[    5.735883] system 00:00: [mem 0x33fff0000000-0x33ffffffffff window] could not be reserved
[    5.744136] system 00:00: [mem 0x37fff0000000-0x37ffffffffff window] could not be reserved
[    5.752398] pnp: PnP ACPI: found 1 devices
[    5.757687] NET: Registered protocol family 2
[    5.762251] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    5.771127] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    5.780138] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    5.788005] TCP: Hash tables configured (established 262144 bind 65536)
[    5.794679] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    5.801888] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    5.809598] NET: Registered protocol family 1
[    5.814045] RPC: Registered named UNIX socket transport module.
[    5.819961] RPC: Registered udp transport module.
[    5.824654] RPC: Registered tcp transport module.
[    5.829346] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.835820] pci 000d:01:00.1: D0 power state depends on 000d:01:00.0
[    5.842225] pci 000d:01:00.2: D0 power state depends on 000d:01:00.0
[    5.848603] pci 000d:01:00.2: enabling device (0000 -> 0002)
[    5.854300] pci 000d:01:00.3: D0 power state depends on 000d:01:00.0
[    5.860702] pci 0004:03:00.0: enabling device (0000 -> 0002)
[    5.866393] pci 0005:02:00.0: enabling device (0000 -> 0002)
[    5.872065] PCI: CLS 128 bytes, default 64
[    5.876272] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 7 counters available
[    5.885181] workingset: timestamp_bits=42 max_order=23 bucket_order=0
[    5.893343] NFS: Registering the id_resolver key type
[    5.898403] Key type id_resolver registered
[    5.902601] Key type id_legacy registered
[    5.906775] Key type cifs.idmap registered
[    5.925127] xor: measuring software checksum speed
[    5.930932]    8regs           :  9790 MB/sec
[    5.936118]    32regs          : 11761 MB/sec
[    5.941168]    arm64_neon      : 14085 MB/sec
[    5.945517] xor: using function: arm64_neon (14085 MB/sec)
[    5.951008] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    5.958395] io scheduler mq-deadline registered
[    5.962914] io scheduler kyber registered
[    5.967267] gpio-dwapb APMC0D07:02: no IRQ for port0
[    5.972960] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    5.981331] ACPI: Power Button [PWRB]
[    5.988063] GHES: APEI firmware first mode is enabled by APEI bit.
[    5.994439] EINJ: Error INJection is initialized.
[    5.999176] ACPI GTDT: found 1 SBSA generic Watchdog(s).
[    6.005219] ast 0004:02:00.0: [drm] platform has no IO space, trying MMIO
[    6.012011] ast 0004:02:00.0: [drm] Using P2A bridge for configuration
[    6.018530] ast 0004:02:00.0: [drm] AST 2500 detected
[    6.023574] ast 0004:02:00.0: [drm] Analog VGA only
[    6.028447] ast 0004:02:00.0: [drm] dram MCLK=800 Mhz type=8 bus_width=16
[    6.035266] [TTM] Zone  kernel: Available graphics memory: 16251144 KiB
[    6.041872] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    6.048388] [TTM] Initializing pool allocator
[    6.052737] [TTM] Initializing DMA pool allocator
[    6.057668] [drm] Initialized ast 0.1.0 20120228 for 0004:02:00.0 on minor 0
[    6.082172] Console: switching to colour frame buffer device 128x48
[    6.090387] ast 0004:02:00.0: [drm] fb0: astdrmfb frame buffer device
[    6.107934] brd: module loaded
[    6.115358] loop: module loaded
[    6.118805] nvme nvme0: pci function 0005:04:00.0
[    6.123715] igb: Intel(R) Gigabit Ethernet Network Driver
[    6.129109] DEBUG dma_alloc_attrs 432 size=512 flags=cc0 attr=0
[    6.135028] igb: Copyright (c) 2007-2014 Intel Corporation.
[    6.140591] DEBUG dma_alloc_attrs 436 size=512 flags=cc0 attr=0
[    6.147072] DEBUG dma_alloc_attrs 432 size=2048 flags=cc0 attr=0
[    6.153069] DEBUG dma_alloc_attrs 436 size=2048 flags=cc0 attr=0
[    6.163235] nvme nvme0: missing or invalid SUBNQN field.
[    6.174003] DEBUG dma_alloc_attrs 432 size=256 flags=cc0 attr=0
[    6.180311] pps pps0: new PPS source ptp0
[    6.184314] DEBUG dma_alloc_attrs 436 size=256 flags=cc0 attr=0
[    6.190251] igb 0004:04:00.0: added PHC on eth0
[    6.194773] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.201204] igb 0004:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    6.208067] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.214498] igb 0004:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:3b:50:52
[    6.221742] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.228230] igb 0004:04:00.0: eth0: PBA No: 000300-000
[    6.233357] igb 0004:04:00.0: Using MSI-X interrupts. 1 rx queue(s), 1 tx queue(s)
[    6.240916] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.247463] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.253926] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    6.260185] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    6.266094] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.272552] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[    6.278927] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.285357] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[    6.291179] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.297723] i40e 0000:01:00.0: enabling device (0000 -> 0002)
[    6.303583] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.311301] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.317852] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.324291] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[    6.330287] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.336717] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[    6.342830] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.349264] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.355260] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.361689] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.367803] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.374234] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.380230] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.386660] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.392774] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.399205] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.405201] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.411630] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.417626] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.423741] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.430171] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.436167] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.442597] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.448711] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.455141] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.461138] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.467574] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.473688] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.480120] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.486115] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.492550] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.498664] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.505094] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.511090] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.517520] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.523635] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.530065] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.536061] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.542492] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.548606] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.555036] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.561031] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.567462] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.573457] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.579571] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    6.586002] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.591999] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    6.598429] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.604545] nvme nvme0: allocated 64 MiB host memory buffer.
[    6.610195] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.616196] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.622202] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.628517] DEBUG dma_alloc_attrs 432 size=16384 flags=cc0 attr=0
[    6.634609] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.640608] DEBUG dma_alloc_attrs 436 size=16384 flags=cc0 attr=0
[    6.646706] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.652704] DEBUG dma_alloc_attrs 432 size=65536 flags=cc0 attr=0
[    6.658787] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.664782] DEBUG dma_alloc_attrs 436 size=65536 flags=cc0 attr=0
[    6.670865] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.676867] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.682872] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.688874] nvme nvme0: 1/0/0 default/read/poll queues
[    6.694001] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.700077] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.706090] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.712095] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.718134] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.724130] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.730125] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.736121] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.742116] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.748112] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.754106] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.760102] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.766097] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.772093] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.778088] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.784083] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.790078] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.796074] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.802069] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.808064] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.814059] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.820055] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.826050] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.832046] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.838041] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.844037] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.850032] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.856028] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.862023] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.868019] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.874014] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.880010] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.886004] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.892001] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.897996] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.903992] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.909987] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.915982] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.921977] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.927973] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.933968] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.939964] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.945959] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.951955] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.957950] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.963946] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.969941] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.975941] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.981936] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.987932] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    6.993927] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    6.999922] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.005917] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.011913] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.017908] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.023903] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.029898] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.035894] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.041889] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.047884] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.053879] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.059876] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.065871] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.071866] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.077861] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.083857] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.089852] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.095849] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.101844] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.107840] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.113834] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.119831] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.125826] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.131822] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.137817] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.143812] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.149807] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.155803] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.161798] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.167794] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.173788] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.179785] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.185780] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.191775] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.197770] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.203766] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.209761] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.215757] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.221752] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.227748] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.233742] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.239739] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.245734] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.251729] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.257724] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.263720] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.269715] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.275711] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.281706] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.287702] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.293696] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.299698] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.305693] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.311688] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.317684] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.323679] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.329674] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.335670] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.341665] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.347660] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.353655] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.359651] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.365646] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.371642] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.377637] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.383633] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.389627] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.395623] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.401618] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.407614] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.413609] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.419605] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.425600] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.431596] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.437591] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.443587] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.449582] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.455577] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.461572] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.467568] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.473563] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.479559] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.485554] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.491552] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.497548] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.503544] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.509539] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.515535] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.521530] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.527526] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.533521] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.539516] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.545511] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.551507] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.557502] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.563497] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.569492] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.575488] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.581483] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.587478] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.593473] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.599469] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.605464] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.611460] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.617454] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.623450] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.629445] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.635441] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.641436] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.647432] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.653426] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.659422] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.665417] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.671413] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.677408] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.683404] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.689398] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.695395] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.701390] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.707386] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.713381] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.719376] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.725371] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.731367] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.737362] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.743358] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.749352] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.755348] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.761344] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.767339] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.773334] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.779330] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.785325] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.791321] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.797316] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.803312] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.809306] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.815302] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.821297] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.827293] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.833288] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.839283] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.845278] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.851274] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.857269] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.863264] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.869259] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.875255] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.881250] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.887246] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.893241] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.899237] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.905232] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.911228] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.917223] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.923218] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.929213] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.935209] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.941204] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.947200] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.953195] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.959191] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.965186] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.971182] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.977177] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.983172] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.989167] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.995163] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.001161] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.007157] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.013152] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.019148] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.025143] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.031139] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.037134] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.043130] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.049124] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.055125] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.061120] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.067116] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.073111] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.079107] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.085102] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.091097] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.097093] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.103088] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.109083] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.115080] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.121075] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.127070] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.133065] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.139061] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.145056] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.151051] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.157046] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.163042] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.169037] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.175033] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.181028] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.187024] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.193019] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.199014] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.205010] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.211005] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.217000] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.222996] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.228991] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.234987] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.240982] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.246978] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.252973] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.258969] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.264964] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.270960] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.276955] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.282950] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.288945] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.294941] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.300936] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.306931] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.312926] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.318923] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.324918] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.330914] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.336909] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.342904] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.348899] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.354895] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.360890] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.366886] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.372881] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.378877] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.384871] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.390867] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.396862] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.402858] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.408853] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.414848] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.420843] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.426839] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.432834] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.438829] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.444824] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.450820] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.456815] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.462811] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.468806] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.474802] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.480797] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.486793] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.492788] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.498784] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.504779] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.510777] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.516772] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.522769] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.528763] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.534759] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.540754] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.546750] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.552745] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.558741] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.564736] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.570732] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.576727] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.582722] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.588717] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.594713] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.600708] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.606704] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.612699] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.618694] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.624689] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.630685] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.636680] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.642675] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.648670] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.654666] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.660661] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.666657] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.672652] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.678648] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.684642] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.690638] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.696633] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.702629] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.708624] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.714620] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.720615] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.726611] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.732606] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.738601] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.744596] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.750592] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.756587] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.762583] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.768578] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.774574] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.780569] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.786565] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.792560] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.798556] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.804551] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.810548] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.816543] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.822539] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.828534] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.834529] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.840524] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.846520] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.852515] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.858511] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.864506] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.870502] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.876497] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.882492] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.888487] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.894483] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.900478] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.906474] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.912469] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.918464] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.924459] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.930456] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.936451] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.942446] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.948441] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.954437] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.960432] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.966427] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.972423] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.978418] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.984413] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.990410] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.996404] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.002400] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.008395] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.014391] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.020386] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.026385] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.032380] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.038376] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.044371] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.050367] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.056362] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.062357] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.068352] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.074348] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.080343] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.086339] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.092334] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.098330] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.104325] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.110321] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.116316] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.122312] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.128306] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.134302] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.140297] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.146293] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.152288] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.158284] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.164279] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.170274] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.176269] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.182265] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.188260] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.194255] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.200250] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.206246] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.212241] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.218236] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.224231] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.230227] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.236222] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.242218] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.248212] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.254208] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.260203] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.266199] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.272194] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.278192] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.284186] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.290183] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.296178] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.302174] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.308169] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.314164] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.320159] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.326155] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.332150] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.338146] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.344141] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.350137] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.356132] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.362127] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.368123] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.374118] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.380113] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.386109] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.392104] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.398100] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.404095] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.410096] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.416092] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.422088] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.428083] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.434079] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.440074] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.446070] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.452065] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.458060] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.464056] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.470051] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.476046] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.482042] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.488037] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.494033] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.500028] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.506024] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.512018] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.518014] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.524009] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.530005] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.536002] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.541998] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.547993] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.553989] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.559984] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.565982] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.571977] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.577975] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[    9.583970] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[    9.589968] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.595963] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.601959] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.607954] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.613950] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.619945] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.625941] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.631935] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.637931] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.643926] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.649922] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.655917] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.661912] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.667907] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.673903] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.679898] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.685894] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.691888] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.697884] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.703879] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.709875] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.715870] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.721866] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.727861] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.733857] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.739852] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.745847] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.751843] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.757839] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.763833] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.769829] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.775824] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.781820] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.787815] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.793810] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.799805] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.805801] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.811796] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.817791] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.823786] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.829782] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.835777] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.841773] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.847767] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.853763] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.859758] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.865754] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.871749] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.877744] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.883739] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.889735] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.895730] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.901725] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.907720] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.913717] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.919711] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.925707] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.931702] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.937698] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.943693] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.949688] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.955684] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.961679] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.967674] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.973669] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.979664] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.985660] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.991655] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.997651] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.003646] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.009641] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.015636] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.021632] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.027627] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.033622] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.039617] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.045613] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.051611] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.057607] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.063602] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.069597] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.075593] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.081588] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.087583] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.093579] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.099575] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.105570] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.111565] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.117561] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.123556] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.129552] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.135547] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.141543] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.147537] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.153533] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.159528] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.165524] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.171519] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.177515] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.183510] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.189505] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.195500] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.201496] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.207491] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.213486] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.219481] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.225477] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.231472] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.237468] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.243462] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.249459] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.255454] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.261449] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.267445] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.273440] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.279435] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.285431] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.291426] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.297422] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.303417] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.309412] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.315407] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.321403] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.327398] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.333395] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.339390] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.345386] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.351381] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.357377] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.363372] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.369368] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.375363] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.381359] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.387354] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.393349] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.399344] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.405340] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.411335] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.417331] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.423326] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.429322] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.435317] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.441312] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.447307] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.453303] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.459298] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.465293] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.471288] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.477284] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.483279] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.489275] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.495269] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.501266] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.507261] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.513256] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.519251] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.525247] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.531242] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.537238] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.543233] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.549229] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.555224] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.561222] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.567218] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.573213] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.579208] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.585203] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.591198] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.597194] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.603189] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.609185] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.615180] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.621176] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.627171] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.633166] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.639162] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.645157] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.651152] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.657148] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.663143] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.669139] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.675134] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.681130] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.687125] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.693120] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.699115] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.705111] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.711106] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.717102] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.723097] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.729093] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.735088] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.741084] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.747079] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.753074] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.759069] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.765065] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.771060] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.777056] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.783051] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.789047] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.795041] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.801037] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.807032] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.813028] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.819023] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.825018] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.831013] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.837009] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.843004] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.848999] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.854994] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.860990] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.866985] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.872981] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.878976] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.884971] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.890966] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.896963] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.902958] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.908953] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.914949] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.920944] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.926939] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.932935] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.938930] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.944926] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.950921] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.956917] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.962912] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.968907] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.974903] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.980899] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.986893] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.992889] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.998884] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.004880] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.010875] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.016870] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.022865] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.028861] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.034856] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.040851] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.046846] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.052842] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.058837] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.064833] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.070830] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.076826] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.082821] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.088821] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.094816] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.100812] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.106807] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.112803] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.118797] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.124793] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.130788] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.136784] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.142779] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.148774] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.154769] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.160765] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.166760] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.172756] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.178752] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.184747] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.190742] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.196738] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.202739] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.208736] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.214731] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.220726] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.226722] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.232717] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.238712] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.244708] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.250703] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.256699] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.262694] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.268690] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.274685] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.280680] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.286676] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.292671] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.298666] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.304662] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.310657] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.316653] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.322648] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.328643] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.334638] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.340634] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.346629] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.352624] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.358619] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.364615] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.370610] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.376606] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.382601] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.388597] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.394592] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.400588] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.406583] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.412579] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.418574] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.424569] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.430564] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.436560] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.442555] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.448551] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.454546] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.460541] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.466536] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.472532] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.478527] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.484522] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.490517] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.496513] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.502508] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.508503] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.514498] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.520494] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.526489] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.532485] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.538480] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.544476] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.550471] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.556467] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.562462] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.568457] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.574452] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.580448] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.586446] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.592441] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.598436] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.604432] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.610427] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.616423] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.622418] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.628414] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.634409] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.640404] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.646400] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.652395] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.658390] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.664386] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.670381] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.676376] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.682371] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.688367] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.694362] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.700358] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.706353] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.712348] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.718343] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.724339] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.730334] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.736330] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.742325] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.748320] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.754315] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.760311] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.766307] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.772302] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.778297] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.784293] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.790288] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.796284] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.802279] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.808274] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.814269] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.820265] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.826260] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.832256] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.838251] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.844249] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.850244] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.856239] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.862234] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.868230] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.874225] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.880221] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.886216] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.892211] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.898206] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.904202] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.910197] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.916193] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.922188] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.928183] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.934178] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.940175] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.946169] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.952165] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.958160] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.964156] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.970151] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.976147] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.982142] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.988137] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.994132] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.000129] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.006124] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.012119] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.018114] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.024110] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.030105] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.036101] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.042096] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.048092] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.054086] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.060082] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.066077] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.072072] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.078067] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.084063] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.090058] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.096056] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.102051] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.108047] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.114042] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.120038] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.126032] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.132028] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.138023] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.144019] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.150014] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.156010] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.162005] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.168001] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.173996] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.179992] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.185986] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.191982] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.197977] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.203973] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.209968] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.215964] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.221959] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.227955] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.233950] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.239946] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.245941] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.251936] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.257931] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.263927] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.269922] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.275918] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.281913] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.287908] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.293903] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.299899] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.305894] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.311890] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.317884] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.323880] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.329875] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.335871] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.341866] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.347861] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.353856] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.359852] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.365847] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.371843] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.377838] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.383834] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.389829] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.395825] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.401820] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.407816] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.413811] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.419806] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.425801] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.431797] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.437792] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.443788] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.449783] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.455779] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.461774] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.467770] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.473765] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.479760] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.485755] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.491751] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.497746] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.503742] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.509737] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.515733] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.521727] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.527724] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.533719] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.539714] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.545709] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.551705] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.557700] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.563695] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.569691] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.575687] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.581681] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.587677] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.593672] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.599672] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.605667] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.611665] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.617660] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.623656] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.629651] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.635647] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.641641] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.647637] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.653632] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.660581] i40e 0000:01:00.0: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0002]
[   12.948846] DEBUG dma_alloc_attrs 432 size=61440 flags=cc0 attr=0
[   12.954929] DEBUG dma_alloc_attrs 436 size=61440 flags=cc0 attr=0
[   12.961124] i40e 0000:01:00.0: MAC address: 3c:fd:fe:6b:e9:c0
[   12.967013] i40e 0000:01:00.0: FW LLDP is enabled
[   12.986321] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.992323] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.998319] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.004315] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.010473] i40e 0000:01:00.0: PCI-Express: Speed 8.0GT/s Width x8
[   13.017731] i40e 0000:01:00.0: Features: PF-id[0] VSIs: 34 QP: 1 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   13.027796] i40e 0000:01:00.1: enabling device (0000 -> 0002)
[   13.045706] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   13.051715] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   13.057725] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.063732] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.069740] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.075747] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.081755]  nvme0n1: p1 p2 p3
[   13.084800] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.091355] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.097363] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.103363] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.109360] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.115356] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.121356] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.127351] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.133347] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.139342] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.145337] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.151332] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.157327] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.163322] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.169318] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.175313] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.181308] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.187303] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.193298] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.199293] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.205288] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.211283] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.217279] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.223274] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.229269] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.235265] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.241260] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.247255] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.253251] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.259245] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.265242] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.271237] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.277232] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.283227] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.289223] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.295218] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.301213] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.307209] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.313204] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.319199] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.325196] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.331190] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.337186] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.343181] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.349177] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.355172] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.361168] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.367163] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.373158] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.379153] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.385149] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.391144] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.397140] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.403135] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.409131] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.415126] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.421122] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.427117] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.433113] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.439108] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.445104] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.451098] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.457094] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.463089] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.469085] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.475080] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.481076] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.487071] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.493067] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.499061] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.505057] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.511052] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.517048] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.523043] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.529039] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.535034] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.541029] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.547024] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.553020] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.559015] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.565010] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.571005] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.577001] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.582996] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.588992] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.594986] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.600982] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.606977] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.612973] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.618968] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.624963] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.630961] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.636957] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.642953] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.648948] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.654943] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.660939] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.666934] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.672930] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.678925] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.684920] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.690915] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.696911] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.702906] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.708902] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.714897] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.720893] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.726888] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.732883] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.738878] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.744874] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.750869] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.756865] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.762860] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.768856] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.774850] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.780847] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.786842] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.792837] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.798832] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.804828] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.810823] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.816819] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.822814] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.828810] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.834804] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.840800] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.846796] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.852791] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.858786] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.864785] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.870780] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.876776] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.882771] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.888766] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.894761] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.900756] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.906751] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.912747] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.918741] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.924737] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.930731] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.936727] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.942722] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.948717] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.954712] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.960707] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.966702] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.972697] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.978692] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.984687] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.990682] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.996678] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.002673] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.008669] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.014664] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.020659] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.026654] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.032650] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.038645] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.044641] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.050636] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.056632] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.062627] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.068623] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.074618] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.080613] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.086608] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.092604] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.098599] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.104595] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.110590] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.116586] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.122581] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.128576] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.134571] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.140567] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.146564] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.152560] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.158555] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.164551] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.170546] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.176542] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.182537] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.188533] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.194528] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.200523] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.206518] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.212514] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.218509] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.224505] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.230500] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.236496] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.242491] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.248487] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.254482] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.260478] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.266473] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.272469] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.278463] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.284459] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.290454] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.296450] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.302445] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.308440] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.314435] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.320431] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.326426] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.332421] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.338416] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.344412] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.350407] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.356402] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.362397] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.368393] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.374388] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.380384] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.386379] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.392375] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.398370] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.404366] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.410361] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.416357] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.422351] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.428347] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.434342] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.440338] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.446333] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.452328] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.458324] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.464319] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.470314] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.476309] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.482304] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.488301] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.494295] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.500291] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.506286] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.512282] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.518277] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.524273] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.530268] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.536264] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.542259] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.548255] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.554249] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.560245] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.566240] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.572236] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.578231] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.584226] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.590223] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.596219] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.602213] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.608209] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.614204] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.620203] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.626197] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.632193] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.638188] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.644186] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.650181] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.656179] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.662175] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.668171] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.674165] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.680161] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.686156] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.692152] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.698147] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.704143] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.710138] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.716133] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.722128] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.728124] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.734119] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.740115] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.746110] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.752106] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.758101] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.764097] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.770092] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.776087] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.782082] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.788078] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.794073] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.800069] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.806064] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.812060] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.818055] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.824050] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.830045] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.836041] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.842036] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.848031] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.854026] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.860022] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.866017] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.872014] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.878009] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.884005] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.890000] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.895995] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.901990] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.907986] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.913981] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.919976] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.925971] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.931968] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.937963] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.943958] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.949953] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.955949] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.961944] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.967940] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.973935] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.979930] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.985925] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.991921] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.997916] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.003912] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.009907] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.015902] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.021897] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.027893] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.033888] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.039883] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.045879] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.051874] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.057869] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.063865] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.069861] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.075856] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.081852] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.087847] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.093842] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.099838] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.105833] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.111828] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.117823] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.123819] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.129815] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.135810] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.141805] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.147801] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.153796] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.159791] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.165787] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.171785] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.177780] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.183776] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.189771] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.195766] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.201761] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.207757] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.213752] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.219748] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.225743] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.231738] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.237734] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.243730] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.249725] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.255720] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.261715] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.267711] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.273706] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.279702] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.285697] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.291692] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.297687] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.303684] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.309679] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.315674] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.321669] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.327665] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.333660] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.339656] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.345651] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.351647] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.357641] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.363637] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.369633] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.375632] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.381626] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.387622] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.393617] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.399613] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.405607] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.411603] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.417598] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.423594] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.429589] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.435584] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.441579] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.447575] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.453570] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.459566] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.465561] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.471557] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.477552] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.483548] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.489543] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.495538] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.501533] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.507529] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.513524] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.519519] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.525514] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.531510] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.537505] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.543501] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.549496] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.555491] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.561486] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.567482] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.573477] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.579473] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.585468] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.591464] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.597459] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.603455] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.609449] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.615446] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.621441] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.627436] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.633431] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.639427] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.645422] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.651417] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.657413] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.663409] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.669403] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.675399] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.681397] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.687393] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.693388] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.699384] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.705378] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.711374] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.717369] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.723365] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.729360] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.735355] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.741350] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.747346] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.753341] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.759337] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.765332] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.771328] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.777323] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.783319] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.789314] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.795309] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.801304] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.807300] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.813295] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.819291] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.825286] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.831282] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.837277] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.843273] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.849268] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.855264] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.861259] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.867254] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.873249] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.879245] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.885240] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.891236] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.897231] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.903227] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.909222] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.915218] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.921213] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.927208] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.933203] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.939199] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.945194] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.951189] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.957185] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.963181] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.969175] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.975171] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.981166] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.987162] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.993157] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.999153] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.005148] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.011143] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.017138] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.023135] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.029129] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.035126] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.041121] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.047116] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.053111] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.059107] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.065102] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.071098] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.077093] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.083089] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.089083] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.095080] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.101075] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.107070] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.113065] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.119061] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.125056] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.131056] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   16.137051] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   16.143049] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.149044] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.155040] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.161035] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.167031] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.173026] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.179022] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.185017] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.191015] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.197011] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.203006] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.209001] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.214997] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.220992] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.226987] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.232982] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.238978] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.244973] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.250969] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.256964] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.262959] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.268955] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.274950] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.280945] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.286941] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.292936] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.298932] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.304927] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.310923] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.316918] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.322919] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.328914] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.334910] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.340905] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.346901] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.352896] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.358892] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.364886] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.370882] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.376877] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.382873] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.388868] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.394864] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.400859] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.406855] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.412850] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.418845] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.424840] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.430836] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.436831] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.442826] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.448821] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.454817] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.460812] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.466808] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.472803] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.478798] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.484793] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.490789] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.496784] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.502780] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.508775] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.514771] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.520766] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.526762] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.532757] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.538752] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.544748] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.550743] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.556738] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.562734] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.568729] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.574725] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.580720] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.586716] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.592711] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.598706] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.604702] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.610698] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.616693] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.622688] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.628683] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.634679] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.640674] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.646669] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.652664] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.658660] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.664655] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.670651] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.676646] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.682642] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.688637] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.694632] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.700627] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.706626] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.712621] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.718617] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.724612] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.730607] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.736602] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.742598] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.748593] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.754589] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.760584] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.766580] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.772575] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.778571] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.784566] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.790561] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.796556] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.802552] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.808547] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.814542] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.820537] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.826533] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.832527] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.838523] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.844518] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.850514] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.856509] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.862504] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.868499] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.874495] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.880490] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.886486] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.892480] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.898479] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.904474] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.910470] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.916465] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.922461] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.928456] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.934451] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.940447] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.946443] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.952438] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.958434] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.964429] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.970424] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.976419] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.982415] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.988410] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.994406] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.000401] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.006397] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.012392] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.018387] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.024383] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.030378] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.036373] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.042369] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.048364] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.054360] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.060355] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.066351] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.072346] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.078342] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.084337] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.090332] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.096327] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.102323] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.108318] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.114314] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.120310] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.126306] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.132300] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.138296] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.144292] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.150287] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.156282] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.162278] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.168273] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.174269] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.180264] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.186260] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.192255] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.198251] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.204246] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.210241] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.216239] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.222234] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.228230] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.234225] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.240220] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.246216] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.252211] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.258207] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.264202] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.270197] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.276192] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.282188] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.288183] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.294179] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.300174] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.306170] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.312165] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.318161] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.324156] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.330152] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.336147] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.342143] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.348137] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.354133] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.360128] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.366124] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.372119] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.378114] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.384109] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.390105] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.396100] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.402095] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.408090] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.414086] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.420081] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.426077] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.432072] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.438068] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.444063] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.450059] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.456054] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.462049] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.468044] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.474040] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.480035] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.486031] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.492026] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.498022] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.504017] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.510013] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.516007] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.522003] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.527998] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.533994] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.539989] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.545985] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.551980] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.557976] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.563971] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.569966] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.575961] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.581957] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.587952] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.593947] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.599943] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.605938] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.611933] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.617930] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.623925] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.629920] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.635915] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.641911] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.647906] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.653904] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.659898] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.665894] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.671889] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.677885] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.683880] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.689876] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.695871] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.701866] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.707861] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.713857] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.719852] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.725848] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.731846] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.737842] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.743837] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.749833] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.755827] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.761824] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.767819] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.773814] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.779809] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.785805] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.791800] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.797796] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.803791] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.809786] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.815781] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.821777] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.827772] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.833768] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.839762] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.845758] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.851753] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.857749] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.863744] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.869740] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.875735] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.881730] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.887725] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.893721] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.899717] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.905712] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.911707] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.917703] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.923698] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.929694] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.935689] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.941684] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.947679] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.953675] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.959670] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.965665] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.971660] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.977656] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.983651] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.989647] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.995642] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.001638] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.007633] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.013629] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.019624] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.025620] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.031614] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.037610] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.043605] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.049601] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.055596] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.061591] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.067586] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.073582] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.079577] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.085572] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.091567] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.097563] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.103558] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.109554] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.115553] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.121549] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.127545] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.133540] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.139536] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.145531] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.151526] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.157522] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.163517] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.169513] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.175508] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.181503] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.187499] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.193495] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.199490] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.205485] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.211480] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.217476] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.223471] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.229466] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.235462] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.241460] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.247455] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.253451] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.259446] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.265442] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.271437] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.277432] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.283427] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.289423] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.295418] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.301414] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.307409] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.313405] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.319400] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.325396] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.331390] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.337386] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.343381] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.349377] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.355372] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.361368] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.367363] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.373359] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.379354] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.385349] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.391344] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.397340] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.403335] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.409333] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.415328] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.421323] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.427318] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.433314] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.439309] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.445305] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.451300] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.457295] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.463290] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.469286] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.475282] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.481277] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.487272] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.493268] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.499263] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.505259] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.511254] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.517250] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.523244] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.529240] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.535235] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.541231] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.547226] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.553222] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.559217] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.565212] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.571208] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.577203] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.583198] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.589194] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.595189] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.601185] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.607180] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.613176] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.619171] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.625166] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.631161] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.637157] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.643152] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.649148] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.655143] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.661139] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.667134] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.673129] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.679124] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.685120] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.691115] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.697110] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.703105] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.709101] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.715096] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.721092] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.727087] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.733083] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.739077] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.745074] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.751071] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.757067] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.763062] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.769058] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.775053] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.781048] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.787043] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.793039] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.799034] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.805029] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.811024] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.817020] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.823015] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.829011] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.835006] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.841002] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.846997] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.852993] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.858988] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.864983] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.870978] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.876974] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.882969] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.888964] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.894959] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.900955] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.906950] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.912946] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.918940] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.924937] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.930932] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.936927] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.942922] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.948918] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.954914] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.960910] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.966904] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.972900] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.978895] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.984891] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.990886] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.996881] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.002876] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.008872] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.014867] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.020863] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.026858] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.032854] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.038849] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.044845] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.050840] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.056836] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.062831] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.068826] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.074821] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.080817] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.086812] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.092808] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.098802] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.104798] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.110793] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.116789] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.122784] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.128780] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.134775] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.140771] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.146766] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.152762] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.158757] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.164755] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.170750] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.176745] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.182740] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.188737] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.194731] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.200727] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.206722] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.213671] i40e 0000:01:00.1: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   19.501410] DEBUG dma_alloc_attrs 432 size=61440 flags=cc0 attr=0
[   19.507492] DEBUG dma_alloc_attrs 436 size=61440 flags=cc0 attr=0
[   19.513687] i40e 0000:01:00.1: MAC address: 3c:fd:fe:6b:e9:c1
[   19.523745] i40e 0000:01:00.1: FW LLDP is enabled
[   19.533821] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.539819] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.545815] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.551810] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.557967] i40e 0000:01:00.1: PCI-Express: Speed 8.0GT/s Width x8
[   19.565226] i40e 0000:01:00.1: Features: PF-id[1] VSIs: 34 QP: 1 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   19.575783] i40e 0000:01:00.2: enabling device (0000 -> 0002)
[   19.592258] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   19.598257] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   19.604256] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.610251] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.616247] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.622242] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.628238] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.634233] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.640228] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.646223] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.652219] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.658214] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.664210] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.670205] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.676201] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.682196] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.688192] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.694186] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.700182] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.706177] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.712173] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.718168] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.724164] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.730159] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.736154] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.742149] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.748149] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.754144] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.760140] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.766135] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.772131] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.778130] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.784127] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.790122] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.796118] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.802113] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.808109] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.814103] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.820100] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.826095] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.832090] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.838085] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.844081] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.850076] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.856071] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.862066] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.868062] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.874057] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.880053] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.886048] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.892043] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.898038] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.904039] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.910034] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.916029] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.922024] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.928020] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.934015] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.940010] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.946005] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.952001] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.957996] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.963991] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.969986] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.975982] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.981977] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.987973] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.993968] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.999964] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.005959] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.011954] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.017949] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.023945] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.029940] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.035936] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.041931] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.047927] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.053922] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.059918] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.065913] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.071908] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.077903] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.083899] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.089894] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.095890] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.101884] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.107880] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.113875] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.119871] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.125866] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.131861] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.137856] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.143852] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.149847] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.155843] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.161838] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.167833] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.173828] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.179824] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.185819] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.191816] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.197811] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.203806] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.209801] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.215797] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.221792] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.227787] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.233782] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.239779] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.245773] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.251769] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.257764] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.263760] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.269755] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.275751] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.281746] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.287745] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.293740] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.299736] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.305731] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.311726] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.317721] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.323717] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.329712] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.335708] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.341702] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.347698] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.353693] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.359689] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.365684] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.371679] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.377674] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.383670] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.389665] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.395661] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.401656] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.407652] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.413647] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.419643] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.425638] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.431633] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.437629] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.443624] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.449619] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.455615] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.461610] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.467605] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.473600] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.479597] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.485592] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.491587] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.497582] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.503582] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.509577] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.515572] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.521567] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.527563] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.533558] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.539554] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.545549] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.551545] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.557540] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.563536] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.569531] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.575526] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.581521] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.587517] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.593512] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.599508] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.605503] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.611501] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.617496] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.623492] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.629487] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.635483] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.641478] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.647473] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.653468] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.659464] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.665459] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.671455] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.677450] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.683446] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.689441] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.695437] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.701432] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.707427] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.713422] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.719418] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.725413] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.731409] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.737403] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.743399] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.749394] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.755390] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.761385] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.767380] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.773375] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.779371] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.785366] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.791362] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.797357] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.803356] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.809351] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.815347] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.821342] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.827337] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.833333] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.839328] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.845323] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.851319] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.857314] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.863309] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.869304] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.875300] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.881295] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.887290] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.893285] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.899281] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.905276] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.911272] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.917267] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.923263] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.929258] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.935253] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.941248] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.947244] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.953239] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.959235] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.965230] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.971226] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.977221] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.983217] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.989212] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.995208] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.001203] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.007200] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.013194] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.019190] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.025185] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.031181] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.037176] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.043172] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.049167] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.055162] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.061157] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.067153] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.073148] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.079143] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.085138] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.091134] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.097129] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.103125] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.109119] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.115116] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.121111] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.127106] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.133101] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.139097] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.145092] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.151088] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.157083] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.163078] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.169073] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.175070] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.181065] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.187060] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.193055] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.199051] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.205046] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.211042] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.217037] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.223033] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.229028] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.235024] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.241018] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.247014] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.253009] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.259007] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.265002] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.270998] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.276994] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.282989] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.288984] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.294980] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.300975] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.306971] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.312968] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.318965] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.324960] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.330956] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.336951] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.342946] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.348941] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.354937] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.360932] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.366927] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.372922] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.378919] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.384913] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.390909] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.396904] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.402900] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.408895] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.414892] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.420886] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.426882] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.432877] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.438873] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.444868] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.450863] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.456858] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.462854] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.468849] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.474845] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.480840] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.486836] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.492831] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.498827] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.504821] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.510817] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.516812] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.522808] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.528803] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.534798] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.540793] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.546789] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.552784] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.558779] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.564774] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.570770] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.576765] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.582761] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.588756] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.594751] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.600747] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.606742] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.612738] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.618734] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.624729] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.630725] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.636719] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.642715] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.648710] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.654706] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.660701] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.666696] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.672691] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.678687] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.684682] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.690677] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.696672] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.702668] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.708663] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.714659] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.720654] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.726650] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.732645] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.738640] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.744635] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.750631] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.756626] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.762622] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.768616] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.774612] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.780607] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.786603] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.792597] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.798593] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.804588] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.810584] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.816579] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.822578] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.828573] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.834569] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.840564] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.846560] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.852555] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.858550] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.864545] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.870541] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.876536] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.882532] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.888527] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.894523] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.900518] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.906514] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.912509] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.918505] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.924500] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.930495] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.936490] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.942486] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.948481] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.954477] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.960472] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.966468] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.972463] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.978458] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.984453] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.990449] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.996444] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.002440] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.008435] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.014433] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.020428] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.026424] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.032419] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.038415] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.044410] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.050406] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.056401] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.062396] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.068391] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.074387] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.080382] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.086377] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.092372] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.098368] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.104363] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.110359] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.116354] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.122350] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.128345] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.134340] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.140335] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.146331] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.152326] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.158321] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.164316] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.170312] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.176307] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.182303] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.188298] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.194294] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.200289] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.206285] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.212280] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.218275] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.224270] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.230266] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.236261] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.242257] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.248252] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.254248] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.260243] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.266239] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.272234] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.278230] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.284224] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.290220] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.296215] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.302210] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.308205] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.314201] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.320196] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.326192] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.332187] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.338185] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.344180] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.350176] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.356170] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.362166] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.368161] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.374157] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.380152] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.386148] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.392143] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.398139] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.404134] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.410130] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.416124] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.422120] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.428115] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.434111] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.440107] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.446102] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.452097] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.458093] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.464088] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.470083] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.476078] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.482074] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.488069] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.494065] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.500060] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.506056] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.512051] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.518046] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.524041] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.530037] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.536032] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.542027] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.548022] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.554018] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.560013] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.566009] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.572004] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.577999] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.583994] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.589990] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.595985] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.601981] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.607976] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.613972] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.619967] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.625963] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.631958] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.637954] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.643950] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.649945] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.655940] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.661936] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.667931] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.673929] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   22.679924] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   22.685922] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.691916] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.697912] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.703907] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.709903] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.715898] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.721893] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.727888] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.733884] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.739879] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.745875] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.751870] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.757866] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.763861] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.769857] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.775852] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.781850] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.787845] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.793841] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.799835] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.805831] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.811826] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.817822] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.823817] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.829813] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.835808] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.841804] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.847802] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.853798] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.859793] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.865788] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.871784] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.877779] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.883774] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.889769] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.895764] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.901760] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.907755] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.913751] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.919746] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.925742] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.931737] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.937732] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.943727] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.949723] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.955718] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.961714] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.967709] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.973705] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.979699] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.985696] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.991690] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.997687] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.003681] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.009677] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.015672] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.021667] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.027662] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.033658] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.039653] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.045648] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.051644] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.057640] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.063634] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.069631] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.075626] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.081621] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.087616] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.093612] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.099607] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.105602] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.111597] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.117593] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.123588] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.129584] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.135579] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.141575] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.147570] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.153565] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.159560] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.165556] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.171551] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.177546] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.183541] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.189537] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.195532] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.201528] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.207523] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.213518] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.219513] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.225509] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.231504] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.237500] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.243495] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.249491] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.255486] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.261481] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.267476] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.273472] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.279466] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.285462] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.291457] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.297453] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.303448] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.309443] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.315439] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.321434] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.327429] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.333425] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.339420] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.345416] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.351411] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.357406] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.363404] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.369400] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.375395] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.381390] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.387386] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.393381] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.399376] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.405372] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.411367] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.417363] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.423358] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.429354] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.435349] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.441345] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.447340] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.453336] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.459331] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.465326] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.471321] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.477317] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.483312] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.489311] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.495306] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.501302] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.507297] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.513292] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.519287] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.525283] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.531278] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.537278] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.543273] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.549269] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.555263] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.561260] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.567255] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.573250] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.579245] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.585242] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.591236] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.597232] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.603227] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.609222] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.615217] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.621213] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.627208] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.633204] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.639199] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.645194] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.651189] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.657185] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.663180] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.669176] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.675171] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.681167] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.687162] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.693158] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.699153] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.705149] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.711144] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.717139] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.723134] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.729130] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.735125] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.741121] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.747115] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.753111] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.759106] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.765102] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.771097] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.777093] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.783088] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.789083] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.795078] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.801074] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.807069] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.813064] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.819060] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.825055] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.831050] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.837046] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.843042] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.849037] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.855032] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.861028] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.867024] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.873022] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.879017] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.885013] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.891008] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.897004] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.902999] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.908995] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.914989] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.920985] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.926980] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.932976] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.938971] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.944966] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.950961] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.956957] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.962952] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.968947] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.974942] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.980938] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.986933] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.992929] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.998924] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.004919] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.010914] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.016910] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.022905] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.028900] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.034895] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.040891] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.046886] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.052882] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.058877] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.064873] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.070869] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.076865] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.082860] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.088855] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.094850] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.100846] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.106841] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.112837] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.118832] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.124828] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.130823] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.136819] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.142814] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.148809] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.154804] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.160800] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.166795] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.172791] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.178786] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.184782] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.190777] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.196773] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.202768] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.208764] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.214758] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.220755] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.226749] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.232745] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.238740] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.244736] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.250731] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.256726] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.262721] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.268717] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.274712] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.280708] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.286703] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.292701] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.298696] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.304692] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.310687] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.316682] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.322677] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.328673] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.334668] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.340663] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.346658] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.352654] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.358649] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.364645] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.370639] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.376635] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.382633] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.388629] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.394623] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.400619] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.406615] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.412610] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.418606] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.424601] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.430596] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.436592] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.442587] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.448582] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.454577] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.460573] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.466568] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.472564] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.478560] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.484555] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.490550] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.496546] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.502541] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.508537] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.514532] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.520527] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.526522] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.532518] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.538513] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.544509] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.550504] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.556500] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.562495] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.568491] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.574486] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.580481] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.586476] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.592472] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.598467] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.604463] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.610459] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.616454] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.622449] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.628445] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.634440] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.640436] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.646431] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.652427] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.658422] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.664417] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.670412] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.676408] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.682403] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.688399] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.694394] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.700389] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.706384] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.712381] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.718375] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.724371] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.730366] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.736362] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.742357] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.748352] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.754348] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.760343] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.766338] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.772333] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.778328] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.784324] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.790319] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.796315] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.802310] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.808306] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.814301] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.820296] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.826291] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.832287] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.838282] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.844278] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.850273] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.856268] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.862264] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.868259] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.874255] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.880250] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.886246] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.892241] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.898239] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.904235] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.910230] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.916226] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.922221] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.928216] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.934211] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.940207] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.946202] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.952198] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.958192] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.964188] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.970183] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.976179] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.982173] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.988169] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.994164] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.000160] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.006155] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.012150] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.018145] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.024141] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.030136] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.036132] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.042126] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.048126] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.054121] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.060116] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.066111] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.072108] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.078102] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.084098] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.090093] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.096089] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.102084] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.108080] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.114075] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.120070] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.126065] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.132061] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.138057] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.144052] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.150047] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.156043] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.162038] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.168034] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.174029] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.180025] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.186020] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.192016] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.198010] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.204006] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.210001] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.215997] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.221992] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.227988] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.233983] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.239979] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.245974] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.251970] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.257965] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.263960] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.269955] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.275951] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.281947] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.287943] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.293938] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.299934] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.305929] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.311925] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.317920] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.323915] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.329910] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.335906] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.341901] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.347897] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.353892] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.359888] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.365883] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.371879] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.377874] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.383869] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.389864] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.395860] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.401855] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.407853] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.413848] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.419844] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.425838] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.431835] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.437830] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.443825] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.449821] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.455816] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.461811] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.467807] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.473802] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.479798] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.485793] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.491789] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.497784] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.503780] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.509775] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.515771] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.521766] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.527762] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.533756] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.539752] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.545747] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.551743] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.557738] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.563733] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.569728] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.575724] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.581719] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.587714] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.593709] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.599706] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.605701] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.611697] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.617692] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.623688] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.629683] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.635678] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.641673] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.647669] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.653664] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.659660] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.665655] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.671651] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.677646] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.683642] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.689637] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.695633] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.701627] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.707624] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.713619] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.719614] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.725609] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.731605] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.737600] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.743596] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.749591] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.756539] i40e 0000:01:00.2: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   26.044228] DEBUG dma_alloc_attrs 432 size=61440 flags=cc0 attr=0
[   26.050310] DEBUG dma_alloc_attrs 436 size=61440 flags=cc0 attr=0
[   26.065307] i40e 0000:01:00.2: MAC address: 3c:fd:fe:6b:e9:c2
[   26.071193] i40e 0000:01:00.2: FW LLDP is enabled
[   26.081284] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.087282] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.093278] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.099273] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.105437] i40e 0000:01:00.2: PCI-Express: Speed 8.0GT/s Width x8
[   26.112695] i40e 0000:01:00.2: Features: PF-id[2] VSIs: 34 QP: 1 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   26.123321] i40e 0000:01:00.3: enabling device (0000 -> 0002)
[   26.141175] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   26.147174] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   26.153172] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.159168] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.165163] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.171158] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.177154] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.183149] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.189145] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.195140] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.201135] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.207130] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.213126] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.219121] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.225117] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.231111] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.237108] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.243103] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.249098] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.255093] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.261089] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.267084] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.273080] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.279075] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.285071] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.291066] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.297062] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.303057] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.309052] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.315047] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.321043] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.327040] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.333035] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.339030] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.345026] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.351021] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.357017] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.363012] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.369007] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.375002] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.380998] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.386993] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.392989] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.398984] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.404984] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.410978] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.416974] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.422969] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.428965] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.434964] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.440960] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.446955] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.452951] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.458946] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.464942] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.470937] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.476933] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.482928] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.488923] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.494918] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.500914] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.506909] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.512905] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.518900] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.524896] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.530891] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.536887] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.542882] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.548877] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.554872] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.560868] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.566863] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.572858] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.578853] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.584849] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.590845] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.596841] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.602836] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.608832] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.614827] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.620822] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.626817] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.632813] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.638808] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.644804] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.650798] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.656794] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.662789] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.668785] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.674780] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.680775] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.686770] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.692766] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.698761] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.704757] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.710751] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.716747] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.722742] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.728738] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.734733] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.740729] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.746724] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.752719] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.758714] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.764711] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.770705] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.776701] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.782697] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.788692] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.794687] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.800683] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.806678] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.812673] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.818673] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.824669] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.830664] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.836660] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.842655] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.848650] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.854645] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.860641] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.866636] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.872632] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.878627] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.884623] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.890618] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.896613] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.902609] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.908605] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.914599] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.920596] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.926591] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.932586] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.938582] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.944580] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.950576] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.956571] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.962566] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.968562] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.974557] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.980552] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.986547] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.992543] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.998538] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.004533] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.010528] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.016524] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.022519] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.028515] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.034510] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.040506] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.046501] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.052496] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.058491] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.064487] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.070482] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.076478] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.082473] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.088469] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.094463] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.100460] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.106455] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.112450] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.118445] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.124441] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.130436] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.136432] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.142428] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.148423] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.154418] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.160417] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.166412] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.172408] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.178402] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.184398] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.190393] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.196389] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.202384] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.208379] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.214374] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.220370] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.226365] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.232360] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.238355] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.244351] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.250346] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.256342] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.262336] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.268332] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.274327] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.280323] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.286318] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.292313] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.298308] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.304304] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.310299] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.316295] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.322290] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.328286] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.334281] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.340277] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.346272] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.352268] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.358263] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.364258] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.370253] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.376249] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.382244] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.388240] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.394235] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.400230] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.406225] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.412221] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.418216] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.424211] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.430206] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.436202] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.442197] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.448192] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.454187] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.460186] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.466181] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.472176] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.478171] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.484167] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.490162] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.496158] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.502153] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.508149] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.514144] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.520140] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.526135] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.532131] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.538126] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.544121] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.550116] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.556113] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.562108] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.568103] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.574098] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.580094] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.586090] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.592086] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.598081] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.604077] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.610071] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.616067] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.622062] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.628058] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.634052] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.640048] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.646043] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.652039] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.658034] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.664029] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.670024] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.676020] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.682015] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.688010] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.694005] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.700002] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.705997] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.711992] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.717987] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.723983] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.729978] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.735974] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.741969] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.747964] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.753959] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.759956] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.765950] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.771946] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.777941] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.783937] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.789932] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.795928] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.801923] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.807919] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.813914] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.819910] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.825904] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.831900] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.837895] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.843891] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.849886] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.855881] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.861876] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.867872] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.873867] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.879862] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.885857] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.891853] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.897848] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.903843] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.909838] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.915838] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.921833] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.927828] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.933823] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.939819] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.945814] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.951810] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.957805] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.963801] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.969799] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.975795] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.981790] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.987785] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.993780] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.999776] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.005771] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.011767] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.017762] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.023757] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.029752] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.035748] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.041743] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.047739] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.053734] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.059730] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.065725] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.071720] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.077715] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.083711] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.089706] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.095701] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.101696] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.107692] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.113687] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.119683] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.125678] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.131673] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.137668] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.143664] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.149659] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.155655] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.161650] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.167646] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.173641] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.179637] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.185632] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.191627] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.197622] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.203618] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.209613] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.215608] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.221603] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.227599] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.233594] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.239590] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.245584] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.251581] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.257576] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.263571] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.269566] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.275562] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.281557] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.287553] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.293548] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.299544] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.305538] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.311534] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.317529] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.323525] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.329520] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.335516] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.341511] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.347506] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.353501] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.359497] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.365492] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.371488] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.377483] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.383479] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.389474] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.395470] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.401465] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.407460] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.413455] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.419451] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.425446] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.431441] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.437436] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.443432] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.449427] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.455423] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.461418] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.467413] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.473408] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.479407] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.485402] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.491398] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.497393] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.503388] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.509383] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.515379] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.521374] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.527369] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.533364] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.539360] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.545355] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.551351] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.557345] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.563341] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.569336] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.575333] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.581328] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.587324] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.593319] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.599314] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.605310] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.611306] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.617301] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.623297] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.629292] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.635287] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.641282] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.647278] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.653273] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.659269] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.665264] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.671263] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.677258] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.683254] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.689249] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.695245] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.701239] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.707235] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.713230] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.719226] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.725221] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.731217] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.737212] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.743207] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.749202] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.755198] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.761194] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.767189] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.773184] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.779180] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.785175] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.791171] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.797166] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.803161] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.809156] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.815152] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.821147] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.827142] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.833137] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.839133] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.845128] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.851124] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.857119] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.863114] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.869109] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.875105] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.881100] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.887095] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.893090] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.899086] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.905081] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.911077] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.917071] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.923067] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.929062] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.935058] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.941053] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.947049] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.953044] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.959040] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.965035] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.971030] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.977025] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.983021] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.989017] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.995015] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.001010] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.007005] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.013000] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.018996] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.024991] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.030987] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.036982] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.042977] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.048972] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.054968] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.060963] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.066958] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.072953] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.078949] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.084944] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.090940] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.096935] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.102931] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.108926] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.114921] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.120916] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.126912] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.132907] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.138903] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.144898] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.150894] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.156889] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.162884] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.168879] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.174875] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.180870] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.186866] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.192861] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.198857] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.204852] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.210847] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.216842] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.222840] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   29.228836] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   29.234835] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.240831] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.246826] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.252821] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.258817] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.264812] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.270807] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.276802] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.282798] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.288793] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.294789] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.300783] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.306779] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.312774] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.318770] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.324765] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.330760] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.336755] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.342751] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.348746] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.354741] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.360736] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.366732] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.372727] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.378723] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.384718] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.390714] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.396709] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.402705] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.408700] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.414695] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.420690] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.426686] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.432681] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.438680] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.444675] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.450670] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.456665] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.462661] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.468656] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.474652] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.480647] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.486642] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.492637] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.498633] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.504630] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.510627] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.516622] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.522617] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.528613] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.534608] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.540603] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.546599] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.552594] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.558589] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.564584] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.570580] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.576575] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.582571] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.588565] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.594562] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.600558] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.606553] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.612548] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.618544] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.624539] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.630535] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.636529] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.642525] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.648520] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.654516] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.660510] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.666506] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.672501] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.678497] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.684492] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.690487] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.696482] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.702478] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.708473] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.714468] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.720463] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.726459] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.732454] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.738450] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.744445] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.750440] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.756435] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.762431] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.768426] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.774422] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.780417] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.786412] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.792408] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.798404] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.804398] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.810394] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.816389] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.822385] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.828380] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.834375] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.840370] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.846366] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.852361] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.858356] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.864351] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.870347] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.876342] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.882338] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.888333] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.894328] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.900323] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.906319] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.912314] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.918310] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.924305] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.930301] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.936296] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.942292] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.948286] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.954282] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.960277] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.966273] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.972268] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.978263] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.984258] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.990254] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.996249] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.002245] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.008240] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.014238] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.020233] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.026229] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.032224] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.038220] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.044215] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.050211] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.056206] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.062201] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.068196] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.074192] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.080187] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.086182] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.092177] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.098173] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.104168] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.110164] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.116159] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.122155] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.128150] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.134146] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.140141] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.146137] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.152132] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.158127] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.164122] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.170118] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.176113] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.182109] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.188103] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.194101] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.200096] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.206092] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.212087] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.218082] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.224077] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.230074] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.236069] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.242064] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.248059] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.254055] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.260050] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.266045] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.272040] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.278036] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.284031] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.290026] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.296021] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.302017] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.308012] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.314008] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.320003] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.325998] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.331993] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.337989] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.343984] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.349980] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.355975] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.361971] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.367966] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.373962] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.379957] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.385953] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.391948] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.397943] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.403942] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.409937] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.415933] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.421929] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.427924] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.433920] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.439915] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.445911] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.451906] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.457902] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.463897] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.469892] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.475887] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.481883] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.487878] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.493873] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.499868] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.505864] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.511859] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.517854] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.523850] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.529848] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.535843] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.541839] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.547833] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.553829] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.559824] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.565820] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.571815] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.577811] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.583806] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.589802] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.595798] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.601794] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.607788] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.613784] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.619779] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.625775] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.631770] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.637766] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.643761] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.649756] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.655751] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.661747] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.667742] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.673737] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.679732] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.685728] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.691723] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.697719] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.703714] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.709710] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.715705] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.721700] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.727695] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.733691] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.739686] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.745682] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.751677] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.757672] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.763667] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.769664] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.775659] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.781654] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.787649] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.793645] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.799640] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.805636] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.811631] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.817627] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.823622] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.829618] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.835613] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.841608] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.847603] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.853599] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.859594] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.865589] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.871584] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.877580] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.883575] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.889570] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.895566] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.901561] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.907556] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.913552] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.919547] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.925543] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.931538] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.937533] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.943529] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.949528] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.955523] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.961518] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.967513] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.973509] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.979504] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.985500] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.991495] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.997491] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.003486] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.009481] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.015476] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.021472] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.027467] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.033462] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.039460] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.045456] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.051451] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.057447] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.063442] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.069438] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.075433] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.081429] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.087423] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.093419] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.099414] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.105410] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.111405] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.117401] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.123396] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.129392] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.135387] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.141382] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.147378] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.153373] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.159368] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.165364] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.171359] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.177354] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.183349] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.189345] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.195340] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.201335] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.207330] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.213326] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.219321] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.225317] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.231313] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.237308] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.243303] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.249299] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.255294] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.261290] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.267284] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.273280] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.279275] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.285271] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.291266] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.297262] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.303257] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.309253] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.315248] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.321244] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.327239] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.333234] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.339229] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.345225] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.351220] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.357216] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.363211] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.369206] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.375201] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.381197] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.387192] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.393187] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.399182] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.405178] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.411173] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.417168] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.423163] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.429159] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.435154] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.441150] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.447145] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.453141] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.459136] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.465132] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.471127] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.477123] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.483118] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.489114] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.495108] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.501104] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.507099] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.513095] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.519090] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.525085] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.531080] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.537076] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.543071] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.549066] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.555064] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.561060] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.567055] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.573050] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.579045] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.585042] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.591037] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.597033] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.603027] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.609023] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.615018] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.621014] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.627009] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.633004] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.639000] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.644995] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.650990] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.656986] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.662981] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.668977] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.674972] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.680968] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.686963] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.692958] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.698953] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.704952] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.710948] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.716943] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.722938] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.728934] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.734929] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.740924] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.746919] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.752915] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.758910] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.764905] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.770900] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.776896] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.782891] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.788887] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.794882] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.800877] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.806872] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.812868] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.818863] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.824858] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.830853] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.836849] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.842844] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.848840] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.854835] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.860831] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.866826] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.872821] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.878816] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.884812] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.890807] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.896803] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.902798] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.908793] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.914788] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.920785] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.926780] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.932775] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.938770] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.944766] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.950761] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.956757] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.962752] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.968748] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.974743] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.980739] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.986733] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.992729] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.998724] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.004720] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.010715] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.016710] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.022705] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.028701] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.034696] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.040691] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.046687] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.052682] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.058677] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.064676] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.070670] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.076666] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.082661] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.088657] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.094652] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.100648] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.106643] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.112638] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.118633] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.124629] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.130624] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.136620] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.142615] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.148611] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.154606] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.160602] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.166597] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.172592] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.178587] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.184583] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.190578] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.196573] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.202568] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.208564] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.214559] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.220555] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.226549] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.232545] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.238540] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.244536] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.250531] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.256527] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.262522] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.268517] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.274512] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.280508] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.286503] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.292499] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.298494] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.305442] i40e 0000:01:00.3: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   32.593047] DEBUG dma_alloc_attrs 432 size=61440 flags=cc0 attr=0
[   32.599130] DEBUG dma_alloc_attrs 436 size=61440 flags=cc0 attr=0
[   32.606902] i40e 0000:01:00.3: MAC address: 3c:fd:fe:6b:e9:c3
[   32.612788] i40e 0000:01:00.3: FW LLDP is enabled
[   32.622862] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.628859] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.634855] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.640850] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.647007] i40e 0000:01:00.3: PCI-Express: Speed 8.0GT/s Width x8
[   32.654316] i40e 0000:01:00.3: Features: PF-id[3] VSIs: 34 QP: 1 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   32.664332] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   32.671507] ehci-pci: EHCI PCI platform driver
[   32.676057] xhci_hcd 000d:01:00.2: enabling device (0000 -> 0002)
[   32.682169] xhci_hcd 000d:01:00.2: xHCI Host Controller
[   32.687389] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 1
[   32.695307] DEBUG dma_alloc_attrs 432 size=2056 flags=cc0 attr=0
[   32.701302] DEBUG dma_alloc_attrs 436 size=2056 flags=cc0 attr=0
[   32.707300] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.713295] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.719294] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.725289] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.731287] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.737281] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.743280] DEBUG dma_alloc_attrs 432 size=16 flags=cc0 attr=0
[   32.749101] DEBUG dma_alloc_attrs 436 size=16 flags=cc0 attr=0
[   32.754940] DEBUG dma_alloc_attrs 432 size=24 flags=cc0 attr=0
[   32.760762] DEBUG dma_alloc_attrs 436 size=24 flags=cc0 attr=0
[   32.766584] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.772578] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.778574] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.784569] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.790565] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.796560] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.802578] xhci_hcd 000d:01:00.2: hcc params 0x0180ff05 hci version 0x110 quirks 0x0000000000000010
[   32.811986] hub 1-0:1.0: USB hub found
[   32.815742] hub 1-0:1.0: 2 ports detected
[   32.819868] xhci_hcd 000d:01:00.2: xHCI Host Controller
[   32.825087] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 2
[   32.832474] xhci_hcd 000d:01:00.2: Host supports USB 3.1 Enhanced SuperSpeed
[   32.839533] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[   32.847703] hub 2-0:1.0: USB hub found
[   32.851455] hub 2-0:1.0: 4 ports detected
[   32.855672] xhci_hcd 0004:03:00.0: xHCI Host Controller
[   32.860893] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 3
[   32.873597] DEBUG dma_alloc_attrs 432 size=2056 flags=cc0 attr=0
[   32.879592] DEBUG dma_alloc_attrs 436 size=2056 flags=cc0 attr=0
[   32.885590] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.891585] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.897586] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.903581] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.909579] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.915575] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.921571] DEBUG dma_alloc_attrs 432 size=16 flags=cc0 attr=0
[   32.927393] DEBUG dma_alloc_attrs 436 size=16 flags=cc0 attr=0
[   32.933235] DEBUG dma_alloc_attrs 432 size=32 flags=cc0 attr=0
[   32.939056] DEBUG dma_alloc_attrs 436 size=32 flags=cc0 attr=0
[   32.944879] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.950874] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.956870] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.962865] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.968861] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.974856] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.980852] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.986847] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.992876] xhci_hcd 0004:03:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[   33.002330] hub 3-0:1.0: USB hub found
[   33.006079] hub 3-0:1.0: 4 ports detected
[   33.010264] xhci_hcd 0004:03:00.0: xHCI Host Controller
[   33.015481] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 4
[   33.022867] xhci_hcd 0004:03:00.0: Host supports USB 3.0 SuperSpeed
[   33.029165] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[   33.037353] hub 4-0:1.0: USB hub found
[   33.041106] hub 4-0:1.0: 4 ports detected
[   33.045348] xhci_hcd 0005:02:00.0: xHCI Host Controller
[   33.050567] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 5
[   33.168864] DEBUG dma_alloc_attrs 432 size=2056 flags=cc0 attr=0
[   33.174860] DEBUG dma_alloc_attrs 436 size=2056 flags=cc0 attr=0
[   33.180858] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.186854] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.192855] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.198850] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.204848] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.210843] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.216840] DEBUG dma_alloc_attrs 432 size=16 flags=cc0 attr=0
[   33.222662] DEBUG dma_alloc_attrs 436 size=16 flags=cc0 attr=0
[   33.228499] DEBUG dma_alloc_attrs 432 size=32 flags=cc0 attr=0
[   33.234321] DEBUG dma_alloc_attrs 436 size=32 flags=cc0 attr=0
[   33.240143] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.246138] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.252134] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.258129] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.264125] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.270120] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.276116] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.282111] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.288140] xhci_hcd 0005:02:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[   33.297589] hub 5-0:1.0: USB hub found
[   33.301347] hub 5-0:1.0: 4 ports detected
[   33.305523] xhci_hcd 0005:02:00.0: xHCI Host Controller
[   33.310741] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 6
[   33.318128] xhci_hcd 0005:02:00.0: Host supports USB 3.0 SuperSpeed
[   33.324432] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[   33.332616] hub 6-0:1.0: USB hub found
[   33.336369] hub 6-0:1.0: 4 ports detected
[   33.340641] usbcore: registered new interface driver usb-storage
[   33.349079] rtc-efi rtc-efi.0: registered as rtc0
[   33.354100] rtc-efi rtc-efi.0: setting system clock to 2022-04-20T10:12:34 UTC (1650449554)
[   33.362566] sbsa-gwdt sbsa-gwdt.0: Initialized with 10s timeout @ 25000000 Hz, action=0.
[   33.370762] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[   33.379959] pstore: Registered efi as persistent store backend
[   33.385817] SMCCC: SOC_ID: ID = jep106:0a16:0001 Revision = 0x000000a1
[   33.392451] usbcore: registered new interface driver usbhid
[   33.398013] usbhid: USB HID core driver
[   33.401860] u32 classifier
[   33.404557]     input device check on
[   33.408260]     Actions configured
[   33.412040] NET: Registered protocol family 10
[   33.416811] Segment Routing with IPv6
[   33.420495] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[   33.426557] NET: Registered protocol family 17
[   33.431008] Bridge firewalling registered
[   33.435028] Key type dns_resolver registered
[   33.439325] NET: Registered protocol family 40
[   33.443889] Key type ._fscrypt registered
[   33.447896] Key type .fscrypt registered
[   33.451827] Key type fscrypt-provisioning registered
[   33.456799] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.463016] Btrfs loaded, crc32c=crc32c-generic
[   33.467539] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.473616] pstore: Using crash dump compression: deflate
[   33.479009] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.485189] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.491208] Key type encrypted registered
[   33.495463] BERT: Error records from previous boot:
[   33.500352] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.506352] [Hardware Error]: event severity: recoverable
[   33.511743] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.517742] [Hardware Error]:  Error 0, type: fatal
[   33.522611] [Hardware Error]:   section type: unknown, e8ed898d-df16-43cc-8ecc-54f060ef157f
[   33.530952] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.536947] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.542943] [Hardware Error]:   section length: 0x31
[   33.547958] [Hardware Error]:   00000000: 0000007f 6e6b6e55 206e776f 6f626572  ....Unknown rebo
[   33.556664] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.562663] [Hardware Error]:   00000010: 7220746f 6f736165 0000006e 00000000  ot reason.......
[   33.571353] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.577350] [Hardware Error]:   00000020: 00000000 00000000 00000000 00000000  ................
[   33.586041] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.592039] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.598036] [Hardware Error]:   00000030: 11                                               .
[   33.606485] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.612569] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.618581] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.624577] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.631148] printk: console [netcon0] enabled
[   33.635497] netconsole: network logging started
[   33.640082] md: Waiting for all devices to be available before autodetect
[   33.646866] md: If you don't use raid, use raid=noautodetect
[   33.652517] md: Autodetecting RAID arrays.
[   33.656604] md: autorun ...
[   33.659399] md: ... autorun DONE.
[   33.662739] Waiting for root device /dev/sda2...
[   33.678232] usb 3-4: new high-speed USB device number 2 using xhci_hcd
[   33.761416] usb 6-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[   33.805403] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.811401] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.817409] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.823416] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.829425] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.835422] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.841419] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.847418] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.855370] DEBUG dma_alloc_attrs 432 size=4096 flags=800 attr=0
[   33.861378] DEBUG dma_alloc_attrs 436 size=4096 flags=800 attr=0
[   33.871060] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.877060] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.883071] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   33.889098] usb-storage 6-1:1.0: USB Mass Storage device detected
[   33.895183] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   33.901240] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.907258] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.913271] DEBUG dma_alloc_attrs 432 size=4096 flags=800 attr=0
[   33.919291] scsi host0: usb-storage 6-1:1.0
[   33.923467] DEBUG dma_alloc_attrs 436 size=4096 flags=800 attr=0
[   33.938525] hub 3-4:1.0: USB hub found
[   33.944211] hub 3-4:1.0: 5 ports detected
[   34.179283] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.185281] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.191288] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.197284] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.203281] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.209284] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.302282] usb 3-4.1: new high-speed USB device number 3 using xhci_hcd
[   34.425893] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.431894] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.437891] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.443887] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.449886] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.455881] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.461877] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.467875] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.475742] DEBUG dma_alloc_attrs 432 size=4096 flags=800 attr=0
[   34.481739] DEBUG dma_alloc_attrs 436 size=4096 flags=800 attr=0
[   34.498737] usb-storage 3-4.1:1.0: USB Mass Storage device detected
[   34.505054] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.511055] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.517080] scsi host1: usb-storage 3-4.1:1.0
[   34.525793] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.531790] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.537799] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.543794] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.549791] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.555795] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.650263] usb 3-4.2: new high-speed USB device number 4 using xhci_hcd
[   34.782841] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.788838] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.794841] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.800837] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.806834] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.812831] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.818828] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.824823] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.832915] DEBUG dma_alloc_attrs 432 size=4096 flags=800 attr=0
[   34.838912] DEBUG dma_alloc_attrs 436 size=4096 flags=800 attr=0
[   34.853822] usb-storage 3-4.2:1.0: USB Mass Storage device detected
[   34.860167] scsi host2: usb-storage 3-4.2:1.0
[   34.868116] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.874112] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.880120] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.886115] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.892111] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.898115] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.945350] scsi 0:0:0:0: Direct-Access      USB      SanDisk 3.2Gen1 1.00 PQ: 0 ANSI: 6
[   34.953702] sd 0:0:0:0: [sda] 120176640 512-byte logical blocks: (61.5 GB/57.3 GiB)
[   34.964141] sd 0:0:0:0: [sda] Write Protect is off
[   34.970029] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   34.986935] GPT:Primary header thinks Alt. header is not at the end of the disk.
[   34.994328] usb 3-4.3: new low-speed USB device number 5 using xhci_hcd
[   35.000934] GPT:17181951 != 120176639
[   35.004590] GPT:Alternate GPT header not at the end of the disk.
[   35.010599] GPT:17181951 != 120176639
[   35.014264] GPT: Use GNU Parted to correct GPT errors.
[   35.019396]  sda: sda1 sda2
[   35.025218] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   35.051303] random: fast init done
[   35.145984] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.151993] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.158129] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.164134] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.170153] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.176159] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.182165] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.188299] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.197961] DEBUG dma_alloc_attrs 432 size=4096 flags=800 attr=0
[   35.203968] DEBUG dma_alloc_attrs 436 size=4096 flags=800 attr=0
[   35.235728] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.0/0003:046B:FF10.0001/input/input1
[   35.251725] hid-generic 0003:046B:FF10.0001: input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input0
[   35.278289] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.1/0003:046B:FF10.0002/input/input2
[   35.294282] hid-generic 0003:046B:FF10.0002: input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input1
[   35.553887] scsi 1:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[   35.562708] scsi 1:0:0:1: CD-ROM            AMI      Virtual CDROM1   1.00 PQ: 0 ANSI: 0 CCS
[   35.571387] scsi 1:0:0:2: CD-ROM            AMI      Virtual CDROM2   1.00 PQ: 0 ANSI: 0 CCS
[   35.580102] scsi 1:0:0:3: CD-ROM            AMI      Virtual CDROM3   1.00 PQ: 0 ANSI: 0 CCS
[   35.874475] scsi 2:0:0:0: Direct-Access     AMI      Virtual HDisk0   1.00 PQ: 0 ANSI: 0 CCS
[   35.884463] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[   35.890068] scsi 2:0:0:1: Direct-Access     AMI      Virtual HDisk1   1.00 PQ: 0 ANSI: 0 CCS
[   35.899571] sd 2:0:0:1: [sdc] Attached SCSI removable disk
[   35.905359] scsi 2:0:0:2: Direct-Access     AMI      Virtual HDisk2   1.00 PQ: 0 ANSI: 0 CCS
[   35.914863] sd 2:0:0:2: [sdd] Attached SCSI removable disk
[   35.920616] scsi 2:0:0:3: Direct-Access     AMI      Virtual HDisk3   1.00 PQ: 0 ANSI: 0 CCS
[   35.930090] sd 2:0:0:3: [sde] Attached SCSI removable disk
[   35.935897] scsi 2:0:0:4: Direct-Access     AMI      Virtual HDisk4   1.00 PQ: 0 ANSI: 0 CCS
[   35.945384] sd 2:0:0:4: [sdf] Attached SCSI removable disk
[   36.199471] EXT4-fs (sda2): recovery complete
[   36.232395] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[   36.240065] VFS: Mounted root (ext4 filesystem) on device 8:2.
[   36.249891] devtmpfs: mounted
[   36.254475] Freeing unused kernel memory: 4160K
[   36.259045] Run /sbin/init as init process
[   36.434038] systemd[1]: systemd 249.7+ running in system mode (-PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
[   36.464048] systemd[1]: Detected architecture arm64.

Welcome to EWAOL (Edge Workload Abstraction and Orchestration Layer) unstable (honister)!

[   36.503776] systemd[1]: Hostname set to <comhpc>.
[   36.545670] systemd-sysv-generator[130]: SysV service '/etc/init.d/conntrackd' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   36.570281] systemd-sysv-generator[130]: SysV service '/etc/init.d/conntrack-failover' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   36.711208] systemd[1]: /lib/systemd/system/xen-qemu-dom0-disk-backend.service:11: PIDFile= references a path below legacy directory /var/run/, updating /var/run/xen/qemu-dom0.pid → /run/xen/qemu-dom0.pid; please update the unit file accordingly.
[   36.799171] systemd[1]: Queued start job for default target Multi-User System.
[   36.806762] random: systemd: uninitialized urandom read (16 bytes read)
[   36.820063] systemd[1]: Created slice Slice /system/getty.
[  OK  ] Created slice Slice /system/getty.
[   36.842411] random: systemd: uninitialized urandom read (16 bytes read)
[   36.849632] systemd[1]: Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/modprobe.
[   36.870385] random: systemd: uninitialized urandom read (16 bytes read)
[   36.877571] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Created slice Slice /system/serial-getty.
[   36.899187] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[   36.922539] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[   36.946505] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[   36.970532] systemd[1]: Reached target Path Units.
[  OK  ] Reached target Path Units.
[   36.990419] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[   37.010365] systemd[1]: Reached target Slice Units.
[  OK  ] Reached target Slice Units.
[   37.030384] systemd[1]: Reached target Swaps.
[  OK  ] Reached target Swaps.
[   37.057100] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[   37.078399] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[   37.098593] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on Syslog Socket.
[   37.118463] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[   37.143265] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[   37.151417] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[   37.174553] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[   37.194663] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[   37.214591] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[   37.234553] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[   37.254561] systemd[1]: Listening on User Database Manager Socket.
[  OK  ] Listening on User Database Manager Socket.
[   37.275712] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[   37.295739] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[   37.318458] systemd[1]: Condition check resulted in Mount /proc/xen files being skipped.
[   37.327557] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[   37.347721] systemd[1]: Mounting Kernel Trace File System...
         Mounting Kernel Trace File System...
[   37.368780] systemd[1]: Mounting Temporary Directory /tmp...
         Mounting Temporary Directory /tmp...
[   37.390613] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped.
[   37.400784] systemd[1]: Starting Load Kernel Module configfs...
         Starting Load Kernel Module configfs...
[   37.423640] systemd[1]: Starting Load Kernel Module drm...
         Starting Load Kernel Module drm...
[   37.443609] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[   37.463778] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[   37.478273] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[   37.490110] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[   37.513312] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[   37.530692] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems...
[   37.548606] EXT4-fs (sda2): re-mounted. Opts: (null)
[   37.559345] systemd[1]: Starting Coldplug All udev Devices...
         Starting Coldplug All udev Devices...
[   37.583985] systemd[1]: Started RPC Bind.
[  OK  ] Started RPC Bind.
[   37.602379] systemd[1]: Mounted Huge Pages File System.
[  OK  ] Mounted Huge Pages File System.
[   37.630397] systemd[1]: Mounted POSIX Message Queue File System.
[  OK  ] Mounted POSIX Message Queue File System.
[   37.658356] systemd[1]: Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Debug File System.
[   37.686544] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Mounted Kernel Trace File System.
[  OK  ] Mounted Temporary Directory /tmp.
[  OK  ] Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module fuse.
[FAILED] Failed to start Load Kernel Modules.
See 'systemctl status systemd-modules-load.service' for details.
[  OK  ] Finished Remount Root and Kernel File Systems.
         Mounting Kernel Configuration File System...
         Starting Flush Journal to Persistent Storage...
[   37.861576] systemd-journald[145]: Received client request to flush runtime journal.
         Starting Apply Kernel Variables...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Reached target Preparation for Local File Systems.
         Mounting /var/volatile...
         Starting Rule-based Manage…for Device Events and Files...
[  OK  ] Finished Coldplug All udev Devices.
[  OK  ] Mounted /var/volatile.
[  OK  ] Started Rule-based Manager for Device Events and Files.
         Starting Wait for udev To …plete Device Initialization...
         Starting Load/Save Random Seed...
[  OK  ] Found device SanDisk_3.2Gen1 msdos.
         Mounting /boot...
[  OK  ] Mounted /boot.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Create Volatile Files and Directories.
         Starting Network Time Synchronization...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Time Set.
[  OK  ] Finished Wait for udev To Complete Device Initialization.
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target Timer Units.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
         Starting Docker Socket for the API...
         Starting sshd.socket...
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Listening on Docker Socket for the API.
[  OK  ] Listening on sshd.socket.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
         Starting ACPI Event Daemon...
[  OK  ] Started Kernel Logging Service.
[  OK  ] Started System Logging Service.
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Getty on tty1.
         Starting IPv6 Packet Filtering Framework...
         Starting IPv4 Packet Filtering Framework...
         Starting Telephony service...
[  OK  ] Started Serial Getty on ttyAMA0.
[  OK  ] Reached target Login Prompts.
         Starting User Login Management...
         Starting OpenSSH Key Generation...
[  OK  ] Started ACPI Event Daemon.
[  OK  ] Finished IPv6 Packet Filtering Framework.
[  OK  ] Finished IPv4 Packet Filtering Framework.
[  OK  ] Finished OpenSSH Key Generation.
[  OK  ] Reached target Preparation for Network.
         Starting Network Configuration...
[  OK  ] Started Telephony service.
[  OK  ] Started User Login Management.
[  OK  ] Started Network Configuration.
         Starting Wait for Network to be Configured...
         Starting Network Name Resolution...
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
         Starting Avahi mDNS/DNS-SD Stack...
         Starting containerd container runtime...
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started containerd container runtime.

EWAOL (Edge Workload Abstraction and Orchestration Layer) unstable comhpc ttyAMA0

comhpc login: 
comhpc login: 
comhpc login: root
root@comhpc:~# 

[-- Attachment #4: native_linux_boot_debug.log --]
[-- Type: application/octet-stream, Size: 383930 bytes --]

Last login: Wed Apr 20 11:41:43 on ttys000
rahsin01@C02ZX0G9LVDN ~ % telnet e123343.cambridge.arm.com 10020
Trying 10.1.194.25...
Connected to e123343.cambridge.arm.com.
Escape character is '^]'.

AIS target system port 10020 device /dev/ttyUSB1 [115200 N81]


FS0:\EFI\BOOT\> 
FS0:\EFI\BOOT\> 
FS0:\EFI\BOOT\> bootaa64.efi
Welcome to GRUB!

error: no such device: ((hd0,gpt1)/EFI/BOOT)/EFI/BOOT/grub.cfg.























                             GNU GRUB  version 2.06

 /----------------------------------------------------------------------------\
 | PARTUUID Boot: COM-HPC Yocto Image                                         | 
 | NVMe M.2  SSD Boot: COM-HPC Yocto Image                                    |
 |*USB Boot (If Drive is present): COM-HPC Yocto Image                        |
 | COM-HPC Yocto Image (Xen)                                                  |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            | 
 \----------------------------------------------------------------------------/

      Use the ^ and v keys to select which entry is highlighted.          
      Press enter to boot the selected OS, `e' to edit the commands       
      before booting or `c' for a command-line.                           
                                                                               
                                                                               


















































EFI stub: Booting Linux Kernel...
EFI stub: Using DTB from configuration table
EFI stub: Exiting boot services and installing virtual address map...
PROGRESS CODE: V03101019 I0
[    0.000000] Booting Linux on physical CPU 0x0000100000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard+ (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: TPMFinalLog=0x807f9ef0000 ACPI 2.0=0x807fa0d0018 SMBIOS 3.0=0x807f8e30000 MEMATTR=0x807f6b85018 ESRT=0x807f803b398 TPMEventLog=0x807f6b89018 RNG=0xffb4ba98 MEMRESERVE=0x807f7ec3e98 
[    0.000000] efi: seeding entropy pool
[    0.000000] esrt: Reserving ESRT space from 0x00000807f803b398 to 0x00000807f803b3d0.
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807FA0D0018 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807FA0DFE98 0000A4 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807FA0DFB98 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807FA0D7518 000AF4 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x807fc06fe00-0x807fc071fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000088300000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000088300000-0x00000000883fffff]
[    0.000000]   node   0: [mem 0x0000000090000000-0x0000000091ffffff]
[    0.000000]   node   0: [mem 0x0000000092000000-0x00000000927bffff]
[    0.000000]   node   0: [mem 0x00000000927c0000-0x00000000ffb3ffff]
[    0.000000]   node   0: [mem 0x00000000ffb40000-0x00000000ffb4ffff]
[    0.000000]   node   0: [mem 0x00000000ffb50000-0x00000000ffffffff]
[    0.000000]   node   0: [mem 0x0000080000000000-0x000008007fffffff]
[    0.000000]   node   0: [mem 0x0000080100000000-0x00000807f6b9ffff]
[    0.000000]   node   0: [mem 0x00000807f6ba0000-0x00000807f6c3ffff]
[    0.000000]   node   0: [mem 0x00000807f6c40000-0x00000807f6d31fff]
[    0.000000]   node   0: [mem 0x00000807f6d32000-0x00000807f73dafff]
[    0.000000]   node   0: [mem 0x00000807f73db000-0x00000807f7e7ffff]
[    0.000000]   node   0: [mem 0x00000807f7e80000-0x00000807f7e9ffff]
[    0.000000]   node   0: [mem 0x00000807f7ea0000-0x00000807f7efffff]
[    0.000000]   node   0: [mem 0x00000807f7f00000-0x00000807f7f3ffff]
[    0.000000]   node   0: [mem 0x00000807f7f40000-0x00000807f87effff]
[    0.000000]   node   0: [mem 0x00000807f87f0000-0x00000807f882ffff]
[    0.000000]   node   0: [mem 0x00000807f8830000-0x00000807f8a6ffff]
[    0.000000]   node   0: [mem 0x00000807f8a70000-0x00000807f8aaffff]
[    0.000000]   node   0: [mem 0x00000807f8ab0000-0x00000807f8e1ffff]
[    0.000000]   node   0: [mem 0x00000807f8e20000-0x00000807f8e3ffff]
[    0.000000]   node   0: [mem 0x00000807f8e40000-0x00000807f8e6ffff]
[    0.000000]   node   0: [mem 0x00000807f8e70000-0x00000807f9e7ffff]
[    0.000000]   node   0: [mem 0x00000807f9e80000-0x00000807f9eeffff]
[    0.000000]   node   0: [mem 0x00000807f9ef0000-0x00000807f9f1ffff]
[    0.000000]   node   0: [mem 0x00000807f9f20000-0x00000807f9fbffff]
[    0.000000]   node   0: [mem 0x00000807f9fc0000-0x00000807f9ffffff]
[    0.000000]   node   0: [mem 0x00000807fa000000-0x00000807fa0fffff]
[    0.000000]   node   0: [mem 0x00000807fa100000-0x00000807fa19ffff]
[    0.000000]   node   0: [mem 0x00000807fa1a0000-0x00000807fa26ffff]
[    0.000000]   node   0: [mem 0x00000807fa270000-0x00000807fa4affff]
[    0.000000]   node   0: [mem 0x00000807fa4b0000-0x00000807fa71ffff]
[    0.000000]   node   0: [mem 0x00000807fa720000-0x00000807fa75ffff]
[    0.000000]   node   0: [mem 0x00000807fa760000-0x00000807fa8cffff]
[    0.000000]   node   0: [mem 0x00000807fa8d0000-0x00000807fa96ffff]
[    0.000000]   node   0: [mem 0x00000807fa970000-0x00000807fa9fffff]
[    0.000000]   node   0: [mem 0x00000807faa00000-0x00000807fbaaffff]
[    0.000000]   node   0: [mem 0x00000807fbab0000-0x00000807fbb3ffff]
[    0.000000]   node   0: [mem 0x00000807fbb40000-0x00000807fbbdffff]
[    0.000000]   node   0: [mem 0x00000807fbbe0000-0x00000807fbcaffff]
[    0.000000]   node   0: [mem 0x00000807fbcb0000-0x00000807fbceffff]
[    0.000000]   node   0: [mem 0x00000807fbcf0000-0x00000807fbd5ffff]
[    0.000000]   node   0: [mem 0x00000807fbd60000-0x00000807fbdfffff]
[    0.000000]   node   0: [mem 0x00000807fbe00000-0x00000807ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000088300000-0x00000807ffffffff]
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270100 -> Node 0
[    0.000000] percpu: Embedded 31 pages/cpu s89240 r8192 d29544 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: ARM erratum 1418040
[    0.000000] alternatives: patching kernel code
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8193276
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/Image rootwait rw root=/dev/sda2
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.000000] printk: log_buf_len min size: 131072 bytes
[    0.000000] printk: log_buf_len: 262144 bytes
[    0.000000] printk: early log buf free: 121248(92%)
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000fbb40000-0x00000000ffb40000] (64MB)
[    0.000000] Memory: 32502288K/33293312K available (13568K kernel code, 1996K rwdata, 3476K rodata, 4160K init, 822K bss, 791024K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 41306 entries in 162 pages
[    0.000000] ftrace: allocated 162 pages with 3 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=32.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 672 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 100000 region 0:0x0000100100540000
[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 3 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 4 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 5 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 6 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 7 -> Node 0
[    0.000000] ITS [mem 0x100100040000-0x10010005ffff]
[    0.000000] ITS@0x0000100100040000: allocated 8192 Devices @80000220000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100040000: allocated 32768 Interrupt Collections @80000230000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100060000-0x10010007ffff]
[    0.000000] ITS@0x0000100100060000: allocated 8192 Devices @80000250000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100060000: allocated 32768 Interrupt Collections @80000260000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100080000-0x10010009ffff]
[    0.000000] ITS@0x0000100100080000: allocated 8192 Devices @80000280000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100080000: allocated 32768 Interrupt Collections @80000290000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000a0000-0x1001000bffff]
[    0.000000] ITS@0x00001001000a0000: allocated 8192 Devices @800002b0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000a0000: allocated 32768 Interrupt Collections @800002c0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000c0000-0x1001000dffff]
[    0.000000] ITS@0x00001001000c0000: allocated 8192 Devices @800002e0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000c0000: allocated 32768 Interrupt Collections @800002f0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000e0000-0x1001000fffff]
[    0.000000] ITS@0x00001001000e0000: allocated 8192 Devices @80000310000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000e0000: allocated 32768 Interrupt Collections @80000320000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100100000-0x10010011ffff]
[    0.000000] ITS@0x0000100100100000: allocated 8192 Devices @80000340000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100100000: allocated 32768 Interrupt Collections @80000350000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100120000-0x10010013ffff]
[    0.000000] ITS@0x0000100100120000: allocated 8192 Devices @80000370000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100120000: allocated 32768 Interrupt Collections @80000380000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] GICv3: using LPI property table @0x0000080000390000
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000800003a0000
[    0.000000] random: get_random_bytes called from start_kernel+0x394/0x554 with crng_init=0
[    0.000000] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.000000] ACPI GTDT: found 1 memory-mapped timer block(s).
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 25.00MHz (phys/phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000001] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000053] Console: colour dummy device 80x25
[    0.000075] ACPI: Core revision 20200925
[    0.000486] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    0.000491] pid_max: default: 32768 minimum: 301
[    0.000518] LSM: Security Framework initializing
[    0.000645] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.000727] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.001576] rcu: Hierarchical SRCU implementation.
[    0.001705] Platform MSI: ITS@0x100100040000 domain created
[    0.001709] Platform MSI: ITS@0x100100060000 domain created
[    0.001712] Platform MSI: ITS@0x100100080000 domain created
[    0.001715] Platform MSI: ITS@0x1001000a0000 domain created
[    0.001718] Platform MSI: ITS@0x1001000c0000 domain created
[    0.001721] Platform MSI: ITS@0x1001000e0000 domain created
[    0.001724] Platform MSI: ITS@0x100100100000 domain created
[    0.001728] Platform MSI: ITS@0x100100120000 domain created
[    0.001735] PCI/MSI: ITS@0x100100040000 domain created
[    0.001738] PCI/MSI: ITS@0x100100060000 domain created
[    0.001740] PCI/MSI: ITS@0x100100080000 domain created
[    0.001743] PCI/MSI: ITS@0x1001000a0000 domain created
[    0.001746] PCI/MSI: ITS@0x1001000c0000 domain created
[    0.001750] PCI/MSI: ITS@0x1001000e0000 domain created
[    0.001753] PCI/MSI: ITS@0x100100100000 domain created
[    0.001756] PCI/MSI: ITS@0x100100120000 domain created
[    0.001763] Remapping and enabling EFI services.
[    0.003600] smp: Bringing up secondary CPUs ...
[    0.003848] Detected PIPT I-cache on CPU1
[    0.003877] GICv3: CPU1: found redistributor 180000 region 0:0x0000100100740000
[    0.003901] GICv3: CPU1: using allocated LPI pending table @0x00000800003b0000
[    0.003946] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.003962] CPU1: Booted secondary processor 0x0000180000 [0x413fd0c1]
[    0.004339] Detected PIPT I-cache on CPU2
[    0.004366] GICv3: CPU2: found redistributor 160000 region 0:0x00001001006c0000
[    0.004389] GICv3: CPU2: using allocated LPI pending table @0x00000800003c0000
[    0.004437] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004452] CPU2: Booted secondary processor 0x0000160000 [0x413fd0c1]
[    0.004743] Detected PIPT I-cache on CPU3
[    0.004772] GICv3: CPU3: found redistributor 1e0000 region 0:0x00001001008c0000
[    0.004796] GICv3: CPU3: using allocated LPI pending table @0x00000800003d0000
[    0.004844] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004860] CPU3: Booted secondary processor 0x00001e0000 [0x413fd0c1]
[    0.005146] Detected PIPT I-cache on CPU4
[    0.005166] GICv3: CPU4: found redistributor 80000 region 0:0x0000100100340000
[    0.005190] GICv3: CPU4: using allocated LPI pending table @0x00000800003e0000
[    0.005238] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.005249] CPU4: Booted secondary processor 0x0000080000 [0x413fd0c1]
[    0.005545] Detected PIPT I-cache on CPU5
[    0.005574] GICv3: CPU5: found redistributor 200000 region 0:0x0000100100940000
[    0.005598] GICv3: CPU5: using allocated LPI pending table @0x00000800003f0000
[    0.005644] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.005660] CPU5: Booted secondary processor 0x0000200000 [0x413fd0c1]
[    0.005945] Detected PIPT I-cache on CPU6
[    0.005967] GICv3: CPU6: found redistributor e0000 region 0:0x00001001004c0000
[    0.005992] GICv3: CPU6: using allocated LPI pending table @0x0000080000800000
[    0.006041] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006053] CPU6: Booted secondary processor 0x00000e0000 [0x413fd0c1]
[    0.006354] Detected PIPT I-cache on CPU7
[    0.006386] GICv3: CPU7: found redistributor 260000 region 0:0x0000100100ac0000
[    0.006412] GICv3: CPU7: using allocated LPI pending table @0x0000080000810000
[    0.006461] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006477] CPU7: Booted secondary processor 0x0000260000 [0x413fd0c1]
[    0.006744] Detected PIPT I-cache on CPU8
[    0.006767] GICv3: CPU8: found redistributor 110000 region 0:0x0000100100580000
[    0.006792] GICv3: CPU8: using allocated LPI pending table @0x0000080000820000
[    0.006840] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006853] CPU8: Booted secondary processor 0x0000110000 [0x413fd0c1]
[    0.007230] Detected PIPT I-cache on CPU9
[    0.007256] GICv3: CPU9: found redistributor 190000 region 0:0x0000100100780000
[    0.007281] GICv3: CPU9: using allocated LPI pending table @0x0000080000830000
[    0.007329] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.007345] CPU9: Booted secondary processor 0x0000190000 [0x413fd0c1]
[    0.007649] Detected PIPT I-cache on CPU10
[    0.007675] GICv3: CPU10: found redistributor 170000 region 0:0x0000100100700000
[    0.007702] GICv3: CPU10: using allocated LPI pending table @0x0000080000840000
[    0.007749] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.007767] CPU10: Booted secondary processor 0x0000170000 [0x413fd0c1]
[    0.008205] Detected PIPT I-cache on CPU11
[    0.008234] GICv3: CPU11: found redistributor 1f0000 region 0:0x0000100100900000
[    0.008260] GICv3: CPU11: using allocated LPI pending table @0x0000080000850000
[    0.008307] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008325] CPU11: Booted secondary processor 0x00001f0000 [0x413fd0c1]
[    0.008625] Detected PIPT I-cache on CPU12
[    0.008645] GICv3: CPU12: found redistributor 90000 region 0:0x0000100100380000
[    0.008672] GICv3: CPU12: using allocated LPI pending table @0x0000080000860000
[    0.008720] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008738] CPU12: Booted secondary processor 0x0000090000 [0x413fd0c1]
[    0.009031] Detected PIPT I-cache on CPU13
[    0.009060] GICv3: CPU13: found redistributor 210000 region 0:0x0000100100980000
[    0.009086] GICv3: CPU13: using allocated LPI pending table @0x0000080000870000
[    0.009132] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.009150] CPU13: Booted secondary processor 0x0000210000 [0x413fd0c1]
[    0.009440] Detected PIPT I-cache on CPU14
[    0.009463] GICv3: CPU14: found redistributor f0000 region 0:0x0000100100500000
[    0.009491] GICv3: CPU14: using allocated LPI pending table @0x0000080000880000
[    0.009539] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.009559] CPU14: Booted secondary processor 0x00000f0000 [0x413fd0c1]
[    0.010014] Detected PIPT I-cache on CPU15
[    0.010047] GICv3: CPU15: found redistributor 270000 region 0:0x0000100100b00000
[    0.010074] GICv3: CPU15: using allocated LPI pending table @0x0000080000890000
[    0.010123] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.010142] CPU15: Booted secondary processor 0x0000270000 [0x413fd0c1]
[    0.010435] Detected PIPT I-cache on CPU16
[    0.010458] GICv3: CPU16: found redistributor 100100 region 0:0x0000100100560000
[    0.010484] GICv3: CPU16: using allocated LPI pending table @0x00000800008a0000
[    0.010531] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.010550] CPU16: Booted secondary processor 0x0000100100 [0x413fd0c1]
[    0.010834] Detected PIPT I-cache on CPU17
[    0.010861] GICv3: CPU17: found redistributor 180100 region 0:0x0000100100760000
[    0.010888] GICv3: CPU17: using allocated LPI pending table @0x00000800008b0000
[    0.010936] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.010955] CPU17: Booted secondary processor 0x0000180100 [0x413fd0c1]
[    0.011324] Detected PIPT I-cache on CPU18
[    0.011350] GICv3: CPU18: found redistributor 160100 region 0:0x00001001006e0000
[    0.011379] GICv3: CPU18: using allocated LPI pending table @0x00000800008c0000
[    0.011427] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.011447] CPU18: Booted secondary processor 0x0000160100 [0x413fd0c1]
[    0.011834] Detected PIPT I-cache on CPU19
[    0.011864] GICv3: CPU19: found redistributor 1e0100 region 0:0x00001001008e0000
[    0.011893] GICv3: CPU19: using allocated LPI pending table @0x00000800008d0000
[    0.011939] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.011959] CPU19: Booted secondary processor 0x00001e0100 [0x413fd0c1]
[    0.012410] Detected PIPT I-cache on CPU20
[    0.012430] GICv3: CPU20: found redistributor 80100 region 0:0x0000100100360000
[    0.012458] GICv3: CPU20: using allocated LPI pending table @0x00000800008e0000
[    0.012506] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.012526] CPU20: Booted secondary processor 0x0000080100 [0x413fd0c1]
[    0.012826] Detected PIPT I-cache on CPU21
[    0.012855] GICv3: CPU21: found redistributor 200100 region 0:0x0000100100960000
[    0.012887] GICv3: CPU21: using allocated LPI pending table @0x00000800008f0000
[    0.012934] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.012954] CPU21: Booted secondary processor 0x0000200100 [0x413fd0c1]
[    0.013406] Detected PIPT I-cache on CPU22
[    0.013429] GICv3: CPU22: found redistributor e0100 region 0:0x00001001004e0000
[    0.013458] GICv3: CPU22: using allocated LPI pending table @0x0000080000900000
[    0.013509] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.013529] CPU22: Booted secondary processor 0x00000e0100 [0x413fd0c1]
[    0.013837] Detected PIPT I-cache on CPU23
[    0.013870] GICv3: CPU23: found redistributor 260100 region 0:0x0000100100ae0000
[    0.013900] GICv3: CPU23: using allocated LPI pending table @0x0000080000910000
[    0.013947] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.013967] CPU23: Booted secondary processor 0x0000260100 [0x413fd0c1]
[    0.014414] Detected PIPT I-cache on CPU24
[    0.014439] GICv3: CPU24: found redistributor 110100 region 0:0x00001001005a0000
[    0.014467] GICv3: CPU24: using allocated LPI pending table @0x0000080000920000
[    0.014515] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.014536] CPU24: Booted secondary processor 0x0000110100 [0x413fd0c1]
[    0.014829] Detected PIPT I-cache on CPU25
[    0.014855] GICv3: CPU25: found redistributor 190100 region 0:0x00001001007a0000
[    0.014885] GICv3: CPU25: using allocated LPI pending table @0x0000080000930000
[    0.014932] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.014953] CPU25: Booted secondary processor 0x0000190100 [0x413fd0c1]
[    0.015254] Detected PIPT I-cache on CPU26
[    0.015281] GICv3: CPU26: found redistributor 170100 region 0:0x0000100100720000
[    0.015312] GICv3: CPU26: using allocated LPI pending table @0x0000080000940000
[    0.015361] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.015381] CPU26: Booted secondary processor 0x0000170100 [0x413fd0c1]
[    0.015934] Detected PIPT I-cache on CPU27
[    0.015963] GICv3: CPU27: found redistributor 1f0100 region 0:0x0000100100920000
[    0.015995] GICv3: CPU27: using allocated LPI pending table @0x0000080000950000
[    0.016041] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.016063] CPU27: Booted secondary processor 0x00001f0100 [0x413fd0c1]
[    0.016425] Detected PIPT I-cache on CPU28
[    0.016446] GICv3: CPU28: found redistributor 90100 region 0:0x00001001003a0000
[    0.016477] GICv3: CPU28: using allocated LPI pending table @0x0000080000960000
[    0.016525] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.016546] CPU28: Booted secondary processor 0x0000090100 [0x413fd0c1]
[    0.016861] Detected PIPT I-cache on CPU29
[    0.016890] GICv3: CPU29: found redistributor 210100 region 0:0x00001001009a0000
[    0.016921] GICv3: CPU29: using allocated LPI pending table @0x0000080000970000
[    0.016969] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.016990] CPU29: Booted secondary processor 0x0000210100 [0x413fd0c1]
[    0.017426] Detected PIPT I-cache on CPU30
[    0.017450] GICv3: CPU30: found redistributor f0100 region 0:0x0000100100520000
[    0.017481] GICv3: CPU30: using allocated LPI pending table @0x0000080000980000
[    0.017530] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.017552] CPU30: Booted secondary processor 0x00000f0100 [0x413fd0c1]
[    0.017852] Detected PIPT I-cache on CPU31
[    0.017886] GICv3: CPU31: found redistributor 270100 region 0:0x0000100100b20000
[    0.017918] GICv3: CPU31: using allocated LPI pending table @0x0000080000990000
[    0.017964] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.017987] CPU31: Booted secondary processor 0x0000270100 [0x413fd0c1]
[    0.018070] smp: Brought up 1 node, 32 CPUs
[    0.018166] SMP: Total of 32 processors activated.
[    0.018168] CPU features: detected: Privileged Access Never
[    0.018170] CPU features: detected: LSE atomic instructions
[    0.018172] CPU features: detected: User Access Override
[    0.018174] CPU features: detected: 32-bit EL0 Support
[    0.018176] CPU features: detected: Common not Private translations
[    0.018178] CPU features: detected: RAS Extension Support
[    0.018180] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.018181] CPU features: detected: CRC32 instructions
[    0.018183] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.050084] CPU: All CPU(s) started at EL2
[    0.050869] devtmpfs: initialized
[    0.051146] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.051152] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.051382] SMBIOS 3.3.0 present.
[    0.051388] DMI: ADLINK COM-HPC-ALT/COM-HPC-ALT, BIOS TianoCore EDKII 11/23/2021
[    0.051618] NET: Registered protocol family 16
[    0.052140] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.052305] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.052467] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.052568] thermal_sys: Registered thermal governor 'step_wise'
[    0.052649] cpuidle: using governor menu
[    0.052791] Detected 15 PCC Subspaces
[    0.052813] Registering PCC driver as Mailbox controller
[    0.052849] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.053145] ASID allocator initialised with 65536 entries
[    0.053152] ACPI: bus type PCI registered
[    0.053154] Serial: AMBA PL011 UART driver
[    0.055312] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.055315] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.055317] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.055319] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.056039] cryptd: max_cpu_qlen set to 1000
[    0.124057] raid6: neonx8   gen()  7737 MB/s
[    0.192087] raid6: neonx8   xor()  6062 MB/s
[    0.260118] raid6: neonx4   gen()  7641 MB/s
[    0.328146] raid6: neonx4   xor()  6327 MB/s
[    0.396178] raid6: neonx2   gen()  7325 MB/s
[    0.464207] raid6: neonx2   xor()  5724 MB/s
[    0.532240] raid6: neonx1   gen()  5960 MB/s
[    0.600270] raid6: neonx1   xor()  4931 MB/s
[    0.668299] raid6: int64x8  gen()  3600 MB/s
[    0.736324] raid6: int64x8  xor()  2018 MB/s
[    0.804354] raid6: int64x4  gen()  4127 MB/s
[    0.872432] raid6: int64x4  xor()  2191 MB/s
[    0.940414] raid6: int64x2  gen()  3504 MB/s
[    1.008438] raid6: int64x2  xor()  1890 MB/s
[    1.076472] raid6: int64x1  gen()  2875 MB/s
[    1.144495] raid6: int64x1  xor()  1508 MB/s
[    1.144496] raid6: using algorithm neonx8 gen() 7737 MB/s
[    1.144498] raid6: .... xor() 6062 MB/s, rmw enabled
[    1.144500] raid6: using neon recovery algorithm
[    1.144575] ACPI: Added _OSI(Module Device)
[    1.144578] ACPI: Added _OSI(Processor Device)
[    1.144580] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.144582] ACPI: Added _OSI(Processor Aggregator Device)
[    1.144584] ACPI: Added _OSI(Linux-Dell-Video)
[    1.144586] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    1.144588] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    1.165159] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    1.171460] ACPI: Interpreter enabled
[    1.171463] ACPI: Using GIC for interrupt routing
[    1.171477] ACPI: MCFG table detected, 5 entries
[    1.171483] ACPI: IORT: SMMU-v3[33ffe0000000] Mapped to Proximity domain 0
[    1.171508] ACPI: IORT: SMMU-v3[37ffe0000000] Mapped to Proximity domain 0
[    1.171521] ACPI: IORT: SMMU-v3[3fffe0000000] Mapped to Proximity domain 0
[    1.171535] ACPI: IORT: SMMU-v3[2bffe0000000] Mapped to Proximity domain 0
[    1.171548] ACPI: IORT: SMMU-v3[2fffe0000000] Mapped to Proximity domain 0
[    1.171633] HEST: Table parsing has been initialized.
[    1.206561] ARMH0011:00: ttyAMA0 at MMIO 0x100002600000 (irq = 79, base_baud = 0) is a SBSA
[    4.021375] printk: console [ttyAMA0] enabled
[    4.027447] ARMH0011:01: ttyAMA1 at MMIO 0x100002620000 (irq = 80, base_baud = 0) is a SBSA
[    4.037573] ACPI: PCI Root Bridge [PCI0] (domain 000c [bus 00-ff])
[    4.043756] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.052859] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control
[    4.060683] acpi PNP0A08:00: MCFG quirk: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.073486] acpi PNP0A08:00: ECAM area [mem 0x33fff0000000-0x33ffffffffff] reserved by PNP0C02:00
[    4.082358] acpi PNP0A08:00: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff]
[    4.090519] PCI host bridge to bus 000c:00
[    4.094607] pci_bus 000c:00: root bus resource [mem 0x40000000-0x4fffffff window]
[    4.102079] pci_bus 000c:00: root bus resource [mem 0x300000000000-0x33ffdfffffff window]
[    4.110245] pci_bus 000c:00: root bus resource [bus 00-ff]
[    4.115756] pci 000c:00:00.0: [1def:e100] type 00 class 0x060000
[    4.121831] pci 000c:00:01.0: [1def:e101] type 01 class 0x060400
[    4.127878] pci 000c:00:01.0: supports D1 D2
[    4.132138] pci 000c:00:01.0: PME# supported from D0 D1 D3hot
[    4.138995] pci 000c:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    4.147163] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    4.158628] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    4.169141] pci 000c:00:01.0: BAR 8: assigned [mem 0x40000000-0x401fffff]
[    4.175919] pci 000c:00:01.0: BAR 9: assigned [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.184345] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.190601] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.197205] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.203461] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.210065] pci 000c:00:01.0: PCI bridge to [bus 01]
[    4.215020] pci 000c:00:01.0:   bridge window [mem 0x40000000-0x401fffff]
[    4.221798] pci 000c:00:01.0:   bridge window [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.230227] pci_bus 000c:00: resource 4 [mem 0x40000000-0x4fffffff window]
[    4.237091] pci_bus 000c:00: resource 5 [mem 0x300000000000-0x33ffdfffffff window]
[    4.244649] pci_bus 000c:01: resource 1 [mem 0x40000000-0x401fffff]
[    4.250905] pci_bus 000c:01: resource 2 [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.258851] ACPI: PCI Root Bridge [PCI1] (domain 000d [bus 00-ff])
[    4.265029] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.274128] acpi PNP0A08:01: PCIe port services disabled; not requesting _OSC control
[    4.281950] acpi PNP0A08:01: MCFG quirk: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.294735] acpi PNP0A08:01: ECAM area [mem 0x37fff0000000-0x37ffffffffff] reserved by PNP0C02:00
[    4.303608] acpi PNP0A08:01: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff]
[    4.311762] PCI host bridge to bus 000d:00
[    4.315850] pci_bus 000d:00: root bus resource [mem 0x50000000-0x5fffffff window]
[    4.323321] pci_bus 000d:00: root bus resource [mem 0x340000000000-0x37ffdfffffff window]
[    4.331487] pci_bus 000d:00: root bus resource [bus 00-ff]
[    4.336995] pci 000d:00:00.0: [1def:e100] type 00 class 0x060000
[    4.343059] pci 000d:00:01.0: [1def:e101] type 01 class 0x060400
[    4.349092] pci 000d:00:01.0: supports D1 D2
[    4.353351] pci 000d:00:01.0: PME# supported from D0 D1 D3hot
[    4.359173] pci 000d:01:00.0: [10de:1e89] type 00 class 0x030000
[    4.365179] pci 000d:01:00.0: reg 0x10: [mem 0x50000000-0x50ffffff]
[    4.371443] pci 000d:01:00.0: reg 0x14: [mem 0x340000000000-0x34000fffffff 64bit pref]
[    4.379356] pci 000d:01:00.0: reg 0x1c: [mem 0x340010000000-0x340011ffffff 64bit pref]
[    4.387265] pci 000d:01:00.0: reg 0x24: [io  0x57ffe000-0x57ffe07f]
[    4.393525] pci 000d:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.400276] pci 000d:01:00.0: PME# supported from D0 D3hot D3cold
[    4.406428] pci 000d:01:00.1: [10de:10f8] type 00 class 0x040300
[    4.412433] pci 000d:01:00.1: reg 0x10: [mem 0x51000000-0x51003fff]
[    4.418813] pci 000d:01:00.2: [10de:1ad8] type 00 class 0x0c0330
[    4.424822] pci 000d:01:00.2: reg 0x10: [mem 0x340012000000-0x34001203ffff 64bit pref]
[    4.432739] pci 000d:01:00.2: reg 0x1c: [mem 0x340012040000-0x34001204ffff 64bit pref]
[    4.440695] pci 000d:01:00.2: PME# supported from D0 D3hot D3cold
[    4.446834] pci 000d:01:00.3: [10de:1ad9] type 00 class 0x0c8000
[    4.452840] pci 000d:01:00.3: reg 0x10: [mem 0x51004000-0x51004fff]
[    4.459164] pci 000d:01:00.3: PME# supported from D0 D3hot D3cold
[    4.465302] pci 000d:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    4.486580] pci 000d:00:01.0: BAR 9: assigned [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.495009] pci 000d:00:01.0: BAR 8: assigned [mem 0x50000000-0x517fffff]
[    4.501786] pci 000d:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.508042] pci 000d:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.514647] pci 000d:01:00.0: BAR 1: assigned [mem 0x340000000000-0x34000fffffff 64bit pref]
[    4.523080] pci 000d:01:00.0: BAR 3: assigned [mem 0x340010000000-0x340011ffffff 64bit pref]
[    4.531513] pci 000d:01:00.0: BAR 0: assigned [mem 0x50000000-0x50ffffff]
[    4.538291] pci 000d:01:00.0: BAR 6: assigned [mem 0x51000000-0x5107ffff pref]
[    4.545503] pci 000d:01:00.2: BAR 0: assigned [mem 0x340012000000-0x34001203ffff 64bit pref]
[    4.553936] pci 000d:01:00.2: BAR 3: assigned [mem 0x340012040000-0x34001204ffff 64bit pref]
[    4.562369] pci 000d:01:00.1: BAR 0: assigned [mem 0x51080000-0x51083fff]
[    4.569148] pci 000d:01:00.3: BAR 0: assigned [mem 0x51084000-0x51084fff]
[    4.575927] pci 000d:01:00.0: BAR 5: no space for [io  size 0x0080]
[    4.582183] pci 000d:01:00.0: BAR 5: failed to assign [io  size 0x0080]
[    4.588788] pci 000d:00:01.0: PCI bridge to [bus 01]
[    4.593743] pci 000d:00:01.0:   bridge window [mem 0x50000000-0x517fffff]
[    4.600519] pci 000d:00:01.0:   bridge window [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.608947] pci_bus 000d:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    4.617981] pci_bus 000d:00: resource 4 [mem 0x50000000-0x5fffffff window]
[    4.624844] pci_bus 000d:00: resource 5 [mem 0x340000000000-0x37ffdfffffff window]
[    4.632402] pci_bus 000d:01: resource 1 [mem 0x50000000-0x517fffff]
[    4.638658] pci_bus 000d:01: resource 2 [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.646614] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus 00-ff])
[    4.652792] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.661893] acpi PNP0A08:03: PCIe port services disabled; not requesting _OSC control
[    4.669715] acpi PNP0A08:03: MCFG quirk: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.682505] acpi PNP0A08:03: ECAM area [mem 0x3ffff0000000-0x3fffffffffff] reserved by PNP0C02:00
[    4.691377] acpi PNP0A08:03: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff]
[    4.699534] PCI host bridge to bus 0000:00
[    4.703622] pci_bus 0000:00: root bus resource [mem 0x70000000-0x7fffffff window]
[    4.711093] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3fffdfffffff window]
[    4.719260] pci_bus 0000:00: root bus resource [bus 00-ff]
[    4.724767] pci 0000:00:00.0: [1def:e100] type 00 class 0x060000
[    4.730832] pci 0000:00:01.0: [1def:e101] type 01 class 0x060400
[    4.736864] pci 0000:00:01.0: supports D1 D2
[    4.741124] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    4.746940] pci 0000:01:00.0: [8086:1589] type 00 class 0x020000
[    4.752949] pci 0000:01:00.0: reg 0x10: [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    4.760866] pci 0000:01:00.0: reg 0x1c: [mem 0x3c0004818000-0x3c000481ffff 64bit pref]
[    4.768780] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.775542] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    4.781701] pci 0000:01:00.1: [8086:1589] type 00 class 0x020000
[    4.787710] pci 0000:01:00.1: reg 0x10: [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    4.795628] pci 0000:01:00.1: reg 0x1c: [mem 0x3c0004810000-0x3c0004817fff 64bit pref]
[    4.803542] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.810300] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    4.816450] pci 0000:01:00.2: [8086:1589] type 00 class 0x020000
[    4.822459] pci 0000:01:00.2: reg 0x10: [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    4.830376] pci 0000:01:00.2: reg 0x1c: [mem 0x3c0004808000-0x3c000480ffff 64bit pref]
[    4.838289] pci 0000:01:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.845047] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[    4.851194] pci 0000:01:00.3: [8086:1589] type 00 class 0x020000
[    4.857202] pci 0000:01:00.3: reg 0x10: [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    4.865119] pci 0000:01:00.3: reg 0x1c: [mem 0x3c0004800000-0x3c0004807fff 64bit pref]
[    4.873033] pci 0000:01:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.879790] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[    4.885953] pci 0000:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01-02] add_size 1000
[    4.894383] pci 0000:00:01.0: BAR 9: assigned [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    4.902810] pci 0000:00:01.0: BAR 8: assigned [mem 0x70000000-0x701fffff]
[    4.909587] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.915843] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.922448] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.928704] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.935309] pci 0000:01:00.0: BAR 0: assigned [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    4.943743] pci 0000:01:00.1: BAR 0: assigned [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    4.952175] pci 0000:01:00.2: BAR 0: assigned [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    4.960607] pci 0000:01:00.3: BAR 0: assigned [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    4.969039] pci 0000:01:00.0: BAR 6: assigned [mem 0x70000000-0x7007ffff pref]
[    4.976250] pci 0000:01:00.1: BAR 6: assigned [mem 0x70080000-0x700fffff pref]
[    4.983462] pci 0000:01:00.2: BAR 6: assigned [mem 0x70100000-0x7017ffff pref]
[    4.990673] pci 0000:01:00.3: BAR 6: assigned [mem 0x70180000-0x701fffff pref]
[    4.997884] pci 0000:01:00.0: BAR 3: assigned [mem 0x3c0004000000-0x3c0004007fff 64bit pref]
[    5.006317] pci 0000:01:00.1: BAR 3: assigned [mem 0x3c0004008000-0x3c000400ffff 64bit pref]
[    5.014749] pci 0000:01:00.2: BAR 3: assigned [mem 0x3c0004010000-0x3c0004017fff 64bit pref]
[    5.023182] pci 0000:01:00.3: BAR 3: assigned [mem 0x3c0004018000-0x3c000401ffff 64bit pref]
[    5.031614] pci 0000:00:01.0: PCI bridge to [bus 01-02]
[    5.036830] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x701fffff]
[    5.043607] pci 0000:00:01.0:   bridge window [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    5.052035] pci_bus 0000:00: resource 4 [mem 0x70000000-0x7fffffff window]
[    5.058899] pci_bus 0000:00: resource 5 [mem 0x3c0000000000-0x3fffdfffffff window]
[    5.066457] pci_bus 0000:01: resource 1 [mem 0x70000000-0x701fffff]
[    5.072713] pci_bus 0000:01: resource 2 [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    5.080675] ACPI: PCI Root Bridge [PCI6] (domain 0004 [bus 00-ff])
[    5.086852] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    5.095952] acpi PNP0A08:06: PCIe port services disabled; not requesting _OSC control
[    5.103773] acpi PNP0A08:06: MCFG quirk: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    5.116557] acpi PNP0A08:06: ECAM area [mem 0x2bfff0000000-0x2bffffffffff] reserved by PNP0C02:00
[    5.125430] acpi PNP0A08:06: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff]
[    5.133583] PCI host bridge to bus 0004:00
[    5.137671] pci_bus 0004:00: root bus resource [mem 0x20000000-0x2fffffff window]
[    5.145143] pci_bus 0004:00: root bus resource [mem 0x280000000000-0x2bffdfffffff window]
[    5.153310] pci_bus 0004:00: root bus resource [bus 00-ff]
[    5.158818] pci 0004:00:00.0: [1def:e110] type 00 class 0x060000
[    5.164880] pci 0004:00:01.0: [1def:e111] type 01 class 0x060400
[    5.170915] pci 0004:00:01.0: supports D1 D2
[    5.175175] pci 0004:00:01.0: PME# supported from D0 D1 D3hot
[    5.180958] pci 0004:00:03.0: [1def:e113] type 01 class 0x060400
[    5.186992] pci 0004:00:03.0: supports D1 D2
[    5.191251] pci 0004:00:03.0: PME# supported from D0 D1 D3hot
[    5.197037] pci 0004:00:05.0: [1def:e115] type 01 class 0x060400
[    5.203079] pci 0004:00:05.0: supports D1 D2
[    5.207338] pci 0004:00:05.0: PME# supported from D0 D1 D3hot
[    5.213158] pci 0004:01:00.0: [1a03:1150] type 01 class 0x060400
[    5.219204] pci 0004:01:00.0: enabling Extended Tags
[    5.224219] pci 0004:01:00.0: supports D1 D2
[    5.228478] pci 0004:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.235182] pci_bus 0004:02: extended config space not accessible
[    5.241287] pci 0004:02:00.0: [1a03:2000] type 00 class 0x030000
[    5.247301] pci 0004:02:00.0: reg 0x10: [mem 0x20000000-0x20ffffff]
[    5.253567] pci 0004:02:00.0: reg 0x14: [mem 0x21000000-0x2101ffff]
[    5.259833] pci 0004:02:00.0: reg 0x18: [io  0x27fff000-0x27fff07f]
[    5.266173] pci 0004:02:00.0: supports D1 D2
[    5.270433] pci 0004:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.277173] pci 0004:03:00.0: [1912:0014] type 00 class 0x0c0330
[    5.283189] pci 0004:03:00.0: reg 0x10: [mem 0x21200000-0x21201fff 64bit]
[    5.290069] pci 0004:03:00.0: PME# supported from D0 D3hot D3cold
[    5.296292] pci 0004:04:00.0: [8086:1533] type 00 class 0x020000
[    5.302317] pci 0004:04:00.0: reg 0x10: [mem 0x21100000-0x2117ffff]
[    5.308604] pci 0004:04:00.0: reg 0x18: [io  0x27ffe000-0x27ffe01f]
[    5.314875] pci 0004:04:00.0: reg 0x1c: [mem 0x21180000-0x21183fff]
[    5.321309] pci 0004:04:00.0: PME# supported from D0 D3hot D3cold
[    5.327506] pci 0004:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-02] add_size 200000 add_align 100000
[    5.339233] pci 0004:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    5.347400] pci 0004:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    5.358865] pci 0004:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 03] add_size 100000 add_align 100000
[    5.369375] pci 0004:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    5.380841] pci 0004:00:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    5.391355] pci 0004:00:01.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    5.398133] pci 0004:00:01.0: BAR 9: assigned [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.406560] pci 0004:00:03.0: BAR 8: assigned [mem 0x21800000-0x219fffff]
[    5.413338] pci 0004:00:03.0: BAR 9: assigned [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.421764] pci 0004:00:05.0: BAR 8: assigned [mem 0x21a00000-0x21bfffff]
[    5.428541] pci 0004:00:05.0: BAR 9: assigned [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.436967] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.443223] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.449826] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.456082] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.462685] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.468942] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.475547] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.481802] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.488406] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.494662] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.501265] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.507521] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.514126] pci 0004:01:00.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    5.520903] pci 0004:01:00.0: BAR 7: no space for [io  size 0x1000]
[    5.527158] pci 0004:01:00.0: BAR 7: failed to assign [io  size 0x1000]
[    5.533762] pci 0004:02:00.0: BAR 0: assigned [mem 0x20000000-0x20ffffff]
[    5.540542] pci 0004:02:00.0: BAR 1: assigned [mem 0x21000000-0x2101ffff]
[    5.547321] pci 0004:02:00.0: BAR 2: no space for [io  size 0x0080]
[    5.553577] pci 0004:02:00.0: BAR 2: failed to assign [io  size 0x0080]
[    5.560180] pci 0004:01:00.0: PCI bridge to [bus 02]
[    5.565137] pci 0004:01:00.0:   bridge window [mem 0x20000000-0x217fffff]
[    5.571921] pci 0004:00:01.0: PCI bridge to [bus 01-02]
[    5.577135] pci 0004:00:01.0:   bridge window [mem 0x20000000-0x217fffff]
[    5.583912] pci 0004:00:01.0:   bridge window [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.592341] pci 0004:03:00.0: BAR 0: assigned [mem 0x21800000-0x21801fff 64bit]
[    5.599648] pci 0004:00:03.0: PCI bridge to [bus 03]
[    5.604602] pci 0004:00:03.0:   bridge window [mem 0x21800000-0x219fffff]
[    5.611380] pci 0004:00:03.0:   bridge window [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.619808] pci 0004:04:00.0: BAR 0: assigned [mem 0x21a00000-0x21a7ffff]
[    5.626589] pci 0004:04:00.0: BAR 3: assigned [mem 0x21a80000-0x21a83fff]
[    5.633371] pci 0004:04:00.0: BAR 2: no space for [io  size 0x0020]
[    5.639627] pci 0004:04:00.0: BAR 2: failed to assign [io  size 0x0020]
[    5.646230] pci 0004:00:05.0: PCI bridge to [bus 04]
[    5.651207] pci 0004:00:05.0:   bridge window [mem 0x21a00000-0x21bfffff]
[    5.657984] pci 0004:00:05.0:   bridge window [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.666412] pci_bus 0004:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.675446] pci_bus 0004:00: resource 4 [mem 0x20000000-0x2fffffff window]
[    5.682310] pci_bus 0004:00: resource 5 [mem 0x280000000000-0x2bffdfffffff window]
[    5.689868] pci_bus 0004:01: resource 1 [mem 0x20000000-0x217fffff]
[    5.696124] pci_bus 0004:01: resource 2 [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.704029] pci_bus 0004:02: resource 1 [mem 0x20000000-0x217fffff]
[    5.710286] pci_bus 0004:03: resource 1 [mem 0x21800000-0x219fffff]
[    5.716542] pci_bus 0004:03: resource 2 [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.724447] pci_bus 0004:04: resource 1 [mem 0x21a00000-0x21bfffff]
[    5.730704] pci_bus 0004:04: resource 2 [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.738659] ACPI: PCI Root Bridge [PCI7] (domain 0005 [bus 00-ff])
[    5.744837] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    5.753938] acpi PNP0A08:07: PCIe port services disabled; not requesting _OSC control
[    5.761759] acpi PNP0A08:07: MCFG quirk: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    5.774553] acpi PNP0A08:07: ECAM area [mem 0x2ffff0000000-0x2fffffffffff] reserved by PNP0C02:00
[    5.783424] acpi PNP0A08:07: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff]
[    5.791576] PCI host bridge to bus 0005:00
[    5.795663] pci_bus 0005:00: root bus resource [mem 0x30000000-0x3fffffff window]
[    5.803135] pci_bus 0005:00: root bus resource [mem 0x2c0000000000-0x2fffdfffffff window]
[    5.811301] pci_bus 0005:00: root bus resource [bus 00-ff]
[    5.816808] pci 0005:00:00.0: [1def:e110] type 00 class 0x060000
[    5.822874] pci 0005:00:01.0: [1def:e111] type 01 class 0x060400
[    5.828917] pci 0005:00:01.0: supports D1 D2
[    5.833177] pci 0005:00:01.0: PME# supported from D0 D1 D3hot
[    5.838963] pci 0005:00:03.0: [1def:e113] type 01 class 0x060400
[    5.844997] pci 0005:00:03.0: supports D1 D2
[    5.849257] pci 0005:00:03.0: PME# supported from D0 D1 D3hot
[    5.855040] pci 0005:00:05.0: [1def:e115] type 01 class 0x060400
[    5.861084] pci 0005:00:05.0: supports D1 D2
[    5.865343] pci 0005:00:05.0: PME# supported from D0 D1 D3hot
[    5.871126] pci 0005:00:07.0: [1def:e117] type 01 class 0x060400
[    5.877156] pci 0005:00:07.0: supports D1 D2
[    5.881415] pci 0005:00:07.0: PME# supported from D0 D1 D3hot
[    5.888295] pci 0005:02:00.0: [1912:0014] type 00 class 0x0c0330
[    5.894311] pci 0005:02:00.0: reg 0x10: [mem 0x30100000-0x30101fff 64bit]
[    5.901192] pci 0005:02:00.0: PME# supported from D0 D3hot D3cold
[    5.908455] pci 0005:04:00.0: [126f:2263] type 00 class 0x010802
[    5.914469] pci 0005:04:00.0: reg 0x10: [mem 0x30000000-0x30003fff 64bit]
[    5.921426] pci 0005:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    5.929594] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    5.941059] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    5.951569] pci 0005:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    5.959735] pci 0005:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[    5.971200] pci 0005:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 02] add_size 100000 add_align 100000
[    5.981710] pci 0005:00:05.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    5.989876] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    6.001341] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[    6.011851] pci 0005:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    6.020016] pci 0005:00:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    6.031481] pci 0005:00:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    6.041996] pci 0005:00:01.0: BAR 8: assigned [mem 0x30000000-0x301fffff]
[    6.048774] pci 0005:00:01.0: BAR 9: assigned [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.057200] pci 0005:00:03.0: BAR 8: assigned [mem 0x30200000-0x303fffff]
[    6.063978] pci 0005:00:03.0: BAR 9: assigned [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.072405] pci 0005:00:05.0: BAR 8: assigned [mem 0x30400000-0x305fffff]
[    6.079183] pci 0005:00:05.0: BAR 9: assigned [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.087609] pci 0005:00:07.0: BAR 8: assigned [mem 0x30600000-0x307fffff]
[    6.094387] pci 0005:00:07.0: BAR 9: assigned [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.102813] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    6.109069] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    6.115672] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    6.121928] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    6.128531] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    6.134787] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    6.141390] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    6.147646] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    6.154252] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    6.160508] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    6.167112] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    6.173367] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    6.179971] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    6.186227] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    6.192830] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    6.199086] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    6.205690] pci 0005:00:01.0: PCI bridge to [bus 01]
[    6.210644] pci 0005:00:01.0:   bridge window [mem 0x30000000-0x301fffff]
[    6.217422] pci 0005:00:01.0:   bridge window [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.225851] pci 0005:02:00.0: BAR 0: assigned [mem 0x30200000-0x30201fff 64bit]
[    6.233157] pci 0005:00:03.0: PCI bridge to [bus 02]
[    6.238112] pci 0005:00:03.0:   bridge window [mem 0x30200000-0x303fffff]
[    6.244889] pci 0005:00:03.0:   bridge window [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.253315] pci 0005:00:05.0: PCI bridge to [bus 03]
[    6.258270] pci 0005:00:05.0:   bridge window [mem 0x30400000-0x305fffff]
[    6.265048] pci 0005:00:05.0:   bridge window [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.273476] pci 0005:04:00.0: BAR 0: assigned [mem 0x30600000-0x30603fff 64bit]
[    6.280789] pci 0005:00:07.0: PCI bridge to [bus 04]
[    6.285744] pci 0005:00:07.0:   bridge window [mem 0x30600000-0x307fffff]
[    6.292522] pci 0005:00:07.0:   bridge window [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.300949] pci_bus 0005:00: resource 4 [mem 0x30000000-0x3fffffff window]
[    6.307813] pci_bus 0005:00: resource 5 [mem 0x2c0000000000-0x2fffdfffffff window]
[    6.315372] pci_bus 0005:01: resource 1 [mem 0x30000000-0x301fffff]
[    6.321627] pci_bus 0005:01: resource 2 [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.329533] pci_bus 0005:02: resource 1 [mem 0x30200000-0x303fffff]
[    6.335788] pci_bus 0005:02: resource 2 [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.343694] pci_bus 0005:03: resource 1 [mem 0x30400000-0x305fffff]
[    6.349950] pci_bus 0005:03: resource 2 [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.357855] pci_bus 0005:04: resource 1 [mem 0x30600000-0x307fffff]
[    6.364111] pci_bus 0005:04: resource 2 [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.372229] iommu: Default domain type: Translated 
[    6.377134] pci 000d:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    6.385483] pci 0004:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    6.393826] pci 000d:01:00.0: vgaarb: bridge control possible
[    6.399561] pci 0004:02:00.0: vgaarb: bridge control possible
[    6.405298] pci 0004:02:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[    6.414158] vgaarb: loaded
[    6.416938] SCSI subsystem initialized
[    6.420682] ACPI: bus type USB registered
[    6.424696] usbcore: registered new interface driver usbfs
[    6.430180] usbcore: registered new interface driver hub
[    6.435495] usbcore: registered new device driver usb
[    6.440555] pps_core: LinuxPPS API ver. 1 registered
[    6.445508] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    6.454630] PTP clock support registered
[    6.458663] Registered efivars operations
[    6.463365] clocksource: Switched to clocksource arch_sys_counter
[    6.644827] pnp: PnP ACPI init
[    6.649249] system 00:00: [mem 0x3bfff0000000-0x3bffffffffff window] has been reserved
[    6.657160] system 00:00: [mem 0x3ffff0000000-0x3fffffffffff window] could not be reserved
[    6.665413] system 00:00: [mem 0x23fff0000000-0x23ffffffffff window] has been reserved
[    6.673319] system 00:00: [mem 0x27fff0000000-0x27ffffffffff window] has been reserved
[    6.681226] system 00:00: [mem 0x2bfff0000000-0x2bffffffffff window] could not be reserved
[    6.689480] system 00:00: [mem 0x2ffff0000000-0x2fffffffffff window] could not be reserved
[    6.697733] system 00:00: [mem 0x7bfff0000000-0x7bffffffffff window] has been reserved
[    6.705640] system 00:00: [mem 0x7ffff0000000-0x7fffffffffff window] has been reserved
[    6.713546] system 00:00: [mem 0x63fff0000000-0x63ffffffffff window] has been reserved
[    6.721452] system 00:00: [mem 0x67fff0000000-0x67ffffffffff window] has been reserved
[    6.729359] system 00:00: [mem 0x6bfff0000000-0x6bffffffffff window] has been reserved
[    6.737266] system 00:00: [mem 0x6ffff0000000-0x6fffffffffff window] has been reserved
[    6.745172] system 00:00: [mem 0x33fff0000000-0x33ffffffffff window] could not be reserved
[    6.753425] system 00:00: [mem 0x37fff0000000-0x37ffffffffff window] could not be reserved
[    6.761687] pnp: PnP ACPI: found 1 devices
[    6.767493] NET: Registered protocol family 2
[    6.772027] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    6.780907] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    6.789919] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    6.797784] TCP: Hash tables configured (established 262144 bind 65536)
[    6.804455] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    6.811664] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    6.819429] NET: Registered protocol family 1
[    6.823958] RPC: Registered named UNIX socket transport module.
[    6.829869] RPC: Registered udp transport module.
[    6.834563] RPC: Registered tcp transport module.
[    6.839257] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    6.845733] pci 000d:01:00.1: D0 power state depends on 000d:01:00.0
[    6.852134] pci 000d:01:00.2: D0 power state depends on 000d:01:00.0
[    6.858512] pci 000d:01:00.2: enabling device (0000 -> 0002)
[    6.864212] pci 000d:01:00.3: D0 power state depends on 000d:01:00.0
[    6.870614] pci 0004:03:00.0: enabling device (0000 -> 0002)
[    6.876302] pci 0005:02:00.0: enabling device (0000 -> 0002)
[    6.881974] PCI: CLS 128 bytes, default 64
[    6.887330] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 7 counters available
[    6.896755] workingset: timestamp_bits=42 max_order=23 bucket_order=0
[    6.904966] NFS: Registering the id_resolver key type
[    6.910019] Key type id_resolver registered
[    6.914193] Key type id_legacy registered
[    6.918483] Key type cifs.idmap registered
[    6.937185] xor: measuring software checksum speed
[    6.942973]    8regs           :  9793 MB/sec
[    6.948157]    32regs          : 11758 MB/sec
[    6.953208]    arm64_neon      : 13962 MB/sec
[    6.957555] xor: using function: arm64_neon (13962 MB/sec)
[    6.963039] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    6.970425] io scheduler mq-deadline registered
[    6.974945] io scheduler kyber registered
[    6.979642] gpio-dwapb APMC0D07:02: no IRQ for port0
[    6.985421] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    6.993803] ACPI: Power Button [PWRB]
[    7.000605] GHES: APEI firmware first mode is enabled by APEI bit.
[    7.006822] EINJ: Error INJection is initialized.
[    7.011554] ACPI GTDT: found 1 SBSA generic Watchdog(s).
[    7.017587] ast 0004:02:00.0: [drm] platform has no IO space, trying MMIO
[    7.024374] ast 0004:02:00.0: [drm] Using P2A bridge for configuration
[    7.030893] ast 0004:02:00.0: [drm] AST 2500 detected
[    7.035938] ast 0004:02:00.0: [drm] Analog VGA only
[    7.040813] ast 0004:02:00.0: [drm] dram MCLK=800 Mhz type=8 bus_width=16
[    7.047686] [TTM] Zone  kernel: Available graphics memory: 16251144 KiB
[    7.054290] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    7.060806] [TTM] Initializing pool allocator
[    7.065155] [TTM] Initializing DMA pool allocator
[    7.070104] [drm] Initialized ast 0.1.0 20120228 for 0004:02:00.0 on minor 0
[    7.094575] Console: switching to colour frame buffer device 128x48
[    7.103026] ast 0004:02:00.0: [drm] fb0: astdrmfb frame buffer device
[    7.123888] brd: module loaded
[    7.131474] loop: module loaded
[    7.135105] nvme nvme0: pci function 0005:04:00.0
[    7.140019] igb: Intel(R) Gigabit Ethernet Network Driver
[    7.141970] DEBUG dma_alloc_attrs 432 size=512 flags=cc0 attr=0
[    7.145413] igb: Copyright (c) 2007-2014 Intel Corporation.
[    7.151318] DEBUG dma_alloc_attrs 436 size=512 flags=cc0 attr=0
[    7.151321] DEBUG dma_alloc_attrs 432 size=2048 flags=cc0 attr=0
[    7.169326] DEBUG dma_alloc_attrs 436 size=2048 flags=cc0 attr=0
[    7.181493] nvme nvme0: missing or invalid SUBNQN field.
[    7.188653] DEBUG dma_alloc_attrs 432 size=256 flags=cc0 attr=0
[    7.195399] DEBUG dma_alloc_attrs 436 size=256 flags=cc0 attr=0
[    7.199806] pps pps0: new PPS source ptp0
[    7.201315] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.205340] igb 0004:04:00.0: added PHC on eth0
[    7.211737] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.211858] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.216258] igb 0004:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    7.222686] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.222805] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.229118] igb 0004:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:3b:50:52
[    7.235981] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.242468] igb 0004:04:00.0: eth0: PBA No: 000300-000
[    7.248955] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.255962] igb 0004:04:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[    7.262390] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.262508] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.267572] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    7.273951] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.281507] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    7.281520] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[    7.288057] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.294366] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[    7.294522] i40e 0000:01:00.0: enabling device (0000 -> 0002)
[    7.300624] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.325386] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[    7.325762] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.331464] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[    7.337199] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.343631] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.349741] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.356051] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.356054] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.362047] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.362167] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.368477] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.368479] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.374474] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.374593] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.380905] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.386900] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.392895] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.399444] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.405752] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.405754] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.411748] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.411868] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.417744] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.417747] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.424175] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.430604] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.430606] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.436719] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.443029] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.443031] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.449025] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.449145] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.455456] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.461450] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.461570] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.467448] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.473877] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.480304] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.480306] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.486419] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[    7.492297] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.498725] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[    7.498848] nvme nvme0: allocated 64 MiB host memory buffer.
[    7.504722] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.523474] DEBUG dma_alloc_attrs 432 size=16384 flags=cc0 attr=0
[    7.529143] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.535572] DEBUG dma_alloc_attrs 436 size=16384 flags=cc0 attr=0
[    7.535576] DEBUG dma_alloc_attrs 432 size=65536 flags=cc0 attr=0
[    7.542004] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.547998] DEBUG dma_alloc_attrs 436 size=65536 flags=cc0 attr=0
[    7.554428] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.560860] DEBUG dma_alloc_attrs 432 size=16384 flags=cc0 attr=0
[    7.566853] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.573282] DEBUG dma_alloc_attrs 436 size=16384 flags=cc0 attr=0
[    7.579277] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.585273] DEBUG dma_alloc_attrs 432 size=65536 flags=cc0 attr=0
[    7.591703] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.597698] DEBUG dma_alloc_attrs 436 size=65536 flags=cc0 attr=0
[    7.604127] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.609778] DEBUG dma_alloc_attrs 432 size=16384 flags=cc0 attr=0
[    7.615772] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.621852] DEBUG dma_alloc_attrs 436 size=16384 flags=cc0 attr=0
[    7.627847] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.633930] DEBUG dma_alloc_attrs 432 size=65536 flags=cc0 attr=0
[    7.640013] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.640015] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.646014] DEBUG dma_alloc_attrs 436 size=65536 flags=cc0 attr=0
[    7.652093] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.658091] DEBUG dma_alloc_attrs 432 size=16384 flags=cc0 attr=0
[    7.664169] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.670163] DEBUG dma_alloc_attrs 436 size=16384 flags=cc0 attr=0
[    7.670166] DEBUG dma_alloc_attrs 432 size=65536 flags=cc0 attr=0
[    7.676247] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.682240] DEBUG dma_alloc_attrs 436 size=65536 flags=cc0 attr=0
[    7.682245] DEBUG dma_alloc_attrs 432 size=16384 flags=cc0 attr=0
[    7.688323] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.694317] DEBUG dma_alloc_attrs 436 size=16384 flags=cc0 attr=0
[    7.694321] DEBUG dma_alloc_attrs 432 size=65536 flags=cc0 attr=0
[    7.700402] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.706403] DEBUG dma_alloc_attrs 436 size=65536 flags=cc0 attr=0
[    7.712478] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.718475] DEBUG dma_alloc_attrs 432 size=16384 flags=cc0 attr=0
[    7.724554] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.730548] DEBUG dma_alloc_attrs 436 size=16384 flags=cc0 attr=0
[    7.730551] DEBUG dma_alloc_attrs 432 size=65536 flags=cc0 attr=0
[    7.736631] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.742625] DEBUG dma_alloc_attrs 436 size=65536 flags=cc0 attr=0
[    7.742631] DEBUG dma_alloc_attrs 432 size=16384 flags=cc0 attr=0
[    7.748623] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.754703] DEBUG dma_alloc_attrs 436 size=16384 flags=cc0 attr=0
[    7.754706] DEBUG dma_alloc_attrs 432 size=65536 flags=cc0 attr=0
[    7.760700] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.766781] DEBUG dma_alloc_attrs 436 size=65536 flags=cc0 attr=0
[    7.772776] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.778861] DEBUG dma_alloc_attrs 432 size=16384 flags=cc0 attr=0
[    7.784939] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.790933] DEBUG dma_alloc_attrs 436 size=16384 flags=cc0 attr=0
[    7.790936] DEBUG dma_alloc_attrs 432 size=65536 flags=cc0 attr=0
[    7.797017] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.803097] DEBUG dma_alloc_attrs 436 size=65536 flags=cc0 attr=0
[    7.899944] nvme nvme0: 8/0/0 default/read/poll queues
[    7.905911] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.905913] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.971439] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.977439] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.983438] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.989436] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    7.995435] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    7.995462]  nvme0n1: p1 p2 p3
[    8.001433] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.001434] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.001436] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.001437] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.001439] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.034458] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.040455] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.046451] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.052454] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.058450] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.064447] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.070443] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.076440] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.082436] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.088432] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.094428] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.100425] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.106420] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.112418] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.118417] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.124415] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.130410] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.136407] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.142403] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.148400] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.154396] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.160392] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.166388] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.172385] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.178381] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.184377] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.190373] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.196371] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.202367] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.208364] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.214360] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.220357] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.226353] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.232351] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.238348] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.244345] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.250340] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.256336] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.262331] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.268329] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.274324] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.280320] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.286315] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.292311] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.298306] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.304310] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.310305] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.316302] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.322297] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.328292] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.334287] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.340284] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.346279] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.352275] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.358270] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.364265] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.370261] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.376259] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.382254] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.388249] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.394244] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.400240] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.406235] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.412232] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.418227] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.424223] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.430218] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.436213] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.442209] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.448206] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.454200] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.460196] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.466191] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.472187] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.478182] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.484178] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.490173] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.496169] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.502164] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.508159] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.514155] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.520152] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.526147] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.532142] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.538137] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.544133] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.550128] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.556124] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.562119] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.568115] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.574110] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.580106] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.586101] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.592098] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.598093] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.604088] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.610083] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.616079] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.622074] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.628069] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.634064] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.640061] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.646056] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.652051] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.658046] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.664042] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.670037] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.676033] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.682028] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.688024] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.694019] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.700015] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.706010] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.712005] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.718000] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.723996] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.729991] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.735987] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.741982] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.747978] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.753972] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.759968] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.765963] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.771959] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.777954] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.783950] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.789945] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.795940] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.801935] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.807934] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.813929] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.819925] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.825920] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.831916] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.837911] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.843906] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.849901] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.855897] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.861892] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.867887] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.873883] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.879880] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.885876] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.891871] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.897866] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.903862] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.909857] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.915853] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.921848] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.927844] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.933839] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.939835] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.945830] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.951825] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.957820] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.963816] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.969812] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.975807] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.981802] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.987798] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    8.993793] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    8.999789] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.005784] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.011779] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.017775] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.023770] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.029765] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.035761] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.041755] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.047751] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.053746] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.059742] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.065737] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.071732] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.077727] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.083723] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.089718] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.095714] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.101710] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.107706] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.113701] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.119696] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.125691] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.131688] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.137683] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.143678] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.149674] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.155669] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.161664] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.167660] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.173655] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.179651] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.185646] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.191641] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.197636] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.203632] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.209628] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.215623] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.221619] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.227614] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.233609] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.239605] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.245600] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.251596] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.257591] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.263586] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.269581] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.275577] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.281572] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.287568] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.293563] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.299559] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.305554] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.311550] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.317545] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.323547] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.329542] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.335539] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.341534] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.347530] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.353525] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.359520] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.365515] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.371511] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.377506] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.383502] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.389497] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.395496] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.401491] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.407487] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.413482] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.419478] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.425473] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.431469] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.437463] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.443460] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.449455] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.455450] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.461445] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.467441] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.473436] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.479431] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.485427] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.491423] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.497418] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.503414] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.509409] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.515405] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.521400] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.527396] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.533391] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.539388] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.545383] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.551378] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.557373] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.563372] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.569367] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.575362] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.581357] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.587353] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.593348] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.599343] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.605338] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.611334] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.617329] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.623324] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.629319] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.635315] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.641310] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.647306] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.653301] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.659297] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.665292] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.671287] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.677282] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.683278] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.689273] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.695268] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.701263] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.707259] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.713254] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.719249] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.725245] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.731241] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.737236] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.743232] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.749228] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.755223] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.761218] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.767214] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.773209] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.779205] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.785200] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.791196] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.797191] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.803187] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.809182] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.815177] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.821172] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.827168] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.833163] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.839158] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.845153] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.851149] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.857144] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.863140] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.869135] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.875130] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.881125] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.887121] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.893116] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.899112] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.905107] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.911105] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.917101] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.923097] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.929093] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.935089] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.941084] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.947079] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.953074] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.959071] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.965066] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.971061] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.977056] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.983052] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[    9.989047] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[    9.995043] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.001038] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.007034] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.013029] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.019024] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.025019] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.031015] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.037010] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.043006] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.049001] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.054996] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.060991] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.066989] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.072985] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.078980] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.084975] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.090971] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.096966] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.102961] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.108957] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.114952] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.120947] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.126943] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.132938] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.138933] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.144928] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.150924] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.156920] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.162915] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.168911] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.174907] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.180902] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.186897] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.192893] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.198889] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.204884] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.210879] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.216874] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.222870] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.228865] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.234861] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.240856] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.246852] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.252847] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.258842] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.264837] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.270833] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.276828] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.282823] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.288818] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.294814] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.300809] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.306805] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.312800] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.318799] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.324794] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.330790] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.336784] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.342780] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.348781] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.354778] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.360773] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.366769] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.372764] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.378759] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.384754] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.390750] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.396745] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.402741] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.408736] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.414732] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.420729] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.426725] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.432720] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.438715] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.444711] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.450706] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.456701] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.462697] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.468692] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.474687] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.480682] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.486678] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.492673] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.498668] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.504663] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.510659] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.516654] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.522650] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.528645] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.534641] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.540636] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.546631] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.552626] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.558623] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.564618] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.570614] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.576608] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.582604] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.588599] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.594595] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.600590] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.606586] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.612581] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.618576] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.624571] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.630567] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.636562] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.642558] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.648553] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.654549] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.660544] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.666539] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.672534] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.678530] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.684525] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.690521] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.696516] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.702512] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.708507] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.714503] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.720498] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.726494] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.732489] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.738484] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.744479] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.750475] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.756470] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.762467] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   10.768463] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   10.774461] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.780456] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.786452] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.792447] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.798443] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.804438] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.810433] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.816428] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.822424] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.828419] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.834414] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.840409] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.846405] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.852400] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.858396] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.864391] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.870387] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.876382] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.882378] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.888373] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.894369] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.900364] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.906359] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.912354] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.918350] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.924345] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.930342] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.936338] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.942334] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.948330] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.954326] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.960320] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.966316] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.972312] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.978307] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.984302] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   10.990298] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   10.996293] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.002288] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.008283] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.014279] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.020274] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.026270] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.032266] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.038261] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.044256] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.050252] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.056247] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.062243] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.068238] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.074234] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.080228] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.086226] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.092221] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.098217] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.104212] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.110208] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.116203] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.122198] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.128193] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.134189] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.140184] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.146180] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.152175] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.158171] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.164166] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.170162] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.176157] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.182153] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.188148] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.194144] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.200139] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.206134] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.212129] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.218125] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.224120] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.230116] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.236111] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.242107] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.248101] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.254097] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.260092] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.266088] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.272083] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.278078] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.284073] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.290069] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.296064] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.302059] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.308054] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.314050] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.320045] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.326041] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.332036] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.338032] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.344027] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.350024] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.356019] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.362015] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.368016] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.374012] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.380007] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.386003] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.391998] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.397994] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.403989] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.409985] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.415980] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.421975] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.427970] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.433966] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.439963] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.445960] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.451955] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.457950] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.463945] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.469941] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.475936] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.481931] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.487926] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.493922] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.499917] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.505913] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.511908] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.517904] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.523899] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.529895] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.535890] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.541885] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.547880] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.553876] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.559872] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.565867] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.571862] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.577858] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.583853] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.589849] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.595844] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.601840] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.607835] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.613831] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.619826] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.625822] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.631817] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.637813] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.643808] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.649804] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.655799] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.661795] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.667789] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.673786] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.679781] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.685776] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.691771] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.697767] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.703762] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.709757] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.715753] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.721749] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.727744] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.733740] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.739735] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.745730] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.751725] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.757721] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.763716] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.769712] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.775707] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.781702] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.787698] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.793694] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.799689] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.805684] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.811680] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.817675] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.823670] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.829666] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.835661] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.841659] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.847654] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.853650] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.859645] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.865641] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.871635] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.877631] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.883626] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.889622] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.895617] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.901613] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.907608] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.913604] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.919599] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.925594] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.931589] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.937585] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.943580] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.949575] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.955573] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.961569] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.967564] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.973560] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.979555] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.985551] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   11.991546] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   11.997542] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.003537] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.009533] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.015528] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.021524] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.027519] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.033515] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.039510] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.045506] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.051500] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.057496] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.063492] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.069487] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.075483] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.081479] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.087474] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.093469] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.099464] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.105460] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.111455] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.117451] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.123446] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.129441] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.135436] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.141432] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.147427] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.153423] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.159419] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.165415] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.171410] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.177405] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.183401] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.189397] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.195392] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.201388] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.207383] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.213379] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.219374] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.225370] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.231365] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.237361] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.243357] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.249352] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.255347] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.261343] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.267338] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.273334] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.279329] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.285325] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.291320] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.297316] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.303311] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.309306] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.315301] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.321297] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.327292] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.333288] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.339282] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.345278] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.351273] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.357269] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.363264] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.369268] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.375264] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.381259] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.387254] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.393257] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.399252] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.405248] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.411243] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.417238] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.423233] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.429229] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.435224] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.441220] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.447215] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.453211] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.459206] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.465203] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.471199] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.477194] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.483189] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.489185] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.495180] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.501176] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.507171] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.513167] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.519162] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.525157] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.531152] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.537149] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.543143] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.549139] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.555135] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.561130] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.567125] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.573121] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.579116] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.585112] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.591107] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.597105] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.603100] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.609096] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.615091] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.621086] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.627081] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.633077] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.639072] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.645067] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.651062] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.657059] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.663054] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.669049] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.675044] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.681040] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.687035] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.693030] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.699025] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.705021] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.711016] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.717011] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.723006] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.729002] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.734997] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.740993] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.746988] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.752984] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.758979] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.764975] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.770970] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.776965] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.782960] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.788956] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.794952] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.800947] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.806942] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.812938] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.818933] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.824929] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.830924] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.836920] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.842915] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.848910] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.854905] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.860901] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.866896] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.872892] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.878887] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.884885] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.890879] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.896875] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.902870] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.908866] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.914861] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.920856] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.926851] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.932847] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.938842] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.944837] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.950832] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.956828] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.962823] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.968818] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.974813] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.980812] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.986807] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.992803] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.998798] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.004794] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.010788] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.016785] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.022780] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.028776] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.034771] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.040766] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.046761] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.052757] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.058752] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.064748] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.070743] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.076738] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.082734] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.088729] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.094724] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.100720] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.106715] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.112710] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.118705] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.124701] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.130696] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.136693] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.142689] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.148685] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.154680] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.160675] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.166670] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.172667] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.178662] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.184658] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.190654] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.196650] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.202645] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.208641] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.214636] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.220633] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.226628] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.232623] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.238618] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.244614] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.250610] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.256605] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.262600] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.268596] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.274591] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.280587] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.286582] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.292579] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.298574] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.304569] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.310564] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.316560] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.322556] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.328552] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.334547] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.340543] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.346538] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.352537] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.358533] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.364529] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.370524] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.376519] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.382514] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.388510] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.394505] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.400500] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.406495] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.412497] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.418493] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.424489] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.430484] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.436480] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.442475] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.448470] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.454465] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.460461] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.466456] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.472451] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.478447] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.484443] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.490439] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.496436] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.502431] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.508426] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.514421] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.520417] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.526412] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.532407] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.538403] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.544398] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.550394] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.556390] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.562385] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.568380] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.574375] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.580371] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.586366] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.592362] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.598357] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.604353] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.610348] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.616343] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.622338] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.628334] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.634329] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.640325] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.646320] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.652317] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.658312] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.664307] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.670302] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.676298] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.682293] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.688288] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.694283] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.700279] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.706274] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.712269] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.718264] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.724261] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.730256] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.736251] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.742246] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.748242] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.754237] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.760233] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.766228] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.772223] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.778218] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.784214] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.790209] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.796205] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.802200] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.808195] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.814190] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.820186] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.826181] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.832177] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.838172] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.845122] i40e 0000:01:00.0: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0002]
[   14.135667] DEBUG dma_alloc_attrs 432 size=61440 flags=cc0 attr=0
[   14.141749] DEBUG dma_alloc_attrs 436 size=61440 flags=cc0 attr=0
[   14.147943] i40e 0000:01:00.0: MAC address: 3c:fd:fe:6b:e9:c0
[   14.153833] i40e 0000:01:00.0: FW LLDP is enabled
[   14.173650] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.179649] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.185646] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.191641] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.197808] i40e 0000:01:00.0: PCI-Express: Speed 8.0GT/s Width x8
[   14.205068] i40e 0000:01:00.0: Features: PF-id[0] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   14.215248] i40e 0000:01:00.1: enabling device (0000 -> 0002)
[   14.231406] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   14.237402] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   14.243402] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.249398] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.255394] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.261389] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.267385] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.273380] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.279375] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.285370] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.291367] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.297361] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.303357] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.309352] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.315348] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.321343] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.327339] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.333334] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.339330] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.345325] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.351320] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.357315] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.363311] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.369306] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.375301] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.381296] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.387292] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.393287] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.399283] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.405278] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.411273] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.417268] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.423264] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.429259] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.435255] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.441250] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.447246] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.453242] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.459237] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.465233] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.471231] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.477226] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.483222] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.489217] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.495212] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.501207] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.507203] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.513200] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.519197] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.525192] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.531188] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.537183] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.543179] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.549174] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.555170] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.561164] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.567160] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.573155] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.579151] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.585146] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.591142] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.597137] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.603133] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.609128] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.615123] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.621119] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.627115] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.633109] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.639105] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.645100] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.651096] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.657091] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.663087] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.669082] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.675077] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.681072] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.687068] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.693063] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.699059] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.705054] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.711050] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.717045] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.723040] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.729035] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.735031] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.741026] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.747021] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.753016] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.759012] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.765007] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.771002] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.776998] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.782994] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.788989] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.794985] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.800980] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.806975] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.812970] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.818966] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.824961] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.830957] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.836952] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.842948] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.848943] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.854938] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.860934] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.866929] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.872924] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.878920] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.884915] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.890911] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.896906] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.902902] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.908897] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.914892] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.920887] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.926883] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.932878] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.938873] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.944868] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.950864] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.956859] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.962855] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.968849] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.974845] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.980840] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.986836] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.992834] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.998829] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.004824] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.010820] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.016815] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.022811] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.028809] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.034805] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.040800] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.046796] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.052791] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.058786] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.064782] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.070778] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.076773] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.082769] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.088764] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.094759] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.100755] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.106751] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.112746] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.118741] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.124736] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.130732] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.136727] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.142723] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.148718] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.154714] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.160708] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.166705] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.172700] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.178696] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.184691] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.190687] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.196682] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.202678] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.208674] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.214669] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.220664] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.226662] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.232657] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.238653] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.244655] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.250650] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.256646] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.262641] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.268637] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.274633] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.280628] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.286624] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.292619] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.298614] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.304609] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.310605] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.316600] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.322596] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.328591] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.334587] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.340582] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.346577] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.352572] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.358568] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.364563] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.370559] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.376553] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.382549] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.388544] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.394540] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.400535] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.406531] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.412526] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.418521] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.424516] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.430513] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.436508] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.442503] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.448498] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.454494] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.460489] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.466485] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.472480] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.478476] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.484471] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.490466] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.496461] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.502457] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.508452] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.514448] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.520443] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.526438] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.532434] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.538431] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.544427] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.550423] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.556418] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.562413] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.568409] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.574404] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.580399] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.586395] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.592390] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.598385] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.604380] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.610376] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.616371] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.622367] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.628362] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.634358] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.640353] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.646349] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.652344] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.658340] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.664334] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.670330] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.676325] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.682321] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.688316] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.694312] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.700307] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.706303] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.712298] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.718293] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.724288] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.730284] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.736279] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.742275] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.748270] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.754266] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.760261] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.766256] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.772251] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.778247] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.784242] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.790237] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.796232] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.802228] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.808223] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.814219] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.820214] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.826210] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.832205] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.838200] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.844195] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.850191] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.856186] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.862182] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.868177] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.874173] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.880169] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.886164] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.892160] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.898156] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.904151] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.910146] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.916141] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.922137] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.928132] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.934128] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.940123] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.946119] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.952114] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.958110] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.964105] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.970100] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.976095] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.982094] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.988090] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.994085] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.000080] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.006076] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.012071] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.018067] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.024062] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.030058] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.036053] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.042048] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.048045] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.054042] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.060037] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.066033] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.072028] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.078023] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.084019] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.090015] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.096010] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.102005] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.108000] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.113997] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.119992] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.125987] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.131983] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.137978] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.143973] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.149969] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.155964] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.161960] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.167955] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.173951] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.179945] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.185941] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.191936] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.197932] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.203927] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.209923] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.215919] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.221915] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.227910] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.233906] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.239901] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.245897] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.251892] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.257887] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.263888] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.269884] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.275880] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.281876] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.287871] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.293867] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.299862] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.305858] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.311853] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.317849] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.323844] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.329840] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.335835] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.341831] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.347825] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.353822] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.359817] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.365812] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.371807] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.377803] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.383798] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.389794] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.395789] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.401785] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.407780] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.413776] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.419771] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.425766] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.431761] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.437757] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.443752] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.449748] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.455743] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.461739] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.467734] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.473729] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.479724] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.485720] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.491716] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.497712] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.503707] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.509702] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.515697] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.521694] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.527689] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.533685] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.539680] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.545675] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.551670] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.557666] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.563664] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.569661] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.575656] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.581651] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.587646] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.593642] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.599637] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.605633] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.611627] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.617623] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.623618] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.629614] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.635609] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.641605] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.647600] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.653595] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.659590] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.665586] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.671581] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.677577] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.683571] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.689567] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.695562] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.701558] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.707553] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.713549] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.719544] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.725539] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.731534] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.737532] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.743527] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.749523] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.755519] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.761514] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.767509] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.773505] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.779500] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.785496] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.791491] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.797487] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.803482] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.809477] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.815472] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.821468] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.827463] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.833459] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.839454] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.845449] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.851445] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.857440] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.863435] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.869430] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.875425] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.881421] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.887416] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.893412] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.899407] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.905403] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.911398] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.917393] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.923388] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.929384] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.935379] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.941375] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.947370] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.953366] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.959361] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.965357] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.971352] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.977347] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.983342] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   16.989338] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   16.995333] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.001329] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.007324] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.013320] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.019315] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.025311] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.031307] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.037303] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.043297] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.049293] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.055288] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.061284] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.067279] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.073276] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.079273] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.085268] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.091263] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.097259] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.103253] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.109250] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.115245] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.121241] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.127236] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.133232] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.139227] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.145223] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.151218] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.157214] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.163209] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.169205] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.175200] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.181195] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.187190] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.193186] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.199181] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.205177] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.211172] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.217168] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.223163] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.229159] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.235154] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.241149] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.247144] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.253140] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.259135] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.265131] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.271126] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.277122] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.283117] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.289119] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.295114] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.301110] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.307105] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.313103] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   17.319098] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   17.325098] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.331094] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.337090] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.343085] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.349081] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.355076] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.361071] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.367066] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.373062] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.379057] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.385052] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.391047] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.397043] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.403038] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.409034] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.415029] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.421024] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.427019] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.433015] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.439010] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.445006] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.451001] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.456997] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.462992] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.468988] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.474982] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.480978] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.486973] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.492969] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.498964] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.504963] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.510958] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.516954] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.522949] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.528945] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.534940] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.540936] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.546931] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.552927] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.558922] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.564918] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.570913] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.576908] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.582903] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.588902] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.594897] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.600893] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.606888] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.612884] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.618879] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.624874] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.630869] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.636865] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.642860] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.648855] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.654850] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.660846] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.666841] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.672837] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.678832] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.684828] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.690823] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.696819] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.702814] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.708810] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.714804] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.720801] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.726796] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.732791] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.738786] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.744782] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.750777] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.756772] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.762767] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.768763] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.774758] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.780754] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.786749] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.792745] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.798740] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.804736] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.810731] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.816726] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.822721] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.828717] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.834712] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.840707] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.846702] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.852698] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.858693] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.864689] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.870684] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.876679] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.882674] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.888670] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.894665] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.900661] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.906656] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.912652] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.918647] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.924643] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.930638] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.936634] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.942629] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.948624] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.954619] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.960615] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.966610] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.972605] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.978600] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.984596] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   17.990591] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   17.996587] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.002583] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.008578] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.014573] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.020569] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.026564] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.032560] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.038555] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.044551] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.050545] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.056541] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.062536] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.068532] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.074527] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.080523] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.086518] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.092513] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.098510] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.104508] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.110503] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.116498] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.122494] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.128490] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.134484] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.140480] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.146475] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.152471] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.158466] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.164462] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.170457] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.176452] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.182447] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.188443] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.194438] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.200434] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.206429] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.212425] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.218420] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.224416] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.230411] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.236406] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.242401] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.248397] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.254392] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.260391] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.266386] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.272381] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.278376] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.284372] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.290367] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.296363] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.302358] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.308360] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.314356] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.320351] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.326346] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.332342] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.338337] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.344333] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.350328] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.356323] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.362318] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.368314] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.374310] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.380305] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.386300] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.392296] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.398291] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.404286] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.410281] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.416278] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.422272] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.428268] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.434264] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.440259] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.446254] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.452250] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.458245] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.464241] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.470236] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.476232] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.482227] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.488222] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.494218] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.500213] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.506208] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.512204] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.518199] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.524194] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.530189] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.536186] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.542181] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.548176] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.554171] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.560167] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.566162] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.572158] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.578153] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.584149] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.590144] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.596139] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.602134] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.608131] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.614127] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.620123] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.626118] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.632114] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.638109] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.644104] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.650099] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.656096] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.662091] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.668087] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.674082] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.680077] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.686072] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.692068] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.698063] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.704059] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.710054] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.716050] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.722045] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.728041] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.734036] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.740032] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.746027] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.752022] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.758017] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.764013] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.770008] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.776003] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.781998] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.787994] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.793989] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.799985] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.805980] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.811976] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.817971] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.823967] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.829962] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.835958] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.841953] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.847949] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.853943] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.859939] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.865934] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.871930] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.877925] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.883921] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.889916] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.895911] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.901906] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.907902] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.913897] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.919893] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.925888] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.931884] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.937879] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.943875] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.949870] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.955865] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.961860] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.967856] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.973851] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.979847] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.985842] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   18.991838] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   18.997833] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.003829] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.009824] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.015822] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.021817] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.027813] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.033808] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.039803] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.045799] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.051794] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.057789] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.063785] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.069780] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.075775] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.081770] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.087766] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.093761] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.099757] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.105752] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.111747] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.117742] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.123740] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.129736] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.135732] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.141727] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.147724] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.153719] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.159714] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.165709] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.171705] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.177700] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.183696] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.189692] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.195687] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.201682] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.207678] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.213673] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.219668] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.225663] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.231659] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.237654] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.243650] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.249645] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.255641] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.261636] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.267632] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.273627] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.279622] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.285617] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.291613] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.297608] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.303603] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.309598] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.315594] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.321589] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.327591] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.333586] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.339581] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.345576] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.351572] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.357567] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.363563] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.369558] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.375554] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.381548] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.387544] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.393539] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.399535] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.405530] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.411526] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.417521] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.423516] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.429511] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.435507] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.441502] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.447497] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.453492] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.459488] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.465483] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.471479] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.477473] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.483469] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.489464] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.495460] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.501455] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.507450] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.513445] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.519441] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.525436] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.531431] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.537426] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.543422] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.549417] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.555413] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.561408] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.567404] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.573399] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.579395] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.585390] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.591385] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.597381] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.603376] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.609371] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.615367] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.621362] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.627357] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.633353] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.639351] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.645345] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.651341] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.657337] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.663332] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.669328] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.675323] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.681318] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.687314] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.693309] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.699304] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.705300] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.711296] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.717291] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.723287] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.729282] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.735277] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.741272] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.747268] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.753263] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.759259] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.765255] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.771253] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.777248] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.783244] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.789239] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.795235] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.801231] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.807227] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.813222] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.819217] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.825212] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.831208] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.837203] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.843199] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.849194] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.855190] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.861185] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.867181] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.873176] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.879172] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.885167] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.891162] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.897157] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.903153] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.909148] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.915144] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.921139] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.927135] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.933129] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.939125] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.945121] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.951116] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.957111] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.963107] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.969102] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.975099] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.981093] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.987090] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   19.993085] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   19.999081] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.005076] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.011071] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.017066] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.023062] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.029057] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.035053] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.041048] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.047043] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.053038] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.059034] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.065029] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.071025] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.077020] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.083016] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.089011] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.095007] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.101002] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.106998] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.112993] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.118988] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.124984] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.130979] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.136974] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.142970] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.148968] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.154964] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.160959] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.166955] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.172951] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.178947] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.184942] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.190938] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.196933] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.202928] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.208924] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.214919] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.220914] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.226910] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.232905] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.238901] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.244896] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.250892] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.256887] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.262883] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.268878] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.274873] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.280868] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.286864] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.292859] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.298855] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.304850] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.310846] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.316841] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.322836] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.328832] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.334827] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.340822] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.346818] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.352819] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.358816] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.364810] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.370806] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.376802] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.382798] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.388793] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.399608] i40e 0000:01:00.1: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   20.687798] DEBUG dma_alloc_attrs 432 size=61440 flags=cc0 attr=0
[   20.693880] DEBUG dma_alloc_attrs 436 size=61440 flags=cc0 attr=0
[   20.700075] i40e 0000:01:00.1: MAC address: 3c:fd:fe:6b:e9:c1
[   20.710286] i40e 0000:01:00.1: FW LLDP is enabled
[   20.721364] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.727362] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.733358] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.739354] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.745520] i40e 0000:01:00.1: PCI-Express: Speed 8.0GT/s Width x8
[   20.752779] i40e 0000:01:00.1: Features: PF-id[1] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   20.762949] i40e 0000:01:00.2: enabling device (0000 -> 0002)
[   20.779398] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   20.785398] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   20.791399] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.797394] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.803391] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.809386] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.815381] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.821376] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.827372] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.833367] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.839363] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.845358] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.851354] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.857351] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.863349] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.869344] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.875340] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.881335] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.887330] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.893325] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.899321] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.905316] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.911311] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.917306] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.923302] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.929297] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.935293] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.941288] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.947284] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.953279] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.959275] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.965270] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.971266] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.977261] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.983256] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   20.989252] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   20.995248] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.001243] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.007239] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.013235] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.019230] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.025225] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.031221] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.037216] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.043212] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.049207] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.055203] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.061198] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.067193] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.073188] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.079184] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.085179] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.091175] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.097170] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.103165] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.109160] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.115156] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.121151] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.127147] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.133142] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.139137] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.145132] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.151128] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.157123] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.163118] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.169115] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.175111] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.181107] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.187102] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.193098] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.199093] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.205088] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.211084] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.217079] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.223074] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.229069] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.235065] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.241060] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.247056] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.253051] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.259046] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.265041] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.271037] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.277032] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.283027] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.289022] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.295018] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.301013] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.307009] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.313004] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.318999] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.324994] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.330990] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.336985] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.342981] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.348976] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.354971] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.360966] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.366962] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.372957] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.378953] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.384948] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.390944] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.396939] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.402935] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.408930] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.414925] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.420920] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.426916] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.432911] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.438907] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.444902] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.450898] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.456893] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.462889] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.468884] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.474879] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.480874] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.486870] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.492865] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.498860] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.504855] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.510851] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.516846] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.522842] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.528837] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.534832] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.540827] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.546823] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.552818] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.558814] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.564809] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.570805] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.576800] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.582796] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.588791] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.594786] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.600782] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.606777] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.612772] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.618771] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.624766] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.630762] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.636757] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.642752] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.648747] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.654743] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.660738] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.666734] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.672728] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.678724] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.684722] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.690718] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.696713] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.702709] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.708704] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.714700] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.720695] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.726691] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.732686] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.738682] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.744677] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.750672] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.756667] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.762663] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.768658] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.774654] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.780649] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.786645] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.792646] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.798642] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.804637] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.810633] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.816628] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.822624] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.828619] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.834615] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.840609] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.846605] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.852600] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.858596] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.864591] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.870586] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.876581] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.882577] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.888572] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.894567] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.900563] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.906558] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.912553] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.918549] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.924544] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.930540] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.936535] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.942530] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.948525] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.954522] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.960516] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.966512] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.972507] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.978503] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.984498] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   21.990495] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   21.996490] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.002487] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.008483] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.014479] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.020474] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.026470] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.032465] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.038460] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.044455] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.050451] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.056446] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.062442] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.068437] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.074433] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.080428] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.086423] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.092418] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.098414] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.104409] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.110405] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.116401] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.122396] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.128391] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.134387] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.140382] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.146378] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.152373] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.158368] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.164364] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.170359] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.176354] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.182350] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.188345] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.194342] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.200338] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.206333] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.212329] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.218325] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.224320] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.230316] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.236310] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.242306] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.248301] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.254297] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.260292] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.266288] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.272283] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.278278] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.284273] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.290269] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.296264] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.302260] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.308255] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.314251] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.320246] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.326241] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.332236] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.338232] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.344227] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.350222] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.356217] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.362213] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.368208] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.374207] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.380202] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.386198] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.392193] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.398188] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.404184] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.410180] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.416175] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.422171] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.428166] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.434161] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.440156] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.446152] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.452147] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.458143] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.464138] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.470134] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.476129] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.482124] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.488119] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.494115] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.500110] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.506106] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.512101] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.518096] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.524092] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.530087] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.536082] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.542078] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.548073] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.554069] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.560064] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.566059] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.572054] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.578050] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.584045] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.590041] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.596035] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.602031] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.608027] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.614023] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.620018] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.626014] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.632009] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.638004] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.643999] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.649995] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.655990] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.661986] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.667980] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.673976] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.679971] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.685967] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.691962] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.697957] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.703953] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.709951] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.715946] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.721941] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.727936] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.733932] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.739927] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.745923] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.751918] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.757913] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.763909] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.769904] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.775899] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.781895] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.787889] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.793885] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.799880] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.805876] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.811877] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.817873] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.823868] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.829864] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.835859] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.841855] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.847850] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.853846] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.859841] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.865836] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.871831] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.877827] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.883822] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.889817] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.895812] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.901808] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.907803] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.913798] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.919794] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.925789] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.931784] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.937780] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.943775] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.949771] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.955766] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.961761] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.967756] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.973752] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.979747] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.985743] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   22.991739] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   22.997734] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.003729] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.009725] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.015720] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.021716] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.027711] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.033707] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.039702] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.045698] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.051692] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.057688] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.063683] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.069679] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.075674] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.081669] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.087664] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.093660] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.099655] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.105650] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.111645] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.117641] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.123636] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.129635] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.135630] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.141626] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.147621] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.153616] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.159612] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.165607] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.171602] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.177598] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.183593] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.189589] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.195584] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.201579] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.207574] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.213570] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.219568] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.225564] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.231560] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.237556] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.243550] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.249546] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.255541] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.261537] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.267532] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.273527] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.279522] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.285518] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.291513] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.297508] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.303503] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.309499] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.315494] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.321489] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.327484] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.333480] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.339475] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.345471] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.351466] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.357461] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.363456] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.369452] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.375448] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.381445] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.387440] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.393435] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.399430] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.405426] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.411421] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.417417] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.423411] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.429407] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.435402] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.441398] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.447393] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.453389] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.459384] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.465380] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.471375] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.477370] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.483365] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.489361] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.495356] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.501352] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.507347] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.513343] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.519338] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.525333] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.531328] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.537325] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.543320] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.549315] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.555310] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.561306] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.567301] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.573297] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.579292] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.585288] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.591283] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.597278] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.603273] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.609269] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.615264] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.621260] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.627255] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.633251] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.639246] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.645242] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.651237] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.657232] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.663227] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.669223] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.675218] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.681214] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.687209] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.693205] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.699199] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.705195] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.711191] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.717186] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.723181] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.729178] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.735174] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.741169] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.747164] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.753160] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.759155] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.765151] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.771146] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.777141] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.783137] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.789132] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.795127] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.801123] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.807118] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.813114] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.819108] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.825105] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.831100] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.837102] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.843097] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.849093] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.855089] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.861086] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   23.867081] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   23.873079] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.879074] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.885070] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.891065] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.897063] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.903058] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.909054] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.915049] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.921044] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.927039] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.933035] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.939030] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.945025] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.951021] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.957016] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.963011] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.969007] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.975002] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.980997] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.986993] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   23.992989] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   23.998984] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.004980] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.010975] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.016971] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.022966] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.028961] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.034956] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.040952] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.046947] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.052943] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.058938] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.064934] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.070929] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.076925] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.082920] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.088916] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.094911] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.100906] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.106901] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.112897] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.118892] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.124888] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.130883] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.136879] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.142874] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.148870] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.154865] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.160860] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.166856] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.172851] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.178846] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.184842] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.190837] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.196833] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.202828] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.208824] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.214819] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.220815] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.226809] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.232805] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.238800] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.244798] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.250794] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.256790] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.262785] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.268780] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.274775] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.280771] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.286767] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.292762] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.298757] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.304753] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.310748] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.316743] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.322738] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.328734] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.334729] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.340724] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.346719] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.352715] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.358710] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.364706] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.370700] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.376696] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.382691] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.388687] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.394682] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.400677] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.406672] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.412668] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.418663] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.424659] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.430654] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.436650] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.442645] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.448640] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.454635] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.460632] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.466627] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.472622] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.478617] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.484613] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.490608] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.496604] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.502599] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.508595] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.514590] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.520585] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.526580] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.532576] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.538571] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.544567] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.550562] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.556557] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.562553] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.568548] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.574543] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.580539] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.586534] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.592529] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.598524] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.604520] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.610515] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.616510] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.622505] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.628501] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.634497] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.640492] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.646488] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.652486] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.658481] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.664477] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.670473] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.676469] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.682464] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.688459] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.694455] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.700451] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.706446] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.712442] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.718436] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.724432] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.730427] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.736423] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.742418] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.748414] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.754410] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.760407] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.766402] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.772398] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.778393] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.784388] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.790383] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.796379] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.802374] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.808370] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.814365] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.820361] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.826356] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.832352] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.838347] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.844342] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.850338] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.856340] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.862335] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.868331] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.874326] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.880322] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.886316] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.892312] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.898307] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.904303] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.910298] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.916294] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.922289] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.928284] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.934279] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.940276] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.946270] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.952266] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.958261] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.964257] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.970252] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.976247] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.982242] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   24.988238] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   24.994233] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.000228] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.006223] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.012220] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.018215] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.024210] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.030205] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.036201] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.042196] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.048192] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.054187] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.060182] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.066177] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.072174] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.078169] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.084165] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.090160] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.096156] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.102151] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.108147] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.114142] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.120137] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.126132] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.132128] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.138123] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.144119] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.150114] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.156110] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.162105] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.168102] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.174096] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.180092] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.186087] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.192083] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.198077] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.204073] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.210068] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.216064] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.222059] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.228054] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.234049] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.240045] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.246040] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.252035] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.258030] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.264027] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.270023] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.276020] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.282015] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.288010] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.294005] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.300001] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.305996] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.311991] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.317987] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.323982] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.329977] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.335973] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.341968] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.347964] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.353959] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.359955] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.365949] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.371945] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.377940] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.383935] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.389930] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.395927] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.401922] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.407921] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.413916] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.419912] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.425907] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.431903] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.437898] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.443893] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.449888] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.455884] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.461879] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.467875] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.473870] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.479866] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.485861] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.491857] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.497852] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.503847] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.509842] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.515838] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.521833] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.527829] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.533823] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.539819] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.545814] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.551810] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.557804] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.563800] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.569796] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.575791] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.581786] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.587782] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.593777] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.599773] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.605768] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.611764] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.617758] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.623754] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.629749] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.635745] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.641740] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.647736] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.653731] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.659726] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.665721] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.671717] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.677712] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.683709] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.689704] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.695700] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.701695] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.707690] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.713685] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.719681] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.725676] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.731671] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.737666] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.743662] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.749657] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.755653] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.761648] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.767644] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.773639] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.779637] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.785632] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.791629] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.797624] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.803619] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.809615] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.815610] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.821605] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.827601] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.833597] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.839592] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.845587] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.851583] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.857578] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.863574] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.869569] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.875571] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.881567] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.887563] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.893558] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.899554] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.905549] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.911545] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.917540] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.923535] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.929530] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.935526] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.941521] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.947517] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.953512] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.959508] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.965503] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.971498] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.977493] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.983489] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   25.989484] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   25.995480] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.001475] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.007471] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.013466] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.019462] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.025457] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.031452] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.037447] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.043443] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.049438] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.055434] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.061429] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.067425] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.073419] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.079415] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.085411] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.091407] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.097402] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.103397] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.109392] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.115388] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.121383] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.127379] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.133374] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.139370] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.145364] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.151360] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.157355] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.163357] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.169352] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.175348] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.181343] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.187338] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.193333] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.199329] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.205324] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.211319] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.217315] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.223311] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.229306] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.235301] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.241297] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.247293] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.253288] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.259284] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.265278] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.271274] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.277269] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.283265] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.289261] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.295258] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.301253] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.307249] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.313244] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.319240] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.325235] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.331230] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.337225] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.343221] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.349216] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.355211] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.361206] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.367202] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.373197] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.379192] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.385187] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.391183] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.397178] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.403174] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.409169] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.415164] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.421159] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.427155] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.433150] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.439146] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.445141] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.451136] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.457131] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.463127] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.469122] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.475118] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.481113] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.487108] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.493103] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.499099] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.505094] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.511090] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.517085] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.523080] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.529076] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.535071] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.541066] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.547062] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.553057] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.559052] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.565047] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.571043] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.577038] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.583033] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.589028] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.595024] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.601020] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.607015] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.613011] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.619006] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.625001] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.630997] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.636992] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.642988] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.648983] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.654979] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.660973] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.666969] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.672964] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.678960] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.684955] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.690951] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.696946] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.702941] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.708939] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.714935] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.720930] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.726925] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.732920] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.738916] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.744911] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.750906] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.756901] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.762897] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.768892] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.774888] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.780883] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.786878] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.792873] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.798869] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.804867] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.810864] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.816859] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.822854] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.828849] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.834845] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.840841] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.846836] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.852831] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.858828] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.864822] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.870818] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.876814] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.882809] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.888804] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.894800] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.900801] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.906797] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.912792] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.918790] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.924785] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.930781] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   26.936776] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   26.943724] i40e 0000:01:00.2: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   27.231837] DEBUG dma_alloc_attrs 432 size=61440 flags=cc0 attr=0
[   27.237920] DEBUG dma_alloc_attrs 436 size=61440 flags=cc0 attr=0
[   27.251798] i40e 0000:01:00.2: MAC address: 3c:fd:fe:6b:e9:c2
[   27.257684] i40e 0000:01:00.2: FW LLDP is enabled
[   27.268828] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.274827] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.280824] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.286819] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.292981] i40e 0000:01:00.2: PCI-Express: Speed 8.0GT/s Width x8
[   27.300239] i40e 0000:01:00.2: Features: PF-id[2] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   27.310409] i40e 0000:01:00.3: enabling device (0000 -> 0002)
[   27.327396] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   27.333394] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   27.339395] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.345391] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.351386] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.357383] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.363380] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.369375] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.375370] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.381365] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.387361] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.393356] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.399352] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.405347] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.411343] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.417338] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.423334] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.429328] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.435324] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.441319] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.447315] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.453310] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.459306] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.465301] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.471297] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.477292] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.483288] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.489283] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.495278] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.501273] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.507269] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.513264] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.519259] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.525255] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.531251] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.537246] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.543241] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.549237] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.555233] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.561228] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.567223] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.573218] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.579214] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.585209] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.591204] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.597200] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.603195] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.609190] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.615185] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.621180] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.627176] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.633171] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.639167] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.645162] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.651157] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.657152] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.663148] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.669143] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.675139] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.681134] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.687130] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.693125] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.699121] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.705116] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.711112] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.717107] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.723103] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.729098] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.735094] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.741090] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.747085] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.753080] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.759076] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.765071] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.771066] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.777061] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.783057] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.789052] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.795048] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.801043] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.807039] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.813035] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.819030] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.825027] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.831024] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.837019] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.843015] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.849010] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.855006] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.861001] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.866996] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.872991] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.878987] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.884982] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.890978] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.896973] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.902969] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.908964] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.914960] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.920955] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.926950] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.932946] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.938941] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.944936] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.950932] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.956927] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.962923] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.968918] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.974914] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.980909] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.986906] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   27.992901] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   27.998896] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.004891] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.010890] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.016885] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.022881] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.028876] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.034872] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.040867] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.046863] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.052858] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.058854] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.064849] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.070844] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.076839] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.082835] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.088830] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.094825] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.100820] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.106816] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.112811] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.118806] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.124802] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.130797] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.136793] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.142788] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.148783] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.154779] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.160774] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.166770] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.172765] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.178761] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.184755] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.190751] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.196747] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.202742] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.208737] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.214733] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.220728] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.226723] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.232718] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.238714] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.244709] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.250704] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.256699] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.262695] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.268690] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.274686] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.280681] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.286676] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.292671] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.298667] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.304662] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.310658] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.316653] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.322649] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.328644] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.334640] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.340643] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.346639] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.352634] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.358630] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.364626] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.370621] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.376616] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.382612] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.388607] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.394603] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.400598] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.406593] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.412588] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.418584] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.424579] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.430575] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.436570] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.442566] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.448561] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.454557] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.460552] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.466547] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.472542] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.478538] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.484533] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.490529] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.496524] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.502520] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.508515] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.514511] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.520506] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.526502] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.532497] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.538493] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.544488] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.550484] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.556479] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.562476] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.568471] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.574467] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.580462] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.586458] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.592453] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.598449] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.604444] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.610440] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.616436] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.622431] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.628426] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.634422] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.640417] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.646413] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.652408] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.658404] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.664400] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.670396] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.676391] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.682386] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.688381] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.694377] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.700372] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.706368] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.712363] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.718358] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.724353] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.730349] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.736345] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.742341] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.748337] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.754332] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.760328] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.766326] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.772322] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.778317] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.784312] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.790308] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.796303] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.802299] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.808294] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.814290] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.820285] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.826280] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.832276] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.838272] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.844267] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.850264] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.856261] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.862256] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.868252] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.874248] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.880243] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.886239] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.892234] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.898229] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.904224] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.910220] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.916215] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.922211] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.928207] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.934203] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.940198] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.946193] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.952189] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.958185] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.964181] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.970176] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.976171] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.982167] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   28.988162] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   28.994158] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.000153] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.006149] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.012146] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.018142] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.024138] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.030134] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.036129] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.042125] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.048120] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.054116] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.060110] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.066106] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.072101] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.078097] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.084092] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.090088] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.096083] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.102079] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.108074] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.114070] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.120065] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.126060] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.132056] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.138051] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.144046] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.150042] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.156037] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.162033] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.168028] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.174023] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.180019] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.186014] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.192009] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.198005] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.204000] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.209996] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.215991] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.221987] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.227982] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.233977] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.239973] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.245968] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.251963] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.257959] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.263954] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.269949] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.275945] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.281941] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.287936] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.293932] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.299927] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.305922] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.311917] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.317913] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.323908] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.329904] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.335899] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.341895] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.347890] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.353886] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.359887] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.365885] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.371880] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.377876] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.383871] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.389866] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.395861] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.401857] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.407852] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.413848] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.419843] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.425839] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.431834] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.437830] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.443825] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.449820] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.455815] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.461811] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.467806] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.473801] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.479796] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.485792] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.491787] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.497782] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.503778] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.509773] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.515768] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.521767] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.527762] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.533758] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.539753] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.545748] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.551743] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.557739] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.563734] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.569730] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.575725] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.581720] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.587715] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.593711] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.599706] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.605702] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.611697] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.617693] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.623688] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.629684] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.635679] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.641675] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.647669] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.653665] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.659660] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.665656] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.671651] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.677646] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.683641] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.689637] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.695632] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.701627] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.707622] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.713618] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.719613] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.725608] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.731603] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.737599] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.743594] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.749590] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.755585] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.761580] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.767576] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.773571] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.779566] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.785562] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.791557] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.797552] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.803547] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.809544] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.815538] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.821534] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.827529] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.833525] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.839520] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.845515] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.851510] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.857506] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.863501] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.869497] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.875494] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.881491] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.887486] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.893481] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.899476] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.905472] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.911467] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.917463] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.923458] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.929454] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.935449] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.941445] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.947440] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.953435] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.959430] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.965426] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.971421] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.977417] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.983412] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   29.989408] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   29.995403] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.001400] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.007395] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.013391] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.019385] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.025381] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.031376] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.037372] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.043367] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.049363] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.055358] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.061354] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.067349] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.073344] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.079339] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.085335] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.091330] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.097326] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.103321] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.109317] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.115312] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.121307] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.127303] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.133298] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.139293] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.145289] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.151284] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.157280] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.163274] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.169271] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.175266] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.181262] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.187257] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.193252] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.199247] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.205243] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.211238] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.217234] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.223229] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.229225] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.235220] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.241215] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.247210] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.253206] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.259201] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.265197] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.271192] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.277190] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.283185] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.289181] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.295177] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.301172] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.307167] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.313163] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.319158] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.325153] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.331148] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.337144] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.343139] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.349135] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.355130] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.361125] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.367120] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.373116] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.379111] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.385113] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.391109] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.397105] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.403100] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.409097] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   30.415092] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   30.421090] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.427086] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.433082] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.439077] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.445073] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.451068] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.457064] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.463059] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.469055] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.475050] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.481046] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.487041] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.493036] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.499031] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.505027] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.511022] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.517018] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.523013] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.529009] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.535004] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.541000] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.546995] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.552991] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.558986] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.564982] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.570977] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.576972] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.582967] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.588963] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.594958] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.600954] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.606949] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.612945] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.618940] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.624935] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.630930] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.636926] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.642921] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.648917] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.654912] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.660908] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.666903] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.672898] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.678893] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.684889] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.690884] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.696879] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.702874] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.708870] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.714865] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.720861] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.726856] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.732852] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.738847] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.744842] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.750837] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.756833] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.762828] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.768824] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.774819] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.780815] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.786810] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.792806] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.798801] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.804796] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.810791] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.816787] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.822782] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.828778] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.834773] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.840768] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.846763] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.852760] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.858755] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.864750] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.870745] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.876741] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.882736] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.888731] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.894726] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.900725] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.906721] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.912716] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.918711] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.924707] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.930702] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.936697] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.942692] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.948688] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.954683] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.960679] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.966674] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.972669] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.978664] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.984660] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   30.990655] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   30.996652] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.002647] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.008643] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.014637] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.020633] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.026628] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.032624] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.038619] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.044616] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.050612] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.056608] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.062602] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.068598] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.074593] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.080589] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.086584] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.092580] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.098575] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.104570] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.110565] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.116561] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.122556] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.128552] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.134547] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.140542] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.146537] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.152533] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.158528] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.164524] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.170519] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.176514] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.182509] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.188505] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.194501] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.200497] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.206492] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.212487] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.218482] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.224478] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.230473] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.236469] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.242464] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.248460] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.254454] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.260450] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.266445] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.272441] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.278436] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.284431] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.290426] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.296422] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.302417] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.308413] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.314408] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.320404] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.326398] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.332394] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.338389] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.344385] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.350380] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.356375] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.362370] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.368366] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.374361] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.380356] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.386351] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.392347] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.398342] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.404344] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.410340] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.416338] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.422333] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.428329] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.434324] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.440320] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.446315] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.452311] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.458306] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.464301] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.470296] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.476292] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.482287] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.488283] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.494278] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.500274] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.506269] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.512265] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.518260] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.524255] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.530250] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.536246] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.542241] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.548237] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.554232] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.560228] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.566223] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.572218] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.578213] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.584209] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.590204] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.596199] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.602194] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.608191] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.614186] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.620182] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.626177] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.632173] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.638168] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.644163] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.650158] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.656154] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.662149] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.668144] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.674139] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.680135] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.686130] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.692126] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.698120] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.704116] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.710111] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.716107] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.722102] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.728098] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.734093] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.740089] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.746083] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.752079] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.758074] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.764070] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.770066] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.776062] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.782057] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.788052] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.794047] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.800045] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.806040] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.812036] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.818031] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.824027] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.830022] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.836017] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.842012] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.848008] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.854003] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.859998] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.865993] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.871990] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.877985] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.883980] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.889975] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.895971] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.901966] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.907962] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.913957] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.919954] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.925950] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.931946] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.937941] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.943937] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.949932] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.955927] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.961922] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.967918] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.973913] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.979909] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.985904] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   31.991900] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   31.997895] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.003891] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.009886] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.015883] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.021878] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.027873] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.033869] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.039864] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.045859] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.051855] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.057850] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.063846] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.069841] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.075837] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.081831] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.087827] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.093822] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.099818] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.105813] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.111809] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.117804] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.123800] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.129795] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.135790] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.141785] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.147781] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.153776] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.159772] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.165767] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.171763] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.177758] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.183753] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.189748] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.195744] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.201739] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.207735] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.213730] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.219726] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.225721] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.231717] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.237712] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.243707] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.249702] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.255698] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.261693] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.267689] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.273684] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.279680] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.285675] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.291671] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.297666] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.303662] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.309657] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.315652] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.321647] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.327643] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.333638] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.339634] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.345629] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.351625] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.357620] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.363616] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.369611] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.375606] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.381601] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.387597] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.393592] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.399587] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.405582] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.411578] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.417573] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.423575] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.429571] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.435569] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.441565] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.447561] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.453556] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.459552] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.465547] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.471542] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.477537] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.483533] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.489528] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.495524] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.501519] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.507515] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.513510] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.519506] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.525501] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.531496] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.537492] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.543487] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.549482] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.555481] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.561476] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.567471] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.573467] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.579462] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.585457] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.591453] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.597448] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.603444] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.609438] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.615434] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.621429] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.627425] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.633420] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.639416] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.645411] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.651407] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.657402] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.663398] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.669392] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.675389] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.681384] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.687379] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.693374] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.699370] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.705365] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.711360] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.717355] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.723351] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.729346] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.735341] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.741336] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.747332] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.753327] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.759323] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.765318] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.771313] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.777308] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.783304] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.789299] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.795295] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.801290] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.807286] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.813281] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.819277] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.825272] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.831268] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.837263] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.843260] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.849254] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.855250] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.861245] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.867241] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.873236] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.879231] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.885226] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.891222] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.897217] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.903213] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.909208] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.915204] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.921199] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.927194] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.933189] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.939185] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.945182] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.951179] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.957175] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.963170] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.969165] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.975161] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.981156] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.987151] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   32.993146] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   32.999142] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.005137] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.011134] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.017129] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.023125] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.029120] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.035116] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.041112] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.047108] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.053103] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.059099] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.065094] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.071089] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.077085] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.083080] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.089075] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.095071] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.101066] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.107061] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.113056] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.119052] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.125047] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.131043] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.137038] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.143034] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.149029] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.155025] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.161020] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.167016] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.173011] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.179006] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.185001] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.190997] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.196992] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.202988] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.208983] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.214979] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.220974] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.226969] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.232964] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.238960] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.244956] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.250952] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.256947] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.262943] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.268938] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.274934] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.280929] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.286925] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.292920] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.298915] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.304910] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.310910] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.316905] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.322900] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.328895] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.334891] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.340886] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.346882] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.352877] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.358873] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.364868] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.370863] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.376859] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.382855] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.388850] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.394846] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.400841] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.406837] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.412832] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.418828] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.424823] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.430818] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.436813] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.442809] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.448810] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.454806] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.460804] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.466801] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.472796] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.478792] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.484787] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.491736] i40e 0000:01:00.3: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   33.779705] DEBUG dma_alloc_attrs 432 size=61440 flags=cc0 attr=0
[   33.785787] DEBUG dma_alloc_attrs 436 size=61440 flags=cc0 attr=0
[   33.793356] i40e 0000:01:00.3: MAC address: 3c:fd:fe:6b:e9:c3
[   33.799242] i40e 0000:01:00.3: FW LLDP is enabled
[   33.810444] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.816443] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.822439] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.828434] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.834598] i40e 0000:01:00.3: PCI-Express: Speed 8.0GT/s Width x8
[   33.841907] i40e 0000:01:00.3: Features: PF-id[3] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   33.852026] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   33.858551] ehci-pci: EHCI PCI platform driver
[   33.863118] xhci_hcd 000d:01:00.2: enabling device (0000 -> 0002)
[   33.869238] xhci_hcd 000d:01:00.2: xHCI Host Controller
[   33.874459] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 1
[   33.882395] DEBUG dma_alloc_attrs 432 size=2056 flags=cc0 attr=0
[   33.888391] DEBUG dma_alloc_attrs 436 size=2056 flags=cc0 attr=0
[   33.894390] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.900386] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.906385] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.912380] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.918377] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.924373] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.930372] DEBUG dma_alloc_attrs 432 size=16 flags=cc0 attr=0
[   33.936194] DEBUG dma_alloc_attrs 436 size=16 flags=cc0 attr=0
[   33.942033] DEBUG dma_alloc_attrs 432 size=24 flags=cc0 attr=0
[   33.947854] DEBUG dma_alloc_attrs 436 size=24 flags=cc0 attr=0
[   33.953676] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.959671] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.965667] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.971665] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.977661] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   33.983656] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   33.989674] xhci_hcd 000d:01:00.2: hcc params 0x0180ff05 hci version 0x110 quirks 0x0000000000000010
[   33.999128] hub 1-0:1.0: USB hub found
[   34.002882] hub 1-0:1.0: 2 ports detected
[   34.007004] xhci_hcd 000d:01:00.2: xHCI Host Controller
[   34.012223] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 2
[   34.019609] xhci_hcd 000d:01:00.2: Host supports USB 3.1 Enhanced SuperSpeed
[   34.026669] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[   34.034874] hub 2-0:1.0: USB hub found
[   34.038625] hub 2-0:1.0: 4 ports detected
[   34.042902] xhci_hcd 0004:03:00.0: xHCI Host Controller
[   34.048122] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 3
[   34.060812] DEBUG dma_alloc_attrs 432 size=2056 flags=cc0 attr=0
[   34.066808] DEBUG dma_alloc_attrs 436 size=2056 flags=cc0 attr=0
[   34.072805] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.078801] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.084803] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.090799] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.096797] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.102793] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.108790] DEBUG dma_alloc_attrs 432 size=16 flags=cc0 attr=0
[   34.114612] DEBUG dma_alloc_attrs 436 size=16 flags=cc0 attr=0
[   34.120449] DEBUG dma_alloc_attrs 432 size=32 flags=cc0 attr=0
[   34.126271] DEBUG dma_alloc_attrs 436 size=32 flags=cc0 attr=0
[   34.132093] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.138088] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.144085] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.150081] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.156077] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.162072] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.168067] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.174063] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.180093] xhci_hcd 0004:03:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[   34.191118] hub 3-0:1.0: USB hub found
[   34.194875] hub 3-0:1.0: 4 ports detected
[   34.199053] xhci_hcd 0004:03:00.0: xHCI Host Controller
[   34.204272] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 4
[   34.211666] xhci_hcd 0004:03:00.0: Host supports USB 3.0 SuperSpeed
[   34.217960] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[   34.226162] hub 4-0:1.0: USB hub found
[   34.229914] hub 4-0:1.0: 4 ports detected
[   34.234183] xhci_hcd 0005:02:00.0: xHCI Host Controller
[   34.239404] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 5
[   34.357703] DEBUG dma_alloc_attrs 432 size=2056 flags=cc0 attr=0
[   34.363698] DEBUG dma_alloc_attrs 436 size=2056 flags=cc0 attr=0
[   34.369696] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.375691] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.381692] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.387687] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.393685] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.399681] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.405677] DEBUG dma_alloc_attrs 432 size=16 flags=cc0 attr=0
[   34.411498] DEBUG dma_alloc_attrs 436 size=16 flags=cc0 attr=0
[   34.417335] DEBUG dma_alloc_attrs 432 size=32 flags=cc0 attr=0
[   34.423157] DEBUG dma_alloc_attrs 436 size=32 flags=cc0 attr=0
[   34.428979] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.434975] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.440971] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.446966] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.452961] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.458956] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.464952] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   34.470948] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   34.476977] xhci_hcd 0005:02:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[   34.486897] hub 5-0:1.0: USB hub found
[   34.490652] hub 5-0:1.0: 4 ports detected
[   34.494828] xhci_hcd 0005:02:00.0: xHCI Host Controller
[   34.500046] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 6
[   34.507433] xhci_hcd 0005:02:00.0: Host supports USB 3.0 SuperSpeed
[   34.513723] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[   34.521922] hub 6-0:1.0: USB hub found
[   34.525674] hub 6-0:1.0: 4 ports detected
[   34.530037] usbcore: registered new interface driver usb-storage
[   34.536895] rtc-efi rtc-efi.0: registered as rtc0
[   34.542027] rtc-efi rtc-efi.0: setting system clock to 2022-04-20T10:46:02 UTC (1650451562)
[   34.550529] sbsa-gwdt sbsa-gwdt.0: Initialized with 10s timeout @ 25000000 Hz, action=0.
[   34.558782] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[   34.568259] pstore: Registered efi as persistent store backend
[   34.574106] SMCCC: SOC_ID: ID = jep106:0a16:0001 Revision = 0x000000a1
[   34.580728] usbcore: registered new interface driver usbhid
[   34.586290] usbhid: USB HID core driver
[   34.587944] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.590143] u32 classifier
[   34.596109] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.596112] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.598805]     input device check on
[   34.598807]     Actions configured
[   34.604809] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.611176] NET: Registered protocol family 10
[   34.614450] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.614452] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.618257] Segment Routing with IPv6
[   34.623840] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.623842] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.655937] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[   34.661982] NET: Registered protocol family 17
[   34.666434] Bridge firewalling registered
[   34.670453] Key type dns_resolver registered
[   34.674774] NET: Registered protocol family 40
[   34.679332] Key type ._fscrypt registered
[   34.683333] Key type .fscrypt registered
[   34.687246] Key type fscrypt-provisioning registered
[   34.692413] Btrfs loaded, crc32c=crc32c-generic
[   34.697020] pstore: Using crash dump compression: deflate
[   34.703094] Key type encrypted registered
[   34.707354] BERT: Error records from previous boot:
[   34.712227] [Hardware Error]: event severity: recoverable
[   34.717616] [Hardware Error]:  Error 0, type: fatal
[   34.722486] [Hardware Error]:   section type: unknown, e8ed898d-df16-43cc-8ecc-54f060ef157f
[   34.730825] [Hardware Error]:   section length: 0x31
[   34.735782] [Hardware Error]:   00000000: 0000007f 6e6b6e55 206e776f 6f626572  ....Unknown rebo
[   34.735810] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.744470] [Hardware Error]:   00000010: 7220746f 6f736165 0000006e 00000000  ot reason.......
[   34.744473] [Hardware Error]:   00000020: 00000000 00000000 00000000 00000000  ................
[   34.744474] [Hardware Error]:   00000030: 11                                               .
[   34.776277] usb 3-4: new high-speed USB device number 2 using xhci_hcd
[   34.776283] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.776286] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.776290] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.782811] printk: console [netcon0] enabled
[   34.782813] netconsole: network logging started
[   34.788819] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.815678] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.815681] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.827674] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.833688] md: Waiting for all devices to be available before autodetect
[   34.840470] md: If you don't use raid, use raid=noautodetect
[   34.846118] md: Autodetecting RAID arrays.
[   34.850204] md: autorun ...
[   34.852987] md: ... autorun DONE.
[   34.856329] Waiting for root device /dev/sda2...
[   34.960190] usb 6-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[   34.981261] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.987260] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   34.993267] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   34.999270] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.007941] DEBUG dma_alloc_attrs 432 size=4096 flags=800 attr=0
[   35.013950] DEBUG dma_alloc_attrs 436 size=4096 flags=800 attr=0
[   35.032324] hub 3-4:1.0: USB hub found
[   35.036078] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.042075] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.048077] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.054076] hub 3-4:1.0: 5 ports detected
[   35.058080] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.064083] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.070134] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.076139] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.082141] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.090088] DEBUG dma_alloc_attrs 432 size=4096 flags=800 attr=0
[   35.096094] DEBUG dma_alloc_attrs 436 size=4096 flags=800 attr=0
[   35.116156] usb-storage 6-1:1.0: USB Mass Storage device detected
[   35.122387] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   35.128385] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   35.134447] scsi host0: usb-storage 6-1:1.0
[   35.312362] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.318361] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.324359] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.330355] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.336351] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.342346] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.439436] usb 3-4.1: new high-speed USB device number 3 using xhci_hcd
[   35.573353] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.579350] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.585348] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.591344] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.597341] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.603337] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.609335] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.615330] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.623329] DEBUG dma_alloc_attrs 432 size=4096 flags=800 attr=0
[   35.629327] DEBUG dma_alloc_attrs 436 size=4096 flags=800 attr=0
[   35.643552] usb-storage 3-4.1:1.0: USB Mass Storage device detected
[   35.649955] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   35.655952] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   35.662010] scsi host1: usb-storage 3-4.1:1.0
[   35.669782] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.675779] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.681778] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.687773] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.693772] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.699769] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.791437] usb 3-4.2: new high-speed USB device number 4 using xhci_hcd
[   35.924938] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.930936] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.936934] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.942930] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.948927] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.954924] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.960921] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   35.966917] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   35.974635] DEBUG dma_alloc_attrs 432 size=4096 flags=800 attr=0
[   35.980634] DEBUG dma_alloc_attrs 436 size=4096 flags=800 attr=0
[   35.996876] usb-storage 3-4.2:1.0: USB Mass Storage device detected
[   36.003339] scsi host2: usb-storage 3-4.2:1.0
[   36.012891] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   36.018891] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   36.024890] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   36.030885] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   36.036882] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   36.042878] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   36.139435] usb 3-4.3: new low-speed USB device number 5 using xhci_hcd
[   36.150742] scsi 0:0:0:0: Direct-Access      USB      SanDisk 3.2Gen1 1.00 PQ: 0 ANSI: 6
[   36.159352] sd 0:0:0:0: [sda] 120176640 512-byte logical blocks: (61.5 GB/57.3 GiB)
[   36.169722] sd 0:0:0:0: [sda] Write Protect is off
[   36.180074] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   36.232885] GPT:Primary header thinks Alt. header is not at the end of the disk.
[   36.240275] GPT:17181951 != 120176639
[   36.243928] GPT:Alternate GPT header not at the end of the disk.
[   36.249923] GPT:17181951 != 120176639
[   36.253575] GPT: Use GNU Parted to correct GPT errors.
[   36.258708]  sda: sda1 sda2
[   36.267490] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   36.284318] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   36.290317] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   36.296316] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   36.302311] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   36.308310] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   36.308988] random: fast init done
[   36.314307] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   36.323693] DEBUG dma_alloc_attrs 432 size=4096 flags=c00 attr=0
[   36.329689] DEBUG dma_alloc_attrs 436 size=4096 flags=c00 attr=0
[   36.337747] DEBUG dma_alloc_attrs 432 size=4096 flags=800 attr=0
[   36.343747] DEBUG dma_alloc_attrs 436 size=4096 flags=800 attr=0
[   36.373817] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.0/0003:046B:FF10.0001/input/input1
[   36.389676] hid-generic 0003:046B:FF10.0001: input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input0
[   36.417630] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.1/0003:046B:FF10.0002/input/input2
[   36.433477] hid-generic 0003:046B:FF10.0002: input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input1
[   36.691979] scsi 1:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[   36.700715] scsi 1:0:0:1: CD-ROM            AMI      Virtual CDROM1   1.00 PQ: 0 ANSI: 0 CCS
[   36.709431] scsi 1:0:0:2: CD-ROM            AMI      Virtual CDROM2   1.00 PQ: 0 ANSI: 0 CCS
[   36.718155] scsi 1:0:0:3: CD-ROM            AMI      Virtual CDROM3   1.00 PQ: 0 ANSI: 0 CCS
[   36.948071] EXT4-fs (sda2): recovery complete
[   36.955059] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[   36.962730] VFS: Mounted root (ext4 filesystem) on device 8:2.
[   36.971264] devtmpfs: mounted
[   36.975867] Freeing unused kernel memory: 4160K
[   36.980442] Run /sbin/init as init process
[   37.041632] scsi 2:0:0:0: Direct-Access     AMI      Virtual HDisk0   1.00 PQ: 0 ANSI: 0 CCS
[   37.050529] scsi 2:0:0:1: Direct-Access     AMI      Virtual HDisk1   1.00 PQ: 0 ANSI: 0 CCS
[   37.059480] scsi 2:0:0:2: Direct-Access     AMI      Virtual HDisk2   1.00 PQ: 0 ANSI: 0 CCS
[   37.068318] scsi 2:0:0:3: Direct-Access     AMI      Virtual HDisk3   1.00 PQ: 0 ANSI: 0 CCS
[   37.076194] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[   37.082429] scsi 2:0:0:4: Direct-Access     AMI      Virtual HDisk4   1.00 PQ: 0 ANSI: 0 CCS
[   37.097107] sd 2:0:0:1: [sdc] Attached SCSI removable disk
[   37.105619] sd 2:0:0:2: [sdd] Attached SCSI removable disk
[   37.111365] sd 2:0:0:3: [sde] Attached SCSI removable disk
[   37.112317] sd 2:0:0:4: [sdf] Attached SCSI removable disk
[   37.146111] systemd[1]: systemd 249.7+ running in system mode (-PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
[   37.176545] systemd[1]: Detected architecture arm64.

Welcome to EWAOL (Edge Workload Abstraction and Orchestration Layer) unstable (honister)!

[   37.237682] systemd[1]: Hostname set to <comhpc>.
[   37.288721] systemd-sysv-generator[331]: SysV service '/etc/init.d/conntrackd' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   37.312733] systemd-sysv-generator[331]: SysV service '/etc/init.d/conntrack-failover' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   37.404261] systemd[1]: /lib/systemd/system/xen-qemu-dom0-disk-backend.service:11: PIDFile= references a path below legacy directory /var/run/, updating /var/run/xen/qemu-dom0.pid → /run/xen/qemu-dom0.pid; please update the unit file accordingly.
[   37.491904] systemd[1]: Queued start job for default target Multi-User System.
[   37.499506] random: systemd: uninitialized urandom read (16 bytes read)
[   37.531519] systemd[1]: Created slice Slice /system/getty.
[  OK  ] Created slice Slice /system/getty.
[   37.543711] random: systemd: uninitialized urandom read (16 bytes read)
[   37.551033] systemd[1]: Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/modprobe.
[   37.571558] random: systemd: uninitialized urandom read (16 bytes read)
[   37.578765] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Created slice Slice /system/serial-getty.
[   37.600356] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[   37.623798] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[   37.640659] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[   37.663633] systemd[1]: Reached target Path Units.
[  OK  ] Reached target Path Units.
[   37.683541] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[   37.697918] systemd[1]: Reached target Slice Units.
[  OK  ] Reached target Slice Units.
[   37.715544] systemd[1]: Reached target Swaps.
[  OK  ] Reached target Swaps.
[   37.742849] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[   37.763654] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[   37.776513] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on Syslog Socket.
[   37.795724] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[   37.820809] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[   37.828966] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[   37.851827] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[   37.871891] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[   37.893095] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[   37.911739] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[   37.924195] systemd[1]: Listening on User Database Manager Socket.
[  OK  ] Listening on User Database Manager Socket.
[   37.945084] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[   37.968967] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[   37.991689] systemd[1]: Condition check resulted in Mount /proc/xen files being skipped.
[   38.000869] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[   38.021009] systemd[1]: Mounting Kernel Trace File System...
         Mounting Kernel Trace File System...
[   38.052326] systemd[1]: Mounting Temporary Directory /tmp...
         Mounting Temporary Directory /tmp...
[   38.071797] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped.
[   38.082076] systemd[1]: Starting Load Kernel Module configfs...
         Starting Load Kernel Module configfs...
[   38.104974] systemd[1]: Starting Load Kernel Module drm...
         Starting Load Kernel Module drm...
[   38.124901] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[   38.145079] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[   38.159426] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[   38.170358] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[   38.194365] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[   38.212701] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remoun[   38.220505] EXT4-fs (sda2): re-mounted. Opts: (null)
t Root and Kernel File Systems...
[   38.240740] systemd[1]: Starting Coldplug All udev Devices...
         Starting Coldplug All udev Devices...
[   38.261335] systemd[1]: Started RPC Bind.
[  OK  ] Started RPC Bind.
[   38.279732] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Trace File System.
[  OK  ] Mounted Temporary Directory /tmp.
[  OK  ] Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module fuse.
[FAILED] Failed to start Load Kernel Modules.
See 'systemctl status systemd-modules-load.service' for details.
[  OK  ] Finished Remount Root and Kernel File Systems.
         Mounting Kernel Configuration File System...
         Starting Flush Journal to Persistent Storage...
[   38.479271] systemd-journald[354]: Received client request to flush runtime journal.
         Starting Apply Kernel Variables...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Coldplug All udev Devices.
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Reached target Preparation for Local File Systems.
         Mounting /var/volatile...
         Starting Wait for udev To …plete Device Initialization...
         Starting Rule-based Manage…for Device Events and Files...
[  OK  ] Mounted /var/volatile.
         Starting Load/Save Random Seed...
[  OK  ] Started Rule-based Manager for Device Events and Files.
[  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
[  OK  ] Found device SanDisk_3.2Gen1 msdos.
         Mounting /boot...
[  OK  ] Mounted /boot.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Create Volatile Files and Directories.
         Starting Network Time Synchronization...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Wait for udev To Complete Device Initialization.
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target System Time Set.
[  OK  ] Reached target Timer Units.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
         Starting Docker Socket for the API...
         Starting sshd.socket...
[  OK  ] Listening on Docker Socket for the API.
[  OK  ] Listening on sshd.socket.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
         Starting ACPI Event Daemon...
[  OK  ] Started Kernel Logging Service.
[  OK  ] Started System Logging Service.
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Getty on tty1.
         Starting IPv6 Packet Filtering Framework...
         Starting IPv4 Packet Filtering Framework...
         Starting Telephony service...
[  OK  ] Started Serial Getty on ttyAMA0.
[  OK  ] Reached target Login Prompts.
         Starting User Login Management...
         Starting OpenSSH Key Generation...
[  OK  ] Started ACPI Event Daemon.
[  OK  ] Finished IPv6 Packet Filtering Framework.
[  OK  ] Finished IPv4 Packet Filtering Framework.
[  OK  ] Finished OpenSSH Key Generation.
[  OK  ] Reached target Preparation for Network.
         Starting Network Configuration...
[  OK  ] Started User Login Management.
[  OK  ] Started Telephony service.
[  OK  ] Started Network Configuration.
         Starting Wait for Network to be Configured...
         Starting Network Name Resolution...
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
         Starting Avahi mDNS/DNS-SD Stack...
         Starting containerd container runtime...
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started containerd container runtime.

EWAOL (Edge Workload Abstraction and Orchestration Layer) unstable comhpc ttyAMA0

comhpc login: 

[-- Attachment #5: xen_boot_debug.log --]
[-- Type: application/octet-stream, Size: 173164 bytes --]

Last login: Wed Apr 20 11:11:15 on ttys000
rahsin01@C02ZX0G9LVDN ~ % telnet e123343.cambridge.arm.com 10020
Trying 10.1.194.25...
Connected to e123343.cambridge.arm.com.
Escape character is '^]'.

AIS target system port 10020 device /dev/ttyUSB1 [115200 N81]


FS0:\> 
FS0:\> 
FS0:\> xen.efi



































































































Xen 4.15.1 (c/s Fri Sep 10 09:03:24 2021 +0200 git:84fa99099b-dirty) EFI loader
Using configuration file 'xen.cfg'
Image-xen: 0x00000000fe47c000-0x00000000ffb3f200
PROGRESS CODE: V03101019 I0
 Xen 4.15.1
(XEN) Xen version 4.15.1 (xen-4.15+stableAUTOINC+84fa99099b-r0@ewaol) (aarch64-poky-linux-gcc (GCC) 11.2.0) debug=n 2021-09-10
(XEN) Latest ChangeSet: Fri Sep 10 09:03:24 2021 +0200 git:84fa99099b-dirty
(XEN) build-id: 783448c38aa6ff465e6b4631853bc73076bcf7e4
(XEN) Processor: 413fd0c1: "ARM Limited", variant: 0x3, part 0xd0c, rev 0x1
(XEN) 64-bit Execution:
(XEN)   Processor Features: 1100000011111112 0000000000000020
(XEN)     Exception Levels: EL3:64 EL2:64 EL1:64 EL0:64+32
(XEN)     Extensions: FloatingPoint AdvancedSIMD GICv3-SysReg
(XEN)   Debug Features: 0000000110305408 0000000000000000
(XEN)   Auxiliary Features: 0000000000000000 0000000000000000
(XEN)   Memory Model Features: 0000000000101125 0000000010212122
(XEN)   ISA Features:  0000100010211120 0000000000100001
(XEN) 32-bit Execution:
(XEN)   Processor Features: 10010131:10010000
(XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
(XEN)     Extensions: GenericTimer
(XEN)   Debug Features: 04010088
(XEN)   Auxiliary Features: 00000000
(XEN)   Memory Model Features: 10201105 40000000 01260000 02122211
(XEN)  ISA Features: 02101110 13112111 21232042 01112131 00010142 01011121
(XEN) Using SMC Calling Convention v1.2
(XEN) Using PSCI v1.1
(XEN) ACPI: GICC (acpi_id[0x1000] address[0x0] MPIDR[0x100000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1800] address[0x0] MPIDR[0x180000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1600] address[0x0] MPIDR[0x160000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1e00] address[0x0] MPIDR[0x1e0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0800] address[0x0] MPIDR[0x80000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2000] address[0x0] MPIDR[0x200000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0e00] address[0x0] MPIDR[0xe0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2600] address[0x0] MPIDR[0x260000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1100] address[0x0] MPIDR[0x110000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1900] address[0x0] MPIDR[0x190000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1700] address[0x0] MPIDR[0x170000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1f00] address[0x0] MPIDR[0x1f0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0900] address[0x0] MPIDR[0x90000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2100] address[0x0] MPIDR[0x210000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0f00] address[0x0] MPIDR[0xf0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2700] address[0x0] MPIDR[0x270000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1001] address[0x0] MPIDR[0x100100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1801] address[0x0] MPIDR[0x180100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1601] address[0x0] MPIDR[0x160100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1e01] address[0x0] MPIDR[0x1e0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0801] address[0x0] MPIDR[0x80100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2001] address[0x0] MPIDR[0x200100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0e01] address[0x0] MPIDR[0xe0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2601] address[0x0] MPIDR[0x260100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1101] address[0x0] MPIDR[0x110100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1901] address[0x0] MPIDR[0x190100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1701] address[0x0] MPIDR[0x170100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1f01] address[0x0] MPIDR[0x1f0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0901] address[0x0] MPIDR[0x90100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2101] address[0x0] MPIDR[0x210100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0f01] address[0x0] MPIDR[0xf0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2701] address[0x0] MPIDR[0x270100] enabled)
(XEN) 32 CPUs enabled, 32 CPUs total
(XEN) SMP: Allowing 32 CPUs
(XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 25000 KHz
(XEN) GICv3 initialization:
(XEN)       gic_dist_addr=0x00100100000000
(XEN)       gic_maintenance_irq=25
(XEN)       gic_rdist_stride=0
(XEN)       gic_rdist_regions=1
(XEN)       redistributor regions:
(XEN)         - region 0: 0x00100100140000 - 0x00100101140000
(XEN) GICv3: using at most 57344 LPIs on the host.
(XEN) GICv3: 704 lines, (IID 0201743b).
(XEN) GICv3: Found ITS @0x100100040000
(XEN) GICv3: Found ITS @0x100100060000
(XEN) GICv3: Found ITS @0x100100080000
(XEN) GICv3: Found ITS @0x1001000a0000
(XEN) GICv3: Found ITS @0x1001000c0000
(XEN) GICv3: Found ITS @0x1001000e0000
(XEN) GICv3: Found ITS @0x100100100000
(XEN) GICv3: Found ITS @0x100100120000
(XEN) GICv3: CPU0: Found redistributor in region 0 @0000000040434000
(XEN) XSM Framework v1.0.0 initialized
(XEN) Initialising XSM SILO mode
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Defaulting to alternative key handling; send 'A' to switch to normal mode.
(XEN) Allocated console ring of 256 KiB.
(XEN) CPU0: Guest atomics will try 18 times before pausing the domain
(XEN) Bringing up CPU1
(XEN) GICv3: CPU1: Found redistributor in region 0 @0000000040634000
(XEN) CPU1: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 1 booted.
(XEN) Bringing up CPU2
(XEN) GICv3: CPU2: Found redistributor in region 0 @00000000405b4000
(XEN) CPU2: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 2 booted.
(XEN) Bringing up CPU3
(XEN) GICv3: CPU3: Found redistributor in region 0 @00000000407b4000
(XEN) CPU3: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 3 booted.
(XEN) Bringing up CPU4
(XEN) GICv3: CPU4: Found redistributor in region 0 @0000000040234000
(XEN) CPU4: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 4 booted.
(XEN) Bringing up CPU5
(XEN) GICv3: CPU5: Found redistributor in region 0 @0000000040834000
(XEN) CPU5: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 5 booted.
(XEN) Bringing up CPU6
(XEN) GICv3: CPU6: Found redistributor in region 0 @00000000403b4000
(XEN) CPU6: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 6 booted.
(XEN) Bringing up CPU7
(XEN) GICv3: CPU7: Found redistributor in region 0 @00000000409b4000
(XEN) CPU7: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 7 booted.
(XEN) Bringing up CPU8
(XEN) GICv3: CPU8: Found redistributor in region 0 @0000000040474000
(XEN) CPU8: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 8 booted.
(XEN) Bringing up CPU9
(XEN) GICv3: CPU9: Found redistributor in region 0 @0000000040674000
(XEN) CPU9: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 9 booted.
(XEN) Bringing up CPU10
(XEN) GICv3: CPU10: Found redistributor in region 0 @00000000405f4000
(XEN) CPU10: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 10 booted.
(XEN) Bringing up CPU11
(XEN) GICv3: CPU11: Found redistributor in region 0 @00000000407f4000
(XEN) CPU11: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 11 booted.
(XEN) Bringing up CPU12
(XEN) GICv3: CPU12: Found redistributor in region 0 @0000000040274000
(XEN) CPU12: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 12 booted.
(XEN) Bringing up CPU13
(XEN) GICv3: CPU13: Found redistributor in region 0 @0000000040874000
(XEN) CPU13: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 13 booted.
(XEN) Bringing up CPU14
(XEN) GICv3: CPU14: Found redistributor in region 0 @00000000403f4000
(XEN) CPU14: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 14 booted.
(XEN) Bringing up CPU15
(XEN) GICv3: CPU15: Found redistributor in region 0 @00000000409f4000
(XEN) CPU15: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 15 booted.
(XEN) Bringing up CPU16
(XEN) GICv3: CPU16: Found redistributor in region 0 @0000000040454000
(XEN) CPU16: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 16 booted.
(XEN) Bringing up CPU17
(XEN) GICv3: CPU17: Found redistributor in region 0 @0000000040654000
(XEN) CPU17: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 17 booted.
(XEN) Bringing up CPU18
(XEN) GICv3: CPU18: Found redistributor in region 0 @00000000405d4000
(XEN) CPU18: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 18 booted.
(XEN) Bringing up CPU19
(XEN) GICv3: CPU19: Found redistributor in region 0 @00000000407d4000
(XEN) CPU19: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 19 booted.
(XEN) Bringing up CPU20
(XEN) GICv3: CPU20: Found redistributor in region 0 @0000000040254000
(XEN) CPU20: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 20 booted.
(XEN) Bringing up CPU21
(XEN) GICv3: CPU21: Found redistributor in region 0 @0000000040854000
(XEN) CPU21: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 21 booted.
(XEN) Bringing up CPU22
(XEN) GICv3: CPU22: Found redistributor in region 0 @00000000403d4000
(XEN) CPU22: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 22 booted.
(XEN) Bringing up CPU23
(XEN) GICv3: CPU23: Found redistributor in region 0 @00000000409d4000
(XEN) CPU23: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 23 booted.
(XEN) Bringing up CPU24
(XEN) GICv3: CPU24: Found redistributor in region 0 @0000000040494000
(XEN) CPU24: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 24 booted.
(XEN) Bringing up CPU25
(XEN) GICv3: CPU25: Found redistributor in region 0 @0000000040694000
(XEN) CPU25: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 25 booted.
(XEN) Bringing up CPU26
(XEN) GICv3: CPU26: Found redistributor in region 0 @0000000040614000
(XEN) CPU26: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 26 booted.
(XEN) Bringing up CPU27
(XEN) GICv3: CPU27: Found redistributor in region 0 @0000000040814000
(XEN) CPU27: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 27 booted.
(XEN) Bringing up CPU28
(XEN) GICv3: CPU28: Found redistributor in region 0 @0000000040294000
(XEN) CPU28: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 28 booted.
(XEN) Bringing up CPU29
(XEN) GICv3: CPU29: Found redistributor in region 0 @0000000040894000
(XEN) CPU29: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 29 booted.
(XEN) Bringing up CPU30
(XEN) GICv3: CPU30: Found redistributor in region 0 @0000000040414000
(XEN) CPU30: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 30 booted.
(XEN) Bringing up CPU31
(XEN) GICv3: CPU31: Found redistributor in region 0 @0000000040a14000
(XEN) CPU31: Guest atomics will try 18 times before pausing the domain
(XEN) Brought up 32 CPUs
(XEN) CPU 31 booted.
(XEN) I/O virtualisation disabled
(XEN) P2M: 48-bit IPA with 48-bit PA and 16-bit VMID
(XEN) P2M: 4 levels with order-0 root, VTCR 0x800d3590
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Adding cpu 0 to runqueue 0
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 1 to runqueue 0
(XEN) Adding cpu 2 to runqueue 0
(XEN) Adding cpu 3 to runqueue 0
(XEN) Adding cpu 4 to runqueue 0
(XEN) Adding cpu 5 to runqueue 0
(XEN) Adding cpu 6 to runqueue 0
(XEN) Adding cpu 7 to runqueue 0
(XEN) Adding cpu 8 to runqueue 0
(XEN) Adding cpu 9 to runqueue 0
(XEN) Adding cpu 10 to runqueue 0
(XEN) Adding cpu 11 to runqueue 0
(XEN) Adding cpu 12 to runqueue 0
(XEN) Adding cpu 13 to runqueue 0
(XEN) Adding cpu 14 to runqueue 0
(XEN) Adding cpu 15 to runqueue 0
(XEN) Adding cpu 16 to runqueue 1
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 17 to runqueue 1
(XEN) Adding cpu 18 to runqueue 1
(XEN) Adding cpu 19 to runqueue 1
(XEN) Adding cpu 20 to runqueue 1
(XEN) Adding cpu 21 to runqueue 1
(XEN) Adding cpu 22 to runqueue 1
(XEN) Adding cpu 23 to runqueue 1
(XEN) Adding cpu 24 to runqueue 1
(XEN) Adding cpu 25 to runqueue 1
(XEN) Adding cpu 26 to runqueue 1
(XEN) Adding cpu 27 to runqueue 1
(XEN) Adding cpu 28 to runqueue 1
(XEN) Adding cpu 29 to runqueue 1
(XEN) Adding cpu 30 to runqueue 1
(XEN) Adding cpu 31 to runqueue 1
(XEN) alternatives: Patching with alt table 00000000002cd0b0 -> 00000000002cd9e0
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Loading d0 kernel from boot module @ 00000000fe47c000
(XEN) Allocating 1:1 mappings totalling 8192MB for dom0:
(XEN) BANK[0] 0x00000098000000-0x000000f8000000 (1536MB)
(XEN) BANK[1] 0x00080000000000-0x00080080000000 (2048MB)
(XEN) BANK[2] 0x00080680000000-0x000807a0000000 (4608MB)
(XEN) Grant table range: 0x000807f682c000-0x000807f686c000
(XEN) Allocating PPI 16 for event channel interrupt
(XEN) Loading zImage from 00000000fe47c000 to 0000000098000000-00000000996c3200
(XEN) Loading d0 DTB to 0x00000000a0000000-0x00000000a000027f
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: Errors
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 360kB init memory.
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER24
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER28
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER32
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER36
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER40
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER44
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER48
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER52
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER56
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER60
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER64
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER68
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER72
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER76
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER80
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER84
(XEN) d0v0: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard+ (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] Xen XEN_VERSION.XEN_SUBVERSION support found
[    0.000000] efi: EFI v2.50 by Xen
[    0.000000] efi: ACPI 2.0=0x807f682cce8 
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807F682CCE8 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807F682CC38 0000AC (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807F682C000 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807F682C118 000AF4 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: STAO 0x00000807F682CC10 000025 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x8079efeee00-0x8079eff0fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000098000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807fa0dffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000098000000-0x00000000f7ffffff]
[    0.000000]   node   0: [mem 0x0000080000000000-0x000008007fffffff]
[    0.000000]   node   0: [mem 0x0000080680000000-0x000008079fffffff]
[    0.000000]   node   0: [mem 0x00000807f682c000-0x00000807f682cfff]
[    0.000000]   node   0: [mem 0x00000807f8db0000-0x00000807f8ddffff]
[    0.000000]   node   0: [mem 0x00000807fa0d0000-0x00000807fa0dffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000098000000-0x00000807fa0dffff]
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 31 pages/cpu s89240 r8192 d29544 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: ARM erratum 1418040
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2064447
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: console=hvc0 earlycon=xen rootwait root=PARTUUID=6a60524d-061d-454a-bfd1-38989910eccd
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.000000] printk: log_buf_len min size: 131072 bytes
[    0.000000] printk: log_buf_len: 262144 bytes
[    0.000000] printk: early log buf free: 125936(96%)
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000f4000000-0x00000000f8000000] (64MB)
[    0.000000] Memory: 8100764K/8388868K available (13568K kernel code, 1996K rwdata, 3476K rodata, 4160K init, 822K bss, 288104K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 41306 entries in 162 pages
[    0.000000] ftrace: allocated 162 pages with 3 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=32.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: 672 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000100100140000
[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 3 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 4 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 5 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 6 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 7 -> Node 0
[    0.000000] ITS [mem 0x100100040000-0x10010005ffff]
[    0.000000] ITS@0x0000100100040000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100040000: allocated 524288 Devices @80000800000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100040000: allocated 32768 Interrupt Collections @80000220000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100060000-0x10010007ffff]
[    0.000000] ITS@0x0000100100060000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100060000: allocated 524288 Devices @80000c00000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100060000: allocated 32768 Interrupt Collections @80000240000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100080000-0x10010009ffff]
[    0.000000] ITS@0x0000100100080000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100080000: allocated 524288 Devices @80001000000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100080000: allocated 32768 Interrupt Collections @80000260000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000a0000-0x1001000bffff]
[    0.000000] ITS@0x00001001000a0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000a0000: allocated 524288 Devices @80001400000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000a0000: allocated 32768 Interrupt Collections @80000280000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000c0000-0x1001000dffff]
[    0.000000] ITS@0x00001001000c0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000c0000: allocated 524288 Devices @80001800000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000c0000: allocated 32768 Interrupt Collections @800002a0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000e0000-0x1001000fffff]
[    0.000000] ITS@0x00001001000e0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000e0000: allocated 524288 Devices @80001c00000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000e0000: allocated 32768 Interrupt Collections @800002c0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100100000-0x10010011ffff]
[    0.000000] ITS@0x0000100100100000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100100000: allocated 524288 Devices @80002000000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100100000: allocated 32768 Interrupt Collections @800002e0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100120000-0x10010013ffff]
[    0.000000] ITS@0x0000100100120000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100120000: allocated 524288 Devices @80002400000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100120000: allocated 32768 Interrupt Collections @80000300000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: CPU: 0 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:2247 its_init+0x398/0x690
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 5.10.27-ampere-lts-standard+ #1
[    0.000000] pstate: 60000085 (nZCv daIf -PAN -UAO -TCO BTYPE=--)
[    0.000000] pc : its_init+0x398/0x690
[    0.000000] lr : its_init+0x394/0x690
[    0.000000] sp : ffff8000114d3c50
[    0.000000] x29: ffff8000114d3c50 x28: 0000000000000000 
[    0.000000] x27: ffff8000114dc9c0 x26: ffff07ff801e5500 
[    0.000000] x25: 0000000000000000 x24: ffff08071ec1c0c0 
[    0.000000] x23: ffff800011622350 x22: ffff07ff8011b600 
[    0.000000] x21: ffff8000114dc9c0 x20: ffff800011622000 
[    0.000000] x19: ffff8000117689f8 x18: ffffffffffffffff 
[    0.000000] x17: 0000000000000000 x16: 000000000000001f 
[    0.000000] x15: ffff07ff8020471d x14: 0000000000000058 
[    0.000000] x13: 00000000000000c0 x12: 0000000000000000 
[    0.000000] x11: 0000000000000010 x10: ffff08071eae3ac0 
[    0.000000] x9 : ffff800010d36dc0 x8 : ffff07ff80320000 
[    0.000000] x7 : a2a2a2a2a2a2a2a2 x6 : ffff000000000000 
[    0.000000] x5 : fffffdffffe00000 x4 : ffff8000114dc9c0 
[    0.000000] x3 : ffff8000114ddaf0 x2 : 000000000000003d 
[    0.000000] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    0.000000] Call trace:
[    0.000000]  its_init+0x398/0x690
[    0.000000]  gic_init_bases+0x524/0x584
[    0.000000]  gic_acpi_init+0x134/0x278
[    0.000000]  acpi_match_madt+0x50/0x88
[    0.000000]  acpi_table_parse_entries_array+0x164/0x24c
[    0.000000]  acpi_table_parse_entries+0x48/0x70
[    0.000000]  acpi_table_parse_madt+0x34/0x40
[    0.000000]  __acpi_probe_device_table+0x90/0xec
[    0.000000]  irqchip_init+0x40/0x4c
[    0.000000]  init_IRQ+0xd0/0x104
[    0.000000]  start_kernel+0x354/0x554
[    0.000000] random: get_random_bytes called from __warn+0x128/0x1c0 with crng_init=0
[    0.000000] ---[ end trace 0000000000000000 ]---
[    0.000000] GICv3: using LPI property table @0x0000080000310000
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: CPU: 0 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    0.000000] pstate: 60000085 (nZCv daIf -PAN -UAO -TCO BTYPE=--)
[    0.000000] pc : its_cpu_init+0x824/0xb20
[    0.000000] lr : its_cpu_init+0x820/0xb20
[    0.000000] sp : ffff8000114d3c80
[    0.000000] x29: ffff8000114d3c80 x28: 0000000000000000 
[    0.000000] x27: 0000000000000001 x26: ffff800012000070 
[    0.000000] x25: fffffe1ffde0c800 x24: ffff800012000000 
[    0.000000] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    0.000000] x21: ffff8000117689f8 x20: ffff800011622350 
[    0.000000] x19: ffff800011622000 x18: ffffffffffffffff 
[    0.000000] x17: 0000000000000000 x16: 000000000000001f 
[    0.000000] x15: ffff8000914d3967 x14: 0000000000000058 
[    0.000000] x13: 00000000000000c0 x12: 0000000000000000 
[    0.000000] x11: 0000000000000010 x10: 000000000000000c 
[    0.000000] x9 : ffff800010d36dc0 x8 : 0000000000000000 
[    0.000000] x7 : ffff08071efefbc0 x6 : 0000000000000003 
[    0.000000] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    0.000000] x3 : 0000000000000010 x2 : 000000000000ffff 
[    0.000000] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    0.000000] Call trace:
[    0.000000]  its_cpu_init+0x824/0xb20
[    0.000000]  gic_init_bases+0x528/0x584
[    0.000000]  gic_acpi_init+0x134/0x278
[    0.000000]  acpi_match_madt+0x50/0x88
[    0.000000]  acpi_table_parse_entries_array+0x164/0x24c
[    0.000000]  acpi_table_parse_entries+0x48/0x70
[    0.000000]  acpi_table_parse_madt+0x34/0x40
[    0.000000]  __acpi_probe_device_table+0x90/0xec
[    0.000000]  irqchip_init+0x40/0x4c
[    0.000000]  init_IRQ+0xd0/0x104
[    0.000000]  start_kernel+0x354/0x554
[    0.000000] ---[ end trace f68728a0d3053b52 ]---
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000080000320000
[    0.000000] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.000000] ACPI GTDT: found 1 memory-mapped timer block(s).
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 25.00MHz (virt/phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000001] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000056] Console: colour dummy device 80x25
[    1.271763] printk: console [hvc0] enabled
[    1.275951] ACPI: Core revision 20200925
[    1.280260] ACPI BIOS Warning (bug): Incorrect checksum in table [IORT] - 0xF2, should be 0x0B (20200925/tbprint-173)
[    1.290844] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    1.301185] pid_max: default: 32768 minimum: 301
[    1.305897] LSM: Security Framework initializing
[    1.310623] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.318217] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.326608] ACPI PPTT: PPTT table found, but unable to locate core 2 (2)
[    1.333610] xen:grant_table: Grant tables using version 1 layout
[    1.339530] Grant table initialized
[    1.343094] xen:events: Using FIFO-based ABI
[    1.347427] Xen: initializing cpu0
[    1.350918] rcu: Hierarchical SRCU implementation.
[    1.355887] Platform MSI: ITS@0x100100040000 domain created
[    1.361399] Platform MSI: ITS@0x100100060000 domain created
[    1.367057] Platform MSI: ITS@0x100100080000 domain created
[    1.372686] Platform MSI: ITS@0x1001000a0000 domain created
[    1.378318] Platform MSI: ITS@0x1001000c0000 domain created
[    1.383959] Platform MSI: ITS@0x1001000e0000 domain created
[    1.389600] Platform MSI: ITS@0x100100100000 domain created
[    1.395243] Platform MSI: ITS@0x100100120000 domain created
[    1.400888] PCI/MSI: ITS@0x100100040000 domain created
[    1.406094] PCI/MSI: ITS@0x100100060000 domain created
[    1.411304] PCI/MSI: ITS@0x100100080000 domain created
[    1.416510] PCI/MSI: ITS@0x1001000a0000 domain created
[    1.421721] PCI/MSI: ITS@0x1001000c0000 domain created
[    1.426927] PCI/MSI: ITS@0x1001000e0000 domain created
[    1.432135] PCI/MSI: ITS@0x100100100000 domain created
[    1.437344] PCI/MSI: ITS@0x100100120000 domain created
[    1.442555] EFI runtime services access via paravirt.
[    1.448009] smp: Bringing up secondary CPUs ...
(XEN) d0v1: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v2: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v3: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v4: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v5: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v6: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v7: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v8: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v9: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v10: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v11: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v12: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v13: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v14: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v15: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v16: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v17: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v18: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v19: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v20: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v21: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v22: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v23: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v24: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v25: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v26: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v27: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v28: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v29: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v30: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v31: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    1.452637] Detected PIPT I-cache on CPU1
[    1.452662] GICv3: CPU1: found redistributor 1 region 0:0x0000100100160000
[    1.459194] ------------[ cut here ]------------
[    1.459198] WARNING: CPU: 1 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.459199] Modules linked in:
[    1.459203] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.459205] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.459207] pc : its_cpu_init+0x824/0xb20
[    1.459208] lr : its_cpu_init+0x820/0xb20
[    1.459209] sp : ffff800011a3be80
[    1.459210] x29: ffff800011a3be80 x28: 0000000000000001 
[    1.459212] x27: 0000000000000000 x26: ffff800012020070 
[    1.459214] x25: fffffe1ffde0cc00 x24: ffff800012020000 
[    1.459216] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.459218] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.459220] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.459222] x17: 0000000000000000 x16: 0000000000000000 
[    1.459224] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.459226] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.459228] x11: 0000000000000000 x10: 0000000000000001 
[    1.459230] x9 : ffff8000106d6830 x8 : 3030303036313030 
[    1.459232] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.459234] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.459236] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.459238] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.459240] Call trace:
[    1.459241]  its_cpu_init+0x824/0xb20
[    1.459245]  gic_starting_cpu+0x48/0x90
[    1.459247]  cpuhp_invoke_callback+0xa4/0x460
[    1.459250]  notify_cpu_starting+0xa0/0xe0
[    1.459253]  secondary_start_kernel+0xe8/0x190
[    1.459254] ---[ end trace f68728a0d3053b53 ]---
[    1.459259] GICv3: CPU1: using allocated LPI pending table @0x0000080000330000
[    1.459316] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.459325] Xen: initializing cpu1
[    1.459344] CPU1: Booted secondary processor 0x0000000001 [0x413fd0c1]
[    1.459640] Detected PIPT I-cache on CPU2
[    1.459668] GICv3: CPU2: found redistributor 2 region 0:0x0000100100180000
[    1.466204] ------------[ cut here ]------------
[    1.466211] WARNING: CPU: 2 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.466212] Modules linked in:
[    1.466217] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.466219] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.466222] pc : its_cpu_init+0x824/0xb20
[    1.466223] lr : its_cpu_init+0x820/0xb20
[    1.466224] sp : ffff800011a43e80
[    1.466225] x29: ffff800011a43e80 x28: 0000000000000002 
[    1.466227] x27: 0000000000000000 x26: ffff800012040070 
[    1.466229] x25: fffffe1ffde0d000 x24: ffff800012040000 
[    1.466231] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.466233] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.466235] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.466237] x17: 0000000000000000 x16: 0000000000000000 
[    1.466239] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.466241] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.466243] x11: 0000000000000000 x10: 0000000000000001 
[    1.466245] x9 : ffff8000106d6830 x8 : 3030303038313030 
[    1.466247] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.466249] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.466251] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.466253] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.466255] Call trace:
[    1.466257]  its_cpu_init+0x824/0xb20
[    1.466261]  gic_starting_cpu+0x48/0x90
[    1.466264]  cpuhp_invoke_callback+0xa4/0x460
[    1.466266]  notify_cpu_starting+0xa0/0xe0
[    1.466269]  secondary_start_kernel+0xe8/0x190
[    1.466271] ---[ end trace f68728a0d3053b54 ]---
[    1.466276] GICv3: CPU2: using allocated LPI pending table @0x0000080000340000
[    1.466343] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.466355] Xen: initializing cpu2
[    1.466380] CPU2: Booted secondary processor 0x0000000002 [0x413fd0c1]
[    1.466653] Detected PIPT I-cache on CPU3
[    1.466679] GICv3: CPU3: found redistributor 3 region 0:0x00001001001a0000
[    1.473211] ------------[ cut here ]------------
[    1.473216] WARNING: CPU: 3 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.473217] Modules linked in:
[    1.473221] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.473223] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.473225] pc : its_cpu_init+0x824/0xb20
[    1.473226] lr : its_cpu_init+0x820/0xb20
[    1.473227] sp : ffff800011a4be80
[    1.473228] x29: ffff800011a4be80 x28: 0000000000000003 
[    1.473231] x27: 0000000000000000 x26: ffff800012060070 
[    1.473233] x25: fffffe1ffde0d400 x24: ffff800012060000 
[    1.473235] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.473237] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.473239] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.473241] x17: 0000000000000000 x16: 0000000000000000 
[    1.473243] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.473245] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.473247] x11: 0000000000000000 x10: 0000000000000001 
[    1.473248] x9 : ffff8000106d6830 x8 : 3030303061313030 
[    1.473250] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.473252] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.473254] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.473256] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.473259] Call trace:
[    1.473260]  its_cpu_init+0x824/0xb20
[    1.473263]  gic_starting_cpu+0x48/0x90
[    1.473266]  cpuhp_invoke_callback+0xa4/0x460
[    1.473268]  notify_cpu_starting+0xa0/0xe0
[    1.473270]  secondary_start_kernel+0xe8/0x190
[    1.473271] ---[ end trace f68728a0d3053b55 ]---
[    1.473277] GICv3: CPU3: using allocated LPI pending table @0x0000080000350000
[    1.473336] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.473345] Xen: initializing cpu3
[    1.473365] CPU3: Booted secondary processor 0x0000000003 [0x413fd0c1]
[    1.473622] Detected PIPT I-cache on CPU4
[    1.473650] GICv3: CPU4: found redistributor 4 region 0:0x00001001001c0000
[    1.480182] ------------[ cut here ]------------
[    1.480187] WARNING: CPU: 4 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.480188] Modules linked in:
[    1.480191] CPU: 4 PID: 0 Comm: swapper/4 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.480194] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.480195] pc : its_cpu_init+0x824/0xb20
[    1.480197] lr : its_cpu_init+0x820/0xb20
[    1.480198] sp : ffff800011a53e80
[    1.480199] x29: ffff800011a53e80 x28: 0000000000000004 
[    1.480201] x27: 0000000000000000 x26: ffff800012080070 
[    1.480203] x25: fffffe1ffde0d800 x24: ffff800012080000 
[    1.480205] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.480207] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.480209] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.480211] x17: 0000000000000000 x16: 0000000000000000 
[    1.480213] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.480215] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.480217] x11: 0000000000000000 x10: 0000000000000001 
[    1.480219] x9 : ffff8000106d6830 x8 : 3030303063313030 
[    1.480221] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.480223] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.480224] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.480227] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.480229] Call trace:
[    1.480230]  its_cpu_init+0x824/0xb20
[    1.480233]  gic_starting_cpu+0x48/0x90
[    1.480236]  cpuhp_invoke_callback+0xa4/0x460
[    1.480238]  notify_cpu_starting+0xa0/0xe0
[    1.480240]  secondary_start_kernel+0xe8/0x190
[    1.480241] ---[ end trace f68728a0d3053b56 ]---
[    1.480247] GICv3: CPU4: using allocated LPI pending table @0x0000080000360000
[    1.480313] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.480321] Xen: initializing cpu4
[    1.480342] CPU4: Booted secondary processor 0x0000000004 [0x413fd0c1]
[    1.480694] Detected PIPT I-cache on CPU5
[    1.480724] GICv3: CPU5: found redistributor 5 region 0:0x00001001001e0000
[    1.487255] ------------[ cut here ]------------
[    1.487260] WARNING: CPU: 5 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.487261] Modules linked in:
[    1.487265] CPU: 5 PID: 0 Comm: swapper/5 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.487267] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.487269] pc : its_cpu_init+0x824/0xb20
[    1.487270] lr : its_cpu_init+0x820/0xb20
[    1.487271] sp : ffff800011a5be80
[    1.487272] x29: ffff800011a5be80 x28: 0000000000000005 
[    1.487274] x27: 0000000000000000 x26: ffff8000120a0070 
[    1.487276] x25: fffffe1ffde0dc00 x24: ffff8000120a0000 
[    1.487278] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.487280] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.487282] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.487284] x17: 0000000000000000 x16: 0000000000000000 
[    1.487287] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.487289] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.487290] x11: 0000000000000000 x10: 0000000000000001 
[    1.487292] x9 : ffff8000106d6830 x8 : 3030303065313030 
[    1.487294] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.487296] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.487298] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.487300] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.487302] Call trace:
[    1.487304]  its_cpu_init+0x824/0xb20
[    1.487307]  gic_starting_cpu+0x48/0x90
[    1.487310]  cpuhp_invoke_callback+0xa4/0x460
[    1.487312]  notify_cpu_starting+0xa0/0xe0
[    1.487314]  secondary_start_kernel+0xe8/0x190
[    1.487316] ---[ end trace f68728a0d3053b57 ]---
[    1.487321] GICv3: CPU5: using allocated LPI pending table @0x0000080000370000
[    1.487380] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.487389] Xen: initializing cpu5
[    1.487410] CPU5: Booted secondary processor 0x0000000005 [0x413fd0c1]
[    1.487766] Detected PIPT I-cache on CPU6
[    1.487799] GICv3: CPU6: found redistributor 6 region 0:0x0000100100200000
[    1.494332] ------------[ cut here ]------------
[    1.494337] WARNING: CPU: 6 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.494337] Modules linked in:
[    1.494341] CPU: 6 PID: 0 Comm: swapper/6 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.494343] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.494345] pc : its_cpu_init+0x824/0xb20
[    1.494347] lr : its_cpu_init+0x820/0xb20
[    1.494347] sp : ffff800011a63e80
[    1.494349] x29: ffff800011a63e80 x28: 0000000000000006 
[    1.494351] x27: 0000000000000000 x26: ffff8000120c0070 
[    1.494353] x25: fffffe1ffde0e000 x24: ffff8000120c0000 
[    1.494355] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.494357] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.494359] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.494361] x17: 0000000000000000 x16: 0000000000000000 
[    1.494363] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.494364] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.494366] x11: 0000000000000000 x10: 0000000000000001 
[    1.494368] x9 : ffff8000106d6830 x8 : 3030303030323030 
[    1.494370] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.494372] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.494374] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.494376] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.494378] Call trace:
[    1.494380]  its_cpu_init+0x824/0xb20
[    1.494382]  gic_starting_cpu+0x48/0x90
[    1.494385]  cpuhp_invoke_callback+0xa4/0x460
[    1.494387]  notify_cpu_starting+0xa0/0xe0
[    1.494389]  secondary_start_kernel+0xe8/0x190
[    1.494391] ---[ end trace f68728a0d3053b58 ]---
[    1.494396] GICv3: CPU6: using allocated LPI pending table @0x0000080000380000
[    1.494463] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.494472] Xen: initializing cpu6
[    1.494493] CPU6: Booted secondary processor 0x0000000006 [0x413fd0c1]
[    1.494839] Detected PIPT I-cache on CPU7
[    1.494873] GICv3: CPU7: found redistributor 7 region 0:0x0000100100220000
[    1.501405] ------------[ cut here ]------------
[    1.501410] WARNING: CPU: 7 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.501411] Modules linked in:
[    1.501415] CPU: 7 PID: 0 Comm: swapper/7 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.501417] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.501419] pc : its_cpu_init+0x824/0xb20
[    1.501421] lr : its_cpu_init+0x820/0xb20
[    1.501422] sp : ffff800011a6be80
[    1.501423] x29: ffff800011a6be80 x28: 0000000000000007 
[    1.501425] x27: 0000000000000000 x26: ffff8000120e0070 
[    1.501427] x25: fffffe1ffde0e400 x24: ffff8000120e0000 
[    1.501429] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.501431] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.501433] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.501435] x17: 0000000000000000 x16: 0000000000000000 
[    1.501437] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.501439] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.501441] x11: 0000000000000000 x10: 0000000000000001 
[    1.501443] x9 : ffff8000106d6830 x8 : 3030303032323030 
[    1.501444] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.501446] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.501448] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.501450] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.501452] Call trace:
[    1.501454]  its_cpu_init+0x824/0xb20
[    1.501457]  gic_starting_cpu+0x48/0x90
[    1.501460]  cpuhp_invoke_callback+0xa4/0x460
[    1.501462]  notify_cpu_starting+0xa0/0xe0
[    1.501464]  secondary_start_kernel+0xe8/0x190
[    1.501466] ---[ end trace f68728a0d3053b59 ]---
[    1.501472] GICv3: CPU7: using allocated LPI pending table @0x0000080000390000
[    1.501531] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.501540] Xen: initializing cpu7
[    1.501561] CPU7: Booted secondary processor 0x0000000007 [0x413fd0c1]
[    1.501818] Detected PIPT I-cache on CPU8
[    1.501855] GICv3: CPU8: found redistributor 8 region 0:0x0000100100240000
[    1.508388] ------------[ cut here ]------------
[    1.508393] WARNING: CPU: 8 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.508394] Modules linked in:
[    1.508398] CPU: 8 PID: 0 Comm: swapper/8 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.508400] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.508402] pc : its_cpu_init+0x824/0xb20
[    1.508404] lr : its_cpu_init+0x820/0xb20
[    1.508405] sp : ffff800011a73e80
[    1.508406] x29: ffff800011a73e80 x28: 0000000000000008 
[    1.508408] x27: 0000000000000000 x26: ffff800012100070 
[    1.508410] x25: fffffe1ffde0e800 x24: ffff800012100000 
[    1.508413] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.508415] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.508417] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.508418] x17: 0000000000000000 x16: 0000000000000000 
[    1.508420] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.508422] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.508425] x11: 0000000000000000 x10: 0000000000000001 
[    1.508427] x9 : ffff8000106d6830 x8 : 3030303034323030 
[    1.508429] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.508430] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.508432] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.508434] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.508436] Call trace:
[    1.508438]  its_cpu_init+0x824/0xb20
[    1.508441]  gic_starting_cpu+0x48/0x90
[    1.508443]  cpuhp_invoke_callback+0xa4/0x460
[    1.508445]  notify_cpu_starting+0xa0/0xe0
[    1.508447]  secondary_start_kernel+0xe8/0x190
[    1.508449] ---[ end trace f68728a0d3053b5a ]---
[    1.508454] GICv3: CPU8: using allocated LPI pending table @0x00000800003a0000
[    1.508520] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.508530] Xen: initializing cpu8
[    1.508552] CPU8: Booted secondary processor 0x0000000008 [0x413fd0c1]
[    1.508905] Detected PIPT I-cache on CPU9
[    1.508943] GICv3: CPU9: found redistributor 9 region 0:0x0000100100260000
[    1.515476] ------------[ cut here ]------------
[    1.515481] WARNING: CPU: 9 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.515482] Modules linked in:
[    1.515486] CPU: 9 PID: 0 Comm: swapper/9 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.515488] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.515490] pc : its_cpu_init+0x824/0xb20
[    1.515491] lr : its_cpu_init+0x820/0xb20
[    1.515492] sp : ffff800011a7be80
[    1.515493] x29: ffff800011a7be80 x28: 0000000000000009 
[    1.515495] x27: 0000000000000000 x26: ffff800012120070 
[    1.515497] x25: fffffe1ffde0ec00 x24: ffff800012120000 
[    1.515499] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.515501] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.515503] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.515505] x17: 0000000000000000 x16: 0000000000000000 
[    1.515507] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.515509] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.515510] x11: 0000000000000000 x10: 0000000000000001 
[    1.515512] x9 : ffff8000106d6830 x8 : 3030303036323030 
[    1.515514] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.515516] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.515518] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.515520] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.515522] Call trace:
[    1.515524]  its_cpu_init+0x824/0xb20
[    1.515527]  gic_starting_cpu+0x48/0x90
[    1.515529]  cpuhp_invoke_callback+0xa4/0x460
[    1.515531]  notify_cpu_starting+0xa0/0xe0
[    1.515534]  secondary_start_kernel+0xe8/0x190
[    1.515535] ---[ end trace f68728a0d3053b5b ]---
[    1.515541] GICv3: CPU9: using allocated LPI pending table @0x00000800003b0000
[    1.515600] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.515609] Xen: initializing cpu9
[    1.515631] CPU9: Booted secondary processor 0x0000000009 [0x413fd0c1]
[    1.515972] Detected PIPT I-cache on CPU10
[    1.516013] GICv3: CPU10: found redistributor a region 0:0x0000100100280000
[    1.522633] ------------[ cut here ]------------
[    1.522638] WARNING: CPU: 10 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.522639] Modules linked in:
[    1.522643] CPU: 10 PID: 0 Comm: swapper/10 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.522645] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.522647] pc : its_cpu_init+0x824/0xb20
[    1.522649] lr : its_cpu_init+0x820/0xb20
[    1.522650] sp : ffff800011a83e80
[    1.522651] x29: ffff800011a83e80 x28: 000000000000000a 
[    1.522653] x27: 0000000000000000 x26: ffff800012140070 
[    1.522655] x25: fffffe1ffde0f000 x24: ffff800012140000 
[    1.522657] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.522660] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.522662] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.522663] x17: 0000000000000000 x16: 0000000000000000 
[    1.522665] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.522667] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.522669] x11: 0000000000000000 x10: 0000000000000001 
[    1.522671] x9 : ffff8000106d6830 x8 : 3030303832303031 
[    1.522673] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.522675] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.522677] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.522679] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.522681] Call trace:
[    1.522683]  its_cpu_init+0x824/0xb20
[    1.522686]  gic_starting_cpu+0x48/0x90
[    1.522688]  cpuhp_invoke_callback+0xa4/0x460
[    1.522690]  notify_cpu_starting+0xa0/0xe0
[    1.522692]  secondary_start_kernel+0xe8/0x190
[    1.522694] ---[ end trace f68728a0d3053b5c ]---
[    1.522700] GICv3: CPU10: using allocated LPI pending table @0x00000800003c0000
[    1.522766] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.522774] Xen: initializing cpu10
[    1.522797] CPU10: Booted secondary processor 0x000000000a [0x413fd0c1]
[    1.523152] Detected PIPT I-cache on CPU11
[    1.523194] GICv3: CPU11: found redistributor b region 0:0x00001001002a0000
[    1.529814] ------------[ cut here ]------------
[    1.529819] WARNING: CPU: 11 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.529820] Modules linked in:
[    1.529824] CPU: 11 PID: 0 Comm: swapper/11 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.529826] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.529828] pc : its_cpu_init+0x824/0xb20
[    1.529829] lr : its_cpu_init+0x820/0xb20
[    1.529830] sp : ffff800011a8be80
[    1.529831] x29: ffff800011a8be80 x28: 000000000000000b 
[    1.529834] x27: 0000000000000000 x26: ffff800012160070 
[    1.529836] x25: fffffe1ffde0f400 x24: ffff800012160000 
[    1.529837] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.529840] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.529841] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.529843] x17: 0000000000000000 x16: 0000000000000000 
[    1.529845] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.529847] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.529849] x11: 0000000000000000 x10: 0000000000000001 
[    1.529851] x9 : ffff8000106d6830 x8 : 3030306132303031 
[    1.529853] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.529855] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.529856] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.529858] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.529861] Call trace:
[    1.529862]  its_cpu_init+0x824/0xb20
[    1.529866]  gic_starting_cpu+0x48/0x90
[    1.529868]  cpuhp_invoke_callback+0xa4/0x460
[    1.529870]  notify_cpu_starting+0xa0/0xe0
[    1.529873]  secondary_start_kernel+0xe8/0x190
[    1.529874] ---[ end trace f68728a0d3053b5d ]---
[    1.529880] GICv3: CPU11: using allocated LPI pending table @0x00000800003d0000
[    1.529939] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.529947] Xen: initializing cpu11
[    1.529968] CPU11: Booted secondary processor 0x000000000b [0x413fd0c1]
[    1.530272] Detected PIPT I-cache on CPU12
[    1.530317] GICv3: CPU12: found redistributor c region 0:0x00001001002c0000
[    1.536937] ------------[ cut here ]------------
[    1.536942] WARNING: CPU: 12 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.536943] Modules linked in:
[    1.536947] CPU: 12 PID: 0 Comm: swapper/12 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.536949] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.536951] pc : its_cpu_init+0x824/0xb20
[    1.536952] lr : its_cpu_init+0x820/0xb20
[    1.536953] sp : ffff800011a93e80
[    1.536954] x29: ffff800011a93e80 x28: 000000000000000c 
[    1.536956] x27: 0000000000000000 x26: ffff800012180070 
[    1.536958] x25: fffffe1ffde0f800 x24: ffff800012180000 
[    1.536960] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.536962] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.536965] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.536967] x17: 0000000000000000 x16: 0000000000000000 
[    1.536969] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.536971] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.536972] x11: 0000000000000000 x10: 0000000000000001 
[    1.536974] x9 : ffff8000106d6830 x8 : 3030306332303031 
[    1.536976] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.536978] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.536980] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.536982] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.536984] Call trace:
[    1.536986]  its_cpu_init+0x824/0xb20
[    1.536989]  gic_starting_cpu+0x48/0x90
[    1.536991]  cpuhp_invoke_callback+0xa4/0x460
[    1.536993]  notify_cpu_starting+0xa0/0xe0
[    1.536995]  secondary_start_kernel+0xe8/0x190
[    1.536997] ---[ end trace f68728a0d3053b5e ]---
[    1.537002] GICv3: CPU12: using allocated LPI pending table @0x00000800003e0000
[    1.537069] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.537078] Xen: initializing cpu12
[    1.537101] CPU12: Booted secondary processor 0x000000000c [0x413fd0c1]
[    1.537349] Detected PIPT I-cache on CPU13
[    1.537395] GICv3: CPU13: found redistributor d region 0:0x00001001002e0000
[    1.544015] ------------[ cut here ]------------
[    1.544020] WARNING: CPU: 13 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.544021] Modules linked in:
[    1.544025] CPU: 13 PID: 0 Comm: swapper/13 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.544027] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.544029] pc : its_cpu_init+0x824/0xb20
[    1.544030] lr : its_cpu_init+0x820/0xb20
[    1.544031] sp : ffff800011a9be80
[    1.544032] x29: ffff800011a9be80 x28: 000000000000000d 
[    1.544035] x27: 0000000000000000 x26: ffff8000121a0070 
[    1.544037] x25: fffffe1ffde0fc00 x24: ffff8000121a0000 
[    1.544039] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.544041] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.544043] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.544045] x17: 0000000000000000 x16: 0000000000000000 
[    1.544046] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.544048] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.544050] x11: 0000000000000000 x10: 0000000000000001 
[    1.544052] x9 : ffff8000106d6830 x8 : 3030306532303031 
[    1.544054] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.544056] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.544058] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.544060] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.544062] Call trace:
[    1.544064]  its_cpu_init+0x824/0xb20
[    1.544067]  gic_starting_cpu+0x48/0x90
[    1.544069]  cpuhp_invoke_callback+0xa4/0x460
[    1.544071]  notify_cpu_starting+0xa0/0xe0
[    1.544074]  secondary_start_kernel+0xe8/0x190
[    1.544075] ---[ end trace f68728a0d3053b5f ]---
[    1.544081] GICv3: CPU13: using allocated LPI pending table @0x00000800003f0000
[    1.544141] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.544150] Xen: initializing cpu13
[    1.544171] CPU13: Booted secondary processor 0x000000000d [0x413fd0c1]
[    1.544516] Detected PIPT I-cache on CPU14
[    1.544565] GICv3: CPU14: found redistributor e region 0:0x0000100100300000
[    1.551185] ------------[ cut here ]------------
[    1.551190] WARNING: CPU: 14 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.551191] Modules linked in:
[    1.551195] CPU: 14 PID: 0 Comm: swapper/14 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.551197] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.551199] pc : its_cpu_init+0x824/0xb20
[    1.551200] lr : its_cpu_init+0x820/0xb20
[    1.551201] sp : ffff800011aa3e80
[    1.551202] x29: ffff800011aa3e80 x28: 000000000000000e 
[    1.551205] x27: 0000000000000000 x26: ffff8000121c0070 
[    1.551207] x25: fffffe1ffdea0000 x24: ffff8000121c0000 
[    1.551208] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.551210] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.551212] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.551214] x17: 0000000000000000 x16: 0000000000000000 
[    1.551216] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.551218] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.551220] x11: 0000000000000000 x10: 0000000000000001 
[    1.551222] x9 : ffff8000106d6830 x8 : 3030303033303031 
[    1.551224] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.551226] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.551228] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.551230] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.551232] Call trace:
[    1.551234]  its_cpu_init+0x824/0xb20
[    1.551236]  gic_starting_cpu+0x48/0x90
[    1.551239]  cpuhp_invoke_callback+0xa4/0x460
[    1.551241]  notify_cpu_starting+0xa0/0xe0
[    1.551244]  secondary_start_kernel+0xe8/0x190
[    1.551245] ---[ end trace f68728a0d3053b60 ]---
[    1.551251] GICv3: CPU14: using allocated LPI pending table @0x0000080002800000
[    1.551317] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.551325] Xen: initializing cpu14
[    1.551348] CPU14: Booted secondary processor 0x000000000e [0x413fd0c1]
[    1.551702] Detected PIPT I-cache on CPU15
[    1.551751] GICv3: CPU15: found redistributor f region 0:0x0000100100320000
[    1.558371] ------------[ cut here ]------------
[    1.558376] WARNING: CPU: 15 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.558377] Modules linked in:
[    1.558381] CPU: 15 PID: 0 Comm: swapper/15 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.558383] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.558385] pc : its_cpu_init+0x824/0xb20
[    1.558386] lr : its_cpu_init+0x820/0xb20
[    1.558387] sp : ffff800011aabe80
[    1.558388] x29: ffff800011aabe80 x28: 000000000000000f 
[    1.558390] x27: 0000000000000000 x26: ffff8000121e0070 
[    1.558392] x25: fffffe1ffdea0400 x24: ffff8000121e0000 
[    1.558394] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.558396] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.558398] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.558400] x17: 0000000000000000 x16: 0000000000000000 
[    1.558402] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.558404] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.558406] x11: 0000000000000000 x10: 0000000000000001 
[    1.558408] x9 : ffff8000106d6830 x8 : 3030303233303031 
[    1.558410] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.558412] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.558414] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.558415] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.558417] Call trace:
[    1.558419]  its_cpu_init+0x824/0xb20
[    1.558422]  gic_starting_cpu+0x48/0x90
[    1.558425]  cpuhp_invoke_callback+0xa4/0x460
[    1.558427]  notify_cpu_starting+0xa0/0xe0
[    1.558430]  secondary_start_kernel+0xe8/0x190
[    1.558431] ---[ end trace f68728a0d3053b61 ]---
[    1.558437] GICv3: CPU15: using allocated LPI pending table @0x0000080002810000
[    1.558496] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.558504] Xen: initializing cpu15
[    1.558527] CPU15: Booted secondary processor 0x000000000f [0x413fd0c1]
[    1.558869] Detected PIPT I-cache on CPU16
[    1.558921] GICv3: CPU16: found redistributor 100 region 0:0x0000100100340000
[    1.565542] ------------[ cut here ]------------
[    1.565547] WARNING: CPU: 16 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.565548] Modules linked in:
[    1.565552] CPU: 16 PID: 0 Comm: swapper/16 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.565554] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.565555] pc : its_cpu_init+0x824/0xb20
[    1.565557] lr : its_cpu_init+0x820/0xb20
[    1.565558] sp : ffff800011ab3e80
[    1.565559] x29: ffff800011ab3e80 x28: 0000000000000010 
[    1.565561] x27: 0000000000000000 x26: ffff800012200070 
[    1.565563] x25: fffffe1ffdea0800 x24: ffff800012200000 
[    1.565565] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.565567] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.565569] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.565571] x17: 0000000000000000 x16: 0000000000000000 
[    1.565573] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.565575] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.565577] x11: 0000000000000000 x10: 0000000000000001 
[    1.565579] x9 : ffff8000106d6830 x8 : 3034333030313030 
[    1.565581] x7 : 313030303078303a x6 : 0000000000000003 
[    1.565582] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.565584] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.565586] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.565588] Call trace:
[    1.565590]  its_cpu_init+0x824/0xb20
[    1.565593]  gic_starting_cpu+0x48/0x90
[    1.565595]  cpuhp_invoke_callback+0xa4/0x460
[    1.565597]  notify_cpu_starting+0xa0/0xe0
[    1.565600]  secondary_start_kernel+0xe8/0x190
[    1.565601] ---[ end trace f68728a0d3053b62 ]---
[    1.565607] GICv3: CPU16: using allocated LPI pending table @0x0000080002820000
[    1.565672] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.565681] Xen: initializing cpu16
[    1.565705] CPU16: Booted secondary processor 0x0000000100 [0x413fd0c1]
[    1.565952] Detected PIPT I-cache on CPU17
[    1.566005] GICv3: CPU17: found redistributor 101 region 0:0x0000100100360000
[    1.572625] ------------[ cut here ]------------
[    1.572630] WARNING: CPU: 17 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.572631] Modules linked in:
[    1.572635] CPU: 17 PID: 0 Comm: swapper/17 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.572637] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.572639] pc : its_cpu_init+0x824/0xb20
[    1.572641] lr : its_cpu_init+0x820/0xb20
[    1.572642] sp : ffff800011abbe80
[    1.572643] x29: ffff800011abbe80 x28: 0000000000000011 
[    1.572645] x27: 0000000000000000 x26: ffff800012220070 
[    1.572647] x25: fffffe1ffdea0c00 x24: ffff800012220000 
[    1.572649] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.572651] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.572653] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.572655] x17: 0000000000000000 x16: 0000000000000000 
[    1.572657] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.572658] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.572660] x11: 0000000000000000 x10: 0000000000000001 
[    1.572662] x9 : ffff8000106d6830 x8 : 3036333030313030 
[    1.572664] x7 : 313030303078303a x6 : 0000000000000003 
[    1.572666] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.572668] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.572670] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.572672] Call trace:
[    1.572674]  its_cpu_init+0x824/0xb20
[    1.572677]  gic_starting_cpu+0x48/0x90
[    1.572679]  cpuhp_invoke_callback+0xa4/0x460
[    1.572681]  notify_cpu_starting+0xa0/0xe0
[    1.572684]  secondary_start_kernel+0xe8/0x190
[    1.572685] ---[ end trace f68728a0d3053b63 ]---
[    1.572691] GICv3: CPU17: using allocated LPI pending table @0x0000080002830000
[    1.572751] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.572760] Xen: initializing cpu17
[    1.572782] CPU17: Booted secondary processor 0x0000000101 [0x413fd0c1]
[    1.573134] Detected PIPT I-cache on CPU18
[    1.573191] GICv3: CPU18: found redistributor 102 region 0:0x0000100100380000
[    1.579812] ------------[ cut here ]------------
[    1.579816] WARNING: CPU: 18 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.579817] Modules linked in:
[    1.579821] CPU: 18 PID: 0 Comm: swapper/18 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.579824] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.579825] pc : its_cpu_init+0x824/0xb20
[    1.579827] lr : its_cpu_init+0x820/0xb20
[    1.579828] sp : ffff800011ac3e80
[    1.579829] x29: ffff800011ac3e80 x28: 0000000000000012 
[    1.579831] x27: 0000000000000000 x26: ffff800012240070 
[    1.579833] x25: fffffe1ffdea1000 x24: ffff800012240000 
[    1.579835] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.579837] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.579839] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.579841] x17: 0000000000000000 x16: 0000000000000000 
[    1.579843] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.579845] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.579847] x11: 0000000000000000 x10: 0000000000000001 
[    1.579849] x9 : ffff8000106d6830 x8 : 3038333030313030 
[    1.579851] x7 : 313030303078303a x6 : 0000000000000003 
[    1.579852] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.579855] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.579857] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.579859] Call trace:
[    1.579860]  its_cpu_init+0x824/0xb20
[    1.579864]  gic_starting_cpu+0x48/0x90
[    1.579866]  cpuhp_invoke_callback+0xa4/0x460
[    1.579868]  notify_cpu_starting+0xa0/0xe0
[    1.579870]  secondary_start_kernel+0xe8/0x190
[    1.579872] ---[ end trace f68728a0d3053b64 ]---
[    1.579878] GICv3: CPU18: using allocated LPI pending table @0x0000080002840000
[    1.579943] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.579951] Xen: initializing cpu18
[    1.579976] CPU18: Booted secondary processor 0x0000000102 [0x413fd0c1]
[    1.580317] Detected PIPT I-cache on CPU19
[    1.580375] GICv3: CPU19: found redistributor 103 region 0:0x00001001003a0000
[    1.586996] ------------[ cut here ]------------
[    1.587001] WARNING: CPU: 19 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.587001] Modules linked in:
[    1.587005] CPU: 19 PID: 0 Comm: swapper/19 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.587008] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.587009] pc : its_cpu_init+0x824/0xb20
[    1.587011] lr : its_cpu_init+0x820/0xb20
[    1.587012] sp : ffff800011acbe80
[    1.587013] x29: ffff800011acbe80 x28: 0000000000000013 
[    1.587015] x27: 0000000000000000 x26: ffff800012260070 
[    1.587017] x25: fffffe1ffdea1400 x24: ffff800012260000 
[    1.587019] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.587021] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.587023] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.587025] x17: 0000000000000000 x16: 0000000000000000 
[    1.587027] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.587028] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.587030] x11: 0000000000000000 x10: 0000000000000001 
[    1.587032] x9 : ffff8000106d6830 x8 : 3061333030313030 
[    1.587034] x7 : 313030303078303a x6 : 0000000000000003 
[    1.587036] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.587038] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.587040] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.587042] Call trace:
[    1.587044]  its_cpu_init+0x824/0xb20
[    1.587046]  gic_starting_cpu+0x48/0x90
[    1.587049]  cpuhp_invoke_callback+0xa4/0x460
[    1.587051]  notify_cpu_starting+0xa0/0xe0
[    1.587054]  secondary_start_kernel+0xe8/0x190
[    1.587055] ---[ end trace f68728a0d3053b65 ]---
[    1.587061] GICv3: CPU19: using allocated LPI pending table @0x0000080002850000
[    1.587120] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.587128] Xen: initializing cpu19
[    1.587150] CPU19: Booted secondary processor 0x0000000103 [0x413fd0c1]
[    1.587507] Detected PIPT I-cache on CPU20
[    1.587568] GICv3: CPU20: found redistributor 104 region 0:0x00001001003c0000
[    1.594189] ------------[ cut here ]------------
[    1.594193] WARNING: CPU: 20 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.594194] Modules linked in:
[    1.594198] CPU: 20 PID: 0 Comm: swapper/20 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.594200] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.594201] pc : its_cpu_init+0x824/0xb20
[    1.594203] lr : its_cpu_init+0x820/0xb20
[    1.594204] sp : ffff800011ad3e80
[    1.594205] x29: ffff800011ad3e80 x28: 0000000000000014 
[    1.594207] x27: 0000000000000000 x26: ffff800012280070 
[    1.594210] x25: fffffe1ffdea1800 x24: ffff800012280000 
[    1.594212] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.594213] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.594216] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.594217] x17: 0000000000000000 x16: 0000000000000000 
[    1.594219] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.594221] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.594223] x11: 0000000000000000 x10: 0000000000000001 
[    1.594225] x9 : ffff8000106d6830 x8 : 3063333030313030 
[    1.594227] x7 : 313030303078303a x6 : 0000000000000003 
[    1.594229] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.594231] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.594233] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.594235] Call trace:
[    1.594237]  its_cpu_init+0x824/0xb20
[    1.594240]  gic_starting_cpu+0x48/0x90
[    1.594243]  cpuhp_invoke_callback+0xa4/0x460
[    1.594245]  notify_cpu_starting+0xa0/0xe0
[    1.594247]  secondary_start_kernel+0xe8/0x190
[    1.594248] ---[ end trace f68728a0d3053b66 ]---
[    1.594255] GICv3: CPU20: using allocated LPI pending table @0x0000080002860000
[    1.594320] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.594329] Xen: initializing cpu20
[    1.594354] CPU20: Booted secondary processor 0x0000000104 [0x413fd0c1]
[    1.594702] Detected PIPT I-cache on CPU21
[    1.594765] GICv3: CPU21: found redistributor 105 region 0:0x00001001003e0000
[    1.601385] ------------[ cut here ]------------
[    1.601390] WARNING: CPU: 21 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.601391] Modules linked in:
[    1.601395] CPU: 21 PID: 0 Comm: swapper/21 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.601397] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.601399] pc : its_cpu_init+0x824/0xb20
[    1.601400] lr : its_cpu_init+0x820/0xb20
[    1.601401] sp : ffff800011adbe80
[    1.601402] x29: ffff800011adbe80 x28: 0000000000000015 
[    1.601404] x27: 0000000000000000 x26: ffff8000122a0070 
[    1.601406] x25: fffffe1ffdea1c00 x24: ffff8000122a0000 
[    1.601408] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.601410] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.601412] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.601415] x17: 0000000000000000 x16: 0000000000000000 
[    1.601417] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.601419] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.601421] x11: 0000000000000000 x10: 0000000000000001 
[    1.601422] x9 : ffff8000106d6830 x8 : 3065333030313030 
[    1.601424] x7 : 313030303078303a x6 : 0000000000000003 
[    1.601426] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.601428] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.601430] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.601432] Call trace:
[    1.601434]  its_cpu_init+0x824/0xb20
[    1.601437]  gic_starting_cpu+0x48/0x90
[    1.601439]  cpuhp_invoke_callback+0xa4/0x460
[    1.601441]  notify_cpu_starting+0xa0/0xe0
[    1.601444]  secondary_start_kernel+0xe8/0x190
[    1.601446] ---[ end trace f68728a0d3053b67 ]---
[    1.601452] GICv3: CPU21: using allocated LPI pending table @0x0000080002870000
[    1.601512] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.601521] Xen: initializing cpu21
[    1.601543] CPU21: Booted secondary processor 0x0000000105 [0x413fd0c1]
[    1.601800] Detected PIPT I-cache on CPU22
[    1.601865] GICv3: CPU22: found redistributor 106 region 0:0x0000100100400000
[    1.608487] ------------[ cut here ]------------
[    1.608491] WARNING: CPU: 22 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.608492] Modules linked in:
[    1.608496] CPU: 22 PID: 0 Comm: swapper/22 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.608498] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.608500] pc : its_cpu_init+0x824/0xb20
[    1.608502] lr : its_cpu_init+0x820/0xb20
[    1.608503] sp : ffff800011ae3e80
[    1.608504] x29: ffff800011ae3e80 x28: 0000000000000016 
[    1.608506] x27: 0000000000000000 x26: ffff8000122c0070 
[    1.608508] x25: fffffe1ffdea2000 x24: ffff8000122c0000 
[    1.608510] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.608512] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.608514] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.608516] x17: 0000000000000000 x16: 0000000000000000 
[    1.608518] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.608520] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.608521] x11: 0000000000000000 x10: 0000000000000001 
[    1.608523] x9 : ffff8000106d6830 x8 : 3030343030313030 
[    1.608525] x7 : 313030303078303a x6 : 0000000000000003 
[    1.608527] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.608529] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.608531] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.608533] Call trace:
[    1.608535]  its_cpu_init+0x824/0xb20
[    1.608537]  gic_starting_cpu+0x48/0x90
[    1.608540]  cpuhp_invoke_callback+0xa4/0x460
[    1.608542]  notify_cpu_starting+0xa0/0xe0
[    1.608544]  secondary_start_kernel+0xe8/0x190
[    1.608546] ---[ end trace f68728a0d3053b68 ]---
[    1.608552] GICv3: CPU22: using allocated LPI pending table @0x0000080002880000
[    1.608618] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.608627] Xen: initializing cpu22
[    1.608652] CPU22: Booted secondary processor 0x0000000106 [0x413fd0c1]
[    1.608993] Detected PIPT I-cache on CPU23
[    1.609059] GICv3: CPU23: found redistributor 107 region 0:0x0000100100420000
[    1.615680] ------------[ cut here ]------------
[    1.615685] WARNING: CPU: 23 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.615686] Modules linked in:
[    1.615690] CPU: 23 PID: 0 Comm: swapper/23 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.615693] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.615694] pc : its_cpu_init+0x824/0xb20
[    1.615696] lr : its_cpu_init+0x820/0xb20
[    1.615697] sp : ffff800011aebe80
[    1.615698] x29: ffff800011aebe80 x28: 0000000000000017 
[    1.615700] x27: 0000000000000000 x26: ffff8000122e0070 
[    1.615702] x25: fffffe1ffdea2400 x24: ffff8000122e0000 
[    1.615704] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.615706] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.615708] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.615710] x17: 0000000000000000 x16: 0000000000000000 
[    1.615712] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.615714] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.615716] x11: 0000000000000000 x10: 0000000000000001 
[    1.615718] x9 : ffff8000106d6830 x8 : 3032343030313030 
[    1.615720] x7 : 313030303078303a x6 : 0000000000000003 
[    1.615722] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.615724] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.615726] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.615728] Call trace:
[    1.615729]  its_cpu_init+0x824/0xb20
[    1.615732]  gic_starting_cpu+0x48/0x90
[    1.615735]  cpuhp_invoke_callback+0xa4/0x460
[    1.615738]  notify_cpu_starting+0xa0/0xe0
[    1.615740]  secondary_start_kernel+0xe8/0x190
[    1.615741] ---[ end trace f68728a0d3053b69 ]---
[    1.615747] GICv3: CPU23: using allocated LPI pending table @0x0000080002890000
[    1.615810] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.615819] Xen: initializing cpu23
[    1.615841] CPU23: Booted secondary processor 0x0000000107 [0x413fd0c1]
[    1.616183] Detected PIPT I-cache on CPU24
[    1.616251] GICv3: CPU24: found redistributor 108 region 0:0x0000100100440000
[    1.622873] ------------[ cut here ]------------
[    1.622878] WARNING: CPU: 24 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.622879] Modules linked in:
[    1.622883] CPU: 24 PID: 0 Comm: swapper/24 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.622885] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.622887] pc : its_cpu_init+0x824/0xb20
[    1.622888] lr : its_cpu_init+0x820/0xb20
[    1.622889] sp : ffff800011af3e80
[    1.622890] x29: ffff800011af3e80 x28: 0000000000000018 
[    1.622892] x27: 0000000000000000 x26: ffff800012300070 
[    1.622895] x25: fffffe1ffdea2800 x24: ffff800012300000 
[    1.622897] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.622899] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.622900] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.622902] x17: 0000000000000000 x16: 0000000000000000 
[    1.622904] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.622906] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.622908] x11: 0000000000000000 x10: 0000000000000001 
[    1.622910] x9 : ffff8000106d6830 x8 : 3034343030313030 
[    1.622912] x7 : 313030303078303a x6 : 0000000000000003 
[    1.622914] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.622916] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.622917] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.622920] Call trace:
[    1.622921]  its_cpu_init+0x824/0xb20
[    1.622924]  gic_starting_cpu+0x48/0x90
[    1.622927]  cpuhp_invoke_callback+0xa4/0x460
[    1.622929]  notify_cpu_starting+0xa0/0xe0
[    1.622931]  secondary_start_kernel+0xe8/0x190
[    1.622932] ---[ end trace f68728a0d3053b6a ]---
[    1.622938] GICv3: CPU24: using allocated LPI pending table @0x00000800028a0000
[    1.623004] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.623014] Xen: initializing cpu24
[    1.623039] CPU24: Booted secondary processor 0x0000000108 [0x413fd0c1]
[    1.623377] Detected PIPT I-cache on CPU25
[    1.623447] GICv3: CPU25: found redistributor 109 region 0:0x0000100100460000
[    1.630068] ------------[ cut here ]------------
[    1.630073] WARNING: CPU: 25 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.630074] Modules linked in:
[    1.630078] CPU: 25 PID: 0 Comm: swapper/25 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.630080] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.630082] pc : its_cpu_init+0x824/0xb20
[    1.630084] lr : its_cpu_init+0x820/0xb20
[    1.630084] sp : ffff800011afbe80
[    1.630086] x29: ffff800011afbe80 x28: 0000000000000019 
[    1.630088] x27: 0000000000000000 x26: ffff800012320070 
[    1.630090] x25: fffffe1ffdea2c00 x24: ffff800012320000 
[    1.630092] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.630094] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.630096] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.630098] x17: 0000000000000000 x16: 0000000000000000 
[    1.630100] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.630102] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.630104] x11: 0000000000000000 x10: 0000000000000001 
[    1.630105] x9 : ffff8000106d6830 x8 : 3036343030313030 
[    1.630107] x7 : 313030303078303a x6 : 0000000000000003 
[    1.630109] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.630111] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.630113] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.630115] Call trace:
[    1.630117]  its_cpu_init+0x824/0xb20
[    1.630120]  gic_starting_cpu+0x48/0x90
[    1.630123]  cpuhp_invoke_callback+0xa4/0x460
[    1.630125]  notify_cpu_starting+0xa0/0xe0
[    1.630127]  secondary_start_kernel+0xe8/0x190
[    1.630128] ---[ end trace f68728a0d3053b6b ]---
[    1.630134] GICv3: CPU25: using allocated LPI pending table @0x00000800028b0000
[    1.630194] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.630202] Xen: initializing cpu25
[    1.630225] CPU25: Booted secondary processor 0x0000000109 [0x413fd0c1]
[    1.630482] Detected PIPT I-cache on CPU26
[    1.630555] GICv3: CPU26: found redistributor 10a region 0:0x0000100100480000
[    1.637177] ------------[ cut here ]------------
[    1.637182] WARNING: CPU: 26 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.637182] Modules linked in:
[    1.637186] CPU: 26 PID: 0 Comm: swapper/26 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.637189] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.637190] pc : its_cpu_init+0x824/0xb20
[    1.637192] lr : its_cpu_init+0x820/0xb20
[    1.637193] sp : ffff800011b03e80
[    1.637194] x29: ffff800011b03e80 x28: 000000000000001a 
[    1.637197] x27: 0000000000000000 x26: ffff800012340070 
[    1.637199] x25: fffffe1ffdea3000 x24: ffff800012340000 
[    1.637201] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.637203] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.637205] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.637207] x17: 0000000000000000 x16: 0000000000000000 
[    1.637209] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.637211] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.637213] x11: 0000000000000000 x10: 0000000000000001 
[    1.637215] x9 : ffff8000106d6830 x8 : 3038343030313030 
[    1.637217] x7 : 313030303078303a x6 : 0000000000000003 
[    1.637219] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.637221] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.637223] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.637225] Call trace:
[    1.637227]  its_cpu_init+0x824/0xb20
[    1.637229]  gic_starting_cpu+0x48/0x90
[    1.637232]  cpuhp_invoke_callback+0xa4/0x460
[    1.637234]  notify_cpu_starting+0xa0/0xe0
[    1.637236]  secondary_start_kernel+0xe8/0x190
[    1.637237] ---[ end trace f68728a0d3053b6c ]---
[    1.637243] GICv3: CPU26: using allocated LPI pending table @0x00000800028c0000
[    1.637309] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.637318] Xen: initializing cpu26
[    1.637346] CPU26: Booted secondary processor 0x000000010a [0x413fd0c1]
[    1.637606] Detected PIPT I-cache on CPU27
[    1.637679] GICv3: CPU27: found redistributor 10b region 0:0x00001001004a0000
[    1.644301] ------------[ cut here ]------------
[    1.644306] WARNING: CPU: 27 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.644306] Modules linked in:
[    1.644310] CPU: 27 PID: 0 Comm: swapper/27 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.644313] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.644315] pc : its_cpu_init+0x824/0xb20
[    1.644316] lr : its_cpu_init+0x820/0xb20
[    1.644317] sp : ffff800011b0be80
[    1.644318] x29: ffff800011b0be80 x28: 000000000000001b 
[    1.644321] x27: 0000000000000000 x26: ffff800012360070 
[    1.644323] x25: fffffe1ffdea3400 x24: ffff800012360000 
[    1.644325] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.644327] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.644329] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.644331] x17: 0000000000000000 x16: 0000000000000000 
[    1.644333] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.644335] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.644337] x11: 0000000000000000 x10: 0000000000000001 
[    1.644339] x9 : ffff8000106d6830 x8 : 3061343030313030 
[    1.644340] x7 : 313030303078303a x6 : 0000000000000003 
[    1.644342] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.644344] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.644346] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.644348] Call trace:
[    1.644350]  its_cpu_init+0x824/0xb20
[    1.644353]  gic_starting_cpu+0x48/0x90
[    1.644355]  cpuhp_invoke_callback+0xa4/0x460
[    1.644357]  notify_cpu_starting+0xa0/0xe0
[    1.644360]  secondary_start_kernel+0xe8/0x190
[    1.644362] ---[ end trace f68728a0d3053b6d ]---
[    1.644368] GICv3: CPU27: using allocated LPI pending table @0x00000800028d0000
[    1.644427] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.644436] Xen: initializing cpu27
[    1.644459] CPU27: Booted secondary processor 0x000000010b [0x413fd0c1]
[    1.644787] Detected PIPT I-cache on CPU28
[    1.644864] GICv3: CPU28: found redistributor 10c region 0:0x00001001004c0000
[    1.651487] ------------[ cut here ]------------
[    1.651491] WARNING: CPU: 28 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.651492] Modules linked in:
[    1.651496] CPU: 28 PID: 0 Comm: swapper/28 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.651498] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.651500] pc : its_cpu_init+0x824/0xb20
[    1.651501] lr : its_cpu_init+0x820/0xb20
[    1.651502] sp : ffff800011b13e80
[    1.651503] x29: ffff800011b13e80 x28: 000000000000001c 
[    1.651506] x27: 0000000000000000 x26: ffff800012380070 
[    1.651508] x25: fffffe1ffdea3800 x24: ffff800012380000 
[    1.651510] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.651512] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.651513] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.651515] x17: 0000000000000000 x16: 0000000000000000 
[    1.651517] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.651520] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.651522] x11: 0000000000000000 x10: 0000000000000001 
[    1.651524] x9 : ffff8000106d6830 x8 : 3063343030313030 
[    1.651526] x7 : 313030303078303a x6 : 0000000000000003 
[    1.651528] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.651530] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.651532] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.651534] Call trace:
[    1.651535]  its_cpu_init+0x824/0xb20
[    1.651538]  gic_starting_cpu+0x48/0x90
[    1.651541]  cpuhp_invoke_callback+0xa4/0x460
[    1.651543]  notify_cpu_starting+0xa0/0xe0
[    1.651546]  secondary_start_kernel+0xe8/0x190
[    1.651547] ---[ end trace f68728a0d3053b6e ]---
[    1.651553] GICv3: CPU28: using allocated LPI pending table @0x00000800028e0000
[    1.651622] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.651631] Xen: initializing cpu28
[    1.651659] CPU28: Booted secondary processor 0x000000010c [0x413fd0c1]
[    1.651988] Detected PIPT I-cache on CPU29
[    1.652067] GICv3: CPU29: found redistributor 10d region 0:0x00001001004e0000
[    1.658689] ------------[ cut here ]------------
[    1.658694] WARNING: CPU: 29 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.658695] Modules linked in:
[    1.658699] CPU: 29 PID: 0 Comm: swapper/29 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.658701] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.658702] pc : its_cpu_init+0x824/0xb20
[    1.658704] lr : its_cpu_init+0x820/0xb20
[    1.658705] sp : ffff800011b1be80
[    1.658706] x29: ffff800011b1be80 x28: 000000000000001d 
[    1.658708] x27: 0000000000000000 x26: ffff8000123a0070 
[    1.658710] x25: fffffe1ffdea3c00 x24: ffff8000123a0000 
[    1.658712] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.658714] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.658716] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.658717] x17: 0000000000000000 x16: 0000000000000000 
[    1.658719] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.658721] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.658723] x11: 0000000000000000 x10: 0000000000000001 
[    1.658725] x9 : ffff8000106d6830 x8 : 3065343030313030 
[    1.658727] x7 : 313030303078303a x6 : 0000000000000003 
[    1.658729] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.658731] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.658733] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.658735] Call trace:
[    1.658737]  its_cpu_init+0x824/0xb20
[    1.658740]  gic_starting_cpu+0x48/0x90
[    1.658742]  cpuhp_invoke_callback+0xa4/0x460
[    1.658744]  notify_cpu_starting+0xa0/0xe0
[    1.658747]  secondary_start_kernel+0xe8/0x190
[    1.658748] ---[ end trace f68728a0d3053b6f ]---
[    1.658754] GICv3: CPU29: using allocated LPI pending table @0x00000800028f0000
[    1.658822] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.658831] Xen: initializing cpu29
[    1.658859] CPU29: Booted secondary processor 0x000000010d [0x413fd0c1]
[    1.659190] Detected PIPT I-cache on CPU30
[    1.659270] GICv3: CPU30: found redistributor 10e region 0:0x0000100100500000
[    1.665892] ------------[ cut here ]------------
[    1.665897] WARNING: CPU: 30 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.665898] Modules linked in:
[    1.665903] CPU: 30 PID: 0 Comm: swapper/30 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.665905] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.665907] pc : its_cpu_init+0x824/0xb20
[    1.665909] lr : its_cpu_init+0x820/0xb20
[    1.665910] sp : ffff800011b23e80
[    1.665911] x29: ffff800011b23e80 x28: 000000000000001e 
[    1.665913] x27: 0000000000000000 x26: ffff8000123c0070 
[    1.665915] x25: fffffe1ffdea4000 x24: ffff8000123c0000 
[    1.665917] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.665919] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.665921] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.665923] x17: 0000000000000000 x16: 0000000000000000 
[    1.665926] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.665927] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.665929] x11: 0000000000000000 x10: 0000000000000001 
[    1.665931] x9 : ffff8000106d6830 x8 : 3030353030313030 
[    1.665933] x7 : 313030303078303a x6 : 0000000000000003 
[    1.665935] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.665937] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.665940] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.665942] Call trace:
[    1.665943]  its_cpu_init+0x824/0xb20
[    1.665946]  gic_starting_cpu+0x48/0x90
[    1.665949]  cpuhp_invoke_callback+0xa4/0x460
[    1.665951]  notify_cpu_starting+0xa0/0xe0
[    1.665954]  secondary_start_kernel+0xe8/0x190
[    1.665955] ---[ end trace f68728a0d3053b70 ]---
[    1.665961] GICv3: CPU30: using allocated LPI pending table @0x0000080002900000
[    1.666030] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.666039] Xen: initializing cpu30
[    1.666068] CPU30: Booted secondary processor 0x000000010e [0x413fd0c1]
[    1.666325] Detected PIPT I-cache on CPU31
[    1.666408] GICv3: CPU31: found redistributor 10f region 0:0x0000100100520000
[    1.673030] ------------[ cut here ]------------
[    1.673035] WARNING: CPU: 31 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.673036] Modules linked in:
[    1.673040] CPU: 31 PID: 0 Comm: swapper/31 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.673042] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.673044] pc : its_cpu_init+0x824/0xb20
[    1.673046] lr : its_cpu_init+0x820/0xb20
[    1.673047] sp : ffff800011b2be80
[    1.673048] x29: ffff800011b2be80 x28: 000000000000001f 
[    1.673050] x27: 0000000000000000 x26: ffff8000123e0070 
[    1.673052] x25: fffffe1ffdea4400 x24: ffff8000123e0000 
[    1.673054] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.673056] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.673058] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.673060] x17: 0000000000000000 x16: 0000000000000000 
[    1.673062] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.673064] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.673066] x11: 0000000000000000 x10: 0000000000000001 
[    1.673067] x9 : ffff8000106d6830 x8 : 3032353030313030 
[    1.673069] x7 : 313030303078303a x6 : 0000000000000003 
[    1.673071] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.673073] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.673075] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.673077] Call trace:
[    1.673079]  its_cpu_init+0x824/0xb20
[    1.673082]  gic_starting_cpu+0x48/0x90
[    1.673085]  cpuhp_invoke_callback+0xa4/0x460
[    1.673087]  notify_cpu_starting+0xa0/0xe0
[    1.673089]  secondary_start_kernel+0xe8/0x190
[    1.673091] ---[ end trace f68728a0d3053b71 ]---
[    1.673097] GICv3: CPU31: using allocated LPI pending table @0x0000080002910000
[    1.673163] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.673172] Xen: initializing cpu31
[    1.673199] CPU31: Booted secondary processor 0x000000010f [0x413fd0c1]
[    1.673286] smp: Brought up 1 node, 32 CPUs
[    7.518849] SMP: Total of 32 processors activated.
[    7.523681] CPU features: detected: Privileged Access Never
[    7.529336] CPU features: detected: LSE atomic instructions
[    7.534965] CPU features: detected: User Access Override
[    7.540347] CPU features: detected: 32-bit EL0 Support
[    7.545560] CPU features: detected: Common not Private translations
[    7.551892] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    7.560572] CPU features: detected: CRC32 instructions
[    7.565785] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    7.603473] CPU: All CPU(s) started at EL1
[    7.607620] alternatives: patching kernel code
[    7.612954] devtmpfs: initialized
[    7.616492] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    7.626141] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    7.633336] DMI not present or invalid.
[    7.637339] NET: Registered protocol family 16
[    7.642832] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    7.649917] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    7.657806] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    7.666114] thermal_sys: Registered thermal governor 'step_wise'
[    7.666244] Detected 15 PCC Subspaces
[    7.675899] Registering PCC driver as Mailbox controller
[    7.681291] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    7.689505] ASID allocator initialised with 65536 entries
[    7.694808] ACPI: bus type PCI registered
[    7.698882] Serial: AMBA PL011 UART driver
[    7.705349] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    7.711959] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    7.718719] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    7.725499] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    7.733634] cryptd: max_cpu_qlen set to 1000
[    7.805861] raid6: neonx8   gen()  7734 MB/s
[    7.878084] raid6: neonx8   xor()  6059 MB/s
[    7.950305] raid6: neonx4   gen()  7629 MB/s
[    8.022526] raid6: neonx4   xor()  6319 MB/s
[    8.094751] raid6: neonx2   gen()  7284 MB/s
[    8.166973] raid6: neonx2   xor()  5732 MB/s
[    8.239194] raid6: neonx1   gen()  5976 MB/s
[    8.311412] raid6: neonx1   xor()  4929 MB/s
[    8.383636] raid6: int64x8  gen()  3601 MB/s
[    8.455856] raid6: int64x8  xor()  2017 MB/s
[    8.528250] raid6: int64x4  gen()  4126 MB/s
[    8.600472] raid6: int64x4  xor()  2190 MB/s
[    8.672693] raid6: int64x2  gen()  3502 MB/s
[    8.744913] raid6: int64x2  xor()  1889 MB/s
[    8.817131] raid6: int64x1  gen()  2874 MB/s
[    8.889358] raid6: int64x1  xor()  1499 MB/s
[    8.893527] raid6: using algorithm neonx8 gen() 7734 MB/s
[    8.899001] raid6: .... xor() 6059 MB/s, rmw enabled
[    8.904031] raid6: using neon recovery algorithm
[    8.908801] ACPI: Added _OSI(Module Device)
[    8.912973] ACPI: Added _OSI(Processor Device)
[    8.917485] ACPI: Added _OSI(3.0 _SCP Extensions)
[    8.922260] ACPI: Added _OSI(Processor Aggregator Device)
[    8.927729] ACPI: Added _OSI(Linux-Dell-Video)
[    8.932243] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    8.937625] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    8.963404] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    8.975950] ACPI: Interpreter enabled
[    8.979521] ACPI: Using GIC for interrupt routing
[    8.984298] ACPI: MCFG table detected, 5 entries
[    8.989069] HEST: Table parsing has been initialized.
[    9.041594] ARMH0011:00: ttyAMA0 at MMIO 0x100002600000 (irq = 79, base_baud = 0) is a SBSA
[    9.132609] printk: console [ttyAMA0] enabled
[    9.138653] ARMH0011:01: ttyAMA1 at MMIO 0x100002620000 (irq = 80, base_baud = 0) is a SBSA
[    9.149020] ACPI: PCI Root Bridge [PCI0] (domain 000c [bus 00-ff])
[    9.155187] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.164387] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control
[    9.172211] acpi PNP0A08:00: MCFG quirk: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.185132] acpi PNP0A08:00: ECAM area [mem 0x33fff0000000-0x33ffffffffff] reserved by PNP0C02:00
[    9.194018] acpi PNP0A08:00: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff]
[    9.202237] PCI host bridge to bus 000c:00
[    9.206282] pci_bus 000c:00: root bus resource [mem 0x40000000-0x4fffffff window]
[    9.213872] pci_bus 000c:00: root bus resource [mem 0x300000000000-0x33ffdfffffff window]
[    9.222126] pci_bus 000c:00: root bus resource [bus 00-ff]
[    9.227695] pci 000c:00:00.0: [1def:e100] type 00 class 0x060000
[    9.233809] pci 000c:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.241413] pci 000c:00:01.0: [1def:e101] type 01 class 0x060400
[    9.247498] pci 000c:00:01.0: supports D1 D2
[    9.251768] pci 000c:00:01.0: PME# supported from D0 D1 D3hot
[    9.257638] pci 000c:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.266370] pci 000c:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    9.274542] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    9.286126] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    9.296709] pci 000c:00:01.0: BAR 8: assigned [mem 0x40000000-0x401fffff]
[    9.303527] pci 000c:00:01.0: BAR 9: assigned [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.312043] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.318354] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.325043] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.331377] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.338064] pci 000c:00:01.0: PCI bridge to [bus 01]
[    9.343081] pci 000c:00:01.0:   bridge window [mem 0x40000000-0x401fffff]
[    9.349964] pci 000c:00:01.0:   bridge window [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.358485] pci_bus 000c:00: resource 4 [mem 0x40000000-0x4fffffff window]
[    9.365413] pci_bus 000c:00: resource 5 [mem 0x300000000000-0x33ffdfffffff window]
[    9.373060] pci_bus 000c:01: resource 1 [mem 0x40000000-0x401fffff]
[    9.379386] pci_bus 000c:01: resource 2 [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.387426] ACPI: PCI Root Bridge [PCI1] (domain 000d [bus 00-ff])
[    9.393623] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.402829] acpi PNP0A08:01: PCIe port services disabled; not requesting _OSC control
[    9.410650] acpi PNP0A08:01: MCFG quirk: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.423565] acpi PNP0A08:01: ECAM area [mem 0x37fff0000000-0x37ffffffffff] reserved by PNP0C02:00
[    9.432450] acpi PNP0A08:01: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff]
[    9.440672] PCI host bridge to bus 000d:00
[    9.444718] pci_bus 000d:00: root bus resource [mem 0x50000000-0x5fffffff window]
[    9.452307] pci_bus 000d:00: root bus resource [mem 0x340000000000-0x37ffdfffffff window]
[    9.460561] pci_bus 000d:00: root bus resource [bus 00-ff]
[    9.466126] pci 000d:00:00.0: [1def:e100] type 00 class 0x060000
[    9.472221] pci 000d:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.479842] pci 000d:00:01.0: [1def:e101] type 01 class 0x060400
[    9.485920] pci 000d:00:01.0: supports D1 D2
[    9.490204] pci 000d:00:01.0: PME# supported from D0 D1 D3hot
[    9.496068] pci 000d:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.503774] pci 000d:01:00.0: [10de:1e89] type 00 class 0x030000
[    9.509765] pci 000d:01:00.0: reg 0x10: [mem 0x50000000-0x50ffffff]
[    9.516102] pci 000d:01:00.0: reg 0x14: [mem 0x340000000000-0x34000fffffff 64bit pref]
[    9.524108] pci 000d:01:00.0: reg 0x1c: [mem 0x340010000000-0x340011ffffff 64bit pref]
[    9.532091] pci 000d:01:00.0: reg 0x24: [io  0x57ffe000-0x57ffe07f]
[    9.538408] pci 000d:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    9.545242] pci 000d:01:00.0: PME# supported from D0 D3hot D3cold
[    9.551385] pci 000d:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.559016] pci 000d:01:00.1: [10de:10f8] type 00 class 0x040300
[    9.565059] pci 000d:01:00.1: reg 0x10: [mem 0x51000000-0x51003fff]
[    9.571489] pci 000d:01:00.1: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.579068] pci 000d:01:00.2: [10de:1ad8] type 00 class 0x0c0330
[    9.585116] pci 000d:01:00.2: reg 0x10: [mem 0x340012000000-0x34001203ffff 64bit pref]
[    9.593123] pci 000d:01:00.2: reg 0x1c: [mem 0x340012040000-0x34001204ffff 64bit pref]
[    9.601150] pci 000d:01:00.2: PME# supported from D0 D3hot D3cold
[    9.607276] pci 000d:01:00.2: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.614914] pci 000d:01:00.3: [10de:1ad9] type 00 class 0x0c8000
[    9.620963] pci 000d:01:00.3: reg 0x10: [mem 0x51004000-0x51004fff]
[    9.627362] pci 000d:01:00.3: PME# supported from D0 D3hot D3cold
[    9.633490] pci 000d:01:00.3: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.641129] pci 000d:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    9.662520] pci 000d:00:01.0: BAR 9: assigned [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.670962] pci 000d:00:01.0: BAR 8: assigned [mem 0x50000000-0x517fffff]
[    9.677794] pci 000d:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.684124] pci 000d:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.690815] pci 000d:01:00.0: BAR 1: assigned [mem 0x340000000000-0x34000fffffff 64bit pref]
[    9.699347] pci 000d:01:00.0: BAR 3: assigned [mem 0x340010000000-0x340011ffffff 64bit pref]
[    9.707854] pci 000d:01:00.0: BAR 0: assigned [mem 0x50000000-0x50ffffff]
[    9.714689] pci 000d:01:00.0: BAR 6: assigned [mem 0x51000000-0x5107ffff pref]
[    9.721983] pci 000d:01:00.2: BAR 0: assigned [mem 0x340012000000-0x34001203ffff 64bit pref]
[    9.730510] pci 000d:01:00.2: BAR 3: assigned [mem 0x340012040000-0x34001204ffff 64bit pref]
[    9.739017] pci 000d:01:00.1: BAR 0: assigned [mem 0x51080000-0x51083fff]
[    9.745852] pci 000d:01:00.3: BAR 0: assigned [mem 0x51084000-0x51084fff]
[    9.752709] pci 000d:01:00.0: BAR 5: no space for [io  size 0x0080]
[    9.759037] pci 000d:01:00.0: BAR 5: failed to assign [io  size 0x0080]
[    9.765727] pci 000d:00:01.0: PCI bridge to [bus 01]
[    9.770743] pci 000d:00:01.0:   bridge window [mem 0x50000000-0x517fffff]
[    9.777622] pci 000d:00:01.0:   bridge window [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.786147] pci_bus 000d:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    9.795268] pci_bus 000d:00: resource 4 [mem 0x50000000-0x5fffffff window]
[    9.802194] pci_bus 000d:00: resource 5 [mem 0x340000000000-0x37ffdfffffff window]
[    9.809835] pci_bus 000d:01: resource 1 [mem 0x50000000-0x517fffff]
[    9.816156] pci_bus 000d:01: resource 2 [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.824217] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus 00-ff])
[    9.830400] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.839607] acpi PNP0A08:03: PCIe port services disabled; not requesting _OSC control
[    9.847429] acpi PNP0A08:03: MCFG quirk: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.860340] acpi PNP0A08:03: ECAM area [mem 0x3ffff0000000-0x3fffffffffff] reserved by PNP0C02:00
[    9.869225] acpi PNP0A08:03: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff]
[    9.877468] PCI host bridge to bus 0000:00
[    9.881519] pci_bus 0000:00: root bus resource [mem 0x70000000-0x7fffffff window]
[    9.889101] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3fffdfffffff window]
[    9.897357] pci_bus 0000:00: root bus resource [bus 00-ff]
[    9.902923] pci 0000:00:00.0: [1def:e100] type 00 class 0x060000
[    9.909019] pci 0000:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.916638] pci 0000:00:01.0: [1def:e101] type 01 class 0x060400
[    9.922715] pci 0000:00:01.0: supports D1 D2
[    9.927001] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    9.932865] pci 0000:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.940565] pci 0000:01:00.0: [8086:1589] type 00 class 0x020000
[    9.946564] pci 0000:01:00.0: reg 0x10: [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    9.954571] pci 0000:01:00.0: reg 0x1c: [mem 0x3c0004818000-0x3c000481ffff 64bit pref]
[    9.962553] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    9.969374] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    9.975503] pci 0000:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.983146] pci 0000:01:00.1: [8086:1589] type 00 class 0x020000
[    9.989185] pci 0000:01:00.1: reg 0x10: [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    9.997192] pci 0000:01:00.1: reg 0x1c: [mem 0x3c0004810000-0x3c0004817fff 64bit pref]
[   10.005175] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.011997] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[   10.018116] pci 0000:01:00.1: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.025763] pci 0000:01:00.2: [8086:1589] type 00 class 0x020000
[   10.031806] pci 0000:01:00.2: reg 0x10: [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[   10.039814] pci 0000:01:00.2: reg 0x1c: [mem 0x3c0004808000-0x3c000480ffff 64bit pref]
[   10.047797] pci 0000:01:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.054613] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[   10.060738] pci 0000:01:00.2: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.068384] pci 0000:01:00.3: [8086:1589] type 00 class 0x020000
[   10.074429] pci 0000:01:00.3: reg 0x10: [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[   10.082436] pci 0000:01:00.3: reg 0x1c: [mem 0x3c0004800000-0x3c0004807fff 64bit pref]
[   10.090418] pci 0000:01:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.097235] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[   10.103360] pci 0000:01:00.3: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.111025] pci 0000:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01-02] add_size 1000
[   10.119500] pci 0000:00:01.0: BAR 9: assigned [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.128003] pci 0000:00:01.0: BAR 8: assigned [mem 0x70000000-0x701fffff]
[   10.134842] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.141177] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.147860] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.154192] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.160889] pci 0000:01:00.0: BAR 0: assigned [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[   10.169415] pci 0000:01:00.1: BAR 0: assigned [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[   10.177922] pci 0000:01:00.2: BAR 0: assigned [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[   10.186429] pci 0000:01:00.3: BAR 0: assigned [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[   10.194936] pci 0000:01:00.0: BAR 6: assigned [mem 0x70000000-0x7007ffff pref]
[   10.202208] pci 0000:01:00.1: BAR 6: assigned [mem 0x70080000-0x700fffff pref]
[   10.209500] pci 0000:01:00.2: BAR 6: assigned [mem 0x70100000-0x7017ffff pref]
[   10.216793] pci 0000:01:00.3: BAR 6: assigned [mem 0x70180000-0x701fffff pref]
[   10.224083] pci 0000:01:00.0: BAR 3: assigned [mem 0x3c0004000000-0x3c0004007fff 64bit pref]
[   10.232610] pci 0000:01:00.1: BAR 3: assigned [mem 0x3c0004008000-0x3c000400ffff 64bit pref]
[   10.241117] pci 0000:01:00.2: BAR 3: assigned [mem 0x3c0004010000-0x3c0004017fff 64bit pref]
[   10.249624] pci 0000:01:00.3: BAR 3: assigned [mem 0x3c0004018000-0x3c000401ffff 64bit pref]
[   10.258130] pci 0000:00:01.0: PCI bridge to [bus 01-02]
[   10.263385] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x701fffff]
[   10.270258] pci 0000:00:01.0:   bridge window [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.278785] pci_bus 0000:00: resource 4 [mem 0x70000000-0x7fffffff window]
[   10.285712] pci_bus 0000:00: resource 5 [mem 0x3c0000000000-0x3fffdfffffff window]
[   10.293359] pci_bus 0000:01: resource 1 [mem 0x70000000-0x701fffff]
[   10.299679] pci_bus 0000:01: resource 2 [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.307744] ACPI: PCI Root Bridge [PCI6] (domain 0004 [bus 00-ff])
[   10.313924] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.323129] acpi PNP0A08:06: PCIe port services disabled; not requesting _OSC control
[   10.330957] acpi PNP0A08:06: MCFG quirk: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[   10.343862] acpi PNP0A08:06: ECAM area [mem 0x2bfff0000000-0x2bffffffffff] reserved by PNP0C02:00
[   10.352749] acpi PNP0A08:06: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff]
[   10.360970] PCI host bridge to bus 0004:00
[   10.365015] pci_bus 0004:00: root bus resource [mem 0x20000000-0x2fffffff window]
[   10.372605] pci_bus 0004:00: root bus resource [mem 0x280000000000-0x2bffdfffffff window]
[   10.380865] pci_bus 0004:00: root bus resource [bus 00-ff]
[   10.386424] pci 0004:00:00.0: [1def:e110] type 00 class 0x060000
[   10.392519] pci 0004:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.400140] pci 0004:00:01.0: [1def:e111] type 01 class 0x060400
[   10.406219] pci 0004:00:01.0: supports D1 D2
[   10.410501] pci 0004:00:01.0: PME# supported from D0 D1 D3hot
[   10.416367] pci 0004:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.424013] pci 0004:00:03.0: [1def:e113] type 01 class 0x060400
[   10.430091] pci 0004:00:03.0: supports D1 D2
[   10.434373] pci 0004:00:03.0: PME# supported from D0 D1 D3hot
[   10.440238] pci 0004:00:03.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.447885] pci 0004:00:05.0: [1def:e115] type 01 class 0x060400
[   10.453971] pci 0004:00:05.0: supports D1 D2
[   10.458244] pci 0004:00:05.0: PME# supported from D0 D1 D3hot
[   10.464191] pci 0004:00:05.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.471884] pci 0004:01:00.0: [1a03:1150] type 01 class 0x060400
[   10.477909] pci 0004:01:00.0: enabling Extended Tags
[   10.482949] pci 0004:01:00.0: supports D1 D2
[   10.487213] pci 0004:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   10.493974] pci 0004:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.501634] pci_bus 0004:02: extended config space not accessible
[   10.507750] pci 0004:02:00.0: [1a03:2000] type 00 class 0x030000
[   10.513814] pci 0004:02:00.0: reg 0x10: [mem 0x20000000-0x20ffffff]
[   10.520146] pci 0004:02:00.0: reg 0x14: [mem 0x21000000-0x2101ffff]
[   10.526481] pci 0004:02:00.0: reg 0x18: [io  0x27fff000-0x27fff07f]
[   10.532892] pci 0004:02:00.0: supports D1 D2
[   10.537125] pci 0004:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   10.543878] pci 0004:02:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.551622] pci 0004:03:00.0: [1912:0014] type 00 class 0x0c0330
[   10.557615] pci 0004:03:00.0: reg 0x10: [mem 0x21200000-0x21201fff 64bit]
[   10.564567] pci 0004:03:00.0: PME# supported from D0 D3hot D3cold
[   10.570689] pci 0004:03:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.578372] pci 0004:04:00.0: [8086:1533] type 00 class 0x020000
[   10.584375] pci 0004:04:00.0: reg 0x10: [mem 0x21100000-0x2117ffff]
[   10.590715] pci 0004:04:00.0: reg 0x18: [io  0x27ffe000-0x27ffe01f]
[   10.597037] pci 0004:04:00.0: reg 0x1c: [mem 0x21180000-0x21183fff]
[   10.603535] pci 0004:04:00.0: PME# supported from D0 D3hot D3cold
[   10.609671] pci 0004:04:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.617298] pci 0004:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-02] add_size 200000 add_align 100000
[   10.629108] pci 0004:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[   10.637312] pci 0004:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[   10.648896] pci 0004:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 03] add_size 100000 add_align 100000
[   10.659475] pci 0004:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[   10.671035] pci 0004:00:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[   10.681621] pci 0004:00:01.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[   10.688424] pci 0004:00:01.0: BAR 9: assigned [mem 0x280000000000-0x2800001fffff 64bit pref]
[   10.696950] pci 0004:00:03.0: BAR 8: assigned [mem 0x21800000-0x219fffff]
[   10.703789] pci 0004:00:03.0: BAR 9: assigned [mem 0x280000200000-0x2800003fffff 64bit pref]
[   10.712314] pci 0004:00:05.0: BAR 8: assigned [mem 0x21a00000-0x21bfffff]
[   10.719153] pci 0004:00:05.0: BAR 9: assigned [mem 0x280000400000-0x2800005fffff 64bit pref]
[   10.727679] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.733990] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.740678] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[   10.747011] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   10.753699] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[   10.760032] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   10.766721] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.773054] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.779740] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[   10.786073] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   10.792763] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[   10.799094] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   10.805784] pci 0004:01:00.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[   10.812644] pci 0004:01:00.0: BAR 7: no space for [io  size 0x1000]
[   10.818974] pci 0004:01:00.0: BAR 7: failed to assign [io  size 0x1000]
[   10.825664] pci 0004:02:00.0: BAR 0: assigned [mem 0x20000000-0x20ffffff]
[   10.832527] pci 0004:02:00.0: BAR 1: assigned [mem 0x21000000-0x2101ffff]
[   10.839384] pci 0004:02:00.0: BAR 2: no space for [io  size 0x0080]
[   10.845710] pci 0004:02:00.0: BAR 2: failed to assign [io  size 0x0080]
[   10.852399] pci 0004:01:00.0: PCI bridge to [bus 02]
[   10.857416] pci 0004:01:00.0:   bridge window [mem 0x20000000-0x217fffff]
[   10.864301] pci 0004:00:01.0: PCI bridge to [bus 01-02]
[   10.869569] pci 0004:00:01.0:   bridge window [mem 0x20000000-0x217fffff]
[   10.876446] pci 0004:00:01.0:   bridge window [mem 0x280000000000-0x2800001fffff 64bit pref]
[   10.884976] pci 0004:03:00.0: BAR 0: assigned [mem 0x21800000-0x21801fff 64bit]
[   10.892348] pci 0004:00:03.0: PCI bridge to [bus 03]
[   10.897343] pci 0004:00:03.0:   bridge window [mem 0x21800000-0x219fffff]
[   10.904225] pci 0004:00:03.0:   bridge window [mem 0x280000200000-0x2800003fffff 64bit pref]
[   10.912752] pci 0004:04:00.0: BAR 0: assigned [mem 0x21a00000-0x21a7ffff]
[   10.919595] pci 0004:04:00.0: BAR 3: assigned [mem 0x21a80000-0x21a83fff]
[   10.926450] pci 0004:04:00.0: BAR 2: no space for [io  size 0x0020]
[   10.932778] pci 0004:04:00.0: BAR 2: failed to assign [io  size 0x0020]
[   10.939465] pci 0004:00:05.0: PCI bridge to [bus 04]
[   10.944480] pci 0004:00:05.0:   bridge window [mem 0x21a00000-0x21bfffff]
[   10.951365] pci 0004:00:05.0:   bridge window [mem 0x280000400000-0x2800005fffff 64bit pref]
[   10.959887] pci_bus 0004:00: Some PCI device resources are unassigned, try booting with pci=realloc
[   10.969008] pci_bus 0004:00: resource 4 [mem 0x20000000-0x2fffffff window]
[   10.975925] pci_bus 0004:00: resource 5 [mem 0x280000000000-0x2bffdfffffff window]
[   10.983572] pci_bus 0004:01: resource 1 [mem 0x20000000-0x217fffff]
[   10.989896] pci_bus 0004:01: resource 2 [mem 0x280000000000-0x2800001fffff 64bit pref]
[   10.997901] pci_bus 0004:02: resource 1 [mem 0x20000000-0x217fffff]
[   11.004218] pci_bus 0004:03: resource 1 [mem 0x21800000-0x219fffff]
[   11.010554] pci_bus 0004:03: resource 2 [mem 0x280000200000-0x2800003fffff 64bit pref]
[   11.018560] pci_bus 0004:04: resource 1 [mem 0x21a00000-0x21bfffff]
[   11.024879] pci_bus 0004:04: resource 2 [mem 0x280000400000-0x2800005fffff 64bit pref]
[   11.032960] ACPI: PCI Root Bridge [PCI7] (domain 0005 [bus 00-ff])
[   11.039123] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   11.048346] acpi PNP0A08:07: PCIe port services disabled; not requesting _OSC control
[   11.056170] acpi PNP0A08:07: MCFG quirk: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[   11.069158] acpi PNP0A08:07: ECAM area [mem 0x2ffff0000000-0x2fffffffffff] reserved by PNP0C02:00
[   11.078052] acpi PNP0A08:07: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff]
[   11.086264] PCI host bridge to bus 0005:00
[   11.090309] pci_bus 0005:00: root bus resource [mem 0x30000000-0x3fffffff window]
[   11.097901] pci_bus 0005:00: root bus resource [mem 0x2c0000000000-0x2fffdfffffff window]
[   11.106156] pci_bus 0005:00: root bus resource [bus 00-ff]
[   11.111726] pci 0005:00:00.0: [1def:e110] type 00 class 0x060000
[   11.117821] pci 0005:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.125438] pci 0005:00:01.0: [1def:e111] type 01 class 0x060400
[   11.131528] pci 0005:00:01.0: supports D1 D2
[   11.135796] pci 0005:00:01.0: PME# supported from D0 D1 D3hot
[   11.141669] pci 0005:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.149306] pci 0005:00:03.0: [1def:e113] type 01 class 0x060400
[   11.155385] pci 0005:00:03.0: supports D1 D2
[   11.159667] pci 0005:00:03.0: PME# supported from D0 D1 D3hot
[   11.165535] pci 0005:00:03.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.173180] pci 0005:00:05.0: [1def:e115] type 01 class 0x060400
[   11.179266] pci 0005:00:05.0: supports D1 D2
[   11.183538] pci 0005:00:05.0: PME# supported from D0 D1 D3hot
[   11.189407] pci 0005:00:05.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.197048] pci 0005:00:07.0: [1def:e117] type 01 class 0x060400
[   11.203124] pci 0005:00:07.0: supports D1 D2
[   11.207410] pci 0005:00:07.0: PME# supported from D0 D1 D3hot
[   11.213278] pci 0005:00:07.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.222046] pci 0005:02:00.0: [1912:0014] type 00 class 0x0c0330
[   11.228040] pci 0005:02:00.0: reg 0x10: [mem 0x30100000-0x30101fff 64bit]
[   11.234991] pci 0005:02:00.0: PME# supported from D0 D3hot D3cold
[   11.241116] pci 0005:02:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.249841] pci 0005:04:00.0: [126f:2263] type 00 class 0x010802
[   11.255833] pci 0005:04:00.0: reg 0x10: [mem 0x30000000-0x30003fff 64bit]
[   11.262831] pci 0005:04:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.270423] pci 0005:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[   11.278641] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[   11.290225] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[   11.300807] pci 0005:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[   11.309024] pci 0005:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[   11.320608] pci 0005:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 02] add_size 100000 add_align 100000
[   11.331191] pci 0005:00:05.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[   11.339404] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[   11.350991] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[   11.361573] pci 0005:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[   11.369789] pci 0005:00:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[   11.381379] pci 0005:00:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[   11.391959] pci 0005:00:01.0: BAR 8: assigned [mem 0x30000000-0x301fffff]
[   11.398764] pci 0005:00:01.0: BAR 9: assigned [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.407290] pci 0005:00:03.0: BAR 8: assigned [mem 0x30200000-0x303fffff]
[   11.414128] pci 0005:00:03.0: BAR 9: assigned [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.422654] pci 0005:00:05.0: BAR 8: assigned [mem 0x30400000-0x305fffff]
[   11.429492] pci 0005:00:05.0: BAR 9: assigned [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.438019] pci 0005:00:07.0: BAR 8: assigned [mem 0x30600000-0x307fffff]
[   11.444858] pci 0005:00:07.0: BAR 9: assigned [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.453383] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[   11.459695] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   11.466383] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[   11.472755] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   11.479436] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[   11.485768] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   11.492463] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[   11.498788] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[   11.505484] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[   11.511813] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[   11.518496] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[   11.524829] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   11.531522] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[   11.537850] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   11.544540] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[   11.550870] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   11.557561] pci 0005:00:01.0: PCI bridge to [bus 01]
[   11.562578] pci 0005:00:01.0:   bridge window [mem 0x30000000-0x301fffff]
[   11.569455] pci 0005:00:01.0:   bridge window [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.577983] pci 0005:02:00.0: BAR 0: assigned [mem 0x30200000-0x30201fff 64bit]
[   11.585354] pci 0005:00:03.0: PCI bridge to [bus 02]
[   11.590354] pci 0005:00:03.0:   bridge window [mem 0x30200000-0x303fffff]
[   11.597231] pci 0005:00:03.0:   bridge window [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.605758] pci 0005:00:05.0: PCI bridge to [bus 03]
[   11.610753] pci 0005:00:05.0:   bridge window [mem 0x30400000-0x305fffff]
[   11.617631] pci 0005:00:05.0:   bridge window [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.626159] pci 0005:04:00.0: BAR 0: assigned [mem 0x30600000-0x30603fff 64bit]
[   11.633530] pci 0005:00:07.0: PCI bridge to [bus 04]
[   11.638530] pci 0005:00:07.0:   bridge window [mem 0x30600000-0x307fffff]
[   11.645426] pci 0005:00:07.0:   bridge window [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.653936] pci_bus 0005:00: resource 4 [mem 0x30000000-0x3fffffff window]
[   11.660863] pci_bus 0005:00: resource 5 [mem 0x2c0000000000-0x2fffdfffffff window]
[   11.668509] pci_bus 0005:01: resource 1 [mem 0x30000000-0x301fffff]
[   11.674829] pci_bus 0005:01: resource 2 [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.682834] pci_bus 0005:02: resource 1 [mem 0x30200000-0x303fffff]
[   11.689152] pci_bus 0005:02: resource 2 [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.697158] pci_bus 0005:03: resource 1 [mem 0x30400000-0x305fffff]
[   11.703475] pci_bus 0005:03: resource 2 [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.711486] pci_bus 0005:04: resource 1 [mem 0x30600000-0x307fffff]
[   11.717799] pci_bus 0005:04: resource 2 [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.726045] xen:balloon: Initialising balloon driver
[   11.731018] iommu: Default domain type: Translated 
[   11.735976] pci 000d:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[   11.744386] pci 0004:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[   11.752798] pci 000d:01:00.0: vgaarb: bridge control possible
[   11.758582] pci 0004:02:00.0: vgaarb: bridge control possible
[   11.764398] pci 0004:02:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[   11.773375] vgaarb: loaded
[   11.776167] SCSI subsystem initialized
[   11.779916] ACPI: bus type USB registered
[   11.784011] usbcore: registered new interface driver usbfs
[   11.789575] usbcore: registered new interface driver hub
[   11.794962] usbcore: registered new device driver usb
[   11.800080] pps_core: LinuxPPS API ver. 1 registered
[   11.805097] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[   11.814349] PTP clock support registered
[   11.818404] Registered efivars operations
[   11.822384] No ACPI PMU IRQ for CPU0
[   11.825996] No ACPI PMU IRQ for CPU1
[   11.829649] No ACPI PMU IRQ for CPU2
[   11.833287] No ACPI PMU IRQ for CPU3
[   11.836940] No ACPI PMU IRQ for CPU4
[   11.840579] No ACPI PMU IRQ for CPU5
[   11.844231] No ACPI PMU IRQ for CPU6
[   11.847870] No ACPI PMU IRQ for CPU7
[   11.851528] No ACPI PMU IRQ for CPU8
[   11.855162] No ACPI PMU IRQ for CPU9
[   11.858814] No ACPI PMU IRQ for CPU10
[   11.862542] No ACPI PMU IRQ for CPU11
[   11.866280] No ACPI PMU IRQ for CPU12
[   11.870007] No ACPI PMU IRQ for CPU13
[   11.873746] No ACPI PMU IRQ for CPU14
[   11.877472] No ACPI PMU IRQ for CPU15
[   11.881211] No ACPI PMU IRQ for CPU16
[   11.884937] No ACPI PMU IRQ for CPU17
[   11.888676] No ACPI PMU IRQ for CPU18
[   11.892403] No ACPI PMU IRQ for CPU19
[   11.896142] No ACPI PMU IRQ for CPU20
[   11.899868] No ACPI PMU IRQ for CPU21
[   11.903608] No ACPI PMU IRQ for CPU22
[   11.907333] No ACPI PMU IRQ for CPU23
[   11.911073] No ACPI PMU IRQ for CPU24
[   11.914798] No ACPI PMU IRQ for CPU25
[   11.918539] No ACPI PMU IRQ for CPU26
[   11.922264] No ACPI PMU IRQ for CPU27
[   11.926004] No ACPI PMU IRQ for CPU28
[   11.929729] No ACPI PMU IRQ for CPU29
[   11.933469] No ACPI PMU IRQ for CPU30
[   11.937194] No ACPI PMU IRQ for CPU31
[   11.942314] clocksource: Switched to clocksource arch_sys_counter
[   12.123750] pnp: PnP ACPI init
[   12.128129] system 00:00: [mem 0x3bfff0000000-0x3bffffffffff window] has been reserved
[   12.136045] system 00:00: [mem 0x3ffff0000000-0x3fffffffffff window] could not be reserved
[   12.144376] system 00:00: [mem 0x23fff0000000-0x23ffffffffff window] has been reserved
[   12.152359] system 00:00: [mem 0x27fff0000000-0x27ffffffffff window] has been reserved
[   12.160347] system 00:00: [mem 0x2bfff0000000-0x2bffffffffff window] could not be reserved
[   12.168681] system 00:00: [mem 0x2ffff0000000-0x2fffffffffff window] could not be reserved
[   12.177014] system 00:00: [mem 0x7bfff0000000-0x7bffffffffff window] has been reserved
[   12.184995] system 00:00: [mem 0x7ffff0000000-0x7fffffffffff window] has been reserved
[   12.192982] system 00:00: [mem 0x63fff0000000-0x63ffffffffff window] has been reserved
[   12.200971] system 00:00: [mem 0x67fff0000000-0x67ffffffffff window] has been reserved
[   12.208955] system 00:00: [mem 0x6bfff0000000-0x6bffffffffff window] has been reserved
[   12.216941] system 00:00: [mem 0x6ffff0000000-0x6fffffffffff window] has been reserved
[   12.224927] system 00:00: [mem 0x33fff0000000-0x33ffffffffff window] could not be reserved
[   12.233266] system 00:00: [mem 0x37fff0000000-0x37ffffffffff window] could not be reserved
[   12.241610] pnp: PnP ACPI: found 1 devices
[   12.248888] NET: Registered protocol family 2
[   12.253400] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[   12.262000] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[   12.270146] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[   12.278006] TCP: Hash tables configured (established 65536 bind 65536)
[   12.284582] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[   12.291459] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[   12.298883] NET: Registered protocol family 1
[   12.303488] RPC: Registered named UNIX socket transport module.
[   12.309382] RPC: Registered udp transport module.
[   12.314134] RPC: Registered tcp transport module.
[   12.318907] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   12.325489] pci 000d:01:00.1: D0 power state depends on 000d:01:00.0
[   12.331919] pci 000d:01:00.2: D0 power state depends on 000d:01:00.0
[   12.338328] pci 000d:01:00.2: enabling device (0000 -> 0002)
[   12.344068] pci 000d:01:00.3: D0 power state depends on 000d:01:00.0
[   12.350498] pci 0004:03:00.0: enabling device (0000 -> 0002)
[   12.356205] pci 0005:02:00.0: enabling device (0000 -> 0002)
[   12.361914] PCI: CLS 128 bytes, default 64
[   12.368515] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 1 counters available
[   12.378793] workingset: timestamp_bits=42 max_order=21 bucket_order=0
[   12.386998] NFS: Registering the id_resolver key type
[   12.392017] Key type id_resolver registered
[   12.396250] Key type id_legacy registered
[   12.400740] Key type cifs.idmap registered
[   12.419588] xor: measuring software checksum speed
[   12.425342]    8regs           :  9797 MB/sec
[   12.430491]    32regs          : 11749 MB/sec
[   12.435497]    arm64_neon      : 14034 MB/sec
[   12.439804] xor: using function: arm64_neon (14034 MB/sec)
[   12.445381] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[   12.452860] io scheduler mq-deadline registered
[   12.457426] io scheduler kyber registered
[   12.462842] gpio-dwapb APMC0D07:02: no IRQ for port0
[   12.468758] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[   12.477139] ACPI: Power Button [PWRB]
[   12.481543] GHES: APEI firmware first mode is enabled by APEI bit.
[   12.487741] EINJ: Error INJection is initialized.
[   12.492491] ACPI GTDT: found 1 SBSA generic Watchdog(s).
[   12.498364] xen:xen_evtchn: Event-channel device installed
[   12.504508] ast 0004:02:00.0: [drm] platform has no IO space, trying MMIO
[   12.511293] ast 0004:02:00.0: [drm] Using P2A bridge for configuration
[   12.517872] ast 0004:02:00.0: [drm] AST 2500 detected
[   12.522976] ast 0004:02:00.0: [drm] Analog VGA only
[   12.527926] ast 0004:02:00.0: [drm] dram MCLK=800 Mhz type=8 bus_width=16
[   12.534902] [TTM] Zone  kernel: Available graphics memory: 4050254 KiB
[   12.541403] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[   12.548000] [TTM] Initializing pool allocator
[   12.552405] [TTM] Initializing DMA pool allocator
[   12.557478] [drm] Initialized ast 0.1.0 20120228 for 0004:02:00.0 on minor 0
[   12.583391] Console: switching to colour frame buffer device 128x48
[   12.591827] ast 0004:02:00.0: [drm] fb0: astdrmfb frame buffer device
[   12.612862] brd: module loaded
[   12.620351] loop: module loaded
[   12.624001] nvme nvme0: pci function 0005:04:00.0
[   12.628987] igb: Intel(R) Gigabit Ethernet Network Driver
[   12.630897] DEBUG dma_alloc_attrs 432 size=512 flags=cc0 attr=0
[   12.634355] igb: Copyright (c) 2007-2014 Intel Corporation.
[   12.640380] DEBUG dma_alloc_attrs 436 size=512 flags=cc0 attr=0
[   12.652653] DEBUG xen_swiotlb_alloc_coherent 287 size=512 flags=cc0 attr=0
[   12.659507] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   12.667189] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005200000 dev_addr=80005200000
[   12.675095] DEBUG dma_alloc_attrs 432 size=2048 flags=cc0 attr=0
[   12.682347] DEBUG dma_alloc_attrs 436 size=2048 flags=cc0 attr=0
[   12.687249] pps pps0: new PPS source ptp0
[   12.688329] DEBUG xen_swiotlb_alloc_coherent 287 size=2048 flags=cc0 attr=0
[   12.692443] igb 0004:04:00.0: added PHC on eth0
[   12.699447] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   12.699453] DEBUG xen_swiotlb_alloc_coherent 323 phys=800055d3000 dev_addr=800055d3000
[   12.704021] igb 0004:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[   12.713239] DEBUG xen_swiotlb_map_page 400 phys=800056f0000 dev_addr=800056f0000
[   12.719080] igb 0004:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:3b:50:52
[   12.719139] igb 0004:04:00.0: eth0: PBA No: 000300-000
[   12.733522] DEBUG xen_swiotlb_map_page 400 phys=800056f1000 dev_addr=800056f1000
[   12.740682] igb 0004:04:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[   12.740742] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[   12.746574] nvme nvme0: missing or invalid SUBNQN field.
[   12.753360] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[   12.753376] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[   12.761031] DEBUG xen_swiotlb_map_page 400 phys=80003a60a00 dev_addr=80003a60a00
[   12.767323] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[   12.767489] i40e 0000:01:00.0: enabling device (0000 -> 0002)
[   12.778717] DEBUG dma_alloc_attrs 432 size=256 flags=cc0 attr=0
[   12.796442] DEBUG dma_alloc_attrs 432 size=8192 flags=cc0 attr=0
[   12.798403] DEBUG dma_alloc_attrs 436 size=256 flags=cc0 attr=0
[   12.804209] DEBUG dma_alloc_attrs 436 size=8192 flags=cc0 attr=0
[   12.810199] DEBUG xen_swiotlb_alloc_coherent 287 size=256 flags=cc0 attr=0
[   12.816277] DEBUG xen_swiotlb_alloc_coherent 287 size=8192 flags=cc0 attr=0
[   12.816280] DEBUG xen_swiotlb_alloc_coherent 300 size=8192 flags=cc0 attr=0
[   12.822266] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   12.828345] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005710000 dev_addr=80005710000
[   12.835300] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005693000 dev_addr=80005693000
[   12.842332] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.849362] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[   12.856394] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.856397] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   12.864390] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[   12.872380] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   12.878430] DEBUG xen_swiotlb_alloc_coherent 287 size=4194304 flags=cc0 attr=110
[   12.884946] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000520b000 dev_addr=8000520b000
[   12.891017] DEBUG xen_swiotlb_alloc_coherent 300 size=4194304 flags=cc0 attr=110
[   12.898059] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.898062] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.904687] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005800000 dev_addr=80005800000
[   12.911604] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   12.919199] DEBUG dma_alloc_attrs 432 size=4194304 flags=cc0 attr=110
[   12.927063] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   12.927066] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000520c000 dev_addr=8000520c000
[   12.934521] DEBUG dma_alloc_attrs 436 size=4194304 flags=cc0 attr=110
[   12.940583] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.940586] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   12.946661] DEBUG xen_swiotlb_alloc_coherent 287 size=4194304 flags=cc0 attr=110
[   12.954669] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   12.954672] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   12.961688] DEBUG xen_swiotlb_alloc_coherent 300 size=4194304 flags=cc0 attr=110
[   12.968197] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005712000 dev_addr=80005712000
[   12.975240] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000008
[   12.983227] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   12.989717] Mem abort info:
[   12.989718]   ESR = 0x96000044
[   12.989720]   EC = 0x25: DABT (current EL), IL = 32 bits
[   12.995791] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.001864]   SET = 0, FnV = 0
[   13.001865]   EA = 0, S1PTW = 0
[   13.001869] Data abort info:
[   13.009349] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.016374]   ISV = 0, ISS = 0x00000044
[   13.016374]   CM = 0, WnR = 1
[   13.016378] [0000000000000008] user address but active_mm is swapper
[   13.023406] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.030876] Internal error: Oops: 96000044 [#1] PREEMPT SMP
[   13.030879] Modules linked in:
[   13.038875] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005713000 dev_addr=80005713000
[   13.047743] 
[   13.047745] CPU: 2 PID: 7 Comm: kworker/u64:0 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[   13.047756] Workqueue: nvme-reset-wq nvme_reset_work
[   13.053786] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.056607] 
[   13.056609] pstate: 60c00085 (nZCv daIf +PAN +UAO -TCO BTYPE=--)
[   13.056614] pc : steal_suitable_fallback+0x138/0x2f0
[   13.059735] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.065145] lr : steal_suitable_fallback+0x1bc/0x2f0
[   13.065148] sp : ffff80001196b810
[   13.071233] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.074317] x29: ffff80001196b810 x28: 0000000000000000 
[   13.077527] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.077529] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005714000 dev_addr=80005714000
[   13.080478] x27: 0000000000000000 x26: ffff8000114dbcb0 
[   13.080479] x25: fffffdffffe00000 x24: 0000000000000001 
[   13.087565] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.091427] 
[   13.091428] x23: 0000000000000000 x22: fffffe1ffdf70000 
[   13.094457] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.100923] x21: ffff08071efef980 x20: 0000000000000901 
[   13.107964] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.113586] x19: 0000000000080000 x18: ffffffffffffffff 
[   13.116680] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.124728] x17: 0000000000000000 x16: 0000000000000012 
[   13.126205] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005715000 dev_addr=80005715000
[   13.135947] x15: ffff80009196b8c7 x14: 0000000000000006 
[   13.135951] x13: ffff80001196b8cf 
[   13.140924] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.147012] x12: 3033343931343d65 
[   13.147013] x11: 7a69732030303320 x10: 000000000000000c 
[   13.148516] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.154650] 
[   13.154651] x9 : ffff800010039d58 x8 : 0000000080000000 
[   13.159674] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.165762] x7 : 0000000000000018 x6 : ffff800011750890 
[   13.170785] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.174147] x5 : ffff800011750878 x4 : 0000000000000000 
[   13.181229] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005716000 dev_addr=80005716000
[   13.186588] 
[   13.186589] x3 : 0000000000000000 x2 : 0000000000000000 
[   13.193642] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.201637] x1 : 0000000000000200 x0 : 0000000000000000 
[   13.206988] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.212367] Call trace:
[   13.212369]  steal_suitable_fallback+0x138/0x2f0
[   13.212374]  get_page_from_freelist+0xe30/0x12a0
[   13.218455] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.219957]  __alloc_pages_nodemask+0x148/0xe00
[   13.219964]  __dma_direct_alloc_pages+0xa4/0x1d0
[   13.225394] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.231475]  dma_direct_alloc+0x1d8/0x340
[   13.231481]  xen_swiotlb_alloc_coherent+0xc0/0x328
[   13.236850] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005717000 dev_addr=80005717000
[   13.243901]  dma_alloc_attrs+0x144/0x160
[   13.243907]  nvme_reset_work+0x1030/0x1520
[   13.249262] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.256317]  process_one_work+0x1dc/0x4bc
[   13.256321]  worker_thread+0x144/0x470
[   13.261675] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.269695]  kthread+0x14c/0x160
[   13.269700]  ret_from_fork+0x10/0x38
[   13.275043] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.278492] Code: a94082c4 d37ef463 cb3c4063 8b3c4042 (f9000480) 
[   13.284601] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.288037] ---[ end trace f68728a0d3053b72 ]---
[   13.288042] note: kworker/u64:0[7] exited with preempt_count 1
[   13.293447] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005718000 dev_addr=80005718000
[   13.489923] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.495974] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.502049] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.509093] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.516129] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005719000 dev_addr=80005719000
[   13.524123] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.530228] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.536296] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.543338] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.550373] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000571a000 dev_addr=8000571a000
[   13.558371] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.564420] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.570497] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.577540] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.584572] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000571b000 dev_addr=8000571b000
[   13.592570] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.598621] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.604698] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.611742] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.618774] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000571c000 dev_addr=8000571c000
[   13.626772] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.632823] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.638899] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.645946] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.652976] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000571d000 dev_addr=8000571d000
[   13.660973] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.667024] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.673101] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.680144] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.687176] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000571e000 dev_addr=8000571e000
[   13.695174] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.701226] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.707302] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.714346] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.721380] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000571f000 dev_addr=8000571f000
[   13.729376] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.735430] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.741503] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.748548] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.755585] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005720000 dev_addr=80005720000
[   13.763577] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.769628] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.775708] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.782748] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.789780] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005721000 dev_addr=80005721000
[   13.797779] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.803830] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.809906] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.816950] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.823982] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005722000 dev_addr=80005722000
[   13.831980] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.838031] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.844108] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.851152] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.858183] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005723000 dev_addr=80005723000
[   13.866184] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.872233] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.878309] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.885357] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.892385] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005724000 dev_addr=80005724000
[   13.900383] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.906435] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.912510] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.919554] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.926590] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005725000 dev_addr=80005725000
[   13.934584] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.940636] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.946712] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.953756] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.960788] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005726000 dev_addr=80005726000
[   13.968786] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   13.974837] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   13.980913] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   13.987957] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   13.994989] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005727000 dev_addr=80005727000
[   14.002987] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.009039] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.015115] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.022158] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.029191] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005728000 dev_addr=80005728000
[   14.037189] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.043240] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.049316] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.056363] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.063392] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005729000 dev_addr=80005729000
[   14.071390] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.077441] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.083518] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.090562] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.097594] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000572a000 dev_addr=8000572a000
[   14.105595] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.111643] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.117719] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.124763] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.131796] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000572b000 dev_addr=8000572b000
[   14.139793] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.145848] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.151920] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.158964] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.166000] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000572c000 dev_addr=8000572c000
[   14.173994] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.180046] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.186122] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.193165] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.200198] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000572d000 dev_addr=8000572d000
[   14.208196] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.214247] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.220324] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.227367] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.234399] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000572e000 dev_addr=8000572e000
[   14.242398] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.248449] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.254525] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.261569] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.268601] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000572f000 dev_addr=8000572f000
[   14.276600] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.282650] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.288726] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.295773] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.302802] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005730000 dev_addr=80005730000
[   14.310800] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.316851] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.322928] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.329979] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.337005] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005731000 dev_addr=80005731000
[   14.345002] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.351053] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.357129] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.364173] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.371205] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005732000 dev_addr=80005732000
[   14.379203] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.385254] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.391331] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.398375] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.405409] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005733000 dev_addr=80005733000
[   14.413404] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.419456] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.425535] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.432576] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.439608] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005734000 dev_addr=80005734000
[   14.447606] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.453658] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.459734] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.466780] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.473809] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005735000 dev_addr=80005735000
[   14.481807] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.487858] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.493935] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.500979] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.508011] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005736000 dev_addr=80005736000
[   14.516012] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.522060] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.528137] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.535180] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.542213] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005737000 dev_addr=80005737000
[   14.550210] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.556262] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.562339] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.569381] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.576417] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005738000 dev_addr=80005738000
[   14.584412] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.590463] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.596540] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.603583] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.610615] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005739000 dev_addr=80005739000
[   14.618613] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.624665] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.630741] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.637784] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.644817] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000573a000 dev_addr=8000573a000
[   14.652815] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.658867] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.664942] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.671986] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.679018] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000573b000 dev_addr=8000573b000
[   14.687015] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.693067] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.699144] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.706190] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.713219] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000573c000 dev_addr=8000573c000
[   14.721218] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.727269] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.733345] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.740389] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.747422] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000573d000 dev_addr=8000573d000
[   14.755422] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.761470] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.767546] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.774590] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.781622] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000573e000 dev_addr=8000573e000
[   14.789621] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.795674] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.801748] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.808791] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.815826] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000573f000 dev_addr=8000573f000
[   14.823821] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.829873] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.835950] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.842993] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.850025] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005740000 dev_addr=80005740000
[   14.858023] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.864074] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.870151] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.877195] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.884226] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005741000 dev_addr=80005741000
[   14.892225] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.898276] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.904352] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.911396] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.918428] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005742000 dev_addr=80005742000
[   14.926429] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.932477] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.938554] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.945600] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.952629] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005743000 dev_addr=80005743000
[   14.960627] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   14.966679] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   14.972755] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   14.979799] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   14.986834] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005744000 dev_addr=80005744000
[   14.994829] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.000880] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.006957] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.014000] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.021032] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005745000 dev_addr=80005745000
[   15.029030] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.035081] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.041158] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.048201] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.055233] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005746000 dev_addr=80005746000
[   15.063231] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.069283] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.075362] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.082403] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.089435] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005747000 dev_addr=80005747000
[   15.097434] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.103484] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.109561] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.116608] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.123636] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005748000 dev_addr=80005748000
[   15.131635] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.137686] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.143762] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.150806] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.157839] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005749000 dev_addr=80005749000
[   15.165839] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.171888] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.177964] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.185007] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.192040] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000574a000 dev_addr=8000574a000
[   15.200037] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.206089] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.212165] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.219209] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.226243] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000574b000 dev_addr=8000574b000
[   15.234239] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.240290] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.246367] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.253410] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.260443] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000574c000 dev_addr=8000574c000
[   15.268440] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.274492] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.280568] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.287612] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.294644] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000574d000 dev_addr=8000574d000
[   15.302642] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.308693] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.314769] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.321813] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.328845] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000574e000 dev_addr=8000574e000
[   15.336843] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.342894] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.348976] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.356018] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.363047] DEBUG xen_swiotlb_alloc_coherent 323 phys=8000574f000 dev_addr=8000574f000
[   15.371045] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.377096] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.383172] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.390216] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   15.397248] DEBUG xen_swiotlb_alloc_coherent 323 phys=80005750000 dev_addr=80005750000
[   15.405246] DEBUG dma_alloc_attrs 432 size=4096 flags=cc0 attr=0
[   15.411298] DEBUG dma_alloc_attrs 436 size=4096 flags=cc0 attr=0
[   15.417374] DEBUG xen_swiotlb_alloc_coherent 287 size=4096 flags=cc0 attr=0
[   15.424418] DEBUG xen_swiotlb_alloc_coherent 300 size=4096 flags=cc0 attr=0
[   34.310316] rcu: INFO: rcu_preempt detected stalls on CPUs/tasks:
[   34.316399] rcu: 	6-...0: (4 GPs behind) idle=41e/1/0x4000000000000000 softirq=37/37 fqs=2626 
[   34.325113] 	(detected by 2, t=5254 jiffies, g=-1079, q=2)


^ permalink raw reply	[relevance 2%]

* Re: xen-swiotlb issue when NVMe driver is enabled in Dom0 on ARM
  @ 2022-04-19 13:36  2%               ` Rahul Singh
    0 siblings, 1 reply; 200+ results
From: Rahul Singh @ 2022-04-19 13:36 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: Christoph Hellwig, xen-devel, Bertrand Marquis, Julien Grall,
	Jan Beulich, jgross, boris.ostrovsky


[-- Attachment #1.1: Type: text/plain, Size: 3573 bytes --]

Hi Stefano,

> On 18 Apr 2022, at 9:04 pm, Stefano Stabellini <sstabellini@kernel.org> wrote:
>
> On Sun, 17 Apr 2022, Rahul Singh wrote:
>>> On 15 Apr 2022, at 6:40 pm, Stefano Stabellini <sstabellini@kernel.org> wrote:
>>> On Fri, 15 Apr 2022, Christoph Hellwig wrote:
>>>> On Thu, Apr 14, 2022 at 01:39:23PM -0700, Stefano Stabellini wrote:
>>>>> OK, now we know that the code path with Xen is correct and it is the
>>>>> same code path taken (dma_alloc_direct) as when !CONFIG_XEN and !SMMU.
>>>>> That is how it should be.
>>>>>
>>>>> I cannot explain why dma_alloc_direct() would fail when called from
>>>>> xen_swiotlb_alloc_coherent(), but it would succeed when called from
>>>>> dma_alloc_attrs() without Xen.
>>>>>
>>>>> I am not aware of any restrictions that xen or swiotlb-xen would
>>>>> introduce in that regard. Unless you are just running out of memory
>>>>> because dom0_mem too low.
>>>>
>>>> The crash is deep down in the page allocator.  Even if memory was low
>>>> it should no crash.  So there is some odd interaction between Xen
>>>> and the page allocator going on.  I think nvme and dma-direct really
>>>> are only the messenger here.
>>>
>>>
>>> I cannot think of anything but if that is the case I guess it is more
>>> likely related to reserved-memory not properly advertised or ACPI tables
>>> not properly populated.
>>
>> I am not sure if it is true as we are able to boot with the same reserved memory or
>> the same ACPI table populated if we boot without swiotlb-xen dma ops.
>>
>>>
>>>
>>> Rahul,
>>>
>>> What happens if you boot Linux on Xen with swiotlb-xen disabled?
>>
>> Linux boots fine without any issue if we disable swiotlb-xen as mentioned below.
>
> The plot thinkens.
>
> Without swiotlb-xen, Linux boots fine. With swiotlb-xen it crashes.
> However, in both cases, the very same memory allocation function is
> used: dma_direct_alloc. In one case it works, in the other case it
> crashes.  Everything else is the same.
>
> There are a couple of questionable things with dma masks in
> xen_swiotlb_alloc_coherent, but they are *after* the call to
> xen_alloc_coherent_pages, which is the one that crashes. So they cannot
> be the cause of the crash.
>
> Before the call to xen_alloc_coherent_pages, there is only:
>
>  1) flags &= ~(__GFP_DMA | __GFP_HIGHMEM);
>  2) size = 1UL << (order + XEN_PAGE_SHIFT);
>
>
> 1) is already done by dma_alloc_attrs, so it is superfluous. I couldn't
> explain how 2) could possibly trigger the crash.  XEN_PAGE_SHIFT is
> always 12 even on 64K pages kernels. You can try removing 2) from
> xen_swiotlb_alloc_coherent, but we are really wandering in the dark
> here.

I tried removing the 2) but after that also issue remains.

>
> Then there is xen_swiotlb_init() which allocates some memory for
> swiotlb-xen at boot. It could lower the total amount of memory
> available, but if you disabled swiotlb-xen like I suggested,
> xen_swiotlb_init() still should get called and executed anyway at boot
> (it is called from arch/arm/xen/mm.c:xen_mm_init). So xen_swiotlb_init()
> shouldn't be the one causing problems.
>
> That's it -- there is nothing else in swiotlb-xen that I can think of.
>
> I don't have any good ideas, so I would only suggest to add more printks
> and report the results, for instance:

As suggested I added the more printks but only difference I see is the size apart
from that everything looks same .

Please find the attached logs for xen and native linux boot.



Regards
Rahul

[-- Attachment #1.2: Type: text/html, Size: 4876 bytes --]

[-- Attachment #2: xen_boot_with_debug.log --]
[-- Type: application/octet-stream, Size: 163040 bytes --]

Last login: Tue Apr 19 11:53:45 on ttys001
rahsin01@C02ZX0G9LVDN ~ % telnet e123343.cambridge.arm.com 10020
Trying 10.1.194.25...
Connected to e123343.cambridge.arm.com.
Escape character is '^]'.

AIS target system port 10020 device /dev/ttyUSB1 [115200 N81]


FS0:\> 
FS0:\> xen.efi




































































































Xen 4.15.1 (c/s Fri Sep 10 09:03:24 2021 +0200 git:84fa99099b-dirty) EFI loader
Using configuration file 'xen.cfg'
Image-xen: 0x00000000fe47c000-0x00000000ffb3f200
PROGRESS CODE: V03101019 I0
 Xen 4.15.1
(XEN) Xen version 4.15.1 (xen-4.15+stableAUTOINC+84fa99099b-r0@ewaol) (aarch64-poky-linux-gcc (GCC) 11.2.0) debug=n 2021-09-10
(XEN) Latest ChangeSet: Fri Sep 10 09:03:24 2021 +0200 git:84fa99099b-dirty
(XEN) build-id: 783448c38aa6ff465e6b4631853bc73076bcf7e4
(XEN) Processor: 413fd0c1: "ARM Limited", variant: 0x3, part 0xd0c, rev 0x1
(XEN) 64-bit Execution:
(XEN)   Processor Features: 1100000011111112 0000000000000020
(XEN)     Exception Levels: EL3:64 EL2:64 EL1:64 EL0:64+32
(XEN)     Extensions: FloatingPoint AdvancedSIMD GICv3-SysReg
(XEN)   Debug Features: 0000000110305408 0000000000000000
(XEN)   Auxiliary Features: 0000000000000000 0000000000000000
(XEN)   Memory Model Features: 0000000000101125 0000000010212122
(XEN)   ISA Features:  0000100010211120 0000000000100001
(XEN) 32-bit Execution:
(XEN)   Processor Features: 10010131:10010000
(XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
(XEN)     Extensions: GenericTimer
(XEN)   Debug Features: 04010088
(XEN)   Auxiliary Features: 00000000
(XEN)   Memory Model Features: 10201105 40000000 01260000 02122211
(XEN)  ISA Features: 02101110 13112111 21232042 01112131 00010142 01011121
(XEN) Using SMC Calling Convention v1.2
(XEN) Using PSCI v1.1
(XEN) ACPI: GICC (acpi_id[0x1000] address[0x0] MPIDR[0x100000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1800] address[0x0] MPIDR[0x180000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1600] address[0x0] MPIDR[0x160000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1e00] address[0x0] MPIDR[0x1e0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0800] address[0x0] MPIDR[0x80000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2000] address[0x0] MPIDR[0x200000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0e00] address[0x0] MPIDR[0xe0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2600] address[0x0] MPIDR[0x260000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1100] address[0x0] MPIDR[0x110000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1900] address[0x0] MPIDR[0x190000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1700] address[0x0] MPIDR[0x170000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1f00] address[0x0] MPIDR[0x1f0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0900] address[0x0] MPIDR[0x90000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2100] address[0x0] MPIDR[0x210000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0f00] address[0x0] MPIDR[0xf0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2700] address[0x0] MPIDR[0x270000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1001] address[0x0] MPIDR[0x100100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1801] address[0x0] MPIDR[0x180100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1601] address[0x0] MPIDR[0x160100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1e01] address[0x0] MPIDR[0x1e0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0801] address[0x0] MPIDR[0x80100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2001] address[0x0] MPIDR[0x200100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0e01] address[0x0] MPIDR[0xe0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2601] address[0x0] MPIDR[0x260100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1101] address[0x0] MPIDR[0x110100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1901] address[0x0] MPIDR[0x190100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1701] address[0x0] MPIDR[0x170100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1f01] address[0x0] MPIDR[0x1f0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0901] address[0x0] MPIDR[0x90100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2101] address[0x0] MPIDR[0x210100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0f01] address[0x0] MPIDR[0xf0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2701] address[0x0] MPIDR[0x270100] enabled)
(XEN) 32 CPUs enabled, 32 CPUs total
(XEN) SMP: Allowing 32 CPUs
(XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 25000 KHz
(XEN) GICv3 initialization:
(XEN)       gic_dist_addr=0x00100100000000
(XEN)       gic_maintenance_irq=25
(XEN)       gic_rdist_stride=0
(XEN)       gic_rdist_regions=1
(XEN)       redistributor regions:
(XEN)         - region 0: 0x00100100140000 - 0x00100101140000
(XEN) GICv3: using at most 57344 LPIs on the host.
(XEN) GICv3: 704 lines, (IID 0201743b).
(XEN) GICv3: Found ITS @0x100100040000
(XEN) GICv3: Found ITS @0x100100060000
(XEN) GICv3: Found ITS @0x100100080000
(XEN) GICv3: Found ITS @0x1001000a0000
(XEN) GICv3: Found ITS @0x1001000c0000
(XEN) GICv3: Found ITS @0x1001000e0000
(XEN) GICv3: Found ITS @0x100100100000
(XEN) GICv3: Found ITS @0x100100120000
(XEN) GICv3: CPU0: Found redistributor in region 0 @0000000040434000
(XEN) XSM Framework v1.0.0 initialized
(XEN) Initialising XSM SILO mode
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Defaulting to alternative key handling; send 'A' to switch to normal mode.
(XEN) Allocated console ring of 256 KiB.
(XEN) CPU0: Guest atomics will try 18 times before pausing the domain
(XEN) Bringing up CPU1
(XEN) GICv3: CPU1: Found redistributor in region 0 @0000000040634000
(XEN) CPU1: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 1 booted.
(XEN) Bringing up CPU2
(XEN) GICv3: CPU2: Found redistributor in region 0 @00000000405b4000
(XEN) CPU2: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 2 booted.
(XEN) Bringing up CPU3
(XEN) GICv3: CPU3: Found redistributor in region 0 @00000000407b4000
(XEN) CPU3: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 3 booted.
(XEN) Bringing up CPU4
(XEN) GICv3: CPU4: Found redistributor in region 0 @0000000040234000
(XEN) CPU4: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 4 booted.
(XEN) Bringing up CPU5
(XEN) GICv3: CPU5: Found redistributor in region 0 @0000000040834000
(XEN) CPU5: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 5 booted.
(XEN) Bringing up CPU6
(XEN) GICv3: CPU6: Found redistributor in region 0 @00000000403b4000
(XEN) CPU6: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 6 booted.
(XEN) Bringing up CPU7
(XEN) GICv3: CPU7: Found redistributor in region 0 @00000000409b4000
(XEN) CPU7: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 7 booted.
(XEN) Bringing up CPU8
(XEN) GICv3: CPU8: Found redistributor in region 0 @0000000040474000
(XEN) CPU8: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 8 booted.
(XEN) Bringing up CPU9
(XEN) GICv3: CPU9: Found redistributor in region 0 @0000000040674000
(XEN) CPU9: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 9 booted.
(XEN) Bringing up CPU10
(XEN) GICv3: CPU10: Found redistributor in region 0 @00000000405f4000
(XEN) CPU10: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 10 booted.
(XEN) Bringing up CPU11
(XEN) GICv3: CPU11: Found redistributor in region 0 @00000000407f4000
(XEN) CPU11: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 11 booted.
(XEN) Bringing up CPU12
(XEN) GICv3: CPU12: Found redistributor in region 0 @0000000040274000
(XEN) CPU12: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 12 booted.
(XEN) Bringing up CPU13
(XEN) GICv3: CPU13: Found redistributor in region 0 @0000000040874000
(XEN) CPU13: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 13 booted.
(XEN) Bringing up CPU14
(XEN) GICv3: CPU14: Found redistributor in region 0 @00000000403f4000
(XEN) CPU14: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 14 booted.
(XEN) Bringing up CPU15
(XEN) GICv3: CPU15: Found redistributor in region 0 @00000000409f4000
(XEN) CPU15: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 15 booted.
(XEN) Bringing up CPU16
(XEN) GICv3: CPU16: Found redistributor in region 0 @0000000040454000
(XEN) CPU16: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 16 booted.
(XEN) Bringing up CPU17
(XEN) GICv3: CPU17: Found redistributor in region 0 @0000000040654000
(XEN) CPU17: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 17 booted.
(XEN) Bringing up CPU18
(XEN) GICv3: CPU18: Found redistributor in region 0 @00000000405d4000
(XEN) CPU18: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 18 booted.
(XEN) Bringing up CPU19
(XEN) GICv3: CPU19: Found redistributor in region 0 @00000000407d4000
(XEN) CPU19: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 19 booted.
(XEN) Bringing up CPU20
(XEN) GICv3: CPU20: Found redistributor in region 0 @0000000040254000
(XEN) CPU20: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 20 booted.
(XEN) Bringing up CPU21
(XEN) GICv3: CPU21: Found redistributor in region 0 @0000000040854000
(XEN) CPU21: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 21 booted.
(XEN) Bringing up CPU22
(XEN) GICv3: CPU22: Found redistributor in region 0 @00000000403d4000
(XEN) CPU22: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 22 booted.
(XEN) Bringing up CPU23
(XEN) GICv3: CPU23: Found redistributor in region 0 @00000000409d4000
(XEN) CPU23: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 23 booted.
(XEN) Bringing up CPU24
(XEN) GICv3: CPU24: Found redistributor in region 0 @0000000040494000
(XEN) CPU24: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 24 booted.
(XEN) Bringing up CPU25
(XEN) GICv3: CPU25: Found redistributor in region 0 @0000000040694000
(XEN) CPU25: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 25 booted.
(XEN) Bringing up CPU26
(XEN) GICv3: CPU26: Found redistributor in region 0 @0000000040614000
(XEN) CPU26: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 26 booted.
(XEN) Bringing up CPU27
(XEN) GICv3: CPU27: Found redistributor in region 0 @0000000040814000
(XEN) CPU27: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 27 booted.
(XEN) Bringing up CPU28
(XEN) GICv3: CPU28: Found redistributor in region 0 @0000000040294000
(XEN) CPU28: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 28 booted.
(XEN) Bringing up CPU29
(XEN) GICv3: CPU29: Found redistributor in region 0 @0000000040894000
(XEN) CPU29: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 29 booted.
(XEN) Bringing up CPU30
(XEN) GICv3: CPU30: Found redistributor in region 0 @0000000040414000
(XEN) CPU30: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 30 booted.
(XEN) Bringing up CPU31
(XEN) GICv3: CPU31: Found redistributor in region 0 @0000000040a14000
(XEN) CPU31: Guest atomics will try 18 times before pausing the domain
(XEN) Brought up 32 CPUs
(XEN) CPU 31 booted.
(XEN) I/O virtualisation disabled
(XEN) P2M: 48-bit IPA with 48-bit PA and 16-bit VMID
(XEN) P2M: 4 levels with order-0 root, VTCR 0x800d3590
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Adding cpu 0 to runqueue 0
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 1 to runqueue 0
(XEN) Adding cpu 2 to runqueue 0
(XEN) Adding cpu 3 to runqueue 0
(XEN) Adding cpu 4 to runqueue 0
(XEN) Adding cpu 5 to runqueue 0
(XEN) Adding cpu 6 to runqueue 0
(XEN) Adding cpu 7 to runqueue 0
(XEN) Adding cpu 8 to runqueue 0
(XEN) Adding cpu 9 to runqueue 0
(XEN) Adding cpu 10 to runqueue 0
(XEN) Adding cpu 11 to runqueue 0
(XEN) Adding cpu 12 to runqueue 0
(XEN) Adding cpu 13 to runqueue 0
(XEN) Adding cpu 14 to runqueue 0
(XEN) Adding cpu 15 to runqueue 0
(XEN) Adding cpu 16 to runqueue 1
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 17 to runqueue 1
(XEN) Adding cpu 18 to runqueue 1
(XEN) Adding cpu 19 to runqueue 1
(XEN) Adding cpu 20 to runqueue 1
(XEN) Adding cpu 21 to runqueue 1
(XEN) Adding cpu 22 to runqueue 1
(XEN) Adding cpu 23 to runqueue 1
(XEN) Adding cpu 24 to runqueue 1
(XEN) Adding cpu 25 to runqueue 1
(XEN) Adding cpu 26 to runqueue 1
(XEN) Adding cpu 27 to runqueue 1
(XEN) Adding cpu 28 to runqueue 1
(XEN) Adding cpu 29 to runqueue 1
(XEN) Adding cpu 30 to runqueue 1
(XEN) Adding cpu 31 to runqueue 1
(XEN) alternatives: Patching with alt table 00000000002cd0b0 -> 00000000002cd9e0
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Loading d0 kernel from boot module @ 00000000fe47c000
(XEN) Allocating 1:1 mappings totalling 8192MB for dom0:
(XEN) BANK[0] 0x00000098000000-0x000000f8000000 (1536MB)
(XEN) BANK[1] 0x00080000000000-0x00080080000000 (2048MB)
(XEN) BANK[2] 0x00080680000000-0x000807a0000000 (4608MB)
(XEN) Grant table range: 0x000807f66cf000-0x000807f670f000
(XEN) Allocating PPI 16 for event channel interrupt
(XEN) Loading zImage from 00000000fe47c000 to 0000000098000000-00000000996c3200
(XEN) Loading d0 DTB to 0x00000000a0000000-0x00000000a000027f
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: Errors
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 360kB init memory.
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER24
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER28
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER32
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER36
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER40
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER44
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER48
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER52
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER56
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER60
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER64
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER68
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER72
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER76
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER80
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER84
(XEN) d0v0: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard+ (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] Xen XEN_VERSION.XEN_SUBVERSION support found
[    0.000000] efi: EFI v2.50 by Xen
[    0.000000] efi: ACPI 2.0=0x807f66cfce8 
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807F66CFCE8 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807F66CFC38 0000AC (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807F66CF000 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807F66CF118 000AF4 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: STAO 0x00000807F66CFC10 000025 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x8079efeee00-0x8079eff0fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000098000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807fa0dffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000098000000-0x00000000f7ffffff]
[    0.000000]   node   0: [mem 0x0000080000000000-0x000008007fffffff]
[    0.000000]   node   0: [mem 0x0000080680000000-0x000008079fffffff]
[    0.000000]   node   0: [mem 0x00000807f66cf000-0x00000807f66cffff]
[    0.000000]   node   0: [mem 0x00000807f8db0000-0x00000807f8ddffff]
[    0.000000]   node   0: [mem 0x00000807fa0d0000-0x00000807fa0dffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000098000000-0x00000807fa0dffff]
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 31 pages/cpu s89240 r8192 d29544 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: ARM erratum 1418040
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2064447
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: console=hvc0 earlycon=xen rootwait root=PARTUUID=6a60524d-061d-454a-bfd1-38989910eccd
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.000000] printk: log_buf_len min size: 131072 bytes
[    0.000000] printk: log_buf_len: 262144 bytes
[    0.000000] printk: early log buf free: 125936(96%)
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000f4000000-0x00000000f8000000] (64MB)
[    0.000000] Memory: 8100764K/8388868K available (13568K kernel code, 1996K rwdata, 3476K rodata, 4160K init, 822K bss, 288104K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 41306 entries in 162 pages
[    0.000000] ftrace: allocated 162 pages with 3 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=32.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: 672 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000100100140000
[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 3 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 4 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 5 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 6 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 7 -> Node 0
[    0.000000] ITS [mem 0x100100040000-0x10010005ffff]
[    0.000000] ITS@0x0000100100040000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100040000: allocated 524288 Devices @80000800000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100040000: allocated 32768 Interrupt Collections @80000220000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100060000-0x10010007ffff]
[    0.000000] ITS@0x0000100100060000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100060000: allocated 524288 Devices @80000c00000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100060000: allocated 32768 Interrupt Collections @80000240000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100080000-0x10010009ffff]
[    0.000000] ITS@0x0000100100080000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100080000: allocated 524288 Devices @80001000000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100080000: allocated 32768 Interrupt Collections @80000260000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000a0000-0x1001000bffff]
[    0.000000] ITS@0x00001001000a0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000a0000: allocated 524288 Devices @80001400000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000a0000: allocated 32768 Interrupt Collections @80000280000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000c0000-0x1001000dffff]
[    0.000000] ITS@0x00001001000c0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000c0000: allocated 524288 Devices @80001800000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000c0000: allocated 32768 Interrupt Collections @800002a0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000e0000-0x1001000fffff]
[    0.000000] ITS@0x00001001000e0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000e0000: allocated 524288 Devices @80001c00000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000e0000: allocated 32768 Interrupt Collections @800002c0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100100000-0x10010011ffff]
[    0.000000] ITS@0x0000100100100000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100100000: allocated 524288 Devices @80002000000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100100000: allocated 32768 Interrupt Collections @800002e0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100120000-0x10010013ffff]
[    0.000000] ITS@0x0000100100120000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100120000: allocated 524288 Devices @80002400000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100120000: allocated 32768 Interrupt Collections @80000300000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: CPU: 0 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:2247 its_init+0x398/0x690
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 5.10.27-ampere-lts-standard+ #1
[    0.000000] pstate: 60000085 (nZCv daIf -PAN -UAO -TCO BTYPE=--)
[    0.000000] pc : its_init+0x398/0x690
[    0.000000] lr : its_init+0x394/0x690
[    0.000000] sp : ffff8000114d3c50
[    0.000000] x29: ffff8000114d3c50 x28: 0000000000000000 
[    0.000000] x27: ffff8000114dc9c0 x26: ffff07ff801e5500 
[    0.000000] x25: 0000000000000000 x24: ffff08071ec1c0c0 
[    0.000000] x23: ffff800011622350 x22: ffff07ff8011b600 
[    0.000000] x21: ffff8000114dc9c0 x20: ffff800011622000 
[    0.000000] x19: ffff8000117689f8 x18: ffffffffffffffff 
[    0.000000] x17: 0000000000000000 x16: 000000000000001f 
[    0.000000] x15: ffff07ff8020471d x14: 0000000000000058 
[    0.000000] x13: 00000000000000c0 x12: 0000000000000000 
[    0.000000] x11: 0000000000000010 x10: ffff08071eae3ac0 
[    0.000000] x9 : ffff800010d34cc0 x8 : ffff07ff80320000 
[    0.000000] x7 : a2a2a2a2a2a2a2a2 x6 : ffff000000000000 
[    0.000000] x5 : fffffdffffe00000 x4 : ffff8000114dc9c0 
[    0.000000] x3 : ffff8000114ddaf0 x2 : 000000000000003d 
[    0.000000] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    0.000000] Call trace:
[    0.000000]  its_init+0x398/0x690
[    0.000000]  gic_init_bases+0x524/0x584
[    0.000000]  gic_acpi_init+0x134/0x278
[    0.000000]  acpi_match_madt+0x50/0x88
[    0.000000]  acpi_table_parse_entries_array+0x164/0x24c
[    0.000000]  acpi_table_parse_entries+0x48/0x70
[    0.000000]  acpi_table_parse_madt+0x34/0x40
[    0.000000]  __acpi_probe_device_table+0x90/0xec
[    0.000000]  irqchip_init+0x40/0x4c
[    0.000000]  init_IRQ+0xd0/0x104
[    0.000000]  start_kernel+0x354/0x554
[    0.000000] random: get_random_bytes called from __warn+0x128/0x1c0 with crng_init=0
[    0.000000] ---[ end trace 0000000000000000 ]---
[    0.000000] GICv3: using LPI property table @0x0000080000310000
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: CPU: 0 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    0.000000] pstate: 60000085 (nZCv daIf -PAN -UAO -TCO BTYPE=--)
[    0.000000] pc : its_cpu_init+0x824/0xb20
[    0.000000] lr : its_cpu_init+0x820/0xb20
[    0.000000] sp : ffff8000114d3c80
[    0.000000] x29: ffff8000114d3c80 x28: 0000000000000000 
[    0.000000] x27: 0000000000000001 x26: ffff800012000070 
[    0.000000] x25: fffffe1ffde0c800 x24: ffff800012000000 
[    0.000000] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    0.000000] x21: ffff8000117689f8 x20: ffff800011622350 
[    0.000000] x19: ffff800011622000 x18: ffffffffffffffff 
[    0.000000] x17: 0000000000000000 x16: 000000000000001f 
[    0.000000] x15: ffff8000914d3967 x14: 0000000000000058 
[    0.000000] x13: 00000000000000c0 x12: 0000000000000000 
[    0.000000] x11: 0000000000000010 x10: 000000000000000c 
[    0.000000] x9 : ffff800010d34cc0 x8 : 0000000000000000 
[    0.000000] x7 : ffff08071efefbc0 x6 : 0000000000000003 
[    0.000000] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    0.000000] x3 : 0000000000000010 x2 : 000000000000ffff 
[    0.000000] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    0.000000] Call trace:
[    0.000000]  its_cpu_init+0x824/0xb20
[    0.000000]  gic_init_bases+0x528/0x584
[    0.000000]  gic_acpi_init+0x134/0x278
[    0.000000]  acpi_match_madt+0x50/0x88
[    0.000000]  acpi_table_parse_entries_array+0x164/0x24c
[    0.000000]  acpi_table_parse_entries+0x48/0x70
[    0.000000]  acpi_table_parse_madt+0x34/0x40
[    0.000000]  __acpi_probe_device_table+0x90/0xec
[    0.000000]  irqchip_init+0x40/0x4c
[    0.000000]  init_IRQ+0xd0/0x104
[    0.000000]  start_kernel+0x354/0x554
[    0.000000] ---[ end trace f68728a0d3053b52 ]---
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000080000320000
[    0.000000] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.000000] ACPI GTDT: found 1 memory-mapped timer block(s).
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 25.00MHz (virt/phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000001] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000055] Console: colour dummy device 80x25
[    1.271762] printk: console [hvc0] enabled
[    1.275949] ACPI: Core revision 20200925
[    1.280259] ACPI BIOS Warning (bug): Incorrect checksum in table [IORT] - 0xF2, should be 0x0B (20200925/tbprint-173)
[    1.290844] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    1.301183] pid_max: default: 32768 minimum: 301
[    1.305898] LSM: Security Framework initializing
[    1.310623] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.318217] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.326607] ACPI PPTT: PPTT table found, but unable to locate core 2 (2)
[    1.333615] xen:grant_table: Grant tables using version 1 layout
[    1.339535] Grant table initialized
[    1.343103] xen:events: Using FIFO-based ABI
[    1.347431] Xen: initializing cpu0
[    1.350922] rcu: Hierarchical SRCU implementation.
[    1.355893] Platform MSI: ITS@0x100100040000 domain created
[    1.361401] Platform MSI: ITS@0x100100060000 domain created
[    1.367063] Platform MSI: ITS@0x100100080000 domain created
[    1.372692] Platform MSI: ITS@0x1001000a0000 domain created
[    1.378322] Platform MSI: ITS@0x1001000c0000 domain created
[    1.383966] Platform MSI: ITS@0x1001000e0000 domain created
[    1.389605] Platform MSI: ITS@0x100100100000 domain created
[    1.395247] Platform MSI: ITS@0x100100120000 domain created
[    1.400892] PCI/MSI: ITS@0x100100040000 domain created
[    1.406098] PCI/MSI: ITS@0x100100060000 domain created
[    1.411306] PCI/MSI: ITS@0x100100080000 domain created
[    1.416515] PCI/MSI: ITS@0x1001000a0000 domain created
[    1.421723] PCI/MSI: ITS@0x1001000c0000 domain created
[    1.426931] PCI/MSI: ITS@0x1001000e0000 domain created
[    1.432139] PCI/MSI: ITS@0x100100100000 domain created
[    1.437348] PCI/MSI: ITS@0x100100120000 domain created
[    1.442559] EFI runtime services access via paravirt.
[    1.448011] smp: Bringing up secondary CPUs ...
(XEN) d0v1: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v2: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v3: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v4: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v5: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v6: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v7: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v8: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v9: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v10: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v11: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v12: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v13: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v14: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v15: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v16: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v17: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v18: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v19: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v20: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v21: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v22: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v23: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v24: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v25: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v26: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v27: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v28: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v29: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v30: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v31: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    1.452640] Detected PIPT I-cache on CPU1
[    1.452665] GICv3: CPU1: found redistributor 1 region 0:0x0000100100160000
[    1.459197] ------------[ cut here ]------------
[    1.459202] WARNING: CPU: 1 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.459203] Modules linked in:
[    1.459207] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.459209] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.459210] pc : its_cpu_init+0x824/0xb20
[    1.459212] lr : its_cpu_init+0x820/0xb20
[    1.459213] sp : ffff800011a3be80
[    1.459214] x29: ffff800011a3be80 x28: 0000000000000001 
[    1.459216] x27: 0000000000000000 x26: ffff800012020070 
[    1.459218] x25: fffffe1ffde0cc00 x24: ffff800012020000 
[    1.459220] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.459222] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.459224] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.459226] x17: 0000000000000000 x16: 0000000000000000 
[    1.459228] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.459230] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.459232] x11: 0000000000000000 x10: 0000000000000001 
[    1.459234] x9 : ffff8000106d6830 x8 : 3030303036313030 
[    1.459235] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.459237] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.459239] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.459241] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.459244] Call trace:
[    1.459245]  its_cpu_init+0x824/0xb20
[    1.459249]  gic_starting_cpu+0x48/0x90
[    1.459251]  cpuhp_invoke_callback+0xa4/0x460
[    1.459254]  notify_cpu_starting+0xa0/0xe0
[    1.459257]  secondary_start_kernel+0xe8/0x190
[    1.459258] ---[ end trace f68728a0d3053b53 ]---
[    1.459263] GICv3: CPU1: using allocated LPI pending table @0x0000080000330000
[    1.459320] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.459328] Xen: initializing cpu1
[    1.459348] CPU1: Booted secondary processor 0x0000000001 [0x413fd0c1]
[    1.459676] Detected PIPT I-cache on CPU2
[    1.459704] GICv3: CPU2: found redistributor 2 region 0:0x0000100100180000
[    1.466239] ------------[ cut here ]------------
[    1.466246] WARNING: CPU: 2 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.466247] Modules linked in:
[    1.466252] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.466254] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.466256] pc : its_cpu_init+0x824/0xb20
[    1.466258] lr : its_cpu_init+0x820/0xb20
[    1.466259] sp : ffff800011a43e80
[    1.466260] x29: ffff800011a43e80 x28: 0000000000000002 
[    1.466262] x27: 0000000000000000 x26: ffff800012040070 
[    1.466264] x25: fffffe1ffde0d000 x24: ffff800012040000 
[    1.466266] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.466268] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.466270] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.466272] x17: 0000000000000000 x16: 0000000000000000 
[    1.466274] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.466276] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.466278] x11: 0000000000000000 x10: 0000000000000001 
[    1.466279] x9 : ffff8000106d6830 x8 : 3030303038313030 
[    1.466281] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.466283] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.466285] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.466287] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.466289] Call trace:
[    1.466291]  its_cpu_init+0x824/0xb20
[    1.466294]  gic_starting_cpu+0x48/0x90
[    1.466298]  cpuhp_invoke_callback+0xa4/0x460
[    1.466300]  notify_cpu_starting+0xa0/0xe0
[    1.466303]  secondary_start_kernel+0xe8/0x190
[    1.466304] ---[ end trace f68728a0d3053b54 ]---
[    1.466310] GICv3: CPU2: using allocated LPI pending table @0x0000080000340000
[    1.466377] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.466388] Xen: initializing cpu2
[    1.466411] CPU2: Booted secondary processor 0x0000000002 [0x413fd0c1]
[    1.466707] Detected PIPT I-cache on CPU3
[    1.466733] GICv3: CPU3: found redistributor 3 region 0:0x00001001001a0000
[    1.473265] ------------[ cut here ]------------
[    1.473270] WARNING: CPU: 3 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.473271] Modules linked in:
[    1.473275] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.473277] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.473280] pc : its_cpu_init+0x824/0xb20
[    1.473281] lr : its_cpu_init+0x820/0xb20
[    1.473282] sp : ffff800011a4be80
[    1.473283] x29: ffff800011a4be80 x28: 0000000000000003 
[    1.473285] x27: 0000000000000000 x26: ffff800012060070 
[    1.473287] x25: fffffe1ffde0d400 x24: ffff800012060000 
[    1.473289] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.473291] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.473293] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.473295] x17: 0000000000000000 x16: 0000000000000000 
[    1.473297] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.473299] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.473301] x11: 0000000000000000 x10: 0000000000000001 
[    1.473303] x9 : ffff8000106d6830 x8 : 3030303061313030 
[    1.473305] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.473307] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.473309] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.473311] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.473313] Call trace:
[    1.473315]  its_cpu_init+0x824/0xb20
[    1.473318]  gic_starting_cpu+0x48/0x90
[    1.473320]  cpuhp_invoke_callback+0xa4/0x460
[    1.473322]  notify_cpu_starting+0xa0/0xe0
[    1.473324]  secondary_start_kernel+0xe8/0x190
[    1.473326] ---[ end trace f68728a0d3053b55 ]---
[    1.473331] GICv3: CPU3: using allocated LPI pending table @0x0000080000350000
[    1.473391] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.473399] Xen: initializing cpu3
[    1.473420] CPU3: Booted secondary processor 0x0000000003 [0x413fd0c1]
[    1.473675] Detected PIPT I-cache on CPU4
[    1.473704] GICv3: CPU4: found redistributor 4 region 0:0x00001001001c0000
[    1.480236] ------------[ cut here ]------------
[    1.480240] WARNING: CPU: 4 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.480241] Modules linked in:
[    1.480245] CPU: 4 PID: 0 Comm: swapper/4 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.480247] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.480248] pc : its_cpu_init+0x824/0xb20
[    1.480250] lr : its_cpu_init+0x820/0xb20
[    1.480251] sp : ffff800011a53e80
[    1.480252] x29: ffff800011a53e80 x28: 0000000000000004 
[    1.480254] x27: 0000000000000000 x26: ffff800012080070 
[    1.480256] x25: fffffe1ffde0d800 x24: ffff800012080000 
[    1.480258] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.480260] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.480262] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.480264] x17: 0000000000000000 x16: 0000000000000000 
[    1.480266] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.480268] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.480270] x11: 0000000000000000 x10: 0000000000000001 
[    1.480272] x9 : ffff8000106d6830 x8 : 3030303063313030 
[    1.480274] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.480276] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.480278] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.480280] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.480282] Call trace:
[    1.480284]  its_cpu_init+0x824/0xb20
[    1.480287]  gic_starting_cpu+0x48/0x90
[    1.480289]  cpuhp_invoke_callback+0xa4/0x460
[    1.480291]  notify_cpu_starting+0xa0/0xe0
[    1.480294]  secondary_start_kernel+0xe8/0x190
[    1.480295] ---[ end trace f68728a0d3053b56 ]---
[    1.480301] GICv3: CPU4: using allocated LPI pending table @0x0000080000360000
[    1.480366] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.480375] Xen: initializing cpu4
[    1.480395] CPU4: Booted secondary processor 0x0000000004 [0x413fd0c1]
[    1.480743] Detected PIPT I-cache on CPU5
[    1.480773] GICv3: CPU5: found redistributor 5 region 0:0x00001001001e0000
[    1.487305] ------------[ cut here ]------------
[    1.487310] WARNING: CPU: 5 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.487311] Modules linked in:
[    1.487315] CPU: 5 PID: 0 Comm: swapper/5 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.487317] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.487319] pc : its_cpu_init+0x824/0xb20
[    1.487320] lr : its_cpu_init+0x820/0xb20
[    1.487321] sp : ffff800011a5be80
[    1.487322] x29: ffff800011a5be80 x28: 0000000000000005 
[    1.487325] x27: 0000000000000000 x26: ffff8000120a0070 
[    1.487327] x25: fffffe1ffde0dc00 x24: ffff8000120a0000 
[    1.487329] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.487331] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.487333] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.487335] x17: 0000000000000000 x16: 0000000000000000 
[    1.487337] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.487339] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.487341] x11: 0000000000000000 x10: 0000000000000001 
[    1.487342] x9 : ffff8000106d6830 x8 : 3030303065313030 
[    1.487345] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.487346] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.487348] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.487351] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.487353] Call trace:
[    1.487354]  its_cpu_init+0x824/0xb20
[    1.487357]  gic_starting_cpu+0x48/0x90
[    1.487360]  cpuhp_invoke_callback+0xa4/0x460
[    1.487362]  notify_cpu_starting+0xa0/0xe0
[    1.487364]  secondary_start_kernel+0xe8/0x190
[    1.487366] ---[ end trace f68728a0d3053b57 ]---
[    1.487372] GICv3: CPU5: using allocated LPI pending table @0x0000080000370000
[    1.487433] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.487441] Xen: initializing cpu5
[    1.487462] CPU5: Booted secondary processor 0x0000000005 [0x413fd0c1]
[    1.487822] Detected PIPT I-cache on CPU6
[    1.487854] GICv3: CPU6: found redistributor 6 region 0:0x0000100100200000
[    1.494387] ------------[ cut here ]------------
[    1.494392] WARNING: CPU: 6 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.494393] Modules linked in:
[    1.494397] CPU: 6 PID: 0 Comm: swapper/6 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.494399] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.494401] pc : its_cpu_init+0x824/0xb20
[    1.494402] lr : its_cpu_init+0x820/0xb20
[    1.494403] sp : ffff800011a63e80
[    1.494404] x29: ffff800011a63e80 x28: 0000000000000006 
[    1.494406] x27: 0000000000000000 x26: ffff8000120c0070 
[    1.494409] x25: fffffe1ffde0e000 x24: ffff8000120c0000 
[    1.494411] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.494412] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.494414] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.494416] x17: 0000000000000000 x16: 0000000000000000 
[    1.494418] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.494420] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.494422] x11: 0000000000000000 x10: 0000000000000001 
[    1.494424] x9 : ffff8000106d6830 x8 : 3030303030323030 
[    1.494426] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.494428] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.494430] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.494432] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.494434] Call trace:
[    1.494435]  its_cpu_init+0x824/0xb20
[    1.494438]  gic_starting_cpu+0x48/0x90
[    1.494440]  cpuhp_invoke_callback+0xa4/0x460
[    1.494442]  notify_cpu_starting+0xa0/0xe0
[    1.494445]  secondary_start_kernel+0xe8/0x190
[    1.494446] ---[ end trace f68728a0d3053b58 ]---
[    1.494452] GICv3: CPU6: using allocated LPI pending table @0x0000080000380000
[    1.494519] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.494528] Xen: initializing cpu6
[    1.494551] CPU6: Booted secondary processor 0x0000000006 [0x413fd0c1]
[    1.494871] Detected PIPT I-cache on CPU7
[    1.494906] GICv3: CPU7: found redistributor 7 region 0:0x0000100100220000
[    1.501438] ------------[ cut here ]------------
[    1.501443] WARNING: CPU: 7 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.501444] Modules linked in:
[    1.501448] CPU: 7 PID: 0 Comm: swapper/7 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.501450] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.501452] pc : its_cpu_init+0x824/0xb20
[    1.501453] lr : its_cpu_init+0x820/0xb20
[    1.501454] sp : ffff800011a6be80
[    1.501455] x29: ffff800011a6be80 x28: 0000000000000007 
[    1.501458] x27: 0000000000000000 x26: ffff8000120e0070 
[    1.501460] x25: fffffe1ffde0e400 x24: ffff8000120e0000 
[    1.501461] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.501463] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.501465] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.501467] x17: 0000000000000000 x16: 0000000000000000 
[    1.501470] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.501471] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.501473] x11: 0000000000000000 x10: 0000000000000001 
[    1.501475] x9 : ffff8000106d6830 x8 : 3030303032323030 
[    1.501477] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.501479] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.501481] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.501483] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.501485] Call trace:
[    1.501486]  its_cpu_init+0x824/0xb20
[    1.501490]  gic_starting_cpu+0x48/0x90
[    1.501492]  cpuhp_invoke_callback+0xa4/0x460
[    1.501494]  notify_cpu_starting+0xa0/0xe0
[    1.501497]  secondary_start_kernel+0xe8/0x190
[    1.501498] ---[ end trace f68728a0d3053b59 ]---
[    1.501504] GICv3: CPU7: using allocated LPI pending table @0x0000080000390000
[    1.501563] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.501571] Xen: initializing cpu7
[    1.501592] CPU7: Booted secondary processor 0x0000000007 [0x413fd0c1]
[    1.501849] Detected PIPT I-cache on CPU8
[    1.501886] GICv3: CPU8: found redistributor 8 region 0:0x0000100100240000
[    1.508419] ------------[ cut here ]------------
[    1.508423] WARNING: CPU: 8 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.508425] Modules linked in:
[    1.508429] CPU: 8 PID: 0 Comm: swapper/8 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.508431] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.508433] pc : its_cpu_init+0x824/0xb20
[    1.508434] lr : its_cpu_init+0x820/0xb20
[    1.508435] sp : ffff800011a73e80
[    1.508436] x29: ffff800011a73e80 x28: 0000000000000008 
[    1.508438] x27: 0000000000000000 x26: ffff800012100070 
[    1.508440] x25: fffffe1ffde0e800 x24: ffff800012100000 
[    1.508443] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.508445] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.508447] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.508449] x17: 0000000000000000 x16: 0000000000000000 
[    1.508450] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.508452] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.508454] x11: 0000000000000000 x10: 0000000000000001 
[    1.508456] x9 : ffff8000106d6830 x8 : 3030303034323030 
[    1.508458] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.508460] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.508462] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.508464] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.508466] Call trace:
[    1.508468]  its_cpu_init+0x824/0xb20
[    1.508470]  gic_starting_cpu+0x48/0x90
[    1.508473]  cpuhp_invoke_callback+0xa4/0x460
[    1.508474]  notify_cpu_starting+0xa0/0xe0
[    1.508477]  secondary_start_kernel+0xe8/0x190
[    1.508478] ---[ end trace f68728a0d3053b5a ]---
[    1.508484] GICv3: CPU8: using allocated LPI pending table @0x00000800003a0000
[    1.508550] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.508558] Xen: initializing cpu8
[    1.508581] CPU8: Booted secondary processor 0x0000000008 [0x413fd0c1]
[    1.508932] Detected PIPT I-cache on CPU9
[    1.508970] GICv3: CPU9: found redistributor 9 region 0:0x0000100100260000
[    1.515503] ------------[ cut here ]------------
[    1.515508] WARNING: CPU: 9 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.515509] Modules linked in:
[    1.515513] CPU: 9 PID: 0 Comm: swapper/9 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.515515] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.515516] pc : its_cpu_init+0x824/0xb20
[    1.515518] lr : its_cpu_init+0x820/0xb20
[    1.515519] sp : ffff800011a7be80
[    1.515520] x29: ffff800011a7be80 x28: 0000000000000009 
[    1.515522] x27: 0000000000000000 x26: ffff800012120070 
[    1.515524] x25: fffffe1ffde0ec00 x24: ffff800012120000 
[    1.515526] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.515528] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.515530] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.515532] x17: 0000000000000000 x16: 0000000000000000 
[    1.515534] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.515536] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.515537] x11: 0000000000000000 x10: 0000000000000001 
[    1.515539] x9 : ffff8000106d6830 x8 : 3030303036323030 
[    1.515541] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.515543] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.515545] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.515547] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.515549] Call trace:
[    1.515551]  its_cpu_init+0x824/0xb20
[    1.515554]  gic_starting_cpu+0x48/0x90
[    1.515556]  cpuhp_invoke_callback+0xa4/0x460
[    1.515558]  notify_cpu_starting+0xa0/0xe0
[    1.515560]  secondary_start_kernel+0xe8/0x190
[    1.515561] ---[ end trace f68728a0d3053b5b ]---
[    1.515567] GICv3: CPU9: using allocated LPI pending table @0x00000800003b0000
[    1.515627] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.515635] Xen: initializing cpu9
[    1.515657] CPU9: Booted secondary processor 0x0000000009 [0x413fd0c1]
[    1.516007] Detected PIPT I-cache on CPU10
[    1.516049] GICv3: CPU10: found redistributor a region 0:0x0000100100280000
[    1.522669] ------------[ cut here ]------------
[    1.522673] WARNING: CPU: 10 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.522674] Modules linked in:
[    1.522678] CPU: 10 PID: 0 Comm: swapper/10 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.522681] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.522682] pc : its_cpu_init+0x824/0xb20
[    1.522684] lr : its_cpu_init+0x820/0xb20
[    1.522685] sp : ffff800011a83e80
[    1.522686] x29: ffff800011a83e80 x28: 000000000000000a 
[    1.522688] x27: 0000000000000000 x26: ffff800012140070 
[    1.522690] x25: fffffe1ffde0f000 x24: ffff800012140000 
[    1.522692] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.522694] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.522696] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.522698] x17: 0000000000000000 x16: 0000000000000000 
[    1.522700] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.522702] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.522704] x11: 0000000000000000 x10: 0000000000000001 
[    1.522706] x9 : ffff8000106d6830 x8 : 3030303832303031 
[    1.522708] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.522709] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.522711] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.522713] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.522716] Call trace:
[    1.522717]  its_cpu_init+0x824/0xb20
[    1.522720]  gic_starting_cpu+0x48/0x90
[    1.522723]  cpuhp_invoke_callback+0xa4/0x460
[    1.522725]  notify_cpu_starting+0xa0/0xe0
[    1.522727]  secondary_start_kernel+0xe8/0x190
[    1.522728] ---[ end trace f68728a0d3053b5c ]---
[    1.522734] GICv3: CPU10: using allocated LPI pending table @0x00000800003c0000
[    1.522800] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.522809] Xen: initializing cpu10
[    1.522833] CPU10: Booted secondary processor 0x000000000a [0x413fd0c1]
[    1.523191] Detected PIPT I-cache on CPU11
[    1.523233] GICv3: CPU11: found redistributor b region 0:0x00001001002a0000
[    1.529853] ------------[ cut here ]------------
[    1.529858] WARNING: CPU: 11 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.529858] Modules linked in:
[    1.529863] CPU: 11 PID: 0 Comm: swapper/11 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.529865] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.529866] pc : its_cpu_init+0x824/0xb20
[    1.529868] lr : its_cpu_init+0x820/0xb20
[    1.529869] sp : ffff800011a8be80
[    1.529870] x29: ffff800011a8be80 x28: 000000000000000b 
[    1.529872] x27: 0000000000000000 x26: ffff800012160070 
[    1.529874] x25: fffffe1ffde0f400 x24: ffff800012160000 
[    1.529876] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.529878] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.529880] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.529882] x17: 0000000000000000 x16: 0000000000000000 
[    1.529884] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.529886] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.529888] x11: 0000000000000000 x10: 0000000000000001 
[    1.529890] x9 : ffff8000106d6830 x8 : 3030306132303031 
[    1.529891] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.529893] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.529895] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.529897] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.529899] Call trace:
[    1.529901]  its_cpu_init+0x824/0xb20
[    1.529904]  gic_starting_cpu+0x48/0x90
[    1.529907]  cpuhp_invoke_callback+0xa4/0x460
[    1.529909]  notify_cpu_starting+0xa0/0xe0
[    1.529911]  secondary_start_kernel+0xe8/0x190
[    1.529912] ---[ end trace f68728a0d3053b5d ]---
[    1.529918] GICv3: CPU11: using allocated LPI pending table @0x00000800003d0000
[    1.529978] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.529986] Xen: initializing cpu11
[    1.530007] CPU11: Booted secondary processor 0x000000000b [0x413fd0c1]
[    1.530262] Detected PIPT I-cache on CPU12
[    1.530307] GICv3: CPU12: found redistributor c region 0:0x00001001002c0000
[    1.536927] ------------[ cut here ]------------
[    1.536932] WARNING: CPU: 12 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.536932] Modules linked in:
[    1.536936] CPU: 12 PID: 0 Comm: swapper/12 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.536938] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.536941] pc : its_cpu_init+0x824/0xb20
[    1.536942] lr : its_cpu_init+0x820/0xb20
[    1.536943] sp : ffff800011a93e80
[    1.536944] x29: ffff800011a93e80 x28: 000000000000000c 
[    1.536946] x27: 0000000000000000 x26: ffff800012180070 
[    1.536949] x25: fffffe1ffde0f800 x24: ffff800012180000 
[    1.536951] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.536953] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.536955] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.536957] x17: 0000000000000000 x16: 0000000000000000 
[    1.536958] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.536960] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.536962] x11: 0000000000000000 x10: 0000000000000001 
[    1.536964] x9 : ffff8000106d6830 x8 : 3030306332303031 
[    1.536966] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.536968] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.536970] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.536972] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.536974] Call trace:
[    1.536976]  its_cpu_init+0x824/0xb20
[    1.536979]  gic_starting_cpu+0x48/0x90
[    1.536981]  cpuhp_invoke_callback+0xa4/0x460
[    1.536983]  notify_cpu_starting+0xa0/0xe0
[    1.536985]  secondary_start_kernel+0xe8/0x190
[    1.536987] ---[ end trace f68728a0d3053b5e ]---
[    1.536992] GICv3: CPU12: using allocated LPI pending table @0x00000800003e0000
[    1.537059] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.537069] Xen: initializing cpu12
[    1.537092] CPU12: Booted secondary processor 0x000000000c [0x413fd0c1]
[    1.537344] Detected PIPT I-cache on CPU13
[    1.537391] GICv3: CPU13: found redistributor d region 0:0x00001001002e0000
[    1.544011] ------------[ cut here ]------------
[    1.544015] WARNING: CPU: 13 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.544016] Modules linked in:
[    1.544020] CPU: 13 PID: 0 Comm: swapper/13 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.544022] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.544024] pc : its_cpu_init+0x824/0xb20
[    1.544026] lr : its_cpu_init+0x820/0xb20
[    1.544027] sp : ffff800011a9be80
[    1.544028] x29: ffff800011a9be80 x28: 000000000000000d 
[    1.544030] x27: 0000000000000000 x26: ffff8000121a0070 
[    1.544032] x25: fffffe1ffde0fc00 x24: ffff8000121a0000 
[    1.544034] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.544036] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.544038] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.544040] x17: 0000000000000000 x16: 0000000000000000 
[    1.544042] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.544044] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.544046] x11: 0000000000000000 x10: 0000000000000001 
[    1.544049] x9 : ffff8000106d6830 x8 : 3030306532303031 
[    1.544051] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.544052] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.544054] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.544056] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.544058] Call trace:
[    1.544060]  its_cpu_init+0x824/0xb20
[    1.544063]  gic_starting_cpu+0x48/0x90
[    1.544065]  cpuhp_invoke_callback+0xa4/0x460
[    1.544067]  notify_cpu_starting+0xa0/0xe0
[    1.544070]  secondary_start_kernel+0xe8/0x190
[    1.544071] ---[ end trace f68728a0d3053b5f ]---
[    1.544077] GICv3: CPU13: using allocated LPI pending table @0x00000800003f0000
[    1.544137] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.544145] Xen: initializing cpu13
[    1.544166] CPU13: Booted secondary processor 0x000000000d [0x413fd0c1]
[    1.544482] Detected PIPT I-cache on CPU14
[    1.544530] GICv3: CPU14: found redistributor e region 0:0x0000100100300000
[    1.551150] ------------[ cut here ]------------
[    1.551155] WARNING: CPU: 14 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.551156] Modules linked in:
[    1.551160] CPU: 14 PID: 0 Comm: swapper/14 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.551162] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.551164] pc : its_cpu_init+0x824/0xb20
[    1.551165] lr : its_cpu_init+0x820/0xb20
[    1.551166] sp : ffff800011aa3e80
[    1.551167] x29: ffff800011aa3e80 x28: 000000000000000e 
[    1.551170] x27: 0000000000000000 x26: ffff8000121c0070 
[    1.551172] x25: fffffe1ffdea0000 x24: ffff8000121c0000 
[    1.551174] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.551176] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.551178] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.551180] x17: 0000000000000000 x16: 0000000000000000 
[    1.551182] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.551184] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.551186] x11: 0000000000000000 x10: 0000000000000001 
[    1.551188] x9 : ffff8000106d6830 x8 : 3030303033303031 
[    1.551189] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.551191] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.551193] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.551195] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.551197] Call trace:
[    1.551199]  its_cpu_init+0x824/0xb20
[    1.551202]  gic_starting_cpu+0x48/0x90
[    1.551204]  cpuhp_invoke_callback+0xa4/0x460
[    1.551206]  notify_cpu_starting+0xa0/0xe0
[    1.551208]  secondary_start_kernel+0xe8/0x190
[    1.551210] ---[ end trace f68728a0d3053b60 ]---
[    1.551215] GICv3: CPU14: using allocated LPI pending table @0x0000080002800000
[    1.551281] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.551290] Xen: initializing cpu14
[    1.551313] CPU14: Booted secondary processor 0x000000000e [0x413fd0c1]
[    1.551654] Detected PIPT I-cache on CPU15
[    1.551704] GICv3: CPU15: found redistributor f region 0:0x0000100100320000
[    1.558324] ------------[ cut here ]------------
[    1.558328] WARNING: CPU: 15 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.558329] Modules linked in:
[    1.558333] CPU: 15 PID: 0 Comm: swapper/15 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.558335] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.558337] pc : its_cpu_init+0x824/0xb20
[    1.558339] lr : its_cpu_init+0x820/0xb20
[    1.558339] sp : ffff800011aabe80
[    1.558340] x29: ffff800011aabe80 x28: 000000000000000f 
[    1.558343] x27: 0000000000000000 x26: ffff8000121e0070 
[    1.558345] x25: fffffe1ffdea0400 x24: ffff8000121e0000 
[    1.558347] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.558349] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.558351] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.558353] x17: 0000000000000000 x16: 0000000000000000 
[    1.558355] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.558357] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.558359] x11: 0000000000000000 x10: 0000000000000001 
[    1.558360] x9 : ffff8000106d6830 x8 : 3030303233303031 
[    1.558362] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.558364] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.558366] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.558368] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.558370] Call trace:
[    1.558372]  its_cpu_init+0x824/0xb20
[    1.558375]  gic_starting_cpu+0x48/0x90
[    1.558377]  cpuhp_invoke_callback+0xa4/0x460
[    1.558379]  notify_cpu_starting+0xa0/0xe0
[    1.558382]  secondary_start_kernel+0xe8/0x190
[    1.558383] ---[ end trace f68728a0d3053b61 ]---
[    1.558389] GICv3: CPU15: using allocated LPI pending table @0x0000080002810000
[    1.558448] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.558456] Xen: initializing cpu15
[    1.558478] CPU15: Booted secondary processor 0x000000000f [0x413fd0c1]
[    1.558826] Detected PIPT I-cache on CPU16
[    1.558879] GICv3: CPU16: found redistributor 100 region 0:0x0000100100340000
[    1.565499] ------------[ cut here ]------------
[    1.565503] WARNING: CPU: 16 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.565504] Modules linked in:
[    1.565508] CPU: 16 PID: 0 Comm: swapper/16 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.565510] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.565512] pc : its_cpu_init+0x824/0xb20
[    1.565513] lr : its_cpu_init+0x820/0xb20
[    1.565514] sp : ffff800011ab3e80
[    1.565515] x29: ffff800011ab3e80 x28: 0000000000000010 
[    1.565518] x27: 0000000000000000 x26: ffff800012200070 
[    1.565520] x25: fffffe1ffdea0800 x24: ffff800012200000 
[    1.565522] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.565524] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.565526] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.565528] x17: 0000000000000000 x16: 0000000000000000 
[    1.565530] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.565532] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.565534] x11: 0000000000000000 x10: 0000000000000001 
[    1.565535] x9 : ffff8000106d6830 x8 : 3034333030313030 
[    1.565537] x7 : 313030303078303a x6 : 0000000000000003 
[    1.565539] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.565541] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.565543] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.565545] Call trace:
[    1.565547]  its_cpu_init+0x824/0xb20
[    1.565550]  gic_starting_cpu+0x48/0x90
[    1.565552]  cpuhp_invoke_callback+0xa4/0x460
[    1.565554]  notify_cpu_starting+0xa0/0xe0
[    1.565556]  secondary_start_kernel+0xe8/0x190
[    1.565558] ---[ end trace f68728a0d3053b62 ]---
[    1.565563] GICv3: CPU16: using allocated LPI pending table @0x0000080002820000
[    1.565629] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.565638] Xen: initializing cpu16
[    1.565661] CPU16: Booted secondary processor 0x0000000100 [0x413fd0c1]
[    1.565909] Detected PIPT I-cache on CPU17
[    1.565962] GICv3: CPU17: found redistributor 101 region 0:0x0000100100360000
[    1.572583] ------------[ cut here ]------------
[    1.572587] WARNING: CPU: 17 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.572588] Modules linked in:
[    1.572592] CPU: 17 PID: 0 Comm: swapper/17 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.572594] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.572596] pc : its_cpu_init+0x824/0xb20
[    1.572598] lr : its_cpu_init+0x820/0xb20
[    1.572599] sp : ffff800011abbe80
[    1.572600] x29: ffff800011abbe80 x28: 0000000000000011 
[    1.572602] x27: 0000000000000000 x26: ffff800012220070 
[    1.572604] x25: fffffe1ffdea0c00 x24: ffff800012220000 
[    1.572606] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.572608] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.572610] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.572612] x17: 0000000000000000 x16: 0000000000000000 
[    1.572614] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.572616] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.572618] x11: 0000000000000000 x10: 0000000000000001 
[    1.572620] x9 : ffff8000106d6830 x8 : 3036333030313030 
[    1.572622] x7 : 313030303078303a x6 : 0000000000000003 
[    1.572624] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.572625] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.572628] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.572630] Call trace:
[    1.572632]  its_cpu_init+0x824/0xb20
[    1.572635]  gic_starting_cpu+0x48/0x90
[    1.572637]  cpuhp_invoke_callback+0xa4/0x460
[    1.572639]  notify_cpu_starting+0xa0/0xe0
[    1.572641]  secondary_start_kernel+0xe8/0x190
[    1.572643] ---[ end trace f68728a0d3053b63 ]---
[    1.572649] GICv3: CPU17: using allocated LPI pending table @0x0000080002830000
[    1.572708] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.572717] Xen: initializing cpu17
[    1.572739] CPU17: Booted secondary processor 0x0000000101 [0x413fd0c1]
[    1.573066] Detected PIPT I-cache on CPU18
[    1.573123] GICv3: CPU18: found redistributor 102 region 0:0x0000100100380000
[    1.579744] ------------[ cut here ]------------
[    1.579748] WARNING: CPU: 18 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.579749] Modules linked in:
[    1.579753] CPU: 18 PID: 0 Comm: swapper/18 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.579755] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.579757] pc : its_cpu_init+0x824/0xb20
[    1.579758] lr : its_cpu_init+0x820/0xb20
[    1.579759] sp : ffff800011ac3e80
[    1.579760] x29: ffff800011ac3e80 x28: 0000000000000012 
[    1.579763] x27: 0000000000000000 x26: ffff800012240070 
[    1.579765] x25: fffffe1ffdea1000 x24: ffff800012240000 
[    1.579767] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.579769] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.579771] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.579773] x17: 0000000000000000 x16: 0000000000000000 
[    1.579775] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.579777] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.579778] x11: 0000000000000000 x10: 0000000000000001 
[    1.579780] x9 : ffff8000106d6830 x8 : 3038333030313030 
[    1.579782] x7 : 313030303078303a x6 : 0000000000000003 
[    1.579784] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.579786] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.579788] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.579790] Call trace:
[    1.579792]  its_cpu_init+0x824/0xb20
[    1.579795]  gic_starting_cpu+0x48/0x90
[    1.579797]  cpuhp_invoke_callback+0xa4/0x460
[    1.579799]  notify_cpu_starting+0xa0/0xe0
[    1.579802]  secondary_start_kernel+0xe8/0x190
[    1.579803] ---[ end trace f68728a0d3053b64 ]---
[    1.579809] GICv3: CPU18: using allocated LPI pending table @0x0000080002840000
[    1.579876] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.579885] Xen: initializing cpu18
[    1.579910] CPU18: Booted secondary processor 0x0000000102 [0x413fd0c1]
[    1.580246] Detected PIPT I-cache on CPU19
[    1.580304] GICv3: CPU19: found redistributor 103 region 0:0x00001001003a0000
[    1.586925] ------------[ cut here ]------------
[    1.586930] WARNING: CPU: 19 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.586931] Modules linked in:
[    1.586935] CPU: 19 PID: 0 Comm: swapper/19 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.586937] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.586939] pc : its_cpu_init+0x824/0xb20
[    1.586940] lr : its_cpu_init+0x820/0xb20
[    1.586941] sp : ffff800011acbe80
[    1.586942] x29: ffff800011acbe80 x28: 0000000000000013 
[    1.586944] x27: 0000000000000000 x26: ffff800012260070 
[    1.586946] x25: fffffe1ffdea1400 x24: ffff800012260000 
[    1.586948] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.586950] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.586952] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.586954] x17: 0000000000000000 x16: 0000000000000000 
[    1.586956] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.586958] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.586960] x11: 0000000000000000 x10: 0000000000000001 
[    1.586962] x9 : ffff8000106d6830 x8 : 3061333030313030 
[    1.586963] x7 : 313030303078303a x6 : 0000000000000003 
[    1.586965] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.586967] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.586969] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.586971] Call trace:
[    1.586973]  its_cpu_init+0x824/0xb20
[    1.586976]  gic_starting_cpu+0x48/0x90
[    1.586978]  cpuhp_invoke_callback+0xa4/0x460
[    1.586980]  notify_cpu_starting+0xa0/0xe0
[    1.586983]  secondary_start_kernel+0xe8/0x190
[    1.586984] ---[ end trace f68728a0d3053b65 ]---
[    1.586990] GICv3: CPU19: using allocated LPI pending table @0x0000080002850000
[    1.587050] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.587059] Xen: initializing cpu19
[    1.587081] CPU19: Booted secondary processor 0x0000000103 [0x413fd0c1]
[    1.587437] Detected PIPT I-cache on CPU20
[    1.587498] GICv3: CPU20: found redistributor 104 region 0:0x00001001003c0000
[    1.594118] ------------[ cut here ]------------
[    1.594122] WARNING: CPU: 20 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.594123] Modules linked in:
[    1.594127] CPU: 20 PID: 0 Comm: swapper/20 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.594129] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.594131] pc : its_cpu_init+0x824/0xb20
[    1.594132] lr : its_cpu_init+0x820/0xb20
[    1.594133] sp : ffff800011ad3e80
[    1.594134] x29: ffff800011ad3e80 x28: 0000000000000014 
[    1.594137] x27: 0000000000000000 x26: ffff800012280070 
[    1.594139] x25: fffffe1ffdea1800 x24: ffff800012280000 
[    1.594141] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.594143] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.594145] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.594147] x17: 0000000000000000 x16: 0000000000000000 
[    1.594149] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.594151] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.594153] x11: 0000000000000000 x10: 0000000000000001 
[    1.594155] x9 : ffff8000106d6830 x8 : 3063333030313030 
[    1.594157] x7 : 313030303078303a x6 : 0000000000000003 
[    1.594158] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.594160] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.594162] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.594164] Call trace:
[    1.594166]  its_cpu_init+0x824/0xb20
[    1.594169]  gic_starting_cpu+0x48/0x90
[    1.594171]  cpuhp_invoke_callback+0xa4/0x460
[    1.594173]  notify_cpu_starting+0xa0/0xe0
[    1.594175]  secondary_start_kernel+0xe8/0x190
[    1.594177] ---[ end trace f68728a0d3053b66 ]---
[    1.594183] GICv3: CPU20: using allocated LPI pending table @0x0000080002860000
[    1.594248] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.594258] Xen: initializing cpu20
[    1.594283] CPU20: Booted secondary processor 0x0000000104 [0x413fd0c1]
[    1.594599] Detected PIPT I-cache on CPU21
[    1.594660] GICv3: CPU21: found redistributor 105 region 0:0x00001001003e0000
[    1.601281] ------------[ cut here ]------------
[    1.601286] WARNING: CPU: 21 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.601287] Modules linked in:
[    1.601291] CPU: 21 PID: 0 Comm: swapper/21 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.601293] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.601294] pc : its_cpu_init+0x824/0xb20
[    1.601296] lr : its_cpu_init+0x820/0xb20
[    1.601297] sp : ffff800011adbe80
[    1.601298] x29: ffff800011adbe80 x28: 0000000000000015 
[    1.601301] x27: 0000000000000000 x26: ffff8000122a0070 
[    1.601303] x25: fffffe1ffdea1c00 x24: ffff8000122a0000 
[    1.601305] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.601307] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.601309] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.601310] x17: 0000000000000000 x16: 0000000000000000 
[    1.601312] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.601314] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.601316] x11: 0000000000000000 x10: 0000000000000001 
[    1.601318] x9 : ffff8000106d6830 x8 : 3065333030313030 
[    1.601320] x7 : 313030303078303a x6 : 0000000000000003 
[    1.601322] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.601324] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.601326] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.601328] Call trace:
[    1.601329]  its_cpu_init+0x824/0xb20
[    1.601332]  gic_starting_cpu+0x48/0x90
[    1.601335]  cpuhp_invoke_callback+0xa4/0x460
[    1.601337]  notify_cpu_starting+0xa0/0xe0
[    1.601340]  secondary_start_kernel+0xe8/0x190
[    1.601341] ---[ end trace f68728a0d3053b67 ]---
[    1.601347] GICv3: CPU21: using allocated LPI pending table @0x0000080002870000
[    1.601406] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.601415] Xen: initializing cpu21
[    1.601437] CPU21: Booted secondary processor 0x0000000105 [0x413fd0c1]
[    1.601689] Detected PIPT I-cache on CPU22
[    1.601755] GICv3: CPU22: found redistributor 106 region 0:0x0000100100400000
[    1.608376] ------------[ cut here ]------------
[    1.608381] WARNING: CPU: 22 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.608382] Modules linked in:
[    1.608386] CPU: 22 PID: 0 Comm: swapper/22 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.608388] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.608390] pc : its_cpu_init+0x824/0xb20
[    1.608391] lr : its_cpu_init+0x820/0xb20
[    1.608392] sp : ffff800011ae3e80
[    1.608393] x29: ffff800011ae3e80 x28: 0000000000000016 
[    1.608396] x27: 0000000000000000 x26: ffff8000122c0070 
[    1.608398] x25: fffffe1ffdea2000 x24: ffff8000122c0000 
[    1.608400] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.608401] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.608403] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.608405] x17: 0000000000000000 x16: 0000000000000000 
[    1.608407] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.608409] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.608411] x11: 0000000000000000 x10: 0000000000000001 
[    1.608413] x9 : ffff8000106d6830 x8 : 3030343030313030 
[    1.608415] x7 : 313030303078303a x6 : 0000000000000003 
[    1.608417] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.608419] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.608421] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.608423] Call trace:
[    1.608425]  its_cpu_init+0x824/0xb20
[    1.608427]  gic_starting_cpu+0x48/0x90
[    1.608430]  cpuhp_invoke_callback+0xa4/0x460
[    1.608432]  notify_cpu_starting+0xa0/0xe0
[    1.608434]  secondary_start_kernel+0xe8/0x190
[    1.608436] ---[ end trace f68728a0d3053b68 ]---
[    1.608441] GICv3: CPU22: using allocated LPI pending table @0x0000080002880000
[    1.608507] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.608516] Xen: initializing cpu22
[    1.608542] CPU22: Booted secondary processor 0x0000000106 [0x413fd0c1]
[    1.608870] Detected PIPT I-cache on CPU23
[    1.608936] GICv3: CPU23: found redistributor 107 region 0:0x0000100100420000
[    1.615558] ------------[ cut here ]------------
[    1.615563] WARNING: CPU: 23 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.615563] Modules linked in:
[    1.615568] CPU: 23 PID: 0 Comm: swapper/23 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.615570] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.615571] pc : its_cpu_init+0x824/0xb20
[    1.615573] lr : its_cpu_init+0x820/0xb20
[    1.615574] sp : ffff800011aebe80
[    1.615575] x29: ffff800011aebe80 x28: 0000000000000017 
[    1.615577] x27: 0000000000000000 x26: ffff8000122e0070 
[    1.615579] x25: fffffe1ffdea2400 x24: ffff8000122e0000 
[    1.615581] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.615583] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.615585] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.615587] x17: 0000000000000000 x16: 0000000000000000 
[    1.615589] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.615591] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.615593] x11: 0000000000000000 x10: 0000000000000001 
[    1.615595] x9 : ffff8000106d6830 x8 : 3032343030313030 
[    1.615597] x7 : 313030303078303a x6 : 0000000000000003 
[    1.615599] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.615601] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.615602] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.615605] Call trace:
[    1.615606]  its_cpu_init+0x824/0xb20
[    1.615609]  gic_starting_cpu+0x48/0x90
[    1.615612]  cpuhp_invoke_callback+0xa4/0x460
[    1.615614]  notify_cpu_starting+0xa0/0xe0
[    1.615616]  secondary_start_kernel+0xe8/0x190
[    1.615618] ---[ end trace f68728a0d3053b69 ]---
[    1.615623] GICv3: CPU23: using allocated LPI pending table @0x0000080002890000
[    1.615682] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.615691] Xen: initializing cpu23
[    1.615713] CPU23: Booted secondary processor 0x0000000107 [0x413fd0c1]
[    1.616056] Detected PIPT I-cache on CPU24
[    1.616125] GICv3: CPU24: found redistributor 108 region 0:0x0000100100440000
[    1.622746] ------------[ cut here ]------------
[    1.622751] WARNING: CPU: 24 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.622752] Modules linked in:
[    1.622756] CPU: 24 PID: 0 Comm: swapper/24 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.622758] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.622760] pc : its_cpu_init+0x824/0xb20
[    1.622761] lr : its_cpu_init+0x820/0xb20
[    1.622762] sp : ffff800011af3e80
[    1.622763] x29: ffff800011af3e80 x28: 0000000000000018 
[    1.622766] x27: 0000000000000000 x26: ffff800012300070 
[    1.622768] x25: fffffe1ffdea2800 x24: ffff800012300000 
[    1.622770] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.622772] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.622774] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.622776] x17: 0000000000000000 x16: 0000000000000000 
[    1.622778] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.622780] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.622782] x11: 0000000000000000 x10: 0000000000000001 
[    1.622784] x9 : ffff8000106d6830 x8 : 3034343030313030 
[    1.622786] x7 : 313030303078303a x6 : 0000000000000003 
[    1.622787] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.622789] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.622791] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.622793] Call trace:
[    1.622795]  its_cpu_init+0x824/0xb20
[    1.622798]  gic_starting_cpu+0x48/0x90
[    1.622800]  cpuhp_invoke_callback+0xa4/0x460
[    1.622803]  notify_cpu_starting+0xa0/0xe0
[    1.622805]  secondary_start_kernel+0xe8/0x190
[    1.622807] ---[ end trace f68728a0d3053b6a ]---
[    1.622812] GICv3: CPU24: using allocated LPI pending table @0x00000800028a0000
[    1.622881] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.622890] Xen: initializing cpu24
[    1.622916] CPU24: Booted secondary processor 0x0000000108 [0x413fd0c1]
[    1.623253] Detected PIPT I-cache on CPU25
[    1.623323] GICv3: CPU25: found redistributor 109 region 0:0x0000100100460000
[    1.629944] ------------[ cut here ]------------
[    1.629949] WARNING: CPU: 25 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.629950] Modules linked in:
[    1.629954] CPU: 25 PID: 0 Comm: swapper/25 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.629956] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.629958] pc : its_cpu_init+0x824/0xb20
[    1.629959] lr : its_cpu_init+0x820/0xb20
[    1.629960] sp : ffff800011afbe80
[    1.629961] x29: ffff800011afbe80 x28: 0000000000000019 
[    1.629963] x27: 0000000000000000 x26: ffff800012320070 
[    1.629965] x25: fffffe1ffdea2c00 x24: ffff800012320000 
[    1.629967] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.629969] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.629971] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.629973] x17: 0000000000000000 x16: 0000000000000000 
[    1.629975] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.629977] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.629979] x11: 0000000000000000 x10: 0000000000000001 
[    1.629981] x9 : ffff8000106d6830 x8 : 3036343030313030 
[    1.629983] x7 : 313030303078303a x6 : 0000000000000003 
[    1.629985] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.629987] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.629989] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.629991] Call trace:
[    1.629993]  its_cpu_init+0x824/0xb20
[    1.629996]  gic_starting_cpu+0x48/0x90
[    1.629998]  cpuhp_invoke_callback+0xa4/0x460
[    1.630000]  notify_cpu_starting+0xa0/0xe0
[    1.630003]  secondary_start_kernel+0xe8/0x190
[    1.630004] ---[ end trace f68728a0d3053b6b ]---
[    1.630010] GICv3: CPU25: using allocated LPI pending table @0x00000800028b0000
[    1.630069] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.630078] Xen: initializing cpu25
[    1.630101] CPU25: Booted secondary processor 0x0000000109 [0x413fd0c1]
[    1.630358] Detected PIPT I-cache on CPU26
[    1.630431] GICv3: CPU26: found redistributor 10a region 0:0x0000100100480000
[    1.637053] ------------[ cut here ]------------
[    1.637057] WARNING: CPU: 26 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.637058] Modules linked in:
[    1.637062] CPU: 26 PID: 0 Comm: swapper/26 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.637064] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.637066] pc : its_cpu_init+0x824/0xb20
[    1.637067] lr : its_cpu_init+0x820/0xb20
[    1.637068] sp : ffff800011b03e80
[    1.637069] x29: ffff800011b03e80 x28: 000000000000001a 
[    1.637071] x27: 0000000000000000 x26: ffff800012340070 
[    1.637074] x25: fffffe1ffdea3000 x24: ffff800012340000 
[    1.637075] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.637077] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.637079] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.637081] x17: 0000000000000000 x16: 0000000000000000 
[    1.637083] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.637085] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.637087] x11: 0000000000000000 x10: 0000000000000001 
[    1.637089] x9 : ffff8000106d6830 x8 : 3038343030313030 
[    1.637091] x7 : 313030303078303a x6 : 0000000000000003 
[    1.637093] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.637095] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.637097] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.637099] Call trace:
[    1.637100]  its_cpu_init+0x824/0xb20
[    1.637103]  gic_starting_cpu+0x48/0x90
[    1.637106]  cpuhp_invoke_callback+0xa4/0x460
[    1.637108]  notify_cpu_starting+0xa0/0xe0
[    1.637110]  secondary_start_kernel+0xe8/0x190
[    1.637112] ---[ end trace f68728a0d3053b6c ]---
[    1.637117] GICv3: CPU26: using allocated LPI pending table @0x00000800028c0000
[    1.637184] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.637193] Xen: initializing cpu26
[    1.637219] CPU26: Booted secondary processor 0x000000010a [0x413fd0c1]
[    1.637472] Detected PIPT I-cache on CPU27
[    1.637546] GICv3: CPU27: found redistributor 10b region 0:0x00001001004a0000
[    1.644168] ------------[ cut here ]------------
[    1.644173] WARNING: CPU: 27 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.644174] Modules linked in:
[    1.644178] CPU: 27 PID: 0 Comm: swapper/27 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.644180] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.644182] pc : its_cpu_init+0x824/0xb20
[    1.644183] lr : its_cpu_init+0x820/0xb20
[    1.644184] sp : ffff800011b0be80
[    1.644185] x29: ffff800011b0be80 x28: 000000000000001b 
[    1.644187] x27: 0000000000000000 x26: ffff800012360070 
[    1.644189] x25: fffffe1ffdea3400 x24: ffff800012360000 
[    1.644191] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.644194] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.644196] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.644198] x17: 0000000000000000 x16: 0000000000000000 
[    1.644200] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.644202] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.644204] x11: 0000000000000000 x10: 0000000000000001 
[    1.644206] x9 : ffff8000106d6830 x8 : 3061343030313030 
[    1.644208] x7 : 313030303078303a x6 : 0000000000000003 
[    1.644210] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.644212] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.644213] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.644216] Call trace:
[    1.644218]  its_cpu_init+0x824/0xb20
[    1.644221]  gic_starting_cpu+0x48/0x90
[    1.644223]  cpuhp_invoke_callback+0xa4/0x460
[    1.644226]  notify_cpu_starting+0xa0/0xe0
[    1.644228]  secondary_start_kernel+0xe8/0x190
[    1.644229] ---[ end trace f68728a0d3053b6d ]---
[    1.644235] GICv3: CPU27: using allocated LPI pending table @0x00000800028d0000
[    1.644295] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.644303] Xen: initializing cpu27
[    1.644326] CPU27: Booted secondary processor 0x000000010b [0x413fd0c1]
[    1.644660] Detected PIPT I-cache on CPU28
[    1.644737] GICv3: CPU28: found redistributor 10c region 0:0x00001001004c0000
[    1.651359] ------------[ cut here ]------------
[    1.651363] WARNING: CPU: 28 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.651364] Modules linked in:
[    1.651368] CPU: 28 PID: 0 Comm: swapper/28 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.651370] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.651372] pc : its_cpu_init+0x824/0xb20
[    1.651373] lr : its_cpu_init+0x820/0xb20
[    1.651374] sp : ffff800011b13e80
[    1.651375] x29: ffff800011b13e80 x28: 000000000000001c 
[    1.651378] x27: 0000000000000000 x26: ffff800012380070 
[    1.651380] x25: fffffe1ffdea3800 x24: ffff800012380000 
[    1.651382] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.651383] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.651385] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.651387] x17: 0000000000000000 x16: 0000000000000000 
[    1.651389] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.651391] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.651393] x11: 0000000000000000 x10: 0000000000000001 
[    1.651395] x9 : ffff8000106d6830 x8 : 3063343030313030 
[    1.651397] x7 : 313030303078303a x6 : 0000000000000003 
[    1.651399] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.651401] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.651403] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.651405] Call trace:
[    1.651406]  its_cpu_init+0x824/0xb20
[    1.651409]  gic_starting_cpu+0x48/0x90
[    1.651412]  cpuhp_invoke_callback+0xa4/0x460
[    1.651413]  notify_cpu_starting+0xa0/0xe0
[    1.651416]  secondary_start_kernel+0xe8/0x190
[    1.651417] ---[ end trace f68728a0d3053b6e ]---
[    1.651423] GICv3: CPU28: using allocated LPI pending table @0x00000800028e0000
[    1.651490] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.651499] Xen: initializing cpu28
[    1.651527] CPU28: Booted secondary processor 0x000000010c [0x413fd0c1]
[    1.651866] Detected PIPT I-cache on CPU29
[    1.651945] GICv3: CPU29: found redistributor 10d region 0:0x00001001004e0000
[    1.658568] ------------[ cut here ]------------
[    1.658572] WARNING: CPU: 29 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.658574] Modules linked in:
[    1.658577] CPU: 29 PID: 0 Comm: swapper/29 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.658580] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.658581] pc : its_cpu_init+0x824/0xb20
[    1.658583] lr : its_cpu_init+0x820/0xb20
[    1.658584] sp : ffff800011b1be80
[    1.658585] x29: ffff800011b1be80 x28: 000000000000001d 
[    1.658587] x27: 0000000000000000 x26: ffff8000123a0070 
[    1.658589] x25: fffffe1ffdea3c00 x24: ffff8000123a0000 
[    1.658591] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.658593] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.658594] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.658596] x17: 0000000000000000 x16: 0000000000000000 
[    1.658598] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.658600] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.658602] x11: 0000000000000000 x10: 0000000000000001 
[    1.658604] x9 : ffff8000106d6830 x8 : 3065343030313030 
[    1.658605] x7 : 313030303078303a x6 : 0000000000000003 
[    1.658607] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.658609] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.658611] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.658613] Call trace:
[    1.658615]  its_cpu_init+0x824/0xb20
[    1.658617]  gic_starting_cpu+0x48/0x90
[    1.658620]  cpuhp_invoke_callback+0xa4/0x460
[    1.658622]  notify_cpu_starting+0xa0/0xe0
[    1.658624]  secondary_start_kernel+0xe8/0x190
[    1.658625] ---[ end trace f68728a0d3053b6f ]---
[    1.658631] GICv3: CPU29: using allocated LPI pending table @0x00000800028f0000
[    1.658697] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.658706] Xen: initializing cpu29
[    1.658733] CPU29: Booted secondary processor 0x000000010d [0x413fd0c1]
[    1.659063] Detected PIPT I-cache on CPU30
[    1.659143] GICv3: CPU30: found redistributor 10e region 0:0x0000100100500000
[    1.665766] ------------[ cut here ]------------
[    1.665771] WARNING: CPU: 30 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.665772] Modules linked in:
[    1.665776] CPU: 30 PID: 0 Comm: swapper/30 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.665778] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.665780] pc : its_cpu_init+0x824/0xb20
[    1.665781] lr : its_cpu_init+0x820/0xb20
[    1.665782] sp : ffff800011b23e80
[    1.665784] x29: ffff800011b23e80 x28: 000000000000001e 
[    1.665786] x27: 0000000000000000 x26: ffff8000123c0070 
[    1.665788] x25: fffffe1ffdea4000 x24: ffff8000123c0000 
[    1.665790] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.665792] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.665794] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.665796] x17: 0000000000000000 x16: 0000000000000000 
[    1.665798] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.665799] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.665801] x11: 0000000000000000 x10: 0000000000000001 
[    1.665803] x9 : ffff8000106d6830 x8 : 3030353030313030 
[    1.665805] x7 : 313030303078303a x6 : 0000000000000003 
[    1.665807] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.665809] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.665811] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.665813] Call trace:
[    1.665815]  its_cpu_init+0x824/0xb20
[    1.665818]  gic_starting_cpu+0x48/0x90
[    1.665820]  cpuhp_invoke_callback+0xa4/0x460
[    1.665822]  notify_cpu_starting+0xa0/0xe0
[    1.665825]  secondary_start_kernel+0xe8/0x190
[    1.665826] ---[ end trace f68728a0d3053b70 ]---
[    1.665832] GICv3: CPU30: using allocated LPI pending table @0x0000080002900000
[    1.665898] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.665907] Xen: initializing cpu30
[    1.665935] CPU30: Booted secondary processor 0x000000010e [0x413fd0c1]
[    1.666196] Detected PIPT I-cache on CPU31
[    1.666278] GICv3: CPU31: found redistributor 10f region 0:0x0000100100520000
[    1.672900] ------------[ cut here ]------------
[    1.672905] WARNING: CPU: 31 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.672906] Modules linked in:
[    1.672910] CPU: 31 PID: 0 Comm: swapper/31 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.672912] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.672914] pc : its_cpu_init+0x824/0xb20
[    1.672915] lr : its_cpu_init+0x820/0xb20
[    1.672916] sp : ffff800011b2be80
[    1.672917] x29: ffff800011b2be80 x28: 000000000000001f 
[    1.672920] x27: 0000000000000000 x26: ffff8000123e0070 
[    1.672922] x25: fffffe1ffdea4400 x24: ffff8000123e0000 
[    1.672924] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.672926] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.672928] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.672930] x17: 0000000000000000 x16: 0000000000000000 
[    1.672932] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.672934] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.672936] x11: 0000000000000000 x10: 0000000000000001 
[    1.672937] x9 : ffff8000106d6830 x8 : 3032353030313030 
[    1.672939] x7 : 313030303078303a x6 : 0000000000000003 
[    1.672941] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.672943] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.672945] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.672947] Call trace:
[    1.672949]  its_cpu_init+0x824/0xb20
[    1.672952]  gic_starting_cpu+0x48/0x90
[    1.672955]  cpuhp_invoke_callback+0xa4/0x460
[    1.672957]  notify_cpu_starting+0xa0/0xe0
[    1.672959]  secondary_start_kernel+0xe8/0x190
[    1.672961] ---[ end trace f68728a0d3053b71 ]---
[    1.672967] GICv3: CPU31: using allocated LPI pending table @0x0000080002910000
[    1.673035] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.673043] Xen: initializing cpu31
[    1.673071] CPU31: Booted secondary processor 0x000000010f [0x413fd0c1]
[    1.673164] smp: Brought up 1 node, 32 CPUs
[    7.518739] SMP: Total of 32 processors activated.
[    7.523572] CPU features: detected: Privileged Access Never
[    7.529227] CPU features: detected: LSE atomic instructions
[    7.534856] CPU features: detected: User Access Override
[    7.540237] CPU features: detected: 32-bit EL0 Support
[    7.545445] CPU features: detected: Common not Private translations
[    7.551782] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    7.560462] CPU features: detected: CRC32 instructions
[    7.565670] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    7.603388] CPU: All CPU(s) started at EL1
[    7.607544] alternatives: patching kernel code
[    7.612871] devtmpfs: initialized
[    7.616407] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    7.626049] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    7.633252] DMI not present or invalid.
[    7.637252] NET: Registered protocol family 16
[    7.642745] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    7.649829] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    7.657719] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    7.666017] thermal_sys: Registered thermal governor 'step_wise'
[    7.666147] Detected 15 PCC Subspaces
[    7.675802] Registering PCC driver as Mailbox controller
[    7.681193] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    7.689424] ASID allocator initialised with 65536 entries
[    7.694728] ACPI: bus type PCI registered
[    7.698801] Serial: AMBA PL011 UART driver
[    7.705281] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    7.711892] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    7.718651] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    7.725432] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    7.733579] cryptd: max_cpu_qlen set to 1000
[    7.805804] raid6: neonx8   gen()  7729 MB/s
[    7.878028] raid6: neonx8   xor()  6058 MB/s
[    7.950249] raid6: neonx4   gen()  7628 MB/s
[    8.022472] raid6: neonx4   xor()  6305 MB/s
[    8.094696] raid6: neonx2   gen()  7330 MB/s
[    8.166917] raid6: neonx2   xor()  5756 MB/s
[    8.239141] raid6: neonx1   gen()  5986 MB/s
[    8.311369] raid6: neonx1   xor()  4916 MB/s
[    8.383593] raid6: int64x8  gen()  3600 MB/s
[    8.455817] raid6: int64x8  xor()  2017 MB/s
[    8.528203] raid6: int64x4  gen()  4126 MB/s
[    8.600438] raid6: int64x4  xor()  2190 MB/s
[    8.672658] raid6: int64x2  gen()  3502 MB/s
[    8.744876] raid6: int64x2  xor()  1888 MB/s
[    8.817093] raid6: int64x1  gen()  2873 MB/s
[    8.889312] raid6: int64x1  xor()  1507 MB/s
[    8.893479] raid6: using algorithm neonx8 gen() 7729 MB/s
[    8.898946] raid6: .... xor() 6058 MB/s, rmw enabled
[    8.903982] raid6: using neon recovery algorithm
[    8.908751] ACPI: Added _OSI(Module Device)
[    8.912925] ACPI: Added _OSI(Processor Device)
[    8.917437] ACPI: Added _OSI(3.0 _SCP Extensions)
[    8.922211] ACPI: Added _OSI(Processor Aggregator Device)
[    8.927680] ACPI: Added _OSI(Linux-Dell-Video)
[    8.932194] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    8.937576] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    8.963317] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    8.975848] ACPI: Interpreter enabled
[    8.979412] ACPI: Using GIC for interrupt routing
[    8.984198] ACPI: MCFG table detected, 5 entries
[    8.988961] HEST: Table parsing has been initialized.
[    9.041502] ARMH0011:00: ttyAMA0 at MMIO 0x100002600000 (irq = 79, base_baud = 0) is a SBSA
[    9.132234] printk: console [ttyAMA0] enabled
[    9.138283] ARMH0011:01: ttyAMA1 at MMIO 0x100002620000 (irq = 80, base_baud = 0) is a SBSA
[    9.148641] ACPI: PCI Root Bridge [PCI0] (domain 000c [bus 00-ff])
[    9.154808] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.164009] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control
[    9.171832] acpi PNP0A08:00: MCFG quirk: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.184753] acpi PNP0A08:00: ECAM area [mem 0x33fff0000000-0x33ffffffffff] reserved by PNP0C02:00
[    9.193638] acpi PNP0A08:00: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff]
[    9.201860] PCI host bridge to bus 000c:00
[    9.205905] pci_bus 000c:00: root bus resource [mem 0x40000000-0x4fffffff window]
[    9.213565] pci_bus 000c:00: root bus resource [mem 0x300000000000-0x33ffdfffffff window]
[    9.221811] pci_bus 000c:00: root bus resource [bus 00-ff]
[    9.227408] pci 000c:00:00.0: [1def:e100] type 00 class 0x060000
[    9.233513] pci 000c:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.241099] pci 000c:00:01.0: [1def:e101] type 01 class 0x060400
[    9.247177] pci 000c:00:01.0: supports D1 D2
[    9.251447] pci 000c:00:01.0: PME# supported from D0 D1 D3hot
[    9.257320] pci 000c:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.266059] pci 000c:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    9.274231] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    9.285815] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    9.296397] pci 000c:00:01.0: BAR 8: assigned [mem 0x40000000-0x401fffff]
[    9.303215] pci 000c:00:01.0: BAR 9: assigned [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.311733] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.318043] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.324732] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.331069] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.337756] pci 000c:00:01.0: PCI bridge to [bus 01]
[    9.342767] pci 000c:00:01.0:   bridge window [mem 0x40000000-0x401fffff]
[    9.349648] pci 000c:00:01.0:   bridge window [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.358175] pci_bus 000c:00: resource 4 [mem 0x40000000-0x4fffffff window]
[    9.365098] pci_bus 000c:00: resource 5 [mem 0x300000000000-0x33ffdfffffff window]
[    9.372745] pci_bus 000c:01: resource 1 [mem 0x40000000-0x401fffff]
[    9.379069] pci_bus 000c:01: resource 2 [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.387130] ACPI: PCI Root Bridge [PCI1] (domain 000d [bus 00-ff])
[    9.393314] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.402534] acpi PNP0A08:01: PCIe port services disabled; not requesting _OSC control
[    9.410358] acpi PNP0A08:01: MCFG quirk: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.423351] acpi PNP0A08:01: ECAM area [mem 0x37fff0000000-0x37ffffffffff] reserved by PNP0C02:00
[    9.432245] acpi PNP0A08:01: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff]
[    9.440460] PCI host bridge to bus 000d:00
[    9.444505] pci_bus 000d:00: root bus resource [mem 0x50000000-0x5fffffff window]
[    9.452094] pci_bus 000d:00: root bus resource [mem 0x340000000000-0x37ffdfffffff window]
[    9.460349] pci_bus 000d:00: root bus resource [bus 00-ff]
[    9.465914] pci 000d:00:00.0: [1def:e100] type 00 class 0x060000
[    9.472013] pci 000d:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.479629] pci 000d:00:01.0: [1def:e101] type 01 class 0x060400
[    9.485707] pci 000d:00:01.0: supports D1 D2
[    9.489991] pci 000d:00:01.0: PME# supported from D0 D1 D3hot
[    9.495858] pci 000d:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.503562] pci 000d:01:00.0: [10de:1e89] type 00 class 0x030000
[    9.509552] pci 000d:01:00.0: reg 0x10: [mem 0x50000000-0x50ffffff]
[    9.515890] pci 000d:01:00.0: reg 0x14: [mem 0x340000000000-0x34000fffffff 64bit pref]
[    9.523896] pci 000d:01:00.0: reg 0x1c: [mem 0x340010000000-0x340011ffffff 64bit pref]
[    9.531879] pci 000d:01:00.0: reg 0x24: [io  0x57ffe000-0x57ffe07f]
[    9.538196] pci 000d:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    9.545029] pci 000d:01:00.0: PME# supported from D0 D3hot D3cold
[    9.551181] pci 000d:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.558799] pci 000d:01:00.1: [10de:10f8] type 00 class 0x040300
[    9.564847] pci 000d:01:00.1: reg 0x10: [mem 0x51000000-0x51003fff]
[    9.571285] pci 000d:01:00.1: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.578859] pci 000d:01:00.2: [10de:1ad8] type 00 class 0x0c0330
[    9.584912] pci 000d:01:00.2: reg 0x10: [mem 0x340012000000-0x34001203ffff 64bit pref]
[    9.592919] pci 000d:01:00.2: reg 0x1c: [mem 0x340012040000-0x34001204ffff 64bit pref]
[    9.600950] pci 000d:01:00.2: PME# supported from D0 D3hot D3cold
[    9.607077] pci 000d:01:00.2: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.614712] pci 000d:01:00.3: [10de:1ad9] type 00 class 0x0c8000
[    9.620765] pci 000d:01:00.3: reg 0x10: [mem 0x51004000-0x51004fff]
[    9.627159] pci 000d:01:00.3: PME# supported from D0 D3hot D3cold
[    9.633288] pci 000d:01:00.3: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.640934] pci 000d:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    9.662316] pci 000d:00:01.0: BAR 9: assigned [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.670754] pci 000d:00:01.0: BAR 8: assigned [mem 0x50000000-0x517fffff]
[    9.677590] pci 000d:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.683921] pci 000d:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.690612] pci 000d:01:00.0: BAR 1: assigned [mem 0x340000000000-0x34000fffffff 64bit pref]
[    9.699144] pci 000d:01:00.0: BAR 3: assigned [mem 0x340010000000-0x340011ffffff 64bit pref]
[    9.707651] pci 000d:01:00.0: BAR 0: assigned [mem 0x50000000-0x50ffffff]
[    9.714489] pci 000d:01:00.0: BAR 6: assigned [mem 0x51000000-0x5107ffff pref]
[    9.721782] pci 000d:01:00.2: BAR 0: assigned [mem 0x340012000000-0x34001203ffff 64bit pref]
[    9.730308] pci 000d:01:00.2: BAR 3: assigned [mem 0x340012040000-0x34001204ffff 64bit pref]
[    9.738815] pci 000d:01:00.1: BAR 0: assigned [mem 0x51080000-0x51083fff]
[    9.745649] pci 000d:01:00.3: BAR 0: assigned [mem 0x51084000-0x51084fff]
[    9.752506] pci 000d:01:00.0: BAR 5: no space for [io  size 0x0080]
[    9.758835] pci 000d:01:00.0: BAR 5: failed to assign [io  size 0x0080]
[    9.765524] pci 000d:00:01.0: PCI bridge to [bus 01]
[    9.770538] pci 000d:00:01.0:   bridge window [mem 0x50000000-0x517fffff]
[    9.777418] pci 000d:00:01.0:   bridge window [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.785945] pci_bus 000d:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    9.795066] pci_bus 000d:00: resource 4 [mem 0x50000000-0x5fffffff window]
[    9.801983] pci_bus 000d:00: resource 5 [mem 0x340000000000-0x37ffdfffffff window]
[    9.809629] pci_bus 000d:01: resource 1 [mem 0x50000000-0x517fffff]
[    9.815952] pci_bus 000d:01: resource 2 [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.824014] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus 00-ff])
[    9.830198] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.839406] acpi PNP0A08:03: PCIe port services disabled; not requesting _OSC control
[    9.847229] acpi PNP0A08:03: MCFG quirk: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.860146] acpi PNP0A08:03: ECAM area [mem 0x3ffff0000000-0x3fffffffffff] reserved by PNP0C02:00
[    9.869033] acpi PNP0A08:03: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff]
[    9.877249] PCI host bridge to bus 0000:00
[    9.881315] pci_bus 0000:00: root bus resource [mem 0x70000000-0x7fffffff window]
[    9.888885] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3fffdfffffff window]
[    9.897139] pci_bus 0000:00: root bus resource [bus 00-ff]
[    9.902709] pci 0000:00:00.0: [1def:e100] type 00 class 0x060000
[    9.908804] pci 0000:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.916420] pci 0000:00:01.0: [1def:e101] type 01 class 0x060400
[    9.922497] pci 0000:00:01.0: supports D1 D2
[    9.926780] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    9.932653] pci 0000:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.940349] pci 0000:01:00.0: [8086:1589] type 00 class 0x020000
[    9.946346] pci 0000:01:00.0: reg 0x10: [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    9.954354] pci 0000:01:00.0: reg 0x1c: [mem 0x3c0004818000-0x3c000481ffff 64bit pref]
[    9.962336] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    9.969156] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    9.975284] pci 0000:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.982932] pci 0000:01:00.1: [8086:1589] type 00 class 0x020000
[    9.988967] pci 0000:01:00.1: reg 0x10: [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    9.996975] pci 0000:01:00.1: reg 0x1c: [mem 0x3c0004810000-0x3c0004817fff 64bit pref]
[   10.004957] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.011774] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[   10.017898] pci 0000:01:00.1: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.025546] pci 0000:01:00.2: [8086:1589] type 00 class 0x020000
[   10.031587] pci 0000:01:00.2: reg 0x10: [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[   10.039596] pci 0000:01:00.2: reg 0x1c: [mem 0x3c0004808000-0x3c000480ffff 64bit pref]
[   10.047579] pci 0000:01:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.054396] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[   10.060521] pci 0000:01:00.2: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.068167] pci 0000:01:00.3: [8086:1589] type 00 class 0x020000
[   10.074210] pci 0000:01:00.3: reg 0x10: [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[   10.082219] pci 0000:01:00.3: reg 0x1c: [mem 0x3c0004800000-0x3c0004807fff 64bit pref]
[   10.090201] pci 0000:01:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.097017] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[   10.103148] pci 0000:01:00.3: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.110803] pci 0000:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01-02] add_size 1000
[   10.119282] pci 0000:00:01.0: BAR 9: assigned [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.127786] pci 0000:00:01.0: BAR 8: assigned [mem 0x70000000-0x701fffff]
[   10.134624] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.140955] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.147644] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.153973] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.160665] pci 0000:01:00.0: BAR 0: assigned [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[   10.169198] pci 0000:01:00.1: BAR 0: assigned [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[   10.177704] pci 0000:01:00.2: BAR 0: assigned [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[   10.186212] pci 0000:01:00.3: BAR 0: assigned [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[   10.194718] pci 0000:01:00.0: BAR 6: assigned [mem 0x70000000-0x7007ffff pref]
[   10.201990] pci 0000:01:00.1: BAR 6: assigned [mem 0x70080000-0x700fffff pref]
[   10.209282] pci 0000:01:00.2: BAR 6: assigned [mem 0x70100000-0x7017ffff pref]
[   10.216573] pci 0000:01:00.3: BAR 6: assigned [mem 0x70180000-0x701fffff pref]
[   10.223865] pci 0000:01:00.0: BAR 3: assigned [mem 0x3c0004000000-0x3c0004007fff 64bit pref]
[   10.232392] pci 0000:01:00.1: BAR 3: assigned [mem 0x3c0004008000-0x3c000400ffff 64bit pref]
[   10.240899] pci 0000:01:00.2: BAR 3: assigned [mem 0x3c0004010000-0x3c0004017fff 64bit pref]
[   10.249406] pci 0000:01:00.3: BAR 3: assigned [mem 0x3c0004018000-0x3c000401ffff 64bit pref]
[   10.257913] pci 0000:00:01.0: PCI bridge to [bus 01-02]
[   10.263168] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x701fffff]
[   10.270041] pci 0000:00:01.0:   bridge window [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.278567] pci_bus 0000:00: resource 4 [mem 0x70000000-0x7fffffff window]
[   10.285491] pci_bus 0000:00: resource 5 [mem 0x3c0000000000-0x3fffdfffffff window]
[   10.293143] pci_bus 0000:01: resource 1 [mem 0x70000000-0x701fffff]
[   10.299460] pci_bus 0000:01: resource 2 [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.307528] ACPI: PCI Root Bridge [PCI6] (domain 0004 [bus 00-ff])
[   10.313705] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.322919] acpi PNP0A08:06: PCIe port services disabled; not requesting _OSC control
[   10.330741] acpi PNP0A08:06: MCFG quirk: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[   10.343661] acpi PNP0A08:06: ECAM area [mem 0x2bfff0000000-0x2bffffffffff] reserved by PNP0C02:00
[   10.352548] acpi PNP0A08:06: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff]
[   10.360763] PCI host bridge to bus 0004:00
[   10.364808] pci_bus 0004:00: root bus resource [mem 0x20000000-0x2fffffff window]
[   10.372399] pci_bus 0004:00: root bus resource [mem 0x280000000000-0x2bffdfffffff window]
[   10.380653] pci_bus 0004:00: root bus resource [bus 00-ff]
[   10.386219] pci 0004:00:00.0: [1def:e110] type 00 class 0x060000
[   10.392315] pci 0004:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.399935] pci 0004:00:01.0: [1def:e111] type 01 class 0x060400
[   10.406013] pci 0004:00:01.0: supports D1 D2
[   10.410295] pci 0004:00:01.0: PME# supported from D0 D1 D3hot
[   10.416163] pci 0004:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.423808] pci 0004:00:03.0: [1def:e113] type 01 class 0x060400
[   10.429884] pci 0004:00:03.0: supports D1 D2
[   10.434166] pci 0004:00:03.0: PME# supported from D0 D1 D3hot
[   10.440036] pci 0004:00:03.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.447679] pci 0004:00:05.0: [1def:e115] type 01 class 0x060400
[   10.453764] pci 0004:00:05.0: supports D1 D2
[   10.458037] pci 0004:00:05.0: PME# supported from D0 D1 D3hot
[   10.463907] pci 0004:00:05.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.471604] pci 0004:01:00.0: [1a03:1150] type 01 class 0x060400
[   10.477640] pci 0004:01:00.0: enabling Extended Tags
[   10.482678] pci 0004:01:00.0: supports D1 D2
[   10.486944] pci 0004:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   10.493708] pci 0004:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.501359] pci_bus 0004:02: extended config space not accessible
[   10.507478] pci 0004:02:00.0: [1a03:2000] type 00 class 0x030000
[   10.513545] pci 0004:02:00.0: reg 0x10: [mem 0x20000000-0x20ffffff]
[   10.519878] pci 0004:02:00.0: reg 0x14: [mem 0x21000000-0x2101ffff]
[   10.526214] pci 0004:02:00.0: reg 0x18: [io  0x27fff000-0x27fff07f]
[   10.532629] pci 0004:02:00.0: supports D1 D2
[   10.536856] pci 0004:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   10.543615] pci 0004:02:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.551346] pci 0004:03:00.0: [1912:0014] type 00 class 0x0c0330
[   10.557340] pci 0004:03:00.0: reg 0x10: [mem 0x21200000-0x21201fff 64bit]
[   10.564293] pci 0004:03:00.0: PME# supported from D0 D3hot D3cold
[   10.570415] pci 0004:03:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.578100] pci 0004:04:00.0: [8086:1533] type 00 class 0x020000
[   10.584103] pci 0004:04:00.0: reg 0x10: [mem 0x21100000-0x2117ffff]
[   10.590445] pci 0004:04:00.0: reg 0x18: [io  0x27ffe000-0x27ffe01f]
[   10.596818] pci 0004:04:00.0: reg 0x1c: [mem 0x21180000-0x21183fff]
[   10.603313] pci 0004:04:00.0: PME# supported from D0 D3hot D3cold
[   10.609472] pci 0004:04:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.617087] pci 0004:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-02] add_size 200000 add_align 100000
[   10.628888] pci 0004:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[   10.637091] pci 0004:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[   10.648676] pci 0004:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 03] add_size 100000 add_align 100000
[   10.659254] pci 0004:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[   10.670811] pci 0004:00:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[   10.681395] pci 0004:00:01.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[   10.688204] pci 0004:00:01.0: BAR 9: assigned [mem 0x280000000000-0x2800001fffff 64bit pref]
[   10.696730] pci 0004:00:03.0: BAR 8: assigned [mem 0x21800000-0x219fffff]
[   10.703573] pci 0004:00:03.0: BAR 9: assigned [mem 0x280000200000-0x2800003fffff 64bit pref]
[   10.712094] pci 0004:00:05.0: BAR 8: assigned [mem 0x21a00000-0x21bfffff]
[   10.718933] pci 0004:00:05.0: BAR 9: assigned [mem 0x280000400000-0x2800005fffff 64bit pref]
[   10.727459] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.733770] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.740461] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[   10.746790] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   10.753484] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[   10.759813] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   10.766502] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.772838] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.779521] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[   10.785853] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   10.792546] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[   10.798874] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   10.805564] pci 0004:01:00.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[   10.812421] pci 0004:01:00.0: BAR 7: no space for [io  size 0x1000]
[   10.818752] pci 0004:01:00.0: BAR 7: failed to assign [io  size 0x1000]
[   10.825442] pci 0004:02:00.0: BAR 0: assigned [mem 0x20000000-0x20ffffff]
[   10.832303] pci 0004:02:00.0: BAR 1: assigned [mem 0x21000000-0x2101ffff]
[   10.839162] pci 0004:02:00.0: BAR 2: no space for [io  size 0x0080]
[   10.845488] pci 0004:02:00.0: BAR 2: failed to assign [io  size 0x0080]
[   10.852178] pci 0004:01:00.0: PCI bridge to [bus 02]
[   10.857198] pci 0004:01:00.0:   bridge window [mem 0x20000000-0x217fffff]
[   10.864084] pci 0004:00:01.0: PCI bridge to [bus 01-02]
[   10.869350] pci 0004:00:01.0:   bridge window [mem 0x20000000-0x217fffff]
[   10.876225] pci 0004:00:01.0:   bridge window [mem 0x280000000000-0x2800001fffff 64bit pref]
[   10.884753] pci 0004:03:00.0: BAR 0: assigned [mem 0x21800000-0x21801fff 64bit]
[   10.892125] pci 0004:00:03.0: PCI bridge to [bus 03]
[   10.897124] pci 0004:00:03.0:   bridge window [mem 0x21800000-0x219fffff]
[   10.904008] pci 0004:00:03.0:   bridge window [mem 0x280000200000-0x2800003fffff 64bit pref]
[   10.912530] pci 0004:04:00.0: BAR 0: assigned [mem 0x21a00000-0x21a7ffff]
[   10.919372] pci 0004:04:00.0: BAR 3: assigned [mem 0x21a80000-0x21a83fff]
[   10.926230] pci 0004:04:00.0: BAR 2: no space for [io  size 0x0020]
[   10.932554] pci 0004:04:00.0: BAR 2: failed to assign [io  size 0x0020]
[   10.939243] pci 0004:00:05.0: PCI bridge to [bus 04]
[   10.944260] pci 0004:00:05.0:   bridge window [mem 0x21a00000-0x21bfffff]
[   10.951138] pci 0004:00:05.0:   bridge window [mem 0x280000400000-0x2800005fffff 64bit pref]
[   10.959665] pci_bus 0004:00: Some PCI device resources are unassigned, try booting with pci=realloc
[   10.968786] pci_bus 0004:00: resource 4 [mem 0x20000000-0x2fffffff window]
[   10.975707] pci_bus 0004:00: resource 5 [mem 0x280000000000-0x2bffdfffffff window]
[   10.983359] pci_bus 0004:01: resource 1 [mem 0x20000000-0x217fffff]
[   10.989673] pci_bus 0004:01: resource 2 [mem 0x280000000000-0x2800001fffff 64bit pref]
[   10.997679] pci_bus 0004:02: resource 1 [mem 0x20000000-0x217fffff]
[   11.003996] pci_bus 0004:03: resource 1 [mem 0x21800000-0x219fffff]
[   11.010333] pci_bus 0004:03: resource 2 [mem 0x280000200000-0x2800003fffff 64bit pref]
[   11.018339] pci_bus 0004:04: resource 1 [mem 0x21a00000-0x21bfffff]
[   11.024656] pci_bus 0004:04: resource 2 [mem 0x280000400000-0x2800005fffff 64bit pref]
[   11.032735] ACPI: PCI Root Bridge [PCI7] (domain 0005 [bus 00-ff])
[   11.038901] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   11.048116] acpi PNP0A08:07: PCIe port services disabled; not requesting _OSC control
[   11.055937] acpi PNP0A08:07: MCFG quirk: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[   11.068896] acpi PNP0A08:07: ECAM area [mem 0x2ffff0000000-0x2fffffffffff] reserved by PNP0C02:00
[   11.077788] acpi PNP0A08:07: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff]
[   11.086007] PCI host bridge to bus 0005:00
[   11.090051] pci_bus 0005:00: root bus resource [mem 0x30000000-0x3fffffff window]
[   11.097641] pci_bus 0005:00: root bus resource [mem 0x2c0000000000-0x2fffdfffffff window]
[   11.105895] pci_bus 0005:00: root bus resource [bus 00-ff]
[   11.111464] pci 0005:00:00.0: [1def:e110] type 00 class 0x060000
[   11.117562] pci 0005:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.125181] pci 0005:00:01.0: [1def:e111] type 01 class 0x060400
[   11.131263] pci 0005:00:01.0: supports D1 D2
[   11.135536] pci 0005:00:01.0: PME# supported from D0 D1 D3hot
[   11.141409] pci 0005:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.149046] pci 0005:00:03.0: [1def:e113] type 01 class 0x060400
[   11.155127] pci 0005:00:03.0: supports D1 D2
[   11.159407] pci 0005:00:03.0: PME# supported from D0 D1 D3hot
[   11.165279] pci 0005:00:03.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.172925] pci 0005:00:05.0: [1def:e115] type 01 class 0x060400
[   11.179006] pci 0005:00:05.0: supports D1 D2
[   11.183279] pci 0005:00:05.0: PME# supported from D0 D1 D3hot
[   11.189146] pci 0005:00:05.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.196789] pci 0005:00:07.0: [1def:e117] type 01 class 0x060400
[   11.202870] pci 0005:00:07.0: supports D1 D2
[   11.207151] pci 0005:00:07.0: PME# supported from D0 D1 D3hot
[   11.213023] pci 0005:00:07.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.221784] pci 0005:02:00.0: [1912:0014] type 00 class 0x0c0330
[   11.227779] pci 0005:02:00.0: reg 0x10: [mem 0x30100000-0x30101fff 64bit]
[   11.234730] pci 0005:02:00.0: PME# supported from D0 D3hot D3cold
[   11.240849] pci 0005:02:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.249580] pci 0005:04:00.0: [126f:2263] type 00 class 0x010802
[   11.255572] pci 0005:04:00.0: reg 0x10: [mem 0x30000000-0x30003fff 64bit]
[   11.262567] pci 0005:04:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.270158] pci 0005:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[   11.278376] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[   11.289960] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[   11.300540] pci 0005:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[   11.308758] pci 0005:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[   11.320342] pci 0005:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 02] add_size 100000 add_align 100000
[   11.330920] pci 0005:00:05.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[   11.339139] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[   11.350724] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[   11.361301] pci 0005:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[   11.369524] pci 0005:00:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[   11.381107] pci 0005:00:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[   11.391689] pci 0005:00:01.0: BAR 8: assigned [mem 0x30000000-0x301fffff]
[   11.398499] pci 0005:00:01.0: BAR 9: assigned [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.407025] pci 0005:00:03.0: BAR 8: assigned [mem 0x30200000-0x303fffff]
[   11.413869] pci 0005:00:03.0: BAR 9: assigned [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.422389] pci 0005:00:05.0: BAR 8: assigned [mem 0x30400000-0x305fffff]
[   11.429227] pci 0005:00:05.0: BAR 9: assigned [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.437754] pci 0005:00:07.0: BAR 8: assigned [mem 0x30600000-0x307fffff]
[   11.444593] pci 0005:00:07.0: BAR 9: assigned [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.453118] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[   11.459429] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   11.466118] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[   11.472450] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   11.479139] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[   11.485471] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   11.492170] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[   11.498492] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[   11.505183] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[   11.511513] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[   11.518202] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[   11.524533] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   11.531221] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[   11.537554] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   11.544244] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[   11.550575] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   11.557264] pci 0005:00:01.0: PCI bridge to [bus 01]
[   11.562281] pci 0005:00:01.0:   bridge window [mem 0x30000000-0x301fffff]
[   11.569159] pci 0005:00:01.0:   bridge window [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.577686] pci 0005:02:00.0: BAR 0: assigned [mem 0x30200000-0x30201fff 64bit]
[   11.585059] pci 0005:00:03.0: PCI bridge to [bus 02]
[   11.590059] pci 0005:00:03.0:   bridge window [mem 0x30200000-0x303fffff]
[   11.596937] pci 0005:00:03.0:   bridge window [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.605463] pci 0005:00:05.0: PCI bridge to [bus 03]
[   11.610458] pci 0005:00:05.0:   bridge window [mem 0x30400000-0x305fffff]
[   11.617336] pci 0005:00:05.0:   bridge window [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.625864] pci 0005:04:00.0: BAR 0: assigned [mem 0x30600000-0x30603fff 64bit]
[   11.633240] pci 0005:00:07.0: PCI bridge to [bus 04]
[   11.638237] pci 0005:00:07.0:   bridge window [mem 0x30600000-0x307fffff]
[   11.645115] pci 0005:00:07.0:   bridge window [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.653661] pci_bus 0005:00: resource 4 [mem 0x30000000-0x3fffffff window]
[   11.660568] pci_bus 0005:00: resource 5 [mem 0x2c0000000000-0x2fffdfffffff window]
[   11.668214] pci_bus 0005:01: resource 1 [mem 0x30000000-0x301fffff]
[   11.674534] pci_bus 0005:01: resource 2 [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.682539] pci_bus 0005:02: resource 1 [mem 0x30200000-0x303fffff]
[   11.688857] pci_bus 0005:02: resource 2 [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.696863] pci_bus 0005:03: resource 1 [mem 0x30400000-0x305fffff]
[   11.703478] pci_bus 0005:03: resource 2 [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.711394] pci_bus 0005:04: resource 1 [mem 0x30600000-0x307fffff]
[   11.717707] pci_bus 0005:04: resource 2 [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.725963] xen:balloon: Initialising balloon driver
[   11.730937] iommu: Default domain type: Translated 
[   11.735894] pci 000d:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[   11.744311] pci 0004:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[   11.752717] pci 000d:01:00.0: vgaarb: bridge control possible
[   11.758498] pci 0004:02:00.0: vgaarb: bridge control possible
[   11.764315] pci 0004:02:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[   11.773295] vgaarb: loaded
[   11.776087] SCSI subsystem initialized
[   11.779833] ACPI: bus type USB registered
[   11.783935] usbcore: registered new interface driver usbfs
[   11.789492] usbcore: registered new interface driver hub
[   11.794878] usbcore: registered new device driver usb
[   11.799999] pps_core: LinuxPPS API ver. 1 registered
[   11.805017] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[   11.814270] PTP clock support registered
[   11.818334] Registered efivars operations
[   11.822305] No ACPI PMU IRQ for CPU0
[   11.825922] No ACPI PMU IRQ for CPU1
[   11.829574] No ACPI PMU IRQ for CPU2
[   11.833218] No ACPI PMU IRQ for CPU3
[   11.836866] No ACPI PMU IRQ for CPU4
[   11.840505] No ACPI PMU IRQ for CPU5
[   11.844157] No ACPI PMU IRQ for CPU6
[   11.847796] No ACPI PMU IRQ for CPU7
[   11.851448] No ACPI PMU IRQ for CPU8
[   11.855088] No ACPI PMU IRQ for CPU9
[   11.858742] No ACPI PMU IRQ for CPU10
[   11.862467] No ACPI PMU IRQ for CPU11
[   11.866207] No ACPI PMU IRQ for CPU12
[   11.869932] No ACPI PMU IRQ for CPU13
[   11.873677] No ACPI PMU IRQ for CPU14
[   11.877398] No ACPI PMU IRQ for CPU15
[   11.881137] No ACPI PMU IRQ for CPU16
[   11.884863] No ACPI PMU IRQ for CPU17
[   11.888602] No ACPI PMU IRQ for CPU18
[   11.892328] No ACPI PMU IRQ for CPU19
[   11.896068] No ACPI PMU IRQ for CPU20
[   11.899793] No ACPI PMU IRQ for CPU21
[   11.903538] No ACPI PMU IRQ for CPU22
[   11.907259] No ACPI PMU IRQ for CPU23
[   11.910998] No ACPI PMU IRQ for CPU24
[   11.914724] No ACPI PMU IRQ for CPU25
[   11.918465] No ACPI PMU IRQ for CPU26
[   11.922190] No ACPI PMU IRQ for CPU27
[   11.925930] No ACPI PMU IRQ for CPU28
[   11.929655] No ACPI PMU IRQ for CPU29
[   11.933400] No ACPI PMU IRQ for CPU30
[   11.937120] No ACPI PMU IRQ for CPU31
[   11.942224] clocksource: Switched to clocksource arch_sys_counter
[   12.123574] pnp: PnP ACPI init
[   12.127967] system 00:00: [mem 0x3bfff0000000-0x3bffffffffff window] has been reserved
[   12.135881] system 00:00: [mem 0x3ffff0000000-0x3fffffffffff window] could not be reserved
[   12.144213] system 00:00: [mem 0x23fff0000000-0x23ffffffffff window] has been reserved
[   12.152193] system 00:00: [mem 0x27fff0000000-0x27ffffffffff window] has been reserved
[   12.160179] system 00:00: [mem 0x2bfff0000000-0x2bffffffffff window] could not be reserved
[   12.168521] system 00:00: [mem 0x2ffff0000000-0x2fffffffffff window] could not be reserved
[   12.176851] system 00:00: [mem 0x7bfff0000000-0x7bffffffffff window] has been reserved
[   12.184832] system 00:00: [mem 0x7ffff0000000-0x7fffffffffff window] has been reserved
[   12.192818] system 00:00: [mem 0x63fff0000000-0x63ffffffffff window] has been reserved
[   12.200804] system 00:00: [mem 0x67fff0000000-0x67ffffffffff window] has been reserved
[   12.208793] system 00:00: [mem 0x6bfff0000000-0x6bffffffffff window] has been reserved
[   12.216777] system 00:00: [mem 0x6ffff0000000-0x6fffffffffff window] has been reserved
[   12.224764] system 00:00: [mem 0x33fff0000000-0x33ffffffffff window] could not be reserved
[   12.233100] system 00:00: [mem 0x37fff0000000-0x37ffffffffff window] could not be reserved
[   12.241443] pnp: PnP ACPI: found 1 devices
[   12.248786] NET: Registered protocol family 2
[   12.253296] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[   12.261894] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[   12.270039] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[   12.277903] TCP: Hash tables configured (established 65536 bind 65536)
[   12.284478] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[   12.291355] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[   12.298780] NET: Registered protocol family 1
[   12.303381] RPC: Registered named UNIX socket transport module.
[   12.309276] RPC: Registered udp transport module.
[   12.314028] RPC: Registered tcp transport module.
[   12.318802] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   12.325382] pci 000d:01:00.1: D0 power state depends on 000d:01:00.0
[   12.331814] pci 000d:01:00.2: D0 power state depends on 000d:01:00.0
[   12.338222] pci 000d:01:00.2: enabling device (0000 -> 0002)
[   12.343962] pci 000d:01:00.3: D0 power state depends on 000d:01:00.0
[   12.350394] pci 0004:03:00.0: enabling device (0000 -> 0002)
[   12.356098] pci 0005:02:00.0: enabling device (0000 -> 0002)
[   12.361809] PCI: CLS 128 bytes, default 64
[   12.368427] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 1 counters available
[   12.378502] workingset: timestamp_bits=42 max_order=21 bucket_order=0
[   12.386696] NFS: Registering the id_resolver key type
[   12.391716] Key type id_resolver registered
[   12.395948] Key type id_legacy registered
[   12.400353] Key type cifs.idmap registered
[   12.418974] xor: measuring software checksum speed
[   12.424727]    8regs           :  9796 MB/sec
[   12.429868]    32regs          : 11761 MB/sec
[   12.434890]    arm64_neon      : 13858 MB/sec
[   12.439194] xor: using function: arm64_neon (13858 MB/sec)
[   12.444773] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[   12.452253] io scheduler mq-deadline registered
[   12.456819] io scheduler kyber registered
[   12.462277] gpio-dwapb APMC0D07:02: no IRQ for port0
[   12.468123] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[   12.476504] ACPI: Power Button [PWRB]
[   12.480907] GHES: APEI firmware first mode is enabled by APEI bit.
[   12.487106] EINJ: Error INJection is initialized.
[   12.491858] ACPI GTDT: found 1 SBSA generic Watchdog(s).
[   12.497698] xen:xen_evtchn: Event-channel device installed
[   12.503889] ast 0004:02:00.0: [drm] platform has no IO space, trying MMIO
[   12.510678] ast 0004:02:00.0: [drm] Using P2A bridge for configuration
[   12.517256] ast 0004:02:00.0: [drm] AST 2500 detected
[   12.522360] ast 0004:02:00.0: [drm] Analog VGA only
[   12.527309] ast 0004:02:00.0: [drm] dram MCLK=800 Mhz type=8 bus_width=16
[   12.534298] [TTM] Zone  kernel: Available graphics memory: 4050254 KiB
[   12.540801] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[   12.547396] [TTM] Initializing pool allocator
[   12.551802] [TTM] Initializing DMA pool allocator
[   12.556843] [drm] Initialized ast 0.1.0 20120228 for 0004:02:00.0 on minor 0
[   12.581635] Console: switching to colour frame buffer device 128x48
[   12.590070] ast 0004:02:00.0: [drm] fb0: astdrmfb frame buffer device
[   12.611063] brd: module loaded
[   12.618504] loop: module loaded
[   12.622106] nvme nvme0: pci function 0005:04:00.0
[   12.627082] igb: Intel(R) Gigabit Ethernet Network Driver
[   12.629000] DEBUG dma_alloc_attrs 431 size=512 flags=cc0 attr=0
[   12.632448] igb: Copyright (c) 2007-2014 Intel Corporation.
[   12.644673] DEBUG dma_alloc_attrs 434 size=512 flags=cc0 attr=0
[   12.650560] DEBUG xen_swiotlb_alloc_coherent 286 size=512 flags=cc0 attr=0
[   12.658139] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   12.665081] DEBUG dma_alloc_attrs 431 size=2048 flags=cc0 attr=0
[   12.674259] DEBUG dma_alloc_attrs 434 size=2048 flags=cc0 attr=0
[   12.677188] pps pps0: new PPS source ptp0
[   12.680247] DEBUG xen_swiotlb_alloc_coherent 286 size=2048 flags=cc0 attr=0
[   12.684361] igb 0004:04:00.0: added PHC on eth0
[   12.691363] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   12.703011] igb 0004:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[   12.703028] nvme nvme0: missing or invalid SUBNQN field.
[   12.709937] igb 0004:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:3b:50:52
[   12.709996] igb 0004:04:00.0: eth0: PBA No: 000300-000
[   12.722561] DEBUG dma_alloc_attrs 431 size=256 flags=cc0 attr=0
[   12.727711] igb 0004:04:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[   12.727772] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[   12.733714] DEBUG dma_alloc_attrs 434 size=256 flags=cc0 attr=0
[   12.741372] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[   12.747692] DEBUG xen_swiotlb_alloc_coherent 286 size=256 flags=cc0 attr=0
[   12.753693] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[   12.759668] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   12.766621] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[   12.766783] i40e 0000:01:00.0: enabling device (0000 -> 0002)
[   12.772955] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[   12.772956] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[   12.772960] DEBUG xen_swiotlb_alloc_coherent 286 size=4194304 flags=cc0 attr=110
[   12.791272] DEBUG dma_alloc_attrs 431 size=8192 flags=cc0 attr=0
[   12.791702] DEBUG xen_swiotlb_alloc_coherent 297 size=4194304 flags=cc0 attr=110
[   12.798215] DEBUG dma_alloc_attrs 434 size=8192 flags=cc0 attr=0
[   12.798219] DEBUG xen_swiotlb_alloc_coherent 286 size=8192 flags=cc0 attr=0
[   12.804980] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[   12.812199] DEBUG xen_swiotlb_alloc_coherent 297 size=8192 flags=cc0 attr=0
[   12.812204] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.818260] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[   12.818264] DEBUG xen_swiotlb_alloc_coherent 286 size=4194304 flags=cc0 attr=110
[   12.825747] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.831805] DEBUG xen_swiotlb_alloc_coherent 297 size=4194304 flags=cc0 attr=110
[   12.838845] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   12.838849] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   12.845362] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000008
[   12.852391] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.858451] Mem abort info:
[   12.858452]   ESR = 0x96000044
[   12.858455]   EC = 0x25: DABT (current EL), IL = 32 bits
[   12.864975] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.872443]   SET = 0, FnV = 0
[   12.872444]   EA = 0, S1PTW = 0
[   12.872448] Data abort info:
[   12.878511] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   12.885987]   ISV = 0, ISS = 0x00000044
[   12.885988]   CM = 0, WnR = 1
[   12.885992] [0000000000000008] user address but active_mm is swapper
[   12.893018] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   12.900043] Internal error: Oops: 96000044 [#1] PREEMPT SMP
[   12.900047] Modules linked in:
[   12.908928] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.914961] 
[   12.914965] CPU: 2 PID: 7 Comm: kworker/u64:0 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[   12.917787] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.917790] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   12.920923] Workqueue: nvme-reset-wq nvme_reset_work
[   12.926332] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   12.932409] 
[   12.932411] pstate: 60c00085 (nZCv daIf +PAN +UAO -TCO BTYPE=--)
[   12.932417] pc : steal_suitable_fallback+0x138/0x2f0
[   12.935504] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.938712] lr : steal_suitable_fallback+0x1bc/0x2f0
[   12.938715] sp : ffff80001196b820
[   12.941659] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.941663] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   12.948740] x29: ffff80001196b820 x28: 0000000000000000 
[   12.948742] x27: 0000000000000000 x26: ffff8000114dbcb0 
[   12.948744] x25: fffffdffffe00000 x24: 0000000000000001 
[   12.948745] x23: 0000000000000000 x22: fffffe1ffdf70000 
[   12.948747] x21: ffff08071efef980 x20: 0000000000000901 
[   12.952614] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   12.955636] 
[   12.955637] x19: 0000000000080000 x18: ffffffffffffffff 
[   12.962108] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.969139] 
[   12.969140] x17: 000000000000000e x16: 0000000000000012 
[   12.974772] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.977859] 
[   12.977862] x15: ffff80009196b8d7 
[   12.983980] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   12.985480] x14: 0000000000000006 
[   12.995221] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.001246] x13: ffff80001196b8df x12: 3033343931343d65 
[   13.008296] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.013299] x11: 7a69732037393220 x10: 000000000000000c 
[   13.020363] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.021851] x9 : ffff800010039d58 x8 : 0000000080000000 
[   13.027990] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.033107] 
[   13.033115] x7 : 0000000000000018 
[   13.039100] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.044120] x6 : ffff800011750890 
[   13.044124] x5 : ffff800011750878 
[   13.047486] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.053595] x4 : 0000000000000000 
[   13.053600] x3 : 0000000000000000 
[   13.060641] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.066002] x2 : 0000000000000000 
[   13.066006] x1 : 0000000000000200 
[   13.071383] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.076766] x0 : 0000000000000000 
[   13.076770] Call trace:
[   13.082146] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.087530]  steal_suitable_fallback+0x138/0x2f0
[   13.087536]  get_page_from_freelist+0xe30/0x12a0
[   13.094581] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.096072]  __alloc_pages_nodemask+0x148/0xe00
[   13.096078]  __dma_direct_alloc_pages+0xa4/0x1d0
[   13.101505] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.107589]  dma_direct_alloc+0x1d8/0x340
[   13.107596]  xen_swiotlb_alloc_coherent+0xc0/0x34c
[   13.109091] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.109094] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.114525]  dma_alloc_attrs+0x144/0x160
[   13.114531]  nvme_reset_work+0x1030/0x1520
[   13.120611] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.122115]  process_one_work+0x1dc/0x4bc
[   13.122119]  worker_thread+0x144/0x470
[   13.125612] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.132689]  kthread+0x14c/0x160
[   13.132694]  ret_from_fork+0x10/0x38
[   13.136116] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.143193] Code: a94082c4 d37ef463 cb3c4063 8b3c4042 (f9000480) 
[   13.148553] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.154638] ---[ end trace f68728a0d3053b72 ]---
[   13.154642] note: kworker/u64:0[7] exited with preempt_count 1
[   13.160012] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.369484] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.375560] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.382601] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.389633] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.395698] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.401774] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.408816] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.415848] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.421913] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.427990] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.435031] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.442064] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.448128] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.454204] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.461247] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.468278] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.474344] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.480420] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.487464] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.494495] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.500559] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.506637] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.513677] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.520709] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.526777] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.532850] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.539893] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.546928] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.552990] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.559066] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.566108] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.573140] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.579205] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.585281] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.592323] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.599355] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.605420] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.611496] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.618539] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.625571] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.631635] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.637712] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.644754] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.651786] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.657851] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.663927] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.670969] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.678001] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.684066] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.690143] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.697187] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.704217] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.710281] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.716360] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.723400] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.730432] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.736500] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.742573] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.749615] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.756651] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.762713] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.768788] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.775830] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.782862] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.788928] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.795003] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.802046] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.809078] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.815143] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.821219] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.828261] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.835293] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.841358] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.847434] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.854476] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.861509] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.867573] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.873650] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.880692] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.887726] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.893788] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.899865] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.906910] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.913939] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.920004] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.926080] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.933122] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.940155] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.946222] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.952295] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.959337] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.966373] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.972434] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.978511] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   13.985553] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   13.992585] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.998650] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.004726] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.011769] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.018800] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.024865] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.030942] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.037984] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.045016] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.051081] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.057157] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.064199] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.071231] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.077296] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.083372] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.090414] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.097449] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.103511] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.109588] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.116633] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.123662] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.129727] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.135803] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.142845] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.149877] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.155942] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.162018] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.169060] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.176092] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.182157] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.188234] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.195276] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.202308] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.208372] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.214449] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.221490] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.228523] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.234588] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.240665] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.247708] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.254738] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.260803] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.266880] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.273921] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.280954] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.287018] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.293095] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.300137] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.307171] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.313241] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.319310] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.326356] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.333384] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.339449] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.345525] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.352567] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.359600] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.365664] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.371741] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.378783] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.385816] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.391880] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.397956] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.404998] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.412030] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.418095] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.424171] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.431213] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.438245] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.444310] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.450387] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.457432] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.464460] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.470525] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.476605] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.483644] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.490676] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.496744] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.502817] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.509859] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   14.516895] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.522957] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.529033] DEBUG xen_swiotlb_alloc_coherent 286 size=4096 flags=cc0 attr=0
[   14.536074] DEBUG xen_swiotlb_alloc_coherent 297 size=4096 flags=cc0 attr=0
[   34.174226] rcu: INFO: rcu_preempt detected stalls on CPUs/tasks:
[   34.180305] rcu: 	5-...!: (5 GPs behind) idle=0c6/1/0x4000000000000000 softirq=39/39 fqs=569 
[   34.188932] 	(detected by 2, t=5252 jiffies, g=-1071, q=2)


[-- Attachment #3: native_linux_boot_debug.log --]
[-- Type: application/octet-stream, Size: 384090 bytes --]

Last login: Tue Apr 19 14:09:22 on ttys001
rahsin01@C02ZX0G9LVDN ~ % telnet e123343.cambridge.arm.com 10020
Trying 10.1.194.25...
Connected to e123343.cambridge.arm.com.
Escape character is '^]'.

AIS target system port 10020 device /dev/ttyUSB1 [115200 N81]


FS0:\EFI\BOOT\> 
FS0:\EFI\BOOT\> 
FS0:\EFI\BOOT\> bootaa64.efi
Welcome to GRUB!

error: no such device: ((hd0,gpt1)/EFI/BOOT)/EFI/BOOT/grub.cfg.























                             GNU GRUB  version 2.06

 /----------------------------------------------------------------------------\
 | PARTUUID Boot: COM-HPC Yocto Image                                         | 
 | NVMe M.2  SSD Boot: COM-HPC Yocto Image                                    |
 |*USB Boot (If Drive is present): COM-HPC Yocto Image                        |
 | COM-HPC Yocto Image (Xen)                                                  |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            | 
 \----------------------------------------------------------------------------/

      Use the ^ and v keys to select which entry is highlighted.          
      Press enter to boot the selected OS, `e' to edit the commands       
      before booting or `c' for a command-line.                           
                                                                               
                                                                               


















































EFI stub: Booting Linux Kernel...
EFI stub: Using DTB from configuration table
EFI stub: Exiting boot services and installing virtual address map...
PROGRESS CODE: V03101019 I0
[    0.000000] Booting Linux on physical CPU 0x0000100000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard+ (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: TPMFinalLog=0x807f9ef0000 ACPI 2.0=0x807fa0d0018 SMBIOS 3.0=0x807f8e30000 MEMATTR=0x807f72e1018 ESRT=0x807f7f6ca18 TPMEventLog=0x807f722d018 RNG=0xffb4ba98 MEMRESERVE=0x807f7ed3e98 
[    0.000000] efi: seeding entropy pool
[    0.000000] esrt: Reserving ESRT space from 0x00000807f7f6ca18 to 0x00000807f7f6ca50.
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807FA0D0018 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807FA0DFE98 0000A4 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807FA0DFB98 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807FA0D7518 000AF4 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x807fc070e00-0x807fc072fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000088300000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000088300000-0x00000000883fffff]
[    0.000000]   node   0: [mem 0x0000000090000000-0x0000000091ffffff]
[    0.000000]   node   0: [mem 0x0000000092000000-0x00000000927bffff]
[    0.000000]   node   0: [mem 0x00000000927c0000-0x00000000ffb3ffff]
[    0.000000]   node   0: [mem 0x00000000ffb40000-0x00000000ffb4ffff]
[    0.000000]   node   0: [mem 0x00000000ffb50000-0x00000000ffffffff]
[    0.000000]   node   0: [mem 0x0000080000000000-0x000008007fffffff]
[    0.000000]   node   0: [mem 0x0000080100000000-0x00000807f5fc3fff]
[    0.000000]   node   0: [mem 0x00000807f5fc4000-0x00000807f6686fff]
[    0.000000]   node   0: [mem 0x00000807f6687000-0x00000807f723ffff]
[    0.000000]   node   0: [mem 0x00000807f7240000-0x00000807f72dffff]
[    0.000000]   node   0: [mem 0x00000807f72e0000-0x00000807f7e9ffff]
[    0.000000]   node   0: [mem 0x00000807f7ea0000-0x00000807f7ebffff]
[    0.000000]   node   0: [mem 0x00000807f7ec0000-0x00000807f7f0ffff]
[    0.000000]   node   0: [mem 0x00000807f7f10000-0x00000807f7f4ffff]
[    0.000000]   node   0: [mem 0x00000807f7f50000-0x00000807f87effff]
[    0.000000]   node   0: [mem 0x00000807f87f0000-0x00000807f882ffff]
[    0.000000]   node   0: [mem 0x00000807f8830000-0x00000807f8a6ffff]
[    0.000000]   node   0: [mem 0x00000807f8a70000-0x00000807f8aaffff]
[    0.000000]   node   0: [mem 0x00000807f8ab0000-0x00000807f8e1ffff]
[    0.000000]   node   0: [mem 0x00000807f8e20000-0x00000807f8e3ffff]
[    0.000000]   node   0: [mem 0x00000807f8e40000-0x00000807f8e6ffff]
[    0.000000]   node   0: [mem 0x00000807f8e70000-0x00000807f9e7ffff]
[    0.000000]   node   0: [mem 0x00000807f9e80000-0x00000807f9eeffff]
[    0.000000]   node   0: [mem 0x00000807f9ef0000-0x00000807f9f1ffff]
[    0.000000]   node   0: [mem 0x00000807f9f20000-0x00000807f9fbffff]
[    0.000000]   node   0: [mem 0x00000807f9fc0000-0x00000807f9ffffff]
[    0.000000]   node   0: [mem 0x00000807fa000000-0x00000807fa0fffff]
[    0.000000]   node   0: [mem 0x00000807fa100000-0x00000807fa19ffff]
[    0.000000]   node   0: [mem 0x00000807fa1a0000-0x00000807fa26ffff]
[    0.000000]   node   0: [mem 0x00000807fa270000-0x00000807fa4affff]
[    0.000000]   node   0: [mem 0x00000807fa4b0000-0x00000807fa71ffff]
[    0.000000]   node   0: [mem 0x00000807fa720000-0x00000807fa75ffff]
[    0.000000]   node   0: [mem 0x00000807fa760000-0x00000807fa8cffff]
[    0.000000]   node   0: [mem 0x00000807fa8d0000-0x00000807fa96ffff]
[    0.000000]   node   0: [mem 0x00000807fa970000-0x00000807fa9fffff]
[    0.000000]   node   0: [mem 0x00000807faa00000-0x00000807fbaaffff]
[    0.000000]   node   0: [mem 0x00000807fbab0000-0x00000807fbb3ffff]
[    0.000000]   node   0: [mem 0x00000807fbb40000-0x00000807fbbdffff]
[    0.000000]   node   0: [mem 0x00000807fbbe0000-0x00000807fbcaffff]
[    0.000000]   node   0: [mem 0x00000807fbcb0000-0x00000807fbceffff]
[    0.000000]   node   0: [mem 0x00000807fbcf0000-0x00000807fbd5ffff]
[    0.000000]   node   0: [mem 0x00000807fbd60000-0x00000807fbdfffff]
[    0.000000]   node   0: [mem 0x00000807fbe00000-0x00000807ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000088300000-0x00000807ffffffff]
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270100 -> Node 0
[    0.000000] percpu: Embedded 31 pages/cpu s89240 r8192 d29544 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: ARM erratum 1418040
[    0.000000] alternatives: patching kernel code
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8193276
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/Image rootwait rw root=/dev/sda2
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.000000] printk: log_buf_len min size: 131072 bytes
[    0.000000] printk: log_buf_len: 262144 bytes
[    0.000000] printk: early log buf free: 121248(92%)
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000fbb40000-0x00000000ffb40000] (64MB)
[    0.000000] Memory: 32502188K/33293312K available (13568K kernel code, 1996K rwdata, 3476K rodata, 4160K init, 822K bss, 791124K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 41306 entries in 162 pages
[    0.000000] ftrace: allocated 162 pages with 3 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=32.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 672 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 100000 region 0:0x0000100100540000
[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 3 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 4 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 5 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 6 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 7 -> Node 0
[    0.000000] ITS [mem 0x100100040000-0x10010005ffff]
[    0.000000] ITS@0x0000100100040000: allocated 8192 Devices @80000220000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100040000: allocated 32768 Interrupt Collections @80000230000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100060000-0x10010007ffff]
[    0.000000] ITS@0x0000100100060000: allocated 8192 Devices @80000250000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100060000: allocated 32768 Interrupt Collections @80000260000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100080000-0x10010009ffff]
[    0.000000] ITS@0x0000100100080000: allocated 8192 Devices @80000280000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100080000: allocated 32768 Interrupt Collections @80000290000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000a0000-0x1001000bffff]
[    0.000000] ITS@0x00001001000a0000: allocated 8192 Devices @800002b0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000a0000: allocated 32768 Interrupt Collections @800002c0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000c0000-0x1001000dffff]
[    0.000000] ITS@0x00001001000c0000: allocated 8192 Devices @800002e0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000c0000: allocated 32768 Interrupt Collections @800002f0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000e0000-0x1001000fffff]
[    0.000000] ITS@0x00001001000e0000: allocated 8192 Devices @80000310000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000e0000: allocated 32768 Interrupt Collections @80000320000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100100000-0x10010011ffff]
[    0.000000] ITS@0x0000100100100000: allocated 8192 Devices @80000340000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100100000: allocated 32768 Interrupt Collections @80000350000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100120000-0x10010013ffff]
[    0.000000] ITS@0x0000100100120000: allocated 8192 Devices @80000370000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100120000: allocated 32768 Interrupt Collections @80000380000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] GICv3: using LPI property table @0x0000080000390000
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000800003a0000
[    0.000000] random: get_random_bytes called from start_kernel+0x394/0x554 with crng_init=0
[    0.000000] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.000000] ACPI GTDT: found 1 memory-mapped timer block(s).
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 25.00MHz (phys/phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000001] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000054] Console: colour dummy device 80x25
[    0.000074] ACPI: Core revision 20200925
[    0.000490] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    0.000494] pid_max: default: 32768 minimum: 301
[    0.000522] LSM: Security Framework initializing
[    0.000650] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.000734] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.001583] rcu: Hierarchical SRCU implementation.
[    0.001710] Platform MSI: ITS@0x100100040000 domain created
[    0.001714] Platform MSI: ITS@0x100100060000 domain created
[    0.001717] Platform MSI: ITS@0x100100080000 domain created
[    0.001720] Platform MSI: ITS@0x1001000a0000 domain created
[    0.001723] Platform MSI: ITS@0x1001000c0000 domain created
[    0.001726] Platform MSI: ITS@0x1001000e0000 domain created
[    0.001729] Platform MSI: ITS@0x100100100000 domain created
[    0.001733] Platform MSI: ITS@0x100100120000 domain created
[    0.001740] PCI/MSI: ITS@0x100100040000 domain created
[    0.001743] PCI/MSI: ITS@0x100100060000 domain created
[    0.001745] PCI/MSI: ITS@0x100100080000 domain created
[    0.001748] PCI/MSI: ITS@0x1001000a0000 domain created
[    0.001751] PCI/MSI: ITS@0x1001000c0000 domain created
[    0.001754] PCI/MSI: ITS@0x1001000e0000 domain created
[    0.001757] PCI/MSI: ITS@0x100100100000 domain created
[    0.001761] PCI/MSI: ITS@0x100100120000 domain created
[    0.001768] Remapping and enabling EFI services.
[    0.003608] smp: Bringing up secondary CPUs ...
[    0.003855] Detected PIPT I-cache on CPU1
[    0.003884] GICv3: CPU1: found redistributor 180000 region 0:0x0000100100740000
[    0.003908] GICv3: CPU1: using allocated LPI pending table @0x00000800003b0000
[    0.003953] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.003969] CPU1: Booted secondary processor 0x0000180000 [0x413fd0c1]
[    0.004355] Detected PIPT I-cache on CPU2
[    0.004382] GICv3: CPU2: found redistributor 160000 region 0:0x00001001006c0000
[    0.004406] GICv3: CPU2: using allocated LPI pending table @0x00000800003c0000
[    0.004453] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004469] CPU2: Booted secondary processor 0x0000160000 [0x413fd0c1]
[    0.004764] Detected PIPT I-cache on CPU3
[    0.004792] GICv3: CPU3: found redistributor 1e0000 region 0:0x00001001008c0000
[    0.004816] GICv3: CPU3: using allocated LPI pending table @0x00000800003d0000
[    0.004864] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004880] CPU3: Booted secondary processor 0x00001e0000 [0x413fd0c1]
[    0.005158] Detected PIPT I-cache on CPU4
[    0.005178] GICv3: CPU4: found redistributor 80000 region 0:0x0000100100340000
[    0.005203] GICv3: CPU4: using allocated LPI pending table @0x00000800003e0000
[    0.005251] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.005263] CPU4: Booted secondary processor 0x0000080000 [0x413fd0c1]
[    0.005556] Detected PIPT I-cache on CPU5
[    0.005585] GICv3: CPU5: found redistributor 200000 region 0:0x0000100100940000
[    0.005610] GICv3: CPU5: using allocated LPI pending table @0x00000800003f0000
[    0.005657] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.005673] CPU5: Booted secondary processor 0x0000200000 [0x413fd0c1]
[    0.005951] Detected PIPT I-cache on CPU6
[    0.005974] GICv3: CPU6: found redistributor e0000 region 0:0x00001001004c0000
[    0.006000] GICv3: CPU6: using allocated LPI pending table @0x0000080000800000
[    0.006050] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006064] CPU6: Booted secondary processor 0x00000e0000 [0x413fd0c1]
[    0.006360] Detected PIPT I-cache on CPU7
[    0.006392] GICv3: CPU7: found redistributor 260000 region 0:0x0000100100ac0000
[    0.006417] GICv3: CPU7: using allocated LPI pending table @0x0000080000810000
[    0.006466] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006484] CPU7: Booted secondary processor 0x0000260000 [0x413fd0c1]
[    0.006762] Detected PIPT I-cache on CPU8
[    0.006786] GICv3: CPU8: found redistributor 110000 region 0:0x0000100100580000
[    0.006811] GICv3: CPU8: using allocated LPI pending table @0x0000080000820000
[    0.006859] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006872] CPU8: Booted secondary processor 0x0000110000 [0x413fd0c1]
[    0.007170] Detected PIPT I-cache on CPU9
[    0.007196] GICv3: CPU9: found redistributor 190000 region 0:0x0000100100780000
[    0.007222] GICv3: CPU9: using allocated LPI pending table @0x0000080000830000
[    0.007269] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.007284] CPU9: Booted secondary processor 0x0000190000 [0x413fd0c1]
[    0.007557] Detected PIPT I-cache on CPU10
[    0.007584] GICv3: CPU10: found redistributor 170000 region 0:0x0000100100700000
[    0.007611] GICv3: CPU10: using allocated LPI pending table @0x0000080000840000
[    0.007659] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.007675] CPU10: Booted secondary processor 0x0000170000 [0x413fd0c1]
[    0.007962] Detected PIPT I-cache on CPU11
[    0.007991] GICv3: CPU11: found redistributor 1f0000 region 0:0x0000100100900000
[    0.008017] GICv3: CPU11: using allocated LPI pending table @0x0000080000850000
[    0.008064] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008082] CPU11: Booted secondary processor 0x00001f0000 [0x413fd0c1]
[    0.008438] Detected PIPT I-cache on CPU12
[    0.008458] GICv3: CPU12: found redistributor 90000 region 0:0x0000100100380000
[    0.008484] GICv3: CPU12: using allocated LPI pending table @0x0000080000860000
[    0.008532] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008550] CPU12: Booted secondary processor 0x0000090000 [0x413fd0c1]
[    0.008851] Detected PIPT I-cache on CPU13
[    0.008880] GICv3: CPU13: found redistributor 210000 region 0:0x0000100100980000
[    0.008907] GICv3: CPU13: using allocated LPI pending table @0x0000080000870000
[    0.008952] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008970] CPU13: Booted secondary processor 0x0000210000 [0x413fd0c1]
[    0.009264] Detected PIPT I-cache on CPU14
[    0.009287] GICv3: CPU14: found redistributor f0000 region 0:0x0000100100500000
[    0.009314] GICv3: CPU14: using allocated LPI pending table @0x0000080000880000
[    0.009363] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.009382] CPU14: Booted secondary processor 0x00000f0000 [0x413fd0c1]
[    0.009843] Detected PIPT I-cache on CPU15
[    0.009875] GICv3: CPU15: found redistributor 270000 region 0:0x0000100100b00000
[    0.009902] GICv3: CPU15: using allocated LPI pending table @0x0000080000890000
[    0.009952] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.009972] CPU15: Booted secondary processor 0x0000270000 [0x413fd0c1]
[    0.010270] Detected PIPT I-cache on CPU16
[    0.010293] GICv3: CPU16: found redistributor 100100 region 0:0x0000100100560000
[    0.010320] GICv3: CPU16: using allocated LPI pending table @0x00000800008a0000
[    0.010368] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.010386] CPU16: Booted secondary processor 0x0000100100 [0x413fd0c1]
[    0.010831] Detected PIPT I-cache on CPU17
[    0.010858] GICv3: CPU17: found redistributor 180100 region 0:0x0000100100760000
[    0.010886] GICv3: CPU17: using allocated LPI pending table @0x00000800008b0000
[    0.010933] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.010952] CPU17: Booted secondary processor 0x0000180100 [0x413fd0c1]
[    0.011253] Detected PIPT I-cache on CPU18
[    0.011280] GICv3: CPU18: found redistributor 160100 region 0:0x00001001006e0000
[    0.011308] GICv3: CPU18: using allocated LPI pending table @0x00000800008c0000
[    0.011356] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.011376] CPU18: Booted secondary processor 0x0000160100 [0x413fd0c1]
[    0.011749] Detected PIPT I-cache on CPU19
[    0.011778] GICv3: CPU19: found redistributor 1e0100 region 0:0x00001001008e0000
[    0.011807] GICv3: CPU19: using allocated LPI pending table @0x00000800008d0000
[    0.011855] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.011875] CPU19: Booted secondary processor 0x00001e0100 [0x413fd0c1]
[    0.012238] Detected PIPT I-cache on CPU20
[    0.012259] GICv3: CPU20: found redistributor 80100 region 0:0x0000100100360000
[    0.012287] GICv3: CPU20: using allocated LPI pending table @0x00000800008e0000
[    0.012335] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.012355] CPU20: Booted secondary processor 0x0000080100 [0x413fd0c1]
[    0.012650] Detected PIPT I-cache on CPU21
[    0.012680] GICv3: CPU21: found redistributor 200100 region 0:0x0000100100960000
[    0.012710] GICv3: CPU21: using allocated LPI pending table @0x00000800008f0000
[    0.012757] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.012778] CPU21: Booted secondary processor 0x0000200100 [0x413fd0c1]
[    0.013231] Detected PIPT I-cache on CPU22
[    0.013254] GICv3: CPU22: found redistributor e0100 region 0:0x00001001004e0000
[    0.013285] GICv3: CPU22: using allocated LPI pending table @0x0000080000900000
[    0.013335] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.013356] CPU22: Booted secondary processor 0x00000e0100 [0x413fd0c1]
[    0.013666] Detected PIPT I-cache on CPU23
[    0.013698] GICv3: CPU23: found redistributor 260100 region 0:0x0000100100ae0000
[    0.013728] GICv3: CPU23: using allocated LPI pending table @0x0000080000910000
[    0.013775] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.013797] CPU23: Booted secondary processor 0x0000260100 [0x413fd0c1]
[    0.014247] Detected PIPT I-cache on CPU24
[    0.014272] GICv3: CPU24: found redistributor 110100 region 0:0x00001001005a0000
[    0.014302] GICv3: CPU24: using allocated LPI pending table @0x0000080000920000
[    0.014349] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.014371] CPU24: Booted secondary processor 0x0000110100 [0x413fd0c1]
[    0.014671] Detected PIPT I-cache on CPU25
[    0.014698] GICv3: CPU25: found redistributor 190100 region 0:0x00001001007a0000
[    0.014728] GICv3: CPU25: using allocated LPI pending table @0x0000080000930000
[    0.014775] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.014797] CPU25: Booted secondary processor 0x0000190100 [0x413fd0c1]
[    0.015241] Detected PIPT I-cache on CPU26
[    0.015267] GICv3: CPU26: found redistributor 170100 region 0:0x0000100100720000
[    0.015298] GICv3: CPU26: using allocated LPI pending table @0x0000080000940000
[    0.015347] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.015368] CPU26: Booted secondary processor 0x0000170100 [0x413fd0c1]
[    0.015673] Detected PIPT I-cache on CPU27
[    0.015703] GICv3: CPU27: found redistributor 1f0100 region 0:0x0000100100920000
[    0.015734] GICv3: CPU27: using allocated LPI pending table @0x0000080000950000
[    0.015781] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.015803] CPU27: Booted secondary processor 0x00001f0100 [0x413fd0c1]
[    0.016238] Detected PIPT I-cache on CPU28
[    0.016259] GICv3: CPU28: found redistributor 90100 region 0:0x00001001003a0000
[    0.016292] GICv3: CPU28: using allocated LPI pending table @0x0000080000960000
[    0.016341] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.016362] CPU28: Booted secondary processor 0x0000090100 [0x413fd0c1]
[    0.016676] Detected PIPT I-cache on CPU29
[    0.016706] GICv3: CPU29: found redistributor 210100 region 0:0x00001001009a0000
[    0.016738] GICv3: CPU29: using allocated LPI pending table @0x0000080000970000
[    0.016786] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.016808] CPU29: Booted secondary processor 0x0000210100 [0x413fd0c1]
[    0.017239] Detected PIPT I-cache on CPU30
[    0.017264] GICv3: CPU30: found redistributor f0100 region 0:0x0000100100520000
[    0.017295] GICv3: CPU30: using allocated LPI pending table @0x0000080000980000
[    0.017343] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.017366] CPU30: Booted secondary processor 0x00000f0100 [0x413fd0c1]
[    0.017666] Detected PIPT I-cache on CPU31
[    0.017699] GICv3: CPU31: found redistributor 270100 region 0:0x0000100100b20000
[    0.017731] GICv3: CPU31: using allocated LPI pending table @0x0000080000990000
[    0.017778] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.017799] CPU31: Booted secondary processor 0x0000270100 [0x413fd0c1]
[    0.017883] smp: Brought up 1 node, 32 CPUs
[    0.017980] SMP: Total of 32 processors activated.
[    0.017982] CPU features: detected: Privileged Access Never
[    0.017984] CPU features: detected: LSE atomic instructions
[    0.017986] CPU features: detected: User Access Override
[    0.017988] CPU features: detected: 32-bit EL0 Support
[    0.017989] CPU features: detected: Common not Private translations
[    0.017991] CPU features: detected: RAS Extension Support
[    0.017993] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.017995] CPU features: detected: CRC32 instructions
[    0.017997] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.049905] CPU: All CPU(s) started at EL2
[    0.050700] devtmpfs: initialized
[    0.050970] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.050976] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.051208] SMBIOS 3.3.0 present.
[    0.051214] DMI: ADLINK COM-HPC-ALT/COM-HPC-ALT, BIOS TianoCore EDKII 11/23/2021
[    0.051444] NET: Registered protocol family 16
[    0.051948] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.052122] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.052286] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.052384] thermal_sys: Registered thermal governor 'step_wise'
[    0.052466] cpuidle: using governor menu
[    0.052604] Detected 15 PCC Subspaces
[    0.052625] Registering PCC driver as Mailbox controller
[    0.052662] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.052965] ASID allocator initialised with 65536 entries
[    0.052971] ACPI: bus type PCI registered
[    0.052973] Serial: AMBA PL011 UART driver
[    0.055120] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.055123] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.055125] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.055127] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.055824] cryptd: max_cpu_qlen set to 1000
[    0.124057] raid6: neonx8   gen()  7737 MB/s
[    0.192085] raid6: neonx8   xor()  6066 MB/s
[    0.260116] raid6: neonx4   gen()  7631 MB/s
[    0.328146] raid6: neonx4   xor()  6326 MB/s
[    0.396177] raid6: neonx2   gen()  7281 MB/s
[    0.464203] raid6: neonx2   xor()  5726 MB/s
[    0.532234] raid6: neonx1   gen()  5914 MB/s
[    0.600264] raid6: neonx1   xor()  4936 MB/s
[    0.668292] raid6: int64x8  gen()  3603 MB/s
[    0.736320] raid6: int64x8  xor()  2017 MB/s
[    0.804347] raid6: int64x4  gen()  4124 MB/s
[    0.872423] raid6: int64x4  xor()  2190 MB/s
[    0.940401] raid6: int64x2  gen()  3503 MB/s
[    1.008428] raid6: int64x2  xor()  1887 MB/s
[    1.076457] raid6: int64x1  gen()  2874 MB/s
[    1.144485] raid6: int64x1  xor()  1508 MB/s
[    1.144487] raid6: using algorithm neonx8 gen() 7737 MB/s
[    1.144488] raid6: .... xor() 6066 MB/s, rmw enabled
[    1.144490] raid6: using neon recovery algorithm
[    1.144565] ACPI: Added _OSI(Module Device)
[    1.144568] ACPI: Added _OSI(Processor Device)
[    1.144570] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.144572] ACPI: Added _OSI(Processor Aggregator Device)
[    1.144574] ACPI: Added _OSI(Linux-Dell-Video)
[    1.144576] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    1.144578] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    1.165088] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    1.171299] ACPI: Interpreter enabled
[    1.171302] ACPI: Using GIC for interrupt routing
[    1.171317] ACPI: MCFG table detected, 5 entries
[    1.171323] ACPI: IORT: SMMU-v3[33ffe0000000] Mapped to Proximity domain 0
[    1.171348] ACPI: IORT: SMMU-v3[37ffe0000000] Mapped to Proximity domain 0
[    1.171360] ACPI: IORT: SMMU-v3[3fffe0000000] Mapped to Proximity domain 0
[    1.171374] ACPI: IORT: SMMU-v3[2bffe0000000] Mapped to Proximity domain 0
[    1.171386] ACPI: IORT: SMMU-v3[2fffe0000000] Mapped to Proximity domain 0
[    1.171473] HEST: Table parsing has been initialized.
[    1.206261] ARMH0011:00: ttyAMA0 at MMIO 0x100002600000 (irq = 79, base_baud = 0) is a SBSA
[    4.021078] printk: console [ttyAMA0] enabled
[    4.027136] ARMH0011:01: ttyAMA1 at MMIO 0x100002620000 (irq = 80, base_baud = 0) is a SBSA
[    4.037255] ACPI: PCI Root Bridge [PCI0] (domain 000c [bus 00-ff])
[    4.043437] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.052541] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control
[    4.060364] acpi PNP0A08:00: MCFG quirk: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.073172] acpi PNP0A08:00: ECAM area [mem 0x33fff0000000-0x33ffffffffff] reserved by PNP0C02:00
[    4.082044] acpi PNP0A08:00: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff]
[    4.090202] PCI host bridge to bus 000c:00
[    4.094290] pci_bus 000c:00: root bus resource [mem 0x40000000-0x4fffffff window]
[    4.101762] pci_bus 000c:00: root bus resource [mem 0x300000000000-0x33ffdfffffff window]
[    4.109928] pci_bus 000c:00: root bus resource [bus 00-ff]
[    4.115439] pci 000c:00:00.0: [1def:e100] type 00 class 0x060000
[    4.121516] pci 000c:00:01.0: [1def:e101] type 01 class 0x060400
[    4.127563] pci 000c:00:01.0: supports D1 D2
[    4.131823] pci 000c:00:01.0: PME# supported from D0 D1 D3hot
[    4.138680] pci 000c:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    4.146848] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    4.158313] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    4.168826] pci 000c:00:01.0: BAR 8: assigned [mem 0x40000000-0x401fffff]
[    4.175604] pci 000c:00:01.0: BAR 9: assigned [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.184030] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.190287] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.196890] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.203146] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.209750] pci 000c:00:01.0: PCI bridge to [bus 01]
[    4.214705] pci 000c:00:01.0:   bridge window [mem 0x40000000-0x401fffff]
[    4.221483] pci 000c:00:01.0:   bridge window [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.229912] pci_bus 000c:00: resource 4 [mem 0x40000000-0x4fffffff window]
[    4.236776] pci_bus 000c:00: resource 5 [mem 0x300000000000-0x33ffdfffffff window]
[    4.244334] pci_bus 000c:01: resource 1 [mem 0x40000000-0x401fffff]
[    4.250591] pci_bus 000c:01: resource 2 [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.258536] ACPI: PCI Root Bridge [PCI1] (domain 000d [bus 00-ff])
[    4.264714] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.273813] acpi PNP0A08:01: PCIe port services disabled; not requesting _OSC control
[    4.281635] acpi PNP0A08:01: MCFG quirk: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.294427] acpi PNP0A08:01: ECAM area [mem 0x37fff0000000-0x37ffffffffff] reserved by PNP0C02:00
[    4.303299] acpi PNP0A08:01: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff]
[    4.311453] PCI host bridge to bus 000d:00
[    4.315540] pci_bus 000d:00: root bus resource [mem 0x50000000-0x5fffffff window]
[    4.323012] pci_bus 000d:00: root bus resource [mem 0x340000000000-0x37ffdfffffff window]
[    4.331178] pci_bus 000d:00: root bus resource [bus 00-ff]
[    4.336686] pci 000d:00:00.0: [1def:e100] type 00 class 0x060000
[    4.342751] pci 000d:00:01.0: [1def:e101] type 01 class 0x060400
[    4.348783] pci 000d:00:01.0: supports D1 D2
[    4.353043] pci 000d:00:01.0: PME# supported from D0 D1 D3hot
[    4.358865] pci 000d:01:00.0: [10de:1e89] type 00 class 0x030000
[    4.364872] pci 000d:01:00.0: reg 0x10: [mem 0x50000000-0x50ffffff]
[    4.371136] pci 000d:01:00.0: reg 0x14: [mem 0x340000000000-0x34000fffffff 64bit pref]
[    4.379049] pci 000d:01:00.0: reg 0x1c: [mem 0x340010000000-0x340011ffffff 64bit pref]
[    4.386959] pci 000d:01:00.0: reg 0x24: [io  0x57ffe000-0x57ffe07f]
[    4.393218] pci 000d:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.399969] pci 000d:01:00.0: PME# supported from D0 D3hot D3cold
[    4.406119] pci 000d:01:00.1: [10de:10f8] type 00 class 0x040300
[    4.412124] pci 000d:01:00.1: reg 0x10: [mem 0x51000000-0x51003fff]
[    4.418503] pci 000d:01:00.2: [10de:1ad8] type 00 class 0x0c0330
[    4.424512] pci 000d:01:00.2: reg 0x10: [mem 0x340012000000-0x34001203ffff 64bit pref]
[    4.432430] pci 000d:01:00.2: reg 0x1c: [mem 0x340012040000-0x34001204ffff 64bit pref]
[    4.440386] pci 000d:01:00.2: PME# supported from D0 D3hot D3cold
[    4.446524] pci 000d:01:00.3: [10de:1ad9] type 00 class 0x0c8000
[    4.452530] pci 000d:01:00.3: reg 0x10: [mem 0x51004000-0x51004fff]
[    4.458855] pci 000d:01:00.3: PME# supported from D0 D3hot D3cold
[    4.464991] pci 000d:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    4.486272] pci 000d:00:01.0: BAR 9: assigned [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.494700] pci 000d:00:01.0: BAR 8: assigned [mem 0x50000000-0x517fffff]
[    4.501477] pci 000d:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.507733] pci 000d:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.514338] pci 000d:01:00.0: BAR 1: assigned [mem 0x340000000000-0x34000fffffff 64bit pref]
[    4.522771] pci 000d:01:00.0: BAR 3: assigned [mem 0x340010000000-0x340011ffffff 64bit pref]
[    4.531203] pci 000d:01:00.0: BAR 0: assigned [mem 0x50000000-0x50ffffff]
[    4.537982] pci 000d:01:00.0: BAR 6: assigned [mem 0x51000000-0x5107ffff pref]
[    4.545194] pci 000d:01:00.2: BAR 0: assigned [mem 0x340012000000-0x34001203ffff 64bit pref]
[    4.553627] pci 000d:01:00.2: BAR 3: assigned [mem 0x340012040000-0x34001204ffff 64bit pref]
[    4.562060] pci 000d:01:00.1: BAR 0: assigned [mem 0x51080000-0x51083fff]
[    4.568839] pci 000d:01:00.3: BAR 0: assigned [mem 0x51084000-0x51084fff]
[    4.575617] pci 000d:01:00.0: BAR 5: no space for [io  size 0x0080]
[    4.581873] pci 000d:01:00.0: BAR 5: failed to assign [io  size 0x0080]
[    4.588479] pci 000d:00:01.0: PCI bridge to [bus 01]
[    4.593434] pci 000d:00:01.0:   bridge window [mem 0x50000000-0x517fffff]
[    4.600211] pci 000d:00:01.0:   bridge window [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.608638] pci_bus 000d:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    4.617672] pci_bus 000d:00: resource 4 [mem 0x50000000-0x5fffffff window]
[    4.624536] pci_bus 000d:00: resource 5 [mem 0x340000000000-0x37ffdfffffff window]
[    4.632094] pci_bus 000d:01: resource 1 [mem 0x50000000-0x517fffff]
[    4.638350] pci_bus 000d:01: resource 2 [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.646307] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus 00-ff])
[    4.652485] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.661585] acpi PNP0A08:03: PCIe port services disabled; not requesting _OSC control
[    4.669407] acpi PNP0A08:03: MCFG quirk: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.682207] acpi PNP0A08:03: ECAM area [mem 0x3ffff0000000-0x3fffffffffff] reserved by PNP0C02:00
[    4.691079] acpi PNP0A08:03: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff]
[    4.699236] PCI host bridge to bus 0000:00
[    4.703324] pci_bus 0000:00: root bus resource [mem 0x70000000-0x7fffffff window]
[    4.710796] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3fffdfffffff window]
[    4.718962] pci_bus 0000:00: root bus resource [bus 00-ff]
[    4.724469] pci 0000:00:00.0: [1def:e100] type 00 class 0x060000
[    4.730535] pci 0000:00:01.0: [1def:e101] type 01 class 0x060400
[    4.736567] pci 0000:00:01.0: supports D1 D2
[    4.740827] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    4.746643] pci 0000:01:00.0: [8086:1589] type 00 class 0x020000
[    4.752652] pci 0000:01:00.0: reg 0x10: [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    4.760569] pci 0000:01:00.0: reg 0x1c: [mem 0x3c0004818000-0x3c000481ffff 64bit pref]
[    4.768482] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.775244] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    4.781402] pci 0000:01:00.1: [8086:1589] type 00 class 0x020000
[    4.787411] pci 0000:01:00.1: reg 0x10: [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    4.795329] pci 0000:01:00.1: reg 0x1c: [mem 0x3c0004810000-0x3c0004817fff 64bit pref]
[    4.803242] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.810001] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    4.816150] pci 0000:01:00.2: [8086:1589] type 00 class 0x020000
[    4.822159] pci 0000:01:00.2: reg 0x10: [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    4.830076] pci 0000:01:00.2: reg 0x1c: [mem 0x3c0004808000-0x3c000480ffff 64bit pref]
[    4.837989] pci 0000:01:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.844748] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[    4.850895] pci 0000:01:00.3: [8086:1589] type 00 class 0x020000
[    4.856903] pci 0000:01:00.3: reg 0x10: [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    4.864820] pci 0000:01:00.3: reg 0x1c: [mem 0x3c0004800000-0x3c0004807fff 64bit pref]
[    4.872733] pci 0000:01:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.879491] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[    4.885655] pci 0000:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01-02] add_size 1000
[    4.894085] pci 0000:00:01.0: BAR 9: assigned [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    4.902512] pci 0000:00:01.0: BAR 8: assigned [mem 0x70000000-0x701fffff]
[    4.909289] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.915545] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.922149] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.928405] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.935011] pci 0000:01:00.0: BAR 0: assigned [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    4.943443] pci 0000:01:00.1: BAR 0: assigned [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    4.951876] pci 0000:01:00.2: BAR 0: assigned [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    4.960308] pci 0000:01:00.3: BAR 0: assigned [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    4.968740] pci 0000:01:00.0: BAR 6: assigned [mem 0x70000000-0x7007ffff pref]
[    4.975951] pci 0000:01:00.1: BAR 6: assigned [mem 0x70080000-0x700fffff pref]
[    4.983162] pci 0000:01:00.2: BAR 6: assigned [mem 0x70100000-0x7017ffff pref]
[    4.990373] pci 0000:01:00.3: BAR 6: assigned [mem 0x70180000-0x701fffff pref]
[    4.997584] pci 0000:01:00.0: BAR 3: assigned [mem 0x3c0004000000-0x3c0004007fff 64bit pref]
[    5.006016] pci 0000:01:00.1: BAR 3: assigned [mem 0x3c0004008000-0x3c000400ffff 64bit pref]
[    5.014449] pci 0000:01:00.2: BAR 3: assigned [mem 0x3c0004010000-0x3c0004017fff 64bit pref]
[    5.022882] pci 0000:01:00.3: BAR 3: assigned [mem 0x3c0004018000-0x3c000401ffff 64bit pref]
[    5.031314] pci 0000:00:01.0: PCI bridge to [bus 01-02]
[    5.036529] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x701fffff]
[    5.043307] pci 0000:00:01.0:   bridge window [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    5.051734] pci_bus 0000:00: resource 4 [mem 0x70000000-0x7fffffff window]
[    5.058598] pci_bus 0000:00: resource 5 [mem 0x3c0000000000-0x3fffdfffffff window]
[    5.066157] pci_bus 0000:01: resource 1 [mem 0x70000000-0x701fffff]
[    5.072413] pci_bus 0000:01: resource 2 [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    5.080374] ACPI: PCI Root Bridge [PCI6] (domain 0004 [bus 00-ff])
[    5.086552] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    5.095651] acpi PNP0A08:06: PCIe port services disabled; not requesting _OSC control
[    5.103472] acpi PNP0A08:06: MCFG quirk: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    5.116263] acpi PNP0A08:06: ECAM area [mem 0x2bfff0000000-0x2bffffffffff] reserved by PNP0C02:00
[    5.125135] acpi PNP0A08:06: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff]
[    5.133288] PCI host bridge to bus 0004:00
[    5.137376] pci_bus 0004:00: root bus resource [mem 0x20000000-0x2fffffff window]
[    5.144847] pci_bus 0004:00: root bus resource [mem 0x280000000000-0x2bffdfffffff window]
[    5.153014] pci_bus 0004:00: root bus resource [bus 00-ff]
[    5.158522] pci 0004:00:00.0: [1def:e110] type 00 class 0x060000
[    5.164583] pci 0004:00:01.0: [1def:e111] type 01 class 0x060400
[    5.170617] pci 0004:00:01.0: supports D1 D2
[    5.174877] pci 0004:00:01.0: PME# supported from D0 D1 D3hot
[    5.180659] pci 0004:00:03.0: [1def:e113] type 01 class 0x060400
[    5.186693] pci 0004:00:03.0: supports D1 D2
[    5.190953] pci 0004:00:03.0: PME# supported from D0 D1 D3hot
[    5.196739] pci 0004:00:05.0: [1def:e115] type 01 class 0x060400
[    5.202781] pci 0004:00:05.0: supports D1 D2
[    5.207041] pci 0004:00:05.0: PME# supported from D0 D1 D3hot
[    5.212860] pci 0004:01:00.0: [1a03:1150] type 01 class 0x060400
[    5.218906] pci 0004:01:00.0: enabling Extended Tags
[    5.223920] pci 0004:01:00.0: supports D1 D2
[    5.228180] pci 0004:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.234883] pci_bus 0004:02: extended config space not accessible
[    5.240989] pci 0004:02:00.0: [1a03:2000] type 00 class 0x030000
[    5.247004] pci 0004:02:00.0: reg 0x10: [mem 0x20000000-0x20ffffff]
[    5.253270] pci 0004:02:00.0: reg 0x14: [mem 0x21000000-0x2101ffff]
[    5.259535] pci 0004:02:00.0: reg 0x18: [io  0x27fff000-0x27fff07f]
[    5.265874] pci 0004:02:00.0: supports D1 D2
[    5.270135] pci 0004:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.276876] pci 0004:03:00.0: [1912:0014] type 00 class 0x0c0330
[    5.282891] pci 0004:03:00.0: reg 0x10: [mem 0x21200000-0x21201fff 64bit]
[    5.289771] pci 0004:03:00.0: PME# supported from D0 D3hot D3cold
[    5.295994] pci 0004:04:00.0: [8086:1533] type 00 class 0x020000
[    5.302019] pci 0004:04:00.0: reg 0x10: [mem 0x21100000-0x2117ffff]
[    5.308305] pci 0004:04:00.0: reg 0x18: [io  0x27ffe000-0x27ffe01f]
[    5.314577] pci 0004:04:00.0: reg 0x1c: [mem 0x21180000-0x21183fff]
[    5.321008] pci 0004:04:00.0: PME# supported from D0 D3hot D3cold
[    5.327204] pci 0004:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-02] add_size 200000 add_align 100000
[    5.338931] pci 0004:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    5.347097] pci 0004:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    5.358563] pci 0004:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 03] add_size 100000 add_align 100000
[    5.369074] pci 0004:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    5.380539] pci 0004:00:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    5.391053] pci 0004:00:01.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    5.397832] pci 0004:00:01.0: BAR 9: assigned [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.406258] pci 0004:00:03.0: BAR 8: assigned [mem 0x21800000-0x219fffff]
[    5.413036] pci 0004:00:03.0: BAR 9: assigned [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.421462] pci 0004:00:05.0: BAR 8: assigned [mem 0x21a00000-0x21bfffff]
[    5.428239] pci 0004:00:05.0: BAR 9: assigned [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.436665] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.442921] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.449525] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.455780] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.462384] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.468640] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.475245] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.481501] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.488104] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.494360] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.500964] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.507220] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.513824] pci 0004:01:00.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    5.520601] pci 0004:01:00.0: BAR 7: no space for [io  size 0x1000]
[    5.526857] pci 0004:01:00.0: BAR 7: failed to assign [io  size 0x1000]
[    5.533461] pci 0004:02:00.0: BAR 0: assigned [mem 0x20000000-0x20ffffff]
[    5.540240] pci 0004:02:00.0: BAR 1: assigned [mem 0x21000000-0x2101ffff]
[    5.547020] pci 0004:02:00.0: BAR 2: no space for [io  size 0x0080]
[    5.553276] pci 0004:02:00.0: BAR 2: failed to assign [io  size 0x0080]
[    5.559879] pci 0004:01:00.0: PCI bridge to [bus 02]
[    5.564836] pci 0004:01:00.0:   bridge window [mem 0x20000000-0x217fffff]
[    5.571620] pci 0004:00:01.0: PCI bridge to [bus 01-02]
[    5.576834] pci 0004:00:01.0:   bridge window [mem 0x20000000-0x217fffff]
[    5.583612] pci 0004:00:01.0:   bridge window [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.592040] pci 0004:03:00.0: BAR 0: assigned [mem 0x21800000-0x21801fff 64bit]
[    5.599347] pci 0004:00:03.0: PCI bridge to [bus 03]
[    5.604301] pci 0004:00:03.0:   bridge window [mem 0x21800000-0x219fffff]
[    5.611079] pci 0004:00:03.0:   bridge window [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.619507] pci 0004:04:00.0: BAR 0: assigned [mem 0x21a00000-0x21a7ffff]
[    5.626289] pci 0004:04:00.0: BAR 3: assigned [mem 0x21a80000-0x21a83fff]
[    5.633070] pci 0004:04:00.0: BAR 2: no space for [io  size 0x0020]
[    5.639326] pci 0004:04:00.0: BAR 2: failed to assign [io  size 0x0020]
[    5.645929] pci 0004:00:05.0: PCI bridge to [bus 04]
[    5.650906] pci 0004:00:05.0:   bridge window [mem 0x21a00000-0x21bfffff]
[    5.657685] pci 0004:00:05.0:   bridge window [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.666112] pci_bus 0004:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.675146] pci_bus 0004:00: resource 4 [mem 0x20000000-0x2fffffff window]
[    5.682010] pci_bus 0004:00: resource 5 [mem 0x280000000000-0x2bffdfffffff window]
[    5.689568] pci_bus 0004:01: resource 1 [mem 0x20000000-0x217fffff]
[    5.695825] pci_bus 0004:01: resource 2 [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.703730] pci_bus 0004:02: resource 1 [mem 0x20000000-0x217fffff]
[    5.709986] pci_bus 0004:03: resource 1 [mem 0x21800000-0x219fffff]
[    5.716242] pci_bus 0004:03: resource 2 [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.724147] pci_bus 0004:04: resource 1 [mem 0x21a00000-0x21bfffff]
[    5.730403] pci_bus 0004:04: resource 2 [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.738357] ACPI: PCI Root Bridge [PCI7] (domain 0005 [bus 00-ff])
[    5.744536] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    5.753636] acpi PNP0A08:07: PCIe port services disabled; not requesting _OSC control
[    5.761458] acpi PNP0A08:07: MCFG quirk: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    5.774251] acpi PNP0A08:07: ECAM area [mem 0x2ffff0000000-0x2fffffffffff] reserved by PNP0C02:00
[    5.783123] acpi PNP0A08:07: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff]
[    5.791274] PCI host bridge to bus 0005:00
[    5.795362] pci_bus 0005:00: root bus resource [mem 0x30000000-0x3fffffff window]
[    5.802833] pci_bus 0005:00: root bus resource [mem 0x2c0000000000-0x2fffdfffffff window]
[    5.810999] pci_bus 0005:00: root bus resource [bus 00-ff]
[    5.816506] pci 0005:00:00.0: [1def:e110] type 00 class 0x060000
[    5.822571] pci 0005:00:01.0: [1def:e111] type 01 class 0x060400
[    5.828615] pci 0005:00:01.0: supports D1 D2
[    5.832874] pci 0005:00:01.0: PME# supported from D0 D1 D3hot
[    5.838661] pci 0005:00:03.0: [1def:e113] type 01 class 0x060400
[    5.844695] pci 0005:00:03.0: supports D1 D2
[    5.848955] pci 0005:00:03.0: PME# supported from D0 D1 D3hot
[    5.854738] pci 0005:00:05.0: [1def:e115] type 01 class 0x060400
[    5.860781] pci 0005:00:05.0: supports D1 D2
[    5.865040] pci 0005:00:05.0: PME# supported from D0 D1 D3hot
[    5.870823] pci 0005:00:07.0: [1def:e117] type 01 class 0x060400
[    5.876853] pci 0005:00:07.0: supports D1 D2
[    5.881112] pci 0005:00:07.0: PME# supported from D0 D1 D3hot
[    5.887993] pci 0005:02:00.0: [1912:0014] type 00 class 0x0c0330
[    5.894009] pci 0005:02:00.0: reg 0x10: [mem 0x30100000-0x30101fff 64bit]
[    5.900891] pci 0005:02:00.0: PME# supported from D0 D3hot D3cold
[    5.908152] pci 0005:04:00.0: [126f:2263] type 00 class 0x010802
[    5.914166] pci 0005:04:00.0: reg 0x10: [mem 0x30000000-0x30003fff 64bit]
[    5.921123] pci 0005:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    5.929291] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    5.940756] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    5.951266] pci 0005:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    5.959432] pci 0005:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[    5.970899] pci 0005:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 02] add_size 100000 add_align 100000
[    5.981408] pci 0005:00:05.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    5.989574] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    6.001039] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[    6.011549] pci 0005:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    6.019715] pci 0005:00:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    6.031180] pci 0005:00:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    6.041694] pci 0005:00:01.0: BAR 8: assigned [mem 0x30000000-0x301fffff]
[    6.048472] pci 0005:00:01.0: BAR 9: assigned [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.056899] pci 0005:00:03.0: BAR 8: assigned [mem 0x30200000-0x303fffff]
[    6.063677] pci 0005:00:03.0: BAR 9: assigned [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.072103] pci 0005:00:05.0: BAR 8: assigned [mem 0x30400000-0x305fffff]
[    6.078881] pci 0005:00:05.0: BAR 9: assigned [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.087308] pci 0005:00:07.0: BAR 8: assigned [mem 0x30600000-0x307fffff]
[    6.094086] pci 0005:00:07.0: BAR 9: assigned [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.102512] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    6.108768] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    6.115371] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    6.121627] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    6.128230] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    6.134486] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    6.141089] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    6.147345] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    6.153950] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    6.160206] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    6.166809] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    6.173065] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    6.179668] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    6.185925] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    6.192528] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    6.198785] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    6.205389] pci 0005:00:01.0: PCI bridge to [bus 01]
[    6.210344] pci 0005:00:01.0:   bridge window [mem 0x30000000-0x301fffff]
[    6.217121] pci 0005:00:01.0:   bridge window [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.225549] pci 0005:02:00.0: BAR 0: assigned [mem 0x30200000-0x30201fff 64bit]
[    6.232856] pci 0005:00:03.0: PCI bridge to [bus 02]
[    6.237810] pci 0005:00:03.0:   bridge window [mem 0x30200000-0x303fffff]
[    6.244587] pci 0005:00:03.0:   bridge window [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.253014] pci 0005:00:05.0: PCI bridge to [bus 03]
[    6.257969] pci 0005:00:05.0:   bridge window [mem 0x30400000-0x305fffff]
[    6.264747] pci 0005:00:05.0:   bridge window [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.273175] pci 0005:04:00.0: BAR 0: assigned [mem 0x30600000-0x30603fff 64bit]
[    6.280488] pci 0005:00:07.0: PCI bridge to [bus 04]
[    6.285442] pci 0005:00:07.0:   bridge window [mem 0x30600000-0x307fffff]
[    6.292220] pci 0005:00:07.0:   bridge window [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.300648] pci_bus 0005:00: resource 4 [mem 0x30000000-0x3fffffff window]
[    6.307512] pci_bus 0005:00: resource 5 [mem 0x2c0000000000-0x2fffdfffffff window]
[    6.315070] pci_bus 0005:01: resource 1 [mem 0x30000000-0x301fffff]
[    6.321326] pci_bus 0005:01: resource 2 [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.329232] pci_bus 0005:02: resource 1 [mem 0x30200000-0x303fffff]
[    6.335488] pci_bus 0005:02: resource 2 [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.343393] pci_bus 0005:03: resource 1 [mem 0x30400000-0x305fffff]
[    6.349650] pci_bus 0005:03: resource 2 [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.357555] pci_bus 0005:04: resource 1 [mem 0x30600000-0x307fffff]
[    6.363810] pci_bus 0005:04: resource 2 [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.371924] iommu: Default domain type: Translated 
[    6.376830] pci 000d:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    6.385177] pci 0004:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    6.393520] pci 000d:01:00.0: vgaarb: bridge control possible
[    6.399255] pci 0004:02:00.0: vgaarb: bridge control possible
[    6.404992] pci 0004:02:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[    6.413853] vgaarb: loaded
[    6.416633] SCSI subsystem initialized
[    6.420377] ACPI: bus type USB registered
[    6.424392] usbcore: registered new interface driver usbfs
[    6.429875] usbcore: registered new interface driver hub
[    6.435190] usbcore: registered new device driver usb
[    6.440249] pps_core: LinuxPPS API ver. 1 registered
[    6.445203] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    6.454325] PTP clock support registered
[    6.458356] Registered efivars operations
[    6.463056] clocksource: Switched to clocksource arch_sys_counter
[    6.644339] pnp: PnP ACPI init
[    6.648761] system 00:00: [mem 0x3bfff0000000-0x3bffffffffff window] has been reserved
[    6.656672] system 00:00: [mem 0x3ffff0000000-0x3fffffffffff window] could not be reserved
[    6.664925] system 00:00: [mem 0x23fff0000000-0x23ffffffffff window] has been reserved
[    6.672831] system 00:00: [mem 0x27fff0000000-0x27ffffffffff window] has been reserved
[    6.680737] system 00:00: [mem 0x2bfff0000000-0x2bffffffffff window] could not be reserved
[    6.688991] system 00:00: [mem 0x2ffff0000000-0x2fffffffffff window] could not be reserved
[    6.697245] system 00:00: [mem 0x7bfff0000000-0x7bffffffffff window] has been reserved
[    6.705151] system 00:00: [mem 0x7ffff0000000-0x7fffffffffff window] has been reserved
[    6.713056] system 00:00: [mem 0x63fff0000000-0x63ffffffffff window] has been reserved
[    6.720963] system 00:00: [mem 0x67fff0000000-0x67ffffffffff window] has been reserved
[    6.728869] system 00:00: [mem 0x6bfff0000000-0x6bffffffffff window] has been reserved
[    6.736776] system 00:00: [mem 0x6ffff0000000-0x6fffffffffff window] has been reserved
[    6.744682] system 00:00: [mem 0x33fff0000000-0x33ffffffffff window] could not be reserved
[    6.752935] system 00:00: [mem 0x37fff0000000-0x37ffffffffff window] could not be reserved
[    6.761197] pnp: PnP ACPI: found 1 devices
[    6.766988] NET: Registered protocol family 2
[    6.771522] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    6.780403] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    6.789415] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    6.797279] TCP: Hash tables configured (established 262144 bind 65536)
[    6.803950] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    6.811159] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    6.818921] NET: Registered protocol family 1
[    6.823446] RPC: Registered named UNIX socket transport module.
[    6.829358] RPC: Registered udp transport module.
[    6.834051] RPC: Registered tcp transport module.
[    6.838745] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    6.845222] pci 000d:01:00.1: D0 power state depends on 000d:01:00.0
[    6.851623] pci 000d:01:00.2: D0 power state depends on 000d:01:00.0
[    6.858001] pci 000d:01:00.2: enabling device (0000 -> 0002)
[    6.863701] pci 000d:01:00.3: D0 power state depends on 000d:01:00.0
[    6.870102] pci 0004:03:00.0: enabling device (0000 -> 0002)
[    6.875790] pci 0005:02:00.0: enabling device (0000 -> 0002)
[    6.881462] PCI: CLS 128 bytes, default 64
[    6.886815] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 7 counters available
[    6.896218] workingset: timestamp_bits=42 max_order=23 bucket_order=0
[    6.904430] NFS: Registering the id_resolver key type
[    6.909484] Key type id_resolver registered
[    6.913657] Key type id_legacy registered
[    6.917937] Key type cifs.idmap registered
[    6.936613] xor: measuring software checksum speed
[    6.942402]    8regs           :  9797 MB/sec
[    6.947586]    32regs          : 11761 MB/sec
[    6.952636]    arm64_neon      : 13972 MB/sec
[    6.956982] xor: using function: arm64_neon (13972 MB/sec)
[    6.962466] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    6.969852] io scheduler mq-deadline registered
[    6.974372] io scheduler kyber registered
[    6.979072] gpio-dwapb APMC0D07:02: no IRQ for port0
[    6.984839] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    6.993234] ACPI: Power Button [PWRB]
[    7.000043] GHES: APEI firmware first mode is enabled by APEI bit.
[    7.006261] EINJ: Error INJection is initialized.
[    7.010993] ACPI GTDT: found 1 SBSA generic Watchdog(s).
[    7.017035] ast 0004:02:00.0: [drm] platform has no IO space, trying MMIO
[    7.023823] ast 0004:02:00.0: [drm] Using P2A bridge for configuration
[    7.030342] ast 0004:02:00.0: [drm] AST 2500 detected
[    7.035387] ast 0004:02:00.0: [drm] Analog VGA only
[    7.040260] ast 0004:02:00.0: [drm] dram MCLK=800 Mhz type=8 bus_width=16
[    7.047132] [TTM] Zone  kernel: Available graphics memory: 16251094 KiB
[    7.053737] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    7.060255] [TTM] Initializing pool allocator
[    7.064604] [TTM] Initializing DMA pool allocator
[    7.069548] [drm] Initialized ast 0.1.0 20120228 for 0004:02:00.0 on minor 0
[    7.093999] Console: switching to colour frame buffer device 128x48
[    7.102451] ast 0004:02:00.0: [drm] fb0: astdrmfb frame buffer device
[    7.123007] brd: module loaded
[    7.130530] loop: module loaded
[    7.134159] nvme nvme0: pci function 0005:04:00.0
[    7.139122] igb: Intel(R) Gigabit Ethernet Network Driver
[    7.141026] DEBUG dma_alloc_attrs 431 size=512 flags=cc0 attr=0
[    7.144513] igb: Copyright (c) 2007-2014 Intel Corporation.
[    7.150422] DEBUG dma_alloc_attrs 434 size=512 flags=cc0 attr=0
[    7.162433] DEBUG dma_alloc_attrs 431 size=2048 flags=cc0 attr=0
[    7.168430] DEBUG dma_alloc_attrs 434 size=2048 flags=cc0 attr=0
[    7.182018] nvme nvme0: missing or invalid SUBNQN field.
[    7.192364] DEBUG dma_alloc_attrs 431 size=256 flags=cc0 attr=0
[    7.198656] DEBUG dma_alloc_attrs 434 size=256 flags=cc0 attr=0
[    7.204574] pps pps0: new PPS source ptp0
[    7.208598] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.215033] igb 0004:04:00.0: added PHC on eth0
[    7.219553] igb 0004:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    7.226417] igb 0004:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:3b:50:52
[    7.233542] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.240093] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.246581] igb 0004:04:00.0: eth0: PBA No: 000300-000
[    7.251708] igb 0004:04:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[    7.259266] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.265770] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    7.265882] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.272031] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    7.278462] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.284381] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[    7.290917] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.297054] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[    7.297209] i40e 0000:01:00.0: enabling device (0000 -> 0002)
[    7.303486] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.320657] DEBUG dma_alloc_attrs 431 size=8192 flags=cc0 attr=0
[    7.321586] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.327462] DEBUG dma_alloc_attrs 434 size=8192 flags=cc0 attr=0
[    7.327467] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.333892] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.334011] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.339888] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.339890] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.345885] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.346003] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.352317] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.358745] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.358863] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.364742] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.370737] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.370855] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.377167] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.377169] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.383598] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.389592] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.389594] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.396140] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.402451] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.402453] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.408448] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.408567] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.414878] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.414880] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.421309] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.427302] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.427305] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.433416] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.439727] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.439729] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.445724] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.445843] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.451720] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.451722] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.458151] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.464145] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.464147] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.470259] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.476569] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.476571] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.483000] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.483123] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.488998] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.494992] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.501421] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.507533] DEBUG dma_alloc_attrs 431 size=4194304 flags=cc0 attr=110
[    7.513409] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.513412] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.519840] DEBUG dma_alloc_attrs 434 size=4194304 flags=cc0 attr=110
[    7.519961] nvme nvme0: allocated 64 MiB host memory buffer.
[    7.525835] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.525838] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.545007] DEBUG dma_alloc_attrs 431 size=16384 flags=cc0 attr=0
[    7.550690] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.550693] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.550694] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.550695] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.550698] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.556694] DEBUG dma_alloc_attrs 434 size=16384 flags=cc0 attr=0
[    7.563124] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.569120] DEBUG dma_alloc_attrs 431 size=65536 flags=cc0 attr=0
[    7.575115] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.581544] DEBUG dma_alloc_attrs 434 size=65536 flags=cc0 attr=0
[    7.587539] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.593537] DEBUG dma_alloc_attrs 431 size=16384 flags=cc0 attr=0
[    7.599965] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.606393] DEBUG dma_alloc_attrs 434 size=16384 flags=cc0 attr=0
[    7.612389] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.618818] DEBUG dma_alloc_attrs 431 size=65536 flags=cc0 attr=0
[    7.624813] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.631242] DEBUG dma_alloc_attrs 434 size=65536 flags=cc0 attr=0
[    7.631246] DEBUG dma_alloc_attrs 431 size=16384 flags=cc0 attr=0
[    7.637239] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.643234] DEBUG dma_alloc_attrs 434 size=16384 flags=cc0 attr=0
[    7.649663] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.655313] DEBUG dma_alloc_attrs 431 size=65536 flags=cc0 attr=0
[    7.661307] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.667302] DEBUG dma_alloc_attrs 434 size=65536 flags=cc0 attr=0
[    7.667307] DEBUG dma_alloc_attrs 431 size=16384 flags=cc0 attr=0
[    7.673387] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.673390] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.673392] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.679386] DEBUG dma_alloc_attrs 434 size=16384 flags=cc0 attr=0
[    7.679390] DEBUG dma_alloc_attrs 431 size=65536 flags=cc0 attr=0
[    7.685383] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.691376] DEBUG dma_alloc_attrs 434 size=65536 flags=cc0 attr=0
[    7.691381] DEBUG dma_alloc_attrs 431 size=16384 flags=cc0 attr=0
[    7.697374] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.703367] DEBUG dma_alloc_attrs 434 size=16384 flags=cc0 attr=0
[    7.703370] DEBUG dma_alloc_attrs 431 size=65536 flags=cc0 attr=0
[    7.709451] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.715444] DEBUG dma_alloc_attrs 434 size=65536 flags=cc0 attr=0
[    7.715449] DEBUG dma_alloc_attrs 431 size=16384 flags=cc0 attr=0
[    7.721528] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.727522] DEBUG dma_alloc_attrs 434 size=16384 flags=cc0 attr=0
[    7.727525] DEBUG dma_alloc_attrs 431 size=65536 flags=cc0 attr=0
[    7.733606] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.739600] DEBUG dma_alloc_attrs 434 size=65536 flags=cc0 attr=0
[    7.739606] DEBUG dma_alloc_attrs 431 size=16384 flags=cc0 attr=0
[    7.745684] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.751677] DEBUG dma_alloc_attrs 434 size=16384 flags=cc0 attr=0
[    7.751680] DEBUG dma_alloc_attrs 431 size=65536 flags=cc0 attr=0
[    7.757761] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.763754] DEBUG dma_alloc_attrs 434 size=65536 flags=cc0 attr=0
[    7.763759] DEBUG dma_alloc_attrs 431 size=16384 flags=cc0 attr=0
[    7.769837] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.769839] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.775833] DEBUG dma_alloc_attrs 434 size=16384 flags=cc0 attr=0
[    7.775836] DEBUG dma_alloc_attrs 431 size=65536 flags=cc0 attr=0
[    7.781917] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.787998] DEBUG dma_alloc_attrs 434 size=65536 flags=cc0 attr=0
[    7.884669] nvme nvme0: 8/0/0 default/read/poll queues
[    7.890721] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    7.890723] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    7.981567]  nvme0n1: p1 p2 p3
[    7.987627] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.050012] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.056010] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.062005] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.068001] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.073997] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.079995] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.085990] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.091986] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.097982] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.103981] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.109979] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.115976] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.121972] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.127968] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.133964] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.139962] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.145957] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.151953] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.157949] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.163947] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.169942] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.175938] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.181934] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.187932] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.193927] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.199924] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.205920] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.211917] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.217913] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.223911] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.229907] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.235904] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.241900] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.247896] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.253892] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.259887] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.265882] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.271879] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.277874] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.283870] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.289865] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.295860] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.301856] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.307859] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.313855] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.319851] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.325845] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.331842] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.337837] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.343833] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.349829] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.355825] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.361819] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.367816] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.373812] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.379807] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.385802] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.391798] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.397793] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.403789] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.409784] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.415780] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.421774] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.427770] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.433765] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.439762] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.445758] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.451754] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.457748] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.463744] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.469739] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.475736] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.481731] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.487727] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.493722] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.499717] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.505712] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.511709] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.517705] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.523701] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.529696] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.535692] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.541687] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.547683] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.553679] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.559675] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.565670] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.571665] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.577660] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.583656] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.589651] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.595647] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.601642] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.607637] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.613632] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.619629] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.625624] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.631619] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.637614] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.643610] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.649605] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.655600] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.661595] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.667591] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.673586] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.679582] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.685576] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.691572] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.697567] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.703563] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.709558] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.715554] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.721549] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.727544] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.733540] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.739535] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.745530] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.751525] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.757521] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.763516] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.769511] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.775507] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.781502] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.787497] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.793492] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.799492] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.805487] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.811483] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.817478] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.823473] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.829468] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.835464] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.841459] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.847455] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.853449] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.859445] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.865440] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.871436] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.877431] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.883429] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.889425] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.895421] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.901415] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.907411] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.913406] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.919402] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.925397] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.931393] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.937388] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.943384] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.949378] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.955374] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.961369] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.967365] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.973360] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.979355] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.985350] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    8.991346] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    8.997341] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.003336] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.009331] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.015327] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.021322] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.027318] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.033313] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.039309] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.045304] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.051299] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.057295] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.063290] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.069285] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.075281] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.081276] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.087272] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.093267] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.099263] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.105258] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.111253] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.117248] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.123244] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.129239] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.135235] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.141230] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.147225] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.153221] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.159217] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.165212] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.171207] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.177203] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.183198] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.189193] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.195189] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.201184] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.207180] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.213175] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.219171] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.225166] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.231161] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.237156] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.243152] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.249147] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.255143] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.261138] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.267134] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.273129] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.279125] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.285119] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.291115] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.297110] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.303106] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.309101] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.315096] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.321091] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.327094] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.333088] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.339084] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.345079] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.351075] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.357070] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.363066] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.369061] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.375057] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.381052] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.387047] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.393044] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.399040] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.405035] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.411031] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.417026] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.423022] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.429017] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.435012] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.441007] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.447003] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.452998] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.458994] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.464989] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.470984] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.476979] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.482975] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.488970] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.494966] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.500961] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.506956] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.512951] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.518947] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.524942] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.530938] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.536933] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.542929] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.548924] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.554923] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.560919] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.566914] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.572909] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.578905] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.584900] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.590895] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.596890] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.602886] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.608881] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.614877] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.620872] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.626868] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.632863] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.638858] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.644853] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.650849] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.656844] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.662839] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.668834] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.674830] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.680825] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.686821] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.692816] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.698812] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.704807] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.710802] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.716797] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.722793] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.728788] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.734783] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.740779] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.746775] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.752769] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.758765] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.764760] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.770756] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.776751] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.782746] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.788741] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.794737] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.800732] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.806727] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.812722] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.818718] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.824713] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.830709] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.836704] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.842700] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.848695] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.854691] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.860686] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.866681] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.872677] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.878672] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.884667] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.890663] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.896658] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.902654] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.908651] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.914647] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.920642] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.926638] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.932633] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.938629] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.944624] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.950620] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.956615] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.962610] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.968605] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.974601] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.980596] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.986592] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[    9.992587] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[    9.998583] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.004578] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.010573] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.016568] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.022564] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.028559] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.034555] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.040550] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.046545] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.052541] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.058536] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.064532] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.070529] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.076524] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.082520] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.088514] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.094510] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.100505] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.106501] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.112496] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.118492] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.124487] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.130482] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.136477] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.142473] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.148468] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.154464] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.160459] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.166455] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.172449] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.178445] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.184440] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.190436] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.196431] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.202426] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.208421] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.214417] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.220412] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.226407] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.232402] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.238399] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.244393] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.250389] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.256385] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.262380] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.268375] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.274371] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.280366] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.286362] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.292357] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.298353] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.304348] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.310346] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.316341] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.322336] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.328332] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.334327] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.340322] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.346318] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.352319] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.358316] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.364311] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.370306] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.376301] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.382297] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.388292] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.394287] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.400283] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.406278] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.412273] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.418270] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.424266] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.430261] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.436256] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.442252] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.448247] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.454242] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.460237] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.466233] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.472228] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.478224] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.484219] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.490214] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.496209] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.502205] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.508200] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.514195] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.520190] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.526187] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.532182] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.538177] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.544173] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.550168] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.556164] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.562160] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.568154] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.574150] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.580146] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.586142] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.592137] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.598132] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.604128] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.610123] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.616118] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.622114] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.628109] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.634104] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.640099] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.646095] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.652090] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.658086] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.664081] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.670076] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.676071] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.682067] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.688062] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.694058] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.700053] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.706048] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.712043] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.718039] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.724034] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.730030] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.736025] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.742020] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.748015] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.754011] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.760006] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.766004] DEBUG dma_alloc_attrs 431 size=8192 flags=cc0 attr=0
[   10.771999] DEBUG dma_alloc_attrs 434 size=8192 flags=cc0 attr=0
[   10.777997] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.783991] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.789987] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.795982] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.801977] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.807972] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.813968] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.819963] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.825959] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.831954] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.837949] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.843944] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.849940] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.855935] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.861930] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.867925] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.873921] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.879916] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.885912] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.891907] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.897903] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.903898] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.909893] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.915888] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.921884] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.927880] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.933877] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.939872] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.945867] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.951862] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.957858] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.963853] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.969849] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.975844] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.981839] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.987834] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   10.993830] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   10.999825] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.005821] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.011815] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.017812] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.023807] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.029802] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.035798] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.041793] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.047788] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.053783] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.059778] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.065774] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.071769] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.077767] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.083762] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.089758] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.095753] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.101749] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.107743] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.113739] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.119734] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.125730] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.131725] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.137721] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.143716] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.149711] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.155707] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.161702] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.167698] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.173694] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.179688] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.185684] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.191679] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.197675] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.203670] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.209665] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.215660] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.221657] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.227651] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.233647] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.239642] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.245638] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.251633] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.257628] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.263623] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.269619] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.275614] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.281609] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.287604] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.293600] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.299595] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.305590] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.311586] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.317582] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.323577] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.329572] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.335567] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.341563] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.347558] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.353554] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.359549] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.365545] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.371546] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.377542] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.383537] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.389533] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.395528] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.401523] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.407518] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.413514] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.419509] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.425505] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.431499] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.437495] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.443492] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.449488] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.455483] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.461479] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.467474] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.473470] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.479464] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.485460] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.491455] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.497451] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.503446] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.509441] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.515436] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.521432] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.527427] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.533423] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.539418] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.545414] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.551409] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.557404] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.563399] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.569395] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.575391] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.581386] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.587381] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.593377] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.599372] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.605368] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.611362] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.617358] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.623353] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.629349] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.635344] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.641340] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.647335] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.653331] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.659326] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.665321] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.671317] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.677312] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.683307] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.689303] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.695298] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.701294] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.707289] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.713284] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.719279] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.725275] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.731270] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.737266] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.743260] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.749256] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.755251] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.761247] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.767242] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.773237] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.779233] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.785229] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.791224] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.797219] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.803214] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.809210] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.815205] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.821201] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.827196] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.833194] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.839189] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.845185] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.851179] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.857176] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.863170] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.869166] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.875161] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.881157] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.887152] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.893147] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.899143] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.905138] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.911133] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.917129] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.923124] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.929120] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.935115] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.941110] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.947105] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.953102] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.959098] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.965094] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.971089] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.977085] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.983080] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   11.989076] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   11.995071] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.001067] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.007061] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.013057] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.019052] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.025048] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.031043] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.037039] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.043034] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.049029] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.055024] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.061020] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.067015] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.073011] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.079006] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.085002] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.090997] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.096993] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.102988] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.108984] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.114979] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.120974] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.126969] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.132965] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.138960] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.144956] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.150951] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.156947] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.162942] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.168938] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.174933] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.180928] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.186923] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.192919] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.198914] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.204910] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.210905] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.216901] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.222896] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.228892] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.234887] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.240882] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.246877] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.252873] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.258868] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.264864] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.270859] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.276855] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.282849] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.288845] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.294840] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.300836] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.306831] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.312826] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.318821] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.324817] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.330812] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.336808] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.342802] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.348798] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.354793] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.360789] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.366784] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.372788] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.378784] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.384780] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.390775] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.396777] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.402772] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.408768] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.414763] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.420758] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.426753] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.432749] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.438744] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.444740] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.450734] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.456730] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.462725] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.468723] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.474719] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.480715] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.486709] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.492705] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.498700] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.504696] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.510691] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.516687] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.522682] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.528677] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.534672] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.540668] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.546663] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.552659] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.558654] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.564650] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.570644] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.576640] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.582635] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.588634] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.594630] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.600626] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.606621] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.612616] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.618611] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.624607] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.630602] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.636597] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.642592] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.648588] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.654583] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.660579] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.666573] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.672569] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.678564] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.684560] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.690555] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.696551] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.702545] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.708541] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.714536] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.720532] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.726528] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.732523] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.738518] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.744514] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.750509] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.756505] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.762500] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.768495] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.774490] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.780486] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.786481] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.792477] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.798472] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.804468] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.810463] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.816458] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.822453] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.828449] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.834444] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.840439] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.846434] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.852430] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.858425] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.864421] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.870416] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.876411] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.882408] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.888404] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.894399] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.900394] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.906389] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.912385] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.918380] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.924376] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.930371] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.936366] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.942361] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.948357] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.954352] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.960347] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.966342] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.972338] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.978334] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.984331] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   12.990326] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   12.996322] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.002317] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.008313] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.014308] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.020304] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.026299] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.032294] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.038289] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.044285] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.050280] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.056276] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.062271] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.068266] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.074261] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.080257] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.086252] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.092248] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.098243] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.104239] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.110234] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.116229] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.122224] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.128220] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.134215] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.140213] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.146209] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.152204] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.158199] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.164195] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.170190] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.176187] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.182182] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.188178] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.194173] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.200169] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.206164] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.212161] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.218156] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.224151] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.230146] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.236142] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.242137] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.248134] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.254129] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.260125] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.266120] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.272116] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.278111] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.284107] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.290102] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.296098] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.302093] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.308088] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.314083] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.320080] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.326075] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.332071] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.338065] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.344065] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.350060] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.356056] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.362051] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.368048] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.374043] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.380038] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.386033] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.392029] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.398024] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.404020] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.410015] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.416018] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.422013] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.428008] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.434003] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.439999] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.445994] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.451989] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.457985] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.463981] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.469975] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.475971] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.481966] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.487963] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.493959] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.499955] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.505950] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.511945] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.517940] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.523935] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.529930] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.535927] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.541922] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.547917] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.553912] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.559908] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.565903] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.571898] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.577894] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.583890] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.589884] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.595880] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.601875] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.607871] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.613866] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.619862] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.625857] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.631853] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.637848] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.643844] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.649838] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.655834] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.661830] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.667825] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.673820] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.679816] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.685811] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.691806] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.697801] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.703798] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.709792] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.715788] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.721783] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.727779] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.733774] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.739770] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.745765] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.751761] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.757756] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.763752] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.769747] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.775742] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.781738] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.787734] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.793729] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.799724] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.805719] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.811715] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.817710] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.823706] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.829701] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.835697] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   13.841692] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   13.848641] i40e 0000:01:00.0: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0002]
[   14.136441] DEBUG dma_alloc_attrs 431 size=61440 flags=cc0 attr=0
[   14.142524] DEBUG dma_alloc_attrs 434 size=61440 flags=cc0 attr=0
[   14.148719] i40e 0000:01:00.0: MAC address: 3c:fd:fe:6b:e9:c0
[   14.154609] i40e 0000:01:00.0: FW LLDP is enabled
[   14.165276] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.171275] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.177272] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.183268] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.192843] i40e 0000:01:00.0: PCI-Express: Speed 8.0GT/s Width x8
[   14.200102] i40e 0000:01:00.0: Features: PF-id[0] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   14.210281] i40e 0000:01:00.1: enabling device (0000 -> 0002)
[   14.226491] DEBUG dma_alloc_attrs 431 size=8192 flags=cc0 attr=0
[   14.232491] DEBUG dma_alloc_attrs 434 size=8192 flags=cc0 attr=0
[   14.238490] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.244486] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.250482] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.256478] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.262474] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.268469] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.274464] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.280459] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.286455] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.292450] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.298446] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.304441] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.310437] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.316432] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.322428] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.328422] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.334418] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.340413] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.346409] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.352404] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.358400] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.364395] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.370390] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.376385] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.382382] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.388376] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.394372] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.400367] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.406363] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.412358] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.418353] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.424348] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.430345] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.436340] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.442336] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.448331] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.454331] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.460327] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.466322] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.472317] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.478313] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.484308] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.490304] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.496299] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.502294] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.508289] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.514286] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.520282] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.526278] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.532273] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.538268] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.544263] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.550259] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.556254] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.562250] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.568245] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.574241] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.580236] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.586231] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.592226] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.598222] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.604217] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.610213] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.616208] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.622204] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.628199] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.634195] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.640190] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.646186] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.652181] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.658176] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.664171] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.670167] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.676162] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.682157] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.688153] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.694148] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.700143] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.706139] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.712134] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.718130] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.724125] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.730121] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.736116] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.742111] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.748106] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.754102] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.760097] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.766093] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.772087] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.778084] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.784079] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.790074] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.796069] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.802065] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.808060] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.814056] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.820051] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.826047] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.832041] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.838037] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.844033] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.850028] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.856023] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.862019] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.868014] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.874010] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.880005] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.886000] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.891995] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.897991] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.903987] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.909982] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.915977] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.921973] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.927968] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.933963] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.939958] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.945955] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.951949] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.957945] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.963940] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.969936] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.975931] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.981927] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.987922] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   14.993920] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   14.999915] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.005910] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.011905] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.017901] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.023897] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.029894] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.035890] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.041886] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.047881] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.053877] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.059872] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.065867] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.071862] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.077858] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.083853] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.089849] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.095843] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.101839] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.107834] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.113830] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.119825] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.125820] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.131815] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.137811] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.143806] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.149801] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.155796] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.161792] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.167787] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.173783] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.179778] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.185773] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.191768] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.197764] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.203759] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.209756] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.215751] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.221747] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.227742] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.233738] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.239739] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.245736] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.251731] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.257727] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.263721] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.269717] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.275712] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.281707] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.287703] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.293698] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.299693] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.305689] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.311684] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.317680] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.323675] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.329670] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.335665] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.341661] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.347656] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.353652] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.359647] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.365643] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.371638] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.377633] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.383628] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.389624] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.395619] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.401615] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.407610] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.413606] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.419601] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.425596] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.431591] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.437587] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.443582] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.449578] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.455573] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.461569] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.467564] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.473560] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.479555] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.485551] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.491546] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.497541] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.503536] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.509532] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.515527] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.521523] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.527518] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.533514] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.539511] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.545508] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.551503] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.557498] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.563493] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.569489] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.575484] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.581480] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.587475] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.593471] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.599466] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.605461] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.611456] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.617452] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.623447] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.629442] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.635437] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.641433] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.647428] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.653424] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.659419] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.665415] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.671410] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.677406] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.683401] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.689396] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.695391] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.701387] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.707382] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.713378] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.719373] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.725368] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.731363] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.737359] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.743354] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.749349] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.755344] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.761340] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.767335] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.773331] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.779325] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.785321] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.791316] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.797312] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.803307] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.809303] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.815298] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.821293] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.827288] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.833284] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.839279] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.845275] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.851269] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.857266] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.863261] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.869257] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.875252] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.881247] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.887242] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.893239] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.899233] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.905229] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.911224] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.917220] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.923215] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.929211] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.935206] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.941202] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.947197] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.953192] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.959187] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.965186] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.971181] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.977176] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.983172] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   15.989167] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   15.995162] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.001158] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.007153] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.013149] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.019144] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.025140] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.031135] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.037130] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.043125] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.049122] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.055119] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.061114] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.067110] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.073106] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.079101] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.085096] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.091092] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.097087] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.103082] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.109078] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.115073] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.121069] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.127064] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.133059] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.139054] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.145050] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.151045] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.157042] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.163037] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.169033] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.175028] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.181023] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.187018] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.193014] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.199009] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.205004] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.211000] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.216997] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.222992] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.228987] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.234982] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.240978] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.246973] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.252968] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.258963] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.264965] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.270961] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.276957] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.282951] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.288948] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.294943] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.300938] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.306933] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.312929] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.318924] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.324920] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.330915] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.336910] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.342905] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.348901] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.354896] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.360892] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.366887] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.372883] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.378878] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.384873] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.390868] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.396865] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.402859] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.408856] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.414851] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.420846] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.426841] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.432837] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.438832] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.444827] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.450822] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.456819] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.462813] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.468809] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.474804] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.480801] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.486796] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.492792] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.498787] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.504782] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.510778] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.516774] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.522768] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.528765] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.534760] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.540755] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.546750] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.552746] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.558741] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.564739] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.570735] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.576732] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.582727] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.588723] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.594718] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.600714] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.606709] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.612704] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.618699] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.624695] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.630690] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.636686] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.642681] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.648676] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.654672] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.660667] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.666662] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.672658] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.678653] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.684649] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.690644] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.696639] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.702634] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.708630] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.714625] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.720623] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.726618] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.732614] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.738609] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.744605] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.750600] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.756595] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.762590] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.768586] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.774581] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.780577] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.786572] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.792568] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.798563] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.804558] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.810553] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.816549] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.822544] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.828540] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.834534] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.840531] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.846526] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.852521] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.858516] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.864512] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.870507] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.876502] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.882497] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.888493] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.894488] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.900484] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.906479] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.912475] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.918469] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.924466] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.930461] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.936456] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.942451] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.948447] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.954442] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.960438] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.966432] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.972429] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.978424] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.984419] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   16.990414] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   16.996410] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.002405] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.008401] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.014396] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.020392] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.026387] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.032382] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.038377] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.044373] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.050368] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.056364] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.062359] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.068355] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.074351] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.080348] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.086343] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.092339] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.098335] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.104331] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.110326] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.116322] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.122316] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.128312] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.134307] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.140303] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.146298] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.152293] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.158288] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.164285] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.170279] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.176275] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.182270] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.188265] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.194260] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.200256] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.206251] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.212247] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.218242] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.224238] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.230233] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.236228] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.242223] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.248219] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.254214] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.260210] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.266205] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.272201] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.278196] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.284197] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.290192] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.296189] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.302184] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.308181] DEBUG dma_alloc_attrs 431 size=8192 flags=cc0 attr=0
[   17.314177] DEBUG dma_alloc_attrs 434 size=8192 flags=cc0 attr=0
[   17.320176] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.326171] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.332167] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.338162] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.344157] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.350152] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.356148] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.362143] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.368139] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.374134] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.380130] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.386125] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.392121] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.398116] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.404112] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.410107] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.416102] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.422097] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.428093] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.434088] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.440084] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.446079] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.452075] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.458069] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.464065] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.470060] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.476056] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.482051] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.488048] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.494044] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.500040] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.506035] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.512030] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.518025] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.524021] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.530016] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.536011] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.542006] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.548002] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.553997] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.559993] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.565988] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.571984] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.577979] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.583975] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.589971] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.595967] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.601962] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.607957] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.613953] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.619949] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.625944] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.631940] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.637934] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.643930] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.649925] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.655922] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.661916] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.667912] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.673907] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.679903] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.685898] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.691893] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.697888] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.703884] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.709879] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.715875] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.721870] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.727865] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.733860] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.739856] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.745851] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.751847] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.757842] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.763838] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.769833] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.775828] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.781824] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.787819] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.793814] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.799809] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.805804] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.811800] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.817796] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.823791] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.829786] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.835782] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.841777] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.847773] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.853768] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.859763] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.865758] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.871754] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.877749] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.883745] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.889740] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.895736] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.901731] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.907727] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.913722] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.919717] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.925712] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.931708] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.937703] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.943699] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.949693] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.955689] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.961684] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.967680] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.973675] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.979670] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.985665] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   17.991661] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   17.997656] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.003652] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.009647] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.015643] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.021638] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.027634] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.033629] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.039624] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.045619] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.051615] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.057610] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.063605] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.069601] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.075597] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.081592] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.087587] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.093582] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.099581] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.105576] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.111572] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.117567] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.123563] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.129558] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.135554] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.141549] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.147544] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.153540] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.159536] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.165531] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.171526] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.177522] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.183517] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.189512] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.195508] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.201503] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.207498] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.213493] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.219490] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.225484] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.231480] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.237475] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.243473] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.249468] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.255464] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.261459] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.267455] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.273449] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.279445] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.285440] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.291436] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.297431] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.303433] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.309428] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.315424] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.321419] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.327415] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.333410] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.339406] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.345401] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.351397] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.357392] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.363387] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.369382] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.375378] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.381373] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.387369] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.393364] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.399360] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.405355] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.411350] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.417345] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.423341] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.429336] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.435332] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.441328] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.447323] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.453318] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.459314] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.465308] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.471304] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.477299] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.483295] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.489290] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.495286] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.501281] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.507277] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.513272] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.519268] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.525263] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.531259] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.537254] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.543249] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.549244] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.555240] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.561235] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.567230] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.573226] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.579221] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.585216] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.591212] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.597207] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.603203] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.609199] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.615196] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.621191] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.627187] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.633182] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.639177] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.645172] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.651168] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.657163] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.663159] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.669154] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.675150] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.681145] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.687141] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.693136] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.699131] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.705126] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.711122] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.717117] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.723113] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.729108] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.735104] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.741099] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.747095] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.753090] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.759086] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.765081] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.771076] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.777071] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.783067] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.789062] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.795058] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.801053] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.807049] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.813044] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.819039] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.825034] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.831030] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.837025] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.843021] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.849016] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.855011] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.861006] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.867002] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.872997] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.878992] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.884988] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.890983] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.896978] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.902974] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.908969] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.914964] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.920959] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.926955] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.932951] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.938947] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.944941] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.950937] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.956932] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.962928] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.968923] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.974918] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.980913] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.986909] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   18.992904] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   18.998903] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.004898] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.010893] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.016888] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.022884] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.028879] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.034875] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.040870] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.046865] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.052860] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.058856] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.064851] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.070847] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.076842] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.082837] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.088832] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.094828] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.100823] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.106818] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.112813] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.118809] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.124807] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.130803] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.136798] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.142794] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.148789] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.154785] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.160780] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.166776] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.172771] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.178767] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.184762] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.190758] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.196753] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.202749] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.208743] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.214739] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.220734] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.226730] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.232725] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.238721] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.244716] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.250712] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.256707] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.262702] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.268697] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.274694] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.280689] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.286684] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.292679] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.298675] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.304670] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.310665] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.316660] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.322657] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.328658] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.334653] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.340649] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.346644] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.352639] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.358635] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.364630] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.370625] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.376620] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.382616] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.388611] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.394606] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.400601] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.406597] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.412592] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.418588] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.424583] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.430579] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.436574] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.442569] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.448564] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.454560] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.460555] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.466551] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.472546] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.478542] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.484537] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.490532] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.496527] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.502523] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.508518] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.514513] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.520508] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.526504] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.532499] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.538495] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.544490] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.550486] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.556481] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.562477] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.568472] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.574467] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.580462] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.586458] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.592453] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.598449] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.604444] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.610440] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.616435] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.622430] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.628425] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.634422] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.640418] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.646414] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.652408] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.658404] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.664399] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.670395] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.676390] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.682386] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.688381] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.694377] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.700372] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.706368] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.712362] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.718358] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.724353] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.730349] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.736344] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.742339] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.748335] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.754333] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.760328] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.766324] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.772319] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.778315] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.784310] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.790305] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.796302] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.802298] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.808292] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.814288] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.820284] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.826279] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.832274] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.838270] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.844265] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.850260] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.856255] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.862252] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.868247] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.874242] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.880237] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.886233] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.892228] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.898223] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.904219] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.910214] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.916209] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.922205] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.928200] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.934195] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.940190] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.946187] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.952182] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.958178] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.964173] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.970168] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.976163] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.982159] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   19.988154] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   19.994150] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.000145] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.006141] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.012136] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.018131] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.024126] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.030122] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.036117] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.042113] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.048108] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.054104] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.060099] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.066095] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.072090] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.078085] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.084080] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.090076] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.096071] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.102066] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.108061] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.114057] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.120052] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.126048] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.132043] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.138039] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.144035] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.150032] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.156028] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.162023] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.168018] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.174014] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.180009] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.186004] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.191999] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.197995] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.203990] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.209985] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.215980] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.221976] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.227971] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.233967] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.239962] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.245958] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.251953] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.257949] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.263944] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.269939] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.275934] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.281930] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.287925] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.293921] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.299916] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.305911] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.311906] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.317902] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.323897] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.329892] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.335887] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.341883] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.347884] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.353880] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.359875] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.365871] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.371865] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.377862] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.383857] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.390799] i40e 0000:01:00.1: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   20.678359] DEBUG dma_alloc_attrs 431 size=61440 flags=cc0 attr=0
[   20.684441] DEBUG dma_alloc_attrs 434 size=61440 flags=cc0 attr=0
[   20.690636] i40e 0000:01:00.1: MAC address: 3c:fd:fe:6b:e9:c1
[   20.696522] i40e 0000:01:00.1: FW LLDP is enabled
[   20.707645] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.713643] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.719639] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.725634] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.734394] i40e 0000:01:00.1: PCI-Express: Speed 8.0GT/s Width x8
[   20.741652] i40e 0000:01:00.1: Features: PF-id[1] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   20.751822] i40e 0000:01:00.2: enabling device (0000 -> 0002)
[   20.768130] DEBUG dma_alloc_attrs 431 size=8192 flags=cc0 attr=0
[   20.774126] DEBUG dma_alloc_attrs 434 size=8192 flags=cc0 attr=0
[   20.780126] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.786121] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.792118] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.798113] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.804109] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.810104] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.816100] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.822095] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.828091] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.834086] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.840085] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.846081] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.852076] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.858071] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.864067] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.870062] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.876058] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.882052] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.888048] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.894043] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.900039] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.906034] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.912029] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.918024] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.924020] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.930015] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.936010] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.942006] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.948001] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.953996] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.959992] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.965987] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.971983] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.977978] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.983974] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   20.989970] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   20.995965] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.001960] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.007957] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.013953] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.019948] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.025943] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.031939] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.037934] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.043930] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.049925] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.055921] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.061916] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.067912] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.073907] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.079902] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.085897] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.091893] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.097888] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.103883] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.109878] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.115874] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.121869] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.127865] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.133860] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.139855] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.145850] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.151846] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.157841] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.163837] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.169833] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.175830] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.181826] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.187822] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.193817] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.199813] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.205808] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.211804] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.217798] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.223794] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.229789] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.235785] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.241780] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.247776] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.253771] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.259767] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.265762] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.271759] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.277754] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.283749] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.289744] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.295740] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.301735] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.307730] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.313725] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.319721] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.325716] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.331711] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.337706] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.343702] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.349697] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.355693] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.361688] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.367684] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.373679] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.379675] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.385670] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.391665] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.397660] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.403656] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.409651] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.415646] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.421642] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.427637] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.433632] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.439628] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.445623] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.451618] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.457613] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.463609] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.469604] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.475600] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.481595] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.487591] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.493586] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.499581] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.505577] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.511573] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.517568] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.523564] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.529559] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.535555] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.541550] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.547546] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.553541] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.559537] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.565532] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.571527] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.577522] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.583519] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.589513] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.595512] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.601507] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.607502] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.613497] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.619493] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.625488] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.631483] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.637479] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.643474] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.649470] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.655465] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.661460] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.667456] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.673451] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.679447] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.685444] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.691439] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.697434] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.703430] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.709425] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.715420] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.721415] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.727411] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.733406] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.739402] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.745397] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.751393] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.757388] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.763384] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.769379] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.775375] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.781376] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.787373] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.793368] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.799363] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.805358] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.811355] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.817350] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.823346] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.829341] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.835336] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.841331] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.847327] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.853322] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.859318] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.865312] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.871308] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.877303] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.883299] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.889294] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.895289] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.901284] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.907280] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.913275] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.919270] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.925265] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.931261] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.937256] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.943252] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.949247] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.955243] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.961238] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.967234] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.973229] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.979225] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.985219] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   21.991216] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   21.997211] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.003208] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.009203] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.015198] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.021193] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.027189] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.033184] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.039180] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.045176] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.051172] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.057167] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.063162] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.069158] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.075153] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.081148] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.087144] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.093139] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.099135] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.105130] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.111126] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.117121] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.123117] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.129112] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.135107] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.141102] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.147098] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.153093] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.159088] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.165084] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.171079] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.177074] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.183070] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.189065] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.195064] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.201060] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.207055] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.213051] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.219048] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.225043] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.231038] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.237033] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.243029] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.249024] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.255020] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.261015] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.267011] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.273006] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.279001] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.284996] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.290992] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.296987] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.302982] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.308977] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.314973] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.320968] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.326964] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.332959] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.338954] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.344949] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.350947] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.356943] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.362938] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.368933] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.374929] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.380924] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.386920] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.392915] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.398910] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.404906] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.410901] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.416896] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.422892] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.428887] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.434883] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.440877] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.446874] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.452869] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.458865] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.464860] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.470855] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.476850] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.482846] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.488841] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.494837] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.500832] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.506828] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.512823] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.518818] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.524813] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.530809] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.536804] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.542800] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.548795] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.554791] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.560786] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.566782] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.572777] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.578772] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.584767] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.590763] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.596758] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.602753] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.608749] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.614745] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.620740] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.626736] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.632731] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.638726] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.644721] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.650717] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.656712] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.662708] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.668703] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.674698] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.680694] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.686689] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.692684] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.698680] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.704676] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.710673] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.716668] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.722664] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.728659] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.734655] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.740650] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.746645] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.752640] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.758636] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.764631] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.770627] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.776621] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.782617] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.788612] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.794608] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.800609] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.806605] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.812601] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.818596] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.824591] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.830587] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.836582] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.842578] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.848572] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.854568] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.860563] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.866559] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.872554] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.878550] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.884545] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.890541] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.896536] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.902532] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.908526] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.914522] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.920517] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.926513] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.932508] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.938503] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.944498] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.950494] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.956489] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.962484] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.968479] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.974475] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.980470] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.986466] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   22.992461] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   22.998457] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.004452] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.010448] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.016444] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.022440] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.028434] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.034431] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.040426] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.046422] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.052417] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.058412] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.064407] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.070403] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.076398] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.082393] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.088389] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.094385] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.100379] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.106378] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.112373] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.118369] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.124363] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.130359] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.136354] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.142350] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.148345] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.154341] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.160336] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.166332] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.172326] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.178322] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.184317] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.190313] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.196308] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.202304] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.208299] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.214295] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.220293] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.226289] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.232284] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.238280] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.244275] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.250270] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.256265] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.262261] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.268256] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.274251] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.280246] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.286242] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.292237] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.298232] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.304227] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.310223] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.316218] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.322214] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.328209] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.334204] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.340199] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.346195] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.352190] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.358185] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.364180] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.370176] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.376172] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.382169] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.388164] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.394160] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.400155] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.406151] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.412146] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.418142] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.424137] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.430133] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.436128] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.442123] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.448118] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.454114] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.460109] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.466105] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.472100] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.478096] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.484091] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.490087] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.496082] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.502077] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.508072] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.514068] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.520063] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.526058] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.532054] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.538049] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.544044] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.550040] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.556035] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.562030] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.568025] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.574021] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.580016] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.586011] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.592006] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.598002] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.603997] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.609993] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.615987] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.621983] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.627979] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.633974] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.639969] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.645965] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.651960] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.657956] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.663951] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.669946] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.675941] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.681937] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.687932] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.693928] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.699923] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.705919] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.711914] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.717909] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.723904] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.729901] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.735898] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.741893] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.747888] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.753884] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.759879] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.765874] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.771869] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.777865] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.783860] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.789856] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.795850] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.801846] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.807841] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.813837] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.819838] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.825834] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.831830] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.837825] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.843821] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.849818] DEBUG dma_alloc_attrs 431 size=8192 flags=cc0 attr=0
[   23.855813] DEBUG dma_alloc_attrs 434 size=8192 flags=cc0 attr=0
[   23.861811] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.867805] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.873807] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.879801] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.885797] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.891792] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.897787] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.903782] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.909778] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.915773] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.921769] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.927764] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.933759] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.939754] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.945750] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.951745] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.957741] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.963735] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.969731] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.975726] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.981722] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.987717] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   23.993713] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   23.999708] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.005703] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.011698] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.017694] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.023689] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.029685] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.035680] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.041676] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.047671] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.053667] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.059662] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.065657] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.071652] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.077648] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.083643] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.089639] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.095634] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.101630] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.107625] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.113620] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.119616] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.125611] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.131606] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.137602] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.143597] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.149592] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.155587] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.161583] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.167578] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.173574] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.179568] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.185564] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.191559] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.197555] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.203550] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.209545] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.215541] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.221537] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.227531] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.233527] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.239524] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.245521] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.251516] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.257512] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.263506] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.269502] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.275497] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.281493] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.287488] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.293484] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.299479] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.305474] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.311469] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.317465] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.323460] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.329456] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.335451] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.341447] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.347442] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.353437] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.359432] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.365428] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.371423] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.377418] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.383413] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.389409] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.395404] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.401400] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.407394] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.413390] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.419385] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.425381] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.431376] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.437371] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.443367] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.449363] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.455358] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.461354] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.467349] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.473345] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.479340] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.485335] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.491330] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.497326] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.503321] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.509317] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.515312] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.521308] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.527302] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.533298] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.539294] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.545289] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.551284] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.557280] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.563275] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.569271] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.575266] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.581261] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.587257] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.593253] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.599247] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.605243] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.611238] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.617234] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.623229] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.629227] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.635223] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.641219] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.647215] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.653210] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.659205] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.665201] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.671196] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.677192] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.683186] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.689182] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.695177] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.701173] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.707168] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.713163] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.719158] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.725154] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.731149] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.737146] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.743140] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.749136] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.755133] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.761129] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.767124] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.773120] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.779115] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.785111] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.791105] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.797102] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.803097] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.809093] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.815088] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.821083] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.827078] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.833074] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.839075] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.845071] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.851067] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.857063] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.863058] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.869053] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.875048] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.881044] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.887039] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.893035] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.899030] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.905026] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.911020] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.917016] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.923011] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.929007] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.935002] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.940998] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.946993] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.952989] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.958984] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.964980] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.970975] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.976970] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.982966] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   24.988962] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   24.994957] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.000953] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.006948] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.012944] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.018939] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.024935] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.030930] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.036926] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.042921] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.048916] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.054911] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.060907] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.066902] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.072898] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.078893] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.084889] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.090883] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.096880] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.102875] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.108870] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.114865] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.120861] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.126856] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.132852] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.138847] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.144843] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.150838] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.156834] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.162829] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.168825] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.174820] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.180815] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.186810] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.192806] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.198801] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.204797] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.210793] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.216789] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.222784] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.228779] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.234774] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.240770] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.246765] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.252761] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.258756] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.264753] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.270749] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.276745] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.282740] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.288736] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.294730] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.300726] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.306721] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.312717] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.318712] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.324708] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.330703] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.336699] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.342694] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.348689] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.354685] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.360680] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.366675] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.372671] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.378666] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.384664] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.390658] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.396654] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.402649] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.408644] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.414639] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.420635] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.426630] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.432626] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.438621] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.444617] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.450612] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.456608] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.462603] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.468599] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.474594] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.480590] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.486585] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.492580] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.498575] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.504571] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.510566] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.516561] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.522556] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.528552] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.534547] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.540543] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.546539] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.552534] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.558529] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.564525] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.570520] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.576515] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.582510] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.588506] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.594501] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.600496] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.606491] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.612487] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.618482] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.624478] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.630473] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.636469] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.642464] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.648459] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.654454] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.660450] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.666445] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.672442] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.678437] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.684432] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.690427] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.696423] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.702418] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.708414] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.714409] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.720404] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.726399] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.732395] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.738390] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.744386] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.750381] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.756377] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.762372] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.768367] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.774363] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.780361] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.786356] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.792352] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.798347] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.804342] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.810337] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.816333] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.822328] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.828324] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.834319] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.840315] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.846310] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.852305] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.858300] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.864302] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.870297] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.876293] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.882288] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.888283] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.894278] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.900274] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.906269] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.912265] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.918260] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.924255] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.930250] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.936246] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.942241] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.948236] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.954231] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.960227] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.966222] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.972218] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.978213] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.984209] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   25.990204] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   25.996200] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.002196] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.008192] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.014186] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.020182] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.026177] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.032173] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.038168] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.044164] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.050159] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.056154] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.062149] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.068145] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.074140] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.080136] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.086131] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.092127] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.098122] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.104118] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.110113] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.116109] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.122103] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.128099] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.134094] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.140092] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.146087] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.152082] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.158077] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.164073] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.170068] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.176064] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.182059] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.188054] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.194049] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.200045] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.206040] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.212036] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.218031] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.224027] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.230022] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.236017] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.242012] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.248008] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.254003] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.259998] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.265994] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.271990] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.277985] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.283981] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.289977] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.295974] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.301969] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.307965] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.313960] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.319955] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.325950] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.331946] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.337941] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.343936] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.349931] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.355927] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.361922] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.367917] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.373912] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.379908] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.385903] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.391899] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.397894] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.403890] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.409885] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.415881] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.421876] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.427871] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.433867] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.439862] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.445857] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.451853] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.457848] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.463843] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.469838] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.475834] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.481829] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.487825] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.493821] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.499817] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.505812] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.511808] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.517803] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.523798] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.529793] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.535789] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.541784] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.547779] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.553774] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.559770] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.565765] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.571761] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.577756] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.583752] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.589747] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.595743] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.601738] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.607734] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.613728] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.619724] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.625719] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.631715] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.637709] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.643705] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.649700] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.655696] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.661691] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.667686] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.673681] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.679677] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.685672] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.691668] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.697663] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.703659] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.709655] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.715651] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.721646] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.727641] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.733636] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.739632] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.745627] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.751623] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.757619] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.763614] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.769609] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.775605] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.781600] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.787596] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.793591] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.799588] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.805584] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.811579] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.817574] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.823570] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.829565] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.835561] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.841556] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.847552] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.853546] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.859542] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.865537] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.871533] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.877528] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.883529] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.889524] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.895524] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.901519] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.907514] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.913509] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.919505] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   26.925500] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   26.932448] i40e 0000:01:00.2: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   27.220341] DEBUG dma_alloc_attrs 431 size=61440 flags=cc0 attr=0
[   27.226423] DEBUG dma_alloc_attrs 434 size=61440 flags=cc0 attr=0
[   27.232618] i40e 0000:01:00.2: MAC address: 3c:fd:fe:6b:e9:c2
[   27.238504] i40e 0000:01:00.2: FW LLDP is enabled
[   27.249649] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.255648] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.261645] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.267640] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.275939] i40e 0000:01:00.2: PCI-Express: Speed 8.0GT/s Width x8
[   27.283197] i40e 0000:01:00.2: Features: PF-id[2] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   27.293367] i40e 0000:01:00.3: enabling device (0000 -> 0002)
[   27.310421] DEBUG dma_alloc_attrs 431 size=8192 flags=cc0 attr=0
[   27.316421] DEBUG dma_alloc_attrs 434 size=8192 flags=cc0 attr=0
[   27.322422] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.328417] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.334413] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.340409] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.346405] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.352400] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.358397] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.364391] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.370388] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.376383] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.382379] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.388374] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.394370] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.400365] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.406361] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.412355] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.418351] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.424346] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.430342] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.436337] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.442332] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.448327] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.454323] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.460318] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.466314] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.472308] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.478304] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.484299] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.490295] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.496290] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.502286] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.508282] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.514278] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.520273] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.526268] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.532264] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.538259] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.544255] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.550250] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.556245] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.562241] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.568236] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.574232] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.580227] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.586222] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.592217] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.598213] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.604208] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.610204] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.616199] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.622195] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.628190] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.634185] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.640181] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.646177] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.652172] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.658168] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.664163] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.670158] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.676153] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.682149] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.688144] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.694140] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.700135] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.706131] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.712126] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.718122] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.724117] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.730113] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.736108] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.742104] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.748099] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.754094] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.760089] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.766085] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.772080] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.778076] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.784070] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.790066] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.796061] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.802057] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.808052] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.814048] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.820043] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.826040] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.832036] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.838032] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.844027] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.850022] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.856017] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.862013] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.868008] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.874004] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.879999] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.885995] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.891990] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.897986] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.903981] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.909976] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.915972] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.921967] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.927962] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.933958] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.939953] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.945949] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.951944] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.957940] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.963935] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.969931] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.975926] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.981925] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.987922] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   27.993918] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   27.999912] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.005908] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.011903] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.017898] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.023893] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.029889] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.035884] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.041880] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.047875] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.053870] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.059865] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.065861] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.071856] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.077851] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.083846] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.089842] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.095837] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.101833] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.107827] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.113823] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.119819] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.125815] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.131810] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.137806] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.143801] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.149796] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.155791] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.161787] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.167782] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.173778] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.179773] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.185769] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.191764] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.197759] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.203754] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.209750] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.215745] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.221741] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.227735] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.233731] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.239726] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.245722] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.251717] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.257713] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.263708] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.269703] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.275698] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.281694] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.287689] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.293685] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.299679] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.305675] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.311670] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.317666] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.323667] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.329664] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.335660] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.341657] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.347652] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.353648] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.359643] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.365639] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.371634] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.377630] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.383625] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.389620] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.395616] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.401612] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.407607] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.413602] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.419597] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.425593] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.431588] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.437584] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.443579] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.449575] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.455570] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.461566] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.467561] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.473556] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.479551] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.485547] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.491542] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.497537] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.503532] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.509529] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.515523] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.521519] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.527515] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.533511] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.539506] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.545502] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.551497] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.557493] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.563488] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.569484] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.575479] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.581475] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.587470] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.593465] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.599460] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.605456] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.611451] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.617447] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.623442] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.629438] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.635433] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.641429] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.647424] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.653420] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.659415] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.665410] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.671405] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.677401] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.683396] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.689392] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.695387] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.701383] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.707378] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.713373] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.719368] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.725364] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.731359] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.737358] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.743353] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.749349] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.755344] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.761340] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.767335] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.773330] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.779326] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.785322] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.791317] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.797312] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.803307] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.809303] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.815298] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.821294] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.827289] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.833284] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.839279] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.845276] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.851273] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.857269] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.863264] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.869261] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.875256] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.881251] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.887246] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.893242] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.899237] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.905232] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.911227] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.917223] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.923218] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.929213] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.935209] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.941205] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.947200] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.953196] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.959191] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.965187] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.971182] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.977178] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.983173] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   28.989169] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   28.995164] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.001160] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.007156] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.013152] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.019147] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.025143] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.031138] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.037134] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.043129] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.049125] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.055120] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.061116] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.067111] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.073107] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.079102] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.085098] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.091093] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.097089] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.103083] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.109079] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.115074] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.121070] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.127065] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.133061] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.139056] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.145052] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.151048] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.157043] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.163038] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.169034] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.175029] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.181025] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.187020] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.193016] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.199012] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.205007] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.211002] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.216998] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.222993] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.228988] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.234983] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.240979] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.246974] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.252969] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.258964] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.264960] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.270955] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.276951] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.282946] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.288942] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.294937] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.300932] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.306928] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.312924] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.318919] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.324915] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.330910] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.336906] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.342901] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.348903] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.354898] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.360896] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.366892] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.372888] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.378883] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.384879] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.390874] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.396870] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.402865] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.408861] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.414856] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.420851] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.426846] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.432842] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.438837] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.444832] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.450827] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.456823] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.462818] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.468814] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.474809] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.480804] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.486800] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.492799] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.498793] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.504789] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.510784] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.516780] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.522775] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.528771] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.534765] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.540761] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.546756] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.552753] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.558748] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.564743] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.570738] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.576735] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.582729] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.588725] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.594720] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.600716] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.606711] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.612706] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.618701] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.624697] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.630692] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.636687] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.642682] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.648678] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.654673] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.660669] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.666664] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.672660] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.678655] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.684650] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.690645] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.696641] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.702636] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.708632] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.714627] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.720623] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.726618] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.732613] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.738608] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.744604] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.750599] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.756595] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.762590] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.768586] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.774581] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.780577] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.786571] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.792568] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.798563] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.804558] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.810553] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.816549] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.822544] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.828539] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.834534] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.840530] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.846525] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.852521] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.858516] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.864511] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.870506] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.876504] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.882500] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.888496] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.894491] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.900487] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.906482] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.912478] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.918473] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.924469] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.930463] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.936459] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.942454] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.948449] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.954444] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.960441] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.966436] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.972432] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.978427] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.984423] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   29.990418] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   29.996413] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.002410] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.008405] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.014400] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.020396] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.026391] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.032387] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.038382] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.044378] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.050372] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.056368] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.062363] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.068359] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.074354] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.080349] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.086344] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.092340] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.098335] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.104330] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.110325] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.116322] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.122316] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.128312] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.134307] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.140303] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.146297] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.152293] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.158288] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.164285] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.170279] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.176275] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.182270] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.188266] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.194261] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.200257] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.206252] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.212248] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.218243] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.224238] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.230233] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.236229] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.242224] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.248223] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.254218] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.260213] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.266208] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.272204] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.278199] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.284195] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.290190] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.296187] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.302183] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.308178] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.314173] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.320169] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.326164] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.332160] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.338155] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.344151] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.350146] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.356142] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.362137] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.368139] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.374135] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.380130] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.386126] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.392125] DEBUG dma_alloc_attrs 431 size=8192 flags=cc0 attr=0
[   30.398120] DEBUG dma_alloc_attrs 434 size=8192 flags=cc0 attr=0
[   30.404118] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.410113] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.416108] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.422103] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.428099] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.434094] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.440089] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.446085] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.452080] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.458075] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.464071] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.470066] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.476062] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.482057] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.488053] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.494048] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.500044] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.506039] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.512034] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.518029] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.524025] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.530021] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.536016] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.542011] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.548007] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.554002] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.559997] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.565993] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.571989] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.577984] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.583980] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.589975] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.595971] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.601966] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.607962] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.613957] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.619953] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.625948] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.631944] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.637938] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.643934] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.649930] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.655925] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.661920] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.667916] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.673911] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.679906] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.685901] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.691897] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.697892] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.703887] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.709882] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.715878] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.721873] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.727869] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.733864] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.739860] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.745855] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.751850] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.757846] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.763841] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.769836] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.775832] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.781827] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.787823] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.793818] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.799814] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.805809] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.811804] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.817799] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.823795] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.829790] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.835786] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.841781] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.847777] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.853772] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.859767] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.865762] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.871758] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.877753] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.883748] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.889743] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.895740] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.901736] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.907732] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.913727] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.919723] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.925718] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.931713] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.937708] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.943704] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.949699] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.955695] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.961690] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.967686] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.973681] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.979677] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.985672] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   30.991668] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   30.997664] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.003660] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.009654] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.015653] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.021648] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.027644] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.033638] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.039634] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.045629] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.051625] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.057620] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.063616] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.069611] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.075606] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.081601] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.087597] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.093592] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.099588] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.105582] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.111578] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.117573] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.123569] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.129564] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.135560] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.141555] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.147550] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.153545] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.159541] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.165536] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.171532] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.177527] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.183523] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.189518] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.195513] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.201509] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.207504] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.213499] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.219494] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.225489] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.231485] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.237480] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.243476] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.249470] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.255466] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.261461] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.267457] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.273452] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.279447] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.285442] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.291438] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.297433] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.303428] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.309423] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.315419] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.321415] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.327410] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.333405] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.339401] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.345396] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.351392] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.357387] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.363383] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.369378] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.375374] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.381369] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.387371] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.393367] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.399362] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.405358] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.411356] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.417352] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.423348] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.429343] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.435338] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.441333] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.447329] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.453324] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.459320] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.465315] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.471311] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.477306] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.483302] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.489297] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.495292] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.501287] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.507283] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.513278] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.519274] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.525269] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.531265] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.537260] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.543255] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.549250] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.555246] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.561241] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.567236] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.573231] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.579227] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.585222] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.591218] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.597213] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.603209] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.609204] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.615199] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.621195] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.627190] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.633185] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.639181] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.645176] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.651172] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.657166] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.663162] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.669158] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.675153] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.681148] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.687144] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.693139] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.699135] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.705130] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.711125] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.717120] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.723116] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.729111] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.735107] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.741102] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.747098] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.753093] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.759088] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.765083] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.771083] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.777078] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.783073] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.789069] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.795065] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.801060] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.807056] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.813050] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.819047] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.825043] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.831038] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.837033] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.843029] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.849024] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.855020] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.861014] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.867010] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.873005] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.879001] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.884996] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.890991] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.896986] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.902982] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.908977] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.914973] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.920969] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.926966] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.932961] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.938956] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.944951] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.950947] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.956942] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.962938] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.968933] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.974929] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.980924] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.986920] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   31.992915] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   31.998911] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.004907] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.010902] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.016897] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.022893] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.028887] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.034883] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.040878] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.046874] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.052869] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.058864] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.064859] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.070855] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.076850] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.082845] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.088840] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.094836] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.100831] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.106827] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.112822] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.118817] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.124812] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.130808] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.136803] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.142799] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.148794] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.154790] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.160785] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.166781] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.172776] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.178772] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.184767] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.190763] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.196758] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.202754] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.208750] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.214746] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.220741] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.226737] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.232732] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.238728] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.244723] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.250718] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.256713] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.262709] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.268704] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.274700] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.280695] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.286690] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.292685] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.298681] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.304676] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.310671] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.316666] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.322662] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.328657] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.334652] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.340647] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.346644] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.352638] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.358634] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.364629] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.370625] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.376620] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.382616] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.388611] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.394606] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.400602] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.406597] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.412599] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.418595] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.424591] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.430587] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.436584] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.442581] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.448576] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.454572] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.460567] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.466562] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.472558] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.478554] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.484549] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.490545] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.496540] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.502536] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.508531] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.514526] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.520521] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.526520] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.532515] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.538510] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.544505] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.550501] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.556496] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.562491] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.568486] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.574482] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.580477] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.586473] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.592468] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.598463] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.604458] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.610454] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.616449] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.622445] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.628440] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.634435] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.640430] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.646426] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.652421] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.658417] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.664411] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.670407] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.676402] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.682398] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.688393] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.694389] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.700384] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.706379] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.712374] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.718370] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.724365] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.730361] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.736356] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.742352] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.748347] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.754343] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.760338] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.766334] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.772329] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.778325] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.784320] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.790315] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.796310] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.802306] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.808301] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.814296] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.820292] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.826288] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.832283] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.838278] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.844273] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.850269] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.856265] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.862260] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.868255] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.874251] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.880246] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.886241] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.892236] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.898232] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.904227] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.910223] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.916217] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.922213] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.928208] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.934204] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.940199] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.946196] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.952193] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.958188] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.964183] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.970179] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.976174] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.982169] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   32.988164] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   32.994160] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.000155] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.006150] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.012146] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.018142] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.024137] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.030133] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.036128] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.042123] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.048118] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.054114] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.060109] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.066105] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.072100] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.078096] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.084090] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.090086] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.096081] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.102077] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.108072] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.114067] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.120062] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.126058] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.132053] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.138048] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.144043] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.150039] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.156034] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.162030] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.168025] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.174021] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.180016] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.186012] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.192007] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.198003] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.203998] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.209993] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.215988] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.221984] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.227980] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.233976] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.239971] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.245966] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.251961] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.257957] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.263952] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.269948] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.275943] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.281941] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.287936] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.293932] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.299927] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.305922] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.311917] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.317913] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.323908] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.329904] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.335899] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.341895] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.347890] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.353885] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.359880] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.365876] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.371871] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.377866] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.383861] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.389857] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.395852] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.401848] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.407843] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.413838] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.419833] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.425829] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.431830] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.437827] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.443822] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.449818] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.455814] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.461811] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.467806] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.474755] i40e 0000:01:00.3: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   33.762645] DEBUG dma_alloc_attrs 431 size=61440 flags=cc0 attr=0
[   33.768728] DEBUG dma_alloc_attrs 434 size=61440 flags=cc0 attr=0
[   33.774922] i40e 0000:01:00.3: MAC address: 3c:fd:fe:6b:e9:c3
[   33.780808] i40e 0000:01:00.3: FW LLDP is enabled
[   33.792012] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.798009] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.804005] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.810000] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.817538] i40e 0000:01:00.3: PCI-Express: Speed 8.0GT/s Width x8
[   33.824847] i40e 0000:01:00.3: Features: PF-id[3] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   33.834967] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   33.841488] ehci-pci: EHCI PCI platform driver
[   33.846053] xhci_hcd 000d:01:00.2: enabling device (0000 -> 0002)
[   33.852172] xhci_hcd 000d:01:00.2: xHCI Host Controller
[   33.857393] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 1
[   33.865319] DEBUG dma_alloc_attrs 431 size=2056 flags=cc0 attr=0
[   33.871314] DEBUG dma_alloc_attrs 434 size=2056 flags=cc0 attr=0
[   33.877315] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.883310] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.889309] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.895304] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.901303] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.907298] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.913296] DEBUG dma_alloc_attrs 431 size=16 flags=cc0 attr=0
[   33.919117] DEBUG dma_alloc_attrs 434 size=16 flags=cc0 attr=0
[   33.924956] DEBUG dma_alloc_attrs 431 size=24 flags=cc0 attr=0
[   33.930778] DEBUG dma_alloc_attrs 434 size=24 flags=cc0 attr=0
[   33.936600] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.942595] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.948592] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.954587] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.960583] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   33.966578] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   33.972598] xhci_hcd 000d:01:00.2: hcc params 0x0180ff05 hci version 0x110 quirks 0x0000000000000010
[   33.982051] hub 1-0:1.0: USB hub found
[   33.985802] hub 1-0:1.0: 2 ports detected
[   33.989926] xhci_hcd 000d:01:00.2: xHCI Host Controller
[   33.995144] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 2
[   34.002534] xhci_hcd 000d:01:00.2: Host supports USB 3.1 Enhanced SuperSpeed
[   34.009595] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[   34.017790] hub 2-0:1.0: USB hub found
[   34.021540] hub 2-0:1.0: 4 ports detected
[   34.025818] xhci_hcd 0004:03:00.0: xHCI Host Controller
[   34.031038] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 3
[   34.043726] DEBUG dma_alloc_attrs 431 size=2056 flags=cc0 attr=0
[   34.049722] DEBUG dma_alloc_attrs 434 size=2056 flags=cc0 attr=0
[   34.055720] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.061716] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.067717] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.073712] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.079711] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.085706] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.091703] DEBUG dma_alloc_attrs 431 size=16 flags=cc0 attr=0
[   34.097526] DEBUG dma_alloc_attrs 434 size=16 flags=cc0 attr=0
[   34.103362] DEBUG dma_alloc_attrs 431 size=32 flags=cc0 attr=0
[   34.109184] DEBUG dma_alloc_attrs 434 size=32 flags=cc0 attr=0
[   34.115006] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.121001] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.126997] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.132994] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.138991] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.144986] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.150982] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.156977] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.163007] xhci_hcd 0004:03:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[   34.174028] hub 3-0:1.0: USB hub found
[   34.177783] hub 3-0:1.0: 4 ports detected
[   34.181965] xhci_hcd 0004:03:00.0: xHCI Host Controller
[   34.187185] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 4
[   34.194579] xhci_hcd 0004:03:00.0: Host supports USB 3.0 SuperSpeed
[   34.200876] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[   34.209074] hub 4-0:1.0: USB hub found
[   34.212826] hub 4-0:1.0: 4 ports detected
[   34.217096] xhci_hcd 0005:02:00.0: xHCI Host Controller
[   34.222316] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 5
[   34.340612] DEBUG dma_alloc_attrs 431 size=2056 flags=cc0 attr=0
[   34.346607] DEBUG dma_alloc_attrs 434 size=2056 flags=cc0 attr=0
[   34.352605] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.358600] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.364601] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.370596] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.376593] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.382589] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.388585] DEBUG dma_alloc_attrs 431 size=16 flags=cc0 attr=0
[   34.394407] DEBUG dma_alloc_attrs 434 size=16 flags=cc0 attr=0
[   34.400244] DEBUG dma_alloc_attrs 431 size=32 flags=cc0 attr=0
[   34.406065] DEBUG dma_alloc_attrs 434 size=32 flags=cc0 attr=0
[   34.411888] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.417883] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.423879] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.429874] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.435870] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.441864] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.447860] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   34.453856] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   34.459885] xhci_hcd 0005:02:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[   34.469797] hub 5-0:1.0: USB hub found
[   34.473552] hub 5-0:1.0: 4 ports detected
[   34.477730] xhci_hcd 0005:02:00.0: xHCI Host Controller
[   34.482947] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 6
[   34.490336] xhci_hcd 0005:02:00.0: Host supports USB 3.0 SuperSpeed
[   34.496631] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[   34.504827] hub 6-0:1.0: USB hub found
[   34.508577] hub 6-0:1.0: 4 ports detected
[   34.512938] usbcore: registered new interface driver usb-storage
[   34.519791] rtc-efi rtc-efi.0: registered as rtc0
[   34.524925] rtc-efi rtc-efi.0: setting system clock to 2022-04-19T13:33:03 UTC (1650375183)
[   34.533388] sbsa-gwdt sbsa-gwdt.0: Initialized with 10s timeout @ 25000000 Hz, action=0.
[   34.541619] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[   34.551218] pstore: Registered efi as persistent store backend
[   34.557065] SMCCC: SOC_ID: ID = jep106:0a16:0001 Revision = 0x000000a1
[   34.563689] usbcore: registered new interface driver usbhid
[   34.569253] usbhid: USB HID core driver
[   34.571654] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   34.573105] u32 classifier
[   34.579072] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   34.579075] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   34.581767]     input device check on
[   34.581769]     Actions configured
[   34.587771] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   34.594137] NET: Registered protocol family 10
[   34.597413] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   34.597415] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   34.601218] Segment Routing with IPv6
[   34.606803] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   34.606806] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   34.611264] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[   34.644912] NET: Registered protocol family 17
[   34.649366] Bridge firewalling registered
[   34.653388] Key type dns_resolver registered
[   34.657683] NET: Registered protocol family 40
[   34.662205] Key type ._fscrypt registered
[   34.666211] Key type .fscrypt registered
[   34.670123] Key type fscrypt-provisioning registered
[   34.675289] Btrfs loaded, crc32c=crc32c-generic
[   34.679897] pstore: Using crash dump compression: deflate
[   34.685757] Key type encrypted registered
[   34.690026] BERT: Error records from previous boot:
[   34.694896] [Hardware Error]: event severity: recoverable
[   34.700285] [Hardware Error]:  Error 0, type: fatal
[   34.705154] [Hardware Error]:   section type: unknown, e8ed898d-df16-43cc-8ecc-54f060ef157f
[   34.713493] [Hardware Error]:   section length: 0x31
[   34.718449] [Hardware Error]:   00000000: 0000007f 6e6b6e55 206e776f 6f626572  ....Unknown rebo
[   34.719450] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   34.727138] [Hardware Error]:   00000010: 7220746f 6f736165 0000006e 00000000  ot reason.......
[   34.727140] [Hardware Error]:   00000020: 00000000 00000000 00000000 00000000  ................
[   34.727141] [Hardware Error]:   00000030: 11                                               .
[   34.758943] usb 3-4: new high-speed USB device number 2 using xhci_hcd
[   34.758949] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   34.758954] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   34.765477] printk: console [netcon0] enabled
[   34.771479] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   34.777469] netconsole: network logging started
[   34.792345] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   34.798344] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   34.804341] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   34.810338] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   34.810353] md: Waiting for all devices to be available before autodetect
[   34.823111] md: If you don't use raid, use raid=noautodetect
[   34.828759] md: Autodetecting RAID arrays.
[   34.832845] md: autorun ...
[   34.835629] md: ... autorun DONE.
[   34.838967] Waiting for root device /dev/sda2...
[   34.946546] usb 6-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[   34.962434] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   34.968433] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   34.974431] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   34.980432] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   34.988365] DEBUG dma_alloc_attrs 431 size=4096 flags=800 attr=0
[   34.994374] DEBUG dma_alloc_attrs 434 size=4096 flags=800 attr=0
[   35.010323] hub 3-4:1.0: USB hub found
[   35.014129] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.020128] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.026128] hub 3-4:1.0: 5 ports detected
[   35.030132] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.036128] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.042127] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.048127] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.054181] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.060184] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.068104] DEBUG dma_alloc_attrs 431 size=4096 flags=800 attr=0
[   35.074110] DEBUG dma_alloc_attrs 434 size=4096 flags=800 attr=0
[   35.090721] usb-storage 6-1:1.0: USB Mass Storage device detected
[   35.096951] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   35.102948] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   35.109008] scsi host0: usb-storage 6-1:1.0
[   35.298606] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.304604] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.310601] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.316598] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.322594] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.328589] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.423107] usb 3-4.1: new high-speed USB device number 3 using xhci_hcd
[   35.548067] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.554065] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.560062] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.566058] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.572057] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.578052] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.584049] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.590045] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.598042] DEBUG dma_alloc_attrs 431 size=4096 flags=800 attr=0
[   35.604042] DEBUG dma_alloc_attrs 434 size=4096 flags=800 attr=0
[   35.624318] usb-storage 3-4.1:1.0: USB Mass Storage device detected
[   35.630719] DEBUG dma_alloc_attrs 431 size=4096 flags=cc0 attr=0
[   35.636717] DEBUG dma_alloc_attrs 434 size=4096 flags=cc0 attr=0
[   35.642775] scsi host1: usb-storage 3-4.1:1.0
[   35.648115] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.654112] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.660109] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.666104] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.672101] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.678098] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.771108] usb 3-4.2: new high-speed USB device number 4 using xhci_hcd
[   35.891979] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.897977] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.903974] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.909969] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.915966] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.921962] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.927958] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.933954] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.941883] DEBUG dma_alloc_attrs 431 size=4096 flags=800 attr=0
[   35.947882] DEBUG dma_alloc_attrs 434 size=4096 flags=800 attr=0
[   35.966120] usb-storage 3-4.2:1.0: USB Mass Storage device detected
[   35.972587] scsi host2: usb-storage 3-4.2:1.0
[   35.977990] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.983990] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   35.989987] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   35.995983] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   36.001979] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   36.007976] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   36.103107] usb 3-4.3: new low-speed USB device number 5 using xhci_hcd
[   36.148916] scsi 0:0:0:0: Direct-Access      USB      SanDisk 3.2Gen1 1.00 PQ: 0 ANSI: 6
[   36.157400] sd 0:0:0:0: [sda] 120176640 512-byte logical blocks: (61.5 GB/57.3 GiB)
[   36.167062] sd 0:0:0:0: [sda] Write Protect is off
[   36.174353] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   36.202054] GPT:Primary header thinks Alt. header is not at the end of the disk.
[   36.209444] GPT:17181951 != 120176639
[   36.213098] GPT:Alternate GPT header not at the end of the disk.
[   36.219093] GPT:17181951 != 120176639
[   36.222742] GPT: Use GNU Parted to correct GPT errors.
[   36.227877]  sda: sda1 sda2
[   36.235200] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   36.244448] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   36.250448] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   36.256447] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   36.262443] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   36.268441] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   36.274437] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   36.280434] DEBUG dma_alloc_attrs 431 size=4096 flags=c00 attr=0
[   36.286429] DEBUG dma_alloc_attrs 434 size=4096 flags=c00 attr=0
[   36.294742] DEBUG dma_alloc_attrs 431 size=4096 flags=800 attr=0
[   36.300743] DEBUG dma_alloc_attrs 434 size=4096 flags=800 attr=0
[   36.332205] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.0/0003:046B:FF10.0001/input/input1
[   36.348063] hid-generic 0003:046B:FF10.0001: input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input0
[   36.373803] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.1/0003:046B:FF10.0002/input/input2
[   36.389654] hid-generic 0003:046B:FF10.0002: input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input1
[   36.411888] random: fast init done
[   36.661096] scsi 1:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[   36.670078] scsi 1:0:0:1: CD-ROM            AMI      Virtual CDROM1   1.00 PQ: 0 ANSI: 0 CCS
[   36.678886] scsi 1:0:0:2: CD-ROM            AMI      Virtual CDROM2   1.00 PQ: 0 ANSI: 0 CCS
[   36.687590] scsi 1:0:0:3: CD-ROM            AMI      Virtual CDROM3   1.00 PQ: 0 ANSI: 0 CCS
[   37.011092] scsi 2:0:0:0: Direct-Access     AMI      Virtual HDisk0   1.00 PQ: 0 ANSI: 0 CCS
[   37.020061] scsi 2:0:0:1: Direct-Access     AMI      Virtual HDisk1   1.00 PQ: 0 ANSI: 0 CCS
[   37.020841] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[   37.028800] scsi 2:0:0:2: Direct-Access     AMI      Virtual HDisk2   1.00 PQ: 0 ANSI: 0 CCS
[   37.042654] scsi 2:0:0:3: Direct-Access     AMI      Virtual HDisk3   1.00 PQ: 0 ANSI: 0 CCS
[   37.043483] sd 2:0:0:1: [sdc] Attached SCSI removable disk
[   37.051350] scsi 2:0:0:4: Direct-Access     AMI      Virtual HDisk4   1.00 PQ: 0 ANSI: 0 CCS
[   37.057706] sd 2:0:0:2: [sdd] Attached SCSI removable disk
[   37.074911] sd 2:0:0:3: [sde] Attached SCSI removable disk
[   37.080803] sd 2:0:0:4: [sdf] Attached SCSI removable disk
[   37.088278] EXT4-fs (sda2): recovery complete
[   37.099842] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[   37.107514] VFS: Mounted root (ext4 filesystem) on device 8:2.
[   37.116693] devtmpfs: mounted
[   37.121320] Freeing unused kernel memory: 4160K
[   37.125900] Run /sbin/init as init process
[   37.393232] systemd[1]: systemd 249.7+ running in system mode (-PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
[   37.423663] systemd[1]: Detected architecture arm64.

Welcome to EWAOL (Edge Workload Abstraction and Orchestration Layer) unstable (honister)!

[   37.478386] systemd[1]: Hostname set to <comhpc>.
[   37.528635] systemd-sysv-generator[329]: SysV service '/etc/init.d/conntrackd' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   37.552650] systemd-sysv-generator[329]: SysV service '/etc/init.d/conntrack-failover' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   37.725351] systemd[1]: /lib/systemd/system/xen-qemu-dom0-disk-backend.service:11: PIDFile= references a path below legacy directory /var/run/, updating /var/run/xen/qemu-dom0.pid → /run/xen/qemu-dom0.pid; please update the unit file accordingly.
[   37.903857] systemd[1]: Queued start job for default target Multi-User System.
[   37.911453] random: systemd: uninitialized urandom read (16 bytes read)
[   37.942813] systemd[1]: Created slice Slice /system/getty.
[  OK  ] Created slice Slice /system/getty.
[   37.955961] random: systemd: uninitialized urandom read (16 bytes read)
[   37.963276] systemd[1]: Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/modprobe.
[   37.983199] random: systemd: uninitialized urandom read (16 bytes read)
[   37.990399] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Created slice Slice /system/serial-getty.
[   38.012033] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[   38.035403] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[   38.063335] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[   38.087336] systemd[1]: Reached target Path Units.
[  OK  ] Reached target Path Units.
[   38.103214] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[   38.123197] systemd[1]: Reached target Slice Units.
[  OK  ] Reached target Slice Units.
[   38.143212] systemd[1]: Reached target Swaps.
[  OK  ] Reached target Swaps.
[   38.167938] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[   38.191261] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[   38.211474] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on Syslog Socket.
[   38.231336] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[   38.252401] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[   38.260514] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[   38.283395] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[   38.303469] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[   38.327446] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[   38.340488] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[   38.352642] systemd[1]: Listening on User Database Manager Socket.
[  OK  ] Listening on User Database Manager Socket.
[   38.376687] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[   38.396564] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[   38.419245] systemd[1]: Condition check resulted in Mount /proc/xen files being skipped.
[   38.428371] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[   38.448549] systemd[1]: Mounting Kernel Trace File System...
         Mounting Kernel Trace File System...
[   38.472017] systemd[1]: Mounting Temporary Directory /tmp...
         Mounting Temporary Directory /tmp...
[   38.491479] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped.
[   38.501712] systemd[1]: Starting Load Kernel Module configfs...
         Starting Load Kernel Module configfs...
[   38.520531] systemd[1]: Starting Load Kernel Module drm...
         Starting Load Kernel Module drm...
[   38.540602] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[   38.564797] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[   38.579108] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[   38.590002] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[   38.611982] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[   38.632345] systemd[1]: Starting Remount Root and Kernel File Systems...
[   38.638127] EXT4-fs (sda2): re-mounted. Opts: (null)
         Starting Remount Root and Kernel File Systems...
[   38.660368] systemd[1]: Starting Coldplug All udev Devices...
         Starting Coldplug All udev Devices...
[   38.681005] systemd[1]: Started RPC Bind.
[  OK  ] Started RPC Bind.
[   38.700143] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Trace File System.
[  OK  ] Mounted Temporary Directory /tmp.
[  OK  ] Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module fuse.
[FAILED] Failed to start Load Kernel Modules.
See 'systemctl status systemd-modules-load.service' for details.
[  OK  ] Finished Remount Root and Kernel File Systems.
         Mounting Kernel Configuration File System...
         Starting Flush Journal to Persistent Storage...
[   38.904119] systemd-journald[351]: Received client request to flush runtime journal.
         Starting Apply Kernel Variables...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Coldplug All udev Devices.
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Reached target Preparation for Local File Systems.
         Mounting /var/volatile...
         Starting Wait for udev To …plete Device Initialization...
         Starting Rule-based Manage…for Device Events and Files...
[  OK  ] Mounted /var/volatile.
         Starting Load/Save Random Seed...
[  OK  ] Started Rule-based Manager for Device Events and Files.
[  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
[  OK  ] Found device SanDisk_3.2Gen1 msdos.
         Mounting /boot...
[  OK  ] Mounted /boot.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Wait for udev To Complete Device Initialization.
[  OK  ] Finished Create Volatile Files and Directories.
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
         Starting Network Time Synchronization...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target System Time Set.
[  OK  ] Reached target Timer Units.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
         Starting Docker Socket for the API...
         Starting sshd.socket...
[  OK  ] Listening on Docker Socket for the API.
[  OK  ] Listening on sshd.socket.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
         Starting ACPI Event Daemon...
[  OK  ] Started Kernel Logging Service.
[  OK  ] Started System Logging Service.
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Getty on tty1.
         Starting IPv6 Packet Filtering Framework...
         Starting IPv4 Packet Filtering Framework...
         Starting Telephony service...
[  OK  ] Started Serial Getty on ttyAMA0.
[  OK  ] Reached target Login Prompts.
         Starting User Login Management...
         Starting OpenSSH Key Generation...
[  OK  ] Started ACPI Event Daemon.
[  OK  ] Finished IPv6 Packet Filtering Framework.
[  OK  ] Finished IPv4 Packet Filtering Framework.
[  OK  ] Finished OpenSSH Key Generation.
[  OK  ] Reached target Preparation for Network.
         Starting Network Configuration...
[  OK  ] Started Telephony service.
[  OK  ] Started User Login Management.
[  OK  ] Started Network Configuration.
         Starting Wait for Network to be Configured...
         Starting Network Name Resolution...
[  OK  ] Started Network Name Resolution.
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
         Starting Avahi mDNS/DNS-SD Stack...
         Starting containerd container runtime...
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started containerd container runtime.
[  OK  ] Finished Wait for Network to be Configured.
[  OK  ] Reached target Network is Online.
         Starting Lightweight Kubernetes...

EWAOL (Edge Workload Abstraction and Orchestration Layer) unstable comhpc ttyAMA0

comhpc login: root
root@comhpc:~# 

^ permalink raw reply	[relevance 2%]

* [GIT PULL] xen: branch for v5.18-rc3
@ 2022-04-17  8:16  6% Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2022-04-17  8:16 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, xen-devel, boris.ostrovsky

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-5.18-rc3-tag

xen: branch for v5.18-rc3

It contains just a single cleanup patch for the Xen balloon driver.


Thanks.

Juergen

 drivers/xen/balloon.c           | 54 ++++++++++++++++++-----------------------
 drivers/xen/unpopulated-alloc.c | 33 -------------------------
 2 files changed, 23 insertions(+), 64 deletions(-)

Juergen Gross (1):
      xen/balloon: don't use PV mode extra memory for zone device allocations


^ permalink raw reply	[relevance 6%]

* Re: xen-swiotlb issue when NVMe driver is enabled in Dom0 on ARM
  @ 2022-04-14 17:44  2%   ` Rahul Singh
    0 siblings, 1 reply; 200+ results
From: Rahul Singh @ 2022-04-14 17:44 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: xen-devel, Bertrand Marquis, Julien Grall, Jan Beulich, jgross,
	boris.ostrovsky


[-- Attachment #1.1: Type: text/plain, Size: 9849 bytes --]

Hi Stefano,

> On 13 Apr 2022, at 10:24 pm, Stefano Stabellini <sstabellini@kernel.org> wrote:
>
> On Wed, 13 Apr 2022, Rahul Singh wrote:
>> Hello All,
>>
>> We are trying to boot the Xen 4.15.1 and dom0 Linux Kernel (5.10.27-ampere-lts-standard from [1] ) on Ampere Altra / AVA Developer Platform
>> [2] with ACPI.
>>
>> NVMe storage is connected to PCIe. Native Linux kernel boot fine and also I am able to detect and access NVMe storage.
>> However, during XEN boot when NVME driver is requesting the DMA buffer we are observing the Oops with XEN.
>
> Hi Rahul,
>
> Thanks for the bug report. More comments below.
>
>
>
>> Please find the attached detail logs for Xen and dom0 booting.
>>
>> Snip from logs:
>> (XEN) d0v0: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
>> [  0.000000] Booting Linux on physical CPU 0x0000000000 [0x413fd0c1]
>> [  0.000000] Linux version 5.10.27-ampere-lts-standard (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils)
>> 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
>> [  0.000000] Xen XEN_VERSION.XEN_SUBVERSION support found
>> [  0.000000] efi: EFI v2.50 by Xen
>> [  0.000000] efi: ACPI 2.0=0x807f66cece8
>> [  0.000000] ACPI: Early table checksum verification disabled
>> [  0.000000] ACPI: RSDP 0x00000807F66CECE8 000024 (v02 Ampere)
>> [  0.000000] ACPI: XSDT 0x00000807F66CEC38 0000AC (v01 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: FACP 0x00000807F66CE000 000114 (v06 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade  00000001 INTL 20201217)
>> [  0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra  00000001 INTL 20201217)
>> [  0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra  00000001 INTL 20201217)
>> [  0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra  00000001 INTL 20201217)
>> [  0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra  00000001 AMP. 01000013)
>> [  0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: APIC 0x00000807F66CE118 000AF4 (v05 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: STAO 0x00000807F66CEC10 000025 (v01 Ampere Altra  00000002 AMP. 01000013)
>> [  0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
>> [  0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
>> [  0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
>> [  0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
>> [  0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
>> [  0.000000] NUMA: NODE_DATA [mem 0x8079fbf5e00-0x8079fbf7fff]
>> [  0.000000] Zone ranges:
>> [  0.000000]  DMA  [mem 0x0000000098000000-0x00000000ffffffff]
>> [  0.000000]  DMA32  empty
>> [  0.000000]  Normal  [mem 0x0000000100000000-0x00000807fa0dffff]
>> [  0.000000] Movable zone start for each node
>> [  0.000000] Early memory node ranges
>> ….
>>
>> [  0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
>> [  0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
>> [  0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
>> [  0.000000] software IO TLB: mapped [mem 0x00000000f4000000-0x00000000f8000000] (64MB)
>> [  0.000000] Memory: 1929152K/2097412K available (13568K kernel code, 1996K rwdata, 3476K rodata, 4160K init, 822K bss, 168260K reserved,
>> 0K cma-reserved)
>> [  0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
>> [  0.000000] ftrace: allocating 41306 entries in 162 pages
>> ….
>>
>> ….
>> [  12.599484] loop: module loaded
>> [  12.603160] nvme nvme0: pci function 0005:04:00.0
>> [  12.608129] igb: Intel(R) Gigabit Ethernet Network Driver
>> [  12.613495] igb: Copyright (c) 2007-2014 Intel Corporation.
>> [  12.613636] nvme nvme0: missing or invalid SUBNQN field.
>> [  12.625941] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000008
>> [  12.634726] Mem abort info:
>> [  12.637520]  ESR = 0x96000044
>> [  12.640646]  EC = 0x25: DABT (current EL), IL = 32 bits
>> [  12.646055]  SET = 0, FnV = 0
>> [  12.649153]  EA = 0, S1PTW = 0
>> [  12.652365] Data abort info:
>> [  12.655314]  ISV = 0, ISS = 0x00000044
>> [  12.659231]  CM = 0, WnR = 1
>> [  12.662260] [0000000000000008] user address but active_mm is swapper
>> [  12.668724] Internal error: Oops: 96000044 [#1] PREEMPT SMP
>> [  12.674358] Modules linked in:
>> [  12.677455] CPU: 0 PID: 7 Comm: kworker/u64:0 Tainted: G  W  5.10.27-ampere-lts-standard #1
>> [  12.687083] Workqueue: nvme-reset-wq nvme_reset_work
>> [  12.692059] pstate: 60c00085 (nZCv daIf +PAN +UAO -TCO BTYPE=--)
>> [  12.698149] pc : steal_suitable_fallback+0x138/0x2f0
>> [  12.703170] lr : steal_suitable_fallback+0x1bc/0x2f0
>> [  12.708203] sp : ffff80001196b820
>> [  12.711569] x29: ffff80001196b820 x28: 0000000000000000
>> [  12.716975] x27: 0000000000000000 x26: ffff8000114dbcb0
>> [  12.722357] x25: fffffdffffe00000 x24: 0000000000000001
>> [  12.727740] x23: 0000000000000000 x22: fffffe201bf60000
>> [  12.733120] x21: ffff08071fbf6980 x20: 0000000000000901
>> [  12.738502] x19: 0000000000080000 x18: ffffffffffffffff
>> [  12.743884] x17: 0000000000000000 x16: 0000000000000012
>> [  12.749266] x15: ffff08070508c683 x14: 0000000000000058
>> [  12.754648] x13: 00000000000000c0 x12: 0000000000000000
>> [  12.760030] x11: 0000000000000400 x10: 000000000000000c
>> [  12.765412] x9 : ffff800010039d58 x8 : 0000000020000000
>> [  12.770794] x7 : 0000000000000018 x6 : ffff800011750890
>> [  12.776176] x5 : ffff800011750878 x4 : 0000000000000000
>> [  12.781558] x3 : 0000000000000000 x2 : 0000000000000000
>> [  12.786940] x1 : 0000000000000200 x0 : 0000000000000000
>> [  12.792322] Call trace:
>> [  12.794806]  steal_suitable_fallback+0x138/0x2f0
>> [  12.799520]  get_page_from_freelist+0xe30/0x12a0
>> [  12.804207]  __alloc_pages_nodemask+0x148/0xe00
>> [  12.808809]  __dma_direct_alloc_pages+0xa4/0x1d0
>> [  12.813496]  dma_direct_alloc+0x1d8/0x340
>> [  12.817571]  xen_swiotlb_alloc_coherent+0x68/0x370
>> [  12.822439]  dma_alloc_attrs+0xe8/0xf0
>> [  12.826246]  nvme_reset_work+0x1030/0x1520
>> [  12.830417]  process_one_work+0x1dc/0x4bc
>> [  12.834495]  worker_thread+0x144/0x470
>> [  12.838313]  kthread+0x14c/0x160
>> [  12.841604]  ret_from_fork+0x10/0x38
>> [  12.845255] Code: a94082c4 d37ef463 cb3c4063 8b3c4042 (f9000480)
>> [  12.851447] ---[ end trace f68728a0d3053b72 ]---
>> [  12.856117] note: kworker/u64:0[7] exited with preempt_count
>
> xen_swiotlb_alloc_coherent calls dma_direct_alloc which fails for the
> device.
>
> Without swiotlb_xen, dma_alloc_attrs would do:
>
>        if (dma_alloc_direct(dev, ops))
>                cpu_addr = dma_direct_alloc(dev, size, dma_handle, flag, attrs);
>        else if (ops->alloc)
>                cpu_addr = ops->alloc(dev, size, dma_handle, flag, attrs);
>
> dma_alloc_direct is the very same call that fails when called from
> xen_swiotlb_alloc_coherent. So it must be that the path meant to be
> taken is ops->alloc instead.
>
> ops->alloc is the dma_ops function to allocate a coherent buffer.
> When swiotlb-xen is enabled, it points to xen_swiotlb_alloc_coherent.
> Often dma_ops is NULL when Xen is disabled.
>
> I think the most likely explanation is that the nvme device require a
> specific dma_ops. When swiotlb-xen is enabled, it gets overwritten by
> arch/arm64/mm/dma-mapping.c:arch_setup_dma_ops.
>
> Can you double-check this theory by adding a few printks in
> arch/arm64/mm/dma-mapping.c:arch_setup_dma_ops, to check the dma_ops
> used when !CONFIG_XEN, and also in kernel/dma/mapping.c:dma_alloc_attrs
> to check the code path taken when !CONFIG_XEN?

I checked the code path when !CONFID_XEN and SMMU is not enabled in linux, code path is:
        dma_alloc_attrs() -> dma_alloc_direct()
and there is no issue in booting and allocating a coherent buffer.

When !CONFIG_XEN and SMMU is enabled code path is:
        dma_alloc_attrs()-> ops->alloc -> iommu_dma_alloc()
and there is no issue in booting and allocating a coherent buffer in this case also.

When Xen is enabled code path is:
        dma_alloc_attrs()-> ops->alloc() -> xen_swiotlb_alloc_coherent() -> dma_alloc_direct()
in this case allocating the coherent buffer failed.

Only difference I see is the size argument for dma_alloc_direct() in Xen case but I don’t think
that is causing the issue there is something else causing the issue maybe from
where the coherent memory is allocated.

        /* Convert the size to actually allocated. */
        size = 1UL << (order + XEN_PAGE_SHIFT);


Please find the attached detailed logs for each case.




Regards,
Rahul

[-- Attachment #1.2: Type: text/html, Size: 12990 bytes --]

[-- Attachment #2: native_linux_boot_with_smmu_debug.log --]
[-- Type: application/octet-stream, Size: 383190 bytes --]

Last login: Thu Apr 14 11:31:25 on ttys001
rahsin01@C02ZX0G9LVDN x86_64 % telnet e123343.cambridge.arm.com 10020
Trying 10.1.194.25...
Connected to e123343.cambridge.arm.com.
Escape character is '^]'.

AIS target system port 10020 device /dev/ttyUSB1 [115200 N81]


FS0:\> cd EFI
FS0:\EFI\> cd BOOT
FS0:\EFI\BOOT\> bootaa64.efi
Welcome to GRUB!

error: no such device: ((hd0,gpt1)/EFI/BOOT)/EFI/BOOT/grub.cfg.























                             GNU GRUB  version 2.06

 /----------------------------------------------------------------------------\
 | PARTUUID Boot: COM-HPC Yocto Image                                         | 
 | NVMe M.2  SSD Boot: COM-HPC Yocto Image                                    |
 |*USB Boot (If Drive is present): COM-HPC Yocto Image                        |
 | COM-HPC Yocto Image (Xen)                                                  |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            | 
 \----------------------------------------------------------------------------/

      Use the ^ and v keys to select which entry is highlighted.          
      Press enter to boot the selected OS, `e' to edit the commands       
      before booting or `c' for a command-line.                           
                                                                               
                                                                               


















































EFI stub: Booting Linux Kernel...
EFI stub: Using DTB from configuration table
EFI stub: Exiting boot services and installing virtual address map...
PROGRESS CODE: V03101019 I0
[    0.000000] Booting Linux on physical CPU 0x0000100000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: TPMFinalLog=0x807f9ef0000 ACPI 2.0=0x807fa0d0018 SMBIOS 3.0=0x807f8e30000 MEMATTR=0x807f7de0018 ESRT=0x807f851b398 TPMEventLog=0x807f7de1018 RNG=0xffb4ba98 MEMRESERVE=0x807f7eb9e98 
[    0.000000] efi: seeding entropy pool
[    0.000000] esrt: Reserving ESRT space from 0x00000807f851b398 to 0x00000807f851b3d0.
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807FA0D0018 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807FA0DFE98 0000A4 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807FA0DFB98 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807FA0D7518 000AF4 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x807fc070e00-0x807fc072fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000088300000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000088300000-0x00000000883fffff]
[    0.000000]   node   0: [mem 0x0000000090000000-0x0000000091ffffff]
[    0.000000]   node   0: [mem 0x0000000092000000-0x00000000927bffff]
[    0.000000]   node   0: [mem 0x00000000927c0000-0x00000000ffb3ffff]
[    0.000000]   node   0: [mem 0x00000000ffb40000-0x00000000ffb4ffff]
[    0.000000]   node   0: [mem 0x00000000ffb50000-0x00000000ffffffff]
[    0.000000]   node   0: [mem 0x0000080000000000-0x000008007fffffff]
[    0.000000]   node   0: [mem 0x0000080100000000-0x00000807f655cfff]
[    0.000000]   node   0: [mem 0x00000807f655d000-0x00000807f6c05fff]
[    0.000000]   node   0: [mem 0x00000807f6c06000-0x00000807f70fffff]
[    0.000000]   node   0: [mem 0x00000807f7100000-0x00000807f719ffff]
[    0.000000]   node   0: [mem 0x00000807f71a0000-0x00000807f7e7ffff]
[    0.000000]   node   0: [mem 0x00000807f7e80000-0x00000807f7e9ffff]
[    0.000000]   node   0: [mem 0x00000807f7ea0000-0x00000807f7eeffff]
[    0.000000]   node   0: [mem 0x00000807f7ef0000-0x00000807f7f2ffff]
[    0.000000]   node   0: [mem 0x00000807f7f30000-0x00000807f87effff]
[    0.000000]   node   0: [mem 0x00000807f87f0000-0x00000807f882ffff]
[    0.000000]   node   0: [mem 0x00000807f8830000-0x00000807f8a6ffff]
[    0.000000]   node   0: [mem 0x00000807f8a70000-0x00000807f8aaffff]
[    0.000000]   node   0: [mem 0x00000807f8ab0000-0x00000807f8e1ffff]
[    0.000000]   node   0: [mem 0x00000807f8e20000-0x00000807f8e3ffff]
[    0.000000]   node   0: [mem 0x00000807f8e40000-0x00000807f8e6ffff]
[    0.000000]   node   0: [mem 0x00000807f8e70000-0x00000807f9e7ffff]
[    0.000000]   node   0: [mem 0x00000807f9e80000-0x00000807f9eeffff]
[    0.000000]   node   0: [mem 0x00000807f9ef0000-0x00000807f9f1ffff]
[    0.000000]   node   0: [mem 0x00000807f9f20000-0x00000807f9fbffff]
[    0.000000]   node   0: [mem 0x00000807f9fc0000-0x00000807f9ffffff]
[    0.000000]   node   0: [mem 0x00000807fa000000-0x00000807fa0fffff]
[    0.000000]   node   0: [mem 0x00000807fa100000-0x00000807fa19ffff]
[    0.000000]   node   0: [mem 0x00000807fa1a0000-0x00000807fa26ffff]
[    0.000000]   node   0: [mem 0x00000807fa270000-0x00000807fa4affff]
[    0.000000]   node   0: [mem 0x00000807fa4b0000-0x00000807fa71ffff]
[    0.000000]   node   0: [mem 0x00000807fa720000-0x00000807fa75ffff]
[    0.000000]   node   0: [mem 0x00000807fa760000-0x00000807fa8cffff]
[    0.000000]   node   0: [mem 0x00000807fa8d0000-0x00000807fa96ffff]
[    0.000000]   node   0: [mem 0x00000807fa970000-0x00000807fa9fffff]
[    0.000000]   node   0: [mem 0x00000807faa00000-0x00000807fbaaffff]
[    0.000000]   node   0: [mem 0x00000807fbab0000-0x00000807fbb3ffff]
[    0.000000]   node   0: [mem 0x00000807fbb40000-0x00000807fbbdffff]
[    0.000000]   node   0: [mem 0x00000807fbbe0000-0x00000807fbcaffff]
[    0.000000]   node   0: [mem 0x00000807fbcb0000-0x00000807fbceffff]
[    0.000000]   node   0: [mem 0x00000807fbcf0000-0x00000807fbd5ffff]
[    0.000000]   node   0: [mem 0x00000807fbd60000-0x00000807fbdfffff]
[    0.000000]   node   0: [mem 0x00000807fbe00000-0x00000807ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000088300000-0x00000807ffffffff]
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270100 -> Node 0
[    0.000000] percpu: Embedded 31 pages/cpu s89240 r8192 d29544 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: ARM erratum 1418040
[    0.000000] alternatives: patching kernel code
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8193276
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/Image rootwait rw root=/dev/sda2
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.000000] printk: log_buf_len min size: 131072 bytes
[    0.000000] printk: log_buf_len: 262144 bytes
[    0.000000] printk: early log buf free: 121248(92%)
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000fbb40000-0x00000000ffb40000] (64MB)
[    0.000000] Memory: 32502292K/33293312K available (13568K kernel code, 1996K rwdata, 3480K rodata, 4160K init, 822K bss, 791020K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 41387 entries in 162 pages
[    0.000000] ftrace: allocated 162 pages with 3 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=32.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 672 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 100000 region 0:0x0000100100540000
[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 3 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 4 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 5 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 6 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 7 -> Node 0
[    0.000000] ITS [mem 0x100100040000-0x10010005ffff]
[    0.000000] ITS@0x0000100100040000: allocated 8192 Devices @80000220000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100040000: allocated 32768 Interrupt Collections @80000230000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100060000-0x10010007ffff]
[    0.000000] ITS@0x0000100100060000: allocated 8192 Devices @80000250000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100060000: allocated 32768 Interrupt Collections @80000260000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100080000-0x10010009ffff]
[    0.000000] ITS@0x0000100100080000: allocated 8192 Devices @80000280000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100080000: allocated 32768 Interrupt Collections @80000290000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000a0000-0x1001000bffff]
[    0.000000] ITS@0x00001001000a0000: allocated 8192 Devices @800002b0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000a0000: allocated 32768 Interrupt Collections @800002c0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000c0000-0x1001000dffff]
[    0.000000] ITS@0x00001001000c0000: allocated 8192 Devices @800002e0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000c0000: allocated 32768 Interrupt Collections @800002f0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000e0000-0x1001000fffff]
[    0.000000] ITS@0x00001001000e0000: allocated 8192 Devices @80000310000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000e0000: allocated 32768 Interrupt Collections @80000320000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100100000-0x10010011ffff]
[    0.000000] ITS@0x0000100100100000: allocated 8192 Devices @80000340000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100100000: allocated 32768 Interrupt Collections @80000350000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100120000-0x10010013ffff]
[    0.000000] ITS@0x0000100100120000: allocated 8192 Devices @80000370000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100120000: allocated 32768 Interrupt Collections @80000380000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] GICv3: using LPI property table @0x0000080000390000
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000800003a0000
[    0.000000] random: get_random_bytes called from start_kernel+0x394/0x554 with crng_init=0
[    0.000000] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.000000] ACPI GTDT: found 1 memory-mapped timer block(s).
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 25.00MHz (phys/phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000001] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000053] Console: colour dummy device 80x25
[    0.000073] ACPI: Core revision 20200925
[    0.000485] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    0.000490] pid_max: default: 32768 minimum: 301
[    0.000518] LSM: Security Framework initializing
[    0.000646] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.000730] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.001585] rcu: Hierarchical SRCU implementation.
[    0.001714] Platform MSI: ITS@0x100100040000 domain created
[    0.001718] Platform MSI: ITS@0x100100060000 domain created
[    0.001721] Platform MSI: ITS@0x100100080000 domain created
[    0.001724] Platform MSI: ITS@0x1001000a0000 domain created
[    0.001727] Platform MSI: ITS@0x1001000c0000 domain created
[    0.001730] Platform MSI: ITS@0x1001000e0000 domain created
[    0.001733] Platform MSI: ITS@0x100100100000 domain created
[    0.001737] Platform MSI: ITS@0x100100120000 domain created
[    0.001744] PCI/MSI: ITS@0x100100040000 domain created
[    0.001747] PCI/MSI: ITS@0x100100060000 domain created
[    0.001750] PCI/MSI: ITS@0x100100080000 domain created
[    0.001752] PCI/MSI: ITS@0x1001000a0000 domain created
[    0.001755] PCI/MSI: ITS@0x1001000c0000 domain created
[    0.001759] PCI/MSI: ITS@0x1001000e0000 domain created
[    0.001762] PCI/MSI: ITS@0x100100100000 domain created
[    0.001765] PCI/MSI: ITS@0x100100120000 domain created
[    0.001772] Remapping and enabling EFI services.
[    0.003609] smp: Bringing up secondary CPUs ...
[    0.003903] Detected PIPT I-cache on CPU1
[    0.003932] GICv3: CPU1: found redistributor 180000 region 0:0x0000100100740000
[    0.003956] GICv3: CPU1: using allocated LPI pending table @0x00000800003b0000
[    0.004001] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004015] CPU1: Booted secondary processor 0x0000180000 [0x413fd0c1]
[    0.004303] Detected PIPT I-cache on CPU2
[    0.004331] GICv3: CPU2: found redistributor 160000 region 0:0x00001001006c0000
[    0.004354] GICv3: CPU2: using allocated LPI pending table @0x00000800003c0000
[    0.004402] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004414] CPU2: Booted secondary processor 0x0000160000 [0x413fd0c1]
[    0.004707] Detected PIPT I-cache on CPU3
[    0.004736] GICv3: CPU3: found redistributor 1e0000 region 0:0x00001001008c0000
[    0.004760] GICv3: CPU3: using allocated LPI pending table @0x00000800003d0000
[    0.004808] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004822] CPU3: Booted secondary processor 0x00001e0000 [0x413fd0c1]
[    0.005095] Detected PIPT I-cache on CPU4
[    0.005114] GICv3: CPU4: found redistributor 80000 region 0:0x0000100100340000
[    0.005139] GICv3: CPU4: using allocated LPI pending table @0x00000800003e0000
[    0.005188] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.005199] CPU4: Booted secondary processor 0x0000080000 [0x413fd0c1]
[    0.005499] Detected PIPT I-cache on CPU5
[    0.005527] GICv3: CPU5: found redistributor 200000 region 0:0x0000100100940000
[    0.005552] GICv3: CPU5: using allocated LPI pending table @0x00000800003f0000
[    0.005599] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.005616] CPU5: Booted secondary processor 0x0000200000 [0x413fd0c1]
[    0.005895] Detected PIPT I-cache on CPU6
[    0.005917] GICv3: CPU6: found redistributor e0000 region 0:0x00001001004c0000
[    0.005942] GICv3: CPU6: using allocated LPI pending table @0x0000080000800000
[    0.005993] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006006] CPU6: Booted secondary processor 0x00000e0000 [0x413fd0c1]
[    0.006298] Detected PIPT I-cache on CPU7
[    0.006330] GICv3: CPU7: found redistributor 260000 region 0:0x0000100100ac0000
[    0.006355] GICv3: CPU7: using allocated LPI pending table @0x0000080000810000
[    0.006405] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006422] CPU7: Booted secondary processor 0x0000260000 [0x413fd0c1]
[    0.006695] Detected PIPT I-cache on CPU8
[    0.006719] GICv3: CPU8: found redistributor 110000 region 0:0x0000100100580000
[    0.006745] GICv3: CPU8: using allocated LPI pending table @0x0000080000820000
[    0.006793] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006806] CPU8: Booted secondary processor 0x0000110000 [0x413fd0c1]
[    0.007095] Detected PIPT I-cache on CPU9
[    0.007121] GICv3: CPU9: found redistributor 190000 region 0:0x0000100100780000
[    0.007147] GICv3: CPU9: using allocated LPI pending table @0x0000080000830000
[    0.007195] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.007211] CPU9: Booted secondary processor 0x0000190000 [0x413fd0c1]
[    0.007493] Detected PIPT I-cache on CPU10
[    0.007519] GICv3: CPU10: found redistributor 170000 region 0:0x0000100100700000
[    0.007545] GICv3: CPU10: using allocated LPI pending table @0x0000080000840000
[    0.007593] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.007610] CPU10: Booted secondary processor 0x0000170000 [0x413fd0c1]
[    0.007894] Detected PIPT I-cache on CPU11
[    0.007923] GICv3: CPU11: found redistributor 1f0000 region 0:0x0000100100900000
[    0.007949] GICv3: CPU11: using allocated LPI pending table @0x0000080000850000
[    0.007996] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008014] CPU11: Booted secondary processor 0x00001f0000 [0x413fd0c1]
[    0.008375] Detected PIPT I-cache on CPU12
[    0.008395] GICv3: CPU12: found redistributor 90000 region 0:0x0000100100380000
[    0.008422] GICv3: CPU12: using allocated LPI pending table @0x0000080000860000
[    0.008470] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008488] CPU12: Booted secondary processor 0x0000090000 [0x413fd0c1]
[    0.008794] Detected PIPT I-cache on CPU13
[    0.008823] GICv3: CPU13: found redistributor 210000 region 0:0x0000100100980000
[    0.008850] GICv3: CPU13: using allocated LPI pending table @0x0000080000870000
[    0.008895] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008913] CPU13: Booted secondary processor 0x0000210000 [0x413fd0c1]
[    0.009210] Detected PIPT I-cache on CPU14
[    0.009233] GICv3: CPU14: found redistributor f0000 region 0:0x0000100100500000
[    0.009261] GICv3: CPU14: using allocated LPI pending table @0x0000080000880000
[    0.009309] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.009329] CPU14: Booted secondary processor 0x00000f0000 [0x413fd0c1]
[    0.009778] Detected PIPT I-cache on CPU15
[    0.009811] GICv3: CPU15: found redistributor 270000 region 0:0x0000100100b00000
[    0.009839] GICv3: CPU15: using allocated LPI pending table @0x0000080000890000
[    0.009889] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.009908] CPU15: Booted secondary processor 0x0000270000 [0x413fd0c1]
[    0.010198] Detected PIPT I-cache on CPU16
[    0.010221] GICv3: CPU16: found redistributor 100100 region 0:0x0000100100560000
[    0.010248] GICv3: CPU16: using allocated LPI pending table @0x00000800008a0000
[    0.010297] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.010316] CPU16: Booted secondary processor 0x0000100100 [0x413fd0c1]
[    0.010599] Detected PIPT I-cache on CPU17
[    0.010626] GICv3: CPU17: found redistributor 180100 region 0:0x0000100100760000
[    0.010654] GICv3: CPU17: using allocated LPI pending table @0x00000800008b0000
[    0.010700] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.010720] CPU17: Booted secondary processor 0x0000180100 [0x413fd0c1]
[    0.011009] Detected PIPT I-cache on CPU18
[    0.011035] GICv3: CPU18: found redistributor 160100 region 0:0x00001001006e0000
[    0.011063] GICv3: CPU18: using allocated LPI pending table @0x00000800008c0000
[    0.011111] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.011131] CPU18: Booted secondary processor 0x0000160100 [0x413fd0c1]
[    0.011584] Detected PIPT I-cache on CPU19
[    0.011614] GICv3: CPU19: found redistributor 1e0100 region 0:0x00001001008e0000
[    0.011643] GICv3: CPU19: using allocated LPI pending table @0x00000800008d0000
[    0.011690] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.011710] CPU19: Booted secondary processor 0x00001e0100 [0x413fd0c1]
[    0.012005] Detected PIPT I-cache on CPU20
[    0.012025] GICv3: CPU20: found redistributor 80100 region 0:0x0000100100360000
[    0.012053] GICv3: CPU20: using allocated LPI pending table @0x00000800008e0000
[    0.012101] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.012121] CPU20: Booted secondary processor 0x0000080100 [0x413fd0c1]
[    0.012406] Detected PIPT I-cache on CPU21
[    0.012436] GICv3: CPU21: found redistributor 200100 region 0:0x0000100100960000
[    0.012468] GICv3: CPU21: using allocated LPI pending table @0x00000800008f0000
[    0.012515] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.012536] CPU21: Booted secondary processor 0x0000200100 [0x413fd0c1]
[    0.012975] Detected PIPT I-cache on CPU22
[    0.012999] GICv3: CPU22: found redistributor e0100 region 0:0x00001001004e0000
[    0.013030] GICv3: CPU22: using allocated LPI pending table @0x0000080000900000
[    0.013080] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.013100] CPU22: Booted secondary processor 0x00000e0100 [0x413fd0c1]
[    0.013413] Detected PIPT I-cache on CPU23
[    0.013445] GICv3: CPU23: found redistributor 260100 region 0:0x0000100100ae0000
[    0.013475] GICv3: CPU23: using allocated LPI pending table @0x0000080000910000
[    0.013523] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.013543] CPU23: Booted secondary processor 0x0000260100 [0x413fd0c1]
[    0.013975] Detected PIPT I-cache on CPU24
[    0.013999] GICv3: CPU24: found redistributor 110100 region 0:0x00001001005a0000
[    0.014029] GICv3: CPU24: using allocated LPI pending table @0x0000080000920000
[    0.014076] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.014098] CPU24: Booted secondary processor 0x0000110100 [0x413fd0c1]
[    0.014392] Detected PIPT I-cache on CPU25
[    0.014419] GICv3: CPU25: found redistributor 190100 region 0:0x00001001007a0000
[    0.014449] GICv3: CPU25: using allocated LPI pending table @0x0000080000930000
[    0.014497] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.014518] CPU25: Booted secondary processor 0x0000190100 [0x413fd0c1]
[    0.014964] Detected PIPT I-cache on CPU26
[    0.014991] GICv3: CPU26: found redistributor 170100 region 0:0x0000100100720000
[    0.015022] GICv3: CPU26: using allocated LPI pending table @0x0000080000940000
[    0.015071] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.015093] CPU26: Booted secondary processor 0x0000170100 [0x413fd0c1]
[    0.015389] Detected PIPT I-cache on CPU27
[    0.015420] GICv3: CPU27: found redistributor 1f0100 region 0:0x0000100100920000
[    0.015450] GICv3: CPU27: using allocated LPI pending table @0x0000080000950000
[    0.015496] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.015518] CPU27: Booted secondary processor 0x00001f0100 [0x413fd0c1]
[    0.015807] Detected PIPT I-cache on CPU28
[    0.015827] GICv3: CPU28: found redistributor 90100 region 0:0x00001001003a0000
[    0.015859] GICv3: CPU28: using allocated LPI pending table @0x0000080000960000
[    0.015907] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.015929] CPU28: Booted secondary processor 0x0000090100 [0x413fd0c1]
[    0.016387] Detected PIPT I-cache on CPU29
[    0.016418] GICv3: CPU29: found redistributor 210100 region 0:0x00001001009a0000
[    0.016449] GICv3: CPU29: using allocated LPI pending table @0x0000080000970000
[    0.016496] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.016518] CPU29: Booted secondary processor 0x0000210100 [0x413fd0c1]
[    0.016972] Detected PIPT I-cache on CPU30
[    0.016996] GICv3: CPU30: found redistributor f0100 region 0:0x0000100100520000
[    0.017028] GICv3: CPU30: using allocated LPI pending table @0x0000080000980000
[    0.017077] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.017100] CPU30: Booted secondary processor 0x00000f0100 [0x413fd0c1]
[    0.017404] Detected PIPT I-cache on CPU31
[    0.017437] GICv3: CPU31: found redistributor 270100 region 0:0x0000100100b20000
[    0.017469] GICv3: CPU31: using allocated LPI pending table @0x0000080000990000
[    0.017516] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.017538] CPU31: Booted secondary processor 0x0000270100 [0x413fd0c1]
[    0.017621] smp: Brought up 1 node, 32 CPUs
[    0.017714] SMP: Total of 32 processors activated.
[    0.017717] CPU features: detected: Privileged Access Never
[    0.017719] CPU features: detected: LSE atomic instructions
[    0.017721] CPU features: detected: User Access Override
[    0.017723] CPU features: detected: 32-bit EL0 Support
[    0.017725] CPU features: detected: Common not Private translations
[    0.017727] CPU features: detected: RAS Extension Support
[    0.017729] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.017731] CPU features: detected: CRC32 instructions
[    0.017732] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.049772] CPU: All CPU(s) started at EL2
[    0.050565] devtmpfs: initialized
[    0.050836] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.050842] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.051073] SMBIOS 3.3.0 present.
[    0.051079] DMI: ADLINK COM-HPC-ALT/COM-HPC-ALT, BIOS TianoCore EDKII 11/23/2021
[    0.051307] NET: Registered protocol family 16
[    0.051825] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.051993] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.052165] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.052262] thermal_sys: Registered thermal governor 'step_wise'
[    0.052343] cpuidle: using governor menu
[    0.052485] Detected 15 PCC Subspaces
[    0.052506] Registering PCC driver as Mailbox controller
[    0.052543] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.052850] ASID allocator initialised with 65536 entries
[    0.052857] ACPI: bus type PCI registered
[    0.052859] Serial: AMBA PL011 UART driver
[    0.055016] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.055019] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.055021] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.055023] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.055735] cryptd: max_cpu_qlen set to 1000
[    0.124057] raid6: neonx8   gen()  7732 MB/s
[    0.192086] raid6: neonx8   xor()  6060 MB/s
[    0.260117] raid6: neonx4   gen()  7633 MB/s
[    0.328148] raid6: neonx4   xor()  6327 MB/s
[    0.396179] raid6: neonx2   gen()  7379 MB/s
[    0.464210] raid6: neonx2   xor()  5752 MB/s
[    0.532243] raid6: neonx1   gen()  5990 MB/s
[    0.600273] raid6: neonx1   xor()  4936 MB/s
[    0.668305] raid6: int64x8  gen()  3602 MB/s
[    0.736333] raid6: int64x8  xor()  2019 MB/s
[    0.804361] raid6: int64x4  gen()  4132 MB/s
[    0.872443] raid6: int64x4  xor()  2191 MB/s
[    0.940420] raid6: int64x2  gen()  3503 MB/s
[    1.008448] raid6: int64x2  xor()  1889 MB/s
[    1.076474] raid6: int64x1  gen()  2875 MB/s
[    1.144505] raid6: int64x1  xor()  1508 MB/s
[    1.144507] raid6: using algorithm neonx8 gen() 7732 MB/s
[    1.144509] raid6: .... xor() 6060 MB/s, rmw enabled
[    1.144511] raid6: using neon recovery algorithm
[    1.144586] ACPI: Added _OSI(Module Device)
[    1.144588] ACPI: Added _OSI(Processor Device)
[    1.144590] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.144593] ACPI: Added _OSI(Processor Aggregator Device)
[    1.144595] ACPI: Added _OSI(Linux-Dell-Video)
[    1.144597] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    1.144599] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    1.164871] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    1.171133] ACPI: Interpreter enabled
[    1.171136] ACPI: Using GIC for interrupt routing
[    1.171149] ACPI: MCFG table detected, 5 entries
[    1.171154] ACPI: IORT: SMMU-v3[33ffe0000000] Mapped to Proximity domain 0
[    1.171178] ACPI: IORT: SMMU-v3[37ffe0000000] Mapped to Proximity domain 0
[    1.171192] ACPI: IORT: SMMU-v3[3fffe0000000] Mapped to Proximity domain 0
[    1.171204] ACPI: IORT: SMMU-v3[2bffe0000000] Mapped to Proximity domain 0
[    1.171218] ACPI: IORT: SMMU-v3[2fffe0000000] Mapped to Proximity domain 0
[    1.171304] HEST: Table parsing has been initialized.
[    1.206089] ARMH0011:00: ttyAMA0 at MMIO 0x100002600000 (irq = 79, base_baud = 0) is a SBSA
[    4.020835] printk: console [ttyAMA0] enabled
[    4.026899] ARMH0011:01: ttyAMA1 at MMIO 0x100002620000 (irq = 80, base_baud = 0) is a SBSA
[    4.037022] ACPI: PCI Root Bridge [PCI0] (domain 000c [bus 00-ff])
[    4.043205] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.052306] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control
[    4.060129] acpi PNP0A08:00: MCFG quirk: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.072942] acpi PNP0A08:00: ECAM area [mem 0x33fff0000000-0x33ffffffffff] reserved by PNP0C02:00
[    4.081814] acpi PNP0A08:00: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff]
[    4.089976] PCI host bridge to bus 000c:00
[    4.094063] pci_bus 000c:00: root bus resource [mem 0x40000000-0x4fffffff window]
[    4.101535] pci_bus 000c:00: root bus resource [mem 0x300000000000-0x33ffdfffffff window]
[    4.109701] pci_bus 000c:00: root bus resource [bus 00-ff]
[    4.115212] pci 000c:00:00.0: [1def:e100] type 00 class 0x060000
[    4.121288] pci 000c:00:01.0: [1def:e101] type 01 class 0x060400
[    4.127335] pci 000c:00:01.0: supports D1 D2
[    4.131596] pci 000c:00:01.0: PME# supported from D0 D1 D3hot
[    4.138453] pci 000c:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    4.146621] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    4.158086] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    4.168599] pci 000c:00:01.0: BAR 8: assigned [mem 0x40000000-0x401fffff]
[    4.175377] pci 000c:00:01.0: BAR 9: assigned [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.183803] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.190059] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.196663] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.202919] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.209523] pci 000c:00:01.0: PCI bridge to [bus 01]
[    4.214478] pci 000c:00:01.0:   bridge window [mem 0x40000000-0x401fffff]
[    4.221256] pci 000c:00:01.0:   bridge window [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.229685] pci_bus 000c:00: resource 4 [mem 0x40000000-0x4fffffff window]
[    4.236549] pci_bus 000c:00: resource 5 [mem 0x300000000000-0x33ffdfffffff window]
[    4.244107] pci_bus 000c:01: resource 1 [mem 0x40000000-0x401fffff]
[    4.250364] pci_bus 000c:01: resource 2 [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.258311] ACPI: PCI Root Bridge [PCI1] (domain 000d [bus 00-ff])
[    4.264489] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.273588] acpi PNP0A08:01: PCIe port services disabled; not requesting _OSC control
[    4.281409] acpi PNP0A08:01: MCFG quirk: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.294199] acpi PNP0A08:01: ECAM area [mem 0x37fff0000000-0x37ffffffffff] reserved by PNP0C02:00
[    4.303071] acpi PNP0A08:01: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff]
[    4.311224] PCI host bridge to bus 000d:00
[    4.315311] pci_bus 000d:00: root bus resource [mem 0x50000000-0x5fffffff window]
[    4.322782] pci_bus 000d:00: root bus resource [mem 0x340000000000-0x37ffdfffffff window]
[    4.330948] pci_bus 000d:00: root bus resource [bus 00-ff]
[    4.336455] pci 000d:00:00.0: [1def:e100] type 00 class 0x060000
[    4.342517] pci 000d:00:01.0: [1def:e101] type 01 class 0x060400
[    4.348549] pci 000d:00:01.0: supports D1 D2
[    4.352809] pci 000d:00:01.0: PME# supported from D0 D1 D3hot
[    4.358633] pci 000d:01:00.0: [10de:1e89] type 00 class 0x030000
[    4.364639] pci 000d:01:00.0: reg 0x10: [mem 0x50000000-0x50ffffff]
[    4.370903] pci 000d:01:00.0: reg 0x14: [mem 0x340000000000-0x34000fffffff 64bit pref]
[    4.378816] pci 000d:01:00.0: reg 0x1c: [mem 0x340010000000-0x340011ffffff 64bit pref]
[    4.386725] pci 000d:01:00.0: reg 0x24: [io  0x57ffe000-0x57ffe07f]
[    4.392985] pci 000d:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.399736] pci 000d:01:00.0: PME# supported from D0 D3hot D3cold
[    4.405889] pci 000d:01:00.1: [10de:10f8] type 00 class 0x040300
[    4.411894] pci 000d:01:00.1: reg 0x10: [mem 0x51000000-0x51003fff]
[    4.418271] pci 000d:01:00.2: [10de:1ad8] type 00 class 0x0c0330
[    4.424281] pci 000d:01:00.2: reg 0x10: [mem 0x340012000000-0x34001203ffff 64bit pref]
[    4.432198] pci 000d:01:00.2: reg 0x1c: [mem 0x340012040000-0x34001204ffff 64bit pref]
[    4.440154] pci 000d:01:00.2: PME# supported from D0 D3hot D3cold
[    4.446294] pci 000d:01:00.3: [10de:1ad9] type 00 class 0x0c8000
[    4.452299] pci 000d:01:00.3: reg 0x10: [mem 0x51004000-0x51004fff]
[    4.458623] pci 000d:01:00.3: PME# supported from D0 D3hot D3cold
[    4.464759] pci 000d:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    4.486037] pci 000d:00:01.0: BAR 9: assigned [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.494465] pci 000d:00:01.0: BAR 8: assigned [mem 0x50000000-0x517fffff]
[    4.501242] pci 000d:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.507498] pci 000d:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.514103] pci 000d:01:00.0: BAR 1: assigned [mem 0x340000000000-0x34000fffffff 64bit pref]
[    4.522536] pci 000d:01:00.0: BAR 3: assigned [mem 0x340010000000-0x340011ffffff 64bit pref]
[    4.530968] pci 000d:01:00.0: BAR 0: assigned [mem 0x50000000-0x50ffffff]
[    4.537748] pci 000d:01:00.0: BAR 6: assigned [mem 0x51000000-0x5107ffff pref]
[    4.544959] pci 000d:01:00.2: BAR 0: assigned [mem 0x340012000000-0x34001203ffff 64bit pref]
[    4.553392] pci 000d:01:00.2: BAR 3: assigned [mem 0x340012040000-0x34001204ffff 64bit pref]
[    4.561825] pci 000d:01:00.1: BAR 0: assigned [mem 0x51080000-0x51083fff]
[    4.568605] pci 000d:01:00.3: BAR 0: assigned [mem 0x51084000-0x51084fff]
[    4.575384] pci 000d:01:00.0: BAR 5: no space for [io  size 0x0080]
[    4.581640] pci 000d:01:00.0: BAR 5: failed to assign [io  size 0x0080]
[    4.588244] pci 000d:00:01.0: PCI bridge to [bus 01]
[    4.593199] pci 000d:00:01.0:   bridge window [mem 0x50000000-0x517fffff]
[    4.599977] pci 000d:00:01.0:   bridge window [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.608404] pci_bus 000d:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    4.617438] pci_bus 000d:00: resource 4 [mem 0x50000000-0x5fffffff window]
[    4.624301] pci_bus 000d:00: resource 5 [mem 0x340000000000-0x37ffdfffffff window]
[    4.631859] pci_bus 000d:01: resource 1 [mem 0x50000000-0x517fffff]
[    4.638115] pci_bus 000d:01: resource 2 [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.646074] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus 00-ff])
[    4.652252] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.661352] acpi PNP0A08:03: PCIe port services disabled; not requesting _OSC control
[    4.669174] acpi PNP0A08:03: MCFG quirk: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.681969] acpi PNP0A08:03: ECAM area [mem 0x3ffff0000000-0x3fffffffffff] reserved by PNP0C02:00
[    4.690840] acpi PNP0A08:03: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff]
[    4.698993] PCI host bridge to bus 0000:00
[    4.703081] pci_bus 0000:00: root bus resource [mem 0x70000000-0x7fffffff window]
[    4.710553] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3fffdfffffff window]
[    4.718720] pci_bus 0000:00: root bus resource [bus 00-ff]
[    4.724227] pci 0000:00:00.0: [1def:e100] type 00 class 0x060000
[    4.730290] pci 0000:00:01.0: [1def:e101] type 01 class 0x060400
[    4.736323] pci 0000:00:01.0: supports D1 D2
[    4.740582] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    4.746403] pci 0000:01:00.0: [8086:1589] type 00 class 0x020000
[    4.752411] pci 0000:01:00.0: reg 0x10: [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    4.760328] pci 0000:01:00.0: reg 0x1c: [mem 0x3c0004818000-0x3c000481ffff 64bit pref]
[    4.768241] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.775004] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    4.781162] pci 0000:01:00.1: [8086:1589] type 00 class 0x020000
[    4.787171] pci 0000:01:00.1: reg 0x10: [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    4.795088] pci 0000:01:00.1: reg 0x1c: [mem 0x3c0004810000-0x3c0004817fff 64bit pref]
[    4.803002] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.809760] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    4.815911] pci 0000:01:00.2: [8086:1589] type 00 class 0x020000
[    4.821920] pci 0000:01:00.2: reg 0x10: [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    4.829837] pci 0000:01:00.2: reg 0x1c: [mem 0x3c0004808000-0x3c000480ffff 64bit pref]
[    4.837751] pci 0000:01:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.844508] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[    4.850656] pci 0000:01:00.3: [8086:1589] type 00 class 0x020000
[    4.856664] pci 0000:01:00.3: reg 0x10: [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    4.864581] pci 0000:01:00.3: reg 0x1c: [mem 0x3c0004800000-0x3c0004807fff 64bit pref]
[    4.872495] pci 0000:01:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.879253] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[    4.885415] pci 0000:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01-02] add_size 1000
[    4.893846] pci 0000:00:01.0: BAR 9: assigned [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    4.902273] pci 0000:00:01.0: BAR 8: assigned [mem 0x70000000-0x701fffff]
[    4.909050] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.915306] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.921910] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.928166] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.934772] pci 0000:01:00.0: BAR 0: assigned [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    4.943204] pci 0000:01:00.1: BAR 0: assigned [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    4.951637] pci 0000:01:00.2: BAR 0: assigned [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    4.960069] pci 0000:01:00.3: BAR 0: assigned [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    4.968501] pci 0000:01:00.0: BAR 6: assigned [mem 0x70000000-0x7007ffff pref]
[    4.975712] pci 0000:01:00.1: BAR 6: assigned [mem 0x70080000-0x700fffff pref]
[    4.982923] pci 0000:01:00.2: BAR 6: assigned [mem 0x70100000-0x7017ffff pref]
[    4.990134] pci 0000:01:00.3: BAR 6: assigned [mem 0x70180000-0x701fffff pref]
[    4.997345] pci 0000:01:00.0: BAR 3: assigned [mem 0x3c0004000000-0x3c0004007fff 64bit pref]
[    5.005777] pci 0000:01:00.1: BAR 3: assigned [mem 0x3c0004008000-0x3c000400ffff 64bit pref]
[    5.014210] pci 0000:01:00.2: BAR 3: assigned [mem 0x3c0004010000-0x3c0004017fff 64bit pref]
[    5.022643] pci 0000:01:00.3: BAR 3: assigned [mem 0x3c0004018000-0x3c000401ffff 64bit pref]
[    5.031075] pci 0000:00:01.0: PCI bridge to [bus 01-02]
[    5.036290] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x701fffff]
[    5.043068] pci 0000:00:01.0:   bridge window [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    5.051495] pci_bus 0000:00: resource 4 [mem 0x70000000-0x7fffffff window]
[    5.058359] pci_bus 0000:00: resource 5 [mem 0x3c0000000000-0x3fffdfffffff window]
[    5.065918] pci_bus 0000:01: resource 1 [mem 0x70000000-0x701fffff]
[    5.072173] pci_bus 0000:01: resource 2 [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    5.080135] ACPI: PCI Root Bridge [PCI6] (domain 0004 [bus 00-ff])
[    5.086313] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    5.095412] acpi PNP0A08:06: PCIe port services disabled; not requesting _OSC control
[    5.103234] acpi PNP0A08:06: MCFG quirk: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    5.116021] acpi PNP0A08:06: ECAM area [mem 0x2bfff0000000-0x2bffffffffff] reserved by PNP0C02:00
[    5.124893] acpi PNP0A08:06: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff]
[    5.133048] PCI host bridge to bus 0004:00
[    5.137135] pci_bus 0004:00: root bus resource [mem 0x20000000-0x2fffffff window]
[    5.144607] pci_bus 0004:00: root bus resource [mem 0x280000000000-0x2bffdfffffff window]
[    5.152773] pci_bus 0004:00: root bus resource [bus 00-ff]
[    5.158280] pci 0004:00:00.0: [1def:e110] type 00 class 0x060000
[    5.164343] pci 0004:00:01.0: [1def:e111] type 01 class 0x060400
[    5.170378] pci 0004:00:01.0: supports D1 D2
[    5.174637] pci 0004:00:01.0: PME# supported from D0 D1 D3hot
[    5.180422] pci 0004:00:03.0: [1def:e113] type 01 class 0x060400
[    5.186455] pci 0004:00:03.0: supports D1 D2
[    5.190715] pci 0004:00:03.0: PME# supported from D0 D1 D3hot
[    5.196500] pci 0004:00:05.0: [1def:e115] type 01 class 0x060400
[    5.202542] pci 0004:00:05.0: supports D1 D2
[    5.206802] pci 0004:00:05.0: PME# supported from D0 D1 D3hot
[    5.212620] pci 0004:01:00.0: [1a03:1150] type 01 class 0x060400
[    5.218666] pci 0004:01:00.0: enabling Extended Tags
[    5.223680] pci 0004:01:00.0: supports D1 D2
[    5.227939] pci 0004:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.234644] pci_bus 0004:02: extended config space not accessible
[    5.240749] pci 0004:02:00.0: [1a03:2000] type 00 class 0x030000
[    5.246763] pci 0004:02:00.0: reg 0x10: [mem 0x20000000-0x20ffffff]
[    5.253029] pci 0004:02:00.0: reg 0x14: [mem 0x21000000-0x2101ffff]
[    5.259295] pci 0004:02:00.0: reg 0x18: [io  0x27fff000-0x27fff07f]
[    5.265634] pci 0004:02:00.0: supports D1 D2
[    5.269893] pci 0004:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.276635] pci 0004:03:00.0: [1912:0014] type 00 class 0x0c0330
[    5.282651] pci 0004:03:00.0: reg 0x10: [mem 0x21200000-0x21201fff 64bit]
[    5.289532] pci 0004:03:00.0: PME# supported from D0 D3hot D3cold
[    5.295754] pci 0004:04:00.0: [8086:1533] type 00 class 0x020000
[    5.301780] pci 0004:04:00.0: reg 0x10: [mem 0x21100000-0x2117ffff]
[    5.308067] pci 0004:04:00.0: reg 0x18: [io  0x27ffe000-0x27ffe01f]
[    5.314337] pci 0004:04:00.0: reg 0x1c: [mem 0x21180000-0x21183fff]
[    5.320771] pci 0004:04:00.0: PME# supported from D0 D3hot D3cold
[    5.326967] pci 0004:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-02] add_size 200000 add_align 100000
[    5.338693] pci 0004:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    5.346860] pci 0004:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    5.358325] pci 0004:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 03] add_size 100000 add_align 100000
[    5.368835] pci 0004:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    5.380301] pci 0004:00:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    5.390815] pci 0004:00:01.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    5.397593] pci 0004:00:01.0: BAR 9: assigned [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.406020] pci 0004:00:03.0: BAR 8: assigned [mem 0x21800000-0x219fffff]
[    5.412797] pci 0004:00:03.0: BAR 9: assigned [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.421224] pci 0004:00:05.0: BAR 8: assigned [mem 0x21a00000-0x21bfffff]
[    5.428001] pci 0004:00:05.0: BAR 9: assigned [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.436427] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.442683] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.449286] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.455542] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.462145] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.468401] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.475006] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.481262] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.487865] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.494121] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.500725] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.506981] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.513585] pci 0004:01:00.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    5.520362] pci 0004:01:00.0: BAR 7: no space for [io  size 0x1000]
[    5.526617] pci 0004:01:00.0: BAR 7: failed to assign [io  size 0x1000]
[    5.533221] pci 0004:02:00.0: BAR 0: assigned [mem 0x20000000-0x20ffffff]
[    5.540001] pci 0004:02:00.0: BAR 1: assigned [mem 0x21000000-0x2101ffff]
[    5.546781] pci 0004:02:00.0: BAR 2: no space for [io  size 0x0080]
[    5.553037] pci 0004:02:00.0: BAR 2: failed to assign [io  size 0x0080]
[    5.559640] pci 0004:01:00.0: PCI bridge to [bus 02]
[    5.564597] pci 0004:01:00.0:   bridge window [mem 0x20000000-0x217fffff]
[    5.571381] pci 0004:00:01.0: PCI bridge to [bus 01-02]
[    5.576596] pci 0004:00:01.0:   bridge window [mem 0x20000000-0x217fffff]
[    5.583373] pci 0004:00:01.0:   bridge window [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.591802] pci 0004:03:00.0: BAR 0: assigned [mem 0x21800000-0x21801fff 64bit]
[    5.599108] pci 0004:00:03.0: PCI bridge to [bus 03]
[    5.604063] pci 0004:00:03.0:   bridge window [mem 0x21800000-0x219fffff]
[    5.610841] pci 0004:00:03.0:   bridge window [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.619269] pci 0004:04:00.0: BAR 0: assigned [mem 0x21a00000-0x21a7ffff]
[    5.626051] pci 0004:04:00.0: BAR 3: assigned [mem 0x21a80000-0x21a83fff]
[    5.632832] pci 0004:04:00.0: BAR 2: no space for [io  size 0x0020]
[    5.639088] pci 0004:04:00.0: BAR 2: failed to assign [io  size 0x0020]
[    5.645691] pci 0004:00:05.0: PCI bridge to [bus 04]
[    5.650668] pci 0004:00:05.0:   bridge window [mem 0x21a00000-0x21bfffff]
[    5.657446] pci 0004:00:05.0:   bridge window [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.665874] pci_bus 0004:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.674908] pci_bus 0004:00: resource 4 [mem 0x20000000-0x2fffffff window]
[    5.681772] pci_bus 0004:00: resource 5 [mem 0x280000000000-0x2bffdfffffff window]
[    5.689330] pci_bus 0004:01: resource 1 [mem 0x20000000-0x217fffff]
[    5.695586] pci_bus 0004:01: resource 2 [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.703492] pci_bus 0004:02: resource 1 [mem 0x20000000-0x217fffff]
[    5.709748] pci_bus 0004:03: resource 1 [mem 0x21800000-0x219fffff]
[    5.716004] pci_bus 0004:03: resource 2 [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.723909] pci_bus 0004:04: resource 1 [mem 0x21a00000-0x21bfffff]
[    5.730165] pci_bus 0004:04: resource 2 [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.738119] ACPI: PCI Root Bridge [PCI7] (domain 0005 [bus 00-ff])
[    5.744298] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    5.753398] acpi PNP0A08:07: PCIe port services disabled; not requesting _OSC control
[    5.761219] acpi PNP0A08:07: MCFG quirk: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    5.774017] acpi PNP0A08:07: ECAM area [mem 0x2ffff0000000-0x2fffffffffff] reserved by PNP0C02:00
[    5.782888] acpi PNP0A08:07: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff]
[    5.791042] PCI host bridge to bus 0005:00
[    5.795130] pci_bus 0005:00: root bus resource [mem 0x30000000-0x3fffffff window]
[    5.802601] pci_bus 0005:00: root bus resource [mem 0x2c0000000000-0x2fffdfffffff window]
[    5.810768] pci_bus 0005:00: root bus resource [bus 00-ff]
[    5.816274] pci 0005:00:00.0: [1def:e110] type 00 class 0x060000
[    5.822340] pci 0005:00:01.0: [1def:e111] type 01 class 0x060400
[    5.828383] pci 0005:00:01.0: supports D1 D2
[    5.832643] pci 0005:00:01.0: PME# supported from D0 D1 D3hot
[    5.838427] pci 0005:00:03.0: [1def:e113] type 01 class 0x060400
[    5.844462] pci 0005:00:03.0: supports D1 D2
[    5.848722] pci 0005:00:03.0: PME# supported from D0 D1 D3hot
[    5.854506] pci 0005:00:05.0: [1def:e115] type 01 class 0x060400
[    5.860549] pci 0005:00:05.0: supports D1 D2
[    5.864808] pci 0005:00:05.0: PME# supported from D0 D1 D3hot
[    5.870592] pci 0005:00:07.0: [1def:e117] type 01 class 0x060400
[    5.876621] pci 0005:00:07.0: supports D1 D2
[    5.880880] pci 0005:00:07.0: PME# supported from D0 D1 D3hot
[    5.887764] pci 0005:02:00.0: [1912:0014] type 00 class 0x0c0330
[    5.893779] pci 0005:02:00.0: reg 0x10: [mem 0x30100000-0x30101fff 64bit]
[    5.900660] pci 0005:02:00.0: PME# supported from D0 D3hot D3cold
[    5.907924] pci 0005:04:00.0: [126f:2263] type 00 class 0x010802
[    5.913938] pci 0005:04:00.0: reg 0x10: [mem 0x30000000-0x30003fff 64bit]
[    5.920896] pci 0005:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    5.929064] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    5.940530] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    5.951040] pci 0005:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    5.959206] pci 0005:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[    5.970671] pci 0005:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 02] add_size 100000 add_align 100000
[    5.981181] pci 0005:00:05.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    5.989347] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    6.000812] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[    6.011322] pci 0005:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    6.019488] pci 0005:00:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    6.030953] pci 0005:00:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    6.041468] pci 0005:00:01.0: BAR 8: assigned [mem 0x30000000-0x301fffff]
[    6.048246] pci 0005:00:01.0: BAR 9: assigned [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.056672] pci 0005:00:03.0: BAR 8: assigned [mem 0x30200000-0x303fffff]
[    6.063450] pci 0005:00:03.0: BAR 9: assigned [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.071877] pci 0005:00:05.0: BAR 8: assigned [mem 0x30400000-0x305fffff]
[    6.078655] pci 0005:00:05.0: BAR 9: assigned [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.087081] pci 0005:00:07.0: BAR 8: assigned [mem 0x30600000-0x307fffff]
[    6.093859] pci 0005:00:07.0: BAR 9: assigned [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.102285] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    6.108541] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    6.115145] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    6.121400] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    6.128004] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    6.134259] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    6.140862] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    6.147118] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    6.153724] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    6.159980] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    6.166582] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    6.172838] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    6.179442] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    6.185698] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    6.192301] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    6.198558] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    6.205161] pci 0005:00:01.0: PCI bridge to [bus 01]
[    6.210117] pci 0005:00:01.0:   bridge window [mem 0x30000000-0x301fffff]
[    6.216895] pci 0005:00:01.0:   bridge window [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.225324] pci 0005:02:00.0: BAR 0: assigned [mem 0x30200000-0x30201fff 64bit]
[    6.232630] pci 0005:00:03.0: PCI bridge to [bus 02]
[    6.237585] pci 0005:00:03.0:   bridge window [mem 0x30200000-0x303fffff]
[    6.244362] pci 0005:00:03.0:   bridge window [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.252789] pci 0005:00:05.0: PCI bridge to [bus 03]
[    6.257744] pci 0005:00:05.0:   bridge window [mem 0x30400000-0x305fffff]
[    6.264522] pci 0005:00:05.0:   bridge window [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.272951] pci 0005:04:00.0: BAR 0: assigned [mem 0x30600000-0x30603fff 64bit]
[    6.280264] pci 0005:00:07.0: PCI bridge to [bus 04]
[    6.285219] pci 0005:00:07.0:   bridge window [mem 0x30600000-0x307fffff]
[    6.291997] pci 0005:00:07.0:   bridge window [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.300424] pci_bus 0005:00: resource 4 [mem 0x30000000-0x3fffffff window]
[    6.307288] pci_bus 0005:00: resource 5 [mem 0x2c0000000000-0x2fffdfffffff window]
[    6.314847] pci_bus 0005:01: resource 1 [mem 0x30000000-0x301fffff]
[    6.321102] pci_bus 0005:01: resource 2 [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.329008] pci_bus 0005:02: resource 1 [mem 0x30200000-0x303fffff]
[    6.335265] pci_bus 0005:02: resource 2 [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.343170] pci_bus 0005:03: resource 1 [mem 0x30400000-0x305fffff]
[    6.349426] pci_bus 0005:03: resource 2 [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.357331] pci_bus 0005:04: resource 1 [mem 0x30600000-0x307fffff]
[    6.363587] pci_bus 0005:04: resource 2 [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.371704] iommu: Default domain type: Translated 
[    6.376610] pci 000d:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    6.384958] pci 0004:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    6.393300] pci 000d:01:00.0: vgaarb: bridge control possible
[    6.399035] pci 0004:02:00.0: vgaarb: bridge control possible
[    6.404772] pci 0004:02:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[    6.413632] vgaarb: loaded
[    6.416415] SCSI subsystem initialized
[    6.420159] ACPI: bus type USB registered
[    6.424173] usbcore: registered new interface driver usbfs
[    6.429661] usbcore: registered new interface driver hub
[    6.434977] usbcore: registered new device driver usb
[    6.440030] pps_core: LinuxPPS API ver. 1 registered
[    6.444984] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    6.454106] PTP clock support registered
[    6.458136] Registered efivars operations
[    6.462845] clocksource: Switched to clocksource arch_sys_counter
[    6.644279] pnp: PnP ACPI init
[    6.648695] system 00:00: [mem 0x3bfff0000000-0x3bffffffffff window] has been reserved
[    6.656606] system 00:00: [mem 0x3ffff0000000-0x3fffffffffff window] could not be reserved
[    6.664860] system 00:00: [mem 0x23fff0000000-0x23ffffffffff window] has been reserved
[    6.672766] system 00:00: [mem 0x27fff0000000-0x27ffffffffff window] has been reserved
[    6.680672] system 00:00: [mem 0x2bfff0000000-0x2bffffffffff window] could not be reserved
[    6.688926] system 00:00: [mem 0x2ffff0000000-0x2fffffffffff window] could not be reserved
[    6.697179] system 00:00: [mem 0x7bfff0000000-0x7bffffffffff window] has been reserved
[    6.705086] system 00:00: [mem 0x7ffff0000000-0x7fffffffffff window] has been reserved
[    6.712992] system 00:00: [mem 0x63fff0000000-0x63ffffffffff window] has been reserved
[    6.720898] system 00:00: [mem 0x67fff0000000-0x67ffffffffff window] has been reserved
[    6.728805] system 00:00: [mem 0x6bfff0000000-0x6bffffffffff window] has been reserved
[    6.736711] system 00:00: [mem 0x6ffff0000000-0x6fffffffffff window] has been reserved
[    6.744617] system 00:00: [mem 0x33fff0000000-0x33ffffffffff window] could not be reserved
[    6.752870] system 00:00: [mem 0x37fff0000000-0x37ffffffffff window] could not be reserved
[    6.761132] pnp: PnP ACPI: found 1 devices
[    6.766948] NET: Registered protocol family 2
[    6.771482] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    6.780363] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    6.789376] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    6.797254] TCP: Hash tables configured (established 262144 bind 65536)
[    6.803925] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    6.811132] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    6.818898] NET: Registered protocol family 1
[    6.823420] RPC: Registered named UNIX socket transport module.
[    6.829331] RPC: Registered udp transport module.
[    6.834025] RPC: Registered tcp transport module.
[    6.838719] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    6.845195] pci 000d:01:00.1: D0 power state depends on 000d:01:00.0
[    6.851595] pci 000d:01:00.2: D0 power state depends on 000d:01:00.0
[    6.857973] pci 000d:01:00.2: enabling device (0000 -> 0002)
[    6.863673] pci 000d:01:00.3: D0 power state depends on 000d:01:00.0
[    6.870076] pci 0004:03:00.0: enabling device (0000 -> 0002)
[    6.875764] pci 0005:02:00.0: enabling device (0000 -> 0002)
[    6.881435] PCI: CLS 128 bytes, default 64
[    6.886777] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 7 counters available
[    6.896179] workingset: timestamp_bits=42 max_order=23 bucket_order=0
[    6.904363] NFS: Registering the id_resolver key type
[    6.909415] Key type id_resolver registered
[    6.913588] Key type id_legacy registered
[    6.917857] Key type cifs.idmap registered
[    6.936523] xor: measuring software checksum speed
[    6.942311]    8regs           :  9794 MB/sec
[    6.947497]    32regs          : 11761 MB/sec
[    6.952559]    arm64_neon      : 13924 MB/sec
[    6.956905] xor: using function: arm64_neon (13924 MB/sec)
[    6.962389] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    6.969776] io scheduler mq-deadline registered
[    6.974296] io scheduler kyber registered
[    6.978994] gpio-dwapb APMC0D07:02: no IRQ for port0
[    6.984754] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    6.993137] ACPI: Power Button [PWRB]
[    6.999933] GHES: APEI firmware first mode is enabled by APEI bit.
[    7.006149] EINJ: Error INJection is initialized.
[    7.010881] ACPI GTDT: found 1 SBSA generic Watchdog(s).
[    7.016747] arm-smmu-v3 arm-smmu-v3.0.auto: option mask 0x0
[    7.022326] arm-smmu-v3 arm-smmu-v3.0.auto: IDR0.COHACC overridden by FW configuration (false)
[    7.030929] arm-smmu-v3 arm-smmu-v3.0.auto: ias 48-bit, oas 48-bit (features 0x00001ecf)
[    7.039009]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.045525]  ******* In dma_alloc_direct() function *********
[    7.051560] arm-smmu-v3 arm-smmu-v3.0.auto: allocated 262144 entries for cmdq
[    7.058690]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.065206]  ******* In dma_alloc_direct() function *********
[    7.071236] arm-smmu-v3 arm-smmu-v3.0.auto: allocated 131072 entries for evtq
[    7.078360]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.084875]  ******* In dma_alloc_direct() function *********
[    7.091442] arm-smmu-v3 arm-smmu-v3.1.auto: option mask 0x0
[    7.097017] arm-smmu-v3 arm-smmu-v3.1.auto: IDR0.COHACC overridden by FW configuration (false)
[    7.105619] arm-smmu-v3 arm-smmu-v3.1.auto: ias 48-bit, oas 48-bit (features 0x00001ecf)
[    7.113698]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.120214]  ******* In dma_alloc_direct() function *********
[    7.126246] arm-smmu-v3 arm-smmu-v3.1.auto: allocated 262144 entries for cmdq
[    7.133377]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.139893]  ******* In dma_alloc_direct() function *********
[    7.145924] arm-smmu-v3 arm-smmu-v3.1.auto: allocated 131072 entries for evtq
[    7.153048]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.159563]  ******* In dma_alloc_direct() function *********
[    7.165993] arm-smmu-v3 arm-smmu-v3.2.auto: option mask 0x0
[    7.171568] arm-smmu-v3 arm-smmu-v3.2.auto: IDR0.COHACC overridden by FW configuration (false)
[    7.180169] arm-smmu-v3 arm-smmu-v3.2.auto: ias 48-bit, oas 48-bit (features 0x00001ecf)
[    7.188247]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.194763]  ******* In dma_alloc_direct() function *********
[    7.200800] arm-smmu-v3 arm-smmu-v3.2.auto: allocated 262144 entries for cmdq
[    7.207931]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.214447]  ******* In dma_alloc_direct() function *********
[    7.220479] arm-smmu-v3 arm-smmu-v3.2.auto: allocated 131072 entries for evtq
[    7.227602]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.234117]  ******* In dma_alloc_direct() function *********
[    7.240545] arm-smmu-v3 arm-smmu-v3.3.auto: option mask 0x0
[    7.246118] arm-smmu-v3 arm-smmu-v3.3.auto: IDR0.COHACC overridden by FW configuration (false)
[    7.254719] arm-smmu-v3 arm-smmu-v3.3.auto: ias 48-bit, oas 48-bit (features 0x00001ecf)
[    7.262799]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.269314]  ******* In dma_alloc_direct() function *********
[    7.275348] arm-smmu-v3 arm-smmu-v3.3.auto: allocated 262144 entries for cmdq
[    7.282478]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.288993]  ******* In dma_alloc_direct() function *********
[    7.295027] arm-smmu-v3 arm-smmu-v3.3.auto: allocated 131072 entries for evtq
[    7.302150]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.308666]  ******* In dma_alloc_direct() function *********
[    7.315090] arm-smmu-v3 arm-smmu-v3.4.auto: option mask 0x0
[    7.320663] arm-smmu-v3 arm-smmu-v3.4.auto: IDR0.COHACC overridden by FW configuration (false)
[    7.329263] arm-smmu-v3 arm-smmu-v3.4.auto: ias 48-bit, oas 48-bit (features 0x00001ecf)
[    7.337341]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.343857]  ******* In dma_alloc_direct() function *********
[    7.349890] arm-smmu-v3 arm-smmu-v3.4.auto: allocated 262144 entries for cmdq
[    7.357020]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.363536]  ******* In dma_alloc_direct() function *********
[    7.369568] arm-smmu-v3 arm-smmu-v3.4.auto: allocated 131072 entries for evtq
[    7.376693]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.383208]  ******* In dma_alloc_direct() function *********
[    7.389723]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.396245]  ******* In dma_alloc_direct() function *********
[    7.402022] ast 0004:02:00.0: Adding to iommu group 0
[    7.407072]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.413588]  ******* In dma_alloc_direct() function *********
[    7.419637] ast 0004:02:00.0: [drm] platform has no IO space, trying MMIO
[    7.426429] ast 0004:02:00.0: [drm] Using P2A bridge for configuration
[    7.432948] ast 0004:02:00.0: [drm] AST 2500 detected
[    7.437993] ast 0004:02:00.0: [drm] Analog VGA only
[    7.442865] ast 0004:02:00.0: [drm] dram MCLK=800 Mhz type=8 bus_width=16
[    7.449730] [TTM] Zone  kernel: Available graphics memory: 16251146 KiB
[    7.456335] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    7.462851] [TTM] Initializing pool allocator
[    7.467201] [TTM] Initializing DMA pool allocator
[    7.472186] [drm] Initialized ast 0.1.0 20120228 for 0004:02:00.0 on minor 0
[    7.496558] Console: switching to colour frame buffer device 128x48
[    7.505006] ast 0004:02:00.0: [drm] fb0: astdrmfb frame buffer device
[    7.525592] brd: module loaded
[    7.533160] loop: module loaded
[    7.536609]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.543134]  ******* In dma_alloc_direct() function *********
[    7.548911] nvme 0005:04:00.0: Adding to iommu group 1
[    7.554051]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.560566]  ******* In dma_alloc_direct() function *********
[    7.566649] nvme nvme0: pci function 0005:04:00.0
[    7.571564] igb: Intel(R) Gigabit Ethernet Network Driver
[    7.573511]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.576954] igb: Copyright (c) 2007-2014 Intel Corporation.
[    7.582949]  ******* In iommu_dma_alloc() function *********
[    7.588524]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.594163]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.600673]  ******* In dma_alloc_direct() function *********
[    7.600714] igb 0004:04:00.0: Adding to iommu group 2
[    7.606669]  ******* In iommu_dma_alloc() function *********
[    7.610208] nvme nvme0: missing or invalid SUBNQN field.
[    7.612411]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.618469]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.623094]  ******* In dma_alloc_direct() function *********
[    7.628393]  ******* In iommu_dma_alloc() function *********
[    7.628399]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.658825]  ******* In iommu_dma_alloc() function *********
[    7.665141]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.671782]  ******* In iommu_dma_alloc() function *********
[    7.678099]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.686869]  ******* In iommu_dma_alloc() function *********
[    7.690162] pps pps0: new PPS source ptp0
[    7.693187]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.696553] igb 0004:04:00.0: added PHC on eth0
[    7.702519]  ******* In iommu_dma_alloc() function *********
[    7.703186]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.707040] igb 0004:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    7.707043] igb 0004:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:3b:50:52
[    7.712689]  ******* In iommu_dma_alloc() function *********
[    7.713358]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.718743] igb 0004:04:00.0: eth0: PBA No: 000300-000
[    7.725550]  ******* In iommu_dma_alloc() function *********
[    7.732674] igb 0004:04:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[    7.738983]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.744378] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    7.749445]  ******* In iommu_dma_alloc() function *********
[    7.755093] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    7.763317]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.768659] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[    7.774901]  ******* In iommu_dma_alloc() function *********
[    7.775565]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.780549] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[    7.780655]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.786460]  ******* In iommu_dma_alloc() function *********
[    7.787130]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.792456]  ******* In dma_alloc_direct() function *********
[    7.792503] i40e 0000:01:00.0: Adding to iommu group 3
[    7.798712]  ******* In iommu_dma_alloc() function *********
[    7.799378]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.804367]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.810357]  ******* In iommu_dma_alloc() function *********
[    7.816179]  ******* In dma_alloc_direct() function *********
[    7.823361]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.828580] i40e 0000:01:00.0: enabling device (0000 -> 0002)
[    7.834337]  ******* In iommu_dma_alloc() function *********
[    7.835012]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.850854]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.856842]  ******* In iommu_dma_alloc() function *********
[    7.857508]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.863359]  ******* In iommu_dma_alloc() function *********
[    7.863380]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.869010]  ******* In iommu_dma_alloc() function *********
[    7.869674]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.874745]  ******* In iommu_dma_alloc() function *********
[    7.874750]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.880741]  ******* In iommu_dma_alloc() function *********
[    7.881415]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.886477]  ******* In iommu_dma_alloc() function *********
[    7.886481]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.892127]  ******* In iommu_dma_alloc() function *********
[    7.892796] nvme nvme0: allocated 64 MiB host memory buffer.
[    7.898123]  ******* In iommu_dma_alloc() function *********
[    7.898128]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.906478]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.909770]  ******* In iommu_dma_alloc() function *********
[    7.909777]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.915772]  ******* In iommu_dma_alloc() function *********
[    7.915786]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.921422]  ******* In iommu_dma_alloc() function *********
[    7.927417]  ******* In iommu_dma_alloc() function *********
[    7.927438]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.933071]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.939062]  ******* In iommu_dma_alloc() function *********
[    7.944710]  ******* In iommu_dma_alloc() function *********
[    7.950710]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.956355]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.962346]  ******* In iommu_dma_alloc() function *********
[    7.962370]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.967997]  ******* In iommu_dma_alloc() function *********
[    7.973992]  ******* In iommu_dma_alloc() function *********
[    7.979642]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.985294]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.990938]  ******* In iommu_dma_alloc() function *********
[    7.990942]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    7.996945]  ******* In iommu_dma_alloc() function *********
[    8.002931]  ******* In iommu_dma_alloc() function *********
[    8.002936]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.008599]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.014578]  ******* In iommu_dma_alloc() function *********
[    8.020224]  ******* In iommu_dma_alloc() function *********
[    8.020231]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.026227]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.026229]  ******* In iommu_dma_alloc() function *********
[    8.031877]  ******* In iommu_dma_alloc() function *********
[    8.037528]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.043538]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.049514]  ******* In iommu_dma_alloc() function *********
[    8.055160]  ******* In iommu_dma_alloc() function *********
[    8.055168]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.060812]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.066804]  ******* In iommu_dma_alloc() function *********
[    8.066826]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.072801]  ******* In iommu_dma_alloc() function *********
[    8.078448]  ******* In iommu_dma_alloc() function *********
[    8.078455]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.084451]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.090090]  ******* In iommu_dma_alloc() function *********
[    8.090110]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.095740]  ******* In iommu_dma_alloc() function *********
[    8.101734]  ******* In iommu_dma_alloc() function *********
[    8.101742]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.107734]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.113378]  ******* In iommu_dma_alloc() function *********
[    8.113398]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.119374]  ******* In iommu_dma_alloc() function *********
[    8.119378]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.125023]  ******* In iommu_dma_alloc() function *********
[    8.125030]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.130672]  ******* In iommu_dma_alloc() function *********
[    8.136666]  ******* In iommu_dma_alloc() function *********
[    8.148107] nvme nvme0: 8/0/0 default/read/poll queues
[    8.148312]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.218218]  nvme0n1: p1 p2 p3
[    8.224181]  ******* In iommu_dma_alloc() function *********
[    8.224186]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.354428]  ******* In iommu_dma_alloc() function *********
[    8.360083]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.366079]  ******* In iommu_dma_alloc() function *********
[    8.371730]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.377726]  ******* In iommu_dma_alloc() function *********
[    8.383378]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.389373]  ******* In iommu_dma_alloc() function *********
[    8.395025]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.401020]  ******* In iommu_dma_alloc() function *********
[    8.406671]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.412666]  ******* In iommu_dma_alloc() function *********
[    8.418318]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.424314]  ******* In iommu_dma_alloc() function *********
[    8.429965]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.435960]  ******* In iommu_dma_alloc() function *********
[    8.441612]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.447608]  ******* In iommu_dma_alloc() function *********
[    8.453258]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.459254]  ******* In iommu_dma_alloc() function *********
[    8.464905]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.470902]  ******* In iommu_dma_alloc() function *********
[    8.476557]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.482553]  ******* In iommu_dma_alloc() function *********
[    8.488204]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.494200]  ******* In iommu_dma_alloc() function *********
[    8.499851]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.505847]  ******* In iommu_dma_alloc() function *********
[    8.511498]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.517492]  ******* In iommu_dma_alloc() function *********
[    8.523143]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.529137]  ******* In iommu_dma_alloc() function *********
[    8.534788]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.540783]  ******* In iommu_dma_alloc() function *********
[    8.546433]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.552428]  ******* In iommu_dma_alloc() function *********
[    8.558078]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.564072]  ******* In iommu_dma_alloc() function *********
[    8.569723]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.575718]  ******* In iommu_dma_alloc() function *********
[    8.581369]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.587365]  ******* In iommu_dma_alloc() function *********
[    8.593014]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.599009]  ******* In iommu_dma_alloc() function *********
[    8.604660]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.610655]  ******* In iommu_dma_alloc() function *********
[    8.616306]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.622301]  ******* In iommu_dma_alloc() function *********
[    8.627951]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.633945]  ******* In iommu_dma_alloc() function *********
[    8.639596]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.645590]  ******* In iommu_dma_alloc() function *********
[    8.651242]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.657237]  ******* In iommu_dma_alloc() function *********
[    8.662887]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.668882]  ******* In iommu_dma_alloc() function *********
[    8.674532]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.680527]  ******* In iommu_dma_alloc() function *********
[    8.686177]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.692172]  ******* In iommu_dma_alloc() function *********
[    8.697823]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.703818]  ******* In iommu_dma_alloc() function *********
[    8.709469]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.715464]  ******* In iommu_dma_alloc() function *********
[    8.721114]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.727109]  ******* In iommu_dma_alloc() function *********
[    8.732761]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.738756]  ******* In iommu_dma_alloc() function *********
[    8.744406]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.750400]  ******* In iommu_dma_alloc() function *********
[    8.756050]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.762045]  ******* In iommu_dma_alloc() function *********
[    8.767697]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.773692]  ******* In iommu_dma_alloc() function *********
[    8.779342]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.785337]  ******* In iommu_dma_alloc() function *********
[    8.790987]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.796982]  ******* In iommu_dma_alloc() function *********
[    8.802632]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.808627]  ******* In iommu_dma_alloc() function *********
[    8.814277]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.820272]  ******* In iommu_dma_alloc() function *********
[    8.825922]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.831917]  ******* In iommu_dma_alloc() function *********
[    8.837567]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.843562]  ******* In iommu_dma_alloc() function *********
[    8.849213]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.855207]  ******* In iommu_dma_alloc() function *********
[    8.860866]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.866861]  ******* In iommu_dma_alloc() function *********
[    8.872511]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.878505]  ******* In iommu_dma_alloc() function *********
[    8.884158]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.890154]  ******* In iommu_dma_alloc() function *********
[    8.895804]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.901799]  ******* In iommu_dma_alloc() function *********
[    8.907449]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.913445]  ******* In iommu_dma_alloc() function *********
[    8.919095]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.925090]  ******* In iommu_dma_alloc() function *********
[    8.930740]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.936734]  ******* In iommu_dma_alloc() function *********
[    8.942384]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.948379]  ******* In iommu_dma_alloc() function *********
[    8.954029]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.960024]  ******* In iommu_dma_alloc() function *********
[    8.965678]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.971673]  ******* In iommu_dma_alloc() function *********
[    8.977324]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.983319]  ******* In iommu_dma_alloc() function *********
[    8.988969]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    8.994964]  ******* In iommu_dma_alloc() function *********
[    9.000614]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.006609]  ******* In iommu_dma_alloc() function *********
[    9.012259]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.018254]  ******* In iommu_dma_alloc() function *********
[    9.023905]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.029900]  ******* In iommu_dma_alloc() function *********
[    9.035551]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.041546]  ******* In iommu_dma_alloc() function *********
[    9.047196]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.053191]  ******* In iommu_dma_alloc() function *********
[    9.058842]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.064837]  ******* In iommu_dma_alloc() function *********
[    9.070487]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.076481]  ******* In iommu_dma_alloc() function *********
[    9.082132]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.088127]  ******* In iommu_dma_alloc() function *********
[    9.093777]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.099772]  ******* In iommu_dma_alloc() function *********
[    9.105423]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.111418]  ******* In iommu_dma_alloc() function *********
[    9.117068]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.123063]  ******* In iommu_dma_alloc() function *********
[    9.128713]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.134707]  ******* In iommu_dma_alloc() function *********
[    9.140359]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.146354]  ******* In iommu_dma_alloc() function *********
[    9.152004]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.157999]  ******* In iommu_dma_alloc() function *********
[    9.163649]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.169644]  ******* In iommu_dma_alloc() function *********
[    9.175294]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.181289]  ******* In iommu_dma_alloc() function *********
[    9.186940]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.192935]  ******* In iommu_dma_alloc() function *********
[    9.198585]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.204580]  ******* In iommu_dma_alloc() function *********
[    9.210230]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.216226]  ******* In iommu_dma_alloc() function *********
[    9.221876]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.227870]  ******* In iommu_dma_alloc() function *********
[    9.233520]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.239515]  ******* In iommu_dma_alloc() function *********
[    9.245165]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.251160]  ******* In iommu_dma_alloc() function *********
[    9.256809]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.262804]  ******* In iommu_dma_alloc() function *********
[    9.268454]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.274449]  ******* In iommu_dma_alloc() function *********
[    9.280099]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.286093]  ******* In iommu_dma_alloc() function *********
[    9.291744]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.297738]  ******* In iommu_dma_alloc() function *********
[    9.303388]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.309383]  ******* In iommu_dma_alloc() function *********
[    9.315033]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.321029]  ******* In iommu_dma_alloc() function *********
[    9.326680]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.332674]  ******* In iommu_dma_alloc() function *********
[    9.338325]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.344319]  ******* In iommu_dma_alloc() function *********
[    9.349969]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.355964]  ******* In iommu_dma_alloc() function *********
[    9.361614]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.367608]  ******* In iommu_dma_alloc() function *********
[    9.373259]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.379253]  ******* In iommu_dma_alloc() function *********
[    9.384903]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.390899]  ******* In iommu_dma_alloc() function *********
[    9.396551]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.402546]  ******* In iommu_dma_alloc() function *********
[    9.408196]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.414191]  ******* In iommu_dma_alloc() function *********
[    9.419842]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.425836]  ******* In iommu_dma_alloc() function *********
[    9.431486]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.437481]  ******* In iommu_dma_alloc() function *********
[    9.443131]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.449125]  ******* In iommu_dma_alloc() function *********
[    9.454775]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.460770]  ******* In iommu_dma_alloc() function *********
[    9.466421]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.472415]  ******* In iommu_dma_alloc() function *********
[    9.478066]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.484061]  ******* In iommu_dma_alloc() function *********
[    9.489712]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.495707]  ******* In iommu_dma_alloc() function *********
[    9.501357]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.507352]  ******* In iommu_dma_alloc() function *********
[    9.513003]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.518998]  ******* In iommu_dma_alloc() function *********
[    9.524649]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.530644]  ******* In iommu_dma_alloc() function *********
[    9.536293]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.542288]  ******* In iommu_dma_alloc() function *********
[    9.547939]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.553934]  ******* In iommu_dma_alloc() function *********
[    9.559584]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.565579]  ******* In iommu_dma_alloc() function *********
[    9.571229]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.577224]  ******* In iommu_dma_alloc() function *********
[    9.582875]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.588869]  ******* In iommu_dma_alloc() function *********
[    9.594520]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.600514]  ******* In iommu_dma_alloc() function *********
[    9.606165]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.612160]  ******* In iommu_dma_alloc() function *********
[    9.617810]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.623805]  ******* In iommu_dma_alloc() function *********
[    9.629455]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.635449]  ******* In iommu_dma_alloc() function *********
[    9.641104]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.647098]  ******* In iommu_dma_alloc() function *********
[    9.652749]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.658744]  ******* In iommu_dma_alloc() function *********
[    9.664394]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.670388]  ******* In iommu_dma_alloc() function *********
[    9.676039]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.682033]  ******* In iommu_dma_alloc() function *********
[    9.687683]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.693678]  ******* In iommu_dma_alloc() function *********
[    9.699329]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.705324]  ******* In iommu_dma_alloc() function *********
[    9.710973]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.716968]  ******* In iommu_dma_alloc() function *********
[    9.722618]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.728613]  ******* In iommu_dma_alloc() function *********
[    9.734263]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.740258]  ******* In iommu_dma_alloc() function *********
[    9.745908]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.751903]  ******* In iommu_dma_alloc() function *********
[    9.757553]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.763547]  ******* In iommu_dma_alloc() function *********
[    9.769198]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.775193]  ******* In iommu_dma_alloc() function *********
[    9.780843]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.786838]  ******* In iommu_dma_alloc() function *********
[    9.792489]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.798483]  ******* In iommu_dma_alloc() function *********
[    9.804134]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.810128]  ******* In iommu_dma_alloc() function *********
[    9.815779]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.821773]  ******* In iommu_dma_alloc() function *********
[    9.827424]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.833419]  ******* In iommu_dma_alloc() function *********
[    9.839069]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.845064]  ******* In iommu_dma_alloc() function *********
[    9.850715]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.856710]  ******* In iommu_dma_alloc() function *********
[    9.862359]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.868354]  ******* In iommu_dma_alloc() function *********
[    9.874004]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.880006]  ******* In iommu_dma_alloc() function *********
[    9.885658]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.891653]  ******* In iommu_dma_alloc() function *********
[    9.897303]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.903299]  ******* In iommu_dma_alloc() function *********
[    9.908950]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.914945]  ******* In iommu_dma_alloc() function *********
[    9.920595]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.926590]  ******* In iommu_dma_alloc() function *********
[    9.932241]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.938235]  ******* In iommu_dma_alloc() function *********
[    9.943886]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.949881]  ******* In iommu_dma_alloc() function *********
[    9.955531]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.961526]  ******* In iommu_dma_alloc() function *********
[    9.967176]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.973171]  ******* In iommu_dma_alloc() function *********
[    9.978822]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.984817]  ******* In iommu_dma_alloc() function *********
[    9.990467]  ******* dma_alloc_attrs() -> ops->alloc() *********
[    9.996462]  ******* In iommu_dma_alloc() function *********
[   10.002112]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.008107]  ******* In iommu_dma_alloc() function *********
[   10.013757]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.019753]  ******* In iommu_dma_alloc() function *********
[   10.025403]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.031397]  ******* In iommu_dma_alloc() function *********
[   10.037048]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.043042]  ******* In iommu_dma_alloc() function *********
[   10.048692]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.054687]  ******* In iommu_dma_alloc() function *********
[   10.060337]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.066333]  ******* In iommu_dma_alloc() function *********
[   10.071987]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.077982]  ******* In iommu_dma_alloc() function *********
[   10.083632]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.089627]  ******* In iommu_dma_alloc() function *********
[   10.095277]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.101271]  ******* In iommu_dma_alloc() function *********
[   10.106921]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.112916]  ******* In iommu_dma_alloc() function *********
[   10.118566]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.124561]  ******* In iommu_dma_alloc() function *********
[   10.130211]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.136206]  ******* In iommu_dma_alloc() function *********
[   10.141857]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.147852]  ******* In iommu_dma_alloc() function *********
[   10.153502]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.159496]  ******* In iommu_dma_alloc() function *********
[   10.165147]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.171142]  ******* In iommu_dma_alloc() function *********
[   10.176793]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.182788]  ******* In iommu_dma_alloc() function *********
[   10.188438]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.194433]  ******* In iommu_dma_alloc() function *********
[   10.200083]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.206077]  ******* In iommu_dma_alloc() function *********
[   10.211727]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.217722]  ******* In iommu_dma_alloc() function *********
[   10.223373]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.229367]  ******* In iommu_dma_alloc() function *********
[   10.235017]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.241012]  ******* In iommu_dma_alloc() function *********
[   10.246662]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.252657]  ******* In iommu_dma_alloc() function *********
[   10.258308]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.264302]  ******* In iommu_dma_alloc() function *********
[   10.269952]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.275947]  ******* In iommu_dma_alloc() function *********
[   10.281597]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.287591]  ******* In iommu_dma_alloc() function *********
[   10.293242]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.299236]  ******* In iommu_dma_alloc() function *********
[   10.304890]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.310885]  ******* In iommu_dma_alloc() function *********
[   10.316535]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.322529]  ******* In iommu_dma_alloc() function *********
[   10.328179]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.334174]  ******* In iommu_dma_alloc() function *********
[   10.339825]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.345819]  ******* In iommu_dma_alloc() function *********
[   10.351470]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.357464]  ******* In iommu_dma_alloc() function *********
[   10.363114]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.369109]  ******* In iommu_dma_alloc() function *********
[   10.374759]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.380754]  ******* In iommu_dma_alloc() function *********
[   10.386405]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.392399]  ******* In iommu_dma_alloc() function *********
[   10.398050]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.404044]  ******* In iommu_dma_alloc() function *********
[   10.409695]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.415691]  ******* In iommu_dma_alloc() function *********
[   10.421343]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.427338]  ******* In iommu_dma_alloc() function *********
[   10.432988]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.438983]  ******* In iommu_dma_alloc() function *********
[   10.444634]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.450628]  ******* In iommu_dma_alloc() function *********
[   10.456278]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.462273]  ******* In iommu_dma_alloc() function *********
[   10.467923]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.473918]  ******* In iommu_dma_alloc() function *********
[   10.479569]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.485563]  ******* In iommu_dma_alloc() function *********
[   10.491214]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.497209]  ******* In iommu_dma_alloc() function *********
[   10.502859]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.508854]  ******* In iommu_dma_alloc() function *********
[   10.514505]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.520500]  ******* In iommu_dma_alloc() function *********
[   10.526150]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.532145]  ******* In iommu_dma_alloc() function *********
[   10.537795]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.543790]  ******* In iommu_dma_alloc() function *********
[   10.549440]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.555435]  ******* In iommu_dma_alloc() function *********
[   10.561086]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.567081]  ******* In iommu_dma_alloc() function *********
[   10.572732]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.578727]  ******* In iommu_dma_alloc() function *********
[   10.584377]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.590371]  ******* In iommu_dma_alloc() function *********
[   10.596022]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.602017]  ******* In iommu_dma_alloc() function *********
[   10.607668]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.613663]  ******* In iommu_dma_alloc() function *********
[   10.619313]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.625308]  ******* In iommu_dma_alloc() function *********
[   10.630958]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.636953]  ******* In iommu_dma_alloc() function *********
[   10.642603]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.648598]  ******* In iommu_dma_alloc() function *********
[   10.654248]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.660242]  ******* In iommu_dma_alloc() function *********
[   10.665892]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.671887]  ******* In iommu_dma_alloc() function *********
[   10.677537]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.683531]  ******* In iommu_dma_alloc() function *********
[   10.689182]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.695177]  ******* In iommu_dma_alloc() function *********
[   10.700826]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.706821]  ******* In iommu_dma_alloc() function *********
[   10.712472]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.718467]  ******* In iommu_dma_alloc() function *********
[   10.724117]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.730112]  ******* In iommu_dma_alloc() function *********
[   10.735762]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.741758]  ******* In iommu_dma_alloc() function *********
[   10.747409]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.753404]  ******* In iommu_dma_alloc() function *********
[   10.759054]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.765049]  ******* In iommu_dma_alloc() function *********
[   10.770699]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.776694]  ******* In iommu_dma_alloc() function *********
[   10.782344]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.788339]  ******* In iommu_dma_alloc() function *********
[   10.793989]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.799983]  ******* In iommu_dma_alloc() function *********
[   10.805634]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.811628]  ******* In iommu_dma_alloc() function *********
[   10.817279]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.823274]  ******* In iommu_dma_alloc() function *********
[   10.828924]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.834919]  ******* In iommu_dma_alloc() function *********
[   10.840569]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.846564]  ******* In iommu_dma_alloc() function *********
[   10.852214]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.858209]  ******* In iommu_dma_alloc() function *********
[   10.863859]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.869854]  ******* In iommu_dma_alloc() function *********
[   10.875504]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.881499]  ******* In iommu_dma_alloc() function *********
[   10.887149]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.893144]  ******* In iommu_dma_alloc() function *********
[   10.898795]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.904796]  ******* In iommu_dma_alloc() function *********
[   10.910447]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.916442]  ******* In iommu_dma_alloc() function *********
[   10.922092]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.928088]  ******* In iommu_dma_alloc() function *********
[   10.933740]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.939734]  ******* In iommu_dma_alloc() function *********
[   10.945385]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.951380]  ******* In iommu_dma_alloc() function *********
[   10.957031]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.963026]  ******* In iommu_dma_alloc() function *********
[   10.968676]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.974671]  ******* In iommu_dma_alloc() function *********
[   10.980326]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.986321]  ******* In iommu_dma_alloc() function *********
[   10.991971]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   10.997966]  ******* In iommu_dma_alloc() function *********
[   11.003617]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.009612]  ******* In iommu_dma_alloc() function *********
[   11.015262]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.021257]  ******* In iommu_dma_alloc() function *********
[   11.026907]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.032902]  ******* In iommu_dma_alloc() function *********
[   11.038552]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.044547]  ******* In iommu_dma_alloc() function *********
[   11.050197]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.056191]  ******* In iommu_dma_alloc() function *********
[   11.061841]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.067836]  ******* In iommu_dma_alloc() function *********
[   11.073486]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.079480]  ******* In iommu_dma_alloc() function *********
[   11.085131]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.091126]  ******* In iommu_dma_alloc() function *********
[   11.096777]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.102772]  ******* In iommu_dma_alloc() function *********
[   11.108422]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.114417]  ******* In iommu_dma_alloc() function *********
[   11.120067]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.126062]  ******* In iommu_dma_alloc() function *********
[   11.131715]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.137710]  ******* In iommu_dma_alloc() function *********
[   11.143363]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.149358]  ******* In iommu_dma_alloc() function *********
[   11.155009]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.161004]  ******* In iommu_dma_alloc() function *********
[   11.166654]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.172649]  ******* In iommu_dma_alloc() function *********
[   11.178299]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.184294]  ******* In iommu_dma_alloc() function *********
[   11.189945]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.195939]  ******* In iommu_dma_alloc() function *********
[   11.201590]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.207584]  ******* In iommu_dma_alloc() function *********
[   11.213235]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.219230]  ******* In iommu_dma_alloc() function *********
[   11.224880]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.230875]  ******* In iommu_dma_alloc() function *********
[   11.236525]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.242520]  ******* In iommu_dma_alloc() function *********
[   11.248170]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.254165]  ******* In iommu_dma_alloc() function *********
[   11.259816]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.265811]  ******* In iommu_dma_alloc() function *********
[   11.271461]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.277455]  ******* In iommu_dma_alloc() function *********
[   11.283106]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.289100]  ******* In iommu_dma_alloc() function *********
[   11.294751]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.300745]  ******* In iommu_dma_alloc() function *********
[   11.306396]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.312390]  ******* In iommu_dma_alloc() function *********
[   11.318041]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.324035]  ******* In iommu_dma_alloc() function *********
[   11.329686]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.335680]  ******* In iommu_dma_alloc() function *********
[   11.341330]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.347325]  ******* In iommu_dma_alloc() function *********
[   11.352975]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.358971]  ******* In iommu_dma_alloc() function *********
[   11.364622]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.370616]  ******* In iommu_dma_alloc() function *********
[   11.376267]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.382262]  ******* In iommu_dma_alloc() function *********
[   11.387912]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.393907]  ******* In iommu_dma_alloc() function *********
[   11.399557]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.405552]  ******* In iommu_dma_alloc() function *********
[   11.411202]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.417197]  ******* In iommu_dma_alloc() function *********
[   11.422847]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.428842]  ******* In iommu_dma_alloc() function *********
[   11.434492]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.440489]  ******* In iommu_dma_alloc() function *********
[   11.446140]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.452135]  ******* In iommu_dma_alloc() function *********
[   11.457785]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.463780]  ******* In iommu_dma_alloc() function *********
[   11.469431]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.475425]  ******* In iommu_dma_alloc() function *********
[   11.481076]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.487071]  ******* In iommu_dma_alloc() function *********
[   11.492721]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.498715]  ******* In iommu_dma_alloc() function *********
[   11.504366]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.510360]  ******* In iommu_dma_alloc() function *********
[   11.516011]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.522005]  ******* In iommu_dma_alloc() function *********
[   11.527656]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.533651]  ******* In iommu_dma_alloc() function *********
[   11.539301]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.545295]  ******* In iommu_dma_alloc() function *********
[   11.550947]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.556941]  ******* In iommu_dma_alloc() function *********
[   11.562592]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.568588]  ******* In iommu_dma_alloc() function *********
[   11.574238]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.580233]  ******* In iommu_dma_alloc() function *********
[   11.585883]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.591878]  ******* In iommu_dma_alloc() function *********
[   11.597528]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.603523]  ******* In iommu_dma_alloc() function *********
[   11.609174]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.615169]  ******* In iommu_dma_alloc() function *********
[   11.620819]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.626813]  ******* In iommu_dma_alloc() function *********
[   11.632464]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.638459]  ******* In iommu_dma_alloc() function *********
[   11.644112]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.650107]  ******* In iommu_dma_alloc() function *********
[   11.655758]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.661752]  ******* In iommu_dma_alloc() function *********
[   11.667402]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.673397]  ******* In iommu_dma_alloc() function *********
[   11.679047]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.685042]  ******* In iommu_dma_alloc() function *********
[   11.690692]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.696687]  ******* In iommu_dma_alloc() function *********
[   11.702337]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.708332]  ******* In iommu_dma_alloc() function *********
[   11.713982]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.719977]  ******* In iommu_dma_alloc() function *********
[   11.725628]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.731622]  ******* In iommu_dma_alloc() function *********
[   11.737275]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.743270]  ******* In iommu_dma_alloc() function *********
[   11.748920]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.754915]  ******* In iommu_dma_alloc() function *********
[   11.760565]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.766559]  ******* In iommu_dma_alloc() function *********
[   11.772210]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.778205]  ******* In iommu_dma_alloc() function *********
[   11.783855]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.789850]  ******* In iommu_dma_alloc() function *********
[   11.795500]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.801494]  ******* In iommu_dma_alloc() function *********
[   11.807145]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.813140]  ******* In iommu_dma_alloc() function *********
[   11.818790]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.824785]  ******* In iommu_dma_alloc() function *********
[   11.830435]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.836429]  ******* In iommu_dma_alloc() function *********
[   11.842079]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.848074]  ******* In iommu_dma_alloc() function *********
[   11.853724]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.859718]  ******* In iommu_dma_alloc() function *********
[   11.865368]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.871363]  ******* In iommu_dma_alloc() function *********
[   11.877013]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.883008]  ******* In iommu_dma_alloc() function *********
[   11.888658]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.894652]  ******* In iommu_dma_alloc() function *********
[   11.900302]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.906296]  ******* In iommu_dma_alloc() function *********
[   11.911946]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.917941]  ******* In iommu_dma_alloc() function *********
[   11.923598]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.929593]  ******* In iommu_dma_alloc() function *********
[   11.935244]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.941239]  ******* In iommu_dma_alloc() function *********
[   11.946889]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.952885]  ******* In iommu_dma_alloc() function *********
[   11.958537]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.964532]  ******* In iommu_dma_alloc() function *********
[   11.970182]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.976178]  ******* In iommu_dma_alloc() function *********
[   11.981828]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.987823]  ******* In iommu_dma_alloc() function *********
[   11.993473]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   11.999467]  ******* In iommu_dma_alloc() function *********
[   12.005117]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.011112]  ******* In iommu_dma_alloc() function *********
[   12.016761]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.022756]  ******* In iommu_dma_alloc() function *********
[   12.028406]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.034400]  ******* In iommu_dma_alloc() function *********
[   12.040051]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.046046]  ******* In iommu_dma_alloc() function *********
[   12.051695]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.057690]  ******* In iommu_dma_alloc() function *********
[   12.063340]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.069334]  ******* In iommu_dma_alloc() function *********
[   12.074984]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.080979]  ******* In iommu_dma_alloc() function *********
[   12.086629]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.092624]  ******* In iommu_dma_alloc() function *********
[   12.098274]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.104269]  ******* In iommu_dma_alloc() function *********
[   12.109920]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.115914]  ******* In iommu_dma_alloc() function *********
[   12.121565]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.127559]  ******* In iommu_dma_alloc() function *********
[   12.133209]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.139204]  ******* In iommu_dma_alloc() function *********
[   12.144853]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.150848]  ******* In iommu_dma_alloc() function *********
[   12.156498]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.162493]  ******* In iommu_dma_alloc() function *********
[   12.168143]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.174139]  ******* In iommu_dma_alloc() function *********
[   12.179790]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.185785]  ******* In iommu_dma_alloc() function *********
[   12.191435]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.197430]  ******* In iommu_dma_alloc() function *********
[   12.203080]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.209074]  ******* In iommu_dma_alloc() function *********
[   12.214724]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.220719]  ******* In iommu_dma_alloc() function *********
[   12.226369]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.232364]  ******* In iommu_dma_alloc() function *********
[   12.238013]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.244008]  ******* In iommu_dma_alloc() function *********
[   12.249658]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.255652]  ******* In iommu_dma_alloc() function *********
[   12.261302]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.267297]  ******* In iommu_dma_alloc() function *********
[   12.272947]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.278942]  ******* In iommu_dma_alloc() function *********
[   12.284592]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.290587]  ******* In iommu_dma_alloc() function *********
[   12.296237]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.302232]  ******* In iommu_dma_alloc() function *********
[   12.307888]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.313882]  ******* In iommu_dma_alloc() function *********
[   12.319533]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.325527]  ******* In iommu_dma_alloc() function *********
[   12.331178]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.337172]  ******* In iommu_dma_alloc() function *********
[   12.342822]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.348817]  ******* In iommu_dma_alloc() function *********
[   12.354466]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.360461]  ******* In iommu_dma_alloc() function *********
[   12.366111]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.372106]  ******* In iommu_dma_alloc() function *********
[   12.377755]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.383751]  ******* In iommu_dma_alloc() function *********
[   12.389401]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.395396]  ******* In iommu_dma_alloc() function *********
[   12.401046]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.407041]  ******* In iommu_dma_alloc() function *********
[   12.412691]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.418686]  ******* In iommu_dma_alloc() function *********
[   12.424336]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.430330]  ******* In iommu_dma_alloc() function *********
[   12.435980]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.441975]  ******* In iommu_dma_alloc() function *********
[   12.447625]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.453620]  ******* In iommu_dma_alloc() function *********
[   12.459270]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.465266]  ******* In iommu_dma_alloc() function *********
[   12.470918]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.476913]  ******* In iommu_dma_alloc() function *********
[   12.482565]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.488560]  ******* In iommu_dma_alloc() function *********
[   12.494210]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.500205]  ******* In iommu_dma_alloc() function *********
[   12.505855]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.511850]  ******* In iommu_dma_alloc() function *********
[   12.517500]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.523495]  ******* In iommu_dma_alloc() function *********
[   12.529145]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.535140]  ******* In iommu_dma_alloc() function *********
[   12.540790]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.546785]  ******* In iommu_dma_alloc() function *********
[   12.552435]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.558430]  ******* In iommu_dma_alloc() function *********
[   12.564080]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.570075]  ******* In iommu_dma_alloc() function *********
[   12.575725]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.581719]  ******* In iommu_dma_alloc() function *********
[   12.587370]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.593365]  ******* In iommu_dma_alloc() function *********
[   12.599015]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.605010]  ******* In iommu_dma_alloc() function *********
[   12.610659]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.616654]  ******* In iommu_dma_alloc() function *********
[   12.622304]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.628310]  ******* In iommu_dma_alloc() function *********
[   12.633963]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.639958]  ******* In iommu_dma_alloc() function *********
[   12.645607]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.651602]  ******* In iommu_dma_alloc() function *********
[   12.657252]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.663247]  ******* In iommu_dma_alloc() function *********
[   12.668897]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.674892]  ******* In iommu_dma_alloc() function *********
[   12.680542]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.686538]  ******* In iommu_dma_alloc() function *********
[   12.692188]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.698182]  ******* In iommu_dma_alloc() function *********
[   12.703833]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.709827]  ******* In iommu_dma_alloc() function *********
[   12.715477]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.721472]  ******* In iommu_dma_alloc() function *********
[   12.727122]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.733117]  ******* In iommu_dma_alloc() function *********
[   12.738767]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.744762]  ******* In iommu_dma_alloc() function *********
[   12.750412]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.756407]  ******* In iommu_dma_alloc() function *********
[   12.762057]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.768052]  ******* In iommu_dma_alloc() function *********
[   12.773702]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.779697]  ******* In iommu_dma_alloc() function *********
[   12.785347]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.791343]  ******* In iommu_dma_alloc() function *********
[   12.796993]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.802987]  ******* In iommu_dma_alloc() function *********
[   12.808638]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.814632]  ******* In iommu_dma_alloc() function *********
[   12.820282]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.826277]  ******* In iommu_dma_alloc() function *********
[   12.831927]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.837922]  ******* In iommu_dma_alloc() function *********
[   12.843572]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.849567]  ******* In iommu_dma_alloc() function *********
[   12.855217]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.861212]  ******* In iommu_dma_alloc() function *********
[   12.866863]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.872857]  ******* In iommu_dma_alloc() function *********
[   12.878508]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.884505]  ******* In iommu_dma_alloc() function *********
[   12.890156]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.896151]  ******* In iommu_dma_alloc() function *********
[   12.901801]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.907795]  ******* In iommu_dma_alloc() function *********
[   12.913445]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.919440]  ******* In iommu_dma_alloc() function *********
[   12.925090]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.931084]  ******* In iommu_dma_alloc() function *********
[   12.936734]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.942729]  ******* In iommu_dma_alloc() function *********
[   12.948385]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.954380]  ******* In iommu_dma_alloc() function *********
[   12.960030]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.966025]  ******* In iommu_dma_alloc() function *********
[   12.971674]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.977670]  ******* In iommu_dma_alloc() function *********
[   12.983325]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.989320]  ******* In iommu_dma_alloc() function *********
[   12.994970]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.000965]  ******* In iommu_dma_alloc() function *********
[   13.006614]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.012609]  ******* In iommu_dma_alloc() function *********
[   13.018259]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.024253]  ******* In iommu_dma_alloc() function *********
[   13.029904]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.035898]  ******* In iommu_dma_alloc() function *********
[   13.041548]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.047543]  ******* In iommu_dma_alloc() function *********
[   13.053194]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.059188]  ******* In iommu_dma_alloc() function *********
[   13.064838]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.070833]  ******* In iommu_dma_alloc() function *********
[   13.076483]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.082477]  ******* In iommu_dma_alloc() function *********
[   13.088127]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.094122]  ******* In iommu_dma_alloc() function *********
[   13.099772]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.105767]  ******* In iommu_dma_alloc() function *********
[   13.111417]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.117411]  ******* In iommu_dma_alloc() function *********
[   13.123061]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.129055]  ******* In iommu_dma_alloc() function *********
[   13.134706]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.140700]  ******* In iommu_dma_alloc() function *********
[   13.146350]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.152345]  ******* In iommu_dma_alloc() function *********
[   13.157995]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.163991]  ******* In iommu_dma_alloc() function *********
[   13.169641]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.175635]  ******* In iommu_dma_alloc() function *********
[   13.181286]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.187280]  ******* In iommu_dma_alloc() function *********
[   13.192930]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.198926]  ******* In iommu_dma_alloc() function *********
[   13.204576]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.210570]  ******* In iommu_dma_alloc() function *********
[   13.216220]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.222215]  ******* In iommu_dma_alloc() function *********
[   13.227865]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.233860]  ******* In iommu_dma_alloc() function *********
[   13.239511]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.245505]  ******* In iommu_dma_alloc() function *********
[   13.251155]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.257150]  ******* In iommu_dma_alloc() function *********
[   13.262800]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.268794]  ******* In iommu_dma_alloc() function *********
[   13.274444]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.280439]  ******* In iommu_dma_alloc() function *********
[   13.286089]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.292084]  ******* In iommu_dma_alloc() function *********
[   13.297734]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.303728]  ******* In iommu_dma_alloc() function *********
[   13.309378]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.315372]  ******* In iommu_dma_alloc() function *********
[   13.321022]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.327017]  ******* In iommu_dma_alloc() function *********
[   13.332668]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.338663]  ******* In iommu_dma_alloc() function *********
[   13.344313]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.350308]  ******* In iommu_dma_alloc() function *********
[   13.355958]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.361952]  ******* In iommu_dma_alloc() function *********
[   13.367602]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.373597]  ******* In iommu_dma_alloc() function *********
[   13.379247]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.385241]  ******* In iommu_dma_alloc() function *********
[   13.390892]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.396888]  ******* In iommu_dma_alloc() function *********
[   13.402538]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.408534]  ******* In iommu_dma_alloc() function *********
[   13.414183]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.420178]  ******* In iommu_dma_alloc() function *********
[   13.425829]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.431824]  ******* In iommu_dma_alloc() function *********
[   13.437474]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.443469]  ******* In iommu_dma_alloc() function *********
[   13.449119]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.455114]  ******* In iommu_dma_alloc() function *********
[   13.460764]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.466759]  ******* In iommu_dma_alloc() function *********
[   13.472409]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.478403]  ******* In iommu_dma_alloc() function *********
[   13.484054]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.490050]  ******* In iommu_dma_alloc() function *********
[   13.495701]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.501696]  ******* In iommu_dma_alloc() function *********
[   13.507346]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.513341]  ******* In iommu_dma_alloc() function *********
[   13.518991]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.524986]  ******* In iommu_dma_alloc() function *********
[   13.530636]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.536631]  ******* In iommu_dma_alloc() function *********
[   13.542281]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.548275]  ******* In iommu_dma_alloc() function *********
[   13.553925]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.559920]  ******* In iommu_dma_alloc() function *********
[   13.565570]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.571565]  ******* In iommu_dma_alloc() function *********
[   13.577215]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.583209]  ******* In iommu_dma_alloc() function *********
[   13.588859]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.594854]  ******* In iommu_dma_alloc() function *********
[   13.600505]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.606500]  ******* In iommu_dma_alloc() function *********
[   13.612151]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.618146]  ******* In iommu_dma_alloc() function *********
[   13.623796]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.629790]  ******* In iommu_dma_alloc() function *********
[   13.635440]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.641435]  ******* In iommu_dma_alloc() function *********
[   13.647089]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.653083]  ******* In iommu_dma_alloc() function *********
[   13.658734]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.664728]  ******* In iommu_dma_alloc() function *********
[   13.670378]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.676374]  ******* In iommu_dma_alloc() function *********
[   13.682023]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.688018]  ******* In iommu_dma_alloc() function *********
[   13.693668]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.699662]  ******* In iommu_dma_alloc() function *********
[   13.705312]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.711307]  ******* In iommu_dma_alloc() function *********
[   13.716957]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.722952]  ******* In iommu_dma_alloc() function *********
[   13.728602]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.734597]  ******* In iommu_dma_alloc() function *********
[   13.740247]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.746241]  ******* In iommu_dma_alloc() function *********
[   13.751891]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.757886]  ******* In iommu_dma_alloc() function *********
[   13.763535]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.769530]  ******* In iommu_dma_alloc() function *********
[   13.775181]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.781175]  ******* In iommu_dma_alloc() function *********
[   13.786825]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.792820]  ******* In iommu_dma_alloc() function *********
[   13.798470]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.804465]  ******* In iommu_dma_alloc() function *********
[   13.810115]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.816110]  ******* In iommu_dma_alloc() function *********
[   13.821760]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.827754]  ******* In iommu_dma_alloc() function *********
[   13.833404]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.839399]  ******* In iommu_dma_alloc() function *********
[   13.845049]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.851043]  ******* In iommu_dma_alloc() function *********
[   13.856693]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.862688]  ******* In iommu_dma_alloc() function *********
[   13.868338]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.874332]  ******* In iommu_dma_alloc() function *********
[   13.879982]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.885977]  ******* In iommu_dma_alloc() function *********
[   13.891627]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.897622]  ******* In iommu_dma_alloc() function *********
[   13.903272]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.909267]  ******* In iommu_dma_alloc() function *********
[   13.914917]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.920912]  ******* In iommu_dma_alloc() function *********
[   13.926561]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.932556]  ******* In iommu_dma_alloc() function *********
[   13.938206]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.944200]  ******* In iommu_dma_alloc() function *********
[   13.949850]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.955845]  ******* In iommu_dma_alloc() function *********
[   13.961495]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.967496]  ******* In iommu_dma_alloc() function *********
[   13.973147]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.979141]  ******* In iommu_dma_alloc() function *********
[   13.984792]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   13.990786]  ******* In iommu_dma_alloc() function *********
[   13.996436]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.002432]  ******* In iommu_dma_alloc() function *********
[   14.008084]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.014079]  ******* In iommu_dma_alloc() function *********
[   14.019729]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.025724]  ******* In iommu_dma_alloc() function *********
[   14.031375]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.037369]  ******* In iommu_dma_alloc() function *********
[   14.043019]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.049013]  ******* In iommu_dma_alloc() function *********
[   14.054663]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.060658]  ******* In iommu_dma_alloc() function *********
[   14.066308]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.072302]  ******* In iommu_dma_alloc() function *********
[   14.077952]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.083947]  ******* In iommu_dma_alloc() function *********
[   14.089598]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.095594]  ******* In iommu_dma_alloc() function *********
[   14.101243]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.107238]  ******* In iommu_dma_alloc() function *********
[   14.112888]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.118883]  ******* In iommu_dma_alloc() function *********
[   14.125489] i40e 0000:01:00.0: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0002]
[   14.413370]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.419365]  ******* In iommu_dma_alloc() function *********
[   14.425141] i40e 0000:01:00.0: MAC address: 3c:fd:fe:6b:e9:c0
[   14.431032] i40e 0000:01:00.0: FW LLDP is enabled
[   14.441722]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.447722]  ******* In iommu_dma_alloc() function *********
[   14.453383]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.459378]  ******* In iommu_dma_alloc() function *********
[   14.469988] i40e 0000:01:00.0: PCI-Express: Speed 8.0GT/s Width x8
[   14.477248] i40e 0000:01:00.0: Features: PF-id[0] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   14.487400] i40e 0000:01:00.1: Adding to iommu group 4
[   14.492545]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.499062]  ******* In dma_alloc_direct() function *********
[   14.505026] i40e 0000:01:00.1: enabling device (0000 -> 0002)
[   14.523270]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.529267]  ******* In iommu_dma_alloc() function *********
[   14.534932]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.540927]  ******* In iommu_dma_alloc() function *********
[   14.546577]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.552572]  ******* In iommu_dma_alloc() function *********
[   14.558222]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.564217]  ******* In iommu_dma_alloc() function *********
[   14.569869]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.575864]  ******* In iommu_dma_alloc() function *********
[   14.581515]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.587510]  ******* In iommu_dma_alloc() function *********
[   14.593160]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.599155]  ******* In iommu_dma_alloc() function *********
[   14.604806]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.610801]  ******* In iommu_dma_alloc() function *********
[   14.616451]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.622445]  ******* In iommu_dma_alloc() function *********
[   14.628096]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.634090]  ******* In iommu_dma_alloc() function *********
[   14.639743]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.645738]  ******* In iommu_dma_alloc() function *********
[   14.651388]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.657383]  ******* In iommu_dma_alloc() function *********
[   14.663033]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.669027]  ******* In iommu_dma_alloc() function *********
[   14.674678]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.680673]  ******* In iommu_dma_alloc() function *********
[   14.686325]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.692319]  ******* In iommu_dma_alloc() function *********
[   14.697969]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.703964]  ******* In iommu_dma_alloc() function *********
[   14.709614]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.715609]  ******* In iommu_dma_alloc() function *********
[   14.721259]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.727254]  ******* In iommu_dma_alloc() function *********
[   14.732904]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.738899]  ******* In iommu_dma_alloc() function *********
[   14.744549]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.750544]  ******* In iommu_dma_alloc() function *********
[   14.756196]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.762191]  ******* In iommu_dma_alloc() function *********
[   14.767841]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.773836]  ******* In iommu_dma_alloc() function *********
[   14.779486]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.785481]  ******* In iommu_dma_alloc() function *********
[   14.791131]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.797127]  ******* In iommu_dma_alloc() function *********
[   14.802777]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.808771]  ******* In iommu_dma_alloc() function *********
[   14.814421]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.820415]  ******* In iommu_dma_alloc() function *********
[   14.826065]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.832060]  ******* In iommu_dma_alloc() function *********
[   14.837710]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.843706]  ******* In iommu_dma_alloc() function *********
[   14.849356]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.855351]  ******* In iommu_dma_alloc() function *********
[   14.861000]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.866995]  ******* In iommu_dma_alloc() function *********
[   14.872645]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.878639]  ******* In iommu_dma_alloc() function *********
[   14.884289]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.890284]  ******* In iommu_dma_alloc() function *********
[   14.895934]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.901929]  ******* In iommu_dma_alloc() function *********
[   14.907579]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.913574]  ******* In iommu_dma_alloc() function *********
[   14.919223]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.925218]  ******* In iommu_dma_alloc() function *********
[   14.930868]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.936863]  ******* In iommu_dma_alloc() function *********
[   14.942515]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.948510]  ******* In iommu_dma_alloc() function *********
[   14.954160]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.960154]  ******* In iommu_dma_alloc() function *********
[   14.965804]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.971799]  ******* In iommu_dma_alloc() function *********
[   14.977448]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.983443]  ******* In iommu_dma_alloc() function *********
[   14.989093]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   14.995088]  ******* In iommu_dma_alloc() function *********
[   15.000738]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.006733]  ******* In iommu_dma_alloc() function *********
[   15.012383]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.018378]  ******* In iommu_dma_alloc() function *********
[   15.024029]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.030024]  ******* In iommu_dma_alloc() function *********
[   15.035674]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.041669]  ******* In iommu_dma_alloc() function *********
[   15.047319]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.053314]  ******* In iommu_dma_alloc() function *********
[   15.058964]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.064958]  ******* In iommu_dma_alloc() function *********
[   15.070609]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.076604]  ******* In iommu_dma_alloc() function *********
[   15.082254]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.088249]  ******* In iommu_dma_alloc() function *********
[   15.093899]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.099893]  ******* In iommu_dma_alloc() function *********
[   15.105545]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.111539]  ******* In iommu_dma_alloc() function *********
[   15.117192]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.123187]  ******* In iommu_dma_alloc() function *********
[   15.128838]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.134833]  ******* In iommu_dma_alloc() function *********
[   15.140485]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.146480]  ******* In iommu_dma_alloc() function *********
[   15.152130]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.158124]  ******* In iommu_dma_alloc() function *********
[   15.163775]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.169770]  ******* In iommu_dma_alloc() function *********
[   15.175419]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.181414]  ******* In iommu_dma_alloc() function *********
[   15.187064]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.193059]  ******* In iommu_dma_alloc() function *********
[   15.198709]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.204703]  ******* In iommu_dma_alloc() function *********
[   15.210353]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.216348]  ******* In iommu_dma_alloc() function *********
[   15.221997]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.227993]  ******* In iommu_dma_alloc() function *********
[   15.233642]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.239637]  ******* In iommu_dma_alloc() function *********
[   15.245287]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.251282]  ******* In iommu_dma_alloc() function *********
[   15.256933]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.262928]  ******* In iommu_dma_alloc() function *********
[   15.268577]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.274572]  ******* In iommu_dma_alloc() function *********
[   15.280222]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.286217]  ******* In iommu_dma_alloc() function *********
[   15.291867]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.297861]  ******* In iommu_dma_alloc() function *********
[   15.303512]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.309507]  ******* In iommu_dma_alloc() function *********
[   15.315158]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.321152]  ******* In iommu_dma_alloc() function *********
[   15.326803]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.332797]  ******* In iommu_dma_alloc() function *********
[   15.338448]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.344443]  ******* In iommu_dma_alloc() function *********
[   15.350094]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.356088]  ******* In iommu_dma_alloc() function *********
[   15.361738]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.367732]  ******* In iommu_dma_alloc() function *********
[   15.373382]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.379377]  ******* In iommu_dma_alloc() function *********
[   15.385027]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.391021]  ******* In iommu_dma_alloc() function *********
[   15.396671]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.402666]  ******* In iommu_dma_alloc() function *********
[   15.408315]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.414310]  ******* In iommu_dma_alloc() function *********
[   15.419960]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.425955]  ******* In iommu_dma_alloc() function *********
[   15.431605]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.437600]  ******* In iommu_dma_alloc() function *********
[   15.443250]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.449245]  ******* In iommu_dma_alloc() function *********
[   15.454895]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.460890]  ******* In iommu_dma_alloc() function *********
[   15.466539]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.472534]  ******* In iommu_dma_alloc() function *********
[   15.478184]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.484178]  ******* In iommu_dma_alloc() function *********
[   15.489828]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.495823]  ******* In iommu_dma_alloc() function *********
[   15.501473]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.507468]  ******* In iommu_dma_alloc() function *********
[   15.513118]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.519113]  ******* In iommu_dma_alloc() function *********
[   15.524763]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.530757]  ******* In iommu_dma_alloc() function *********
[   15.536415]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.542411]  ******* In iommu_dma_alloc() function *********
[   15.548061]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.554055]  ******* In iommu_dma_alloc() function *********
[   15.559705]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.565700]  ******* In iommu_dma_alloc() function *********
[   15.571350]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.577345]  ******* In iommu_dma_alloc() function *********
[   15.582995]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.588990]  ******* In iommu_dma_alloc() function *********
[   15.594639]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.600634]  ******* In iommu_dma_alloc() function *********
[   15.606284]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.612279]  ******* In iommu_dma_alloc() function *********
[   15.617929]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.623924]  ******* In iommu_dma_alloc() function *********
[   15.629573]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.635568]  ******* In iommu_dma_alloc() function *********
[   15.641218]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.647213]  ******* In iommu_dma_alloc() function *********
[   15.652863]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.658858]  ******* In iommu_dma_alloc() function *********
[   15.664509]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.670504]  ******* In iommu_dma_alloc() function *********
[   15.676153]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.682148]  ******* In iommu_dma_alloc() function *********
[   15.687799]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.693794]  ******* In iommu_dma_alloc() function *********
[   15.699443]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.705438]  ******* In iommu_dma_alloc() function *********
[   15.711088]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.717083]  ******* In iommu_dma_alloc() function *********
[   15.722732]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.728727]  ******* In iommu_dma_alloc() function *********
[   15.734378]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.740372]  ******* In iommu_dma_alloc() function *********
[   15.746022]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.752017]  ******* In iommu_dma_alloc() function *********
[   15.757666]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.763661]  ******* In iommu_dma_alloc() function *********
[   15.769311]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.775306]  ******* In iommu_dma_alloc() function *********
[   15.780957]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.786951]  ******* In iommu_dma_alloc() function *********
[   15.792605]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.798599]  ******* In iommu_dma_alloc() function *********
[   15.804250]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.810244]  ******* In iommu_dma_alloc() function *********
[   15.815895]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.821890]  ******* In iommu_dma_alloc() function *********
[   15.827540]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.833535]  ******* In iommu_dma_alloc() function *********
[   15.839185]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.845180]  ******* In iommu_dma_alloc() function *********
[   15.850830]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.856824]  ******* In iommu_dma_alloc() function *********
[   15.862474]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.868470]  ******* In iommu_dma_alloc() function *********
[   15.874121]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.880116]  ******* In iommu_dma_alloc() function *********
[   15.885766]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.891761]  ******* In iommu_dma_alloc() function *********
[   15.897411]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.903405]  ******* In iommu_dma_alloc() function *********
[   15.909056]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.915050]  ******* In iommu_dma_alloc() function *********
[   15.920700]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.926695]  ******* In iommu_dma_alloc() function *********
[   15.932345]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.938339]  ******* In iommu_dma_alloc() function *********
[   15.943989]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.949984]  ******* In iommu_dma_alloc() function *********
[   15.955633]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.961628]  ******* In iommu_dma_alloc() function *********
[   15.967278]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.973273]  ******* In iommu_dma_alloc() function *********
[   15.978923]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.984921]  ******* In iommu_dma_alloc() function *********
[   15.990571]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   15.996566]  ******* In iommu_dma_alloc() function *********
[   16.002216]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.008211]  ******* In iommu_dma_alloc() function *********
[   16.013860]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.019855]  ******* In iommu_dma_alloc() function *********
[   16.025505]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.031500]  ******* In iommu_dma_alloc() function *********
[   16.037150]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.043144]  ******* In iommu_dma_alloc() function *********
[   16.048795]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.054792]  ******* In iommu_dma_alloc() function *********
[   16.060442]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.066437]  ******* In iommu_dma_alloc() function *********
[   16.072088]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.078083]  ******* In iommu_dma_alloc() function *********
[   16.083733]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.089727]  ******* In iommu_dma_alloc() function *********
[   16.095377]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.101372]  ******* In iommu_dma_alloc() function *********
[   16.107022]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.113017]  ******* In iommu_dma_alloc() function *********
[   16.118667]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.124662]  ******* In iommu_dma_alloc() function *********
[   16.130312]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.136306]  ******* In iommu_dma_alloc() function *********
[   16.141956]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.147951]  ******* In iommu_dma_alloc() function *********
[   16.153601]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.159596]  ******* In iommu_dma_alloc() function *********
[   16.165246]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.171241]  ******* In iommu_dma_alloc() function *********
[   16.176891]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.182885]  ******* In iommu_dma_alloc() function *********
[   16.188535]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.194530]  ******* In iommu_dma_alloc() function *********
[   16.200180]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.206175]  ******* In iommu_dma_alloc() function *********
[   16.211826]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.217821]  ******* In iommu_dma_alloc() function *********
[   16.223471]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.229466]  ******* In iommu_dma_alloc() function *********
[   16.235116]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.241111]  ******* In iommu_dma_alloc() function *********
[   16.246761]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.252756]  ******* In iommu_dma_alloc() function *********
[   16.258405]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.264400]  ******* In iommu_dma_alloc() function *********
[   16.270050]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.276045]  ******* In iommu_dma_alloc() function *********
[   16.281695]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.287689]  ******* In iommu_dma_alloc() function *********
[   16.293339]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.299334]  ******* In iommu_dma_alloc() function *********
[   16.304983]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.310978]  ******* In iommu_dma_alloc() function *********
[   16.316628]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.322623]  ******* In iommu_dma_alloc() function *********
[   16.328272]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.334267]  ******* In iommu_dma_alloc() function *********
[   16.339917]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.345912]  ******* In iommu_dma_alloc() function *********
[   16.351562]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.357556]  ******* In iommu_dma_alloc() function *********
[   16.363207]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.369202]  ******* In iommu_dma_alloc() function *********
[   16.374851]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.380846]  ******* In iommu_dma_alloc() function *********
[   16.386496]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.392491]  ******* In iommu_dma_alloc() function *********
[   16.398141]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.404135]  ******* In iommu_dma_alloc() function *********
[   16.409786]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.415780]  ******* In iommu_dma_alloc() function *********
[   16.421430]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.427425]  ******* In iommu_dma_alloc() function *********
[   16.433076]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.439070]  ******* In iommu_dma_alloc() function *********
[   16.444721]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.450716]  ******* In iommu_dma_alloc() function *********
[   16.456369]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.462364]  ******* In iommu_dma_alloc() function *********
[   16.468014]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.474009]  ******* In iommu_dma_alloc() function *********
[   16.479659]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.485654]  ******* In iommu_dma_alloc() function *********
[   16.491303]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.497299]  ******* In iommu_dma_alloc() function *********
[   16.502949]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.508943]  ******* In iommu_dma_alloc() function *********
[   16.514593]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.520588]  ******* In iommu_dma_alloc() function *********
[   16.526239]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.532233]  ******* In iommu_dma_alloc() function *********
[   16.537883]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.543878]  ******* In iommu_dma_alloc() function *********
[   16.549528]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.555529]  ******* In iommu_dma_alloc() function *********
[   16.561182]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.567177]  ******* In iommu_dma_alloc() function *********
[   16.572827]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.578822]  ******* In iommu_dma_alloc() function *********
[   16.584472]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.590467]  ******* In iommu_dma_alloc() function *********
[   16.596117]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.602111]  ******* In iommu_dma_alloc() function *********
[   16.607761]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.613756]  ******* In iommu_dma_alloc() function *********
[   16.619407]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.625402]  ******* In iommu_dma_alloc() function *********
[   16.631053]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.637047]  ******* In iommu_dma_alloc() function *********
[   16.642697]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.648692]  ******* In iommu_dma_alloc() function *********
[   16.654342]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.660336]  ******* In iommu_dma_alloc() function *********
[   16.665986]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.671981]  ******* In iommu_dma_alloc() function *********
[   16.677630]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.683626]  ******* In iommu_dma_alloc() function *********
[   16.689276]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.695271]  ******* In iommu_dma_alloc() function *********
[   16.700921]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.706916]  ******* In iommu_dma_alloc() function *********
[   16.712565]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.718560]  ******* In iommu_dma_alloc() function *********
[   16.724210]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.730205]  ******* In iommu_dma_alloc() function *********
[   16.735855]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.741850]  ******* In iommu_dma_alloc() function *********
[   16.747499]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.753494]  ******* In iommu_dma_alloc() function *********
[   16.759144]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.765139]  ******* In iommu_dma_alloc() function *********
[   16.770789]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.776784]  ******* In iommu_dma_alloc() function *********
[   16.782434]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.788428]  ******* In iommu_dma_alloc() function *********
[   16.794078]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.800073]  ******* In iommu_dma_alloc() function *********
[   16.805724]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.811719]  ******* In iommu_dma_alloc() function *********
[   16.817369]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.823363]  ******* In iommu_dma_alloc() function *********
[   16.829013]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.835008]  ******* In iommu_dma_alloc() function *********
[   16.840657]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.846652]  ******* In iommu_dma_alloc() function *********
[   16.852302]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.858297]  ******* In iommu_dma_alloc() function *********
[   16.863946]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.869941]  ******* In iommu_dma_alloc() function *********
[   16.875591]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.881586]  ******* In iommu_dma_alloc() function *********
[   16.887236]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.893231]  ******* In iommu_dma_alloc() function *********
[   16.898881]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.904876]  ******* In iommu_dma_alloc() function *********
[   16.910525]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.916520]  ******* In iommu_dma_alloc() function *********
[   16.922170]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.928164]  ******* In iommu_dma_alloc() function *********
[   16.933815]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.939810]  ******* In iommu_dma_alloc() function *********
[   16.945460]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.951454]  ******* In iommu_dma_alloc() function *********
[   16.957104]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.963099]  ******* In iommu_dma_alloc() function *********
[   16.968749]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.974744]  ******* In iommu_dma_alloc() function *********
[   16.980394]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.986388]  ******* In iommu_dma_alloc() function *********
[   16.992039]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   16.998034]  ******* In iommu_dma_alloc() function *********
[   17.003684]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.009680]  ******* In iommu_dma_alloc() function *********
[   17.015330]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.021324]  ******* In iommu_dma_alloc() function *********
[   17.026974]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.032969]  ******* In iommu_dma_alloc() function *********
[   17.038618]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.044613]  ******* In iommu_dma_alloc() function *********
[   17.050263]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.056258]  ******* In iommu_dma_alloc() function *********
[   17.061907]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.067902]  ******* In iommu_dma_alloc() function *********
[   17.073554]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.079549]  ******* In iommu_dma_alloc() function *********
[   17.085199]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.091195]  ******* In iommu_dma_alloc() function *********
[   17.096845]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.102839]  ******* In iommu_dma_alloc() function *********
[   17.108490]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.114485]  ******* In iommu_dma_alloc() function *********
[   17.120135]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.126130]  ******* In iommu_dma_alloc() function *********
[   17.131783]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.137778]  ******* In iommu_dma_alloc() function *********
[   17.143428]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.149423]  ******* In iommu_dma_alloc() function *********
[   17.155073]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.161068]  ******* In iommu_dma_alloc() function *********
[   17.166718]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.172713]  ******* In iommu_dma_alloc() function *********
[   17.178364]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.184358]  ******* In iommu_dma_alloc() function *********
[   17.190009]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.196003]  ******* In iommu_dma_alloc() function *********
[   17.201653]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.207648]  ******* In iommu_dma_alloc() function *********
[   17.213299]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.219294]  ******* In iommu_dma_alloc() function *********
[   17.224944]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.230938]  ******* In iommu_dma_alloc() function *********
[   17.236589]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.242584]  ******* In iommu_dma_alloc() function *********
[   17.248234]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.254229]  ******* In iommu_dma_alloc() function *********
[   17.259879]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.265874]  ******* In iommu_dma_alloc() function *********
[   17.271524]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.277518]  ******* In iommu_dma_alloc() function *********
[   17.283168]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.289163]  ******* In iommu_dma_alloc() function *********
[   17.294812]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.300808]  ******* In iommu_dma_alloc() function *********
[   17.306458]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.312453]  ******* In iommu_dma_alloc() function *********
[   17.318103]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.324098]  ******* In iommu_dma_alloc() function *********
[   17.329747]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.335742]  ******* In iommu_dma_alloc() function *********
[   17.341392]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.347387]  ******* In iommu_dma_alloc() function *********
[   17.353037]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.359032]  ******* In iommu_dma_alloc() function *********
[   17.364683]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.370677]  ******* In iommu_dma_alloc() function *********
[   17.376327]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.382322]  ******* In iommu_dma_alloc() function *********
[   17.387972]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.393967]  ******* In iommu_dma_alloc() function *********
[   17.399616]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.405611]  ******* In iommu_dma_alloc() function *********
[   17.411261]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.417255]  ******* In iommu_dma_alloc() function *********
[   17.422905]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.428900]  ******* In iommu_dma_alloc() function *********
[   17.434550]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.440544]  ******* In iommu_dma_alloc() function *********
[   17.446194]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.452189]  ******* In iommu_dma_alloc() function *********
[   17.457838]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.463834]  ******* In iommu_dma_alloc() function *********
[   17.469483]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.475478]  ******* In iommu_dma_alloc() function *********
[   17.481128]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.487123]  ******* In iommu_dma_alloc() function *********
[   17.492772]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.498767]  ******* In iommu_dma_alloc() function *********
[   17.504418]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.510413]  ******* In iommu_dma_alloc() function *********
[   17.516065]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.522060]  ******* In iommu_dma_alloc() function *********
[   17.527713]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.533707]  ******* In iommu_dma_alloc() function *********
[   17.539357]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.545352]  ******* In iommu_dma_alloc() function *********
[   17.551002]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.556997]  ******* In iommu_dma_alloc() function *********
[   17.562647]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.568641]  ******* In iommu_dma_alloc() function *********
[   17.574292]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.580292]  ******* In iommu_dma_alloc() function *********
[   17.585944]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.591940]  ******* In iommu_dma_alloc() function *********
[   17.597590]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.603585]  ******* In iommu_dma_alloc() function *********
[   17.609235]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.615229]  ******* In iommu_dma_alloc() function *********
[   17.620879]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.626874]  ******* In iommu_dma_alloc() function *********
[   17.632524]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.638518]  ******* In iommu_dma_alloc() function *********
[   17.644169]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.650164]  ******* In iommu_dma_alloc() function *********
[   17.655813]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.661808]  ******* In iommu_dma_alloc() function *********
[   17.667458]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.673453]  ******* In iommu_dma_alloc() function *********
[   17.679103]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.685098]  ******* In iommu_dma_alloc() function *********
[   17.690747]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.696743]  ******* In iommu_dma_alloc() function *********
[   17.702392]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.708388]  ******* In iommu_dma_alloc() function *********
[   17.714038]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.720033]  ******* In iommu_dma_alloc() function *********
[   17.725682]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.731678]  ******* In iommu_dma_alloc() function *********
[   17.737328]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.743323]  ******* In iommu_dma_alloc() function *********
[   17.748973]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.754968]  ******* In iommu_dma_alloc() function *********
[   17.760618]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.766612]  ******* In iommu_dma_alloc() function *********
[   17.772263]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.778258]  ******* In iommu_dma_alloc() function *********
[   17.783911]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.789906]  ******* In iommu_dma_alloc() function *********
[   17.795555]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.801550]  ******* In iommu_dma_alloc() function *********
[   17.807200]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.813195]  ******* In iommu_dma_alloc() function *********
[   17.818844]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.824839]  ******* In iommu_dma_alloc() function *********
[   17.830488]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.836484]  ******* In iommu_dma_alloc() function *********
[   17.842133]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.848128]  ******* In iommu_dma_alloc() function *********
[   17.853778]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.859773]  ******* In iommu_dma_alloc() function *********
[   17.865423]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.871418]  ******* In iommu_dma_alloc() function *********
[   17.877068]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.883063]  ******* In iommu_dma_alloc() function *********
[   17.888712]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.894707]  ******* In iommu_dma_alloc() function *********
[   17.900357]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.906352]  ******* In iommu_dma_alloc() function *********
[   17.912002]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.917997]  ******* In iommu_dma_alloc() function *********
[   17.923648]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.929642]  ******* In iommu_dma_alloc() function *********
[   17.935293]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.941287]  ******* In iommu_dma_alloc() function *********
[   17.946937]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.952932]  ******* In iommu_dma_alloc() function *********
[   17.958582]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.964576]  ******* In iommu_dma_alloc() function *********
[   17.970226]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.976221]  ******* In iommu_dma_alloc() function *********
[   17.981871]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.987866]  ******* In iommu_dma_alloc() function *********
[   17.993515]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   17.999511]  ******* In iommu_dma_alloc() function *********
[   18.005161]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.011156]  ******* In iommu_dma_alloc() function *********
[   18.016806]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.022801]  ******* In iommu_dma_alloc() function *********
[   18.028451]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.034445]  ******* In iommu_dma_alloc() function *********
[   18.040096]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.046091]  ******* In iommu_dma_alloc() function *********
[   18.051742]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.057737]  ******* In iommu_dma_alloc() function *********
[   18.063387]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.069382]  ******* In iommu_dma_alloc() function *********
[   18.075033]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.081028]  ******* In iommu_dma_alloc() function *********
[   18.086678]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.092673]  ******* In iommu_dma_alloc() function *********
[   18.098324]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.104320]  ******* In iommu_dma_alloc() function *********
[   18.109971]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.115966]  ******* In iommu_dma_alloc() function *********
[   18.121616]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.127611]  ******* In iommu_dma_alloc() function *********
[   18.133262]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.139256]  ******* In iommu_dma_alloc() function *********
[   18.144906]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.150901]  ******* In iommu_dma_alloc() function *********
[   18.156550]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.162545]  ******* In iommu_dma_alloc() function *********
[   18.168195]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.174190]  ******* In iommu_dma_alloc() function *********
[   18.179840]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.185835]  ******* In iommu_dma_alloc() function *********
[   18.191485]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.197480]  ******* In iommu_dma_alloc() function *********
[   18.203130]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.209125]  ******* In iommu_dma_alloc() function *********
[   18.214775]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.220770]  ******* In iommu_dma_alloc() function *********
[   18.226420]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.232415]  ******* In iommu_dma_alloc() function *********
[   18.238064]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.244059]  ******* In iommu_dma_alloc() function *********
[   18.249709]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.255704]  ******* In iommu_dma_alloc() function *********
[   18.261354]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.267349]  ******* In iommu_dma_alloc() function *********
[   18.272999]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.278993]  ******* In iommu_dma_alloc() function *********
[   18.284644]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.290638]  ******* In iommu_dma_alloc() function *********
[   18.296290]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.302285]  ******* In iommu_dma_alloc() function *********
[   18.307935]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.313929]  ******* In iommu_dma_alloc() function *********
[   18.319580]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.325575]  ******* In iommu_dma_alloc() function *********
[   18.331225]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.337220]  ******* In iommu_dma_alloc() function *********
[   18.342871]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.348865]  ******* In iommu_dma_alloc() function *********
[   18.354516]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.360510]  ******* In iommu_dma_alloc() function *********
[   18.366160]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.372155]  ******* In iommu_dma_alloc() function *********
[   18.377805]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.383800]  ******* In iommu_dma_alloc() function *********
[   18.389450]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.395445]  ******* In iommu_dma_alloc() function *********
[   18.401095]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.407089]  ******* In iommu_dma_alloc() function *********
[   18.412739]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.418734]  ******* In iommu_dma_alloc() function *********
[   18.424384]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.430379]  ******* In iommu_dma_alloc() function *********
[   18.436029]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.442024]  ******* In iommu_dma_alloc() function *********
[   18.447679]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.453674]  ******* In iommu_dma_alloc() function *********
[   18.459323]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.465318]  ******* In iommu_dma_alloc() function *********
[   18.470968]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.476963]  ******* In iommu_dma_alloc() function *********
[   18.482614]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.488609]  ******* In iommu_dma_alloc() function *********
[   18.494258]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.500253]  ******* In iommu_dma_alloc() function *********
[   18.505903]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.511898]  ******* In iommu_dma_alloc() function *********
[   18.517548]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.523543]  ******* In iommu_dma_alloc() function *********
[   18.529194]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.535188]  ******* In iommu_dma_alloc() function *********
[   18.540838]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.546833]  ******* In iommu_dma_alloc() function *********
[   18.552485]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.558479]  ******* In iommu_dma_alloc() function *********
[   18.564130]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.570125]  ******* In iommu_dma_alloc() function *********
[   18.575775]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.581770]  ******* In iommu_dma_alloc() function *********
[   18.587420]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.593414]  ******* In iommu_dma_alloc() function *********
[   18.599070]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.605065]  ******* In iommu_dma_alloc() function *********
[   18.610716]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.616713]  ******* In iommu_dma_alloc() function *********
[   18.622363]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.628358]  ******* In iommu_dma_alloc() function *********
[   18.634007]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.640002]  ******* In iommu_dma_alloc() function *********
[   18.645652]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.651646]  ******* In iommu_dma_alloc() function *********
[   18.657296]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.663291]  ******* In iommu_dma_alloc() function *********
[   18.668942]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.674937]  ******* In iommu_dma_alloc() function *********
[   18.680587]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.686582]  ******* In iommu_dma_alloc() function *********
[   18.692232]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.698226]  ******* In iommu_dma_alloc() function *********
[   18.703876]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.709871]  ******* In iommu_dma_alloc() function *********
[   18.715522]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.721516]  ******* In iommu_dma_alloc() function *********
[   18.727167]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.733162]  ******* In iommu_dma_alloc() function *********
[   18.738812]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.744806]  ******* In iommu_dma_alloc() function *********
[   18.750456]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.756451]  ******* In iommu_dma_alloc() function *********
[   18.762101]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.768096]  ******* In iommu_dma_alloc() function *********
[   18.773747]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.779741]  ******* In iommu_dma_alloc() function *********
[   18.785391]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.791386]  ******* In iommu_dma_alloc() function *********
[   18.797036]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.803031]  ******* In iommu_dma_alloc() function *********
[   18.808681]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.814676]  ******* In iommu_dma_alloc() function *********
[   18.820326]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.826321]  ******* In iommu_dma_alloc() function *********
[   18.831970]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.837965]  ******* In iommu_dma_alloc() function *********
[   18.843615]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.849610]  ******* In iommu_dma_alloc() function *********
[   18.855260]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.861255]  ******* In iommu_dma_alloc() function *********
[   18.866905]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.872899]  ******* In iommu_dma_alloc() function *********
[   18.878550]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.884544]  ******* In iommu_dma_alloc() function *********
[   18.890194]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.896189]  ******* In iommu_dma_alloc() function *********
[   18.901839]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.907833]  ******* In iommu_dma_alloc() function *********
[   18.913483]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.919478]  ******* In iommu_dma_alloc() function *********
[   18.925128]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.931123]  ******* In iommu_dma_alloc() function *********
[   18.936773]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.942768]  ******* In iommu_dma_alloc() function *********
[   18.948418]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.954413]  ******* In iommu_dma_alloc() function *********
[   18.960063]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.966057]  ******* In iommu_dma_alloc() function *********
[   18.971707]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.977702]  ******* In iommu_dma_alloc() function *********
[   18.983352]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   18.989347]  ******* In iommu_dma_alloc() function *********
[   18.994997]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.000992]  ******* In iommu_dma_alloc() function *********
[   19.006641]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.012636]  ******* In iommu_dma_alloc() function *********
[   19.018286]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.024281]  ******* In iommu_dma_alloc() function *********
[   19.029931]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.035925]  ******* In iommu_dma_alloc() function *********
[   19.041576]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.047571]  ******* In iommu_dma_alloc() function *********
[   19.053221]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.059215]  ******* In iommu_dma_alloc() function *********
[   19.064865]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.070860]  ******* In iommu_dma_alloc() function *********
[   19.076509]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.082504]  ******* In iommu_dma_alloc() function *********
[   19.088154]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.094149]  ******* In iommu_dma_alloc() function *********
[   19.099798]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.105793]  ******* In iommu_dma_alloc() function *********
[   19.111443]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.117438]  ******* In iommu_dma_alloc() function *********
[   19.123095]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.129090]  ******* In iommu_dma_alloc() function *********
[   19.134740]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.140736]  ******* In iommu_dma_alloc() function *********
[   19.146386]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.152380]  ******* In iommu_dma_alloc() function *********
[   19.158030]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.164025]  ******* In iommu_dma_alloc() function *********
[   19.169676]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.175671]  ******* In iommu_dma_alloc() function *********
[   19.181321]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.187316]  ******* In iommu_dma_alloc() function *********
[   19.192966]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.198960]  ******* In iommu_dma_alloc() function *********
[   19.204610]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.210604]  ******* In iommu_dma_alloc() function *********
[   19.216254]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.222249]  ******* In iommu_dma_alloc() function *********
[   19.227899]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.233894]  ******* In iommu_dma_alloc() function *********
[   19.239544]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.245538]  ******* In iommu_dma_alloc() function *********
[   19.251188]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.257183]  ******* In iommu_dma_alloc() function *********
[   19.262832]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.268827]  ******* In iommu_dma_alloc() function *********
[   19.274477]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.280472]  ******* In iommu_dma_alloc() function *********
[   19.286122]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.292117]  ******* In iommu_dma_alloc() function *********
[   19.297766]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.303761]  ******* In iommu_dma_alloc() function *********
[   19.309411]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.315406]  ******* In iommu_dma_alloc() function *********
[   19.321056]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.327051]  ******* In iommu_dma_alloc() function *********
[   19.332701]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.338696]  ******* In iommu_dma_alloc() function *********
[   19.344346]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.350341]  ******* In iommu_dma_alloc() function *********
[   19.355991]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.361986]  ******* In iommu_dma_alloc() function *********
[   19.367635]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.373630]  ******* In iommu_dma_alloc() function *********
[   19.379280]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.385274]  ******* In iommu_dma_alloc() function *********
[   19.390924]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.396919]  ******* In iommu_dma_alloc() function *********
[   19.402569]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.408563]  ******* In iommu_dma_alloc() function *********
[   19.414214]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.420209]  ******* In iommu_dma_alloc() function *********
[   19.425859]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.431854]  ******* In iommu_dma_alloc() function *********
[   19.437504]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.443499]  ******* In iommu_dma_alloc() function *********
[   19.449149]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.455144]  ******* In iommu_dma_alloc() function *********
[   19.460793]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.466788]  ******* In iommu_dma_alloc() function *********
[   19.472438]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.478433]  ******* In iommu_dma_alloc() function *********
[   19.484083]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.490078]  ******* In iommu_dma_alloc() function *********
[   19.495727]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.501722]  ******* In iommu_dma_alloc() function *********
[   19.507372]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.513366]  ******* In iommu_dma_alloc() function *********
[   19.519016]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.525011]  ******* In iommu_dma_alloc() function *********
[   19.530661]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.536655]  ******* In iommu_dma_alloc() function *********
[   19.542306]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.548301]  ******* In iommu_dma_alloc() function *********
[   19.553951]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.559946]  ******* In iommu_dma_alloc() function *********
[   19.565596]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.571590]  ******* In iommu_dma_alloc() function *********
[   19.577240]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.583235]  ******* In iommu_dma_alloc() function *********
[   19.588885]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.594880]  ******* In iommu_dma_alloc() function *********
[   19.600531]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.606525]  ******* In iommu_dma_alloc() function *********
[   19.612175]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.618170]  ******* In iommu_dma_alloc() function *********
[   19.623825]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.629820]  ******* In iommu_dma_alloc() function *********
[   19.635473]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.641468]  ******* In iommu_dma_alloc() function *********
[   19.647118]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.653113]  ******* In iommu_dma_alloc() function *********
[   19.658762]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.664757]  ******* In iommu_dma_alloc() function *********
[   19.670407]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.676402]  ******* In iommu_dma_alloc() function *********
[   19.682052]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.688047]  ******* In iommu_dma_alloc() function *********
[   19.693697]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.699692]  ******* In iommu_dma_alloc() function *********
[   19.705341]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.711336]  ******* In iommu_dma_alloc() function *********
[   19.716986]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.722980]  ******* In iommu_dma_alloc() function *********
[   19.728631]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.734626]  ******* In iommu_dma_alloc() function *********
[   19.740276]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.746271]  ******* In iommu_dma_alloc() function *********
[   19.751922]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.757917]  ******* In iommu_dma_alloc() function *********
[   19.763567]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.769561]  ******* In iommu_dma_alloc() function *********
[   19.775212]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.781207]  ******* In iommu_dma_alloc() function *********
[   19.786863]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.792859]  ******* In iommu_dma_alloc() function *********
[   19.798509]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.804504]  ******* In iommu_dma_alloc() function *********
[   19.810154]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.816149]  ******* In iommu_dma_alloc() function *********
[   19.821799]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.827794]  ******* In iommu_dma_alloc() function *********
[   19.833443]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.839438]  ******* In iommu_dma_alloc() function *********
[   19.845088]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.851083]  ******* In iommu_dma_alloc() function *********
[   19.856733]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.862727]  ******* In iommu_dma_alloc() function *********
[   19.868377]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.874372]  ******* In iommu_dma_alloc() function *********
[   19.880022]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.886017]  ******* In iommu_dma_alloc() function *********
[   19.891667]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.897661]  ******* In iommu_dma_alloc() function *********
[   19.903311]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.909306]  ******* In iommu_dma_alloc() function *********
[   19.914957]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.920953]  ******* In iommu_dma_alloc() function *********
[   19.926602]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.932598]  ******* In iommu_dma_alloc() function *********
[   19.938247]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.944242]  ******* In iommu_dma_alloc() function *********
[   19.949893]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.955888]  ******* In iommu_dma_alloc() function *********
[   19.961538]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.967533]  ******* In iommu_dma_alloc() function *********
[   19.973184]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.979179]  ******* In iommu_dma_alloc() function *********
[   19.984830]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   19.990825]  ******* In iommu_dma_alloc() function *********
[   19.996475]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.002470]  ******* In iommu_dma_alloc() function *********
[   20.008120]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.014114]  ******* In iommu_dma_alloc() function *********
[   20.019764]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.025759]  ******* In iommu_dma_alloc() function *********
[   20.031408]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.037403]  ******* In iommu_dma_alloc() function *********
[   20.043053]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.049048]  ******* In iommu_dma_alloc() function *********
[   20.054697]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.060692]  ******* In iommu_dma_alloc() function *********
[   20.066342]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.072337]  ******* In iommu_dma_alloc() function *********
[   20.077986]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.083981]  ******* In iommu_dma_alloc() function *********
[   20.089631]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.095625]  ******* In iommu_dma_alloc() function *********
[   20.101275]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.107270]  ******* In iommu_dma_alloc() function *********
[   20.112920]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.118915]  ******* In iommu_dma_alloc() function *********
[   20.124565]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.130559]  ******* In iommu_dma_alloc() function *********
[   20.136209]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.142204]  ******* In iommu_dma_alloc() function *********
[   20.147856]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.153851]  ******* In iommu_dma_alloc() function *********
[   20.159503]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.165498]  ******* In iommu_dma_alloc() function *********
[   20.171148]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.177143]  ******* In iommu_dma_alloc() function *********
[   20.182793]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.188787]  ******* In iommu_dma_alloc() function *********
[   20.194438]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.200432]  ******* In iommu_dma_alloc() function *********
[   20.206083]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.212077]  ******* In iommu_dma_alloc() function *********
[   20.217727]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.223722]  ******* In iommu_dma_alloc() function *********
[   20.229372]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.235367]  ******* In iommu_dma_alloc() function *********
[   20.241017]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.247011]  ******* In iommu_dma_alloc() function *********
[   20.252661]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.258656]  ******* In iommu_dma_alloc() function *********
[   20.264306]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.270301]  ******* In iommu_dma_alloc() function *********
[   20.275950]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.281945]  ******* In iommu_dma_alloc() function *********
[   20.287596]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.293591]  ******* In iommu_dma_alloc() function *********
[   20.299241]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.305236]  ******* In iommu_dma_alloc() function *********
[   20.310885]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.316880]  ******* In iommu_dma_alloc() function *********
[   20.322530]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.328524]  ******* In iommu_dma_alloc() function *********
[   20.334174]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.340169]  ******* In iommu_dma_alloc() function *********
[   20.345819]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.351814]  ******* In iommu_dma_alloc() function *********
[   20.357464]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.363459]  ******* In iommu_dma_alloc() function *********
[   20.369109]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.375103]  ******* In iommu_dma_alloc() function *********
[   20.380753]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.386748]  ******* In iommu_dma_alloc() function *********
[   20.392397]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.398392]  ******* In iommu_dma_alloc() function *********
[   20.404042]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.410037]  ******* In iommu_dma_alloc() function *********
[   20.415686]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.421681]  ******* In iommu_dma_alloc() function *********
[   20.427331]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.433326]  ******* In iommu_dma_alloc() function *********
[   20.438976]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.444971]  ******* In iommu_dma_alloc() function *********
[   20.450620]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.456615]  ******* In iommu_dma_alloc() function *********
[   20.462269]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.468264]  ******* In iommu_dma_alloc() function *********
[   20.473915]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.479910]  ******* In iommu_dma_alloc() function *********
[   20.485559]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.491554]  ******* In iommu_dma_alloc() function *********
[   20.497204]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.503199]  ******* In iommu_dma_alloc() function *********
[   20.509803] i40e 0000:01:00.1: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   20.804536]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.810531]  ******* In iommu_dma_alloc() function *********
[   20.816308] i40e 0000:01:00.1: MAC address: 3c:fd:fe:6b:e9:c1
[   20.822196] i40e 0000:01:00.1: FW LLDP is enabled
[   20.833280]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.839279]  ******* In iommu_dma_alloc() function *********
[   20.844934]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.850929]  ******* In iommu_dma_alloc() function *********
[   20.856754] i40e 0000:01:00.1: PCI-Express: Speed 8.0GT/s Width x8
[   20.864012] i40e 0000:01:00.1: Features: PF-id[1] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   20.874158] i40e 0000:01:00.2: Adding to iommu group 5
[   20.879304]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.885821]  ******* In dma_alloc_direct() function *********
[   20.891783] i40e 0000:01:00.2: enabling device (0000 -> 0002)
[   20.919041]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.925038]  ******* In iommu_dma_alloc() function *********
[   20.930701]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.936696]  ******* In iommu_dma_alloc() function *********
[   20.942348]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.948343]  ******* In iommu_dma_alloc() function *********
[   20.953994]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.959989]  ******* In iommu_dma_alloc() function *********
[   20.965639]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.971634]  ******* In iommu_dma_alloc() function *********
[   20.977285]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.983281]  ******* In iommu_dma_alloc() function *********
[   20.988931]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   20.994926]  ******* In iommu_dma_alloc() function *********
[   21.000576]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.006571]  ******* In iommu_dma_alloc() function *********
[   21.012224]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.018220]  ******* In iommu_dma_alloc() function *********
[   21.023869]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.029865]  ******* In iommu_dma_alloc() function *********
[   21.035515]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.041509]  ******* In iommu_dma_alloc() function *********
[   21.047160]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.053155]  ******* In iommu_dma_alloc() function *********
[   21.058805]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.064800]  ******* In iommu_dma_alloc() function *********
[   21.070450]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.076444]  ******* In iommu_dma_alloc() function *********
[   21.082095]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.088091]  ******* In iommu_dma_alloc() function *********
[   21.093741]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.099736]  ******* In iommu_dma_alloc() function *********
[   21.105386]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.111381]  ******* In iommu_dma_alloc() function *********
[   21.117031]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.123027]  ******* In iommu_dma_alloc() function *********
[   21.128678]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.134673]  ******* In iommu_dma_alloc() function *********
[   21.140323]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.146318]  ******* In iommu_dma_alloc() function *********
[   21.151968]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.157963]  ******* In iommu_dma_alloc() function *********
[   21.163613]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.169609]  ******* In iommu_dma_alloc() function *********
[   21.175260]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.181255]  ******* In iommu_dma_alloc() function *********
[   21.186905]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.192900]  ******* In iommu_dma_alloc() function *********
[   21.198549]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.204545]  ******* In iommu_dma_alloc() function *********
[   21.210196]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.216190]  ******* In iommu_dma_alloc() function *********
[   21.221841]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.227835]  ******* In iommu_dma_alloc() function *********
[   21.233486]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.239480]  ******* In iommu_dma_alloc() function *********
[   21.245131]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.251125]  ******* In iommu_dma_alloc() function *********
[   21.256776]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.262771]  ******* In iommu_dma_alloc() function *********
[   21.268421]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.274416]  ******* In iommu_dma_alloc() function *********
[   21.280067]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.286062]  ******* In iommu_dma_alloc() function *********
[   21.291716]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.297710]  ******* In iommu_dma_alloc() function *********
[   21.303360]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.309354]  ******* In iommu_dma_alloc() function *********
[   21.315005]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.320999]  ******* In iommu_dma_alloc() function *********
[   21.326650]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.332645]  ******* In iommu_dma_alloc() function *********
[   21.338295]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.344289]  ******* In iommu_dma_alloc() function *********
[   21.349939]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.355934]  ******* In iommu_dma_alloc() function *********
[   21.361584]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.367579]  ******* In iommu_dma_alloc() function *********
[   21.373230]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.379224]  ******* In iommu_dma_alloc() function *********
[   21.384876]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.390871]  ******* In iommu_dma_alloc() function *********
[   21.396521]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.402515]  ******* In iommu_dma_alloc() function *********
[   21.408167]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.414161]  ******* In iommu_dma_alloc() function *********
[   21.419811]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.425806]  ******* In iommu_dma_alloc() function *********
[   21.431456]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.437451]  ******* In iommu_dma_alloc() function *********
[   21.443102]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.449096]  ******* In iommu_dma_alloc() function *********
[   21.454747]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.460742]  ******* In iommu_dma_alloc() function *********
[   21.466392]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.472387]  ******* In iommu_dma_alloc() function *********
[   21.478038]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.484033]  ******* In iommu_dma_alloc() function *********
[   21.489683]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.495678]  ******* In iommu_dma_alloc() function *********
[   21.501329]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.507323]  ******* In iommu_dma_alloc() function *********
[   21.512975]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.518970]  ******* In iommu_dma_alloc() function *********
[   21.524619]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.530614]  ******* In iommu_dma_alloc() function *********
[   21.536265]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.542260]  ******* In iommu_dma_alloc() function *********
[   21.547910]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.553905]  ******* In iommu_dma_alloc() function *********
[   21.559556]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.565550]  ******* In iommu_dma_alloc() function *********
[   21.571201]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.577196]  ******* In iommu_dma_alloc() function *********
[   21.582846]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.588842]  ******* In iommu_dma_alloc() function *********
[   21.594492]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.600487]  ******* In iommu_dma_alloc() function *********
[   21.606137]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.612132]  ******* In iommu_dma_alloc() function *********
[   21.617782]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.623777]  ******* In iommu_dma_alloc() function *********
[   21.629428]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.635423]  ******* In iommu_dma_alloc() function *********
[   21.641073]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.647068]  ******* In iommu_dma_alloc() function *********
[   21.652718]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.658713]  ******* In iommu_dma_alloc() function *********
[   21.664364]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.670359]  ******* In iommu_dma_alloc() function *********
[   21.676009]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.682005]  ******* In iommu_dma_alloc() function *********
[   21.687657]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.693651]  ******* In iommu_dma_alloc() function *********
[   21.699302]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.705296]  ******* In iommu_dma_alloc() function *********
[   21.710946]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.716941]  ******* In iommu_dma_alloc() function *********
[   21.722591]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.728586]  ******* In iommu_dma_alloc() function *********
[   21.734236]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.740231]  ******* In iommu_dma_alloc() function *********
[   21.745882]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.751876]  ******* In iommu_dma_alloc() function *********
[   21.757528]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.763522]  ******* In iommu_dma_alloc() function *********
[   21.769172]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.775167]  ******* In iommu_dma_alloc() function *********
[   21.780818]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.786812]  ******* In iommu_dma_alloc() function *********
[   21.792463]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.798458]  ******* In iommu_dma_alloc() function *********
[   21.804108]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.810103]  ******* In iommu_dma_alloc() function *********
[   21.815754]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.821749]  ******* In iommu_dma_alloc() function *********
[   21.827399]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.833394]  ******* In iommu_dma_alloc() function *********
[   21.839044]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.845039]  ******* In iommu_dma_alloc() function *********
[   21.850690]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.856685]  ******* In iommu_dma_alloc() function *********
[   21.862335]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.868330]  ******* In iommu_dma_alloc() function *********
[   21.873980]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.879975]  ******* In iommu_dma_alloc() function *********
[   21.885627]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.891621]  ******* In iommu_dma_alloc() function *********
[   21.897271]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.903266]  ******* In iommu_dma_alloc() function *********
[   21.908917]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.914911]  ******* In iommu_dma_alloc() function *********
[   21.920569]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.926564]  ******* In iommu_dma_alloc() function *********
[   21.932214]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.938209]  ******* In iommu_dma_alloc() function *********
[   21.943863]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.949858]  ******* In iommu_dma_alloc() function *********
[   21.955508]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.961503]  ******* In iommu_dma_alloc() function *********
[   21.967153]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.973147]  ******* In iommu_dma_alloc() function *********
[   21.978797]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.984792]  ******* In iommu_dma_alloc() function *********
[   21.990442]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   21.996438]  ******* In iommu_dma_alloc() function *********
[   22.002090]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.008084]  ******* In iommu_dma_alloc() function *********
[   22.013734]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.019729]  ******* In iommu_dma_alloc() function *********
[   22.025379]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.031373]  ******* In iommu_dma_alloc() function *********
[   22.037024]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.043018]  ******* In iommu_dma_alloc() function *********
[   22.048669]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.054664]  ******* In iommu_dma_alloc() function *********
[   22.060314]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.066309]  ******* In iommu_dma_alloc() function *********
[   22.071960]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.077955]  ******* In iommu_dma_alloc() function *********
[   22.083605]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.089600]  ******* In iommu_dma_alloc() function *********
[   22.095250]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.101245]  ******* In iommu_dma_alloc() function *********
[   22.106896]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.112890]  ******* In iommu_dma_alloc() function *********
[   22.118541]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.124536]  ******* In iommu_dma_alloc() function *********
[   22.130187]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.136182]  ******* In iommu_dma_alloc() function *********
[   22.141832]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.147827]  ******* In iommu_dma_alloc() function *********
[   22.153477]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.159472]  ******* In iommu_dma_alloc() function *********
[   22.165123]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.171118]  ******* In iommu_dma_alloc() function *********
[   22.176768]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.182763]  ******* In iommu_dma_alloc() function *********
[   22.188413]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.194409]  ******* In iommu_dma_alloc() function *********
[   22.200062]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.206057]  ******* In iommu_dma_alloc() function *********
[   22.211707]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.217702]  ******* In iommu_dma_alloc() function *********
[   22.223352]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.229347]  ******* In iommu_dma_alloc() function *********
[   22.234996]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.240991]  ******* In iommu_dma_alloc() function *********
[   22.246641]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.252636]  ******* In iommu_dma_alloc() function *********
[   22.258286]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.264281]  ******* In iommu_dma_alloc() function *********
[   22.269931]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.275926]  ******* In iommu_dma_alloc() function *********
[   22.281576]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.287571]  ******* In iommu_dma_alloc() function *********
[   22.293222]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.299217]  ******* In iommu_dma_alloc() function *********
[   22.304867]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.310862]  ******* In iommu_dma_alloc() function *********
[   22.316512]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.322507]  ******* In iommu_dma_alloc() function *********
[   22.328158]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.334153]  ******* In iommu_dma_alloc() function *********
[   22.339803]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.345798]  ******* In iommu_dma_alloc() function *********
[   22.351449]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.357444]  ******* In iommu_dma_alloc() function *********
[   22.363094]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.369089]  ******* In iommu_dma_alloc() function *********
[   22.374739]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.380734]  ******* In iommu_dma_alloc() function *********
[   22.386385]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.392379]  ******* In iommu_dma_alloc() function *********
[   22.398030]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.404025]  ******* In iommu_dma_alloc() function *********
[   22.409676]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.415670]  ******* In iommu_dma_alloc() function *********
[   22.421321]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.427316]  ******* In iommu_dma_alloc() function *********
[   22.432966]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.438961]  ******* In iommu_dma_alloc() function *********
[   22.444612]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.450607]  ******* In iommu_dma_alloc() function *********
[   22.456257]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.462252]  ******* In iommu_dma_alloc() function *********
[   22.467902]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.473897]  ******* In iommu_dma_alloc() function *********
[   22.479548]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.485542]  ******* In iommu_dma_alloc() function *********
[   22.491193]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.497188]  ******* In iommu_dma_alloc() function *********
[   22.502839]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.508834]  ******* In iommu_dma_alloc() function *********
[   22.514484]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.520479]  ******* In iommu_dma_alloc() function *********
[   22.526129]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.532124]  ******* In iommu_dma_alloc() function *********
[   22.537774]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.543769]  ******* In iommu_dma_alloc() function *********
[   22.549420]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.555414]  ******* In iommu_dma_alloc() function *********
[   22.561065]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.567060]  ******* In iommu_dma_alloc() function *********
[   22.572711]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.578705]  ******* In iommu_dma_alloc() function *********
[   22.584356]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.590350]  ******* In iommu_dma_alloc() function *********
[   22.596001]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.601996]  ******* In iommu_dma_alloc() function *********
[   22.607647]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.613642]  ******* In iommu_dma_alloc() function *********
[   22.619296]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.625291]  ******* In iommu_dma_alloc() function *********
[   22.630941]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.636936]  ******* In iommu_dma_alloc() function *********
[   22.642585]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.648580]  ******* In iommu_dma_alloc() function *********
[   22.654230]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.660224]  ******* In iommu_dma_alloc() function *********
[   22.665874]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.671869]  ******* In iommu_dma_alloc() function *********
[   22.677519]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.683514]  ******* In iommu_dma_alloc() function *********
[   22.689164]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.695159]  ******* In iommu_dma_alloc() function *********
[   22.700810]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.706806]  ******* In iommu_dma_alloc() function *********
[   22.712457]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.718452]  ******* In iommu_dma_alloc() function *********
[   22.724102]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.730097]  ******* In iommu_dma_alloc() function *********
[   22.735746]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.741741]  ******* In iommu_dma_alloc() function *********
[   22.747391]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.753386]  ******* In iommu_dma_alloc() function *********
[   22.759037]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.765031]  ******* In iommu_dma_alloc() function *********
[   22.770682]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.776677]  ******* In iommu_dma_alloc() function *********
[   22.782327]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.788322]  ******* In iommu_dma_alloc() function *********
[   22.793972]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.799968]  ******* In iommu_dma_alloc() function *********
[   22.805618]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.811613]  ******* In iommu_dma_alloc() function *********
[   22.817264]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.823259]  ******* In iommu_dma_alloc() function *********
[   22.828909]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.834904]  ******* In iommu_dma_alloc() function *********
[   22.840554]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.846549]  ******* In iommu_dma_alloc() function *********
[   22.852200]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.858194]  ******* In iommu_dma_alloc() function *********
[   22.863845]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.869840]  ******* In iommu_dma_alloc() function *********
[   22.875491]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.881486]  ******* In iommu_dma_alloc() function *********
[   22.887136]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.893130]  ******* In iommu_dma_alloc() function *********
[   22.898781]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.904776]  ******* In iommu_dma_alloc() function *********
[   22.910426]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.916421]  ******* In iommu_dma_alloc() function *********
[   22.922071]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.928066]  ******* In iommu_dma_alloc() function *********
[   22.933715]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.939716]  ******* In iommu_dma_alloc() function *********
[   22.945366]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.951361]  ******* In iommu_dma_alloc() function *********
[   22.957011]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.963005]  ******* In iommu_dma_alloc() function *********
[   22.968655]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.974651]  ******* In iommu_dma_alloc() function *********
[   22.980300]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.986295]  ******* In iommu_dma_alloc() function *********
[   22.991946]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   22.997941]  ******* In iommu_dma_alloc() function *********
[   23.003591]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.009585]  ******* In iommu_dma_alloc() function *********
[   23.015236]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.021230]  ******* In iommu_dma_alloc() function *********
[   23.026880]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.032875]  ******* In iommu_dma_alloc() function *********
[   23.038525]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.044520]  ******* In iommu_dma_alloc() function *********
[   23.050171]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.056165]  ******* In iommu_dma_alloc() function *********
[   23.061816]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.067811]  ******* In iommu_dma_alloc() function *********
[   23.073462]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.079456]  ******* In iommu_dma_alloc() function *********
[   23.085107]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.091102]  ******* In iommu_dma_alloc() function *********
[   23.096752]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.102747]  ******* In iommu_dma_alloc() function *********
[   23.108398]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.114393]  ******* In iommu_dma_alloc() function *********
[   23.120043]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.126037]  ******* In iommu_dma_alloc() function *********
[   23.131688]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.137683]  ******* In iommu_dma_alloc() function *********
[   23.143334]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.149329]  ******* In iommu_dma_alloc() function *********
[   23.154979]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.160974]  ******* In iommu_dma_alloc() function *********
[   23.166624]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.172619]  ******* In iommu_dma_alloc() function *********
[   23.178270]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.184264]  ******* In iommu_dma_alloc() function *********
[   23.189916]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.195911]  ******* In iommu_dma_alloc() function *********
[   23.201561]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.207556]  ******* In iommu_dma_alloc() function *********
[   23.213206]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.219204]  ******* In iommu_dma_alloc() function *********
[   23.224854]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.230849]  ******* In iommu_dma_alloc() function *********
[   23.236499]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.242494]  ******* In iommu_dma_alloc() function *********
[   23.248144]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.254139]  ******* In iommu_dma_alloc() function *********
[   23.259789]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.265784]  ******* In iommu_dma_alloc() function *********
[   23.271434]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.277428]  ******* In iommu_dma_alloc() function *********
[   23.283082]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.289076]  ******* In iommu_dma_alloc() function *********
[   23.294726]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.300721]  ******* In iommu_dma_alloc() function *********
[   23.306371]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.312365]  ******* In iommu_dma_alloc() function *********
[   23.318015]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.324010]  ******* In iommu_dma_alloc() function *********
[   23.329660]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.335655]  ******* In iommu_dma_alloc() function *********
[   23.341305]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.347300]  ******* In iommu_dma_alloc() function *********
[   23.352951]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.358945]  ******* In iommu_dma_alloc() function *********
[   23.364596]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.370591]  ******* In iommu_dma_alloc() function *********
[   23.376242]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.382238]  ******* In iommu_dma_alloc() function *********
[   23.387888]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.393882]  ******* In iommu_dma_alloc() function *********
[   23.399532]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.405527]  ******* In iommu_dma_alloc() function *********
[   23.411177]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.417172]  ******* In iommu_dma_alloc() function *********
[   23.422823]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.428818]  ******* In iommu_dma_alloc() function *********
[   23.434468]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.440463]  ******* In iommu_dma_alloc() function *********
[   23.446113]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.452108]  ******* In iommu_dma_alloc() function *********
[   23.457759]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.463754]  ******* In iommu_dma_alloc() function *********
[   23.469404]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.475399]  ******* In iommu_dma_alloc() function *********
[   23.481049]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.487044]  ******* In iommu_dma_alloc() function *********
[   23.492694]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.498689]  ******* In iommu_dma_alloc() function *********
[   23.504339]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.510334]  ******* In iommu_dma_alloc() function *********
[   23.515984]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.521978]  ******* In iommu_dma_alloc() function *********
[   23.527628]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.533623]  ******* In iommu_dma_alloc() function *********
[   23.539272]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.545268]  ******* In iommu_dma_alloc() function *********
[   23.550918]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.556912]  ******* In iommu_dma_alloc() function *********
[   23.562562]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.568557]  ******* In iommu_dma_alloc() function *********
[   23.574207]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.580202]  ******* In iommu_dma_alloc() function *********
[   23.585851]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.591846]  ******* In iommu_dma_alloc() function *********
[   23.597496]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.603491]  ******* In iommu_dma_alloc() function *********
[   23.609141]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.615135]  ******* In iommu_dma_alloc() function *********
[   23.620787]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.626782]  ******* In iommu_dma_alloc() function *********
[   23.632433]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.638428]  ******* In iommu_dma_alloc() function *********
[   23.644078]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.650073]  ******* In iommu_dma_alloc() function *********
[   23.655722]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.661717]  ******* In iommu_dma_alloc() function *********
[   23.667368]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.673363]  ******* In iommu_dma_alloc() function *********
[   23.679013]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.685007]  ******* In iommu_dma_alloc() function *********
[   23.690658]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.696653]  ******* In iommu_dma_alloc() function *********
[   23.702304]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.708299]  ******* In iommu_dma_alloc() function *********
[   23.713949]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.719944]  ******* In iommu_dma_alloc() function *********
[   23.725594]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.731592]  ******* In iommu_dma_alloc() function *********
[   23.737242]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.743237]  ******* In iommu_dma_alloc() function *********
[   23.748887]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.754882]  ******* In iommu_dma_alloc() function *********
[   23.760531]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.766526]  ******* In iommu_dma_alloc() function *********
[   23.772176]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.778171]  ******* In iommu_dma_alloc() function *********
[   23.783821]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.789816]  ******* In iommu_dma_alloc() function *********
[   23.795467]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.801462]  ******* In iommu_dma_alloc() function *********
[   23.807112]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.813107]  ******* In iommu_dma_alloc() function *********
[   23.818757]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.824752]  ******* In iommu_dma_alloc() function *********
[   23.830403]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.836398]  ******* In iommu_dma_alloc() function *********
[   23.842049]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.848043]  ******* In iommu_dma_alloc() function *********
[   23.853694]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.859689]  ******* In iommu_dma_alloc() function *********
[   23.865339]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.871334]  ******* In iommu_dma_alloc() function *********
[   23.876984]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.882979]  ******* In iommu_dma_alloc() function *********
[   23.888630]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.894624]  ******* In iommu_dma_alloc() function *********
[   23.900275]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.906270]  ******* In iommu_dma_alloc() function *********
[   23.911923]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.917917]  ******* In iommu_dma_alloc() function *********
[   23.923569]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.929564]  ******* In iommu_dma_alloc() function *********
[   23.935215]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.941210]  ******* In iommu_dma_alloc() function *********
[   23.946864]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.952859]  ******* In iommu_dma_alloc() function *********
[   23.958510]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.964511]  ******* In iommu_dma_alloc() function *********
[   23.970161]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.976156]  ******* In iommu_dma_alloc() function *********
[   23.981806]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.987801]  ******* In iommu_dma_alloc() function *********
[   23.993453]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   23.999448]  ******* In iommu_dma_alloc() function *********
[   24.005098]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.011092]  ******* In iommu_dma_alloc() function *********
[   24.016742]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.022737]  ******* In iommu_dma_alloc() function *********
[   24.028387]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.034382]  ******* In iommu_dma_alloc() function *********
[   24.040032]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.046027]  ******* In iommu_dma_alloc() function *********
[   24.051677]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.057672]  ******* In iommu_dma_alloc() function *********
[   24.063322]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.069316]  ******* In iommu_dma_alloc() function *********
[   24.074966]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.080961]  ******* In iommu_dma_alloc() function *********
[   24.086611]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.092605]  ******* In iommu_dma_alloc() function *********
[   24.098255]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.104250]  ******* In iommu_dma_alloc() function *********
[   24.109900]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.115895]  ******* In iommu_dma_alloc() function *********
[   24.121546]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.127540]  ******* In iommu_dma_alloc() function *********
[   24.133190]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.139185]  ******* In iommu_dma_alloc() function *********
[   24.144836]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.150830]  ******* In iommu_dma_alloc() function *********
[   24.156481]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.162476]  ******* In iommu_dma_alloc() function *********
[   24.168126]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.174121]  ******* In iommu_dma_alloc() function *********
[   24.179772]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.185767]  ******* In iommu_dma_alloc() function *********
[   24.191417]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.197412]  ******* In iommu_dma_alloc() function *********
[   24.203063]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.209057]  ******* In iommu_dma_alloc() function *********
[   24.214708]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.220703]  ******* In iommu_dma_alloc() function *********
[   24.226353]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.232348]  ******* In iommu_dma_alloc() function *********
[   24.237999]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.243997]  ******* In iommu_dma_alloc() function *********
[   24.249647]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.255642]  ******* In iommu_dma_alloc() function *********
[   24.261292]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.267286]  ******* In iommu_dma_alloc() function *********
[   24.272936]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.278931]  ******* In iommu_dma_alloc() function *********
[   24.284581]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.290576]  ******* In iommu_dma_alloc() function *********
[   24.296226]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.302221]  ******* In iommu_dma_alloc() function *********
[   24.307872]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.313866]  ******* In iommu_dma_alloc() function *********
[   24.319516]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.325511]  ******* In iommu_dma_alloc() function *********
[   24.331162]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.337157]  ******* In iommu_dma_alloc() function *********
[   24.342807]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.348801]  ******* In iommu_dma_alloc() function *********
[   24.354452]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.360447]  ******* In iommu_dma_alloc() function *********
[   24.366098]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.372093]  ******* In iommu_dma_alloc() function *********
[   24.377744]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.383739]  ******* In iommu_dma_alloc() function *********
[   24.389389]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.395383]  ******* In iommu_dma_alloc() function *********
[   24.401034]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.407029]  ******* In iommu_dma_alloc() function *********
[   24.412679]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.418674]  ******* In iommu_dma_alloc() function *********
[   24.424324]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.430319]  ******* In iommu_dma_alloc() function *********
[   24.435970]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.441964]  ******* In iommu_dma_alloc() function *********
[   24.447615]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.453610]  ******* In iommu_dma_alloc() function *********
[   24.459261]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.465256]  ******* In iommu_dma_alloc() function *********
[   24.470906]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.476901]  ******* In iommu_dma_alloc() function *********
[   24.482551]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.488546]  ******* In iommu_dma_alloc() function *********
[   24.494197]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.500192]  ******* In iommu_dma_alloc() function *********
[   24.505842]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.511837]  ******* In iommu_dma_alloc() function *********
[   24.517487]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.523482]  ******* In iommu_dma_alloc() function *********
[   24.529133]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.535128]  ******* In iommu_dma_alloc() function *********
[   24.540778]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.546773]  ******* In iommu_dma_alloc() function *********
[   24.552423]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.558417]  ******* In iommu_dma_alloc() function *********
[   24.564067]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.570062]  ******* In iommu_dma_alloc() function *********
[   24.575712]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.581706]  ******* In iommu_dma_alloc() function *********
[   24.587356]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.593351]  ******* In iommu_dma_alloc() function *********
[   24.599001]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.604995]  ******* In iommu_dma_alloc() function *********
[   24.610649]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.616644]  ******* In iommu_dma_alloc() function *********
[   24.622294]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.628288]  ******* In iommu_dma_alloc() function *********
[   24.633938]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.639934]  ******* In iommu_dma_alloc() function *********
[   24.645583]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.651578]  ******* In iommu_dma_alloc() function *********
[   24.657228]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.663223]  ******* In iommu_dma_alloc() function *********
[   24.668873]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.674868]  ******* In iommu_dma_alloc() function *********
[   24.680518]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.686513]  ******* In iommu_dma_alloc() function *********
[   24.692163]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.698157]  ******* In iommu_dma_alloc() function *********
[   24.703807]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.709802]  ******* In iommu_dma_alloc() function *********
[   24.715452]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.721447]  ******* In iommu_dma_alloc() function *********
[   24.727096]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.733091]  ******* In iommu_dma_alloc() function *********
[   24.738743]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.744737]  ******* In iommu_dma_alloc() function *********
[   24.750387]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.756384]  ******* In iommu_dma_alloc() function *********
[   24.762035]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.768029]  ******* In iommu_dma_alloc() function *********
[   24.773679]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.779674]  ******* In iommu_dma_alloc() function *********
[   24.785324]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.791318]  ******* In iommu_dma_alloc() function *********
[   24.796969]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.802963]  ******* In iommu_dma_alloc() function *********
[   24.808614]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.814609]  ******* In iommu_dma_alloc() function *********
[   24.820259]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.826254]  ******* In iommu_dma_alloc() function *********
[   24.831905]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.837900]  ******* In iommu_dma_alloc() function *********
[   24.843550]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.849545]  ******* In iommu_dma_alloc() function *********
[   24.855196]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.861191]  ******* In iommu_dma_alloc() function *********
[   24.866842]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.872836]  ******* In iommu_dma_alloc() function *********
[   24.878486]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.884481]  ******* In iommu_dma_alloc() function *********
[   24.890132]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.896127]  ******* In iommu_dma_alloc() function *********
[   24.901777]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.907772]  ******* In iommu_dma_alloc() function *********
[   24.913422]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.919417]  ******* In iommu_dma_alloc() function *********
[   24.925068]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.931062]  ******* In iommu_dma_alloc() function *********
[   24.936713]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.942708]  ******* In iommu_dma_alloc() function *********
[   24.948358]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.954353]  ******* In iommu_dma_alloc() function *********
[   24.960004]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.965999]  ******* In iommu_dma_alloc() function *********
[   24.971649]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.977644]  ******* In iommu_dma_alloc() function *********
[   24.983300]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   24.989295]  ******* In iommu_dma_alloc() function *********
[   24.994945]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.000940]  ******* In iommu_dma_alloc() function *********
[   25.006590]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.012585]  ******* In iommu_dma_alloc() function *********
[   25.018235]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.024230]  ******* In iommu_dma_alloc() function *********
[   25.029881]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.035875]  ******* In iommu_dma_alloc() function *********
[   25.041525]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.047520]  ******* In iommu_dma_alloc() function *********
[   25.053170]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.059166]  ******* In iommu_dma_alloc() function *********
[   25.064816]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.070810]  ******* In iommu_dma_alloc() function *********
[   25.076460]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.082455]  ******* In iommu_dma_alloc() function *********
[   25.088105]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.094100]  ******* In iommu_dma_alloc() function *********
[   25.099750]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.105744]  ******* In iommu_dma_alloc() function *********
[   25.111395]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.117389]  ******* In iommu_dma_alloc() function *********
[   25.123039]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.129034]  ******* In iommu_dma_alloc() function *********
[   25.134684]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.140679]  ******* In iommu_dma_alloc() function *********
[   25.146330]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.152324]  ******* In iommu_dma_alloc() function *********
[   25.157975]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.163969]  ******* In iommu_dma_alloc() function *********
[   25.169620]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.175615]  ******* In iommu_dma_alloc() function *********
[   25.181265]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.187259]  ******* In iommu_dma_alloc() function *********
[   25.192909]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.198904]  ******* In iommu_dma_alloc() function *********
[   25.204554]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.210549]  ******* In iommu_dma_alloc() function *********
[   25.216198]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.222193]  ******* In iommu_dma_alloc() function *********
[   25.227843]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.233837]  ******* In iommu_dma_alloc() function *********
[   25.239488]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.245482]  ******* In iommu_dma_alloc() function *********
[   25.251132]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.257127]  ******* In iommu_dma_alloc() function *********
[   25.262777]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.268775]  ******* In iommu_dma_alloc() function *********
[   25.274430]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.280424]  ******* In iommu_dma_alloc() function *********
[   25.286074]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.292069]  ******* In iommu_dma_alloc() function *********
[   25.297719]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.303714]  ******* In iommu_dma_alloc() function *********
[   25.309365]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.315360]  ******* In iommu_dma_alloc() function *********
[   25.321010]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.327005]  ******* In iommu_dma_alloc() function *********
[   25.332656]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.338650]  ******* In iommu_dma_alloc() function *********
[   25.344301]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.350296]  ******* In iommu_dma_alloc() function *********
[   25.355946]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.361941]  ******* In iommu_dma_alloc() function *********
[   25.367592]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.373587]  ******* In iommu_dma_alloc() function *********
[   25.379237]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.385232]  ******* In iommu_dma_alloc() function *********
[   25.390882]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.396877]  ******* In iommu_dma_alloc() function *********
[   25.402528]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.408522]  ******* In iommu_dma_alloc() function *********
[   25.414173]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.420168]  ******* In iommu_dma_alloc() function *********
[   25.425819]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.431814]  ******* In iommu_dma_alloc() function *********
[   25.437464]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.443459]  ******* In iommu_dma_alloc() function *********
[   25.449109]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.455104]  ******* In iommu_dma_alloc() function *********
[   25.460755]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.466750]  ******* In iommu_dma_alloc() function *********
[   25.472400]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.478395]  ******* In iommu_dma_alloc() function *********
[   25.484046]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.490041]  ******* In iommu_dma_alloc() function *********
[   25.495691]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.501686]  ******* In iommu_dma_alloc() function *********
[   25.507336]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.513331]  ******* In iommu_dma_alloc() function *********
[   25.518982]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.524977]  ******* In iommu_dma_alloc() function *********
[   25.530627]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.536622]  ******* In iommu_dma_alloc() function *********
[   25.542272]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.548267]  ******* In iommu_dma_alloc() function *********
[   25.553918]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.559913]  ******* In iommu_dma_alloc() function *********
[   25.565563]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.571558]  ******* In iommu_dma_alloc() function *********
[   25.577209]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.583203]  ******* In iommu_dma_alloc() function *********
[   25.588854]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.594849]  ******* In iommu_dma_alloc() function *********
[   25.600499]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.606494]  ******* In iommu_dma_alloc() function *********
[   25.612145]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.618140]  ******* In iommu_dma_alloc() function *********
[   25.623790]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.629785]  ******* In iommu_dma_alloc() function *********
[   25.635435]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.641430]  ******* In iommu_dma_alloc() function *********
[   25.647081]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.653075]  ******* In iommu_dma_alloc() function *********
[   25.658726]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.664721]  ******* In iommu_dma_alloc() function *********
[   25.670371]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.676367]  ******* In iommu_dma_alloc() function *********
[   25.682017]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.688012]  ******* In iommu_dma_alloc() function *********
[   25.693662]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.699657]  ******* In iommu_dma_alloc() function *********
[   25.705308]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.711302]  ******* In iommu_dma_alloc() function *********
[   25.716953]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.722948]  ******* In iommu_dma_alloc() function *********
[   25.728598]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.734593]  ******* In iommu_dma_alloc() function *********
[   25.740244]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.746239]  ******* In iommu_dma_alloc() function *********
[   25.751889]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.757884]  ******* In iommu_dma_alloc() function *********
[   25.763534]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.769529]  ******* In iommu_dma_alloc() function *********
[   25.775180]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.781176]  ******* In iommu_dma_alloc() function *********
[   25.786826]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.792821]  ******* In iommu_dma_alloc() function *********
[   25.798471]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.804466]  ******* In iommu_dma_alloc() function *********
[   25.810116]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.816111]  ******* In iommu_dma_alloc() function *********
[   25.821761]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.827756]  ******* In iommu_dma_alloc() function *********
[   25.833407]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.839401]  ******* In iommu_dma_alloc() function *********
[   25.845052]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.851046]  ******* In iommu_dma_alloc() function *********
[   25.856698]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.862693]  ******* In iommu_dma_alloc() function *********
[   25.868343]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.874338]  ******* In iommu_dma_alloc() function *********
[   25.879988]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.885983]  ******* In iommu_dma_alloc() function *********
[   25.891634]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.897628]  ******* In iommu_dma_alloc() function *********
[   25.903279]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.909274]  ******* In iommu_dma_alloc() function *********
[   25.914924]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.920919]  ******* In iommu_dma_alloc() function *********
[   25.926569]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.932564]  ******* In iommu_dma_alloc() function *********
[   25.938215]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.944209]  ******* In iommu_dma_alloc() function *********
[   25.949863]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.955858]  ******* In iommu_dma_alloc() function *********
[   25.961508]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.967502]  ******* In iommu_dma_alloc() function *********
[   25.973152]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.979147]  ******* In iommu_dma_alloc() function *********
[   25.984797]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   25.990792]  ******* In iommu_dma_alloc() function *********
[   25.996442]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.002438]  ******* In iommu_dma_alloc() function *********
[   26.008095]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.014090]  ******* In iommu_dma_alloc() function *********
[   26.019740]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.025735]  ******* In iommu_dma_alloc() function *********
[   26.031386]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.037381]  ******* In iommu_dma_alloc() function *********
[   26.043031]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.049026]  ******* In iommu_dma_alloc() function *********
[   26.054676]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.060671]  ******* In iommu_dma_alloc() function *********
[   26.066322]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.072316]  ******* In iommu_dma_alloc() function *********
[   26.077967]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.083962]  ******* In iommu_dma_alloc() function *********
[   26.089613]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.095608]  ******* In iommu_dma_alloc() function *********
[   26.101258]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.107253]  ******* In iommu_dma_alloc() function *********
[   26.112903]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.118898]  ******* In iommu_dma_alloc() function *********
[   26.124549]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.130543]  ******* In iommu_dma_alloc() function *********
[   26.136194]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.142189]  ******* In iommu_dma_alloc() function *********
[   26.147839]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.153834]  ******* In iommu_dma_alloc() function *********
[   26.159485]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.165480]  ******* In iommu_dma_alloc() function *********
[   26.171131]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.177126]  ******* In iommu_dma_alloc() function *********
[   26.182776]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.188770]  ******* In iommu_dma_alloc() function *********
[   26.194421]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.200415]  ******* In iommu_dma_alloc() function *********
[   26.206066]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.212061]  ******* In iommu_dma_alloc() function *********
[   26.217712]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.223707]  ******* In iommu_dma_alloc() function *********
[   26.229358]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.235353]  ******* In iommu_dma_alloc() function *********
[   26.241002]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.246997]  ******* In iommu_dma_alloc() function *********
[   26.252648]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.258643]  ******* In iommu_dma_alloc() function *********
[   26.264293]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.270288]  ******* In iommu_dma_alloc() function *********
[   26.275938]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.281933]  ******* In iommu_dma_alloc() function *********
[   26.287585]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.293581]  ******* In iommu_dma_alloc() function *********
[   26.299231]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.305226]  ******* In iommu_dma_alloc() function *********
[   26.310875]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.316870]  ******* In iommu_dma_alloc() function *********
[   26.322520]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.328515]  ******* In iommu_dma_alloc() function *********
[   26.334165]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.340160]  ******* In iommu_dma_alloc() function *********
[   26.345811]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.351805]  ******* In iommu_dma_alloc() function *********
[   26.357457]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.363451]  ******* In iommu_dma_alloc() function *********
[   26.369102]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.375096]  ******* In iommu_dma_alloc() function *********
[   26.380747]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.386742]  ******* In iommu_dma_alloc() function *********
[   26.392392]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.398387]  ******* In iommu_dma_alloc() function *********
[   26.404037]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.410032]  ******* In iommu_dma_alloc() function *********
[   26.415683]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.421678]  ******* In iommu_dma_alloc() function *********
[   26.427328]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.433323]  ******* In iommu_dma_alloc() function *********
[   26.438973]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.444969]  ******* In iommu_dma_alloc() function *********
[   26.450619]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.456614]  ******* In iommu_dma_alloc() function *********
[   26.462264]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.468259]  ******* In iommu_dma_alloc() function *********
[   26.473910]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.479904]  ******* In iommu_dma_alloc() function *********
[   26.485555]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.491550]  ******* In iommu_dma_alloc() function *********
[   26.497201]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.503195]  ******* In iommu_dma_alloc() function *********
[   26.508846]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.514841]  ******* In iommu_dma_alloc() function *********
[   26.520491]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.526486]  ******* In iommu_dma_alloc() function *********
[   26.532137]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.538131]  ******* In iommu_dma_alloc() function *********
[   26.543783]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.549777]  ******* In iommu_dma_alloc() function *********
[   26.555427]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.561422]  ******* In iommu_dma_alloc() function *********
[   26.567073]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.573068]  ******* In iommu_dma_alloc() function *********
[   26.578718]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.584713]  ******* In iommu_dma_alloc() function *********
[   26.590363]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.596358]  ******* In iommu_dma_alloc() function *********
[   26.602009]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.608004]  ******* In iommu_dma_alloc() function *********
[   26.613658]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.619652]  ******* In iommu_dma_alloc() function *********
[   26.625302]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.631297]  ******* In iommu_dma_alloc() function *********
[   26.636946]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.642941]  ******* In iommu_dma_alloc() function *********
[   26.648591]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.654586]  ******* In iommu_dma_alloc() function *********
[   26.660236]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.666230]  ******* In iommu_dma_alloc() function *********
[   26.671881]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.677876]  ******* In iommu_dma_alloc() function *********
[   26.683526]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.689521]  ******* In iommu_dma_alloc() function *********
[   26.695172]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.701167]  ******* In iommu_dma_alloc() function *********
[   26.706818]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.712814]  ******* In iommu_dma_alloc() function *********
[   26.718464]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.724459]  ******* In iommu_dma_alloc() function *********
[   26.730109]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.736104]  ******* In iommu_dma_alloc() function *********
[   26.741753]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.747748]  ******* In iommu_dma_alloc() function *********
[   26.753399]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.759393]  ******* In iommu_dma_alloc() function *********
[   26.765044]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.771039]  ******* In iommu_dma_alloc() function *********
[   26.776689]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.782684]  ******* In iommu_dma_alloc() function *********
[   26.788335]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.794329]  ******* In iommu_dma_alloc() function *********
[   26.799980]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.805976]  ******* In iommu_dma_alloc() function *********
[   26.811626]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.817621]  ******* In iommu_dma_alloc() function *********
[   26.823271]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.829266]  ******* In iommu_dma_alloc() function *********
[   26.834916]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.840911]  ******* In iommu_dma_alloc() function *********
[   26.846561]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.852556]  ******* In iommu_dma_alloc() function *********
[   26.858207]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.864202]  ******* In iommu_dma_alloc() function *********
[   26.869854]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.875849]  ******* In iommu_dma_alloc() function *********
[   26.881499]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.887493]  ******* In iommu_dma_alloc() function *********
[   26.893143]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   26.899139]  ******* In iommu_dma_alloc() function *********
[   26.905743] i40e 0000:01:00.2: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   27.193474]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.199470]  ******* In iommu_dma_alloc() function *********
[   27.205245] i40e 0000:01:00.2: MAC address: 3c:fd:fe:6b:e9:c2
[   27.211132] i40e 0000:01:00.2: FW LLDP is enabled
[   27.222304]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.228303]  ******* In iommu_dma_alloc() function *********
[   27.233958]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.239954]  ******* In iommu_dma_alloc() function *********
[   27.245775] i40e 0000:01:00.2: PCI-Express: Speed 8.0GT/s Width x8
[   27.253034] i40e 0000:01:00.2: Features: PF-id[2] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   27.263178] i40e 0000:01:00.3: Adding to iommu group 6
[   27.268317]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.274834]  ******* In dma_alloc_direct() function *********
[   27.280792] i40e 0000:01:00.3: enabling device (0000 -> 0002)
[   27.297053]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.303052]  ******* In iommu_dma_alloc() function *********
[   27.308719]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.314714]  ******* In iommu_dma_alloc() function *********
[   27.320366]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.326361]  ******* In iommu_dma_alloc() function *********
[   27.332012]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.338006]  ******* In iommu_dma_alloc() function *********
[   27.343657]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.349652]  ******* In iommu_dma_alloc() function *********
[   27.355303]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.361297]  ******* In iommu_dma_alloc() function *********
[   27.366947]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.372942]  ******* In iommu_dma_alloc() function *********
[   27.378592]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.384587]  ******* In iommu_dma_alloc() function *********
[   27.390237]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.396232]  ******* In iommu_dma_alloc() function *********
[   27.401882]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.407877]  ******* In iommu_dma_alloc() function *********
[   27.413531]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.419526]  ******* In iommu_dma_alloc() function *********
[   27.425177]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.431171]  ******* In iommu_dma_alloc() function *********
[   27.436821]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.442816]  ******* In iommu_dma_alloc() function *********
[   27.448466]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.454461]  ******* In iommu_dma_alloc() function *********
[   27.460111]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.466106]  ******* In iommu_dma_alloc() function *********
[   27.471756]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.477751]  ******* In iommu_dma_alloc() function *********
[   27.483401]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.489396]  ******* In iommu_dma_alloc() function *********
[   27.495047]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.501043]  ******* In iommu_dma_alloc() function *********
[   27.506693]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.512689]  ******* In iommu_dma_alloc() function *********
[   27.518339]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.524334]  ******* In iommu_dma_alloc() function *********
[   27.529984]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.535979]  ******* In iommu_dma_alloc() function *********
[   27.541630]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.547625]  ******* In iommu_dma_alloc() function *********
[   27.553274]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.559269]  ******* In iommu_dma_alloc() function *********
[   27.564920]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.570915]  ******* In iommu_dma_alloc() function *********
[   27.576566]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.582560]  ******* In iommu_dma_alloc() function *********
[   27.588211]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.594205]  ******* In iommu_dma_alloc() function *********
[   27.599855]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.605850]  ******* In iommu_dma_alloc() function *********
[   27.611500]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.617495]  ******* In iommu_dma_alloc() function *********
[   27.623144]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.629139]  ******* In iommu_dma_alloc() function *********
[   27.634789]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.640783]  ******* In iommu_dma_alloc() function *********
[   27.646433]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.652428]  ******* In iommu_dma_alloc() function *********
[   27.658078]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.664073]  ******* In iommu_dma_alloc() function *********
[   27.669723]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.675718]  ******* In iommu_dma_alloc() function *********
[   27.681370]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.687365]  ******* In iommu_dma_alloc() function *********
[   27.693016]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.699010]  ******* In iommu_dma_alloc() function *********
[   27.704660]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.710655]  ******* In iommu_dma_alloc() function *********
[   27.716305]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.722300]  ******* In iommu_dma_alloc() function *********
[   27.727950]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.733945]  ******* In iommu_dma_alloc() function *********
[   27.739595]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.745590]  ******* In iommu_dma_alloc() function *********
[   27.751240]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.757235]  ******* In iommu_dma_alloc() function *********
[   27.762886]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.768881]  ******* In iommu_dma_alloc() function *********
[   27.774531]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.780526]  ******* In iommu_dma_alloc() function *********
[   27.786176]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.792171]  ******* In iommu_dma_alloc() function *********
[   27.797822]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.803817]  ******* In iommu_dma_alloc() function *********
[   27.809467]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.815462]  ******* In iommu_dma_alloc() function *********
[   27.821113]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.827110]  ******* In iommu_dma_alloc() function *********
[   27.832761]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.838755]  ******* In iommu_dma_alloc() function *********
[   27.844405]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.850400]  ******* In iommu_dma_alloc() function *********
[   27.856049]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.862045]  ******* In iommu_dma_alloc() function *********
[   27.867695]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.873690]  ******* In iommu_dma_alloc() function *********
[   27.879340]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.885335]  ******* In iommu_dma_alloc() function *********
[   27.890985]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.896980]  ******* In iommu_dma_alloc() function *********
[   27.902630]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.908626]  ******* In iommu_dma_alloc() function *********
[   27.914276]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.920271]  ******* In iommu_dma_alloc() function *********
[   27.925922]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.931917]  ******* In iommu_dma_alloc() function *********
[   27.937567]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.943561]  ******* In iommu_dma_alloc() function *********
[   27.949212]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.955207]  ******* In iommu_dma_alloc() function *********
[   27.960857]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.966852]  ******* In iommu_dma_alloc() function *********
[   27.972502]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.978497]  ******* In iommu_dma_alloc() function *********
[   27.984150]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   27.990145]  ******* In iommu_dma_alloc() function *********
[   27.995795]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.001789]  ******* In iommu_dma_alloc() function *********
[   28.007440]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.013434]  ******* In iommu_dma_alloc() function *********
[   28.019084]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.025079]  ******* In iommu_dma_alloc() function *********
[   28.030729]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.036724]  ******* In iommu_dma_alloc() function *********
[   28.042375]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.048369]  ******* In iommu_dma_alloc() function *********
[   28.054021]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.060016]  ******* In iommu_dma_alloc() function *********
[   28.065670]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.071665]  ******* In iommu_dma_alloc() function *********
[   28.077314]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.083309]  ******* In iommu_dma_alloc() function *********
[   28.088959]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.094954]  ******* In iommu_dma_alloc() function *********
[   28.100604]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.106599]  ******* In iommu_dma_alloc() function *********
[   28.112248]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.118243]  ******* In iommu_dma_alloc() function *********
[   28.123893]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.129888]  ******* In iommu_dma_alloc() function *********
[   28.135538]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.141533]  ******* In iommu_dma_alloc() function *********
[   28.147183]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.153178]  ******* In iommu_dma_alloc() function *********
[   28.158828]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.164824]  ******* In iommu_dma_alloc() function *********
[   28.170474]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.176469]  ******* In iommu_dma_alloc() function *********
[   28.182119]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.188114]  ******* In iommu_dma_alloc() function *********
[   28.193765]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.199759]  ******* In iommu_dma_alloc() function *********
[   28.205410]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.211405]  ******* In iommu_dma_alloc() function *********
[   28.217055]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.223050]  ******* In iommu_dma_alloc() function *********
[   28.228701]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.234696]  ******* In iommu_dma_alloc() function *********
[   28.240347]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.246342]  ******* In iommu_dma_alloc() function *********
[   28.251992]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.257987]  ******* In iommu_dma_alloc() function *********
[   28.263637]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.269632]  ******* In iommu_dma_alloc() function *********
[   28.275282]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.281277]  ******* In iommu_dma_alloc() function *********
[   28.286928]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.292922]  ******* In iommu_dma_alloc() function *********
[   28.298573]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.304567]  ******* In iommu_dma_alloc() function *********
[   28.310218]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.316220]  ******* In iommu_dma_alloc() function *********
[   28.321870]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.327865]  ******* In iommu_dma_alloc() function *********
[   28.333516]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.339513]  ******* In iommu_dma_alloc() function *********
[   28.345164]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.351158]  ******* In iommu_dma_alloc() function *********
[   28.356808]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.362803]  ******* In iommu_dma_alloc() function *********
[   28.368453]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.374448]  ******* In iommu_dma_alloc() function *********
[   28.380098]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.386093]  ******* In iommu_dma_alloc() function *********
[   28.391744]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.397739]  ******* In iommu_dma_alloc() function *********
[   28.403389]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.409384]  ******* In iommu_dma_alloc() function *********
[   28.415035]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.421029]  ******* In iommu_dma_alloc() function *********
[   28.426682]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.432676]  ******* In iommu_dma_alloc() function *********
[   28.438326]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.444321]  ******* In iommu_dma_alloc() function *********
[   28.449971]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.455965]  ******* In iommu_dma_alloc() function *********
[   28.461616]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.467611]  ******* In iommu_dma_alloc() function *********
[   28.473261]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.479256]  ******* In iommu_dma_alloc() function *********
[   28.484906]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.490902]  ******* In iommu_dma_alloc() function *********
[   28.496552]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.502547]  ******* In iommu_dma_alloc() function *********
[   28.508197]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.514192]  ******* In iommu_dma_alloc() function *********
[   28.519843]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.525838]  ******* In iommu_dma_alloc() function *********
[   28.531488]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.537483]  ******* In iommu_dma_alloc() function *********
[   28.543133]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.549128]  ******* In iommu_dma_alloc() function *********
[   28.554779]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.560774]  ******* In iommu_dma_alloc() function *********
[   28.566424]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.572419]  ******* In iommu_dma_alloc() function *********
[   28.578070]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.584065]  ******* In iommu_dma_alloc() function *********
[   28.589715]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.595710]  ******* In iommu_dma_alloc() function *********
[   28.601360]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.607355]  ******* In iommu_dma_alloc() function *********
[   28.613006]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.619001]  ******* In iommu_dma_alloc() function *********
[   28.624651]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.630647]  ******* In iommu_dma_alloc() function *********
[   28.636297]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.642292]  ******* In iommu_dma_alloc() function *********
[   28.647942]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.653937]  ******* In iommu_dma_alloc() function *********
[   28.659587]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.665582]  ******* In iommu_dma_alloc() function *********
[   28.671233]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.677227]  ******* In iommu_dma_alloc() function *********
[   28.682878]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.688873]  ******* In iommu_dma_alloc() function *********
[   28.694523]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.700519]  ******* In iommu_dma_alloc() function *********
[   28.706169]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.712164]  ******* In iommu_dma_alloc() function *********
[   28.717814]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.723809]  ******* In iommu_dma_alloc() function *********
[   28.729459]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.735455]  ******* In iommu_dma_alloc() function *********
[   28.741105]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.747100]  ******* In iommu_dma_alloc() function *********
[   28.752752]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.758747]  ******* In iommu_dma_alloc() function *********
[   28.764397]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.770391]  ******* In iommu_dma_alloc() function *********
[   28.776041]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.782037]  ******* In iommu_dma_alloc() function *********
[   28.787687]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.793681]  ******* In iommu_dma_alloc() function *********
[   28.799333]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.805328]  ******* In iommu_dma_alloc() function *********
[   28.810978]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.816972]  ******* In iommu_dma_alloc() function *********
[   28.822623]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.828617]  ******* In iommu_dma_alloc() function *********
[   28.834268]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.840262]  ******* In iommu_dma_alloc() function *********
[   28.845913]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.851910]  ******* In iommu_dma_alloc() function *********
[   28.857561]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.863555]  ******* In iommu_dma_alloc() function *********
[   28.869205]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.875200]  ******* In iommu_dma_alloc() function *********
[   28.880850]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.886845]  ******* In iommu_dma_alloc() function *********
[   28.892495]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.898489]  ******* In iommu_dma_alloc() function *********
[   28.904140]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.910135]  ******* In iommu_dma_alloc() function *********
[   28.915785]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.921780]  ******* In iommu_dma_alloc() function *********
[   28.927431]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.933426]  ******* In iommu_dma_alloc() function *********
[   28.939076]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.945071]  ******* In iommu_dma_alloc() function *********
[   28.950722]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.956716]  ******* In iommu_dma_alloc() function *********
[   28.962367]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.968361]  ******* In iommu_dma_alloc() function *********
[   28.974012]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.980007]  ******* In iommu_dma_alloc() function *********
[   28.985658]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   28.991653]  ******* In iommu_dma_alloc() function *********
[   28.997303]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.003298]  ******* In iommu_dma_alloc() function *********
[   29.008949]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.014944]  ******* In iommu_dma_alloc() function *********
[   29.020594]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.026589]  ******* In iommu_dma_alloc() function *********
[   29.032239]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.038234]  ******* In iommu_dma_alloc() function *********
[   29.043884]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.049879]  ******* In iommu_dma_alloc() function *********
[   29.055530]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.061525]  ******* In iommu_dma_alloc() function *********
[   29.067175]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.073170]  ******* In iommu_dma_alloc() function *********
[   29.078820]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.084815]  ******* In iommu_dma_alloc() function *********
[   29.090466]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.096461]  ******* In iommu_dma_alloc() function *********
[   29.102111]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.108106]  ******* In iommu_dma_alloc() function *********
[   29.113756]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.119751]  ******* In iommu_dma_alloc() function *********
[   29.125402]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.131397]  ******* In iommu_dma_alloc() function *********
[   29.137048]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.143043]  ******* In iommu_dma_alloc() function *********
[   29.148693]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.154688]  ******* In iommu_dma_alloc() function *********
[   29.160338]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.166334]  ******* In iommu_dma_alloc() function *********
[   29.171985]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.177980]  ******* In iommu_dma_alloc() function *********
[   29.183630]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.189625]  ******* In iommu_dma_alloc() function *********
[   29.195275]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.201270]  ******* In iommu_dma_alloc() function *********
[   29.206920]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.212915]  ******* In iommu_dma_alloc() function *********
[   29.218565]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.224560]  ******* In iommu_dma_alloc() function *********
[   29.230210]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.236205]  ******* In iommu_dma_alloc() function *********
[   29.241856]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.247851]  ******* In iommu_dma_alloc() function *********
[   29.253501]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.259496]  ******* In iommu_dma_alloc() function *********
[   29.265146]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.271141]  ******* In iommu_dma_alloc() function *********
[   29.276792]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.282787]  ******* In iommu_dma_alloc() function *********
[   29.288437]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.294432]  ******* In iommu_dma_alloc() function *********
[   29.300083]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.306077]  ******* In iommu_dma_alloc() function *********
[   29.311728]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.317723]  ******* In iommu_dma_alloc() function *********
[   29.323373]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.329369]  ******* In iommu_dma_alloc() function *********
[   29.335025]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.341020]  ******* In iommu_dma_alloc() function *********
[   29.346671]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.352666]  ******* In iommu_dma_alloc() function *********
[   29.358317]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.364315]  ******* In iommu_dma_alloc() function *********
[   29.369965]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.375960]  ******* In iommu_dma_alloc() function *********
[   29.381610]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.387605]  ******* In iommu_dma_alloc() function *********
[   29.393254]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.399249]  ******* In iommu_dma_alloc() function *********
[   29.404899]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.410894]  ******* In iommu_dma_alloc() function *********
[   29.416547]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.422542]  ******* In iommu_dma_alloc() function *********
[   29.428192]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.434187]  ******* In iommu_dma_alloc() function *********
[   29.439837]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.445832]  ******* In iommu_dma_alloc() function *********
[   29.451482]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.457477]  ******* In iommu_dma_alloc() function *********
[   29.463127]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.469122]  ******* In iommu_dma_alloc() function *********
[   29.474773]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.480767]  ******* In iommu_dma_alloc() function *********
[   29.486417]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.492412]  ******* In iommu_dma_alloc() function *********
[   29.498062]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.504057]  ******* In iommu_dma_alloc() function *********
[   29.509708]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.515703]  ******* In iommu_dma_alloc() function *********
[   29.521353]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.527348]  ******* In iommu_dma_alloc() function *********
[   29.532998]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.538993]  ******* In iommu_dma_alloc() function *********
[   29.544645]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.550640]  ******* In iommu_dma_alloc() function *********
[   29.556291]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.562286]  ******* In iommu_dma_alloc() function *********
[   29.567936]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.573931]  ******* In iommu_dma_alloc() function *********
[   29.579581]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.585576]  ******* In iommu_dma_alloc() function *********
[   29.591225]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.597220]  ******* In iommu_dma_alloc() function *********
[   29.602870]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.608865]  ******* In iommu_dma_alloc() function *********
[   29.614515]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.620510]  ******* In iommu_dma_alloc() function *********
[   29.626161]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.632155]  ******* In iommu_dma_alloc() function *********
[   29.637806]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.643801]  ******* In iommu_dma_alloc() function *********
[   29.649452]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.655446]  ******* In iommu_dma_alloc() function *********
[   29.661097]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.667092]  ******* In iommu_dma_alloc() function *********
[   29.672742]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.678737]  ******* In iommu_dma_alloc() function *********
[   29.684388]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.690382]  ******* In iommu_dma_alloc() function *********
[   29.696033]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.702028]  ******* In iommu_dma_alloc() function *********
[   29.707678]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.713673]  ******* In iommu_dma_alloc() function *********
[   29.719324]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.725319]  ******* In iommu_dma_alloc() function *********
[   29.730970]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.736965]  ******* In iommu_dma_alloc() function *********
[   29.742615]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.748610]  ******* In iommu_dma_alloc() function *********
[   29.754260]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.760256]  ******* In iommu_dma_alloc() function *********
[   29.765905]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.771900]  ******* In iommu_dma_alloc() function *********
[   29.777551]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.783546]  ******* In iommu_dma_alloc() function *********
[   29.789196]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.795191]  ******* In iommu_dma_alloc() function *********
[   29.800842]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.806837]  ******* In iommu_dma_alloc() function *********
[   29.812488]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.818483]  ******* In iommu_dma_alloc() function *********
[   29.824133]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.830128]  ******* In iommu_dma_alloc() function *********
[   29.835778]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.841774]  ******* In iommu_dma_alloc() function *********
[   29.847424]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.853419]  ******* In iommu_dma_alloc() function *********
[   29.859069]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.865064]  ******* In iommu_dma_alloc() function *********
[   29.870714]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.876712]  ******* In iommu_dma_alloc() function *********
[   29.882363]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.888357]  ******* In iommu_dma_alloc() function *********
[   29.894008]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.900002]  ******* In iommu_dma_alloc() function *********
[   29.905653]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.911648]  ******* In iommu_dma_alloc() function *********
[   29.917300]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.923295]  ******* In iommu_dma_alloc() function *********
[   29.928945]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.934940]  ******* In iommu_dma_alloc() function *********
[   29.940590]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.946585]  ******* In iommu_dma_alloc() function *********
[   29.952235]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.958230]  ******* In iommu_dma_alloc() function *********
[   29.963880]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.969875]  ******* In iommu_dma_alloc() function *********
[   29.975525]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.981520]  ******* In iommu_dma_alloc() function *********
[   29.987170]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   29.993165]  ******* In iommu_dma_alloc() function *********
[   29.998815]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.004811]  ******* In iommu_dma_alloc() function *********
[   30.010461]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.016456]  ******* In iommu_dma_alloc() function *********
[   30.022107]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.028101]  ******* In iommu_dma_alloc() function *********
[   30.033752]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.039747]  ******* In iommu_dma_alloc() function *********
[   30.045397]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.051392]  ******* In iommu_dma_alloc() function *********
[   30.057042]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.063037]  ******* In iommu_dma_alloc() function *********
[   30.068687]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.074682]  ******* In iommu_dma_alloc() function *********
[   30.080332]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.086327]  ******* In iommu_dma_alloc() function *********
[   30.091980]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.097975]  ******* In iommu_dma_alloc() function *********
[   30.103626]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.109621]  ******* In iommu_dma_alloc() function *********
[   30.115272]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.121267]  ******* In iommu_dma_alloc() function *********
[   30.126917]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.132912]  ******* In iommu_dma_alloc() function *********
[   30.138562]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.144556]  ******* In iommu_dma_alloc() function *********
[   30.150206]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.156201]  ******* In iommu_dma_alloc() function *********
[   30.161852]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.167847]  ******* In iommu_dma_alloc() function *********
[   30.173498]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.179492]  ******* In iommu_dma_alloc() function *********
[   30.185142]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.191137]  ******* In iommu_dma_alloc() function *********
[   30.196787]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.202782]  ******* In iommu_dma_alloc() function *********
[   30.208431]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.214426]  ******* In iommu_dma_alloc() function *********
[   30.220076]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.226071]  ******* In iommu_dma_alloc() function *********
[   30.231721]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.237716]  ******* In iommu_dma_alloc() function *********
[   30.243366]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.249361]  ******* In iommu_dma_alloc() function *********
[   30.255011]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.261006]  ******* In iommu_dma_alloc() function *********
[   30.266656]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.272651]  ******* In iommu_dma_alloc() function *********
[   30.278302]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.284297]  ******* In iommu_dma_alloc() function *********
[   30.289950]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.295946]  ******* In iommu_dma_alloc() function *********
[   30.301600]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.307595]  ******* In iommu_dma_alloc() function *********
[   30.313246]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.319241]  ******* In iommu_dma_alloc() function *********
[   30.324891]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.330886]  ******* In iommu_dma_alloc() function *********
[   30.336536]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.342531]  ******* In iommu_dma_alloc() function *********
[   30.348181]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.354176]  ******* In iommu_dma_alloc() function *********
[   30.359833]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.365828]  ******* In iommu_dma_alloc() function *********
[   30.371479]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.377474]  ******* In iommu_dma_alloc() function *********
[   30.383126]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.389122]  ******* In iommu_dma_alloc() function *********
[   30.394772]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.400766]  ******* In iommu_dma_alloc() function *********
[   30.406417]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.412411]  ******* In iommu_dma_alloc() function *********
[   30.418062]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.424057]  ******* In iommu_dma_alloc() function *********
[   30.429707]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.435702]  ******* In iommu_dma_alloc() function *********
[   30.441352]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.447347]  ******* In iommu_dma_alloc() function *********
[   30.452998]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.458993]  ******* In iommu_dma_alloc() function *********
[   30.464643]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.470639]  ******* In iommu_dma_alloc() function *********
[   30.476290]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.482284]  ******* In iommu_dma_alloc() function *********
[   30.487934]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.493929]  ******* In iommu_dma_alloc() function *********
[   30.499579]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.505574]  ******* In iommu_dma_alloc() function *********
[   30.511225]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.517220]  ******* In iommu_dma_alloc() function *********
[   30.522870]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.528865]  ******* In iommu_dma_alloc() function *********
[   30.534515]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.540510]  ******* In iommu_dma_alloc() function *********
[   30.546161]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.552156]  ******* In iommu_dma_alloc() function *********
[   30.557806]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.563801]  ******* In iommu_dma_alloc() function *********
[   30.569452]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.575447]  ******* In iommu_dma_alloc() function *********
[   30.581097]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.587092]  ******* In iommu_dma_alloc() function *********
[   30.592742]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.598737]  ******* In iommu_dma_alloc() function *********
[   30.604387]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.610383]  ******* In iommu_dma_alloc() function *********
[   30.616033]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.622028]  ******* In iommu_dma_alloc() function *********
[   30.627678]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.633673]  ******* In iommu_dma_alloc() function *********
[   30.639324]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.645319]  ******* In iommu_dma_alloc() function *********
[   30.650969]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.656964]  ******* In iommu_dma_alloc() function *********
[   30.662617]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.668611]  ******* In iommu_dma_alloc() function *********
[   30.674261]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.680256]  ******* In iommu_dma_alloc() function *********
[   30.685906]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.691901]  ******* In iommu_dma_alloc() function *********
[   30.697551]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.703546]  ******* In iommu_dma_alloc() function *********
[   30.709196]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.715191]  ******* In iommu_dma_alloc() function *********
[   30.720841]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.726836]  ******* In iommu_dma_alloc() function *********
[   30.732489]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.738483]  ******* In iommu_dma_alloc() function *********
[   30.744133]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.750128]  ******* In iommu_dma_alloc() function *********
[   30.755778]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.761773]  ******* In iommu_dma_alloc() function *********
[   30.767423]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.773418]  ******* In iommu_dma_alloc() function *********
[   30.779068]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.785063]  ******* In iommu_dma_alloc() function *********
[   30.790713]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.796708]  ******* In iommu_dma_alloc() function *********
[   30.802359]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.808353]  ******* In iommu_dma_alloc() function *********
[   30.814003]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.819998]  ******* In iommu_dma_alloc() function *********
[   30.825649]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.831644]  ******* In iommu_dma_alloc() function *********
[   30.837295]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.843290]  ******* In iommu_dma_alloc() function *********
[   30.848941]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.854936]  ******* In iommu_dma_alloc() function *********
[   30.860586]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.866580]  ******* In iommu_dma_alloc() function *********
[   30.872231]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.878226]  ******* In iommu_dma_alloc() function *********
[   30.883876]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.889871]  ******* In iommu_dma_alloc() function *********
[   30.895523]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.901519]  ******* In iommu_dma_alloc() function *********
[   30.907169]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.913164]  ******* In iommu_dma_alloc() function *********
[   30.918813]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.924808]  ******* In iommu_dma_alloc() function *********
[   30.930458]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.936454]  ******* In iommu_dma_alloc() function *********
[   30.942104]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.948099]  ******* In iommu_dma_alloc() function *********
[   30.953749]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.959744]  ******* In iommu_dma_alloc() function *********
[   30.965394]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.971389]  ******* In iommu_dma_alloc() function *********
[   30.977039]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.983035]  ******* In iommu_dma_alloc() function *********
[   30.988685]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   30.994681]  ******* In iommu_dma_alloc() function *********
[   31.000331]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.006325]  ******* In iommu_dma_alloc() function *********
[   31.011975]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.017970]  ******* In iommu_dma_alloc() function *********
[   31.023621]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.029616]  ******* In iommu_dma_alloc() function *********
[   31.035268]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.041262]  ******* In iommu_dma_alloc() function *********
[   31.046912]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.052907]  ******* In iommu_dma_alloc() function *********
[   31.058557]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.064552]  ******* In iommu_dma_alloc() function *********
[   31.070202]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.076197]  ******* In iommu_dma_alloc() function *********
[   31.081848]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.087843]  ******* In iommu_dma_alloc() function *********
[   31.093493]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.099488]  ******* In iommu_dma_alloc() function *********
[   31.105139]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.111133]  ******* In iommu_dma_alloc() function *********
[   31.116784]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.122779]  ******* In iommu_dma_alloc() function *********
[   31.128429]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.134424]  ******* In iommu_dma_alloc() function *********
[   31.140075]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.146069]  ******* In iommu_dma_alloc() function *********
[   31.151720]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.157715]  ******* In iommu_dma_alloc() function *********
[   31.163365]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.169361]  ******* In iommu_dma_alloc() function *********
[   31.175011]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.181006]  ******* In iommu_dma_alloc() function *********
[   31.186656]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.192652]  ******* In iommu_dma_alloc() function *********
[   31.198302]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.204297]  ******* In iommu_dma_alloc() function *********
[   31.209947]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.215942]  ******* In iommu_dma_alloc() function *********
[   31.221593]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.227588]  ******* In iommu_dma_alloc() function *********
[   31.233238]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.239233]  ******* In iommu_dma_alloc() function *********
[   31.244883]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.250878]  ******* In iommu_dma_alloc() function *********
[   31.256528]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.262523]  ******* In iommu_dma_alloc() function *********
[   31.268174]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.274169]  ******* In iommu_dma_alloc() function *********
[   31.279819]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.285814]  ******* In iommu_dma_alloc() function *********
[   31.291465]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.297459]  ******* In iommu_dma_alloc() function *********
[   31.303110]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.309105]  ******* In iommu_dma_alloc() function *********
[   31.314755]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.320750]  ******* In iommu_dma_alloc() function *********
[   31.326400]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.332395]  ******* In iommu_dma_alloc() function *********
[   31.338046]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.344041]  ******* In iommu_dma_alloc() function *********
[   31.349691]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.355686]  ******* In iommu_dma_alloc() function *********
[   31.361337]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.367332]  ******* In iommu_dma_alloc() function *********
[   31.372982]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.378983]  ******* In iommu_dma_alloc() function *********
[   31.384633]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.390628]  ******* In iommu_dma_alloc() function *********
[   31.396279]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.402274]  ******* In iommu_dma_alloc() function *********
[   31.407930]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.413926]  ******* In iommu_dma_alloc() function *********
[   31.419577]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.425571]  ******* In iommu_dma_alloc() function *********
[   31.431221]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.437215]  ******* In iommu_dma_alloc() function *********
[   31.442865]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.448860]  ******* In iommu_dma_alloc() function *********
[   31.454510]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.460505]  ******* In iommu_dma_alloc() function *********
[   31.466155]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.472150]  ******* In iommu_dma_alloc() function *********
[   31.477800]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.483795]  ******* In iommu_dma_alloc() function *********
[   31.489445]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.495440]  ******* In iommu_dma_alloc() function *********
[   31.501090]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.507085]  ******* In iommu_dma_alloc() function *********
[   31.512735]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.518729]  ******* In iommu_dma_alloc() function *********
[   31.524380]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.530375]  ******* In iommu_dma_alloc() function *********
[   31.536025]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.542021]  ******* In iommu_dma_alloc() function *********
[   31.547671]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.553665]  ******* In iommu_dma_alloc() function *********
[   31.559316]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.565310]  ******* In iommu_dma_alloc() function *********
[   31.570961]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.576956]  ******* In iommu_dma_alloc() function *********
[   31.582607]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.588602]  ******* In iommu_dma_alloc() function *********
[   31.594253]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.600248]  ******* In iommu_dma_alloc() function *********
[   31.605898]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.611893]  ******* In iommu_dma_alloc() function *********
[   31.617543]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.623537]  ******* In iommu_dma_alloc() function *********
[   31.629188]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.635182]  ******* In iommu_dma_alloc() function *********
[   31.640833]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.646829]  ******* In iommu_dma_alloc() function *********
[   31.652479]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.658474]  ******* In iommu_dma_alloc() function *********
[   31.664124]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.670119]  ******* In iommu_dma_alloc() function *********
[   31.675770]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.681765]  ******* In iommu_dma_alloc() function *********
[   31.687415]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.693410]  ******* In iommu_dma_alloc() function *********
[   31.699060]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.705055]  ******* In iommu_dma_alloc() function *********
[   31.710705]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.716700]  ******* In iommu_dma_alloc() function *********
[   31.722351]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.728346]  ******* In iommu_dma_alloc() function *********
[   31.733996]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.739991]  ******* In iommu_dma_alloc() function *********
[   31.745642]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.751637]  ******* In iommu_dma_alloc() function *********
[   31.757287]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.763282]  ******* In iommu_dma_alloc() function *********
[   31.768932]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.774927]  ******* In iommu_dma_alloc() function *********
[   31.780579]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.786574]  ******* In iommu_dma_alloc() function *********
[   31.792224]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.798219]  ******* In iommu_dma_alloc() function *********
[   31.803870]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.809864]  ******* In iommu_dma_alloc() function *********
[   31.815514]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.821509]  ******* In iommu_dma_alloc() function *********
[   31.827159]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.833154]  ******* In iommu_dma_alloc() function *********
[   31.838805]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.844799]  ******* In iommu_dma_alloc() function *********
[   31.850449]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.856444]  ******* In iommu_dma_alloc() function *********
[   31.862094]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.868089]  ******* In iommu_dma_alloc() function *********
[   31.873739]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.879734]  ******* In iommu_dma_alloc() function *********
[   31.885383]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.891378]  ******* In iommu_dma_alloc() function *********
[   31.897028]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.903023]  ******* In iommu_dma_alloc() function *********
[   31.908673]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.914668]  ******* In iommu_dma_alloc() function *********
[   31.920319]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.926315]  ******* In iommu_dma_alloc() function *********
[   31.931965]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.937960]  ******* In iommu_dma_alloc() function *********
[   31.943610]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.949605]  ******* In iommu_dma_alloc() function *********
[   31.955255]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.961250]  ******* In iommu_dma_alloc() function *********
[   31.966901]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.972896]  ******* In iommu_dma_alloc() function *********
[   31.978546]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.984541]  ******* In iommu_dma_alloc() function *********
[   31.990192]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   31.996187]  ******* In iommu_dma_alloc() function *********
[   32.001836]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.007832]  ******* In iommu_dma_alloc() function *********
[   32.013482]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.019477]  ******* In iommu_dma_alloc() function *********
[   32.025127]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.031122]  ******* In iommu_dma_alloc() function *********
[   32.036773]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.042768]  ******* In iommu_dma_alloc() function *********
[   32.048417]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.054412]  ******* In iommu_dma_alloc() function *********
[   32.060062]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.066057]  ******* In iommu_dma_alloc() function *********
[   32.071707]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.077702]  ******* In iommu_dma_alloc() function *********
[   32.083354]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.089349]  ******* In iommu_dma_alloc() function *********
[   32.094998]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.100993]  ******* In iommu_dma_alloc() function *********
[   32.106643]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.112638]  ******* In iommu_dma_alloc() function *********
[   32.118288]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.124283]  ******* In iommu_dma_alloc() function *********
[   32.129932]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.135927]  ******* In iommu_dma_alloc() function *********
[   32.141577]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.147572]  ******* In iommu_dma_alloc() function *********
[   32.153223]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.159218]  ******* In iommu_dma_alloc() function *********
[   32.164869]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.170864]  ******* In iommu_dma_alloc() function *********
[   32.176513]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.182508]  ******* In iommu_dma_alloc() function *********
[   32.188158]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.194153]  ******* In iommu_dma_alloc() function *********
[   32.199803]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.205798]  ******* In iommu_dma_alloc() function *********
[   32.211449]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.217444]  ******* In iommu_dma_alloc() function *********
[   32.223094]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.229089]  ******* In iommu_dma_alloc() function *********
[   32.234739]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.240735]  ******* In iommu_dma_alloc() function *********
[   32.246385]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.252380]  ******* In iommu_dma_alloc() function *********
[   32.258030]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.264025]  ******* In iommu_dma_alloc() function *********
[   32.269676]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.275670]  ******* In iommu_dma_alloc() function *********
[   32.281321]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.287316]  ******* In iommu_dma_alloc() function *********
[   32.292966]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.298961]  ******* In iommu_dma_alloc() function *********
[   32.304612]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.310607]  ******* In iommu_dma_alloc() function *********
[   32.316257]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.322252]  ******* In iommu_dma_alloc() function *********
[   32.327902]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.333897]  ******* In iommu_dma_alloc() function *********
[   32.339549]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.345543]  ******* In iommu_dma_alloc() function *********
[   32.351194]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.357188]  ******* In iommu_dma_alloc() function *********
[   32.362839]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.368834]  ******* In iommu_dma_alloc() function *********
[   32.374484]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.380479]  ******* In iommu_dma_alloc() function *********
[   32.386130]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.392124]  ******* In iommu_dma_alloc() function *********
[   32.397774]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.403775]  ******* In iommu_dma_alloc() function *********
[   32.409426]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.415421]  ******* In iommu_dma_alloc() function *********
[   32.421071]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.427066]  ******* In iommu_dma_alloc() function *********
[   32.432717]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.438713]  ******* In iommu_dma_alloc() function *********
[   32.444364]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.450359]  ******* In iommu_dma_alloc() function *********
[   32.456009]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.462004]  ******* In iommu_dma_alloc() function *********
[   32.467655]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.473650]  ******* In iommu_dma_alloc() function *********
[   32.479300]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.485295]  ******* In iommu_dma_alloc() function *********
[   32.490945]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.496940]  ******* In iommu_dma_alloc() function *********
[   32.502591]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.508585]  ******* In iommu_dma_alloc() function *********
[   32.514236]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.520231]  ******* In iommu_dma_alloc() function *********
[   32.525883]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.531878]  ******* In iommu_dma_alloc() function *********
[   32.537529]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.543523]  ******* In iommu_dma_alloc() function *********
[   32.549173]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.555168]  ******* In iommu_dma_alloc() function *********
[   32.560818]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.566813]  ******* In iommu_dma_alloc() function *********
[   32.572463]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.578458]  ******* In iommu_dma_alloc() function *********
[   32.584109]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.590104]  ******* In iommu_dma_alloc() function *********
[   32.595754]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.601749]  ******* In iommu_dma_alloc() function *********
[   32.607399]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.613395]  ******* In iommu_dma_alloc() function *********
[   32.619045]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.625040]  ******* In iommu_dma_alloc() function *********
[   32.630690]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.636685]  ******* In iommu_dma_alloc() function *********
[   32.642335]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.648330]  ******* In iommu_dma_alloc() function *********
[   32.653980]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.659976]  ******* In iommu_dma_alloc() function *********
[   32.665626]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.671621]  ******* In iommu_dma_alloc() function *********
[   32.677272]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.683266]  ******* In iommu_dma_alloc() function *********
[   32.688917]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.694911]  ******* In iommu_dma_alloc() function *********
[   32.700561]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.706556]  ******* In iommu_dma_alloc() function *********
[   32.712207]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.718202]  ******* In iommu_dma_alloc() function *********
[   32.723853]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.729848]  ******* In iommu_dma_alloc() function *********
[   32.735498]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.741493]  ******* In iommu_dma_alloc() function *********
[   32.747145]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.753140]  ******* In iommu_dma_alloc() function *********
[   32.758790]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.764785]  ******* In iommu_dma_alloc() function *********
[   32.770435]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.776430]  ******* In iommu_dma_alloc() function *********
[   32.782080]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.788075]  ******* In iommu_dma_alloc() function *********
[   32.793725]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.799720]  ******* In iommu_dma_alloc() function *********
[   32.805370]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.811365]  ******* In iommu_dma_alloc() function *********
[   32.817016]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.823012]  ******* In iommu_dma_alloc() function *********
[   32.828662]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.834657]  ******* In iommu_dma_alloc() function *********
[   32.840307]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.846302]  ******* In iommu_dma_alloc() function *********
[   32.851952]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.857947]  ******* In iommu_dma_alloc() function *********
[   32.863598]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.869593]  ******* In iommu_dma_alloc() function *********
[   32.875243]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.881238]  ******* In iommu_dma_alloc() function *********
[   32.886888]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.892883]  ******* In iommu_dma_alloc() function *********
[   32.898535]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.904530]  ******* In iommu_dma_alloc() function *********
[   32.910179]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.916175]  ******* In iommu_dma_alloc() function *********
[   32.921825]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.927820]  ******* In iommu_dma_alloc() function *********
[   32.933470]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.939465]  ******* In iommu_dma_alloc() function *********
[   32.945117]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.951113]  ******* In iommu_dma_alloc() function *********
[   32.956763]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.962757]  ******* In iommu_dma_alloc() function *********
[   32.968407]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.974402]  ******* In iommu_dma_alloc() function *********
[   32.980051]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.986046]  ******* In iommu_dma_alloc() function *********
[   32.991697]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   32.997691]  ******* In iommu_dma_alloc() function *********
[   33.003342]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.009338]  ******* In iommu_dma_alloc() function *********
[   33.014988]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.020983]  ******* In iommu_dma_alloc() function *********
[   33.026633]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.032628]  ******* In iommu_dma_alloc() function *********
[   33.038279]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.044273]  ******* In iommu_dma_alloc() function *********
[   33.049924]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.055918]  ******* In iommu_dma_alloc() function *********
[   33.061569]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.067563]  ******* In iommu_dma_alloc() function *********
[   33.073214]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.079209]  ******* In iommu_dma_alloc() function *********
[   33.084860]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.090855]  ******* In iommu_dma_alloc() function *********
[   33.096505]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.102500]  ******* In iommu_dma_alloc() function *********
[   33.108150]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.114145]  ******* In iommu_dma_alloc() function *********
[   33.119795]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.125790]  ******* In iommu_dma_alloc() function *********
[   33.131441]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.137436]  ******* In iommu_dma_alloc() function *********
[   33.143086]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.149081]  ******* In iommu_dma_alloc() function *********
[   33.154732]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.160726]  ******* In iommu_dma_alloc() function *********
[   33.166377]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.172372]  ******* In iommu_dma_alloc() function *********
[   33.178022]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.184017]  ******* In iommu_dma_alloc() function *********
[   33.189668]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.195663]  ******* In iommu_dma_alloc() function *********
[   33.201313]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.207308]  ******* In iommu_dma_alloc() function *********
[   33.212959]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.218953]  ******* In iommu_dma_alloc() function *********
[   33.224604]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.230599]  ******* In iommu_dma_alloc() function *********
[   33.236250]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.242245]  ******* In iommu_dma_alloc() function *********
[   33.247896]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.253891]  ******* In iommu_dma_alloc() function *********
[   33.259541]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.265535]  ******* In iommu_dma_alloc() function *********
[   33.271187]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.277182]  ******* In iommu_dma_alloc() function *********
[   33.283787] i40e 0000:01:00.3: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   33.576149]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.582145]  ******* In iommu_dma_alloc() function *********
[   33.587922] i40e 0000:01:00.3: MAC address: 3c:fd:fe:6b:e9:c3
[   33.593809] i40e 0000:01:00.3: FW LLDP is enabled
[   33.605044]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.611043]  ******* In iommu_dma_alloc() function *********
[   33.616698]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.622693]  ******* In iommu_dma_alloc() function *********
[   33.628515] i40e 0000:01:00.3: PCI-Express: Speed 8.0GT/s Width x8
[   33.635825] i40e 0000:01:00.3: Features: PF-id[3] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   33.645957] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   33.652484] ehci-pci: EHCI PCI platform driver
[   33.656954]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.663471]  ******* In dma_alloc_direct() function *********
[   33.669277] xhci_hcd 000d:01:00.2: Adding to iommu group 7
[   33.674758]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.681275]  ******* In dma_alloc_direct() function *********
[   33.687296] xhci_hcd 000d:01:00.2: enabling device (0000 -> 0002)
[   33.693420] xhci_hcd 000d:01:00.2: xHCI Host Controller
[   33.698641] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 1
[   33.706576]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.712571]  ******* In iommu_dma_alloc() function *********
[   33.718233]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.724228]  ******* In iommu_dma_alloc() function *********
[   33.729883]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.735878]  ******* In iommu_dma_alloc() function *********
[   33.741530]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.747525]  ******* In iommu_dma_alloc() function *********
[   33.753177]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.759172]  ******* In iommu_dma_alloc() function *********
[   33.764840]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.770836]  ******* In iommu_dma_alloc() function *********
[   33.776487]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.782482]  ******* In iommu_dma_alloc() function *********
[   33.788132]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.794128]  ******* In iommu_dma_alloc() function *********
[   33.799778]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.805772]  ******* In iommu_dma_alloc() function *********
[   33.811446] xhci_hcd 000d:01:00.2: hcc params 0x0180ff05 hci version 0x110 quirks 0x0000000000000010
[   33.820908] hub 1-0:1.0: USB hub found
[   33.824660] hub 1-0:1.0: 2 ports detected
[   33.828793] xhci_hcd 000d:01:00.2: xHCI Host Controller
[   33.834011] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 2
[   33.841399] xhci_hcd 000d:01:00.2: Host supports USB 3.1 Enhanced SuperSpeed
[   33.848460] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[   33.856657] hub 2-0:1.0: USB hub found
[   33.860409] hub 2-0:1.0: 4 ports detected
[   33.864577]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.871103]  ******* In dma_alloc_direct() function *********
[   33.876886] xhci_hcd 0004:03:00.0: Adding to iommu group 8
[   33.882366]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.888883]  ******* In dma_alloc_direct() function *********
[   33.894928] xhci_hcd 0004:03:00.0: xHCI Host Controller
[   33.900149] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 3
[   33.907551] xhci_hcd 0004:03:00.0: Zeroing 64bit base registers, expecting fault
[   33.914996] xhci_hcd 0004:03:00.0: Fault detected
[   33.915003] arm-smmu-v3 arm-smmu-v3.3.auto: event 0x10 received:
[   33.924967]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.925698] arm-smmu-v3 arm-smmu-v3.3.auto: 	0x0000030000000010
[   33.931690]  ******* In iommu_dma_alloc() function *********
[   33.937599] arm-smmu-v3 arm-smmu-v3.3.auto: 	0x0000020800000000
[   33.943261]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.949155] arm-smmu-v3 arm-smmu-v3.3.auto: 	0x0000000000000000
[   33.955149]  ******* In iommu_dma_alloc() function *********
[   33.955159]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.961060] arm-smmu-v3 arm-smmu-v3.3.auto: 	0x0000000000000000
[   33.966706]  ******* In iommu_dma_alloc() function *********
[   33.966713]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   33.990253]  ******* In iommu_dma_alloc() function *********
[   33.995905]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.001901]  ******* In iommu_dma_alloc() function *********
[   34.007568]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.013563]  ******* In iommu_dma_alloc() function *********
[   34.019213]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.025208]  ******* In iommu_dma_alloc() function *********
[   34.030858]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.036854]  ******* In iommu_dma_alloc() function *********
[   34.042504]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.048499]  ******* In iommu_dma_alloc() function *********
[   34.054150]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.060145]  ******* In iommu_dma_alloc() function *********
[   34.065830] xhci_hcd 0004:03:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[   34.076884] hub 3-0:1.0: USB hub found
[   34.080639] hub 3-0:1.0: 4 ports detected
[   34.084819] xhci_hcd 0004:03:00.0: xHCI Host Controller
[   34.090037] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 4
[   34.097434] xhci_hcd 0004:03:00.0: Host supports USB 3.0 SuperSpeed
[   34.103719] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[   34.111925] hub 4-0:1.0: USB hub found
[   34.115677] hub 4-0:1.0: 4 ports detected
[   34.119834]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.126355]  ******* In dma_alloc_direct() function *********
[   34.132141] xhci_hcd 0005:02:00.0: Adding to iommu group 9
[   34.137622]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.144138]  ******* In dma_alloc_direct() function *********
[   34.150145] xhci_hcd 0005:02:00.0: xHCI Host Controller
[   34.155367] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 5
[   34.162769] xhci_hcd 0005:02:00.0: Zeroing 64bit base registers, expecting fault
[   34.170205] arm-smmu-v3 arm-smmu-v3.4.auto: event 0x10 received:
[   34.170212] xhci_hcd 0005:02:00.0: Fault detected
[   34.176211] arm-smmu-v3 arm-smmu-v3.4.auto: 	0x0000020000000010
[   34.186807] arm-smmu-v3 arm-smmu-v3.4.auto: 	0x0000020800000000
[   34.192715] arm-smmu-v3 arm-smmu-v3.4.auto: 	0x0000000000000000
[   34.198625] arm-smmu-v3 arm-smmu-v3.4.auto: 	0x0000000000000000
[   34.291787]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.297783]  ******* In iommu_dma_alloc() function *********
[   34.303445]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.309447]  ******* In iommu_dma_alloc() function *********
[   34.315104]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.321099]  ******* In iommu_dma_alloc() function *********
[   34.326752]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.332747]  ******* In iommu_dma_alloc() function *********
[   34.338400]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.344395]  ******* In iommu_dma_alloc() function *********
[   34.350061]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.356056]  ******* In iommu_dma_alloc() function *********
[   34.361709]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.367704]  ******* In iommu_dma_alloc() function *********
[   34.373354]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.379349]  ******* In iommu_dma_alloc() function *********
[   34.384999]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.390995]  ******* In iommu_dma_alloc() function *********
[   34.396645]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.402640]  ******* In iommu_dma_alloc() function *********
[   34.408324] xhci_hcd 0005:02:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[   34.418248] hub 5-0:1.0: USB hub found
[   34.422002] hub 5-0:1.0: 4 ports detected
[   34.426185] xhci_hcd 0005:02:00.0: xHCI Host Controller
[   34.431404] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 6
[   34.438791] xhci_hcd 0005:02:00.0: Host supports USB 3.0 SuperSpeed
[   34.445101] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[   34.453302] hub 6-0:1.0: USB hub found
[   34.457054] hub 6-0:1.0: 4 ports detected
[   34.461490] usbcore: registered new interface driver usb-storage
[   34.468380] rtc-efi rtc-efi.0: registered as rtc0
[   34.473516] rtc-efi rtc-efi.0: setting system clock to 2022-04-14T10:37:49 UTC (1649932669)
[   34.482025] sbsa-gwdt sbsa-gwdt.0: Initialized with 10s timeout @ 25000000 Hz, action=0.
[   34.490293] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[   34.499827] pstore: Registered efi as persistent store backend
[   34.505676] SMCCC: SOC_ID: ID = jep106:0a16:0001 Revision = 0x000000a1
[   34.512306] usbcore: registered new interface driver usbhid
[   34.517868] usbhid: USB HID core driver
[   34.519455]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.521725] u32 classifier
[   34.527687]  ******* In iommu_dma_alloc() function *********
[   34.527699]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.530382]     input device check on
[   34.530384]     Actions configured
[   34.536038]  ******* In iommu_dma_alloc() function *********
[   34.542414] NET: Registered protocol family 10
[   34.545681]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.549455] Segment Routing with IPv6
[   34.554717]  ******* In iommu_dma_alloc() function *********
[   34.554724]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.559180] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[   34.565158]  ******* In iommu_dma_alloc() function *********
[   34.592150] NET: Registered protocol family 17
[   34.596603] Bridge firewalling registered
[   34.600629] Key type dns_resolver registered
[   34.604954] NET: Registered protocol family 40
[   34.609520] Key type ._fscrypt registered
[   34.613522] Key type .fscrypt registered
[   34.617434] Key type fscrypt-provisioning registered
[   34.622613] Btrfs loaded, crc32c=crc32c-generic
[   34.627227] pstore: Using crash dump compression: deflate
[   34.633528] Key type encrypted registered
[   34.637803] BERT: Error records from previous boot:
[   34.642674] [Hardware Error]: event severity: recoverable
[   34.648063] [Hardware Error]:  Error 0, type: fatal
[   34.652931] [Hardware Error]:   section type: unknown, e8ed898d-df16-43cc-8ecc-54f060ef157f
[   34.661270] [Hardware Error]:   section length: 0x31
[   34.666226] [Hardware Error]:   00000000: 0000007f 6e6b6e55 206e776f 6f626572  ....Unknown rebo
[   34.671210]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.674913] [Hardware Error]:   00000010: 7220746f 6f736165 0000006e 00000000  ot reason.......
[   34.674916] [Hardware Error]:   00000020: 00000000 00000000 00000000 00000000  ................
[   34.674917] [Hardware Error]:   00000030: 11                                               .
[   34.706720] usb 3-4: new high-speed USB device number 2 using xhci_hcd
[   34.706727]  ******* In iommu_dma_alloc() function *********
[   34.706737]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.713253] printk: console [netcon0] enabled
[   34.718911]  ******* In iommu_dma_alloc() function *********
[   34.724897] netconsole: network logging started
[   34.739428]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.745426]  ******* In iommu_dma_alloc() function *********
[   34.751079]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.751094] md: Waiting for all devices to be available before autodetect
[   34.757076]  ******* In iommu_dma_alloc() function *********
[   34.763853] md: If you don't use raid, use raid=noautodetect
[   34.775147] md: Autodetecting RAID arrays.
[   34.779233] md: autorun ...
[   34.782014] md: ... autorun DONE.
[   34.785359] Waiting for root device /dev/sda2...
[   34.891639]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.897642]  ******* In iommu_dma_alloc() function *********
[   34.903298]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.909301]  ******* In iommu_dma_alloc() function *********
[   34.914958] usb 6-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[   34.923975]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.929974]  ******* In iommu_dma_alloc() function *********
[   34.947566] hub 3-4:1.0: USB hub found
[   34.951719] hub 3-4:1.0: 5 ports detected
[   34.964375]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.970376]  ******* In iommu_dma_alloc() function *********
[   34.976030]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.982037]  ******* In iommu_dma_alloc() function *********
[   34.987696]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   34.993734]  ******* In iommu_dma_alloc() function *********
[   34.999388]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.005383]  ******* In iommu_dma_alloc() function *********
[   35.013372]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.019371]  ******* In iommu_dma_alloc() function *********
[   35.035074] usb-storage 6-1:1.0: USB Mass Storage device detected
[   35.041314]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.047310]  ******* In iommu_dma_alloc() function *********
[   35.053022] scsi host0: usb-storage 6-1:1.0
[   35.211981]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.217979]  ******* In iommu_dma_alloc() function *********
[   35.223635]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.229630]  ******* In iommu_dma_alloc() function *********
[   35.235282]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.241278]  ******* In iommu_dma_alloc() function *********
[   35.334921] usb 3-4.1: new high-speed USB device number 3 using xhci_hcd
[   35.461346]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.467345]  ******* In iommu_dma_alloc() function *********
[   35.472999]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.478997]  ******* In iommu_dma_alloc() function *********
[   35.484648]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.490643]  ******* In iommu_dma_alloc() function *********
[   35.496295]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.502289]  ******* In iommu_dma_alloc() function *********
[   35.510004]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.516005]  ******* In iommu_dma_alloc() function *********
[   35.535207] usb-storage 3-4.1:1.0: USB Mass Storage device detected
[   35.541611]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.547608]  ******* In iommu_dma_alloc() function *********
[   35.553324] scsi host1: usb-storage 3-4.1:1.0
[   35.561435]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.567432]  ******* In iommu_dma_alloc() function *********
[   35.573087]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.579084]  ******* In iommu_dma_alloc() function *********
[   35.584734]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.590730]  ******* In iommu_dma_alloc() function *********
[   35.682960] usb 3-4.2: new high-speed USB device number 4 using xhci_hcd
[   35.811573]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.817574]  ******* In iommu_dma_alloc() function *********
[   35.823227]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.829223]  ******* In iommu_dma_alloc() function *********
[   35.834876]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.840871]  ******* In iommu_dma_alloc() function *********
[   35.846523]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.852520]  ******* In iommu_dma_alloc() function *********
[   35.860213]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.866213]  ******* In iommu_dma_alloc() function *********
[   35.884598] usb-storage 3-4.2:1.0: USB Mass Storage device detected
[   35.891065] scsi host2: usb-storage 3-4.2:1.0
[   35.899736]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.905734]  ******* In iommu_dma_alloc() function *********
[   35.911390]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.917385]  ******* In iommu_dma_alloc() function *********
[   35.923036]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   35.929032]  ******* In iommu_dma_alloc() function *********
[   36.022938] usb 3-4.3: new low-speed USB device number 5 using xhci_hcd
[   36.079734] scsi 0:0:0:0: Direct-Access      USB      SanDisk 3.2Gen1 1.00 PQ: 0 ANSI: 6
[   36.088274] sd 0:0:0:0: [sda] 120176640 512-byte logical blocks: (61.5 GB/57.3 GiB)
[   36.097888] sd 0:0:0:0: [sda] Write Protect is off
[   36.104688] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   36.140006] GPT:Primary header thinks Alt. header is not at the end of the disk.
[   36.147400] GPT:17181951 != 120176639
[   36.151053] GPT:Alternate GPT header not at the end of the disk.
[   36.157049] GPT:17181951 != 120176639
[   36.160700] GPT: Use GNU Parted to correct GPT errors.
[   36.161951]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   36.165834]  sda: sda1 sda2
[   36.171827]  ******* In iommu_dma_alloc() function *********
[   36.171839]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   36.183565] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   36.186256]  ******* In iommu_dma_alloc() function *********
[   36.197382]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   36.203379]  ******* In iommu_dma_alloc() function *********
[   36.209035]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   36.215031]  ******* In iommu_dma_alloc() function *********
[   36.222826]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   36.228826]  ******* In iommu_dma_alloc() function *********
[   36.261134] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.0/0003:046B:FF10.0001/input/input1
[   36.276995] hid-generic 0003:046B:FF10.0001: input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input0
[   36.301449] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.1/0003:046B:FF10.0002/input/input2
[   36.317302] hid-generic 0003:046B:FF10.0002: input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input1
[   36.344905] random: fast init done
[   36.565579] scsi 1:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[   36.574422] scsi 1:0:0:1: CD-ROM            AMI      Virtual CDROM1   1.00 PQ: 0 ANSI: 0 CCS
[   36.583166] scsi 1:0:0:2: CD-ROM            AMI      Virtual CDROM2   1.00 PQ: 0 ANSI: 0 CCS
[   36.591930] scsi 1:0:0:3: CD-ROM            AMI      Virtual CDROM3   1.00 PQ: 0 ANSI: 0 CCS
[   36.896750] EXT4-fs (sda2): recovery complete
[   36.904429] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[   36.911591] scsi 2:0:0:0: Direct-Access     AMI      Virtual HDisk0   1.00 PQ: 0 ANSI: 0 CCS
[   36.912094] VFS: Mounted root (ext4 filesystem) on device 8:2.
[   36.921044] scsi 2:0:0:1: Direct-Access     AMI      Virtual HDisk1   1.00 PQ: 0 ANSI: 0 CCS
[   36.927464] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[   36.931434] devtmpfs: mounted
[   36.935270] scsi 2:0:0:2: Direct-Access     AMI      Virtual HDisk2   1.00 PQ: 0 ANSI: 0 CCS
[   36.952110] scsi 2:0:0:3: Direct-Access     AMI      Virtual HDisk3   1.00 PQ: 0 ANSI: 0 CCS
[   36.952512] sd 2:0:0:1: [sdc] Attached SCSI removable disk
[   36.952928] sd 2:0:0:2: [sdd] Attached SCSI removable disk
[   36.977062] scsi 2:0:0:4: Direct-Access     AMI      Virtual HDisk4   1.00 PQ: 0 ANSI: 0 CCS
[   36.978087] sd 2:0:0:3: [sde] Attached SCSI removable disk
[   36.995352] sd 2:0:0:4: [sdf] Attached SCSI removable disk
[   37.002610] Freeing unused kernel memory: 4160K
[   37.015036] Run /sbin/init as init process
[   37.298664] systemd[1]: systemd 249.7+ running in system mode (-PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
[   37.329091] systemd[1]: Detected architecture arm64.

Welcome to EWAOL (Edge Workload Abstraction and Orchestration Layer) unstable (honister)!

[   37.395199] systemd[1]: Hostname set to <comhpc>.
[   37.443530] systemd-sysv-generator[331]: SysV service '/etc/init.d/conntrackd' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   37.467544] systemd-sysv-generator[331]: SysV service '/etc/init.d/conntrack-failover' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   37.595801] systemd[1]: /lib/systemd/system/xen-qemu-dom0-disk-backend.service:11: PIDFile= references a path below legacy directory /var/run/, updating /var/run/xen/qemu-dom0.pid → /run/xen/qemu-dom0.pid; please update the unit file accordingly.
[   37.683594] systemd[1]: Queued start job for default target Multi-User System.
[   37.691101] random: systemd: uninitialized urandom read (16 bytes read)
[   37.722689] systemd[1]: Created slice Slice /system/getty.
[  OK  ] Created slice Slice /system/getty.
[   37.743445] random: systemd: uninitialized urandom read (16 bytes read)
[   37.750748] systemd[1]: Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/modprobe.
[   37.771030] random: systemd: uninitialized urandom read (16 bytes read)
[   37.778234] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Created slice Slice /system/serial-getty.
[   37.799867] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[   37.819182] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[   37.843124] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[   37.867224] systemd[1]: Reached target Path Units.
[  OK  ] Reached target Path Units.
[   37.887005] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[   37.906981] systemd[1]: Reached target Slice Units.
[  OK  ] Reached target Slice Units.
[   37.926996] systemd[1]: Reached target Swaps.
[  OK  ] Reached target Swaps.
[   37.951865] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[   37.975123] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[   37.995317] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on Syslog Socket.
[   38.015153] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[   38.040316] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[   38.048429] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[   38.071222] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[   38.091288] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[   38.115263] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[   38.135173] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[   38.155197] systemd[1]: Listening on User Database Manager Socket.
[  OK  ] Listening on User Database Manager Socket.
[   38.180523] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[   38.200409] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[   38.223054] systemd[1]: Condition check resulted in Mount /proc/xen files being skipped.
[   38.232184] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[   38.256430] systemd[1]: Mounting Kernel Trace File System...
         Mounting Kernel Trace File System...
[   38.277649] systemd[1]: Mounting Temporary Directory /tmp...
         Mounting Temporary Directory /tmp...
[   38.296712] systemd[1]: Starting Create List of Static Device Nodes...
         Starting Create List of Static Device Nodes...
[   38.320405] systemd[1]: Starting Load Kernel Module configfs...
         Starting Load Kernel Module configfs...
[   38.340334] systemd[1]: Starting Load Kernel Module drm...
         Starting Load Kernel Module drm...
[   38.360360] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[   38.384575] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[   38.403246] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[   38.414222] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[   38.433664] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[   38.452111] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kerne[   38.460274] EXT4-fs (sda2): re-mounted. Opts: (null)
l File Systems...
[   38.480177] systemd[1]: Starting Coldplug All udev Devices...
         Starting Coldplug All udev Devices...
[   38.500776] systemd[1]: Started RPC Bind.
[  OK  ] Started RPC Bind.
[   38.519155] systemd[1]: Mounted Huge Pages File System.
[  OK  ] Mounted Huge Pages File System.
[   38.539749] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Trace File System.
[  OK  ] Mounted Temporary Directory /tmp.
[  OK  ] Finished Create List of Static Device Nodes.
[  OK  ] Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module fuse.
[  OK  ] Finished Load Kernel Modules.
[  OK  ] Finished Remount Root and Kernel File Systems.
         Mounting Kernel Configuration File System...
         Starting Flush Journal to Persistent Storage...
[   38.745142] systemd-journald[361]: Received client request to flush runtime journal.
         Starting Apply Kernel Variables...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Coldplug All udev Devices.
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Reached target Preparation for Local File Systems.
         Mounting /var/volatile...
         Starting Wait for udev To …plete Device Initialization...
         Starting Rule-based Manage…for Device Events and Files...
[  OK  ] Mounted /var/volatile.
         Starting Load/Save Random Seed...
[  OK  ] Started Rule-based Manager for Device Events and Files.
[  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
[  OK  ] Found device SanDisk_3.2Gen1 msdos.
         Mounting /boot...
[  OK  ] Mounted /boot.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Wait for udev To Complete Device Initialization.
[  OK  ] Finished Create Volatile Files and Directories.
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
         Starting Network Time Synchronization...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target System Time Set.
[  OK  ] Reached target Timer Units.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
         Starting Docker Socket for the API...
         Starting sshd.socket...
[  OK  ] Listening on Docker Socket for the API.
[  OK  ] Listening on sshd.socket.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
         Starting ACPI Event Daemon...
[  OK  ] Started Kernel Logging Service.
[  OK  ] Started System Logging Service.
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Getty on tty1.
         Starting IPv6 Packet Filtering Framework...
         Starting IPv4 Packet Filtering Framework...
         Starting Telephony service...
[  OK  ] Started Serial Getty on ttyAMA0.
[  OK  ] Reached target Login Prompts.
         Starting User Login Management...
         Starting OpenSSH Key Generation...
[  OK  ] Started ACPI Event Daemon.
[  OK  ] Finished IPv6 Packet Filtering Framework.
[  OK  ] Finished IPv4 Packet Filtering Framework.
[  OK  ] Finished OpenSSH Key Generation.
[  OK  ] Reached target Preparation for Network.
         Starting Network Configuration...
[  OK  ] Started User Login Management.
[  OK  ] Started Telephony service.
[  OK  ] Started Network Configuration.
         Starting Wait for Network to be Configured...
         Starting Network Name Resolution...
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
         Starting Avahi mDNS/DNS-SD Stack...
         Starting containerd container runtime...
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started containerd container runtime.

EWAOL (Edge Workload Abstraction and Orchestration Layer) unstable comhpc ttyAMA0

comhpc login: 

[-- Attachment #3: native_linux_boot_without_smmu_debug.log --]
[-- Type: application/octet-stream, Size: 390364 bytes --]

Last login: Wed Apr 13 12:15:10 on ttys001
rahsin01@C02ZX0G9LVDN x86_64 % telnet e123343.cambridge.arm.com 10020
Trying 10.1.194.25...
Connected to e123343.cambridge.arm.com.
Escape character is '^]'.

AIS target system port 10020 device /dev/ttyUSB1 [115200 N81]


FS0:\> 
FS0:\> cd EFI
FS0:\EFI\> cd BOOT
FS0:\EFI\BOOT\> bootaa64.efi
Welcome to GRUB!

error: no such device: ((hd0,gpt1)/EFI/BOOT)/EFI/BOOT/grub.cfg.






















                             GNU GRUB  version 2.06

 /----------------------------------------------------------------------------\
 | PARTUUID Boot: COM-HPC Yocto Image                                         | 
 | NVMe M.2  SSD Boot: COM-HPC Yocto Image                                    |
 |*USB Boot (If Drive is present): COM-HPC Yocto Image                        |
 | COM-HPC Yocto Image (Xen)                                                  |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            | 
 \----------------------------------------------------------------------------/

      Use the ^ and v keys to select which entry is highlighted.          
      Press enter to boot the selected OS, `e' to edit the commands       
      before booting or `c' for a command-line.                           
                                                                               
                                                                               


















































EFI stub: Booting Linux Kernel...
EFI stub: Using DTB from configuration table
EFI stub: Exiting boot services and installing virtual address map...
PROGRESS CODE: V03101019 I0
[    0.000000] Booting Linux on physical CPU 0x0000100000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard+ (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: TPMFinalLog=0x807f9ef0000 ACPI 2.0=0x807fa0d0018 SMBIOS 3.0=0x807f8e30000 MEMATTR=0x807f774c018 ESRT=0x807f8044398 TPMEventLog=0x807f7760018 RNG=0xffb4ba98 MEMRESERVE=0x807f7ea4e98 
[    0.000000] efi: seeding entropy pool
[    0.000000] esrt: Reserving ESRT space from 0x00000807f8044398 to 0x00000807f80443d0.
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807FA0D0018 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807FA0DFE98 0000A4 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807FA0DFB98 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807FA0D7518 000AF4 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x807fc06fe00-0x807fc071fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000088300000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000088300000-0x00000000883fffff]
[    0.000000]   node   0: [mem 0x0000000090000000-0x0000000091ffffff]
[    0.000000]   node   0: [mem 0x0000000092000000-0x00000000927bffff]
[    0.000000]   node   0: [mem 0x00000000927c0000-0x00000000ffb3ffff]
[    0.000000]   node   0: [mem 0x00000000ffb40000-0x00000000ffb4ffff]
[    0.000000]   node   0: [mem 0x00000000ffb50000-0x00000000ffffffff]
[    0.000000]   node   0: [mem 0x0000080000000000-0x000008007fffffff]
[    0.000000]   node   0: [mem 0x0000080100000000-0x00000807f5e7ffff]
[    0.000000]   node   0: [mem 0x00000807f5e80000-0x00000807f6543fff]
[    0.000000]   node   0: [mem 0x00000807f6544000-0x00000807f71effff]
[    0.000000]   node   0: [mem 0x00000807f71f0000-0x00000807f728ffff]
[    0.000000]   node   0: [mem 0x00000807f7290000-0x00000807f7e5ffff]
[    0.000000]   node   0: [mem 0x00000807f7e60000-0x00000807f7e7ffff]
[    0.000000]   node   0: [mem 0x00000807f7e80000-0x00000807f7edffff]
[    0.000000]   node   0: [mem 0x00000807f7ee0000-0x00000807f7f1ffff]
[    0.000000]   node   0: [mem 0x00000807f7f20000-0x00000807f87effff]
[    0.000000]   node   0: [mem 0x00000807f87f0000-0x00000807f882ffff]
[    0.000000]   node   0: [mem 0x00000807f8830000-0x00000807f8a6ffff]
[    0.000000]   node   0: [mem 0x00000807f8a70000-0x00000807f8aaffff]
[    0.000000]   node   0: [mem 0x00000807f8ab0000-0x00000807f8e1ffff]
[    0.000000]   node   0: [mem 0x00000807f8e20000-0x00000807f8e3ffff]
[    0.000000]   node   0: [mem 0x00000807f8e40000-0x00000807f8e6ffff]
[    0.000000]   node   0: [mem 0x00000807f8e70000-0x00000807f9e7ffff]
[    0.000000]   node   0: [mem 0x00000807f9e80000-0x00000807f9eeffff]
[    0.000000]   node   0: [mem 0x00000807f9ef0000-0x00000807f9f1ffff]
[    0.000000]   node   0: [mem 0x00000807f9f20000-0x00000807f9fbffff]
[    0.000000]   node   0: [mem 0x00000807f9fc0000-0x00000807f9ffffff]
[    0.000000]   node   0: [mem 0x00000807fa000000-0x00000807fa0fffff]
[    0.000000]   node   0: [mem 0x00000807fa100000-0x00000807fa19ffff]
[    0.000000]   node   0: [mem 0x00000807fa1a0000-0x00000807fa26ffff]
[    0.000000]   node   0: [mem 0x00000807fa270000-0x00000807fa4affff]
[    0.000000]   node   0: [mem 0x00000807fa4b0000-0x00000807fa71ffff]
[    0.000000]   node   0: [mem 0x00000807fa720000-0x00000807fa75ffff]
[    0.000000]   node   0: [mem 0x00000807fa760000-0x00000807fa8cffff]
[    0.000000]   node   0: [mem 0x00000807fa8d0000-0x00000807fa96ffff]
[    0.000000]   node   0: [mem 0x00000807fa970000-0x00000807fa9fffff]
[    0.000000]   node   0: [mem 0x00000807faa00000-0x00000807fbaaffff]
[    0.000000]   node   0: [mem 0x00000807fbab0000-0x00000807fbb3ffff]
[    0.000000]   node   0: [mem 0x00000807fbb40000-0x00000807fbbdffff]
[    0.000000]   node   0: [mem 0x00000807fbbe0000-0x00000807fbcaffff]
[    0.000000]   node   0: [mem 0x00000807fbcb0000-0x00000807fbceffff]
[    0.000000]   node   0: [mem 0x00000807fbcf0000-0x00000807fbd5ffff]
[    0.000000]   node   0: [mem 0x00000807fbd60000-0x00000807fbdfffff]
[    0.000000]   node   0: [mem 0x00000807fbe00000-0x00000807ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000088300000-0x00000807ffffffff]
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270100 -> Node 0
[    0.000000] percpu: Embedded 31 pages/cpu s89240 r8192 d29544 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: ARM erratum 1418040
[    0.000000] alternatives: patching kernel code
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8193276
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/Image rootwait rw root=/dev/sda2
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.000000] printk: log_buf_len min size: 131072 bytes
[    0.000000] printk: log_buf_len: 262144 bytes
[    0.000000] printk: early log buf free: 121248(92%)
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000fbb40000-0x00000000ffb40000] (64MB)
[    0.000000] Memory: 32502180K/33293312K available (13568K kernel code, 1996K rwdata, 3476K rodata, 4160K init, 822K bss, 791132K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 41306 entries in 162 pages
[    0.000000] ftrace: allocated 162 pages with 3 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=32.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 672 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 100000 region 0:0x0000100100540000
[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 3 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 4 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 5 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 6 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 7 -> Node 0
[    0.000000] ITS [mem 0x100100040000-0x10010005ffff]
[    0.000000] ITS@0x0000100100040000: allocated 8192 Devices @80000220000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100040000: allocated 32768 Interrupt Collections @80000230000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100060000-0x10010007ffff]
[    0.000000] ITS@0x0000100100060000: allocated 8192 Devices @80000250000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100060000: allocated 32768 Interrupt Collections @80000260000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100080000-0x10010009ffff]
[    0.000000] ITS@0x0000100100080000: allocated 8192 Devices @80000280000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100080000: allocated 32768 Interrupt Collections @80000290000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000a0000-0x1001000bffff]
[    0.000000] ITS@0x00001001000a0000: allocated 8192 Devices @800002b0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000a0000: allocated 32768 Interrupt Collections @800002c0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000c0000-0x1001000dffff]
[    0.000000] ITS@0x00001001000c0000: allocated 8192 Devices @800002e0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000c0000: allocated 32768 Interrupt Collections @800002f0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000e0000-0x1001000fffff]
[    0.000000] ITS@0x00001001000e0000: allocated 8192 Devices @80000310000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000e0000: allocated 32768 Interrupt Collections @80000320000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100100000-0x10010011ffff]
[    0.000000] ITS@0x0000100100100000: allocated 8192 Devices @80000340000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100100000: allocated 32768 Interrupt Collections @80000350000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100120000-0x10010013ffff]
[    0.000000] ITS@0x0000100100120000: allocated 8192 Devices @80000370000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100120000: allocated 32768 Interrupt Collections @80000380000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] GICv3: using LPI property table @0x0000080000390000
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000800003a0000
[    0.000000] random: get_random_bytes called from start_kernel+0x394/0x554 with crng_init=0
[    0.000000] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.000000] ACPI GTDT: found 1 memory-mapped timer block(s).
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 25.00MHz (phys/phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000001] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000054] Console: colour dummy device 80x25
[    0.000074] ACPI: Core revision 20200925
[    0.000486] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    0.000491] pid_max: default: 32768 minimum: 301
[    0.000520] LSM: Security Framework initializing
[    0.000648] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.000730] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.001581] rcu: Hierarchical SRCU implementation.
[    0.001709] Platform MSI: ITS@0x100100040000 domain created
[    0.001713] Platform MSI: ITS@0x100100060000 domain created
[    0.001716] Platform MSI: ITS@0x100100080000 domain created
[    0.001718] Platform MSI: ITS@0x1001000a0000 domain created
[    0.001722] Platform MSI: ITS@0x1001000c0000 domain created
[    0.001724] Platform MSI: ITS@0x1001000e0000 domain created
[    0.001728] Platform MSI: ITS@0x100100100000 domain created
[    0.001732] Platform MSI: ITS@0x100100120000 domain created
[    0.001738] PCI/MSI: ITS@0x100100040000 domain created
[    0.001742] PCI/MSI: ITS@0x100100060000 domain created
[    0.001744] PCI/MSI: ITS@0x100100080000 domain created
[    0.001747] PCI/MSI: ITS@0x1001000a0000 domain created
[    0.001750] PCI/MSI: ITS@0x1001000c0000 domain created
[    0.001753] PCI/MSI: ITS@0x1001000e0000 domain created
[    0.001756] PCI/MSI: ITS@0x100100100000 domain created
[    0.001760] PCI/MSI: ITS@0x100100120000 domain created
[    0.001766] Remapping and enabling EFI services.
[    0.003612] smp: Bringing up secondary CPUs ...
[    0.003862] Detected PIPT I-cache on CPU1
[    0.003891] GICv3: CPU1: found redistributor 180000 region 0:0x0000100100740000
[    0.003915] GICv3: CPU1: using allocated LPI pending table @0x00000800003b0000
[    0.003960] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.003973] CPU1: Booted secondary processor 0x0000180000 [0x413fd0c1]
[    0.004257] Detected PIPT I-cache on CPU2
[    0.004284] GICv3: CPU2: found redistributor 160000 region 0:0x00001001006c0000
[    0.004308] GICv3: CPU2: using allocated LPI pending table @0x00000800003c0000
[    0.004355] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004369] CPU2: Booted secondary processor 0x0000160000 [0x413fd0c1]
[    0.004658] Detected PIPT I-cache on CPU3
[    0.004686] GICv3: CPU3: found redistributor 1e0000 region 0:0x00001001008c0000
[    0.004711] GICv3: CPU3: using allocated LPI pending table @0x00000800003d0000
[    0.004759] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004774] CPU3: Booted secondary processor 0x00001e0000 [0x413fd0c1]
[    0.005050] Detected PIPT I-cache on CPU4
[    0.005069] GICv3: CPU4: found redistributor 80000 region 0:0x0000100100340000
[    0.005095] GICv3: CPU4: using allocated LPI pending table @0x00000800003e0000
[    0.005143] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.005156] CPU4: Booted secondary processor 0x0000080000 [0x413fd0c1]
[    0.005461] Detected PIPT I-cache on CPU5
[    0.005490] GICv3: CPU5: found redistributor 200000 region 0:0x0000100100940000
[    0.005514] GICv3: CPU5: using allocated LPI pending table @0x00000800003f0000
[    0.005561] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.005577] CPU5: Booted secondary processor 0x0000200000 [0x413fd0c1]
[    0.005853] Detected PIPT I-cache on CPU6
[    0.005876] GICv3: CPU6: found redistributor e0000 region 0:0x00001001004c0000
[    0.005901] GICv3: CPU6: using allocated LPI pending table @0x0000080000800000
[    0.005952] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.005964] CPU6: Booted secondary processor 0x00000e0000 [0x413fd0c1]
[    0.006267] Detected PIPT I-cache on CPU7
[    0.006299] GICv3: CPU7: found redistributor 260000 region 0:0x0000100100ac0000
[    0.006325] GICv3: CPU7: using allocated LPI pending table @0x0000080000810000
[    0.006374] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006390] CPU7: Booted secondary processor 0x0000260000 [0x413fd0c1]
[    0.006664] Detected PIPT I-cache on CPU8
[    0.006688] GICv3: CPU8: found redistributor 110000 region 0:0x0000100100580000
[    0.006713] GICv3: CPU8: using allocated LPI pending table @0x0000080000820000
[    0.006760] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006772] CPU8: Booted secondary processor 0x0000110000 [0x413fd0c1]
[    0.007058] Detected PIPT I-cache on CPU9
[    0.007084] GICv3: CPU9: found redistributor 190000 region 0:0x0000100100780000
[    0.007110] GICv3: CPU9: using allocated LPI pending table @0x0000080000830000
[    0.007157] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.007172] CPU9: Booted secondary processor 0x0000190000 [0x413fd0c1]
[    0.007453] Detected PIPT I-cache on CPU10
[    0.007479] GICv3: CPU10: found redistributor 170000 region 0:0x0000100100700000
[    0.007505] GICv3: CPU10: using allocated LPI pending table @0x0000080000840000
[    0.007553] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.007569] CPU10: Booted secondary processor 0x0000170000 [0x413fd0c1]
[    0.007851] Detected PIPT I-cache on CPU11
[    0.007880] GICv3: CPU11: found redistributor 1f0000 region 0:0x0000100100900000
[    0.007907] GICv3: CPU11: using allocated LPI pending table @0x0000080000850000
[    0.007954] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.007972] CPU11: Booted secondary processor 0x00001f0000 [0x413fd0c1]
[    0.008332] Detected PIPT I-cache on CPU12
[    0.008353] GICv3: CPU12: found redistributor 90000 region 0:0x0000100100380000
[    0.008379] GICv3: CPU12: using allocated LPI pending table @0x0000080000860000
[    0.008426] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008445] CPU12: Booted secondary processor 0x0000090000 [0x413fd0c1]
[    0.008739] Detected PIPT I-cache on CPU13
[    0.008768] GICv3: CPU13: found redistributor 210000 region 0:0x0000100100980000
[    0.008795] GICv3: CPU13: using allocated LPI pending table @0x0000080000870000
[    0.008839] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008857] CPU13: Booted secondary processor 0x0000210000 [0x413fd0c1]
[    0.009150] Detected PIPT I-cache on CPU14
[    0.009173] GICv3: CPU14: found redistributor f0000 region 0:0x0000100100500000
[    0.009200] GICv3: CPU14: using allocated LPI pending table @0x0000080000880000
[    0.009249] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.009267] CPU14: Booted secondary processor 0x00000f0000 [0x413fd0c1]
[    0.009723] Detected PIPT I-cache on CPU15
[    0.009754] GICv3: CPU15: found redistributor 270000 region 0:0x0000100100b00000
[    0.009782] GICv3: CPU15: using allocated LPI pending table @0x0000080000890000
[    0.009832] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.009851] CPU15: Booted secondary processor 0x0000270000 [0x413fd0c1]
[    0.010143] Detected PIPT I-cache on CPU16
[    0.010167] GICv3: CPU16: found redistributor 100100 region 0:0x0000100100560000
[    0.010193] GICv3: CPU16: using allocated LPI pending table @0x00000800008a0000
[    0.010241] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.010260] CPU16: Booted secondary processor 0x0000100100 [0x413fd0c1]
[    0.010556] Detected PIPT I-cache on CPU17
[    0.010583] GICv3: CPU17: found redistributor 180100 region 0:0x0000100100760000
[    0.010611] GICv3: CPU17: using allocated LPI pending table @0x00000800008b0000
[    0.010657] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.010676] CPU17: Booted secondary processor 0x0000180100 [0x413fd0c1]
[    0.010971] Detected PIPT I-cache on CPU18
[    0.010997] GICv3: CPU18: found redistributor 160100 region 0:0x00001001006e0000
[    0.011025] GICv3: CPU18: using allocated LPI pending table @0x00000800008c0000
[    0.011073] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.011092] CPU18: Booted secondary processor 0x0000160100 [0x413fd0c1]
[    0.011548] Detected PIPT I-cache on CPU19
[    0.011577] GICv3: CPU19: found redistributor 1e0100 region 0:0x00001001008e0000
[    0.011606] GICv3: CPU19: using allocated LPI pending table @0x00000800008d0000
[    0.011654] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.011674] CPU19: Booted secondary processor 0x00001e0100 [0x413fd0c1]
[    0.012041] Detected PIPT I-cache on CPU20
[    0.012062] GICv3: CPU20: found redistributor 80100 region 0:0x0000100100360000
[    0.012090] GICv3: CPU20: using allocated LPI pending table @0x00000800008e0000
[    0.012139] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.012155] CPU20: Booted secondary processor 0x0000080100 [0x413fd0c1]
[    0.012542] Detected PIPT I-cache on CPU21
[    0.012572] GICv3: CPU21: found redistributor 200100 region 0:0x0000100100960000
[    0.012602] GICv3: CPU21: using allocated LPI pending table @0x00000800008f0000
[    0.012649] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.012668] CPU21: Booted secondary processor 0x0000200100 [0x413fd0c1]
[    0.012967] Detected PIPT I-cache on CPU22
[    0.012990] GICv3: CPU22: found redistributor e0100 region 0:0x00001001004e0000
[    0.013021] GICv3: CPU22: using allocated LPI pending table @0x0000080000900000
[    0.013070] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.013092] CPU22: Booted secondary processor 0x00000e0100 [0x413fd0c1]
[    0.013539] Detected PIPT I-cache on CPU23
[    0.013572] GICv3: CPU23: found redistributor 260100 region 0:0x0000100100ae0000
[    0.013602] GICv3: CPU23: using allocated LPI pending table @0x0000080000910000
[    0.013649] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.013671] CPU23: Booted secondary processor 0x0000260100 [0x413fd0c1]
[    0.013969] Detected PIPT I-cache on CPU24
[    0.013993] GICv3: CPU24: found redistributor 110100 region 0:0x00001001005a0000
[    0.014023] GICv3: CPU24: using allocated LPI pending table @0x0000080000920000
[    0.014070] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.014091] CPU24: Booted secondary processor 0x0000110100 [0x413fd0c1]
[    0.014530] Detected PIPT I-cache on CPU25
[    0.014557] GICv3: CPU25: found redistributor 190100 region 0:0x00001001007a0000
[    0.014586] GICv3: CPU25: using allocated LPI pending table @0x0000080000930000
[    0.014633] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.014654] CPU25: Booted secondary processor 0x0000190100 [0x413fd0c1]
[    0.014960] Detected PIPT I-cache on CPU26
[    0.014987] GICv3: CPU26: found redistributor 170100 region 0:0x0000100100720000
[    0.015018] GICv3: CPU26: using allocated LPI pending table @0x0000080000940000
[    0.015067] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.015089] CPU26: Booted secondary processor 0x0000170100 [0x413fd0c1]
[    0.015545] Detected PIPT I-cache on CPU27
[    0.015575] GICv3: CPU27: found redistributor 1f0100 region 0:0x0000100100920000
[    0.015606] GICv3: CPU27: using allocated LPI pending table @0x0000080000950000
[    0.015651] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.015673] CPU27: Booted secondary processor 0x00001f0100 [0x413fd0c1]
[    0.015963] Detected PIPT I-cache on CPU28
[    0.015984] GICv3: CPU28: found redistributor 90100 region 0:0x00001001003a0000
[    0.016015] GICv3: CPU28: using allocated LPI pending table @0x0000080000960000
[    0.016063] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.016085] CPU28: Booted secondary processor 0x0000090100 [0x413fd0c1]
[    0.016540] Detected PIPT I-cache on CPU29
[    0.016571] GICv3: CPU29: found redistributor 210100 region 0:0x00001001009a0000
[    0.016603] GICv3: CPU29: using allocated LPI pending table @0x0000080000970000
[    0.016650] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.016673] CPU29: Booted secondary processor 0x0000210100 [0x413fd0c1]
[    0.017127] Detected PIPT I-cache on CPU30
[    0.017151] GICv3: CPU30: found redistributor f0100 region 0:0x0000100100520000
[    0.017183] GICv3: CPU30: using allocated LPI pending table @0x0000080000980000
[    0.017231] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.017254] CPU30: Booted secondary processor 0x00000f0100 [0x413fd0c1]
[    0.017554] Detected PIPT I-cache on CPU31
[    0.017587] GICv3: CPU31: found redistributor 270100 region 0:0x0000100100b20000
[    0.017618] GICv3: CPU31: using allocated LPI pending table @0x0000080000990000
[    0.017667] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.017688] CPU31: Booted secondary processor 0x0000270100 [0x413fd0c1]
[    0.017770] smp: Brought up 1 node, 32 CPUs
[    0.017864] SMP: Total of 32 processors activated.
[    0.017867] CPU features: detected: Privileged Access Never
[    0.017868] CPU features: detected: LSE atomic instructions
[    0.017870] CPU features: detected: User Access Override
[    0.017872] CPU features: detected: 32-bit EL0 Support
[    0.017874] CPU features: detected: Common not Private translations
[    0.017876] CPU features: detected: RAS Extension Support
[    0.017877] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.017879] CPU features: detected: CRC32 instructions
[    0.017881] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.049801] CPU: All CPU(s) started at EL2
[    0.050585] devtmpfs: initialized
[    0.050854] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.050860] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.051091] SMBIOS 3.3.0 present.
[    0.051097] DMI: ADLINK COM-HPC-ALT/COM-HPC-ALT, BIOS TianoCore EDKII 11/23/2021
[    0.051327] NET: Registered protocol family 16
[    0.051831] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.051995] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.052166] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.052263] thermal_sys: Registered thermal governor 'step_wise'
[    0.052344] cpuidle: using governor menu
[    0.052484] Detected 15 PCC Subspaces
[    0.052505] Registering PCC driver as Mailbox controller
[    0.052542] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.052844] ASID allocator initialised with 65536 entries
[    0.052851] ACPI: bus type PCI registered
[    0.052853] Serial: AMBA PL011 UART driver
[    0.055005] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.055008] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.055010] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.055012] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.055707] cryptd: max_cpu_qlen set to 1000
[    0.124059] raid6: neonx8   gen()  7733 MB/s
[    0.192088] raid6: neonx8   xor()  6059 MB/s
[    0.260131] raid6: neonx4   gen()  7612 MB/s
[    0.328151] raid6: neonx4   xor()  6326 MB/s
[    0.396182] raid6: neonx2   gen()  7379 MB/s
[    0.464211] raid6: neonx2   xor()  5729 MB/s
[    0.532240] raid6: neonx1   gen()  5995 MB/s
[    0.600267] raid6: neonx1   xor()  4933 MB/s
[    0.668294] raid6: int64x8  gen()  3602 MB/s
[    0.736326] raid6: int64x8  xor()  2018 MB/s
[    0.804348] raid6: int64x4  gen()  4124 MB/s
[    0.872429] raid6: int64x4  xor()  2195 MB/s
[    0.940408] raid6: int64x2  gen()  3503 MB/s
[    1.008436] raid6: int64x2  xor()  1888 MB/s
[    1.076467] raid6: int64x1  gen()  2875 MB/s
[    1.144493] raid6: int64x1  xor()  1508 MB/s
[    1.144495] raid6: using algorithm neonx8 gen() 7733 MB/s
[    1.144496] raid6: .... xor() 6059 MB/s, rmw enabled
[    1.144498] raid6: using neon recovery algorithm
[    1.144570] ACPI: Added _OSI(Module Device)
[    1.144573] ACPI: Added _OSI(Processor Device)
[    1.144575] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.144577] ACPI: Added _OSI(Processor Aggregator Device)
[    1.144579] ACPI: Added _OSI(Linux-Dell-Video)
[    1.144581] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    1.144583] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    1.164998] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    1.171308] ACPI: Interpreter enabled
[    1.171311] ACPI: Using GIC for interrupt routing
[    1.171325] ACPI: MCFG table detected, 5 entries
[    1.171331] ACPI: IORT: SMMU-v3[33ffe0000000] Mapped to Proximity domain 0
[    1.171357] ACPI: IORT: SMMU-v3[37ffe0000000] Mapped to Proximity domain 0
[    1.171370] ACPI: IORT: SMMU-v3[3fffe0000000] Mapped to Proximity domain 0
[    1.171383] ACPI: IORT: SMMU-v3[2bffe0000000] Mapped to Proximity domain 0
[    1.171396] ACPI: IORT: SMMU-v3[2fffe0000000] Mapped to Proximity domain 0
[    1.171486] HEST: Table parsing has been initialized.
[    1.206365] ARMH0011:00: ttyAMA0 at MMIO 0x100002600000 (irq = 79, base_baud = 0) is a SBSA
[    4.021190] printk: console [ttyAMA0] enabled
[    4.027256] ARMH0011:01: ttyAMA1 at MMIO 0x100002620000 (irq = 80, base_baud = 0) is a SBSA
[    4.037377] ACPI: PCI Root Bridge [PCI0] (domain 000c [bus 00-ff])
[    4.043560] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.052662] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control
[    4.060485] acpi PNP0A08:00: MCFG quirk: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.073289] acpi PNP0A08:00: ECAM area [mem 0x33fff0000000-0x33ffffffffff] reserved by PNP0C02:00
[    4.082162] acpi PNP0A08:00: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff]
[    4.090323] PCI host bridge to bus 000c:00
[    4.094411] pci_bus 000c:00: root bus resource [mem 0x40000000-0x4fffffff window]
[    4.101883] pci_bus 000c:00: root bus resource [mem 0x300000000000-0x33ffdfffffff window]
[    4.110049] pci_bus 000c:00: root bus resource [bus 00-ff]
[    4.115560] pci 000c:00:00.0: [1def:e100] type 00 class 0x060000
[    4.121637] pci 000c:00:01.0: [1def:e101] type 01 class 0x060400
[    4.127684] pci 000c:00:01.0: supports D1 D2
[    4.131943] pci 000c:00:01.0: PME# supported from D0 D1 D3hot
[    4.138801] pci 000c:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    4.146969] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    4.158434] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    4.168947] pci 000c:00:01.0: BAR 8: assigned [mem 0x40000000-0x401fffff]
[    4.175725] pci 000c:00:01.0: BAR 9: assigned [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.184151] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.190407] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.197011] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.203267] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.209871] pci 000c:00:01.0: PCI bridge to [bus 01]
[    4.214827] pci 000c:00:01.0:   bridge window [mem 0x40000000-0x401fffff]
[    4.221604] pci 000c:00:01.0:   bridge window [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.230032] pci_bus 000c:00: resource 4 [mem 0x40000000-0x4fffffff window]
[    4.236897] pci_bus 000c:00: resource 5 [mem 0x300000000000-0x33ffdfffffff window]
[    4.244455] pci_bus 000c:01: resource 1 [mem 0x40000000-0x401fffff]
[    4.250712] pci_bus 000c:01: resource 2 [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.258657] ACPI: PCI Root Bridge [PCI1] (domain 000d [bus 00-ff])
[    4.264834] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.273934] acpi PNP0A08:01: PCIe port services disabled; not requesting _OSC control
[    4.281755] acpi PNP0A08:01: MCFG quirk: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.294553] acpi PNP0A08:01: ECAM area [mem 0x37fff0000000-0x37ffffffffff] reserved by PNP0C02:00
[    4.303426] acpi PNP0A08:01: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff]
[    4.311580] PCI host bridge to bus 000d:00
[    4.315667] pci_bus 000d:00: root bus resource [mem 0x50000000-0x5fffffff window]
[    4.323138] pci_bus 000d:00: root bus resource [mem 0x340000000000-0x37ffdfffffff window]
[    4.331304] pci_bus 000d:00: root bus resource [bus 00-ff]
[    4.336812] pci 000d:00:00.0: [1def:e100] type 00 class 0x060000
[    4.342875] pci 000d:00:01.0: [1def:e101] type 01 class 0x060400
[    4.348908] pci 000d:00:01.0: supports D1 D2
[    4.353168] pci 000d:00:01.0: PME# supported from D0 D1 D3hot
[    4.358990] pci 000d:01:00.0: [10de:1e89] type 00 class 0x030000
[    4.364997] pci 000d:01:00.0: reg 0x10: [mem 0x50000000-0x50ffffff]
[    4.371261] pci 000d:01:00.0: reg 0x14: [mem 0x340000000000-0x34000fffffff 64bit pref]
[    4.379174] pci 000d:01:00.0: reg 0x1c: [mem 0x340010000000-0x340011ffffff 64bit pref]
[    4.387083] pci 000d:01:00.0: reg 0x24: [io  0x57ffe000-0x57ffe07f]
[    4.393343] pci 000d:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.400094] pci 000d:01:00.0: PME# supported from D0 D3hot D3cold
[    4.406245] pci 000d:01:00.1: [10de:10f8] type 00 class 0x040300
[    4.412250] pci 000d:01:00.1: reg 0x10: [mem 0x51000000-0x51003fff]
[    4.418629] pci 000d:01:00.2: [10de:1ad8] type 00 class 0x0c0330
[    4.424638] pci 000d:01:00.2: reg 0x10: [mem 0x340012000000-0x34001203ffff 64bit pref]
[    4.432556] pci 000d:01:00.2: reg 0x1c: [mem 0x340012040000-0x34001204ffff 64bit pref]
[    4.440511] pci 000d:01:00.2: PME# supported from D0 D3hot D3cold
[    4.446650] pci 000d:01:00.3: [10de:1ad9] type 00 class 0x0c8000
[    4.452655] pci 000d:01:00.3: reg 0x10: [mem 0x51004000-0x51004fff]
[    4.458980] pci 000d:01:00.3: PME# supported from D0 D3hot D3cold
[    4.465114] pci 000d:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    4.486396] pci 000d:00:01.0: BAR 9: assigned [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.494823] pci 000d:00:01.0: BAR 8: assigned [mem 0x50000000-0x517fffff]
[    4.501600] pci 000d:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.507856] pci 000d:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.514461] pci 000d:01:00.0: BAR 1: assigned [mem 0x340000000000-0x34000fffffff 64bit pref]
[    4.522894] pci 000d:01:00.0: BAR 3: assigned [mem 0x340010000000-0x340011ffffff 64bit pref]
[    4.531326] pci 000d:01:00.0: BAR 0: assigned [mem 0x50000000-0x50ffffff]
[    4.538105] pci 000d:01:00.0: BAR 6: assigned [mem 0x51000000-0x5107ffff pref]
[    4.545316] pci 000d:01:00.2: BAR 0: assigned [mem 0x340012000000-0x34001203ffff 64bit pref]
[    4.553749] pci 000d:01:00.2: BAR 3: assigned [mem 0x340012040000-0x34001204ffff 64bit pref]
[    4.562182] pci 000d:01:00.1: BAR 0: assigned [mem 0x51080000-0x51083fff]
[    4.568962] pci 000d:01:00.3: BAR 0: assigned [mem 0x51084000-0x51084fff]
[    4.575740] pci 000d:01:00.0: BAR 5: no space for [io  size 0x0080]
[    4.581997] pci 000d:01:00.0: BAR 5: failed to assign [io  size 0x0080]
[    4.588601] pci 000d:00:01.0: PCI bridge to [bus 01]
[    4.593556] pci 000d:00:01.0:   bridge window [mem 0x50000000-0x517fffff]
[    4.600334] pci 000d:00:01.0:   bridge window [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.608761] pci_bus 000d:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    4.617795] pci_bus 000d:00: resource 4 [mem 0x50000000-0x5fffffff window]
[    4.624658] pci_bus 000d:00: resource 5 [mem 0x340000000000-0x37ffdfffffff window]
[    4.632216] pci_bus 000d:01: resource 1 [mem 0x50000000-0x517fffff]
[    4.638472] pci_bus 000d:01: resource 2 [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.646428] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus 00-ff])
[    4.652606] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.661707] acpi PNP0A08:03: PCIe port services disabled; not requesting _OSC control
[    4.669529] acpi PNP0A08:03: MCFG quirk: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.682334] acpi PNP0A08:03: ECAM area [mem 0x3ffff0000000-0x3fffffffffff] reserved by PNP0C02:00
[    4.691207] acpi PNP0A08:03: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff]
[    4.699363] PCI host bridge to bus 0000:00
[    4.703451] pci_bus 0000:00: root bus resource [mem 0x70000000-0x7fffffff window]
[    4.710923] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3fffdfffffff window]
[    4.719089] pci_bus 0000:00: root bus resource [bus 00-ff]
[    4.724596] pci 0000:00:00.0: [1def:e100] type 00 class 0x060000
[    4.730661] pci 0000:00:01.0: [1def:e101] type 01 class 0x060400
[    4.736693] pci 0000:00:01.0: supports D1 D2
[    4.740953] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    4.746769] pci 0000:01:00.0: [8086:1589] type 00 class 0x020000
[    4.752778] pci 0000:01:00.0: reg 0x10: [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    4.760695] pci 0000:01:00.0: reg 0x1c: [mem 0x3c0004818000-0x3c000481ffff 64bit pref]
[    4.768609] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.775371] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    4.781530] pci 0000:01:00.1: [8086:1589] type 00 class 0x020000
[    4.787539] pci 0000:01:00.1: reg 0x10: [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    4.795457] pci 0000:01:00.1: reg 0x1c: [mem 0x3c0004810000-0x3c0004817fff 64bit pref]
[    4.803370] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.810129] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    4.816278] pci 0000:01:00.2: [8086:1589] type 00 class 0x020000
[    4.822287] pci 0000:01:00.2: reg 0x10: [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    4.830204] pci 0000:01:00.2: reg 0x1c: [mem 0x3c0004808000-0x3c000480ffff 64bit pref]
[    4.838118] pci 0000:01:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.844876] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[    4.851022] pci 0000:01:00.3: [8086:1589] type 00 class 0x020000
[    4.857031] pci 0000:01:00.3: reg 0x10: [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    4.864948] pci 0000:01:00.3: reg 0x1c: [mem 0x3c0004800000-0x3c0004807fff 64bit pref]
[    4.872861] pci 0000:01:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.879619] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[    4.885782] pci 0000:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01-02] add_size 1000
[    4.894212] pci 0000:00:01.0: BAR 9: assigned [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    4.902639] pci 0000:00:01.0: BAR 8: assigned [mem 0x70000000-0x701fffff]
[    4.909416] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.915672] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.922276] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.928532] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.935137] pci 0000:01:00.0: BAR 0: assigned [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    4.943570] pci 0000:01:00.1: BAR 0: assigned [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    4.952002] pci 0000:01:00.2: BAR 0: assigned [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    4.960434] pci 0000:01:00.3: BAR 0: assigned [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    4.968866] pci 0000:01:00.0: BAR 6: assigned [mem 0x70000000-0x7007ffff pref]
[    4.976077] pci 0000:01:00.1: BAR 6: assigned [mem 0x70080000-0x700fffff pref]
[    4.983288] pci 0000:01:00.2: BAR 6: assigned [mem 0x70100000-0x7017ffff pref]
[    4.990499] pci 0000:01:00.3: BAR 6: assigned [mem 0x70180000-0x701fffff pref]
[    4.997710] pci 0000:01:00.0: BAR 3: assigned [mem 0x3c0004000000-0x3c0004007fff 64bit pref]
[    5.006142] pci 0000:01:00.1: BAR 3: assigned [mem 0x3c0004008000-0x3c000400ffff 64bit pref]
[    5.014575] pci 0000:01:00.2: BAR 3: assigned [mem 0x3c0004010000-0x3c0004017fff 64bit pref]
[    5.023008] pci 0000:01:00.3: BAR 3: assigned [mem 0x3c0004018000-0x3c000401ffff 64bit pref]
[    5.031440] pci 0000:00:01.0: PCI bridge to [bus 01-02]
[    5.036655] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x701fffff]
[    5.043432] pci 0000:00:01.0:   bridge window [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    5.051860] pci_bus 0000:00: resource 4 [mem 0x70000000-0x7fffffff window]
[    5.058724] pci_bus 0000:00: resource 5 [mem 0x3c0000000000-0x3fffdfffffff window]
[    5.066282] pci_bus 0000:01: resource 1 [mem 0x70000000-0x701fffff]
[    5.072537] pci_bus 0000:01: resource 2 [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    5.080499] ACPI: PCI Root Bridge [PCI6] (domain 0004 [bus 00-ff])
[    5.086677] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    5.095775] acpi PNP0A08:06: PCIe port services disabled; not requesting _OSC control
[    5.103597] acpi PNP0A08:06: MCFG quirk: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    5.116395] acpi PNP0A08:06: ECAM area [mem 0x2bfff0000000-0x2bffffffffff] reserved by PNP0C02:00
[    5.125267] acpi PNP0A08:06: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff]
[    5.133421] PCI host bridge to bus 0004:00
[    5.137508] pci_bus 0004:00: root bus resource [mem 0x20000000-0x2fffffff window]
[    5.144979] pci_bus 0004:00: root bus resource [mem 0x280000000000-0x2bffdfffffff window]
[    5.153146] pci_bus 0004:00: root bus resource [bus 00-ff]
[    5.158653] pci 0004:00:00.0: [1def:e110] type 00 class 0x060000
[    5.164715] pci 0004:00:01.0: [1def:e111] type 01 class 0x060400
[    5.170749] pci 0004:00:01.0: supports D1 D2
[    5.175009] pci 0004:00:01.0: PME# supported from D0 D1 D3hot
[    5.180792] pci 0004:00:03.0: [1def:e113] type 01 class 0x060400
[    5.186826] pci 0004:00:03.0: supports D1 D2
[    5.191085] pci 0004:00:03.0: PME# supported from D0 D1 D3hot
[    5.196868] pci 0004:00:05.0: [1def:e115] type 01 class 0x060400
[    5.202911] pci 0004:00:05.0: supports D1 D2
[    5.207170] pci 0004:00:05.0: PME# supported from D0 D1 D3hot
[    5.212989] pci 0004:01:00.0: [1a03:1150] type 01 class 0x060400
[    5.219035] pci 0004:01:00.0: enabling Extended Tags
[    5.224050] pci 0004:01:00.0: supports D1 D2
[    5.228309] pci 0004:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.235013] pci_bus 0004:02: extended config space not accessible
[    5.241118] pci 0004:02:00.0: [1a03:2000] type 00 class 0x030000
[    5.247133] pci 0004:02:00.0: reg 0x10: [mem 0x20000000-0x20ffffff]
[    5.253398] pci 0004:02:00.0: reg 0x14: [mem 0x21000000-0x2101ffff]
[    5.259664] pci 0004:02:00.0: reg 0x18: [io  0x27fff000-0x27fff07f]
[    5.266003] pci 0004:02:00.0: supports D1 D2
[    5.270263] pci 0004:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.277005] pci 0004:03:00.0: [1912:0014] type 00 class 0x0c0330
[    5.283020] pci 0004:03:00.0: reg 0x10: [mem 0x21200000-0x21201fff 64bit]
[    5.289900] pci 0004:03:00.0: PME# supported from D0 D3hot D3cold
[    5.296122] pci 0004:04:00.0: [8086:1533] type 00 class 0x020000
[    5.302148] pci 0004:04:00.0: reg 0x10: [mem 0x21100000-0x2117ffff]
[    5.308434] pci 0004:04:00.0: reg 0x18: [io  0x27ffe000-0x27ffe01f]
[    5.314706] pci 0004:04:00.0: reg 0x1c: [mem 0x21180000-0x21183fff]
[    5.321138] pci 0004:04:00.0: PME# supported from D0 D3hot D3cold
[    5.327335] pci 0004:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-02] add_size 200000 add_align 100000
[    5.339062] pci 0004:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    5.347228] pci 0004:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    5.358694] pci 0004:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 03] add_size 100000 add_align 100000
[    5.369204] pci 0004:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    5.380670] pci 0004:00:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    5.391184] pci 0004:00:01.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    5.397962] pci 0004:00:01.0: BAR 9: assigned [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.406389] pci 0004:00:03.0: BAR 8: assigned [mem 0x21800000-0x219fffff]
[    5.413167] pci 0004:00:03.0: BAR 9: assigned [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.421594] pci 0004:00:05.0: BAR 8: assigned [mem 0x21a00000-0x21bfffff]
[    5.428371] pci 0004:00:05.0: BAR 9: assigned [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.436797] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.443053] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.449656] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.455912] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.462516] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.468772] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.475376] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.481633] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.488236] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.494493] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.501096] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.507352] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.513957] pci 0004:01:00.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    5.520734] pci 0004:01:00.0: BAR 7: no space for [io  size 0x1000]
[    5.526990] pci 0004:01:00.0: BAR 7: failed to assign [io  size 0x1000]
[    5.533594] pci 0004:02:00.0: BAR 0: assigned [mem 0x20000000-0x20ffffff]
[    5.540373] pci 0004:02:00.0: BAR 1: assigned [mem 0x21000000-0x2101ffff]
[    5.547153] pci 0004:02:00.0: BAR 2: no space for [io  size 0x0080]
[    5.553409] pci 0004:02:00.0: BAR 2: failed to assign [io  size 0x0080]
[    5.560012] pci 0004:01:00.0: PCI bridge to [bus 02]
[    5.564969] pci 0004:01:00.0:   bridge window [mem 0x20000000-0x217fffff]
[    5.571754] pci 0004:00:01.0: PCI bridge to [bus 01-02]
[    5.576968] pci 0004:00:01.0:   bridge window [mem 0x20000000-0x217fffff]
[    5.583746] pci 0004:00:01.0:   bridge window [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.592174] pci 0004:03:00.0: BAR 0: assigned [mem 0x21800000-0x21801fff 64bit]
[    5.599481] pci 0004:00:03.0: PCI bridge to [bus 03]
[    5.604436] pci 0004:00:03.0:   bridge window [mem 0x21800000-0x219fffff]
[    5.611213] pci 0004:00:03.0:   bridge window [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.619642] pci 0004:04:00.0: BAR 0: assigned [mem 0x21a00000-0x21a7ffff]
[    5.626424] pci 0004:04:00.0: BAR 3: assigned [mem 0x21a80000-0x21a83fff]
[    5.633205] pci 0004:04:00.0: BAR 2: no space for [io  size 0x0020]
[    5.639461] pci 0004:04:00.0: BAR 2: failed to assign [io  size 0x0020]
[    5.646064] pci 0004:00:05.0: PCI bridge to [bus 04]
[    5.651041] pci 0004:00:05.0:   bridge window [mem 0x21a00000-0x21bfffff]
[    5.657819] pci 0004:00:05.0:   bridge window [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.666246] pci_bus 0004:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.675280] pci_bus 0004:00: resource 4 [mem 0x20000000-0x2fffffff window]
[    5.682145] pci_bus 0004:00: resource 5 [mem 0x280000000000-0x2bffdfffffff window]
[    5.689703] pci_bus 0004:01: resource 1 [mem 0x20000000-0x217fffff]
[    5.695959] pci_bus 0004:01: resource 2 [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.703864] pci_bus 0004:02: resource 1 [mem 0x20000000-0x217fffff]
[    5.710121] pci_bus 0004:03: resource 1 [mem 0x21800000-0x219fffff]
[    5.716376] pci_bus 0004:03: resource 2 [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.724282] pci_bus 0004:04: resource 1 [mem 0x21a00000-0x21bfffff]
[    5.730539] pci_bus 0004:04: resource 2 [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.738493] ACPI: PCI Root Bridge [PCI7] (domain 0005 [bus 00-ff])
[    5.744672] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    5.753772] acpi PNP0A08:07: PCIe port services disabled; not requesting _OSC control
[    5.761594] acpi PNP0A08:07: MCFG quirk: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    5.774393] acpi PNP0A08:07: ECAM area [mem 0x2ffff0000000-0x2fffffffffff] reserved by PNP0C02:00
[    5.783264] acpi PNP0A08:07: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff]
[    5.791416] PCI host bridge to bus 0005:00
[    5.795502] pci_bus 0005:00: root bus resource [mem 0x30000000-0x3fffffff window]
[    5.802974] pci_bus 0005:00: root bus resource [mem 0x2c0000000000-0x2fffdfffffff window]
[    5.811140] pci_bus 0005:00: root bus resource [bus 00-ff]
[    5.816647] pci 0005:00:00.0: [1def:e110] type 00 class 0x060000
[    5.822716] pci 0005:00:01.0: [1def:e111] type 01 class 0x060400
[    5.828759] pci 0005:00:01.0: supports D1 D2
[    5.833019] pci 0005:00:01.0: PME# supported from D0 D1 D3hot
[    5.838805] pci 0005:00:03.0: [1def:e113] type 01 class 0x060400
[    5.844840] pci 0005:00:03.0: supports D1 D2
[    5.849099] pci 0005:00:03.0: PME# supported from D0 D1 D3hot
[    5.854881] pci 0005:00:05.0: [1def:e115] type 01 class 0x060400
[    5.860924] pci 0005:00:05.0: supports D1 D2
[    5.865184] pci 0005:00:05.0: PME# supported from D0 D1 D3hot
[    5.870967] pci 0005:00:07.0: [1def:e117] type 01 class 0x060400
[    5.876996] pci 0005:00:07.0: supports D1 D2
[    5.881255] pci 0005:00:07.0: PME# supported from D0 D1 D3hot
[    5.888136] pci 0005:02:00.0: [1912:0014] type 00 class 0x0c0330
[    5.894151] pci 0005:02:00.0: reg 0x10: [mem 0x30100000-0x30101fff 64bit]
[    5.901032] pci 0005:02:00.0: PME# supported from D0 D3hot D3cold
[    5.908294] pci 0005:04:00.0: [126f:2263] type 00 class 0x010802
[    5.914309] pci 0005:04:00.0: reg 0x10: [mem 0x30000000-0x30003fff 64bit]
[    5.921266] pci 0005:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    5.929435] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    5.940900] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    5.951410] pci 0005:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    5.959576] pci 0005:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[    5.971041] pci 0005:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 02] add_size 100000 add_align 100000
[    5.981551] pci 0005:00:05.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    5.989717] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    6.001182] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[    6.011692] pci 0005:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    6.019858] pci 0005:00:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    6.031323] pci 0005:00:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    6.041837] pci 0005:00:01.0: BAR 8: assigned [mem 0x30000000-0x301fffff]
[    6.048615] pci 0005:00:01.0: BAR 9: assigned [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.057041] pci 0005:00:03.0: BAR 8: assigned [mem 0x30200000-0x303fffff]
[    6.063819] pci 0005:00:03.0: BAR 9: assigned [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.072246] pci 0005:00:05.0: BAR 8: assigned [mem 0x30400000-0x305fffff]
[    6.079023] pci 0005:00:05.0: BAR 9: assigned [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.087450] pci 0005:00:07.0: BAR 8: assigned [mem 0x30600000-0x307fffff]
[    6.094228] pci 0005:00:07.0: BAR 9: assigned [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.102655] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    6.108911] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    6.115514] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    6.121770] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    6.128373] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    6.134628] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    6.141231] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    6.147487] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    6.154093] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    6.160349] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    6.166952] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    6.173207] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    6.179811] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    6.186067] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    6.192670] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    6.198927] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    6.205531] pci 0005:00:01.0: PCI bridge to [bus 01]
[    6.210485] pci 0005:00:01.0:   bridge window [mem 0x30000000-0x301fffff]
[    6.217263] pci 0005:00:01.0:   bridge window [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.225692] pci 0005:02:00.0: BAR 0: assigned [mem 0x30200000-0x30201fff 64bit]
[    6.232998] pci 0005:00:03.0: PCI bridge to [bus 02]
[    6.237952] pci 0005:00:03.0:   bridge window [mem 0x30200000-0x303fffff]
[    6.244729] pci 0005:00:03.0:   bridge window [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.253156] pci 0005:00:05.0: PCI bridge to [bus 03]
[    6.258111] pci 0005:00:05.0:   bridge window [mem 0x30400000-0x305fffff]
[    6.264889] pci 0005:00:05.0:   bridge window [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.273317] pci 0005:04:00.0: BAR 0: assigned [mem 0x30600000-0x30603fff 64bit]
[    6.280630] pci 0005:00:07.0: PCI bridge to [bus 04]
[    6.285585] pci 0005:00:07.0:   bridge window [mem 0x30600000-0x307fffff]
[    6.292363] pci 0005:00:07.0:   bridge window [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.300790] pci_bus 0005:00: resource 4 [mem 0x30000000-0x3fffffff window]
[    6.307655] pci_bus 0005:00: resource 5 [mem 0x2c0000000000-0x2fffdfffffff window]
[    6.315213] pci_bus 0005:01: resource 1 [mem 0x30000000-0x301fffff]
[    6.321468] pci_bus 0005:01: resource 2 [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.329374] pci_bus 0005:02: resource 1 [mem 0x30200000-0x303fffff]
[    6.335630] pci_bus 0005:02: resource 2 [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.343535] pci_bus 0005:03: resource 1 [mem 0x30400000-0x305fffff]
[    6.349791] pci_bus 0005:03: resource 2 [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.357696] pci_bus 0005:04: resource 1 [mem 0x30600000-0x307fffff]
[    6.363952] pci_bus 0005:04: resource 2 [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.372073] iommu: Default domain type: Translated 
[    6.376978] pci 000d:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    6.385326] pci 0004:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    6.393669] pci 000d:01:00.0: vgaarb: bridge control possible
[    6.399404] pci 0004:02:00.0: vgaarb: bridge control possible
[    6.405141] pci 0004:02:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[    6.414002] vgaarb: loaded
[    6.416779] SCSI subsystem initialized
[    6.420522] ACPI: bus type USB registered
[    6.424538] usbcore: registered new interface driver usbfs
[    6.430021] usbcore: registered new interface driver hub
[    6.435337] usbcore: registered new device driver usb
[    6.440395] pps_core: LinuxPPS API ver. 1 registered
[    6.445348] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    6.454470] PTP clock support registered
[    6.458501] Registered efivars operations
[    6.463205] clocksource: Switched to clocksource arch_sys_counter
[    6.644575] pnp: PnP ACPI init
[    6.648989] system 00:00: [mem 0x3bfff0000000-0x3bffffffffff window] has been reserved
[    6.656900] system 00:00: [mem 0x3ffff0000000-0x3fffffffffff window] could not be reserved
[    6.665154] system 00:00: [mem 0x23fff0000000-0x23ffffffffff window] has been reserved
[    6.673060] system 00:00: [mem 0x27fff0000000-0x27ffffffffff window] has been reserved
[    6.680966] system 00:00: [mem 0x2bfff0000000-0x2bffffffffff window] could not be reserved
[    6.689220] system 00:00: [mem 0x2ffff0000000-0x2fffffffffff window] could not be reserved
[    6.697473] system 00:00: [mem 0x7bfff0000000-0x7bffffffffff window] has been reserved
[    6.705379] system 00:00: [mem 0x7ffff0000000-0x7fffffffffff window] has been reserved
[    6.713285] system 00:00: [mem 0x63fff0000000-0x63ffffffffff window] has been reserved
[    6.721192] system 00:00: [mem 0x67fff0000000-0x67ffffffffff window] has been reserved
[    6.729098] system 00:00: [mem 0x6bfff0000000-0x6bffffffffff window] has been reserved
[    6.737004] system 00:00: [mem 0x6ffff0000000-0x6fffffffffff window] has been reserved
[    6.744910] system 00:00: [mem 0x33fff0000000-0x33ffffffffff window] could not be reserved
[    6.753163] system 00:00: [mem 0x37fff0000000-0x37ffffffffff window] could not be reserved
[    6.761425] pnp: PnP ACPI: found 1 devices
[    6.767230] NET: Registered protocol family 2
[    6.771764] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    6.780643] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    6.789654] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    6.797519] TCP: Hash tables configured (established 262144 bind 65536)
[    6.804190] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    6.811397] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    6.819161] NET: Registered protocol family 1
[    6.823690] RPC: Registered named UNIX socket transport module.
[    6.829602] RPC: Registered udp transport module.
[    6.834295] RPC: Registered tcp transport module.
[    6.838988] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    6.845467] pci 000d:01:00.1: D0 power state depends on 000d:01:00.0
[    6.851867] pci 000d:01:00.2: D0 power state depends on 000d:01:00.0
[    6.858245] pci 000d:01:00.2: enabling device (0000 -> 0002)
[    6.863945] pci 000d:01:00.3: D0 power state depends on 000d:01:00.0
[    6.870346] pci 0004:03:00.0: enabling device (0000 -> 0002)
[    6.876033] pci 0005:02:00.0: enabling device (0000 -> 0002)
[    6.881705] PCI: CLS 128 bytes, default 64
[    6.887038] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 7 counters available
[    6.896476] workingset: timestamp_bits=42 max_order=23 bucket_order=0
[    6.904658] NFS: Registering the id_resolver key type
[    6.909711] Key type id_resolver registered
[    6.913884] Key type id_legacy registered
[    6.918153] Key type cifs.idmap registered
[    6.937089] xor: measuring software checksum speed
[    6.942885]    8regs           :  9794 MB/sec
[    6.948067]    32regs          : 11758 MB/sec
[    6.953116]    arm64_neon      : 14034 MB/sec
[    6.957462] xor: using function: arm64_neon (14034 MB/sec)
[    6.962946] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    6.970332] io scheduler mq-deadline registered
[    6.974851] io scheduler kyber registered
[    6.979541] gpio-dwapb APMC0D07:02: no IRQ for port0
[    6.985306] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    6.993691] ACPI: Power Button [PWRB]
[    7.000498] GHES: APEI firmware first mode is enabled by APEI bit.
[    7.006714] EINJ: Error INJection is initialized.
[    7.011447] ACPI GTDT: found 1 SBSA generic Watchdog(s).
[    7.017467] ast 0004:02:00.0: [drm] platform has no IO space, trying MMIO
[    7.024254] ast 0004:02:00.0: [drm] Using P2A bridge for configuration
[    7.030773] ast 0004:02:00.0: [drm] AST 2500 detected
[    7.035817] ast 0004:02:00.0: [drm] Analog VGA only
[    7.040690] ast 0004:02:00.0: [drm] dram MCLK=800 Mhz type=8 bus_width=16
[    7.047562] [TTM] Zone  kernel: Available graphics memory: 16251090 KiB
[    7.054167] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    7.060682] [TTM] Initializing pool allocator
[    7.065033] [TTM] Initializing DMA pool allocator
[    7.070014] [drm] Initialized ast 0.1.0 20120228 for 0004:02:00.0 on minor 0
[    7.094465] Console: switching to colour frame buffer device 128x48
[    7.102917] ast 0004:02:00.0: [drm] fb0: astdrmfb frame buffer device
[    7.123374] brd: module loaded
[    7.130929] loop: module loaded
[    7.134555] nvme nvme0: pci function 0005:04:00.0
[    7.139511] igb: Intel(R) Gigabit Ethernet Network Driver
[    7.141420]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.144903] igb: Copyright (c) 2007-2014 Intel Corporation.
[    7.157525]  ******* In dma_alloc_direct() function *********
[    7.163263]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.170420]  ******* In dma_alloc_direct() function *********
[    7.183946] nvme nvme0: missing or invalid SUBNQN field.
[    7.187488] pps pps0: new PPS source ptp0
[    7.193261]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.193303] igb 0004:04:00.0: added PHC on eth0
[    7.199781]  ******* In dma_alloc_direct() function *********
[    7.204300] igb 0004:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    7.204303] igb 0004:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:3b:50:52
[    7.210038]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.216957] igb 0004:04:00.0: eth0: PBA No: 000300-000
[    7.224024]  ******* In dma_alloc_direct() function *********
[    7.224144]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.230542] igb 0004:04:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[    7.230596] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    7.235670]  ******* In dma_alloc_direct() function *********
[    7.235793]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.241406] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    7.241420] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[    7.247923]  ******* In dma_alloc_direct() function *********
[    7.248044]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.255482] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[    7.255639] i40e 0000:01:00.0: enabling device (0000 -> 0002)
[    7.261739]  ******* In dma_alloc_direct() function *********
[    7.278825]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.280017]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.286152]  ******* In dma_alloc_direct() function *********
[    7.286156]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.291888]  ******* In dma_alloc_direct() function *********
[    7.292009]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.298405]  ******* In dma_alloc_direct() function *********
[    7.298407]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.304227]  ******* In dma_alloc_direct() function *********
[    7.304349]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.309962]  ******* In dma_alloc_direct() function *********
[    7.309965]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.315698]  ******* In dma_alloc_direct() function *********
[    7.315819]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.322214]  ******* In dma_alloc_direct() function *********
[    7.322216]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.328732]  ******* In dma_alloc_direct() function *********
[    7.334467]  ******* In dma_alloc_direct() function *********
[    7.341101]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.346717]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.353233]  ******* In dma_alloc_direct() function *********
[    7.358966]  ******* In dma_alloc_direct() function *********
[    7.358968]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.365605]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.371217]  ******* In dma_alloc_direct() function *********
[    7.371220]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.377734]  ******* In dma_alloc_direct() function *********
[    7.377855]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.383470]  ******* In dma_alloc_direct() function *********
[    7.383472]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.389986]  ******* In dma_alloc_direct() function *********
[    7.390108]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.395721]  ******* In dma_alloc_direct() function *********
[    7.395723]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.402239]  ******* In dma_alloc_direct() function *********
[    7.407973]  ******* In dma_alloc_direct() function *********
[    7.407974]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.414609]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.420223]  ******* In dma_alloc_direct() function *********
[    7.420225]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.425959]  ******* In dma_alloc_direct() function *********
[    7.426081]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.432475]  ******* In dma_alloc_direct() function *********
[    7.432477]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.438993]  ******* In dma_alloc_direct() function *********
[    7.444727]  ******* In dma_alloc_direct() function *********
[    7.444728]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.450583]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.456977]  ******* In dma_alloc_direct() function *********
[    7.456979]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.463494]  ******* In dma_alloc_direct() function *********
[    7.463615]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.469230]  ******* In dma_alloc_direct() function *********
[    7.475746]  ******* In dma_alloc_direct() function *********
[    7.481481]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.488119] nvme nvme0: allocated 64 MiB host memory buffer.
[    7.493730]  ******* In dma_alloc_direct() function *********
[    7.493732]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.512816]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.518238]  ******* In dma_alloc_direct() function *********
[    7.518240]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.518241]  ******* In dma_alloc_direct() function *********
[    7.518242]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.518243]  ******* In dma_alloc_direct() function *********
[    7.518245]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.524762]  ******* In dma_alloc_direct() function *********
[    7.524765]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.530499]  ******* In dma_alloc_direct() function *********
[    7.536233]  ******* In dma_alloc_direct() function *********
[    7.536239]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.542751]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.549267]  ******* In dma_alloc_direct() function *********
[    7.555001]  ******* In dma_alloc_direct() function *********
[    7.561519]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.567254]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.573769]  ******* In dma_alloc_direct() function *********
[    7.579504]  ******* In dma_alloc_direct() function *********
[    7.586023]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.591757]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.597490]  ******* In dma_alloc_direct() function *********
[    7.604006]  ******* In dma_alloc_direct() function *********
[    7.610523]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.616258]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.622773]  ******* In dma_alloc_direct() function *********
[    7.628508]  ******* In dma_alloc_direct() function *********
[    7.635027]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.640762]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.646500]  ******* In dma_alloc_direct() function *********
[    7.653012]  ******* In dma_alloc_direct() function *********
[    7.653014]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.658663]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.664397]  ******* In dma_alloc_direct() function *********
[    7.670911]  ******* In dma_alloc_direct() function *********
[    7.670916]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.677429]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.683162]  ******* In dma_alloc_direct() function *********
[    7.683165]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.689679]  ******* In dma_alloc_direct() function *********
[    7.689681]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.695422]  ******* In dma_alloc_direct() function *********
[    7.701931]  ******* In dma_alloc_direct() function *********
[    7.707668]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.714182]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.719915]  ******* In dma_alloc_direct() function *********
[    7.719918]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.726433]  ******* In dma_alloc_direct() function *********
[    7.732167]  ******* In dma_alloc_direct() function *********
[    7.732172]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.737903]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.744417]  ******* In dma_alloc_direct() function *********
[    7.744420]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.750934]  ******* In dma_alloc_direct() function *********
[    7.750936]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.756670]  ******* In dma_alloc_direct() function *********
[    7.756674]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.762405]  ******* In dma_alloc_direct() function *********
[    7.762407]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.768922]  ******* In dma_alloc_direct() function *********
[    7.768924]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.775439]  ******* In dma_alloc_direct() function *********
[    7.781172]  ******* In dma_alloc_direct() function *********
[    7.879231] nvme nvme0: 8/0/0 default/read/poll queues
[    7.884935]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    7.884937]  ******* In dma_alloc_direct() function *********
[    7.977254]  nvme0n1: p1 p2 p3
[    7.983749]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.083403]  ******* In dma_alloc_direct() function *********
[    8.089139]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.095654]  ******* In dma_alloc_direct() function *********
[    8.101392]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.107910]  ******* In dma_alloc_direct() function *********
[    8.113645]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.120162]  ******* In dma_alloc_direct() function *********
[    8.125899]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.132416]  ******* In dma_alloc_direct() function *********
[    8.138151]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.144667]  ******* In dma_alloc_direct() function *********
[    8.150403]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.156921]  ******* In dma_alloc_direct() function *********
[    8.162655]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.169171]  ******* In dma_alloc_direct() function *********
[    8.174907]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.181424]  ******* In dma_alloc_direct() function *********
[    8.187159]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.193675]  ******* In dma_alloc_direct() function *********
[    8.199410]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.205927]  ******* In dma_alloc_direct() function *********
[    8.211664]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.218181]  ******* In dma_alloc_direct() function *********
[    8.223918]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.230434]  ******* In dma_alloc_direct() function *********
[    8.236169]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.242685]  ******* In dma_alloc_direct() function *********
[    8.248421]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.254938]  ******* In dma_alloc_direct() function *********
[    8.260673]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.267189]  ******* In dma_alloc_direct() function *********
[    8.272924]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.279439]  ******* In dma_alloc_direct() function *********
[    8.285173]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.291697]  ******* In dma_alloc_direct() function *********
[    8.297432]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.303947]  ******* In dma_alloc_direct() function *********
[    8.309682]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.316198]  ******* In dma_alloc_direct() function *********
[    8.321932]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.328449]  ******* In dma_alloc_direct() function *********
[    8.334184]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.340699]  ******* In dma_alloc_direct() function *********
[    8.346434]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.352949]  ******* In dma_alloc_direct() function *********
[    8.358684]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.365200]  ******* In dma_alloc_direct() function *********
[    8.370935]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.377452]  ******* In dma_alloc_direct() function *********
[    8.383187]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.389703]  ******* In dma_alloc_direct() function *********
[    8.395437]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.401952]  ******* In dma_alloc_direct() function *********
[    8.407688]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.414204]  ******* In dma_alloc_direct() function *********
[    8.419939]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.426454]  ******* In dma_alloc_direct() function *********
[    8.432189]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.438704]  ******* In dma_alloc_direct() function *********
[    8.444440]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.450956]  ******* In dma_alloc_direct() function *********
[    8.456691]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.463206]  ******* In dma_alloc_direct() function *********
[    8.468940]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.475456]  ******* In dma_alloc_direct() function *********
[    8.481191]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.487707]  ******* In dma_alloc_direct() function *********
[    8.493442]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.499957]  ******* In dma_alloc_direct() function *********
[    8.505692]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.512207]  ******* In dma_alloc_direct() function *********
[    8.517942]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.524458]  ******* In dma_alloc_direct() function *********
[    8.530193]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.536709]  ******* In dma_alloc_direct() function *********
[    8.542444]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.548960]  ******* In dma_alloc_direct() function *********
[    8.554695]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.561211]  ******* In dma_alloc_direct() function *********
[    8.566946]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.573461]  ******* In dma_alloc_direct() function *********
[    8.579196]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.585712]  ******* In dma_alloc_direct() function *********
[    8.591446]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.597962]  ******* In dma_alloc_direct() function *********
[    8.603697]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.610212]  ******* In dma_alloc_direct() function *********
[    8.615946]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.622462]  ******* In dma_alloc_direct() function *********
[    8.628196]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.634712]  ******* In dma_alloc_direct() function *********
[    8.640446]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.646961]  ******* In dma_alloc_direct() function *********
[    8.652696]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.659211]  ******* In dma_alloc_direct() function *********
[    8.664946]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.671461]  ******* In dma_alloc_direct() function *********
[    8.677196]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.683711]  ******* In dma_alloc_direct() function *********
[    8.689446]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.695961]  ******* In dma_alloc_direct() function *********
[    8.701696]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.708211]  ******* In dma_alloc_direct() function *********
[    8.713947]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.720462]  ******* In dma_alloc_direct() function *********
[    8.726197]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.732712]  ******* In dma_alloc_direct() function *********
[    8.738447]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.744963]  ******* In dma_alloc_direct() function *********
[    8.750698]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.757213]  ******* In dma_alloc_direct() function *********
[    8.762948]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.769463]  ******* In dma_alloc_direct() function *********
[    8.775198]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.781714]  ******* In dma_alloc_direct() function *********
[    8.787448]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.793964]  ******* In dma_alloc_direct() function *********
[    8.799698]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.806214]  ******* In dma_alloc_direct() function *********
[    8.811948]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.818464]  ******* In dma_alloc_direct() function *********
[    8.824198]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.830713]  ******* In dma_alloc_direct() function *********
[    8.836448]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.842963]  ******* In dma_alloc_direct() function *********
[    8.848702]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.855218]  ******* In dma_alloc_direct() function *********
[    8.860952]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.867467]  ******* In dma_alloc_direct() function *********
[    8.873202]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.879718]  ******* In dma_alloc_direct() function *********
[    8.885455]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.891970]  ******* In dma_alloc_direct() function *********
[    8.897705]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.904220]  ******* In dma_alloc_direct() function *********
[    8.909955]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.916470]  ******* In dma_alloc_direct() function *********
[    8.922205]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.928720]  ******* In dma_alloc_direct() function *********
[    8.934455]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.940970]  ******* In dma_alloc_direct() function *********
[    8.946705]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.953221]  ******* In dma_alloc_direct() function *********
[    8.958955]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.965471]  ******* In dma_alloc_direct() function *********
[    8.971205]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.977721]  ******* In dma_alloc_direct() function *********
[    8.983455]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    8.989970]  ******* In dma_alloc_direct() function *********
[    8.995705]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.002221]  ******* In dma_alloc_direct() function *********
[    9.007956]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.014471]  ******* In dma_alloc_direct() function *********
[    9.020206]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.026721]  ******* In dma_alloc_direct() function *********
[    9.032456]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.038971]  ******* In dma_alloc_direct() function *********
[    9.044706]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.051221]  ******* In dma_alloc_direct() function *********
[    9.056956]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.063471]  ******* In dma_alloc_direct() function *********
[    9.069206]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.075721]  ******* In dma_alloc_direct() function *********
[    9.081456]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.087971]  ******* In dma_alloc_direct() function *********
[    9.093705]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.100221]  ******* In dma_alloc_direct() function *********
[    9.105955]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.112471]  ******* In dma_alloc_direct() function *********
[    9.118206]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.124721]  ******* In dma_alloc_direct() function *********
[    9.130456]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.136971]  ******* In dma_alloc_direct() function *********
[    9.142706]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.149221]  ******* In dma_alloc_direct() function *********
[    9.154956]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.161472]  ******* In dma_alloc_direct() function *********
[    9.167207]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.173722]  ******* In dma_alloc_direct() function *********
[    9.179457]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.185973]  ******* In dma_alloc_direct() function *********
[    9.191707]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.198223]  ******* In dma_alloc_direct() function *********
[    9.203958]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.210473]  ******* In dma_alloc_direct() function *********
[    9.216208]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.222723]  ******* In dma_alloc_direct() function *********
[    9.228458]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.234973]  ******* In dma_alloc_direct() function *********
[    9.240708]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.247223]  ******* In dma_alloc_direct() function *********
[    9.252958]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.259473]  ******* In dma_alloc_direct() function *********
[    9.265207]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.271723]  ******* In dma_alloc_direct() function *********
[    9.277457]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.283973]  ******* In dma_alloc_direct() function *********
[    9.289707]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.296222]  ******* In dma_alloc_direct() function *********
[    9.301957]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.308472]  ******* In dma_alloc_direct() function *********
[    9.314213]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.320729]  ******* In dma_alloc_direct() function *********
[    9.326464]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.332979]  ******* In dma_alloc_direct() function *********
[    9.338714]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.345229]  ******* In dma_alloc_direct() function *********
[    9.350964]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.357480]  ******* In dma_alloc_direct() function *********
[    9.363215]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.369731]  ******* In dma_alloc_direct() function *********
[    9.375465]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.381981]  ******* In dma_alloc_direct() function *********
[    9.387715]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.394232]  ******* In dma_alloc_direct() function *********
[    9.399968]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.406484]  ******* In dma_alloc_direct() function *********
[    9.412218]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.418734]  ******* In dma_alloc_direct() function *********
[    9.424469]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.430984]  ******* In dma_alloc_direct() function *********
[    9.436719]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.443234]  ******* In dma_alloc_direct() function *********
[    9.448969]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.455484]  ******* In dma_alloc_direct() function *********
[    9.461219]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.467734]  ******* In dma_alloc_direct() function *********
[    9.473470]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.479985]  ******* In dma_alloc_direct() function *********
[    9.485720]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.492236]  ******* In dma_alloc_direct() function *********
[    9.497970]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.504486]  ******* In dma_alloc_direct() function *********
[    9.510220]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.516736]  ******* In dma_alloc_direct() function *********
[    9.522470]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.528985]  ******* In dma_alloc_direct() function *********
[    9.534720]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.541235]  ******* In dma_alloc_direct() function *********
[    9.546970]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.553485]  ******* In dma_alloc_direct() function *********
[    9.559220]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.565735]  ******* In dma_alloc_direct() function *********
[    9.571470]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.577986]  ******* In dma_alloc_direct() function *********
[    9.583721]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.590236]  ******* In dma_alloc_direct() function *********
[    9.595971]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.602486]  ******* In dma_alloc_direct() function *********
[    9.608221]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.614736]  ******* In dma_alloc_direct() function *********
[    9.620475]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.626990]  ******* In dma_alloc_direct() function *********
[    9.632725]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.639240]  ******* In dma_alloc_direct() function *********
[    9.644975]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.651490]  ******* In dma_alloc_direct() function *********
[    9.657225]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.663740]  ******* In dma_alloc_direct() function *********
[    9.669475]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.675990]  ******* In dma_alloc_direct() function *********
[    9.681725]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.688240]  ******* In dma_alloc_direct() function *********
[    9.693975]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.700490]  ******* In dma_alloc_direct() function *********
[    9.706225]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.712740]  ******* In dma_alloc_direct() function *********
[    9.718475]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.724990]  ******* In dma_alloc_direct() function *********
[    9.730725]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.737240]  ******* In dma_alloc_direct() function *********
[    9.742975]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.749490]  ******* In dma_alloc_direct() function *********
[    9.755225]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.761740]  ******* In dma_alloc_direct() function *********
[    9.767475]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.773991]  ******* In dma_alloc_direct() function *********
[    9.779726]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.786242]  ******* In dma_alloc_direct() function *********
[    9.791976]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.798491]  ******* In dma_alloc_direct() function *********
[    9.804227]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.810742]  ******* In dma_alloc_direct() function *********
[    9.816477]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.822992]  ******* In dma_alloc_direct() function *********
[    9.828727]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.835242]  ******* In dma_alloc_direct() function *********
[    9.840977]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.847492]  ******* In dma_alloc_direct() function *********
[    9.853227]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.859742]  ******* In dma_alloc_direct() function *********
[    9.865477]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.871992]  ******* In dma_alloc_direct() function *********
[    9.877727]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.884242]  ******* In dma_alloc_direct() function *********
[    9.889977]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.896492]  ******* In dma_alloc_direct() function *********
[    9.902228]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.908746]  ******* In dma_alloc_direct() function *********
[    9.914481]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.920997]  ******* In dma_alloc_direct() function *********
[    9.926731]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.933246]  ******* In dma_alloc_direct() function *********
[    9.938981]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.945496]  ******* In dma_alloc_direct() function *********
[    9.951231]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.957746]  ******* In dma_alloc_direct() function *********
[    9.963481]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.969997]  ******* In dma_alloc_direct() function *********
[    9.975731]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.982247]  ******* In dma_alloc_direct() function *********
[    9.987982]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[    9.994498]  ******* In dma_alloc_direct() function *********
[   10.000232]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.006748]  ******* In dma_alloc_direct() function *********
[   10.012482]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.018997]  ******* In dma_alloc_direct() function *********
[   10.024732]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.031247]  ******* In dma_alloc_direct() function *********
[   10.036982]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.043497]  ******* In dma_alloc_direct() function *********
[   10.049232]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.055747]  ******* In dma_alloc_direct() function *********
[   10.061482]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.068000]  ******* In dma_alloc_direct() function *********
[   10.073735]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.080251]  ******* In dma_alloc_direct() function *********
[   10.085986]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.092501]  ******* In dma_alloc_direct() function *********
[   10.098235]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.104751]  ******* In dma_alloc_direct() function *********
[   10.110485]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.117001]  ******* In dma_alloc_direct() function *********
[   10.122735]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.129250]  ******* In dma_alloc_direct() function *********
[   10.134986]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.141501]  ******* In dma_alloc_direct() function *********
[   10.147236]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.153751]  ******* In dma_alloc_direct() function *********
[   10.159486]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.166001]  ******* In dma_alloc_direct() function *********
[   10.171735]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.178251]  ******* In dma_alloc_direct() function *********
[   10.183985]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.190501]  ******* In dma_alloc_direct() function *********
[   10.196236]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.202752]  ******* In dma_alloc_direct() function *********
[   10.208486]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.215001]  ******* In dma_alloc_direct() function *********
[   10.220736]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.227251]  ******* In dma_alloc_direct() function *********
[   10.232986]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.239501]  ******* In dma_alloc_direct() function *********
[   10.245236]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.251751]  ******* In dma_alloc_direct() function *********
[   10.257486]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.264001]  ******* In dma_alloc_direct() function *********
[   10.269736]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.276252]  ******* In dma_alloc_direct() function *********
[   10.281986]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.288501]  ******* In dma_alloc_direct() function *********
[   10.294237]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.300752]  ******* In dma_alloc_direct() function *********
[   10.306487]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.313002]  ******* In dma_alloc_direct() function *********
[   10.318737]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.325252]  ******* In dma_alloc_direct() function *********
[   10.330987]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.337508]  ******* In dma_alloc_direct() function *********
[   10.343243]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.349759]  ******* In dma_alloc_direct() function *********
[   10.355493]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.362009]  ******* In dma_alloc_direct() function *********
[   10.367744]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.374259]  ******* In dma_alloc_direct() function *********
[   10.379994]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.386509]  ******* In dma_alloc_direct() function *********
[   10.392247]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.398762]  ******* In dma_alloc_direct() function *********
[   10.404497]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.411013]  ******* In dma_alloc_direct() function *********
[   10.416748]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.423265]  ******* In dma_alloc_direct() function *********
[   10.428999]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.435514]  ******* In dma_alloc_direct() function *********
[   10.441249]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.447764]  ******* In dma_alloc_direct() function *********
[   10.453499]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.460014]  ******* In dma_alloc_direct() function *********
[   10.465749]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.472264]  ******* In dma_alloc_direct() function *********
[   10.477999]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.484514]  ******* In dma_alloc_direct() function *********
[   10.490249]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.496764]  ******* In dma_alloc_direct() function *********
[   10.502499]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.509014]  ******* In dma_alloc_direct() function *********
[   10.514749]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.521264]  ******* In dma_alloc_direct() function *********
[   10.526999]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.533514]  ******* In dma_alloc_direct() function *********
[   10.539249]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.545764]  ******* In dma_alloc_direct() function *********
[   10.551499]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.558014]  ******* In dma_alloc_direct() function *********
[   10.563749]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.570265]  ******* In dma_alloc_direct() function *********
[   10.575999]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.582514]  ******* In dma_alloc_direct() function *********
[   10.588249]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.594764]  ******* In dma_alloc_direct() function *********
[   10.600499]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.607014]  ******* In dma_alloc_direct() function *********
[   10.612750]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.619265]  ******* In dma_alloc_direct() function *********
[   10.624999]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.631515]  ******* In dma_alloc_direct() function *********
[   10.637249]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.643765]  ******* In dma_alloc_direct() function *********
[   10.649499]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.656015]  ******* In dma_alloc_direct() function *********
[   10.661750]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.668265]  ******* In dma_alloc_direct() function *********
[   10.674000]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.680515]  ******* In dma_alloc_direct() function *********
[   10.686250]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.692766]  ******* In dma_alloc_direct() function *********
[   10.698501]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.705016]  ******* In dma_alloc_direct() function *********
[   10.710750]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.717266]  ******* In dma_alloc_direct() function *********
[   10.723000]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.729516]  ******* In dma_alloc_direct() function *********
[   10.735250]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.741766]  ******* In dma_alloc_direct() function *********
[   10.747500]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.754016]  ******* In dma_alloc_direct() function *********
[   10.759751]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.766266]  ******* In dma_alloc_direct() function *********
[   10.772001]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.778516]  ******* In dma_alloc_direct() function *********
[   10.784251]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.790766]  ******* In dma_alloc_direct() function *********
[   10.796501]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.803016]  ******* In dma_alloc_direct() function *********
[   10.808751]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.815267]  ******* In dma_alloc_direct() function *********
[   10.821004]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.827519]  ******* In dma_alloc_direct() function *********
[   10.833256]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.839771]  ******* In dma_alloc_direct() function *********
[   10.845506]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.852021]  ******* In dma_alloc_direct() function *********
[   10.857756]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.864272]  ******* In dma_alloc_direct() function *********
[   10.870006]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.876522]  ******* In dma_alloc_direct() function *********
[   10.882256]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.888772]  ******* In dma_alloc_direct() function *********
[   10.894506]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.901021]  ******* In dma_alloc_direct() function *********
[   10.906756]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.913271]  ******* In dma_alloc_direct() function *********
[   10.919006]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.925521]  ******* In dma_alloc_direct() function *********
[   10.931258]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.937774]  ******* In dma_alloc_direct() function *********
[   10.943509]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.950025]  ******* In dma_alloc_direct() function *********
[   10.955759]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.962275]  ******* In dma_alloc_direct() function *********
[   10.968009]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.974525]  ******* In dma_alloc_direct() function *********
[   10.980259]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.986775]  ******* In dma_alloc_direct() function *********
[   10.992510]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   10.999025]  ******* In dma_alloc_direct() function *********
[   11.004760]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.011275]  ******* In dma_alloc_direct() function *********
[   11.017010]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.023526]  ******* In dma_alloc_direct() function *********
[   11.029261]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.035776]  ******* In dma_alloc_direct() function *********
[   11.041510]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.048026]  ******* In dma_alloc_direct() function *********
[   11.053761]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.060277]  ******* In dma_alloc_direct() function *********
[   11.066011]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.072527]  ******* In dma_alloc_direct() function *********
[   11.078262]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.084777]  ******* In dma_alloc_direct() function *********
[   11.090512]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.097027]  ******* In dma_alloc_direct() function *********
[   11.102762]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.109277]  ******* In dma_alloc_direct() function *********
[   11.115012]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.121527]  ******* In dma_alloc_direct() function *********
[   11.127262]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.133777]  ******* In dma_alloc_direct() function *********
[   11.139511]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.146027]  ******* In dma_alloc_direct() function *********
[   11.151761]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.158276]  ******* In dma_alloc_direct() function *********
[   11.164012]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.170527]  ******* In dma_alloc_direct() function *********
[   11.176264]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.182780]  ******* In dma_alloc_direct() function *********
[   11.188515]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.195030]  ******* In dma_alloc_direct() function *********
[   11.200765]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.207280]  ******* In dma_alloc_direct() function *********
[   11.213015]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.219530]  ******* In dma_alloc_direct() function *********
[   11.225264]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.231780]  ******* In dma_alloc_direct() function *********
[   11.237515]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.244031]  ******* In dma_alloc_direct() function *********
[   11.249766]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.256281]  ******* In dma_alloc_direct() function *********
[   11.262016]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.268531]  ******* In dma_alloc_direct() function *********
[   11.274266]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.280781]  ******* In dma_alloc_direct() function *********
[   11.286516]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.293031]  ******* In dma_alloc_direct() function *********
[   11.298766]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.305281]  ******* In dma_alloc_direct() function *********
[   11.311016]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.317531]  ******* In dma_alloc_direct() function *********
[   11.323266]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.329782]  ******* In dma_alloc_direct() function *********
[   11.335517]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.342032]  ******* In dma_alloc_direct() function *********
[   11.347767]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.354282]  ******* In dma_alloc_direct() function *********
[   11.360023]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.366538]  ******* In dma_alloc_direct() function *********
[   11.372274]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.378789]  ******* In dma_alloc_direct() function *********
[   11.384524]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.391039]  ******* In dma_alloc_direct() function *********
[   11.396774]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.403289]  ******* In dma_alloc_direct() function *********
[   11.409024]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.415539]  ******* In dma_alloc_direct() function *********
[   11.421274]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.427789]  ******* In dma_alloc_direct() function *********
[   11.433524]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.440041]  ******* In dma_alloc_direct() function *********
[   11.445777]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.452292]  ******* In dma_alloc_direct() function *********
[   11.458027]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.464543]  ******* In dma_alloc_direct() function *********
[   11.470277]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.476793]  ******* In dma_alloc_direct() function *********
[   11.482527]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.489042]  ******* In dma_alloc_direct() function *********
[   11.494778]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.501293]  ******* In dma_alloc_direct() function *********
[   11.507028]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.513543]  ******* In dma_alloc_direct() function *********
[   11.519278]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.525793]  ******* In dma_alloc_direct() function *********
[   11.531528]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.538043]  ******* In dma_alloc_direct() function *********
[   11.543778]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.550293]  ******* In dma_alloc_direct() function *********
[   11.556028]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.562543]  ******* In dma_alloc_direct() function *********
[   11.568278]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.574793]  ******* In dma_alloc_direct() function *********
[   11.580528]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.587043]  ******* In dma_alloc_direct() function *********
[   11.592778]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.599293]  ******* In dma_alloc_direct() function *********
[   11.605028]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.611543]  ******* In dma_alloc_direct() function *********
[   11.617278]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.623793]  ******* In dma_alloc_direct() function *********
[   11.629527]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.636042]  ******* In dma_alloc_direct() function *********
[   11.641777]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.648293]  ******* In dma_alloc_direct() function *********
[   11.654028]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.660543]  ******* In dma_alloc_direct() function *********
[   11.666278]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.672793]  ******* In dma_alloc_direct() function *********
[   11.678527]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.685043]  ******* In dma_alloc_direct() function *********
[   11.690777]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.697293]  ******* In dma_alloc_direct() function *********
[   11.703028]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.709543]  ******* In dma_alloc_direct() function *********
[   11.715278]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.721794]  ******* In dma_alloc_direct() function *********
[   11.727528]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.734043]  ******* In dma_alloc_direct() function *********
[   11.739778]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.746293]  ******* In dma_alloc_direct() function *********
[   11.752028]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.758543]  ******* In dma_alloc_direct() function *********
[   11.764278]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.770793]  ******* In dma_alloc_direct() function *********
[   11.776528]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.783043]  ******* In dma_alloc_direct() function *********
[   11.788778]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.795293]  ******* In dma_alloc_direct() function *********
[   11.801028]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.807543]  ******* In dma_alloc_direct() function *********
[   11.813278]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.819793]  ******* In dma_alloc_direct() function *********
[   11.825527]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.832043]  ******* In dma_alloc_direct() function *********
[   11.837777]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.844293]  ******* In dma_alloc_direct() function *********
[   11.850027]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.856543]  ******* In dma_alloc_direct() function *********
[   11.862278]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.868793]  ******* In dma_alloc_direct() function *********
[   11.874528]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.881043]  ******* In dma_alloc_direct() function *********
[   11.886778]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.893293]  ******* In dma_alloc_direct() function *********
[   11.899028]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.905543]  ******* In dma_alloc_direct() function *********
[   11.911278]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.917793]  ******* In dma_alloc_direct() function *********
[   11.923528]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.930043]  ******* In dma_alloc_direct() function *********
[   11.935778]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.942293]  ******* In dma_alloc_direct() function *********
[   11.948030]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.954547]  ******* In dma_alloc_direct() function *********
[   11.960284]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.966799]  ******* In dma_alloc_direct() function *********
[   11.972534]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.979050]  ******* In dma_alloc_direct() function *********
[   11.984784]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   11.991300]  ******* In dma_alloc_direct() function *********
[   11.997035]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.003550]  ******* In dma_alloc_direct() function *********
[   12.009285]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.015800]  ******* In dma_alloc_direct() function *********
[   12.021535]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.028050]  ******* In dma_alloc_direct() function *********
[   12.033785]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.040300]  ******* In dma_alloc_direct() function *********
[   12.046035]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.052550]  ******* In dma_alloc_direct() function *********
[   12.058284]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.064800]  ******* In dma_alloc_direct() function *********
[   12.070535]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.077051]  ******* In dma_alloc_direct() function *********
[   12.082785]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.089301]  ******* In dma_alloc_direct() function *********
[   12.095036]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.101551]  ******* In dma_alloc_direct() function *********
[   12.107286]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.113801]  ******* In dma_alloc_direct() function *********
[   12.119536]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.126051]  ******* In dma_alloc_direct() function *********
[   12.131786]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.138301]  ******* In dma_alloc_direct() function *********
[   12.144036]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.150551]  ******* In dma_alloc_direct() function *********
[   12.156285]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.162801]  ******* In dma_alloc_direct() function *********
[   12.168536]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.175051]  ******* In dma_alloc_direct() function *********
[   12.180786]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.187301]  ******* In dma_alloc_direct() function *********
[   12.193036]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.199551]  ******* In dma_alloc_direct() function *********
[   12.205286]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.211802]  ******* In dma_alloc_direct() function *********
[   12.217536]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.224051]  ******* In dma_alloc_direct() function *********
[   12.229786]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.236302]  ******* In dma_alloc_direct() function *********
[   12.242036]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.248552]  ******* In dma_alloc_direct() function *********
[   12.254286]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.260801]  ******* In dma_alloc_direct() function *********
[   12.266536]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.273052]  ******* In dma_alloc_direct() function *********
[   12.278787]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.285302]  ******* In dma_alloc_direct() function *********
[   12.291037]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.297552]  ******* In dma_alloc_direct() function *********
[   12.303288]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.309803]  ******* In dma_alloc_direct() function *********
[   12.315537]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.322053]  ******* In dma_alloc_direct() function *********
[   12.327788]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.334303]  ******* In dma_alloc_direct() function *********
[   12.340037]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.346553]  ******* In dma_alloc_direct() function *********
[   12.352287]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.358802]  ******* In dma_alloc_direct() function *********
[   12.364537]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.371060]  ******* In dma_alloc_direct() function *********
[   12.376797]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.383318]  ******* In dma_alloc_direct() function *********
[   12.389054]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.395569]  ******* In dma_alloc_direct() function *********
[   12.401304]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.407819]  ******* In dma_alloc_direct() function *********
[   12.413554]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.420069]  ******* In dma_alloc_direct() function *********
[   12.425804]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.432320]  ******* In dma_alloc_direct() function *********
[   12.438055]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.444570]  ******* In dma_alloc_direct() function *********
[   12.450305]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.456820]  ******* In dma_alloc_direct() function *********
[   12.462555]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.469073]  ******* In dma_alloc_direct() function *********
[   12.474809]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.481325]  ******* In dma_alloc_direct() function *********
[   12.487060]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.493575]  ******* In dma_alloc_direct() function *********
[   12.499310]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.505825]  ******* In dma_alloc_direct() function *********
[   12.511561]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.518076]  ******* In dma_alloc_direct() function *********
[   12.523810]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.530326]  ******* In dma_alloc_direct() function *********
[   12.536060]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.542575]  ******* In dma_alloc_direct() function *********
[   12.548310]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.554825]  ******* In dma_alloc_direct() function *********
[   12.560560]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.567075]  ******* In dma_alloc_direct() function *********
[   12.572810]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.579325]  ******* In dma_alloc_direct() function *********
[   12.585060]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.591575]  ******* In dma_alloc_direct() function *********
[   12.597310]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.603825]  ******* In dma_alloc_direct() function *********
[   12.609560]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.616075]  ******* In dma_alloc_direct() function *********
[   12.621810]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.628325]  ******* In dma_alloc_direct() function *********
[   12.634060]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.640575]  ******* In dma_alloc_direct() function *********
[   12.646309]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.652825]  ******* In dma_alloc_direct() function *********
[   12.658560]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.665076]  ******* In dma_alloc_direct() function *********
[   12.670810]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.677326]  ******* In dma_alloc_direct() function *********
[   12.683061]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.689576]  ******* In dma_alloc_direct() function *********
[   12.695311]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.701827]  ******* In dma_alloc_direct() function *********
[   12.707562]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.714077]  ******* In dma_alloc_direct() function *********
[   12.719815]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.726330]  ******* In dma_alloc_direct() function *********
[   12.732065]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.738581]  ******* In dma_alloc_direct() function *********
[   12.744315]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.750830]  ******* In dma_alloc_direct() function *********
[   12.756566]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.763081]  ******* In dma_alloc_direct() function *********
[   12.768816]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.775331]  ******* In dma_alloc_direct() function *********
[   12.781066]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.787581]  ******* In dma_alloc_direct() function *********
[   12.793316]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.799831]  ******* In dma_alloc_direct() function *********
[   12.805565]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.812081]  ******* In dma_alloc_direct() function *********
[   12.817815]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.824330]  ******* In dma_alloc_direct() function *********
[   12.830065]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.836580]  ******* In dma_alloc_direct() function *********
[   12.842315]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.848830]  ******* In dma_alloc_direct() function *********
[   12.854565]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.861080]  ******* In dma_alloc_direct() function *********
[   12.866815]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.873330]  ******* In dma_alloc_direct() function *********
[   12.879065]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.885583]  ******* In dma_alloc_direct() function *********
[   12.891319]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.897834]  ******* In dma_alloc_direct() function *********
[   12.903569]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.910084]  ******* In dma_alloc_direct() function *********
[   12.915819]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.922335]  ******* In dma_alloc_direct() function *********
[   12.928069]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.934585]  ******* In dma_alloc_direct() function *********
[   12.940320]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.946835]  ******* In dma_alloc_direct() function *********
[   12.952570]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.959085]  ******* In dma_alloc_direct() function *********
[   12.964820]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.971335]  ******* In dma_alloc_direct() function *********
[   12.977071]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.983588]  ******* In dma_alloc_direct() function *********
[   12.989322]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   12.995837]  ******* In dma_alloc_direct() function *********
[   13.001572]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.008087]  ******* In dma_alloc_direct() function *********
[   13.013822]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.020337]  ******* In dma_alloc_direct() function *********
[   13.026072]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.032588]  ******* In dma_alloc_direct() function *********
[   13.038322]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.044838]  ******* In dma_alloc_direct() function *********
[   13.050573]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.057088]  ******* In dma_alloc_direct() function *********
[   13.062823]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.069338]  ******* In dma_alloc_direct() function *********
[   13.075073]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.081588]  ******* In dma_alloc_direct() function *********
[   13.087323]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.093839]  ******* In dma_alloc_direct() function *********
[   13.099574]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.106089]  ******* In dma_alloc_direct() function *********
[   13.111824]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.118339]  ******* In dma_alloc_direct() function *********
[   13.124074]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.130589]  ******* In dma_alloc_direct() function *********
[   13.136325]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.142842]  ******* In dma_alloc_direct() function *********
[   13.148577]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.155092]  ******* In dma_alloc_direct() function *********
[   13.160827]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.167342]  ******* In dma_alloc_direct() function *********
[   13.173078]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.179593]  ******* In dma_alloc_direct() function *********
[   13.185328]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.191843]  ******* In dma_alloc_direct() function *********
[   13.197579]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.204094]  ******* In dma_alloc_direct() function *********
[   13.209829]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.216345]  ******* In dma_alloc_direct() function *********
[   13.222080]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.228595]  ******* In dma_alloc_direct() function *********
[   13.234330]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.240845]  ******* In dma_alloc_direct() function *********
[   13.246581]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.253096]  ******* In dma_alloc_direct() function *********
[   13.258831]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.265347]  ******* In dma_alloc_direct() function *********
[   13.271081]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.277597]  ******* In dma_alloc_direct() function *********
[   13.283332]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.289848]  ******* In dma_alloc_direct() function *********
[   13.295583]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.302098]  ******* In dma_alloc_direct() function *********
[   13.307833]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.314349]  ******* In dma_alloc_direct() function *********
[   13.320084]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.326599]  ******* In dma_alloc_direct() function *********
[   13.332334]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.338849]  ******* In dma_alloc_direct() function *********
[   13.344584]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.351100]  ******* In dma_alloc_direct() function *********
[   13.356835]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.363351]  ******* In dma_alloc_direct() function *********
[   13.369086]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.375601]  ******* In dma_alloc_direct() function *********
[   13.381336]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.387851]  ******* In dma_alloc_direct() function *********
[   13.393586]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.400101]  ******* In dma_alloc_direct() function *********
[   13.405842]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.412357]  ******* In dma_alloc_direct() function *********
[   13.418092]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.424608]  ******* In dma_alloc_direct() function *********
[   13.430342]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.436857]  ******* In dma_alloc_direct() function *********
[   13.442593]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.449108]  ******* In dma_alloc_direct() function *********
[   13.454843]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.461358]  ******* In dma_alloc_direct() function *********
[   13.467093]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.473608]  ******* In dma_alloc_direct() function *********
[   13.479343]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.485859]  ******* In dma_alloc_direct() function *********
[   13.491600]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.498116]  ******* In dma_alloc_direct() function *********
[   13.503851]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.510366]  ******* In dma_alloc_direct() function *********
[   13.516101]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.522617]  ******* In dma_alloc_direct() function *********
[   13.528351]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.534867]  ******* In dma_alloc_direct() function *********
[   13.540602]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.547117]  ******* In dma_alloc_direct() function *********
[   13.552852]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.559367]  ******* In dma_alloc_direct() function *********
[   13.565102]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.571617]  ******* In dma_alloc_direct() function *********
[   13.577352]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.583867]  ******* In dma_alloc_direct() function *********
[   13.589602]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.596117]  ******* In dma_alloc_direct() function *********
[   13.601852]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.608367]  ******* In dma_alloc_direct() function *********
[   13.614102]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.620617]  ******* In dma_alloc_direct() function *********
[   13.626352]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.632867]  ******* In dma_alloc_direct() function *********
[   13.638601]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.645117]  ******* In dma_alloc_direct() function *********
[   13.650851]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.657367]  ******* In dma_alloc_direct() function *********
[   13.663101]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.669617]  ******* In dma_alloc_direct() function *********
[   13.675351]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.681866]  ******* In dma_alloc_direct() function *********
[   13.687601]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.694116]  ******* In dma_alloc_direct() function *********
[   13.699851]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.706366]  ******* In dma_alloc_direct() function *********
[   13.712101]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.718616]  ******* In dma_alloc_direct() function *********
[   13.724351]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.730867]  ******* In dma_alloc_direct() function *********
[   13.736602]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.743117]  ******* In dma_alloc_direct() function *********
[   13.748852]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.755367]  ******* In dma_alloc_direct() function *********
[   13.761102]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.767617]  ******* In dma_alloc_direct() function *********
[   13.773352]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.779868]  ******* In dma_alloc_direct() function *********
[   13.785603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.792118]  ******* In dma_alloc_direct() function *********
[   13.797853]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.804368]  ******* In dma_alloc_direct() function *********
[   13.810104]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.816619]  ******* In dma_alloc_direct() function *********
[   13.822353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.828869]  ******* In dma_alloc_direct() function *********
[   13.834603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.841119]  ******* In dma_alloc_direct() function *********
[   13.846853]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.853369]  ******* In dma_alloc_direct() function *********
[   13.859103]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.865618]  ******* In dma_alloc_direct() function *********
[   13.871353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.877868]  ******* In dma_alloc_direct() function *********
[   13.883603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.890119]  ******* In dma_alloc_direct() function *********
[   13.895854]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.902369]  ******* In dma_alloc_direct() function *********
[   13.908103]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.914619]  ******* In dma_alloc_direct() function *********
[   13.920354]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.926869]  ******* In dma_alloc_direct() function *********
[   13.932604]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.939120]  ******* In dma_alloc_direct() function *********
[   13.944855]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.951370]  ******* In dma_alloc_direct() function *********
[   13.957105]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   13.963620]  ******* In dma_alloc_direct() function *********
[   13.970310] i40e 0000:01:00.0: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0002]
[   14.258191]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.264707]  ******* In dma_alloc_direct() function *********
[   14.270555] i40e 0000:01:00.0: MAC address: 3c:fd:fe:6b:e9:c0
[   14.276444] i40e 0000:01:00.0: FW LLDP is enabled
[   14.287110]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.293632]  ******* In dma_alloc_direct() function *********
[   14.299367]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.305883]  ******* In dma_alloc_direct() function *********
[   14.311790] i40e 0000:01:00.0: PCI-Express: Speed 8.0GT/s Width x8
[   14.319049] i40e 0000:01:00.0: Features: PF-id[0] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   14.329230] i40e 0000:01:00.1: enabling device (0000 -> 0002)
[   14.345540]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.352057]  ******* In dma_alloc_direct() function *********
[   14.357794]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.364310]  ******* In dma_alloc_direct() function *********
[   14.370046]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.376562]  ******* In dma_alloc_direct() function *********
[   14.382296]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.388811]  ******* In dma_alloc_direct() function *********
[   14.394547]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.401062]  ******* In dma_alloc_direct() function *********
[   14.406797]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.413313]  ******* In dma_alloc_direct() function *********
[   14.419048]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.425563]  ******* In dma_alloc_direct() function *********
[   14.431297]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.437813]  ******* In dma_alloc_direct() function *********
[   14.443547]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.450063]  ******* In dma_alloc_direct() function *********
[   14.455798]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.462313]  ******* In dma_alloc_direct() function *********
[   14.468048]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.474563]  ******* In dma_alloc_direct() function *********
[   14.480298]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.486814]  ******* In dma_alloc_direct() function *********
[   14.492548]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.499063]  ******* In dma_alloc_direct() function *********
[   14.504798]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.511314]  ******* In dma_alloc_direct() function *********
[   14.517050]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.523566]  ******* In dma_alloc_direct() function *********
[   14.529300]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.535816]  ******* In dma_alloc_direct() function *********
[   14.541551]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.548067]  ******* In dma_alloc_direct() function *********
[   14.553802]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.560317]  ******* In dma_alloc_direct() function *********
[   14.566052]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.572568]  ******* In dma_alloc_direct() function *********
[   14.578302]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.584818]  ******* In dma_alloc_direct() function *********
[   14.590556]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.597072]  ******* In dma_alloc_direct() function *********
[   14.602806]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.609322]  ******* In dma_alloc_direct() function *********
[   14.615056]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.621572]  ******* In dma_alloc_direct() function *********
[   14.627307]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.633822]  ******* In dma_alloc_direct() function *********
[   14.639557]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.646072]  ******* In dma_alloc_direct() function *********
[   14.651807]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.658322]  ******* In dma_alloc_direct() function *********
[   14.664057]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.670572]  ******* In dma_alloc_direct() function *********
[   14.676307]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.682822]  ******* In dma_alloc_direct() function *********
[   14.688557]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.695073]  ******* In dma_alloc_direct() function *********
[   14.700807]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.707323]  ******* In dma_alloc_direct() function *********
[   14.713057]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.719573]  ******* In dma_alloc_direct() function *********
[   14.725307]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.731822]  ******* In dma_alloc_direct() function *********
[   14.737557]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.744072]  ******* In dma_alloc_direct() function *********
[   14.749807]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.756323]  ******* In dma_alloc_direct() function *********
[   14.762058]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.768573]  ******* In dma_alloc_direct() function *********
[   14.774308]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.780823]  ******* In dma_alloc_direct() function *********
[   14.786558]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.793074]  ******* In dma_alloc_direct() function *********
[   14.798808]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.805324]  ******* In dma_alloc_direct() function *********
[   14.811058]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.817573]  ******* In dma_alloc_direct() function *********
[   14.823308]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.829823]  ******* In dma_alloc_direct() function *********
[   14.835559]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.842074]  ******* In dma_alloc_direct() function *********
[   14.847808]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.854324]  ******* In dma_alloc_direct() function *********
[   14.860059]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.866574]  ******* In dma_alloc_direct() function *********
[   14.872309]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.878825]  ******* In dma_alloc_direct() function *********
[   14.884559]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.891074]  ******* In dma_alloc_direct() function *********
[   14.896809]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.903324]  ******* In dma_alloc_direct() function *********
[   14.909059]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.915574]  ******* In dma_alloc_direct() function *********
[   14.921309]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.927824]  ******* In dma_alloc_direct() function *********
[   14.933559]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.940074]  ******* In dma_alloc_direct() function *********
[   14.945809]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.952324]  ******* In dma_alloc_direct() function *********
[   14.958059]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.964575]  ******* In dma_alloc_direct() function *********
[   14.970309]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.976825]  ******* In dma_alloc_direct() function *********
[   14.982559]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   14.989074]  ******* In dma_alloc_direct() function *********
[   14.994809]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.001325]  ******* In dma_alloc_direct() function *********
[   15.007059]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.013575]  ******* In dma_alloc_direct() function *********
[   15.019310]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.025826]  ******* In dma_alloc_direct() function *********
[   15.031563]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.038078]  ******* In dma_alloc_direct() function *********
[   15.043813]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.050328]  ******* In dma_alloc_direct() function *********
[   15.056063]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.062578]  ******* In dma_alloc_direct() function *********
[   15.068313]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.074828]  ******* In dma_alloc_direct() function *********
[   15.080563]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.087078]  ******* In dma_alloc_direct() function *********
[   15.092813]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.099328]  ******* In dma_alloc_direct() function *********
[   15.105063]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.111578]  ******* In dma_alloc_direct() function *********
[   15.117313]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.123828]  ******* In dma_alloc_direct() function *********
[   15.129562]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.136078]  ******* In dma_alloc_direct() function *********
[   15.141812]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.148328]  ******* In dma_alloc_direct() function *********
[   15.154062]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.160577]  ******* In dma_alloc_direct() function *********
[   15.166312]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.172828]  ******* In dma_alloc_direct() function *********
[   15.178563]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.185078]  ******* In dma_alloc_direct() function *********
[   15.190814]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.197329]  ******* In dma_alloc_direct() function *********
[   15.203064]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.209579]  ******* In dma_alloc_direct() function *********
[   15.215313]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.221829]  ******* In dma_alloc_direct() function *********
[   15.227563]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.234079]  ******* In dma_alloc_direct() function *********
[   15.239813]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.246328]  ******* In dma_alloc_direct() function *********
[   15.252063]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.258578]  ******* In dma_alloc_direct() function *********
[   15.264313]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.270828]  ******* In dma_alloc_direct() function *********
[   15.276563]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.283078]  ******* In dma_alloc_direct() function *********
[   15.288813]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.295328]  ******* In dma_alloc_direct() function *********
[   15.301063]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.307578]  ******* In dma_alloc_direct() function *********
[   15.313314]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.319829]  ******* In dma_alloc_direct() function *********
[   15.325564]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.332079]  ******* In dma_alloc_direct() function *********
[   15.337814]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.344329]  ******* In dma_alloc_direct() function *********
[   15.350064]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.356579]  ******* In dma_alloc_direct() function *********
[   15.362323]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.368839]  ******* In dma_alloc_direct() function *********
[   15.374573]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.381089]  ******* In dma_alloc_direct() function *********
[   15.386824]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.393339]  ******* In dma_alloc_direct() function *********
[   15.399074]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.405590]  ******* In dma_alloc_direct() function *********
[   15.411324]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.417840]  ******* In dma_alloc_direct() function *********
[   15.423575]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.430090]  ******* In dma_alloc_direct() function *********
[   15.435825]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.442340]  ******* In dma_alloc_direct() function *********
[   15.448075]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.454590]  ******* In dma_alloc_direct() function *********
[   15.460325]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.466840]  ******* In dma_alloc_direct() function *********
[   15.472575]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.479090]  ******* In dma_alloc_direct() function *********
[   15.484824]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.491340]  ******* In dma_alloc_direct() function *********
[   15.497074]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.503590]  ******* In dma_alloc_direct() function *********
[   15.509324]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.515840]  ******* In dma_alloc_direct() function *********
[   15.521575]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.528090]  ******* In dma_alloc_direct() function *********
[   15.533825]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.540343]  ******* In dma_alloc_direct() function *********
[   15.546078]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.552594]  ******* In dma_alloc_direct() function *********
[   15.558328]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.564843]  ******* In dma_alloc_direct() function *********
[   15.570578]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.577093]  ******* In dma_alloc_direct() function *********
[   15.582828]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.589344]  ******* In dma_alloc_direct() function *********
[   15.595079]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.601594]  ******* In dma_alloc_direct() function *********
[   15.607329]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.613844]  ******* In dma_alloc_direct() function *********
[   15.619579]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.626094]  ******* In dma_alloc_direct() function *********
[   15.631829]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.638344]  ******* In dma_alloc_direct() function *********
[   15.644079]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.650594]  ******* In dma_alloc_direct() function *********
[   15.656329]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.662844]  ******* In dma_alloc_direct() function *********
[   15.668578]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.675094]  ******* In dma_alloc_direct() function *********
[   15.680828]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.687344]  ******* In dma_alloc_direct() function *********
[   15.693079]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.699595]  ******* In dma_alloc_direct() function *********
[   15.705329]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.711844]  ******* In dma_alloc_direct() function *********
[   15.717579]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.724095]  ******* In dma_alloc_direct() function *********
[   15.729830]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.736345]  ******* In dma_alloc_direct() function *********
[   15.742080]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.748595]  ******* In dma_alloc_direct() function *********
[   15.754330]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.760845]  ******* In dma_alloc_direct() function *********
[   15.766580]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.773095]  ******* In dma_alloc_direct() function *********
[   15.778830]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.785346]  ******* In dma_alloc_direct() function *********
[   15.791080]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.797596]  ******* In dma_alloc_direct() function *********
[   15.803331]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.809847]  ******* In dma_alloc_direct() function *********
[   15.815581]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.822096]  ******* In dma_alloc_direct() function *********
[   15.827831]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.834347]  ******* In dma_alloc_direct() function *********
[   15.840082]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.846597]  ******* In dma_alloc_direct() function *********
[   15.852332]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.858847]  ******* In dma_alloc_direct() function *********
[   15.864582]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.871097]  ******* In dma_alloc_direct() function *********
[   15.876832]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.883347]  ******* In dma_alloc_direct() function *********
[   15.889082]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.895597]  ******* In dma_alloc_direct() function *********
[   15.901332]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.907847]  ******* In dma_alloc_direct() function *********
[   15.913583]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.920098]  ******* In dma_alloc_direct() function *********
[   15.925833]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.932348]  ******* In dma_alloc_direct() function *********
[   15.938083]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.944598]  ******* In dma_alloc_direct() function *********
[   15.950333]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.956848]  ******* In dma_alloc_direct() function *********
[   15.962583]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.969098]  ******* In dma_alloc_direct() function *********
[   15.974833]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.981348]  ******* In dma_alloc_direct() function *********
[   15.987085]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   15.993601]  ******* In dma_alloc_direct() function *********
[   15.999337]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.005852]  ******* In dma_alloc_direct() function *********
[   16.011587]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.018102]  ******* In dma_alloc_direct() function *********
[   16.023837]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.030353]  ******* In dma_alloc_direct() function *********
[   16.036087]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.042602]  ******* In dma_alloc_direct() function *********
[   16.048338]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.054855]  ******* In dma_alloc_direct() function *********
[   16.060590]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.067105]  ******* In dma_alloc_direct() function *********
[   16.072840]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.079355]  ******* In dma_alloc_direct() function *********
[   16.085090]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.091605]  ******* In dma_alloc_direct() function *********
[   16.097339]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.103855]  ******* In dma_alloc_direct() function *********
[   16.109590]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.116106]  ******* In dma_alloc_direct() function *********
[   16.121840]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.128355]  ******* In dma_alloc_direct() function *********
[   16.134092]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.140608]  ******* In dma_alloc_direct() function *********
[   16.146342]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.152858]  ******* In dma_alloc_direct() function *********
[   16.158592]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.165108]  ******* In dma_alloc_direct() function *********
[   16.170842]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.177357]  ******* In dma_alloc_direct() function *********
[   16.183092]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.189607]  ******* In dma_alloc_direct() function *********
[   16.195342]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.201857]  ******* In dma_alloc_direct() function *********
[   16.207593]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.214110]  ******* In dma_alloc_direct() function *********
[   16.219845]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.226360]  ******* In dma_alloc_direct() function *********
[   16.232095]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.238610]  ******* In dma_alloc_direct() function *********
[   16.244345]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.250860]  ******* In dma_alloc_direct() function *********
[   16.256595]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.263111]  ******* In dma_alloc_direct() function *********
[   16.268845]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.275361]  ******* In dma_alloc_direct() function *********
[   16.281095]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.287610]  ******* In dma_alloc_direct() function *********
[   16.293345]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.299860]  ******* In dma_alloc_direct() function *********
[   16.305595]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.312110]  ******* In dma_alloc_direct() function *********
[   16.317845]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.324360]  ******* In dma_alloc_direct() function *********
[   16.330095]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.336610]  ******* In dma_alloc_direct() function *********
[   16.342345]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.348860]  ******* In dma_alloc_direct() function *********
[   16.354595]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.361110]  ******* In dma_alloc_direct() function *********
[   16.366845]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.373360]  ******* In dma_alloc_direct() function *********
[   16.379096]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.385617]  ******* In dma_alloc_direct() function *********
[   16.391352]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.397867]  ******* In dma_alloc_direct() function *********
[   16.403602]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.410118]  ******* In dma_alloc_direct() function *********
[   16.415853]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.422368]  ******* In dma_alloc_direct() function *********
[   16.428103]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.434619]  ******* In dma_alloc_direct() function *********
[   16.440353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.446868]  ******* In dma_alloc_direct() function *********
[   16.452603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.459118]  ******* In dma_alloc_direct() function *********
[   16.464853]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.471368]  ******* In dma_alloc_direct() function *********
[   16.477103]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.483618]  ******* In dma_alloc_direct() function *********
[   16.489353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.495869]  ******* In dma_alloc_direct() function *********
[   16.501603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.508118]  ******* In dma_alloc_direct() function *********
[   16.513853]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.520369]  ******* In dma_alloc_direct() function *********
[   16.526104]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.532619]  ******* In dma_alloc_direct() function *********
[   16.538354]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.544869]  ******* In dma_alloc_direct() function *********
[   16.550604]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.557119]  ******* In dma_alloc_direct() function *********
[   16.562855]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.569372]  ******* In dma_alloc_direct() function *********
[   16.575107]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.581622]  ******* In dma_alloc_direct() function *********
[   16.587357]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.593872]  ******* In dma_alloc_direct() function *********
[   16.599607]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.606122]  ******* In dma_alloc_direct() function *********
[   16.611857]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.618372]  ******* In dma_alloc_direct() function *********
[   16.624107]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.630623]  ******* In dma_alloc_direct() function *********
[   16.636357]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.642872]  ******* In dma_alloc_direct() function *********
[   16.648607]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.655122]  ******* In dma_alloc_direct() function *********
[   16.660857]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.667373]  ******* In dma_alloc_direct() function *********
[   16.673108]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.679623]  ******* In dma_alloc_direct() function *********
[   16.685358]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.691873]  ******* In dma_alloc_direct() function *********
[   16.697608]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.704123]  ******* In dma_alloc_direct() function *********
[   16.709858]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.716373]  ******* In dma_alloc_direct() function *********
[   16.722108]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.728623]  ******* In dma_alloc_direct() function *********
[   16.734357]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.740873]  ******* In dma_alloc_direct() function *********
[   16.746607]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.753123]  ******* In dma_alloc_direct() function *********
[   16.758857]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.765373]  ******* In dma_alloc_direct() function *********
[   16.771107]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.777623]  ******* In dma_alloc_direct() function *********
[   16.783357]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.789872]  ******* In dma_alloc_direct() function *********
[   16.795607]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.802122]  ******* In dma_alloc_direct() function *********
[   16.807857]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.814372]  ******* In dma_alloc_direct() function *********
[   16.820107]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.826622]  ******* In dma_alloc_direct() function *********
[   16.832358]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.838873]  ******* In dma_alloc_direct() function *********
[   16.844608]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.851123]  ******* In dma_alloc_direct() function *********
[   16.856858]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.863373]  ******* In dma_alloc_direct() function *********
[   16.869108]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.875623]  ******* In dma_alloc_direct() function *********
[   16.881358]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.887873]  ******* In dma_alloc_direct() function *********
[   16.893608]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.900123]  ******* In dma_alloc_direct() function *********
[   16.905863]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.912378]  ******* In dma_alloc_direct() function *********
[   16.918113]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.924628]  ******* In dma_alloc_direct() function *********
[   16.930363]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.936878]  ******* In dma_alloc_direct() function *********
[   16.942613]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.949128]  ******* In dma_alloc_direct() function *********
[   16.954863]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.961379]  ******* In dma_alloc_direct() function *********
[   16.967113]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.973629]  ******* In dma_alloc_direct() function *********
[   16.979363]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.985879]  ******* In dma_alloc_direct() function *********
[   16.991614]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   16.998129]  ******* In dma_alloc_direct() function *********
[   17.003864]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.010380]  ******* In dma_alloc_direct() function *********
[   17.016115]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.022630]  ******* In dma_alloc_direct() function *********
[   17.028365]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.034880]  ******* In dma_alloc_direct() function *********
[   17.040615]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.047131]  ******* In dma_alloc_direct() function *********
[   17.052866]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.059381]  ******* In dma_alloc_direct() function *********
[   17.065116]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.071632]  ******* In dma_alloc_direct() function *********
[   17.077369]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.083884]  ******* In dma_alloc_direct() function *********
[   17.089618]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.096134]  ******* In dma_alloc_direct() function *********
[   17.101868]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.108384]  ******* In dma_alloc_direct() function *********
[   17.114119]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.120634]  ******* In dma_alloc_direct() function *********
[   17.126369]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.132884]  ******* In dma_alloc_direct() function *********
[   17.138619]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.145134]  ******* In dma_alloc_direct() function *********
[   17.150869]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.157384]  ******* In dma_alloc_direct() function *********
[   17.163118]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.169634]  ******* In dma_alloc_direct() function *********
[   17.175369]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.181885]  ******* In dma_alloc_direct() function *********
[   17.187619]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.194135]  ******* In dma_alloc_direct() function *********
[   17.199869]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.206385]  ******* In dma_alloc_direct() function *********
[   17.212119]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.218635]  ******* In dma_alloc_direct() function *********
[   17.224370]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.230885]  ******* In dma_alloc_direct() function *********
[   17.236620]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.243135]  ******* In dma_alloc_direct() function *********
[   17.248871]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.255386]  ******* In dma_alloc_direct() function *********
[   17.261121]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.267636]  ******* In dma_alloc_direct() function *********
[   17.273371]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.279887]  ******* In dma_alloc_direct() function *********
[   17.285621]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.292137]  ******* In dma_alloc_direct() function *********
[   17.297871]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.304386]  ******* In dma_alloc_direct() function *********
[   17.310121]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.316637]  ******* In dma_alloc_direct() function *********
[   17.322372]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.328887]  ******* In dma_alloc_direct() function *********
[   17.334622]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.341137]  ******* In dma_alloc_direct() function *********
[   17.346872]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.353387]  ******* In dma_alloc_direct() function *********
[   17.359122]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.365638]  ******* In dma_alloc_direct() function *********
[   17.371372]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.377888]  ******* In dma_alloc_direct() function *********
[   17.383622]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.390138]  ******* In dma_alloc_direct() function *********
[   17.395872]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.402387]  ******* In dma_alloc_direct() function *********
[   17.408128]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.414644]  ******* In dma_alloc_direct() function *********
[   17.420378]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.426894]  ******* In dma_alloc_direct() function *********
[   17.432629]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.439144]  ******* In dma_alloc_direct() function *********
[   17.444879]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.451395]  ******* In dma_alloc_direct() function *********
[   17.457129]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.463645]  ******* In dma_alloc_direct() function *********
[   17.469379]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.475894]  ******* In dma_alloc_direct() function *********
[   17.481629]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.488145]  ******* In dma_alloc_direct() function *********
[   17.493882]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.500397]  ******* In dma_alloc_direct() function *********
[   17.506136]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.512652]  ******* In dma_alloc_direct() function *********
[   17.518387]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.524902]  ******* In dma_alloc_direct() function *********
[   17.530637]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.537153]  ******* In dma_alloc_direct() function *********
[   17.542887]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.549403]  ******* In dma_alloc_direct() function *********
[   17.555138]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.561653]  ******* In dma_alloc_direct() function *********
[   17.567388]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.573903]  ******* In dma_alloc_direct() function *********
[   17.579638]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.586154]  ******* In dma_alloc_direct() function *********
[   17.591891]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.598407]  ******* In dma_alloc_direct() function *********
[   17.604141]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.610657]  ******* In dma_alloc_direct() function *********
[   17.616392]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.622907]  ******* In dma_alloc_direct() function *********
[   17.628642]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.635157]  ******* In dma_alloc_direct() function *********
[   17.640892]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.647407]  ******* In dma_alloc_direct() function *********
[   17.653142]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.659658]  ******* In dma_alloc_direct() function *********
[   17.665393]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.671908]  ******* In dma_alloc_direct() function *********
[   17.677642]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.684158]  ******* In dma_alloc_direct() function *********
[   17.689895]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.696411]  ******* In dma_alloc_direct() function *********
[   17.702145]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.708661]  ******* In dma_alloc_direct() function *********
[   17.714396]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.720911]  ******* In dma_alloc_direct() function *********
[   17.726646]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.733161]  ******* In dma_alloc_direct() function *********
[   17.738896]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.745411]  ******* In dma_alloc_direct() function *********
[   17.751146]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.757661]  ******* In dma_alloc_direct() function *********
[   17.763395]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.769911]  ******* In dma_alloc_direct() function *********
[   17.775645]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.782161]  ******* In dma_alloc_direct() function *********
[   17.787895]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.794411]  ******* In dma_alloc_direct() function *********
[   17.800145]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.806661]  ******* In dma_alloc_direct() function *********
[   17.812396]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.818911]  ******* In dma_alloc_direct() function *********
[   17.824646]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.831161]  ******* In dma_alloc_direct() function *********
[   17.836896]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.843412]  ******* In dma_alloc_direct() function *********
[   17.849147]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.855662]  ******* In dma_alloc_direct() function *********
[   17.861397]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.867913]  ******* In dma_alloc_direct() function *********
[   17.873648]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.880163]  ******* In dma_alloc_direct() function *********
[   17.885898]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.892413]  ******* In dma_alloc_direct() function *********
[   17.898148]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.904663]  ******* In dma_alloc_direct() function *********
[   17.910398]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.916913]  ******* In dma_alloc_direct() function *********
[   17.922648]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.929163]  ******* In dma_alloc_direct() function *********
[   17.934898]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.941413]  ******* In dma_alloc_direct() function *********
[   17.947148]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.953663]  ******* In dma_alloc_direct() function *********
[   17.959397]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.965913]  ******* In dma_alloc_direct() function *********
[   17.971647]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.978163]  ******* In dma_alloc_direct() function *********
[   17.983897]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   17.990412]  ******* In dma_alloc_direct() function *********
[   17.996148]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.002664]  ******* In dma_alloc_direct() function *********
[   18.008399]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.014914]  ******* In dma_alloc_direct() function *********
[   18.020649]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.027164]  ******* In dma_alloc_direct() function *********
[   18.032898]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.039414]  ******* In dma_alloc_direct() function *********
[   18.045148]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.051664]  ******* In dma_alloc_direct() function *********
[   18.057398]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.063914]  ******* In dma_alloc_direct() function *********
[   18.069649]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.076164]  ******* In dma_alloc_direct() function *********
[   18.081900]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.088415]  ******* In dma_alloc_direct() function *********
[   18.094150]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.100668]  ******* In dma_alloc_direct() function *********
[   18.106403]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.112918]  ******* In dma_alloc_direct() function *********
[   18.118653]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.125168]  ******* In dma_alloc_direct() function *********
[   18.130903]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.137418]  ******* In dma_alloc_direct() function *********
[   18.143153]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.149668]  ******* In dma_alloc_direct() function *********
[   18.155403]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.161918]  ******* In dma_alloc_direct() function *********
[   18.167653]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.174168]  ******* In dma_alloc_direct() function *********
[   18.179903]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.186418]  ******* In dma_alloc_direct() function *********
[   18.192153]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.198668]  ******* In dma_alloc_direct() function *********
[   18.204403]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.210918]  ******* In dma_alloc_direct() function *********
[   18.216653]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.223168]  ******* In dma_alloc_direct() function *********
[   18.228902]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.235418]  ******* In dma_alloc_direct() function *********
[   18.241152]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.247668]  ******* In dma_alloc_direct() function *********
[   18.253402]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.259918]  ******* In dma_alloc_direct() function *********
[   18.265653]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.272168]  ******* In dma_alloc_direct() function *********
[   18.277903]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.284418]  ******* In dma_alloc_direct() function *********
[   18.290153]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.296669]  ******* In dma_alloc_direct() function *********
[   18.302403]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.308919]  ******* In dma_alloc_direct() function *********
[   18.314654]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.321169]  ******* In dma_alloc_direct() function *********
[   18.326904]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.333420]  ******* In dma_alloc_direct() function *********
[   18.339154]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.345670]  ******* In dma_alloc_direct() function *********
[   18.351405]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.357920]  ******* In dma_alloc_direct() function *********
[   18.363655]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.370170]  ******* In dma_alloc_direct() function *********
[   18.375905]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.382420]  ******* In dma_alloc_direct() function *********
[   18.388154]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.394670]  ******* In dma_alloc_direct() function *********
[   18.400405]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.406921]  ******* In dma_alloc_direct() function *********
[   18.412655]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.419171]  ******* In dma_alloc_direct() function *********
[   18.424906]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.431427]  ******* In dma_alloc_direct() function *********
[   18.437162]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.443678]  ******* In dma_alloc_direct() function *********
[   18.449412]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.455928]  ******* In dma_alloc_direct() function *********
[   18.461665]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.468180]  ******* In dma_alloc_direct() function *********
[   18.473915]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.480430]  ******* In dma_alloc_direct() function *********
[   18.486165]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.492681]  ******* In dma_alloc_direct() function *********
[   18.498416]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.504931]  ******* In dma_alloc_direct() function *********
[   18.510666]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.517181]  ******* In dma_alloc_direct() function *********
[   18.522916]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.529431]  ******* In dma_alloc_direct() function *********
[   18.535166]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.541682]  ******* In dma_alloc_direct() function *********
[   18.547416]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.553932]  ******* In dma_alloc_direct() function *********
[   18.559666]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.566182]  ******* In dma_alloc_direct() function *********
[   18.571916]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.578431]  ******* In dma_alloc_direct() function *********
[   18.584166]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.590681]  ******* In dma_alloc_direct() function *********
[   18.596416]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.602931]  ******* In dma_alloc_direct() function *********
[   18.608668]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.615184]  ******* In dma_alloc_direct() function *********
[   18.620919]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.627434]  ******* In dma_alloc_direct() function *********
[   18.633169]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.639684]  ******* In dma_alloc_direct() function *********
[   18.645419]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.651934]  ******* In dma_alloc_direct() function *********
[   18.657669]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.664184]  ******* In dma_alloc_direct() function *********
[   18.669919]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.676434]  ******* In dma_alloc_direct() function *********
[   18.682169]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.688684]  ******* In dma_alloc_direct() function *********
[   18.694419]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.700934]  ******* In dma_alloc_direct() function *********
[   18.706669]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.713184]  ******* In dma_alloc_direct() function *********
[   18.718919]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.725434]  ******* In dma_alloc_direct() function *********
[   18.731169]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.737685]  ******* In dma_alloc_direct() function *********
[   18.743419]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.749934]  ******* In dma_alloc_direct() function *********
[   18.755670]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.762185]  ******* In dma_alloc_direct() function *********
[   18.767920]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.774435]  ******* In dma_alloc_direct() function *********
[   18.780170]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.786685]  ******* In dma_alloc_direct() function *********
[   18.792419]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.798935]  ******* In dma_alloc_direct() function *********
[   18.804669]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.811184]  ******* In dma_alloc_direct() function *********
[   18.816919]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.823434]  ******* In dma_alloc_direct() function *********
[   18.829169]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.835684]  ******* In dma_alloc_direct() function *********
[   18.841419]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.847934]  ******* In dma_alloc_direct() function *********
[   18.853669]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.860184]  ******* In dma_alloc_direct() function *********
[   18.865919]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.872434]  ******* In dma_alloc_direct() function *********
[   18.878169]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.884684]  ******* In dma_alloc_direct() function *********
[   18.890419]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.896934]  ******* In dma_alloc_direct() function *********
[   18.902669]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.909185]  ******* In dma_alloc_direct() function *********
[   18.914920]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.921435]  ******* In dma_alloc_direct() function *********
[   18.927170]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.933685]  ******* In dma_alloc_direct() function *********
[   18.939420]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.945935]  ******* In dma_alloc_direct() function *********
[   18.951670]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.958185]  ******* In dma_alloc_direct() function *********
[   18.963920]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.970435]  ******* In dma_alloc_direct() function *********
[   18.976170]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.982685]  ******* In dma_alloc_direct() function *********
[   18.988420]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   18.994935]  ******* In dma_alloc_direct() function *********
[   19.000670]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.007185]  ******* In dma_alloc_direct() function *********
[   19.012920]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.019436]  ******* In dma_alloc_direct() function *********
[   19.025170]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.031686]  ******* In dma_alloc_direct() function *********
[   19.037421]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.043936]  ******* In dma_alloc_direct() function *********
[   19.049671]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.056186]  ******* In dma_alloc_direct() function *********
[   19.061921]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.068436]  ******* In dma_alloc_direct() function *********
[   19.074171]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.080686]  ******* In dma_alloc_direct() function *********
[   19.086421]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.092936]  ******* In dma_alloc_direct() function *********
[   19.098671]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.105186]  ******* In dma_alloc_direct() function *********
[   19.110921]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.117437]  ******* In dma_alloc_direct() function *********
[   19.123173]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.129690]  ******* In dma_alloc_direct() function *********
[   19.135425]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.141940]  ******* In dma_alloc_direct() function *********
[   19.147675]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.154190]  ******* In dma_alloc_direct() function *********
[   19.159924]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.166440]  ******* In dma_alloc_direct() function *********
[   19.172174]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.178689]  ******* In dma_alloc_direct() function *********
[   19.184424]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.190939]  ******* In dma_alloc_direct() function *********
[   19.196674]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.203190]  ******* In dma_alloc_direct() function *********
[   19.208924]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.215440]  ******* In dma_alloc_direct() function *********
[   19.221174]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.227690]  ******* In dma_alloc_direct() function *********
[   19.233429]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.239944]  ******* In dma_alloc_direct() function *********
[   19.245679]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.252195]  ******* In dma_alloc_direct() function *********
[   19.257930]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.264445]  ******* In dma_alloc_direct() function *********
[   19.270180]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.276695]  ******* In dma_alloc_direct() function *********
[   19.282430]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.288945]  ******* In dma_alloc_direct() function *********
[   19.294680]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.301195]  ******* In dma_alloc_direct() function *********
[   19.306930]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.313445]  ******* In dma_alloc_direct() function *********
[   19.319180]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.325696]  ******* In dma_alloc_direct() function *********
[   19.331430]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.337945]  ******* In dma_alloc_direct() function *********
[   19.343680]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.350196]  ******* In dma_alloc_direct() function *********
[   19.355930]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.362446]  ******* In dma_alloc_direct() function *********
[   19.368181]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.374696]  ******* In dma_alloc_direct() function *********
[   19.380431]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.386946]  ******* In dma_alloc_direct() function *********
[   19.392681]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.399197]  ******* In dma_alloc_direct() function *********
[   19.404932]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.411447]  ******* In dma_alloc_direct() function *********
[   19.417182]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.423697]  ******* In dma_alloc_direct() function *********
[   19.429432]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.435947]  ******* In dma_alloc_direct() function *********
[   19.441682]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.448197]  ******* In dma_alloc_direct() function *********
[   19.453938]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.460453]  ******* In dma_alloc_direct() function *********
[   19.466188]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.472704]  ******* In dma_alloc_direct() function *********
[   19.478438]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.484953]  ******* In dma_alloc_direct() function *********
[   19.490688]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.497203]  ******* In dma_alloc_direct() function *********
[   19.502938]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.509453]  ******* In dma_alloc_direct() function *********
[   19.515188]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.521703]  ******* In dma_alloc_direct() function *********
[   19.527439]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.533954]  ******* In dma_alloc_direct() function *********
[   19.539689]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.546204]  ******* In dma_alloc_direct() function *********
[   19.551939]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.558454]  ******* In dma_alloc_direct() function *********
[   19.564189]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.570704]  ******* In dma_alloc_direct() function *********
[   19.576439]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.582954]  ******* In dma_alloc_direct() function *********
[   19.588688]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.595204]  ******* In dma_alloc_direct() function *********
[   19.600938]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.607454]  ******* In dma_alloc_direct() function *********
[   19.613188]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.619704]  ******* In dma_alloc_direct() function *********
[   19.625439]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.631956]  ******* In dma_alloc_direct() function *********
[   19.637692]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.644207]  ******* In dma_alloc_direct() function *********
[   19.649942]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.656457]  ******* In dma_alloc_direct() function *********
[   19.662192]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.668707]  ******* In dma_alloc_direct() function *********
[   19.674442]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.680957]  ******* In dma_alloc_direct() function *********
[   19.686693]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.693208]  ******* In dma_alloc_direct() function *********
[   19.698943]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.705458]  ******* In dma_alloc_direct() function *********
[   19.711193]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.717710]  ******* In dma_alloc_direct() function *********
[   19.723445]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.729960]  ******* In dma_alloc_direct() function *********
[   19.735695]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.742211]  ******* In dma_alloc_direct() function *********
[   19.747946]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.754461]  ******* In dma_alloc_direct() function *********
[   19.760196]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.766711]  ******* In dma_alloc_direct() function *********
[   19.772446]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.778961]  ******* In dma_alloc_direct() function *********
[   19.784696]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.791211]  ******* In dma_alloc_direct() function *********
[   19.796947]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.803462]  ******* In dma_alloc_direct() function *********
[   19.809198]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.815713]  ******* In dma_alloc_direct() function *********
[   19.821448]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.827963]  ******* In dma_alloc_direct() function *********
[   19.833698]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.840213]  ******* In dma_alloc_direct() function *********
[   19.845948]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.852463]  ******* In dma_alloc_direct() function *********
[   19.858197]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.864713]  ******* In dma_alloc_direct() function *********
[   19.870447]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.876963]  ******* In dma_alloc_direct() function *********
[   19.882698]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.889214]  ******* In dma_alloc_direct() function *********
[   19.894948]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.901463]  ******* In dma_alloc_direct() function *********
[   19.907198]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.913714]  ******* In dma_alloc_direct() function *********
[   19.919449]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.925964]  ******* In dma_alloc_direct() function *********
[   19.931699]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.938214]  ******* In dma_alloc_direct() function *********
[   19.943950]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.950465]  ******* In dma_alloc_direct() function *********
[   19.956200]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.962715]  ******* In dma_alloc_direct() function *********
[   19.968450]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.974965]  ******* In dma_alloc_direct() function *********
[   19.980700]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.987216]  ******* In dma_alloc_direct() function *********
[   19.992951]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   19.999466]  ******* In dma_alloc_direct() function *********
[   20.005203]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.011719]  ******* In dma_alloc_direct() function *********
[   20.017453]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.023969]  ******* In dma_alloc_direct() function *********
[   20.029703]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.036218]  ******* In dma_alloc_direct() function *********
[   20.041953]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.048468]  ******* In dma_alloc_direct() function *********
[   20.054203]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.060718]  ******* In dma_alloc_direct() function *********
[   20.066453]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.072968]  ******* In dma_alloc_direct() function *********
[   20.078703]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.085219]  ******* In dma_alloc_direct() function *********
[   20.090953]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.097469]  ******* In dma_alloc_direct() function *********
[   20.103204]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.109719]  ******* In dma_alloc_direct() function *********
[   20.115454]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.121969]  ******* In dma_alloc_direct() function *********
[   20.127704]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.134219]  ******* In dma_alloc_direct() function *********
[   20.139954]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.146470]  ******* In dma_alloc_direct() function *********
[   20.152207]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.158723]  ******* In dma_alloc_direct() function *********
[   20.164457]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.170973]  ******* In dma_alloc_direct() function *********
[   20.176707]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.183223]  ******* In dma_alloc_direct() function *********
[   20.188957]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.195473]  ******* In dma_alloc_direct() function *********
[   20.201207]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.207723]  ******* In dma_alloc_direct() function *********
[   20.213458]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.219973]  ******* In dma_alloc_direct() function *********
[   20.225708]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.232223]  ******* In dma_alloc_direct() function *********
[   20.237958]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.244473]  ******* In dma_alloc_direct() function *********
[   20.250208]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.256723]  ******* In dma_alloc_direct() function *********
[   20.262458]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.268973]  ******* In dma_alloc_direct() function *********
[   20.274708]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.281224]  ******* In dma_alloc_direct() function *********
[   20.286958]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.293473]  ******* In dma_alloc_direct() function *********
[   20.299208]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.305724]  ******* In dma_alloc_direct() function *********
[   20.311458]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.317973]  ******* In dma_alloc_direct() function *********
[   20.323709]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.330224]  ******* In dma_alloc_direct() function *********
[   20.335959]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.342474]  ******* In dma_alloc_direct() function *********
[   20.348209]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.354725]  ******* In dma_alloc_direct() function *********
[   20.360460]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.366975]  ******* In dma_alloc_direct() function *********
[   20.372710]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.379225]  ******* In dma_alloc_direct() function *********
[   20.384960]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.391475]  ******* In dma_alloc_direct() function *********
[   20.397210]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.403726]  ******* In dma_alloc_direct() function *********
[   20.409461]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.415976]  ******* In dma_alloc_direct() function *********
[   20.421711]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.428226]  ******* In dma_alloc_direct() function *********
[   20.433960]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.440476]  ******* In dma_alloc_direct() function *********
[   20.446210]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.452726]  ******* In dma_alloc_direct() function *********
[   20.458460]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.464976]  ******* In dma_alloc_direct() function *********
[   20.470710]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.477231]  ******* In dma_alloc_direct() function *********
[   20.482966]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.489482]  ******* In dma_alloc_direct() function *********
[   20.495217]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.501732]  ******* In dma_alloc_direct() function *********
[   20.507467]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.513982]  ******* In dma_alloc_direct() function *********
[   20.519717]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.526232]  ******* In dma_alloc_direct() function *********
[   20.531967]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.538483]  ******* In dma_alloc_direct() function *********
[   20.544217]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.550733]  ******* In dma_alloc_direct() function *********
[   20.556467]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.562982]  ******* In dma_alloc_direct() function *********
[   20.568718]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.575233]  ******* In dma_alloc_direct() function *********
[   20.580968]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.587483]  ******* In dma_alloc_direct() function *********
[   20.593218]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.599733]  ******* In dma_alloc_direct() function *********
[   20.605468]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.611984]  ******* In dma_alloc_direct() function *********
[   20.617719]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.624234]  ******* In dma_alloc_direct() function *********
[   20.629969]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.636484]  ******* In dma_alloc_direct() function *********
[   20.643172] i40e 0000:01:00.1: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   20.931323]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.937838]  ******* In dma_alloc_direct() function *********
[   20.947146] i40e 0000:01:00.1: MAC address: 3c:fd:fe:6b:e9:c1
[   20.953032] i40e 0000:01:00.1: FW LLDP is enabled
[   20.964110]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.970628]  ******* In dma_alloc_direct() function *********
[   20.976365]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   20.982881]  ******* In dma_alloc_direct() function *********
[   20.988784] i40e 0000:01:00.1: PCI-Express: Speed 8.0GT/s Width x8
[   20.996043] i40e 0000:01:00.1: Features: PF-id[1] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   21.006212] i40e 0000:01:00.2: enabling device (0000 -> 0002)
[   21.023232]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.029751]  ******* In dma_alloc_direct() function *********
[   21.035491]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.042006]  ******* In dma_alloc_direct() function *********
[   21.047742]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.054258]  ******* In dma_alloc_direct() function *********
[   21.059993]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.066508]  ******* In dma_alloc_direct() function *********
[   21.072243]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.078758]  ******* In dma_alloc_direct() function *********
[   21.084493]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.091008]  ******* In dma_alloc_direct() function *********
[   21.096743]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.103258]  ******* In dma_alloc_direct() function *********
[   21.108997]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.115513]  ******* In dma_alloc_direct() function *********
[   21.121248]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.127763]  ******* In dma_alloc_direct() function *********
[   21.133498]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.140013]  ******* In dma_alloc_direct() function *********
[   21.145749]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.152264]  ******* In dma_alloc_direct() function *********
[   21.157999]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.164514]  ******* In dma_alloc_direct() function *********
[   21.170250]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.176767]  ******* In dma_alloc_direct() function *********
[   21.182503]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.189018]  ******* In dma_alloc_direct() function *********
[   21.194753]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.201268]  ******* In dma_alloc_direct() function *********
[   21.207002]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.213518]  ******* In dma_alloc_direct() function *********
[   21.219252]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.225768]  ******* In dma_alloc_direct() function *********
[   21.231502]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.238018]  ******* In dma_alloc_direct() function *********
[   21.243752]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.250268]  ******* In dma_alloc_direct() function *********
[   21.256002]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.262518]  ******* In dma_alloc_direct() function *********
[   21.268253]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.274768]  ******* In dma_alloc_direct() function *********
[   21.280503]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.287018]  ******* In dma_alloc_direct() function *********
[   21.292753]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.299268]  ******* In dma_alloc_direct() function *********
[   21.305002]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.311518]  ******* In dma_alloc_direct() function *********
[   21.317253]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.323768]  ******* In dma_alloc_direct() function *********
[   21.329503]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.336018]  ******* In dma_alloc_direct() function *********
[   21.341753]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.348269]  ******* In dma_alloc_direct() function *********
[   21.354004]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.360519]  ******* In dma_alloc_direct() function *********
[   21.366254]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.372769]  ******* In dma_alloc_direct() function *********
[   21.378504]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.385020]  ******* In dma_alloc_direct() function *********
[   21.390755]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.397270]  ******* In dma_alloc_direct() function *********
[   21.403004]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.409520]  ******* In dma_alloc_direct() function *********
[   21.415254]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.421770]  ******* In dma_alloc_direct() function *********
[   21.427504]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.434020]  ******* In dma_alloc_direct() function *********
[   21.439754]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.446269]  ******* In dma_alloc_direct() function *********
[   21.452004]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.458520]  ******* In dma_alloc_direct() function *********
[   21.464254]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.470769]  ******* In dma_alloc_direct() function *********
[   21.476504]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.483019]  ******* In dma_alloc_direct() function *********
[   21.488754]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.495269]  ******* In dma_alloc_direct() function *********
[   21.501004]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.507519]  ******* In dma_alloc_direct() function *********
[   21.513254]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.519769]  ******* In dma_alloc_direct() function *********
[   21.525504]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.532019]  ******* In dma_alloc_direct() function *********
[   21.537754]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.544269]  ******* In dma_alloc_direct() function *********
[   21.550003]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.556519]  ******* In dma_alloc_direct() function *********
[   21.562253]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.568768]  ******* In dma_alloc_direct() function *********
[   21.574503]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.581018]  ******* In dma_alloc_direct() function *********
[   21.586753]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.593269]  ******* In dma_alloc_direct() function *********
[   21.599004]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.605519]  ******* In dma_alloc_direct() function *********
[   21.611253]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.617769]  ******* In dma_alloc_direct() function *********
[   21.623503]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.630019]  ******* In dma_alloc_direct() function *********
[   21.635753]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.642268]  ******* In dma_alloc_direct() function *********
[   21.648003]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.654518]  ******* In dma_alloc_direct() function *********
[   21.660253]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.666769]  ******* In dma_alloc_direct() function *********
[   21.672504]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.679019]  ******* In dma_alloc_direct() function *********
[   21.684756]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.691272]  ******* In dma_alloc_direct() function *********
[   21.697007]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.703522]  ******* In dma_alloc_direct() function *********
[   21.709258]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.715773]  ******* In dma_alloc_direct() function *********
[   21.721507]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.728023]  ******* In dma_alloc_direct() function *********
[   21.733758]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.740273]  ******* In dma_alloc_direct() function *********
[   21.746008]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.752523]  ******* In dma_alloc_direct() function *********
[   21.758258]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.764773]  ******* In dma_alloc_direct() function *********
[   21.770508]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.777023]  ******* In dma_alloc_direct() function *********
[   21.782758]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.789273]  ******* In dma_alloc_direct() function *********
[   21.795007]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.801524]  ******* In dma_alloc_direct() function *********
[   21.807258]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.813773]  ******* In dma_alloc_direct() function *********
[   21.819508]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.826023]  ******* In dma_alloc_direct() function *********
[   21.831758]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.838273]  ******* In dma_alloc_direct() function *********
[   21.844008]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.850523]  ******* In dma_alloc_direct() function *********
[   21.856258]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.862773]  ******* In dma_alloc_direct() function *********
[   21.868507]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.875023]  ******* In dma_alloc_direct() function *********
[   21.880760]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.887276]  ******* In dma_alloc_direct() function *********
[   21.893011]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.899526]  ******* In dma_alloc_direct() function *********
[   21.905261]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.911776]  ******* In dma_alloc_direct() function *********
[   21.917511]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.924026]  ******* In dma_alloc_direct() function *********
[   21.929761]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.936276]  ******* In dma_alloc_direct() function *********
[   21.942011]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.948526]  ******* In dma_alloc_direct() function *********
[   21.954261]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.960776]  ******* In dma_alloc_direct() function *********
[   21.966511]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.973026]  ******* In dma_alloc_direct() function *********
[   21.978760]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.985276]  ******* In dma_alloc_direct() function *********
[   21.991010]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   21.997526]  ******* In dma_alloc_direct() function *********
[   22.003263]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.009778]  ******* In dma_alloc_direct() function *********
[   22.015513]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.022028]  ******* In dma_alloc_direct() function *********
[   22.027763]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.034278]  ******* In dma_alloc_direct() function *********
[   22.040020]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.046535]  ******* In dma_alloc_direct() function *********
[   22.052270]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.058786]  ******* In dma_alloc_direct() function *********
[   22.064520]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.071035]  ******* In dma_alloc_direct() function *********
[   22.076770]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.083285]  ******* In dma_alloc_direct() function *********
[   22.089020]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.095535]  ******* In dma_alloc_direct() function *********
[   22.101270]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.107785]  ******* In dma_alloc_direct() function *********
[   22.113520]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.120036]  ******* In dma_alloc_direct() function *********
[   22.125770]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.132285]  ******* In dma_alloc_direct() function *********
[   22.138020]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.144535]  ******* In dma_alloc_direct() function *********
[   22.150270]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.156785]  ******* In dma_alloc_direct() function *********
[   22.162520]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.169035]  ******* In dma_alloc_direct() function *********
[   22.174770]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.181285]  ******* In dma_alloc_direct() function *********
[   22.187020]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.193536]  ******* In dma_alloc_direct() function *********
[   22.199272]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.205788]  ******* In dma_alloc_direct() function *********
[   22.211523]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.218039]  ******* In dma_alloc_direct() function *********
[   22.223774]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.230289]  ******* In dma_alloc_direct() function *********
[   22.236024]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.242539]  ******* In dma_alloc_direct() function *********
[   22.248274]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.254789]  ******* In dma_alloc_direct() function *********
[   22.260524]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.267039]  ******* In dma_alloc_direct() function *********
[   22.272773]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.279289]  ******* In dma_alloc_direct() function *********
[   22.285023]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.291539]  ******* In dma_alloc_direct() function *********
[   22.297274]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.303789]  ******* In dma_alloc_direct() function *********
[   22.309524]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.316039]  ******* In dma_alloc_direct() function *********
[   22.321774]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.328290]  ******* In dma_alloc_direct() function *********
[   22.334025]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.340540]  ******* In dma_alloc_direct() function *********
[   22.346275]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.352791]  ******* In dma_alloc_direct() function *********
[   22.358526]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.365041]  ******* In dma_alloc_direct() function *********
[   22.370775]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.377291]  ******* In dma_alloc_direct() function *********
[   22.383025]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.389541]  ******* In dma_alloc_direct() function *********
[   22.395275]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.401791]  ******* In dma_alloc_direct() function *********
[   22.407525]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.414040]  ******* In dma_alloc_direct() function *********
[   22.419776]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.426291]  ******* In dma_alloc_direct() function *********
[   22.432026]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.438541]  ******* In dma_alloc_direct() function *********
[   22.444275]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.450791]  ******* In dma_alloc_direct() function *********
[   22.456525]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.463041]  ******* In dma_alloc_direct() function *********
[   22.468775]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.475290]  ******* In dma_alloc_direct() function *********
[   22.481025]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.487540]  ******* In dma_alloc_direct() function *********
[   22.493276]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.499791]  ******* In dma_alloc_direct() function *********
[   22.505526]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.512041]  ******* In dma_alloc_direct() function *********
[   22.517776]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.524291]  ******* In dma_alloc_direct() function *********
[   22.530027]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.536542]  ******* In dma_alloc_direct() function *********
[   22.542277]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.548792]  ******* In dma_alloc_direct() function *********
[   22.554527]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.561042]  ******* In dma_alloc_direct() function *********
[   22.566777]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.573292]  ******* In dma_alloc_direct() function *********
[   22.579027]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.585542]  ******* In dma_alloc_direct() function *********
[   22.591277]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.597792]  ******* In dma_alloc_direct() function *********
[   22.603527]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.610042]  ******* In dma_alloc_direct() function *********
[   22.615777]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.622292]  ******* In dma_alloc_direct() function *********
[   22.628027]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.634543]  ******* In dma_alloc_direct() function *********
[   22.640277]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.646792]  ******* In dma_alloc_direct() function *********
[   22.652530]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.659046]  ******* In dma_alloc_direct() function *********
[   22.664780]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.671296]  ******* In dma_alloc_direct() function *********
[   22.677030]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.683545]  ******* In dma_alloc_direct() function *********
[   22.689280]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.695795]  ******* In dma_alloc_direct() function *********
[   22.701530]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.708048]  ******* In dma_alloc_direct() function *********
[   22.713783]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.720299]  ******* In dma_alloc_direct() function *********
[   22.726033]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.732548]  ******* In dma_alloc_direct() function *********
[   22.738283]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.744798]  ******* In dma_alloc_direct() function *********
[   22.750533]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.757048]  ******* In dma_alloc_direct() function *********
[   22.762783]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.769298]  ******* In dma_alloc_direct() function *********
[   22.775033]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.781548]  ******* In dma_alloc_direct() function *********
[   22.787283]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.793798]  ******* In dma_alloc_direct() function *********
[   22.799533]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.806048]  ******* In dma_alloc_direct() function *********
[   22.811783]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.818298]  ******* In dma_alloc_direct() function *********
[   22.824032]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.830548]  ******* In dma_alloc_direct() function *********
[   22.836283]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.842798]  ******* In dma_alloc_direct() function *********
[   22.848533]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.855048]  ******* In dma_alloc_direct() function *********
[   22.860783]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.867298]  ******* In dma_alloc_direct() function *********
[   22.873033]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.879548]  ******* In dma_alloc_direct() function *********
[   22.885283]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.891798]  ******* In dma_alloc_direct() function *********
[   22.897532]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.904048]  ******* In dma_alloc_direct() function *********
[   22.909783]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.916298]  ******* In dma_alloc_direct() function *********
[   22.922033]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.928549]  ******* In dma_alloc_direct() function *********
[   22.934283]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.940798]  ******* In dma_alloc_direct() function *********
[   22.946533]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.953048]  ******* In dma_alloc_direct() function *********
[   22.958783]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.965299]  ******* In dma_alloc_direct() function *********
[   22.971033]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.977549]  ******* In dma_alloc_direct() function *********
[   22.983284]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   22.989799]  ******* In dma_alloc_direct() function *********
[   22.995535]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.002050]  ******* In dma_alloc_direct() function *********
[   23.007785]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.014300]  ******* In dma_alloc_direct() function *********
[   23.020035]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.026550]  ******* In dma_alloc_direct() function *********
[   23.032285]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.038800]  ******* In dma_alloc_direct() function *********
[   23.044535]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.051050]  ******* In dma_alloc_direct() function *********
[   23.056785]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.063306]  ******* In dma_alloc_direct() function *********
[   23.069041]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.075557]  ******* In dma_alloc_direct() function *********
[   23.081291]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.087807]  ******* In dma_alloc_direct() function *********
[   23.093541]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.100057]  ******* In dma_alloc_direct() function *********
[   23.105791]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.112306]  ******* In dma_alloc_direct() function *********
[   23.118041]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.124556]  ******* In dma_alloc_direct() function *********
[   23.130291]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.136806]  ******* In dma_alloc_direct() function *********
[   23.142541]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.149056]  ******* In dma_alloc_direct() function *********
[   23.154791]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.161307]  ******* In dma_alloc_direct() function *********
[   23.167042]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.173557]  ******* In dma_alloc_direct() function *********
[   23.179292]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.185807]  ******* In dma_alloc_direct() function *********
[   23.191542]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.198058]  ******* In dma_alloc_direct() function *********
[   23.203793]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.210308]  ******* In dma_alloc_direct() function *********
[   23.216044]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.222561]  ******* In dma_alloc_direct() function *********
[   23.228296]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.234812]  ******* In dma_alloc_direct() function *********
[   23.240547]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.247062]  ******* In dma_alloc_direct() function *********
[   23.252797]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.259312]  ******* In dma_alloc_direct() function *********
[   23.265048]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.271563]  ******* In dma_alloc_direct() function *********
[   23.277298]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.283813]  ******* In dma_alloc_direct() function *********
[   23.289547]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.296063]  ******* In dma_alloc_direct() function *********
[   23.301797]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.308313]  ******* In dma_alloc_direct() function *********
[   23.314048]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.320563]  ******* In dma_alloc_direct() function *********
[   23.326298]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.332814]  ******* In dma_alloc_direct() function *********
[   23.338548]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.345064]  ******* In dma_alloc_direct() function *********
[   23.350799]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.357314]  ******* In dma_alloc_direct() function *********
[   23.363049]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.369564]  ******* In dma_alloc_direct() function *********
[   23.375300]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.381817]  ******* In dma_alloc_direct() function *********
[   23.387552]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.394067]  ******* In dma_alloc_direct() function *********
[   23.399803]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.406318]  ******* In dma_alloc_direct() function *********
[   23.412052]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.418568]  ******* In dma_alloc_direct() function *********
[   23.424305]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.430821]  ******* In dma_alloc_direct() function *********
[   23.436556]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.443071]  ******* In dma_alloc_direct() function *********
[   23.448806]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.455322]  ******* In dma_alloc_direct() function *********
[   23.461057]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.467572]  ******* In dma_alloc_direct() function *********
[   23.473307]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.479822]  ******* In dma_alloc_direct() function *********
[   23.485556]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.492072]  ******* In dma_alloc_direct() function *********
[   23.497806]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.504322]  ******* In dma_alloc_direct() function *********
[   23.510056]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.516571]  ******* In dma_alloc_direct() function *********
[   23.522306]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.528821]  ******* In dma_alloc_direct() function *********
[   23.534556]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.541071]  ******* In dma_alloc_direct() function *********
[   23.546806]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.553321]  ******* In dma_alloc_direct() function *********
[   23.559056]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.565571]  ******* In dma_alloc_direct() function *********
[   23.571306]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.577821]  ******* In dma_alloc_direct() function *********
[   23.583556]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.590071]  ******* In dma_alloc_direct() function *********
[   23.595805]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.602321]  ******* In dma_alloc_direct() function *********
[   23.608055]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.614571]  ******* In dma_alloc_direct() function *********
[   23.620305]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.626820]  ******* In dma_alloc_direct() function *********
[   23.632555]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.639070]  ******* In dma_alloc_direct() function *********
[   23.644805]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.651320]  ******* In dma_alloc_direct() function *********
[   23.657055]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.663571]  ******* In dma_alloc_direct() function *********
[   23.669305]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.675821]  ******* In dma_alloc_direct() function *********
[   23.681556]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.688071]  ******* In dma_alloc_direct() function *********
[   23.693806]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.700321]  ******* In dma_alloc_direct() function *********
[   23.706056]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.712571]  ******* In dma_alloc_direct() function *********
[   23.718307]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.724822]  ******* In dma_alloc_direct() function *********
[   23.730558]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.737075]  ******* In dma_alloc_direct() function *********
[   23.742810]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.749325]  ******* In dma_alloc_direct() function *********
[   23.755060]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.761575]  ******* In dma_alloc_direct() function *********
[   23.767310]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.773826]  ******* In dma_alloc_direct() function *********
[   23.779561]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.786076]  ******* In dma_alloc_direct() function *********
[   23.791811]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.798326]  ******* In dma_alloc_direct() function *********
[   23.804061]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.810576]  ******* In dma_alloc_direct() function *********
[   23.816311]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.822827]  ******* In dma_alloc_direct() function *********
[   23.828561]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.835077]  ******* In dma_alloc_direct() function *********
[   23.840811]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.847327]  ******* In dma_alloc_direct() function *********
[   23.853061]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.859576]  ******* In dma_alloc_direct() function *********
[   23.865311]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.871827]  ******* In dma_alloc_direct() function *********
[   23.877562]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.884078]  ******* In dma_alloc_direct() function *********
[   23.889813]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.896328]  ******* In dma_alloc_direct() function *********
[   23.902063]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.908578]  ******* In dma_alloc_direct() function *********
[   23.914313]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.920828]  ******* In dma_alloc_direct() function *********
[   23.926563]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.933078]  ******* In dma_alloc_direct() function *********
[   23.938813]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.945328]  ******* In dma_alloc_direct() function *********
[   23.951063]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.957578]  ******* In dma_alloc_direct() function *********
[   23.963313]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.969828]  ******* In dma_alloc_direct() function *********
[   23.975562]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.982078]  ******* In dma_alloc_direct() function *********
[   23.987813]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   23.994329]  ******* In dma_alloc_direct() function *********
[   24.000063]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.006579]  ******* In dma_alloc_direct() function *********
[   24.012313]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.018828]  ******* In dma_alloc_direct() function *********
[   24.024563]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.031079]  ******* In dma_alloc_direct() function *********
[   24.036813]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.043328]  ******* In dma_alloc_direct() function *********
[   24.049063]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.055578]  ******* In dma_alloc_direct() function *********
[   24.061313]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.067829]  ******* In dma_alloc_direct() function *********
[   24.073563]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.080079]  ******* In dma_alloc_direct() function *********
[   24.085820]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.092335]  ******* In dma_alloc_direct() function *********
[   24.098070]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.104585]  ******* In dma_alloc_direct() function *********
[   24.110320]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.116835]  ******* In dma_alloc_direct() function *********
[   24.122570]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.129085]  ******* In dma_alloc_direct() function *********
[   24.134820]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.141335]  ******* In dma_alloc_direct() function *********
[   24.147069]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.153584]  ******* In dma_alloc_direct() function *********
[   24.159319]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.165835]  ******* In dma_alloc_direct() function *********
[   24.171571]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.178087]  ******* In dma_alloc_direct() function *********
[   24.183824]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.190339]  ******* In dma_alloc_direct() function *********
[   24.196074]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.202590]  ******* In dma_alloc_direct() function *********
[   24.208327]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.214843]  ******* In dma_alloc_direct() function *********
[   24.220578]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.227093]  ******* In dma_alloc_direct() function *********
[   24.232828]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.239345]  ******* In dma_alloc_direct() function *********
[   24.245081]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.251596]  ******* In dma_alloc_direct() function *********
[   24.257331]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.263846]  ******* In dma_alloc_direct() function *********
[   24.269581]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.276097]  ******* In dma_alloc_direct() function *********
[   24.281832]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.288348]  ******* In dma_alloc_direct() function *********
[   24.294083]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.300598]  ******* In dma_alloc_direct() function *********
[   24.306333]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.312848]  ******* In dma_alloc_direct() function *********
[   24.318583]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.325098]  ******* In dma_alloc_direct() function *********
[   24.330833]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.337348]  ******* In dma_alloc_direct() function *********
[   24.343083]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.349598]  ******* In dma_alloc_direct() function *********
[   24.355333]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.361848]  ******* In dma_alloc_direct() function *********
[   24.367582]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.374098]  ******* In dma_alloc_direct() function *********
[   24.379832]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.386348]  ******* In dma_alloc_direct() function *********
[   24.392082]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.398597]  ******* In dma_alloc_direct() function *********
[   24.404332]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.410847]  ******* In dma_alloc_direct() function *********
[   24.416582]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.423097]  ******* In dma_alloc_direct() function *********
[   24.428832]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.435347]  ******* In dma_alloc_direct() function *********
[   24.441082]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.447597]  ******* In dma_alloc_direct() function *********
[   24.453332]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.459847]  ******* In dma_alloc_direct() function *********
[   24.465582]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.472097]  ******* In dma_alloc_direct() function *********
[   24.477832]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.484347]  ******* In dma_alloc_direct() function *********
[   24.490082]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.496597]  ******* In dma_alloc_direct() function *********
[   24.502332]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.508848]  ******* In dma_alloc_direct() function *********
[   24.514582]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.521098]  ******* In dma_alloc_direct() function *********
[   24.526833]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.533348]  ******* In dma_alloc_direct() function *********
[   24.539083]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.545599]  ******* In dma_alloc_direct() function *********
[   24.551333]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.557848]  ******* In dma_alloc_direct() function *********
[   24.563583]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.570098]  ******* In dma_alloc_direct() function *********
[   24.575833]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.582348]  ******* In dma_alloc_direct() function *********
[   24.588083]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.594598]  ******* In dma_alloc_direct() function *********
[   24.600333]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.606848]  ******* In dma_alloc_direct() function *********
[   24.612583]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.619098]  ******* In dma_alloc_direct() function *********
[   24.624833]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.631348]  ******* In dma_alloc_direct() function *********
[   24.637083]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.643598]  ******* In dma_alloc_direct() function *********
[   24.649333]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.655848]  ******* In dma_alloc_direct() function *********
[   24.661583]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.668098]  ******* In dma_alloc_direct() function *********
[   24.673833]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.680348]  ******* In dma_alloc_direct() function *********
[   24.686083]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.692598]  ******* In dma_alloc_direct() function *********
[   24.698333]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.704848]  ******* In dma_alloc_direct() function *********
[   24.710583]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.717098]  ******* In dma_alloc_direct() function *********
[   24.722833]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.729348]  ******* In dma_alloc_direct() function *********
[   24.735083]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.741598]  ******* In dma_alloc_direct() function *********
[   24.747333]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.753849]  ******* In dma_alloc_direct() function *********
[   24.759585]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.766101]  ******* In dma_alloc_direct() function *********
[   24.771836]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.778351]  ******* In dma_alloc_direct() function *********
[   24.784086]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.790601]  ******* In dma_alloc_direct() function *********
[   24.796336]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.802851]  ******* In dma_alloc_direct() function *********
[   24.808586]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.815101]  ******* In dma_alloc_direct() function *********
[   24.820836]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.827351]  ******* In dma_alloc_direct() function *********
[   24.833085]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.839601]  ******* In dma_alloc_direct() function *********
[   24.845335]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.851851]  ******* In dma_alloc_direct() function *********
[   24.857585]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.864100]  ******* In dma_alloc_direct() function *********
[   24.869835]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.876351]  ******* In dma_alloc_direct() function *********
[   24.882085]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.888601]  ******* In dma_alloc_direct() function *********
[   24.894335]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.900850]  ******* In dma_alloc_direct() function *********
[   24.906585]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.913101]  ******* In dma_alloc_direct() function *********
[   24.918836]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.925351]  ******* In dma_alloc_direct() function *********
[   24.931086]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.937602]  ******* In dma_alloc_direct() function *********
[   24.943336]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.949851]  ******* In dma_alloc_direct() function *********
[   24.955587]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.962102]  ******* In dma_alloc_direct() function *********
[   24.967837]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.974352]  ******* In dma_alloc_direct() function *********
[   24.980090]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.986605]  ******* In dma_alloc_direct() function *********
[   24.992340]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   24.998856]  ******* In dma_alloc_direct() function *********
[   25.004590]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.011106]  ******* In dma_alloc_direct() function *********
[   25.016841]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.023356]  ******* In dma_alloc_direct() function *********
[   25.029091]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.035606]  ******* In dma_alloc_direct() function *********
[   25.041341]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.047856]  ******* In dma_alloc_direct() function *********
[   25.053590]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.060105]  ******* In dma_alloc_direct() function *********
[   25.065840]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.072356]  ******* In dma_alloc_direct() function *********
[   25.078090]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.084605]  ******* In dma_alloc_direct() function *********
[   25.090340]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.096855]  ******* In dma_alloc_direct() function *********
[   25.102590]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.109111]  ******* In dma_alloc_direct() function *********
[   25.114846]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.121363]  ******* In dma_alloc_direct() function *********
[   25.127098]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.133613]  ******* In dma_alloc_direct() function *********
[   25.139348]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.145863]  ******* In dma_alloc_direct() function *********
[   25.151598]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.158113]  ******* In dma_alloc_direct() function *********
[   25.163848]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.170363]  ******* In dma_alloc_direct() function *********
[   25.176098]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.182613]  ******* In dma_alloc_direct() function *********
[   25.188348]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.194863]  ******* In dma_alloc_direct() function *********
[   25.200597]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.207113]  ******* In dma_alloc_direct() function *********
[   25.212847]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.219363]  ******* In dma_alloc_direct() function *********
[   25.225097]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.231612]  ******* In dma_alloc_direct() function *********
[   25.237347]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.243863]  ******* In dma_alloc_direct() function *********
[   25.249598]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.256113]  ******* In dma_alloc_direct() function *********
[   25.261848]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.268366]  ******* In dma_alloc_direct() function *********
[   25.274101]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.280616]  ******* In dma_alloc_direct() function *********
[   25.286351]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.292866]  ******* In dma_alloc_direct() function *********
[   25.298602]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.305117]  ******* In dma_alloc_direct() function *********
[   25.310852]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.317367]  ******* In dma_alloc_direct() function *********
[   25.323102]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.329618]  ******* In dma_alloc_direct() function *********
[   25.335353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.341868]  ******* In dma_alloc_direct() function *********
[   25.347603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.354118]  ******* In dma_alloc_direct() function *********
[   25.359853]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.366368]  ******* In dma_alloc_direct() function *********
[   25.372103]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.378618]  ******* In dma_alloc_direct() function *********
[   25.384353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.390868]  ******* In dma_alloc_direct() function *********
[   25.396603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.403118]  ******* In dma_alloc_direct() function *********
[   25.408852]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.415368]  ******* In dma_alloc_direct() function *********
[   25.421102]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.427618]  ******* In dma_alloc_direct() function *********
[   25.433352]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.439867]  ******* In dma_alloc_direct() function *********
[   25.445602]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.452117]  ******* In dma_alloc_direct() function *********
[   25.457852]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.464367]  ******* In dma_alloc_direct() function *********
[   25.470102]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.476617]  ******* In dma_alloc_direct() function *********
[   25.482352]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.488867]  ******* In dma_alloc_direct() function *********
[   25.494602]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.501117]  ******* In dma_alloc_direct() function *********
[   25.506852]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.513367]  ******* In dma_alloc_direct() function *********
[   25.519102]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.525617]  ******* In dma_alloc_direct() function *********
[   25.531352]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.537867]  ******* In dma_alloc_direct() function *********
[   25.543602]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.550117]  ******* In dma_alloc_direct() function *********
[   25.555852]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.562368]  ******* In dma_alloc_direct() function *********
[   25.568102]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.574618]  ******* In dma_alloc_direct() function *********
[   25.580353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.586868]  ******* In dma_alloc_direct() function *********
[   25.592603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.599119]  ******* In dma_alloc_direct() function *********
[   25.604853]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.611368]  ******* In dma_alloc_direct() function *********
[   25.617103]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.623618]  ******* In dma_alloc_direct() function *********
[   25.629353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.635868]  ******* In dma_alloc_direct() function *********
[   25.641603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.648118]  ******* In dma_alloc_direct() function *********
[   25.653853]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.660368]  ******* In dma_alloc_direct() function *********
[   25.666103]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.672618]  ******* In dma_alloc_direct() function *********
[   25.678353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.684868]  ******* In dma_alloc_direct() function *********
[   25.690603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.697118]  ******* In dma_alloc_direct() function *********
[   25.702852]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.709368]  ******* In dma_alloc_direct() function *********
[   25.715102]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.721618]  ******* In dma_alloc_direct() function *********
[   25.727352]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.733867]  ******* In dma_alloc_direct() function *********
[   25.739603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.746118]  ******* In dma_alloc_direct() function *********
[   25.751856]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.758372]  ******* In dma_alloc_direct() function *********
[   25.764106]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.770622]  ******* In dma_alloc_direct() function *********
[   25.776358]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.782875]  ******* In dma_alloc_direct() function *********
[   25.788610]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.795125]  ******* In dma_alloc_direct() function *********
[   25.800860]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.807375]  ******* In dma_alloc_direct() function *********
[   25.813110]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.819626]  ******* In dma_alloc_direct() function *********
[   25.825360]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.831875]  ******* In dma_alloc_direct() function *********
[   25.837610]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.844125]  ******* In dma_alloc_direct() function *********
[   25.849860]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.856375]  ******* In dma_alloc_direct() function *********
[   25.862110]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.868626]  ******* In dma_alloc_direct() function *********
[   25.874361]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.880876]  ******* In dma_alloc_direct() function *********
[   25.886611]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.893127]  ******* In dma_alloc_direct() function *********
[   25.898862]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.905378]  ******* In dma_alloc_direct() function *********
[   25.911112]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.917628]  ******* In dma_alloc_direct() function *********
[   25.923362]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.929877]  ******* In dma_alloc_direct() function *********
[   25.935612]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.942127]  ******* In dma_alloc_direct() function *********
[   25.947863]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.954378]  ******* In dma_alloc_direct() function *********
[   25.960113]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.966628]  ******* In dma_alloc_direct() function *********
[   25.972363]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.978879]  ******* In dma_alloc_direct() function *********
[   25.984614]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   25.991129]  ******* In dma_alloc_direct() function *********
[   25.996864]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.003380]  ******* In dma_alloc_direct() function *********
[   26.009115]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.015630]  ******* In dma_alloc_direct() function *********
[   26.021365]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.027880]  ******* In dma_alloc_direct() function *********
[   26.033615]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.040130]  ******* In dma_alloc_direct() function *********
[   26.045865]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.052380]  ******* In dma_alloc_direct() function *********
[   26.058115]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.064630]  ******* In dma_alloc_direct() function *********
[   26.070365]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.076880]  ******* In dma_alloc_direct() function *********
[   26.082615]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.089130]  ******* In dma_alloc_direct() function *********
[   26.094865]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.101380]  ******* In dma_alloc_direct() function *********
[   26.107115]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.113630]  ******* In dma_alloc_direct() function *********
[   26.119364]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.125880]  ******* In dma_alloc_direct() function *********
[   26.131621]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.138136]  ******* In dma_alloc_direct() function *********
[   26.143871]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.150386]  ******* In dma_alloc_direct() function *********
[   26.156121]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.162637]  ******* In dma_alloc_direct() function *********
[   26.168371]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.174886]  ******* In dma_alloc_direct() function *********
[   26.180621]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.187136]  ******* In dma_alloc_direct() function *********
[   26.192871]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.199387]  ******* In dma_alloc_direct() function *********
[   26.205122]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.211637]  ******* In dma_alloc_direct() function *********
[   26.217372]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.223887]  ******* In dma_alloc_direct() function *********
[   26.229622]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.236137]  ******* In dma_alloc_direct() function *********
[   26.241872]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.248387]  ******* In dma_alloc_direct() function *********
[   26.254122]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.260638]  ******* In dma_alloc_direct() function *********
[   26.266373]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.272888]  ******* In dma_alloc_direct() function *********
[   26.278623]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.285138]  ******* In dma_alloc_direct() function *********
[   26.290874]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.297391]  ******* In dma_alloc_direct() function *********
[   26.303126]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.309641]  ******* In dma_alloc_direct() function *********
[   26.315376]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.321891]  ******* In dma_alloc_direct() function *********
[   26.327627]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.334142]  ******* In dma_alloc_direct() function *********
[   26.339876]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.346392]  ******* In dma_alloc_direct() function *********
[   26.352126]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.358642]  ******* In dma_alloc_direct() function *********
[   26.364377]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.370892]  ******* In dma_alloc_direct() function *********
[   26.376627]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.383142]  ******* In dma_alloc_direct() function *********
[   26.388877]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.395392]  ******* In dma_alloc_direct() function *********
[   26.401127]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.407642]  ******* In dma_alloc_direct() function *********
[   26.413377]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.419892]  ******* In dma_alloc_direct() function *********
[   26.425626]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.432142]  ******* In dma_alloc_direct() function *********
[   26.437876]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.444392]  ******* In dma_alloc_direct() function *********
[   26.450126]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.456641]  ******* In dma_alloc_direct() function *********
[   26.462376]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.468891]  ******* In dma_alloc_direct() function *********
[   26.474626]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.481141]  ******* In dma_alloc_direct() function *********
[   26.486876]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.493391]  ******* In dma_alloc_direct() function *********
[   26.499126]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.505641]  ******* In dma_alloc_direct() function *********
[   26.511376]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.517891]  ******* In dma_alloc_direct() function *********
[   26.523629]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.530145]  ******* In dma_alloc_direct() function *********
[   26.535879]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.542395]  ******* In dma_alloc_direct() function *********
[   26.548129]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.554645]  ******* In dma_alloc_direct() function *********
[   26.560379]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.566894]  ******* In dma_alloc_direct() function *********
[   26.572630]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.579145]  ******* In dma_alloc_direct() function *********
[   26.584880]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.591395]  ******* In dma_alloc_direct() function *********
[   26.597130]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.603645]  ******* In dma_alloc_direct() function *********
[   26.609380]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.615895]  ******* In dma_alloc_direct() function *********
[   26.621630]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.628145]  ******* In dma_alloc_direct() function *********
[   26.633880]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.640395]  ******* In dma_alloc_direct() function *********
[   26.646131]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.652646]  ******* In dma_alloc_direct() function *********
[   26.658381]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.664896]  ******* In dma_alloc_direct() function *********
[   26.670631]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.677146]  ******* In dma_alloc_direct() function *********
[   26.682881]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.689396]  ******* In dma_alloc_direct() function *********
[   26.695131]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.701646]  ******* In dma_alloc_direct() function *********
[   26.707383]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.713898]  ******* In dma_alloc_direct() function *********
[   26.719633]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.726149]  ******* In dma_alloc_direct() function *********
[   26.731884]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.738399]  ******* In dma_alloc_direct() function *********
[   26.744134]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.750649]  ******* In dma_alloc_direct() function *********
[   26.756384]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.762899]  ******* In dma_alloc_direct() function *********
[   26.768634]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.775149]  ******* In dma_alloc_direct() function *********
[   26.780884]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.787399]  ******* In dma_alloc_direct() function *********
[   26.793134]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.799650]  ******* In dma_alloc_direct() function *********
[   26.805386]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.811902]  ******* In dma_alloc_direct() function *********
[   26.817637]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.824152]  ******* In dma_alloc_direct() function *********
[   26.829887]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.836402]  ******* In dma_alloc_direct() function *********
[   26.842137]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.848652]  ******* In dma_alloc_direct() function *********
[   26.854387]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.860902]  ******* In dma_alloc_direct() function *********
[   26.866637]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.873152]  ******* In dma_alloc_direct() function *********
[   26.878887]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.885402]  ******* In dma_alloc_direct() function *********
[   26.891136]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.897652]  ******* In dma_alloc_direct() function *********
[   26.903386]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.909902]  ******* In dma_alloc_direct() function *********
[   26.915636]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.922152]  ******* In dma_alloc_direct() function *********
[   26.927886]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.934402]  ******* In dma_alloc_direct() function *********
[   26.940136]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.946651]  ******* In dma_alloc_direct() function *********
[   26.952386]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.958902]  ******* In dma_alloc_direct() function *********
[   26.964637]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.971152]  ******* In dma_alloc_direct() function *********
[   26.976886]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.983402]  ******* In dma_alloc_direct() function *********
[   26.989138]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   26.995653]  ******* In dma_alloc_direct() function *********
[   27.001388]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.007903]  ******* In dma_alloc_direct() function *********
[   27.013638]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.020153]  ******* In dma_alloc_direct() function *********
[   27.025889]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.032404]  ******* In dma_alloc_direct() function *********
[   27.038139]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.044654]  ******* In dma_alloc_direct() function *********
[   27.050389]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.056904]  ******* In dma_alloc_direct() function *********
[   27.062639]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.069154]  ******* In dma_alloc_direct() function *********
[   27.074888]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.081404]  ******* In dma_alloc_direct() function *********
[   27.087138]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.093654]  ******* In dma_alloc_direct() function *********
[   27.099389]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.105904]  ******* In dma_alloc_direct() function *********
[   27.111639]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.118154]  ******* In dma_alloc_direct() function *********
[   27.123889]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.130404]  ******* In dma_alloc_direct() function *********
[   27.136139]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.142654]  ******* In dma_alloc_direct() function *********
[   27.148389]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.154910]  ******* In dma_alloc_direct() function *********
[   27.160645]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.167160]  ******* In dma_alloc_direct() function *********
[   27.172895]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.179410]  ******* In dma_alloc_direct() function *********
[   27.185145]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.191661]  ******* In dma_alloc_direct() function *********
[   27.197396]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.203911]  ******* In dma_alloc_direct() function *********
[   27.209646]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.216161]  ******* In dma_alloc_direct() function *********
[   27.221896]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.228411]  ******* In dma_alloc_direct() function *********
[   27.234146]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.240661]  ******* In dma_alloc_direct() function *********
[   27.246396]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.252911]  ******* In dma_alloc_direct() function *********
[   27.258646]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.265161]  ******* In dma_alloc_direct() function *********
[   27.270896]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.277411]  ******* In dma_alloc_direct() function *********
[   27.283146]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.289661]  ******* In dma_alloc_direct() function *********
[   27.295399]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.301914]  ******* In dma_alloc_direct() function *********
[   27.307649]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.314165]  ******* In dma_alloc_direct() function *********
[   27.320854] i40e 0000:01:00.2: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   27.608793]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.615309]  ******* In dma_alloc_direct() function *********
[   27.621156] i40e 0000:01:00.2: MAC address: 3c:fd:fe:6b:e9:c2
[   27.627043] i40e 0000:01:00.2: FW LLDP is enabled
[   27.638182]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.644702]  ******* In dma_alloc_direct() function *********
[   27.650438]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.656954]  ******* In dma_alloc_direct() function *********
[   27.662856] i40e 0000:01:00.2: PCI-Express: Speed 8.0GT/s Width x8
[   27.670115] i40e 0000:01:00.2: Features: PF-id[2] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   27.680286] i40e 0000:01:00.3: enabling device (0000 -> 0002)
[   27.705521]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.712040]  ******* In dma_alloc_direct() function *********
[   27.717779]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.724295]  ******* In dma_alloc_direct() function *********
[   27.730029]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.736545]  ******* In dma_alloc_direct() function *********
[   27.742281]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.748796]  ******* In dma_alloc_direct() function *********
[   27.754531]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.761047]  ******* In dma_alloc_direct() function *********
[   27.766782]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.773298]  ******* In dma_alloc_direct() function *********
[   27.779032]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.785548]  ******* In dma_alloc_direct() function *********
[   27.791283]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.797799]  ******* In dma_alloc_direct() function *********
[   27.803535]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.810051]  ******* In dma_alloc_direct() function *********
[   27.815785]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.822301]  ******* In dma_alloc_direct() function *********
[   27.828039]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.834555]  ******* In dma_alloc_direct() function *********
[   27.840289]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.846806]  ******* In dma_alloc_direct() function *********
[   27.852541]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.859057]  ******* In dma_alloc_direct() function *********
[   27.864792]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.871307]  ******* In dma_alloc_direct() function *********
[   27.877043]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.883558]  ******* In dma_alloc_direct() function *********
[   27.889293]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.895809]  ******* In dma_alloc_direct() function *********
[   27.901543]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.908059]  ******* In dma_alloc_direct() function *********
[   27.913794]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.920310]  ******* In dma_alloc_direct() function *********
[   27.926045]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.932561]  ******* In dma_alloc_direct() function *********
[   27.938295]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.944811]  ******* In dma_alloc_direct() function *********
[   27.950546]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.957061]  ******* In dma_alloc_direct() function *********
[   27.962796]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.969311]  ******* In dma_alloc_direct() function *********
[   27.975046]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.981562]  ******* In dma_alloc_direct() function *********
[   27.987298]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   27.993814]  ******* In dma_alloc_direct() function *********
[   27.999548]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.006064]  ******* In dma_alloc_direct() function *********
[   28.011799]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.018315]  ******* In dma_alloc_direct() function *********
[   28.024050]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.030565]  ******* In dma_alloc_direct() function *********
[   28.036300]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.042816]  ******* In dma_alloc_direct() function *********
[   28.048551]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.055066]  ******* In dma_alloc_direct() function *********
[   28.060801]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.067316]  ******* In dma_alloc_direct() function *********
[   28.073051]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.079567]  ******* In dma_alloc_direct() function *********
[   28.085301]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.091816]  ******* In dma_alloc_direct() function *********
[   28.097551]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.104066]  ******* In dma_alloc_direct() function *********
[   28.109801]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.116316]  ******* In dma_alloc_direct() function *********
[   28.122051]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.128566]  ******* In dma_alloc_direct() function *********
[   28.134301]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.140816]  ******* In dma_alloc_direct() function *********
[   28.146551]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.153066]  ******* In dma_alloc_direct() function *********
[   28.158801]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.165316]  ******* In dma_alloc_direct() function *********
[   28.171051]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.177567]  ******* In dma_alloc_direct() function *********
[   28.183302]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.189817]  ******* In dma_alloc_direct() function *********
[   28.195552]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.202068]  ******* In dma_alloc_direct() function *********
[   28.207803]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.214318]  ******* In dma_alloc_direct() function *********
[   28.220053]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.226569]  ******* In dma_alloc_direct() function *********
[   28.232304]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.238819]  ******* In dma_alloc_direct() function *********
[   28.244554]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.251069]  ******* In dma_alloc_direct() function *********
[   28.256804]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.263320]  ******* In dma_alloc_direct() function *********
[   28.269054]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.275570]  ******* In dma_alloc_direct() function *********
[   28.281305]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.287820]  ******* In dma_alloc_direct() function *********
[   28.293555]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.300070]  ******* In dma_alloc_direct() function *********
[   28.305806]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.312321]  ******* In dma_alloc_direct() function *********
[   28.318056]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.324572]  ******* In dma_alloc_direct() function *********
[   28.330306]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.336823]  ******* In dma_alloc_direct() function *********
[   28.342559]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.349075]  ******* In dma_alloc_direct() function *********
[   28.354810]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.361325]  ******* In dma_alloc_direct() function *********
[   28.367060]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.373576]  ******* In dma_alloc_direct() function *********
[   28.379311]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.385826]  ******* In dma_alloc_direct() function *********
[   28.391561]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.398076]  ******* In dma_alloc_direct() function *********
[   28.403811]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.410326]  ******* In dma_alloc_direct() function *********
[   28.416065]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.422581]  ******* In dma_alloc_direct() function *********
[   28.428317]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.434833]  ******* In dma_alloc_direct() function *********
[   28.440567]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.447082]  ******* In dma_alloc_direct() function *********
[   28.452817]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.459332]  ******* In dma_alloc_direct() function *********
[   28.465067]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.471582]  ******* In dma_alloc_direct() function *********
[   28.477317]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.483833]  ******* In dma_alloc_direct() function *********
[   28.489568]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.496083]  ******* In dma_alloc_direct() function *********
[   28.501818]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.508333]  ******* In dma_alloc_direct() function *********
[   28.514068]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.520583]  ******* In dma_alloc_direct() function *********
[   28.526318]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.532833]  ******* In dma_alloc_direct() function *********
[   28.538568]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.545083]  ******* In dma_alloc_direct() function *********
[   28.550818]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.557334]  ******* In dma_alloc_direct() function *********
[   28.563069]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.569585]  ******* In dma_alloc_direct() function *********
[   28.575319]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.581835]  ******* In dma_alloc_direct() function *********
[   28.587569]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.594085]  ******* In dma_alloc_direct() function *********
[   28.599819]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.606334]  ******* In dma_alloc_direct() function *********
[   28.612069]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.618584]  ******* In dma_alloc_direct() function *********
[   28.624319]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.630834]  ******* In dma_alloc_direct() function *********
[   28.636569]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.643085]  ******* In dma_alloc_direct() function *********
[   28.648819]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.655335]  ******* In dma_alloc_direct() function *********
[   28.661069]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.667584]  ******* In dma_alloc_direct() function *********
[   28.673319]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.679834]  ******* In dma_alloc_direct() function *********
[   28.685569]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.692084]  ******* In dma_alloc_direct() function *********
[   28.697819]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.704335]  ******* In dma_alloc_direct() function *********
[   28.710069]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.716591]  ******* In dma_alloc_direct() function *********
[   28.722327]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.728842]  ******* In dma_alloc_direct() function *********
[   28.734577]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.741092]  ******* In dma_alloc_direct() function *********
[   28.746827]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.753342]  ******* In dma_alloc_direct() function *********
[   28.759077]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.765592]  ******* In dma_alloc_direct() function *********
[   28.771327]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.777842]  ******* In dma_alloc_direct() function *********
[   28.783576]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.790092]  ******* In dma_alloc_direct() function *********
[   28.795826]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.802342]  ******* In dma_alloc_direct() function *********
[   28.808076]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.814592]  ******* In dma_alloc_direct() function *********
[   28.820326]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.826841]  ******* In dma_alloc_direct() function *********
[   28.832577]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.839092]  ******* In dma_alloc_direct() function *********
[   28.844827]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.851345]  ******* In dma_alloc_direct() function *********
[   28.857080]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.863596]  ******* In dma_alloc_direct() function *********
[   28.869331]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.875846]  ******* In dma_alloc_direct() function *********
[   28.881581]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.888096]  ******* In dma_alloc_direct() function *********
[   28.893831]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.900346]  ******* In dma_alloc_direct() function *********
[   28.906081]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.912597]  ******* In dma_alloc_direct() function *********
[   28.918332]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.924847]  ******* In dma_alloc_direct() function *********
[   28.930582]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.937097]  ******* In dma_alloc_direct() function *********
[   28.942832]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.949347]  ******* In dma_alloc_direct() function *********
[   28.955082]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.961597]  ******* In dma_alloc_direct() function *********
[   28.967332]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.973847]  ******* In dma_alloc_direct() function *********
[   28.979582]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.986097]  ******* In dma_alloc_direct() function *********
[   28.991832]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   28.998347]  ******* In dma_alloc_direct() function *********
[   29.004082]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.010599]  ******* In dma_alloc_direct() function *********
[   29.016334]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.022850]  ******* In dma_alloc_direct() function *********
[   29.028584]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.035100]  ******* In dma_alloc_direct() function *********
[   29.040835]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.047351]  ******* In dma_alloc_direct() function *********
[   29.053085]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.059601]  ******* In dma_alloc_direct() function *********
[   29.065335]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.071851]  ******* In dma_alloc_direct() function *********
[   29.077585]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.084100]  ******* In dma_alloc_direct() function *********
[   29.089835]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.096350]  ******* In dma_alloc_direct() function *********
[   29.102085]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.108600]  ******* In dma_alloc_direct() function *********
[   29.114335]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.120851]  ******* In dma_alloc_direct() function *********
[   29.126585]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.133101]  ******* In dma_alloc_direct() function *********
[   29.138836]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.145351]  ******* In dma_alloc_direct() function *********
[   29.151086]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.157601]  ******* In dma_alloc_direct() function *********
[   29.163336]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.169851]  ******* In dma_alloc_direct() function *********
[   29.175586]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.182101]  ******* In dma_alloc_direct() function *********
[   29.187839]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.194354]  ******* In dma_alloc_direct() function *********
[   29.200089]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.206604]  ******* In dma_alloc_direct() function *********
[   29.212339]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.218855]  ******* In dma_alloc_direct() function *********
[   29.224589]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.231105]  ******* In dma_alloc_direct() function *********
[   29.236839]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.243355]  ******* In dma_alloc_direct() function *********
[   29.249089]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.255605]  ******* In dma_alloc_direct() function *********
[   29.261340]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.267855]  ******* In dma_alloc_direct() function *********
[   29.273590]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.280105]  ******* In dma_alloc_direct() function *********
[   29.285840]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.292355]  ******* In dma_alloc_direct() function *********
[   29.298089]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.304605]  ******* In dma_alloc_direct() function *********
[   29.310339]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.316854]  ******* In dma_alloc_direct() function *********
[   29.322589]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.329105]  ******* In dma_alloc_direct() function *********
[   29.334839]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.341354]  ******* In dma_alloc_direct() function *********
[   29.347089]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.353604]  ******* In dma_alloc_direct() function *********
[   29.359341]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.365857]  ******* In dma_alloc_direct() function *********
[   29.371592]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.378107]  ******* In dma_alloc_direct() function *********
[   29.383842]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.390357]  ******* In dma_alloc_direct() function *********
[   29.396092]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.402607]  ******* In dma_alloc_direct() function *********
[   29.408342]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.414858]  ******* In dma_alloc_direct() function *********
[   29.420592]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.427108]  ******* In dma_alloc_direct() function *********
[   29.432842]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.439358]  ******* In dma_alloc_direct() function *********
[   29.445092]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.451607]  ******* In dma_alloc_direct() function *********
[   29.457342]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.463858]  ******* In dma_alloc_direct() function *********
[   29.469593]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.476108]  ******* In dma_alloc_direct() function *********
[   29.481842]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.488358]  ******* In dma_alloc_direct() function *********
[   29.494092]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.500608]  ******* In dma_alloc_direct() function *********
[   29.506342]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.512857]  ******* In dma_alloc_direct() function *********
[   29.518593]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.525108]  ******* In dma_alloc_direct() function *********
[   29.530843]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.537358]  ******* In dma_alloc_direct() function *********
[   29.543093]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.549608]  ******* In dma_alloc_direct() function *********
[   29.555344]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.561859]  ******* In dma_alloc_direct() function *********
[   29.567593]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.574109]  ******* In dma_alloc_direct() function *********
[   29.579844]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.586359]  ******* In dma_alloc_direct() function *********
[   29.592094]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.598609]  ******* In dma_alloc_direct() function *********
[   29.604344]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.610859]  ******* In dma_alloc_direct() function *********
[   29.616594]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.623109]  ******* In dma_alloc_direct() function *********
[   29.628844]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.635359]  ******* In dma_alloc_direct() function *********
[   29.641094]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.647609]  ******* In dma_alloc_direct() function *********
[   29.653344]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.659859]  ******* In dma_alloc_direct() function *********
[   29.665594]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.672110]  ******* In dma_alloc_direct() function *********
[   29.677845]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.684360]  ******* In dma_alloc_direct() function *********
[   29.690095]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.696610]  ******* In dma_alloc_direct() function *********
[   29.702345]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.708860]  ******* In dma_alloc_direct() function *********
[   29.714596]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.721111]  ******* In dma_alloc_direct() function *********
[   29.726846]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.733361]  ******* In dma_alloc_direct() function *********
[   29.739102]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.745618]  ******* In dma_alloc_direct() function *********
[   29.751353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.757868]  ******* In dma_alloc_direct() function *********
[   29.763603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.770119]  ******* In dma_alloc_direct() function *********
[   29.775853]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.782368]  ******* In dma_alloc_direct() function *********
[   29.788103]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.794619]  ******* In dma_alloc_direct() function *********
[   29.800353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.806868]  ******* In dma_alloc_direct() function *********
[   29.812603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.819118]  ******* In dma_alloc_direct() function *********
[   29.824853]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.831368]  ******* In dma_alloc_direct() function *********
[   29.837103]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.843618]  ******* In dma_alloc_direct() function *********
[   29.849353]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.855868]  ******* In dma_alloc_direct() function *********
[   29.861603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.868118]  ******* In dma_alloc_direct() function *********
[   29.873854]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.880372]  ******* In dma_alloc_direct() function *********
[   29.886106]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.892622]  ******* In dma_alloc_direct() function *********
[   29.898357]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.904872]  ******* In dma_alloc_direct() function *********
[   29.910607]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.917122]  ******* In dma_alloc_direct() function *********
[   29.922857]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.929372]  ******* In dma_alloc_direct() function *********
[   29.935107]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.941622]  ******* In dma_alloc_direct() function *********
[   29.947356]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.953872]  ******* In dma_alloc_direct() function *********
[   29.959611]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.966126]  ******* In dma_alloc_direct() function *********
[   29.971861]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.978376]  ******* In dma_alloc_direct() function *********
[   29.984110]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   29.990626]  ******* In dma_alloc_direct() function *********
[   29.996360]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.002876]  ******* In dma_alloc_direct() function *********
[   30.008612]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.015127]  ******* In dma_alloc_direct() function *********
[   30.020862]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.027378]  ******* In dma_alloc_direct() function *********
[   30.033112]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.039627]  ******* In dma_alloc_direct() function *********
[   30.045362]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.051877]  ******* In dma_alloc_direct() function *********
[   30.057612]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.064127]  ******* In dma_alloc_direct() function *********
[   30.069862]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.076377]  ******* In dma_alloc_direct() function *********
[   30.082112]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.088628]  ******* In dma_alloc_direct() function *********
[   30.094363]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.100878]  ******* In dma_alloc_direct() function *********
[   30.106613]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.113128]  ******* In dma_alloc_direct() function *********
[   30.118863]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.125378]  ******* In dma_alloc_direct() function *********
[   30.131113]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.137628]  ******* In dma_alloc_direct() function *********
[   30.143363]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.149878]  ******* In dma_alloc_direct() function *********
[   30.155612]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.162128]  ******* In dma_alloc_direct() function *********
[   30.167863]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.174378]  ******* In dma_alloc_direct() function *********
[   30.180113]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.186628]  ******* In dma_alloc_direct() function *********
[   30.192363]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.198879]  ******* In dma_alloc_direct() function *********
[   30.204613]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.211129]  ******* In dma_alloc_direct() function *********
[   30.216864]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.223379]  ******* In dma_alloc_direct() function *********
[   30.229114]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.235629]  ******* In dma_alloc_direct() function *********
[   30.241364]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.247879]  ******* In dma_alloc_direct() function *********
[   30.253614]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.260129]  ******* In dma_alloc_direct() function *********
[   30.265864]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.272379]  ******* In dma_alloc_direct() function *********
[   30.278114]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.284629]  ******* In dma_alloc_direct() function *********
[   30.290364]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.296881]  ******* In dma_alloc_direct() function *********
[   30.302616]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.309131]  ******* In dma_alloc_direct() function *********
[   30.314867]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.321382]  ******* In dma_alloc_direct() function *********
[   30.327117]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.333632]  ******* In dma_alloc_direct() function *********
[   30.339367]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.345882]  ******* In dma_alloc_direct() function *********
[   30.351617]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.358132]  ******* In dma_alloc_direct() function *********
[   30.363867]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.370382]  ******* In dma_alloc_direct() function *********
[   30.376117]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.382632]  ******* In dma_alloc_direct() function *********
[   30.388369]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.394886]  ******* In dma_alloc_direct() function *********
[   30.400620]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.407136]  ******* In dma_alloc_direct() function *********
[   30.412870]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.419386]  ******* In dma_alloc_direct() function *********
[   30.425121]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.431636]  ******* In dma_alloc_direct() function *********
[   30.437371]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.443886]  ******* In dma_alloc_direct() function *********
[   30.449621]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.456136]  ******* In dma_alloc_direct() function *********
[   30.461871]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.468386]  ******* In dma_alloc_direct() function *********
[   30.474121]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.480636]  ******* In dma_alloc_direct() function *********
[   30.486370]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.492886]  ******* In dma_alloc_direct() function *********
[   30.498620]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.505136]  ******* In dma_alloc_direct() function *********
[   30.510871]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.517386]  ******* In dma_alloc_direct() function *********
[   30.523121]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.529636]  ******* In dma_alloc_direct() function *********
[   30.535371]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.541886]  ******* In dma_alloc_direct() function *********
[   30.547621]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.554137]  ******* In dma_alloc_direct() function *********
[   30.559872]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.566387]  ******* In dma_alloc_direct() function *********
[   30.572122]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.578637]  ******* In dma_alloc_direct() function *********
[   30.584372]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.590887]  ******* In dma_alloc_direct() function *********
[   30.596622]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.603137]  ******* In dma_alloc_direct() function *********
[   30.608872]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.615387]  ******* In dma_alloc_direct() function *********
[   30.621122]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.627637]  ******* In dma_alloc_direct() function *********
[   30.633372]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.639887]  ******* In dma_alloc_direct() function *********
[   30.645621]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.652137]  ******* In dma_alloc_direct() function *********
[   30.657871]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.664386]  ******* In dma_alloc_direct() function *********
[   30.670121]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.676636]  ******* In dma_alloc_direct() function *********
[   30.682371]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.688886]  ******* In dma_alloc_direct() function *********
[   30.694621]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.701136]  ******* In dma_alloc_direct() function *********
[   30.706871]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.713387]  ******* In dma_alloc_direct() function *********
[   30.719121]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.725637]  ******* In dma_alloc_direct() function *********
[   30.731374]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.737889]  ******* In dma_alloc_direct() function *********
[   30.743624]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.750139]  ******* In dma_alloc_direct() function *********
[   30.755880]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.762396]  ******* In dma_alloc_direct() function *********
[   30.768130]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.774645]  ******* In dma_alloc_direct() function *********
[   30.780380]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.786896]  ******* In dma_alloc_direct() function *********
[   30.792631]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.799146]  ******* In dma_alloc_direct() function *********
[   30.804881]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.811396]  ******* In dma_alloc_direct() function *********
[   30.817131]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.823646]  ******* In dma_alloc_direct() function *********
[   30.829381]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.835896]  ******* In dma_alloc_direct() function *********
[   30.841631]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.848146]  ******* In dma_alloc_direct() function *********
[   30.853883]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.860398]  ******* In dma_alloc_direct() function *********
[   30.866135]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.872651]  ******* In dma_alloc_direct() function *********
[   30.878385]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.884901]  ******* In dma_alloc_direct() function *********
[   30.890635]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.897152]  ******* In dma_alloc_direct() function *********
[   30.902888]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.909403]  ******* In dma_alloc_direct() function *********
[   30.915138]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.921654]  ******* In dma_alloc_direct() function *********
[   30.927388]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.933904]  ******* In dma_alloc_direct() function *********
[   30.939639]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.946154]  ******* In dma_alloc_direct() function *********
[   30.951889]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.958404]  ******* In dma_alloc_direct() function *********
[   30.964139]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.970654]  ******* In dma_alloc_direct() function *********
[   30.976388]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.982904]  ******* In dma_alloc_direct() function *********
[   30.988638]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   30.995154]  ******* In dma_alloc_direct() function *********
[   31.000889]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.007405]  ******* In dma_alloc_direct() function *********
[   31.013140]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.019655]  ******* In dma_alloc_direct() function *********
[   31.025390]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.031906]  ******* In dma_alloc_direct() function *********
[   31.037641]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.044156]  ******* In dma_alloc_direct() function *********
[   31.049891]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.056406]  ******* In dma_alloc_direct() function *********
[   31.062141]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.068656]  ******* In dma_alloc_direct() function *********
[   31.074391]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.080906]  ******* In dma_alloc_direct() function *********
[   31.086641]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.093156]  ******* In dma_alloc_direct() function *********
[   31.098891]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.105406]  ******* In dma_alloc_direct() function *********
[   31.111141]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.117656]  ******* In dma_alloc_direct() function *********
[   31.123391]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.129907]  ******* In dma_alloc_direct() function *********
[   31.135642]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.142157]  ******* In dma_alloc_direct() function *********
[   31.147892]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.154407]  ******* In dma_alloc_direct() function *********
[   31.160142]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.166658]  ******* In dma_alloc_direct() function *********
[   31.172392]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.178908]  ******* In dma_alloc_direct() function *********
[   31.184643]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.191158]  ******* In dma_alloc_direct() function *********
[   31.196893]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.203408]  ******* In dma_alloc_direct() function *********
[   31.209143]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.215658]  ******* In dma_alloc_direct() function *********
[   31.221393]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.227908]  ******* In dma_alloc_direct() function *********
[   31.233643]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.240158]  ******* In dma_alloc_direct() function *********
[   31.245892]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.252408]  ******* In dma_alloc_direct() function *********
[   31.258142]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.264658]  ******* In dma_alloc_direct() function *********
[   31.270392]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.276908]  ******* In dma_alloc_direct() function *********
[   31.282643]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.289158]  ******* In dma_alloc_direct() function *********
[   31.294893]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.301408]  ******* In dma_alloc_direct() function *********
[   31.307143]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.313658]  ******* In dma_alloc_direct() function *********
[   31.319392]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.325908]  ******* In dma_alloc_direct() function *********
[   31.331643]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.338158]  ******* In dma_alloc_direct() function *********
[   31.343893]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.350408]  ******* In dma_alloc_direct() function *********
[   31.356143]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.362658]  ******* In dma_alloc_direct() function *********
[   31.368393]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.374908]  ******* In dma_alloc_direct() function *********
[   31.380643]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.387158]  ******* In dma_alloc_direct() function *********
[   31.392892]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.399408]  ******* In dma_alloc_direct() function *********
[   31.405143]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.411661]  ******* In dma_alloc_direct() function *********
[   31.417397]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.423912]  ******* In dma_alloc_direct() function *********
[   31.429648]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.436163]  ******* In dma_alloc_direct() function *********
[   31.441898]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.448413]  ******* In dma_alloc_direct() function *********
[   31.454148]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.460663]  ******* In dma_alloc_direct() function *********
[   31.466398]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.472913]  ******* In dma_alloc_direct() function *********
[   31.478648]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.485163]  ******* In dma_alloc_direct() function *********
[   31.490898]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.497413]  ******* In dma_alloc_direct() function *********
[   31.503148]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.509663]  ******* In dma_alloc_direct() function *********
[   31.515401]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.521916]  ******* In dma_alloc_direct() function *********
[   31.527651]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.534166]  ******* In dma_alloc_direct() function *********
[   31.539901]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.546416]  ******* In dma_alloc_direct() function *********
[   31.552151]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.558666]  ******* In dma_alloc_direct() function *********
[   31.564401]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.570916]  ******* In dma_alloc_direct() function *********
[   31.576651]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.583166]  ******* In dma_alloc_direct() function *********
[   31.588901]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.595416]  ******* In dma_alloc_direct() function *********
[   31.601151]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.607666]  ******* In dma_alloc_direct() function *********
[   31.613401]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.619916]  ******* In dma_alloc_direct() function *********
[   31.625651]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.632166]  ******* In dma_alloc_direct() function *********
[   31.637900]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.644416]  ******* In dma_alloc_direct() function *********
[   31.650150]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.656666]  ******* In dma_alloc_direct() function *********
[   31.662400]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.668915]  ******* In dma_alloc_direct() function *********
[   31.674650]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.681165]  ******* In dma_alloc_direct() function *********
[   31.686900]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.693415]  ******* In dma_alloc_direct() function *********
[   31.699150]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.705665]  ******* In dma_alloc_direct() function *********
[   31.711400]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.717915]  ******* In dma_alloc_direct() function *********
[   31.723650]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.730165]  ******* In dma_alloc_direct() function *********
[   31.735900]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.742415]  ******* In dma_alloc_direct() function *********
[   31.748150]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.754665]  ******* In dma_alloc_direct() function *********
[   31.760400]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.766915]  ******* In dma_alloc_direct() function *********
[   31.772650]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.779171]  ******* In dma_alloc_direct() function *********
[   31.784907]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.791422]  ******* In dma_alloc_direct() function *********
[   31.797157]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.803672]  ******* In dma_alloc_direct() function *********
[   31.809407]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.815923]  ******* In dma_alloc_direct() function *********
[   31.821657]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.828172]  ******* In dma_alloc_direct() function *********
[   31.833907]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.840422]  ******* In dma_alloc_direct() function *********
[   31.846157]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.852672]  ******* In dma_alloc_direct() function *********
[   31.858407]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.864923]  ******* In dma_alloc_direct() function *********
[   31.870657]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.877173]  ******* In dma_alloc_direct() function *********
[   31.882908]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.889423]  ******* In dma_alloc_direct() function *********
[   31.895158]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.901674]  ******* In dma_alloc_direct() function *********
[   31.907408]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.913923]  ******* In dma_alloc_direct() function *********
[   31.919659]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.926176]  ******* In dma_alloc_direct() function *********
[   31.931910]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.938426]  ******* In dma_alloc_direct() function *********
[   31.944161]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.950676]  ******* In dma_alloc_direct() function *********
[   31.956412]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.962927]  ******* In dma_alloc_direct() function *********
[   31.968662]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.975178]  ******* In dma_alloc_direct() function *********
[   31.980913]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.987429]  ******* In dma_alloc_direct() function *********
[   31.993163]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   31.999679]  ******* In dma_alloc_direct() function *********
[   32.005414]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.011929]  ******* In dma_alloc_direct() function *********
[   32.017664]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.024179]  ******* In dma_alloc_direct() function *********
[   32.029914]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.036429]  ******* In dma_alloc_direct() function *********
[   32.042165]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.048680]  ******* In dma_alloc_direct() function *********
[   32.054415]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.060930]  ******* In dma_alloc_direct() function *********
[   32.066665]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.073180]  ******* In dma_alloc_direct() function *********
[   32.078915]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.085430]  ******* In dma_alloc_direct() function *********
[   32.091164]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.097680]  ******* In dma_alloc_direct() function *********
[   32.103414]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.109930]  ******* In dma_alloc_direct() function *********
[   32.115664]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.122179]  ******* In dma_alloc_direct() function *********
[   32.127914]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.134430]  ******* In dma_alloc_direct() function *********
[   32.140165]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.146680]  ******* In dma_alloc_direct() function *********
[   32.152415]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.158930]  ******* In dma_alloc_direct() function *********
[   32.164665]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.171181]  ******* In dma_alloc_direct() function *********
[   32.176916]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.183431]  ******* In dma_alloc_direct() function *********
[   32.189166]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.195681]  ******* In dma_alloc_direct() function *********
[   32.201416]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.207932]  ******* In dma_alloc_direct() function *********
[   32.213666]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.220181]  ******* In dma_alloc_direct() function *********
[   32.225917]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.232432]  ******* In dma_alloc_direct() function *********
[   32.238167]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.244682]  ******* In dma_alloc_direct() function *********
[   32.250416]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.256932]  ******* In dma_alloc_direct() function *********
[   32.262666]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.269182]  ******* In dma_alloc_direct() function *********
[   32.274916]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.281432]  ******* In dma_alloc_direct() function *********
[   32.287169]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.293684]  ******* In dma_alloc_direct() function *********
[   32.299419]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.305934]  ******* In dma_alloc_direct() function *********
[   32.311669]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.318184]  ******* In dma_alloc_direct() function *********
[   32.323919]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.330434]  ******* In dma_alloc_direct() function *********
[   32.336169]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.342685]  ******* In dma_alloc_direct() function *********
[   32.348419]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.354935]  ******* In dma_alloc_direct() function *********
[   32.360669]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.367185]  ******* In dma_alloc_direct() function *********
[   32.372920]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.379435]  ******* In dma_alloc_direct() function *********
[   32.385170]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.391685]  ******* In dma_alloc_direct() function *********
[   32.397420]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.403935]  ******* In dma_alloc_direct() function *********
[   32.409670]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.416185]  ******* In dma_alloc_direct() function *********
[   32.421920]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.428435]  ******* In dma_alloc_direct() function *********
[   32.434171]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.440688]  ******* In dma_alloc_direct() function *********
[   32.446423]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.452938]  ******* In dma_alloc_direct() function *********
[   32.458673]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.465188]  ******* In dma_alloc_direct() function *********
[   32.470923]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.477438]  ******* In dma_alloc_direct() function *********
[   32.483173]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.489688]  ******* In dma_alloc_direct() function *********
[   32.495423]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.501938]  ******* In dma_alloc_direct() function *********
[   32.507673]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.514188]  ******* In dma_alloc_direct() function *********
[   32.519923]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.526438]  ******* In dma_alloc_direct() function *********
[   32.532172]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.538688]  ******* In dma_alloc_direct() function *********
[   32.544422]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.550938]  ******* In dma_alloc_direct() function *********
[   32.556672]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.563188]  ******* In dma_alloc_direct() function *********
[   32.568922]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.575438]  ******* In dma_alloc_direct() function *********
[   32.581173]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.587688]  ******* In dma_alloc_direct() function *********
[   32.593423]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.599938]  ******* In dma_alloc_direct() function *********
[   32.605673]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.612188]  ******* In dma_alloc_direct() function *********
[   32.617923]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.624439]  ******* In dma_alloc_direct() function *********
[   32.630174]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.636689]  ******* In dma_alloc_direct() function *********
[   32.642424]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.648939]  ******* In dma_alloc_direct() function *********
[   32.654674]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.661189]  ******* In dma_alloc_direct() function *********
[   32.666924]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.673439]  ******* In dma_alloc_direct() function *********
[   32.679174]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.685689]  ******* In dma_alloc_direct() function *********
[   32.691423]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.697939]  ******* In dma_alloc_direct() function *********
[   32.703673]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.710189]  ******* In dma_alloc_direct() function *********
[   32.715923]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.722439]  ******* In dma_alloc_direct() function *********
[   32.728173]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.734688]  ******* In dma_alloc_direct() function *********
[   32.740423]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.746938]  ******* In dma_alloc_direct() function *********
[   32.752673]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.759188]  ******* In dma_alloc_direct() function *********
[   32.764924]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.771439]  ******* In dma_alloc_direct() function *********
[   32.777174]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.783689]  ******* In dma_alloc_direct() function *********
[   32.789424]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.795945]  ******* In dma_alloc_direct() function *********
[   32.801680]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.808196]  ******* In dma_alloc_direct() function *********
[   32.813930]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.820445]  ******* In dma_alloc_direct() function *********
[   32.826180]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.832695]  ******* In dma_alloc_direct() function *********
[   32.838430]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.844945]  ******* In dma_alloc_direct() function *********
[   32.850680]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.857195]  ******* In dma_alloc_direct() function *********
[   32.862930]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.869445]  ******* In dma_alloc_direct() function *********
[   32.875180]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.881696]  ******* In dma_alloc_direct() function *********
[   32.887430]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.893945]  ******* In dma_alloc_direct() function *********
[   32.899680]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.906195]  ******* In dma_alloc_direct() function *********
[   32.911930]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.918445]  ******* In dma_alloc_direct() function *********
[   32.924180]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.930695]  ******* In dma_alloc_direct() function *********
[   32.936430]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.942945]  ******* In dma_alloc_direct() function *********
[   32.948682]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.955198]  ******* In dma_alloc_direct() function *********
[   32.960933]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.967449]  ******* In dma_alloc_direct() function *********
[   32.973183]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.979699]  ******* In dma_alloc_direct() function *********
[   32.985433]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   32.991949]  ******* In dma_alloc_direct() function *********
[   32.997684]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.004199]  ******* In dma_alloc_direct() function *********
[   33.009935]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.016451]  ******* In dma_alloc_direct() function *********
[   33.022185]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.028701]  ******* In dma_alloc_direct() function *********
[   33.034436]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.040951]  ******* In dma_alloc_direct() function *********
[   33.046686]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.053201]  ******* In dma_alloc_direct() function *********
[   33.058938]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.065454]  ******* In dma_alloc_direct() function *********
[   33.071188]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.077703]  ******* In dma_alloc_direct() function *********
[   33.083439]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.089954]  ******* In dma_alloc_direct() function *********
[   33.095688]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.102204]  ******* In dma_alloc_direct() function *********
[   33.107938]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.114454]  ******* In dma_alloc_direct() function *********
[   33.120188]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.126704]  ******* In dma_alloc_direct() function *********
[   33.132438]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.138953]  ******* In dma_alloc_direct() function *********
[   33.144688]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.151203]  ******* In dma_alloc_direct() function *********
[   33.156938]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.163453]  ******* In dma_alloc_direct() function *********
[   33.169188]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.175703]  ******* In dma_alloc_direct() function *********
[   33.181438]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.187953]  ******* In dma_alloc_direct() function *********
[   33.193688]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.200204]  ******* In dma_alloc_direct() function *********
[   33.205938]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.212454]  ******* In dma_alloc_direct() function *********
[   33.218188]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.224704]  ******* In dma_alloc_direct() function *********
[   33.230439]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.236954]  ******* In dma_alloc_direct() function *********
[   33.242689]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.249204]  ******* In dma_alloc_direct() function *********
[   33.254938]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.261454]  ******* In dma_alloc_direct() function *********
[   33.267188]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.273704]  ******* In dma_alloc_direct() function *********
[   33.279438]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.285953]  ******* In dma_alloc_direct() function *********
[   33.291688]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.298203]  ******* In dma_alloc_direct() function *********
[   33.303938]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.310453]  ******* In dma_alloc_direct() function *********
[   33.316188]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.322703]  ******* In dma_alloc_direct() function *********
[   33.328438]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.334953]  ******* In dma_alloc_direct() function *********
[   33.340688]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.347203]  ******* In dma_alloc_direct() function *********
[   33.352938]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.359453]  ******* In dma_alloc_direct() function *********
[   33.365188]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.371703]  ******* In dma_alloc_direct() function *********
[   33.377437]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.383953]  ******* In dma_alloc_direct() function *********
[   33.389687]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.396203]  ******* In dma_alloc_direct() function *********
[   33.401938]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.408454]  ******* In dma_alloc_direct() function *********
[   33.414189]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.420704]  ******* In dma_alloc_direct() function *********
[   33.426439]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.432955]  ******* In dma_alloc_direct() function *********
[   33.438690]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.445205]  ******* In dma_alloc_direct() function *********
[   33.450940]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.457456]  ******* In dma_alloc_direct() function *********
[   33.463192]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.469708]  ******* In dma_alloc_direct() function *********
[   33.475442]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.481958]  ******* In dma_alloc_direct() function *********
[   33.487692]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.494207]  ******* In dma_alloc_direct() function *********
[   33.499942]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.506457]  ******* In dma_alloc_direct() function *********
[   33.512192]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.518708]  ******* In dma_alloc_direct() function *********
[   33.524443]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.530958]  ******* In dma_alloc_direct() function *********
[   33.536693]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.543208]  ******* In dma_alloc_direct() function *********
[   33.548943]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.555458]  ******* In dma_alloc_direct() function *********
[   33.561193]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.567708]  ******* In dma_alloc_direct() function *********
[   33.573443]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.579958]  ******* In dma_alloc_direct() function *********
[   33.585692]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.592208]  ******* In dma_alloc_direct() function *********
[   33.597942]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.604458]  ******* In dma_alloc_direct() function *********
[   33.610192]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.616708]  ******* In dma_alloc_direct() function *********
[   33.622443]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.628959]  ******* In dma_alloc_direct() function *********
[   33.634694]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.641209]  ******* In dma_alloc_direct() function *********
[   33.646944]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.653459]  ******* In dma_alloc_direct() function *********
[   33.659196]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.665711]  ******* In dma_alloc_direct() function *********
[   33.671446]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.677961]  ******* In dma_alloc_direct() function *********
[   33.683696]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.690211]  ******* In dma_alloc_direct() function *********
[   33.695946]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.702461]  ******* In dma_alloc_direct() function *********
[   33.708195]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.714711]  ******* In dma_alloc_direct() function *********
[   33.720445]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.726960]  ******* In dma_alloc_direct() function *********
[   33.732695]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.739210]  ******* In dma_alloc_direct() function *********
[   33.744945]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.751460]  ******* In dma_alloc_direct() function *********
[   33.757196]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.763711]  ******* In dma_alloc_direct() function *********
[   33.769445]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.775961]  ******* In dma_alloc_direct() function *********
[   33.781696]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.788211]  ******* In dma_alloc_direct() function *********
[   33.793946]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.800462]  ******* In dma_alloc_direct() function *********
[   33.806196]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.812711]  ******* In dma_alloc_direct() function *********
[   33.818452]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.824968]  ******* In dma_alloc_direct() function *********
[   33.830706]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.837221]  ******* In dma_alloc_direct() function *********
[   33.842956]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.849472]  ******* In dma_alloc_direct() function *********
[   33.855206]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.861721]  ******* In dma_alloc_direct() function *********
[   33.867457]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.873972]  ******* In dma_alloc_direct() function *********
[   33.879708]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.886224]  ******* In dma_alloc_direct() function *********
[   33.891959]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.898474]  ******* In dma_alloc_direct() function *********
[   33.904208]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.910724]  ******* In dma_alloc_direct() function *********
[   33.916458]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.922974]  ******* In dma_alloc_direct() function *********
[   33.928708]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.935224]  ******* In dma_alloc_direct() function *********
[   33.940958]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.947473]  ******* In dma_alloc_direct() function *********
[   33.953208]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.959723]  ******* In dma_alloc_direct() function *********
[   33.965458]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.971976]  ******* In dma_alloc_direct() function *********
[   33.977711]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.984227]  ******* In dma_alloc_direct() function *********
[   33.989961]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   33.996476]  ******* In dma_alloc_direct() function *********
[   34.003165] i40e 0000:01:00.3: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[   34.290928]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.297443]  ******* In dma_alloc_direct() function *********
[   34.303292] i40e 0000:01:00.3: MAC address: 3c:fd:fe:6b:e9:c3
[   34.309178] i40e 0000:01:00.3: FW LLDP is enabled
[   34.320405]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.326924]  ******* In dma_alloc_direct() function *********
[   34.332660]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.339176]  ******* In dma_alloc_direct() function *********
[   34.345077] i40e 0000:01:00.3: PCI-Express: Speed 8.0GT/s Width x8
[   34.352386] i40e 0000:01:00.3: Features: PF-id[3] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[   34.362505] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   34.369026] ehci-pci: EHCI PCI platform driver
[   34.373594] xhci_hcd 000d:01:00.2: enabling device (0000 -> 0002)
[   34.379714] xhci_hcd 000d:01:00.2: xHCI Host Controller
[   34.384934] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 1
[   34.392857]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.399373]  ******* In dma_alloc_direct() function *********
[   34.405110]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.411627]  ******* In dma_alloc_direct() function *********
[   34.417365]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.423881]  ******* In dma_alloc_direct() function *********
[   34.429619]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.436136]  ******* In dma_alloc_direct() function *********
[   34.441872]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.448389]  ******* In dma_alloc_direct() function *********
[   34.454141]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.460656]  ******* In dma_alloc_direct() function *********
[   34.466391]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.472907]  ******* In dma_alloc_direct() function *********
[   34.478641]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.485159]  ******* In dma_alloc_direct() function *********
[   34.490894]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.497409]  ******* In dma_alloc_direct() function *********
[   34.503167] xhci_hcd 000d:01:00.2: hcc params 0x0180ff05 hci version 0x110 quirks 0x0000000000000010
[   34.512623] hub 1-0:1.0: USB hub found
[   34.516374] hub 1-0:1.0: 2 ports detected
[   34.520498] xhci_hcd 000d:01:00.2: xHCI Host Controller
[   34.525716] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 2
[   34.533104] xhci_hcd 000d:01:00.2: Host supports USB 3.1 Enhanced SuperSpeed
[   34.540163] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[   34.548361] hub 2-0:1.0: USB hub found
[   34.552112] hub 2-0:1.0: 4 ports detected
[   34.556330] xhci_hcd 0004:03:00.0: xHCI Host Controller
[   34.561550] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 3
[   34.574244]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.580760]  ******* In dma_alloc_direct() function *********
[   34.586497]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.593014]  ******* In dma_alloc_direct() function *********
[   34.598754]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.605270]  ******* In dma_alloc_direct() function *********
[   34.611007]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.617522]  ******* In dma_alloc_direct() function *********
[   34.623259]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.629775]  ******* In dma_alloc_direct() function *********
[   34.635526]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.642042]  ******* In dma_alloc_direct() function *********
[   34.647777]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.654293]  ******* In dma_alloc_direct() function *********
[   34.660028]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.666544]  ******* In dma_alloc_direct() function *********
[   34.672279]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.678795]  ******* In dma_alloc_direct() function *********
[   34.684529]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.691045]  ******* In dma_alloc_direct() function *********
[   34.696815] xhci_hcd 0004:03:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[   34.707850] hub 3-0:1.0: USB hub found
[   34.711604] hub 3-0:1.0: 4 ports detected
[   34.715786] xhci_hcd 0004:03:00.0: xHCI Host Controller
[   34.721004] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 4
[   34.728398] xhci_hcd 0004:03:00.0: Host supports USB 3.0 SuperSpeed
[   34.734685] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[   34.742894] hub 4-0:1.0: USB hub found
[   34.746645] hub 4-0:1.0: 4 ports detected
[   34.750917] xhci_hcd 0005:02:00.0: xHCI Host Controller
[   34.756137] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 5
[   34.874432]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.880947]  ******* In dma_alloc_direct() function *********
[   34.886685]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.893201]  ******* In dma_alloc_direct() function *********
[   34.898941]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.905456]  ******* In dma_alloc_direct() function *********
[   34.911195]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.917711]  ******* In dma_alloc_direct() function *********
[   34.923446]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.929961]  ******* In dma_alloc_direct() function *********
[   34.935711]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.942227]  ******* In dma_alloc_direct() function *********
[   34.947962]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.954477]  ******* In dma_alloc_direct() function *********
[   34.960212]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.966728]  ******* In dma_alloc_direct() function *********
[   34.972462]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.978977]  ******* In dma_alloc_direct() function *********
[   34.984712]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   34.991231]  ******* In dma_alloc_direct() function *********
[   34.997000] xhci_hcd 0005:02:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[   35.006935] hub 5-0:1.0: USB hub found
[   35.010689] hub 5-0:1.0: 4 ports detected
[   35.014868] xhci_hcd 0005:02:00.0: xHCI Host Controller
[   35.020087] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 6
[   35.027474] xhci_hcd 0005:02:00.0: Host supports USB 3.0 SuperSpeed
[   35.033768] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[   35.041965] hub 6-0:1.0: USB hub found
[   35.045717] hub 6-0:1.0: 4 ports detected
[   35.050083] usbcore: registered new interface driver usb-storage
[   35.056932] rtc-efi rtc-efi.0: registered as rtc0
[   35.062069] rtc-efi rtc-efi.0: setting system clock to 2022-04-14T10:03:58 UTC (1649930638)
[   35.070524] sbsa-gwdt sbsa-gwdt.0: Initialized with 10s timeout @ 25000000 Hz, action=0.
[   35.078758] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[   35.088435] pstore: Registered efi as persistent store backend
[   35.094283] SMCCC: SOC_ID: ID = jep106:0a16:0001 Revision = 0x000000a1
[   35.100907] usbcore: registered new interface driver usbhid
[   35.106470] usbhid: USB HID core driver
[   35.107797]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.110322] u32 classifier
[   35.116817]  ******* In dma_alloc_direct() function *********
[   35.119508]     input device check on
[   35.125243]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.125245]  ******* In dma_alloc_direct() function *********
[   35.128896]     Actions configured
[   35.135413]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.141530] NET: Registered protocol family 10
[   35.144537]  ******* In dma_alloc_direct() function *********
[   35.144539]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.151483] Segment Routing with IPv6
[   35.155488]  ******* In dma_alloc_direct() function *********
[   35.177158] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[   35.183208] NET: Registered protocol family 17
[   35.187657] Bridge firewalling registered
[   35.191677] Key type dns_resolver registered
[   35.195972] NET: Registered protocol family 40
[   35.200499] Key type ._fscrypt registered
[   35.204505] Key type .fscrypt registered
[   35.208418] Key type fscrypt-provisioning registered
[   35.213586] Btrfs loaded, crc32c=crc32c-generic
[   35.218192] pstore: Using crash dump compression: deflate
[   35.224107] Key type encrypted registered
[   35.228364] BERT: Error records from previous boot:
[   35.233235] [Hardware Error]: event severity: recoverable
[   35.238623] [Hardware Error]:  Error 0, type: fatal
[   35.243492] [Hardware Error]:   section type: unknown, e8ed898d-df16-43cc-8ecc-54f060ef157f
[   35.251832] [Hardware Error]:   section length: 0x31
[   35.256789] [Hardware Error]:   00000000: 0000007f 6e6b6e55 206e776f 6f626572  ....Unknown rebo
[   35.259605]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.265480] [Hardware Error]:   00000010: 7220746f 6f736165 0000006e 00000000  ot reason.......
[   35.265482] [Hardware Error]:   00000020: 00000000 00000000 00000000 00000000  ................
[   35.265484] [Hardware Error]:   00000030: 11                                               .
[   35.272000]  ******* In dma_alloc_direct() function *********
[   35.272003]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.310057] usb 3-4: new high-speed USB device number 2 using xhci_hcd
[   35.316597] printk: console [netcon0] enabled
[   35.320957] netconsole: network logging started
[   35.325548] md: Waiting for all devices to be available before autodetect
[   35.332327] md: If you don't use raid, use raid=noautodetect
[   35.337976]  ******* In dma_alloc_direct() function *********
[   35.343714]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.350232] md: Autodetecting RAID arrays.
[   35.354320] md: autorun ...
[   35.357105] md: ... autorun DONE.
[   35.360449] Waiting for root device /dev/sda2...
[   35.365058]  ******* In dma_alloc_direct() function *********
[   35.370806]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.377332]  ******* In dma_alloc_direct() function *********
[   35.482347]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.488865]  ******* In dma_alloc_direct() function *********
[   35.494602]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.501119]  ******* In dma_alloc_direct() function *********
[   35.508616]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.515143] usb 6-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[   35.522183]  ******* In dma_alloc_direct() function *********
[   35.539681] hub 3-4:1.0: USB hub found
[   35.545004] hub 3-4:1.0: 5 ports detected
[   35.570419]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.576940]  ******* In dma_alloc_direct() function *********
[   35.582703]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.589219]  ******* In dma_alloc_direct() function *********
[   35.594956]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.601473]  ******* In dma_alloc_direct() function *********
[   35.607210]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.613727]  ******* In dma_alloc_direct() function *********
[   35.621127]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.627647]  ******* In dma_alloc_direct() function *********
[   35.642368] usb-storage 6-1:1.0: USB Mass Storage device detected
[   35.648603]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.655121]  ******* In dma_alloc_direct() function *********
[   35.660921] scsi host0: usb-storage 6-1:1.0
[   35.792240]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.798759]  ******* In dma_alloc_direct() function *********
[   35.804496]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.811012]  ******* In dma_alloc_direct() function *********
[   35.816747]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   35.823264]  ******* In dma_alloc_direct() function *********
[   35.915279] usb 3-4.1: new high-speed USB device number 3 using xhci_hcd
[   36.038705]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.045224]  ******* In dma_alloc_direct() function *********
[   36.050960]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.057476]  ******* In dma_alloc_direct() function *********
[   36.063213]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.069729]  ******* In dma_alloc_direct() function *********
[   36.075466]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.081982]  ******* In dma_alloc_direct() function *********
[   36.089674]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.096196]  ******* In dma_alloc_direct() function *********
[   36.115187] usb-storage 3-4.1:1.0: USB Mass Storage device detected
[   36.121585]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.128104]  ******* In dma_alloc_direct() function *********
[   36.133900] scsi host1: usb-storage 3-4.1:1.0
[   36.141475]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.147993]  ******* In dma_alloc_direct() function *********
[   36.153730]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.160247]  ******* In dma_alloc_direct() function *********
[   36.165983]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.172499]  ******* In dma_alloc_direct() function *********
[   36.267275] usb 3-4.2: new high-speed USB device number 4 using xhci_hcd
[   36.390957]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.397476]  ******* In dma_alloc_direct() function *********
[   36.403212]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.409727]  ******* In dma_alloc_direct() function *********
[   36.415464]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.421979]  ******* In dma_alloc_direct() function *********
[   36.427716]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.434232]  ******* In dma_alloc_direct() function *********
[   36.441932]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.448452]  ******* In dma_alloc_direct() function *********
[   36.463594] usb-storage 3-4.2:1.0: USB Mass Storage device detected
[   36.470063] scsi host2: usb-storage 3-4.2:1.0
[   36.477894]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.484413]  ******* In dma_alloc_direct() function *********
[   36.490149]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.496666]  ******* In dma_alloc_direct() function *********
[   36.502402]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.508918]  ******* In dma_alloc_direct() function *********
[   36.603273] usb 3-4.3: new low-speed USB device number 5 using xhci_hcd
[   36.690292] scsi 0:0:0:0: Direct-Access      USB      SanDisk 3.2Gen1 1.00 PQ: 0 ANSI: 6
[   36.702713] sd 0:0:0:0: [sda] 120176640 512-byte logical blocks: (61.5 GB/57.3 GiB)
[   36.712000] sd 0:0:0:0: [sda] Write Protect is off
[   36.720427] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   36.747321]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.748940] GPT:Primary header thinks Alt. header is not at the end of the disk.
[   36.753842]  ******* In dma_alloc_direct() function *********
[   36.761227] GPT:17181951 != 120176639
[   36.761229] GPT:Alternate GPT header not at the end of the disk.
[   36.766967]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.770614] GPT:17181951 != 120176639
[   36.770616] GPT: Use GNU Parted to correct GPT errors.
[   36.776612]  ******* In dma_alloc_direct() function *********
[   36.783132]  sda: sda1 sda2
[   36.786782]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.795069] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   36.797645]  ******* In dma_alloc_direct() function *********
[   36.797648]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.797648]  ******* In dma_alloc_direct() function *********
[   36.799735]  ******* dma_alloc_attrs() -> dma_alloc_direct() *********
[   36.836920]  ******* In dma_alloc_direct() function *********
[   36.863944] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.0/0003:046B:FF10.0001/input/input1
[   36.879802] hid-generic 0003:046B:FF10.0001: input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input0
[   36.904011] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.1/0003:046B:FF10.0002/input/input2
[   36.919861] hid-generic 0003:046B:FF10.0002: input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input1
[   36.948889] random: fast init done
[   37.169274] scsi 1:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[   37.179535] scsi 1:0:0:1: CD-ROM            AMI      Virtual CDROM1   1.00 PQ: 0 ANSI: 0 CCS
[   37.190002] scsi 1:0:0:2: CD-ROM            AMI      Virtual CDROM2   1.00 PQ: 0 ANSI: 0 CCS
[   37.198800] scsi 1:0:0:3: CD-ROM            AMI      Virtual CDROM3   1.00 PQ: 0 ANSI: 0 CCS
[   37.204898] EXT4-fs (sda2): 1 truncate cleaned up
[   37.211929] EXT4-fs (sda2): recovery complete
[   37.229238] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[   37.236906] VFS: Mounted root (ext4 filesystem) on device 8:2.
[   37.248090] devtmpfs: mounted
[   37.252690] Freeing unused kernel memory: 4160K
[   37.263396] Run /sbin/init as init process
[   37.473261] systemd[1]: systemd 249.7+ running in system mode (-PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
[   37.487928] scsi 2:0:0:0: Direct-Access     AMI      Virtual HDisk0   1.00 PQ: 0 ANSI: 0 CCS
[   37.503697] systemd[1]: Detected architecture arm64.
[   37.512107] scsi 2:0:0:1: Direct-Access     AMI      Virtual HDisk1   1.00 PQ: 0 ANSI: 0 CCS
[   37.525424] scsi 2:0:0:2: Direct-Access     AMI      Virtual HDisk2   1.00 PQ: 0 ANSI: 0 CCS
[   37.534112] scsi 2:0:0:3: Direct-Access     AMI      Virtual HDisk3   1.00 PQ: 0 ANSI: 0 CCS
[   37.536258] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[   37.542837] scsi 2:0:0:4: Direct-Access     AMI      Virtual HDisk4   1.00 PQ: 0 ANSI: 0 CCS
[   37.552349] sd 2:0:0:1: [sdc] Attached SCSI removable disk

Welcome to EWAOL (Edge Workload Abstraction and Orchestration Layer) unstab[   37.567294] sd 2:0:0:2: [sdd] Attached SCSI removable disk
le (honister)!

[   37.580008] sd 2:0:0:3: [sde] Attached SCSI removable disk
[   37.599190] systemd[1]: Hostname set to <comhpc>.
[   37.600540] sd 2:0:0:4: [sdf] Attached SCSI removable disk
[   37.647042] systemd-sysv-generator[332]: SysV service '/etc/init.d/conntrackd' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   37.671062] systemd-sysv-generator[332]: SysV service '/etc/init.d/conntrack-failover' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   37.795086] systemd[1]: /lib/systemd/system/xen-qemu-dom0-disk-backend.service:11: PIDFile= references a path below legacy directory /var/run/, updating /var/run/xen/qemu-dom0.pid → /run/xen/qemu-dom0.pid; please update the unit file accordingly.
[   37.883807] systemd[1]: Queued start job for default target Multi-User System.
[   37.891290] random: systemd: uninitialized urandom read (16 bytes read)
[   37.922741] systemd[1]: Created slice Slice /system/getty.
[  OK  ] Created slice Slice /system/getty.
[   37.943697] random: systemd: uninitialized urandom read (16 bytes read)
[   37.950943] systemd[1]: Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/modprobe.
[   37.971395] random: systemd: uninitialized urandom read (16 bytes read)
[   37.978589] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Created slice Slice /system/serial-getty.
[   38.000220] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[   38.019520] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[   38.043478] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[   38.067524] systemd[1]: Reached target Path Units.
[  OK  ] Reached target Path Units.
[   38.087376] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[   38.107337] systemd[1]: Reached target Slice Units.
[  OK  ] Reached target Slice Units.
[   38.127355] systemd[1]: Reached target Swaps.
[  OK  ] Reached target Swaps.
[   38.155861] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[   38.179447] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[   38.199652] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on Syslog Socket.
[   38.219507] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[   38.240563] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[   38.248672] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[   38.271576] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[   38.291637] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[   38.311659] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[   38.331529] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[   38.351558] systemd[1]: Listening on User Database Manager Socket.
[  OK  ] Listening on User Database Manager Socket.
[   38.372921] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[   38.392797] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[   38.415423] systemd[1]: Condition check resulted in Mount /proc/xen files being skipped.
[   38.424551] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[   38.444703] systemd[1]: Mounting Kernel Trace File System...
         Mounting Kernel Trace File System...
[   38.466948] systemd[1]: Mounting Temporary Directory /tmp...
         Mounting Temporary Directory /tmp...
[   38.487605] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped.
[   38.497835] systemd[1]: Starting Load Kernel Module configfs...
         Starting Load Kernel Module configfs...
[   38.516716] systemd[1]: Starting Load Kernel Module drm...
         Starting Load Kernel Module drm...
[   38.536667] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[   38.556880] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[   38.572795] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[   38.583724] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[   38.605531] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[   38.624539] systemd[1]: Starting Remount Root and Kernel File Systems...
[   38.630885] EXT4-fs (sda2): re-mounted. Opts: (null)
         Starting Remount Root and Kernel File Systems...
[   38.652569] systemd[1]: Starting Coldplug All udev Devices...
         Starting Coldplug All udev Devices...
[   38.673242] systemd[1]: Started RPC Bind.
[  OK  ] Started RPC Bind.
[   38.691861] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Trace File System.
[  OK  ] Mounted Temporary Directory /tmp.
[  OK  ] Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module fuse.
[FAILED] Failed to start Load Kernel Modules.
See 'systemctl status systemd-modules-load.service' for details.
[  OK  ] Finished Remount Root and Kernel File Systems.
         Mounting Kernel Configuration File System...
         Starting Flush Journal to Persistent Storage...
[   38.889130] systemd-journald[355]: Received client request to flush runtime journal.
         Starting Apply Kernel Variables...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Coldplug All udev Devices.
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Reached target Preparation for Local File Systems.
         Mounting /var/volatile...
         Starting Wait for udev To …plete Device Initialization...
         Starting Rule-based Manage…for Device Events and Files...
[  OK  ] Mounted /var/volatile.
         Starting Load/Save Random Seed...
[  OK  ] Started Rule-based Manager for Device Events and Files.
[  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
[  OK  ] Found device SanDisk_3.2Gen1 msdos.
         Mounting /boot...
[  OK  ] Mounted /boot.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Wait for udev To Complete Device Initialization.
[  OK  ] Finished Create Volatile Files and Directories.
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
         Starting Network Time Synchronization...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target System Time Set.
[  OK  ] Reached target Timer Units.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
         Starting Docker Socket for the API...
         Starting sshd.socket...
[  OK  ] Listening on Docker Socket for the API.
[  OK  ] Listening on sshd.socket.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
         Starting ACPI Event Daemon...
[  OK  ] Started Kernel Logging Service.
[  OK  ] Started System Logging Service.
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Getty on tty1.
         Starting IPv6 Packet Filtering Framework...
         Starting IPv4 Packet Filtering Framework...
         Starting Telephony service...
[  OK  ] Started Serial Getty on ttyAMA0.
[  OK  ] Reached target Login Prompts.
         Starting User Login Management...
         Starting OpenSSH Key Generation...
[  OK  ] Started ACPI Event Daemon.
[  OK  ] Finished IPv6 Packet Filtering Framework.
[  OK  ] Finished IPv4 Packet Filtering Framework.
[  OK  ] Finished OpenSSH Key Generation.
[  OK  ] Reached target Preparation for Network.
         Starting Network Configuration...
[  OK  ] Started User Login Management.
[  OK  ] Started Telephony service.
[  OK  ] Started Network Configuration.
         Starting Wait for Network to be Configured...
         Starting Network Name Resolution...
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
         Starting Avahi mDNS/DNS-SD Stack...
         Starting containerd container runtime...
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started containerd container runtime.

EWAOL (Edge Workload Abstraction and Orchestration Layer) unstable comhpc ttyAMA0

comhpc login: root
root@comhpc:~# 

[-- Attachment #4: xen_linux_boot_debug.log --]
[-- Type: application/octet-stream, Size: 147979 bytes --]

Last login: Thu Apr 14 11:03:07 on ttys001
rahsin01@C02ZX0G9LVDN x86_64 % telnet e123343.cambridge.arm.com 10020
Trying 10.1.194.25...
Connected to e123343.cambridge.arm.com.
Escape character is '^]'.

AIS target system port 10020 device /dev/ttyUSB1 [115200 N81]


FS0:\> 
FS0:\> 
FS0:\> xen.efi



































































































Xen 4.17-unstable (c/s Fri Apr 1 09:52:53 2022 +0100 git:b1dc42f14f) EFI loader
Using configuration file 'xen.cfg'
Image-xen: 0x00000000fe47c000-0x00000000ffb3f200
Using bootargs from Xen configuration file.
PROGRESS CODE: V03101019 I0
 Xen 4.17-unstable
(XEN) Xen version 4.17-unstable (rahsin01@cambridge.arm.com) (aarch64-linux-gnu-gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0) debug=y Wed Apr 13 12:48:51 BST 2022
(XEN) Latest ChangeSet: Fri Apr 1 09:52:53 2022 +0100 git:b1dc42f14f
(XEN) build-id: 583415f28947f00c86c1ed06207f379864fa7b72
(XEN) Processor: 00000000413fd0c1: "ARM Limited", variant: 0x3, part 0xd0c,rev 0x1
(XEN) 64-bit Execution:
(XEN)   Processor Features: 1100000011111112 0000000000000020
(XEN)     Exception Levels: EL3:64 EL2:64 EL1:64 EL0:64+32
(XEN)     Extensions: FloatingPoint AdvancedSIMD GICv3-SysReg
(XEN)   Debug Features: 0000000110305408 0000000000000000
(XEN)   Auxiliary Features: 0000000000000000 0000000000000000
(XEN)   Memory Model Features: 0000000000101125 0000000010212122
(XEN)   ISA Features:  0000100010211120 0000000000100001
(XEN) 32-bit Execution:
(XEN)   Processor Features: 0000000010010131:0000000010010000
(XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
(XEN)     Extensions: GenericTimer
(XEN)   Debug Features: 0000000004010088
(XEN)   Auxiliary Features: 0000000000000000
(XEN)   Memory Model Features: 0000000010201105 0000000040000000
(XEN)                          0000000001260000 0000000002122211
(XEN)   ISA Features: 0000000002101110 0000000013112111 0000000021232042
(XEN)                 0000000001112131 0000000000010142 0000000001011121
(XEN) Using SMC Calling Convention v1.2
(XEN) Using PSCI v1.1
(XEN) ACPI: GICC (acpi_id[0x1000] address[0x0] MPIDR[0x100000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1800] address[0x0] MPIDR[0x180000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1600] address[0x0] MPIDR[0x160000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1e00] address[0x0] MPIDR[0x1e0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0800] address[0x0] MPIDR[0x80000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2000] address[0x0] MPIDR[0x200000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0e00] address[0x0] MPIDR[0xe0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2600] address[0x0] MPIDR[0x260000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1100] address[0x0] MPIDR[0x110000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1900] address[0x0] MPIDR[0x190000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1700] address[0x0] MPIDR[0x170000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1f00] address[0x0] MPIDR[0x1f0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0900] address[0x0] MPIDR[0x90000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2100] address[0x0] MPIDR[0x210000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0f00] address[0x0] MPIDR[0xf0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2700] address[0x0] MPIDR[0x270000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1001] address[0x0] MPIDR[0x100100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1801] address[0x0] MPIDR[0x180100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1601] address[0x0] MPIDR[0x160100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1e01] address[0x0] MPIDR[0x1e0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0801] address[0x0] MPIDR[0x80100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2001] address[0x0] MPIDR[0x200100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0e01] address[0x0] MPIDR[0xe0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2601] address[0x0] MPIDR[0x260100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1101] address[0x0] MPIDR[0x110100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1901] address[0x0] MPIDR[0x190100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1701] address[0x0] MPIDR[0x170100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1f01] address[0x0] MPIDR[0x1f0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0901] address[0x0] MPIDR[0x90100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2101] address[0x0] MPIDR[0x210100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0f01] address[0x0] MPIDR[0xf0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2701] address[0x0] MPIDR[0x270100] enabled)
(XEN) 32 CPUs enabled, 32 CPUs total
(XEN) SMP: Allowing 32 CPUs
(XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 25000 KHz
(XEN) GICv3 initialization:
(XEN)       gic_dist_addr=0x00100100000000
(XEN)       gic_maintenance_irq=25
(XEN)       gic_rdist_stride=0
(XEN)       gic_rdist_regions=1
(XEN)       redistributor regions:
(XEN)         - region 0: 0x00100100140000 - 0x00100101140000
(XEN) GICv3: using at most 57344 LPIs on the host.
(XEN) GICv3: 704 lines, (IID 0201743b).
(XEN) GICv3: Found ITS @0x100100040000
(XEN) GICv3: Found ITS @0x100100060000
(XEN) GICv3: Found ITS @0x100100080000
(XEN) GICv3: Found ITS @0x1001000a0000
(XEN) GICv3: Found ITS @0x1001000c0000
(XEN) GICv3: Found ITS @0x1001000e0000
(XEN) GICv3: Found ITS @0x100100100000
(XEN) GICv3: Found ITS @0x100100120000
(XEN) GICv3: CPU0: Found redistributor in region 0 @0000000040434000
(XEN) XSM Framework v1.0.1 initialized
(XEN) Initialising XSM SILO mode
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Defaulting to alternative key handling; send 'A' to switch to normal mode.
(XEN) Allocated console ring of 256 KiB.
(XEN) CPU0: Guest atomics will try 17 times before pausing the domain
(XEN) Bringing up CPU1
(XEN) GICv3: CPU1: Found redistributor in region 0 @0000000040634000
(XEN) CPU1: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 1 booted.
(XEN) Bringing up CPU2
(XEN) GICv3: CPU2: Found redistributor in region 0 @00000000405b4000
(XEN) CPU2: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 2 booted.
(XEN) Bringing up CPU3
(XEN) GICv3: CPU3: Found redistributor in region 0 @00000000407b4000
(XEN) CPU3: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 3 booted.
(XEN) Bringing up CPU4
(XEN) GICv3: CPU4: Found redistributor in region 0 @0000000040234000
(XEN) CPU4: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 4 booted.
(XEN) Bringing up CPU5
(XEN) GICv3: CPU5: Found redistributor in region 0 @0000000040834000
(XEN) CPU5: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 5 booted.
(XEN) Bringing up CPU6
(XEN) GICv3: CPU6: Found redistributor in region 0 @00000000403b4000
(XEN) CPU6: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 6 booted.
(XEN) Bringing up CPU7
(XEN) GICv3: CPU7: Found redistributor in region 0 @00000000409b4000
(XEN) CPU7: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 7 booted.
(XEN) Bringing up CPU8
(XEN) GICv3: CPU8: Found redistributor in region 0 @0000000040474000
(XEN) CPU8: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 8 booted.
(XEN) Bringing up CPU9
(XEN) GICv3: CPU9: Found redistributor in region 0 @0000000040674000
(XEN) CPU9: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 9 booted.
(XEN) Bringing up CPU10
(XEN) GICv3: CPU10: Found redistributor in region 0 @00000000405f4000
(XEN) CPU10: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 10 booted.
(XEN) Bringing up CPU11
(XEN) GICv3: CPU11: Found redistributor in region 0 @00000000407f4000
(XEN) CPU11: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 11 booted.
(XEN) Bringing up CPU12
(XEN) GICv3: CPU12: Found redistributor in region 0 @0000000040274000
(XEN) CPU12: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 12 booted.
(XEN) Bringing up CPU13
(XEN) GICv3: CPU13: Found redistributor in region 0 @0000000040874000
(XEN) CPU13: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 13 booted.
(XEN) Bringing up CPU14
(XEN) GICv3: CPU14: Found redistributor in region 0 @00000000403f4000
(XEN) CPU14: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 14 booted.
(XEN) Bringing up CPU15
(XEN) GICv3: CPU15: Found redistributor in region 0 @00000000409f4000
(XEN) CPU15: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 15 booted.
(XEN) Bringing up CPU16
(XEN) GICv3: CPU16: Found redistributor in region 0 @0000000040454000
(XEN) CPU16: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 16 booted.
(XEN) Bringing up CPU17
(XEN) GICv3: CPU17: Found redistributor in region 0 @0000000040654000
(XEN) CPU17: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 17 booted.
(XEN) Bringing up CPU18
(XEN) GICv3: CPU18: Found redistributor in region 0 @00000000405d4000
(XEN) CPU18: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 18 booted.
(XEN) Bringing up CPU19
(XEN) GICv3: CPU19: Found redistributor in region 0 @00000000407d4000
(XEN) CPU19: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 19 booted.
(XEN) Bringing up CPU20
(XEN) GICv3: CPU20: Found redistributor in region 0 @0000000040254000
(XEN) CPU20: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 20 booted.
(XEN) Bringing up CPU21
(XEN) GICv3: CPU21: Found redistributor in region 0 @0000000040854000
(XEN) CPU21: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 21 booted.
(XEN) Bringing up CPU22
(XEN) GICv3: CPU22: Found redistributor in region 0 @00000000403d4000
(XEN) CPU22: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 22 booted.
(XEN) Bringing up CPU23
(XEN) GICv3: CPU23: Found redistributor in region 0 @00000000409d4000
(XEN) CPU23: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 23 booted.
(XEN) Bringing up CPU24
(XEN) GICv3: CPU24: Found redistributor in region 0 @0000000040494000
(XEN) CPU24: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 24 booted.
(XEN) Bringing up CPU25
(XEN) GICv3: CPU25: Found redistributor in region 0 @0000000040694000
(XEN) CPU25: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 25 booted.
(XEN) Bringing up CPU26
(XEN) GICv3: CPU26: Found redistributor in region 0 @0000000040614000
(XEN) CPU26: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 26 booted.
(XEN) Bringing up CPU27
(XEN) GICv3: CPU27: Found redistributor in region 0 @0000000040814000
(XEN) CPU27: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 27 booted.
(XEN) Bringing up CPU28
(XEN) GICv3: CPU28: Found redistributor in region 0 @0000000040294000
(XEN) CPU28: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 28 booted.
(XEN) Bringing up CPU29
(XEN) GICv3: CPU29: Found redistributor in region 0 @0000000040894000
(XEN) CPU29: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 29 booted.
(XEN) Bringing up CPU30
(XEN) GICv3: CPU30: Found redistributor in region 0 @0000000040414000
(XEN) CPU30: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 30 booted.
(XEN) Bringing up CPU31
(XEN) GICv3: CPU31: Found redistributor in region 0 @0000000040a14000
(XEN) CPU31: Guest atomics will try 18 times before pausing the domain
(XEN) Brought up 32 CPUs
(XEN) CPU 31 booted.
(XEN) I/O virtualisation disabled
(XEN) P2M: 48-bit IPA with 48-bit PA and 16-bit VMID
(XEN) P2M: 4 levels with order-0 root, VTCR 0x00000000800d3590
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Adding cpu 0 to runqueue 0
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 1 to runqueue 0
(XEN) Adding cpu 2 to runqueue 0
(XEN) Adding cpu 3 to runqueue 0
(XEN) Adding cpu 4 to runqueue 0
(XEN) Adding cpu 5 to runqueue 0
(XEN) Adding cpu 6 to runqueue 0
(XEN) Adding cpu 7 to runqueue 0
(XEN) Adding cpu 8 to runqueue 0
(XEN) Adding cpu 9 to runqueue 0
(XEN) Adding cpu 10 to runqueue 0
(XEN) Adding cpu 11 to runqueue 0
(XEN) Adding cpu 12 to runqueue 0
(XEN) Adding cpu 13 to runqueue 0
(XEN) Adding cpu 14 to runqueue 0
(XEN) Adding cpu 15 to runqueue 0
(XEN) Adding cpu 16 to runqueue 1
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 17 to runqueue 1
(XEN) Adding cpu 18 to runqueue 1
(XEN) Adding cpu 19 to runqueue 1
(XEN) Adding cpu 20 to runqueue 1
(XEN) Adding cpu 21 to runqueue 1
(XEN) Adding cpu 22 to runqueue 1
(XEN) Adding cpu 23 to runqueue 1
(XEN) Adding cpu 24 to runqueue 1
(XEN) Adding cpu 25 to runqueue 1
(XEN) Adding cpu 26 to runqueue 1
(XEN) Adding cpu 27 to runqueue 1
(XEN) Adding cpu 28 to runqueue 1
(XEN) Adding cpu 29 to runqueue 1
(XEN) Adding cpu 30 to runqueue 1
(XEN) Adding cpu 31 to runqueue 1
(XEN) alternatives: Patching with alt table 00000000002f0b20 -> 00000000002f1420
(XEN) CPU0 will use 24 loops workaround on exception entry
(XEN) CPU16 will use 24 loops workaround on exception entry
(XEN) CPU22 will use 24 loops workaround on exception entry
(XEN) CPU8 will use 24 loops workaround on exception entry
(XEN) CPU6 will use 24 loops workaround on exception entry
(XEN) CPU24 will use 24 loops workaround on exception entry
(XEN) CPU2 will use 24 loops workaround on exception entry
(XEN) CPU23 will use 24 loops workaround on exception entry
(XEN) CPU18 will use 24 loops workaround on exception entry
(XEN) CPU7 will use 24 loops workaround on exception entry
(XEN) CPU14 will use 24 loops workaround on exception entry
(XEN) CPU21 will use 24 loops workaround on exception entry
(XEN) CPU30 will use 24 loops workaround on exception entry
(XEN) CPU5 will use 24 loops workaround on exception entry
(XEN) CPU19 will use 24 loops workaround on exception entry
(XEN) CPU13 will use 24 loops workaround on exception entry
(XEN) CPU3 will use 24 loops workaround on exception entry
(XEN) CPU29 will use 24 loops workaround on exception entry
(XEN) CPU20 will use 24 loops workaround on exception entry
(XEN) CPU17 will use 24 loops workaround on exception entry
(XEN) CPU15 will use 24 loops workaround on exception entry
(XEN) CPU1 will use 24 loops workaround on exception entry
(XEN) CPU11 will use 24 loops workaround on exception entry
(XEN) CPU31 will use 24 loops workaround on exception entry
(XEN) CPU12 will use 24 loops workaround on exception entry
(XEN) CPU25 will use 24 loops workaround on exception entry
(XEN) CPU28 will use 24 loops workaround on exception entry
(XEN) CPU9 will use 24 loops workaround on exception entry
(XEN) CPU10 will use 24 loops workaround on exception entry
(XEN) CPU4 will use 24 loops workaround on exception entry
(XEN) CPU26 will use 24 loops workaround on exception entry
(XEN) CPU27 will use 24 loops workaround on exception entry
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Loading d0 kernel from boot module @ 00000000fe47c000
(XEN) Allocating 1:1 mappings totalling 24576MB for dom0:
(XEN) BANK[0] 0x00000098000000-0x000000f8000000 (1536MB)
(XEN) BANK[1] 0x00080000000000-0x00080080000000 (2048MB)
(XEN) BANK[2] 0x00080280000000-0x000807a0000000 (20992MB)
(XEN) Grant table range: 0x000807f6d3f000-0x000807f6d7f000
(XEN) Allocating PPI 16 for event channel interrupt
(XEN) Loading zImage from 00000000fe47c000 to 0000000098000000-00000000996c3200
(XEN) Loading d0 DTB to 0x00000000a0000000-0x00000000a000028b
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: Errors
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 412kB init memory.
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER24
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER28
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER32
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER36
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER40
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER44
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER48
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER52
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER56
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER60
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER64
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER68
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER72
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER76
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER80
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER84
(XEN) d0v0: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard+ (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] Xen XEN_VERSION.XEN_SUBVERSION support found
[    0.000000] efi: EFI v2.50 by Xen
[    0.000000] efi: ACPI 2.0=0x807f6d3fce8 
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807F6D3FCE8 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807F6D3FC38 0000AC (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807F6D3F000 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807F6D3F118 000AF4 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: STAO 0x00000807F6D3FC10 000025 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x8079cfdee00-0x8079cfe0fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000098000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807fa0dffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000098000000-0x00000000f7ffffff]
[    0.000000]   node   0: [mem 0x0000080000000000-0x000008007fffffff]
[    0.000000]   node   0: [mem 0x0000080280000000-0x000008079fffffff]
[    0.000000]   node   0: [mem 0x00000807f6d3f000-0x00000807f6d3ffff]
[    0.000000]   node   0: [mem 0x00000807f8db0000-0x00000807f8ddffff]
[    0.000000]   node   0: [mem 0x00000807fa0d0000-0x00000807fa0dffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000098000000-0x00000807fa0dffff]
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 31 pages/cpu s89240 r8192 d29544 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: ARM erratum 1418040
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 6193215
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: swiotlb=65536 console=hvc0 earlycon=xen rootwait root=PARTUUID=6a60524d-061d-454a-bfd1-38989910eccd
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.000000] printk: log_buf_len min size: 131072 bytes
[    0.000000] printk: log_buf_len: 262144 bytes
[    0.000000] printk: early log buf free: 125928(96%)
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000f0000000-0x00000000f8000000] (128MB)
[    0.000000] Memory: 24480216K/25166084K available (13568K kernel code, 1996K rwdata, 3476K rodata, 4160K init, 822K bss, 685868K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 41306 entries in 162 pages
[    0.000000] ftrace: allocated 162 pages with 3 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=32.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: 672 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000100100140000
[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 3 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 4 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 5 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 6 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 7 -> Node 0
[    0.000000] ITS [mem 0x100100040000-0x10010005ffff]
[    0.000000] ITS@0x0000100100040000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100040000: allocated 524288 Devices @80000800000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100040000: allocated 32768 Interrupt Collections @80000220000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100060000-0x10010007ffff]
[    0.000000] ITS@0x0000100100060000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100060000: allocated 524288 Devices @80000c00000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100060000: allocated 32768 Interrupt Collections @80000240000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100080000-0x10010009ffff]
[    0.000000] ITS@0x0000100100080000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100080000: allocated 524288 Devices @80001000000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100080000: allocated 32768 Interrupt Collections @80000260000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000a0000-0x1001000bffff]
[    0.000000] ITS@0x00001001000a0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000a0000: allocated 524288 Devices @80001400000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000a0000: allocated 32768 Interrupt Collections @80000280000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000c0000-0x1001000dffff]
[    0.000000] ITS@0x00001001000c0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000c0000: allocated 524288 Devices @80001800000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000c0000: allocated 32768 Interrupt Collections @800002a0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000e0000-0x1001000fffff]
[    0.000000] ITS@0x00001001000e0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000e0000: allocated 524288 Devices @80001c00000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000e0000: allocated 32768 Interrupt Collections @800002c0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100100000-0x10010011ffff]
[    0.000000] ITS@0x0000100100100000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100100000: allocated 524288 Devices @80002000000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100100000: allocated 32768 Interrupt Collections @800002e0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100120000-0x10010013ffff]
[    0.000000] ITS@0x0000100100120000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100120000: allocated 524288 Devices @80002400000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100120000: allocated 32768 Interrupt Collections @80000300000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: CPU: 0 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:2247 its_init+0x398/0x690
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 5.10.27-ampere-lts-standard+ #1
[    0.000000] pstate: 60000085 (nZCv daIf -PAN -UAO -TCO BTYPE=--)
[    0.000000] pc : its_init+0x398/0x690
[    0.000000] lr : its_init+0x394/0x690
[    0.000000] sp : ffff8000114d3c50
[    0.000000] x29: ffff8000114d3c50 x28: 0000000000000000 
[    0.000000] x27: ffff8000114dc9c0 x26: ffff07ff801e5500 
[    0.000000] x25: 0000000000000000 x24: ffff08071cc0a0c0 
[    0.000000] x23: ffff800011622350 x22: ffff07ff8011b600 
[    0.000000] x21: ffff8000114dc9c0 x20: ffff800011622000 
[    0.000000] x19: ffff8000117689f8 x18: ffffffffffffffff 
[    0.000000] x17: 0000000000000000 x16: 000000000000001f 
[    0.000000] x15: ffff07ff8020471d x14: 0000000000000058 
[    0.000000] x13: 00000000000000c0 x12: 0000000000000000 
[    0.000000] x11: 0000000000000010 x10: ffff08071cad2000 
[    0.000000] x9 : ffff800010d35c90 x8 : ffff07ff80320000 
[    0.000000] x7 : a2a2a2a2a2a2a2a2 x6 : ffff000000000000 
[    0.000000] x5 : fffffdffffe00000 x4 : ffff8000114dc9c0 
[    0.000000] x3 : ffff8000114ddaf0 x2 : 000000000000003d 
[    0.000000] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    0.000000] Call trace:
[    0.000000]  its_init+0x398/0x690
[    0.000000]  gic_init_bases+0x524/0x584
[    0.000000]  gic_acpi_init+0x134/0x278
[    0.000000]  acpi_match_madt+0x50/0x88
[    0.000000]  acpi_table_parse_entries_array+0x164/0x24c
[    0.000000]  acpi_table_parse_entries+0x48/0x70
[    0.000000]  acpi_table_parse_madt+0x34/0x40
[    0.000000]  __acpi_probe_device_table+0x90/0xec
[    0.000000]  irqchip_init+0x40/0x4c
[    0.000000]  init_IRQ+0xd0/0x104
[    0.000000]  start_kernel+0x354/0x554
[    0.000000] random: get_random_bytes called from __warn+0x128/0x1c0 with crng_init=0
[    0.000000] ---[ end trace 0000000000000000 ]---
[    0.000000] GICv3: using LPI property table @0x0000080000310000
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: CPU: 0 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    0.000000] pstate: 60000085 (nZCv daIf -PAN -UAO -TCO BTYPE=--)
[    0.000000] pc : its_cpu_init+0x824/0xb20
[    0.000000] lr : its_cpu_init+0x820/0xb20
[    0.000000] sp : ffff8000114d3c80
[    0.000000] x29: ffff8000114d3c80 x28: 0000000000000000 
[    0.000000] x27: 0000000000000001 x26: ffff800012000070 
[    0.000000] x25: fffffe1ffde0c800 x24: ffff800012000000 
[    0.000000] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    0.000000] x21: ffff8000117689f8 x20: ffff800011622350 
[    0.000000] x19: ffff800011622000 x18: ffffffffffffffff 
[    0.000000] x17: 0000000000000000 x16: 000000000000001f 
[    0.000000] x15: ffff8000914d3967 x14: 0000000000000058 
[    0.000000] x13: 00000000000000c0 x12: 0000000000000000 
[    0.000000] x11: 0000000000000010 x10: 000000000000000c 
[    0.000000] x9 : ffff800010d35c90 x8 : 0000000000000000 
[    0.000000] x7 : ffff08071cfdfbc0 x6 : 0000000000000003 
[    0.000000] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    0.000000] x3 : 0000000000000010 x2 : 000000000000ffff 
[    0.000000] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    0.000000] Call trace:
[    0.000000]  its_cpu_init+0x824/0xb20
[    0.000000]  gic_init_bases+0x528/0x584
[    0.000000]  gic_acpi_init+0x134/0x278
[    0.000000]  acpi_match_madt+0x50/0x88
[    0.000000]  acpi_table_parse_entries_array+0x164/0x24c
[    0.000000]  acpi_table_parse_entries+0x48/0x70
[    0.000000]  acpi_table_parse_madt+0x34/0x40
[    0.000000]  __acpi_probe_device_table+0x90/0xec
[    0.000000]  irqchip_init+0x40/0x4c
[    0.000000]  init_IRQ+0xd0/0x104
[    0.000000]  start_kernel+0x354/0x554
[    0.000000] ---[ end trace f68728a0d3053b52 ]---
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000080000320000
[    0.000000] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.000000] ACPI GTDT: found 1 memory-mapped timer block(s).
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 25.00MHz (virt/phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000001] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000055] Console: colour dummy device 80x25
[    1.273499] printk: console [hvc0] enabled
[    1.277686] ACPI: Core revision 20200925
[    1.281996] ACPI BIOS Warning (bug): Incorrect checksum in table [IORT] - 0xF2, should be 0x0B (20200925/tbprint-173)
[    1.292580] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    1.302920] pid_max: default: 32768 minimum: 301
[    1.307634] LSM: Security Framework initializing
[    1.312418] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.320014] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.328350] ACPI PPTT: PPTT table found, but unable to locate core 2 (2)
[    1.335357] xen:grant_table: Grant tables using version 1 layout
[    1.341278] Grant table initialized
[    1.344846] xen:events: Using FIFO-based ABI
[    1.349174] Xen: initializing cpu0
[    1.352665] rcu: Hierarchical SRCU implementation.
[    1.357636] Platform MSI: ITS@0x100100040000 domain created
[    1.363144] Platform MSI: ITS@0x100100060000 domain created
[    1.368807] Platform MSI: ITS@0x100100080000 domain created
[    1.374433] Platform MSI: ITS@0x1001000a0000 domain created
[    1.380065] Platform MSI: ITS@0x1001000c0000 domain created
[    1.385706] Platform MSI: ITS@0x1001000e0000 domain created
[    1.391348] Platform MSI: ITS@0x100100100000 domain created
[    1.396990] Platform MSI: ITS@0x100100120000 domain created
[    1.402636] PCI/MSI: ITS@0x100100040000 domain created
[    1.407842] PCI/MSI: ITS@0x100100060000 domain created
[    1.413049] PCI/MSI: ITS@0x100100080000 domain created
[    1.418260] PCI/MSI: ITS@0x1001000a0000 domain created
[    1.423466] PCI/MSI: ITS@0x1001000c0000 domain created
[    1.428677] PCI/MSI: ITS@0x1001000e0000 domain created
[    1.433882] PCI/MSI: ITS@0x100100100000 domain created
[    1.439093] PCI/MSI: ITS@0x100100120000 domain created
[    1.444302] EFI runtime services access via paravirt.
[    1.449761] smp: Bringing up secondary CPUs ...
(XEN) d0v1: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v2: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v3: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v4: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v5: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v6: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v7: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v8: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v9: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v10: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v11: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v12: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v13: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v14: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v15: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v16: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v17: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v18: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v19: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v20: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v21: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v22: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v23: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v24: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v25: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v26: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v27: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v28: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v29: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v30: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v31: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    1.454407] Detected PIPT I-cache on CPU1
[    1.454433] GICv3: CPU1: found redistributor 1 region 0:0x0000100100160000
[    1.460967] ------------[ cut here ]------------
[    1.460972] WARNING: CPU: 1 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.460972] Modules linked in:
[    1.460977] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.460979] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.460980] pc : its_cpu_init+0x824/0xb20
[    1.460982] lr : its_cpu_init+0x820/0xb20
[    1.460983] sp : ffff800011a3be80
[    1.460984] x29: ffff800011a3be80 x28: 0000000000000001 
[    1.460986] x27: 0000000000000000 x26: ffff800012020070 
[    1.460988] x25: fffffe1ffde0cc00 x24: ffff800012020000 
[    1.460990] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.460992] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.460994] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.460996] x17: 0000000000000000 x16: 0000000000000000 
[    1.460998] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.461000] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.461002] x11: 0000000000000000 x10: 0000000000000001 
[    1.461004] x9 : ffff8000106d64f0 x8 : 3030303036313030 
[    1.461006] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.461008] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.461010] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.461012] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.461014] Call trace:
[    1.461015]  its_cpu_init+0x824/0xb20
[    1.461019]  gic_starting_cpu+0x48/0x90
[    1.461021]  cpuhp_invoke_callback+0xa4/0x460
[    1.461023]  notify_cpu_starting+0xa0/0xe0
[    1.461026]  secondary_start_kernel+0xe8/0x190
[    1.461027] ---[ end trace f68728a0d3053b53 ]---
[    1.461033] GICv3: CPU1: using allocated LPI pending table @0x0000080000330000
[    1.461099] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.461108] Xen: initializing cpu1
[    1.461132] CPU1: Booted secondary processor 0x0000000001 [0x413fd0c1]
[    1.461423] Detected PIPT I-cache on CPU2
[    1.461452] GICv3: CPU2: found redistributor 2 region 0:0x0000100100180000
[    1.467991] ------------[ cut here ]------------
[    1.467997] WARNING: CPU: 2 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.467999] Modules linked in:
[    1.468004] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.468006] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.468008] pc : its_cpu_init+0x824/0xb20
[    1.468009] lr : its_cpu_init+0x820/0xb20
[    1.468011] sp : ffff800011a43e80
[    1.468012] x29: ffff800011a43e80 x28: 0000000000000002 
[    1.468014] x27: 0000000000000000 x26: ffff800012040070 
[    1.468017] x25: fffffe1ffde0d000 x24: ffff800012040000 
[    1.468019] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.468021] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.468023] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.468025] x17: 0000000000000000 x16: 0000000000000000 
[    1.468026] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.468028] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.468030] x11: 0000000000000000 x10: 0000000000000001 
[    1.468032] x9 : ffff8000106d64f0 x8 : 3030303038313030 
[    1.468035] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.468037] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.468038] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.468040] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.468043] Call trace:
[    1.468044]  its_cpu_init+0x824/0xb20
[    1.468048]  gic_starting_cpu+0x48/0x90
[    1.468052]  cpuhp_invoke_callback+0xa4/0x460
[    1.468054]  notify_cpu_starting+0xa0/0xe0
[    1.468057]  secondary_start_kernel+0xe8/0x190
[    1.468058] ---[ end trace f68728a0d3053b54 ]---
[    1.468065] GICv3: CPU2: using allocated LPI pending table @0x0000080000340000
[    1.468142] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.468155] Xen: initializing cpu2
[    1.468181] CPU2: Booted secondary processor 0x0000000002 [0x413fd0c1]
[    1.468460] Detected PIPT I-cache on CPU3
[    1.468488] GICv3: CPU3: found redistributor 3 region 0:0x00001001001a0000
[    1.475022] ------------[ cut here ]------------
[    1.475027] WARNING: CPU: 3 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.475028] Modules linked in:
[    1.475032] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.475034] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.475036] pc : its_cpu_init+0x824/0xb20
[    1.475038] lr : its_cpu_init+0x820/0xb20
[    1.475039] sp : ffff800011a4be80
[    1.475040] x29: ffff800011a4be80 x28: 0000000000000003 
[    1.475042] x27: 0000000000000000 x26: ffff800012060070 
[    1.475044] x25: fffffe1ffde0d400 x24: ffff800012060000 
[    1.475046] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.475048] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.475050] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.475052] x17: 0000000000000000 x16: 0000000000000000 
[    1.475055] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.475057] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.475058] x11: 0000000000000000 x10: 0000000000000001 
[    1.475060] x9 : ffff8000106d64f0 x8 : 3030303061313030 
[    1.475062] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.475064] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.475066] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.475068] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.475070] Call trace:
[    1.475072]  its_cpu_init+0x824/0xb20
[    1.475075]  gic_starting_cpu+0x48/0x90
[    1.475077]  cpuhp_invoke_callback+0xa4/0x460
[    1.475079]  notify_cpu_starting+0xa0/0xe0
[    1.475082]  secondary_start_kernel+0xe8/0x190
[    1.475083] ---[ end trace f68728a0d3053b55 ]---
[    1.475089] GICv3: CPU3: using allocated LPI pending table @0x0000080000350000
[    1.475159] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.475167] Xen: initializing cpu3
[    1.475190] CPU3: Booted secondary processor 0x0000000003 [0x413fd0c1]
[    1.475467] Detected PIPT I-cache on CPU4
[    1.475498] GICv3: CPU4: found redistributor 4 region 0:0x00001001001c0000
[    1.482033] ------------[ cut here ]------------
[    1.482037] WARNING: CPU: 4 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.482038] Modules linked in:
[    1.482042] CPU: 4 PID: 0 Comm: swapper/4 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.482044] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.482046] pc : its_cpu_init+0x824/0xb20
[    1.482047] lr : its_cpu_init+0x820/0xb20
[    1.482048] sp : ffff800011a53e80
[    1.482050] x29: ffff800011a53e80 x28: 0000000000000004 
[    1.482052] x27: 0000000000000000 x26: ffff800012080070 
[    1.482054] x25: fffffe1ffde0d800 x24: ffff800012080000 
[    1.482056] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.482058] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.482060] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.482061] x17: 0000000000000000 x16: 0000000000000000 
[    1.482063] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.482065] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.482067] x11: 0000000000000000 x10: 0000000000000001 
[    1.482069] x9 : ffff8000106d64f0 x8 : 3030303063313030 
[    1.482071] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.482073] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.482075] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.482077] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.482079] Call trace:
[    1.482081]  its_cpu_init+0x824/0xb20
[    1.482084]  gic_starting_cpu+0x48/0x90
[    1.482087]  cpuhp_invoke_callback+0xa4/0x460
[    1.482089]  notify_cpu_starting+0xa0/0xe0
[    1.482091]  secondary_start_kernel+0xe8/0x190
[    1.482092] ---[ end trace f68728a0d3053b56 ]---
[    1.482099] GICv3: CPU4: using allocated LPI pending table @0x0000080000360000
[    1.482174] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.482183] Xen: initializing cpu4
[    1.482207] CPU4: Booted secondary processor 0x0000000004 [0x413fd0c1]
[    1.482546] Detected PIPT I-cache on CPU5
[    1.482578] GICv3: CPU5: found redistributor 5 region 0:0x00001001001e0000
[    1.489113] ------------[ cut here ]------------
[    1.489118] WARNING: CPU: 5 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.489119] Modules linked in:
[    1.489123] CPU: 5 PID: 0 Comm: swapper/5 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.489125] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.489127] pc : its_cpu_init+0x824/0xb20
[    1.489129] lr : its_cpu_init+0x820/0xb20
[    1.489130] sp : ffff800011a5be80
[    1.489131] x29: ffff800011a5be80 x28: 0000000000000005 
[    1.489133] x27: 0000000000000000 x26: ffff8000120a0070 
[    1.489135] x25: fffffe1ffde0dc00 x24: ffff8000120a0000 
[    1.489137] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.489139] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.489141] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.489143] x17: 0000000000000000 x16: 0000000000000000 
[    1.489145] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.489147] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.489149] x11: 0000000000000000 x10: 0000000000000001 
[    1.489151] x9 : ffff8000106d64f0 x8 : 3030303065313030 
[    1.489153] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.489155] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.489157] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.489159] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.489161] Call trace:
[    1.489163]  its_cpu_init+0x824/0xb20
[    1.489166]  gic_starting_cpu+0x48/0x90
[    1.489168]  cpuhp_invoke_callback+0xa4/0x460
[    1.489170]  notify_cpu_starting+0xa0/0xe0
[    1.489173]  secondary_start_kernel+0xe8/0x190
[    1.489174] ---[ end trace f68728a0d3053b57 ]---
[    1.489181] GICv3: CPU5: using allocated LPI pending table @0x0000080000370000
[    1.489252] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.489261] Xen: initializing cpu5
[    1.489284] CPU5: Booted secondary processor 0x0000000005 [0x413fd0c1]
[    1.489664] Detected PIPT I-cache on CPU6
[    1.489700] GICv3: CPU6: found redistributor 6 region 0:0x0000100100200000
[    1.496237] ------------[ cut here ]------------
[    1.496241] WARNING: CPU: 6 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.496242] Modules linked in:
[    1.496246] CPU: 6 PID: 0 Comm: swapper/6 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.496248] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.496250] pc : its_cpu_init+0x824/0xb20
[    1.496251] lr : its_cpu_init+0x820/0xb20
[    1.496252] sp : ffff800011a63e80
[    1.496254] x29: ffff800011a63e80 x28: 0000000000000006 
[    1.496256] x27: 0000000000000000 x26: ffff8000120c0070 
[    1.496258] x25: fffffe1ffde0e000 x24: ffff8000120c0000 
[    1.496260] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.496263] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.496265] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.496267] x17: 0000000000000000 x16: 0000000000000000 
[    1.496268] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.496270] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.496272] x11: 0000000000000000 x10: 0000000000000001 
[    1.496274] x9 : ffff8000106d64f0 x8 : 3030303030323030 
[    1.496276] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.496278] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.496280] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.496282] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.496284] Call trace:
[    1.496285]  its_cpu_init+0x824/0xb20
[    1.496288]  gic_starting_cpu+0x48/0x90
[    1.496291]  cpuhp_invoke_callback+0xa4/0x460
[    1.496293]  notify_cpu_starting+0xa0/0xe0
[    1.496295]  secondary_start_kernel+0xe8/0x190
[    1.496296] ---[ end trace f68728a0d3053b58 ]---
[    1.496303] GICv3: CPU6: using allocated LPI pending table @0x0000080000380000
[    1.496379] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.496388] Xen: initializing cpu6
[    1.496413] CPU6: Booted secondary processor 0x0000000006 [0x413fd0c1]
[    1.496783] Detected PIPT I-cache on CPU7
[    1.496821] GICv3: CPU7: found redistributor 7 region 0:0x0000100100220000
[    1.503356] ------------[ cut here ]------------
[    1.503360] WARNING: CPU: 7 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.503361] Modules linked in:
[    1.503366] CPU: 7 PID: 0 Comm: swapper/7 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.503368] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.503370] pc : its_cpu_init+0x824/0xb20
[    1.503371] lr : its_cpu_init+0x820/0xb20
[    1.503372] sp : ffff800011a6be80
[    1.503373] x29: ffff800011a6be80 x28: 0000000000000007 
[    1.503375] x27: 0000000000000000 x26: ffff8000120e0070 
[    1.503377] x25: fffffe1ffde0e400 x24: ffff8000120e0000 
[    1.503379] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.503381] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.503383] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.503385] x17: 0000000000000000 x16: 0000000000000000 
[    1.503387] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.503389] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.503391] x11: 0000000000000000 x10: 0000000000000001 
[    1.503393] x9 : ffff8000106d64f0 x8 : 3030303032323030 
[    1.503394] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.503396] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.503398] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.503400] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.503402] Call trace:
[    1.503404]  its_cpu_init+0x824/0xb20
[    1.503407]  gic_starting_cpu+0x48/0x90
[    1.503409]  cpuhp_invoke_callback+0xa4/0x460
[    1.503411]  notify_cpu_starting+0xa0/0xe0
[    1.503414]  secondary_start_kernel+0xe8/0x190
[    1.503415] ---[ end trace f68728a0d3053b59 ]---
[    1.503422] GICv3: CPU7: using allocated LPI pending table @0x0000080000390000
[    1.503491] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.503500] Xen: initializing cpu7
[    1.503523] CPU7: Booted secondary processor 0x0000000007 [0x413fd0c1]
[    1.503794] Detected PIPT I-cache on CPU8
[    1.503834] GICv3: CPU8: found redistributor 8 region 0:0x0000100100240000
[    1.510370] ------------[ cut here ]------------
[    1.510375] WARNING: CPU: 8 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.510376] Modules linked in:
[    1.510379] CPU: 8 PID: 0 Comm: swapper/8 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.510382] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.510383] pc : its_cpu_init+0x824/0xb20
[    1.510385] lr : its_cpu_init+0x820/0xb20
[    1.510386] sp : ffff800011a73e80
[    1.510387] x29: ffff800011a73e80 x28: 0000000000000008 
[    1.510389] x27: 0000000000000000 x26: ffff800012100070 
[    1.510392] x25: fffffe1ffde0e800 x24: ffff800012100000 
[    1.510394] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.510396] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.510397] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.510399] x17: 0000000000000000 x16: 0000000000000000 
[    1.510401] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.510403] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.510405] x11: 0000000000000000 x10: 0000000000000001 
[    1.510407] x9 : ffff8000106d64f0 x8 : 3030303034323030 
[    1.510409] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.510411] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.510413] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.510415] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.510417] Call trace:
[    1.510419]  its_cpu_init+0x824/0xb20
[    1.510421]  gic_starting_cpu+0x48/0x90
[    1.510424]  cpuhp_invoke_callback+0xa4/0x460
[    1.510426]  notify_cpu_starting+0xa0/0xe0
[    1.510428]  secondary_start_kernel+0xe8/0x190
[    1.510430] ---[ end trace f68728a0d3053b5a ]---
[    1.510436] GICv3: CPU8: using allocated LPI pending table @0x00000800003a0000
[    1.510512] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.510521] Xen: initializing cpu8
[    1.510547] CPU8: Booted secondary processor 0x0000000008 [0x413fd0c1]
[    1.510830] Detected PIPT I-cache on CPU9
[    1.510873] GICv3: CPU9: found redistributor 9 region 0:0x0000100100260000
[    1.517409] ------------[ cut here ]------------
[    1.517414] WARNING: CPU: 9 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.517415] Modules linked in:
[    1.517419] CPU: 9 PID: 0 Comm: swapper/9 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.517421] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.517423] pc : its_cpu_init+0x824/0xb20
[    1.517424] lr : its_cpu_init+0x820/0xb20
[    1.517425] sp : ffff800011a7be80
[    1.517426] x29: ffff800011a7be80 x28: 0000000000000009 
[    1.517428] x27: 0000000000000000 x26: ffff800012120070 
[    1.517431] x25: fffffe1ffde0ec00 x24: ffff800012120000 
[    1.517433] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.517435] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.517437] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.517439] x17: 0000000000000000 x16: 0000000000000000 
[    1.517441] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.517443] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.517444] x11: 0000000000000000 x10: 0000000000000001 
[    1.517446] x9 : ffff8000106d64f0 x8 : 3030303036323030 
[    1.517448] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.517450] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.517452] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.517454] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.517457] Call trace:
[    1.517458]  its_cpu_init+0x824/0xb20
[    1.517461]  gic_starting_cpu+0x48/0x90
[    1.517464]  cpuhp_invoke_callback+0xa4/0x460
[    1.517466]  notify_cpu_starting+0xa0/0xe0
[    1.517469]  secondary_start_kernel+0xe8/0x190
[    1.517470] ---[ end trace f68728a0d3053b5b ]---
[    1.517476] GICv3: CPU9: using allocated LPI pending table @0x00000800003b0000
[    1.517546] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.517555] Xen: initializing cpu9
[    1.517579] CPU9: Booted secondary processor 0x0000000009 [0x413fd0c1]
[    1.517927] Detected PIPT I-cache on CPU10
[    1.517973] GICv3: CPU10: found redistributor a region 0:0x0000100100280000
[    1.524596] ------------[ cut here ]------------
[    1.524600] WARNING: CPU: 10 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.524601] Modules linked in:
[    1.524605] CPU: 10 PID: 0 Comm: swapper/10 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.524607] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.524609] pc : its_cpu_init+0x824/0xb20
[    1.524610] lr : its_cpu_init+0x820/0xb20
[    1.524611] sp : ffff800011a83e80
[    1.524613] x29: ffff800011a83e80 x28: 000000000000000a 
[    1.524615] x27: 0000000000000000 x26: ffff800012140070 
[    1.524617] x25: fffffe1ffde0f000 x24: ffff800012140000 
[    1.524619] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.524621] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.524624] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.524625] x17: 0000000000000000 x16: 0000000000000000 
[    1.524627] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.524629] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.524631] x11: 0000000000000000 x10: 0000000000000001 
[    1.524633] x9 : ffff8000106d64f0 x8 : 3030303832303031 
[    1.524635] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.524637] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.524639] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.524640] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.524643] Call trace:
[    1.524644]  its_cpu_init+0x824/0xb20
[    1.524647]  gic_starting_cpu+0x48/0x90
[    1.524650]  cpuhp_invoke_callback+0xa4/0x460
[    1.524652]  notify_cpu_starting+0xa0/0xe0
[    1.524654]  secondary_start_kernel+0xe8/0x190
[    1.524656] ---[ end trace f68728a0d3053b5c ]---
[    1.524662] GICv3: CPU10: using allocated LPI pending table @0x00000800003c0000
[    1.524738] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.524748] Xen: initializing cpu10
[    1.524773] CPU10: Booted secondary processor 0x000000000a [0x413fd0c1]
[    1.525125] Detected PIPT I-cache on CPU11
[    1.525171] GICv3: CPU11: found redistributor b region 0:0x00001001002a0000
[    1.531794] ------------[ cut here ]------------
[    1.531798] WARNING: CPU: 11 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.531800] Modules linked in:
[    1.531804] CPU: 11 PID: 0 Comm: swapper/11 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.531806] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.531808] pc : its_cpu_init+0x824/0xb20
[    1.531809] lr : its_cpu_init+0x820/0xb20
[    1.531810] sp : ffff800011a8be80
[    1.531811] x29: ffff800011a8be80 x28: 000000000000000b 
[    1.531814] x27: 0000000000000000 x26: ffff800012160070 
[    1.531816] x25: fffffe1ffde0f400 x24: ffff800012160000 
[    1.531818] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.531820] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.531822] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.531824] x17: 0000000000000000 x16: 0000000000000000 
[    1.531826] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.531828] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.531830] x11: 0000000000000000 x10: 0000000000000001 
[    1.531832] x9 : ffff8000106d64f0 x8 : 3030306132303031 
[    1.531833] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.531835] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.531837] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.531839] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.531841] Call trace:
[    1.531843]  its_cpu_init+0x824/0xb20
[    1.531846]  gic_starting_cpu+0x48/0x90
[    1.531849]  cpuhp_invoke_callback+0xa4/0x460
[    1.531851]  notify_cpu_starting+0xa0/0xe0
[    1.531853]  secondary_start_kernel+0xe8/0x190
[    1.531855] ---[ end trace f68728a0d3053b5d ]---
[    1.531862] GICv3: CPU11: using allocated LPI pending table @0x00000800003d0000
[    1.531931] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.531941] Xen: initializing cpu11
[    1.531965] CPU11: Booted secondary processor 0x000000000b [0x413fd0c1]
[    1.532309] Detected PIPT I-cache on CPU12
[    1.532360] GICv3: CPU12: found redistributor c region 0:0x00001001002c0000
[    1.538982] ------------[ cut here ]------------
[    1.538987] WARNING: CPU: 12 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.538987] Modules linked in:
[    1.538991] CPU: 12 PID: 0 Comm: swapper/12 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.538994] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.538995] pc : its_cpu_init+0x824/0xb20
[    1.538997] lr : its_cpu_init+0x820/0xb20
[    1.538998] sp : ffff800011a93e80
[    1.538999] x29: ffff800011a93e80 x28: 000000000000000c 
[    1.539001] x27: 0000000000000000 x26: ffff800012180070 
[    1.539003] x25: fffffe1ffde0f800 x24: ffff800012180000 
[    1.539005] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.539007] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.539009] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.539011] x17: 0000000000000000 x16: 0000000000000000 
[    1.539013] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.539015] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.539017] x11: 0000000000000000 x10: 0000000000000001 
[    1.539019] x9 : ffff8000106d64f0 x8 : 3030306332303031 
[    1.539021] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.539023] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.539025] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.539027] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.539029] Call trace:
[    1.539031]  its_cpu_init+0x824/0xb20
[    1.539034]  gic_starting_cpu+0x48/0x90
[    1.539036]  cpuhp_invoke_callback+0xa4/0x460
[    1.539038]  notify_cpu_starting+0xa0/0xe0
[    1.539041]  secondary_start_kernel+0xe8/0x190
[    1.539042] ---[ end trace f68728a0d3053b5e ]---
[    1.539048] GICv3: CPU12: using allocated LPI pending table @0x00000800003e0000
[    1.539125] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.539134] Xen: initializing cpu12
[    1.539160] CPU12: Booted secondary processor 0x000000000c [0x413fd0c1]
[    1.539432] Detected PIPT I-cache on CPU13
[    1.539483] GICv3: CPU13: found redistributor d region 0:0x00001001002e0000
[    1.546106] ------------[ cut here ]------------
[    1.546111] WARNING: CPU: 13 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.546112] Modules linked in:
[    1.546117] CPU: 13 PID: 0 Comm: swapper/13 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.546119] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.546121] pc : its_cpu_init+0x824/0xb20
[    1.546122] lr : its_cpu_init+0x820/0xb20
[    1.546123] sp : ffff800011a9be80
[    1.546124] x29: ffff800011a9be80 x28: 000000000000000d 
[    1.546127] x27: 0000000000000000 x26: ffff8000121a0070 
[    1.546129] x25: fffffe1ffde0fc00 x24: ffff8000121a0000 
[    1.546131] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.546133] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.546135] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.546137] x17: 0000000000000000 x16: 0000000000000000 
[    1.546139] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.546141] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.546143] x11: 0000000000000000 x10: 0000000000000001 
[    1.546145] x9 : ffff8000106d64f0 x8 : 3030306532303031 
[    1.546147] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.546149] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.546150] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.546152] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.546154] Call trace:
[    1.546156]  its_cpu_init+0x824/0xb20
[    1.546159]  gic_starting_cpu+0x48/0x90
[    1.546162]  cpuhp_invoke_callback+0xa4/0x460
[    1.546164]  notify_cpu_starting+0xa0/0xe0
[    1.546167]  secondary_start_kernel+0xe8/0x190
[    1.546168] ---[ end trace f68728a0d3053b5f ]---
[    1.546175] GICv3: CPU13: using allocated LPI pending table @0x00000800003f0000
[    1.546245] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.546254] Xen: initializing cpu13
[    1.546279] CPU13: Booted secondary processor 0x000000000d [0x413fd0c1]
[    1.546657] Detected PIPT I-cache on CPU14
[    1.546712] GICv3: CPU14: found redistributor e region 0:0x0000100100300000
[    1.553335] ------------[ cut here ]------------
[    1.553340] WARNING: CPU: 14 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.553341] Modules linked in:
[    1.553345] CPU: 14 PID: 0 Comm: swapper/14 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.553347] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.553349] pc : its_cpu_init+0x824/0xb20
[    1.553350] lr : its_cpu_init+0x820/0xb20
[    1.553351] sp : ffff800011aa3e80
[    1.553352] x29: ffff800011aa3e80 x28: 000000000000000e 
[    1.553354] x27: 0000000000000000 x26: ffff8000121c0070 
[    1.553356] x25: fffffe1ffdea0000 x24: ffff8000121c0000 
[    1.553358] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.553360] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.553362] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.553364] x17: 0000000000000000 x16: 0000000000000000 
[    1.553366] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.553368] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.553370] x11: 0000000000000000 x10: 0000000000000001 
[    1.553372] x9 : ffff8000106d64f0 x8 : 3030303033303031 
[    1.553374] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.553376] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.553378] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.553380] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.553382] Call trace:
[    1.553384]  its_cpu_init+0x824/0xb20
[    1.553386]  gic_starting_cpu+0x48/0x90
[    1.553389]  cpuhp_invoke_callback+0xa4/0x460
[    1.553390]  notify_cpu_starting+0xa0/0xe0
[    1.553393]  secondary_start_kernel+0xe8/0x190
[    1.553394] ---[ end trace f68728a0d3053b60 ]---
[    1.553401] GICv3: CPU14: using allocated LPI pending table @0x0000080002800000
[    1.553477] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.553486] Xen: initializing cpu14
[    1.553512] CPU14: Booted secondary processor 0x000000000e [0x413fd0c1]
[    1.553888] Detected PIPT I-cache on CPU15
[    1.553944] GICv3: CPU15: found redistributor f region 0:0x0000100100320000
[    1.560568] ------------[ cut here ]------------
[    1.560573] WARNING: CPU: 15 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.560574] Modules linked in:
[    1.560578] CPU: 15 PID: 0 Comm: swapper/15 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.560580] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.560582] pc : its_cpu_init+0x824/0xb20
[    1.560583] lr : its_cpu_init+0x820/0xb20
[    1.560584] sp : ffff800011aabe80
[    1.560585] x29: ffff800011aabe80 x28: 000000000000000f 
[    1.560587] x27: 0000000000000000 x26: ffff8000121e0070 
[    1.560589] x25: fffffe1ffdea0400 x24: ffff8000121e0000 
[    1.560591] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.560593] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.560595] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.560597] x17: 0000000000000000 x16: 0000000000000000 
[    1.560599] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.560601] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.560603] x11: 0000000000000000 x10: 0000000000000001 
[    1.560605] x9 : ffff8000106d64f0 x8 : 3030303233303031 
[    1.560607] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.560608] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.560610] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.560612] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.560614] Call trace:
[    1.560616]  its_cpu_init+0x824/0xb20
[    1.560619]  gic_starting_cpu+0x48/0x90
[    1.560622]  cpuhp_invoke_callback+0xa4/0x460
[    1.560624]  notify_cpu_starting+0xa0/0xe0
[    1.560626]  secondary_start_kernel+0xe8/0x190
[    1.560628] ---[ end trace f68728a0d3053b61 ]---
[    1.560635] GICv3: CPU15: using allocated LPI pending table @0x0000080002810000
[    1.560704] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.560714] Xen: initializing cpu15
[    1.560738] CPU15: Booted secondary processor 0x000000000f [0x413fd0c1]
[    1.561099] Detected PIPT I-cache on CPU16
[    1.561159] GICv3: CPU16: found redistributor 100 region 0:0x0000100100340000
[    1.567782] ------------[ cut here ]------------
[    1.567786] WARNING: CPU: 16 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.567787] Modules linked in:
[    1.567791] CPU: 16 PID: 0 Comm: swapper/16 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.567793] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.567795] pc : its_cpu_init+0x824/0xb20
[    1.567797] lr : its_cpu_init+0x820/0xb20
[    1.567798] sp : ffff800011ab3e80
[    1.567799] x29: ffff800011ab3e80 x28: 0000000000000010 
[    1.567801] x27: 0000000000000000 x26: ffff800012200070 
[    1.567803] x25: fffffe1ffdea0800 x24: ffff800012200000 
[    1.567805] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.567807] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.567809] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.567811] x17: 0000000000000000 x16: 0000000000000000 
[    1.567813] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.567815] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.567817] x11: 0000000000000000 x10: 0000000000000001 
[    1.567819] x9 : ffff8000106d64f0 x8 : 3034333030313030 
[    1.567821] x7 : 313030303078303a x6 : 0000000000000003 
[    1.567823] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.567825] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.567826] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.567828] Call trace:
[    1.567830]  its_cpu_init+0x824/0xb20
[    1.567833]  gic_starting_cpu+0x48/0x90
[    1.567835]  cpuhp_invoke_callback+0xa4/0x460
[    1.567837]  notify_cpu_starting+0xa0/0xe0
[    1.567840]  secondary_start_kernel+0xe8/0x190
[    1.567841] ---[ end trace f68728a0d3053b62 ]---
[    1.567847] GICv3: CPU16: using allocated LPI pending table @0x0000080002820000
[    1.567923] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.567932] Xen: initializing cpu16
[    1.567958] CPU16: Booted secondary processor 0x0000000100 [0x413fd0c1]
[    1.568305] Detected PIPT I-cache on CPU17
[    1.568366] GICv3: CPU17: found redistributor 101 region 0:0x0000100100360000
[    1.574989] ------------[ cut here ]------------
[    1.574995] WARNING: CPU: 17 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.574996] Modules linked in:
[    1.575000] CPU: 17 PID: 0 Comm: swapper/17 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.575002] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.575004] pc : its_cpu_init+0x824/0xb20
[    1.575006] lr : its_cpu_init+0x820/0xb20
[    1.575007] sp : ffff800011abbe80
[    1.575008] x29: ffff800011abbe80 x28: 0000000000000011 
[    1.575010] x27: 0000000000000000 x26: ffff800012220070 
[    1.575013] x25: fffffe1ffdea0c00 x24: ffff800012220000 
[    1.575014] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.575016] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.575018] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.575020] x17: 0000000000000000 x16: 0000000000000000 
[    1.575022] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.575024] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.575026] x11: 0000000000000000 x10: 0000000000000001 
[    1.575028] x9 : ffff8000106d64f0 x8 : 3036333030313030 
[    1.575030] x7 : 313030303078303a x6 : 0000000000000003 
[    1.575032] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.575034] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.575035] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.575038] Call trace:
[    1.575039]  its_cpu_init+0x824/0xb20
[    1.575042]  gic_starting_cpu+0x48/0x90
[    1.575045]  cpuhp_invoke_callback+0xa4/0x460
[    1.575047]  notify_cpu_starting+0xa0/0xe0
[    1.575050]  secondary_start_kernel+0xe8/0x190
[    1.575051] ---[ end trace f68728a0d3053b63 ]---
[    1.575057] GICv3: CPU17: using allocated LPI pending table @0x0000080002830000
[    1.575127] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.575136] Xen: initializing cpu17
[    1.575161] CPU17: Booted secondary processor 0x0000000101 [0x413fd0c1]
[    1.575425] Detected PIPT I-cache on CPU18
[    1.575490] GICv3: CPU18: found redistributor 102 region 0:0x0000100100380000
[    1.582114] ------------[ cut here ]------------
[    1.582118] WARNING: CPU: 18 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.582119] Modules linked in:
[    1.582123] CPU: 18 PID: 0 Comm: swapper/18 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.582125] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.582127] pc : its_cpu_init+0x824/0xb20
[    1.582128] lr : its_cpu_init+0x820/0xb20
[    1.582129] sp : ffff800011ac3e80
[    1.582130] x29: ffff800011ac3e80 x28: 0000000000000012 
[    1.582132] x27: 0000000000000000 x26: ffff800012240070 
[    1.582135] x25: fffffe1ffdea1000 x24: ffff800012240000 
[    1.582137] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.582138] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.582141] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.582143] x17: 0000000000000000 x16: 0000000000000000 
[    1.582144] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.582146] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.582148] x11: 0000000000000000 x10: 0000000000000001 
[    1.582150] x9 : ffff8000106d64f0 x8 : 3038333030313030 
[    1.582152] x7 : 313030303078303a x6 : 0000000000000003 
[    1.582154] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.582156] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.582158] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.582160] Call trace:
[    1.582162]  its_cpu_init+0x824/0xb20
[    1.582165]  gic_starting_cpu+0x48/0x90
[    1.582167]  cpuhp_invoke_callback+0xa4/0x460
[    1.582169]  notify_cpu_starting+0xa0/0xe0
[    1.582172]  secondary_start_kernel+0xe8/0x190
[    1.582173] ---[ end trace f68728a0d3053b64 ]---
[    1.582180] GICv3: CPU18: using allocated LPI pending table @0x0000080002840000
[    1.582255] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.582265] Xen: initializing cpu18
[    1.582291] CPU18: Booted secondary processor 0x0000000102 [0x413fd0c1]
[    1.582654] Detected PIPT I-cache on CPU19
[    1.582720] GICv3: CPU19: found redistributor 103 region 0:0x00001001003a0000
[    1.589343] ------------[ cut here ]------------
[    1.589348] WARNING: CPU: 19 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.589349] Modules linked in:
[    1.589353] CPU: 19 PID: 0 Comm: swapper/19 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.589356] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.589357] pc : its_cpu_init+0x824/0xb20
[    1.589359] lr : its_cpu_init+0x820/0xb20
[    1.589360] sp : ffff800011acbe80
[    1.589361] x29: ffff800011acbe80 x28: 0000000000000013 
[    1.589363] x27: 0000000000000000 x26: ffff800012260070 
[    1.589365] x25: fffffe1ffdea1400 x24: ffff800012260000 
[    1.589367] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.589369] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.589371] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.589373] x17: 0000000000000000 x16: 0000000000000000 
[    1.589375] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.589377] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.589379] x11: 0000000000000000 x10: 0000000000000001 
[    1.589381] x9 : ffff8000106d64f0 x8 : 3061333030313030 
[    1.589383] x7 : 313030303078303a x6 : 0000000000000003 
[    1.589385] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.589387] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.589389] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.589391] Call trace:
[    1.589392]  its_cpu_init+0x824/0xb20
[    1.589395]  gic_starting_cpu+0x48/0x90
[    1.589398]  cpuhp_invoke_callback+0xa4/0x460
[    1.589400]  notify_cpu_starting+0xa0/0xe0
[    1.589403]  secondary_start_kernel+0xe8/0x190
[    1.589404] ---[ end trace f68728a0d3053b65 ]---
[    1.589410] GICv3: CPU19: using allocated LPI pending table @0x0000080002850000
[    1.589481] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.589490] Xen: initializing cpu19
[    1.589515] CPU19: Booted secondary processor 0x0000000103 [0x413fd0c1]
[    1.589892] Detected PIPT I-cache on CPU20
[    1.589961] GICv3: CPU20: found redistributor 104 region 0:0x00001001003c0000
[    1.596585] ------------[ cut here ]------------
[    1.596589] WARNING: CPU: 20 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.596590] Modules linked in:
[    1.596594] CPU: 20 PID: 0 Comm: swapper/20 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.596596] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.596598] pc : its_cpu_init+0x824/0xb20
[    1.596600] lr : its_cpu_init+0x820/0xb20
[    1.596601] sp : ffff800011ad3e80
[    1.596602] x29: ffff800011ad3e80 x28: 0000000000000014 
[    1.596604] x27: 0000000000000000 x26: ffff800012280070 
[    1.596606] x25: fffffe1ffdea1800 x24: ffff800012280000 
[    1.596609] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.596611] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.596613] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.596615] x17: 0000000000000000 x16: 0000000000000000 
[    1.596617] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.596619] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.596621] x11: 0000000000000000 x10: 0000000000000001 
[    1.596623] x9 : ffff8000106d64f0 x8 : 3063333030313030 
[    1.596625] x7 : 313030303078303a x6 : 0000000000000003 
[    1.596627] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.596629] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.596631] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.596633] Call trace:
[    1.596635]  its_cpu_init+0x824/0xb20
[    1.596637]  gic_starting_cpu+0x48/0x90
[    1.596640]  cpuhp_invoke_callback+0xa4/0x460
[    1.596642]  notify_cpu_starting+0xa0/0xe0
[    1.596644]  secondary_start_kernel+0xe8/0x190
[    1.596646] ---[ end trace f68728a0d3053b66 ]---
[    1.596652] GICv3: CPU20: using allocated LPI pending table @0x0000080002860000
[    1.596730] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.596739] Xen: initializing cpu20
[    1.596768] CPU20: Booted secondary processor 0x0000000104 [0x413fd0c1]
[    1.597117] Detected PIPT I-cache on CPU21
[    1.597187] GICv3: CPU21: found redistributor 105 region 0:0x00001001003e0000
[    1.603811] ------------[ cut here ]------------
[    1.603815] WARNING: CPU: 21 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.603817] Modules linked in:
[    1.603821] CPU: 21 PID: 0 Comm: swapper/21 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.603823] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.603825] pc : its_cpu_init+0x824/0xb20
[    1.603826] lr : its_cpu_init+0x820/0xb20
[    1.603827] sp : ffff800011adbe80
[    1.603828] x29: ffff800011adbe80 x28: 0000000000000015 
[    1.603831] x27: 0000000000000000 x26: ffff8000122a0070 
[    1.603833] x25: fffffe1ffdea1c00 x24: ffff8000122a0000 
[    1.603835] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.603837] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.603839] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.603841] x17: 0000000000000000 x16: 0000000000000000 
[    1.603843] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.603845] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.603847] x11: 0000000000000000 x10: 0000000000000001 
[    1.603849] x9 : ffff8000106d64f0 x8 : 3065333030313030 
[    1.603851] x7 : 313030303078303a x6 : 0000000000000003 
[    1.603853] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.603854] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.603856] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.603858] Call trace:
[    1.603860]  its_cpu_init+0x824/0xb20
[    1.603864]  gic_starting_cpu+0x48/0x90
[    1.603866]  cpuhp_invoke_callback+0xa4/0x460
[    1.603868]  notify_cpu_starting+0xa0/0xe0
[    1.603871]  secondary_start_kernel+0xe8/0x190
[    1.603873] ---[ end trace f68728a0d3053b67 ]---
[    1.603879] GICv3: CPU21: using allocated LPI pending table @0x0000080002870000
[    1.603948] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.603957] Xen: initializing cpu21
[    1.603982] CPU21: Booted secondary processor 0x0000000105 [0x413fd0c1]
[    1.604251] Detected PIPT I-cache on CPU22
[    1.604325] GICv3: CPU22: found redistributor 106 region 0:0x0000100100400000
[    1.610949] ------------[ cut here ]------------
[    1.610954] WARNING: CPU: 22 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.610955] Modules linked in:
[    1.610959] CPU: 22 PID: 0 Comm: swapper/22 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.610961] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.610962] pc : its_cpu_init+0x824/0xb20
[    1.610964] lr : its_cpu_init+0x820/0xb20
[    1.610965] sp : ffff800011ae3e80
[    1.610966] x29: ffff800011ae3e80 x28: 0000000000000016 
[    1.610968] x27: 0000000000000000 x26: ffff8000122c0070 
[    1.610970] x25: fffffe1ffdea2000 x24: ffff8000122c0000 
[    1.610972] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.610974] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.610976] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.610978] x17: 0000000000000000 x16: 0000000000000000 
[    1.610979] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.610981] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.610983] x11: 0000000000000000 x10: 0000000000000001 
[    1.610985] x9 : ffff8000106d64f0 x8 : 3030343030313030 
[    1.610987] x7 : 313030303078303a x6 : 0000000000000003 
[    1.610989] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.610990] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.610992] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.610995] Call trace:
[    1.610996]  its_cpu_init+0x824/0xb20
[    1.610999]  gic_starting_cpu+0x48/0x90
[    1.611002]  cpuhp_invoke_callback+0xa4/0x460
[    1.611004]  notify_cpu_starting+0xa0/0xe0
[    1.611006]  secondary_start_kernel+0xe8/0x190
[    1.611007] ---[ end trace f68728a0d3053b68 ]---
[    1.611014] GICv3: CPU22: using allocated LPI pending table @0x0000080002880000
[    1.611090] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.611099] Xen: initializing cpu22
[    1.611128] CPU22: Booted secondary processor 0x0000000106 [0x413fd0c1]
[    1.611392] Detected PIPT I-cache on CPU23
[    1.611468] GICv3: CPU23: found redistributor 107 region 0:0x0000100100420000
[    1.618092] ------------[ cut here ]------------
[    1.618097] WARNING: CPU: 23 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.618098] Modules linked in:
[    1.618102] CPU: 23 PID: 0 Comm: swapper/23 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.618105] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.618106] pc : its_cpu_init+0x824/0xb20
[    1.618108] lr : its_cpu_init+0x820/0xb20
[    1.618109] sp : ffff800011aebe80
[    1.618110] x29: ffff800011aebe80 x28: 0000000000000017 
[    1.618112] x27: 0000000000000000 x26: ffff8000122e0070 
[    1.618114] x25: fffffe1ffdea2400 x24: ffff8000122e0000 
[    1.618116] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.618118] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.618120] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.618122] x17: 0000000000000000 x16: 0000000000000000 
[    1.618124] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.618126] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.618127] x11: 0000000000000000 x10: 0000000000000001 
[    1.618130] x9 : ffff8000106d64f0 x8 : 3032343030313030 
[    1.618132] x7 : 313030303078303a x6 : 0000000000000003 
[    1.618133] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.618135] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.618137] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.618139] Call trace:
[    1.618141]  its_cpu_init+0x824/0xb20
[    1.618144]  gic_starting_cpu+0x48/0x90
[    1.618147]  cpuhp_invoke_callback+0xa4/0x460
[    1.618149]  notify_cpu_starting+0xa0/0xe0
[    1.618151]  secondary_start_kernel+0xe8/0x190
[    1.618152] ---[ end trace f68728a0d3053b69 ]---
[    1.618159] GICv3: CPU23: using allocated LPI pending table @0x0000080002890000
[    1.618228] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.618237] Xen: initializing cpu23
[    1.618263] CPU23: Booted secondary processor 0x0000000107 [0x413fd0c1]
[    1.618634] Detected PIPT I-cache on CPU24
[    1.618714] GICv3: CPU24: found redistributor 108 region 0:0x0000100100440000
[    1.625338] ------------[ cut here ]------------
[    1.625343] WARNING: CPU: 24 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.625345] Modules linked in:
[    1.625349] CPU: 24 PID: 0 Comm: swapper/24 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.625351] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.625353] pc : its_cpu_init+0x824/0xb20
[    1.625354] lr : its_cpu_init+0x820/0xb20
[    1.625355] sp : ffff800011af3e80
[    1.625356] x29: ffff800011af3e80 x28: 0000000000000018 
[    1.625359] x27: 0000000000000000 x26: ffff800012300070 
[    1.625361] x25: fffffe1ffdea2800 x24: ffff800012300000 
[    1.625364] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.625365] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.625367] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.625369] x17: 0000000000000000 x16: 0000000000000000 
[    1.625371] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.625373] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.625375] x11: 0000000000000000 x10: 0000000000000001 
[    1.625377] x9 : ffff8000106d64f0 x8 : 3034343030313030 
[    1.625379] x7 : 313030303078303a x6 : 0000000000000003 
[    1.625381] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.625383] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.625385] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.625387] Call trace:
[    1.625389]  its_cpu_init+0x824/0xb20
[    1.625391]  gic_starting_cpu+0x48/0x90
[    1.625394]  cpuhp_invoke_callback+0xa4/0x460
[    1.625396]  notify_cpu_starting+0xa0/0xe0
[    1.625398]  secondary_start_kernel+0xe8/0x190
[    1.625400] ---[ end trace f68728a0d3053b6a ]---
[    1.625406] GICv3: CPU24: using allocated LPI pending table @0x00000800028a0000
[    1.625482] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.625491] Xen: initializing cpu24
[    1.625520] CPU24: Booted secondary processor 0x0000000108 [0x413fd0c1]
[    1.625887] Detected PIPT I-cache on CPU25
[    1.625967] GICv3: CPU25: found redistributor 109 region 0:0x0000100100460000
[    1.632592] ------------[ cut here ]------------
[    1.632597] WARNING: CPU: 25 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.632599] Modules linked in:
[    1.632603] CPU: 25 PID: 0 Comm: swapper/25 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.632605] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.632607] pc : its_cpu_init+0x824/0xb20
[    1.632608] lr : its_cpu_init+0x820/0xb20
[    1.632609] sp : ffff800011afbe80
[    1.632610] x29: ffff800011afbe80 x28: 0000000000000019 
[    1.632613] x27: 0000000000000000 x26: ffff800012320070 
[    1.632615] x25: fffffe1ffdea2c00 x24: ffff800012320000 
[    1.632617] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.632619] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.632621] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.632623] x17: 0000000000000000 x16: 0000000000000000 
[    1.632625] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.632627] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.632629] x11: 0000000000000000 x10: 0000000000000001 
[    1.632631] x9 : ffff8000106d64f0 x8 : 3036343030313030 
[    1.632633] x7 : 313030303078303a x6 : 0000000000000003 
[    1.632635] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.632637] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.632639] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.632641] Call trace:
[    1.632642]  its_cpu_init+0x824/0xb20
[    1.632645]  gic_starting_cpu+0x48/0x90
[    1.632648]  cpuhp_invoke_callback+0xa4/0x460
[    1.632650]  notify_cpu_starting+0xa0/0xe0
[    1.632653]  secondary_start_kernel+0xe8/0x190
[    1.632654] ---[ end trace f68728a0d3053b6b ]---
[    1.632661] GICv3: CPU25: using allocated LPI pending table @0x00000800028b0000
[    1.632731] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.632740] Xen: initializing cpu25
[    1.632766] CPU25: Booted secondary processor 0x0000000109 [0x413fd0c1]
[    1.633120] Detected PIPT I-cache on CPU26
[    1.633200] GICv3: CPU26: found redistributor 10a region 0:0x0000100100480000
[    1.639821] ------------[ cut here ]------------
[    1.639825] WARNING: CPU: 26 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.639826] Modules linked in:
[    1.639830] CPU: 26 PID: 0 Comm: swapper/26 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.639832] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.639834] pc : its_cpu_init+0x824/0xb20
[    1.639836] lr : its_cpu_init+0x820/0xb20
[    1.639837] sp : ffff800011b03e80
[    1.639838] x29: ffff800011b03e80 x28: 000000000000001a 
[    1.639840] x27: 0000000000000000 x26: ffff800012340070 
[    1.639842] x25: fffffe1ffdea3000 x24: ffff800012340000 
[    1.639844] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.639847] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.639849] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.639851] x17: 0000000000000000 x16: 0000000000000000 
[    1.639853] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.639855] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.639857] x11: 0000000000000000 x10: 0000000000000001 
[    1.639858] x9 : ffff8000106d64f0 x8 : 3038343030313030 
[    1.639860] x7 : 313030303078303a x6 : 0000000000000003 
[    1.639862] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.639864] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.639866] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.639868] Call trace:
[    1.639870]  its_cpu_init+0x824/0xb20
[    1.639873]  gic_starting_cpu+0x48/0x90
[    1.639875]  cpuhp_invoke_callback+0xa4/0x460
[    1.639877]  notify_cpu_starting+0xa0/0xe0
[    1.639880]  secondary_start_kernel+0xe8/0x190
[    1.639881] ---[ end trace f68728a0d3053b6c ]---
[    1.639887] GICv3: CPU26: using allocated LPI pending table @0x00000800028c0000
[    1.639966] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.639975] Xen: initializing cpu26
[    1.640004] CPU26: Booted secondary processor 0x000000010a [0x413fd0c1]
[    1.640268] Detected PIPT I-cache on CPU27
[    1.640352] GICv3: CPU27: found redistributor 10b region 0:0x00001001004a0000
[    1.646977] ------------[ cut here ]------------
[    1.646981] WARNING: CPU: 27 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.646982] Modules linked in:
[    1.646986] CPU: 27 PID: 0 Comm: swapper/27 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.646988] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.646990] pc : its_cpu_init+0x824/0xb20
[    1.646992] lr : its_cpu_init+0x820/0xb20
[    1.646992] sp : ffff800011b0be80
[    1.646993] x29: ffff800011b0be80 x28: 000000000000001b 
[    1.646996] x27: 0000000000000000 x26: ffff800012360070 
[    1.646998] x25: fffffe1ffdea3400 x24: ffff800012360000 
[    1.647000] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.647002] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.647004] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.647006] x17: 0000000000000000 x16: 0000000000000000 
[    1.647008] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.647010] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.647012] x11: 0000000000000000 x10: 0000000000000001 
[    1.647014] x9 : ffff8000106d64f0 x8 : 3061343030313030 
[    1.647016] x7 : 313030303078303a x6 : 0000000000000003 
[    1.647017] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.647020] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.647021] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.647024] Call trace:
[    1.647025]  its_cpu_init+0x824/0xb20
[    1.647028]  gic_starting_cpu+0x48/0x90
[    1.647031]  cpuhp_invoke_callback+0xa4/0x460
[    1.647033]  notify_cpu_starting+0xa0/0xe0
[    1.647035]  secondary_start_kernel+0xe8/0x190
[    1.647036] ---[ end trace f68728a0d3053b6d ]---
[    1.647043] GICv3: CPU27: using allocated LPI pending table @0x00000800028d0000
[    1.647112] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.647122] Xen: initializing cpu27
[    1.647148] CPU27: Booted secondary processor 0x000000010b [0x413fd0c1]
[    1.647411] Detected PIPT I-cache on CPU28
[    1.647500] GICv3: CPU28: found redistributor 10c region 0:0x00001001004c0000
[    1.654125] ------------[ cut here ]------------
[    1.654129] WARNING: CPU: 28 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.654130] Modules linked in:
[    1.654134] CPU: 28 PID: 0 Comm: swapper/28 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.654137] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.654138] pc : its_cpu_init+0x824/0xb20
[    1.654140] lr : its_cpu_init+0x820/0xb20
[    1.654141] sp : ffff800011b13e80
[    1.654142] x29: ffff800011b13e80 x28: 000000000000001c 
[    1.654145] x27: 0000000000000000 x26: ffff800012380070 
[    1.654147] x25: fffffe1ffdea3800 x24: ffff800012380000 
[    1.654149] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.654151] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.654153] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.654155] x17: 0000000000000000 x16: 0000000000000000 
[    1.654157] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.654159] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.654161] x11: 0000000000000000 x10: 0000000000000001 
[    1.654163] x9 : ffff8000106d64f0 x8 : 3063343030313030 
[    1.654165] x7 : 313030303078303a x6 : 0000000000000003 
[    1.654166] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.654168] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.654170] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.654172] Call trace:
[    1.654174]  its_cpu_init+0x824/0xb20
[    1.654177]  gic_starting_cpu+0x48/0x90
[    1.654179]  cpuhp_invoke_callback+0xa4/0x460
[    1.654182]  notify_cpu_starting+0xa0/0xe0
[    1.654184]  secondary_start_kernel+0xe8/0x190
[    1.654186] ---[ end trace f68728a0d3053b6e ]---
[    1.654192] GICv3: CPU28: using allocated LPI pending table @0x00000800028e0000
[    1.654270] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.654279] Xen: initializing cpu28
[    1.654309] CPU28: Booted secondary processor 0x000000010c [0x413fd0c1]
[    1.654681] Detected PIPT I-cache on CPU29
[    1.654772] GICv3: CPU29: found redistributor 10d region 0:0x00001001004e0000
[    1.661397] ------------[ cut here ]------------
[    1.661402] WARNING: CPU: 29 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.661402] Modules linked in:
[    1.661406] CPU: 29 PID: 0 Comm: swapper/29 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.661408] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.661410] pc : its_cpu_init+0x824/0xb20
[    1.661412] lr : its_cpu_init+0x820/0xb20
[    1.661413] sp : ffff800011b1be80
[    1.661414] x29: ffff800011b1be80 x28: 000000000000001d 
[    1.661416] x27: 0000000000000000 x26: ffff8000123a0070 
[    1.661418] x25: fffffe1ffdea3c00 x24: ffff8000123a0000 
[    1.661420] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.661422] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.661424] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.661426] x17: 0000000000000000 x16: 0000000000000000 
[    1.661428] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.661430] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.661432] x11: 0000000000000000 x10: 0000000000000001 
[    1.661434] x9 : ffff8000106d64f0 x8 : 3065343030313030 
[    1.661436] x7 : 313030303078303a x6 : 0000000000000003 
[    1.661437] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.661439] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.661442] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.661444] Call trace:
[    1.661445]  its_cpu_init+0x824/0xb20
[    1.661448]  gic_starting_cpu+0x48/0x90
[    1.661451]  cpuhp_invoke_callback+0xa4/0x460
[    1.661453]  notify_cpu_starting+0xa0/0xe0
[    1.661455]  secondary_start_kernel+0xe8/0x190
[    1.661456] ---[ end trace f68728a0d3053b6f ]---
[    1.661463] GICv3: CPU29: using allocated LPI pending table @0x00000800028f0000
[    1.661539] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.661548] Xen: initializing cpu29
[    1.661578] CPU29: Booted secondary processor 0x000000010d [0x413fd0c1]
[    1.661926] Detected PIPT I-cache on CPU30
[    1.662018] GICv3: CPU30: found redistributor 10e region 0:0x0000100100500000
[    1.668643] ------------[ cut here ]------------
[    1.668648] WARNING: CPU: 30 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.668649] Modules linked in:
[    1.668653] CPU: 30 PID: 0 Comm: swapper/30 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.668655] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.668657] pc : its_cpu_init+0x824/0xb20
[    1.668658] lr : its_cpu_init+0x820/0xb20
[    1.668659] sp : ffff800011b23e80
[    1.668660] x29: ffff800011b23e80 x28: 000000000000001e 
[    1.668662] x27: 0000000000000000 x26: ffff8000123c0070 
[    1.668665] x25: fffffe1ffdea4000 x24: ffff8000123c0000 
[    1.668666] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.668668] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.668670] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.668672] x17: 0000000000000000 x16: 0000000000000000 
[    1.668674] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.668676] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.668678] x11: 0000000000000000 x10: 0000000000000001 
[    1.668680] x9 : ffff8000106d64f0 x8 : 3030353030313030 
[    1.668682] x7 : 313030303078303a x6 : 0000000000000003 
[    1.668684] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.668686] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.668688] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.668691] Call trace:
[    1.668692]  its_cpu_init+0x824/0xb20
[    1.668695]  gic_starting_cpu+0x48/0x90
[    1.668698]  cpuhp_invoke_callback+0xa4/0x460
[    1.668700]  notify_cpu_starting+0xa0/0xe0
[    1.668702]  secondary_start_kernel+0xe8/0x190
[    1.668704] ---[ end trace f68728a0d3053b70 ]---
[    1.668710] GICv3: CPU30: using allocated LPI pending table @0x0000080002900000
[    1.668789] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.668798] Xen: initializing cpu30
[    1.668828] CPU30: Booted secondary processor 0x000000010e [0x413fd0c1]
[    1.669168] Detected PIPT I-cache on CPU31
[    1.669262] GICv3: CPU31: found redistributor 10f region 0:0x0000100100520000
[    1.675887] ------------[ cut here ]------------
[    1.675892] WARNING: CPU: 31 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.675893] Modules linked in:
[    1.675897] CPU: 31 PID: 0 Comm: swapper/31 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[    1.675899] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.675901] pc : its_cpu_init+0x824/0xb20
[    1.675903] lr : its_cpu_init+0x820/0xb20
[    1.675904] sp : ffff800011b2be80
[    1.675905] x29: ffff800011b2be80 x28: 000000000000001f 
[    1.675907] x27: 0000000000000000 x26: ffff8000123e0070 
[    1.675909] x25: fffffe1ffdea4400 x24: ffff8000123e0000 
[    1.675911] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.675913] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.675915] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.675917] x17: 0000000000000000 x16: 0000000000000000 
[    1.675919] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.675921] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.675922] x11: 0000000000000000 x10: 0000000000000001 
[    1.675924] x9 : ffff8000106d64f0 x8 : 3032353030313030 
[    1.675926] x7 : 313030303078303a x6 : 0000000000000003 
[    1.675928] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.675930] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.675932] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.675934] Call trace:
[    1.675936]  its_cpu_init+0x824/0xb20
[    1.675939]  gic_starting_cpu+0x48/0x90
[    1.675941]  cpuhp_invoke_callback+0xa4/0x460
[    1.675943]  notify_cpu_starting+0xa0/0xe0
[    1.675946]  secondary_start_kernel+0xe8/0x190
[    1.675947] ---[ end trace f68728a0d3053b71 ]---
[    1.675954] GICv3: CPU31: using allocated LPI pending table @0x0000080002910000
[    1.676032] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.676041] Xen: initializing cpu31
[    1.676071] CPU31: Booted secondary processor 0x000000010f [0x413fd0c1]
[    1.676153] smp: Brought up 1 node, 32 CPUs
[    7.521788] SMP: Total of 32 processors activated.
[    7.526619] CPU features: detected: Privileged Access Never
[    7.532274] CPU features: detected: LSE atomic instructions
[    7.537903] CPU features: detected: User Access Override
[    7.543284] CPU features: detected: 32-bit EL0 Support
[    7.548492] CPU features: detected: Common not Private translations
[    7.554830] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    7.563510] CPU features: detected: CRC32 instructions
[    7.568718] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    7.608077] CPU: All CPU(s) started at EL1
[    7.612232] alternatives: patching kernel code
[    7.617541] devtmpfs: initialized
[    7.621144] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    7.630786] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    7.637984] DMI not present or invalid.
[    7.641984] NET: Registered protocol family 16
[    7.647678] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    7.654889] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    7.662781] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    7.670981] thermal_sys: Registered thermal governor 'step_wise'
[    7.671112] Detected 15 PCC Subspaces
[    7.680766] Registering PCC driver as Mailbox controller
[    7.686162] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    7.694461] ASID allocator initialised with 65536 entries
[    7.699767] ACPI: bus type PCI registered
[    7.703838] Serial: AMBA PL011 UART driver
[    7.710282] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    7.716899] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    7.723652] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    7.730433] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    7.738510] cryptd: max_cpu_qlen set to 1000
[    7.810742] raid6: neonx8   gen()  7779 MB/s
[    7.882968] raid6: neonx8   xor()  6059 MB/s
[    7.955198] raid6: neonx4   gen()  7602 MB/s
[    8.027423] raid6: neonx4   xor()  6096 MB/s
[    8.099647] raid6: neonx2   gen()  7274 MB/s
[    8.171871] raid6: neonx2   xor()  5726 MB/s
[    8.244098] raid6: neonx1   gen()  5923 MB/s
[    8.316323] raid6: neonx1   xor()  4942 MB/s
[    8.388547] raid6: int64x8  gen()  3601 MB/s
[    8.460773] raid6: int64x8  xor()  2017 MB/s
[    8.533222] raid6: int64x4  gen()  4126 MB/s
[    8.605454] raid6: int64x4  xor()  2183 MB/s
[    8.677681] raid6: int64x2  gen()  3500 MB/s
[    8.749904] raid6: int64x2  xor()  1887 MB/s
[    8.822126] raid6: int64x1  gen()  2873 MB/s
[    8.894349] raid6: int64x1  xor()  1507 MB/s
[    8.898516] raid6: using algorithm neonx8 gen() 7779 MB/s
[    8.903984] raid6: .... xor() 6059 MB/s, rmw enabled
[    8.909020] raid6: using neon recovery algorithm
[    8.913788] ACPI: Added _OSI(Module Device)
[    8.917969] ACPI: Added _OSI(Processor Device)
[    8.922474] ACPI: Added _OSI(3.0 _SCP Extensions)
[    8.927249] ACPI: Added _OSI(Processor Aggregator Device)
[    8.932718] ACPI: Added _OSI(Linux-Dell-Video)
[    8.937232] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    8.942614] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    8.968175] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    8.980782] ACPI: Interpreter enabled
[    8.984346] ACPI: Using GIC for interrupt routing
[    8.989131] ACPI: MCFG table detected, 5 entries
[    8.993898] HEST: Table parsing has been initialized.
[    9.047339] ARMH0011:00: ttyAMA0 at MMIO 0x100002600000 (irq = 79, base_baud = 0) is a SBSA
[    9.158482] printk: console [ttyAMA0] enabled
[    9.164573] ARMH0011:01: ttyAMA1 at MMIO 0x100002620000 (irq = 80, base_baud = 0) is a SBSA
[    9.174988] ACPI: PCI Root Bridge [PCI0] (domain 000c [bus 00-ff])
[    9.181173] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.190380] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control
[    9.198232] acpi PNP0A08:00: MCFG quirk: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.211163] acpi PNP0A08:00: ECAM area [mem 0x33fff0000000-0x33ffffffffff] reserved by PNP0C02:00
[    9.220074] acpi PNP0A08:00: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff]
[    9.228296] PCI host bridge to bus 000c:00
[    9.232353] pci_bus 000c:00: root bus resource [mem 0x40000000-0x4fffffff window]
[    9.239952] pci_bus 000c:00: root bus resource [mem 0x300000000000-0x33ffdfffffff window]
[    9.248215] pci_bus 000c:00: root bus resource [bus 00-ff]
[    9.253770] pci 000c:00:00.0: [1def:e100] type 00 class 0x060000
[    9.259884] pci 000c:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.267498] pci 000c:00:01.0: [1def:e101] type 01 class 0x060400
[    9.273573] pci 000c:00:01.0: supports D1 D2
[    9.277850] pci 000c:00:01.0: PME# supported from D0 D1 D3hot
[    9.283713] pci 000c:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.292454] pci 000c:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    9.300648] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    9.312240] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    9.322822] pci 000c:00:01.0: BAR 8: assigned [mem 0x40000000-0x401fffff]
[    9.329620] pci 000c:00:01.0: BAR 9: assigned [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.338150] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.344455] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.351145] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.357482] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.364166] pci 000c:00:01.0: PCI bridge to [bus 01]
[    9.369177] pci 000c:00:01.0:   bridge window [mem 0x40000000-0x401fffff]
[    9.376061] pci 000c:00:01.0:   bridge window [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.384593] pci_bus 000c:00: resource 4 [mem 0x40000000-0x4fffffff window]
[    9.391513] pci_bus 000c:00: resource 5 [mem 0x300000000000-0x33ffdfffffff window]
[    9.399164] pci_bus 000c:01: resource 1 [mem 0x40000000-0x401fffff]
[    9.405479] pci_bus 000c:01: resource 2 [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.413532] ACPI: PCI Root Bridge [PCI1] (domain 000d [bus 00-ff])
[    9.419723] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.428938] acpi PNP0A08:01: PCIe port services disabled; not requesting _OSC control
[    9.436782] acpi PNP0A08:01: MCFG quirk: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.449717] acpi PNP0A08:01: ECAM area [mem 0x37fff0000000-0x37ffffffffff] reserved by PNP0C02:00
[    9.458630] acpi PNP0A08:01: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff]
[    9.466849] PCI host bridge to bus 000d:00
[    9.470906] pci_bus 000d:00: root bus resource [mem 0x50000000-0x5fffffff window]
[    9.478505] pci_bus 000d:00: root bus resource [mem 0x340000000000-0x37ffdfffffff window]
[    9.486761] pci_bus 000d:00: root bus resource [bus 00-ff]
[    9.492319] pci 000d:00:00.0: [1def:e100] type 00 class 0x060000
[    9.498417] pci 000d:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.506041] pci 000d:00:01.0: [1def:e101] type 01 class 0x060400
[    9.512113] pci 000d:00:01.0: supports D1 D2
[    9.516392] pci 000d:00:01.0: PME# supported from D0 D1 D3hot
[    9.522262] pci 000d:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.529975] pci 000d:01:00.0: [10de:1e89] type 00 class 0x030000
[    9.535976] pci 000d:01:00.0: reg 0x10: [mem 0x50000000-0x50ffffff]
[    9.542314] pci 000d:01:00.0: reg 0x14: [mem 0x340000000000-0x34000fffffff 64bit pref]
[    9.550324] pci 000d:01:00.0: reg 0x1c: [mem 0x340010000000-0x340011ffffff 64bit pref]
[    9.558313] pci 000d:01:00.0: reg 0x24: [io  0x57ffe000-0x57ffe07f]
[    9.564620] pci 000d:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    9.571454] pci 000d:01:00.0: PME# supported from D0 D3hot D3cold
[    9.577602] pci 000d:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.585227] pci 000d:01:00.1: [10de:10f8] type 00 class 0x040300
[    9.591273] pci 000d:01:00.1: reg 0x10: [mem 0x51000000-0x51003fff]
[    9.597707] pci 000d:01:00.1: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.605302] pci 000d:01:00.2: [10de:1ad8] type 00 class 0x0c0330
[    9.611351] pci 000d:01:00.2: reg 0x10: [mem 0x340012000000-0x34001203ffff 64bit pref]
[    9.619364] pci 000d:01:00.2: reg 0x1c: [mem 0x340012040000-0x34001204ffff 64bit pref]
[    9.627390] pci 000d:01:00.2: PME# supported from D0 D3hot D3cold
[    9.633509] pci 000d:01:00.2: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.641227] pci 000d:01:00.3: [10de:1ad9] type 00 class 0x0c8000
[    9.647252] pci 000d:01:00.3: reg 0x10: [mem 0x51004000-0x51004fff]
[    9.653657] pci 000d:01:00.3: PME# supported from D0 D3hot D3cold
[    9.659799] pci 000d:01:00.3: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.667423] pci 000d:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    9.688819] pci 000d:00:01.0: BAR 9: assigned [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.697280] pci 000d:00:01.0: BAR 8: assigned [mem 0x50000000-0x517fffff]
[    9.704113] pci 000d:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.710442] pci 000d:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.717134] pci 000d:01:00.0: BAR 1: assigned [mem 0x340000000000-0x34000fffffff 64bit pref]
[    9.725671] pci 000d:01:00.0: BAR 3: assigned [mem 0x340010000000-0x340011ffffff 64bit pref]
[    9.734177] pci 000d:01:00.0: BAR 0: assigned [mem 0x50000000-0x50ffffff]
[    9.741008] pci 000d:01:00.0: BAR 6: assigned [mem 0x51000000-0x5107ffff pref]
[    9.748303] pci 000d:01:00.2: BAR 0: assigned [mem 0x340012000000-0x34001203ffff 64bit pref]
[    9.756834] pci 000d:01:00.2: BAR 3: assigned [mem 0x340012040000-0x34001204ffff 64bit pref]
[    9.765341] pci 000d:01:00.1: BAR 0: assigned [mem 0x51080000-0x51083fff]
[    9.772170] pci 000d:01:00.3: BAR 0: assigned [mem 0x51084000-0x51084fff]
[    9.779028] pci 000d:01:00.0: BAR 5: no space for [io  size 0x0080]
[    9.785355] pci 000d:01:00.0: BAR 5: failed to assign [io  size 0x0080]
[    9.792045] pci 000d:00:01.0: PCI bridge to [bus 01]
[    9.797056] pci 000d:00:01.0:   bridge window [mem 0x50000000-0x517fffff]
[    9.803941] pci 000d:00:01.0:   bridge window [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.812471] pci_bus 000d:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    9.821593] pci_bus 000d:00: resource 4 [mem 0x50000000-0x5fffffff window]
[    9.828506] pci_bus 000d:00: resource 5 [mem 0x340000000000-0x37ffdfffffff window]
[    9.836156] pci_bus 000d:01: resource 1 [mem 0x50000000-0x517fffff]
[    9.842491] pci_bus 000d:01: resource 2 [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.850575] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus 00-ff])
[    9.856754] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.865984] acpi PNP0A08:03: PCIe port services disabled; not requesting _OSC control
[    9.873828] acpi PNP0A08:03: MCFG quirk: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.886818] acpi PNP0A08:03: ECAM area [mem 0x3ffff0000000-0x3fffffffffff] reserved by PNP0C02:00
[    9.895739] acpi PNP0A08:03: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff]
[    9.903953] PCI host bridge to bus 0000:00
[    9.908010] pci_bus 0000:00: root bus resource [mem 0x70000000-0x7fffffff window]
[    9.915612] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3fffdfffffff window]
[    9.923865] pci_bus 0000:00: root bus resource [bus 00-ff]
[    9.929424] pci 0000:00:00.0: [1def:e100] type 00 class 0x060000
[    9.935531] pci 0000:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.943145] pci 0000:00:01.0: [1def:e101] type 01 class 0x060400
[    9.949216] pci 0000:00:01.0: supports D1 D2
[    9.953496] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    9.959372] pci 0000:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.967077] pci 0000:01:00.0: [8086:1589] type 00 class 0x020000
[    9.973081] pci 0000:01:00.0: reg 0x10: [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    9.981094] pci 0000:01:00.0: reg 0x1c: [mem 0x3c0004818000-0x3c000481ffff 64bit pref]
[    9.989076] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    9.995898] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[   10.002027] pci 0000:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.009675] pci 0000:01:00.1: [8086:1589] type 00 class 0x020000
[   10.015708] pci 0000:01:00.1: reg 0x10: [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[   10.023721] pci 0000:01:00.1: reg 0x1c: [mem 0x3c0004810000-0x3c0004817fff 64bit pref]
[   10.031704] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.038512] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[   10.044638] pci 0000:01:00.1: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.052287] pci 0000:01:00.2: [8086:1589] type 00 class 0x020000
[   10.058326] pci 0000:01:00.2: reg 0x10: [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[   10.066339] pci 0000:01:00.2: reg 0x1c: [mem 0x3c0004808000-0x3c000480ffff 64bit pref]
[   10.074322] pci 0000:01:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.081135] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[   10.087260] pci 0000:01:00.2: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.094909] pci 0000:01:00.3: [8086:1589] type 00 class 0x020000
[   10.100947] pci 0000:01:00.3: reg 0x10: [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[   10.108960] pci 0000:01:00.3: reg 0x1c: [mem 0x3c0004800000-0x3c0004807fff 64bit pref]
[   10.116943] pci 0000:01:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.123758] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[   10.129890] pci 0000:01:00.3: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.137544] pci 0000:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01-02] add_size 1000
[   10.146026] pci 0000:00:01.0: BAR 9: assigned [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.154530] pci 0000:00:01.0: BAR 8: assigned [mem 0x70000000-0x701fffff]
[   10.161363] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.167693] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.174382] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.180713] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.187405] pci 0000:01:00.0: BAR 0: assigned [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[   10.195942] pci 0000:01:00.1: BAR 0: assigned [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[   10.204449] pci 0000:01:00.2: BAR 0: assigned [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[   10.212956] pci 0000:01:00.3: BAR 0: assigned [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[   10.221462] pci 0000:01:00.0: BAR 6: assigned [mem 0x70000000-0x7007ffff pref]
[   10.228730] pci 0000:01:00.1: BAR 6: assigned [mem 0x70080000-0x700fffff pref]
[   10.236022] pci 0000:01:00.2: BAR 6: assigned [mem 0x70100000-0x7017ffff pref]
[   10.243314] pci 0000:01:00.3: BAR 6: assigned [mem 0x70180000-0x701fffff pref]
[   10.250606] pci 0000:01:00.0: BAR 3: assigned [mem 0x3c0004000000-0x3c0004007fff 64bit pref]
[   10.259136] pci 0000:01:00.1: BAR 3: assigned [mem 0x3c0004008000-0x3c000400ffff 64bit pref]
[   10.267643] pci 0000:01:00.2: BAR 3: assigned [mem 0x3c0004010000-0x3c0004017fff 64bit pref]
[   10.276150] pci 0000:01:00.3: BAR 3: assigned [mem 0x3c0004018000-0x3c000401ffff 64bit pref]
[   10.284657] pci 0000:00:01.0: PCI bridge to [bus 01-02]
[   10.289906] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x701fffff]
[   10.296782] pci 0000:00:01.0:   bridge window [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.305312] pci_bus 0000:00: resource 4 [mem 0x70000000-0x7fffffff window]
[   10.312238] pci_bus 0000:00: resource 5 [mem 0x3c0000000000-0x3fffdfffffff window]
[   10.319888] pci_bus 0000:01: resource 1 [mem 0x70000000-0x701fffff]
[   10.326199] pci_bus 0000:01: resource 2 [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.334273] ACPI: PCI Root Bridge [PCI6] (domain 0004 [bus 00-ff])
[   10.340454] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.349672] acpi PNP0A08:06: PCIe port services disabled; not requesting _OSC control
[   10.357515] acpi PNP0A08:06: MCFG quirk: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[   10.370459] acpi PNP0A08:06: ECAM area [mem 0x2bfff0000000-0x2bffffffffff] reserved by PNP0C02:00
[   10.379370] acpi PNP0A08:06: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff]
[   10.387585] PCI host bridge to bus 0004:00
[   10.391641] pci_bus 0004:00: root bus resource [mem 0x20000000-0x2fffffff window]
[   10.399242] pci_bus 0004:00: root bus resource [mem 0x280000000000-0x2bffdfffffff window]
[   10.407497] pci_bus 0004:00: root bus resource [bus 00-ff]
[   10.413054] pci 0004:00:00.0: [1def:e110] type 00 class 0x060000
[   10.419153] pci 0004:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.426774] pci 0004:00:01.0: [1def:e111] type 01 class 0x060400
[   10.432850] pci 0004:00:01.0: supports D1 D2
[   10.437127] pci 0004:00:01.0: PME# supported from D0 D1 D3hot
[   10.443001] pci 0004:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.450647] pci 0004:00:03.0: [1def:e113] type 01 class 0x060400
[   10.456723] pci 0004:00:03.0: supports D1 D2
[   10.460999] pci 0004:00:03.0: PME# supported from D0 D1 D3hot
[   10.466870] pci 0004:00:03.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.474520] pci 0004:00:05.0: [1def:e115] type 01 class 0x060400
[   10.480605] pci 0004:00:05.0: supports D1 D2
[   10.484870] pci 0004:00:05.0: PME# supported from D0 D1 D3hot
[   10.490742] pci 0004:00:05.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.498448] pci 0004:01:00.0: [1a03:1150] type 01 class 0x060400
[   10.504490] pci 0004:01:00.0: enabling Extended Tags
[   10.509519] pci 0004:01:00.0: supports D1 D2
[   10.513788] pci 0004:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   10.520563] pci 0004:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.528213] pci_bus 0004:02: extended config space not accessible
[   10.534333] pci 0004:02:00.0: [1a03:2000] type 00 class 0x030000
[   10.540397] pci 0004:02:00.0: reg 0x10: [mem 0x20000000-0x20ffffff]
[   10.546727] pci 0004:02:00.0: reg 0x14: [mem 0x21000000-0x2101ffff]
[   10.553064] pci 0004:02:00.0: reg 0x18: [io  0x27fff000-0x27fff07f]
[   10.559474] pci 0004:02:00.0: supports D1 D2
[   10.563704] pci 0004:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   10.570467] pci 0004:02:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.578202] pci 0004:03:00.0: [1912:0014] type 00 class 0x0c0330
[   10.584213] pci 0004:03:00.0: reg 0x10: [mem 0x21200000-0x21201fff 64bit]
[   10.591165] pci 0004:03:00.0: PME# supported from D0 D3hot D3cold
[   10.597304] pci 0004:03:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.604996] pci 0004:04:00.0: [8086:1533] type 00 class 0x020000
[   10.611016] pci 0004:04:00.0: reg 0x10: [mem 0x21100000-0x2117ffff]
[   10.617360] pci 0004:04:00.0: reg 0x18: [io  0x27ffe000-0x27ffe01f]
[   10.623681] pci 0004:04:00.0: reg 0x1c: [mem 0x21180000-0x21183fff]
[   10.630183] pci 0004:04:00.0: PME# supported from D0 D3hot D3cold
[   10.636335] pci 0004:04:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.643967] pci 0004:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-02] add_size 200000 add_align 100000
[   10.655790] pci 0004:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[   10.663984] pci 0004:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[   10.675578] pci 0004:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 03] add_size 100000 add_align 100000
[   10.686153] pci 0004:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[   10.697714] pci 0004:00:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[   10.708292] pci 0004:00:01.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[   10.715093] pci 0004:00:01.0: BAR 9: assigned [mem 0x280000000000-0x2800001fffff 64bit pref]
[   10.723623] pci 0004:00:03.0: BAR 8: assigned [mem 0x21800000-0x219fffff]
[   10.730463] pci 0004:00:03.0: BAR 9: assigned [mem 0x280000200000-0x2800003fffff 64bit pref]
[   10.738988] pci 0004:00:05.0: BAR 8: assigned [mem 0x21a00000-0x21bfffff]
[   10.745822] pci 0004:00:05.0: BAR 9: assigned [mem 0x280000400000-0x2800005fffff 64bit pref]
[   10.754352] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.760657] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.767346] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[   10.773678] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   10.780373] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[   10.786699] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   10.793390] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.799725] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.806409] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[   10.812794] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   10.819473] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[   10.825803] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   10.832496] pci 0004:01:00.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[   10.839352] pci 0004:01:00.0: BAR 7: no space for [io  size 0x1000]
[   10.845683] pci 0004:01:00.0: BAR 7: failed to assign [io  size 0x1000]
[   10.852372] pci 0004:02:00.0: BAR 0: assigned [mem 0x20000000-0x20ffffff]
[   10.859236] pci 0004:02:00.0: BAR 1: assigned [mem 0x21000000-0x2101ffff]
[   10.866092] pci 0004:02:00.0: BAR 2: no space for [io  size 0x0080]
[   10.872417] pci 0004:02:00.0: BAR 2: failed to assign [io  size 0x0080]
[   10.879107] pci 0004:01:00.0: PCI bridge to [bus 02]
[   10.884122] pci 0004:01:00.0:   bridge window [mem 0x20000000-0x217fffff]
[   10.891015] pci 0004:00:01.0: PCI bridge to [bus 01-02]
[   10.896275] pci 0004:00:01.0:   bridge window [mem 0x20000000-0x217fffff]
[   10.903156] pci 0004:00:01.0:   bridge window [mem 0x280000000000-0x2800001fffff 64bit pref]
[   10.911688] pci 0004:03:00.0: BAR 0: assigned [mem 0x21800000-0x21801fff 64bit]
[   10.919056] pci 0004:00:03.0: PCI bridge to [bus 03]
[   10.924050] pci 0004:00:03.0:   bridge window [mem 0x21800000-0x219fffff]
[   10.930939] pci 0004:00:03.0:   bridge window [mem 0x280000200000-0x2800003fffff 64bit pref]
[   10.939465] pci 0004:04:00.0: BAR 0: assigned [mem 0x21a00000-0x21a7ffff]
[   10.946302] pci 0004:04:00.0: BAR 3: assigned [mem 0x21a80000-0x21a83fff]
[   10.953160] pci 0004:04:00.0: BAR 2: no space for [io  size 0x0020]
[   10.959484] pci 0004:04:00.0: BAR 2: failed to assign [io  size 0x0020]
[   10.966173] pci 0004:00:05.0: PCI bridge to [bus 04]
[   10.971185] pci 0004:00:05.0:   bridge window [mem 0x21a00000-0x21bfffff]
[   10.978069] pci 0004:00:05.0:   bridge window [mem 0x280000400000-0x2800005fffff 64bit pref]
[   10.986600] pci_bus 0004:00: Some PCI device resources are unassigned, try booting with pci=realloc
[   10.995723] pci_bus 0004:00: resource 4 [mem 0x20000000-0x2fffffff window]
[   11.002636] pci_bus 0004:00: resource 5 [mem 0x280000000000-0x2bffdfffffff window]
[   11.010290] pci_bus 0004:01: resource 1 [mem 0x20000000-0x217fffff]
[   11.016602] pci_bus 0004:01: resource 2 [mem 0x280000000000-0x2800001fffff 64bit pref]
[   11.024613] pci_bus 0004:02: resource 1 [mem 0x20000000-0x217fffff]
[   11.030926] pci_bus 0004:03: resource 1 [mem 0x21800000-0x219fffff]
[   11.037262] pci_bus 0004:03: resource 2 [mem 0x280000200000-0x2800003fffff 64bit pref]
[   11.045273] pci_bus 0004:04: resource 1 [mem 0x21a00000-0x21bfffff]
[   11.051585] pci_bus 0004:04: resource 2 [mem 0x280000400000-0x2800005fffff 64bit pref]
[   11.059683] ACPI: PCI Root Bridge [PCI7] (domain 0005 [bus 00-ff])
[   11.065862] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   11.075085] acpi PNP0A08:07: PCIe port services disabled; not requesting _OSC control
[   11.082929] acpi PNP0A08:07: MCFG quirk: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[   11.095905] acpi PNP0A08:07: ECAM area [mem 0x2ffff0000000-0x2fffffffffff] reserved by PNP0C02:00
[   11.104821] acpi PNP0A08:07: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff]
[   11.113039] PCI host bridge to bus 0005:00
[   11.117097] pci_bus 0005:00: root bus resource [mem 0x30000000-0x3fffffff window]
[   11.124695] pci_bus 0005:00: root bus resource [mem 0x2c0000000000-0x2fffdfffffff window]
[   11.132951] pci_bus 0005:00: root bus resource [bus 00-ff]
[   11.138513] pci 0005:00:00.0: [1def:e110] type 00 class 0x060000
[   11.144617] pci 0005:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.152234] pci 0005:00:01.0: [1def:e111] type 01 class 0x060400
[   11.158313] pci 0005:00:01.0: supports D1 D2
[   11.162582] pci 0005:00:01.0: PME# supported from D0 D1 D3hot
[   11.168461] pci 0005:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.176101] pci 0005:00:03.0: [1def:e113] type 01 class 0x060400
[   11.182176] pci 0005:00:03.0: supports D1 D2
[   11.186453] pci 0005:00:03.0: PME# supported from D0 D1 D3hot
[   11.192328] pci 0005:00:03.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.199981] pci 0005:00:05.0: [1def:e115] type 01 class 0x060400
[   11.206055] pci 0005:00:05.0: supports D1 D2
[   11.210325] pci 0005:00:05.0: PME# supported from D0 D1 D3hot
[   11.216198] pci 0005:00:05.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.223844] pci 0005:00:07.0: [1def:e117] type 01 class 0x060400
[   11.229923] pci 0005:00:07.0: supports D1 D2
[   11.234196] pci 0005:00:07.0: PME# supported from D0 D1 D3hot
[   11.240073] pci 0005:00:07.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.248843] pci 0005:02:00.0: [1912:0014] type 00 class 0x0c0330
[   11.254852] pci 0005:02:00.0: reg 0x10: [mem 0x30100000-0x30101fff 64bit]
[   11.261805] pci 0005:02:00.0: PME# supported from D0 D3hot D3cold
[   11.267940] pci 0005:02:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.276675] pci 0005:04:00.0: [126f:2263] type 00 class 0x010802
[   11.282684] pci 0005:04:00.0: reg 0x10: [mem 0x30000000-0x30003fff 64bit]
[   11.289682] pci 0005:04:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.297294] pci 0005:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[   11.305516] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[   11.317107] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[   11.327684] pci 0005:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[   11.335896] pci 0005:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[   11.347490] pci 0005:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 02] add_size 100000 add_align 100000
[   11.358074] pci 0005:00:05.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[   11.366277] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[   11.377872] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[   11.388447] pci 0005:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[   11.396659] pci 0005:00:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[   11.408253] pci 0005:00:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[   11.418834] pci 0005:00:01.0: BAR 8: assigned [mem 0x30000000-0x301fffff]
[   11.425633] pci 0005:00:01.0: BAR 9: assigned [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.434163] pci 0005:00:03.0: BAR 8: assigned [mem 0x30200000-0x303fffff]
[   11.441003] pci 0005:00:03.0: BAR 9: assigned [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.449528] pci 0005:00:05.0: BAR 8: assigned [mem 0x30400000-0x305fffff]
[   11.456362] pci 0005:00:05.0: BAR 9: assigned [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.464892] pci 0005:00:07.0: BAR 8: assigned [mem 0x30600000-0x307fffff]
[   11.471727] pci 0005:00:07.0: BAR 9: assigned [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.480257] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[   11.486564] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   11.493251] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[   11.499583] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   11.506277] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[   11.512603] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   11.519302] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[   11.525625] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[   11.532317] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[   11.538646] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[   11.545334] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[   11.551666] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   11.558361] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[   11.564687] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   11.571376] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[   11.577708] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   11.584397] pci 0005:00:01.0: PCI bridge to [bus 01]
[   11.589408] pci 0005:00:01.0:   bridge window [mem 0x30000000-0x301fffff]
[   11.596293] pci 0005:00:01.0:   bridge window [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.604825] pci 0005:02:00.0: BAR 0: assigned [mem 0x30200000-0x30201fff 64bit]
[   11.612194] pci 0005:00:03.0: PCI bridge to [bus 02]
[   11.617187] pci 0005:00:03.0:   bridge window [mem 0x30200000-0x303fffff]
[   11.624092] pci 0005:00:03.0:   bridge window [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.632602] pci 0005:00:05.0: PCI bridge to [bus 03]
[   11.637585] pci 0005:00:05.0:   bridge window [mem 0x30400000-0x305fffff]
[   11.644470] pci 0005:00:05.0:   bridge window [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.653002] pci 0005:04:00.0: BAR 0: assigned [mem 0x30600000-0x30603fff 64bit]
[   11.660370] pci 0005:00:07.0: PCI bridge to [bus 04]
[   11.665363] pci 0005:00:07.0:   bridge window [mem 0x30600000-0x307fffff]
[   11.672248] pci 0005:00:07.0:   bridge window [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.680779] pci_bus 0005:00: resource 4 [mem 0x30000000-0x3fffffff window]
[   11.687700] pci_bus 0005:00: resource 5 [mem 0x2c0000000000-0x2fffdfffffff window]
[   11.695348] pci_bus 0005:01: resource 1 [mem 0x30000000-0x301fffff]
[   11.701729] pci_bus 0005:01: resource 2 [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.709729] pci_bus 0005:02: resource 1 [mem 0x30200000-0x303fffff]
[   11.716041] pci_bus 0005:02: resource 2 [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.724051] pci_bus 0005:03: resource 1 [mem 0x30400000-0x305fffff]
[   11.730368] pci_bus 0005:03: resource 2 [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.738373] pci_bus 0005:04: resource 1 [mem 0x30600000-0x307fffff]
[   11.744686] pci_bus 0005:04: resource 2 [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.752952] xen:balloon: Initialising balloon driver
[   11.757940] iommu: Default domain type: Translated 
[   11.762899] pci 000d:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[   11.771323] pci 0004:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[   11.779729] pci 000d:01:00.0: vgaarb: bridge control possible
[   11.785503] pci 0004:02:00.0: vgaarb: bridge control possible
[   11.791322] pci 0004:02:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[   11.800311] vgaarb: loaded
[   11.803085] SCSI subsystem initialized
[   11.806837] ACPI: bus type USB registered
[   11.810939] usbcore: registered new interface driver usbfs
[   11.816497] usbcore: registered new interface driver hub
[   11.821884] usbcore: registered new device driver usb
[   11.827003] pps_core: LinuxPPS API ver. 1 registered
[   11.832020] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[   11.841284] PTP clock support registered
[   11.845346] Registered efivars operations
[   11.849329] No ACPI PMU IRQ for CPU0
[   11.852944] No ACPI PMU IRQ for CPU1
[   11.856597] No ACPI PMU IRQ for CPU2
[   11.860241] No ACPI PMU IRQ for CPU3
[   11.863888] No ACPI PMU IRQ for CPU4
[   11.867526] No ACPI PMU IRQ for CPU5
[   11.871180] No ACPI PMU IRQ for CPU6
[   11.874818] No ACPI PMU IRQ for CPU7
[   11.878472] No ACPI PMU IRQ for CPU8
[   11.882110] No ACPI PMU IRQ for CPU9
[   11.885762] No ACPI PMU IRQ for CPU10
[   11.889490] No ACPI PMU IRQ for CPU11
[   11.893230] No ACPI PMU IRQ for CPU12
[   11.896955] No ACPI PMU IRQ for CPU13
[   11.900701] No ACPI PMU IRQ for CPU14
[   11.904420] No ACPI PMU IRQ for CPU15
[   11.908160] No ACPI PMU IRQ for CPU16
[   11.911886] No ACPI PMU IRQ for CPU17
[   11.915625] No ACPI PMU IRQ for CPU18
[   11.919351] No ACPI PMU IRQ for CPU19
[   11.923094] No ACPI PMU IRQ for CPU20
[   11.926816] No ACPI PMU IRQ for CPU21
[   11.930563] No ACPI PMU IRQ for CPU22
[   11.934281] No ACPI PMU IRQ for CPU23
[   11.938021] No ACPI PMU IRQ for CPU24
[   11.941747] No ACPI PMU IRQ for CPU25
[   11.945486] No ACPI PMU IRQ for CPU26
[   11.949212] No ACPI PMU IRQ for CPU27
[   11.952952] No ACPI PMU IRQ for CPU28
[   11.956677] No ACPI PMU IRQ for CPU29
[   11.960423] No ACPI PMU IRQ for CPU30
[   11.964143] No ACPI PMU IRQ for CPU31
[   11.969209] clocksource: Switched to clocksource arch_sys_counter
[   12.150916] pnp: PnP ACPI init
[   12.155323] system 00:00: [mem 0x3bfff0000000-0x3bffffffffff window] has been reserved
[   12.163260] system 00:00: [mem 0x3ffff0000000-0x3fffffffffff window] could not be reserved
[   12.171595] system 00:00: [mem 0x23fff0000000-0x23ffffffffff window] has been reserved
[   12.179572] system 00:00: [mem 0x27fff0000000-0x27ffffffffff window] has been reserved
[   12.187559] system 00:00: [mem 0x2bfff0000000-0x2bffffffffff window] could not be reserved
[   12.195902] system 00:00: [mem 0x2ffff0000000-0x2fffffffffff window] could not be reserved
[   12.204231] system 00:00: [mem 0x7bfff0000000-0x7bffffffffff window] has been reserved
[   12.212211] system 00:00: [mem 0x7ffff0000000-0x7fffffffffff window] has been reserved
[   12.220197] system 00:00: [mem 0x63fff0000000-0x63ffffffffff window] has been reserved
[   12.228183] system 00:00: [mem 0x67fff0000000-0x67ffffffffff window] has been reserved
[   12.236173] system 00:00: [mem 0x6bfff0000000-0x6bffffffffff window] has been reserved
[   12.244156] system 00:00: [mem 0x6ffff0000000-0x6fffffffffff window] has been reserved
[   12.252142] system 00:00: [mem 0x33fff0000000-0x33ffffffffff window] could not be reserved
[   12.260480] system 00:00: [mem 0x37fff0000000-0x37ffffffffff window] could not be reserved
[   12.268824] pnp: PnP ACPI: found 1 devices
[   12.276079] NET: Registered protocol family 2
[   12.280604] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[   12.289534] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[   12.298571] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[   12.306454] TCP: Hash tables configured (established 262144 bind 65536)
[   12.313137] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[   12.320351] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[   12.328133] NET: Registered protocol family 1
[   12.332764] RPC: Registered named UNIX socket transport module.
[   12.338674] RPC: Registered udp transport module.
[   12.343423] RPC: Registered tcp transport module.
[   12.348196] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   12.354787] pci 000d:01:00.1: D0 power state depends on 000d:01:00.0
[   12.361214] pci 000d:01:00.2: D0 power state depends on 000d:01:00.0
[   12.367619] pci 000d:01:00.2: enabling device (0000 -> 0002)
[   12.373360] pci 000d:01:00.3: D0 power state depends on 000d:01:00.0
[   12.379792] pci 0004:03:00.0: enabling device (0000 -> 0002)
[   12.385497] pci 0005:02:00.0: enabling device (0000 -> 0002)
[   12.391207] PCI: CLS 128 bytes, default 64
[   12.397929] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 1 counters available
[   12.408063] workingset: timestamp_bits=42 max_order=23 bucket_order=0
[   12.416304] NFS: Registering the id_resolver key type
[   12.421350] Key type id_resolver registered
[   12.425577] Key type id_legacy registered
[   12.429951] Key type cifs.idmap registered
[   12.449128] xor: measuring software checksum speed
[   12.454895]    8regs           :  9807 MB/sec
[   12.460050]    32regs          : 11761 MB/sec
[   12.465074]    arm64_neon      : 13969 MB/sec
[   12.469392] xor: using function: arm64_neon (13969 MB/sec)
[   12.474973] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[   12.482457] io scheduler mq-deadline registered
[   12.487016] io scheduler kyber registered
[   12.492498] gpio-dwapb APMC0D07:02: no IRQ for port0
[   12.498367] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[   12.506780] ACPI: Power Button [PWRB]
[   12.511160] GHES: APEI firmware first mode is enabled by APEI bit.
[   12.517387] EINJ: Error INJection is initialized.
[   12.522124] ACPI GTDT: found 1 SBSA generic Watchdog(s).
[   12.527972] xen:xen_evtchn: Event-channel device installed
[   12.534150] ast 0004:02:00.0: [drm] platform has no IO space, trying MMIO
[   12.540961] ast 0004:02:00.0: [drm] Using P2A bridge for configuration
[   12.547532] ast 0004:02:00.0: [drm] AST 2500 detected
[   12.552632] ast 0004:02:00.0: [drm] Analog VGA only
[   12.557581] ast 0004:02:00.0: [drm] dram MCLK=800 Mhz type=8 bus_width=16
[   12.564538] [TTM] Zone  kernel: Available graphics memory: 12239980 KiB
[   12.571148] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[   12.577742] [TTM] Initializing pool allocator
[   12.582140] [TTM] Initializing DMA pool allocator
[   12.587180] [drm] Initialized ast 0.1.0 20120228 for 0004:02:00.0 on minor 0
[   12.612194] Console: switching to colour frame buffer device 128x48
[   12.620654] ast 0004:02:00.0: [drm] fb0: astdrmfb frame buffer device
[   12.641788] brd: module loaded
[   12.649319] loop: module loaded
[   12.652940] nvme nvme0: pci function 0005:04:00.0
[   12.657909] igb: Intel(R) Gigabit Ethernet Network Driver
[   12.659853]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.663290] igb: Copyright (c) 2007-2014 Intel Corporation.
[   12.675616]  ******* In dma_alloc_direct() function *********
[   12.681344]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.688071]  ******* In dma_alloc_direct() function *********
[   12.697378] nvme nvme0: missing or invalid SUBNQN field.
[   12.703931]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.708770] pps pps0: new PPS source ptp0
[   12.709930]  ******* In dma_alloc_direct() function *********
[   12.714045] igb 0004:04:00.0: added PHC on eth0
[   12.719820]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.724403] igb 0004:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[   12.730497]  ******* In dma_alloc_direct() function *********
[   12.730749]  ******* dma_alloc_attrs() -> ops->alloc() *********
[   12.737455] igb 0004:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:3b:50:52
[   12.737515] igb 0004:04:00.0: eth0: PBA No: 000300-000
[   12.743255]  ******* In dma_alloc_direct() function *********
[   12.743268] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000008
[   12.749336] igb 0004:04:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[   12.756553] Mem abort info:
[   12.756555]   ESR = 0x96000044
[   12.756559]   EC = 0x25: DABT (current EL), IL = 32 bits
[   12.761796] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[   12.767558]   SET = 0, FnV = 0
[   12.767559]   EA = 0, S1PTW = 0
[   12.767559] Data abort info:
[   12.767560]   ISV = 0, ISS = 0x00000044
[   12.767565]   CM = 0, WnR = 1
[   12.776459] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[   12.784080] [0000000000000008] user address but active_mm is swapper
[   12.784084] Internal error: Oops: 96000044 [#1] PREEMPT SMP
[   12.786895] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[   12.790006] Modules linked in:
[   12.790009] CPU: 2 PID: 7 Comm: kworker/u64:0 Tainted: G        W         5.10.27-ampere-lts-standard+ #1
[   12.790020] Workqueue: nvme-reset-wq nvme_reset_work
[   12.795431] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[   12.801783] 
[   12.801785] pstate: 60c00085 (nZCv daIf +PAN +UAO -TCO BTYPE=--)
[   12.801789] pc : steal_suitable_fallback+0x138/0x2f0
[   12.801794] lr : steal_suitable_fallback+0x1bc/0x2f0
[   12.805058] i40e 0000:01:00.0: enabling device (0000 -> 0002)
[   12.808066] sp : ffff80001196b810
[   12.808067] x29: ffff80001196b810 x28: 0000000000000000 
[   12.898385] x27: 0000000000000000 x26: ffff8000114dbcb0 
[   12.903770] x25: fffffdffffe00000 x24: 0000000000000001 
[   12.909148] x23: 0000000000000000 x22: fffffe1ffdf90000 
[   12.914533] x21: ffff08071cfdf980 x20: 0000000000000901 
[   12.919911] x19: 0000000000080000 x18: ffffffffffffffff 
[   12.925294] x17: 000000000000000e x16: 00000000deadbeef 
[   12.930677] x15: ffff80009196b957 x14: 0000000000000006 
[   12.936057] x13: ffff80001196b95f x12: 0000000000000000 
[   12.941440] x11: 0000000000000400 x10: 000000000000000c 
[   12.946821] x9 : ffff800010039d58 x8 : 0000000080000000 
[   12.952203] x7 : 0000000000000018 x6 : ffff800011750890 
[   12.957585] x5 : ffff800011750878 x4 : 0000000000000000 
[   12.962968] x3 : 0000000000000000 x2 : 0000000000000000 
[   12.968349] x1 : 0000000000000200 x0 : 0000000000000000 
[   12.973736] Call trace:
[   12.976198]  steal_suitable_fallback+0x138/0x2f0
[   12.980924]  get_page_from_freelist+0xe30/0x12a0
[   12.985613]  __alloc_pages_nodemask+0x148/0xe00
[   12.990212]  __dma_direct_alloc_pages+0xa4/0x1d0
[   12.994902]  dma_direct_alloc+0x7c/0x2b8
[   12.998882]  xen_swiotlb_alloc_coherent+0x68/0x370
[   13.003763]  dma_alloc_attrs+0xd8/0x110
[   13.007647]  nvme_reset_work+0x1030/0x1520
[   13.011818]  process_one_work+0x1dc/0x4bc
[   13.015894]  worker_thread+0x144/0x470
[   13.019710]  kthread+0x14c/0x160
[   13.022999]  ret_from_fork+0x10/0x38
[   13.026652] Code: a94082c4 d37ef463 cb3c4063 8b3c4042 (f9000480) 
[   13.032857] ---[ end trace f68728a0d3053b72 ]---
[   13.037519] note: kworker/u64:0[7] exited with preempt_count 1
[   34.053211] rcu: INFO: rcu_preempt detected stalls on CPUs/tasks:
[   34.059310] rcu: 	0-...0: (21 ticks this GP) idle=356/1/0x4000000000000000 softirq=79/81 fqs=2625 
[   34.068384] rcu: 	13-...0: (5 GPs behind) idle=9ae/1/0x4000000000000000 softirq=34/34 fqs=2625 
[   34.077147] 	(detected by 2, t=5252 jiffies, g=-1071, q=2)


[-- Attachment #5: native_linux_boot.log --]
[-- Type: application/octet-stream, Size: 91753 bytes --]

Last login: Thu Apr 14 11:36:57 on ttys001
rahsin01@C02ZX0G9LVDN x86_64 % telnet e123343.cambridge.arm.com 10020
Trying 10.1.194.25...
Connected to e123343.cambridge.arm.com.
Escape character is '^]'.

AIS target system port 10020 device /dev/ttyUSB1 [115200 N81]


Shell> 
Shell> fs0:
FS0:\> cd EFI
FS0:\EFI\> cd BOOT
FS0:\EFI\BOOT\> bootaa64.efi
Welcome to GRUB!

error: no such device: ((hd0,gpt1)/EFI/BOOT)/EFI/BOOT/grub.cfg.





















                             GNU GRUB  version 2.06

 /----------------------------------------------------------------------------\
 | PARTUUID Boot: COM-HPC Yocto Image                                         | 
 | NVMe M.2  SSD Boot: COM-HPC Yocto Image                                    |
 |*USB Boot (If Drive is present): COM-HPC Yocto Image                        |
 | COM-HPC Yocto Image (Xen)                                                  |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            |
 |                                                                            | 
 \----------------------------------------------------------------------------/

      Use the ^ and v keys to select which entry is highlighted.          
      Press enter to boot the selected OS, `e' to edit the commands       
      before booting or `c' for a command-line.                           
                                                                               
                                                                               


















































EFI stub: Booting Linux Kernel...
EFI stub: Using DTB from configuration table
EFI stub: Exiting boot services and installing virtual address map...
PROGRESS CODE: V03101019 I0
[    0.000000] Booting Linux on physical CPU 0x0000100000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: TPMFinalLog=0x807f9ef0000 ACPI 2.0=0x807fa0d0018 SMBIOS 3.0=0x807f8e30000 MEMATTR=0x807f7de0018 ESRT=0x807f7f58e98 TPMEventLog=0x807f7de1018 RNG=0xffb4ba98 MEMRESERVE=0x807f7eb7e98 
[    0.000000] efi: seeding entropy pool
[    0.000000] esrt: Reserving ESRT space from 0x00000807f7f58e98 to 0x00000807f7f58ed0.
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807FA0D0018 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807FA0DFE98 0000A4 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807FA0DFB98 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807FA0D7518 000AF4 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x807fc070e00-0x807fc072fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000088300000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000088300000-0x00000000883fffff]
[    0.000000]   node   0: [mem 0x0000000090000000-0x0000000091ffffff]
[    0.000000]   node   0: [mem 0x0000000092000000-0x00000000927bffff]
[    0.000000]   node   0: [mem 0x00000000927c0000-0x00000000ffb3ffff]
[    0.000000]   node   0: [mem 0x00000000ffb40000-0x00000000ffb4ffff]
[    0.000000]   node   0: [mem 0x00000000ffb50000-0x00000000ffffffff]
[    0.000000]   node   0: [mem 0x0000080000000000-0x000008007fffffff]
[    0.000000]   node   0: [mem 0x0000080100000000-0x00000807f6a3ffff]
[    0.000000]   node   0: [mem 0x00000807f6a40000-0x00000807f6adffff]
[    0.000000]   node   0: [mem 0x00000807f6ae0000-0x00000807f6bd3fff]
[    0.000000]   node   0: [mem 0x00000807f6bd4000-0x00000807f7297fff]
[    0.000000]   node   0: [mem 0x00000807f7298000-0x00000807f7e7ffff]
[    0.000000]   node   0: [mem 0x00000807f7e80000-0x00000807f7e9ffff]
[    0.000000]   node   0: [mem 0x00000807f7ea0000-0x00000807f7eeffff]
[    0.000000]   node   0: [mem 0x00000807f7ef0000-0x00000807f7f2ffff]
[    0.000000]   node   0: [mem 0x00000807f7f30000-0x00000807f87effff]
[    0.000000]   node   0: [mem 0x00000807f87f0000-0x00000807f882ffff]
[    0.000000]   node   0: [mem 0x00000807f8830000-0x00000807f8a6ffff]
[    0.000000]   node   0: [mem 0x00000807f8a70000-0x00000807f8aaffff]
[    0.000000]   node   0: [mem 0x00000807f8ab0000-0x00000807f8e1ffff]
[    0.000000]   node   0: [mem 0x00000807f8e20000-0x00000807f8e3ffff]
[    0.000000]   node   0: [mem 0x00000807f8e40000-0x00000807f8e6ffff]
[    0.000000]   node   0: [mem 0x00000807f8e70000-0x00000807f9e7ffff]
[    0.000000]   node   0: [mem 0x00000807f9e80000-0x00000807f9eeffff]
[    0.000000]   node   0: [mem 0x00000807f9ef0000-0x00000807f9f1ffff]
[    0.000000]   node   0: [mem 0x00000807f9f20000-0x00000807f9fbffff]
[    0.000000]   node   0: [mem 0x00000807f9fc0000-0x00000807f9ffffff]
[    0.000000]   node   0: [mem 0x00000807fa000000-0x00000807fa0fffff]
[    0.000000]   node   0: [mem 0x00000807fa100000-0x00000807fa19ffff]
[    0.000000]   node   0: [mem 0x00000807fa1a0000-0x00000807fa26ffff]
[    0.000000]   node   0: [mem 0x00000807fa270000-0x00000807fa4affff]
[    0.000000]   node   0: [mem 0x00000807fa4b0000-0x00000807fa71ffff]
[    0.000000]   node   0: [mem 0x00000807fa720000-0x00000807fa75ffff]
[    0.000000]   node   0: [mem 0x00000807fa760000-0x00000807fa8cffff]
[    0.000000]   node   0: [mem 0x00000807fa8d0000-0x00000807fa96ffff]
[    0.000000]   node   0: [mem 0x00000807fa970000-0x00000807fa9fffff]
[    0.000000]   node   0: [mem 0x00000807faa00000-0x00000807fbaaffff]
[    0.000000]   node   0: [mem 0x00000807fbab0000-0x00000807fbb3ffff]
[    0.000000]   node   0: [mem 0x00000807fbb40000-0x00000807fbbdffff]
[    0.000000]   node   0: [mem 0x00000807fbbe0000-0x00000807fbcaffff]
[    0.000000]   node   0: [mem 0x00000807fbcb0000-0x00000807fbceffff]
[    0.000000]   node   0: [mem 0x00000807fbcf0000-0x00000807fbd5ffff]
[    0.000000]   node   0: [mem 0x00000807fbd60000-0x00000807fbdfffff]
[    0.000000]   node   0: [mem 0x00000807fbe00000-0x00000807ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000088300000-0x00000807ffffffff]
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x80100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x90100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xe0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0xf0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x100100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x110100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x160100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x170100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x180100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x190100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1e0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x1f0100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x200100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x210100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x260100 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270000 -> Node 0
[    0.000000] ACPI: NUMA: SRAT: PXM 0 -> MPIDR 0x270100 -> Node 0
[    0.000000] percpu: Embedded 31 pages/cpu s89240 r8192 d29544 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: ARM erratum 1418040
[    0.000000] alternatives: patching kernel code
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8193276
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/Image rootwait rw root=/dev/sda2
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.000000] printk: log_buf_len min size: 131072 bytes
[    0.000000] printk: log_buf_len: 262144 bytes
[    0.000000] printk: early log buf free: 121248(92%)
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000fbb40000-0x00000000ffb40000] (64MB)
[    0.000000] Memory: 32502184K/33293312K available (13568K kernel code, 1996K rwdata, 3480K rodata, 4160K init, 822K bss, 791128K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 41387 entries in 162 pages
[    0.000000] ftrace: allocated 162 pages with 3 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=32.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 672 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 100000 region 0:0x0000100100540000
[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 3 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 4 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 5 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 6 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 7 -> Node 0
[    0.000000] ITS [mem 0x100100040000-0x10010005ffff]
[    0.000000] ITS@0x0000100100040000: allocated 8192 Devices @80000220000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100040000: allocated 32768 Interrupt Collections @80000230000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100060000-0x10010007ffff]
[    0.000000] ITS@0x0000100100060000: allocated 8192 Devices @80000250000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100060000: allocated 32768 Interrupt Collections @80000260000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100080000-0x10010009ffff]
[    0.000000] ITS@0x0000100100080000: allocated 8192 Devices @80000280000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100080000: allocated 32768 Interrupt Collections @80000290000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000a0000-0x1001000bffff]
[    0.000000] ITS@0x00001001000a0000: allocated 8192 Devices @800002b0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000a0000: allocated 32768 Interrupt Collections @800002c0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000c0000-0x1001000dffff]
[    0.000000] ITS@0x00001001000c0000: allocated 8192 Devices @800002e0000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000c0000: allocated 32768 Interrupt Collections @800002f0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000e0000-0x1001000fffff]
[    0.000000] ITS@0x00001001000e0000: allocated 8192 Devices @80000310000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000e0000: allocated 32768 Interrupt Collections @80000320000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100100000-0x10010011ffff]
[    0.000000] ITS@0x0000100100100000: allocated 8192 Devices @80000340000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100100000: allocated 32768 Interrupt Collections @80000350000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100120000-0x10010013ffff]
[    0.000000] ITS@0x0000100100120000: allocated 8192 Devices @80000370000 (indirect, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100120000: allocated 32768 Interrupt Collections @80000380000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] GICv3: using LPI property table @0x0000080000390000
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000800003a0000
[    0.000000] random: get_random_bytes called from start_kernel+0x394/0x554 with crng_init=0
[    0.000000] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.000000] ACPI GTDT: found 1 memory-mapped timer block(s).
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 25.00MHz (phys/phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000001] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000055] Console: colour dummy device 80x25
[    0.000077] ACPI: Core revision 20200925
[    0.000489] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    0.000494] pid_max: default: 32768 minimum: 301
[    0.000522] LSM: Security Framework initializing
[    0.000649] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.000732] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.001581] rcu: Hierarchical SRCU implementation.
[    0.001710] Platform MSI: ITS@0x100100040000 domain created
[    0.001714] Platform MSI: ITS@0x100100060000 domain created
[    0.001717] Platform MSI: ITS@0x100100080000 domain created
[    0.001720] Platform MSI: ITS@0x1001000a0000 domain created
[    0.001722] Platform MSI: ITS@0x1001000c0000 domain created
[    0.001725] Platform MSI: ITS@0x1001000e0000 domain created
[    0.001728] Platform MSI: ITS@0x100100100000 domain created
[    0.001733] Platform MSI: ITS@0x100100120000 domain created
[    0.001739] PCI/MSI: ITS@0x100100040000 domain created
[    0.001742] PCI/MSI: ITS@0x100100060000 domain created
[    0.001744] PCI/MSI: ITS@0x100100080000 domain created
[    0.001748] PCI/MSI: ITS@0x1001000a0000 domain created
[    0.001751] PCI/MSI: ITS@0x1001000c0000 domain created
[    0.001754] PCI/MSI: ITS@0x1001000e0000 domain created
[    0.001757] PCI/MSI: ITS@0x100100100000 domain created
[    0.001761] PCI/MSI: ITS@0x100100120000 domain created
[    0.001767] Remapping and enabling EFI services.
[    0.003614] smp: Bringing up secondary CPUs ...
[    0.003935] Detected PIPT I-cache on CPU1
[    0.003963] GICv3: CPU1: found redistributor 180000 region 0:0x0000100100740000
[    0.003988] GICv3: CPU1: using allocated LPI pending table @0x00000800003b0000
[    0.004033] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004050] CPU1: Booted secondary processor 0x0000180000 [0x413fd0c1]
[    0.004348] Detected PIPT I-cache on CPU2
[    0.004375] GICv3: CPU2: found redistributor 160000 region 0:0x00001001006c0000
[    0.004399] GICv3: CPU2: using allocated LPI pending table @0x00000800003c0000
[    0.004446] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004459] CPU2: Booted secondary processor 0x0000160000 [0x413fd0c1]
[    0.004742] Detected PIPT I-cache on CPU3
[    0.004771] GICv3: CPU3: found redistributor 1e0000 region 0:0x00001001008c0000
[    0.004795] GICv3: CPU3: using allocated LPI pending table @0x00000800003d0000
[    0.004843] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.004859] CPU3: Booted secondary processor 0x00001e0000 [0x413fd0c1]
[    0.005139] Detected PIPT I-cache on CPU4
[    0.005158] GICv3: CPU4: found redistributor 80000 region 0:0x0000100100340000
[    0.005183] GICv3: CPU4: using allocated LPI pending table @0x00000800003e0000
[    0.005232] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.005244] CPU4: Booted secondary processor 0x0000080000 [0x413fd0c1]
[    0.005539] Detected PIPT I-cache on CPU5
[    0.005568] GICv3: CPU5: found redistributor 200000 region 0:0x0000100100940000
[    0.005593] GICv3: CPU5: using allocated LPI pending table @0x00000800003f0000
[    0.005640] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.005657] CPU5: Booted secondary processor 0x0000200000 [0x413fd0c1]
[    0.005936] Detected PIPT I-cache on CPU6
[    0.005959] GICv3: CPU6: found redistributor e0000 region 0:0x00001001004c0000
[    0.005984] GICv3: CPU6: using allocated LPI pending table @0x0000080000800000
[    0.006035] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006049] CPU6: Booted secondary processor 0x00000e0000 [0x413fd0c1]
[    0.006348] Detected PIPT I-cache on CPU7
[    0.006381] GICv3: CPU7: found redistributor 260000 region 0:0x0000100100ac0000
[    0.006406] GICv3: CPU7: using allocated LPI pending table @0x0000080000810000
[    0.006455] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006472] CPU7: Booted secondary processor 0x0000260000 [0x413fd0c1]
[    0.006750] Detected PIPT I-cache on CPU8
[    0.006773] GICv3: CPU8: found redistributor 110000 region 0:0x0000100100580000
[    0.006798] GICv3: CPU8: using allocated LPI pending table @0x0000080000820000
[    0.006845] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.006858] CPU8: Booted secondary processor 0x0000110000 [0x413fd0c1]
[    0.007135] Detected PIPT I-cache on CPU9
[    0.007161] GICv3: CPU9: found redistributor 190000 region 0:0x0000100100780000
[    0.007186] GICv3: CPU9: using allocated LPI pending table @0x0000080000830000
[    0.007234] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.007251] CPU9: Booted secondary processor 0x0000190000 [0x413fd0c1]
[    0.007531] Detected PIPT I-cache on CPU10
[    0.007557] GICv3: CPU10: found redistributor 170000 region 0:0x0000100100700000
[    0.007583] GICv3: CPU10: using allocated LPI pending table @0x0000080000840000
[    0.007631] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.007649] CPU10: Booted secondary processor 0x0000170000 [0x413fd0c1]
[    0.007942] Detected PIPT I-cache on CPU11
[    0.007971] GICv3: CPU11: found redistributor 1f0000 region 0:0x0000100100900000
[    0.007997] GICv3: CPU11: using allocated LPI pending table @0x0000080000850000
[    0.008044] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008062] CPU11: Booted secondary processor 0x00001f0000 [0x413fd0c1]
[    0.008422] Detected PIPT I-cache on CPU12
[    0.008442] GICv3: CPU12: found redistributor 90000 region 0:0x0000100100380000
[    0.008469] GICv3: CPU12: using allocated LPI pending table @0x0000080000860000
[    0.008517] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008535] CPU12: Booted secondary processor 0x0000090000 [0x413fd0c1]
[    0.008843] Detected PIPT I-cache on CPU13
[    0.008872] GICv3: CPU13: found redistributor 210000 region 0:0x0000100100980000
[    0.008900] GICv3: CPU13: using allocated LPI pending table @0x0000080000870000
[    0.008945] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.008963] CPU13: Booted secondary processor 0x0000210000 [0x413fd0c1]
[    0.009408] Detected PIPT I-cache on CPU14
[    0.009431] GICv3: CPU14: found redistributor f0000 region 0:0x0000100100500000
[    0.009458] GICv3: CPU14: using allocated LPI pending table @0x0000080000880000
[    0.009507] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.009526] CPU14: Booted secondary processor 0x00000f0000 [0x413fd0c1]
[    0.009839] Detected PIPT I-cache on CPU15
[    0.009872] GICv3: CPU15: found redistributor 270000 region 0:0x0000100100b00000
[    0.009899] GICv3: CPU15: using allocated LPI pending table @0x0000080000890000
[    0.009948] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.009967] CPU15: Booted secondary processor 0x0000270000 [0x413fd0c1]
[    0.010256] Detected PIPT I-cache on CPU16
[    0.010279] GICv3: CPU16: found redistributor 100100 region 0:0x0000100100560000
[    0.010306] GICv3: CPU16: using allocated LPI pending table @0x00000800008a0000
[    0.010354] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.010373] CPU16: Booted secondary processor 0x0000100100 [0x413fd0c1]
[    0.010813] Detected PIPT I-cache on CPU17
[    0.010840] GICv3: CPU17: found redistributor 180100 region 0:0x0000100100760000
[    0.010867] GICv3: CPU17: using allocated LPI pending table @0x00000800008b0000
[    0.010915] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.010935] CPU17: Booted secondary processor 0x0000180100 [0x413fd0c1]
[    0.011226] Detected PIPT I-cache on CPU18
[    0.011252] GICv3: CPU18: found redistributor 160100 region 0:0x00001001006e0000
[    0.011281] GICv3: CPU18: using allocated LPI pending table @0x00000800008c0000
[    0.011329] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.011349] CPU18: Booted secondary processor 0x0000160100 [0x413fd0c1]
[    0.011654] Detected PIPT I-cache on CPU19
[    0.011683] GICv3: CPU19: found redistributor 1e0100 region 0:0x00001001008e0000
[    0.011712] GICv3: CPU19: using allocated LPI pending table @0x00000800008d0000
[    0.011759] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.011779] CPU19: Booted secondary processor 0x00001e0100 [0x413fd0c1]
[    0.012138] Detected PIPT I-cache on CPU20
[    0.012158] GICv3: CPU20: found redistributor 80100 region 0:0x0000100100360000
[    0.012186] GICv3: CPU20: using allocated LPI pending table @0x00000800008e0000
[    0.012233] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.012248] CPU20: Booted secondary processor 0x0000080100 [0x413fd0c1]
[    0.012629] Detected PIPT I-cache on CPU21
[    0.012659] GICv3: CPU21: found redistributor 200100 region 0:0x0000100100960000
[    0.012690] GICv3: CPU21: using allocated LPI pending table @0x00000800008f0000
[    0.012737] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.012758] CPU21: Booted secondary processor 0x0000200100 [0x413fd0c1]
[    0.013210] Detected PIPT I-cache on CPU22
[    0.013235] GICv3: CPU22: found redistributor e0100 region 0:0x00001001004e0000
[    0.013265] GICv3: CPU22: using allocated LPI pending table @0x0000080000900000
[    0.013315] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.013337] CPU22: Booted secondary processor 0x00000e0100 [0x413fd0c1]
[    0.013646] Detected PIPT I-cache on CPU23
[    0.013680] GICv3: CPU23: found redistributor 260100 region 0:0x0000100100ae0000
[    0.013710] GICv3: CPU23: using allocated LPI pending table @0x0000080000910000
[    0.013757] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.013778] CPU23: Booted secondary processor 0x0000260100 [0x413fd0c1]
[    0.014222] Detected PIPT I-cache on CPU24
[    0.014246] GICv3: CPU24: found redistributor 110100 region 0:0x00001001005a0000
[    0.014276] GICv3: CPU24: using allocated LPI pending table @0x0000080000920000
[    0.014323] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.014346] CPU24: Booted secondary processor 0x0000110100 [0x413fd0c1]
[    0.014646] Detected PIPT I-cache on CPU25
[    0.014672] GICv3: CPU25: found redistributor 190100 region 0:0x00001001007a0000
[    0.014702] GICv3: CPU25: using allocated LPI pending table @0x0000080000930000
[    0.014749] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.014771] CPU25: Booted secondary processor 0x0000190100 [0x413fd0c1]
[    0.015226] Detected PIPT I-cache on CPU26
[    0.015254] GICv3: CPU26: found redistributor 170100 region 0:0x0000100100720000
[    0.015285] GICv3: CPU26: using allocated LPI pending table @0x0000080000940000
[    0.015334] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.015356] CPU26: Booted secondary processor 0x0000170100 [0x413fd0c1]
[    0.015807] Detected PIPT I-cache on CPU27
[    0.015837] GICv3: CPU27: found redistributor 1f0100 region 0:0x0000100100920000
[    0.015868] GICv3: CPU27: using allocated LPI pending table @0x0000080000950000
[    0.015913] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.015935] CPU27: Booted secondary processor 0x00001f0100 [0x413fd0c1]
[    0.016424] Detected PIPT I-cache on CPU28
[    0.016445] GICv3: CPU28: found redistributor 90100 region 0:0x00001001003a0000
[    0.016475] GICv3: CPU28: using allocated LPI pending table @0x0000080000960000
[    0.016523] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.016546] CPU28: Booted secondary processor 0x0000090100 [0x413fd0c1]
[    0.016857] Detected PIPT I-cache on CPU29
[    0.016887] GICv3: CPU29: found redistributor 210100 region 0:0x00001001009a0000
[    0.016918] GICv3: CPU29: using allocated LPI pending table @0x0000080000970000
[    0.016966] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.016989] CPU29: Booted secondary processor 0x0000210100 [0x413fd0c1]
[    0.017426] Detected PIPT I-cache on CPU30
[    0.017450] GICv3: CPU30: found redistributor f0100 region 0:0x0000100100520000
[    0.017481] GICv3: CPU30: using allocated LPI pending table @0x0000080000980000
[    0.017530] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.017554] CPU30: Booted secondary processor 0x00000f0100 [0x413fd0c1]
[    0.017851] Detected PIPT I-cache on CPU31
[    0.017884] GICv3: CPU31: found redistributor 270100 region 0:0x0000100100b20000
[    0.017916] GICv3: CPU31: using allocated LPI pending table @0x0000080000990000
[    0.017963] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.017986] CPU31: Booted secondary processor 0x0000270100 [0x413fd0c1]
[    0.018071] smp: Brought up 1 node, 32 CPUs
[    0.018165] SMP: Total of 32 processors activated.
[    0.018168] CPU features: detected: Privileged Access Never
[    0.018169] CPU features: detected: LSE atomic instructions
[    0.018171] CPU features: detected: User Access Override
[    0.018173] CPU features: detected: 32-bit EL0 Support
[    0.018175] CPU features: detected: Common not Private translations
[    0.018177] CPU features: detected: RAS Extension Support
[    0.018179] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.018181] CPU features: detected: CRC32 instructions
[    0.018183] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.050091] CPU: All CPU(s) started at EL2
[    0.050887] devtmpfs: initialized
[    0.051161] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.051167] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.051401] SMBIOS 3.3.0 present.
[    0.051406] DMI: ADLINK COM-HPC-ALT/COM-HPC-ALT, BIOS TianoCore EDKII 11/23/2021
[    0.051636] NET: Registered protocol family 16
[    0.052154] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.052322] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.052486] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.052586] thermal_sys: Registered thermal governor 'step_wise'
[    0.052668] cpuidle: using governor menu
[    0.052809] Detected 15 PCC Subspaces
[    0.052832] Registering PCC driver as Mailbox controller
[    0.052870] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.053169] ASID allocator initialised with 65536 entries
[    0.053176] ACPI: bus type PCI registered
[    0.053178] Serial: AMBA PL011 UART driver
[    0.055362] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.055366] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.055368] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.055369] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.056097] cryptd: max_cpu_qlen set to 1000
[    0.124058] raid6: neonx8   gen()  7776 MB/s
[    0.192088] raid6: neonx8   xor()  5989 MB/s
[    0.260118] raid6: neonx4   gen()  7601 MB/s
[    0.328148] raid6: neonx4   xor()  6326 MB/s
[    0.396180] raid6: neonx2   gen()  7272 MB/s
[    0.464208] raid6: neonx2   xor()  5726 MB/s
[    0.532243] raid6: neonx1   gen()  5995 MB/s
[    0.600272] raid6: neonx1   xor()  4952 MB/s
[    0.668304] raid6: int64x8  gen()  3600 MB/s
[    0.736332] raid6: int64x8  xor()  2019 MB/s
[    0.804358] raid6: int64x4  gen()  4127 MB/s
[    0.872439] raid6: int64x4  xor()  2191 MB/s
[    0.940418] raid6: int64x2  gen()  3503 MB/s
[    1.008441] raid6: int64x2  xor()  1891 MB/s
[    1.076469] raid6: int64x1  gen()  2875 MB/s
[    1.144499] raid6: int64x1  xor()  1508 MB/s
[    1.144501] raid6: using algorithm neonx8 gen() 7776 MB/s
[    1.144503] raid6: .... xor() 5989 MB/s, rmw enabled
[    1.144505] raid6: using neon recovery algorithm
[    1.144583] ACPI: Added _OSI(Module Device)
[    1.144585] ACPI: Added _OSI(Processor Device)
[    1.144587] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.144589] ACPI: Added _OSI(Processor Aggregator Device)
[    1.144592] ACPI: Added _OSI(Linux-Dell-Video)
[    1.144594] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    1.144596] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    1.164866] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    1.171144] ACPI: Interpreter enabled
[    1.171147] ACPI: Using GIC for interrupt routing
[    1.171162] ACPI: MCFG table detected, 5 entries
[    1.171168] ACPI: IORT: SMMU-v3[33ffe0000000] Mapped to Proximity domain 0
[    1.171193] ACPI: IORT: SMMU-v3[37ffe0000000] Mapped to Proximity domain 0
[    1.171207] ACPI: IORT: SMMU-v3[3fffe0000000] Mapped to Proximity domain 0
[    1.171219] ACPI: IORT: SMMU-v3[2bffe0000000] Mapped to Proximity domain 0
[    1.171233] ACPI: IORT: SMMU-v3[2fffe0000000] Mapped to Proximity domain 0
[    1.171322] HEST: Table parsing has been initialized.
[    1.206531] ARMH0011:00: ttyAMA0 at MMIO 0x100002600000 (irq = 79, base_baud = 0) is a SBSA
[    4.021269] printk: console [ttyAMA0] enabled
[    4.027329] ARMH0011:01: ttyAMA1 at MMIO 0x100002620000 (irq = 80, base_baud = 0) is a SBSA
[    4.037436] ACPI: PCI Root Bridge [PCI0] (domain 000c [bus 00-ff])
[    4.043620] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.052720] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control
[    4.060544] acpi PNP0A08:00: MCFG quirk: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.073356] acpi PNP0A08:00: ECAM area [mem 0x33fff0000000-0x33ffffffffff] reserved by PNP0C02:00
[    4.082229] acpi PNP0A08:00: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff]
[    4.090389] PCI host bridge to bus 000c:00
[    4.094476] pci_bus 000c:00: root bus resource [mem 0x40000000-0x4fffffff window]
[    4.101948] pci_bus 000c:00: root bus resource [mem 0x300000000000-0x33ffdfffffff window]
[    4.110115] pci_bus 000c:00: root bus resource [bus 00-ff]
[    4.115625] pci 000c:00:00.0: [1def:e100] type 00 class 0x060000
[    4.121699] pci 000c:00:01.0: [1def:e101] type 01 class 0x060400
[    4.127746] pci 000c:00:01.0: supports D1 D2
[    4.132005] pci 000c:00:01.0: PME# supported from D0 D1 D3hot
[    4.138864] pci 000c:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    4.147032] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    4.158497] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    4.169009] pci 000c:00:01.0: BAR 8: assigned [mem 0x40000000-0x401fffff]
[    4.175787] pci 000c:00:01.0: BAR 9: assigned [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.184214] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.190470] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.197074] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.203330] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.209934] pci 000c:00:01.0: PCI bridge to [bus 01]
[    4.214889] pci 000c:00:01.0:   bridge window [mem 0x40000000-0x401fffff]
[    4.221666] pci 000c:00:01.0:   bridge window [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.230094] pci_bus 000c:00: resource 4 [mem 0x40000000-0x4fffffff window]
[    4.236959] pci_bus 000c:00: resource 5 [mem 0x300000000000-0x33ffdfffffff window]
[    4.244517] pci_bus 000c:01: resource 1 [mem 0x40000000-0x401fffff]
[    4.250774] pci_bus 000c:01: resource 2 [mem 0x300000000000-0x3000001fffff 64bit pref]
[    4.258721] ACPI: PCI Root Bridge [PCI1] (domain 000d [bus 00-ff])
[    4.264898] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.273997] acpi PNP0A08:01: PCIe port services disabled; not requesting _OSC control
[    4.281818] acpi PNP0A08:01: MCFG quirk: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.294614] acpi PNP0A08:01: ECAM area [mem 0x37fff0000000-0x37ffffffffff] reserved by PNP0C02:00
[    4.303487] acpi PNP0A08:01: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff]
[    4.311639] PCI host bridge to bus 000d:00
[    4.315727] pci_bus 000d:00: root bus resource [mem 0x50000000-0x5fffffff window]
[    4.323198] pci_bus 000d:00: root bus resource [mem 0x340000000000-0x37ffdfffffff window]
[    4.331364] pci_bus 000d:00: root bus resource [bus 00-ff]
[    4.336870] pci 000d:00:00.0: [1def:e100] type 00 class 0x060000
[    4.342934] pci 000d:00:01.0: [1def:e101] type 01 class 0x060400
[    4.348966] pci 000d:00:01.0: supports D1 D2
[    4.353226] pci 000d:00:01.0: PME# supported from D0 D1 D3hot
[    4.359047] pci 000d:01:00.0: [10de:1e89] type 00 class 0x030000
[    4.365054] pci 000d:01:00.0: reg 0x10: [mem 0x50000000-0x50ffffff]
[    4.371318] pci 000d:01:00.0: reg 0x14: [mem 0x340000000000-0x34000fffffff 64bit pref]
[    4.379231] pci 000d:01:00.0: reg 0x1c: [mem 0x340010000000-0x340011ffffff 64bit pref]
[    4.387140] pci 000d:01:00.0: reg 0x24: [io  0x57ffe000-0x57ffe07f]
[    4.393400] pci 000d:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.400151] pci 000d:01:00.0: PME# supported from D0 D3hot D3cold
[    4.406304] pci 000d:01:00.1: [10de:10f8] type 00 class 0x040300
[    4.412309] pci 000d:01:00.1: reg 0x10: [mem 0x51000000-0x51003fff]
[    4.418686] pci 000d:01:00.2: [10de:1ad8] type 00 class 0x0c0330
[    4.424695] pci 000d:01:00.2: reg 0x10: [mem 0x340012000000-0x34001203ffff 64bit pref]
[    4.432612] pci 000d:01:00.2: reg 0x1c: [mem 0x340012040000-0x34001204ffff 64bit pref]
[    4.440568] pci 000d:01:00.2: PME# supported from D0 D3hot D3cold
[    4.446708] pci 000d:01:00.3: [10de:1ad9] type 00 class 0x0c8000
[    4.452714] pci 000d:01:00.3: reg 0x10: [mem 0x51004000-0x51004fff]
[    4.459040] pci 000d:01:00.3: PME# supported from D0 D3hot D3cold
[    4.465177] pci 000d:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    4.486456] pci 000d:00:01.0: BAR 9: assigned [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.494884] pci 000d:00:01.0: BAR 8: assigned [mem 0x50000000-0x517fffff]
[    4.501661] pci 000d:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.507917] pci 000d:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.514522] pci 000d:01:00.0: BAR 1: assigned [mem 0x340000000000-0x34000fffffff 64bit pref]
[    4.522955] pci 000d:01:00.0: BAR 3: assigned [mem 0x340010000000-0x340011ffffff 64bit pref]
[    4.531387] pci 000d:01:00.0: BAR 0: assigned [mem 0x50000000-0x50ffffff]
[    4.538166] pci 000d:01:00.0: BAR 6: assigned [mem 0x51000000-0x5107ffff pref]
[    4.545378] pci 000d:01:00.2: BAR 0: assigned [mem 0x340012000000-0x34001203ffff 64bit pref]
[    4.553811] pci 000d:01:00.2: BAR 3: assigned [mem 0x340012040000-0x34001204ffff 64bit pref]
[    4.562243] pci 000d:01:00.1: BAR 0: assigned [mem 0x51080000-0x51083fff]
[    4.569022] pci 000d:01:00.3: BAR 0: assigned [mem 0x51084000-0x51084fff]
[    4.575801] pci 000d:01:00.0: BAR 5: no space for [io  size 0x0080]
[    4.582057] pci 000d:01:00.0: BAR 5: failed to assign [io  size 0x0080]
[    4.588662] pci 000d:00:01.0: PCI bridge to [bus 01]
[    4.593617] pci 000d:00:01.0:   bridge window [mem 0x50000000-0x517fffff]
[    4.600394] pci 000d:00:01.0:   bridge window [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.608821] pci_bus 000d:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    4.617855] pci_bus 000d:00: resource 4 [mem 0x50000000-0x5fffffff window]
[    4.624719] pci_bus 000d:00: resource 5 [mem 0x340000000000-0x37ffdfffffff window]
[    4.632276] pci_bus 000d:01: resource 1 [mem 0x50000000-0x517fffff]
[    4.638533] pci_bus 000d:01: resource 2 [mem 0x340000000000-0x340017ffffff 64bit pref]
[    4.646492] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus 00-ff])
[    4.652671] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    4.661770] acpi PNP0A08:03: PCIe port services disabled; not requesting _OSC control
[    4.669591] acpi PNP0A08:03: MCFG quirk: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    4.682395] acpi PNP0A08:03: ECAM area [mem 0x3ffff0000000-0x3fffffffffff] reserved by PNP0C02:00
[    4.691266] acpi PNP0A08:03: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff]
[    4.699420] PCI host bridge to bus 0000:00
[    4.703507] pci_bus 0000:00: root bus resource [mem 0x70000000-0x7fffffff window]
[    4.710979] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3fffdfffffff window]
[    4.719145] pci_bus 0000:00: root bus resource [bus 00-ff]
[    4.724651] pci 0000:00:00.0: [1def:e100] type 00 class 0x060000
[    4.730716] pci 0000:00:01.0: [1def:e101] type 01 class 0x060400
[    4.736748] pci 0000:00:01.0: supports D1 D2
[    4.741008] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    4.746826] pci 0000:01:00.0: [8086:1589] type 00 class 0x020000
[    4.752835] pci 0000:01:00.0: reg 0x10: [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    4.760751] pci 0000:01:00.0: reg 0x1c: [mem 0x3c0004818000-0x3c000481ffff 64bit pref]
[    4.768665] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.775427] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    4.781585] pci 0000:01:00.1: [8086:1589] type 00 class 0x020000
[    4.787593] pci 0000:01:00.1: reg 0x10: [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    4.795511] pci 0000:01:00.1: reg 0x1c: [mem 0x3c0004810000-0x3c0004817fff 64bit pref]
[    4.803425] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.810183] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    4.816334] pci 0000:01:00.2: [8086:1589] type 00 class 0x020000
[    4.822343] pci 0000:01:00.2: reg 0x10: [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    4.830260] pci 0000:01:00.2: reg 0x1c: [mem 0x3c0004808000-0x3c000480ffff 64bit pref]
[    4.838173] pci 0000:01:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.844931] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[    4.851079] pci 0000:01:00.3: [8086:1589] type 00 class 0x020000
[    4.857088] pci 0000:01:00.3: reg 0x10: [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    4.865005] pci 0000:01:00.3: reg 0x1c: [mem 0x3c0004800000-0x3c0004807fff 64bit pref]
[    4.872919] pci 0000:01:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    4.879677] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[    4.885840] pci 0000:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01-02] add_size 1000
[    4.894269] pci 0000:00:01.0: BAR 9: assigned [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    4.902697] pci 0000:00:01.0: BAR 8: assigned [mem 0x70000000-0x701fffff]
[    4.909474] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.915730] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.922334] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[    4.928590] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    4.935195] pci 0000:01:00.0: BAR 0: assigned [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[    4.943628] pci 0000:01:00.1: BAR 0: assigned [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[    4.952061] pci 0000:01:00.2: BAR 0: assigned [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    4.960493] pci 0000:01:00.3: BAR 0: assigned [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    4.968925] pci 0000:01:00.0: BAR 6: assigned [mem 0x70000000-0x7007ffff pref]
[    4.976136] pci 0000:01:00.1: BAR 6: assigned [mem 0x70080000-0x700fffff pref]
[    4.983347] pci 0000:01:00.2: BAR 6: assigned [mem 0x70100000-0x7017ffff pref]
[    4.990557] pci 0000:01:00.3: BAR 6: assigned [mem 0x70180000-0x701fffff pref]
[    4.997769] pci 0000:01:00.0: BAR 3: assigned [mem 0x3c0004000000-0x3c0004007fff 64bit pref]
[    5.006201] pci 0000:01:00.1: BAR 3: assigned [mem 0x3c0004008000-0x3c000400ffff 64bit pref]
[    5.014634] pci 0000:01:00.2: BAR 3: assigned [mem 0x3c0004010000-0x3c0004017fff 64bit pref]
[    5.023066] pci 0000:01:00.3: BAR 3: assigned [mem 0x3c0004018000-0x3c000401ffff 64bit pref]
[    5.031498] pci 0000:00:01.0: PCI bridge to [bus 01-02]
[    5.036713] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x701fffff]
[    5.043491] pci 0000:00:01.0:   bridge window [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    5.051918] pci_bus 0000:00: resource 4 [mem 0x70000000-0x7fffffff window]
[    5.058782] pci_bus 0000:00: resource 5 [mem 0x3c0000000000-0x3fffdfffffff window]
[    5.066341] pci_bus 0000:01: resource 1 [mem 0x70000000-0x701fffff]
[    5.072596] pci_bus 0000:01: resource 2 [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[    5.080559] ACPI: PCI Root Bridge [PCI6] (domain 0004 [bus 00-ff])
[    5.086736] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    5.095834] acpi PNP0A08:06: PCIe port services disabled; not requesting _OSC control
[    5.103655] acpi PNP0A08:06: MCFG quirk: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    5.116455] acpi PNP0A08:06: ECAM area [mem 0x2bfff0000000-0x2bffffffffff] reserved by PNP0C02:00
[    5.125327] acpi PNP0A08:06: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff]
[    5.133482] PCI host bridge to bus 0004:00
[    5.137569] pci_bus 0004:00: root bus resource [mem 0x20000000-0x2fffffff window]
[    5.145041] pci_bus 0004:00: root bus resource [mem 0x280000000000-0x2bffdfffffff window]
[    5.153208] pci_bus 0004:00: root bus resource [bus 00-ff]
[    5.158714] pci 0004:00:00.0: [1def:e110] type 00 class 0x060000
[    5.164776] pci 0004:00:01.0: [1def:e111] type 01 class 0x060400
[    5.170811] pci 0004:00:01.0: supports D1 D2
[    5.175071] pci 0004:00:01.0: PME# supported from D0 D1 D3hot
[    5.180855] pci 0004:00:03.0: [1def:e113] type 01 class 0x060400
[    5.186889] pci 0004:00:03.0: supports D1 D2
[    5.191148] pci 0004:00:03.0: PME# supported from D0 D1 D3hot
[    5.196934] pci 0004:00:05.0: [1def:e115] type 01 class 0x060400
[    5.202976] pci 0004:00:05.0: supports D1 D2
[    5.207236] pci 0004:00:05.0: PME# supported from D0 D1 D3hot
[    5.213055] pci 0004:01:00.0: [1a03:1150] type 01 class 0x060400
[    5.219102] pci 0004:01:00.0: enabling Extended Tags
[    5.224116] pci 0004:01:00.0: supports D1 D2
[    5.228375] pci 0004:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.235082] pci_bus 0004:02: extended config space not accessible
[    5.241187] pci 0004:02:00.0: [1a03:2000] type 00 class 0x030000
[    5.247202] pci 0004:02:00.0: reg 0x10: [mem 0x20000000-0x20ffffff]
[    5.253468] pci 0004:02:00.0: reg 0x14: [mem 0x21000000-0x2101ffff]
[    5.259734] pci 0004:02:00.0: reg 0x18: [io  0x27fff000-0x27fff07f]
[    5.266073] pci 0004:02:00.0: supports D1 D2
[    5.270333] pci 0004:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.277075] pci 0004:03:00.0: [1912:0014] type 00 class 0x0c0330
[    5.283091] pci 0004:03:00.0: reg 0x10: [mem 0x21200000-0x21201fff 64bit]
[    5.289971] pci 0004:03:00.0: PME# supported from D0 D3hot D3cold
[    5.296195] pci 0004:04:00.0: [8086:1533] type 00 class 0x020000
[    5.302220] pci 0004:04:00.0: reg 0x10: [mem 0x21100000-0x2117ffff]
[    5.308508] pci 0004:04:00.0: reg 0x18: [io  0x27ffe000-0x27ffe01f]
[    5.314779] pci 0004:04:00.0: reg 0x1c: [mem 0x21180000-0x21183fff]
[    5.321211] pci 0004:04:00.0: PME# supported from D0 D3hot D3cold
[    5.327407] pci 0004:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-02] add_size 200000 add_align 100000
[    5.339133] pci 0004:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    5.347299] pci 0004:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    5.358765] pci 0004:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 03] add_size 100000 add_align 100000
[    5.369275] pci 0004:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    5.380740] pci 0004:00:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    5.391254] pci 0004:00:01.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    5.398032] pci 0004:00:01.0: BAR 9: assigned [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.406459] pci 0004:00:03.0: BAR 8: assigned [mem 0x21800000-0x219fffff]
[    5.413237] pci 0004:00:03.0: BAR 9: assigned [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.421663] pci 0004:00:05.0: BAR 8: assigned [mem 0x21a00000-0x21bfffff]
[    5.428440] pci 0004:00:05.0: BAR 9: assigned [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.436866] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.443122] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.449725] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.455981] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.462584] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.468840] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.475445] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[    5.481701] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    5.488305] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[    5.494561] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    5.501164] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[    5.507420] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    5.514024] pci 0004:01:00.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[    5.520801] pci 0004:01:00.0: BAR 7: no space for [io  size 0x1000]
[    5.527057] pci 0004:01:00.0: BAR 7: failed to assign [io  size 0x1000]
[    5.533660] pci 0004:02:00.0: BAR 0: assigned [mem 0x20000000-0x20ffffff]
[    5.540440] pci 0004:02:00.0: BAR 1: assigned [mem 0x21000000-0x2101ffff]
[    5.547220] pci 0004:02:00.0: BAR 2: no space for [io  size 0x0080]
[    5.553476] pci 0004:02:00.0: BAR 2: failed to assign [io  size 0x0080]
[    5.560078] pci 0004:01:00.0: PCI bridge to [bus 02]
[    5.565035] pci 0004:01:00.0:   bridge window [mem 0x20000000-0x217fffff]
[    5.571819] pci 0004:00:01.0: PCI bridge to [bus 01-02]
[    5.577034] pci 0004:00:01.0:   bridge window [mem 0x20000000-0x217fffff]
[    5.583811] pci 0004:00:01.0:   bridge window [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.592240] pci 0004:03:00.0: BAR 0: assigned [mem 0x21800000-0x21801fff 64bit]
[    5.599546] pci 0004:00:03.0: PCI bridge to [bus 03]
[    5.604501] pci 0004:00:03.0:   bridge window [mem 0x21800000-0x219fffff]
[    5.611278] pci 0004:00:03.0:   bridge window [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.619706] pci 0004:04:00.0: BAR 0: assigned [mem 0x21a00000-0x21a7ffff]
[    5.626488] pci 0004:04:00.0: BAR 3: assigned [mem 0x21a80000-0x21a83fff]
[    5.633270] pci 0004:04:00.0: BAR 2: no space for [io  size 0x0020]
[    5.639525] pci 0004:04:00.0: BAR 2: failed to assign [io  size 0x0020]
[    5.646128] pci 0004:00:05.0: PCI bridge to [bus 04]
[    5.651105] pci 0004:00:05.0:   bridge window [mem 0x21a00000-0x21bfffff]
[    5.657883] pci 0004:00:05.0:   bridge window [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.666310] pci_bus 0004:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    5.675344] pci_bus 0004:00: resource 4 [mem 0x20000000-0x2fffffff window]
[    5.682208] pci_bus 0004:00: resource 5 [mem 0x280000000000-0x2bffdfffffff window]
[    5.689766] pci_bus 0004:01: resource 1 [mem 0x20000000-0x217fffff]
[    5.696022] pci_bus 0004:01: resource 2 [mem 0x280000000000-0x2800001fffff 64bit pref]
[    5.703927] pci_bus 0004:02: resource 1 [mem 0x20000000-0x217fffff]
[    5.710183] pci_bus 0004:03: resource 1 [mem 0x21800000-0x219fffff]
[    5.716439] pci_bus 0004:03: resource 2 [mem 0x280000200000-0x2800003fffff 64bit pref]
[    5.724345] pci_bus 0004:04: resource 1 [mem 0x21a00000-0x21bfffff]
[    5.730601] pci_bus 0004:04: resource 2 [mem 0x280000400000-0x2800005fffff 64bit pref]
[    5.738555] ACPI: PCI Root Bridge [PCI7] (domain 0005 [bus 00-ff])
[    5.744733] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    5.753833] acpi PNP0A08:07: PCIe port services disabled; not requesting _OSC control
[    5.761654] acpi PNP0A08:07: MCFG quirk: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    5.774457] acpi PNP0A08:07: ECAM area [mem 0x2ffff0000000-0x2fffffffffff] reserved by PNP0C02:00
[    5.783328] acpi PNP0A08:07: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff]
[    5.791481] PCI host bridge to bus 0005:00
[    5.795568] pci_bus 0005:00: root bus resource [mem 0x30000000-0x3fffffff window]
[    5.803040] pci_bus 0005:00: root bus resource [mem 0x2c0000000000-0x2fffdfffffff window]
[    5.811206] pci_bus 0005:00: root bus resource [bus 00-ff]
[    5.816712] pci 0005:00:00.0: [1def:e110] type 00 class 0x060000
[    5.822778] pci 0005:00:01.0: [1def:e111] type 01 class 0x060400
[    5.828821] pci 0005:00:01.0: supports D1 D2
[    5.833081] pci 0005:00:01.0: PME# supported from D0 D1 D3hot
[    5.838867] pci 0005:00:03.0: [1def:e113] type 01 class 0x060400
[    5.844901] pci 0005:00:03.0: supports D1 D2
[    5.849161] pci 0005:00:03.0: PME# supported from D0 D1 D3hot
[    5.854946] pci 0005:00:05.0: [1def:e115] type 01 class 0x060400
[    5.860989] pci 0005:00:05.0: supports D1 D2
[    5.865248] pci 0005:00:05.0: PME# supported from D0 D1 D3hot
[    5.871032] pci 0005:00:07.0: [1def:e117] type 01 class 0x060400
[    5.877061] pci 0005:00:07.0: supports D1 D2
[    5.881321] pci 0005:00:07.0: PME# supported from D0 D1 D3hot
[    5.888204] pci 0005:02:00.0: [1912:0014] type 00 class 0x0c0330
[    5.894220] pci 0005:02:00.0: reg 0x10: [mem 0x30100000-0x30101fff 64bit]
[    5.901102] pci 0005:02:00.0: PME# supported from D0 D3hot D3cold
[    5.908367] pci 0005:04:00.0: [126f:2263] type 00 class 0x010802
[    5.914381] pci 0005:04:00.0: reg 0x10: [mem 0x30000000-0x30003fff 64bit]
[    5.921339] pci 0005:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    5.929507] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    5.940972] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    5.951482] pci 0005:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    5.959648] pci 0005:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[    5.971114] pci 0005:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 02] add_size 100000 add_align 100000
[    5.981624] pci 0005:00:05.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[    5.989789] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[    6.001254] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[    6.011764] pci 0005:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    6.019930] pci 0005:00:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    6.031395] pci 0005:00:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[    6.041911] pci 0005:00:01.0: BAR 8: assigned [mem 0x30000000-0x301fffff]
[    6.048689] pci 0005:00:01.0: BAR 9: assigned [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.057115] pci 0005:00:03.0: BAR 8: assigned [mem 0x30200000-0x303fffff]
[    6.063893] pci 0005:00:03.0: BAR 9: assigned [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.072320] pci 0005:00:05.0: BAR 8: assigned [mem 0x30400000-0x305fffff]
[    6.079097] pci 0005:00:05.0: BAR 9: assigned [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.087524] pci 0005:00:07.0: BAR 8: assigned [mem 0x30600000-0x307fffff]
[    6.094301] pci 0005:00:07.0: BAR 9: assigned [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.102727] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    6.108983] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    6.115587] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    6.121843] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    6.128446] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    6.134701] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    6.141304] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    6.147560] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    6.154166] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[    6.160422] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[    6.167025] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[    6.173280] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[    6.179884] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[    6.186140] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[    6.192744] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[    6.199000] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    6.205604] pci 0005:00:01.0: PCI bridge to [bus 01]
[    6.210559] pci 0005:00:01.0:   bridge window [mem 0x30000000-0x301fffff]
[    6.217337] pci 0005:00:01.0:   bridge window [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.225765] pci 0005:02:00.0: BAR 0: assigned [mem 0x30200000-0x30201fff 64bit]
[    6.233072] pci 0005:00:03.0: PCI bridge to [bus 02]
[    6.238027] pci 0005:00:03.0:   bridge window [mem 0x30200000-0x303fffff]
[    6.244804] pci 0005:00:03.0:   bridge window [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.253231] pci 0005:00:05.0: PCI bridge to [bus 03]
[    6.258185] pci 0005:00:05.0:   bridge window [mem 0x30400000-0x305fffff]
[    6.264963] pci 0005:00:05.0:   bridge window [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.273391] pci 0005:04:00.0: BAR 0: assigned [mem 0x30600000-0x30603fff 64bit]
[    6.280706] pci 0005:00:07.0: PCI bridge to [bus 04]
[    6.285660] pci 0005:00:07.0:   bridge window [mem 0x30600000-0x307fffff]
[    6.292437] pci 0005:00:07.0:   bridge window [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.300865] pci_bus 0005:00: resource 4 [mem 0x30000000-0x3fffffff window]
[    6.307729] pci_bus 0005:00: resource 5 [mem 0x2c0000000000-0x2fffdfffffff window]
[    6.315288] pci_bus 0005:01: resource 1 [mem 0x30000000-0x301fffff]
[    6.321544] pci_bus 0005:01: resource 2 [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[    6.329449] pci_bus 0005:02: resource 1 [mem 0x30200000-0x303fffff]
[    6.335705] pci_bus 0005:02: resource 2 [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[    6.343610] pci_bus 0005:03: resource 1 [mem 0x30400000-0x305fffff]
[    6.349866] pci_bus 0005:03: resource 2 [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[    6.357771] pci_bus 0005:04: resource 1 [mem 0x30600000-0x307fffff]
[    6.364027] pci_bus 0005:04: resource 2 [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[    6.372144] iommu: Default domain type: Translated 
[    6.377050] pci 000d:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    6.385398] pci 0004:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    6.393741] pci 000d:01:00.0: vgaarb: bridge control possible
[    6.399476] pci 0004:02:00.0: vgaarb: bridge control possible
[    6.405213] pci 0004:02:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[    6.414073] vgaarb: loaded
[    6.416854] SCSI subsystem initialized
[    6.420597] ACPI: bus type USB registered
[    6.424613] usbcore: registered new interface driver usbfs
[    6.430101] usbcore: registered new interface driver hub
[    6.435417] usbcore: registered new device driver usb
[    6.440471] pps_core: LinuxPPS API ver. 1 registered
[    6.445425] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    6.454548] PTP clock support registered
[    6.458578] Registered efivars operations
[    6.463286] clocksource: Switched to clocksource arch_sys_counter
[    6.641898] pnp: PnP ACPI init
[    6.646328] system 00:00: [mem 0x3bfff0000000-0x3bffffffffff window] has been reserved
[    6.654240] system 00:00: [mem 0x3ffff0000000-0x3fffffffffff window] could not be reserved
[    6.662494] system 00:00: [mem 0x23fff0000000-0x23ffffffffff window] has been reserved
[    6.670400] system 00:00: [mem 0x27fff0000000-0x27ffffffffff window] has been reserved
[    6.678306] system 00:00: [mem 0x2bfff0000000-0x2bffffffffff window] could not be reserved
[    6.686559] system 00:00: [mem 0x2ffff0000000-0x2fffffffffff window] could not be reserved
[    6.694813] system 00:00: [mem 0x7bfff0000000-0x7bffffffffff window] has been reserved
[    6.702721] system 00:00: [mem 0x7ffff0000000-0x7fffffffffff window] has been reserved
[    6.710626] system 00:00: [mem 0x63fff0000000-0x63ffffffffff window] has been reserved
[    6.718532] system 00:00: [mem 0x67fff0000000-0x67ffffffffff window] has been reserved
[    6.726438] system 00:00: [mem 0x6bfff0000000-0x6bffffffffff window] has been reserved
[    6.734345] system 00:00: [mem 0x6ffff0000000-0x6fffffffffff window] has been reserved
[    6.742251] system 00:00: [mem 0x33fff0000000-0x33ffffffffff window] could not be reserved
[    6.750504] system 00:00: [mem 0x37fff0000000-0x37ffffffffff window] could not be reserved
[    6.758767] pnp: PnP ACPI: found 1 devices
[    6.764587] NET: Registered protocol family 2
[    6.769122] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    6.778003] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    6.787016] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    6.794882] TCP: Hash tables configured (established 262144 bind 65536)
[    6.801552] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    6.808758] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    6.816518] NET: Registered protocol family 1
[    6.821041] RPC: Registered named UNIX socket transport module.
[    6.826955] RPC: Registered udp transport module.
[    6.831649] RPC: Registered tcp transport module.
[    6.836343] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    6.842821] pci 000d:01:00.1: D0 power state depends on 000d:01:00.0
[    6.849219] pci 000d:01:00.2: D0 power state depends on 000d:01:00.0
[    6.855598] pci 000d:01:00.2: enabling device (0000 -> 0002)
[    6.861297] pci 000d:01:00.3: D0 power state depends on 000d:01:00.0
[    6.867699] pci 0004:03:00.0: enabling device (0000 -> 0002)
[    6.873387] pci 0005:02:00.0: enabling device (0000 -> 0002)
[    6.879059] PCI: CLS 128 bytes, default 64
[    6.884415] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 7 counters available
[    6.893929] workingset: timestamp_bits=42 max_order=23 bucket_order=0
[    6.902117] NFS: Registering the id_resolver key type
[    6.907169] Key type id_resolver registered
[    6.911343] Key type id_legacy registered
[    6.915610] Key type cifs.idmap registered
[    6.933960] xor: measuring software checksum speed
[    6.939755]    8regs           :  9759 MB/sec
[    6.944943]    32regs          : 11756 MB/sec
[    6.949996]    arm64_neon      : 13958 MB/sec
[    6.954351] xor: using function: arm64_neon (13958 MB/sec)
[    6.959844] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    6.967230] io scheduler mq-deadline registered
[    6.971757] io scheduler kyber registered
[    6.976411] gpio-dwapb APMC0D07:02: no IRQ for port0
[    6.982198] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    6.990582] ACPI: Power Button [PWRB]
[    6.997443] GHES: APEI firmware first mode is enabled by APEI bit.
[    7.003658] EINJ: Error INJection is initialized.
[    7.008389] ACPI GTDT: found 1 SBSA generic Watchdog(s).
[    7.014260] arm-smmu-v3 arm-smmu-v3.0.auto: option mask 0x0
[    7.019840] arm-smmu-v3 arm-smmu-v3.0.auto: IDR0.COHACC overridden by FW configuration (false)
[    7.028442] arm-smmu-v3 arm-smmu-v3.0.auto: ias 48-bit, oas 48-bit (features 0x00001ecf)
[    7.036824] arm-smmu-v3 arm-smmu-v3.0.auto: allocated 262144 entries for cmdq
[    7.044248] arm-smmu-v3 arm-smmu-v3.0.auto: allocated 131072 entries for evtq
[    7.052185] arm-smmu-v3 arm-smmu-v3.1.auto: option mask 0x0
[    7.057764] arm-smmu-v3 arm-smmu-v3.1.auto: IDR0.COHACC overridden by FW configuration (false)
[    7.066366] arm-smmu-v3 arm-smmu-v3.1.auto: ias 48-bit, oas 48-bit (features 0x00001ecf)
[    7.074744] arm-smmu-v3 arm-smmu-v3.1.auto: allocated 262144 entries for cmdq
[    7.082173] arm-smmu-v3 arm-smmu-v3.1.auto: allocated 131072 entries for evtq
[    7.089983] arm-smmu-v3 arm-smmu-v3.2.auto: option mask 0x0
[    7.095557] arm-smmu-v3 arm-smmu-v3.2.auto: IDR0.COHACC overridden by FW configuration (false)
[    7.104158] arm-smmu-v3 arm-smmu-v3.2.auto: ias 48-bit, oas 48-bit (features 0x00001ecf)
[    7.112534] arm-smmu-v3 arm-smmu-v3.2.auto: allocated 262144 entries for cmdq
[    7.119961] arm-smmu-v3 arm-smmu-v3.2.auto: allocated 131072 entries for evtq
[    7.127768] arm-smmu-v3 arm-smmu-v3.3.auto: option mask 0x0
[    7.133340] arm-smmu-v3 arm-smmu-v3.3.auto: IDR0.COHACC overridden by FW configuration (false)
[    7.141941] arm-smmu-v3 arm-smmu-v3.3.auto: ias 48-bit, oas 48-bit (features 0x00001ecf)
[    7.150319] arm-smmu-v3 arm-smmu-v3.3.auto: allocated 262144 entries for cmdq
[    7.157746] arm-smmu-v3 arm-smmu-v3.3.auto: allocated 131072 entries for evtq
[    7.165557] arm-smmu-v3 arm-smmu-v3.4.auto: option mask 0x0
[    7.171130] arm-smmu-v3 arm-smmu-v3.4.auto: IDR0.COHACC overridden by FW configuration (false)
[    7.179731] arm-smmu-v3 arm-smmu-v3.4.auto: ias 48-bit, oas 48-bit (features 0x00001ecf)
[    7.188108] arm-smmu-v3 arm-smmu-v3.4.auto: allocated 262144 entries for cmdq
[    7.195536] arm-smmu-v3 arm-smmu-v3.4.auto: allocated 131072 entries for evtq
[    7.203471] ast 0004:02:00.0: Adding to iommu group 0
[    7.208843] ast 0004:02:00.0: [drm] platform has no IO space, trying MMIO
[    7.215634] ast 0004:02:00.0: [drm] Using P2A bridge for configuration
[    7.222153] ast 0004:02:00.0: [drm] AST 2500 detected
[    7.227197] ast 0004:02:00.0: [drm] Analog VGA only
[    7.232070] ast 0004:02:00.0: [drm] dram MCLK=800 Mhz type=8 bus_width=16
[    7.238935] [TTM] Zone  kernel: Available graphics memory: 16251092 KiB
[    7.245541] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    7.252057] [TTM] Initializing pool allocator
[    7.256406] [TTM] Initializing DMA pool allocator
[    7.261357] [drm] Initialized ast 0.1.0 20120228 for 0004:02:00.0 on minor 0
[    7.285811] Console: switching to colour frame buffer device 128x48
[    7.294258] ast 0004:02:00.0: [drm] fb0: astdrmfb frame buffer device
[    7.314851] brd: module loaded
[    7.322406] loop: module loaded
[    7.325905] nvme 0005:04:00.0: Adding to iommu group 1
[    7.331412] nvme nvme0: pci function 0005:04:00.0
[    7.336322] igb: Intel(R) Gigabit Ethernet Network Driver
[    7.341712] igb: Copyright (c) 2007-2014 Intel Corporation.
[    7.341849] nvme nvme0: missing or invalid SUBNQN field.
[    7.347334] igb 0004:04:00.0: Adding to iommu group 2
[    7.364422] nvme nvme0: allocated 64 MiB host memory buffer.
[    7.395892] nvme nvme0: 8/0/0 default/read/poll queues
[    7.399464] pps pps0: new PPS source ptp0
[    7.405069] igb 0004:04:00.0: added PHC on eth0
[    7.409596] igb 0004:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    7.416463] igb 0004:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:3b:50:52
[    7.423647] igb 0004:04:00.0: eth0: PBA No: 000300-000
[    7.428779] igb 0004:04:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[    7.436407] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    7.436804]  nvme0n1: p1 p2 p3
[    7.442669] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    7.442686] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[    7.457880] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[    7.463850] i40e 0000:01:00.0: Adding to iommu group 3
[    7.469235] i40e 0000:01:00.0: enabling device (0000 -> 0002)
[    7.490041] i40e 0000:01:00.0: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0002]
[    7.778295] i40e 0000:01:00.0: MAC address: 3c:fd:fe:6b:e9:c0
[    7.784186] i40e 0000:01:00.0: FW LLDP is enabled
[    7.795061] i40e 0000:01:00.0: PCI-Express: Speed 8.0GT/s Width x8
[    7.802326] i40e 0000:01:00.0: Features: PF-id[0] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[    7.812475] i40e 0000:01:00.1: Adding to iommu group 4
[    7.817831] i40e 0000:01:00.1: enabling device (0000 -> 0002)
[    7.837797] i40e 0000:01:00.1: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[    8.129743] i40e 0000:01:00.1: MAC address: 3c:fd:fe:6b:e9:c1
[    8.135629] i40e 0000:01:00.1: FW LLDP is enabled
[    8.146403] i40e 0000:01:00.1: PCI-Express: Speed 8.0GT/s Width x8
[    8.162824] i40e 0000:01:00.1: Features: PF-id[1] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[    8.172967] i40e 0000:01:00.2: Adding to iommu group 5
[    8.178345] i40e 0000:01:00.2: enabling device (0000 -> 0002)
[    8.198039] i40e 0000:01:00.2: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[    8.486081] i40e 0000:01:00.2: MAC address: 3c:fd:fe:6b:e9:c2
[    8.491968] i40e 0000:01:00.2: FW LLDP is enabled
[    8.502744] i40e 0000:01:00.2: PCI-Express: Speed 8.0GT/s Width x8
[    8.510007] i40e 0000:01:00.2: Features: PF-id[2] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[    8.520150] i40e 0000:01:00.3: Adding to iommu group 6
[    8.525510] i40e 0000:01:00.3: enabling device (0000 -> 0002)
[    8.544449] i40e 0000:01:00.3: fw 6.0.48442 api 1.7 nvm 6.01 0x80003485 1.1747.0 [8086:1589] [8086:0000]
[    8.832438] i40e 0000:01:00.3: MAC address: 3c:fd:fe:6b:e9:c3
[    8.838325] i40e 0000:01:00.3: FW LLDP is enabled
[    8.849106] i40e 0000:01:00.3: PCI-Express: Speed 8.0GT/s Width x8
[    8.856369] i40e 0000:01:00.3: Features: PF-id[3] VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE VxLAN Geneve PTP VEPA
[    8.866498] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    8.873021] ehci-pci: EHCI PCI platform driver
[    8.877563] xhci_hcd 000d:01:00.2: Adding to iommu group 7
[    8.883334] xhci_hcd 000d:01:00.2: enabling device (0000 -> 0002)
[    8.889456] xhci_hcd 000d:01:00.2: xHCI Host Controller
[    8.894677] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 1
[    8.902704] xhci_hcd 000d:01:00.2: hcc params 0x0180ff05 hci version 0x110 quirks 0x0000000000000010
[    8.912167] hub 1-0:1.0: USB hub found
[    8.915918] hub 1-0:1.0: 2 ports detected
[    8.920046] xhci_hcd 000d:01:00.2: xHCI Host Controller
[    8.925264] xhci_hcd 000d:01:00.2: new USB bus registered, assigned bus number 2
[    8.932652] xhci_hcd 000d:01:00.2: Host supports USB 3.1 Enhanced SuperSpeed
[    8.939713] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    8.947911] hub 2-0:1.0: USB hub found
[    8.951662] hub 2-0:1.0: 4 ports detected
[    8.955893] xhci_hcd 0004:03:00.0: Adding to iommu group 8
[    8.961677] xhci_hcd 0004:03:00.0: xHCI Host Controller
[    8.966897] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 3
[    8.974300] xhci_hcd 0004:03:00.0: Zeroing 64bit base registers, expecting fault
[    8.981743] xhci_hcd 0004:03:00.0: Fault detected
[    8.981750] arm-smmu-v3 arm-smmu-v3.3.auto: event 0x10 received:
[    8.991791] xhci_hcd 0004:03:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[    8.992444] arm-smmu-v3 arm-smmu-v3.3.auto: 	0x0000030000000010
[    9.002095] hub 3-0:1.0: USB hub found
[    9.007470] arm-smmu-v3 arm-smmu-v3.3.auto: 	0x0000020800000000
[    9.007471] arm-smmu-v3 arm-smmu-v3.3.auto: 	0x0000000000000000
[    9.007472] arm-smmu-v3 arm-smmu-v3.3.auto: 	0x0000000000000000
[    9.028947] hub 3-0:1.0: 4 ports detected
[    9.033127] xhci_hcd 0004:03:00.0: xHCI Host Controller
[    9.038344] xhci_hcd 0004:03:00.0: new USB bus registered, assigned bus number 4
[    9.045731] xhci_hcd 0004:03:00.0: Host supports USB 3.0 SuperSpeed
[    9.052027] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    9.062579] hub 4-0:1.0: USB hub found
[    9.066331] hub 4-0:1.0: 4 ports detected
[    9.070555] xhci_hcd 0005:02:00.0: Adding to iommu group 9
[    9.076318] xhci_hcd 0005:02:00.0: xHCI Host Controller
[    9.081550] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 5
[    9.088954] xhci_hcd 0005:02:00.0: Zeroing 64bit base registers, expecting fault
[    9.096389] arm-smmu-v3 arm-smmu-v3.4.auto: event 0x10 received:
[    9.096399] xhci_hcd 0005:02:00.0: Fault detected
[    9.102395] arm-smmu-v3 arm-smmu-v3.4.auto: 	0x0000020000000010
[    9.112992] arm-smmu-v3 arm-smmu-v3.4.auto: 	0x0000020800000000
[    9.118900] arm-smmu-v3 arm-smmu-v3.4.auto: 	0x0000000000000000
[    9.124809] arm-smmu-v3 arm-smmu-v3.4.auto: 	0x0000000000000000
[    9.218050] xhci_hcd 0005:02:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[    9.227995] hub 5-0:1.0: USB hub found
[    9.231749] hub 5-0:1.0: 4 ports detected
[    9.235932] xhci_hcd 0005:02:00.0: xHCI Host Controller
[    9.241149] xhci_hcd 0005:02:00.0: new USB bus registered, assigned bus number 6
[    9.248538] xhci_hcd 0005:02:00.0: Host supports USB 3.0 SuperSpeed
[    9.254831] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    9.263049] hub 6-0:1.0: USB hub found
[    9.266801] hub 6-0:1.0: 4 ports detected
[    9.271250] usbcore: registered new interface driver usb-storage
[    9.278140] rtc-efi rtc-efi.0: registered as rtc0
[    9.283278] rtc-efi rtc-efi.0: setting system clock to 2022-04-14T17:32:49 UTC (1649957569)
[    9.291782] sbsa-gwdt sbsa-gwdt.0: Initialized with 10s timeout @ 25000000 Hz, action=0.
[    9.300043] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[    9.309496] pstore: Registered efi as persistent store backend
[    9.315347] SMCCC: SOC_ID: ID = jep106:0a16:0001 Revision = 0x000000a1
[    9.321979] usbcore: registered new interface driver usbhid
[    9.327542] usbhid: USB HID core driver
[    9.331400] u32 classifier
[    9.334095]     input device check on
[    9.337748]     Actions configured
[    9.341529] NET: Registered protocol family 10
[    9.346351] Segment Routing with IPv6
[    9.350033] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    9.356075] NET: Registered protocol family 17
[    9.360526] Bridge firewalling registered
[    9.364553] Key type dns_resolver registered
[    9.368884] NET: Registered protocol family 40
[    9.373449] Key type ._fscrypt registered
[    9.377451] Key type .fscrypt registered
[    9.381364] Key type fscrypt-provisioning registered
[    9.386541] Btrfs loaded, crc32c=crc32c-generic
[    9.391152] pstore: Using crash dump compression: deflate
[    9.397095] Key type encrypted registered
[    9.401364] BERT: Error records from previous boot:
[    9.406234] [Hardware Error]: event severity: recoverable
[    9.411624] [Hardware Error]:  Error 0, type: fatal
[    9.416492] [Hardware Error]:   section type: unknown, e8ed898d-df16-43cc-8ecc-54f060ef157f
[    9.424832] [Hardware Error]:   section length: 0x31
[    9.429788] [Hardware Error]:   00000000: 0000007f 6e6b6e55 206e776f 6f626572  ....Unknown rebo
[    9.438477] [Hardware Error]:   00000010: 7220746f 6f736165 0000006e 00000000  ot reason.......
[    9.447165] [Hardware Error]:   00000020: 00000000 00000000 00000000 00000000  ................
[    9.455851] [Hardware Error]:   00000030: 11                                               .
[    9.459303] usb 3-4: new high-speed USB device number 2 using xhci_hcd
[    9.470819] printk: console [netcon0] enabled
[    9.475169] netconsole: network logging started
[    9.479767] md: Waiting for all devices to be available before autodetect
[    9.486545] md: If you don't use raid, use raid=noautodetect
[    9.492193] md: Autodetecting RAID arrays.
[    9.496279] md: autorun ...
[    9.499061] md: ... autorun DONE.
[    9.502407] Waiting for root device /dev/sda2...
[    9.604192] usb 6-1: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[    9.638724] hub 3-4:1.0: USB hub found
[    9.644286] hub 3-4:1.0: 5 ports detected
[    9.663073] usb-storage 6-1:1.0: USB Mass Storage device detected
[    9.669374] scsi host0: usb-storage 6-1:1.0
[    9.983431] usb 3-4.1: new high-speed USB device number 3 using xhci_hcd
[   10.125107] usb-storage 3-4.1:1.0: USB Mass Storage device detected
[   10.131579] scsi host1: usb-storage 3-4.1:1.0
[   10.223327] usb 3-4.2: new high-speed USB device number 4 using xhci_hcd
[   10.372813] usb-storage 3-4.2:1.0: USB Mass Storage device detected
[   10.379272] scsi host2: usb-storage 3-4.2:1.0
[   10.471326] usb 3-4.3: new low-speed USB device number 5 using xhci_hcd
[   10.644885] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.0/0003:046B:FF10.0001/input/input1
[   10.660732] hid-generic 0003:046B:FF10.0001: input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input0
[   10.686573] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0004:00/0004:00:03.0/0004:03:00.0/usb3/3-4/3-4.3/3-4.3:1.1/0003:046B:FF10.0002/input/input2
[   10.702407] hid-generic 0003:046B:FF10.0002: input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0004:03:00.0-4.3/input1
[   10.718609] scsi 0:0:0:0: Direct-Access      USB      SanDisk 3.2Gen1 1.00 PQ: 0 ANSI: 6
[   10.727089] sd 0:0:0:0: [sda] 120176640 512-byte logical blocks: (61.5 GB/57.3 GiB)
[   10.736900] sd 0:0:0:0: [sda] Write Protect is off
[   10.744219] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[   10.778497] GPT:Primary header thinks Alt. header is not at the end of the disk.
[   10.785891] GPT:17181951 != 120176639
[   10.789545] GPT:Alternate GPT header not at the end of the disk.
[   10.795539] GPT:17181951 != 120176639
[   10.799189] GPT: Use GNU Parted to correct GPT errors.
[   10.804331]  sda: sda1 sda2
[   10.813116] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   10.850986] random: fast init done
[   11.154478] scsi 1:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[   11.163420] scsi 1:0:0:1: CD-ROM            AMI      Virtual CDROM1   1.00 PQ: 0 ANSI: 0 CCS
[   11.172989] scsi 1:0:0:2: CD-ROM            AMI      Virtual CDROM2   1.00 PQ: 0 ANSI: 0 CCS
[   11.181660] scsi 1:0:0:3: CD-ROM            AMI      Virtual CDROM3   1.00 PQ: 0 ANSI: 0 CCS
[   11.291355] EXT4-fs (sda2): recovery complete
[   11.297370] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[   11.305036] VFS: Mounted root (ext4 filesystem) on device 8:2.
[   11.314202] devtmpfs: mounted
[   11.318754] Freeing unused kernel memory: 4160K
[   11.323333] Run /sbin/init as init process
[   11.408010] scsi 2:0:0:0: Direct-Access     AMI      Virtual HDisk0   1.00 PQ: 0 ANSI: 0 CCS
[   11.418625] scsi 2:0:0:1: Direct-Access     AMI      Virtual HDisk1   1.00 PQ: 0 ANSI: 0 CCS
[   11.428783] scsi 2:0:0:2: Direct-Access     AMI      Virtual HDisk2   1.00 PQ: 0 ANSI: 0 CCS
[   11.437467] scsi 2:0:0:3: Direct-Access     AMI      Virtual HDisk3   1.00 PQ: 0 ANSI: 0 CCS
[   11.438140] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[   11.446169] scsi 2:0:0:4: Direct-Access     AMI      Virtual HDisk4   1.00 PQ: 0 ANSI: 0 CCS
[   11.452158] sd 2:0:0:1: [sdc] Attached SCSI removable disk
[   11.468094] sd 2:0:0:2: [sdd] Attached SCSI removable disk
[   11.480469] sd 2:0:0:3: [sde] Attached SCSI removable disk
[   11.488376] sd 2:0:0:4: [sdf] Attached SCSI removable disk
[   11.501160] systemd[1]: systemd 249.7+ running in system mode (-PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
[   11.531598] systemd[1]: Detected architecture arm64.

Welcome to EWAOL (Edge Workload Abstraction and Orchestration Layer) unstable (honister)!

[   11.590631] systemd[1]: Hostname set to <comhpc>.
[   11.634079] systemd-sysv-generator[334]: SysV service '/etc/init.d/conntrackd' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   11.658094] systemd-sysv-generator[334]: SysV service '/etc/init.d/conntrack-failover' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   11.747692] systemd[1]: /lib/systemd/system/xen-qemu-dom0-disk-backend.service:11: PIDFile= references a path below legacy directory /var/run/, updating /var/run/xen/qemu-dom0.pid → /run/xen/qemu-dom0.pid; please update the unit file accordingly.
[   11.833660] systemd[1]: Queued start job for default target Multi-User System.
[   11.841170] random: systemd: uninitialized urandom read (16 bytes read)
[   11.872919] systemd[1]: Created slice Slice /system/getty.
[  OK  ] Created slice Slice /system/getty.
[   11.891503] random: systemd: uninitialized urandom read (16 bytes read)
[   11.898742] systemd[1]: Created slice Slice /system/modprobe.
[  OK  ] Created slice Slice /system/modprobe.
[   11.919418] random: systemd: uninitialized urandom read (16 bytes read)
[   11.926617] systemd[1]: Created slice Slice /system/serial-getty.
[  OK  ] Created slice Slice /system/serial-getty.
[   11.948258] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[   11.971608] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password …ts to Console Directory Watch.
[   11.995545] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password R…uests to Wall Directory Watch.
[   12.019603] systemd[1]: Reached target Path Units.
[  OK  ] Reached target Path Units.
[   12.039431] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[   12.059433] systemd[1]: Reached target Slice Units.
[  OK  ] Reached target Slice Units.
[   12.079449] systemd[1]: Reached target Swaps.
[  OK  ] Reached target Swaps.
[   12.102361] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[   12.123518] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[   12.143740] systemd[1]: Listening on Syslog Socket.
[  OK  ] Listening on Syslog Socket.
[   12.163560] systemd[1]: Listening on initctl Compatibility Named Pipe.
[  OK  ] Listening on initctl Compatibility Named Pipe.
[   12.184681] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[   12.192795] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[   12.211676] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[   12.231709] systemd[1]: Listening on Network Service Netlink Socket.
[  OK  ] Listening on Network Service Netlink Socket.
[   12.251726] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[   12.271596] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[   12.291609] systemd[1]: Listening on User Database Manager Socket.
[  OK  ] Listening on User Database Manager Socket.
[   12.312923] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[   12.332841] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[   12.355513] systemd[1]: Condition check resulted in Mount /proc/xen files being skipped.
[   12.364747] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[   12.384861] systemd[1]: Mounting Kernel Trace File System...
         Mounting Kernel Trace File System...
[   12.406348] systemd[1]: Mounting Temporary Directory /tmp...
         Mounting Temporary Directory /tmp...
[   12.425207] systemd[1]: Starting Create List of Static Device Nodes...
         Starting Create List of Static Device Nodes...
[   12.452822] systemd[1]: Starting Load Kernel Module configfs...
         Starting Load Kernel Module configfs...
[   12.476750] systemd[1]: Starting Load Kernel Module drm...
         Starting Load Kernel Module drm...
[   12.500756] systemd[1]: Starting Load Kernel Module fuse...
         Starting Load Kernel Module fuse...
[   12.524991] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[   12.547340] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[   12.558315] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[   12.577583] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[   12.596647] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remoun[   12.604247] EXT4-fs (sda2): re-mounted. Opts: (null)
t Root and Kernel File Systems...
[   12.624732] systemd[1]: Starting Coldplug All udev Devices...
         Starting Coldplug All udev Devices...
[   12.645291] systemd[1]: Started RPC Bind.
[  OK  ] Started RPC Bind.
[   12.667700] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Mounted Kernel Trace File System.
[  OK  ] Mounted Temporary Directory /tmp.
[  OK  ] Finished Create List of Static Device Nodes.
[  OK  ] Finished Load Kernel Module configfs.
[  OK  ] Finished Load Kernel Module drm.
[  OK  ] Finished Load Kernel Module fuse.
[  OK  ] Finished Load Kernel Modules.
[  OK  ] Finished Remount Root and Kernel File Systems.
         Mounting Kernel Configuration File System...
         Starting Flush Journal to Persistent Storage...
[   12.922637] systemd-journald[359]: Received client request to flush runtime journal.
         Starting Apply Kernel Variables...
         Starting Create Static Device Nodes in /dev...
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Finished Flush Journal to Persistent Storage.
[  OK  ] Finished Coldplug All udev Devices.
[  OK  ] Finished Apply Kernel Variables.
[  OK  ] Finished Create Static Device Nodes in /dev.
[  OK  ] Reached target Preparation for Local File Systems.
         Mounting /var/volatile...
         Starting Wait for udev To …plete Device Initialization...
         Starting Rule-based Manage…for Device Events and Files...
[  OK  ] Mounted /var/volatile.
         Starting Load/Save Random Seed...
[  OK  ] Started Rule-based Manager for Device Events and Files.
[  OK  ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
[  OK  ] Found device SanDisk_3.2Gen1 msdos.
         Mounting /boot...
[  OK  ] Mounted /boot.
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Finished Wait for udev To Complete Device Initialization.
[  OK  ] Finished Create Volatile Files and Directories.
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
         Starting Network Time Synchronization...
         Starting Record System Boot/Shutdown in UTMP...
[  OK  ] Finished Record System Boot/Shutdown in UTMP.
[  OK  ] Started Network Time Synchronization.
[  OK  ] Reached target System Initialization.
[  OK  ] Started Daily Cleanup of Temporary Directories.
[  OK  ] Reached target System Time Set.
[  OK  ] Reached target Timer Units.
[  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[  OK  ] Listening on D-Bus System Message Bus Socket.
         Starting Docker Socket for the API...
         Starting sshd.socket...
[  OK  ] Listening on Docker Socket for the API.
[  OK  ] Listening on sshd.socket.
[  OK  ] Reached target Socket Units.
[  OK  ] Reached target Basic System.
         Starting ACPI Event Daemon...
[  OK  ] Started Kernel Logging Service.
[  OK  ] Started System Logging Service.
[  OK  ] Started D-Bus System Message Bus.
[  OK  ] Started Getty on tty1.
         Starting IPv6 Packet Filtering Framework...
         Starting IPv4 Packet Filtering Framework...
         Starting Telephony service...
[  OK  ] Started Serial Getty on ttyAMA0.
[  OK  ] Reached target Login Prompts.
         Starting User Login Management...
         Starting OpenSSH Key Generation...
[  OK  ] Started ACPI Event Daemon.
[  OK  ] Finished IPv6 Packet Filtering Framework.
[  OK  ] Finished IPv4 Packet Filtering Framework.
[  OK  ] Finished OpenSSH Key Generation.
[  OK  ] Reached target Preparation for Network.
         Starting Network Configuration...
[  OK  ] Started User Login Management.
[  OK  ] Started Telephony service.
[  OK  ] Started Network Configuration.
         Starting Wait for Network to be Configured...
         Starting Network Name Resolution...
[  OK  ] Finished Load/Save Random Seed.
[  OK  ] Started Network Name Resolution.
[  OK  ] Reached target Network.
[  OK  ] Reached target Host and Network Name Lookups.
         Starting Avahi mDNS/DNS-SD Stack...
         Starting containerd container runtime...
[  OK  ] Started Avahi mDNS/DNS-SD Stack.
[  OK  ] Started containerd container runtime.

EWAOL (Edge Workload Abstraction and Orchestration Layer) unstable comhpc ttyAMA0

comhpc login: root
root@comhpc:~# 

^ permalink raw reply	[relevance 2%]

* xen-swiotlb issue when NVMe driver is enabled in Dom0 on ARM
@ 2022-04-13 13:04  3% Rahul Singh
    0 siblings, 1 reply; 200+ results
From: Rahul Singh @ 2022-04-13 13:04 UTC (permalink / raw)
  To: xen-devel; +Cc: Bertrand Marquis, Julien Grall, Stefano Stabellini, Jan Beulich


[-- Attachment #1.1: Type: text/plain, Size: 7415 bytes --]

Hello All,

We are trying to boot the Xen 4.15.1 and dom0 Linux Kernel (5.10.27-ampere-lts-standard from [1] ) on Ampere Altra / AVA Developer Platform [2] with ACPI.

NVMe storage is connected to PCIe. Native Linux kernel boot fine and also I am able to detect and access NVMe storage.
However, during XEN boot when NVME driver is requesting the DMA buffer we are observing the Oops with XEN.

Please find the attached detail logs for Xen and dom0 booting.

Snip from logs:
(XEN) d0v0: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] Xen XEN_VERSION.XEN_SUBVERSION support found
[    0.000000] efi: EFI v2.50 by Xen
[    0.000000] efi: ACPI 2.0=0x807f66cece8
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807F66CECE8 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807F66CEC38 0000AC (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807F66CE000 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807F66CE118 000AF4 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: STAO 0x00000807F66CEC10 000025 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x8079fbf5e00-0x8079fbf7fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000098000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807fa0dffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
….

[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000f4000000-0x00000000f8000000] (64MB)
[    0.000000] Memory: 1929152K/2097412K available (13568K kernel code, 1996K rwdata, 3476K rodata, 4160K init, 822K bss, 168260K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 41306 entries in 162 pages
….

….
[   12.599484] loop: module loaded
[   12.603160] nvme nvme0: pci function 0005:04:00.0
[   12.608129] igb: Intel(R) Gigabit Ethernet Network Driver
[   12.613495] igb: Copyright (c) 2007-2014 Intel Corporation.
[   12.613636] nvme nvme0: missing or invalid SUBNQN field.
[   12.625941] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000008
[   12.634726] Mem abort info:
[   12.637520]   ESR = 0x96000044
[   12.640646]   EC = 0x25: DABT (current EL), IL = 32 bits
[   12.646055]   SET = 0, FnV = 0
[   12.649153]   EA = 0, S1PTW = 0
[   12.652365] Data abort info:
[   12.655314]   ISV = 0, ISS = 0x00000044
[   12.659231]   CM = 0, WnR = 1
[   12.662260] [0000000000000008] user address but active_mm is swapper
[   12.668724] Internal error: Oops: 96000044 [#1] PREEMPT SMP
[   12.674358] Modules linked in:
[   12.677455] CPU: 0 PID: 7 Comm: kworker/u64:0 Tainted: G        W         5.10.27-ampere-lts-standard #1
[   12.687083] Workqueue: nvme-reset-wq nvme_reset_work
[   12.692059] pstate: 60c00085 (nZCv daIf +PAN +UAO -TCO BTYPE=--)
[   12.698149] pc : steal_suitable_fallback+0x138/0x2f0
[   12.703170] lr : steal_suitable_fallback+0x1bc/0x2f0
[   12.708203] sp : ffff80001196b820
[   12.711569] x29: ffff80001196b820 x28: 0000000000000000
[   12.716975] x27: 0000000000000000 x26: ffff8000114dbcb0
[   12.722357] x25: fffffdffffe00000 x24: 0000000000000001
[   12.727740] x23: 0000000000000000 x22: fffffe201bf60000
[   12.733120] x21: ffff08071fbf6980 x20: 0000000000000901
[   12.738502] x19: 0000000000080000 x18: ffffffffffffffff
[   12.743884] x17: 0000000000000000 x16: 0000000000000012
[   12.749266] x15: ffff08070508c683 x14: 0000000000000058
[   12.754648] x13: 00000000000000c0 x12: 0000000000000000
[   12.760030] x11: 0000000000000400 x10: 000000000000000c
[   12.765412] x9 : ffff800010039d58 x8 : 0000000020000000
[   12.770794] x7 : 0000000000000018 x6 : ffff800011750890
[   12.776176] x5 : ffff800011750878 x4 : 0000000000000000
[   12.781558] x3 : 0000000000000000 x2 : 0000000000000000
[   12.786940] x1 : 0000000000000200 x0 : 0000000000000000
[   12.792322] Call trace:
[   12.794806]  steal_suitable_fallback+0x138/0x2f0
[   12.799520]  get_page_from_freelist+0xe30/0x12a0
[   12.804207]  __alloc_pages_nodemask+0x148/0xe00
[   12.808809]  __dma_direct_alloc_pages+0xa4/0x1d0
[   12.813496]  dma_direct_alloc+0x1d8/0x340
[   12.817571]  xen_swiotlb_alloc_coherent+0x68/0x370
[   12.822439]  dma_alloc_attrs+0xe8/0xf0
[   12.826246]  nvme_reset_work+0x1030/0x1520
[   12.830417]  process_one_work+0x1dc/0x4bc
[   12.834495]  worker_thread+0x144/0x470
[   12.838313]  kthread+0x14c/0x160
[   12.841604]  ret_from_fork+0x10/0x38
[   12.845255] Code: a94082c4 d37ef463 cb3c4063 8b3c4042 (f9000480)
[   12.851447] ---[ end trace f68728a0d3053b72 ]---
[   12.856117] note: kworker/u64:0[7] exited with preempt_count

….


[1] https://github.com/AmpereComputing/ampere-lts-kernel
[2] https://www.ipi.wiki/pages/com-hpc-altra



Regards,
Rahul

[-- Attachment #1.2: Type: text/html, Size: 10204 bytes --]

[-- Attachment #2: xen-dom0-boot-failue.log --]
[-- Type: application/octet-stream, Size: 148664 bytes --]

/------------------------------------------------------------------------------\
|                                Boot Manager                                  |
\------------------------------------------------------------------------------/
                                                                                
                                                         Device Path :          
   Boot Manager Menu                                     Fv(5C60F367-A505-419A- 
                                                         859E-2A4FF6CA6FE5)/FvF 
   UEFI USB Device                                       ile(7C04A583-9E3E-4F1C 
   UEFI USB Device 2                                     -AD65-E05268D0B4D1)    
   UEFI USB Device 3                                                            
   UEFI USB Device 4                                                            
   UEFI USB Device 5                                                            
   UEFI Shell                                                                   
   UEFI ADATA_IM2P33F8-128GCTB4 2L352LA9EHLR 1                                  
   UEFI USB Device 6                                                            
   UEFI USB Device 7                                                            
   UEFI USB Device 8                                                            
   UEFI USB Device 9                                                            
   UEFI USB SanDisk 3.2Gen1                                                     
                                                       v                        
/------------------------------------------------------------------------------\
|                                                                              |
| ^v=Move Highlight       <Enter>=Select Entry      Esc=Exit                   |
\------------------------------------------------------------------------------/
                                                                          












PROGRESS CODE: V03050000 I0
PROGRESS CODE: V03051001 I0
PROGRESS CODE: V03058000 I0
PROGRESS CODE: V03058001 I0





































UEFI Interactive Shell v2.2
EDK II
UEFI v2.70 (EDK II, 0x00010000)
Mapping table
      FS0: Alias(s):HD1a0b:;BLK10:
          PcieRoot(0x70000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x0,0x0)/HD(1,GPT,EF73
9626-244B-4FC5-8DC2-D780EE751A3D,0x800,0x200000)
      FS1: Alias(s):HD2b:;BLK13:
          PcieRoot(0x70000)/Pci(0x7,0x0)/Pci(0x0,0x0)/NVMe(0x1,01-00-00-00-00-00
-00-00)/HD(1,GPT,51A27609-3E10-42D9-8747-F065681E0EBA,0x800,0x100000)
     BLK0: Alias(s):
          PcieRoot(0x60000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x7,0x0)/USB(0x0,0x0)/
Unit(0x0)
     BLK1: Alias(s):
          PcieRoot(0x60000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x7,0x0)/USB(0x0,0x0)/
Unit(0x1)
     BLK2: Alias(s):
          PcieRoot(0x60000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x7,0x0)/USB(0x0,0x0)/
Unit(0x2)
     BLK3: Alias(s):
          PcieRoot(0x60000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x7,0x0)/USB(0x0,0x0)/
Unit(0x3)
     BLK4: Alias(s):
          PcieRoot(0x60000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x7,0x0)/USB(0x1,0x0)/
Unit(0x0)
     BLK5: Alias(s):
          PcieRoot(0x60000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x7,0x0)/USB(0x1,0x0)/
Unit(0x1)
     BLK6: Alias(s):
          PcieRoot(0x60000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x7,0x0)/USB(0x1,0x0)/
Unit(0x2)
     BLK7: Alias(s):
          PcieRoot(0x60000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x7,0x0)/USB(0x1,0x0)/
Unit(0x3)
     BLK8: Alias(s):
          PcieRoot(0x60000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x7,0x0)/USB(0x1,0x0)/
Unit(0x4)
     BLK9: Alias(s):
          PcieRoot(0x70000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x0,0x0)
    BLK11: Alias(s):
          PcieRoot(0x70000)/Pci(0x3,0x0)/Pci(0x0,0x0)/USB(0x0,0x0)/HD(2,GPT,6A60
524D-061D-454A-BFD1-38989910ECCD,0x200800,0xE624DE)
    BLK12: Alias(s):
          PcieRoot(0x70000)/Pci(0x7,0x0)/Pci(0x0,0x0)/NVMe(0x1,01-00-00-00-00-00
-00-00)
    BLK14: Alias(s):
          PcieRoot(0x70000)/Pci(0x7,0x0)/Pci(0x0,0x0)/NVMe(0x1,01-00-00-00-00-00
-00-00)/HD(2,GPT,0A9E6642-4B2E-47B5-B231-DA2D9E7297F2,0x100800,0x200000)
    BLK15: Alias(s):
          PcieRoot(0x70000)/Pci(0x7,0x0)/Pci(0x0,0x0)/NVMe(0x1,01-00-00-00-00-00
-00-00)/HD(3,GPT,5DC19D64-B683-484F-8407-4869D09B430F,0x300800,0xEB7B000)
Press ESC in 5 seconds to skip startup.nsh or any other key to continue.
Shell> fs0:
FS0:\> xen.efi











































































Xen 4.15.1 (c/s Fri Sep 10 09:03:24 2021 +0200 git:84fa99099b-dirty) EFI loader
Using configuration file 'xen.cfg'
Image-xen: 0x00000000fe47c000-0x00000000ffb3f200
PROGRESS CODE: V03101019 I0
 Xen 4.15.1
(XEN) Xen version 4.15.1 (xen-4.15+stableAUTOINC+84fa99099b-r0@ewaol) (aarch64-poky-linux-gcc (GCC) 11.2.0) debug=n 2021-09-10
(XEN) Latest ChangeSet: Fri Sep 10 09:03:24 2021 +0200 git:84fa99099b-dirty
(XEN) build-id: 783448c38aa6ff465e6b4631853bc73076bcf7e4
(XEN) Processor: 413fd0c1: "ARM Limited", variant: 0x3, part 0xd0c, rev 0x1
(XEN) 64-bit Execution:
(XEN)   Processor Features: 1100000011111112 0000000000000020
(XEN)     Exception Levels: EL3:64 EL2:64 EL1:64 EL0:64+32
(XEN)     Extensions: FloatingPoint AdvancedSIMD GICv3-SysReg
(XEN)   Debug Features: 0000000110305408 0000000000000000
(XEN)   Auxiliary Features: 0000000000000000 0000000000000000
(XEN)   Memory Model Features: 0000000000101125 0000000010212122
(XEN)   ISA Features:  0000100010211120 0000000000100001
(XEN) 32-bit Execution:
(XEN)   Processor Features: 10010131:10010000
(XEN)     Instruction Sets: AArch32 A32 Thumb Thumb-2 Jazelle
(XEN)     Extensions: GenericTimer
(XEN)   Debug Features: 04010088
(XEN)   Auxiliary Features: 00000000
(XEN)   Memory Model Features: 10201105 40000000 01260000 02122211
(XEN)  ISA Features: 02101110 13112111 21232042 01112131 00010142 01011121
(XEN) Using SMC Calling Convention v1.2
(XEN) Using PSCI v1.1
(XEN) ACPI: GICC (acpi_id[0x1000] address[0x0] MPIDR[0x100000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1800] address[0x0] MPIDR[0x180000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1600] address[0x0] MPIDR[0x160000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1e00] address[0x0] MPIDR[0x1e0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0800] address[0x0] MPIDR[0x80000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2000] address[0x0] MPIDR[0x200000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0e00] address[0x0] MPIDR[0xe0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2600] address[0x0] MPIDR[0x260000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1100] address[0x0] MPIDR[0x110000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1900] address[0x0] MPIDR[0x190000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1700] address[0x0] MPIDR[0x170000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1f00] address[0x0] MPIDR[0x1f0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0900] address[0x0] MPIDR[0x90000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2100] address[0x0] MPIDR[0x210000] enabled)
(XEN) ACPI: GICC (acpi_id[0x0f00] address[0x0] MPIDR[0xf0000] enabled)
(XEN) ACPI: GICC (acpi_id[0x2700] address[0x0] MPIDR[0x270000] enabled)
(XEN) ACPI: GICC (acpi_id[0x1001] address[0x0] MPIDR[0x100100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1801] address[0x0] MPIDR[0x180100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1601] address[0x0] MPIDR[0x160100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1e01] address[0x0] MPIDR[0x1e0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0801] address[0x0] MPIDR[0x80100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2001] address[0x0] MPIDR[0x200100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0e01] address[0x0] MPIDR[0xe0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2601] address[0x0] MPIDR[0x260100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1101] address[0x0] MPIDR[0x110100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1901] address[0x0] MPIDR[0x190100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1701] address[0x0] MPIDR[0x170100] enabled)
(XEN) ACPI: GICC (acpi_id[0x1f01] address[0x0] MPIDR[0x1f0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0901] address[0x0] MPIDR[0x90100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2101] address[0x0] MPIDR[0x210100] enabled)
(XEN) ACPI: GICC (acpi_id[0x0f01] address[0x0] MPIDR[0xf0100] enabled)
(XEN) ACPI: GICC (acpi_id[0x2701] address[0x0] MPIDR[0x270100] enabled)
(XEN) 32 CPUs enabled, 32 CPUs total
(XEN) SMP: Allowing 32 CPUs
(XEN) Generic Timer IRQ: phys=30 hyp=26 virt=27 Freq: 25000 KHz
(XEN) GICv3 initialization:
(XEN)       gic_dist_addr=0x00100100000000
(XEN)       gic_maintenance_irq=25
(XEN)       gic_rdist_stride=0
(XEN)       gic_rdist_regions=1
(XEN)       redistributor regions:
(XEN)         - region 0: 0x00100100140000 - 0x00100101140000
(XEN) GICv3: using at most 57344 LPIs on the host.
(XEN) GICv3: 704 lines, (IID 0201743b).
(XEN) GICv3: Found ITS @0x100100040000
(XEN) GICv3: Found ITS @0x100100060000
(XEN) GICv3: Found ITS @0x100100080000
(XEN) GICv3: Found ITS @0x1001000a0000
(XEN) GICv3: Found ITS @0x1001000c0000
(XEN) GICv3: Found ITS @0x1001000e0000
(XEN) GICv3: Found ITS @0x100100100000
(XEN) GICv3: Found ITS @0x100100120000
(XEN) GICv3: CPU0: Found redistributor in region 0 @0000000040434000
(XEN) XSM Framework v1.0.0 initialized
(XEN) Initialising XSM SILO mode
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN)  load_precision_shift: 18
(XEN)  load_window_shift: 30
(XEN)  underload_balance_tolerance: 0
(XEN)  overload_balance_tolerance: -3
(XEN)  runqueues arrangement: socket
(XEN)  cap enforcement granularity: 10ms
(XEN) load tracking window length 1073741824 ns
(XEN) Defaulting to alternative key handling; send 'A' to switch to normal mode.
(XEN) Allocated console ring of 256 KiB.
(XEN) CPU0: Guest atomics will try 17 times before pausing the domain
(XEN) Bringing up CPU1
(XEN) GICv3: CPU1: Found redistributor in region 0 @0000000040634000
(XEN) CPU1: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 1 booted.
(XEN) Bringing up CPU2
(XEN) GICv3: CPU2: Found redistributor in region 0 @00000000405b4000
(XEN) CPU2: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 2 booted.
(XEN) Bringing up CPU3
(XEN) GICv3: CPU3: Found redistributor in region 0 @00000000407b4000
(XEN) CPU3: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 3 booted.
(XEN) Bringing up CPU4
(XEN) GICv3: CPU4: Found redistributor in region 0 @0000000040234000
(XEN) CPU4: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 4 booted.
(XEN) Bringing up CPU5
(XEN) GICv3: CPU5: Found redistributor in region 0 @0000000040834000
(XEN) CPU5: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 5 booted.
(XEN) Bringing up CPU6
(XEN) GICv3: CPU6: Found redistributor in region 0 @00000000403b4000
(XEN) CPU6: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 6 booted.
(XEN) Bringing up CPU7
(XEN) GICv3: CPU7: Found redistributor in region 0 @00000000409b4000
(XEN) CPU7: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 7 booted.
(XEN) Bringing up CPU8
(XEN) GICv3: CPU8: Found redistributor in region 0 @0000000040474000
(XEN) CPU8: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 8 booted.
(XEN) Bringing up CPU9
(XEN) GICv3: CPU9: Found redistributor in region 0 @0000000040674000
(XEN) CPU9: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 9 booted.
(XEN) Bringing up CPU10
(XEN) GICv3: CPU10: Found redistributor in region 0 @00000000405f4000
(XEN) CPU10: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 10 booted.
(XEN) Bringing up CPU11
(XEN) GICv3: CPU11: Found redistributor in region 0 @00000000407f4000
(XEN) CPU11: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 11 booted.
(XEN) Bringing up CPU12
(XEN) GICv3: CPU12: Found redistributor in region 0 @0000000040274000
(XEN) CPU12: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 12 booted.
(XEN) Bringing up CPU13
(XEN) GICv3: CPU13: Found redistributor in region 0 @0000000040874000
(XEN) CPU13: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 13 booted.
(XEN) Bringing up CPU14
(XEN) GICv3: CPU14: Found redistributor in region 0 @00000000403f4000
(XEN) CPU14: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 14 booted.
(XEN) Bringing up CPU15
(XEN) GICv3: CPU15: Found redistributor in region 0 @00000000409f4000
(XEN) CPU15: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 15 booted.
(XEN) Bringing up CPU16
(XEN) GICv3: CPU16: Found redistributor in region 0 @0000000040454000
(XEN) CPU16: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 16 booted.
(XEN) Bringing up CPU17
(XEN) GICv3: CPU17: Found redistributor in region 0 @0000000040654000
(XEN) CPU17: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 17 booted.
(XEN) Bringing up CPU18
(XEN) GICv3: CPU18: Found redistributor in region 0 @00000000405d4000
(XEN) CPU18: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 18 booted.
(XEN) Bringing up CPU19
(XEN) GICv3: CPU19: Found redistributor in region 0 @00000000407d4000
(XEN) CPU19: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 19 booted.
(XEN) Bringing up CPU20
(XEN) GICv3: CPU20: Found redistributor in region 0 @0000000040254000
(XEN) CPU20: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 20 booted.
(XEN) Bringing up CPU21
(XEN) GICv3: CPU21: Found redistributor in region 0 @0000000040854000
(XEN) CPU21: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 21 booted.
(XEN) Bringing up CPU22
(XEN) GICv3: CPU22: Found redistributor in region 0 @00000000403d4000
(XEN) CPU22: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 22 booted.
(XEN) Bringing up CPU23
(XEN) GICv3: CPU23: Found redistributor in region 0 @00000000409d4000
(XEN) CPU23: Guest atomics will try 17 times before pausing the domain
(XEN) CPU 23 booted.
(XEN) Bringing up CPU24
(XEN) GICv3: CPU24: Found redistributor in region 0 @0000000040494000
(XEN) CPU24: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 24 booted.
(XEN) Bringing up CPU25
(XEN) GICv3: CPU25: Found redistributor in region 0 @0000000040694000
(XEN) CPU25: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 25 booted.
(XEN) Bringing up CPU26
(XEN) GICv3: CPU26: Found redistributor in region 0 @0000000040614000
(XEN) CPU26: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 26 booted.
(XEN) Bringing up CPU27
(XEN) GICv3: CPU27: Found redistributor in region 0 @0000000040814000
(XEN) CPU27: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 27 booted.
(XEN) Bringing up CPU28
(XEN) GICv3: CPU28: Found redistributor in region 0 @0000000040294000
(XEN) CPU28: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 28 booted.
(XEN) Bringing up CPU29
(XEN) GICv3: CPU29: Found redistributor in region 0 @0000000040894000
(XEN) CPU29: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 29 booted.
(XEN) Bringing up CPU30
(XEN) GICv3: CPU30: Found redistributor in region 0 @0000000040414000
(XEN) CPU30: Guest atomics will try 18 times before pausing the domain
(XEN) CPU 30 booted.
(XEN) Bringing up CPU31
(XEN) GICv3: CPU31: Found redistributor in region 0 @0000000040a14000
(XEN) CPU31: Guest atomics will try 18 times before pausing the domain
(XEN) Brought up 32 CPUs
(XEN) CPU 31 booted.
(XEN) I/O virtualisation disabled
(XEN) P2M: 48-bit IPA with 48-bit PA and 16-bit VMID
(XEN) P2M: 4 levels with order-0 root, VTCR 0x800d3590
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Adding cpu 0 to runqueue 0
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 1 to runqueue 0
(XEN) Adding cpu 2 to runqueue 0
(XEN) Adding cpu 3 to runqueue 0
(XEN) Adding cpu 4 to runqueue 0
(XEN) Adding cpu 5 to runqueue 0
(XEN) Adding cpu 6 to runqueue 0
(XEN) Adding cpu 7 to runqueue 0
(XEN) Adding cpu 8 to runqueue 0
(XEN) Adding cpu 9 to runqueue 0
(XEN) Adding cpu 10 to runqueue 0
(XEN) Adding cpu 11 to runqueue 0
(XEN) Adding cpu 12 to runqueue 0
(XEN) Adding cpu 13 to runqueue 0
(XEN) Adding cpu 14 to runqueue 0
(XEN) Adding cpu 15 to runqueue 0
(XEN) Adding cpu 16 to runqueue 1
(XEN)  First cpu on runqueue, activating
(XEN) Adding cpu 17 to runqueue 1
(XEN) Adding cpu 18 to runqueue 1
(XEN) Adding cpu 19 to runqueue 1
(XEN) Adding cpu 20 to runqueue 1
(XEN) Adding cpu 21 to runqueue 1
(XEN) Adding cpu 22 to runqueue 1
(XEN) Adding cpu 23 to runqueue 1
(XEN) Adding cpu 24 to runqueue 1
(XEN) Adding cpu 25 to runqueue 1
(XEN) Adding cpu 26 to runqueue 1
(XEN) Adding cpu 27 to runqueue 1
(XEN) Adding cpu 28 to runqueue 1
(XEN) Adding cpu 29 to runqueue 1
(XEN) Adding cpu 30 to runqueue 1
(XEN) Adding cpu 31 to runqueue 1
(XEN) alternatives: Patching with alt table 00000000002cd0b0 -> 00000000002cd9e0
(XEN) *** LOADING DOMAIN 0 ***
(XEN) Loading d0 kernel from boot module @ 00000000fe47c000
(XEN) Allocating 1:1 mappings totalling 2048MB for dom0:
(XEN) BANK[0] 0x00000098000000-0x000000f8000000 (1536MB)
(XEN) BANK[1] 0x00080780000000-0x000807a0000000 (512MB)
(XEN) Grant table range: 0x000807f66ce000-0x000807f670e000
(XEN) Allocating PPI 16 for event channel interrupt
(XEN) Loading zImage from 00000000fe47c000 to 0000000098000000-00000000996c3200
(XEN) Loading d0 DTB to 0x00000000a0000000-0x00000000a0000283
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: Errors
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 360kB init memory.
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER4
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER8
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER12
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER16
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER20
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER24
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER28
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER32
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER36
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER40
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER44
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER48
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER52
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER56
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER60
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER64
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER68
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER72
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER76
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER80
(XEN) d0v0: vGICD: unhandled word write 0x000000ffffffff to ICACTIVER84
(XEN) d0v0: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x413fd0c1]
[    0.000000] Linux version 5.10.27-ampere-lts-standard (oe-user@oe-host) (aarch64-poky-linux-gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.37.20210721) #1 SMP PREEMPT Sat Sep 18 06:01:59 UTC 2021
[    0.000000] Xen XEN_VERSION.XEN_SUBVERSION support found
[    0.000000] efi: EFI v2.50 by Xen
[    0.000000] efi: ACPI 2.0=0x807f66cece8 
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000807F66CECE8 000024 (v02 Ampere)
[    0.000000] ACPI: XSDT 0x00000807F66CEC38 0000AC (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: FACP 0x00000807F66CE000 000114 (v06 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DSDT 0x00000807F8DB0018 02C19E (v02 Ampere Jade     00000001 INTL 20201217)
[    0.000000] ACPI: BERT 0x00000807FA0DFF98 000030 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: DBG2 0x00000807FA0DFA98 00005C (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: GTDT 0x00000807FA0DE998 000110 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR 0x00000807FA0DFE18 000050 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: EINJ 0x00000807FA0DF598 000150 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: HEST 0x00000807FA0DEB18 0001F4 (v01 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: SSDT 0x00000807FA0DFA18 00002D (v02 Ampere Altra    00000001 INTL 20201217)
[    0.000000] ACPI: TPM2 0x00000807FA0DFD18 00004C (v04 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: MCFG 0x00000807FA0DF718 00007C (v01 Ampere Altra    00000001 AMP. 01000013)
[    0.000000] ACPI: IORT 0x00000807FA0DEF18 0003DC (v00 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: APIC 0x00000807F66CE118 000AF4 (v05 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PPTT 0x00000807FA0D8618 004520 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SLIT 0x00000807FA0DFD98 00002D (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SRAT 0x00000807FA0DCE18 000370 (v03 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: PCCT 0x00000807FA0DE318 000576 (v02 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: STAO 0x00000807F66CEC10 000025 (v01 Ampere Altra    00000002 AMP. 01000013)
[    0.000000] ACPI: SPCR: console: pl011,mmio32,0x100002600000,115200
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x88300000-0x883fffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x90000000-0xffffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80000000000-0x8007fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x80100000000-0x807ffffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x8079fbf5e00-0x8079fbf7fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000098000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000807fa0dffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000098000000-0x00000000f7ffffff]
[    0.000000]   node   0: [mem 0x0000080780000000-0x000008079fffffff]
[    0.000000]   node   0: [mem 0x00000807f66ce000-0x00000807f66cefff]
[    0.000000]   node   0: [mem 0x00000807f8db0000-0x00000807f8ddffff]
[    0.000000]   node   0: [mem 0x00000807fa0d0000-0x00000807fa0dffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000098000000-0x00000807fa0dffff]
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.1
[    0.000000] percpu: Embedded 31 pages/cpu s89240 r8192 d29544 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Hardware dirty bit management
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] CPU features: detected: ARM erratum 1418040
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 516159
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: nomsi console=hvc0 earlycon=xen rootwait root=PARTUUID=6a60524d-061d-454a-bfd1-38989910eccd
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.000000] printk: log_buf_len min size: 131072 bytes
[    0.000000] printk: log_buf_len: 262144 bytes
[    0.000000] printk: early log buf free: 126000(96%)
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000f4000000-0x00000000f8000000] (64MB)
[    0.000000] Memory: 1929152K/2097412K available (13568K kernel code, 1996K rwdata, 3476K rodata, 4160K init, 822K bss, 168260K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 41306 entries in 162 pages
[    0.000000] ftrace: allocated 162 pages with 3 groups
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU event tracing is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=32.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: 672 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000100100140000
[    0.000000] SRAT: PXM 0 -> ITS 0 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 1 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 2 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 3 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 4 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 5 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 6 -> Node 0
[    0.000000] SRAT: PXM 0 -> ITS 7 -> Node 0
[    0.000000] ITS [mem 0x100100040000-0x10010005ffff]
[    0.000000] ITS@0x0000100100040000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100040000: allocated 524288 Devices @80780800000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100040000: allocated 32768 Interrupt Collections @80780220000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100060000-0x10010007ffff]
[    0.000000] ITS@0x0000100100060000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100060000: allocated 524288 Devices @80780c00000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100060000: allocated 32768 Interrupt Collections @80780240000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100080000-0x10010009ffff]
[    0.000000] ITS@0x0000100100080000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100080000: allocated 524288 Devices @80781000000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100080000: allocated 32768 Interrupt Collections @80780260000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000a0000-0x1001000bffff]
[    0.000000] ITS@0x00001001000a0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000a0000: allocated 524288 Devices @80781400000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000a0000: allocated 32768 Interrupt Collections @80780280000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000c0000-0x1001000dffff]
[    0.000000] ITS@0x00001001000c0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000c0000: allocated 524288 Devices @80781800000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000c0000: allocated 32768 Interrupt Collections @807802a0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x1001000e0000-0x1001000fffff]
[    0.000000] ITS@0x00001001000e0000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x00001001000e0000: allocated 524288 Devices @80781c00000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x00001001000e0000: allocated 32768 Interrupt Collections @807802c0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100100000-0x10010011ffff]
[    0.000000] ITS@0x0000100100100000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100100000: allocated 524288 Devices @80782000000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100100000: allocated 32768 Interrupt Collections @807802e0000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ITS [mem 0x100100120000-0x10010013ffff]
[    0.000000] ITS@0x0000100100120000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000100100120000: allocated 524288 Devices @80782400000 (flat, esz 8, psz 64K, shr 1)
[    0.000000] ITS@0x0000100100120000: allocated 32768 Interrupt Collections @80780300000 (flat, esz 2, psz 64K, shr 1)
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: CPU: 0 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:2247 its_init+0x398/0x690
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 5.10.27-ampere-lts-standard #1
[    0.000000] pstate: 60000085 (nZCv daIf -PAN -UAO -TCO BTYPE=--)
[    0.000000] pc : its_init+0x398/0x690
[    0.000000] lr : its_init+0x394/0x690
[    0.000000] sp : ffff8000114d3c50
[    0.000000] x29: ffff8000114d3c50 x28: 0000000000000000 
[    0.000000] x27: ffff8000114dc9c0 x26: ffff0807001e5500 
[    0.000000] x25: 0000000000000000 x24: ffff08071f8240c0 
[    0.000000] x23: ffff800011622350 x22: ffff08070011b600 
[    0.000000] x21: ffff8000114dc9c0 x20: ffff800011622000 
[    0.000000] x19: ffff8000117689f8 x18: ffffffffffffffff 
[    0.000000] x17: 0000000000000000 x16: 000000000000001f 
[    0.000000] x15: ffff08070020471d x14: 0000000000000058 
[    0.000000] x13: 00000000000000c0 x12: 0000000000000000 
[    0.000000] x11: 0000000000000010 x10: ffff08071f6ec000 
[    0.000000] x9 : ffff800010d33c80 x8 : ffff080700320000 
[    0.000000] x7 : a2a2a2a2a2a2a2a2 x6 : ffff000000000000 
[    0.000000] x5 : fffffdffffe00000 x4 : ffff8000114dc9c0 
[    0.000000] x3 : ffff8000114ddaf0 x2 : 000000000000003d 
[    0.000000] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    0.000000] Call trace:
[    0.000000]  its_init+0x398/0x690
[    0.000000]  gic_init_bases+0x524/0x584
[    0.000000]  gic_acpi_init+0x134/0x278
[    0.000000]  acpi_match_madt+0x50/0x88
[    0.000000]  acpi_table_parse_entries_array+0x164/0x24c
[    0.000000]  acpi_table_parse_entries+0x48/0x70
[    0.000000]  acpi_table_parse_madt+0x34/0x40
[    0.000000]  __acpi_probe_device_table+0x90/0xec
[    0.000000]  irqchip_init+0x40/0x4c
[    0.000000]  init_IRQ+0xd0/0x104
[    0.000000]  start_kernel+0x354/0x554
[    0.000000] random: get_random_bytes called from __warn+0x128/0x1c0 with crng_init=0
[    0.000000] ---[ end trace 0000000000000000 ]---
[    0.000000] GICv3: using LPI property table @0x0000080780310000
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: CPU: 0 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    0.000000] pstate: 60000085 (nZCv daIf -PAN -UAO -TCO BTYPE=--)
[    0.000000] pc : its_cpu_init+0x824/0xb20
[    0.000000] lr : its_cpu_init+0x820/0xb20
[    0.000000] sp : ffff8000114d3c80
[    0.000000] x29: ffff8000114d3c80 x28: 0000000000000000 
[    0.000000] x27: 0000000000000001 x26: ffff800012000070 
[    0.000000] x25: fffffe201be0c800 x24: ffff800012000000 
[    0.000000] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    0.000000] x21: ffff8000117689f8 x20: ffff800011622350 
[    0.000000] x19: ffff800011622000 x18: ffffffffffffffff 
[    0.000000] x17: 0000000000000000 x16: 000000000000001f 
[    0.000000] x15: ffff8000914d3967 x14: 0000000000000058 
[    0.000000] x13: 00000000000000c0 x12: 0000000000000000 
[    0.000000] x11: 0000000000000010 x10: 000000000000000c 
[    0.000000] x9 : ffff800010d33c80 x8 : 0000000000000000 
[    0.000000] x7 : ffff08071fbf6bc0 x6 : 0000000000000003 
[    0.000000] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    0.000000] x3 : 0000000000000010 x2 : 000000000000ffff 
[    0.000000] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    0.000000] Call trace:
[    0.000000]  its_cpu_init+0x824/0xb20
[    0.000000]  gic_init_bases+0x528/0x584
[    0.000000]  gic_acpi_init+0x134/0x278
[    0.000000]  acpi_match_madt+0x50/0x88
[    0.000000]  acpi_table_parse_entries_array+0x164/0x24c
[    0.000000]  acpi_table_parse_entries+0x48/0x70
[    0.000000]  acpi_table_parse_madt+0x34/0x40
[    0.000000]  __acpi_probe_device_table+0x90/0xec
[    0.000000]  irqchip_init+0x40/0x4c
[    0.000000]  init_IRQ+0xd0/0x104
[    0.000000]  start_kernel+0x354/0x554
[    0.000000] ---[ end trace f68728a0d3053b52 ]---
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000080780320000
[    0.000000] arch_timer: Enabling local workaround for ARM erratum 1418040
[    0.000000] ACPI GTDT: found 1 memory-mapped timer block(s).
[    0.000000] arch_timer: cp15 and mmio timer(s) running at 25.00MHz (virt/phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[    0.000001] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[    0.000057] Console: colour dummy device 80x25
[    1.265342] printk: console [hvc0] enabled
[    1.269527] ACPI: Core revision 20200925
[    1.273837] ACPI BIOS Warning (bug): Incorrect checksum in table [IORT] - 0xF2, should be 0x0B (20200925/tbprint-173)
[    1.284421] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[    1.294761] pid_max: default: 32768 minimum: 301
[    1.299475] LSM: Security Framework initializing
[    1.304185] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.311606] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.319837] ACPI PPTT: PPTT table found, but unable to locate core 2 (2)
[    1.326830] xen:grant_table: Grant tables using version 1 layout
[    1.332750] Grant table initialized
[    1.336314] xen:events: Using FIFO-based ABI
[    1.340647] Xen: initializing cpu0
[    1.344139] rcu: Hierarchical SRCU implementation.
[    1.349106] Platform MSI: ITS@0x100100040000 domain created
[    1.354617] Platform MSI: ITS@0x100100060000 domain created
[    1.360278] Platform MSI: ITS@0x100100080000 domain created
[    1.365906] Platform MSI: ITS@0x1001000a0000 domain created
[    1.371539] Platform MSI: ITS@0x1001000c0000 domain created
[    1.377181] Platform MSI: ITS@0x1001000e0000 domain created
[    1.382821] Platform MSI: ITS@0x100100100000 domain created
[    1.388463] Platform MSI: ITS@0x100100120000 domain created
[    1.394108] PCI/MSI: ITS@0x100100040000 domain created
[    1.399314] PCI/MSI: ITS@0x100100060000 domain created
[    1.404522] PCI/MSI: ITS@0x100100080000 domain created
[    1.409731] PCI/MSI: ITS@0x1001000a0000 domain created
[    1.414939] PCI/MSI: ITS@0x1001000c0000 domain created
[    1.420148] PCI/MSI: ITS@0x1001000e0000 domain created
[    1.425355] PCI/MSI: ITS@0x100100100000 domain created
[    1.430564] PCI/MSI: ITS@0x100100120000 domain created
[    1.435774] EFI runtime services access via paravirt.
[    1.441233] smp: Bringing up secondary CPUs ...
(XEN) d0v1: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v2: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v3: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v4: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v5: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v6: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v7: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v8: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v9: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v10: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v11: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v12: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v13: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v14: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v15: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v16: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v17: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v18: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v19: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v20: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v21: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v22: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v23: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v24: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v25: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v26: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v27: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v28: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v29: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v30: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
(XEN) d0v31: vGICR: SGI: unhandled word write 0x000000ffffffff to ICACTIVER0
[    1.445858] Detected PIPT I-cache on CPU1
[    1.445883] GICv3: CPU1: found redistributor 1 region 0:0x0000100100160000
[    1.452415] ------------[ cut here ]------------
[    1.452420] WARNING: CPU: 1 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.452421] Modules linked in:
[    1.452425] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.452427] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.452429] pc : its_cpu_init+0x824/0xb20
[    1.452431] lr : its_cpu_init+0x820/0xb20
[    1.452432] sp : ffff800011a3be80
[    1.452433] x29: ffff800011a3be80 x28: 0000000000000001 
[    1.452435] x27: 0000000000000000 x26: ffff800012020070 
[    1.452437] x25: fffffe201be0cc00 x24: ffff800012020000 
[    1.452439] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.452441] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.452443] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.452445] x17: 0000000000000000 x16: 0000000000000000 
[    1.452447] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.452449] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.452451] x11: 0000000000000000 x10: 0000000000000001 
[    1.452453] x9 : ffff8000106d57b0 x8 : 3030303036313030 
[    1.452455] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.452456] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.452458] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.452460] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.452462] Call trace:
[    1.452464]  its_cpu_init+0x824/0xb20
[    1.452467]  gic_starting_cpu+0x48/0x90
[    1.452470]  cpuhp_invoke_callback+0xa4/0x460
[    1.452472]  notify_cpu_starting+0xa0/0xe0
[    1.452475]  secondary_start_kernel+0xe8/0x190
[    1.452476] ---[ end trace f68728a0d3053b53 ]---
[    1.452481] GICv3: CPU1: using allocated LPI pending table @0x0000080780330000
[    1.452538] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.452546] Xen: initializing cpu1
[    1.452567] CPU1: Booted secondary processor 0x0000000001 [0x413fd0c1]
[    1.452860] Detected PIPT I-cache on CPU2
[    1.452889] GICv3: CPU2: found redistributor 2 region 0:0x0000100100180000
[    1.459424] ------------[ cut here ]------------
[    1.459431] WARNING: CPU: 2 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.459432] Modules linked in:
[    1.459437] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.459440] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.459441] pc : its_cpu_init+0x824/0xb20
[    1.459443] lr : its_cpu_init+0x820/0xb20
[    1.459444] sp : ffff800011a43e80
[    1.459445] x29: ffff800011a43e80 x28: 0000000000000002 
[    1.459447] x27: 0000000000000000 x26: ffff800012040070 
[    1.459449] x25: fffffe201be0d000 x24: ffff800012040000 
[    1.459451] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.459453] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.459455] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.459457] x17: 0000000000000000 x16: 0000000000000000 
[    1.459459] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.459461] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.459463] x11: 0000000000000000 x10: 0000000000000001 
[    1.459465] x9 : ffff8000106d57b0 x8 : 3030303038313030 
[    1.459467] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.459469] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.459470] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.459473] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.459475] Call trace:
[    1.459476]  its_cpu_init+0x824/0xb20
[    1.459480]  gic_starting_cpu+0x48/0x90
[    1.459483]  cpuhp_invoke_callback+0xa4/0x460
[    1.459486]  notify_cpu_starting+0xa0/0xe0
[    1.459489]  secondary_start_kernel+0xe8/0x190
[    1.459490] ---[ end trace f68728a0d3053b54 ]---
[    1.459496] GICv3: CPU2: using allocated LPI pending table @0x0000080780340000
[    1.459563] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.459575] Xen: initializing cpu2
[    1.459598] CPU2: Booted secondary processor 0x0000000002 [0x413fd0c1]
[    1.459876] Detected PIPT I-cache on CPU3
[    1.459902] GICv3: CPU3: found redistributor 3 region 0:0x00001001001a0000
[    1.466434] ------------[ cut here ]------------
[    1.466439] WARNING: CPU: 3 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.466440] Modules linked in:
[    1.466444] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.466446] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.466448] pc : its_cpu_init+0x824/0xb20
[    1.466450] lr : its_cpu_init+0x820/0xb20
[    1.466451] sp : ffff800011a4be80
[    1.466452] x29: ffff800011a4be80 x28: 0000000000000003 
[    1.466454] x27: 0000000000000000 x26: ffff800012060070 
[    1.466456] x25: fffffe201be0d400 x24: ffff800012060000 
[    1.466458] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.466460] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.466462] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.466464] x17: 0000000000000000 x16: 0000000000000000 
[    1.466466] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.466468] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.466470] x11: 0000000000000000 x10: 0000000000000001 
[    1.466472] x9 : ffff8000106d57b0 x8 : 3030303061313030 
[    1.466473] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.466475] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.466477] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.466479] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.466481] Call trace:
[    1.466483]  its_cpu_init+0x824/0xb20
[    1.466486]  gic_starting_cpu+0x48/0x90
[    1.466488]  cpuhp_invoke_callback+0xa4/0x460
[    1.466490]  notify_cpu_starting+0xa0/0xe0
[    1.466493]  secondary_start_kernel+0xe8/0x190
[    1.466494] ---[ end trace f68728a0d3053b55 ]---
[    1.466500] GICv3: CPU3: using allocated LPI pending table @0x0000080780350000
[    1.466559] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.466567] Xen: initializing cpu3
[    1.466587] CPU3: Booted secondary processor 0x0000000003 [0x413fd0c1]
[    1.466843] Detected PIPT I-cache on CPU4
[    1.466872] GICv3: CPU4: found redistributor 4 region 0:0x00001001001c0000
[    1.473404] ------------[ cut here ]------------
[    1.473408] WARNING: CPU: 4 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.473409] Modules linked in:
[    1.473413] CPU: 4 PID: 0 Comm: swapper/4 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.473415] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.473417] pc : its_cpu_init+0x824/0xb20
[    1.473418] lr : its_cpu_init+0x820/0xb20
[    1.473419] sp : ffff800011a53e80
[    1.473420] x29: ffff800011a53e80 x28: 0000000000000004 
[    1.473423] x27: 0000000000000000 x26: ffff800012080070 
[    1.473425] x25: fffffe201be0d800 x24: ffff800012080000 
[    1.473427] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.473429] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.473431] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.473433] x17: 0000000000000000 x16: 0000000000000000 
[    1.473435] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.473436] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.473438] x11: 0000000000000000 x10: 0000000000000001 
[    1.473440] x9 : ffff8000106d57b0 x8 : 3030303063313030 
[    1.473442] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.473444] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.473446] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.473448] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.473450] Call trace:
[    1.473452]  its_cpu_init+0x824/0xb20
[    1.473455]  gic_starting_cpu+0x48/0x90
[    1.473457]  cpuhp_invoke_callback+0xa4/0x460
[    1.473459]  notify_cpu_starting+0xa0/0xe0
[    1.473462]  secondary_start_kernel+0xe8/0x190
[    1.473463] ---[ end trace f68728a0d3053b56 ]---
[    1.473469] GICv3: CPU4: using allocated LPI pending table @0x0000080780360000
[    1.473534] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.473542] Xen: initializing cpu4
[    1.473563] CPU4: Booted secondary processor 0x0000000004 [0x413fd0c1]
[    1.473914] Detected PIPT I-cache on CPU5
[    1.473944] GICv3: CPU5: found redistributor 5 region 0:0x00001001001e0000
[    1.480476] ------------[ cut here ]------------
[    1.480481] WARNING: CPU: 5 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.480482] Modules linked in:
[    1.480486] CPU: 5 PID: 0 Comm: swapper/5 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.480488] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.480490] pc : its_cpu_init+0x824/0xb20
[    1.480491] lr : its_cpu_init+0x820/0xb20
[    1.480492] sp : ffff800011a5be80
[    1.480493] x29: ffff800011a5be80 x28: 0000000000000005 
[    1.480495] x27: 0000000000000000 x26: ffff8000120a0070 
[    1.480497] x25: fffffe201be0dc00 x24: ffff8000120a0000 
[    1.480499] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.480501] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.480504] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.480506] x17: 0000000000000000 x16: 0000000000000000 
[    1.480507] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.480509] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.480511] x11: 0000000000000000 x10: 0000000000000001 
[    1.480513] x9 : ffff8000106d57b0 x8 : 3030303065313030 
[    1.480515] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.480517] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.480519] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.480521] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.480523] Call trace:
[    1.480525]  its_cpu_init+0x824/0xb20
[    1.480527]  gic_starting_cpu+0x48/0x90
[    1.480530]  cpuhp_invoke_callback+0xa4/0x460
[    1.480532]  notify_cpu_starting+0xa0/0xe0
[    1.480535]  secondary_start_kernel+0xe8/0x190
[    1.480536] ---[ end trace f68728a0d3053b57 ]---
[    1.480542] GICv3: CPU5: using allocated LPI pending table @0x0000080780370000
[    1.480601] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.480609] Xen: initializing cpu5
[    1.480630] CPU5: Booted secondary processor 0x0000000005 [0x413fd0c1]
[    1.480979] Detected PIPT I-cache on CPU6
[    1.481012] GICv3: CPU6: found redistributor 6 region 0:0x0000100100200000
[    1.487545] ------------[ cut here ]------------
[    1.487549] WARNING: CPU: 6 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.487550] Modules linked in:
[    1.487554] CPU: 6 PID: 0 Comm: swapper/6 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.487556] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.487558] pc : its_cpu_init+0x824/0xb20
[    1.487560] lr : its_cpu_init+0x820/0xb20
[    1.487560] sp : ffff800011a63e80
[    1.487562] x29: ffff800011a63e80 x28: 0000000000000006 
[    1.487564] x27: 0000000000000000 x26: ffff8000120c0070 
[    1.487567] x25: fffffe201be0e000 x24: ffff8000120c0000 
[    1.487569] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.487571] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.487573] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.487575] x17: 0000000000000000 x16: 0000000000000000 
[    1.487576] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.487578] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.487580] x11: 0000000000000000 x10: 0000000000000001 
[    1.487582] x9 : ffff8000106d57b0 x8 : 3030303030323030 
[    1.487584] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.487586] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.487588] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.487590] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.487592] Call trace:
[    1.487593]  its_cpu_init+0x824/0xb20
[    1.487596]  gic_starting_cpu+0x48/0x90
[    1.487599]  cpuhp_invoke_callback+0xa4/0x460
[    1.487601]  notify_cpu_starting+0xa0/0xe0
[    1.487604]  secondary_start_kernel+0xe8/0x190
[    1.487605] ---[ end trace f68728a0d3053b58 ]---
[    1.487610] GICv3: CPU6: using allocated LPI pending table @0x0000080780380000
[    1.487678] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.487687] Xen: initializing cpu6
[    1.487708] CPU6: Booted secondary processor 0x0000000006 [0x413fd0c1]
[    1.488025] Detected PIPT I-cache on CPU7
[    1.488059] GICv3: CPU7: found redistributor 7 region 0:0x0000100100220000
[    1.494591] ------------[ cut here ]------------
[    1.494596] WARNING: CPU: 7 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.494597] Modules linked in:
[    1.494601] CPU: 7 PID: 0 Comm: swapper/7 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.494603] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.494605] pc : its_cpu_init+0x824/0xb20
[    1.494607] lr : its_cpu_init+0x820/0xb20
[    1.494608] sp : ffff800011a6be80
[    1.494609] x29: ffff800011a6be80 x28: 0000000000000007 
[    1.494611] x27: 0000000000000000 x26: ffff8000120e0070 
[    1.494613] x25: fffffe201be0e400 x24: ffff8000120e0000 
[    1.494615] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.494617] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.494619] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.494621] x17: 0000000000000000 x16: 0000000000000000 
[    1.494623] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.494625] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.494627] x11: 0000000000000000 x10: 0000000000000001 
[    1.494629] x9 : ffff8000106d57b0 x8 : 3030303032323030 
[    1.494631] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.494633] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.494635] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.494637] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.494639] Call trace:
[    1.494640]  its_cpu_init+0x824/0xb20
[    1.494643]  gic_starting_cpu+0x48/0x90
[    1.494646]  cpuhp_invoke_callback+0xa4/0x460
[    1.494648]  notify_cpu_starting+0xa0/0xe0
[    1.494650]  secondary_start_kernel+0xe8/0x190
[    1.494652] ---[ end trace f68728a0d3053b59 ]---
[    1.494658] GICv3: CPU7: using allocated LPI pending table @0x0000080780390000
[    1.494717] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.494726] Xen: initializing cpu7
[    1.494747] CPU7: Booted secondary processor 0x0000000007 [0x413fd0c1]
[    1.494997] Detected PIPT I-cache on CPU8
[    1.495034] GICv3: CPU8: found redistributor 8 region 0:0x0000100100240000
[    1.501566] ------------[ cut here ]------------
[    1.501571] WARNING: CPU: 8 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.501572] Modules linked in:
[    1.501576] CPU: 8 PID: 0 Comm: swapper/8 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.501578] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.501580] pc : its_cpu_init+0x824/0xb20
[    1.501582] lr : its_cpu_init+0x820/0xb20
[    1.501582] sp : ffff800011a73e80
[    1.501584] x29: ffff800011a73e80 x28: 0000000000000008 
[    1.501586] x27: 0000000000000000 x26: ffff800012100070 
[    1.501588] x25: fffffe201be0e800 x24: ffff800012100000 
[    1.501590] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.501592] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.501594] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.501596] x17: 0000000000000000 x16: 0000000000000000 
[    1.501598] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.501600] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.501602] x11: 0000000000000000 x10: 0000000000000001 
[    1.501604] x9 : ffff8000106d57b0 x8 : 3030303034323030 
[    1.501606] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.501608] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.501609] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.501611] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.501614] Call trace:
[    1.501615]  its_cpu_init+0x824/0xb20
[    1.501618]  gic_starting_cpu+0x48/0x90
[    1.501620]  cpuhp_invoke_callback+0xa4/0x460
[    1.501623]  notify_cpu_starting+0xa0/0xe0
[    1.501625]  secondary_start_kernel+0xe8/0x190
[    1.501627] ---[ end trace f68728a0d3053b5a ]---
[    1.501632] GICv3: CPU8: using allocated LPI pending table @0x00000807803a0000
[    1.501700] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.501709] Xen: initializing cpu8
[    1.501731] CPU8: Booted secondary processor 0x0000000008 [0x413fd0c1]
[    1.502091] Detected PIPT I-cache on CPU9
[    1.502129] GICv3: CPU9: found redistributor 9 region 0:0x0000100100260000
[    1.508661] ------------[ cut here ]------------
[    1.508666] WARNING: CPU: 9 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.508667] Modules linked in:
[    1.508671] CPU: 9 PID: 0 Comm: swapper/9 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.508673] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.508675] pc : its_cpu_init+0x824/0xb20
[    1.508676] lr : its_cpu_init+0x820/0xb20
[    1.508677] sp : ffff800011a7be80
[    1.508678] x29: ffff800011a7be80 x28: 0000000000000009 
[    1.508680] x27: 0000000000000000 x26: ffff800012120070 
[    1.508683] x25: fffffe201be0ec00 x24: ffff800012120000 
[    1.508685] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.508686] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.508688] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.508690] x17: 0000000000000000 x16: 0000000000000000 
[    1.508692] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.508694] x13: ffff8000116d4cf4 x12: 0000000000000000 
[    1.508696] x11: 0000000000000000 x10: 0000000000000001 
[    1.508698] x9 : ffff8000106d57b0 x8 : 3030303036323030 
[    1.508700] x7 : 3130303130303030 x6 : 0000000000000003 
[    1.508702] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.508704] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.508706] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.508708] Call trace:
[    1.508710]  its_cpu_init+0x824/0xb20
[    1.508713]  gic_starting_cpu+0x48/0x90
[    1.508715]  cpuhp_invoke_callback+0xa4/0x460
[    1.508717]  notify_cpu_starting+0xa0/0xe0
[    1.508720]  secondary_start_kernel+0xe8/0x190
[    1.508721] ---[ end trace f68728a0d3053b5b ]---
[    1.508727] GICv3: CPU9: using allocated LPI pending table @0x00000807803b0000
[    1.508787] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.508795] Xen: initializing cpu9
[    1.508816] CPU9: Booted secondary processor 0x0000000009 [0x413fd0c1]
[    1.509169] Detected PIPT I-cache on CPU10
[    1.509211] GICv3: CPU10: found redistributor a region 0:0x0000100100280000
[    1.515831] ------------[ cut here ]------------
[    1.515836] WARNING: CPU: 10 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.515836] Modules linked in:
[    1.515841] CPU: 10 PID: 0 Comm: swapper/10 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.515843] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.515845] pc : its_cpu_init+0x824/0xb20
[    1.515846] lr : its_cpu_init+0x820/0xb20
[    1.515847] sp : ffff800011a83e80
[    1.515848] x29: ffff800011a83e80 x28: 000000000000000a 
[    1.515850] x27: 0000000000000000 x26: ffff800012140070 
[    1.515852] x25: fffffe201be0f000 x24: ffff800012140000 
[    1.515854] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.515856] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.515858] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.515860] x17: 0000000000000000 x16: 0000000000000000 
[    1.515862] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.515864] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.515866] x11: 0000000000000000 x10: 0000000000000001 
[    1.515868] x9 : ffff8000106d57b0 x8 : 3030303832303031 
[    1.515870] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.515872] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.515874] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.515876] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.515878] Call trace:
[    1.515880]  its_cpu_init+0x824/0xb20
[    1.515882]  gic_starting_cpu+0x48/0x90
[    1.515885]  cpuhp_invoke_callback+0xa4/0x460
[    1.515887]  notify_cpu_starting+0xa0/0xe0
[    1.515890]  secondary_start_kernel+0xe8/0x190
[    1.515891] ---[ end trace f68728a0d3053b5c ]---
[    1.515897] GICv3: CPU10: using allocated LPI pending table @0x00000807803c0000
[    1.515963] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.515972] Xen: initializing cpu10
[    1.515994] CPU10: Booted secondary processor 0x000000000a [0x413fd0c1]
[    1.516349] Detected PIPT I-cache on CPU11
[    1.516391] GICv3: CPU11: found redistributor b region 0:0x00001001002a0000
[    1.523011] ------------[ cut here ]------------
[    1.523015] WARNING: CPU: 11 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.523017] Modules linked in:
[    1.523021] CPU: 11 PID: 0 Comm: swapper/11 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.523023] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.523025] pc : its_cpu_init+0x824/0xb20
[    1.523026] lr : its_cpu_init+0x820/0xb20
[    1.523027] sp : ffff800011a8be80
[    1.523028] x29: ffff800011a8be80 x28: 000000000000000b 
[    1.523031] x27: 0000000000000000 x26: ffff800012160070 
[    1.523033] x25: fffffe201be0f400 x24: ffff800012160000 
[    1.523035] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.523037] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.523039] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.523041] x17: 0000000000000000 x16: 0000000000000000 
[    1.523043] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.523045] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.523047] x11: 0000000000000000 x10: 0000000000000001 
[    1.523048] x9 : ffff8000106d57b0 x8 : 3030306132303031 
[    1.523050] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.523052] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.523054] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.523056] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.523058] Call trace:
[    1.523060]  its_cpu_init+0x824/0xb20
[    1.523063]  gic_starting_cpu+0x48/0x90
[    1.523065]  cpuhp_invoke_callback+0xa4/0x460
[    1.523068]  notify_cpu_starting+0xa0/0xe0
[    1.523070]  secondary_start_kernel+0xe8/0x190
[    1.523071] ---[ end trace f68728a0d3053b5d ]---
[    1.523077] GICv3: CPU11: using allocated LPI pending table @0x00000807803d0000
[    1.523137] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.523145] Xen: initializing cpu11
[    1.523166] CPU11: Booted secondary processor 0x000000000b [0x413fd0c1]
[    1.523443] Detected PIPT I-cache on CPU12
[    1.523488] GICv3: CPU12: found redistributor c region 0:0x00001001002c0000
[    1.530108] ------------[ cut here ]------------
[    1.530112] WARNING: CPU: 12 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.530113] Modules linked in:
[    1.530117] CPU: 12 PID: 0 Comm: swapper/12 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.530119] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.530121] pc : its_cpu_init+0x824/0xb20
[    1.530122] lr : its_cpu_init+0x820/0xb20
[    1.530123] sp : ffff800011a93e80
[    1.530124] x29: ffff800011a93e80 x28: 000000000000000c 
[    1.530127] x27: 0000000000000000 x26: ffff800012180070 
[    1.530129] x25: fffffe201be0f800 x24: ffff800012180000 
[    1.530131] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.530133] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.530135] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.530137] x17: 0000000000000000 x16: 0000000000000000 
[    1.530139] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.530141] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.530143] x11: 0000000000000000 x10: 0000000000000001 
[    1.530145] x9 : ffff8000106d57b0 x8 : 3030306332303031 
[    1.530147] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.530148] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.530150] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.530152] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.530154] Call trace:
[    1.530156]  its_cpu_init+0x824/0xb20
[    1.530159]  gic_starting_cpu+0x48/0x90
[    1.530162]  cpuhp_invoke_callback+0xa4/0x460
[    1.530164]  notify_cpu_starting+0xa0/0xe0
[    1.530166]  secondary_start_kernel+0xe8/0x190
[    1.530167] ---[ end trace f68728a0d3053b5e ]---
[    1.530173] GICv3: CPU12: using allocated LPI pending table @0x00000807803e0000
[    1.530238] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.530247] Xen: initializing cpu12
[    1.530270] CPU12: Booted secondary processor 0x000000000c [0x413fd0c1]
[    1.530517] Detected PIPT I-cache on CPU13
[    1.530563] GICv3: CPU13: found redistributor d region 0:0x00001001002e0000
[    1.537183] ------------[ cut here ]------------
[    1.537188] WARNING: CPU: 13 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.537189] Modules linked in:
[    1.537193] CPU: 13 PID: 0 Comm: swapper/13 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.537195] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.537197] pc : its_cpu_init+0x824/0xb20
[    1.537198] lr : its_cpu_init+0x820/0xb20
[    1.537199] sp : ffff800011a9be80
[    1.537200] x29: ffff800011a9be80 x28: 000000000000000d 
[    1.537202] x27: 0000000000000000 x26: ffff8000121a0070 
[    1.537205] x25: fffffe201be0fc00 x24: ffff8000121a0000 
[    1.537207] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.537209] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.537211] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.537213] x17: 0000000000000000 x16: 0000000000000000 
[    1.537215] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.537217] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.537219] x11: 0000000000000000 x10: 0000000000000001 
[    1.537221] x9 : ffff8000106d57b0 x8 : 3030306532303031 
[    1.537223] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.537224] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.537226] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.537228] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.537231] Call trace:
[    1.537232]  its_cpu_init+0x824/0xb20
[    1.537235]  gic_starting_cpu+0x48/0x90
[    1.537238]  cpuhp_invoke_callback+0xa4/0x460
[    1.537240]  notify_cpu_starting+0xa0/0xe0
[    1.537242]  secondary_start_kernel+0xe8/0x190
[    1.537244] ---[ end trace f68728a0d3053b5f ]---
[    1.537250] GICv3: CPU13: using allocated LPI pending table @0x00000807803f0000
[    1.537309] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.537318] Xen: initializing cpu13
[    1.537339] CPU13: Booted secondary processor 0x000000000d [0x413fd0c1]
[    1.537644] Detected PIPT I-cache on CPU14
[    1.537693] GICv3: CPU14: found redistributor e region 0:0x0000100100300000
[    1.544314] ------------[ cut here ]------------
[    1.544318] WARNING: CPU: 14 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.544319] Modules linked in:
[    1.544323] CPU: 14 PID: 0 Comm: swapper/14 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.544325] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.544327] pc : its_cpu_init+0x824/0xb20
[    1.544329] lr : its_cpu_init+0x820/0xb20
[    1.544329] sp : ffff800011aa3e80
[    1.544330] x29: ffff800011aa3e80 x28: 000000000000000e 
[    1.544333] x27: 0000000000000000 x26: ffff8000121c0070 
[    1.544335] x25: fffffe201bea0000 x24: ffff8000121c0000 
[    1.544337] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.544339] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.544341] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.544343] x17: 0000000000000000 x16: 0000000000000000 
[    1.544345] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.544347] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.544349] x11: 0000000000000000 x10: 0000000000000001 
[    1.544351] x9 : ffff8000106d57b0 x8 : 3030303033303031 
[    1.544353] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.544355] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.544357] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.544358] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.544361] Call trace:
[    1.544362]  its_cpu_init+0x824/0xb20
[    1.544365]  gic_starting_cpu+0x48/0x90
[    1.544368]  cpuhp_invoke_callback+0xa4/0x460
[    1.544370]  notify_cpu_starting+0xa0/0xe0
[    1.544372]  secondary_start_kernel+0xe8/0x190
[    1.544373] ---[ end trace f68728a0d3053b60 ]---
[    1.544379] GICv3: CPU14: using allocated LPI pending table @0x0000080782800000
[    1.544445] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.544454] Xen: initializing cpu14
[    1.544477] CPU14: Booted secondary processor 0x000000000e [0x413fd0c1]
[    1.544807] Detected PIPT I-cache on CPU15
[    1.544857] GICv3: CPU15: found redistributor f region 0:0x0000100100320000
[    1.551476] ------------[ cut here ]------------
[    1.551481] WARNING: CPU: 15 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.551482] Modules linked in:
[    1.551486] CPU: 15 PID: 0 Comm: swapper/15 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.551488] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.551490] pc : its_cpu_init+0x824/0xb20
[    1.551491] lr : its_cpu_init+0x820/0xb20
[    1.551492] sp : ffff800011aabe80
[    1.551493] x29: ffff800011aabe80 x28: 000000000000000f 
[    1.551495] x27: 0000000000000000 x26: ffff8000121e0070 
[    1.551498] x25: fffffe201bea0400 x24: ffff8000121e0000 
[    1.551499] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.551501] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.551504] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.551505] x17: 0000000000000000 x16: 0000000000000000 
[    1.551507] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.551509] x13: ffff8000116d4cf5 x12: 0000000000000000 
[    1.551511] x11: 0000000000000000 x10: 0000000000000001 
[    1.551513] x9 : ffff8000106d57b0 x8 : 3030303233303031 
[    1.551515] x7 : 3030313030303078 x6 : 0000000000000003 
[    1.551517] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.551519] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.551521] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.551523] Call trace:
[    1.551525]  its_cpu_init+0x824/0xb20
[    1.551528]  gic_starting_cpu+0x48/0x90
[    1.551530]  cpuhp_invoke_callback+0xa4/0x460
[    1.551532]  notify_cpu_starting+0xa0/0xe0
[    1.551535]  secondary_start_kernel+0xe8/0x190
[    1.551536] ---[ end trace f68728a0d3053b61 ]---
[    1.551542] GICv3: CPU15: using allocated LPI pending table @0x0000080782810000
[    1.551601] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.551609] Xen: initializing cpu15
[    1.551631] CPU15: Booted secondary processor 0x000000000f [0x413fd0c1]
[    1.551982] Detected PIPT I-cache on CPU16
[    1.552035] GICv3: CPU16: found redistributor 100 region 0:0x0000100100340000
[    1.558654] ------------[ cut here ]------------
[    1.558659] WARNING: CPU: 16 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.558660] Modules linked in:
[    1.558664] CPU: 16 PID: 0 Comm: swapper/16 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.558666] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.558668] pc : its_cpu_init+0x824/0xb20
[    1.558669] lr : its_cpu_init+0x820/0xb20
[    1.558670] sp : ffff800011ab3e80
[    1.558671] x29: ffff800011ab3e80 x28: 0000000000000010 
[    1.558674] x27: 0000000000000000 x26: ffff800012200070 
[    1.558676] x25: fffffe201bea0800 x24: ffff800012200000 
[    1.558678] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.558680] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.558682] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.558684] x17: 0000000000000000 x16: 0000000000000000 
[    1.558686] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.558688] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.558689] x11: 0000000000000000 x10: 0000000000000001 
[    1.558691] x9 : ffff8000106d57b0 x8 : 3034333030313030 
[    1.558693] x7 : 313030303078303a x6 : 0000000000000003 
[    1.558695] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.558697] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.558699] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.558701] Call trace:
[    1.558702]  its_cpu_init+0x824/0xb20
[    1.558705]  gic_starting_cpu+0x48/0x90
[    1.558707]  cpuhp_invoke_callback+0xa4/0x460
[    1.558709]  notify_cpu_starting+0xa0/0xe0
[    1.558712]  secondary_start_kernel+0xe8/0x190
[    1.558713] ---[ end trace f68728a0d3053b62 ]---
[    1.558719] GICv3: CPU16: using allocated LPI pending table @0x0000080782820000
[    1.558785] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.558794] Xen: initializing cpu16
[    1.558817] CPU16: Booted secondary processor 0x0000000100 [0x413fd0c1]
[    1.559066] Detected PIPT I-cache on CPU17
[    1.559121] GICv3: CPU17: found redistributor 101 region 0:0x0000100100360000
[    1.565741] ------------[ cut here ]------------
[    1.565745] WARNING: CPU: 17 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.565746] Modules linked in:
[    1.565750] CPU: 17 PID: 0 Comm: swapper/17 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.565753] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.565754] pc : its_cpu_init+0x824/0xb20
[    1.565756] lr : its_cpu_init+0x820/0xb20
[    1.565757] sp : ffff800011abbe80
[    1.565758] x29: ffff800011abbe80 x28: 0000000000000011 
[    1.565761] x27: 0000000000000000 x26: ffff800012220070 
[    1.565763] x25: fffffe201bea0c00 x24: ffff800012220000 
[    1.565765] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.565767] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.565769] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.565771] x17: 0000000000000000 x16: 0000000000000000 
[    1.565773] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.565775] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.565776] x11: 0000000000000000 x10: 0000000000000001 
[    1.565778] x9 : ffff8000106d57b0 x8 : 3036333030313030 
[    1.565780] x7 : 313030303078303a x6 : 0000000000000003 
[    1.565782] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.565784] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.565786] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.565788] Call trace:
[    1.565790]  its_cpu_init+0x824/0xb20
[    1.565793]  gic_starting_cpu+0x48/0x90
[    1.565795]  cpuhp_invoke_callback+0xa4/0x460
[    1.565798]  notify_cpu_starting+0xa0/0xe0
[    1.565800]  secondary_start_kernel+0xe8/0x190
[    1.565801] ---[ end trace f68728a0d3053b63 ]---
[    1.565808] GICv3: CPU17: using allocated LPI pending table @0x0000080782830000
[    1.565867] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.565876] Xen: initializing cpu17
[    1.565898] CPU17: Booted secondary processor 0x0000000101 [0x413fd0c1]
[    1.566227] Detected PIPT I-cache on CPU18
[    1.566283] GICv3: CPU18: found redistributor 102 region 0:0x0000100100380000
[    1.572904] ------------[ cut here ]------------
[    1.572909] WARNING: CPU: 18 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.572909] Modules linked in:
[    1.572913] CPU: 18 PID: 0 Comm: swapper/18 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.572915] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.572917] pc : its_cpu_init+0x824/0xb20
[    1.572919] lr : its_cpu_init+0x820/0xb20
[    1.572919] sp : ffff800011ac3e80
[    1.572920] x29: ffff800011ac3e80 x28: 0000000000000012 
[    1.572922] x27: 0000000000000000 x26: ffff800012240070 
[    1.572925] x25: fffffe201bea1000 x24: ffff800012240000 
[    1.572926] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.572928] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.572930] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.572932] x17: 0000000000000000 x16: 0000000000000000 
[    1.572934] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.572936] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.572938] x11: 0000000000000000 x10: 0000000000000001 
[    1.572940] x9 : ffff8000106d57b0 x8 : 3038333030313030 
[    1.572942] x7 : 313030303078303a x6 : 0000000000000003 
[    1.572943] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.572945] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.572947] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.572949] Call trace:
[    1.572951]  its_cpu_init+0x824/0xb20
[    1.572953]  gic_starting_cpu+0x48/0x90
[    1.572956]  cpuhp_invoke_callback+0xa4/0x460
[    1.572958]  notify_cpu_starting+0xa0/0xe0
[    1.572960]  secondary_start_kernel+0xe8/0x190
[    1.572962] ---[ end trace f68728a0d3053b64 ]---
[    1.572968] GICv3: CPU18: using allocated LPI pending table @0x0000080782840000
[    1.573035] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.573043] Xen: initializing cpu18
[    1.573068] CPU18: Booted secondary processor 0x0000000102 [0x413fd0c1]
[    1.573406] Detected PIPT I-cache on CPU19
[    1.573464] GICv3: CPU19: found redistributor 103 region 0:0x00001001003a0000
[    1.580084] ------------[ cut here ]------------
[    1.580089] WARNING: CPU: 19 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.580089] Modules linked in:
[    1.580094] CPU: 19 PID: 0 Comm: swapper/19 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.580096] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.580097] pc : its_cpu_init+0x824/0xb20
[    1.580099] lr : its_cpu_init+0x820/0xb20
[    1.580100] sp : ffff800011acbe80
[    1.580101] x29: ffff800011acbe80 x28: 0000000000000013 
[    1.580103] x27: 0000000000000000 x26: ffff800012260070 
[    1.580105] x25: fffffe201bea1400 x24: ffff800012260000 
[    1.580107] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.580109] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.580111] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.580113] x17: 0000000000000000 x16: 0000000000000000 
[    1.580115] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.580117] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.580119] x11: 0000000000000000 x10: 0000000000000001 
[    1.580120] x9 : ffff8000106d57b0 x8 : 3061333030313030 
[    1.580122] x7 : 313030303078303a x6 : 0000000000000003 
[    1.580124] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.580126] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.580128] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.580130] Call trace:
[    1.580132]  its_cpu_init+0x824/0xb20
[    1.580135]  gic_starting_cpu+0x48/0x90
[    1.580137]  cpuhp_invoke_callback+0xa4/0x460
[    1.580140]  notify_cpu_starting+0xa0/0xe0
[    1.580142]  secondary_start_kernel+0xe8/0x190
[    1.580144] ---[ end trace f68728a0d3053b65 ]---
[    1.580150] GICv3: CPU19: using allocated LPI pending table @0x0000080782850000
[    1.580209] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.580217] Xen: initializing cpu19
[    1.580240] CPU19: Booted secondary processor 0x0000000103 [0x413fd0c1]
[    1.580589] Detected PIPT I-cache on CPU20
[    1.580650] GICv3: CPU20: found redistributor 104 region 0:0x00001001003c0000
[    1.587270] ------------[ cut here ]------------
[    1.587275] WARNING: CPU: 20 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.587276] Modules linked in:
[    1.587280] CPU: 20 PID: 0 Comm: swapper/20 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.587282] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.587284] pc : its_cpu_init+0x824/0xb20
[    1.587285] lr : its_cpu_init+0x820/0xb20
[    1.587286] sp : ffff800011ad3e80
[    1.587287] x29: ffff800011ad3e80 x28: 0000000000000014 
[    1.587289] x27: 0000000000000000 x26: ffff800012280070 
[    1.587291] x25: fffffe201bea1800 x24: ffff800012280000 
[    1.587293] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.587295] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.587297] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.587299] x17: 0000000000000000 x16: 0000000000000000 
[    1.587301] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.587303] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.587304] x11: 0000000000000000 x10: 0000000000000001 
[    1.587306] x9 : ffff8000106d57b0 x8 : 3063333030313030 
[    1.587308] x7 : 313030303078303a x6 : 0000000000000003 
[    1.587310] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.587312] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.587314] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.587316] Call trace:
[    1.587318]  its_cpu_init+0x824/0xb20
[    1.587320]  gic_starting_cpu+0x48/0x90
[    1.587323]  cpuhp_invoke_callback+0xa4/0x460
[    1.587325]  notify_cpu_starting+0xa0/0xe0
[    1.587327]  secondary_start_kernel+0xe8/0x190
[    1.587329] ---[ end trace f68728a0d3053b66 ]---
[    1.587334] GICv3: CPU20: using allocated LPI pending table @0x0000080782860000
[    1.587399] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.587408] Xen: initializing cpu20
[    1.587433] CPU20: Booted secondary processor 0x0000000104 [0x413fd0c1]
[    1.587755] Detected PIPT I-cache on CPU21
[    1.587817] GICv3: CPU21: found redistributor 105 region 0:0x00001001003e0000
[    1.594438] ------------[ cut here ]------------
[    1.594443] WARNING: CPU: 21 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.594444] Modules linked in:
[    1.594448] CPU: 21 PID: 0 Comm: swapper/21 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.594450] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.594452] pc : its_cpu_init+0x824/0xb20
[    1.594453] lr : its_cpu_init+0x820/0xb20
[    1.594454] sp : ffff800011adbe80
[    1.594455] x29: ffff800011adbe80 x28: 0000000000000015 
[    1.594458] x27: 0000000000000000 x26: ffff8000122a0070 
[    1.594460] x25: fffffe201bea1c00 x24: ffff8000122a0000 
[    1.594462] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.594464] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.594466] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.594468] x17: 0000000000000000 x16: 0000000000000000 
[    1.594470] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.594471] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.594473] x11: 0000000000000000 x10: 0000000000000001 
[    1.594475] x9 : ffff8000106d57b0 x8 : 3065333030313030 
[    1.594477] x7 : 313030303078303a x6 : 0000000000000003 
[    1.594479] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.594481] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.594483] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.594485] Call trace:
[    1.594487]  its_cpu_init+0x824/0xb20
[    1.594490]  gic_starting_cpu+0x48/0x90
[    1.594492]  cpuhp_invoke_callback+0xa4/0x460
[    1.594494]  notify_cpu_starting+0xa0/0xe0
[    1.594497]  secondary_start_kernel+0xe8/0x190
[    1.594498] ---[ end trace f68728a0d3053b67 ]---
[    1.594504] GICv3: CPU21: using allocated LPI pending table @0x0000080782870000
[    1.594563] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.594571] Xen: initializing cpu21
[    1.594593] CPU21: Booted secondary processor 0x0000000105 [0x413fd0c1]
[    1.594843] Detected PIPT I-cache on CPU22
[    1.594909] GICv3: CPU22: found redistributor 106 region 0:0x0000100100400000
[    1.601531] ------------[ cut here ]------------
[    1.601535] WARNING: CPU: 22 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.601536] Modules linked in:
[    1.601540] CPU: 22 PID: 0 Comm: swapper/22 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.601542] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.601545] pc : its_cpu_init+0x824/0xb20
[    1.601546] lr : its_cpu_init+0x820/0xb20
[    1.601547] sp : ffff800011ae3e80
[    1.601548] x29: ffff800011ae3e80 x28: 0000000000000016 
[    1.601550] x27: 0000000000000000 x26: ffff8000122c0070 
[    1.601553] x25: fffffe201bea2000 x24: ffff8000122c0000 
[    1.601555] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.601557] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.601559] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.601560] x17: 0000000000000000 x16: 0000000000000000 
[    1.601562] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.601564] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.601566] x11: 0000000000000000 x10: 0000000000000001 
[    1.601568] x9 : ffff8000106d57b0 x8 : 3030343030313030 
[    1.601570] x7 : 313030303078303a x6 : 0000000000000003 
[    1.601572] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.601574] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.601576] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.601578] Call trace:
[    1.601580]  its_cpu_init+0x824/0xb20
[    1.601582]  gic_starting_cpu+0x48/0x90
[    1.601585]  cpuhp_invoke_callback+0xa4/0x460
[    1.601587]  notify_cpu_starting+0xa0/0xe0
[    1.601589]  secondary_start_kernel+0xe8/0x190
[    1.601591] ---[ end trace f68728a0d3053b68 ]---
[    1.601596] GICv3: CPU22: using allocated LPI pending table @0x0000080782880000
[    1.601664] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.601673] Xen: initializing cpu22
[    1.601699] CPU22: Booted secondary processor 0x0000000106 [0x413fd0c1]
[    1.602025] Detected PIPT I-cache on CPU23
[    1.602090] GICv3: CPU23: found redistributor 107 region 0:0x0000100100420000
[    1.608711] ------------[ cut here ]------------
[    1.608716] WARNING: CPU: 23 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.608717] Modules linked in:
[    1.608721] CPU: 23 PID: 0 Comm: swapper/23 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.608723] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.608725] pc : its_cpu_init+0x824/0xb20
[    1.608727] lr : its_cpu_init+0x820/0xb20
[    1.608727] sp : ffff800011aebe80
[    1.608728] x29: ffff800011aebe80 x28: 0000000000000017 
[    1.608731] x27: 0000000000000000 x26: ffff8000122e0070 
[    1.608733] x25: fffffe201bea2400 x24: ffff8000122e0000 
[    1.608735] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.608737] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.608739] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.608741] x17: 0000000000000000 x16: 0000000000000000 
[    1.608742] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.608744] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.608746] x11: 0000000000000000 x10: 0000000000000001 
[    1.608748] x9 : ffff8000106d57b0 x8 : 3032343030313030 
[    1.608750] x7 : 313030303078303a x6 : 0000000000000003 
[    1.608752] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.608754] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.608756] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.608758] Call trace:
[    1.608760]  its_cpu_init+0x824/0xb20
[    1.608763]  gic_starting_cpu+0x48/0x90
[    1.608766]  cpuhp_invoke_callback+0xa4/0x460
[    1.608768]  notify_cpu_starting+0xa0/0xe0
[    1.608770]  secondary_start_kernel+0xe8/0x190
[    1.608772] ---[ end trace f68728a0d3053b69 ]---
[    1.608777] GICv3: CPU23: using allocated LPI pending table @0x0000080782890000
[    1.608837] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.608845] Xen: initializing cpu23
[    1.608868] CPU23: Booted secondary processor 0x0000000107 [0x413fd0c1]
[    1.609207] Detected PIPT I-cache on CPU24
[    1.609276] GICv3: CPU24: found redistributor 108 region 0:0x0000100100440000
[    1.615897] ------------[ cut here ]------------
[    1.615902] WARNING: CPU: 24 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.615903] Modules linked in:
[    1.615907] CPU: 24 PID: 0 Comm: swapper/24 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.615909] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.615910] pc : its_cpu_init+0x824/0xb20
[    1.615912] lr : its_cpu_init+0x820/0xb20
[    1.615913] sp : ffff800011af3e80
[    1.615914] x29: ffff800011af3e80 x28: 0000000000000018 
[    1.615916] x27: 0000000000000000 x26: ffff800012300070 
[    1.615918] x25: fffffe201bea2800 x24: ffff800012300000 
[    1.615920] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.615922] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.615924] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.615926] x17: 0000000000000000 x16: 0000000000000000 
[    1.615928] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.615930] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.615932] x11: 0000000000000000 x10: 0000000000000001 
[    1.615934] x9 : ffff8000106d57b0 x8 : 3034343030313030 
[    1.615936] x7 : 313030303078303a x6 : 0000000000000003 
[    1.615938] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.615940] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.615942] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.615944] Call trace:
[    1.615946]  its_cpu_init+0x824/0xb20
[    1.615948]  gic_starting_cpu+0x48/0x90
[    1.615951]  cpuhp_invoke_callback+0xa4/0x460
[    1.615953]  notify_cpu_starting+0xa0/0xe0
[    1.615955]  secondary_start_kernel+0xe8/0x190
[    1.615956] ---[ end trace f68728a0d3053b6a ]---
[    1.615962] GICv3: CPU24: using allocated LPI pending table @0x00000807828a0000
[    1.616030] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.616038] Xen: initializing cpu24
[    1.616065] CPU24: Booted secondary processor 0x0000000108 [0x413fd0c1]
[    1.616403] Detected PIPT I-cache on CPU25
[    1.616473] GICv3: CPU25: found redistributor 109 region 0:0x0000100100460000
[    1.623094] ------------[ cut here ]------------
[    1.623099] WARNING: CPU: 25 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.623100] Modules linked in:
[    1.623104] CPU: 25 PID: 0 Comm: swapper/25 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.623106] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.623108] pc : its_cpu_init+0x824/0xb20
[    1.623109] lr : its_cpu_init+0x820/0xb20
[    1.623110] sp : ffff800011afbe80
[    1.623111] x29: ffff800011afbe80 x28: 0000000000000019 
[    1.623114] x27: 0000000000000000 x26: ffff800012320070 
[    1.623116] x25: fffffe201bea2c00 x24: ffff800012320000 
[    1.623118] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.623120] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.623122] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.623124] x17: 0000000000000000 x16: 0000000000000000 
[    1.623126] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.623128] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.623130] x11: 0000000000000000 x10: 0000000000000001 
[    1.623132] x9 : ffff8000106d57b0 x8 : 3036343030313030 
[    1.623134] x7 : 313030303078303a x6 : 0000000000000003 
[    1.623136] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.623137] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.623139] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.623141] Call trace:
[    1.623143]  its_cpu_init+0x824/0xb20
[    1.623146]  gic_starting_cpu+0x48/0x90
[    1.623149]  cpuhp_invoke_callback+0xa4/0x460
[    1.623151]  notify_cpu_starting+0xa0/0xe0
[    1.623153]  secondary_start_kernel+0xe8/0x190
[    1.623155] ---[ end trace f68728a0d3053b6b ]---
[    1.623161] GICv3: CPU25: using allocated LPI pending table @0x00000807828b0000
[    1.623220] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.623228] Xen: initializing cpu25
[    1.623251] CPU25: Booted secondary processor 0x0000000109 [0x413fd0c1]
[    1.623501] Detected PIPT I-cache on CPU26
[    1.623573] GICv3: CPU26: found redistributor 10a region 0:0x0000100100480000
[    1.630195] ------------[ cut here ]------------
[    1.630200] WARNING: CPU: 26 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.630201] Modules linked in:
[    1.630205] CPU: 26 PID: 0 Comm: swapper/26 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.630207] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.630209] pc : its_cpu_init+0x824/0xb20
[    1.630210] lr : its_cpu_init+0x820/0xb20
[    1.630211] sp : ffff800011b03e80
[    1.630212] x29: ffff800011b03e80 x28: 000000000000001a 
[    1.630215] x27: 0000000000000000 x26: ffff800012340070 
[    1.630217] x25: fffffe201bea3000 x24: ffff800012340000 
[    1.630219] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.630221] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.630223] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.630225] x17: 0000000000000000 x16: 0000000000000000 
[    1.630227] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.630228] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.630230] x11: 0000000000000000 x10: 0000000000000001 
[    1.630232] x9 : ffff8000106d57b0 x8 : 3038343030313030 
[    1.630234] x7 : 313030303078303a x6 : 0000000000000003 
[    1.630236] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.630238] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.630240] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.630242] Call trace:
[    1.630244]  its_cpu_init+0x824/0xb20
[    1.630246]  gic_starting_cpu+0x48/0x90
[    1.630249]  cpuhp_invoke_callback+0xa4/0x460
[    1.630251]  notify_cpu_starting+0xa0/0xe0
[    1.630254]  secondary_start_kernel+0xe8/0x190
[    1.630255] ---[ end trace f68728a0d3053b6c ]---
[    1.630261] GICv3: CPU26: using allocated LPI pending table @0x00000807828c0000
[    1.630327] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.630337] Xen: initializing cpu26
[    1.630363] CPU26: Booted secondary processor 0x000000010a [0x413fd0c1]
[    1.630662] Detected PIPT I-cache on CPU27
[    1.630736] GICv3: CPU27: found redistributor 10b region 0:0x00001001004a0000
[    1.637358] ------------[ cut here ]------------
[    1.637363] WARNING: CPU: 27 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.637364] Modules linked in:
[    1.637368] CPU: 27 PID: 0 Comm: swapper/27 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.637370] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.637372] pc : its_cpu_init+0x824/0xb20
[    1.637374] lr : its_cpu_init+0x820/0xb20
[    1.637375] sp : ffff800011b0be80
[    1.637376] x29: ffff800011b0be80 x28: 000000000000001b 
[    1.637378] x27: 0000000000000000 x26: ffff800012360070 
[    1.637380] x25: fffffe201bea3400 x24: ffff800012360000 
[    1.637382] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.637384] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.637386] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.637388] x17: 0000000000000000 x16: 0000000000000000 
[    1.637390] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.637392] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.637394] x11: 0000000000000000 x10: 0000000000000001 
[    1.637396] x9 : ffff8000106d57b0 x8 : 3061343030313030 
[    1.637398] x7 : 313030303078303a x6 : 0000000000000003 
[    1.637399] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.637401] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.637403] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.637406] Call trace:
[    1.637407]  its_cpu_init+0x824/0xb20
[    1.637410]  gic_starting_cpu+0x48/0x90
[    1.637413]  cpuhp_invoke_callback+0xa4/0x460
[    1.637415]  notify_cpu_starting+0xa0/0xe0
[    1.637417]  secondary_start_kernel+0xe8/0x190
[    1.637419] ---[ end trace f68728a0d3053b6d ]---
[    1.637425] GICv3: CPU27: using allocated LPI pending table @0x00000807828d0000
[    1.637484] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.637492] Xen: initializing cpu27
[    1.637515] CPU27: Booted secondary processor 0x000000010b [0x413fd0c1]
[    1.637836] Detected PIPT I-cache on CPU28
[    1.637912] GICv3: CPU28: found redistributor 10c region 0:0x00001001004c0000
[    1.644534] ------------[ cut here ]------------
[    1.644539] WARNING: CPU: 28 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.644539] Modules linked in:
[    1.644543] CPU: 28 PID: 0 Comm: swapper/28 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.644545] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.644547] pc : its_cpu_init+0x824/0xb20
[    1.644549] lr : its_cpu_init+0x820/0xb20
[    1.644550] sp : ffff800011b13e80
[    1.644551] x29: ffff800011b13e80 x28: 000000000000001c 
[    1.644553] x27: 0000000000000000 x26: ffff800012380070 
[    1.644555] x25: fffffe201bea3800 x24: ffff800012380000 
[    1.644557] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.644560] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.644562] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.644564] x17: 0000000000000000 x16: 0000000000000000 
[    1.644566] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.644568] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.644569] x11: 0000000000000000 x10: 0000000000000001 
[    1.644572] x9 : ffff8000106d57b0 x8 : 3063343030313030 
[    1.644574] x7 : 313030303078303a x6 : 0000000000000003 
[    1.644575] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.644577] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.644579] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.644582] Call trace:
[    1.644583]  its_cpu_init+0x824/0xb20
[    1.644586]  gic_starting_cpu+0x48/0x90
[    1.644588]  cpuhp_invoke_callback+0xa4/0x460
[    1.644591]  notify_cpu_starting+0xa0/0xe0
[    1.644594]  secondary_start_kernel+0xe8/0x190
[    1.644595] ---[ end trace f68728a0d3053b6e ]---
[    1.644601] GICv3: CPU28: using allocated LPI pending table @0x00000807828e0000
[    1.644667] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.644676] Xen: initializing cpu28
[    1.644704] CPU28: Booted secondary processor 0x000000010c [0x413fd0c1]
[    1.645031] Detected PIPT I-cache on CPU29
[    1.645110] GICv3: CPU29: found redistributor 10d region 0:0x00001001004e0000
[    1.651732] ------------[ cut here ]------------
[    1.651736] WARNING: CPU: 29 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.651737] Modules linked in:
[    1.651741] CPU: 29 PID: 0 Comm: swapper/29 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.651743] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.651745] pc : its_cpu_init+0x824/0xb20
[    1.651746] lr : its_cpu_init+0x820/0xb20
[    1.651748] sp : ffff800011b1be80
[    1.651749] x29: ffff800011b1be80 x28: 000000000000001d 
[    1.651751] x27: 0000000000000000 x26: ffff8000123a0070 
[    1.651753] x25: fffffe201bea3c00 x24: ffff8000123a0000 
[    1.651755] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.651757] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.651760] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.651761] x17: 0000000000000000 x16: 0000000000000000 
[    1.651763] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.651765] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.651767] x11: 0000000000000000 x10: 0000000000000001 
[    1.651769] x9 : ffff8000106d57b0 x8 : 3065343030313030 
[    1.651771] x7 : 313030303078303a x6 : 0000000000000003 
[    1.651773] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.651775] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.651777] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.651779] Call trace:
[    1.651781]  its_cpu_init+0x824/0xb20
[    1.651783]  gic_starting_cpu+0x48/0x90
[    1.651786]  cpuhp_invoke_callback+0xa4/0x460
[    1.651788]  notify_cpu_starting+0xa0/0xe0
[    1.651790]  secondary_start_kernel+0xe8/0x190
[    1.651792] ---[ end trace f68728a0d3053b6f ]---
[    1.651797] GICv3: CPU29: using allocated LPI pending table @0x00000807828f0000
[    1.651863] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.651872] Xen: initializing cpu29
[    1.651901] CPU29: Booted secondary processor 0x000000010d [0x413fd0c1]
[    1.652222] Detected PIPT I-cache on CPU30
[    1.652302] GICv3: CPU30: found redistributor 10e region 0:0x0000100100500000
[    1.658924] ------------[ cut here ]------------
[    1.658929] WARNING: CPU: 30 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.658930] Modules linked in:
[    1.658934] CPU: 30 PID: 0 Comm: swapper/30 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.658936] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.658938] pc : its_cpu_init+0x824/0xb20
[    1.658939] lr : its_cpu_init+0x820/0xb20
[    1.658940] sp : ffff800011b23e80
[    1.658941] x29: ffff800011b23e80 x28: 000000000000001e 
[    1.658944] x27: 0000000000000000 x26: ffff8000123c0070 
[    1.658946] x25: fffffe201bea4000 x24: ffff8000123c0000 
[    1.658948] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.658950] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.658952] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.658954] x17: 0000000000000000 x16: 0000000000000000 
[    1.658955] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.658957] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.658959] x11: 0000000000000000 x10: 0000000000000001 
[    1.658961] x9 : ffff8000106d57b0 x8 : 3030353030313030 
[    1.658963] x7 : 313030303078303a x6 : 0000000000000003 
[    1.658965] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.658967] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.658969] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.658971] Call trace:
[    1.658972]  its_cpu_init+0x824/0xb20
[    1.658975]  gic_starting_cpu+0x48/0x90
[    1.658978]  cpuhp_invoke_callback+0xa4/0x460
[    1.658980]  notify_cpu_starting+0xa0/0xe0
[    1.658982]  secondary_start_kernel+0xe8/0x190
[    1.658983] ---[ end trace f68728a0d3053b70 ]---
[    1.658989] GICv3: CPU30: using allocated LPI pending table @0x0000080782900000
[    1.659056] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.659065] Xen: initializing cpu30
[    1.659092] CPU30: Booted secondary processor 0x000000010e [0x413fd0c1]
[    1.659347] Detected PIPT I-cache on CPU31
[    1.659429] GICv3: CPU31: found redistributor 10f region 0:0x0000100100520000
[    1.666051] ------------[ cut here ]------------
[    1.666056] WARNING: CPU: 31 PID: 0 at drivers/irqchip/irq-gic-v3-its.c:3069 its_cpu_init+0x824/0xb20
[    1.666057] Modules linked in:
[    1.666061] CPU: 31 PID: 0 Comm: swapper/31 Tainted: G        W         5.10.27-ampere-lts-standard #1
[    1.666063] pstate: 600001c5 (nZCv dAIF -PAN -UAO -TCO BTYPE=--)
[    1.666065] pc : its_cpu_init+0x824/0xb20
[    1.666067] lr : its_cpu_init+0x820/0xb20
[    1.666067] sp : ffff800011b2be80
[    1.666069] x29: ffff800011b2be80 x28: 000000000000001f 
[    1.666071] x27: 0000000000000000 x26: ffff8000123e0070 
[    1.666073] x25: fffffe201bea4400 x24: ffff8000123e0000 
[    1.666075] x23: ffff8000114dc9c0 x22: ffff800010ff9000 
[    1.666077] x21: ffff8000117689f8 x20: ffff800011622350 
[    1.666079] x19: ffff800011622000 x18: ffffffffffffffff 
[    1.666081] x17: 0000000000000000 x16: 0000000000000000 
[    1.666083] x15: ffff8000116d50a0 x14: 0000000000000010 
[    1.666085] x13: ffff8000116d4cf7 x12: 0000000000000000 
[    1.666087] x11: 0000000000000000 x10: 0000000000000001 
[    1.666088] x9 : ffff8000106d57b0 x8 : 3032353030313030 
[    1.666090] x7 : 313030303078303a x6 : 0000000000000003 
[    1.666092] x5 : 0000000000000000 x4 : fffffdffffe00000 
[    1.666094] x3 : 0000000000000010 x2 : 000000000000ffff 
[    1.666096] x1 : 0000000000010000 x0 : 00000000ffffffed 
[    1.666098] Call trace:
[    1.666100]  its_cpu_init+0x824/0xb20
[    1.666103]  gic_starting_cpu+0x48/0x90
[    1.666105]  cpuhp_invoke_callback+0xa4/0x460
[    1.666107]  notify_cpu_starting+0xa0/0xe0
[    1.666110]  secondary_start_kernel+0xe8/0x190
[    1.666111] ---[ end trace f68728a0d3053b71 ]---
[    1.666117] GICv3: CPU31: using allocated LPI pending table @0x0000080782910000
[    1.666186] arch_timer: Enabling local workaround for ARM erratum 1418040
[    1.666195] Xen: initializing cpu31
[    1.666223] CPU31: Booted secondary processor 0x000000010f [0x413fd0c1]
[    1.666322] smp: Brought up 1 node, 32 CPUs
[    7.509199] SMP: Total of 32 processors activated.
[    7.514030] CPU features: detected: Privileged Access Never
[    7.519686] CPU features: detected: LSE atomic instructions
[    7.525315] CPU features: detected: User Access Override
[    7.530696] CPU features: detected: 32-bit EL0 Support
[    7.535904] CPU features: detected: Common not Private translations
[    7.542241] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    7.550921] CPU features: detected: CRC32 instructions
[    7.556130] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    7.593827] CPU: All CPU(s) started at EL1
[    7.597972] alternatives: patching kernel code
[    7.603299] devtmpfs: initialized
[    7.606845] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    7.616488] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    7.623689] DMI not present or invalid.
[    7.627696] NET: Registered protocol family 16
[    7.633128] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    7.640091] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    7.647900] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    7.656120] thermal_sys: Registered thermal governor 'step_wise'
[    7.656252] Detected 15 PCC Subspaces
[    7.665908] Registering PCC driver as Mailbox controller
[    7.671298] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    7.679456] ASID allocator initialised with 65536 entries
[    7.684759] ACPI: bus type PCI registered
[    7.688832] Serial: AMBA PL011 UART driver
[    7.695332] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    7.701940] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    7.708701] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    7.715482] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    7.723566] cryptd: max_cpu_qlen set to 1000
[    7.795794] raid6: neonx8   gen()  7772 MB/s
[    7.868018] raid6: neonx8   xor()  6058 MB/s
[    7.940239] raid6: neonx4   gen()  7633 MB/s
[    8.012465] raid6: neonx4   xor()  6321 MB/s
[    8.084687] raid6: neonx2   gen()  7275 MB/s
[    8.156916] raid6: neonx2   xor()  5705 MB/s
[    8.229137] raid6: neonx1   gen()  5972 MB/s
[    8.301355] raid6: neonx1   xor()  4920 MB/s
[    8.373575] raid6: int64x8  gen()  3600 MB/s
[    8.445795] raid6: int64x8  xor()  2017 MB/s
[    8.518263] raid6: int64x4  gen()  4125 MB/s
[    8.590484] raid6: int64x4  xor()  2193 MB/s
[    8.662704] raid6: int64x2  gen()  3501 MB/s
[    8.734924] raid6: int64x2  xor()  1889 MB/s
[    8.807143] raid6: int64x1  gen()  2873 MB/s
[    8.879368] raid6: int64x1  xor()  1507 MB/s
[    8.883538] raid6: using algorithm neonx8 gen() 7772 MB/s
[    8.889005] raid6: .... xor() 6058 MB/s, rmw enabled
[    8.894041] raid6: using neon recovery algorithm
[    8.898808] ACPI: Added _OSI(Module Device)
[    8.902984] ACPI: Added _OSI(Processor Device)
[    8.907495] ACPI: Added _OSI(3.0 _SCP Extensions)
[    8.912270] ACPI: Added _OSI(Processor Aggregator Device)
[    8.917739] ACPI: Added _OSI(Linux-Dell-Video)
[    8.922252] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    8.927635] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    8.953147] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    8.965689] ACPI: Interpreter enabled
[    8.969253] ACPI: Using GIC for interrupt routing
[    8.974038] ACPI: MCFG table detected, 5 entries
[    8.978804] HEST: Table parsing has been initialized.
[    9.031533] ARMH0011:00: ttyAMA0 at MMIO 0x100002600000 (irq = 79, base_baud = 0) is a SBSA
[    9.123454] printk: console [ttyAMA0] enabled
[    9.129512] ARMH0011:01: ttyAMA1 at MMIO 0x100002620000 (irq = 80, base_baud = 0) is a SBSA
[    9.139874] ACPI: PCI Root Bridge [PCI0] (domain 000c [bus 00-ff])
[    9.146041] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.155248] acpi PNP0A08:00: PCIe port services disabled; not requesting _OSC control
[    9.163073] acpi PNP0A08:00: MCFG quirk: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.175998] acpi PNP0A08:00: ECAM area [mem 0x33fff0000000-0x33ffffffffff] reserved by PNP0C02:00
[    9.184890] acpi PNP0A08:00: ECAM at [mem 0x33fff0000000-0x33ffffffffff] for [bus 00-ff]
[    9.193105] PCI host bridge to bus 000c:00
[    9.197150] pci_bus 000c:00: root bus resource [mem 0x40000000-0x4fffffff window]
[    9.204746] pci_bus 000c:00: root bus resource [mem 0x300000000000-0x33ffdfffffff window]
[    9.212995] pci_bus 000c:00: root bus resource [bus 00-ff]
[    9.218563] pci 000c:00:00.0: [1def:e100] type 00 class 0x060000
[    9.224677] pci 000c:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.232281] pci 000c:00:01.0: [1def:e101] type 01 class 0x060400
[    9.238366] pci 000c:00:01.0: supports D1 D2
[    9.242636] pci 000c:00:01.0: PME# supported from D0 D1 D3hot
[    9.248505] pci 000c:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.257241] pci 000c:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    9.265419] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    9.276998] pci 000c:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    9.287580] pci 000c:00:01.0: BAR 8: assigned [mem 0x40000000-0x401fffff]
[    9.294399] pci 000c:00:01.0: BAR 9: assigned [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.302916] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.309225] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.315914] pci 000c:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.322246] pci 000c:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.328935] pci 000c:00:01.0: PCI bridge to [bus 01]
[    9.333951] pci 000c:00:01.0:   bridge window [mem 0x40000000-0x401fffff]
[    9.340831] pci 000c:00:01.0:   bridge window [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.349357] pci_bus 000c:00: resource 4 [mem 0x40000000-0x4fffffff window]
[    9.356282] pci_bus 000c:00: resource 5 [mem 0x300000000000-0x33ffdfffffff window]
[    9.363929] pci_bus 000c:01: resource 1 [mem 0x40000000-0x401fffff]
[    9.370250] pci_bus 000c:01: resource 2 [mem 0x300000000000-0x3000001fffff 64bit pref]
[    9.378298] ACPI: PCI Root Bridge [PCI1] (domain 000d [bus 00-ff])
[    9.384494] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.393701] acpi PNP0A08:01: PCIe port services disabled; not requesting _OSC control
[    9.401523] acpi PNP0A08:01: MCFG quirk: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.414434] acpi PNP0A08:01: ECAM area [mem 0x37fff0000000-0x37ffffffffff] reserved by PNP0C02:00
[    9.423323] acpi PNP0A08:01: ECAM at [mem 0x37fff0000000-0x37ffffffffff] for [bus 00-ff]
[    9.431539] PCI host bridge to bus 000d:00
[    9.435589] pci_bus 000d:00: root bus resource [mem 0x50000000-0x5fffffff window]
[    9.443174] pci_bus 000d:00: root bus resource [mem 0x340000000000-0x37ffdfffffff window]
[    9.451429] pci_bus 000d:00: root bus resource [bus 00-ff]
[    9.456995] pci 000d:00:00.0: [1def:e100] type 00 class 0x060000
[    9.463089] pci 000d:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.470709] pci 000d:00:01.0: [1def:e101] type 01 class 0x060400
[    9.476786] pci 000d:00:01.0: supports D1 D2
[    9.481069] pci 000d:00:01.0: PME# supported from D0 D1 D3hot
[    9.486936] pci 000d:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.494640] pci 000d:01:00.0: [10de:1e89] type 00 class 0x030000
[    9.500633] pci 000d:01:00.0: reg 0x10: [mem 0x50000000-0x50ffffff]
[    9.506970] pci 000d:01:00.0: reg 0x14: [mem 0x340000000000-0x34000fffffff 64bit pref]
[    9.514981] pci 000d:01:00.0: reg 0x1c: [mem 0x340010000000-0x340011ffffff 64bit pref]
[    9.522957] pci 000d:01:00.0: reg 0x24: [io  0x57ffe000-0x57ffe07f]
[    9.529276] pci 000d:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    9.536108] pci 000d:01:00.0: PME# supported from D0 D3hot D3cold
[    9.542252] pci 000d:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.549880] pci 000d:01:00.1: [10de:10f8] type 00 class 0x040300
[    9.555927] pci 000d:01:00.1: reg 0x10: [mem 0x51000000-0x51003fff]
[    9.562356] pci 000d:01:00.1: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.569931] pci 000d:01:00.2: [10de:1ad8] type 00 class 0x0c0330
[    9.575984] pci 000d:01:00.2: reg 0x10: [mem 0x340012000000-0x34001203ffff 64bit pref]
[    9.583992] pci 000d:01:00.2: reg 0x1c: [mem 0x340012040000-0x34001204ffff 64bit pref]
[    9.592015] pci 000d:01:00.2: PME# supported from D0 D3hot D3cold
[    9.598142] pci 000d:01:00.2: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.605848] pci 000d:01:00.3: [10de:1ad9] type 00 class 0x0c8000
[    9.611875] pci 000d:01:00.3: reg 0x10: [mem 0x51004000-0x51004fff]
[    9.618280] pci 000d:01:00.3: PME# supported from D0 D3hot D3cold
[    9.624423] pci 000d:01:00.3: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.632042] pci 000d:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    9.653433] pci 000d:00:01.0: BAR 9: assigned [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.661869] pci 000d:00:01.0: BAR 8: assigned [mem 0x50000000-0x517fffff]
[    9.668706] pci 000d:00:01.0: BAR 7: no space for [io  size 0x1000]
[    9.675037] pci 000d:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[    9.681729] pci 000d:01:00.0: BAR 1: assigned [mem 0x340000000000-0x34000fffffff 64bit pref]
[    9.690260] pci 000d:01:00.0: BAR 3: assigned [mem 0x340010000000-0x340011ffffff 64bit pref]
[    9.698767] pci 000d:01:00.0: BAR 0: assigned [mem 0x50000000-0x50ffffff]
[    9.705603] pci 000d:01:00.0: BAR 6: assigned [mem 0x51000000-0x5107ffff pref]
[    9.712897] pci 000d:01:00.2: BAR 0: assigned [mem 0x340012000000-0x34001203ffff 64bit pref]
[    9.721424] pci 000d:01:00.2: BAR 3: assigned [mem 0x340012040000-0x34001204ffff 64bit pref]
[    9.729931] pci 000d:01:00.1: BAR 0: assigned [mem 0x51080000-0x51083fff]
[    9.736764] pci 000d:01:00.3: BAR 0: assigned [mem 0x51084000-0x51084fff]
[    9.743622] pci 000d:01:00.0: BAR 5: no space for [io  size 0x0080]
[    9.749951] pci 000d:01:00.0: BAR 5: failed to assign [io  size 0x0080]
[    9.756641] pci 000d:00:01.0: PCI bridge to [bus 01]
[    9.761656] pci 000d:00:01.0:   bridge window [mem 0x50000000-0x517fffff]
[    9.768534] pci 000d:00:01.0:   bridge window [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.777065] pci_bus 000d:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    9.786182] pci_bus 000d:00: resource 4 [mem 0x50000000-0x5fffffff window]
[    9.793100] pci_bus 000d:00: resource 5 [mem 0x340000000000-0x37ffdfffffff window]
[    9.800747] pci_bus 000d:01: resource 1 [mem 0x50000000-0x517fffff]
[    9.807073] pci_bus 000d:01: resource 2 [mem 0x340000000000-0x340017ffffff 64bit pref]
[    9.815159] ACPI: PCI Root Bridge [PCI3] (domain 0000 [bus 00-ff])
[    9.821321] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    9.830543] acpi PNP0A08:03: PCIe port services disabled; not requesting _OSC control
[    9.838367] acpi PNP0A08:03: MCFG quirk: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[    9.851352] acpi PNP0A08:03: ECAM area [mem 0x3ffff0000000-0x3fffffffffff] reserved by PNP0C02:00
[    9.860245] acpi PNP0A08:03: ECAM at [mem 0x3ffff0000000-0x3fffffffffff] for [bus 00-ff]
[    9.868463] PCI host bridge to bus 0000:00
[    9.872508] pci_bus 0000:00: root bus resource [mem 0x70000000-0x7fffffff window]
[    9.880119] pci_bus 0000:00: root bus resource [mem 0x3c0000000000-0x3fffdfffffff window]
[    9.888354] pci_bus 0000:00: root bus resource [bus 00-ff]
[    9.893921] pci 0000:00:00.0: [1def:e100] type 00 class 0x060000
[    9.900022] pci 0000:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.907640] pci 0000:00:01.0: [1def:e101] type 01 class 0x060400
[    9.913712] pci 0000:00:01.0: supports D1 D2
[    9.917994] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[    9.923862] pci 0000:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.931563] pci 0000:01:00.0: [8086:1589] type 00 class 0x020000
[    9.937559] pci 0000:01:00.0: reg 0x10: [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[    9.945566] pci 0000:01:00.0: reg 0x1c: [mem 0x3c0004818000-0x3c000481ffff 64bit pref]
[    9.953549] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    9.960370] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    9.966501] pci 0000:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[    9.974139] pci 0000:01:00.1: [8086:1589] type 00 class 0x020000
[    9.980181] pci 0000:01:00.1: reg 0x10: [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[    9.988191] pci 0000:01:00.1: reg 0x1c: [mem 0x3c0004810000-0x3c0004817fff 64bit pref]
[    9.996173] pci 0000:01:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.002986] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[   10.009112] pci 0000:01:00.1: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.016759] pci 0000:01:00.2: [8086:1589] type 00 class 0x020000
[   10.022802] pci 0000:01:00.2: reg 0x10: [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[   10.030809] pci 0000:01:00.2: reg 0x1c: [mem 0x3c0004808000-0x3c000480ffff 64bit pref]
[   10.038792] pci 0000:01:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.045607] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[   10.051735] pci 0000:01:00.2: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.059380] pci 0000:01:00.3: [8086:1589] type 00 class 0x020000
[   10.065424] pci 0000:01:00.3: reg 0x10: [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[   10.073432] pci 0000:01:00.3: reg 0x1c: [mem 0x3c0004800000-0x3c0004807fff 64bit pref]
[   10.081414] pci 0000:01:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[   10.088229] pci 0000:01:00.3: PME# supported from D0 D3hot D3cold
[   10.094357] pci 0000:01:00.3: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.102018] pci 0000:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01-02] add_size 1000
[   10.110496] pci 0000:00:01.0: BAR 9: assigned [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.118999] pci 0000:00:01.0: BAR 8: assigned [mem 0x70000000-0x701fffff]
[   10.125836] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.132167] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.138856] pci 0000:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.145189] pci 0000:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.151878] pci 0000:01:00.0: BAR 0: assigned [mem 0x3c0000000000-0x3c0000ffffff 64bit pref]
[   10.160411] pci 0000:01:00.1: BAR 0: assigned [mem 0x3c0001000000-0x3c0001ffffff 64bit pref]
[   10.168918] pci 0000:01:00.2: BAR 0: assigned [mem 0x3c0002000000-0x3c0002ffffff 64bit pref]
[   10.177425] pci 0000:01:00.3: BAR 0: assigned [mem 0x3c0003000000-0x3c0003ffffff 64bit pref]
[   10.185932] pci 0000:01:00.0: BAR 6: assigned [mem 0x70000000-0x7007ffff pref]
[   10.193203] pci 0000:01:00.1: BAR 6: assigned [mem 0x70080000-0x700fffff pref]
[   10.200495] pci 0000:01:00.2: BAR 6: assigned [mem 0x70100000-0x7017ffff pref]
[   10.207787] pci 0000:01:00.3: BAR 6: assigned [mem 0x70180000-0x701fffff pref]
[   10.215079] pci 0000:01:00.0: BAR 3: assigned [mem 0x3c0004000000-0x3c0004007fff 64bit pref]
[   10.223606] pci 0000:01:00.1: BAR 3: assigned [mem 0x3c0004008000-0x3c000400ffff 64bit pref]
[   10.232113] pci 0000:01:00.2: BAR 3: assigned [mem 0x3c0004010000-0x3c0004017fff 64bit pref]
[   10.240619] pci 0000:01:00.3: BAR 3: assigned [mem 0x3c0004018000-0x3c000401ffff 64bit pref]
[   10.249126] pci 0000:00:01.0: PCI bridge to [bus 01-02]
[   10.254379] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x701fffff]
[   10.261256] pci 0000:00:01.0:   bridge window [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.269781] pci_bus 0000:00: resource 4 [mem 0x70000000-0x7fffffff window]
[   10.276706] pci_bus 0000:00: resource 5 [mem 0x3c0000000000-0x3fffdfffffff window]
[   10.284354] pci_bus 0000:01: resource 1 [mem 0x70000000-0x701fffff]
[   10.290676] pci_bus 0000:01: resource 2 [mem 0x3c0000000000-0x3c00047fffff 64bit pref]
[   10.298743] ACPI: PCI Root Bridge [PCI6] (domain 0004 [bus 00-ff])
[   10.304920] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   10.314126] acpi PNP0A08:06: PCIe port services disabled; not requesting _OSC control
[   10.321948] acpi PNP0A08:06: MCFG quirk: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[   10.334872] acpi PNP0A08:06: ECAM area [mem 0x2bfff0000000-0x2bffffffffff] reserved by PNP0C02:00
[   10.343760] acpi PNP0A08:06: ECAM at [mem 0x2bfff0000000-0x2bffffffffff] for [bus 00-ff]
[   10.351975] PCI host bridge to bus 0004:00
[   10.356020] pci_bus 0004:00: root bus resource [mem 0x20000000-0x2fffffff window]
[   10.363610] pci_bus 0004:00: root bus resource [mem 0x280000000000-0x2bffdfffffff window]
[   10.371865] pci_bus 0004:00: root bus resource [bus 00-ff]
[   10.377436] pci 0004:00:00.0: [1def:e110] type 00 class 0x060000
[   10.383528] pci 0004:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.391144] pci 0004:00:01.0: [1def:e111] type 01 class 0x060400
[   10.397230] pci 0004:00:01.0: supports D1 D2
[   10.401506] pci 0004:00:01.0: PME# supported from D0 D1 D3hot
[   10.407376] pci 0004:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.415016] pci 0004:00:03.0: [1def:e113] type 01 class 0x060400
[   10.421097] pci 0004:00:03.0: supports D1 D2
[   10.425378] pci 0004:00:03.0: PME# supported from D0 D1 D3hot
[   10.431245] pci 0004:00:03.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.438891] pci 0004:00:05.0: [1def:e115] type 01 class 0x060400
[   10.444976] pci 0004:00:05.0: supports D1 D2
[   10.449249] pci 0004:00:05.0: PME# supported from D0 D1 D3hot
[   10.455117] pci 0004:00:05.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.462815] pci 0004:01:00.0: [1a03:1150] type 01 class 0x060400
[   10.468851] pci 0004:01:00.0: enabling Extended Tags
[   10.473883] pci 0004:01:00.0: supports D1 D2
[   10.478155] pci 0004:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   10.484915] pci 0004:01:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.492572] pci_bus 0004:02: extended config space not accessible
[   10.498689] pci 0004:02:00.0: [1a03:2000] type 00 class 0x030000
[   10.504756] pci 0004:02:00.0: reg 0x10: [mem 0x20000000-0x20ffffff]
[   10.511089] pci 0004:02:00.0: reg 0x14: [mem 0x21000000-0x2101ffff]
[   10.517432] pci 0004:02:00.0: reg 0x18: [io  0x27fff000-0x27fff07f]
[   10.523835] pci 0004:02:00.0: supports D1 D2
[   10.528069] pci 0004:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   10.534820] pci 0004:02:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.542555] pci 0004:03:00.0: [1912:0014] type 00 class 0x0c0330
[   10.548549] pci 0004:03:00.0: reg 0x10: [mem 0x21200000-0x21201fff 64bit]
[   10.555502] pci 0004:03:00.0: PME# supported from D0 D3hot D3cold
[   10.561626] pci 0004:03:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.569309] pci 0004:04:00.0: [8086:1533] type 00 class 0x020000
[   10.575313] pci 0004:04:00.0: reg 0x10: [mem 0x21100000-0x2117ffff]
[   10.581655] pci 0004:04:00.0: reg 0x18: [io  0x27ffe000-0x27ffe01f]
[   10.587976] pci 0004:04:00.0: reg 0x1c: [mem 0x21180000-0x21183fff]
[   10.594474] pci 0004:04:00.0: PME# supported from D0 D3hot D3cold
[   10.600608] pci 0004:04:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   10.608237] pci 0004:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-02] add_size 200000 add_align 100000
[   10.620051] pci 0004:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[   10.628260] pci 0004:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[   10.639840] pci 0004:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 03] add_size 100000 add_align 100000
[   10.650417] pci 0004:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[   10.661976] pci 0004:00:05.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[   10.672557] pci 0004:00:01.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[   10.679410] pci 0004:00:01.0: BAR 9: assigned [mem 0x280000000000-0x2800001fffff 64bit pref]
[   10.687924] pci 0004:00:03.0: BAR 8: assigned [mem 0x21800000-0x219fffff]
[   10.694762] pci 0004:00:03.0: BAR 9: assigned [mem 0x280000200000-0x2800003fffff 64bit pref]
[   10.703288] pci 0004:00:05.0: BAR 8: assigned [mem 0x21a00000-0x21bfffff]
[   10.710127] pci 0004:00:05.0: BAR 9: assigned [mem 0x280000400000-0x2800005fffff 64bit pref]
[   10.718652] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.724963] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.731653] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[   10.737985] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   10.744672] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[   10.751006] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   10.757703] pci 0004:00:01.0: BAR 7: no space for [io  size 0x1000]
[   10.764026] pci 0004:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   10.770714] pci 0004:00:05.0: BAR 7: no space for [io  size 0x1000]
[   10.777053] pci 0004:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   10.783736] pci 0004:00:03.0: BAR 7: no space for [io  size 0x1000]
[   10.790068] pci 0004:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   10.796758] pci 0004:01:00.0: BAR 8: assigned [mem 0x20000000-0x217fffff]
[   10.803616] pci 0004:01:00.0: BAR 7: no space for [io  size 0x1000]
[   10.809946] pci 0004:01:00.0: BAR 7: failed to assign [io  size 0x1000]
[   10.816636] pci 0004:02:00.0: BAR 0: assigned [mem 0x20000000-0x20ffffff]
[   10.823500] pci 0004:02:00.0: BAR 1: assigned [mem 0x21000000-0x2101ffff]
[   10.830354] pci 0004:02:00.0: BAR 2: no space for [io  size 0x0080]
[   10.836682] pci 0004:02:00.0: BAR 2: failed to assign [io  size 0x0080]
[   10.843371] pci 0004:01:00.0: PCI bridge to [bus 02]
[   10.848388] pci 0004:01:00.0:   bridge window [mem 0x20000000-0x217fffff]
[   10.855272] pci 0004:00:01.0: PCI bridge to [bus 01-02]
[   10.860543] pci 0004:00:01.0:   bridge window [mem 0x20000000-0x217fffff]
[   10.867423] pci 0004:00:01.0:   bridge window [mem 0x280000000000-0x2800001fffff 64bit pref]
[   10.875947] pci 0004:03:00.0: BAR 0: assigned [mem 0x21800000-0x21801fff 64bit]
[   10.883319] pci 0004:00:03.0: PCI bridge to [bus 03]
[   10.888317] pci 0004:00:03.0:   bridge window [mem 0x21800000-0x219fffff]
[   10.895197] pci 0004:00:03.0:   bridge window [mem 0x280000200000-0x2800003fffff 64bit pref]
[   10.903724] pci 0004:04:00.0: BAR 0: assigned [mem 0x21a00000-0x21a7ffff]
[   10.910566] pci 0004:04:00.0: BAR 3: assigned [mem 0x21a80000-0x21a83fff]
[   10.917427] pci 0004:04:00.0: BAR 2: no space for [io  size 0x0020]
[   10.923748] pci 0004:04:00.0: BAR 2: failed to assign [io  size 0x0020]
[   10.930436] pci 0004:00:05.0: PCI bridge to [bus 04]
[   10.935453] pci 0004:00:05.0:   bridge window [mem 0x21a00000-0x21bfffff]
[   10.942332] pci 0004:00:05.0:   bridge window [mem 0x280000400000-0x2800005fffff 64bit pref]
[   10.950859] pci_bus 0004:00: Some PCI device resources are unassigned, try booting with pci=realloc
[   10.959979] pci_bus 0004:00: resource 4 [mem 0x20000000-0x2fffffff window]
[   10.966899] pci_bus 0004:00: resource 5 [mem 0x280000000000-0x2bffdfffffff window]
[   10.974546] pci_bus 0004:01: resource 1 [mem 0x20000000-0x217fffff]
[   10.980867] pci_bus 0004:01: resource 2 [mem 0x280000000000-0x2800001fffff 64bit pref]
[   10.988873] pci_bus 0004:02: resource 1 [mem 0x20000000-0x217fffff]
[   10.995189] pci_bus 0004:03: resource 1 [mem 0x21800000-0x219fffff]
[   11.001526] pci_bus 0004:03: resource 2 [mem 0x280000200000-0x2800003fffff 64bit pref]
[   11.009531] pci_bus 0004:04: resource 1 [mem 0x21a00000-0x21bfffff]
[   11.015849] pci_bus 0004:04: resource 2 [mem 0x280000400000-0x2800005fffff 64bit pref]
[   11.023944] ACPI: PCI Root Bridge [PCI7] (domain 0005 [bus 00-ff])
[   11.030108] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   11.039323] acpi PNP0A08:07: PCIe port services disabled; not requesting _OSC control
[   11.047152] acpi PNP0A08:07: MCFG quirk: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff] with 0xffff800010de0fc0
[   11.060122] acpi PNP0A08:07: ECAM area [mem 0x2ffff0000000-0x2fffffffffff] reserved by PNP0C02:00
[   11.069016] acpi PNP0A08:07: ECAM at [mem 0x2ffff0000000-0x2fffffffffff] for [bus 00-ff]
[   11.077239] PCI host bridge to bus 0005:00
[   11.081284] pci_bus 0005:00: root bus resource [mem 0x30000000-0x3fffffff window]
[   11.088875] pci_bus 0005:00: root bus resource [mem 0x2c0000000000-0x2fffdfffffff window]
[   11.097135] pci_bus 0005:00: root bus resource [bus 00-ff]
[   11.102696] pci 0005:00:00.0: [1def:e110] type 00 class 0x060000
[   11.108800] pci 0005:00:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.116412] pci 0005:00:01.0: [1def:e111] type 01 class 0x060400
[   11.122497] pci 0005:00:01.0: supports D1 D2
[   11.126770] pci 0005:00:01.0: PME# supported from D0 D1 D3hot
[   11.132643] pci 0005:00:01.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.140283] pci 0005:00:03.0: [1def:e113] type 01 class 0x060400
[   11.146359] pci 0005:00:03.0: supports D1 D2
[   11.150643] pci 0005:00:03.0: PME# supported from D0 D1 D3hot
[   11.156511] pci 0005:00:03.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.164154] pci 0005:00:05.0: [1def:e115] type 01 class 0x060400
[   11.170239] pci 0005:00:05.0: supports D1 D2
[   11.174514] pci 0005:00:05.0: PME# supported from D0 D1 D3hot
[   11.180383] pci 0005:00:05.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.188023] pci 0005:00:07.0: [1def:e117] type 01 class 0x060400
[   11.194098] pci 0005:00:07.0: supports D1 D2
[   11.198385] pci 0005:00:07.0: PME# supported from D0 D1 D3hot
[   11.204252] pci 0005:00:07.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.213020] pci 0005:02:00.0: [1912:0014] type 00 class 0x0c0330
[   11.219016] pci 0005:02:00.0: reg 0x10: [mem 0x30100000-0x30101fff 64bit]
[   11.225965] pci 0005:02:00.0: PME# supported from D0 D3hot D3cold
[   11.232086] pci 0005:02:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.240815] pci 0005:04:00.0: [126f:2263] type 00 class 0x010802
[   11.246807] pci 0005:04:00.0: reg 0x10: [mem 0x30000000-0x30003fff 64bit]
[   11.253803] pci 0005:04:00.0: Failed to add - passthrough or MSI/MSI-X might fail!
[   11.261394] pci 0005:00:01.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[   11.269615] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[   11.281198] pci 0005:00:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[   11.291777] pci 0005:00:03.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[   11.299997] pci 0005:00:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[   11.311581] pci 0005:00:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 02] add_size 100000 add_align 100000
[   11.322158] pci 0005:00:05.0: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
[   11.330377] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
[   11.341962] pci 0005:00:05.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
[   11.352542] pci 0005:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[   11.360760] pci 0005:00:07.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[   11.372345] pci 0005:00:07.0: bridge window [mem 0x00100000-0x001fffff] to [bus 04] add_size 100000 add_align 100000
[   11.382928] pci 0005:00:01.0: BAR 8: assigned [mem 0x30000000-0x301fffff]
[   11.389737] pci 0005:00:01.0: BAR 9: assigned [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.398263] pci 0005:00:03.0: BAR 8: assigned [mem 0x30200000-0x303fffff]
[   11.405100] pci 0005:00:03.0: BAR 9: assigned [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.413627] pci 0005:00:05.0: BAR 8: assigned [mem 0x30400000-0x305fffff]
[   11.420465] pci 0005:00:05.0: BAR 9: assigned [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.428992] pci 0005:00:07.0: BAR 8: assigned [mem 0x30600000-0x307fffff]
[   11.435829] pci 0005:00:07.0: BAR 9: assigned [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.444356] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[   11.450668] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   11.457361] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[   11.463687] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   11.470378] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[   11.476709] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   11.483408] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[   11.489729] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[   11.496421] pci 0005:00:07.0: BAR 7: no space for [io  size 0x1000]
[   11.502752] pci 0005:00:07.0: BAR 7: failed to assign [io  size 0x1000]
[   11.509438] pci 0005:00:05.0: BAR 7: no space for [io  size 0x1000]
[   11.515771] pci 0005:00:05.0: BAR 7: failed to assign [io  size 0x1000]
[   11.522461] pci 0005:00:03.0: BAR 7: no space for [io  size 0x1000]
[   11.528792] pci 0005:00:03.0: BAR 7: failed to assign [io  size 0x1000]
[   11.535481] pci 0005:00:01.0: BAR 7: no space for [io  size 0x1000]
[   11.541812] pci 0005:00:01.0: BAR 7: failed to assign [io  size 0x1000]
[   11.548502] pci 0005:00:01.0: PCI bridge to [bus 01]
[   11.553516] pci 0005:00:01.0:   bridge window [mem 0x30000000-0x301fffff]
[   11.560397] pci 0005:00:01.0:   bridge window [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.568924] pci 0005:02:00.0: BAR 0: assigned [mem 0x30200000-0x30201fff 64bit]
[   11.576296] pci 0005:00:03.0: PCI bridge to [bus 02]
[   11.581295] pci 0005:00:03.0:   bridge window [mem 0x30200000-0x303fffff]
[   11.588179] pci 0005:00:03.0:   bridge window [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.596702] pci 0005:00:05.0: PCI bridge to [bus 03]
[   11.601749] pci 0005:00:05.0:   bridge window [mem 0x30400000-0x305fffff]
[   11.608616] pci 0005:00:05.0:   bridge window [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.617145] pci 0005:04:00.0: BAR 0: assigned [mem 0x30600000-0x30603fff 64bit]
[   11.624515] pci 0005:00:07.0: PCI bridge to [bus 04]
[   11.629513] pci 0005:00:07.0:   bridge window [mem 0x30600000-0x307fffff]
[   11.636392] pci 0005:00:07.0:   bridge window [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.644920] pci_bus 0005:00: resource 4 [mem 0x30000000-0x3fffffff window]
[   11.651862] pci_bus 0005:00: resource 5 [mem 0x2c0000000000-0x2fffdfffffff window]
[   11.659492] pci_bus 0005:01: resource 1 [mem 0x30000000-0x301fffff]
[   11.665812] pci_bus 0005:01: resource 2 [mem 0x2c0000000000-0x2c00001fffff 64bit pref]
[   11.673819] pci_bus 0005:02: resource 1 [mem 0x30200000-0x303fffff]
[   11.680135] pci_bus 0005:02: resource 2 [mem 0x2c0000200000-0x2c00003fffff 64bit pref]
[   11.688147] pci_bus 0005:03: resource 1 [mem 0x30400000-0x305fffff]
[   11.694459] pci_bus 0005:03: resource 2 [mem 0x2c0000400000-0x2c00005fffff 64bit pref]
[   11.702465] pci_bus 0005:04: resource 1 [mem 0x30600000-0x307fffff]
[   11.708783] pci_bus 0005:04: resource 2 [mem 0x2c0000600000-0x2c00007fffff 64bit pref]
[   11.717042] xen:balloon: Initialising balloon driver
[   11.722019] iommu: Default domain type: Translated 
[   11.726990] pci 000d:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[   11.735386] pci 0004:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[   11.743797] pci 000d:01:00.0: vgaarb: bridge control possible
[   11.749578] pci 0004:02:00.0: vgaarb: bridge control possible
[   11.755397] pci 0004:02:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[   11.764372] vgaarb: loaded
[   11.767171] SCSI subsystem initialized
[   11.770916] ACPI: bus type USB registered
[   11.775010] usbcore: registered new interface driver usbfs
[   11.780573] usbcore: registered new interface driver hub
[   11.785961] usbcore: registered new device driver usb
[   11.791081] pps_core: LinuxPPS API ver. 1 registered
[   11.796097] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[   11.805349] PTP clock support registered
[   11.809458] Registered efivars operations
[   11.813438] No ACPI PMU IRQ for CPU0
[   11.817048] No ACPI PMU IRQ for CPU1
[   11.820700] No ACPI PMU IRQ for CPU2
[   11.824339] No ACPI PMU IRQ for CPU3
[   11.827997] No ACPI PMU IRQ for CPU4
[   11.831630] No ACPI PMU IRQ for CPU5
[   11.835283] No ACPI PMU IRQ for CPU6
[   11.838922] No ACPI PMU IRQ for CPU7
[   11.842574] No ACPI PMU IRQ for CPU8
[   11.846214] No ACPI PMU IRQ for CPU9
[   11.849866] No ACPI PMU IRQ for CPU10
[   11.853593] No ACPI PMU IRQ for CPU11
[   11.857333] No ACPI PMU IRQ for CPU12
[   11.861059] No ACPI PMU IRQ for CPU13
[   11.864798] No ACPI PMU IRQ for CPU14
[   11.868524] No ACPI PMU IRQ for CPU15
[   11.872263] No ACPI PMU IRQ for CPU16
[   11.875989] No ACPI PMU IRQ for CPU17
[   11.879728] No ACPI PMU IRQ for CPU18
[   11.883454] No ACPI PMU IRQ for CPU19
[   11.887194] No ACPI PMU IRQ for CPU20
[   11.890920] No ACPI PMU IRQ for CPU21
[   11.894659] No ACPI PMU IRQ for CPU22
[   11.898385] No ACPI PMU IRQ for CPU23
[   11.902124] No ACPI PMU IRQ for CPU24
[   11.905851] No ACPI PMU IRQ for CPU25
[   11.909590] No ACPI PMU IRQ for CPU26
[   11.913315] No ACPI PMU IRQ for CPU27
[   11.917056] No ACPI PMU IRQ for CPU28
[   11.920781] No ACPI PMU IRQ for CPU29
[   11.924521] No ACPI PMU IRQ for CPU30
[   11.928252] No ACPI PMU IRQ for CPU31
[   11.933284] clocksource: Switched to clocksource arch_sys_counter
[   12.111533] pnp: PnP ACPI init
[   12.115927] system 00:00: [mem 0x3bfff0000000-0x3bffffffffff window] has been reserved
[   12.123847] system 00:00: [mem 0x3ffff0000000-0x3fffffffffff window] could not be reserved
[   12.132175] system 00:00: [mem 0x23fff0000000-0x23ffffffffff window] has been reserved
[   12.140156] system 00:00: [mem 0x27fff0000000-0x27ffffffffff window] has been reserved
[   12.148144] system 00:00: [mem 0x2bfff0000000-0x2bffffffffff window] could not be reserved
[   12.156478] system 00:00: [mem 0x2ffff0000000-0x2fffffffffff window] could not be reserved
[   12.164815] system 00:00: [mem 0x7bfff0000000-0x7bffffffffff window] has been reserved
[   12.172795] system 00:00: [mem 0x7ffff0000000-0x7fffffffffff window] has been reserved
[   12.180780] system 00:00: [mem 0x63fff0000000-0x63ffffffffff window] has been reserved
[   12.188769] system 00:00: [mem 0x67fff0000000-0x67ffffffffff window] has been reserved
[   12.196752] system 00:00: [mem 0x6bfff0000000-0x6bffffffffff window] has been reserved
[   12.204742] system 00:00: [mem 0x6ffff0000000-0x6fffffffffff window] has been reserved
[   12.212726] system 00:00: [mem 0x33fff0000000-0x33ffffffffff window] could not be reserved
[   12.221062] system 00:00: [mem 0x37fff0000000-0x37ffffffffff window] could not be reserved
[   12.229406] pnp: PnP ACPI: found 1 devices
[   12.236760] NET: Registered protocol family 2
[   12.241272] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[   12.249845] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[   12.257843] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[   12.265285] TCP: Hash tables configured (established 16384 bind 16384)
[   12.271856] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[   12.278586] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[   12.285922] NET: Registered protocol family 1
[   12.290478] RPC: Registered named UNIX socket transport module.
[   12.296375] RPC: Registered udp transport module.
[   12.301126] RPC: Registered tcp transport module.
[   12.305900] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   12.312479] pci 000d:01:00.1: D0 power state depends on 000d:01:00.0
[   12.318912] pci 000d:01:00.2: D0 power state depends on 000d:01:00.0
[   12.325317] pci 000d:01:00.2: enabling device (0000 -> 0002)
[   12.331061] pci 000d:01:00.3: D0 power state depends on 000d:01:00.0
[   12.337492] pci 0004:03:00.0: enabling device (0000 -> 0002)
[   12.343198] pci 0005:02:00.0: enabling device (0000 -> 0002)
[   12.348910] PCI: CLS 128 bytes, default 64
[   12.355555] hw perfevents: enabled with armv8_pmuv3_0 PMU driver, 1 counters available
[   12.365865] workingset: timestamp_bits=42 max_order=19 bucket_order=0
[   12.374059] NFS: Registering the id_resolver key type
[   12.379081] Key type id_resolver registered
[   12.383313] Key type id_legacy registered
[   12.387807] Key type cifs.idmap registered
[   12.406430] xor: measuring software checksum speed
[   12.412183]    8regs           :  9789 MB/sec
[   12.417332]    32regs          : 11758 MB/sec
[   12.422341]    arm64_neon      : 13979 MB/sec
[   12.426650] xor: using function: arm64_neon (13979 MB/sec)
[   12.432224] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[   12.439705] io scheduler mq-deadline registered
[   12.444270] io scheduler kyber registered
[   12.449696] gpio-dwapb APMC0D07:02: no IRQ for port0
[   12.455613] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[   12.463997] ACPI: Power Button [PWRB]
[   12.468418] GHES: APEI firmware first mode is enabled by APEI bit.
[   12.474618] EINJ: Error INJection is initialized.
[   12.479370] ACPI GTDT: found 1 SBSA generic Watchdog(s).
[   12.485213] xen:xen_evtchn: Event-channel device installed
[   12.491378] ast 0004:02:00.0: [drm] platform has no IO space, trying MMIO
[   12.498165] ast 0004:02:00.0: [drm] Using P2A bridge for configuration
[   12.504744] ast 0004:02:00.0: [drm] AST 2500 detected
[   12.509848] ast 0004:02:00.0: [drm] Analog VGA only
[   12.514797] ast 0004:02:00.0: [drm] dram MCLK=800 Mhz type=8 bus_width=16
[   12.521759] [TTM] Zone  kernel: Available graphics memory: 964448 KiB
[   12.528183] [TTM] Initializing pool allocator
[   12.532583] [TTM] Initializing DMA pool allocator
[   12.537658] [drm] Initialized ast 0.1.0 20120228 for 0004:02:00.0 on minor 0
[   12.562609] Console: switching to colour frame buffer device 128x48
[   12.571044] ast 0004:02:00.0: [drm] fb0: astdrmfb frame buffer device
[   12.592055] brd: module loaded
[   12.599484] loop: module loaded
[   12.603160] nvme nvme0: pci function 0005:04:00.0
[   12.608129] igb: Intel(R) Gigabit Ethernet Network Driver
[   12.613495] igb: Copyright (c) 2007-2014 Intel Corporation.
[   12.613636] nvme nvme0: missing or invalid SUBNQN field.
[   12.625941] Unable to handle kernel NULL pointer dereference at virtual address 0000000000000008
[   12.634726] Mem abort info:
[   12.637520]   ESR = 0x96000044
[   12.640646]   EC = 0x25: DABT (current EL), IL = 32 bits
[   12.646055]   SET = 0, FnV = 0
[   12.649153]   EA = 0, S1PTW = 0
[   12.652365] Data abort info:
[   12.655314]   ISV = 0, ISS = 0x00000044
[   12.659231]   CM = 0, WnR = 1
[   12.662260] [0000000000000008] user address but active_mm is swapper
[   12.668724] Internal error: Oops: 96000044 [#1] PREEMPT SMP
[   12.674358] Modules linked in:
[   12.677455] CPU: 0 PID: 7 Comm: kworker/u64:0 Tainted: G        W         5.10.27-ampere-lts-standard #1
[   12.687083] Workqueue: nvme-reset-wq nvme_reset_work
[   12.692059] pstate: 60c00085 (nZCv daIf +PAN +UAO -TCO BTYPE=--)
[   12.698149] pc : steal_suitable_fallback+0x138/0x2f0
[   12.703170] lr : steal_suitable_fallback+0x1bc/0x2f0
[   12.708203] sp : ffff80001196b820
[   12.711569] x29: ffff80001196b820 x28: 0000000000000000 
[   12.716975] x27: 0000000000000000 x26: ffff8000114dbcb0 
[   12.722357] x25: fffffdffffe00000 x24: 0000000000000001 
[   12.727740] x23: 0000000000000000 x22: fffffe201bf60000 
[   12.733120] x21: ffff08071fbf6980 x20: 0000000000000901 
[   12.738502] x19: 0000000000080000 x18: ffffffffffffffff 
[   12.743884] x17: 0000000000000000 x16: 0000000000000012 
[   12.749266] x15: ffff08070508c683 x14: 0000000000000058 
[   12.754648] x13: 00000000000000c0 x12: 0000000000000000 
[   12.760030] x11: 0000000000000400 x10: 000000000000000c 
[   12.765412] x9 : ffff800010039d58 x8 : 0000000020000000 
[   12.770794] x7 : 0000000000000018 x6 : ffff800011750890 
[   12.776176] x5 : ffff800011750878 x4 : 0000000000000000 
[   12.781558] x3 : 0000000000000000 x2 : 0000000000000000 
[   12.786940] x1 : 0000000000000200 x0 : 0000000000000000 
[   12.792322] Call trace:
[   12.794806]  steal_suitable_fallback+0x138/0x2f0
[   12.799520]  get_page_from_freelist+0xe30/0x12a0
[   12.804207]  __alloc_pages_nodemask+0x148/0xe00
[   12.808809]  __dma_direct_alloc_pages+0xa4/0x1d0
[   12.813496]  dma_direct_alloc+0x1d8/0x340
[   12.817571]  xen_swiotlb_alloc_coherent+0x68/0x370
[   12.822439]  dma_alloc_attrs+0xe8/0xf0
[   12.826246]  nvme_reset_work+0x1030/0x1520
[   12.830417]  process_one_work+0x1dc/0x4bc
[   12.834495]  worker_thread+0x144/0x470
[   12.838313]  kthread+0x14c/0x160
[   12.841604]  ret_from_fork+0x10/0x38
[   12.845255] Code: a94082c4 d37ef463 cb3c4063 8b3c4042 (f9000480) 
[   12.851447] ---[ end trace f68728a0d3053b72 ]---
[   12.856117] note: kworker/u64:0[7] exited with preempt_count 1
[   12.879844] pps pps0: new PPS source ptp0
[   12.883868] igb 0004:04:00.0: added PHC on eth0
[   12.888410] igb 0004:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[   12.895382] igb 0004:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:30:64:3b:50:52
[   12.902647] igb 0004:04:00.0: eth0: PBA No: 000300-000
[   12.907774] igb 0004:04:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[   12.915502] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[   12.921776] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[   12.927769] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[   12.934099] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[   12.940176] i40e 0000:01:00.0: enabling device (0000 -> 0002)


^ permalink raw reply	[relevance 3%]

* Re: [PATCH] xen/balloon: don't use PV mode extra memory for zone device allocations
  2022-04-07  9:38 22% [PATCH] xen/balloon: don't use PV mode extra memory for zone device allocations Juergen Gross
  2022-04-07 20:04  5% ` Boris Ostrovsky
@ 2022-04-09 21:21  5% ` Boris Ostrovsky
  1 sibling, 0 replies; 200+ results
From: Boris Ostrovsky @ 2022-04-09 21:21 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel; +Cc: Stefano Stabellini


On 4/7/22 5:38 AM, Juergen Gross wrote:
> When running as a Xen PV guest use the extra memory (memory which isn't
> allocated for the guest at boot time) only for ballooning purposes and
> not for zone device allocations. This will remove some code without any
> lack of functionality.
>
> While at it move some code to get rid of another #ifdef.
>
> Remove a comment which is stale since some time now.
>
> Signed-off-by: Juergen Gross <jgross@suse.com>



Applied to for-linus-5.18


-boris



^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: fix page onlining when populating new zone
  2022-04-07  9:00  5%     ` David Hildenbrand
@ 2022-04-08 23:16  5%       ` Wei Yang
  0 siblings, 0 replies; 200+ results
From: Wei Yang @ 2022-04-08 23:16 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: Juergen Gross, xen-devel, linux-kernel, Boris Ostrovsky,
	Stefano Stabellini, stable, Marek Marczykowski-G??recki,
	Wei Yang, Michal Hocko

On Thu, Apr 07, 2022 at 11:00:33AM +0200, David Hildenbrand wrote:
>On 07.04.22 10:50, Juergen Gross wrote:
>> On 07.04.22 10:23, David Hildenbrand wrote:
>>> On 06.04.22 15:32, Juergen Gross wrote:
>>>> When onlining a new memory page in a guest the Xen balloon driver is
>>>> adding it to the ballooned pages instead making it available to be
>>>> used immediately. This is meant to enable to add a new upper memory
>>>> limit to a guest via hotplugging memory, without having to assign the
>>>> new memory in one go.
>>>>
>>>> In case the upper memory limit will be raised above 4G, the new memory
>>>> will populate the ZONE_NORMAL memory zone, which wasn't populated
>>>> before. The newly populated zone won't be added to the list of zones
>>>> looked at by the page allocator though, as only zones with available
>>>> memory are being added, and the memory isn't yet available as it is
>>>> ballooned out.
>>>
>>> I think we just recently discussed these corner cases on the -mm list.
>> 
>> Indeed.
>> 
>>> The issue is having effectively populated zones without manages pages
>>> because everything is inflated in a balloon.
>> 
>> Correct.
>> 
>>> That can theoretically also happen when managing to fully inflate the
>>> balloon in one zone and then, somehow, the zones get rebuilt.
>> 
>> I think you are right. I didn't think of that scenario.
>> 
>>> build_zonerefs_node() documents "Add all populated zones of a node to
>>> the zonelist" but checks for managed zones, which is wrong.
>>>
>>> See https://lkml.kernel.org/r/20220201070044.zbm3obsoimhz3xd3@master
>> 
>> I found commit 6aa303defb7454 which introduced this test. I thought
>> it was needed due to the problem this commit tried to solve. Maybe I
>> was wrong and that commit shouldn't have changed the condition when
>> building the zonelist, but just the ones in the allocation paths.
>
>In regard to kswapd, that is currently being worked on via
>
>https://lkml.kernel.org/r/20220329010901.1654-2-richard.weiyang@gmail.com
>

Thanks, David

Do you think it is the right time to repost the original fix?

>-- 
>Thanks,
>
>David / dhildenb

-- 
Wei Yang
Help you, Help me


^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: don't use PV mode extra memory for zone device allocations
  2022-04-07  9:38 22% [PATCH] xen/balloon: don't use PV mode extra memory for zone device allocations Juergen Gross
@ 2022-04-07 20:04  5% ` Boris Ostrovsky
  2022-04-09 21:21  5% ` Boris Ostrovsky
  1 sibling, 0 replies; 200+ results
From: Boris Ostrovsky @ 2022-04-07 20:04 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel; +Cc: Stefano Stabellini


On 4/7/22 5:38 AM, Juergen Gross wrote:
> When running as a Xen PV guest use the extra memory (memory which isn't
> allocated for the guest at boot time) only for ballooning purposes and
> not for zone device allocations. This will remove some code without any
> lack of functionality.
>
> While at it move some code to get rid of another #ifdef.
>
> Remove a comment which is stale since some time now.
>
> Signed-off-by: Juergen Gross <jgross@suse.com>


Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>





^ permalink raw reply	[relevance 5%]

* Re: [PATCH] mm, page_alloc: fix build_zonerefs_node()
  2022-04-07 12:32  0%         ` Mel Gorman
@ 2022-04-07 12:49  0%           ` Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2022-04-07 12:49 UTC (permalink / raw)
  To: Mel Gorman
  Cc: Michal Hocko, xen-devel, linux-mm, linux-kernel, Andrew Morton,
	stable, Marek Marczykowski-G?recki, Mel Gorman


[-- Attachment #1.1.1: Type: text/plain, Size: 2680 bytes --]

On 07.04.22 14:32, Mel Gorman wrote:
> On Thu, Apr 07, 2022 at 01:17:19PM +0200, Juergen Gross wrote:
>> On 07.04.22 13:07, Michal Hocko wrote:
>>> On Thu 07-04-22 12:45:41, Juergen Gross wrote:
>>>> On 07.04.22 12:34, Michal Hocko wrote:
>>>>> Ccing Mel
>>>>>
>>>>> On Thu 07-04-22 11:32:21, Juergen Gross wrote:
>>>>>> Since commit 9d3be21bf9c0 ("mm, page_alloc: simplify zonelist
>>>>>> initialization") only zones with free memory are included in a built
>>>>>> zonelist. This is problematic when e.g. all memory of a zone has been
>>>>>> ballooned out.
>>>>>
>>>>> What is the actual problem there?
>>>>
>>>> When running as Xen guest new hotplugged memory will not be onlined
>>>> automatically, but only on special request. This is done in order to
>>>> support adding e.g. the possibility to use another GB of memory, while
>>>> adding only a part of that memory initially.
>>>>
>>>> In case adding that memory is populating a new zone, the page allocator
>>>> won't be able to use this memory when it is onlined, as the zone wasn't
>>>> added to the zonelist, due to managed_zone() returning 0.
>>>
>>> How is that memory onlined? Because "regular" onlining (online_pages())
>>> does rebuild zonelists if their zone hasn't been populated before.
>>
>> The Xen balloon driver has an own callback for onlining pages. The pages
>> are just added to the ballooned-out page list without handing them to the
>> allocator. This is done only when the guest is ballooned up.
>>
> 
> Is this new behaviour? I ask because keeping !managed_zones out of the

For some time (since kernel 5.9) Xen is using the zone device functionality
with memremap_pages() and pgmap->type = MEMORY_DEVICE_GENERIC.

> zonelist and reclaim paths and the behaviour makes sense. Elsewhere you
> state "zone can always happen to have no free memory left" and this is true
> but it's usually a transient event. The difference between a populated

And if this "transient event" is just happening when the zonelists are
being rebuilt the zone will be off the lists maybe forever.

> vs managed zone is usually permanent event where no memory will ever be
> placed on the buddy lists because the memory was reserved early in boot
> or a similar reason. The patch is probably harmless but it has the
> potential to waste CPUs allocating or reclaiming from zones that will
> never succeed.

I'd recommend to have an explicit flag per-zone for this case if you
really care about that. This would be much cleaner than to imply from
no free page being present at a specific point in time, that the zone
will never be subject to memory allocation.


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3149 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: [PATCH] mm, page_alloc: fix build_zonerefs_node()
  2022-04-07 11:17  4%       ` Juergen Gross
  2022-04-07 11:40  0%         ` Michal Hocko
@ 2022-04-07 12:32  0%         ` Mel Gorman
  2022-04-07 12:49  0%           ` Juergen Gross
  1 sibling, 1 reply; 200+ results
From: Mel Gorman @ 2022-04-07 12:32 UTC (permalink / raw)
  To: Juergen Gross
  Cc: Michal Hocko, xen-devel, linux-mm, linux-kernel, Andrew Morton,
	stable, Marek Marczykowski-G?recki, Mel Gorman

On Thu, Apr 07, 2022 at 01:17:19PM +0200, Juergen Gross wrote:
> On 07.04.22 13:07, Michal Hocko wrote:
> > On Thu 07-04-22 12:45:41, Juergen Gross wrote:
> > > On 07.04.22 12:34, Michal Hocko wrote:
> > > > Ccing Mel
> > > > 
> > > > On Thu 07-04-22 11:32:21, Juergen Gross wrote:
> > > > > Since commit 9d3be21bf9c0 ("mm, page_alloc: simplify zonelist
> > > > > initialization") only zones with free memory are included in a built
> > > > > zonelist. This is problematic when e.g. all memory of a zone has been
> > > > > ballooned out.
> > > > 
> > > > What is the actual problem there?
> > > 
> > > When running as Xen guest new hotplugged memory will not be onlined
> > > automatically, but only on special request. This is done in order to
> > > support adding e.g. the possibility to use another GB of memory, while
> > > adding only a part of that memory initially.
> > > 
> > > In case adding that memory is populating a new zone, the page allocator
> > > won't be able to use this memory when it is onlined, as the zone wasn't
> > > added to the zonelist, due to managed_zone() returning 0.
> > 
> > How is that memory onlined? Because "regular" onlining (online_pages())
> > does rebuild zonelists if their zone hasn't been populated before.
> 
> The Xen balloon driver has an own callback for onlining pages. The pages
> are just added to the ballooned-out page list without handing them to the
> allocator. This is done only when the guest is ballooned up.
> 

Is this new behaviour? I ask because keeping !managed_zones out of the
zonelist and reclaim paths and the behaviour makes sense. Elsewhere you
state "zone can always happen to have no free memory left" and this is true
but it's usually a transient event. The difference between a populated
vs managed zone is usually permanent event where no memory will ever be
placed on the buddy lists because the memory was reserved early in boot
or a similar reason. The patch is probably harmless but it has the
potential to waste CPUs allocating or reclaiming from zones that will
never succeed.

-- 
Mel Gorman
SUSE Labs


^ permalink raw reply	[relevance 0%]

* Re: [PATCH] mm, page_alloc: fix build_zonerefs_node()
  2022-04-07 11:40  0%         ` Michal Hocko
@ 2022-04-07 11:58  0%           ` David Hildenbrand
  0 siblings, 0 replies; 200+ results
From: David Hildenbrand @ 2022-04-07 11:58 UTC (permalink / raw)
  To: Michal Hocko, Juergen Gross
  Cc: xen-devel, linux-mm, linux-kernel, Andrew Morton, stable,
	Marek Marczykowski-Górecki, Mel Gorman

On 07.04.22 13:40, Michal Hocko wrote:
> On Thu 07-04-22 13:17:19, Juergen Gross wrote:
>> On 07.04.22 13:07, Michal Hocko wrote:
>>> On Thu 07-04-22 12:45:41, Juergen Gross wrote:
>>>> On 07.04.22 12:34, Michal Hocko wrote:
>>>>> Ccing Mel
>>>>>
>>>>> On Thu 07-04-22 11:32:21, Juergen Gross wrote:
>>>>>> Since commit 9d3be21bf9c0 ("mm, page_alloc: simplify zonelist
>>>>>> initialization") only zones with free memory are included in a built
>>>>>> zonelist. This is problematic when e.g. all memory of a zone has been
>>>>>> ballooned out.
>>>>>
>>>>> What is the actual problem there?
>>>>
>>>> When running as Xen guest new hotplugged memory will not be onlined
>>>> automatically, but only on special request. This is done in order to
>>>> support adding e.g. the possibility to use another GB of memory, while
>>>> adding only a part of that memory initially.
>>>>
>>>> In case adding that memory is populating a new zone, the page allocator
>>>> won't be able to use this memory when it is onlined, as the zone wasn't
>>>> added to the zonelist, due to managed_zone() returning 0.
>>>
>>> How is that memory onlined? Because "regular" onlining (online_pages())
>>> does rebuild zonelists if their zone hasn't been populated before.
>>
>> The Xen balloon driver has an own callback for onlining pages. The pages
>> are just added to the ballooned-out page list without handing them to the
>> allocator. This is done only when the guest is ballooned up.
> 
> OK, I see. Let me just rephrase to see whether we are on the same page.
> Xen is overriding the online_page_callback to xen_online_page which
> doesn't free pages to the page allocator which means that a zone might
> remain unpopulated after onlining. This means that the default zone
> lists rebuild is not done and later on when those pages are finally
> released to the allocator there is no build_all_zonelists happening so
> those freed pages are not really visible to the allocator via zonelists
> fallback allocation.
> 
> Now to your patch. I suspect this is not sufficient for the full hotplug
> situation. Consider a new NUMA node to be hotadded. hotadd_new_pgdat
> will call build_all_zonelists but the zone is not populated yet at that
> moment unless I am missing something. We do rely on online_pages to
> rebuild once pages are onlined - which usually means they are freed to
> the page allocator.
> 
> The zonelists building is kinda messy TBH. I have to say that I am not
> really clear on Mel's 6aa303defb74 ("mm, vmscan: only allocate and
> reclaim from zones with pages managed by the buddy allocator") because
> as you have said unpoppulated zone is not (or shouldn't be) really all
> that different from a depleted zone.
> 
> I think a better and more complete fix would be the following. In other
> words the zonelists will be built for all present zones. Not sure
> whether that is going to break 6aa303defb74 though.
> 
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index 2a9627dc784c..880c455e2557 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -1062,7 +1062,6 @@ int __ref online_pages(unsigned long pfn, unsigned long nr_pages,
>  		       struct zone *zone, struct memory_group *group)
>  {
>  	unsigned long flags;
> -	int need_zonelists_rebuild = 0;
>  	const int nid = zone_to_nid(zone);
>  	int ret;
>  	struct memory_notify arg;
> @@ -1106,17 +1105,13 @@ int __ref online_pages(unsigned long pfn, unsigned long nr_pages,
>  	 * This means the page allocator ignores this zone.
>  	 * So, zonelist must be updated after online.
>  	 */
> -	if (!populated_zone(zone)) {
> -		need_zonelists_rebuild = 1;
> +	if (!populated_zone(zone))
>  		setup_zone_pageset(zone);
> -	}
>  
>  	online_pages_range(pfn, nr_pages);
>  	adjust_present_page_count(pfn_to_page(pfn), group, nr_pages);
>  
>  	node_states_set_node(nid, &arg);
> -	if (need_zonelists_rebuild)
> -		build_all_zonelists(NULL);
>  
>  	/* Basic onlining is complete, allow allocation of onlined pages. */
>  	undo_isolate_page_range(pfn, pfn + nr_pages, MIGRATE_MOVABLE);
> @@ -1985,10 +1980,8 @@ int __ref offline_pages(unsigned long start_pfn, unsigned long nr_pages,
>  	/* reinitialise watermarks and update pcp limits */
>  	init_per_zone_wmark_min();
>  
> -	if (!populated_zone(zone)) {
> +	if (!populated_zone(zone))
>  		zone_pcp_reset(zone);
> -		build_all_zonelists(NULL);
> -	}
>  
>  	node_states_clear_node(node, &arg);
>  	if (arg.status_change_nid >= 0) {
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 3589febc6d31..130a2feceddc 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -6112,10 +6112,8 @@ static int build_zonerefs_node(pg_data_t *pgdat, struct zoneref *zonerefs)
>  	do {
>  		zone_type--;
>  		zone = pgdat->node_zones + zone_type;
> -		if (managed_zone(zone)) {
> -			zoneref_set_zone(zone, &zonerefs[nr_zones++]);
> -			check_highest_zone(zone_type);
> -		}
> +		zoneref_set_zone(zone, &zonerefs[nr_zones++]);
> +		check_highest_zone(zone_type);
>  	} while (zone_type);
>  
>  	return nr_zones;

I don't think having !populated zones in the zonelist is a particularly
good idea. Populated vs !populated changes only during page
onlininge/offlining.

If I'm not wrong, with your patch we'd even include ZONE_DEVICE here ...

I'd vote for going with the simple fix first, which should be good
enough AFAIKT.

-- 
Thanks,

David / dhildenb



^ permalink raw reply	[relevance 0%]

* Re: [PATCH] mm, page_alloc: fix build_zonerefs_node()
  2022-04-07 11:17  4%       ` Juergen Gross
@ 2022-04-07 11:40  0%         ` Michal Hocko
  2022-04-07 11:58  0%           ` David Hildenbrand
  2022-04-07 12:32  0%         ` Mel Gorman
  1 sibling, 1 reply; 200+ results
From: Michal Hocko @ 2022-04-07 11:40 UTC (permalink / raw)
  To: Juergen Gross
  Cc: xen-devel, linux-mm, linux-kernel, Andrew Morton, stable,
	Marek Marczykowski-Górecki, Mel Gorman

On Thu 07-04-22 13:17:19, Juergen Gross wrote:
> On 07.04.22 13:07, Michal Hocko wrote:
> > On Thu 07-04-22 12:45:41, Juergen Gross wrote:
> > > On 07.04.22 12:34, Michal Hocko wrote:
> > > > Ccing Mel
> > > > 
> > > > On Thu 07-04-22 11:32:21, Juergen Gross wrote:
> > > > > Since commit 9d3be21bf9c0 ("mm, page_alloc: simplify zonelist
> > > > > initialization") only zones with free memory are included in a built
> > > > > zonelist. This is problematic when e.g. all memory of a zone has been
> > > > > ballooned out.
> > > > 
> > > > What is the actual problem there?
> > > 
> > > When running as Xen guest new hotplugged memory will not be onlined
> > > automatically, but only on special request. This is done in order to
> > > support adding e.g. the possibility to use another GB of memory, while
> > > adding only a part of that memory initially.
> > > 
> > > In case adding that memory is populating a new zone, the page allocator
> > > won't be able to use this memory when it is onlined, as the zone wasn't
> > > added to the zonelist, due to managed_zone() returning 0.
> > 
> > How is that memory onlined? Because "regular" onlining (online_pages())
> > does rebuild zonelists if their zone hasn't been populated before.
> 
> The Xen balloon driver has an own callback for onlining pages. The pages
> are just added to the ballooned-out page list without handing them to the
> allocator. This is done only when the guest is ballooned up.

OK, I see. Let me just rephrase to see whether we are on the same page.
Xen is overriding the online_page_callback to xen_online_page which
doesn't free pages to the page allocator which means that a zone might
remain unpopulated after onlining. This means that the default zone
lists rebuild is not done and later on when those pages are finally
released to the allocator there is no build_all_zonelists happening so
those freed pages are not really visible to the allocator via zonelists
fallback allocation.

Now to your patch. I suspect this is not sufficient for the full hotplug
situation. Consider a new NUMA node to be hotadded. hotadd_new_pgdat
will call build_all_zonelists but the zone is not populated yet at that
moment unless I am missing something. We do rely on online_pages to
rebuild once pages are onlined - which usually means they are freed to
the page allocator.

The zonelists building is kinda messy TBH. I have to say that I am not
really clear on Mel's 6aa303defb74 ("mm, vmscan: only allocate and
reclaim from zones with pages managed by the buddy allocator") because
as you have said unpoppulated zone is not (or shouldn't be) really all
that different from a depleted zone.

I think a better and more complete fix would be the following. In other
words the zonelists will be built for all present zones. Not sure
whether that is going to break 6aa303defb74 though.

diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index 2a9627dc784c..880c455e2557 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -1062,7 +1062,6 @@ int __ref online_pages(unsigned long pfn, unsigned long nr_pages,
 		       struct zone *zone, struct memory_group *group)
 {
 	unsigned long flags;
-	int need_zonelists_rebuild = 0;
 	const int nid = zone_to_nid(zone);
 	int ret;
 	struct memory_notify arg;
@@ -1106,17 +1105,13 @@ int __ref online_pages(unsigned long pfn, unsigned long nr_pages,
 	 * This means the page allocator ignores this zone.
 	 * So, zonelist must be updated after online.
 	 */
-	if (!populated_zone(zone)) {
-		need_zonelists_rebuild = 1;
+	if (!populated_zone(zone))
 		setup_zone_pageset(zone);
-	}
 
 	online_pages_range(pfn, nr_pages);
 	adjust_present_page_count(pfn_to_page(pfn), group, nr_pages);
 
 	node_states_set_node(nid, &arg);
-	if (need_zonelists_rebuild)
-		build_all_zonelists(NULL);
 
 	/* Basic onlining is complete, allow allocation of onlined pages. */
 	undo_isolate_page_range(pfn, pfn + nr_pages, MIGRATE_MOVABLE);
@@ -1985,10 +1980,8 @@ int __ref offline_pages(unsigned long start_pfn, unsigned long nr_pages,
 	/* reinitialise watermarks and update pcp limits */
 	init_per_zone_wmark_min();
 
-	if (!populated_zone(zone)) {
+	if (!populated_zone(zone))
 		zone_pcp_reset(zone);
-		build_all_zonelists(NULL);
-	}
 
 	node_states_clear_node(node, &arg);
 	if (arg.status_change_nid >= 0) {
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 3589febc6d31..130a2feceddc 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -6112,10 +6112,8 @@ static int build_zonerefs_node(pg_data_t *pgdat, struct zoneref *zonerefs)
 	do {
 		zone_type--;
 		zone = pgdat->node_zones + zone_type;
-		if (managed_zone(zone)) {
-			zoneref_set_zone(zone, &zonerefs[nr_zones++]);
-			check_highest_zone(zone_type);
-		}
+		zoneref_set_zone(zone, &zonerefs[nr_zones++]);
+		check_highest_zone(zone_type);
 	} while (zone_type);
 
 	return nr_zones;
-- 
Michal Hocko
SUSE Labs


^ permalink raw reply related	[relevance 0%]

* Re: [PATCH] mm, page_alloc: fix build_zonerefs_node()
  @ 2022-04-07 11:17  4%       ` Juergen Gross
  2022-04-07 11:40  0%         ` Michal Hocko
  2022-04-07 12:32  0%         ` Mel Gorman
  0 siblings, 2 replies; 200+ results
From: Juergen Gross @ 2022-04-07 11:17 UTC (permalink / raw)
  To: Michal Hocko
  Cc: xen-devel, linux-mm, linux-kernel, Andrew Morton, stable,
	Marek Marczykowski-Górecki, Mel Gorman


[-- Attachment #1.1.1: Type: text/plain, Size: 1476 bytes --]

On 07.04.22 13:07, Michal Hocko wrote:
> On Thu 07-04-22 12:45:41, Juergen Gross wrote:
>> On 07.04.22 12:34, Michal Hocko wrote:
>>> Ccing Mel
>>>
>>> On Thu 07-04-22 11:32:21, Juergen Gross wrote:
>>>> Since commit 9d3be21bf9c0 ("mm, page_alloc: simplify zonelist
>>>> initialization") only zones with free memory are included in a built
>>>> zonelist. This is problematic when e.g. all memory of a zone has been
>>>> ballooned out.
>>>
>>> What is the actual problem there?
>>
>> When running as Xen guest new hotplugged memory will not be onlined
>> automatically, but only on special request. This is done in order to
>> support adding e.g. the possibility to use another GB of memory, while
>> adding only a part of that memory initially.
>>
>> In case adding that memory is populating a new zone, the page allocator
>> won't be able to use this memory when it is onlined, as the zone wasn't
>> added to the zonelist, due to managed_zone() returning 0.
> 
> How is that memory onlined? Because "regular" onlining (online_pages())
> does rebuild zonelists if their zone hasn't been populated before.

The Xen balloon driver has an own callback for onlining pages. The pages
are just added to the ballooned-out page list without handing them to the
allocator. This is done only when the guest is ballooned up.

So the problem is that a new zone is being populated, but it won't have
free pages when the zonelists are rebuilt.


Juergen


[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3149 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 4%]

* [PATCH] xen/balloon: don't use PV mode extra memory for zone device allocations
@ 2022-04-07  9:38 22% Juergen Gross
  2022-04-07 20:04  5% ` Boris Ostrovsky
  2022-04-09 21:21  5% ` Boris Ostrovsky
  0 siblings, 2 replies; 200+ results
From: Juergen Gross @ 2022-04-07  9:38 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Juergen Gross, Boris Ostrovsky, Stefano Stabellini

When running as a Xen PV guest use the extra memory (memory which isn't
allocated for the guest at boot time) only for ballooning purposes and
not for zone device allocations. This will remove some code without any
lack of functionality.

While at it move some code to get rid of another #ifdef.

Remove a comment which is stale since some time now.

Signed-off-by: Juergen Gross <jgross@suse.com>
---
 drivers/xen/balloon.c           | 54 ++++++++++++++-------------------
 drivers/xen/unpopulated-alloc.c | 33 --------------------
 2 files changed, 23 insertions(+), 64 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index dfe26fa17e95..617a7f4f07a8 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -689,29 +689,34 @@ void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages)
 }
 EXPORT_SYMBOL(xen_free_ballooned_pages);
 
-#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
-static void __init balloon_add_region(unsigned long start_pfn,
-				      unsigned long pages)
+static void __init balloon_add_regions(void)
 {
+#if defined(CONFIG_XEN_PV)
+	unsigned long start_pfn, pages;
 	unsigned long pfn, extra_pfn_end;
+	unsigned int i;
 
-	/*
-	 * If the amount of usable memory has been limited (e.g., with
-	 * the 'mem' command line parameter), don't add pages beyond
-	 * this limit.
-	 */
-	extra_pfn_end = min(max_pfn, start_pfn + pages);
+	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
+		pages = xen_extra_mem[i].n_pfns;
+		if (!pages)
+			continue;
 
-	for (pfn = start_pfn; pfn < extra_pfn_end; pfn++) {
-		/* totalram_pages and totalhigh_pages do not
-		   include the boot-time balloon extension, so
-		   don't subtract from it. */
-		balloon_append(pfn_to_page(pfn));
-	}
+		start_pfn = xen_extra_mem[i].start_pfn;
 
-	balloon_stats.total_pages += extra_pfn_end - start_pfn;
-}
+		/*
+		 * If the amount of usable memory has been limited (e.g., with
+		 * the 'mem' command line parameter), don't add pages beyond
+		 * this limit.
+		 */
+		extra_pfn_end = min(max_pfn, start_pfn + pages);
+
+		for (pfn = start_pfn; pfn < extra_pfn_end; pfn++)
+			balloon_append(pfn_to_page(pfn));
+
+		balloon_stats.total_pages += extra_pfn_end - start_pfn;
+	}
 #endif
+}
 
 static int __init balloon_init(void)
 {
@@ -745,20 +750,7 @@ static int __init balloon_init(void)
 	register_sysctl_table(xen_root);
 #endif
 
-#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
-	{
-		int i;
-
-		/*
-		 * Initialize the balloon with pages from the extra memory
-		 * regions (see arch/x86/xen/setup.c).
-		 */
-		for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++)
-			if (xen_extra_mem[i].n_pfns)
-				balloon_add_region(xen_extra_mem[i].start_pfn,
-						   xen_extra_mem[i].n_pfns);
-	}
-#endif
+	balloon_add_regions();
 
 	task = kthread_run(balloon_thread, NULL, "xen-balloon");
 	if (IS_ERR(task)) {
diff --git a/drivers/xen/unpopulated-alloc.c b/drivers/xen/unpopulated-alloc.c
index a8b41057c382..a39f2d36dd9c 100644
--- a/drivers/xen/unpopulated-alloc.c
+++ b/drivers/xen/unpopulated-alloc.c
@@ -230,39 +230,6 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 }
 EXPORT_SYMBOL(xen_free_unpopulated_pages);
 
-#ifdef CONFIG_XEN_PV
-static int __init init(void)
-{
-	unsigned int i;
-
-	if (!xen_domain())
-		return -ENODEV;
-
-	if (!xen_pv_domain())
-		return 0;
-
-	/*
-	 * Initialize with pages from the extra memory regions (see
-	 * arch/x86/xen/setup.c).
-	 */
-	for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
-		unsigned int j;
-
-		for (j = 0; j < xen_extra_mem[i].n_pfns; j++) {
-			struct page *pg =
-				pfn_to_page(xen_extra_mem[i].start_pfn + j);
-
-			pg->zone_device_data = page_list;
-			page_list = pg;
-			list_count++;
-		}
-	}
-
-	return 0;
-}
-subsys_initcall(init);
-#endif
-
 static int __init unpopulated_init(void)
 {
 	int ret;
-- 
2.34.1



^ permalink raw reply related	[relevance 22%]

* Re: [PATCH] xen/balloon: fix page onlining when populating new zone
  2022-04-07  8:50  5%   ` Juergen Gross
@ 2022-04-07  9:00  5%     ` David Hildenbrand
  2022-04-08 23:16  5%       ` Wei Yang
  0 siblings, 1 reply; 200+ results
From: David Hildenbrand @ 2022-04-07  9:00 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel
  Cc: Boris Ostrovsky, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki, Wei Yang, Michal Hocko

On 07.04.22 10:50, Juergen Gross wrote:
> On 07.04.22 10:23, David Hildenbrand wrote:
>> On 06.04.22 15:32, Juergen Gross wrote:
>>> When onlining a new memory page in a guest the Xen balloon driver is
>>> adding it to the ballooned pages instead making it available to be
>>> used immediately. This is meant to enable to add a new upper memory
>>> limit to a guest via hotplugging memory, without having to assign the
>>> new memory in one go.
>>>
>>> In case the upper memory limit will be raised above 4G, the new memory
>>> will populate the ZONE_NORMAL memory zone, which wasn't populated
>>> before. The newly populated zone won't be added to the list of zones
>>> looked at by the page allocator though, as only zones with available
>>> memory are being added, and the memory isn't yet available as it is
>>> ballooned out.
>>
>> I think we just recently discussed these corner cases on the -mm list.
> 
> Indeed.
> 
>> The issue is having effectively populated zones without manages pages
>> because everything is inflated in a balloon.
> 
> Correct.
> 
>> That can theoretically also happen when managing to fully inflate the
>> balloon in one zone and then, somehow, the zones get rebuilt.
> 
> I think you are right. I didn't think of that scenario.
> 
>> build_zonerefs_node() documents "Add all populated zones of a node to
>> the zonelist" but checks for managed zones, which is wrong.
>>
>> See https://lkml.kernel.org/r/20220201070044.zbm3obsoimhz3xd3@master
> 
> I found commit 6aa303defb7454 which introduced this test. I thought
> it was needed due to the problem this commit tried to solve. Maybe I
> was wrong and that commit shouldn't have changed the condition when
> building the zonelist, but just the ones in the allocation paths.

In regard to kswapd, that is currently being worked on via

https://lkml.kernel.org/r/20220329010901.1654-2-richard.weiyang@gmail.com

-- 
Thanks,

David / dhildenb



^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: fix page onlining when populating new zone
  2022-04-07  8:23  5% ` David Hildenbrand
@ 2022-04-07  8:50  5%   ` Juergen Gross
  2022-04-07  9:00  5%     ` David Hildenbrand
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2022-04-07  8:50 UTC (permalink / raw)
  To: David Hildenbrand, xen-devel, linux-kernel
  Cc: Boris Ostrovsky, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki, Wei Yang, Michal Hocko


[-- Attachment #1.1.1: Type: text/plain, Size: 3055 bytes --]

On 07.04.22 10:23, David Hildenbrand wrote:
> On 06.04.22 15:32, Juergen Gross wrote:
>> When onlining a new memory page in a guest the Xen balloon driver is
>> adding it to the ballooned pages instead making it available to be
>> used immediately. This is meant to enable to add a new upper memory
>> limit to a guest via hotplugging memory, without having to assign the
>> new memory in one go.
>>
>> In case the upper memory limit will be raised above 4G, the new memory
>> will populate the ZONE_NORMAL memory zone, which wasn't populated
>> before. The newly populated zone won't be added to the list of zones
>> looked at by the page allocator though, as only zones with available
>> memory are being added, and the memory isn't yet available as it is
>> ballooned out.
> 
> I think we just recently discussed these corner cases on the -mm list.

Indeed.

> The issue is having effectively populated zones without manages pages
> because everything is inflated in a balloon.

Correct.

> That can theoretically also happen when managing to fully inflate the
> balloon in one zone and then, somehow, the zones get rebuilt.

I think you are right. I didn't think of that scenario.

> build_zonerefs_node() documents "Add all populated zones of a node to
> the zonelist" but checks for managed zones, which is wrong.
> 
> See https://lkml.kernel.org/r/20220201070044.zbm3obsoimhz3xd3@master

I found commit 6aa303defb7454 which introduced this test. I thought
it was needed due to the problem this commit tried to solve. Maybe I
was wrong and that commit shouldn't have changed the condition when
building the zonelist, but just the ones in the allocation paths.

> 
>>
>> This will result in the new memory being assigned to the guest, but
>> without the allocator being able to use it.
>>
>> When running as a PV guest the situation is even worse: when having
>> been started with less memory than allowed, and the upper limit being
>> lower than 4G, ballooning up will have the same effect as hotplugging
>> new memory. This is due to the usage of the zone device functionality
>> since commit 9e2369c06c8a ("xen: add helpers to allocate unpopulated
>> memory") for creating mappings of other guest's pages, which as a side
>> effect is being used for PV guest ballooning, too.
>>
>> Fix this by checking in xen_online_page() whether the new memory page
>> will be the first in a new zone. If this is the case, add another page
>> to the balloon and use the first memory page of the new chunk as a
>> replacement for this now ballooned out page. This will result in the
>> newly populated zone containing one page being available for the page
>> allocator, which in turn will lead to the zone being added to the
>> allocator.
> 
> This somehow feels like a hack for something that should be handled in
> the core instead :/

Okay, I'll rework the patch (better wording might be: replace) to switch
build_zonerefs_node() to use populated_zone() instead of managed_zone().


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3149 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: fix page onlining when populating new zone
  2022-04-06 13:32 15% [PATCH] xen/balloon: fix page onlining when populating new zone Juergen Gross
                   ` (2 preceding siblings ...)
  2022-04-07  5:09 11% ` kernel test robot
@ 2022-04-07  8:23  5% ` David Hildenbrand
  2022-04-07  8:50  5%   ` Juergen Gross
  3 siblings, 1 reply; 200+ results
From: David Hildenbrand @ 2022-04-07  8:23 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel
  Cc: Boris Ostrovsky, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki, Wei Yang, Michal Hocko

On 06.04.22 15:32, Juergen Gross wrote:
> When onlining a new memory page in a guest the Xen balloon driver is
> adding it to the ballooned pages instead making it available to be
> used immediately. This is meant to enable to add a new upper memory
> limit to a guest via hotplugging memory, without having to assign the
> new memory in one go.
> 
> In case the upper memory limit will be raised above 4G, the new memory
> will populate the ZONE_NORMAL memory zone, which wasn't populated
> before. The newly populated zone won't be added to the list of zones
> looked at by the page allocator though, as only zones with available
> memory are being added, and the memory isn't yet available as it is
> ballooned out.

I think we just recently discussed these corner cases on the -mm list.
The issue is having effectively populated zones without manages pages
because everything is inflated in a balloon.

That can theoretically also happen when managing to fully inflate the
balloon in one zone and then, somehow, the zones get rebuilt.

build_zonerefs_node() documents "Add all populated zones of a node to
the zonelist" but checks for managed zones, which is wrong.

See https://lkml.kernel.org/r/20220201070044.zbm3obsoimhz3xd3@master

> 
> This will result in the new memory being assigned to the guest, but
> without the allocator being able to use it.
> 
> When running as a PV guest the situation is even worse: when having
> been started with less memory than allowed, and the upper limit being
> lower than 4G, ballooning up will have the same effect as hotplugging
> new memory. This is due to the usage of the zone device functionality
> since commit 9e2369c06c8a ("xen: add helpers to allocate unpopulated
> memory") for creating mappings of other guest's pages, which as a side
> effect is being used for PV guest ballooning, too.
> 
> Fix this by checking in xen_online_page() whether the new memory page
> will be the first in a new zone. If this is the case, add another page
> to the balloon and use the first memory page of the new chunk as a
> replacement for this now ballooned out page. This will result in the
> newly populated zone containing one page being available for the page
> allocator, which in turn will lead to the zone being added to the
> allocator.

This somehow feels like a hack for something that should be handled in
the core instead :/


-- 
Thanks,

David / dhildenb



^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: fix page onlining when populating new zone
  2022-04-06 13:32 15% [PATCH] xen/balloon: fix page onlining when populating new zone Juergen Gross
  2022-04-06 23:31 11% ` kernel test robot
  2022-04-07  2:06 11% ` kernel test robot
@ 2022-04-07  5:09 11% ` kernel test robot
  2022-04-07  8:23  5% ` David Hildenbrand
  3 siblings, 0 replies; 200+ results
From: kernel test robot @ 2022-04-07  5:09 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel
  Cc: kbuild-all, Juergen Gross, Boris Ostrovsky, Stefano Stabellini,
	stable, Marek Marczykowski-Górecki

Hi Juergen,

I love your patch! Yet something to improve:

[auto build test ERROR on xen-tip/linux-next]
[also build test ERROR on linus/master linux/master v5.18-rc1 next-20220406]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/intel-lab-lkp/linux/commits/Juergen-Gross/xen-balloon-fix-page-onlining-when-populating-new-zone/20220407-000935
base:   https://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git linux-next
config: arm64-randconfig-r011-20220406 (https://download.01.org/0day-ci/archive/20220407/202204071359.uas4tsu0-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/intel-lab-lkp/linux/commit/b3deb59d5386ade4fb227038f202a9bdb8ade4ab
        git remote add linux-review https://github.com/intel-lab-lkp/linux
        git fetch --no-tags linux-review Juergen-Gross/xen-balloon-fix-page-onlining-when-populating-new-zone/20220407-000935
        git checkout b3deb59d5386ade4fb227038f202a9bdb8ade4ab
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=arm64 SHELL=/bin/bash drivers/

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   drivers/xen/balloon.c: In function 'decrease_reservation':
>> drivers/xen/balloon.c:518:24: error: implicit declaration of function 'alloc_page_for_balloon' [-Werror=implicit-function-declaration]
     518 |                 page = alloc_page_for_balloon(gfp);
         |                        ^~~~~~~~~~~~~~~~~~~~~~
   drivers/xen/balloon.c:518:22: warning: assignment to 'struct page *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
     518 |                 page = alloc_page_for_balloon(gfp);
         |                      ^
>> drivers/xen/balloon.c:545:17: error: implicit declaration of function 'add_page_to_balloon' [-Werror=implicit-function-declaration]
     545 |                 add_page_to_balloon(page);
         |                 ^~~~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +/alloc_page_for_balloon +518 drivers/xen/balloon.c

   505	
   506	static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
   507	{
   508		enum bp_state state = BP_DONE;
   509		unsigned long i;
   510		struct page *page, *tmp;
   511		int ret;
   512		LIST_HEAD(pages);
   513	
   514		if (nr_pages > ARRAY_SIZE(frame_list))
   515			nr_pages = ARRAY_SIZE(frame_list);
   516	
   517		for (i = 0; i < nr_pages; i++) {
 > 518			page = alloc_page_for_balloon(gfp);
   519			if (page == NULL) {
   520				nr_pages = i;
   521				state = BP_EAGAIN;
   522				break;
   523			}
   524			list_add(&page->lru, &pages);
   525		}
   526	
   527		/*
   528		 * Ensure that ballooned highmem pages don't have kmaps.
   529		 *
   530		 * Do this before changing the p2m as kmap_flush_unused()
   531		 * reads PTEs to obtain pages (and hence needs the original
   532		 * p2m entry).
   533		 */
   534		kmap_flush_unused();
   535	
   536		/*
   537		 * Setup the frame, update direct mapping, invalidate P2M,
   538		 * and add to balloon.
   539		 */
   540		i = 0;
   541		list_for_each_entry_safe(page, tmp, &pages, lru) {
   542			frame_list[i++] = xen_page_to_gfn(page);
   543	
   544			list_del(&page->lru);
 > 545			add_page_to_balloon(page);
   546		}
   547	
   548		flush_tlb_all();
   549	
   550		ret = xenmem_reservation_decrease(nr_pages, frame_list);
   551		BUG_ON(ret != nr_pages);
   552	
   553		balloon_stats.current_pages -= nr_pages;
   554	
   555		return state;
   556	}
   557	

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp


^ permalink raw reply	[relevance 11%]

* Re: [PATCH] xen/balloon: fix page onlining when populating new zone
  2022-04-06 13:32 15% [PATCH] xen/balloon: fix page onlining when populating new zone Juergen Gross
  2022-04-06 23:31 11% ` kernel test robot
@ 2022-04-07  2:06 11% ` kernel test robot
  2022-04-07  5:09 11% ` kernel test robot
  2022-04-07  8:23  5% ` David Hildenbrand
  3 siblings, 0 replies; 200+ results
From: kernel test robot @ 2022-04-07  2:06 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel
  Cc: llvm, kbuild-all, Juergen Gross, Boris Ostrovsky,
	Stefano Stabellini, stable, Marek Marczykowski-Górecki

Hi Juergen,

I love your patch! Perhaps something to improve:

[auto build test WARNING on xen-tip/linux-next]
[also build test WARNING on linus/master linux/master v5.18-rc1 next-20220406]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/intel-lab-lkp/linux/commits/Juergen-Gross/xen-balloon-fix-page-onlining-when-populating-new-zone/20220407-000935
base:   https://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git linux-next
config: arm64-randconfig-r036-20220406 (https://download.01.org/0day-ci/archive/20220407/202204070950.mzGBYW2q-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project c4a1b07d0979e7ff20d7d541af666d822d66b566)
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # install arm64 cross compiling tool for clang build
        # apt-get install binutils-aarch64-linux-gnu
        # https://github.com/intel-lab-lkp/linux/commit/b3deb59d5386ade4fb227038f202a9bdb8ade4ab
        git remote add linux-review https://github.com/intel-lab-lkp/linux
        git fetch --no-tags linux-review Juergen-Gross/xen-balloon-fix-page-onlining-when-populating-new-zone/20220407-000935
        git checkout b3deb59d5386ade4fb227038f202a9bdb8ade4ab
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=arm64 SHELL=/bin/bash drivers/media/platform/ drivers/xen/

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

   drivers/xen/balloon.c:518:10: error: implicit declaration of function 'alloc_page_for_balloon' [-Werror,-Wimplicit-function-declaration]
                   page = alloc_page_for_balloon(gfp);
                          ^
>> drivers/xen/balloon.c:518:8: warning: incompatible integer to pointer conversion assigning to 'struct page *' from 'int' [-Wint-conversion]
                   page = alloc_page_for_balloon(gfp);
                        ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/xen/balloon.c:545:3: error: implicit declaration of function 'add_page_to_balloon' [-Werror,-Wimplicit-function-declaration]
                   add_page_to_balloon(page);
                   ^
   1 warning and 2 errors generated.


vim +518 drivers/xen/balloon.c

   505	
   506	static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
   507	{
   508		enum bp_state state = BP_DONE;
   509		unsigned long i;
   510		struct page *page, *tmp;
   511		int ret;
   512		LIST_HEAD(pages);
   513	
   514		if (nr_pages > ARRAY_SIZE(frame_list))
   515			nr_pages = ARRAY_SIZE(frame_list);
   516	
   517		for (i = 0; i < nr_pages; i++) {
 > 518			page = alloc_page_for_balloon(gfp);
   519			if (page == NULL) {
   520				nr_pages = i;
   521				state = BP_EAGAIN;
   522				break;
   523			}
   524			list_add(&page->lru, &pages);
   525		}
   526	
   527		/*
   528		 * Ensure that ballooned highmem pages don't have kmaps.
   529		 *
   530		 * Do this before changing the p2m as kmap_flush_unused()
   531		 * reads PTEs to obtain pages (and hence needs the original
   532		 * p2m entry).
   533		 */
   534		kmap_flush_unused();
   535	
   536		/*
   537		 * Setup the frame, update direct mapping, invalidate P2M,
   538		 * and add to balloon.
   539		 */
   540		i = 0;
   541		list_for_each_entry_safe(page, tmp, &pages, lru) {
   542			frame_list[i++] = xen_page_to_gfn(page);
   543	
   544			list_del(&page->lru);
   545			add_page_to_balloon(page);
   546		}
   547	
   548		flush_tlb_all();
   549	
   550		ret = xenmem_reservation_decrease(nr_pages, frame_list);
   551		BUG_ON(ret != nr_pages);
   552	
   553		balloon_stats.current_pages -= nr_pages;
   554	
   555		return state;
   556	}
   557	

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp


^ permalink raw reply	[relevance 11%]

* Re: [PATCH] xen/balloon: fix page onlining when populating new zone
  2022-04-06 13:32 15% [PATCH] xen/balloon: fix page onlining when populating new zone Juergen Gross
@ 2022-04-06 23:31 11% ` kernel test robot
  2022-04-07  2:06 11% ` kernel test robot
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 200+ results
From: kernel test robot @ 2022-04-06 23:31 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel
  Cc: kbuild-all, Juergen Gross, Boris Ostrovsky, Stefano Stabellini,
	stable, Marek Marczykowski-Górecki

Hi Juergen,

I love your patch! Perhaps something to improve:

[auto build test WARNING on xen-tip/linux-next]
[also build test WARNING on linus/master linux/master v5.18-rc1 next-20220406]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/intel-lab-lkp/linux/commits/Juergen-Gross/xen-balloon-fix-page-onlining-when-populating-new-zone/20220407-000935
base:   https://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git linux-next
config: arm64-randconfig-r011-20220406 (https://download.01.org/0day-ci/archive/20220407/202204070706.PKz2Th7L-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/intel-lab-lkp/linux/commit/b3deb59d5386ade4fb227038f202a9bdb8ade4ab
        git remote add linux-review https://github.com/intel-lab-lkp/linux
        git fetch --no-tags linux-review Juergen-Gross/xen-balloon-fix-page-onlining-when-populating-new-zone/20220407-000935
        git checkout b3deb59d5386ade4fb227038f202a9bdb8ade4ab
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=arm64 SHELL=/bin/bash drivers/xen/

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

   drivers/xen/balloon.c: In function 'decrease_reservation':
   drivers/xen/balloon.c:518:24: error: implicit declaration of function 'alloc_page_for_balloon' [-Werror=implicit-function-declaration]
     518 |                 page = alloc_page_for_balloon(gfp);
         |                        ^~~~~~~~~~~~~~~~~~~~~~
>> drivers/xen/balloon.c:518:22: warning: assignment to 'struct page *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
     518 |                 page = alloc_page_for_balloon(gfp);
         |                      ^
   drivers/xen/balloon.c:545:17: error: implicit declaration of function 'add_page_to_balloon' [-Werror=implicit-function-declaration]
     545 |                 add_page_to_balloon(page);
         |                 ^~~~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +518 drivers/xen/balloon.c

   505	
   506	static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
   507	{
   508		enum bp_state state = BP_DONE;
   509		unsigned long i;
   510		struct page *page, *tmp;
   511		int ret;
   512		LIST_HEAD(pages);
   513	
   514		if (nr_pages > ARRAY_SIZE(frame_list))
   515			nr_pages = ARRAY_SIZE(frame_list);
   516	
   517		for (i = 0; i < nr_pages; i++) {
 > 518			page = alloc_page_for_balloon(gfp);
   519			if (page == NULL) {
   520				nr_pages = i;
   521				state = BP_EAGAIN;
   522				break;
   523			}
   524			list_add(&page->lru, &pages);
   525		}
   526	
   527		/*
   528		 * Ensure that ballooned highmem pages don't have kmaps.
   529		 *
   530		 * Do this before changing the p2m as kmap_flush_unused()
   531		 * reads PTEs to obtain pages (and hence needs the original
   532		 * p2m entry).
   533		 */
   534		kmap_flush_unused();
   535	
   536		/*
   537		 * Setup the frame, update direct mapping, invalidate P2M,
   538		 * and add to balloon.
   539		 */
   540		i = 0;
   541		list_for_each_entry_safe(page, tmp, &pages, lru) {
   542			frame_list[i++] = xen_page_to_gfn(page);
   543	
   544			list_del(&page->lru);
   545			add_page_to_balloon(page);
   546		}
   547	
   548		flush_tlb_all();
   549	
   550		ret = xenmem_reservation_decrease(nr_pages, frame_list);
   551		BUG_ON(ret != nr_pages);
   552	
   553		balloon_stats.current_pages -= nr_pages;
   554	
   555		return state;
   556	}
   557	

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp


^ permalink raw reply	[relevance 11%]

* [PATCH] xen/balloon: fix page onlining when populating new zone
@ 2022-04-06 13:32 15% Juergen Gross
  2022-04-06 23:31 11% ` kernel test robot
                   ` (3 more replies)
  0 siblings, 4 replies; 200+ results
From: Juergen Gross @ 2022-04-06 13:32 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Juergen Gross, Boris Ostrovsky, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki

When onlining a new memory page in a guest the Xen balloon driver is
adding it to the ballooned pages instead making it available to be
used immediately. This is meant to enable to add a new upper memory
limit to a guest via hotplugging memory, without having to assign the
new memory in one go.

In case the upper memory limit will be raised above 4G, the new memory
will populate the ZONE_NORMAL memory zone, which wasn't populated
before. The newly populated zone won't be added to the list of zones
looked at by the page allocator though, as only zones with available
memory are being added, and the memory isn't yet available as it is
ballooned out.

This will result in the new memory being assigned to the guest, but
without the allocator being able to use it.

When running as a PV guest the situation is even worse: when having
been started with less memory than allowed, and the upper limit being
lower than 4G, ballooning up will have the same effect as hotplugging
new memory. This is due to the usage of the zone device functionality
since commit 9e2369c06c8a ("xen: add helpers to allocate unpopulated
memory") for creating mappings of other guest's pages, which as a side
effect is being used for PV guest ballooning, too.

Fix this by checking in xen_online_page() whether the new memory page
will be the first in a new zone. If this is the case, add another page
to the balloon and use the first memory page of the new chunk as a
replacement for this now ballooned out page. This will result in the
newly populated zone containing one page being available for the page
allocator, which in turn will lead to the zone being added to the
allocator.

Cc: stable@vger.kernel.org
Fixes: 9e2369c06c8a ("xen: add helpers to allocate unpopulated memory")
Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
---
 drivers/xen/balloon.c | 72 ++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 65 insertions(+), 7 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index dfe26fa17e95..f895c54c4c65 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -355,14 +355,77 @@ static enum bp_state reserve_additional_memory(void)
 	return BP_ECANCELED;
 }
 
+static struct page *alloc_page_for_balloon(gfp_t gfp)
+{
+	struct page *page;
+
+	page = alloc_page(gfp);
+	if (page == NULL)
+		return NULL;
+
+	adjust_managed_page_count(page, -1);
+	xenmem_reservation_scrub_page(page);
+
+	return page;
+}
+
+static void add_page_to_balloon(struct page *page)
+{
+	xenmem_reservation_va_mapping_reset(1, &page);
+	balloon_append(page);
+}
+
 static void xen_online_page(struct page *page, unsigned int order)
 {
 	unsigned long i, size = (1 << order);
 	unsigned long start_pfn = page_to_pfn(page);
 	struct page *p;
+	struct zone *zone;
 
 	pr_debug("Online %lu pages starting at pfn 0x%lx\n", size, start_pfn);
 	mutex_lock(&balloon_mutex);
+	zone = page_zone(pfn_to_page(start_pfn));
+
+	/*
+	 * In case a new memory zone is going to be populated, we need to
+	 * ensure at least one page is made available for the memory allocator.
+	 * As the number of pages per zone is updated only after a batch of
+	 * pages having been added, use the number of managed pages as an
+	 * additional indicator for a new zone.
+	 * Otherwise this zone won't be added to the zonelist resulting in the
+	 * zone's memory not usable by the kernel.
+	 * Add an already valid page to the balloon and replace it with the
+	 * first page of the to be added new memory chunk.
+	 */
+	if (!populated_zone(zone) && !managed_zone(zone)) {
+		xen_pfn_t frame;
+
+		pr_info("Populating new zone\n");
+
+		p = alloc_page_for_balloon(GFP_ATOMIC);
+		if (!p) {
+			pr_err("Failed to allocate replacement balloon page!\n");
+			pr_err("New onlined memory might not be usable.\n");
+		} else {
+			kmap_flush_unused();
+			add_page_to_balloon(p);
+			flush_tlb_all();
+			frame = xen_page_to_gfn(p);
+			xenmem_reservation_decrease(1, &frame);
+			balloon_stats.current_pages--;
+		}
+
+		p = pfn_to_page(start_pfn);
+		frame = page_to_xen_pfn(p);
+		if (xenmem_reservation_increase(1, &frame) > 0) {
+			xenmem_reservation_va_mapping_update(1, &p, &frame);
+			free_reserved_page(p);
+			balloon_stats.current_pages++;
+
+			start_pfn++;
+			size--;
+		}
+	}
 	for (i = 0; i < size; i++) {
 		p = pfn_to_page(start_pfn + i);
 		balloon_append(p);
@@ -452,14 +515,12 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
 		nr_pages = ARRAY_SIZE(frame_list);
 
 	for (i = 0; i < nr_pages; i++) {
-		page = alloc_page(gfp);
+		page = alloc_page_for_balloon(gfp);
 		if (page == NULL) {
 			nr_pages = i;
 			state = BP_EAGAIN;
 			break;
 		}
-		adjust_managed_page_count(page, -1);
-		xenmem_reservation_scrub_page(page);
 		list_add(&page->lru, &pages);
 	}
 
@@ -480,11 +541,8 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
 	list_for_each_entry_safe(page, tmp, &pages, lru) {
 		frame_list[i++] = xen_page_to_gfn(page);
 
-		xenmem_reservation_va_mapping_reset(1, &page);
-
 		list_del(&page->lru);
-
-		balloon_append(page);
+		add_page_to_balloon(page);
 	}
 
 	flush_tlb_all();
-- 
2.34.1



^ permalink raw reply related	[relevance 15%]

* Re: Increasing domain memory beyond initial maxmem
  2022-04-06  5:13  0%             ` Juergen Gross
@ 2022-04-06 12:58  0%               ` Marek Marczykowski-Górecki
  0 siblings, 0 replies; 200+ results
From: Marek Marczykowski-Górecki @ 2022-04-06 12:58 UTC (permalink / raw)
  To: Juergen Gross; +Cc: xen-devel

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

On Wed, Apr 06, 2022 at 07:13:18AM +0200, Juergen Gross wrote:
> On 05.04.22 18:24, Marek Marczykowski-Górecki wrote:
> > On Tue, Apr 05, 2022 at 01:03:57PM +0200, Juergen Gross wrote:
> > > Hi Marek,
> > > 
> > > On 31.03.22 14:36, Marek Marczykowski-Górecki wrote:
> > > > On Thu, Mar 31, 2022 at 02:22:03PM +0200, Juergen Gross wrote:
> > > > > Maybe some kernel config differences, or other udev rules (memory onlining
> > > > > is done via udev in my guest)?
> > > > > 
> > > > > I'm seeing:
> > > > > 
> > > > > # zgrep MEMORY_HOTPLUG /proc/config.gz
> > > > > CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
> > > > > CONFIG_MEMORY_HOTPLUG=y
> > > > > # CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
> > > > > CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
> > > > > CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512
> > > > 
> > > > I have:
> > > > # zgrep MEMORY_HOTPLUG /proc/config.gz
> > > > CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
> > > > CONFIG_MEMORY_HOTPLUG=y
> > > > CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y
> > > > CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
> > > > CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512
> > > > 
> > > > Not sure if relevant, but I also have:
> > > > CONFIG_XEN_UNPOPULATED_ALLOC=y
> > > > 
> > > > on top of that, I have a similar udev rule too:
> > > > 
> > > > SUBSYSTEM=="memory", ACTION=="add", ATTR{state}=="offline", ATTR{state}="online"
> > > > 
> > > > But I don't think they are conflicting.
> > > > 
> > > > > What type of guest are you using? Mine was a PVH guest.
> > > > 
> > > > PVH here too.
> > > 
> > > Would you like to try the attached patch? It seemed to work for me.
> > 
> > Unfortunately it doesn't help, now the behavior is different:
> > 
> > Initially guest started with 800M:
> > 
> >      [root@personal ~]# free -m
> >                    total        used        free      shared  buff/cache   available
> >      Mem:            740         223         272           2         243         401
> >      Swap:          1023           0        1023
> > 
> > Then increased:
> > 
> >      [root@dom0 ~]$ xl mem-max personal 2048
> >      [root@dom0 ~]$ xenstore-write /local/domain/$(xl domid personal)/memory/static-max $((2048*1024))
> >      [root@dom0 ~]$ xl mem-set personal 2000
> > 
> > And guest shows now only a little more memory, but not full 2000M:
> > 
> >      [root@personal ~]# [   37.657046] xen:balloon: Populating new zone
> >      [   37.658206] Fallback order for Node 0: 0
> >      [   37.658219] Built 1 zonelists, mobility grouping on.  Total pages: 175889
> >      [   37.658233] Policy zone: Normal
> > 
> >      [root@personal ~]#
> >      [root@personal ~]# free -m
> >                    total        used        free      shared  buff/cache   available
> >      Mem:            826         245         337           2         244         462
> >      Swap:          1023           0        1023
> > 
> > 
> > I've applied the patch on top of 5.16.18. If you think 5.17 would make a
> > difference, I can try that too.
> 
> Hmm, weird.
> 
> Can you please post the output of
> 
> cat /proc/buddyinfo
> cat /proc/iomem
> 
> in the guest before and after the operations?

Ok, that was a stupid mistake on my side - I've run out of host memory.
With that fixed, it seems to work, on 5.16.18 too.

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: Increasing domain memory beyond initial maxmem
  2022-04-05 16:24  4%           ` Marek Marczykowski-Górecki
@ 2022-04-06  5:13  0%             ` Juergen Gross
  2022-04-06 12:58  0%               ` Marek Marczykowski-Górecki
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2022-04-06  5:13 UTC (permalink / raw)
  To: Marek Marczykowski-Górecki; +Cc: xen-devel


[-- Attachment #1.1.1: Type: text/plain, Size: 2886 bytes --]

On 05.04.22 18:24, Marek Marczykowski-Górecki wrote:
> On Tue, Apr 05, 2022 at 01:03:57PM +0200, Juergen Gross wrote:
>> Hi Marek,
>>
>> On 31.03.22 14:36, Marek Marczykowski-Górecki wrote:
>>> On Thu, Mar 31, 2022 at 02:22:03PM +0200, Juergen Gross wrote:
>>>> Maybe some kernel config differences, or other udev rules (memory onlining
>>>> is done via udev in my guest)?
>>>>
>>>> I'm seeing:
>>>>
>>>> # zgrep MEMORY_HOTPLUG /proc/config.gz
>>>> CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
>>>> CONFIG_MEMORY_HOTPLUG=y
>>>> # CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
>>>> CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
>>>> CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512
>>>
>>> I have:
>>> # zgrep MEMORY_HOTPLUG /proc/config.gz
>>> CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
>>> CONFIG_MEMORY_HOTPLUG=y
>>> CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y
>>> CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
>>> CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512
>>>
>>> Not sure if relevant, but I also have:
>>> CONFIG_XEN_UNPOPULATED_ALLOC=y
>>>
>>> on top of that, I have a similar udev rule too:
>>>
>>> SUBSYSTEM=="memory", ACTION=="add", ATTR{state}=="offline", ATTR{state}="online"
>>>
>>> But I don't think they are conflicting.
>>>
>>>> What type of guest are you using? Mine was a PVH guest.
>>>
>>> PVH here too.
>>
>> Would you like to try the attached patch? It seemed to work for me.
> 
> Unfortunately it doesn't help, now the behavior is different:
> 
> Initially guest started with 800M:
> 
>      [root@personal ~]# free -m
>                    total        used        free      shared  buff/cache   available
>      Mem:            740         223         272           2         243         401
>      Swap:          1023           0        1023
> 
> Then increased:
> 
>      [root@dom0 ~]$ xl mem-max personal 2048
>      [root@dom0 ~]$ xenstore-write /local/domain/$(xl domid personal)/memory/static-max $((2048*1024))
>      [root@dom0 ~]$ xl mem-set personal 2000
> 
> And guest shows now only a little more memory, but not full 2000M:
> 
>      [root@personal ~]# [   37.657046] xen:balloon: Populating new zone
>      [   37.658206] Fallback order for Node 0: 0
>      [   37.658219] Built 1 zonelists, mobility grouping on.  Total pages: 175889
>      [   37.658233] Policy zone: Normal
> 
>      [root@personal ~]#
>      [root@personal ~]# free -m
>                    total        used        free      shared  buff/cache   available
>      Mem:            826         245         337           2         244         462
>      Swap:          1023           0        1023
> 
> 
> I've applied the patch on top of 5.16.18. If you think 5.17 would make a
> difference, I can try that too.

Hmm, weird.

Can you please post the output of

cat /proc/buddyinfo
cat /proc/iomem

in the guest before and after the operations?


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3149 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: Increasing domain memory beyond initial maxmem
  2022-04-05 11:03 18%         ` Juergen Gross
@ 2022-04-05 16:24  4%           ` Marek Marczykowski-Górecki
  2022-04-06  5:13  0%             ` Juergen Gross
  0 siblings, 1 reply; 200+ results
From: Marek Marczykowski-Górecki @ 2022-04-05 16:24 UTC (permalink / raw)
  To: Juergen Gross; +Cc: xen-devel

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

On Tue, Apr 05, 2022 at 01:03:57PM +0200, Juergen Gross wrote:
> Hi Marek,
> 
> On 31.03.22 14:36, Marek Marczykowski-Górecki wrote:
> > On Thu, Mar 31, 2022 at 02:22:03PM +0200, Juergen Gross wrote:
> > > Maybe some kernel config differences, or other udev rules (memory onlining
> > > is done via udev in my guest)?
> > > 
> > > I'm seeing:
> > > 
> > > # zgrep MEMORY_HOTPLUG /proc/config.gz
> > > CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
> > > CONFIG_MEMORY_HOTPLUG=y
> > > # CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
> > > CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
> > > CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512
> > 
> > I have:
> > # zgrep MEMORY_HOTPLUG /proc/config.gz
> > CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
> > CONFIG_MEMORY_HOTPLUG=y
> > CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y
> > CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
> > CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512
> > 
> > Not sure if relevant, but I also have:
> > CONFIG_XEN_UNPOPULATED_ALLOC=y
> > 
> > on top of that, I have a similar udev rule too:
> > 
> > SUBSYSTEM=="memory", ACTION=="add", ATTR{state}=="offline", ATTR{state}="online"
> > 
> > But I don't think they are conflicting.
> > 
> > > What type of guest are you using? Mine was a PVH guest.
> > 
> > PVH here too.
> 
> Would you like to try the attached patch? It seemed to work for me.

Unfortunately it doesn't help, now the behavior is different:

Initially guest started with 800M:

    [root@personal ~]# free -m
                  total        used        free      shared  buff/cache   available
    Mem:            740         223         272           2         243         401
    Swap:          1023           0        1023

Then increased:

    [root@dom0 ~]$ xl mem-max personal 2048
    [root@dom0 ~]$ xenstore-write /local/domain/$(xl domid personal)/memory/static-max $((2048*1024))
    [root@dom0 ~]$ xl mem-set personal 2000

And guest shows now only a little more memory, but not full 2000M:

    [root@personal ~]# [   37.657046] xen:balloon: Populating new zone
    [   37.658206] Fallback order for Node 0: 0 
    [   37.658219] Built 1 zonelists, mobility grouping on.  Total pages: 175889
    [   37.658233] Policy zone: Normal

    [root@personal ~]# 
    [root@personal ~]# free -m
                  total        used        free      shared  buff/cache   available
    Mem:            826         245         337           2         244         462
    Swap:          1023           0        1023


I've applied the patch on top of 5.16.18. If you think 5.17 would make a
difference, I can try that too.


-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 4%]

* Re: Increasing domain memory beyond initial maxmem
  @ 2022-04-05 11:03 18%         ` Juergen Gross
  2022-04-05 16:24  4%           ` Marek Marczykowski-Górecki
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2022-04-05 11:03 UTC (permalink / raw)
  To: Marek Marczykowski-Górecki; +Cc: xen-devel


[-- Attachment #1.1.1: Type: text/plain, Size: 1199 bytes --]

Hi Marek,

On 31.03.22 14:36, Marek Marczykowski-Górecki wrote:
> On Thu, Mar 31, 2022 at 02:22:03PM +0200, Juergen Gross wrote:
>> Maybe some kernel config differences, or other udev rules (memory onlining
>> is done via udev in my guest)?
>>
>> I'm seeing:
>>
>> # zgrep MEMORY_HOTPLUG /proc/config.gz
>> CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
>> CONFIG_MEMORY_HOTPLUG=y
>> # CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
>> CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
>> CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512
> 
> I have:
> # zgrep MEMORY_HOTPLUG /proc/config.gz
> CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
> CONFIG_MEMORY_HOTPLUG=y
> CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y
> CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
> CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512
> 
> Not sure if relevant, but I also have:
> CONFIG_XEN_UNPOPULATED_ALLOC=y
> 
> on top of that, I have a similar udev rule too:
> 
> SUBSYSTEM=="memory", ACTION=="add", ATTR{state}=="offline", ATTR{state}="online"
> 
> But I don't think they are conflicting.
> 
>> What type of guest are you using? Mine was a PVH guest.
> 
> PVH here too.

Would you like to try the attached patch? It seemed to work for me.


Juergen

[-- Attachment #1.1.2: 0001-xen-balloon-fix-page-onlining-when-populating-new-zo.patch --]
[-- Type: text/x-patch, Size: 5744 bytes --]

From a605232115a9c3d3f8103d0833b149ff22956c4b Mon Sep 17 00:00:00 2001
From: Juergen Gross <jgross@suse.com>
To: linux-kernel@vger.kernel.org
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: xen-devel@lists.xenproject.org
Date: Tue, 5 Apr 2022 12:43:41 +0200
Subject: [PATCH] xen/balloon: fix page onlining when populating new zone
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

When onlining a new memory page in a guest the Xen balloon driver is
adding it to the ballooned pages instead making it available to be
used immediately. This is meant to enable to add a new upper memory
limit to a guest via hotplugging memory, without having to assign the
new memory in one go.

In case the upper memory limit will be raised above 4G, the new memory
will populate the ZONE_NORMAL memory zone, which wasn't populated
before. The newly populated zone won't be added to the list of zones
looked at by the page allocator though, as only zones with available
memory are being added, and the memory isn't yet available as it is
ballooned out.

This will result in the new memory being assigned to the guest, but
without the allocator being able to use it.

When running as a PV guest the situation is even worse: when having
been started with less memory than allowed, and the upper limit being
lower than 4G, ballooning up will have the same effect as hotplugging
new memory. This is due to the usage of the zone device functionality
since commit 9e2369c06c8a ("xen: add helpers to allocate unpopulated
memory") for creating mappings of other guest's pages, which as a side
effect is being used for PV guest ballooning, too.

Fix this by checking in xen_online_page() whether the new memory page
will be the first in a new zone. If this is the case, add another page
to the balloon and use the first memory page of the new chunk as a
replacement for this now ballooned out page. This will result in the
newly populated zone containing one page being available for the page
allocator, which in turn will lead to the zone being added to the
allocator.

Cc: stable@vger.kernel.org
Fixes: 9e2369c06c8a ("xen: add helpers to allocate unpopulated memory")
Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
---
 drivers/xen/balloon.c | 72 ++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 65 insertions(+), 7 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index dfe26fa17e95..f895c54c4c65 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -355,14 +355,77 @@ static enum bp_state reserve_additional_memory(void)
 	return BP_ECANCELED;
 }
 
+static struct page *alloc_page_for_balloon(gfp_t gfp)
+{
+	struct page *page;
+
+	page = alloc_page(gfp);
+	if (page == NULL)
+		return NULL;
+
+	adjust_managed_page_count(page, -1);
+	xenmem_reservation_scrub_page(page);
+
+	return page;
+}
+
+static void add_page_to_balloon(struct page *page)
+{
+	xenmem_reservation_va_mapping_reset(1, &page);
+	balloon_append(page);
+}
+
 static void xen_online_page(struct page *page, unsigned int order)
 {
 	unsigned long i, size = (1 << order);
 	unsigned long start_pfn = page_to_pfn(page);
 	struct page *p;
+	struct zone *zone;
 
 	pr_debug("Online %lu pages starting at pfn 0x%lx\n", size, start_pfn);
 	mutex_lock(&balloon_mutex);
+	zone = page_zone(pfn_to_page(start_pfn));
+
+	/*
+	 * In case a new memory zone is going to be populated, we need to
+	 * ensure at least one page is made available for the memory allocator.
+	 * As the number of pages per zone is updated only after a batch of
+	 * pages having been added, use the number of managed pages as an
+	 * additional indicator for a new zone.
+	 * Otherwise this zone won't be added to the zonelist resulting in the
+	 * zone's memory not usable by the kernel.
+	 * Add an already valid page to the balloon and replace it with the
+	 * first page of the to be added new memory chunk.
+	 */
+	if (!populated_zone(zone) && !managed_zone(zone)) {
+		xen_pfn_t frame;
+
+		pr_info("Populating new zone\n");
+
+		p = alloc_page_for_balloon(GFP_ATOMIC);
+		if (!p) {
+			pr_err("Failed to allocate replacement balloon page!\n");
+			pr_err("New onlined memory might not be usable.\n");
+		} else {
+			kmap_flush_unused();
+			add_page_to_balloon(p);
+			flush_tlb_all();
+			frame = xen_page_to_gfn(p);
+			xenmem_reservation_decrease(1, &frame);
+			balloon_stats.current_pages--;
+		}
+
+		p = pfn_to_page(start_pfn);
+		frame = page_to_xen_pfn(p);
+		if (xenmem_reservation_increase(1, &frame) > 0) {
+			xenmem_reservation_va_mapping_update(1, &p, &frame);
+			free_reserved_page(p);
+			balloon_stats.current_pages++;
+
+			start_pfn++;
+			size--;
+		}
+	}
 	for (i = 0; i < size; i++) {
 		p = pfn_to_page(start_pfn + i);
 		balloon_append(p);
@@ -452,14 +515,12 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
 		nr_pages = ARRAY_SIZE(frame_list);
 
 	for (i = 0; i < nr_pages; i++) {
-		page = alloc_page(gfp);
+		page = alloc_page_for_balloon(gfp);
 		if (page == NULL) {
 			nr_pages = i;
 			state = BP_EAGAIN;
 			break;
 		}
-		adjust_managed_page_count(page, -1);
-		xenmem_reservation_scrub_page(page);
 		list_add(&page->lru, &pages);
 	}
 
@@ -480,11 +541,8 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
 	list_for_each_entry_safe(page, tmp, &pages, lru) {
 		frame_list[i++] = xen_page_to_gfn(page);
 
-		xenmem_reservation_va_mapping_reset(1, &page);
-
 		list_del(&page->lru);
-
-		balloon_append(page);
+		add_page_to_balloon(page);
 	}
 
 	flush_tlb_all();
-- 
2.34.1


[-- Attachment #1.1.3: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3149 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply related	[relevance 18%]

* Re: Increasing domain memory beyond initial maxmem
  2022-03-31 12:01  0%   ` Marek Marczykowski-Górecki
@ 2022-03-31 12:22  0%     ` Juergen Gross
    0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2022-03-31 12:22 UTC (permalink / raw)
  To: Marek Marczykowski-Górecki; +Cc: xen-devel


[-- Attachment #1.1.1: Type: text/plain, Size: 7619 bytes --]

On 31.03.22 14:01, Marek Marczykowski-Górecki wrote:
> On Thu, Mar 31, 2022 at 08:41:19AM +0200, Juergen Gross wrote:
>> On 31.03.22 05:51, Marek Marczykowski-Górecki wrote:
>>> Hi,
>>>
>>> I'm trying to make use of CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y to increase
>>> domain memory beyond initial maxmem, but I hit few issues.
>>>
>>> A little context: domains in Qubes OS start with rather little memory
>>> (400MB by default) but maxmem set higher (4GB by default). Then, there is
>>> qmemman daemon, that adjust balloon targets for domains, based on (among
>>> other things) demand reported by the domains themselves. There is also a
>>> little swap, to mitigate qmemman latency (few hundreds ms at worst).
>>> This initial memory < maxmmem in case of PVH / HVM makes use of PoD
>>> which I'm trying to get rid of. But also, IIUC Linux will waste some
>>> memory for bookkeeping based on maxmem, not actually usable memory.
>>>
>>> First issue: after using `xl mem-max`, `xl mem-set` still refuses to
>>> increase memory more than initial maxmem. That's because xl mem-max does
>>> not update 'memory/static-max' xenstore node. This one is easy to work
>>> around.
>>>
>>> Then, the actual hotplug fails on the domU side with:
>>>
>>> [   50.004734] xen-balloon: vmemmap alloc failure: order:9, mode:0x4cc0(GFP_KERNEL|__GFP_RETRY_MAYFAIL), nodemask=(null),cpuset=/,mems_allowed=0
>>> [   50.004774] CPU: 1 PID: 34 Comm: xen-balloon Not tainted 5.16.15-1.37.fc32.qubes.x86_64 #1
>>> [   50.004792] Call Trace:
>>> [   50.004799]  <TASK>
>>> [   50.004808]  dump_stack_lvl+0x48/0x5e
>>> [   50.004821]  warn_alloc+0x162/0x190
>>> [   50.004832]  ? __alloc_pages+0x1fa/0x230
>>> [   50.004842]  vmemmap_alloc_block+0x11c/0x1c5
>>> [   50.004856]  vmemmap_populate_hugepages+0x185/0x519
>>> [   50.004868]  vmemmap_populate+0x9e/0x16c
>>> [   50.004878]  __populate_section_memmap+0x6a/0xb1
>>> [   50.004890]  section_activate+0x20a/0x278
>>> [   50.004901]  sparse_add_section+0x70/0x160
>>> [   50.004911]  __add_pages+0xc3/0x150
>>> [   50.004921]  add_pages+0x12/0x60
>>> [   50.004931]  add_memory_resource+0x12b/0x320
>>> [   50.004943]  reserve_additional_memory+0x10c/0x150
>>> [   50.004958]  balloon_thread+0x206/0x360
>>> [   50.004968]  ? do_wait_intr_irq+0xa0/0xa0
>>> [   50.004978]  ? decrease_reservation.constprop.0+0x2e0/0x2e0
>>> [   50.004991]  kthread+0x16b/0x190
>>> [   50.005001]  ? set_kthread_struct+0x40/0x40
>>> [   50.005011]  ret_from_fork+0x22/0x30
>>> [   50.005022]  </TASK>
>>>
>>> Full dmesg: https://gist.github.com/marmarek/72dd1f9dbdd63cfe479c94a3f4392b45
>>>
>>> After the above, `free` reports correct size (1GB in this case), but
>>> that memory seems to be unusable really. "used" is kept low, and soon
>>> OOM-killer kicks in.
>>>
>>> I know the initial 400MB is not much for a full Linux, with X11 etc. But
>>> I wouldn't expect it to fail this way when _adding_ memory.
>>>
>>> I've tried also with initial 800MB. In this case, I do not get "alloc
>>> failure" any more, but monitoring `free`, the extra memory still doesn't
>>> seem to be used.
>>>
>>> Any ideas?
>>>
>>
>> I can't reproduce that.
>>
>> I started a guest with 8GB of memory, in the guest I'm seeing:
>>
>> # uname -a
>> Linux linux-d1cy 5.17.0-rc5-default+ #406 SMP PREEMPT Mon Feb 21 09:31:12
>> CET 2022 x86_64 x86_64 x86_64 GNU/Linux
>> # free
>>          total     used      free   shared  buff/cache   available
>> Mem:  8178260    71628   8023300     8560       83332     8010196
>> Swap: 2097132        0   2097132
>>
>> Then I'm raising the memory for the guest in dom0:
>>
>> # xl list
>> Name                ID   Mem VCPUs      State   Time(s)
>> Domain-0             0  2634     8     r-----    1016.5
>> Xenstore             1    31     1     -b----       0.9
>> sle15sp1             3  8190     6     -b----     184.6
>> # xl mem-max 3 10000
>> # xenstore-write /local/domain/3/memory/static-max 10240000
>> # xl mem-set 3 10000
>> # xl list
>> Name                ID   Mem VCPUs      State   Time(s)
>> Domain-0             0  2634     8     r-----    1018.5
>> Xenstore             1    31     1     -b----       1.0
>> sle15sp1             3 10000     6     -b----     186.7
>>
>> In the guest I get now:
>>
>> # free
>>          total     used     free   shared  buff/cache   available
>> Mem: 10031700   110904  9734172     8560      186624     9814344
>> Swap: 2097132        0  2097132
>>
>> And after using lots of memory via a ramdisk:
>>
>> # free
>>          total     used     free   shared  buff/cache   available
>> Mem: 10031700   116660  1663840  7181776     8251200     2635372
>> Swap: 2097132        0  2097132
>>
>> You can see buff/cache is now larger than the initial total memory
>> and free is lower than the added memory amount.
> 
> Hmm, I have a different behavior:
> 
> I'm starting with 800M
> 
> # uname -a
> Linux personal 5.16.15-1.37.fc32.qubes.x86_64 #1 SMP PREEMPT Tue Mar 22 12:59:53 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
> # free -m
>                total        used        free      shared  buff/cache   available
> Mem:            740         209         278           2         252         415
> Swap:          1023           0        1023
> 
> Then raising to ~2GB:
> 
> [root@dom0 ~]# xl list
> Name                                        ID   Mem VCPUs	State	Time(s)
> Domain-0                                     0  4082     6     r-----  184271.3
> (...)
> personal                                    21   800     2     -b----       4.8
> [root@dom0 ~]# xl mem-max personal 2048
> [root@dom0 ~]# xenstore-write /local/domain/$(xl domid personal)/memory/static-max $((2048*1024))
> [root@dom0 ~]# xl mem-set personal 2000
> [root@dom0 ~]# xenstore-ls -fp /local/domain/$(xl domid personal)/memory
> /local/domain/21/memory/static-max = "2097152"   (n0,r21)
> /local/domain/21/memory/target = "2048001"   (n0,r21)
> /local/domain/21/memory/videoram = "-1"   (n0,r21)
> 
> And then observe inside domU:
> [root@personal ~]# free -m
>                total        used        free      shared  buff/cache   available
> Mem:           1940         235        1452           2         252        1585
> Swap:          1023           0        1023
> 
> So far so good. But when trying to actually use it, it doesn't work:
> 
> [root@personal ~]# free -m
>                total        used        free      shared  buff/cache   available
> Mem:           1940         196        1240         454         503        1206
> Swap:          1023         472         551
> 
> As you can see, all the new memory is still in "free", and swap is used
> instead.

Hmm, weird.

Maybe some kernel config differences, or other udev rules (memory onlining
is done via udev in my guest)?

I'm seeing:

# zgrep MEMORY_HOTPLUG /proc/config.gz
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_MEMORY_HOTPLUG=y
# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512

The relevant udev rule seems to be:

SUBSYSTEM=="memory", ACTION=="add", PROGRAM=="/bin/sh -c 
'/usr/bin/systemd-detect-virt || :'", RESULT!="zvm", ATTR{state}=="offline", \
   ATTR{state}="online"

What type of guest are you using? Mine was a PVH guest.

> There is also /proc/meminfo (state before filling ramdisk), if that
> would give some hints:
> [root@personal ~]# cat /proc/meminfo

...

No, I don't think this is helping. At least not me.


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3149 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: Increasing domain memory beyond initial maxmem
  2022-03-31  6:41  0% ` Juergen Gross
@ 2022-03-31 12:01  0%   ` Marek Marczykowski-Górecki
  2022-03-31 12:22  0%     ` Juergen Gross
  0 siblings, 1 reply; 200+ results
From: Marek Marczykowski-Górecki @ 2022-03-31 12:01 UTC (permalink / raw)
  To: Juergen Gross; +Cc: xen-devel

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

On Thu, Mar 31, 2022 at 08:41:19AM +0200, Juergen Gross wrote:
> On 31.03.22 05:51, Marek Marczykowski-Górecki wrote:
> > Hi,
> > 
> > I'm trying to make use of CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y to increase
> > domain memory beyond initial maxmem, but I hit few issues.
> > 
> > A little context: domains in Qubes OS start with rather little memory
> > (400MB by default) but maxmem set higher (4GB by default). Then, there is
> > qmemman daemon, that adjust balloon targets for domains, based on (among
> > other things) demand reported by the domains themselves. There is also a
> > little swap, to mitigate qmemman latency (few hundreds ms at worst).
> > This initial memory < maxmmem in case of PVH / HVM makes use of PoD
> > which I'm trying to get rid of. But also, IIUC Linux will waste some
> > memory for bookkeeping based on maxmem, not actually usable memory.
> > 
> > First issue: after using `xl mem-max`, `xl mem-set` still refuses to
> > increase memory more than initial maxmem. That's because xl mem-max does
> > not update 'memory/static-max' xenstore node. This one is easy to work
> > around.
> > 
> > Then, the actual hotplug fails on the domU side with:
> > 
> > [   50.004734] xen-balloon: vmemmap alloc failure: order:9, mode:0x4cc0(GFP_KERNEL|__GFP_RETRY_MAYFAIL), nodemask=(null),cpuset=/,mems_allowed=0
> > [   50.004774] CPU: 1 PID: 34 Comm: xen-balloon Not tainted 5.16.15-1.37.fc32.qubes.x86_64 #1
> > [   50.004792] Call Trace:
> > [   50.004799]  <TASK>
> > [   50.004808]  dump_stack_lvl+0x48/0x5e
> > [   50.004821]  warn_alloc+0x162/0x190
> > [   50.004832]  ? __alloc_pages+0x1fa/0x230
> > [   50.004842]  vmemmap_alloc_block+0x11c/0x1c5
> > [   50.004856]  vmemmap_populate_hugepages+0x185/0x519
> > [   50.004868]  vmemmap_populate+0x9e/0x16c
> > [   50.004878]  __populate_section_memmap+0x6a/0xb1
> > [   50.004890]  section_activate+0x20a/0x278
> > [   50.004901]  sparse_add_section+0x70/0x160
> > [   50.004911]  __add_pages+0xc3/0x150
> > [   50.004921]  add_pages+0x12/0x60
> > [   50.004931]  add_memory_resource+0x12b/0x320
> > [   50.004943]  reserve_additional_memory+0x10c/0x150
> > [   50.004958]  balloon_thread+0x206/0x360
> > [   50.004968]  ? do_wait_intr_irq+0xa0/0xa0
> > [   50.004978]  ? decrease_reservation.constprop.0+0x2e0/0x2e0
> > [   50.004991]  kthread+0x16b/0x190
> > [   50.005001]  ? set_kthread_struct+0x40/0x40
> > [   50.005011]  ret_from_fork+0x22/0x30
> > [   50.005022]  </TASK>
> > 
> > Full dmesg: https://gist.github.com/marmarek/72dd1f9dbdd63cfe479c94a3f4392b45
> > 
> > After the above, `free` reports correct size (1GB in this case), but
> > that memory seems to be unusable really. "used" is kept low, and soon
> > OOM-killer kicks in.
> > 
> > I know the initial 400MB is not much for a full Linux, with X11 etc. But
> > I wouldn't expect it to fail this way when _adding_ memory.
> > 
> > I've tried also with initial 800MB. In this case, I do not get "alloc
> > failure" any more, but monitoring `free`, the extra memory still doesn't
> > seem to be used.
> > 
> > Any ideas?
> > 
> 
> I can't reproduce that.
> 
> I started a guest with 8GB of memory, in the guest I'm seeing:
> 
> # uname -a
> Linux linux-d1cy 5.17.0-rc5-default+ #406 SMP PREEMPT Mon Feb 21 09:31:12
> CET 2022 x86_64 x86_64 x86_64 GNU/Linux
> # free
>         total     used      free   shared  buff/cache   available
> Mem:  8178260    71628   8023300     8560       83332     8010196
> Swap: 2097132        0   2097132
> 
> Then I'm raising the memory for the guest in dom0:
> 
> # xl list
> Name                ID   Mem VCPUs      State   Time(s)
> Domain-0             0  2634     8     r-----    1016.5
> Xenstore             1    31     1     -b----       0.9
> sle15sp1             3  8190     6     -b----     184.6
> # xl mem-max 3 10000
> # xenstore-write /local/domain/3/memory/static-max 10240000
> # xl mem-set 3 10000
> # xl list
> Name                ID   Mem VCPUs      State   Time(s)
> Domain-0             0  2634     8     r-----    1018.5
> Xenstore             1    31     1     -b----       1.0
> sle15sp1             3 10000     6     -b----     186.7
> 
> In the guest I get now:
> 
> # free
>         total     used     free   shared  buff/cache   available
> Mem: 10031700   110904  9734172     8560      186624     9814344
> Swap: 2097132        0  2097132
> 
> And after using lots of memory via a ramdisk:
> 
> # free
>         total     used     free   shared  buff/cache   available
> Mem: 10031700   116660  1663840  7181776     8251200     2635372
> Swap: 2097132        0  2097132
> 
> You can see buff/cache is now larger than the initial total memory
> and free is lower than the added memory amount.

Hmm, I have a different behavior:

I'm starting with 800M

# uname -a
Linux personal 5.16.15-1.37.fc32.qubes.x86_64 #1 SMP PREEMPT Tue Mar 22 12:59:53 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
# free -m
              total        used        free      shared  buff/cache   available
Mem:            740         209         278           2         252         415
Swap:          1023           0        1023

Then raising to ~2GB:

[root@dom0 ~]# xl list
Name                                        ID   Mem VCPUs	State	Time(s)
Domain-0                                     0  4082     6     r-----  184271.3
(...)
personal                                    21   800     2     -b----       4.8
[root@dom0 ~]# xl mem-max personal 2048
[root@dom0 ~]# xenstore-write /local/domain/$(xl domid personal)/memory/static-max $((2048*1024))
[root@dom0 ~]# xl mem-set personal 2000
[root@dom0 ~]# xenstore-ls -fp /local/domain/$(xl domid personal)/memory
/local/domain/21/memory/static-max = "2097152"   (n0,r21)
/local/domain/21/memory/target = "2048001"   (n0,r21)
/local/domain/21/memory/videoram = "-1"   (n0,r21)

And then observe inside domU:
[root@personal ~]# free -m
              total        used        free      shared  buff/cache   available
Mem:           1940         235        1452           2         252        1585
Swap:          1023           0        1023

So far so good. But when trying to actually use it, it doesn't work:

[root@personal ~]# free -m
              total        used        free      shared  buff/cache   available
Mem:           1940         196        1240         454         503        1206
Swap:          1023         472         551

As you can see, all the new memory is still in "free", and swap is used
instead.


There is also /proc/meminfo (state before filling ramdisk), if that
would give some hints:
[root@personal ~]# cat /proc/meminfo
MemTotal:        1986800 kB
MemFree:         1487116 kB
MemAvailable:    1624060 kB
Buffers:           26236 kB
Cached:           207268 kB
SwapCached:            0 kB
Active:            74828 kB
Inactive:         258724 kB
Active(anon):       1008 kB
Inactive(anon):   101668 kB
Active(file):      73820 kB
Inactive(file):   157056 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:       1048572 kB
SwapFree:        1048572 kB
Dirty:               216 kB
Writeback:             0 kB
AnonPages:        100184 kB
Mapped:           117472 kB
Shmem:              2628 kB
KReclaimable:      24960 kB
Slab:              52136 kB
SReclaimable:      24960 kB
SUnreclaim:        27176 kB
KernelStack:        3120 kB
PageTables:         4364 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:     2041972 kB
Committed_AS:     825816 kB
VmallocTotal:   34359738367 kB
VmallocUsed:       10064 kB
VmallocChunk:          0 kB
Percpu:             1240 kB
HardwareCorrupted:     0 kB
AnonHugePages:         0 kB
ShmemHugePages:        0 kB
ShmemPmdMapped:        0 kB
FileHugePages:         0 kB
FilePmdMapped:         0 kB
CmaTotal:              0 kB
CmaFree:               0 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
Hugetlb:               0 kB
DirectMap4k:       79872 kB
DirectMap2M:     1132544 kB
DirectMap1G:     1048576 kB


-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: Increasing domain memory beyond initial maxmem
  2022-03-31  3:51  6% Increasing domain memory beyond initial maxmem Marek Marczykowski-Górecki
@ 2022-03-31  6:41  0% ` Juergen Gross
  2022-03-31 12:01  0%   ` Marek Marczykowski-Górecki
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2022-03-31  6:41 UTC (permalink / raw)
  To: Marek Marczykowski-Górecki, xen-devel


[-- Attachment #1.1.1: Type: text/plain, Size: 4545 bytes --]

On 31.03.22 05:51, Marek Marczykowski-Górecki wrote:
> Hi,
> 
> I'm trying to make use of CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y to increase
> domain memory beyond initial maxmem, but I hit few issues.
> 
> A little context: domains in Qubes OS start with rather little memory
> (400MB by default) but maxmem set higher (4GB by default). Then, there is
> qmemman daemon, that adjust balloon targets for domains, based on (among
> other things) demand reported by the domains themselves. There is also a
> little swap, to mitigate qmemman latency (few hundreds ms at worst).
> This initial memory < maxmmem in case of PVH / HVM makes use of PoD
> which I'm trying to get rid of. But also, IIUC Linux will waste some
> memory for bookkeeping based on maxmem, not actually usable memory.
> 
> First issue: after using `xl mem-max`, `xl mem-set` still refuses to
> increase memory more than initial maxmem. That's because xl mem-max does
> not update 'memory/static-max' xenstore node. This one is easy to work
> around.
> 
> Then, the actual hotplug fails on the domU side with:
> 
> [   50.004734] xen-balloon: vmemmap alloc failure: order:9, mode:0x4cc0(GFP_KERNEL|__GFP_RETRY_MAYFAIL), nodemask=(null),cpuset=/,mems_allowed=0
> [   50.004774] CPU: 1 PID: 34 Comm: xen-balloon Not tainted 5.16.15-1.37.fc32.qubes.x86_64 #1
> [   50.004792] Call Trace:
> [   50.004799]  <TASK>
> [   50.004808]  dump_stack_lvl+0x48/0x5e
> [   50.004821]  warn_alloc+0x162/0x190
> [   50.004832]  ? __alloc_pages+0x1fa/0x230
> [   50.004842]  vmemmap_alloc_block+0x11c/0x1c5
> [   50.004856]  vmemmap_populate_hugepages+0x185/0x519
> [   50.004868]  vmemmap_populate+0x9e/0x16c
> [   50.004878]  __populate_section_memmap+0x6a/0xb1
> [   50.004890]  section_activate+0x20a/0x278
> [   50.004901]  sparse_add_section+0x70/0x160
> [   50.004911]  __add_pages+0xc3/0x150
> [   50.004921]  add_pages+0x12/0x60
> [   50.004931]  add_memory_resource+0x12b/0x320
> [   50.004943]  reserve_additional_memory+0x10c/0x150
> [   50.004958]  balloon_thread+0x206/0x360
> [   50.004968]  ? do_wait_intr_irq+0xa0/0xa0
> [   50.004978]  ? decrease_reservation.constprop.0+0x2e0/0x2e0
> [   50.004991]  kthread+0x16b/0x190
> [   50.005001]  ? set_kthread_struct+0x40/0x40
> [   50.005011]  ret_from_fork+0x22/0x30
> [   50.005022]  </TASK>
> 
> Full dmesg: https://gist.github.com/marmarek/72dd1f9dbdd63cfe479c94a3f4392b45
> 
> After the above, `free` reports correct size (1GB in this case), but
> that memory seems to be unusable really. "used" is kept low, and soon
> OOM-killer kicks in.
> 
> I know the initial 400MB is not much for a full Linux, with X11 etc. But
> I wouldn't expect it to fail this way when _adding_ memory.
> 
> I've tried also with initial 800MB. In this case, I do not get "alloc
> failure" any more, but monitoring `free`, the extra memory still doesn't
> seem to be used.
> 
> Any ideas?
> 

I can't reproduce that.

I started a guest with 8GB of memory, in the guest I'm seeing:

# uname -a
Linux linux-d1cy 5.17.0-rc5-default+ #406 SMP PREEMPT Mon Feb 21 09:31:12 CET 
2022 x86_64 x86_64 x86_64 GNU/Linux
# free
         total     used      free   shared  buff/cache   available
Mem:  8178260    71628   8023300     8560       83332     8010196
Swap: 2097132        0   2097132

Then I'm raising the memory for the guest in dom0:

# xl list
Name                ID   Mem VCPUs      State   Time(s)
Domain-0             0  2634     8     r-----    1016.5
Xenstore             1    31     1     -b----       0.9
sle15sp1             3  8190     6     -b----     184.6
# xl mem-max 3 10000
# xenstore-write /local/domain/3/memory/static-max 10240000
# xl mem-set 3 10000
# xl list
Name                ID   Mem VCPUs      State   Time(s)
Domain-0             0  2634     8     r-----    1018.5
Xenstore             1    31     1     -b----       1.0
sle15sp1             3 10000     6     -b----     186.7

In the guest I get now:

# free
         total     used     free   shared  buff/cache   available
Mem: 10031700   110904  9734172     8560      186624     9814344
Swap: 2097132        0  2097132

And after using lots of memory via a ramdisk:

# free
         total     used     free   shared  buff/cache   available
Mem: 10031700   116660  1663840  7181776     8251200     2635372
Swap: 2097132        0  2097132

You can see buff/cache is now larger than the initial total memory
and free is lower than the added memory amount.


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3149 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 0%]

* Increasing domain memory beyond initial maxmem
@ 2022-03-31  3:51  6% Marek Marczykowski-Górecki
  2022-03-31  6:41  0% ` Juergen Gross
  0 siblings, 1 reply; 200+ results
From: Marek Marczykowski-Górecki @ 2022-03-31  3:51 UTC (permalink / raw)
  To: xen-devel

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

Hi,

I'm trying to make use of CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y to increase
domain memory beyond initial maxmem, but I hit few issues.

A little context: domains in Qubes OS start with rather little memory
(400MB by default) but maxmem set higher (4GB by default). Then, there is
qmemman daemon, that adjust balloon targets for domains, based on (among
other things) demand reported by the domains themselves. There is also a
little swap, to mitigate qmemman latency (few hundreds ms at worst).
This initial memory < maxmmem in case of PVH / HVM makes use of PoD
which I'm trying to get rid of. But also, IIUC Linux will waste some
memory for bookkeeping based on maxmem, not actually usable memory.

First issue: after using `xl mem-max`, `xl mem-set` still refuses to
increase memory more than initial maxmem. That's because xl mem-max does
not update 'memory/static-max' xenstore node. This one is easy to work
around.

Then, the actual hotplug fails on the domU side with:

[   50.004734] xen-balloon: vmemmap alloc failure: order:9, mode:0x4cc0(GFP_KERNEL|__GFP_RETRY_MAYFAIL), nodemask=(null),cpuset=/,mems_allowed=0
[   50.004774] CPU: 1 PID: 34 Comm: xen-balloon Not tainted 5.16.15-1.37.fc32.qubes.x86_64 #1
[   50.004792] Call Trace:
[   50.004799]  <TASK>
[   50.004808]  dump_stack_lvl+0x48/0x5e
[   50.004821]  warn_alloc+0x162/0x190
[   50.004832]  ? __alloc_pages+0x1fa/0x230
[   50.004842]  vmemmap_alloc_block+0x11c/0x1c5
[   50.004856]  vmemmap_populate_hugepages+0x185/0x519
[   50.004868]  vmemmap_populate+0x9e/0x16c
[   50.004878]  __populate_section_memmap+0x6a/0xb1
[   50.004890]  section_activate+0x20a/0x278
[   50.004901]  sparse_add_section+0x70/0x160
[   50.004911]  __add_pages+0xc3/0x150
[   50.004921]  add_pages+0x12/0x60
[   50.004931]  add_memory_resource+0x12b/0x320
[   50.004943]  reserve_additional_memory+0x10c/0x150
[   50.004958]  balloon_thread+0x206/0x360
[   50.004968]  ? do_wait_intr_irq+0xa0/0xa0
[   50.004978]  ? decrease_reservation.constprop.0+0x2e0/0x2e0
[   50.004991]  kthread+0x16b/0x190
[   50.005001]  ? set_kthread_struct+0x40/0x40
[   50.005011]  ret_from_fork+0x22/0x30
[   50.005022]  </TASK>

Full dmesg: https://gist.github.com/marmarek/72dd1f9dbdd63cfe479c94a3f4392b45

After the above, `free` reports correct size (1GB in this case), but
that memory seems to be unusable really. "used" is kept low, and soon
OOM-killer kicks in.

I know the initial 400MB is not much for a full Linux, with X11 etc. But
I wouldn't expect it to fail this way when _adding_ memory.

I've tried also with initial 800MB. In this case, I do not get "alloc
failure" any more, but monitoring `free`, the extra memory still doesn't
seem to be used.

Any ideas?

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 6%]

* [GIT PULL] xen: branch for v5.18-rc1
@ 2022-03-28  9:25  5% Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2022-03-28  9:25 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, xen-devel, boris.ostrovsky

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-5.18-rc1-tag

xen: branch for v5.18-rc1

It contains the following patches:

- A bunch of minor cleanups
- A fix for kexec in Xen dom0 when executed on a high cpu number
- A fix for resuming after suspend of a Xen guest with assigned PCI
  devices
- A fix for a crash due to not disabled preemption when resuming as
  Xen dom0


Thanks.

Juergen

 arch/x86/xen/apic.c                         |   2 +-
 arch/x86/xen/pmu.c                          |  10 +-
 arch/x86/xen/pmu.h                          |   3 +-
 arch/x86/xen/setup.c                        |   2 +-
 arch/x86/xen/smp_hvm.c                      |   6 ++
 arch/x86/xen/smp_pv.c                       |   2 +-
 arch/x86/xen/time.c                         |  24 ++++-
 drivers/block/xen-blkfront.c                |   8 +-
 drivers/char/tpm/xen-tpmfront.c             |   2 +-
 drivers/gpu/drm/xen/xen_drm_front_evtchnl.c |   2 +-
 drivers/input/misc/xen-kbdfront.c           |   4 +-
 drivers/net/xen-netfront.c                  |  13 ++-
 drivers/pci/xen-pcifront.c                  |   2 +-
 drivers/scsi/xen-scsifront.c                |   4 +-
 drivers/usb/host/xen-hcd.c                  |   4 +-
 drivers/xen/balloon.c                       |   3 +-
 drivers/xen/gntalloc.c                      |   2 +-
 drivers/xen/gntdev-dmabuf.c                 |   2 +-
 drivers/xen/grant-table.c                   | 151 ++++------------------------
 drivers/xen/manage.c                        |   4 +-
 drivers/xen/pvcalls-front.c                 |   6 +-
 drivers/xen/sys-hypervisor.c                |   5 +-
 drivers/xen/xen-front-pgdir-shbuf.c         |   3 +-
 include/xen/grant_table.h                   |  13 +--
 net/9p/trans_xen.c                          |   8 +-
 sound/xen/xen_snd_front_evtchnl.c           |   2 +-
 26 files changed, 94 insertions(+), 193 deletions(-)

Dongli Zhang (1):
      xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32

Jakub Kądziołka (1):
      xen: don't hang when resuming PCI device

Jiapeng Chong (1):
      x86/xen: Fix kerneldoc warning

Juergen Gross (3):
      xen/grant-table: remove gnttab_*transfer*() functions
      xen/grant-table: remove readonly parameter from functions
      xen: fix is_xen_pmu()

Wang Qing (1):
      xen: use time_is_before_eq_jiffies() instead of open coding it

jianchunfu (1):
      arch:x86:xen: Remove unnecessary assignment in xen_apic_read()

zhanglianjie (1):
      drivers/xen: use helper macro __ATTR_RW


^ permalink raw reply	[relevance 5%]

* [PATCH] xen: use time_is_before_eq_jiffies() instead of open coding it
@ 2022-02-28  3:15 12% Qing Wang
  0 siblings, 0 replies; 200+ results
From: Qing Wang @ 2022-02-28  3:15 UTC (permalink / raw)
  To: Boris Ostrovsky, Juergen Gross, Stefano Stabellini, xen-devel,
	linux-kernel
  Cc: Wang Qing

From: Wang Qing <wangqing@vivo.com>

Use the helper function time_is_{before,after}_jiffies() to improve
code readability.

Signed-off-by: Wang Qing <wangqing@vivo.com>
---
 drivers/xen/balloon.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index a2c4fc49..dfe26fa
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -59,6 +59,7 @@
 #include <linux/slab.h>
 #include <linux/sysctl.h>
 #include <linux/moduleparam.h>
+#include <linux/jiffies.h>
 
 #include <asm/page.h>
 #include <asm/tlb.h>
@@ -794,7 +795,7 @@ static int __init balloon_wait_finish(void)
 		if (balloon_state == BP_ECANCELED) {
 			pr_warn_once("Initial ballooning failed, %ld pages need to be freed.\n",
 				     -credit);
-			if (jiffies - last_changed >= HZ * balloon_boot_timeout)
+			if (time_is_before_eq_jiffies(last_changed + HZ * balloon_boot_timeout))
 				panic("Initial ballooning failed!\n");
 		}
 
-- 
2.7.4



^ permalink raw reply related	[relevance 12%]

* [GIT PULL] xen: branch for v5.17-rc1
@ 2022-01-12 15:50  7% Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2022-01-12 15:50 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, xen-devel, boris.ostrovsky

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-5.17-rc1-tag

xen: branch for v5.17-rc1

It contains the following patches:

- a fix of the Xen gntdev driver
- a fix for running as Xen dom0 booted via EFI and the EFI framebuffer
  being located above 4GB
- a series for support of mapping other guest's memory by using zone
  device when running as Xen guest on Arm 

Thanks.

Juergen

 Documentation/devicetree/bindings/arm/xen.txt |  14 +--
 arch/arm/xen/enlighten.c                      | 132 ++++++++++++++++++++++++--
 arch/x86/xen/vga.c                            |  12 ++-
 drivers/xen/Kconfig                           |   2 +-
 drivers/xen/balloon.c                         |  20 ++--
 drivers/xen/gntdev.c                          |   6 +-
 drivers/xen/unpopulated-alloc.c               |  87 ++++++++++++++++-
 include/xen/balloon.h                         |   3 +
 include/xen/interface/xen.h                   |   3 +
 include/xen/xen.h                             |  16 ++++
 10 files changed, 259 insertions(+), 36 deletions(-)

Jan Beulich (1):
      xen/x86: obtain upper 32 bits of video frame buffer address for Dom0

Oleksandr Andrushchenko (1):
      xen/gntdev: fix unmap notification order

Oleksandr Tyshchenko (6):
      xen/unpopulated-alloc: Drop check for virt_addr_valid() in fill_list()
      arm/xen: Switch to use gnttab_setup_auto_xlat_frames() for DT
      xen/balloon: Bring alloc(free)_xenballooned_pages helpers back
      xen/unpopulated-alloc: Add mechanism to use Xen resource
      arm/xen: Read extended regions from DT and init Xen resource
      dt-bindings: xen: Clarify "reg" purpose


^ permalink raw reply	[relevance 7%]

* Re: [PATCH V4 0/6] xen: Add support of extended regions (safe ranges) on Arm
  2021-12-09 20:05  6% [PATCH V4 0/6] xen: Add support of extended regions (safe ranges) on Arm Oleksandr Tyshchenko
                   ` (2 preceding siblings ...)
  2021-12-16 22:02  5% ` [PATCH V4 0/6] xen: Add support of extended regions (safe ranges) on Arm Oleksandr
@ 2022-01-07 11:31  0% ` Juergen Gross
  3 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2022-01-07 11:31 UTC (permalink / raw)
  To: Oleksandr Tyshchenko, xen-devel, linux-arm-kernel, linux-kernel
  Cc: Oleksandr Tyshchenko, Stefano Stabellini, Russell King,
	Boris Ostrovsky, Julien Grall, Bertrand Marquis, Wei Chen,
	Henry Wang, Kaly Xin, Jiamei Xie


[-- Attachment #1.1.1: Type: text/plain, Size: 3544 bytes --]

On 09.12.21 21:05, Oleksandr Tyshchenko wrote:
> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> 
> Hello all.
> 
> You can find the RFC-V3 patch series at [1],[2] and [3].
> 
> The corresponding Xen support (for both Dom0 and DomU) is already committed and
> is available in mainline Xen since the following commit:
> 57f87857dc2de452a796d6bad4f476510efd2aba libxl/arm: Add handling of extended regions for DomU
> 
> The extended region (safe range) is a region of guest physical address space
> which is unused and could be safely used to create grant/foreign mappings instead
> of ballooning out real RAM pages to obtain a physical address space for creating
> these mappings (which simply results in wasting domain memory and shattering super
> pages in P2M table).
> 
> The problem is that we cannot follow Linux advise which memory ranges are unused
> on Arm as there might be some identity mappings in P2M table (stage 2) the guest is not
> aware of or not all device I/O regions might be known (registered) by the time the guest
> starts creating grant/foreign mappings. This is why we need some hints from the hypervisor
> which knows all details in advance to be able to choose extended regions (which won't
> clash with other resources).
> 
> The extended regions are chosen at the domain creation time and advertised to it via
> "reg" property under hypervisor node in the guest device-tree [4]. As region 0 is reserved
> for grant table space (always present), the indexes for extended regions are 1...N.
> No device tree bindings update is needed, guest infers the presence of extended regions
> from the number of regions in "reg" property.
> 
> Please note the following:
> - The ACPI case is not covered for now
> - patch series was created in a way to retain existing behavior on x86
> 
> The patch series is based on v5.16-rc3 and also available at [5], it was fully
> tested on Arm64 and only compile tested on x86.
> 
> [1] https://lore.kernel.org/all/1627490656-1267-1-git-send-email-olekstysh@gmail.com/
>      https://lore.kernel.org/all/1627490656-1267-2-git-send-email-olekstysh@gmail.com/
> [2] https://lore.kernel.org/all/1635264312-3796-1-git-send-email-olekstysh@gmail.com/
> [3] https://lore.kernel.org/all/1637787223-21129-1-git-send-email-olekstysh@gmail.com/
> [4] https://xenbits.xen.org/gitweb/?p=xen.git;a=blob_plain;f=docs/misc/arm/device-tree/guest.txt;hb=refs/heads/master
> [5] https://github.com/otyshchenko1/linux/commits/map_opt_ml7
> 
> Oleksandr Tyshchenko (6):
>    xen/unpopulated-alloc: Drop check for virt_addr_valid() in fill_list()
>    arm/xen: Switch to use gnttab_setup_auto_xlat_frames() for DT
>    xen/balloon: Bring alloc(free)_xenballooned_pages helpers back
>    xen/unpopulated-alloc: Add mechanism to use Xen resource
>    arm/xen: Read extended regions from DT and init Xen resource
>    dt-bindings: xen: Clarify "reg" purpose
> 
>   Documentation/devicetree/bindings/arm/xen.txt |  14 +--
>   arch/arm/xen/enlighten.c                      | 132 ++++++++++++++++++++++++--
>   drivers/xen/Kconfig                           |   2 +-
>   drivers/xen/balloon.c                         |  20 ++--
>   drivers/xen/unpopulated-alloc.c               |  87 ++++++++++++++++-
>   include/xen/balloon.h                         |   3 +
>   include/xen/xen.h                             |  16 ++++
>   7 files changed, 245 insertions(+), 29 deletions(-)
> 

Series pushed to xen/tip.git for-linus-5.17


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: [PATCH V4 0/6] xen: Add support of extended regions (safe ranges) on Arm
  2021-12-09 20:05  6% [PATCH V4 0/6] xen: Add support of extended regions (safe ranges) on Arm Oleksandr Tyshchenko
  2021-12-09 20:05 23% ` [PATCH V4 3/6] xen/balloon: Bring alloc(free)_xenballooned_pages helpers back Oleksandr Tyshchenko
  2021-12-09 20:05 11% ` [PATCH V4 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource Oleksandr Tyshchenko
@ 2021-12-16 22:02  5% ` Oleksandr
  2022-01-07 11:31  0% ` Juergen Gross
  3 siblings, 0 replies; 200+ results
From: Oleksandr @ 2021-12-16 22:02 UTC (permalink / raw)
  To: Boris Ostrovsky, Juergen Gross
  Cc: xen-devel, linux-arm-kernel, linux-kernel, Oleksandr Tyshchenko,
	Stefano Stabellini, Russell King, Julien Grall, Bertrand Marquis,
	Wei Chen, Henry Wang, Kaly Xin, Jiamei Xie


On 09.12.21 22:05, Oleksandr Tyshchenko wrote:


Hello Juergen, Boris


May I please ask, are you happy (or otherwise) with current patch series 
(I assume, especially with commits #3-4)?

For the convenience:

   1. xen/unpopulated-alloc: Drop check for virt_addr_valid() in fill_list()
- Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>

   2. arm/xen: Switch to use gnttab_setup_auto_xlat_frames() for DT
- Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>

   3. xen/balloon: Bring alloc(free)_xenballooned_pages helpers back
- Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>

   4. xen/unpopulated-alloc: Add mechanism to use Xen resource
- Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>

   5. arm/xen: Read extended regions from DT and init Xen resource
- Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>

   6. dt-bindings: xen: Clarify "reg" purpose
- Reviewed-by: Bertrand Marquis <bertrand.marquis@arm.com>
- Acked-by: Rob Herring <robh@kernel.org>
- Acked-by: Stefano Stabellini <sstabellini@kernel.org>


> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>
> Hello all.
>
> You can find the RFC-V3 patch series at [1],[2] and [3].
>
> The corresponding Xen support (for both Dom0 and DomU) is already committed and
> is available in mainline Xen since the following commit:
> 57f87857dc2de452a796d6bad4f476510efd2aba libxl/arm: Add handling of extended regions for DomU
>
> The extended region (safe range) is a region of guest physical address space
> which is unused and could be safely used to create grant/foreign mappings instead
> of ballooning out real RAM pages to obtain a physical address space for creating
> these mappings (which simply results in wasting domain memory and shattering super
> pages in P2M table).
>
> The problem is that we cannot follow Linux advise which memory ranges are unused
> on Arm as there might be some identity mappings in P2M table (stage 2) the guest is not
> aware of or not all device I/O regions might be known (registered) by the time the guest
> starts creating grant/foreign mappings. This is why we need some hints from the hypervisor
> which knows all details in advance to be able to choose extended regions (which won't
> clash with other resources).
>
> The extended regions are chosen at the domain creation time and advertised to it via
> "reg" property under hypervisor node in the guest device-tree [4]. As region 0 is reserved
> for grant table space (always present), the indexes for extended regions are 1...N.
> No device tree bindings update is needed, guest infers the presence of extended regions
> from the number of regions in "reg" property.
>
> Please note the following:
> - The ACPI case is not covered for now
> - patch series was created in a way to retain existing behavior on x86
>
> The patch series is based on v5.16-rc3 and also available at [5], it was fully
> tested on Arm64 and only compile tested on x86.
>
> [1] https://lore.kernel.org/all/1627490656-1267-1-git-send-email-olekstysh@gmail.com/
>      https://lore.kernel.org/all/1627490656-1267-2-git-send-email-olekstysh@gmail.com/
> [2] https://lore.kernel.org/all/1635264312-3796-1-git-send-email-olekstysh@gmail.com/
> [3] https://lore.kernel.org/all/1637787223-21129-1-git-send-email-olekstysh@gmail.com/
> [4] https://xenbits.xen.org/gitweb/?p=xen.git;a=blob_plain;f=docs/misc/arm/device-tree/guest.txt;hb=refs/heads/master
> [5] https://github.com/otyshchenko1/linux/commits/map_opt_ml7
>
> Oleksandr Tyshchenko (6):
>    xen/unpopulated-alloc: Drop check for virt_addr_valid() in fill_list()
>    arm/xen: Switch to use gnttab_setup_auto_xlat_frames() for DT
>    xen/balloon: Bring alloc(free)_xenballooned_pages helpers back
>    xen/unpopulated-alloc: Add mechanism to use Xen resource
>    arm/xen: Read extended regions from DT and init Xen resource
>    dt-bindings: xen: Clarify "reg" purpose
>
>   Documentation/devicetree/bindings/arm/xen.txt |  14 +--
>   arch/arm/xen/enlighten.c                      | 132 ++++++++++++++++++++++++--
>   drivers/xen/Kconfig                           |   2 +-
>   drivers/xen/balloon.c                         |  20 ++--
>   drivers/xen/unpopulated-alloc.c               |  87 ++++++++++++++++-
>   include/xen/balloon.h                         |   3 +
>   include/xen/xen.h                             |  16 ++++
>   7 files changed, 245 insertions(+), 29 deletions(-)
>
-- 
Regards,

Oleksandr Tyshchenko



^ permalink raw reply	[relevance 5%]

* Re: [PATCH V4 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-12-09 20:05 11% ` [PATCH V4 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource Oleksandr Tyshchenko
@ 2021-12-10  1:19  0%   ` Stefano Stabellini
  0 siblings, 0 replies; 200+ results
From: Stefano Stabellini @ 2021-12-10  1:19 UTC (permalink / raw)
  To: Oleksandr Tyshchenko
  Cc: xen-devel, linux-kernel, Oleksandr Tyshchenko, Boris Ostrovsky,
	Juergen Gross, Stefano Stabellini, Julien Grall

On Thu, 9 Dec 2021, Oleksandr Tyshchenko wrote:
> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> 
> The main reason of this change is that unpopulated-alloc
> code cannot be used in its current form on Arm, but there
> is a desire to reuse it to avoid wasting real RAM pages
> for the grant/foreign mappings.
> 
> The problem is that system "iomem_resource" is used for
> the address space allocation, but the really unallocated
> space can't be figured out precisely by the domain on Arm
> without hypervisor involvement. For example, not all device
> I/O regions are known by the time domain starts creating
> grant/foreign mappings. And following the advise from
> "iomem_resource" we might end up reusing these regions by
> a mistake. So, the hypervisor which maintains the P2M for
> the domain is in the best position to provide unused regions
> of guest physical address space which could be safely used
> to create grant/foreign mappings.
> 
> Introduce new helper arch_xen_unpopulated_init() which purpose
> is to create specific Xen resource based on the memory regions
> provided by the hypervisor to be used as unused space for Xen
> scratch pages. If arch doesn't define arch_xen_unpopulated_init()
> the default "iomem_resource" will be used.
> 
> Update the arguments list of allocate_resource() in fill_list()
> to always allocate a region from the hotpluggable range
> (maximum possible addressable physical memory range for which
> the linear mapping could be created). If arch doesn't define
> arch_get_mappable_range() the default range (0,-1) will be used.
> 
> The behaviour on x86 won't be changed by current patch as both
> arch_xen_unpopulated_init() and arch_get_mappable_range()
> are not implemented for it.
> 
> Also fallback to allocate xenballooned pages (balloon out RAM
> pages) if we do not have any suitable resource to work with
> (target_resource is invalid) and as the result we won't be able
> to provide unpopulated pages on a request.
> 
> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>

Given the changes, I took a second look. The patch looks fine to me.


> ---
> Changes RFC -> V2:
>    - new patch, instead of
>     "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to provide unallocated space"
> 
> Changes V2 -> V3:
>    - update patch description and comments in code
>    - modify arch_xen_unpopulated_init() to pass target_resource as an argument
>      and update default helper to assign iomem_resource to it, also drop
>      xen_resource as it will be located in arch code in the future
>    - allocate region from hotpluggable range instead of hardcoded range (0,-1)
>      in fill_list()
>    - use %pR specifier in error message
>    - do not call unpopulated_init() at runtime from xen_alloc_unpopulated_pages(),
>      drop an extra helper and call arch_xen_unpopulated_init() directly from __init()
>    - include linux/ioport.h instead of forward declaration of struct resource
>    - replace insert_resource() with request_resource() in fill_list()
>    - add __init specifier to arch_xen_unpopulated_init()
> 
> Changes V3 -> V4:
>    - add Stefano's R-b
>    - fix copy-paste error in fill_list(), must be "if (!tmp_res)" instead of
>      "if (!res)" in string 66
>    - add unpopulated_init() with early initcall level specifically to call
>      arch_xen_unpopulated_init()
> ---
>  drivers/xen/unpopulated-alloc.c | 86 +++++++++++++++++++++++++++++++++++++++--
>  include/xen/xen.h               |  2 +
>  2 files changed, 84 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/xen/unpopulated-alloc.c b/drivers/xen/unpopulated-alloc.c
> index a03dc5b..a8b4105 100644
> --- a/drivers/xen/unpopulated-alloc.c
> +++ b/drivers/xen/unpopulated-alloc.c
> @@ -8,6 +8,7 @@
>  
>  #include <asm/page.h>
>  
> +#include <xen/balloon.h>
>  #include <xen/page.h>
>  #include <xen/xen.h>
>  
> @@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
>  static struct page *page_list;
>  static unsigned int list_count;
>  
> +static struct resource *target_resource;
> +
> +/*
> + * If arch is not happy with system "iomem_resource" being used for
> + * the region allocation it can provide it's own view by creating specific
> + * Xen resource with unused regions of guest physical address space provided
> + * by the hypervisor.
> + */
> +int __weak __init arch_xen_unpopulated_init(struct resource **res)
> +{
> +	*res = &iomem_resource;
> +
> +	return 0;
> +}
> +
>  static int fill_list(unsigned int nr_pages)
>  {
>  	struct dev_pagemap *pgmap;
> -	struct resource *res;
> +	struct resource *res, *tmp_res = NULL;
>  	void *vaddr;
>  	unsigned int i, alloc_pages = round_up(nr_pages, PAGES_PER_SECTION);
> -	int ret = -ENOMEM;
> +	struct range mhp_range;
> +	int ret;
>  
>  	res = kzalloc(sizeof(*res), GFP_KERNEL);
>  	if (!res)
> @@ -30,14 +47,40 @@ static int fill_list(unsigned int nr_pages)
>  	res->name = "Xen scratch";
>  	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
>  
> -	ret = allocate_resource(&iomem_resource, res,
> -				alloc_pages * PAGE_SIZE, 0, -1,
> +	mhp_range = mhp_get_pluggable_range(true);
> +
> +	ret = allocate_resource(target_resource, res,
> +				alloc_pages * PAGE_SIZE, mhp_range.start, mhp_range.end,
>  				PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
>  	if (ret < 0) {
>  		pr_err("Cannot allocate new IOMEM resource\n");
>  		goto err_resource;
>  	}
>  
> +	/*
> +	 * Reserve the region previously allocated from Xen resource to avoid
> +	 * re-using it by someone else.
> +	 */
> +	if (target_resource != &iomem_resource) {
> +		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
> +		if (!tmp_res) {
> +			ret = -ENOMEM;
> +			goto err_insert;
> +		}
> +
> +		tmp_res->name = res->name;
> +		tmp_res->start = res->start;
> +		tmp_res->end = res->end;
> +		tmp_res->flags = res->flags;
> +
> +		ret = request_resource(&iomem_resource, tmp_res);
> +		if (ret < 0) {
> +			pr_err("Cannot request resource %pR (%d)\n", tmp_res, ret);
> +			kfree(tmp_res);
> +			goto err_insert;
> +		}
> +	}
> +
>  	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
>  	if (!pgmap) {
>  		ret = -ENOMEM;
> @@ -95,6 +138,11 @@ static int fill_list(unsigned int nr_pages)
>  err_memremap:
>  	kfree(pgmap);
>  err_pgmap:
> +	if (tmp_res) {
> +		release_resource(tmp_res);
> +		kfree(tmp_res);
> +	}
> +err_insert:
>  	release_resource(res);
>  err_resource:
>  	kfree(res);
> @@ -112,6 +160,14 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>  	unsigned int i;
>  	int ret = 0;
>  
> +	/*
> +	 * Fallback to default behavior if we do not have any suitable resource
> +	 * to allocate required region from and as the result we won't be able to
> +	 * construct pages.
> +	 */
> +	if (!target_resource)
> +		return xen_alloc_ballooned_pages(nr_pages, pages);
> +
>  	mutex_lock(&list_lock);
>  	if (list_count < nr_pages) {
>  		ret = fill_list(nr_pages - list_count);
> @@ -159,6 +215,11 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>  {
>  	unsigned int i;
>  
> +	if (!target_resource) {
> +		xen_free_ballooned_pages(nr_pages, pages);
> +		return;
> +	}
> +
>  	mutex_lock(&list_lock);
>  	for (i = 0; i < nr_pages; i++) {
>  		pages[i]->zone_device_data = page_list;
> @@ -201,3 +262,20 @@ static int __init init(void)
>  }
>  subsys_initcall(init);
>  #endif
> +
> +static int __init unpopulated_init(void)
> +{
> +	int ret;
> +
> +	if (!xen_domain())
> +		return -ENODEV;
> +
> +	ret = arch_xen_unpopulated_init(&target_resource);
> +	if (ret) {
> +		pr_err("xen:unpopulated: Cannot initialize target resource\n");
> +		target_resource = NULL;
> +	}
> +
> +	return ret;
> +}
> +early_initcall(unpopulated_init);
> diff --git a/include/xen/xen.h b/include/xen/xen.h
> index 86c5b37..a99bab8 100644
> --- a/include/xen/xen.h
> +++ b/include/xen/xen.h
> @@ -55,6 +55,8 @@ extern u64 xen_saved_max_mem_size;
>  #ifdef CONFIG_XEN_UNPOPULATED_ALLOC
>  int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
>  void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
> +#include <linux/ioport.h>
> +int arch_xen_unpopulated_init(struct resource **res);
>  #else
>  #include <xen/balloon.h>
>  static inline int xen_alloc_unpopulated_pages(unsigned int nr_pages,
> -- 
> 2.7.4
> 


^ permalink raw reply	[relevance 0%]

* [PATCH V4 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-12-09 20:05  6% [PATCH V4 0/6] xen: Add support of extended regions (safe ranges) on Arm Oleksandr Tyshchenko
  2021-12-09 20:05 23% ` [PATCH V4 3/6] xen/balloon: Bring alloc(free)_xenballooned_pages helpers back Oleksandr Tyshchenko
@ 2021-12-09 20:05 11% ` Oleksandr Tyshchenko
  2021-12-10  1:19  0%   ` Stefano Stabellini
  2021-12-16 22:02  5% ` [PATCH V4 0/6] xen: Add support of extended regions (safe ranges) on Arm Oleksandr
  2022-01-07 11:31  0% ` Juergen Gross
  3 siblings, 1 reply; 200+ results
From: Oleksandr Tyshchenko @ 2021-12-09 20:05 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Oleksandr Tyshchenko, Boris Ostrovsky, Juergen Gross,
	Stefano Stabellini, Julien Grall

From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>

The main reason of this change is that unpopulated-alloc
code cannot be used in its current form on Arm, but there
is a desire to reuse it to avoid wasting real RAM pages
for the grant/foreign mappings.

The problem is that system "iomem_resource" is used for
the address space allocation, but the really unallocated
space can't be figured out precisely by the domain on Arm
without hypervisor involvement. For example, not all device
I/O regions are known by the time domain starts creating
grant/foreign mappings. And following the advise from
"iomem_resource" we might end up reusing these regions by
a mistake. So, the hypervisor which maintains the P2M for
the domain is in the best position to provide unused regions
of guest physical address space which could be safely used
to create grant/foreign mappings.

Introduce new helper arch_xen_unpopulated_init() which purpose
is to create specific Xen resource based on the memory regions
provided by the hypervisor to be used as unused space for Xen
scratch pages. If arch doesn't define arch_xen_unpopulated_init()
the default "iomem_resource" will be used.

Update the arguments list of allocate_resource() in fill_list()
to always allocate a region from the hotpluggable range
(maximum possible addressable physical memory range for which
the linear mapping could be created). If arch doesn't define
arch_get_mappable_range() the default range (0,-1) will be used.

The behaviour on x86 won't be changed by current patch as both
arch_xen_unpopulated_init() and arch_get_mappable_range()
are not implemented for it.

Also fallback to allocate xenballooned pages (balloon out RAM
pages) if we do not have any suitable resource to work with
(target_resource is invalid) and as the result we won't be able
to provide unpopulated pages on a request.

Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
---
Changes RFC -> V2:
   - new patch, instead of
    "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to provide unallocated space"

Changes V2 -> V3:
   - update patch description and comments in code
   - modify arch_xen_unpopulated_init() to pass target_resource as an argument
     and update default helper to assign iomem_resource to it, also drop
     xen_resource as it will be located in arch code in the future
   - allocate region from hotpluggable range instead of hardcoded range (0,-1)
     in fill_list()
   - use %pR specifier in error message
   - do not call unpopulated_init() at runtime from xen_alloc_unpopulated_pages(),
     drop an extra helper and call arch_xen_unpopulated_init() directly from __init()
   - include linux/ioport.h instead of forward declaration of struct resource
   - replace insert_resource() with request_resource() in fill_list()
   - add __init specifier to arch_xen_unpopulated_init()

Changes V3 -> V4:
   - add Stefano's R-b
   - fix copy-paste error in fill_list(), must be "if (!tmp_res)" instead of
     "if (!res)" in string 66
   - add unpopulated_init() with early initcall level specifically to call
     arch_xen_unpopulated_init()
---
 drivers/xen/unpopulated-alloc.c | 86 +++++++++++++++++++++++++++++++++++++++--
 include/xen/xen.h               |  2 +
 2 files changed, 84 insertions(+), 4 deletions(-)

diff --git a/drivers/xen/unpopulated-alloc.c b/drivers/xen/unpopulated-alloc.c
index a03dc5b..a8b4105 100644
--- a/drivers/xen/unpopulated-alloc.c
+++ b/drivers/xen/unpopulated-alloc.c
@@ -8,6 +8,7 @@
 
 #include <asm/page.h>
 
+#include <xen/balloon.h>
 #include <xen/page.h>
 #include <xen/xen.h>
 
@@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
 static struct page *page_list;
 static unsigned int list_count;
 
+static struct resource *target_resource;
+
+/*
+ * If arch is not happy with system "iomem_resource" being used for
+ * the region allocation it can provide it's own view by creating specific
+ * Xen resource with unused regions of guest physical address space provided
+ * by the hypervisor.
+ */
+int __weak __init arch_xen_unpopulated_init(struct resource **res)
+{
+	*res = &iomem_resource;
+
+	return 0;
+}
+
 static int fill_list(unsigned int nr_pages)
 {
 	struct dev_pagemap *pgmap;
-	struct resource *res;
+	struct resource *res, *tmp_res = NULL;
 	void *vaddr;
 	unsigned int i, alloc_pages = round_up(nr_pages, PAGES_PER_SECTION);
-	int ret = -ENOMEM;
+	struct range mhp_range;
+	int ret;
 
 	res = kzalloc(sizeof(*res), GFP_KERNEL);
 	if (!res)
@@ -30,14 +47,40 @@ static int fill_list(unsigned int nr_pages)
 	res->name = "Xen scratch";
 	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
 
-	ret = allocate_resource(&iomem_resource, res,
-				alloc_pages * PAGE_SIZE, 0, -1,
+	mhp_range = mhp_get_pluggable_range(true);
+
+	ret = allocate_resource(target_resource, res,
+				alloc_pages * PAGE_SIZE, mhp_range.start, mhp_range.end,
 				PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
 	if (ret < 0) {
 		pr_err("Cannot allocate new IOMEM resource\n");
 		goto err_resource;
 	}
 
+	/*
+	 * Reserve the region previously allocated from Xen resource to avoid
+	 * re-using it by someone else.
+	 */
+	if (target_resource != &iomem_resource) {
+		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
+		if (!tmp_res) {
+			ret = -ENOMEM;
+			goto err_insert;
+		}
+
+		tmp_res->name = res->name;
+		tmp_res->start = res->start;
+		tmp_res->end = res->end;
+		tmp_res->flags = res->flags;
+
+		ret = request_resource(&iomem_resource, tmp_res);
+		if (ret < 0) {
+			pr_err("Cannot request resource %pR (%d)\n", tmp_res, ret);
+			kfree(tmp_res);
+			goto err_insert;
+		}
+	}
+
 	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
 	if (!pgmap) {
 		ret = -ENOMEM;
@@ -95,6 +138,11 @@ static int fill_list(unsigned int nr_pages)
 err_memremap:
 	kfree(pgmap);
 err_pgmap:
+	if (tmp_res) {
+		release_resource(tmp_res);
+		kfree(tmp_res);
+	}
+err_insert:
 	release_resource(res);
 err_resource:
 	kfree(res);
@@ -112,6 +160,14 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 	unsigned int i;
 	int ret = 0;
 
+	/*
+	 * Fallback to default behavior if we do not have any suitable resource
+	 * to allocate required region from and as the result we won't be able to
+	 * construct pages.
+	 */
+	if (!target_resource)
+		return xen_alloc_ballooned_pages(nr_pages, pages);
+
 	mutex_lock(&list_lock);
 	if (list_count < nr_pages) {
 		ret = fill_list(nr_pages - list_count);
@@ -159,6 +215,11 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 {
 	unsigned int i;
 
+	if (!target_resource) {
+		xen_free_ballooned_pages(nr_pages, pages);
+		return;
+	}
+
 	mutex_lock(&list_lock);
 	for (i = 0; i < nr_pages; i++) {
 		pages[i]->zone_device_data = page_list;
@@ -201,3 +262,20 @@ static int __init init(void)
 }
 subsys_initcall(init);
 #endif
+
+static int __init unpopulated_init(void)
+{
+	int ret;
+
+	if (!xen_domain())
+		return -ENODEV;
+
+	ret = arch_xen_unpopulated_init(&target_resource);
+	if (ret) {
+		pr_err("xen:unpopulated: Cannot initialize target resource\n");
+		target_resource = NULL;
+	}
+
+	return ret;
+}
+early_initcall(unpopulated_init);
diff --git a/include/xen/xen.h b/include/xen/xen.h
index 86c5b37..a99bab8 100644
--- a/include/xen/xen.h
+++ b/include/xen/xen.h
@@ -55,6 +55,8 @@ extern u64 xen_saved_max_mem_size;
 #ifdef CONFIG_XEN_UNPOPULATED_ALLOC
 int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
 void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
+#include <linux/ioport.h>
+int arch_xen_unpopulated_init(struct resource **res);
 #else
 #include <xen/balloon.h>
 static inline int xen_alloc_unpopulated_pages(unsigned int nr_pages,
-- 
2.7.4



^ permalink raw reply related	[relevance 11%]

* [PATCH V4 3/6] xen/balloon: Bring alloc(free)_xenballooned_pages helpers back
  2021-12-09 20:05  6% [PATCH V4 0/6] xen: Add support of extended regions (safe ranges) on Arm Oleksandr Tyshchenko
@ 2021-12-09 20:05 23% ` Oleksandr Tyshchenko
  2021-12-09 20:05 11% ` [PATCH V4 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource Oleksandr Tyshchenko
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 200+ results
From: Oleksandr Tyshchenko @ 2021-12-09 20:05 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Oleksandr Tyshchenko, Boris Ostrovsky, Juergen Gross,
	Stefano Stabellini, Julien Grall

From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>

This patch rolls back some of the changes introduced by commit
121f2faca2c0a "xen/balloon: rename alloc/free_xenballooned_pages"
in order to make possible to still allocate xenballooned pages
if CONFIG_XEN_UNPOPULATED_ALLOC is enabled.

On Arm the unpopulated pages will be allocated on top of extended
regions provided by Xen via device-tree (the subsequent patches
will add required bits to support unpopulated-alloc feature on Arm).
The problem is that extended regions feature has been introduced
into Xen quite recently (during 4.16 release cycle). So this
effectively means that Linux must only use unpopulated-alloc on Arm
if it is running on "new Xen" which advertises these regions.
But, it will only be known after parsing the "hypervisor" node
at boot time, so before doing that we cannot assume anything.

In order to keep working if CONFIG_XEN_UNPOPULATED_ALLOC is enabled
and the extended regions are not advertised (Linux is running on
"old Xen", etc) we need the fallback to alloc_xenballooned_pages().

This way we wouldn't reduce the amount of memory usable (wasting
RAM pages) for any of the external mappings anymore (and eliminate
XSA-300) with "new Xen", but would be still functional ballooning
out RAM pages with "old Xen".

Also rename alloc(free)_xenballooned_pages to xen_alloc(free)_ballooned_pages
and make xen_alloc(free)_unpopulated_pages static inline in xen.h
if CONFIG_XEN_UNPOPULATED_ALLOC is disabled.

Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
---
Changes V2 -> V3:
   - new patch

Changes V3 -> V4:
   - no changes
---
 drivers/xen/balloon.c | 20 +++++++++-----------
 include/xen/balloon.h |  3 +++
 include/xen/xen.h     | 14 ++++++++++++++
 3 files changed, 26 insertions(+), 11 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index ba2ea11..a2c4fc49 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -581,7 +581,6 @@ void balloon_set_new_target(unsigned long target)
 }
 EXPORT_SYMBOL_GPL(balloon_set_new_target);
 
-#ifndef CONFIG_XEN_UNPOPULATED_ALLOC
 static int add_ballooned_pages(unsigned int nr_pages)
 {
 	enum bp_state st;
@@ -610,12 +609,12 @@ static int add_ballooned_pages(unsigned int nr_pages)
 }
 
 /**
- * xen_alloc_unpopulated_pages - get pages that have been ballooned out
+ * xen_alloc_ballooned_pages - get pages that have been ballooned out
  * @nr_pages: Number of pages to get
  * @pages: pages returned
  * @return 0 on success, error otherwise
  */
-int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
+int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages)
 {
 	unsigned int pgno = 0;
 	struct page *page;
@@ -652,23 +651,23 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 	return 0;
  out_undo:
 	mutex_unlock(&balloon_mutex);
-	xen_free_unpopulated_pages(pgno, pages);
+	xen_free_ballooned_pages(pgno, pages);
 	/*
-	 * NB: free_xenballooned_pages will only subtract pgno pages, but since
+	 * NB: xen_free_ballooned_pages will only subtract pgno pages, but since
 	 * target_unpopulated is incremented with nr_pages at the start we need
 	 * to remove the remaining ones also, or accounting will be screwed.
 	 */
 	balloon_stats.target_unpopulated -= nr_pages - pgno;
 	return ret;
 }
-EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
+EXPORT_SYMBOL(xen_alloc_ballooned_pages);
 
 /**
- * xen_free_unpopulated_pages - return pages retrieved with get_ballooned_pages
+ * xen_free_ballooned_pages - return pages retrieved with get_ballooned_pages
  * @nr_pages: Number of pages
  * @pages: pages to return
  */
-void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
+void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages)
 {
 	unsigned int i;
 
@@ -687,9 +686,9 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 
 	mutex_unlock(&balloon_mutex);
 }
-EXPORT_SYMBOL(xen_free_unpopulated_pages);
+EXPORT_SYMBOL(xen_free_ballooned_pages);
 
-#if defined(CONFIG_XEN_PV)
+#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
 static void __init balloon_add_region(unsigned long start_pfn,
 				      unsigned long pages)
 {
@@ -712,7 +711,6 @@ static void __init balloon_add_region(unsigned long start_pfn,
 	balloon_stats.total_pages += extra_pfn_end - start_pfn;
 }
 #endif
-#endif
 
 static int __init balloon_init(void)
 {
diff --git a/include/xen/balloon.h b/include/xen/balloon.h
index e93d4f0..f78a6cc 100644
--- a/include/xen/balloon.h
+++ b/include/xen/balloon.h
@@ -26,6 +26,9 @@ extern struct balloon_stats balloon_stats;
 
 void balloon_set_new_target(unsigned long target);
 
+int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages);
+void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages);
+
 #ifdef CONFIG_XEN_BALLOON
 void xen_balloon_init(void);
 #else
diff --git a/include/xen/xen.h b/include/xen/xen.h
index 9f031b5..86c5b37 100644
--- a/include/xen/xen.h
+++ b/include/xen/xen.h
@@ -52,7 +52,21 @@ bool xen_biovec_phys_mergeable(const struct bio_vec *vec1,
 extern u64 xen_saved_max_mem_size;
 #endif
 
+#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
 int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
 void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
+#else
+#include <xen/balloon.h>
+static inline int xen_alloc_unpopulated_pages(unsigned int nr_pages,
+		struct page **pages)
+{
+	return xen_alloc_ballooned_pages(nr_pages, pages);
+}
+static inline void xen_free_unpopulated_pages(unsigned int nr_pages,
+		struct page **pages)
+{
+	xen_free_ballooned_pages(nr_pages, pages);
+}
+#endif
 
 #endif	/* _XEN_XEN_H */
-- 
2.7.4



^ permalink raw reply related	[relevance 23%]

* [PATCH V4 0/6] xen: Add support of extended regions (safe ranges) on Arm
@ 2021-12-09 20:05  6% Oleksandr Tyshchenko
  2021-12-09 20:05 23% ` [PATCH V4 3/6] xen/balloon: Bring alloc(free)_xenballooned_pages helpers back Oleksandr Tyshchenko
                   ` (3 more replies)
  0 siblings, 4 replies; 200+ results
From: Oleksandr Tyshchenko @ 2021-12-09 20:05 UTC (permalink / raw)
  To: xen-devel, linux-arm-kernel, linux-kernel
  Cc: Oleksandr Tyshchenko, Stefano Stabellini, Russell King,
	Boris Ostrovsky, Juergen Gross, Julien Grall, Bertrand Marquis,
	Wei Chen, Henry Wang, Kaly Xin, Jiamei Xie

From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>

Hello all.

You can find the RFC-V3 patch series at [1],[2] and [3].

The corresponding Xen support (for both Dom0 and DomU) is already committed and
is available in mainline Xen since the following commit:
57f87857dc2de452a796d6bad4f476510efd2aba libxl/arm: Add handling of extended regions for DomU

The extended region (safe range) is a region of guest physical address space
which is unused and could be safely used to create grant/foreign mappings instead
of ballooning out real RAM pages to obtain a physical address space for creating
these mappings (which simply results in wasting domain memory and shattering super
pages in P2M table).

The problem is that we cannot follow Linux advise which memory ranges are unused
on Arm as there might be some identity mappings in P2M table (stage 2) the guest is not
aware of or not all device I/O regions might be known (registered) by the time the guest
starts creating grant/foreign mappings. This is why we need some hints from the hypervisor
which knows all details in advance to be able to choose extended regions (which won't
clash with other resources).

The extended regions are chosen at the domain creation time and advertised to it via
"reg" property under hypervisor node in the guest device-tree [4]. As region 0 is reserved
for grant table space (always present), the indexes for extended regions are 1...N.
No device tree bindings update is needed, guest infers the presence of extended regions
from the number of regions in "reg" property.

Please note the following:
- The ACPI case is not covered for now
- patch series was created in a way to retain existing behavior on x86

The patch series is based on v5.16-rc3 and also available at [5], it was fully
tested on Arm64 and only compile tested on x86.

[1] https://lore.kernel.org/all/1627490656-1267-1-git-send-email-olekstysh@gmail.com/
    https://lore.kernel.org/all/1627490656-1267-2-git-send-email-olekstysh@gmail.com/
[2] https://lore.kernel.org/all/1635264312-3796-1-git-send-email-olekstysh@gmail.com/
[3] https://lore.kernel.org/all/1637787223-21129-1-git-send-email-olekstysh@gmail.com/
[4] https://xenbits.xen.org/gitweb/?p=xen.git;a=blob_plain;f=docs/misc/arm/device-tree/guest.txt;hb=refs/heads/master
[5] https://github.com/otyshchenko1/linux/commits/map_opt_ml7

Oleksandr Tyshchenko (6):
  xen/unpopulated-alloc: Drop check for virt_addr_valid() in fill_list()
  arm/xen: Switch to use gnttab_setup_auto_xlat_frames() for DT
  xen/balloon: Bring alloc(free)_xenballooned_pages helpers back
  xen/unpopulated-alloc: Add mechanism to use Xen resource
  arm/xen: Read extended regions from DT and init Xen resource
  dt-bindings: xen: Clarify "reg" purpose

 Documentation/devicetree/bindings/arm/xen.txt |  14 +--
 arch/arm/xen/enlighten.c                      | 132 ++++++++++++++++++++++++--
 drivers/xen/Kconfig                           |   2 +-
 drivers/xen/balloon.c                         |  20 ++--
 drivers/xen/unpopulated-alloc.c               |  87 ++++++++++++++++-
 include/xen/balloon.h                         |   3 +
 include/xen/xen.h                             |  16 ++++
 7 files changed, 245 insertions(+), 29 deletions(-)

-- 
2.7.4



^ permalink raw reply	[relevance 6%]

* Re: [PATCH V3 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-11-25  1:03  0%   ` Stefano Stabellini
@ 2021-11-25 14:01  0%     ` Oleksandr
  0 siblings, 0 replies; 200+ results
From: Oleksandr @ 2021-11-25 14:01 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: xen-devel, linux-kernel, Oleksandr Tyshchenko, Boris Ostrovsky,
	Juergen Gross, Julien Grall


On 25.11.21 03:03, Stefano Stabellini wrote:

Hi Stefano, all

> On Wed, 24 Nov 2021, Oleksandr Tyshchenko wrote:
>> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>>
>> The main reason of this change is that unpopulated-alloc
>> code cannot be used in its current form on Arm, but there
>> is a desire to reuse it to avoid wasting real RAM pages
>> for the grant/foreign mappings.
>>
>> The problem is that system "iomem_resource" is used for
>> the address space allocation, but the really unallocated
>> space can't be figured out precisely by the domain on Arm
>> without hypervisor involvement. For example, not all device
>> I/O regions are known by the time domain starts creating
>> grant/foreign mappings. And following the advise from
>> "iomem_resource" we might end up reusing these regions by
>> a mistake. So, the hypervisor which maintains the P2M for
>> the domain is in the best position to provide unused regions
>> of guest physical address space which could be safely used
>> to create grant/foreign mappings.
>>
>> Introduce new helper arch_xen_unpopulated_init() which purpose
>> is to create specific Xen resource based on the memory regions
>> provided by the hypervisor to be used as unused space for Xen
>> scratch pages. If arch doesn't define arch_xen_unpopulated_init()
>> the default "iomem_resource" will be used.
>>
>> Update the arguments list of allocate_resource() in fill_list()
>> to always allocate a region from the hotpluggable range
>> (maximum possible addressable physical memory range for which
>> the linear mapping could be created). If arch doesn't define
>> arch_get_mappable_range() the default range (0,-1) will be used.
>>
>> The behaviour on x86 won't be changed by current patch as both
>> arch_xen_unpopulated_init() and arch_get_mappable_range()
>> are not implemented for it.
>>
>> Also fallback to allocate xenballooned pages (balloon out RAM
>> pages) if we do not have any suitable resource to work with
>> (target_resource is invalid) and as the result we won't be able
>> to provide unpopulated pages on a request.
>>
>> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>
> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>

Thanks!


What still worries me is a concern with x86's xen_pvh_gnttab_setup() I 
described in post commit remark ...


>
>
>> ---
>> Please note the following:
>> for V3 arch_xen_unpopulated_init() was moved to init() as was agreed
>> and gained __init specifier. So the target_resource is initialized there.
>>
>> With current patch series applied if CONFIG_XEN_UNPOPULATED_ALLOC
>> is enabled:
>>
>> 1. On Arm, under normal circumstances, the xen_alloc_unpopulated_pages()
>> won't be called “before” arch_xen_unpopulated_init(). It will only be
>> called "before" when either ACPI is in use or something wrong happened
>> with DT (and we failed to read xen_grant_frames), so we fallback to
>> xen_xlate_map_ballooned_pages() in arm/xen/enlighten.c:xen_guest_init(),
>> please see "arm/xen: Switch to use gnttab_setup_auto_xlat_frames() for DT"
>> for details. But in that case, I think, it doesn't matter much whether
>> xen_alloc_unpopulated_pages() is called "before" of "after" target_resource
>> initialization, as we don't have extended regions in place the target_resource
>> will remain invalid even after initialization, so xen_alloc_ballooned_pages()
>> will be used in both scenarios.
>>
>> 2. On x86, I am not quite sure which modes use unpopulated-alloc (PVH?),
>> but it looks like xen_alloc_unpopulated_pages() can (and will) be called
>> “before” arch_xen_unpopulated_init().
>> At least, I see that xen_xlate_map_ballooned_pages() is called in
>> x86/xen/grant-table.c:xen_pvh_gnttab_setup(). According to the initcall
>> levels for both xen_pvh_gnttab_setup() and init() I expect the former
>> to be called earlier.
>> If it is true, the sentence in the commit description which mentions
>> that “behaviour on x86 is not changed” is not precise. I don’t think
>> it would be correct to fallback to xen_alloc_ballooned_pages() just
>> because we haven’t initialized target_resource yet (on x86 it is just
>> assigning it iomem_resource), at least this doesn't look like an expected
>> behaviour and unlikely would be welcome.
>>
>> I am wondering whether it would be better to move arch_xen_unpopulated_init()
>> to a dedicated init() marked with an appropriate initcall level (early_initcall?)
>> to make sure it will always be called *before* xen_xlate_map_ballooned_pages().
>> What do you think?

    ... here (#2). Or I really missed something and there wouldn't be an 
issue?


>>
>> Changes RFC -> V2:
>>     - new patch, instead of
>>      "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to provide unallocated space"
>>
>> Changes V2 -> V3:
>>     - update patch description and comments in code
>>     - modify arch_xen_unpopulated_init() to pass target_resource as an argument
>>       and update default helper to assign iomem_resource to it, also drop
>>       xen_resource as it will be located in arch code in the future
>>     - allocate region from hotpluggable range instead of hardcoded range (0,-1)
>>       in fill_list()
>>     - use %pR specifier in error message
>>     - do not call unpopulated_init() at runtime from xen_alloc_unpopulated_pages(),
>>       drop an extra helper and call arch_xen_unpopulated_init() directly from __init()
>>     - include linux/ioport.h instead of forward declaration of struct resource
>>     - replace insert_resource() with request_resource() in fill_list()
>>     - add __init specifier to arch_xen_unpopulated_init()
>> ---
>>   drivers/xen/unpopulated-alloc.c | 83 +++++++++++++++++++++++++++++++++++++----
>>   include/xen/xen.h               |  2 +
>>   2 files changed, 78 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/xen/unpopulated-alloc.c b/drivers/xen/unpopulated-alloc.c
>> index a03dc5b..07d3578 100644
>> --- a/drivers/xen/unpopulated-alloc.c
>> +++ b/drivers/xen/unpopulated-alloc.c
>> @@ -8,6 +8,7 @@
>>   
>>   #include <asm/page.h>
>>   
>> +#include <xen/balloon.h>
>>   #include <xen/page.h>
>>   #include <xen/xen.h>
>>   
>> @@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
>>   static struct page *page_list;
>>   static unsigned int list_count;
>>   
>> +static struct resource *target_resource;
>> +
>> +/*
>> + * If arch is not happy with system "iomem_resource" being used for
>> + * the region allocation it can provide it's own view by creating specific
>> + * Xen resource with unused regions of guest physical address space provided
>> + * by the hypervisor.
>> + */
>> +int __weak __init arch_xen_unpopulated_init(struct resource **res)
>> +{
>> +	*res = &iomem_resource;
>> +
>> +	return 0;
>> +}
>> +
>>   static int fill_list(unsigned int nr_pages)
>>   {
>>   	struct dev_pagemap *pgmap;
>> -	struct resource *res;
>> +	struct resource *res, *tmp_res = NULL;
>>   	void *vaddr;
>>   	unsigned int i, alloc_pages = round_up(nr_pages, PAGES_PER_SECTION);
>> -	int ret = -ENOMEM;
>> +	struct range mhp_range;
>> +	int ret;
>>   
>>   	res = kzalloc(sizeof(*res), GFP_KERNEL);
>>   	if (!res)
>> @@ -30,14 +47,40 @@ static int fill_list(unsigned int nr_pages)
>>   	res->name = "Xen scratch";
>>   	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
>>   
>> -	ret = allocate_resource(&iomem_resource, res,
>> -				alloc_pages * PAGE_SIZE, 0, -1,
>> +	mhp_range = mhp_get_pluggable_range(true);
>> +
>> +	ret = allocate_resource(target_resource, res,
>> +				alloc_pages * PAGE_SIZE, mhp_range.start, mhp_range.end,
>>   				PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
>>   	if (ret < 0) {
>>   		pr_err("Cannot allocate new IOMEM resource\n");
>>   		goto err_resource;
>>   	}
>>   
>> +	/*
>> +	 * Reserve the region previously allocated from Xen resource to avoid
>> +	 * re-using it by someone else.
>> +	 */
>> +	if (target_resource != &iomem_resource) {
>> +		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
>> +		if (!res) {
>> +			ret = -ENOMEM;
>> +			goto err_insert;
>> +		}
>> +
>> +		tmp_res->name = res->name;
>> +		tmp_res->start = res->start;
>> +		tmp_res->end = res->end;
>> +		tmp_res->flags = res->flags;
>> +
>> +		ret = request_resource(&iomem_resource, tmp_res);
>> +		if (ret < 0) {
>> +			pr_err("Cannot request resource %pR (%d)\n", tmp_res, ret);
>> +			kfree(tmp_res);
>> +			goto err_insert;
>> +		}
>> +	}
>> +
>>   	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
>>   	if (!pgmap) {
>>   		ret = -ENOMEM;
>> @@ -95,6 +138,11 @@ static int fill_list(unsigned int nr_pages)
>>   err_memremap:
>>   	kfree(pgmap);
>>   err_pgmap:
>> +	if (tmp_res) {
>> +		release_resource(tmp_res);
>> +		kfree(tmp_res);
>> +	}
>> +err_insert:
>>   	release_resource(res);
>>   err_resource:
>>   	kfree(res);
>> @@ -112,6 +160,14 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>>   	unsigned int i;
>>   	int ret = 0;
>>   
>> +	/*
>> +	 * Fallback to default behavior if we do not have any suitable resource
>> +	 * to allocate required region from and as the result we won't be able to
>> +	 * construct pages.
>> +	 */
>> +	if (!target_resource)
>> +		return xen_alloc_ballooned_pages(nr_pages, pages);
>> +
>>   	mutex_lock(&list_lock);
>>   	if (list_count < nr_pages) {
>>   		ret = fill_list(nr_pages - list_count);
>> @@ -159,6 +215,11 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>>   {
>>   	unsigned int i;
>>   
>> +	if (!target_resource) {
>> +		xen_free_ballooned_pages(nr_pages, pages);
>> +		return;
>> +	}
>> +
>>   	mutex_lock(&list_lock);
>>   	for (i = 0; i < nr_pages; i++) {
>>   		pages[i]->zone_device_data = page_list;
>> @@ -169,9 +230,11 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>>   }
>>   EXPORT_SYMBOL(xen_free_unpopulated_pages);
>>   
>> -#ifdef CONFIG_XEN_PV
>>   static int __init init(void)
>>   {
>> +	int ret;
>> +
>> +#ifdef CONFIG_XEN_PV
>>   	unsigned int i;
>>   
>>   	if (!xen_domain())
>> @@ -196,8 +259,14 @@ static int __init init(void)
>>   			list_count++;
>>   		}
>>   	}
>> +#endif
>>   
>> -	return 0;
>> +	ret = arch_xen_unpopulated_init(&target_resource);
>> +	if (ret) {
>> +		pr_err("xen:unpopulated: Cannot initialize target resource\n");
>> +		target_resource = NULL;
>> +	}
>> +
>> +	return ret;
>>   }
>>   subsys_initcall(init);
>> -#endif
>> diff --git a/include/xen/xen.h b/include/xen/xen.h
>> index 86c5b37..a99bab8 100644
>> --- a/include/xen/xen.h
>> +++ b/include/xen/xen.h
>> @@ -55,6 +55,8 @@ extern u64 xen_saved_max_mem_size;
>>   #ifdef CONFIG_XEN_UNPOPULATED_ALLOC
>>   int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
>>   void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
>> +#include <linux/ioport.h>
>> +int arch_xen_unpopulated_init(struct resource **res);
>>   #else
>>   #include <xen/balloon.h>
>>   static inline int xen_alloc_unpopulated_pages(unsigned int nr_pages,
>> -- 
>> 2.7.4

-- 
Regards,

Oleksandr Tyshchenko



^ permalink raw reply	[relevance 0%]

* Re: [PATCH V3 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-11-24 20:53 11% ` [PATCH V3 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource Oleksandr Tyshchenko
@ 2021-11-25  1:03  0%   ` Stefano Stabellini
  2021-11-25 14:01  0%     ` Oleksandr
  0 siblings, 1 reply; 200+ results
From: Stefano Stabellini @ 2021-11-25  1:03 UTC (permalink / raw)
  To: Oleksandr Tyshchenko
  Cc: xen-devel, linux-kernel, Oleksandr Tyshchenko, Boris Ostrovsky,
	Juergen Gross, Stefano Stabellini, Julien Grall

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

On Wed, 24 Nov 2021, Oleksandr Tyshchenko wrote:
> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> 
> The main reason of this change is that unpopulated-alloc
> code cannot be used in its current form on Arm, but there
> is a desire to reuse it to avoid wasting real RAM pages
> for the grant/foreign mappings.
> 
> The problem is that system "iomem_resource" is used for
> the address space allocation, but the really unallocated
> space can't be figured out precisely by the domain on Arm
> without hypervisor involvement. For example, not all device
> I/O regions are known by the time domain starts creating
> grant/foreign mappings. And following the advise from
> "iomem_resource" we might end up reusing these regions by
> a mistake. So, the hypervisor which maintains the P2M for
> the domain is in the best position to provide unused regions
> of guest physical address space which could be safely used
> to create grant/foreign mappings.
> 
> Introduce new helper arch_xen_unpopulated_init() which purpose
> is to create specific Xen resource based on the memory regions
> provided by the hypervisor to be used as unused space for Xen
> scratch pages. If arch doesn't define arch_xen_unpopulated_init()
> the default "iomem_resource" will be used.
> 
> Update the arguments list of allocate_resource() in fill_list()
> to always allocate a region from the hotpluggable range
> (maximum possible addressable physical memory range for which
> the linear mapping could be created). If arch doesn't define
> arch_get_mappable_range() the default range (0,-1) will be used.
> 
> The behaviour on x86 won't be changed by current patch as both
> arch_xen_unpopulated_init() and arch_get_mappable_range()
> are not implemented for it.
> 
> Also fallback to allocate xenballooned pages (balloon out RAM
> pages) if we do not have any suitable resource to work with
> (target_resource is invalid) and as the result we won't be able
> to provide unpopulated pages on a request.
> 
> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>


Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>


> ---
> Please note the following:
> for V3 arch_xen_unpopulated_init() was moved to init() as was agreed
> and gained __init specifier. So the target_resource is initialized there.
> 
> With current patch series applied if CONFIG_XEN_UNPOPULATED_ALLOC
> is enabled:
> 
> 1. On Arm, under normal circumstances, the xen_alloc_unpopulated_pages()
> won't be called “before” arch_xen_unpopulated_init(). It will only be
> called "before" when either ACPI is in use or something wrong happened
> with DT (and we failed to read xen_grant_frames), so we fallback to
> xen_xlate_map_ballooned_pages() in arm/xen/enlighten.c:xen_guest_init(),
> please see "arm/xen: Switch to use gnttab_setup_auto_xlat_frames() for DT"
> for details. But in that case, I think, it doesn't matter much whether
> xen_alloc_unpopulated_pages() is called "before" of "after" target_resource
> initialization, as we don't have extended regions in place the target_resource
> will remain invalid even after initialization, so xen_alloc_ballooned_pages()
> will be used in both scenarios.
> 
> 2. On x86, I am not quite sure which modes use unpopulated-alloc (PVH?),
> but it looks like xen_alloc_unpopulated_pages() can (and will) be called
> “before” arch_xen_unpopulated_init().
> At least, I see that xen_xlate_map_ballooned_pages() is called in
> x86/xen/grant-table.c:xen_pvh_gnttab_setup(). According to the initcall
> levels for both xen_pvh_gnttab_setup() and init() I expect the former
> to be called earlier.
> If it is true, the sentence in the commit description which mentions
> that “behaviour on x86 is not changed” is not precise. I don’t think
> it would be correct to fallback to xen_alloc_ballooned_pages() just
> because we haven’t initialized target_resource yet (on x86 it is just
> assigning it iomem_resource), at least this doesn't look like an expected
> behaviour and unlikely would be welcome.
> 
> I am wondering whether it would be better to move arch_xen_unpopulated_init()
> to a dedicated init() marked with an appropriate initcall level (early_initcall?)
> to make sure it will always be called *before* xen_xlate_map_ballooned_pages().
> What do you think?
> 
> Changes RFC -> V2:
>    - new patch, instead of
>     "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to provide unallocated space"
> 
> Changes V2 -> V3:
>    - update patch description and comments in code
>    - modify arch_xen_unpopulated_init() to pass target_resource as an argument
>      and update default helper to assign iomem_resource to it, also drop
>      xen_resource as it will be located in arch code in the future
>    - allocate region from hotpluggable range instead of hardcoded range (0,-1)
>      in fill_list()
>    - use %pR specifier in error message
>    - do not call unpopulated_init() at runtime from xen_alloc_unpopulated_pages(),
>      drop an extra helper and call arch_xen_unpopulated_init() directly from __init()
>    - include linux/ioport.h instead of forward declaration of struct resource
>    - replace insert_resource() with request_resource() in fill_list()
>    - add __init specifier to arch_xen_unpopulated_init()
> ---
>  drivers/xen/unpopulated-alloc.c | 83 +++++++++++++++++++++++++++++++++++++----
>  include/xen/xen.h               |  2 +
>  2 files changed, 78 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/xen/unpopulated-alloc.c b/drivers/xen/unpopulated-alloc.c
> index a03dc5b..07d3578 100644
> --- a/drivers/xen/unpopulated-alloc.c
> +++ b/drivers/xen/unpopulated-alloc.c
> @@ -8,6 +8,7 @@
>  
>  #include <asm/page.h>
>  
> +#include <xen/balloon.h>
>  #include <xen/page.h>
>  #include <xen/xen.h>
>  
> @@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
>  static struct page *page_list;
>  static unsigned int list_count;
>  
> +static struct resource *target_resource;
> +
> +/*
> + * If arch is not happy with system "iomem_resource" being used for
> + * the region allocation it can provide it's own view by creating specific
> + * Xen resource with unused regions of guest physical address space provided
> + * by the hypervisor.
> + */
> +int __weak __init arch_xen_unpopulated_init(struct resource **res)
> +{
> +	*res = &iomem_resource;
> +
> +	return 0;
> +}
> +
>  static int fill_list(unsigned int nr_pages)
>  {
>  	struct dev_pagemap *pgmap;
> -	struct resource *res;
> +	struct resource *res, *tmp_res = NULL;
>  	void *vaddr;
>  	unsigned int i, alloc_pages = round_up(nr_pages, PAGES_PER_SECTION);
> -	int ret = -ENOMEM;
> +	struct range mhp_range;
> +	int ret;
>  
>  	res = kzalloc(sizeof(*res), GFP_KERNEL);
>  	if (!res)
> @@ -30,14 +47,40 @@ static int fill_list(unsigned int nr_pages)
>  	res->name = "Xen scratch";
>  	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
>  
> -	ret = allocate_resource(&iomem_resource, res,
> -				alloc_pages * PAGE_SIZE, 0, -1,
> +	mhp_range = mhp_get_pluggable_range(true);
> +
> +	ret = allocate_resource(target_resource, res,
> +				alloc_pages * PAGE_SIZE, mhp_range.start, mhp_range.end,
>  				PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
>  	if (ret < 0) {
>  		pr_err("Cannot allocate new IOMEM resource\n");
>  		goto err_resource;
>  	}
>  
> +	/*
> +	 * Reserve the region previously allocated from Xen resource to avoid
> +	 * re-using it by someone else.
> +	 */
> +	if (target_resource != &iomem_resource) {
> +		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
> +		if (!res) {
> +			ret = -ENOMEM;
> +			goto err_insert;
> +		}
> +
> +		tmp_res->name = res->name;
> +		tmp_res->start = res->start;
> +		tmp_res->end = res->end;
> +		tmp_res->flags = res->flags;
> +
> +		ret = request_resource(&iomem_resource, tmp_res);
> +		if (ret < 0) {
> +			pr_err("Cannot request resource %pR (%d)\n", tmp_res, ret);
> +			kfree(tmp_res);
> +			goto err_insert;
> +		}
> +	}
> +
>  	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
>  	if (!pgmap) {
>  		ret = -ENOMEM;
> @@ -95,6 +138,11 @@ static int fill_list(unsigned int nr_pages)
>  err_memremap:
>  	kfree(pgmap);
>  err_pgmap:
> +	if (tmp_res) {
> +		release_resource(tmp_res);
> +		kfree(tmp_res);
> +	}
> +err_insert:
>  	release_resource(res);
>  err_resource:
>  	kfree(res);
> @@ -112,6 +160,14 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>  	unsigned int i;
>  	int ret = 0;
>  
> +	/*
> +	 * Fallback to default behavior if we do not have any suitable resource
> +	 * to allocate required region from and as the result we won't be able to
> +	 * construct pages.
> +	 */
> +	if (!target_resource)
> +		return xen_alloc_ballooned_pages(nr_pages, pages);
> +
>  	mutex_lock(&list_lock);
>  	if (list_count < nr_pages) {
>  		ret = fill_list(nr_pages - list_count);
> @@ -159,6 +215,11 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>  {
>  	unsigned int i;
>  
> +	if (!target_resource) {
> +		xen_free_ballooned_pages(nr_pages, pages);
> +		return;
> +	}
> +
>  	mutex_lock(&list_lock);
>  	for (i = 0; i < nr_pages; i++) {
>  		pages[i]->zone_device_data = page_list;
> @@ -169,9 +230,11 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>  }
>  EXPORT_SYMBOL(xen_free_unpopulated_pages);
>  
> -#ifdef CONFIG_XEN_PV
>  static int __init init(void)
>  {
> +	int ret;
> +
> +#ifdef CONFIG_XEN_PV
>  	unsigned int i;
>  
>  	if (!xen_domain())
> @@ -196,8 +259,14 @@ static int __init init(void)
>  			list_count++;
>  		}
>  	}
> +#endif
>  
> -	return 0;
> +	ret = arch_xen_unpopulated_init(&target_resource);
> +	if (ret) {
> +		pr_err("xen:unpopulated: Cannot initialize target resource\n");
> +		target_resource = NULL;
> +	}
> +
> +	return ret;
>  }
>  subsys_initcall(init);
> -#endif
> diff --git a/include/xen/xen.h b/include/xen/xen.h
> index 86c5b37..a99bab8 100644
> --- a/include/xen/xen.h
> +++ b/include/xen/xen.h
> @@ -55,6 +55,8 @@ extern u64 xen_saved_max_mem_size;
>  #ifdef CONFIG_XEN_UNPOPULATED_ALLOC
>  int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
>  void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
> +#include <linux/ioport.h>
> +int arch_xen_unpopulated_init(struct resource **res);
>  #else
>  #include <xen/balloon.h>
>  static inline int xen_alloc_unpopulated_pages(unsigned int nr_pages,
> -- 
> 2.7.4
> 

^ permalink raw reply	[relevance 0%]

* Re: [PATCH V3 3/6] xen/balloon: Bring alloc(free)_xenballooned_pages helpers back
  2021-11-24 20:53 23% ` [PATCH V3 3/6] xen/balloon: Bring alloc(free)_xenballooned_pages helpers back Oleksandr Tyshchenko
@ 2021-11-24 23:36  5%   ` Stefano Stabellini
  0 siblings, 0 replies; 200+ results
From: Stefano Stabellini @ 2021-11-24 23:36 UTC (permalink / raw)
  To: Oleksandr Tyshchenko
  Cc: xen-devel, linux-kernel, Oleksandr Tyshchenko, Boris Ostrovsky,
	Juergen Gross, Stefano Stabellini, Julien Grall

On Wed, 24 Nov 2021, Oleksandr Tyshchenko wrote:
> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> 
> This patch rolls back some of the changes introduced by commit
> 121f2faca2c0a "xen/balloon: rename alloc/free_xenballooned_pages"
> in order to make possible to still allocate xenballooned pages
> if CONFIG_XEN_UNPOPULATED_ALLOC is enabled.
> 
> On Arm the unpopulated pages will be allocated on top of extended
> regions provided by Xen via device-tree (the subsequent patches
> will add required bits to support unpopulated-alloc feature on Arm).
> The problem is that extended regions feature has been introduced
> into Xen quite recently (during 4.16 release cycle). So this
> effectively means that Linux must only use unpopulated-alloc on Arm
> if it is running on "new Xen" which advertises these regions.
> But, it will only be known after parsing the "hypervisor" node
> at boot time, so before doing that we cannot assume anything.
> 
> In order to keep working if CONFIG_XEN_UNPOPULATED_ALLOC is enabled
> and the extended regions are not advertised (Linux is running on
> "old Xen", etc) we need the fallback to alloc_xenballooned_pages().
> 
> This way we wouldn't reduce the amount of memory usable (wasting
> RAM pages) for any of the external mappings anymore (and eliminate
> XSA-300) with "new Xen", but would be still functional ballooning
> out RAM pages with "old Xen".
> 
> Also rename alloc(free)_xenballooned_pages to xen_alloc(free)_ballooned_pages
> and make xen_alloc(free)_unpopulated_pages static inline in xen.h
> if CONFIG_XEN_UNPOPULATED_ALLOC is disabled.
> 
> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
> ---
> @Stefano, I decided to retain your R-b after making a minor
> change (make xen_alloc(free)_unpopulated_pages static inline
> in xen.h if CONFIG_XEN_UNPOPULATED_ALLOC is disabled).
> Please let me know if you think otherwise.

That's fine


> Changes V2 -> V3:
>    - new patch
> ---
>  drivers/xen/balloon.c | 20 +++++++++-----------
>  include/xen/balloon.h |  3 +++
>  include/xen/xen.h     | 14 ++++++++++++++
>  3 files changed, 26 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
> index ba2ea11..a2c4fc49 100644
> --- a/drivers/xen/balloon.c
> +++ b/drivers/xen/balloon.c
> @@ -581,7 +581,6 @@ void balloon_set_new_target(unsigned long target)
>  }
>  EXPORT_SYMBOL_GPL(balloon_set_new_target);
>  
> -#ifndef CONFIG_XEN_UNPOPULATED_ALLOC
>  static int add_ballooned_pages(unsigned int nr_pages)
>  {
>  	enum bp_state st;
> @@ -610,12 +609,12 @@ static int add_ballooned_pages(unsigned int nr_pages)
>  }
>  
>  /**
> - * xen_alloc_unpopulated_pages - get pages that have been ballooned out
> + * xen_alloc_ballooned_pages - get pages that have been ballooned out
>   * @nr_pages: Number of pages to get
>   * @pages: pages returned
>   * @return 0 on success, error otherwise
>   */
> -int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
> +int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages)
>  {
>  	unsigned int pgno = 0;
>  	struct page *page;
> @@ -652,23 +651,23 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>  	return 0;
>   out_undo:
>  	mutex_unlock(&balloon_mutex);
> -	xen_free_unpopulated_pages(pgno, pages);
> +	xen_free_ballooned_pages(pgno, pages);
>  	/*
> -	 * NB: free_xenballooned_pages will only subtract pgno pages, but since
> +	 * NB: xen_free_ballooned_pages will only subtract pgno pages, but since
>  	 * target_unpopulated is incremented with nr_pages at the start we need
>  	 * to remove the remaining ones also, or accounting will be screwed.
>  	 */
>  	balloon_stats.target_unpopulated -= nr_pages - pgno;
>  	return ret;
>  }
> -EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
> +EXPORT_SYMBOL(xen_alloc_ballooned_pages);
>  
>  /**
> - * xen_free_unpopulated_pages - return pages retrieved with get_ballooned_pages
> + * xen_free_ballooned_pages - return pages retrieved with get_ballooned_pages
>   * @nr_pages: Number of pages
>   * @pages: pages to return
>   */
> -void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
> +void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages)
>  {
>  	unsigned int i;
>  
> @@ -687,9 +686,9 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>  
>  	mutex_unlock(&balloon_mutex);
>  }
> -EXPORT_SYMBOL(xen_free_unpopulated_pages);
> +EXPORT_SYMBOL(xen_free_ballooned_pages);
>  
> -#if defined(CONFIG_XEN_PV)
> +#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
>  static void __init balloon_add_region(unsigned long start_pfn,
>  				      unsigned long pages)
>  {
> @@ -712,7 +711,6 @@ static void __init balloon_add_region(unsigned long start_pfn,
>  	balloon_stats.total_pages += extra_pfn_end - start_pfn;
>  }
>  #endif
> -#endif
>  
>  static int __init balloon_init(void)
>  {
> diff --git a/include/xen/balloon.h b/include/xen/balloon.h
> index e93d4f0..f78a6cc 100644
> --- a/include/xen/balloon.h
> +++ b/include/xen/balloon.h
> @@ -26,6 +26,9 @@ extern struct balloon_stats balloon_stats;
>  
>  void balloon_set_new_target(unsigned long target);
>  
> +int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages);
> +void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages);
> +
>  #ifdef CONFIG_XEN_BALLOON
>  void xen_balloon_init(void);
>  #else
> diff --git a/include/xen/xen.h b/include/xen/xen.h
> index 9f031b5..86c5b37 100644
> --- a/include/xen/xen.h
> +++ b/include/xen/xen.h
> @@ -52,7 +52,21 @@ bool xen_biovec_phys_mergeable(const struct bio_vec *vec1,
>  extern u64 xen_saved_max_mem_size;
>  #endif
>  
> +#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
>  int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
>  void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
> +#else
> +#include <xen/balloon.h>
> +static inline int xen_alloc_unpopulated_pages(unsigned int nr_pages,
> +		struct page **pages)
> +{
> +	return xen_alloc_ballooned_pages(nr_pages, pages);
> +}
> +static inline void xen_free_unpopulated_pages(unsigned int nr_pages,
> +		struct page **pages)
> +{
> +	xen_free_ballooned_pages(nr_pages, pages);
> +}
> +#endif
>  
>  #endif	/* _XEN_XEN_H */
> -- 
> 2.7.4
> 


^ permalink raw reply	[relevance 5%]

* [PATCH V3 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-11-24 20:53  6% [PATCH V3 0/6] xen: Add support of extended regions (safe ranges) on Arm Oleksandr Tyshchenko
  2021-11-24 20:53 23% ` [PATCH V3 3/6] xen/balloon: Bring alloc(free)_xenballooned_pages helpers back Oleksandr Tyshchenko
@ 2021-11-24 20:53 11% ` Oleksandr Tyshchenko
  2021-11-25  1:03  0%   ` Stefano Stabellini
  1 sibling, 1 reply; 200+ results
From: Oleksandr Tyshchenko @ 2021-11-24 20:53 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Oleksandr Tyshchenko, Boris Ostrovsky, Juergen Gross,
	Stefano Stabellini, Julien Grall

From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>

The main reason of this change is that unpopulated-alloc
code cannot be used in its current form on Arm, but there
is a desire to reuse it to avoid wasting real RAM pages
for the grant/foreign mappings.

The problem is that system "iomem_resource" is used for
the address space allocation, but the really unallocated
space can't be figured out precisely by the domain on Arm
without hypervisor involvement. For example, not all device
I/O regions are known by the time domain starts creating
grant/foreign mappings. And following the advise from
"iomem_resource" we might end up reusing these regions by
a mistake. So, the hypervisor which maintains the P2M for
the domain is in the best position to provide unused regions
of guest physical address space which could be safely used
to create grant/foreign mappings.

Introduce new helper arch_xen_unpopulated_init() which purpose
is to create specific Xen resource based on the memory regions
provided by the hypervisor to be used as unused space for Xen
scratch pages. If arch doesn't define arch_xen_unpopulated_init()
the default "iomem_resource" will be used.

Update the arguments list of allocate_resource() in fill_list()
to always allocate a region from the hotpluggable range
(maximum possible addressable physical memory range for which
the linear mapping could be created). If arch doesn't define
arch_get_mappable_range() the default range (0,-1) will be used.

The behaviour on x86 won't be changed by current patch as both
arch_xen_unpopulated_init() and arch_get_mappable_range()
are not implemented for it.

Also fallback to allocate xenballooned pages (balloon out RAM
pages) if we do not have any suitable resource to work with
(target_resource is invalid) and as the result we won't be able
to provide unpopulated pages on a request.

Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
---
Please note the following:
for V3 arch_xen_unpopulated_init() was moved to init() as was agreed
and gained __init specifier. So the target_resource is initialized there.

With current patch series applied if CONFIG_XEN_UNPOPULATED_ALLOC
is enabled:

1. On Arm, under normal circumstances, the xen_alloc_unpopulated_pages()
won't be called “before” arch_xen_unpopulated_init(). It will only be
called "before" when either ACPI is in use or something wrong happened
with DT (and we failed to read xen_grant_frames), so we fallback to
xen_xlate_map_ballooned_pages() in arm/xen/enlighten.c:xen_guest_init(),
please see "arm/xen: Switch to use gnttab_setup_auto_xlat_frames() for DT"
for details. But in that case, I think, it doesn't matter much whether
xen_alloc_unpopulated_pages() is called "before" of "after" target_resource
initialization, as we don't have extended regions in place the target_resource
will remain invalid even after initialization, so xen_alloc_ballooned_pages()
will be used in both scenarios.

2. On x86, I am not quite sure which modes use unpopulated-alloc (PVH?),
but it looks like xen_alloc_unpopulated_pages() can (and will) be called
“before” arch_xen_unpopulated_init().
At least, I see that xen_xlate_map_ballooned_pages() is called in
x86/xen/grant-table.c:xen_pvh_gnttab_setup(). According to the initcall
levels for both xen_pvh_gnttab_setup() and init() I expect the former
to be called earlier.
If it is true, the sentence in the commit description which mentions
that “behaviour on x86 is not changed” is not precise. I don’t think
it would be correct to fallback to xen_alloc_ballooned_pages() just
because we haven’t initialized target_resource yet (on x86 it is just
assigning it iomem_resource), at least this doesn't look like an expected
behaviour and unlikely would be welcome.

I am wondering whether it would be better to move arch_xen_unpopulated_init()
to a dedicated init() marked with an appropriate initcall level (early_initcall?)
to make sure it will always be called *before* xen_xlate_map_ballooned_pages().
What do you think?

Changes RFC -> V2:
   - new patch, instead of
    "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to provide unallocated space"

Changes V2 -> V3:
   - update patch description and comments in code
   - modify arch_xen_unpopulated_init() to pass target_resource as an argument
     and update default helper to assign iomem_resource to it, also drop
     xen_resource as it will be located in arch code in the future
   - allocate region from hotpluggable range instead of hardcoded range (0,-1)
     in fill_list()
   - use %pR specifier in error message
   - do not call unpopulated_init() at runtime from xen_alloc_unpopulated_pages(),
     drop an extra helper and call arch_xen_unpopulated_init() directly from __init()
   - include linux/ioport.h instead of forward declaration of struct resource
   - replace insert_resource() with request_resource() in fill_list()
   - add __init specifier to arch_xen_unpopulated_init()
---
 drivers/xen/unpopulated-alloc.c | 83 +++++++++++++++++++++++++++++++++++++----
 include/xen/xen.h               |  2 +
 2 files changed, 78 insertions(+), 7 deletions(-)

diff --git a/drivers/xen/unpopulated-alloc.c b/drivers/xen/unpopulated-alloc.c
index a03dc5b..07d3578 100644
--- a/drivers/xen/unpopulated-alloc.c
+++ b/drivers/xen/unpopulated-alloc.c
@@ -8,6 +8,7 @@
 
 #include <asm/page.h>
 
+#include <xen/balloon.h>
 #include <xen/page.h>
 #include <xen/xen.h>
 
@@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
 static struct page *page_list;
 static unsigned int list_count;
 
+static struct resource *target_resource;
+
+/*
+ * If arch is not happy with system "iomem_resource" being used for
+ * the region allocation it can provide it's own view by creating specific
+ * Xen resource with unused regions of guest physical address space provided
+ * by the hypervisor.
+ */
+int __weak __init arch_xen_unpopulated_init(struct resource **res)
+{
+	*res = &iomem_resource;
+
+	return 0;
+}
+
 static int fill_list(unsigned int nr_pages)
 {
 	struct dev_pagemap *pgmap;
-	struct resource *res;
+	struct resource *res, *tmp_res = NULL;
 	void *vaddr;
 	unsigned int i, alloc_pages = round_up(nr_pages, PAGES_PER_SECTION);
-	int ret = -ENOMEM;
+	struct range mhp_range;
+	int ret;
 
 	res = kzalloc(sizeof(*res), GFP_KERNEL);
 	if (!res)
@@ -30,14 +47,40 @@ static int fill_list(unsigned int nr_pages)
 	res->name = "Xen scratch";
 	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
 
-	ret = allocate_resource(&iomem_resource, res,
-				alloc_pages * PAGE_SIZE, 0, -1,
+	mhp_range = mhp_get_pluggable_range(true);
+
+	ret = allocate_resource(target_resource, res,
+				alloc_pages * PAGE_SIZE, mhp_range.start, mhp_range.end,
 				PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
 	if (ret < 0) {
 		pr_err("Cannot allocate new IOMEM resource\n");
 		goto err_resource;
 	}
 
+	/*
+	 * Reserve the region previously allocated from Xen resource to avoid
+	 * re-using it by someone else.
+	 */
+	if (target_resource != &iomem_resource) {
+		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
+		if (!res) {
+			ret = -ENOMEM;
+			goto err_insert;
+		}
+
+		tmp_res->name = res->name;
+		tmp_res->start = res->start;
+		tmp_res->end = res->end;
+		tmp_res->flags = res->flags;
+
+		ret = request_resource(&iomem_resource, tmp_res);
+		if (ret < 0) {
+			pr_err("Cannot request resource %pR (%d)\n", tmp_res, ret);
+			kfree(tmp_res);
+			goto err_insert;
+		}
+	}
+
 	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
 	if (!pgmap) {
 		ret = -ENOMEM;
@@ -95,6 +138,11 @@ static int fill_list(unsigned int nr_pages)
 err_memremap:
 	kfree(pgmap);
 err_pgmap:
+	if (tmp_res) {
+		release_resource(tmp_res);
+		kfree(tmp_res);
+	}
+err_insert:
 	release_resource(res);
 err_resource:
 	kfree(res);
@@ -112,6 +160,14 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 	unsigned int i;
 	int ret = 0;
 
+	/*
+	 * Fallback to default behavior if we do not have any suitable resource
+	 * to allocate required region from and as the result we won't be able to
+	 * construct pages.
+	 */
+	if (!target_resource)
+		return xen_alloc_ballooned_pages(nr_pages, pages);
+
 	mutex_lock(&list_lock);
 	if (list_count < nr_pages) {
 		ret = fill_list(nr_pages - list_count);
@@ -159,6 +215,11 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 {
 	unsigned int i;
 
+	if (!target_resource) {
+		xen_free_ballooned_pages(nr_pages, pages);
+		return;
+	}
+
 	mutex_lock(&list_lock);
 	for (i = 0; i < nr_pages; i++) {
 		pages[i]->zone_device_data = page_list;
@@ -169,9 +230,11 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 }
 EXPORT_SYMBOL(xen_free_unpopulated_pages);
 
-#ifdef CONFIG_XEN_PV
 static int __init init(void)
 {
+	int ret;
+
+#ifdef CONFIG_XEN_PV
 	unsigned int i;
 
 	if (!xen_domain())
@@ -196,8 +259,14 @@ static int __init init(void)
 			list_count++;
 		}
 	}
+#endif
 
-	return 0;
+	ret = arch_xen_unpopulated_init(&target_resource);
+	if (ret) {
+		pr_err("xen:unpopulated: Cannot initialize target resource\n");
+		target_resource = NULL;
+	}
+
+	return ret;
 }
 subsys_initcall(init);
-#endif
diff --git a/include/xen/xen.h b/include/xen/xen.h
index 86c5b37..a99bab8 100644
--- a/include/xen/xen.h
+++ b/include/xen/xen.h
@@ -55,6 +55,8 @@ extern u64 xen_saved_max_mem_size;
 #ifdef CONFIG_XEN_UNPOPULATED_ALLOC
 int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
 void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
+#include <linux/ioport.h>
+int arch_xen_unpopulated_init(struct resource **res);
 #else
 #include <xen/balloon.h>
 static inline int xen_alloc_unpopulated_pages(unsigned int nr_pages,
-- 
2.7.4



^ permalink raw reply related	[relevance 11%]

* [PATCH V3 3/6] xen/balloon: Bring alloc(free)_xenballooned_pages helpers back
  2021-11-24 20:53  6% [PATCH V3 0/6] xen: Add support of extended regions (safe ranges) on Arm Oleksandr Tyshchenko
@ 2021-11-24 20:53 23% ` Oleksandr Tyshchenko
  2021-11-24 23:36  5%   ` Stefano Stabellini
  2021-11-24 20:53 11% ` [PATCH V3 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource Oleksandr Tyshchenko
  1 sibling, 1 reply; 200+ results
From: Oleksandr Tyshchenko @ 2021-11-24 20:53 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Oleksandr Tyshchenko, Boris Ostrovsky, Juergen Gross,
	Stefano Stabellini, Julien Grall

From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>

This patch rolls back some of the changes introduced by commit
121f2faca2c0a "xen/balloon: rename alloc/free_xenballooned_pages"
in order to make possible to still allocate xenballooned pages
if CONFIG_XEN_UNPOPULATED_ALLOC is enabled.

On Arm the unpopulated pages will be allocated on top of extended
regions provided by Xen via device-tree (the subsequent patches
will add required bits to support unpopulated-alloc feature on Arm).
The problem is that extended regions feature has been introduced
into Xen quite recently (during 4.16 release cycle). So this
effectively means that Linux must only use unpopulated-alloc on Arm
if it is running on "new Xen" which advertises these regions.
But, it will only be known after parsing the "hypervisor" node
at boot time, so before doing that we cannot assume anything.

In order to keep working if CONFIG_XEN_UNPOPULATED_ALLOC is enabled
and the extended regions are not advertised (Linux is running on
"old Xen", etc) we need the fallback to alloc_xenballooned_pages().

This way we wouldn't reduce the amount of memory usable (wasting
RAM pages) for any of the external mappings anymore (and eliminate
XSA-300) with "new Xen", but would be still functional ballooning
out RAM pages with "old Xen".

Also rename alloc(free)_xenballooned_pages to xen_alloc(free)_ballooned_pages
and make xen_alloc(free)_unpopulated_pages static inline in xen.h
if CONFIG_XEN_UNPOPULATED_ALLOC is disabled.

Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
---
@Stefano, I decided to retain your R-b after making a minor
change (make xen_alloc(free)_unpopulated_pages static inline
in xen.h if CONFIG_XEN_UNPOPULATED_ALLOC is disabled).
Please let me know if you think otherwise.

Changes V2 -> V3:
   - new patch
---
 drivers/xen/balloon.c | 20 +++++++++-----------
 include/xen/balloon.h |  3 +++
 include/xen/xen.h     | 14 ++++++++++++++
 3 files changed, 26 insertions(+), 11 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index ba2ea11..a2c4fc49 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -581,7 +581,6 @@ void balloon_set_new_target(unsigned long target)
 }
 EXPORT_SYMBOL_GPL(balloon_set_new_target);
 
-#ifndef CONFIG_XEN_UNPOPULATED_ALLOC
 static int add_ballooned_pages(unsigned int nr_pages)
 {
 	enum bp_state st;
@@ -610,12 +609,12 @@ static int add_ballooned_pages(unsigned int nr_pages)
 }
 
 /**
- * xen_alloc_unpopulated_pages - get pages that have been ballooned out
+ * xen_alloc_ballooned_pages - get pages that have been ballooned out
  * @nr_pages: Number of pages to get
  * @pages: pages returned
  * @return 0 on success, error otherwise
  */
-int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
+int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages)
 {
 	unsigned int pgno = 0;
 	struct page *page;
@@ -652,23 +651,23 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 	return 0;
  out_undo:
 	mutex_unlock(&balloon_mutex);
-	xen_free_unpopulated_pages(pgno, pages);
+	xen_free_ballooned_pages(pgno, pages);
 	/*
-	 * NB: free_xenballooned_pages will only subtract pgno pages, but since
+	 * NB: xen_free_ballooned_pages will only subtract pgno pages, but since
 	 * target_unpopulated is incremented with nr_pages at the start we need
 	 * to remove the remaining ones also, or accounting will be screwed.
 	 */
 	balloon_stats.target_unpopulated -= nr_pages - pgno;
 	return ret;
 }
-EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
+EXPORT_SYMBOL(xen_alloc_ballooned_pages);
 
 /**
- * xen_free_unpopulated_pages - return pages retrieved with get_ballooned_pages
+ * xen_free_ballooned_pages - return pages retrieved with get_ballooned_pages
  * @nr_pages: Number of pages
  * @pages: pages to return
  */
-void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
+void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages)
 {
 	unsigned int i;
 
@@ -687,9 +686,9 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 
 	mutex_unlock(&balloon_mutex);
 }
-EXPORT_SYMBOL(xen_free_unpopulated_pages);
+EXPORT_SYMBOL(xen_free_ballooned_pages);
 
-#if defined(CONFIG_XEN_PV)
+#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
 static void __init balloon_add_region(unsigned long start_pfn,
 				      unsigned long pages)
 {
@@ -712,7 +711,6 @@ static void __init balloon_add_region(unsigned long start_pfn,
 	balloon_stats.total_pages += extra_pfn_end - start_pfn;
 }
 #endif
-#endif
 
 static int __init balloon_init(void)
 {
diff --git a/include/xen/balloon.h b/include/xen/balloon.h
index e93d4f0..f78a6cc 100644
--- a/include/xen/balloon.h
+++ b/include/xen/balloon.h
@@ -26,6 +26,9 @@ extern struct balloon_stats balloon_stats;
 
 void balloon_set_new_target(unsigned long target);
 
+int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages);
+void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages);
+
 #ifdef CONFIG_XEN_BALLOON
 void xen_balloon_init(void);
 #else
diff --git a/include/xen/xen.h b/include/xen/xen.h
index 9f031b5..86c5b37 100644
--- a/include/xen/xen.h
+++ b/include/xen/xen.h
@@ -52,7 +52,21 @@ bool xen_biovec_phys_mergeable(const struct bio_vec *vec1,
 extern u64 xen_saved_max_mem_size;
 #endif
 
+#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
 int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
 void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
+#else
+#include <xen/balloon.h>
+static inline int xen_alloc_unpopulated_pages(unsigned int nr_pages,
+		struct page **pages)
+{
+	return xen_alloc_ballooned_pages(nr_pages, pages);
+}
+static inline void xen_free_unpopulated_pages(unsigned int nr_pages,
+		struct page **pages)
+{
+	xen_free_ballooned_pages(nr_pages, pages);
+}
+#endif
 
 #endif	/* _XEN_XEN_H */
-- 
2.7.4



^ permalink raw reply related	[relevance 23%]

* [PATCH V3 0/6] xen: Add support of extended regions (safe ranges) on Arm
@ 2021-11-24 20:53  6% Oleksandr Tyshchenko
  2021-11-24 20:53 23% ` [PATCH V3 3/6] xen/balloon: Bring alloc(free)_xenballooned_pages helpers back Oleksandr Tyshchenko
  2021-11-24 20:53 11% ` [PATCH V3 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource Oleksandr Tyshchenko
  0 siblings, 2 replies; 200+ results
From: Oleksandr Tyshchenko @ 2021-11-24 20:53 UTC (permalink / raw)
  To: xen-devel, linux-arm-kernel, linux-kernel
  Cc: Oleksandr Tyshchenko, Boris Ostrovsky, Juergen Gross,
	Stefano Stabellini, Russell King, Julien Grall

From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>

Hello all.

You can find the RFC-V2 patch series at [1],[2].

The corresponding Xen support (for both Dom0 and DomU) is already committed and
is available in mainline Xen since the following commit:
57f87857dc2de452a796d6bad4f476510efd2aba libxl/arm: Add handling of extended regions for DomU

The extended region (safe range) is a region of guest physical address space
which is unused and could be safely used to create grant/foreign mappings instead
of ballooning out real RAM pages to obtain a physical address space for creating
these mappings (which simply results in wasting domain memory and shattering super
pages in P2M table).

The problem is that we cannot follow Linux advise which memory ranges are unused
on Arm as there might be some identity mappings in P2M table (stage 2) the guest is not
aware of or not all device I/O regions might be known (registered) by the time the guest
starts creating grant/foreign mappings. This is why we need some hints from the hypervisor
which knows all details in advance to be able to choose extended regions (which won't
clash with other resources).

The extended regions are chosen at the domain creation time and advertised to it via
"reg" property under hypervisor node in the guest device-tree [3]. As region 0 is reserved
for grant table space (always present), the indexes for extended regions are 1...N.
No device tree bindings update is needed, guest infers the presence of extended regions
from the number of regions in "reg" property.

Please note the following:
- The ACPI case is not covered for now
- patch series was created in a way to retain existing behavior on x86

The patch series is based on v5.16-rc2 and also available at [4], it was fully
tested on Arm64.

[1] https://lore.kernel.org/all/1627490656-1267-1-git-send-email-olekstysh@gmail.com/
    https://lore.kernel.org/all/1627490656-1267-2-git-send-email-olekstysh@gmail.com/
    
[2] https://lore.kernel.org/all/1635264312-3796-1-git-send-email-olekstysh@gmail.com/

[3] https://xenbits.xen.org/gitweb/?p=xen.git;a=blob_plain;f=docs/misc/arm/device-tree/guest.txt;hb=refs/heads/master

[4] https://github.com/otyshchenko1/linux/commits/map_opt_ml6

Oleksandr Tyshchenko (6):
  xen/unpopulated-alloc: Drop check for virt_addr_valid() in fill_list()
  arm/xen: Switch to use gnttab_setup_auto_xlat_frames() for DT
  xen/balloon: Bring alloc(free)_xenballooned_pages helpers back
  xen/unpopulated-alloc: Add mechanism to use Xen resource
  arm/xen: Read extended regions from DT and init Xen resource
  dt-bindings: xen: Clarify "reg" purpose

 Documentation/devicetree/bindings/arm/xen.txt |  12 ++-
 arch/arm/xen/enlighten.c                      | 132 ++++++++++++++++++++++++--
 drivers/xen/Kconfig                           |   2 +-
 drivers/xen/balloon.c                         |  20 ++--
 drivers/xen/unpopulated-alloc.c               |  84 ++++++++++++++--
 include/xen/balloon.h                         |   3 +
 include/xen/xen.h                             |  16 ++++
 7 files changed, 239 insertions(+), 30 deletions(-)

-- 
2.7.4



^ permalink raw reply	[relevance 6%]

* Re: [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-11-24  5:16  0%               ` Juergen Gross
@ 2021-11-24  9:37  0%                 ` Oleksandr
  0 siblings, 0 replies; 200+ results
From: Oleksandr @ 2021-11-24  9:37 UTC (permalink / raw)
  To: Juergen Gross
  Cc: Stefano Stabellini, xen-devel, linux-kernel,
	Oleksandr Tyshchenko, Boris Ostrovsky, Julien Grall


On 24.11.21 07:16, Juergen Gross wrote:

Hi Juergen

> On 23.11.21 17:46, Oleksandr wrote:
>>
>> On 20.11.21 04:19, Stefano Stabellini wrote:
>>
>> Hi Stefano, Juergen, all
>>
>>
>>> Juergen please see the bottom of the email
>>>
>>> On Fri, 19 Nov 2021, Oleksandr wrote:
>>>> On 19.11.21 02:59, Stefano Stabellini wrote:
>>>>> On Tue, 9 Nov 2021, Oleksandr wrote:
>>>>>> On 28.10.21 19:37, Stefano Stabellini wrote:
>>>>>>
>>>>>> Hi Stefano
>>>>>>
>>>>>> I am sorry for the late response.
>>>>>>
>>>>>>> On Tue, 26 Oct 2021, Oleksandr Tyshchenko wrote:
>>>>>>>> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>>>>>>>>
>>>>>>>> The main reason of this change is that unpopulated-alloc
>>>>>>>> code cannot be used in its current form on Arm, but there
>>>>>>>> is a desire to reuse it to avoid wasting real RAM pages
>>>>>>>> for the grant/foreign mappings.
>>>>>>>>
>>>>>>>> The problem is that system "iomem_resource" is used for
>>>>>>>> the address space allocation, but the really unallocated
>>>>>>>> space can't be figured out precisely by the domain on Arm
>>>>>>>> without hypervisor involvement. For example, not all device
>>>>>>>> I/O regions are known by the time domain starts creating
>>>>>>>> grant/foreign mappings. And following the advise from
>>>>>>>> "iomem_resource" we might end up reusing these regions by
>>>>>>>> a mistake. So, the hypervisor which maintains the P2M for
>>>>>>>> the domain is in the best position to provide unused regions
>>>>>>>> of guest physical address space which could be safely used
>>>>>>>> to create grant/foreign mappings.
>>>>>>>>
>>>>>>>> Introduce new helper arch_xen_unpopulated_init() which purpose
>>>>>>>> is to create specific Xen resource based on the memory regions
>>>>>>>> provided by the hypervisor to be used as unused space for Xen
>>>>>>>> scratch pages.
>>>>>>>>
>>>>>>>> If arch doesn't implement arch_xen_unpopulated_init() to
>>>>>>>> initialize Xen resource the default "iomem_resource" will be used.
>>>>>>>> So the behavior on x86 won't be changed.
>>>>>>>>
>>>>>>>> Also fall back to allocate xenballooned pages (steal real RAM
>>>>>>>> pages) if we do not have any suitable resource to work with and
>>>>>>>> as the result we won't be able to provide unpopulated pages.
>>>>>>>>
>>>>>>>> Signed-off-by: Oleksandr Tyshchenko 
>>>>>>>> <oleksandr_tyshchenko@epam.com>
>>>>>>>> ---
>>>>>>>> Changes RFC -> V2:
>>>>>>>>       - new patch, instead of
>>>>>>>>        "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to
>>>>>>>> provide
>>>>>>>> unallocated space"
>>>>>>>> ---
>>>>>>>>     drivers/xen/unpopulated-alloc.c | 89
>>>>>>>> +++++++++++++++++++++++++++++++++++++++--
>>>>>>>>     include/xen/xen.h               |  2 +
>>>>>>>>     2 files changed, 88 insertions(+), 3 deletions(-)
>>>>>>>>
>>>>>>>> diff --git a/drivers/xen/unpopulated-alloc.c
>>>>>>>> b/drivers/xen/unpopulated-alloc.c
>>>>>>>> index a03dc5b..1f1d8d8 100644
>>>>>>>> --- a/drivers/xen/unpopulated-alloc.c
>>>>>>>> +++ b/drivers/xen/unpopulated-alloc.c
>>>>>>>> @@ -8,6 +8,7 @@
>>>>>>>>       #include <asm/page.h>
>>>>>>>>     +#include <xen/balloon.h>
>>>>>>>>     #include <xen/page.h>
>>>>>>>>     #include <xen/xen.h>
>>>>>>>>     @@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
>>>>>>>>     static struct page *page_list;
>>>>>>>>     static unsigned int list_count;
>>>>>>>>     +static struct resource *target_resource;
>>>>>>>> +static struct resource xen_resource = {
>>>>>>>> +    .name = "Xen unused space",
>>>>>>>> +};
>>>>>>>> +
>>>>>>>> +/*
>>>>>>>> + * If arch is not happy with system "iomem_resource" being 
>>>>>>>> used for
>>>>>>>> + * the region allocation it can provide it's own view by 
>>>>>>>> initializing
>>>>>>>> + * "xen_resource" with unused regions of guest physical 
>>>>>>>> address space
>>>>>>>> + * provided by the hypervisor.
>>>>>>>> + */
>>>>>>>> +int __weak arch_xen_unpopulated_init(struct resource *res)
>>>>>>>> +{
>>>>>>>> +    return -ENOSYS;
>>>>>>>> +}
>>>>>>>> +
>>>>>>>>     static int fill_list(unsigned int nr_pages)
>>>>>>>>     {
>>>>>>>>         struct dev_pagemap *pgmap;
>>>>>>>> -    struct resource *res;
>>>>>>>> +    struct resource *res, *tmp_res = NULL;
>>>>>>>>         void *vaddr;
>>>>>>>>         unsigned int i, alloc_pages = round_up(nr_pages,
>>>>>>>> PAGES_PER_SECTION);
>>>>>>>> -    int ret = -ENOMEM;
>>>>>>>> +    int ret;
>>>>>>>>           res = kzalloc(sizeof(*res), GFP_KERNEL);
>>>>>>>>         if (!res)
>>>>>>>> @@ -30,7 +47,7 @@ static int fill_list(unsigned int nr_pages)
>>>>>>>>         res->name = "Xen scratch";
>>>>>>>>         res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
>>>>>>>>     -    ret = allocate_resource(&iomem_resource, res,
>>>>>>>> +    ret = allocate_resource(target_resource, res,
>>>>>>>>                     alloc_pages * PAGE_SIZE, 0, -1,
>>>>>>>>                     PAGES_PER_SECTION * PAGE_SIZE, NULL,
>>>>>>>> NULL);
>>>>>>>>         if (ret < 0) {
>>>>>>>> @@ -38,6 +55,31 @@ static int fill_list(unsigned int nr_pages)
>>>>>>>>             goto err_resource;
>>>>>>>>         }
>>>>>>>>     +    /*
>>>>>>>> +     * Reserve the region previously allocated from Xen resource
>>>>>>>> to avoid
>>>>>>>> +     * re-using it by someone else.
>>>>>>>> +     */
>>>>>>>> +    if (target_resource != &iomem_resource) {
>>>>>>>> +        tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
>>>>>>>> +        if (!res) {
>>>>>>>> +            ret = -ENOMEM;
>>>>>>>> +            goto err_insert;
>>>>>>>> +        }
>>>>>>>> +
>>>>>>>> +        tmp_res->name = res->name;
>>>>>>>> +        tmp_res->start = res->start;
>>>>>>>> +        tmp_res->end = res->end;
>>>>>>>> +        tmp_res->flags = res->flags;
>>>>>>>> +
>>>>>>>> +        ret = insert_resource(&iomem_resource, tmp_res);
>>>>>>>> +        if (ret < 0) {
>>>>>>>> +            pr_err("Cannot insert IOMEM resource [%llx -
>>>>>>>> %llx]\n",
>>>>>>>> +                   tmp_res->start, tmp_res->end);
>>>>>>>> +            kfree(tmp_res);
>>>>>>>> +            goto err_insert;
>>>>>>>> +        }
>>>>>>>> +    }
>>>>>>> I am a bit confused.. why do we need to do this? Who could be
>>>>>>> erroneously re-using the region? Are you saying that the next time
>>>>>>> allocate_resource is called it could find the same region again? It
>>>>>>> doesn't seem possible?
>>>>>> No, as I understand the allocate_resource() being called for the 
>>>>>> same root
>>>>>> resource won't provide the same region... We only need to do this 
>>>>>> (insert
>>>>>> the
>>>>>> region into "iomem_resource") if we allocated it from our *internal*
>>>>>> "xen_resource", as *global* "iomem_resource" (which is used 
>>>>>> everywhere) is
>>>>>> not
>>>>>> aware of that region has been already allocated. So inserting a 
>>>>>> region
>>>>>> here we
>>>>>> reserving it, otherwise it could be reused elsewhere.
>>>>> But elsewhere where?
>>>> I think, theoretically everywhere where 
>>>> allocate_resource(&iomem_resource,
>>>> ...) is called.
>>>>
>>>>
>>>>> Let's say that allocate_resource allocates a range from xen_resource.
>>>>>   From reading the code, it doesn't look like iomem_resource would 
>>>>> have
>>>>> that range because the extended regions described under 
>>>>> /hypervisor are
>>>>> not added automatically to iomem_resource.
>>>>>
>>>>> So what if we don't call insert_resource? Nothing could allocate the
>>>>> same range because iomem_resource doesn't have it at all and
>>>>> xen_resource is not used anywhere if not here.
>>>>>
>>>>> What am I missing?
>>>>
>>>> Below my understanding which, of course, might be wrong.
>>>>
>>>> If we don't claim resource by calling insert_resource (or even
>>>> request_resource) here then the same range could be allocated 
>>>> everywhere where
>>>> allocate_resource(&iomem_resource, ...) is called.
>>>> I don't see what prevents the same range from being allocated. Why 
>>>> actually
>>>> allocate_resource(&iomem_resource, ...) can't provide the same 
>>>> range if it is
>>>> free (not-reserved-yet) from it's PoV? The comment above 
>>>> allocate_resource()
>>>> says "allocate empty slot in the resource tree given range & 
>>>> alignment". So
>>>> this "empty slot" could be exactly the same range.
>>>>
>>>> I experimented with that a bit trying to call
>>>> allocate_resource(&iomem_resource, ...) several times in another 
>>>> place to see
>>>> what ranges it returns in both cases (w/ and w/o calling 
>>>> insert_resource
>>>> here). So an experiment confirmed (of course, if I made it 
>>>> correctly) that the
>>>> same range could be allocated if we didn't call insert_resource() 
>>>> here. And as
>>>> I understand there is nothing strange here, as iomem_resource 
>>>> covers all
>>>> address space initially (0, -1) and everything *not* 
>>>> inserted/requested (in
>>>> other words, reserved) yet is considered as free and could be 
>>>> provided if fits
>>>> constraints. Or I really missed something?
>>> Thanks for the explanation! It was me that didn't know that
>>> iomem_resource covers all the address space initially. I thought it was
>>> populated only with actual iomem ranges. Now it makes sense, thanks!
>>>
>>>
>>>> It feels to me that it would be better to call request_resource() 
>>>> instead of
>>>> insert_resource(). It seems, that if no conflict happens both 
>>>> functions will
>>>> behave in same way, but in case of conflict if the conflicting 
>>>> resource
>>>> entirely fit the new resource the former will return an error. I 
>>>> think, this
>>>> way we will be able to detect that a range we are trying to reserve 
>>>> is already
>>>> present and bail out early.
>>>>
>>>>
>>>>> Or maybe it is the other way around: core Linux code assumes 
>>>>> everything
>>>>> is described in iomem_resource so something under kernel/ or mm/ 
>>>>> would
>>>>> crash if we start using a page pointing to an address missing from
>>>>> iomem_resource?
>>>>>>>>         pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
>>>>>>>>         if (!pgmap) {
>>>>>>>>             ret = -ENOMEM;
>>>>>>>> @@ -95,12 +137,40 @@ static int fill_list(unsigned int nr_pages)
>>>>>>>>     err_memremap:
>>>>>>>>         kfree(pgmap);
>>>>>>>>     err_pgmap:
>>>>>>>> +    if (tmp_res) {
>>>>>>>> +        release_resource(tmp_res);
>>>>>>>> +        kfree(tmp_res);
>>>>>>>> +    }
>>>>>>>> +err_insert:
>>>>>>>>         release_resource(res);
>>>>>>>>     err_resource:
>>>>>>>>         kfree(res);
>>>>>>>>         return ret;
>>>>>>>>     }
>>>>>>>>     +static void unpopulated_init(void)
>>>>>>>> +{
>>>>>>>> +    static bool inited = false;
>>>>>>> initialized = false
>>>>>> ok.
>>>>>>
>>>>>>
>>>>>>>> +    int ret;
>>>>>>>> +
>>>>>>>> +    if (inited)
>>>>>>>> +        return;
>>>>>>>> +
>>>>>>>> +    /*
>>>>>>>> +     * Try to initialize Xen resource the first and fall back to
>>>>>>>> default
>>>>>>>> +     * resource if arch doesn't offer one.
>>>>>>>> +     */
>>>>>>>> +    ret = arch_xen_unpopulated_init(&xen_resource);
>>>>>>>> +    if (!ret)
>>>>>>>> +        target_resource = &xen_resource;
>>>>>>>> +    else if (ret == -ENOSYS)
>>>>>>>> +        target_resource = &iomem_resource;
>>>>>>>> +    else
>>>>>>>> +        pr_err("Cannot initialize Xen resource\n");
>>>>>>>> +
>>>>>>>> +    inited = true;
>>>>>>>> +}
>>>>>>> Would it make sense to call unpopulated_init from an init function,
>>>>>>> rather than every time xen_alloc_unpopulated_pages is called?
>>>>>> Good point, thank you. Will do. To be honest, I also don't like the
>>>>>> current
>>>>>> approach much.
>>>>>>
>>>>>>
>>>>>>>>     /**
>>>>>>>>      * xen_alloc_unpopulated_pages - alloc unpopulated pages
>>>>>>>>      * @nr_pages: Number of pages
>>>>>>>> @@ -112,6 +182,16 @@ int xen_alloc_unpopulated_pages(unsigned int
>>>>>>>> nr_pages, struct page **pages)
>>>>>>>>         unsigned int i;
>>>>>>>>         int ret = 0;
>>>>>>>>     +    unpopulated_init();
>>>>>>>> +
>>>>>>>> +    /*
>>>>>>>> +     * Fall back to default behavior if we do not have any
>>>>>>>> suitable
>>>>>>>> resource
>>>>>>>> +     * to allocate required region from and as the result we 
>>>>>>>> won't
>>>>>>>> be able
>>>>>>>> to
>>>>>>>> +     * construct pages.
>>>>>>>> +     */
>>>>>>>> +    if (!target_resource)
>>>>>>>> +        return alloc_xenballooned_pages(nr_pages, pages);
>>>>>>> The commit message says that the behavior on x86 doesn't change 
>>>>>>> but this
>>>>>>> seems to be a change that could impact x86?
>>>>>> I don't think, however I didn't tested on x86 and might be wrong, 
>>>>>> but
>>>>>> according to the current patch, on x86 the "target_resource" is 
>>>>>> always
>>>>>> valid
>>>>>> and points to the "iomem_resource" as arch_xen_unpopulated_init() 
>>>>>> is not
>>>>>> implemented. So there won't be any fallback to use
>>>>>> alloc_(free)_xenballooned_pages() here and fill_list() will 
>>>>>> behave as
>>>>>> usual.
>>>>>    If target_resource is always valid, then we don't need this 
>>>>> special
>>>>> check. In fact, the condition should never be true.
>>>>
>>>> The target_resource is always valid and points to the 
>>>> "iomem_resource" on x86
>>>> (this is equivalent to the behavior before this patch).
>>>> On Arm target_resource might be NULL if arch_xen_unpopulated_init() 
>>>> failed,
>>>> for example, if no extended regions reported by the hypervisor.
>>>> We cannot use "iomem_resource" on Arm, only a resource constructed 
>>>> from
>>>> extended regions. This is why I added that check (and fallback to 
>>>> xenballooned
>>>> pages).
>>>> What I was thinking is that in case of using old Xen (although we 
>>>> would need
>>>> to balloon out RAM pages) we still would be able to keep working, 
>>>> so no need
>>>> to disable CONFIG_XEN_UNPOPULATED_ALLOC on such setups.
>>>>>> You raised a really good question, on Arm we need a fallback to 
>>>>>> balloon
>>>>>> out
>>>>>> RAM pages again if hypervisor doesn't provide extended regions 
>>>>>> (we run on
>>>>>> old
>>>>>> version, no unused regions with reasonable size, etc), so I 
>>>>>> decided to put
>>>>>> a
>>>>>> fallback code here, an indicator of the failure is invalid
>>>>>> "target_resource".
>>>>> I think it is unnecessary as we already assume today that
>>>>> &iomem_resource is always available.
>>>>>> I noticed the patch which is about to be upstreamed that removes
>>>>>> alloc_(free)xenballooned_pages API [1]. Right now I have no idea 
>>>>>> how/where
>>>>>> this fallback could be implemented as this is under build option 
>>>>>> control
>>>>>> (CONFIG_XEN_UNPOPULATED_ALLOC). So the API with the same name is 
>>>>>> either
>>>>>> used
>>>>>> for unpopulated pages (if set) or ballooned pages (if not set). I 
>>>>>> would
>>>>>> appreciate suggestions regarding that. I am wondering would it be 
>>>>>> possible
>>>>>> and
>>>>>> correctly to have both mechanisms (unpopulated and ballooned) 
>>>>>> enabled by
>>>>>> default and some init code to decide which one to use at runtime 
>>>>>> or some
>>>>>> sort?
>>>>> I would keep it simple and remove the fallback from this patch. So:
>>>>>
>>>>> - if not CONFIG_XEN_UNPOPULATED_ALLOC, then balloon
>>>>> - if CONFIG_XEN_UNPOPULATED_ALLOC, then
>>>>>       - xen_resource if present
>>>>>       - otherwise iomem_resource
>>>> Unfortunately, we cannot use iomem_resource on Arm safely, either 
>>>> xen_resource
>>>> or fail (if no fallback exists).
>>>>
>>>>
>>>>> The xen_resource/iomem_resource config can be done at init time using
>>>>> target_resource. At runtime, target_resource is always != NULL so we
>>>>> just go ahead and use it.
>>>>
>>>> Thank you for the suggestion. OK, let's keep it simple and drop 
>>>> fallback
>>>> attempts for now. With one remark:
>>>> We will make CONFIG_XEN_UNPOPULATED_ALLOC disabled by default on 
>>>> Arm in next
>>>> patch. So by default everything will behave as usual on Arm 
>>>> (balloon out RAM
>>>> pages),
>>>> if user knows for sure that Xen reports extended regions, he/she 
>>>> can enable
>>>> the config. This way we won't break anything. What do you think?
>>> Actually after reading your replies and explanation I changed 
>>> opinion: I
>>> think we do need the fallback because Linux cannot really assume that
>>> it is running on "new Xen" so it definitely needs to keep working if
>>> CONFIG_XEN_UNPOPULATED_ALLOC is enabled and the extended regions are 
>>> not
>>> advertised.
>>>
>>> I think we'll have to roll back some of the changes introduced by
>>> 121f2faca2c0a. That's because even if CONFIG_XEN_UNPOPULATED_ALLOC is
>>> enabled we cannot know if we can use unpopulated-alloc or whether we
>>> have to use alloc_xenballooned_pages until we parse the /hypervisor 
>>> node
>>> in device tree at runtime.
>>
>> Exactly!
>>
>>
>>>
>>> In short, we cannot switch between unpopulated-alloc and
>>> alloc_xenballooned_pages at build time, we have to do it at runtime
>>> (boot time).
>>
>> +1
>>
>>
>> I created a patch to partially revert 121f2faca2c0a "xen/balloon: 
>> rename alloc/free_xenballooned_pages".
>>
>> If there is no objections I will add it to V3 (which is almost ready, 
>> except the fallback bits). Could you please tell me what do you think?
>>
>>
>>  From dc79bcd425358596d95e715a8bd8b81deaaeb703 Mon Sep 17 00:00:00 2001
>> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>> Date: Tue, 23 Nov 2021 18:14:41 +0200
>> Subject: [PATCH] xen/balloon: Bring alloc(free)_xenballooned_pages 
>> helpers
>>   back
>>
>> This patch rolls back some of the changes introduced by commit
>> 121f2faca2c0a "xen/balloon: rename alloc/free_xenballooned_pages"
>> in order to make possible to still allocate xenballooned pages
>> if CONFIG_XEN_UNPOPULATED_ALLOC is enabled.
>>
>> On Arm the unpopulated pages will be allocated on top of extended
>> regions provided by Xen via device-tree (the subsequent patches
>> will add required bits to support unpopulated-alloc feature on Arm).
>> The problem is that extended regions feature has been introduced
>> into Xen quite recently (during 4.16 release cycle). So this
>> effectively means that Linux must only use unpopulated-alloc on Arm
>> if it is running on "new Xen" which advertises these regions.
>> But, it will only be known after parsing the "hypervisor" node
>> at boot time, so before doing that we cannot assume anything.
>>
>> In order to keep working if CONFIG_XEN_UNPOPULATED_ALLOC is enabled
>> and the extended regions are not advertised (Linux is running on
>> "old Xen", etc) we need the fallback to alloc_xenballooned_pages().
>>
>> This way we wouldn't reduce the amount of memory usable (wasting
>> RAM pages) for any of the external mappings anymore (and eliminate
>> XSA-300) with "new Xen", but would be still functional ballooning
>> out RAM pages with "old Xen".
>>
>> Also rename alloc(free)_xenballooned_pages to 
>> xen_alloc(free)_ballooned_pages.
>>
>> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>> ---
>>   drivers/xen/balloon.c | 20 +++++++++-----------
>>   include/xen/balloon.h |  3 +++
>>   include/xen/xen.h     |  6 ++++++
>>   3 files changed, 18 insertions(+), 11 deletions(-)
>>
>> diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
>> index ba2ea11..a2c4fc49 100644
>> --- a/drivers/xen/balloon.c
>> +++ b/drivers/xen/balloon.c
>> @@ -581,7 +581,6 @@ void balloon_set_new_target(unsigned long target)
>>   }
>>   EXPORT_SYMBOL_GPL(balloon_set_new_target);
>>
>> -#ifndef CONFIG_XEN_UNPOPULATED_ALLOC
>>   static int add_ballooned_pages(unsigned int nr_pages)
>>   {
>>       enum bp_state st;
>> @@ -610,12 +609,12 @@ static int add_ballooned_pages(unsigned int 
>> nr_pages)
>>   }
>>
>>   /**
>> - * xen_alloc_unpopulated_pages - get pages that have been ballooned out
>> + * xen_alloc_ballooned_pages - get pages that have been ballooned out
>>    * @nr_pages: Number of pages to get
>>    * @pages: pages returned
>>    * @return 0 on success, error otherwise
>>    */
>> -int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page 
>> **pages)
>> +int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page 
>> **pages)
>>   {
>>       unsigned int pgno = 0;
>>       struct page *page;
>> @@ -652,23 +651,23 @@ int xen_alloc_unpopulated_pages(unsigned int 
>> nr_pages, struct page **pages)
>>       return 0;
>>    out_undo:
>>       mutex_unlock(&balloon_mutex);
>> -    xen_free_unpopulated_pages(pgno, pages);
>> +    xen_free_ballooned_pages(pgno, pages);
>>       /*
>> -     * NB: free_xenballooned_pages will only subtract pgno pages, 
>> but since
>> +     * NB: xen_free_ballooned_pages will only subtract pgno pages, 
>> but since
>>        * target_unpopulated is incremented with nr_pages at the start 
>> we need
>>        * to remove the remaining ones also, or accounting will be 
>> screwed.
>>        */
>>       balloon_stats.target_unpopulated -= nr_pages - pgno;
>>       return ret;
>>   }
>> -EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
>> +EXPORT_SYMBOL(xen_alloc_ballooned_pages);
>>
>>   /**
>> - * xen_free_unpopulated_pages - return pages retrieved with 
>> get_ballooned_pages
>> + * xen_free_ballooned_pages - return pages retrieved with 
>> get_ballooned_pages
>>    * @nr_pages: Number of pages
>>    * @pages: pages to return
>>    */
>> -void xen_free_unpopulated_pages(unsigned int nr_pages, struct page 
>> **pages)
>> +void xen_free_ballooned_pages(unsigned int nr_pages, struct page 
>> **pages)
>>   {
>>       unsigned int i;
>>
>> @@ -687,9 +686,9 @@ void xen_free_unpopulated_pages(unsigned int 
>> nr_pages, struct page **pages)
>>
>>       mutex_unlock(&balloon_mutex);
>>   }
>> -EXPORT_SYMBOL(xen_free_unpopulated_pages);
>> +EXPORT_SYMBOL(xen_free_ballooned_pages);
>>
>> -#if defined(CONFIG_XEN_PV)
>> +#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
>>   static void __init balloon_add_region(unsigned long start_pfn,
>>                         unsigned long pages)
>>   {
>> @@ -712,7 +711,6 @@ static void __init balloon_add_region(unsigned 
>> long start_pfn,
>>       balloon_stats.total_pages += extra_pfn_end - start_pfn;
>>   }
>>   #endif
>> -#endif
>>
>>   static int __init balloon_init(void)
>>   {
>> diff --git a/include/xen/balloon.h b/include/xen/balloon.h
>> index e93d4f0..f78a6cc 100644
>> --- a/include/xen/balloon.h
>> +++ b/include/xen/balloon.h
>> @@ -26,6 +26,9 @@ extern struct balloon_stats balloon_stats;
>>
>>   void balloon_set_new_target(unsigned long target);
>>
>> +int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page 
>> **pages);
>> +void xen_free_ballooned_pages(unsigned int nr_pages, struct page 
>> **pages);
>> +
>>   #ifdef CONFIG_XEN_BALLOON
>>   void xen_balloon_init(void);
>>   #else
>> diff --git a/include/xen/xen.h b/include/xen/xen.h
>> index 9f031b5..410e3e4 100644
>> --- a/include/xen/xen.h
>> +++ b/include/xen/xen.h
>> @@ -52,7 +52,13 @@ bool xen_biovec_phys_mergeable(const struct 
>> bio_vec *vec1,
>>   extern u64 xen_saved_max_mem_size;
>>   #endif
>>
>> +#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
>>   int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page 
>> **pages);
>>   void xen_free_unpopulated_pages(unsigned int nr_pages, struct page 
>> **pages);
>> +#else
>> +#define xen_alloc_unpopulated_pages xen_alloc_ballooned_pages
>> +#define xen_free_unpopulated_pages xen_free_ballooned_pages
>
> Could you please make those inline functions instead?

Sure, will make.


>
>
> Other than that I'm fine with the approach.

Great, thank you!


>
>
> Juergen

-- 
Regards,

Oleksandr Tyshchenko



^ permalink raw reply	[relevance 0%]

* Re: [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-11-23 21:25  0%               ` Stefano Stabellini
@ 2021-11-24  9:33  0%                 ` Oleksandr
  0 siblings, 0 replies; 200+ results
From: Oleksandr @ 2021-11-24  9:33 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: jgross, xen-devel, linux-kernel, Oleksandr Tyshchenko,
	Boris Ostrovsky, Julien Grall


On 23.11.21 23:25, Stefano Stabellini wrote:

Hi Stefano

> On Tue, 23 Nov 2021, Oleksandr wrote:
>>> Actually after reading your replies and explanation I changed opinion: I
>>> think we do need the fallback because Linux cannot really assume that
>>> it is running on "new Xen" so it definitely needs to keep working if
>>> CONFIG_XEN_UNPOPULATED_ALLOC is enabled and the extended regions are not
>>> advertised.
>>>
>>> I think we'll have to roll back some of the changes introduced by
>>> 121f2faca2c0a. That's because even if CONFIG_XEN_UNPOPULATED_ALLOC is
>>> enabled we cannot know if we can use unpopulated-alloc or whether we
>>> have to use alloc_xenballooned_pages until we parse the /hypervisor node
>>> in device tree at runtime.
>> Exactly!
>>
>>
>>> In short, we cannot switch between unpopulated-alloc and
>>> alloc_xenballooned_pages at build time, we have to do it at runtime
>>> (boot time).
>> +1
>>
>>
>> I created a patch to partially revert 121f2faca2c0a "xen/balloon: rename
>> alloc/free_xenballooned_pages".
>>
>> If there is no objections I will add it to V3 (which is almost ready, except
>> the fallback bits). Could you please tell me what do you think?
>   
> It makes sense to me. You can add my Reviewed-by.

Great, thank you!


>
>   
>>  From dc79bcd425358596d95e715a8bd8b81deaaeb703 Mon Sep 17 00:00:00 2001
>> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>> Date: Tue, 23 Nov 2021 18:14:41 +0200
>> Subject: [PATCH] xen/balloon: Bring alloc(free)_xenballooned_pages helpers
>>   back
>>
>> This patch rolls back some of the changes introduced by commit
>> 121f2faca2c0a "xen/balloon: rename alloc/free_xenballooned_pages"
>> in order to make possible to still allocate xenballooned pages
>> if CONFIG_XEN_UNPOPULATED_ALLOC is enabled.
>>
>> On Arm the unpopulated pages will be allocated on top of extended
>> regions provided by Xen via device-tree (the subsequent patches
>> will add required bits to support unpopulated-alloc feature on Arm).
>> The problem is that extended regions feature has been introduced
>> into Xen quite recently (during 4.16 release cycle). So this
>> effectively means that Linux must only use unpopulated-alloc on Arm
>> if it is running on "new Xen" which advertises these regions.
>> But, it will only be known after parsing the "hypervisor" node
>> at boot time, so before doing that we cannot assume anything.
>>
>> In order to keep working if CONFIG_XEN_UNPOPULATED_ALLOC is enabled
>> and the extended regions are not advertised (Linux is running on
>> "old Xen", etc) we need the fallback to alloc_xenballooned_pages().
>>
>> This way we wouldn't reduce the amount of memory usable (wasting
>> RAM pages) for any of the external mappings anymore (and eliminate
>> XSA-300) with "new Xen", but would be still functional ballooning
>> out RAM pages with "old Xen".
>>
>> Also rename alloc(free)_xenballooned_pages to xen_alloc(free)_ballooned_pages.
>>
>> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>> ---
>>   drivers/xen/balloon.c | 20 +++++++++-----------
>>   include/xen/balloon.h |  3 +++
>>   include/xen/xen.h     |  6 ++++++
>>   3 files changed, 18 insertions(+), 11 deletions(-)
>>
>> diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
>> index ba2ea11..a2c4fc49 100644
>> --- a/drivers/xen/balloon.c
>> +++ b/drivers/xen/balloon.c
>> @@ -581,7 +581,6 @@ void balloon_set_new_target(unsigned long target)
>>   }
>>   EXPORT_SYMBOL_GPL(balloon_set_new_target);
>>
>> -#ifndef CONFIG_XEN_UNPOPULATED_ALLOC
>>   static int add_ballooned_pages(unsigned int nr_pages)
>>   {
>>       enum bp_state st;
>> @@ -610,12 +609,12 @@ static int add_ballooned_pages(unsigned int nr_pages)
>>   }
>>
>>   /**
>> - * xen_alloc_unpopulated_pages - get pages that have been ballooned out
>> + * xen_alloc_ballooned_pages - get pages that have been ballooned out
>>    * @nr_pages: Number of pages to get
>>    * @pages: pages returned
>>    * @return 0 on success, error otherwise
>>    */
>> -int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>> +int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages)
>>   {
>>       unsigned int pgno = 0;
>>       struct page *page;
>> @@ -652,23 +651,23 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages,
>> struct page **pages)
>>       return 0;
>>    out_undo:
>>       mutex_unlock(&balloon_mutex);
>> -    xen_free_unpopulated_pages(pgno, pages);
>> +    xen_free_ballooned_pages(pgno, pages);
>>       /*
>> -     * NB: free_xenballooned_pages will only subtract pgno pages, but since
>> +     * NB: xen_free_ballooned_pages will only subtract pgno pages, but since
>>        * target_unpopulated is incremented with nr_pages at the start we need
>>        * to remove the remaining ones also, or accounting will be screwed.
>>        */
>>       balloon_stats.target_unpopulated -= nr_pages - pgno;
>>       return ret;
>>   }
>> -EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
>> +EXPORT_SYMBOL(xen_alloc_ballooned_pages);
>>
>>   /**
>> - * xen_free_unpopulated_pages - return pages retrieved with
>> get_ballooned_pages
>> + * xen_free_ballooned_pages - return pages retrieved with get_ballooned_pages
>>    * @nr_pages: Number of pages
>>    * @pages: pages to return
>>    */
>> -void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>> +void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages)
>>   {
>>       unsigned int i;
>>
>> @@ -687,9 +686,9 @@ void xen_free_unpopulated_pages(unsigned int nr_pages,
>> struct page **pages)
>>
>>       mutex_unlock(&balloon_mutex);
>>   }
>> -EXPORT_SYMBOL(xen_free_unpopulated_pages);
>> +EXPORT_SYMBOL(xen_free_ballooned_pages);
>>
>> -#if defined(CONFIG_XEN_PV)
>> +#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
>>   static void __init balloon_add_region(unsigned long start_pfn,
>>                         unsigned long pages)
>>   {
>> @@ -712,7 +711,6 @@ static void __init balloon_add_region(unsigned long
>> start_pfn,
>>       balloon_stats.total_pages += extra_pfn_end - start_pfn;
>>   }
>>   #endif
>> -#endif
>>
>>   static int __init balloon_init(void)
>>   {
>> diff --git a/include/xen/balloon.h b/include/xen/balloon.h
>> index e93d4f0..f78a6cc 100644
>> --- a/include/xen/balloon.h
>> +++ b/include/xen/balloon.h
>> @@ -26,6 +26,9 @@ extern struct balloon_stats balloon_stats;
>>
>>   void balloon_set_new_target(unsigned long target);
>>
>> +int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages);
>> +void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages);
>> +
>>   #ifdef CONFIG_XEN_BALLOON
>>   void xen_balloon_init(void);
>>   #else
>> diff --git a/include/xen/xen.h b/include/xen/xen.h
>> index 9f031b5..410e3e4 100644
>> --- a/include/xen/xen.h
>> +++ b/include/xen/xen.h
>> @@ -52,7 +52,13 @@ bool xen_biovec_phys_mergeable(const struct bio_vec *vec1,
>>   extern u64 xen_saved_max_mem_size;
>>   #endif
>>
>> +#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
>>   int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
>>   void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
>> +#else
>> +#define xen_alloc_unpopulated_pages xen_alloc_ballooned_pages
>> +#define xen_free_unpopulated_pages xen_free_ballooned_pages
>> +#include <xen/balloon.h>
>> +#endif
>>
>>   #endif    /* _XEN_XEN_H */

-- 
Regards,

Oleksandr Tyshchenko



^ permalink raw reply	[relevance 0%]

* Re: [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-11-23 16:46 14%             ` Oleksandr
  2021-11-23 21:25  0%               ` Stefano Stabellini
@ 2021-11-24  5:16  0%               ` Juergen Gross
  2021-11-24  9:37  0%                 ` Oleksandr
  1 sibling, 1 reply; 200+ results
From: Juergen Gross @ 2021-11-24  5:16 UTC (permalink / raw)
  To: Oleksandr, Stefano Stabellini
  Cc: xen-devel, linux-kernel, Oleksandr Tyshchenko, Boris Ostrovsky,
	Julien Grall


[-- Attachment #1.1.1: Type: text/plain, Size: 23925 bytes --]

On 23.11.21 17:46, Oleksandr wrote:
> 
> On 20.11.21 04:19, Stefano Stabellini wrote:
> 
> Hi Stefano, Juergen, all
> 
> 
>> Juergen please see the bottom of the email
>>
>> On Fri, 19 Nov 2021, Oleksandr wrote:
>>> On 19.11.21 02:59, Stefano Stabellini wrote:
>>>> On Tue, 9 Nov 2021, Oleksandr wrote:
>>>>> On 28.10.21 19:37, Stefano Stabellini wrote:
>>>>>
>>>>> Hi Stefano
>>>>>
>>>>> I am sorry for the late response.
>>>>>
>>>>>> On Tue, 26 Oct 2021, Oleksandr Tyshchenko wrote:
>>>>>>> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>>>>>>>
>>>>>>> The main reason of this change is that unpopulated-alloc
>>>>>>> code cannot be used in its current form on Arm, but there
>>>>>>> is a desire to reuse it to avoid wasting real RAM pages
>>>>>>> for the grant/foreign mappings.
>>>>>>>
>>>>>>> The problem is that system "iomem_resource" is used for
>>>>>>> the address space allocation, but the really unallocated
>>>>>>> space can't be figured out precisely by the domain on Arm
>>>>>>> without hypervisor involvement. For example, not all device
>>>>>>> I/O regions are known by the time domain starts creating
>>>>>>> grant/foreign mappings. And following the advise from
>>>>>>> "iomem_resource" we might end up reusing these regions by
>>>>>>> a mistake. So, the hypervisor which maintains the P2M for
>>>>>>> the domain is in the best position to provide unused regions
>>>>>>> of guest physical address space which could be safely used
>>>>>>> to create grant/foreign mappings.
>>>>>>>
>>>>>>> Introduce new helper arch_xen_unpopulated_init() which purpose
>>>>>>> is to create specific Xen resource based on the memory regions
>>>>>>> provided by the hypervisor to be used as unused space for Xen
>>>>>>> scratch pages.
>>>>>>>
>>>>>>> If arch doesn't implement arch_xen_unpopulated_init() to
>>>>>>> initialize Xen resource the default "iomem_resource" will be used.
>>>>>>> So the behavior on x86 won't be changed.
>>>>>>>
>>>>>>> Also fall back to allocate xenballooned pages (steal real RAM
>>>>>>> pages) if we do not have any suitable resource to work with and
>>>>>>> as the result we won't be able to provide unpopulated pages.
>>>>>>>
>>>>>>> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>>>>>>> ---
>>>>>>> Changes RFC -> V2:
>>>>>>>       - new patch, instead of
>>>>>>>        "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to
>>>>>>> provide
>>>>>>> unallocated space"
>>>>>>> ---
>>>>>>>     drivers/xen/unpopulated-alloc.c | 89
>>>>>>> +++++++++++++++++++++++++++++++++++++++--
>>>>>>>     include/xen/xen.h               |  2 +
>>>>>>>     2 files changed, 88 insertions(+), 3 deletions(-)
>>>>>>>
>>>>>>> diff --git a/drivers/xen/unpopulated-alloc.c
>>>>>>> b/drivers/xen/unpopulated-alloc.c
>>>>>>> index a03dc5b..1f1d8d8 100644
>>>>>>> --- a/drivers/xen/unpopulated-alloc.c
>>>>>>> +++ b/drivers/xen/unpopulated-alloc.c
>>>>>>> @@ -8,6 +8,7 @@
>>>>>>>       #include <asm/page.h>
>>>>>>>     +#include <xen/balloon.h>
>>>>>>>     #include <xen/page.h>
>>>>>>>     #include <xen/xen.h>
>>>>>>>     @@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
>>>>>>>     static struct page *page_list;
>>>>>>>     static unsigned int list_count;
>>>>>>>     +static struct resource *target_resource;
>>>>>>> +static struct resource xen_resource = {
>>>>>>> +    .name = "Xen unused space",
>>>>>>> +};
>>>>>>> +
>>>>>>> +/*
>>>>>>> + * If arch is not happy with system "iomem_resource" being used for
>>>>>>> + * the region allocation it can provide it's own view by 
>>>>>>> initializing
>>>>>>> + * "xen_resource" with unused regions of guest physical address 
>>>>>>> space
>>>>>>> + * provided by the hypervisor.
>>>>>>> + */
>>>>>>> +int __weak arch_xen_unpopulated_init(struct resource *res)
>>>>>>> +{
>>>>>>> +    return -ENOSYS;
>>>>>>> +}
>>>>>>> +
>>>>>>>     static int fill_list(unsigned int nr_pages)
>>>>>>>     {
>>>>>>>         struct dev_pagemap *pgmap;
>>>>>>> -    struct resource *res;
>>>>>>> +    struct resource *res, *tmp_res = NULL;
>>>>>>>         void *vaddr;
>>>>>>>         unsigned int i, alloc_pages = round_up(nr_pages,
>>>>>>> PAGES_PER_SECTION);
>>>>>>> -    int ret = -ENOMEM;
>>>>>>> +    int ret;
>>>>>>>           res = kzalloc(sizeof(*res), GFP_KERNEL);
>>>>>>>         if (!res)
>>>>>>> @@ -30,7 +47,7 @@ static int fill_list(unsigned int nr_pages)
>>>>>>>         res->name = "Xen scratch";
>>>>>>>         res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
>>>>>>>     -    ret = allocate_resource(&iomem_resource, res,
>>>>>>> +    ret = allocate_resource(target_resource, res,
>>>>>>>                     alloc_pages * PAGE_SIZE, 0, -1,
>>>>>>>                     PAGES_PER_SECTION * PAGE_SIZE, NULL,
>>>>>>> NULL);
>>>>>>>         if (ret < 0) {
>>>>>>> @@ -38,6 +55,31 @@ static int fill_list(unsigned int nr_pages)
>>>>>>>             goto err_resource;
>>>>>>>         }
>>>>>>>     +    /*
>>>>>>> +     * Reserve the region previously allocated from Xen resource
>>>>>>> to avoid
>>>>>>> +     * re-using it by someone else.
>>>>>>> +     */
>>>>>>> +    if (target_resource != &iomem_resource) {
>>>>>>> +        tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
>>>>>>> +        if (!res) {
>>>>>>> +            ret = -ENOMEM;
>>>>>>> +            goto err_insert;
>>>>>>> +        }
>>>>>>> +
>>>>>>> +        tmp_res->name = res->name;
>>>>>>> +        tmp_res->start = res->start;
>>>>>>> +        tmp_res->end = res->end;
>>>>>>> +        tmp_res->flags = res->flags;
>>>>>>> +
>>>>>>> +        ret = insert_resource(&iomem_resource, tmp_res);
>>>>>>> +        if (ret < 0) {
>>>>>>> +            pr_err("Cannot insert IOMEM resource [%llx -
>>>>>>> %llx]\n",
>>>>>>> +                   tmp_res->start, tmp_res->end);
>>>>>>> +            kfree(tmp_res);
>>>>>>> +            goto err_insert;
>>>>>>> +        }
>>>>>>> +    }
>>>>>> I am a bit confused.. why do we need to do this? Who could be
>>>>>> erroneously re-using the region? Are you saying that the next time
>>>>>> allocate_resource is called it could find the same region again? It
>>>>>> doesn't seem possible?
>>>>> No, as I understand the allocate_resource() being called for the 
>>>>> same root
>>>>> resource won't provide the same region... We only need to do this 
>>>>> (insert
>>>>> the
>>>>> region into "iomem_resource") if we allocated it from our *internal*
>>>>> "xen_resource", as *global* "iomem_resource" (which is used 
>>>>> everywhere) is
>>>>> not
>>>>> aware of that region has been already allocated. So inserting a region
>>>>> here we
>>>>> reserving it, otherwise it could be reused elsewhere.
>>>> But elsewhere where?
>>> I think, theoretically everywhere where 
>>> allocate_resource(&iomem_resource,
>>> ...) is called.
>>>
>>>
>>>> Let's say that allocate_resource allocates a range from xen_resource.
>>>>   From reading the code, it doesn't look like iomem_resource would have
>>>> that range because the extended regions described under /hypervisor are
>>>> not added automatically to iomem_resource.
>>>>
>>>> So what if we don't call insert_resource? Nothing could allocate the
>>>> same range because iomem_resource doesn't have it at all and
>>>> xen_resource is not used anywhere if not here.
>>>>
>>>> What am I missing?
>>>
>>> Below my understanding which, of course, might be wrong.
>>>
>>> If we don't claim resource by calling insert_resource (or even
>>> request_resource) here then the same range could be allocated 
>>> everywhere where
>>> allocate_resource(&iomem_resource, ...) is called.
>>> I don't see what prevents the same range from being allocated. Why 
>>> actually
>>> allocate_resource(&iomem_resource, ...) can't provide the same range 
>>> if it is
>>> free (not-reserved-yet) from it's PoV? The comment above 
>>> allocate_resource()
>>> says "allocate empty slot in the resource tree given range & 
>>> alignment". So
>>> this "empty slot" could be exactly the same range.
>>>
>>> I experimented with that a bit trying to call
>>> allocate_resource(&iomem_resource, ...) several times in another 
>>> place to see
>>> what ranges it returns in both cases (w/ and w/o calling insert_resource
>>> here). So an experiment confirmed (of course, if I made it correctly) 
>>> that the
>>> same range could be allocated if we didn't call insert_resource() 
>>> here. And as
>>> I understand there is nothing strange here, as iomem_resource covers all
>>> address space initially (0, -1) and everything *not* 
>>> inserted/requested (in
>>> other words, reserved) yet is considered as free and could be 
>>> provided if fits
>>> constraints. Or I really missed something?
>> Thanks for the explanation! It was me that didn't know that
>> iomem_resource covers all the address space initially. I thought it was
>> populated only with actual iomem ranges. Now it makes sense, thanks!
>>
>>
>>> It feels to me that it would be better to call request_resource() 
>>> instead of
>>> insert_resource(). It seems, that if no conflict happens both 
>>> functions will
>>> behave in same way, but in case of conflict if the conflicting resource
>>> entirely fit the new resource the former will return an error. I 
>>> think, this
>>> way we will be able to detect that a range we are trying to reserve 
>>> is already
>>> present and bail out early.
>>>
>>>
>>>> Or maybe it is the other way around: core Linux code assumes everything
>>>> is described in iomem_resource so something under kernel/ or mm/ would
>>>> crash if we start using a page pointing to an address missing from
>>>> iomem_resource?
>>>>>>>         pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
>>>>>>>         if (!pgmap) {
>>>>>>>             ret = -ENOMEM;
>>>>>>> @@ -95,12 +137,40 @@ static int fill_list(unsigned int nr_pages)
>>>>>>>     err_memremap:
>>>>>>>         kfree(pgmap);
>>>>>>>     err_pgmap:
>>>>>>> +    if (tmp_res) {
>>>>>>> +        release_resource(tmp_res);
>>>>>>> +        kfree(tmp_res);
>>>>>>> +    }
>>>>>>> +err_insert:
>>>>>>>         release_resource(res);
>>>>>>>     err_resource:
>>>>>>>         kfree(res);
>>>>>>>         return ret;
>>>>>>>     }
>>>>>>>     +static void unpopulated_init(void)
>>>>>>> +{
>>>>>>> +    static bool inited = false;
>>>>>> initialized = false
>>>>> ok.
>>>>>
>>>>>
>>>>>>> +    int ret;
>>>>>>> +
>>>>>>> +    if (inited)
>>>>>>> +        return;
>>>>>>> +
>>>>>>> +    /*
>>>>>>> +     * Try to initialize Xen resource the first and fall back to
>>>>>>> default
>>>>>>> +     * resource if arch doesn't offer one.
>>>>>>> +     */
>>>>>>> +    ret = arch_xen_unpopulated_init(&xen_resource);
>>>>>>> +    if (!ret)
>>>>>>> +        target_resource = &xen_resource;
>>>>>>> +    else if (ret == -ENOSYS)
>>>>>>> +        target_resource = &iomem_resource;
>>>>>>> +    else
>>>>>>> +        pr_err("Cannot initialize Xen resource\n");
>>>>>>> +
>>>>>>> +    inited = true;
>>>>>>> +}
>>>>>> Would it make sense to call unpopulated_init from an init function,
>>>>>> rather than every time xen_alloc_unpopulated_pages is called?
>>>>> Good point, thank you. Will do. To be honest, I also don't like the
>>>>> current
>>>>> approach much.
>>>>>
>>>>>
>>>>>>>     /**
>>>>>>>      * xen_alloc_unpopulated_pages - alloc unpopulated pages
>>>>>>>      * @nr_pages: Number of pages
>>>>>>> @@ -112,6 +182,16 @@ int xen_alloc_unpopulated_pages(unsigned int
>>>>>>> nr_pages, struct page **pages)
>>>>>>>         unsigned int i;
>>>>>>>         int ret = 0;
>>>>>>>     +    unpopulated_init();
>>>>>>> +
>>>>>>> +    /*
>>>>>>> +     * Fall back to default behavior if we do not have any
>>>>>>> suitable
>>>>>>> resource
>>>>>>> +     * to allocate required region from and as the result we won't
>>>>>>> be able
>>>>>>> to
>>>>>>> +     * construct pages.
>>>>>>> +     */
>>>>>>> +    if (!target_resource)
>>>>>>> +        return alloc_xenballooned_pages(nr_pages, pages);
>>>>>> The commit message says that the behavior on x86 doesn't change 
>>>>>> but this
>>>>>> seems to be a change that could impact x86?
>>>>> I don't think, however I didn't tested on x86 and might be wrong, but
>>>>> according to the current patch, on x86 the "target_resource" is always
>>>>> valid
>>>>> and points to the "iomem_resource" as arch_xen_unpopulated_init() 
>>>>> is not
>>>>> implemented. So there won't be any fallback to use
>>>>> alloc_(free)_xenballooned_pages() here and fill_list() will behave as
>>>>> usual.
>>>>    If target_resource is always valid, then we don't need this special
>>>> check. In fact, the condition should never be true.
>>>
>>> The target_resource is always valid and points to the 
>>> "iomem_resource" on x86
>>> (this is equivalent to the behavior before this patch).
>>> On Arm target_resource might be NULL if arch_xen_unpopulated_init() 
>>> failed,
>>> for example, if no extended regions reported by the hypervisor.
>>> We cannot use "iomem_resource" on Arm, only a resource constructed from
>>> extended regions. This is why I added that check (and fallback to 
>>> xenballooned
>>> pages).
>>> What I was thinking is that in case of using old Xen (although we 
>>> would need
>>> to balloon out RAM pages) we still would be able to keep working, so 
>>> no need
>>> to disable CONFIG_XEN_UNPOPULATED_ALLOC on such setups.
>>>>> You raised a really good question, on Arm we need a fallback to 
>>>>> balloon
>>>>> out
>>>>> RAM pages again if hypervisor doesn't provide extended regions (we 
>>>>> run on
>>>>> old
>>>>> version, no unused regions with reasonable size, etc), so I decided 
>>>>> to put
>>>>> a
>>>>> fallback code here, an indicator of the failure is invalid
>>>>> "target_resource".
>>>> I think it is unnecessary as we already assume today that
>>>> &iomem_resource is always available.
>>>>> I noticed the patch which is about to be upstreamed that removes
>>>>> alloc_(free)xenballooned_pages API [1]. Right now I have no idea 
>>>>> how/where
>>>>> this fallback could be implemented as this is under build option 
>>>>> control
>>>>> (CONFIG_XEN_UNPOPULATED_ALLOC). So the API with the same name is 
>>>>> either
>>>>> used
>>>>> for unpopulated pages (if set) or ballooned pages (if not set). I 
>>>>> would
>>>>> appreciate suggestions regarding that. I am wondering would it be 
>>>>> possible
>>>>> and
>>>>> correctly to have both mechanisms (unpopulated and ballooned) 
>>>>> enabled by
>>>>> default and some init code to decide which one to use at runtime or 
>>>>> some
>>>>> sort?
>>>> I would keep it simple and remove the fallback from this patch. So:
>>>>
>>>> - if not CONFIG_XEN_UNPOPULATED_ALLOC, then balloon
>>>> - if CONFIG_XEN_UNPOPULATED_ALLOC, then
>>>>       - xen_resource if present
>>>>       - otherwise iomem_resource
>>> Unfortunately, we cannot use iomem_resource on Arm safely, either 
>>> xen_resource
>>> or fail (if no fallback exists).
>>>
>>>
>>>> The xen_resource/iomem_resource config can be done at init time using
>>>> target_resource. At runtime, target_resource is always != NULL so we
>>>> just go ahead and use it.
>>>
>>> Thank you for the suggestion. OK, let's keep it simple and drop fallback
>>> attempts for now. With one remark:
>>> We will make CONFIG_XEN_UNPOPULATED_ALLOC disabled by default on Arm 
>>> in next
>>> patch. So by default everything will behave as usual on Arm (balloon 
>>> out RAM
>>> pages),
>>> if user knows for sure that Xen reports extended regions, he/she can 
>>> enable
>>> the config. This way we won't break anything. What do you think?
>> Actually after reading your replies and explanation I changed opinion: I
>> think we do need the fallback because Linux cannot really assume that
>> it is running on "new Xen" so it definitely needs to keep working if
>> CONFIG_XEN_UNPOPULATED_ALLOC is enabled and the extended regions are not
>> advertised.
>>
>> I think we'll have to roll back some of the changes introduced by
>> 121f2faca2c0a. That's because even if CONFIG_XEN_UNPOPULATED_ALLOC is
>> enabled we cannot know if we can use unpopulated-alloc or whether we
>> have to use alloc_xenballooned_pages until we parse the /hypervisor node
>> in device tree at runtime.
> 
> Exactly!
> 
> 
>>
>> In short, we cannot switch between unpopulated-alloc and
>> alloc_xenballooned_pages at build time, we have to do it at runtime
>> (boot time).
> 
> +1
> 
> 
> I created a patch to partially revert 121f2faca2c0a "xen/balloon: rename 
> alloc/free_xenballooned_pages".
> 
> If there is no objections I will add it to V3 (which is almost ready, 
> except the fallback bits). Could you please tell me what do you think?
> 
> 
>  From dc79bcd425358596d95e715a8bd8b81deaaeb703 Mon Sep 17 00:00:00 2001
> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> Date: Tue, 23 Nov 2021 18:14:41 +0200
> Subject: [PATCH] xen/balloon: Bring alloc(free)_xenballooned_pages helpers
>   back
> 
> This patch rolls back some of the changes introduced by commit
> 121f2faca2c0a "xen/balloon: rename alloc/free_xenballooned_pages"
> in order to make possible to still allocate xenballooned pages
> if CONFIG_XEN_UNPOPULATED_ALLOC is enabled.
> 
> On Arm the unpopulated pages will be allocated on top of extended
> regions provided by Xen via device-tree (the subsequent patches
> will add required bits to support unpopulated-alloc feature on Arm).
> The problem is that extended regions feature has been introduced
> into Xen quite recently (during 4.16 release cycle). So this
> effectively means that Linux must only use unpopulated-alloc on Arm
> if it is running on "new Xen" which advertises these regions.
> But, it will only be known after parsing the "hypervisor" node
> at boot time, so before doing that we cannot assume anything.
> 
> In order to keep working if CONFIG_XEN_UNPOPULATED_ALLOC is enabled
> and the extended regions are not advertised (Linux is running on
> "old Xen", etc) we need the fallback to alloc_xenballooned_pages().
> 
> This way we wouldn't reduce the amount of memory usable (wasting
> RAM pages) for any of the external mappings anymore (and eliminate
> XSA-300) with "new Xen", but would be still functional ballooning
> out RAM pages with "old Xen".
> 
> Also rename alloc(free)_xenballooned_pages to 
> xen_alloc(free)_ballooned_pages.
> 
> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> ---
>   drivers/xen/balloon.c | 20 +++++++++-----------
>   include/xen/balloon.h |  3 +++
>   include/xen/xen.h     |  6 ++++++
>   3 files changed, 18 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
> index ba2ea11..a2c4fc49 100644
> --- a/drivers/xen/balloon.c
> +++ b/drivers/xen/balloon.c
> @@ -581,7 +581,6 @@ void balloon_set_new_target(unsigned long target)
>   }
>   EXPORT_SYMBOL_GPL(balloon_set_new_target);
> 
> -#ifndef CONFIG_XEN_UNPOPULATED_ALLOC
>   static int add_ballooned_pages(unsigned int nr_pages)
>   {
>       enum bp_state st;
> @@ -610,12 +609,12 @@ static int add_ballooned_pages(unsigned int nr_pages)
>   }
> 
>   /**
> - * xen_alloc_unpopulated_pages - get pages that have been ballooned out
> + * xen_alloc_ballooned_pages - get pages that have been ballooned out
>    * @nr_pages: Number of pages to get
>    * @pages: pages returned
>    * @return 0 on success, error otherwise
>    */
> -int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page 
> **pages)
> +int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages)
>   {
>       unsigned int pgno = 0;
>       struct page *page;
> @@ -652,23 +651,23 @@ int xen_alloc_unpopulated_pages(unsigned int 
> nr_pages, struct page **pages)
>       return 0;
>    out_undo:
>       mutex_unlock(&balloon_mutex);
> -    xen_free_unpopulated_pages(pgno, pages);
> +    xen_free_ballooned_pages(pgno, pages);
>       /*
> -     * NB: free_xenballooned_pages will only subtract pgno pages, but 
> since
> +     * NB: xen_free_ballooned_pages will only subtract pgno pages, but 
> since
>        * target_unpopulated is incremented with nr_pages at the start we 
> need
>        * to remove the remaining ones also, or accounting will be screwed.
>        */
>       balloon_stats.target_unpopulated -= nr_pages - pgno;
>       return ret;
>   }
> -EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
> +EXPORT_SYMBOL(xen_alloc_ballooned_pages);
> 
>   /**
> - * xen_free_unpopulated_pages - return pages retrieved with 
> get_ballooned_pages
> + * xen_free_ballooned_pages - return pages retrieved with 
> get_ballooned_pages
>    * @nr_pages: Number of pages
>    * @pages: pages to return
>    */
> -void xen_free_unpopulated_pages(unsigned int nr_pages, struct page 
> **pages)
> +void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages)
>   {
>       unsigned int i;
> 
> @@ -687,9 +686,9 @@ void xen_free_unpopulated_pages(unsigned int 
> nr_pages, struct page **pages)
> 
>       mutex_unlock(&balloon_mutex);
>   }
> -EXPORT_SYMBOL(xen_free_unpopulated_pages);
> +EXPORT_SYMBOL(xen_free_ballooned_pages);
> 
> -#if defined(CONFIG_XEN_PV)
> +#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
>   static void __init balloon_add_region(unsigned long start_pfn,
>                         unsigned long pages)
>   {
> @@ -712,7 +711,6 @@ static void __init balloon_add_region(unsigned long 
> start_pfn,
>       balloon_stats.total_pages += extra_pfn_end - start_pfn;
>   }
>   #endif
> -#endif
> 
>   static int __init balloon_init(void)
>   {
> diff --git a/include/xen/balloon.h b/include/xen/balloon.h
> index e93d4f0..f78a6cc 100644
> --- a/include/xen/balloon.h
> +++ b/include/xen/balloon.h
> @@ -26,6 +26,9 @@ extern struct balloon_stats balloon_stats;
> 
>   void balloon_set_new_target(unsigned long target);
> 
> +int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages);
> +void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages);
> +
>   #ifdef CONFIG_XEN_BALLOON
>   void xen_balloon_init(void);
>   #else
> diff --git a/include/xen/xen.h b/include/xen/xen.h
> index 9f031b5..410e3e4 100644
> --- a/include/xen/xen.h
> +++ b/include/xen/xen.h
> @@ -52,7 +52,13 @@ bool xen_biovec_phys_mergeable(const struct bio_vec 
> *vec1,
>   extern u64 xen_saved_max_mem_size;
>   #endif
> 
> +#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
>   int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page 
> **pages);
>   void xen_free_unpopulated_pages(unsigned int nr_pages, struct page 
> **pages);
> +#else
> +#define xen_alloc_unpopulated_pages xen_alloc_ballooned_pages
> +#define xen_free_unpopulated_pages xen_free_ballooned_pages

Could you please make those inline functions instead?

Other than that I'm fine with the approach.


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 0%]

* Re: [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-11-23 16:46 14%             ` Oleksandr
@ 2021-11-23 21:25  0%               ` Stefano Stabellini
  2021-11-24  9:33  0%                 ` Oleksandr
  2021-11-24  5:16  0%               ` Juergen Gross
  1 sibling, 1 reply; 200+ results
From: Stefano Stabellini @ 2021-11-23 21:25 UTC (permalink / raw)
  To: Oleksandr
  Cc: Stefano Stabellini, jgross, xen-devel, linux-kernel,
	Oleksandr Tyshchenko, Boris Ostrovsky, Julien Grall

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

On Tue, 23 Nov 2021, Oleksandr wrote:
> > Actually after reading your replies and explanation I changed opinion: I
> > think we do need the fallback because Linux cannot really assume that
> > it is running on "new Xen" so it definitely needs to keep working if
> > CONFIG_XEN_UNPOPULATED_ALLOC is enabled and the extended regions are not
> > advertised.
> > 
> > I think we'll have to roll back some of the changes introduced by
> > 121f2faca2c0a. That's because even if CONFIG_XEN_UNPOPULATED_ALLOC is
> > enabled we cannot know if we can use unpopulated-alloc or whether we
> > have to use alloc_xenballooned_pages until we parse the /hypervisor node
> > in device tree at runtime.
> 
> Exactly!
> 
> 
> > 
> > In short, we cannot switch between unpopulated-alloc and
> > alloc_xenballooned_pages at build time, we have to do it at runtime
> > (boot time).
> 
> +1
> 
> 
> I created a patch to partially revert 121f2faca2c0a "xen/balloon: rename
> alloc/free_xenballooned_pages".
> 
> If there is no objections I will add it to V3 (which is almost ready, except
> the fallback bits). Could you please tell me what do you think?
 
It makes sense to me. You can add my Reviewed-by.

 
> From dc79bcd425358596d95e715a8bd8b81deaaeb703 Mon Sep 17 00:00:00 2001
> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> Date: Tue, 23 Nov 2021 18:14:41 +0200
> Subject: [PATCH] xen/balloon: Bring alloc(free)_xenballooned_pages helpers
>  back
> 
> This patch rolls back some of the changes introduced by commit
> 121f2faca2c0a "xen/balloon: rename alloc/free_xenballooned_pages"
> in order to make possible to still allocate xenballooned pages
> if CONFIG_XEN_UNPOPULATED_ALLOC is enabled.
> 
> On Arm the unpopulated pages will be allocated on top of extended
> regions provided by Xen via device-tree (the subsequent patches
> will add required bits to support unpopulated-alloc feature on Arm).
> The problem is that extended regions feature has been introduced
> into Xen quite recently (during 4.16 release cycle). So this
> effectively means that Linux must only use unpopulated-alloc on Arm
> if it is running on "new Xen" which advertises these regions.
> But, it will only be known after parsing the "hypervisor" node
> at boot time, so before doing that we cannot assume anything.
> 
> In order to keep working if CONFIG_XEN_UNPOPULATED_ALLOC is enabled
> and the extended regions are not advertised (Linux is running on
> "old Xen", etc) we need the fallback to alloc_xenballooned_pages().
> 
> This way we wouldn't reduce the amount of memory usable (wasting
> RAM pages) for any of the external mappings anymore (and eliminate
> XSA-300) with "new Xen", but would be still functional ballooning
> out RAM pages with "old Xen".
> 
> Also rename alloc(free)_xenballooned_pages to xen_alloc(free)_ballooned_pages.
> 
> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> ---
>  drivers/xen/balloon.c | 20 +++++++++-----------
>  include/xen/balloon.h |  3 +++
>  include/xen/xen.h     |  6 ++++++
>  3 files changed, 18 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
> index ba2ea11..a2c4fc49 100644
> --- a/drivers/xen/balloon.c
> +++ b/drivers/xen/balloon.c
> @@ -581,7 +581,6 @@ void balloon_set_new_target(unsigned long target)
>  }
>  EXPORT_SYMBOL_GPL(balloon_set_new_target);
> 
> -#ifndef CONFIG_XEN_UNPOPULATED_ALLOC
>  static int add_ballooned_pages(unsigned int nr_pages)
>  {
>      enum bp_state st;
> @@ -610,12 +609,12 @@ static int add_ballooned_pages(unsigned int nr_pages)
>  }
> 
>  /**
> - * xen_alloc_unpopulated_pages - get pages that have been ballooned out
> + * xen_alloc_ballooned_pages - get pages that have been ballooned out
>   * @nr_pages: Number of pages to get
>   * @pages: pages returned
>   * @return 0 on success, error otherwise
>   */
> -int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
> +int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages)
>  {
>      unsigned int pgno = 0;
>      struct page *page;
> @@ -652,23 +651,23 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages,
> struct page **pages)
>      return 0;
>   out_undo:
>      mutex_unlock(&balloon_mutex);
> -    xen_free_unpopulated_pages(pgno, pages);
> +    xen_free_ballooned_pages(pgno, pages);
>      /*
> -     * NB: free_xenballooned_pages will only subtract pgno pages, but since
> +     * NB: xen_free_ballooned_pages will only subtract pgno pages, but since
>       * target_unpopulated is incremented with nr_pages at the start we need
>       * to remove the remaining ones also, or accounting will be screwed.
>       */
>      balloon_stats.target_unpopulated -= nr_pages - pgno;
>      return ret;
>  }
> -EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
> +EXPORT_SYMBOL(xen_alloc_ballooned_pages);
> 
>  /**
> - * xen_free_unpopulated_pages - return pages retrieved with
> get_ballooned_pages
> + * xen_free_ballooned_pages - return pages retrieved with get_ballooned_pages
>   * @nr_pages: Number of pages
>   * @pages: pages to return
>   */
> -void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
> +void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages)
>  {
>      unsigned int i;
> 
> @@ -687,9 +686,9 @@ void xen_free_unpopulated_pages(unsigned int nr_pages,
> struct page **pages)
> 
>      mutex_unlock(&balloon_mutex);
>  }
> -EXPORT_SYMBOL(xen_free_unpopulated_pages);
> +EXPORT_SYMBOL(xen_free_ballooned_pages);
> 
> -#if defined(CONFIG_XEN_PV)
> +#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
>  static void __init balloon_add_region(unsigned long start_pfn,
>                        unsigned long pages)
>  {
> @@ -712,7 +711,6 @@ static void __init balloon_add_region(unsigned long
> start_pfn,
>      balloon_stats.total_pages += extra_pfn_end - start_pfn;
>  }
>  #endif
> -#endif
> 
>  static int __init balloon_init(void)
>  {
> diff --git a/include/xen/balloon.h b/include/xen/balloon.h
> index e93d4f0..f78a6cc 100644
> --- a/include/xen/balloon.h
> +++ b/include/xen/balloon.h
> @@ -26,6 +26,9 @@ extern struct balloon_stats balloon_stats;
> 
>  void balloon_set_new_target(unsigned long target);
> 
> +int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages);
> +void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages);
> +
>  #ifdef CONFIG_XEN_BALLOON
>  void xen_balloon_init(void);
>  #else
> diff --git a/include/xen/xen.h b/include/xen/xen.h
> index 9f031b5..410e3e4 100644
> --- a/include/xen/xen.h
> +++ b/include/xen/xen.h
> @@ -52,7 +52,13 @@ bool xen_biovec_phys_mergeable(const struct bio_vec *vec1,
>  extern u64 xen_saved_max_mem_size;
>  #endif
> 
> +#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
>  int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
>  void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
> +#else
> +#define xen_alloc_unpopulated_pages xen_alloc_ballooned_pages
> +#define xen_free_unpopulated_pages xen_free_ballooned_pages
> +#include <xen/balloon.h>
> +#endif
> 
>  #endif    /* _XEN_XEN_H */

^ permalink raw reply	[relevance 0%]

* Re: [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-11-20  2:19  0%           ` Stefano Stabellini
@ 2021-11-23 16:46 14%             ` Oleksandr
  2021-11-23 21:25  0%               ` Stefano Stabellini
  2021-11-24  5:16  0%               ` Juergen Gross
  0 siblings, 2 replies; 200+ results
From: Oleksandr @ 2021-11-23 16:46 UTC (permalink / raw)
  To: Stefano Stabellini, jgross
  Cc: xen-devel, linux-kernel, Oleksandr Tyshchenko, Boris Ostrovsky,
	Julien Grall


On 20.11.21 04:19, Stefano Stabellini wrote:

Hi Stefano, Juergen, all


> Juergen please see the bottom of the email
>
> On Fri, 19 Nov 2021, Oleksandr wrote:
>> On 19.11.21 02:59, Stefano Stabellini wrote:
>>> On Tue, 9 Nov 2021, Oleksandr wrote:
>>>> On 28.10.21 19:37, Stefano Stabellini wrote:
>>>>
>>>> Hi Stefano
>>>>
>>>> I am sorry for the late response.
>>>>
>>>>> On Tue, 26 Oct 2021, Oleksandr Tyshchenko wrote:
>>>>>> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>>>>>>
>>>>>> The main reason of this change is that unpopulated-alloc
>>>>>> code cannot be used in its current form on Arm, but there
>>>>>> is a desire to reuse it to avoid wasting real RAM pages
>>>>>> for the grant/foreign mappings.
>>>>>>
>>>>>> The problem is that system "iomem_resource" is used for
>>>>>> the address space allocation, but the really unallocated
>>>>>> space can't be figured out precisely by the domain on Arm
>>>>>> without hypervisor involvement. For example, not all device
>>>>>> I/O regions are known by the time domain starts creating
>>>>>> grant/foreign mappings. And following the advise from
>>>>>> "iomem_resource" we might end up reusing these regions by
>>>>>> a mistake. So, the hypervisor which maintains the P2M for
>>>>>> the domain is in the best position to provide unused regions
>>>>>> of guest physical address space which could be safely used
>>>>>> to create grant/foreign mappings.
>>>>>>
>>>>>> Introduce new helper arch_xen_unpopulated_init() which purpose
>>>>>> is to create specific Xen resource based on the memory regions
>>>>>> provided by the hypervisor to be used as unused space for Xen
>>>>>> scratch pages.
>>>>>>
>>>>>> If arch doesn't implement arch_xen_unpopulated_init() to
>>>>>> initialize Xen resource the default "iomem_resource" will be used.
>>>>>> So the behavior on x86 won't be changed.
>>>>>>
>>>>>> Also fall back to allocate xenballooned pages (steal real RAM
>>>>>> pages) if we do not have any suitable resource to work with and
>>>>>> as the result we won't be able to provide unpopulated pages.
>>>>>>
>>>>>> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>>>>>> ---
>>>>>> Changes RFC -> V2:
>>>>>>       - new patch, instead of
>>>>>>        "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to
>>>>>> provide
>>>>>> unallocated space"
>>>>>> ---
>>>>>>     drivers/xen/unpopulated-alloc.c | 89
>>>>>> +++++++++++++++++++++++++++++++++++++++--
>>>>>>     include/xen/xen.h               |  2 +
>>>>>>     2 files changed, 88 insertions(+), 3 deletions(-)
>>>>>>
>>>>>> diff --git a/drivers/xen/unpopulated-alloc.c
>>>>>> b/drivers/xen/unpopulated-alloc.c
>>>>>> index a03dc5b..1f1d8d8 100644
>>>>>> --- a/drivers/xen/unpopulated-alloc.c
>>>>>> +++ b/drivers/xen/unpopulated-alloc.c
>>>>>> @@ -8,6 +8,7 @@
>>>>>>       #include <asm/page.h>
>>>>>>     +#include <xen/balloon.h>
>>>>>>     #include <xen/page.h>
>>>>>>     #include <xen/xen.h>
>>>>>>     @@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
>>>>>>     static struct page *page_list;
>>>>>>     static unsigned int list_count;
>>>>>>     +static struct resource *target_resource;
>>>>>> +static struct resource xen_resource = {
>>>>>> +	.name = "Xen unused space",
>>>>>> +};
>>>>>> +
>>>>>> +/*
>>>>>> + * If arch is not happy with system "iomem_resource" being used for
>>>>>> + * the region allocation it can provide it's own view by initializing
>>>>>> + * "xen_resource" with unused regions of guest physical address space
>>>>>> + * provided by the hypervisor.
>>>>>> + */
>>>>>> +int __weak arch_xen_unpopulated_init(struct resource *res)
>>>>>> +{
>>>>>> +	return -ENOSYS;
>>>>>> +}
>>>>>> +
>>>>>>     static int fill_list(unsigned int nr_pages)
>>>>>>     {
>>>>>>     	struct dev_pagemap *pgmap;
>>>>>> -	struct resource *res;
>>>>>> +	struct resource *res, *tmp_res = NULL;
>>>>>>     	void *vaddr;
>>>>>>     	unsigned int i, alloc_pages = round_up(nr_pages,
>>>>>> PAGES_PER_SECTION);
>>>>>> -	int ret = -ENOMEM;
>>>>>> +	int ret;
>>>>>>       	res = kzalloc(sizeof(*res), GFP_KERNEL);
>>>>>>     	if (!res)
>>>>>> @@ -30,7 +47,7 @@ static int fill_list(unsigned int nr_pages)
>>>>>>     	res->name = "Xen scratch";
>>>>>>     	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
>>>>>>     -	ret = allocate_resource(&iomem_resource, res,
>>>>>> +	ret = allocate_resource(target_resource, res,
>>>>>>     				alloc_pages * PAGE_SIZE, 0, -1,
>>>>>>     				PAGES_PER_SECTION * PAGE_SIZE, NULL,
>>>>>> NULL);
>>>>>>     	if (ret < 0) {
>>>>>> @@ -38,6 +55,31 @@ static int fill_list(unsigned int nr_pages)
>>>>>>     		goto err_resource;
>>>>>>     	}
>>>>>>     +	/*
>>>>>> +	 * Reserve the region previously allocated from Xen resource
>>>>>> to avoid
>>>>>> +	 * re-using it by someone else.
>>>>>> +	 */
>>>>>> +	if (target_resource != &iomem_resource) {
>>>>>> +		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
>>>>>> +		if (!res) {
>>>>>> +			ret = -ENOMEM;
>>>>>> +			goto err_insert;
>>>>>> +		}
>>>>>> +
>>>>>> +		tmp_res->name = res->name;
>>>>>> +		tmp_res->start = res->start;
>>>>>> +		tmp_res->end = res->end;
>>>>>> +		tmp_res->flags = res->flags;
>>>>>> +
>>>>>> +		ret = insert_resource(&iomem_resource, tmp_res);
>>>>>> +		if (ret < 0) {
>>>>>> +			pr_err("Cannot insert IOMEM resource [%llx -
>>>>>> %llx]\n",
>>>>>> +			       tmp_res->start, tmp_res->end);
>>>>>> +			kfree(tmp_res);
>>>>>> +			goto err_insert;
>>>>>> +		}
>>>>>> +	}
>>>>> I am a bit confused.. why do we need to do this? Who could be
>>>>> erroneously re-using the region? Are you saying that the next time
>>>>> allocate_resource is called it could find the same region again? It
>>>>> doesn't seem possible?
>>>> No, as I understand the allocate_resource() being called for the same root
>>>> resource won't provide the same region... We only need to do this (insert
>>>> the
>>>> region into "iomem_resource") if we allocated it from our *internal*
>>>> "xen_resource", as *global* "iomem_resource" (which is used everywhere) is
>>>> not
>>>> aware of that region has been already allocated. So inserting a region
>>>> here we
>>>> reserving it, otherwise it could be reused elsewhere.
>>> But elsewhere where?
>> I think, theoretically everywhere where allocate_resource(&iomem_resource,
>> ...) is called.
>>
>>
>>> Let's say that allocate_resource allocates a range from xen_resource.
>>>   From reading the code, it doesn't look like iomem_resource would have
>>> that range because the extended regions described under /hypervisor are
>>> not added automatically to iomem_resource.
>>>
>>> So what if we don't call insert_resource? Nothing could allocate the
>>> same range because iomem_resource doesn't have it at all and
>>> xen_resource is not used anywhere if not here.
>>>
>>> What am I missing?
>>
>> Below my understanding which, of course, might be wrong.
>>
>> If we don't claim resource by calling insert_resource (or even
>> request_resource) here then the same range could be allocated everywhere where
>> allocate_resource(&iomem_resource, ...) is called.
>> I don't see what prevents the same range from being allocated. Why actually
>> allocate_resource(&iomem_resource, ...) can't provide the same range if it is
>> free (not-reserved-yet) from it's PoV? The comment above allocate_resource()
>> says "allocate empty slot in the resource tree given range & alignment". So
>> this "empty slot" could be exactly the same range.
>>
>> I experimented with that a bit trying to call
>> allocate_resource(&iomem_resource, ...) several times in another place to see
>> what ranges it returns in both cases (w/ and w/o calling insert_resource
>> here). So an experiment confirmed (of course, if I made it correctly) that the
>> same range could be allocated if we didn't call insert_resource() here. And as
>> I understand there is nothing strange here, as iomem_resource covers all
>> address space initially (0, -1) and everything *not* inserted/requested (in
>> other words, reserved) yet is considered as free and could be provided if fits
>> constraints. Or I really missed something?
> Thanks for the explanation! It was me that didn't know that
> iomem_resource covers all the address space initially. I thought it was
> populated only with actual iomem ranges. Now it makes sense, thanks!
>
>
>> It feels to me that it would be better to call request_resource() instead of
>> insert_resource(). It seems, that if no conflict happens both functions will
>> behave in same way, but in case of conflict if the conflicting resource
>> entirely fit the new resource the former will return an error. I think, this
>> way we will be able to detect that a range we are trying to reserve is already
>> present and bail out early.
>>
>>
>>> Or maybe it is the other way around: core Linux code assumes everything
>>> is described in iomem_resource so something under kernel/ or mm/ would
>>> crash if we start using a page pointing to an address missing from
>>> iomem_resource?
>>>      
>>>>>>     	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
>>>>>>     	if (!pgmap) {
>>>>>>     		ret = -ENOMEM;
>>>>>> @@ -95,12 +137,40 @@ static int fill_list(unsigned int nr_pages)
>>>>>>     err_memremap:
>>>>>>     	kfree(pgmap);
>>>>>>     err_pgmap:
>>>>>> +	if (tmp_res) {
>>>>>> +		release_resource(tmp_res);
>>>>>> +		kfree(tmp_res);
>>>>>> +	}
>>>>>> +err_insert:
>>>>>>     	release_resource(res);
>>>>>>     err_resource:
>>>>>>     	kfree(res);
>>>>>>     	return ret;
>>>>>>     }
>>>>>>     +static void unpopulated_init(void)
>>>>>> +{
>>>>>> +	static bool inited = false;
>>>>> initialized = false
>>>> ok.
>>>>
>>>>
>>>>>> +	int ret;
>>>>>> +
>>>>>> +	if (inited)
>>>>>> +		return;
>>>>>> +
>>>>>> +	/*
>>>>>> +	 * Try to initialize Xen resource the first and fall back to
>>>>>> default
>>>>>> +	 * resource if arch doesn't offer one.
>>>>>> +	 */
>>>>>> +	ret = arch_xen_unpopulated_init(&xen_resource);
>>>>>> +	if (!ret)
>>>>>> +		target_resource = &xen_resource;
>>>>>> +	else if (ret == -ENOSYS)
>>>>>> +		target_resource = &iomem_resource;
>>>>>> +	else
>>>>>> +		pr_err("Cannot initialize Xen resource\n");
>>>>>> +
>>>>>> +	inited = true;
>>>>>> +}
>>>>> Would it make sense to call unpopulated_init from an init function,
>>>>> rather than every time xen_alloc_unpopulated_pages is called?
>>>> Good point, thank you. Will do. To be honest, I also don't like the
>>>> current
>>>> approach much.
>>>>
>>>>
>>>>>>     /**
>>>>>>      * xen_alloc_unpopulated_pages - alloc unpopulated pages
>>>>>>      * @nr_pages: Number of pages
>>>>>> @@ -112,6 +182,16 @@ int xen_alloc_unpopulated_pages(unsigned int
>>>>>> nr_pages, struct page **pages)
>>>>>>     	unsigned int i;
>>>>>>     	int ret = 0;
>>>>>>     +	unpopulated_init();
>>>>>> +
>>>>>> +	/*
>>>>>> +	 * Fall back to default behavior if we do not have any
>>>>>> suitable
>>>>>> resource
>>>>>> +	 * to allocate required region from and as the result we won't
>>>>>> be able
>>>>>> to
>>>>>> +	 * construct pages.
>>>>>> +	 */
>>>>>> +	if (!target_resource)
>>>>>> +		return alloc_xenballooned_pages(nr_pages, pages);
>>>>> The commit message says that the behavior on x86 doesn't change but this
>>>>> seems to be a change that could impact x86?
>>>> I don't think, however I didn't tested on x86 and might be wrong, but
>>>> according to the current patch, on x86 the "target_resource" is always
>>>> valid
>>>> and points to the "iomem_resource" as arch_xen_unpopulated_init() is not
>>>> implemented. So there won't be any fallback to use
>>>> alloc_(free)_xenballooned_pages() here and fill_list() will behave as
>>>> usual.
>>>    If target_resource is always valid, then we don't need this special
>>> check. In fact, the condition should never be true.
>>
>> The target_resource is always valid and points to the "iomem_resource" on x86
>> (this is equivalent to the behavior before this patch).
>> On Arm target_resource might be NULL if arch_xen_unpopulated_init() failed,
>> for example, if no extended regions reported by the hypervisor.
>> We cannot use "iomem_resource" on Arm, only a resource constructed from
>> extended regions. This is why I added that check (and fallback to xenballooned
>> pages).
>> What I was thinking is that in case of using old Xen (although we would need
>> to balloon out RAM pages) we still would be able to keep working, so no need
>> to disable CONFIG_XEN_UNPOPULATED_ALLOC on such setups.
>>   
>>     
>>>> You raised a really good question, on Arm we need a fallback to balloon
>>>> out
>>>> RAM pages again if hypervisor doesn't provide extended regions (we run on
>>>> old
>>>> version, no unused regions with reasonable size, etc), so I decided to put
>>>> a
>>>> fallback code here, an indicator of the failure is invalid
>>>> "target_resource".
>>> I think it is unnecessary as we already assume today that
>>> &iomem_resource is always available.
>>>> I noticed the patch which is about to be upstreamed that removes
>>>> alloc_(free)xenballooned_pages API [1]. Right now I have no idea how/where
>>>> this fallback could be implemented as this is under build option control
>>>> (CONFIG_XEN_UNPOPULATED_ALLOC). So the API with the same name is either
>>>> used
>>>> for unpopulated pages (if set) or ballooned pages (if not set). I would
>>>> appreciate suggestions regarding that. I am wondering would it be possible
>>>> and
>>>> correctly to have both mechanisms (unpopulated and ballooned) enabled by
>>>> default and some init code to decide which one to use at runtime or some
>>>> sort?
>>> I would keep it simple and remove the fallback from this patch. So:
>>>
>>> - if not CONFIG_XEN_UNPOPULATED_ALLOC, then balloon
>>> - if CONFIG_XEN_UNPOPULATED_ALLOC, then
>>>       - xen_resource if present
>>>       - otherwise iomem_resource
>> Unfortunately, we cannot use iomem_resource on Arm safely, either xen_resource
>> or fail (if no fallback exists).
>>
>>
>>> The xen_resource/iomem_resource config can be done at init time using
>>> target_resource. At runtime, target_resource is always != NULL so we
>>> just go ahead and use it.
>>
>> Thank you for the suggestion. OK, let's keep it simple and drop fallback
>> attempts for now. With one remark:
>> We will make CONFIG_XEN_UNPOPULATED_ALLOC disabled by default on Arm in next
>> patch. So by default everything will behave as usual on Arm (balloon out RAM
>> pages),
>> if user knows for sure that Xen reports extended regions, he/she can enable
>> the config. This way we won't break anything. What do you think?
> Actually after reading your replies and explanation I changed opinion: I
> think we do need the fallback because Linux cannot really assume that
> it is running on "new Xen" so it definitely needs to keep working if
> CONFIG_XEN_UNPOPULATED_ALLOC is enabled and the extended regions are not
> advertised.
>
> I think we'll have to roll back some of the changes introduced by
> 121f2faca2c0a. That's because even if CONFIG_XEN_UNPOPULATED_ALLOC is
> enabled we cannot know if we can use unpopulated-alloc or whether we
> have to use alloc_xenballooned_pages until we parse the /hypervisor node
> in device tree at runtime.

Exactly!


>
> In short, we cannot switch between unpopulated-alloc and
> alloc_xenballooned_pages at build time, we have to do it at runtime
> (boot time).

+1


I created a patch to partially revert 121f2faca2c0a "xen/balloon: rename 
alloc/free_xenballooned_pages".

If there is no objections I will add it to V3 (which is almost ready, 
except the fallback bits). Could you please tell me what do you think?


 From dc79bcd425358596d95e715a8bd8b81deaaeb703 Mon Sep 17 00:00:00 2001
From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Date: Tue, 23 Nov 2021 18:14:41 +0200
Subject: [PATCH] xen/balloon: Bring alloc(free)_xenballooned_pages helpers
  back

This patch rolls back some of the changes introduced by commit
121f2faca2c0a "xen/balloon: rename alloc/free_xenballooned_pages"
in order to make possible to still allocate xenballooned pages
if CONFIG_XEN_UNPOPULATED_ALLOC is enabled.

On Arm the unpopulated pages will be allocated on top of extended
regions provided by Xen via device-tree (the subsequent patches
will add required bits to support unpopulated-alloc feature on Arm).
The problem is that extended regions feature has been introduced
into Xen quite recently (during 4.16 release cycle). So this
effectively means that Linux must only use unpopulated-alloc on Arm
if it is running on "new Xen" which advertises these regions.
But, it will only be known after parsing the "hypervisor" node
at boot time, so before doing that we cannot assume anything.

In order to keep working if CONFIG_XEN_UNPOPULATED_ALLOC is enabled
and the extended regions are not advertised (Linux is running on
"old Xen", etc) we need the fallback to alloc_xenballooned_pages().

This way we wouldn't reduce the amount of memory usable (wasting
RAM pages) for any of the external mappings anymore (and eliminate
XSA-300) with "new Xen", but would be still functional ballooning
out RAM pages with "old Xen".

Also rename alloc(free)_xenballooned_pages to 
xen_alloc(free)_ballooned_pages.

Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
---
  drivers/xen/balloon.c | 20 +++++++++-----------
  include/xen/balloon.h |  3 +++
  include/xen/xen.h     |  6 ++++++
  3 files changed, 18 insertions(+), 11 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index ba2ea11..a2c4fc49 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -581,7 +581,6 @@ void balloon_set_new_target(unsigned long target)
  }
  EXPORT_SYMBOL_GPL(balloon_set_new_target);

-#ifndef CONFIG_XEN_UNPOPULATED_ALLOC
  static int add_ballooned_pages(unsigned int nr_pages)
  {
      enum bp_state st;
@@ -610,12 +609,12 @@ static int add_ballooned_pages(unsigned int nr_pages)
  }

  /**
- * xen_alloc_unpopulated_pages - get pages that have been ballooned out
+ * xen_alloc_ballooned_pages - get pages that have been ballooned out
   * @nr_pages: Number of pages to get
   * @pages: pages returned
   * @return 0 on success, error otherwise
   */
-int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
+int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages)
  {
      unsigned int pgno = 0;
      struct page *page;
@@ -652,23 +651,23 @@ int xen_alloc_unpopulated_pages(unsigned int 
nr_pages, struct page **pages)
      return 0;
   out_undo:
      mutex_unlock(&balloon_mutex);
-    xen_free_unpopulated_pages(pgno, pages);
+    xen_free_ballooned_pages(pgno, pages);
      /*
-     * NB: free_xenballooned_pages will only subtract pgno pages, but since
+     * NB: xen_free_ballooned_pages will only subtract pgno pages, but 
since
       * target_unpopulated is incremented with nr_pages at the start we 
need
       * to remove the remaining ones also, or accounting will be screwed.
       */
      balloon_stats.target_unpopulated -= nr_pages - pgno;
      return ret;
  }
-EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
+EXPORT_SYMBOL(xen_alloc_ballooned_pages);

  /**
- * xen_free_unpopulated_pages - return pages retrieved with 
get_ballooned_pages
+ * xen_free_ballooned_pages - return pages retrieved with 
get_ballooned_pages
   * @nr_pages: Number of pages
   * @pages: pages to return
   */
-void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
+void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages)
  {
      unsigned int i;

@@ -687,9 +686,9 @@ void xen_free_unpopulated_pages(unsigned int 
nr_pages, struct page **pages)

      mutex_unlock(&balloon_mutex);
  }
-EXPORT_SYMBOL(xen_free_unpopulated_pages);
+EXPORT_SYMBOL(xen_free_ballooned_pages);

-#if defined(CONFIG_XEN_PV)
+#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
  static void __init balloon_add_region(unsigned long start_pfn,
                        unsigned long pages)
  {
@@ -712,7 +711,6 @@ static void __init balloon_add_region(unsigned long 
start_pfn,
      balloon_stats.total_pages += extra_pfn_end - start_pfn;
  }
  #endif
-#endif

  static int __init balloon_init(void)
  {
diff --git a/include/xen/balloon.h b/include/xen/balloon.h
index e93d4f0..f78a6cc 100644
--- a/include/xen/balloon.h
+++ b/include/xen/balloon.h
@@ -26,6 +26,9 @@ extern struct balloon_stats balloon_stats;

  void balloon_set_new_target(unsigned long target);

+int xen_alloc_ballooned_pages(unsigned int nr_pages, struct page **pages);
+void xen_free_ballooned_pages(unsigned int nr_pages, struct page **pages);
+
  #ifdef CONFIG_XEN_BALLOON
  void xen_balloon_init(void);
  #else
diff --git a/include/xen/xen.h b/include/xen/xen.h
index 9f031b5..410e3e4 100644
--- a/include/xen/xen.h
+++ b/include/xen/xen.h
@@ -52,7 +52,13 @@ bool xen_biovec_phys_mergeable(const struct bio_vec 
*vec1,
  extern u64 xen_saved_max_mem_size;
  #endif

+#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
  int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page 
**pages);
  void xen_free_unpopulated_pages(unsigned int nr_pages, struct page 
**pages);
+#else
+#define xen_alloc_unpopulated_pages xen_alloc_ballooned_pages
+#define xen_free_unpopulated_pages xen_free_ballooned_pages
+#include <xen/balloon.h>
+#endif

  #endif    /* _XEN_XEN_H */
-- 
2.7.4



>
> Juergen, what do you think?


-- 
Regards,

Oleksandr Tyshchenko



^ permalink raw reply related	[relevance 14%]

* Re: [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-11-19 18:18  0%         ` Oleksandr
@ 2021-11-20  2:19  0%           ` Stefano Stabellini
  2021-11-23 16:46 14%             ` Oleksandr
  0 siblings, 1 reply; 200+ results
From: Stefano Stabellini @ 2021-11-20  2:19 UTC (permalink / raw)
  To: Oleksandr, jgross
  Cc: Stefano Stabellini, xen-devel, linux-kernel,
	Oleksandr Tyshchenko, Boris Ostrovsky, Julien Grall

Juergen please see the bottom of the email

On Fri, 19 Nov 2021, Oleksandr wrote:
> On 19.11.21 02:59, Stefano Stabellini wrote:
> > On Tue, 9 Nov 2021, Oleksandr wrote:
> > > On 28.10.21 19:37, Stefano Stabellini wrote:
> > > 
> > > Hi Stefano
> > > 
> > > I am sorry for the late response.
> > > 
> > > > On Tue, 26 Oct 2021, Oleksandr Tyshchenko wrote:
> > > > > From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> > > > > 
> > > > > The main reason of this change is that unpopulated-alloc
> > > > > code cannot be used in its current form on Arm, but there
> > > > > is a desire to reuse it to avoid wasting real RAM pages
> > > > > for the grant/foreign mappings.
> > > > > 
> > > > > The problem is that system "iomem_resource" is used for
> > > > > the address space allocation, but the really unallocated
> > > > > space can't be figured out precisely by the domain on Arm
> > > > > without hypervisor involvement. For example, not all device
> > > > > I/O regions are known by the time domain starts creating
> > > > > grant/foreign mappings. And following the advise from
> > > > > "iomem_resource" we might end up reusing these regions by
> > > > > a mistake. So, the hypervisor which maintains the P2M for
> > > > > the domain is in the best position to provide unused regions
> > > > > of guest physical address space which could be safely used
> > > > > to create grant/foreign mappings.
> > > > > 
> > > > > Introduce new helper arch_xen_unpopulated_init() which purpose
> > > > > is to create specific Xen resource based on the memory regions
> > > > > provided by the hypervisor to be used as unused space for Xen
> > > > > scratch pages.
> > > > > 
> > > > > If arch doesn't implement arch_xen_unpopulated_init() to
> > > > > initialize Xen resource the default "iomem_resource" will be used.
> > > > > So the behavior on x86 won't be changed.
> > > > > 
> > > > > Also fall back to allocate xenballooned pages (steal real RAM
> > > > > pages) if we do not have any suitable resource to work with and
> > > > > as the result we won't be able to provide unpopulated pages.
> > > > > 
> > > > > Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> > > > > ---
> > > > > Changes RFC -> V2:
> > > > >      - new patch, instead of
> > > > >       "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to
> > > > > provide
> > > > > unallocated space"
> > > > > ---
> > > > >    drivers/xen/unpopulated-alloc.c | 89
> > > > > +++++++++++++++++++++++++++++++++++++++--
> > > > >    include/xen/xen.h               |  2 +
> > > > >    2 files changed, 88 insertions(+), 3 deletions(-)
> > > > > 
> > > > > diff --git a/drivers/xen/unpopulated-alloc.c
> > > > > b/drivers/xen/unpopulated-alloc.c
> > > > > index a03dc5b..1f1d8d8 100644
> > > > > --- a/drivers/xen/unpopulated-alloc.c
> > > > > +++ b/drivers/xen/unpopulated-alloc.c
> > > > > @@ -8,6 +8,7 @@
> > > > >      #include <asm/page.h>
> > > > >    +#include <xen/balloon.h>
> > > > >    #include <xen/page.h>
> > > > >    #include <xen/xen.h>
> > > > >    @@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
> > > > >    static struct page *page_list;
> > > > >    static unsigned int list_count;
> > > > >    +static struct resource *target_resource;
> > > > > +static struct resource xen_resource = {
> > > > > +	.name = "Xen unused space",
> > > > > +};
> > > > > +
> > > > > +/*
> > > > > + * If arch is not happy with system "iomem_resource" being used for
> > > > > + * the region allocation it can provide it's own view by initializing
> > > > > + * "xen_resource" with unused regions of guest physical address space
> > > > > + * provided by the hypervisor.
> > > > > + */
> > > > > +int __weak arch_xen_unpopulated_init(struct resource *res)
> > > > > +{
> > > > > +	return -ENOSYS;
> > > > > +}
> > > > > +
> > > > >    static int fill_list(unsigned int nr_pages)
> > > > >    {
> > > > >    	struct dev_pagemap *pgmap;
> > > > > -	struct resource *res;
> > > > > +	struct resource *res, *tmp_res = NULL;
> > > > >    	void *vaddr;
> > > > >    	unsigned int i, alloc_pages = round_up(nr_pages,
> > > > > PAGES_PER_SECTION);
> > > > > -	int ret = -ENOMEM;
> > > > > +	int ret;
> > > > >      	res = kzalloc(sizeof(*res), GFP_KERNEL);
> > > > >    	if (!res)
> > > > > @@ -30,7 +47,7 @@ static int fill_list(unsigned int nr_pages)
> > > > >    	res->name = "Xen scratch";
> > > > >    	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
> > > > >    -	ret = allocate_resource(&iomem_resource, res,
> > > > > +	ret = allocate_resource(target_resource, res,
> > > > >    				alloc_pages * PAGE_SIZE, 0, -1,
> > > > >    				PAGES_PER_SECTION * PAGE_SIZE, NULL,
> > > > > NULL);
> > > > >    	if (ret < 0) {
> > > > > @@ -38,6 +55,31 @@ static int fill_list(unsigned int nr_pages)
> > > > >    		goto err_resource;
> > > > >    	}
> > > > >    +	/*
> > > > > +	 * Reserve the region previously allocated from Xen resource
> > > > > to avoid
> > > > > +	 * re-using it by someone else.
> > > > > +	 */
> > > > > +	if (target_resource != &iomem_resource) {
> > > > > +		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
> > > > > +		if (!res) {
> > > > > +			ret = -ENOMEM;
> > > > > +			goto err_insert;
> > > > > +		}
> > > > > +
> > > > > +		tmp_res->name = res->name;
> > > > > +		tmp_res->start = res->start;
> > > > > +		tmp_res->end = res->end;
> > > > > +		tmp_res->flags = res->flags;
> > > > > +
> > > > > +		ret = insert_resource(&iomem_resource, tmp_res);
> > > > > +		if (ret < 0) {
> > > > > +			pr_err("Cannot insert IOMEM resource [%llx -
> > > > > %llx]\n",
> > > > > +			       tmp_res->start, tmp_res->end);
> > > > > +			kfree(tmp_res);
> > > > > +			goto err_insert;
> > > > > +		}
> > > > > +	}
> > > > I am a bit confused.. why do we need to do this? Who could be
> > > > erroneously re-using the region? Are you saying that the next time
> > > > allocate_resource is called it could find the same region again? It
> > > > doesn't seem possible?
> > > 
> > > No, as I understand the allocate_resource() being called for the same root
> > > resource won't provide the same region... We only need to do this (insert
> > > the
> > > region into "iomem_resource") if we allocated it from our *internal*
> > > "xen_resource", as *global* "iomem_resource" (which is used everywhere) is
> > > not
> > > aware of that region has been already allocated. So inserting a region
> > > here we
> > > reserving it, otherwise it could be reused elsewhere.
> > But elsewhere where?
> 
> I think, theoretically everywhere where allocate_resource(&iomem_resource,
> ...) is called.
> 
> 
> > Let's say that allocate_resource allocates a range from xen_resource.
> >  From reading the code, it doesn't look like iomem_resource would have
> > that range because the extended regions described under /hypervisor are
> > not added automatically to iomem_resource.
> > 
> > So what if we don't call insert_resource? Nothing could allocate the
> > same range because iomem_resource doesn't have it at all and
> > xen_resource is not used anywhere if not here.
> > 
> > What am I missing?
> 
> 
> Below my understanding which, of course, might be wrong.
> 
> If we don't claim resource by calling insert_resource (or even
> request_resource) here then the same range could be allocated everywhere where
> allocate_resource(&iomem_resource, ...) is called.
> I don't see what prevents the same range from being allocated. Why actually
> allocate_resource(&iomem_resource, ...) can't provide the same range if it is
> free (not-reserved-yet) from it's PoV? The comment above allocate_resource()
> says "allocate empty slot in the resource tree given range & alignment". So
> this "empty slot" could be exactly the same range.
> 
> I experimented with that a bit trying to call
> allocate_resource(&iomem_resource, ...) several times in another place to see
> what ranges it returns in both cases (w/ and w/o calling insert_resource
> here). So an experiment confirmed (of course, if I made it correctly) that the
> same range could be allocated if we didn't call insert_resource() here. And as
> I understand there is nothing strange here, as iomem_resource covers all
> address space initially (0, -1) and everything *not* inserted/requested (in
> other words, reserved) yet is considered as free and could be provided if fits
> constraints. Or I really missed something?

Thanks for the explanation! It was me that didn't know that
iomem_resource covers all the address space initially. I thought it was
populated only with actual iomem ranges. Now it makes sense, thanks!


> It feels to me that it would be better to call request_resource() instead of
> insert_resource(). It seems, that if no conflict happens both functions will
> behave in same way, but in case of conflict if the conflicting resource
> entirely fit the new resource the former will return an error. I think, this
> way we will be able to detect that a range we are trying to reserve is already
> present and bail out early.
> 
> 
> > 
> > Or maybe it is the other way around: core Linux code assumes everything
> > is described in iomem_resource so something under kernel/ or mm/ would
> > crash if we start using a page pointing to an address missing from
> > iomem_resource?
> >     
> > > > >    	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
> > > > >    	if (!pgmap) {
> > > > >    		ret = -ENOMEM;
> > > > > @@ -95,12 +137,40 @@ static int fill_list(unsigned int nr_pages)
> > > > >    err_memremap:
> > > > >    	kfree(pgmap);
> > > > >    err_pgmap:
> > > > > +	if (tmp_res) {
> > > > > +		release_resource(tmp_res);
> > > > > +		kfree(tmp_res);
> > > > > +	}
> > > > > +err_insert:
> > > > >    	release_resource(res);
> > > > >    err_resource:
> > > > >    	kfree(res);
> > > > >    	return ret;
> > > > >    }
> > > > >    +static void unpopulated_init(void)
> > > > > +{
> > > > > +	static bool inited = false;
> > > > initialized = false
> > > ok.
> > > 
> > > 
> > > > 
> > > > > +	int ret;
> > > > > +
> > > > > +	if (inited)
> > > > > +		return;
> > > > > +
> > > > > +	/*
> > > > > +	 * Try to initialize Xen resource the first and fall back to
> > > > > default
> > > > > +	 * resource if arch doesn't offer one.
> > > > > +	 */
> > > > > +	ret = arch_xen_unpopulated_init(&xen_resource);
> > > > > +	if (!ret)
> > > > > +		target_resource = &xen_resource;
> > > > > +	else if (ret == -ENOSYS)
> > > > > +		target_resource = &iomem_resource;
> > > > > +	else
> > > > > +		pr_err("Cannot initialize Xen resource\n");
> > > > > +
> > > > > +	inited = true;
> > > > > +}
> > > > Would it make sense to call unpopulated_init from an init function,
> > > > rather than every time xen_alloc_unpopulated_pages is called?
> > > Good point, thank you. Will do. To be honest, I also don't like the
> > > current
> > > approach much.
> > > 
> > > 
> > > > 
> > > > >    /**
> > > > >     * xen_alloc_unpopulated_pages - alloc unpopulated pages
> > > > >     * @nr_pages: Number of pages
> > > > > @@ -112,6 +182,16 @@ int xen_alloc_unpopulated_pages(unsigned int
> > > > > nr_pages, struct page **pages)
> > > > >    	unsigned int i;
> > > > >    	int ret = 0;
> > > > >    +	unpopulated_init();
> > > > > +
> > > > > +	/*
> > > > > +	 * Fall back to default behavior if we do not have any
> > > > > suitable
> > > > > resource
> > > > > +	 * to allocate required region from and as the result we won't
> > > > > be able
> > > > > to
> > > > > +	 * construct pages.
> > > > > +	 */
> > > > > +	if (!target_resource)
> > > > > +		return alloc_xenballooned_pages(nr_pages, pages);
> > > > The commit message says that the behavior on x86 doesn't change but this
> > > > seems to be a change that could impact x86?
> > > I don't think, however I didn't tested on x86 and might be wrong, but
> > > according to the current patch, on x86 the "target_resource" is always
> > > valid
> > > and points to the "iomem_resource" as arch_xen_unpopulated_init() is not
> > > implemented. So there won't be any fallback to use
> > > alloc_(free)_xenballooned_pages() here and fill_list() will behave as
> > > usual.
> >   If target_resource is always valid, then we don't need this special
> > check. In fact, the condition should never be true.
> 
> 
> The target_resource is always valid and points to the "iomem_resource" on x86
> (this is equivalent to the behavior before this patch).
> On Arm target_resource might be NULL if arch_xen_unpopulated_init() failed,
> for example, if no extended regions reported by the hypervisor.
> We cannot use "iomem_resource" on Arm, only a resource constructed from
> extended regions. This is why I added that check (and fallback to xenballooned
> pages).
> What I was thinking is that in case of using old Xen (although we would need
> to balloon out RAM pages) we still would be able to keep working, so no need
> to disable CONFIG_XEN_UNPOPULATED_ALLOC on such setups.
>  
>    
> > > You raised a really good question, on Arm we need a fallback to balloon
> > > out
> > > RAM pages again if hypervisor doesn't provide extended regions (we run on
> > > old
> > > version, no unused regions with reasonable size, etc), so I decided to put
> > > a
> > > fallback code here, an indicator of the failure is invalid
> > > "target_resource".
> > I think it is unnecessary as we already assume today that
> > &iomem_resource is always available.
> > > I noticed the patch which is about to be upstreamed that removes
> > > alloc_(free)xenballooned_pages API [1]. Right now I have no idea how/where
> > > this fallback could be implemented as this is under build option control
> > > (CONFIG_XEN_UNPOPULATED_ALLOC). So the API with the same name is either
> > > used
> > > for unpopulated pages (if set) or ballooned pages (if not set). I would
> > > appreciate suggestions regarding that. I am wondering would it be possible
> > > and
> > > correctly to have both mechanisms (unpopulated and ballooned) enabled by
> > > default and some init code to decide which one to use at runtime or some
> > > sort?
> > I would keep it simple and remove the fallback from this patch. So:
> > 
> > - if not CONFIG_XEN_UNPOPULATED_ALLOC, then balloon
> > - if CONFIG_XEN_UNPOPULATED_ALLOC, then
> >      - xen_resource if present
> >      - otherwise iomem_resource
> 
> Unfortunately, we cannot use iomem_resource on Arm safely, either xen_resource
> or fail (if no fallback exists).
> 
> 
> > 
> > The xen_resource/iomem_resource config can be done at init time using
> > target_resource. At runtime, target_resource is always != NULL so we
> > just go ahead and use it.
> 
> 
> Thank you for the suggestion. OK, let's keep it simple and drop fallback
> attempts for now. With one remark:
> We will make CONFIG_XEN_UNPOPULATED_ALLOC disabled by default on Arm in next
> patch. So by default everything will behave as usual on Arm (balloon out RAM
> pages),
> if user knows for sure that Xen reports extended regions, he/she can enable
> the config. This way we won't break anything. What do you think?

Actually after reading your replies and explanation I changed opinion: I
think we do need the fallback because Linux cannot really assume that
it is running on "new Xen" so it definitely needs to keep working if
CONFIG_XEN_UNPOPULATED_ALLOC is enabled and the extended regions are not
advertised.

I think we'll have to roll back some of the changes introduced by
121f2faca2c0a. That's because even if CONFIG_XEN_UNPOPULATED_ALLOC is
enabled we cannot know if we can use unpopulated-alloc or whether we
have to use alloc_xenballooned_pages until we parse the /hypervisor node
in device tree at runtime.

In short, we cannot switch between unpopulated-alloc and
alloc_xenballooned_pages at build time, we have to do it at runtime
(boot time).

Juergen, what do you think?


^ permalink raw reply	[relevance 0%]

* Re: [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-11-19  0:59  0%       ` Stefano Stabellini
@ 2021-11-19 18:18  0%         ` Oleksandr
  2021-11-20  2:19  0%           ` Stefano Stabellini
  0 siblings, 1 reply; 200+ results
From: Oleksandr @ 2021-11-19 18:18 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: xen-devel, linux-kernel, Oleksandr Tyshchenko, Boris Ostrovsky,
	Juergen Gross, Julien Grall


On 19.11.21 02:59, Stefano Stabellini wrote:


Hi Stefano

> On Tue, 9 Nov 2021, Oleksandr wrote:
>> On 28.10.21 19:37, Stefano Stabellini wrote:
>>
>> Hi Stefano
>>
>> I am sorry for the late response.
>>
>>> On Tue, 26 Oct 2021, Oleksandr Tyshchenko wrote:
>>>> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>>>>
>>>> The main reason of this change is that unpopulated-alloc
>>>> code cannot be used in its current form on Arm, but there
>>>> is a desire to reuse it to avoid wasting real RAM pages
>>>> for the grant/foreign mappings.
>>>>
>>>> The problem is that system "iomem_resource" is used for
>>>> the address space allocation, but the really unallocated
>>>> space can't be figured out precisely by the domain on Arm
>>>> without hypervisor involvement. For example, not all device
>>>> I/O regions are known by the time domain starts creating
>>>> grant/foreign mappings. And following the advise from
>>>> "iomem_resource" we might end up reusing these regions by
>>>> a mistake. So, the hypervisor which maintains the P2M for
>>>> the domain is in the best position to provide unused regions
>>>> of guest physical address space which could be safely used
>>>> to create grant/foreign mappings.
>>>>
>>>> Introduce new helper arch_xen_unpopulated_init() which purpose
>>>> is to create specific Xen resource based on the memory regions
>>>> provided by the hypervisor to be used as unused space for Xen
>>>> scratch pages.
>>>>
>>>> If arch doesn't implement arch_xen_unpopulated_init() to
>>>> initialize Xen resource the default "iomem_resource" will be used.
>>>> So the behavior on x86 won't be changed.
>>>>
>>>> Also fall back to allocate xenballooned pages (steal real RAM
>>>> pages) if we do not have any suitable resource to work with and
>>>> as the result we won't be able to provide unpopulated pages.
>>>>
>>>> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>>>> ---
>>>> Changes RFC -> V2:
>>>>      - new patch, instead of
>>>>       "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to provide
>>>> unallocated space"
>>>> ---
>>>>    drivers/xen/unpopulated-alloc.c | 89
>>>> +++++++++++++++++++++++++++++++++++++++--
>>>>    include/xen/xen.h               |  2 +
>>>>    2 files changed, 88 insertions(+), 3 deletions(-)
>>>>
>>>> diff --git a/drivers/xen/unpopulated-alloc.c
>>>> b/drivers/xen/unpopulated-alloc.c
>>>> index a03dc5b..1f1d8d8 100644
>>>> --- a/drivers/xen/unpopulated-alloc.c
>>>> +++ b/drivers/xen/unpopulated-alloc.c
>>>> @@ -8,6 +8,7 @@
>>>>      #include <asm/page.h>
>>>>    +#include <xen/balloon.h>
>>>>    #include <xen/page.h>
>>>>    #include <xen/xen.h>
>>>>    @@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
>>>>    static struct page *page_list;
>>>>    static unsigned int list_count;
>>>>    +static struct resource *target_resource;
>>>> +static struct resource xen_resource = {
>>>> +	.name = "Xen unused space",
>>>> +};
>>>> +
>>>> +/*
>>>> + * If arch is not happy with system "iomem_resource" being used for
>>>> + * the region allocation it can provide it's own view by initializing
>>>> + * "xen_resource" with unused regions of guest physical address space
>>>> + * provided by the hypervisor.
>>>> + */
>>>> +int __weak arch_xen_unpopulated_init(struct resource *res)
>>>> +{
>>>> +	return -ENOSYS;
>>>> +}
>>>> +
>>>>    static int fill_list(unsigned int nr_pages)
>>>>    {
>>>>    	struct dev_pagemap *pgmap;
>>>> -	struct resource *res;
>>>> +	struct resource *res, *tmp_res = NULL;
>>>>    	void *vaddr;
>>>>    	unsigned int i, alloc_pages = round_up(nr_pages, PAGES_PER_SECTION);
>>>> -	int ret = -ENOMEM;
>>>> +	int ret;
>>>>      	res = kzalloc(sizeof(*res), GFP_KERNEL);
>>>>    	if (!res)
>>>> @@ -30,7 +47,7 @@ static int fill_list(unsigned int nr_pages)
>>>>    	res->name = "Xen scratch";
>>>>    	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
>>>>    -	ret = allocate_resource(&iomem_resource, res,
>>>> +	ret = allocate_resource(target_resource, res,
>>>>    				alloc_pages * PAGE_SIZE, 0, -1,
>>>>    				PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
>>>>    	if (ret < 0) {
>>>> @@ -38,6 +55,31 @@ static int fill_list(unsigned int nr_pages)
>>>>    		goto err_resource;
>>>>    	}
>>>>    +	/*
>>>> +	 * Reserve the region previously allocated from Xen resource to avoid
>>>> +	 * re-using it by someone else.
>>>> +	 */
>>>> +	if (target_resource != &iomem_resource) {
>>>> +		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
>>>> +		if (!res) {
>>>> +			ret = -ENOMEM;
>>>> +			goto err_insert;
>>>> +		}
>>>> +
>>>> +		tmp_res->name = res->name;
>>>> +		tmp_res->start = res->start;
>>>> +		tmp_res->end = res->end;
>>>> +		tmp_res->flags = res->flags;
>>>> +
>>>> +		ret = insert_resource(&iomem_resource, tmp_res);
>>>> +		if (ret < 0) {
>>>> +			pr_err("Cannot insert IOMEM resource [%llx - %llx]\n",
>>>> +			       tmp_res->start, tmp_res->end);
>>>> +			kfree(tmp_res);
>>>> +			goto err_insert;
>>>> +		}
>>>> +	}
>>> I am a bit confused.. why do we need to do this? Who could be
>>> erroneously re-using the region? Are you saying that the next time
>>> allocate_resource is called it could find the same region again? It
>>> doesn't seem possible?
>>
>> No, as I understand the allocate_resource() being called for the same root
>> resource won't provide the same region... We only need to do this (insert the
>> region into "iomem_resource") if we allocated it from our *internal*
>> "xen_resource", as *global* "iomem_resource" (which is used everywhere) is not
>> aware of that region has been already allocated. So inserting a region here we
>> reserving it, otherwise it could be reused elsewhere.
> But elsewhere where?

I think, theoretically everywhere where 
allocate_resource(&iomem_resource, ...) is called.


> Let's say that allocate_resource allocates a range from xen_resource.
>  From reading the code, it doesn't look like iomem_resource would have
> that range because the extended regions described under /hypervisor are
> not added automatically to iomem_resource.
>
> So what if we don't call insert_resource? Nothing could allocate the
> same range because iomem_resource doesn't have it at all and
> xen_resource is not used anywhere if not here.
>
> What am I missing?


Below my understanding which, of course, might be wrong.

If we don't claim resource by calling insert_resource (or even 
request_resource) here then the same range could be allocated everywhere 
where allocate_resource(&iomem_resource, ...) is called.
I don't see what prevents the same range from being allocated. Why 
actually allocate_resource(&iomem_resource, ...) can't provide the same 
range if it is free (not-reserved-yet) from it's PoV? The comment above 
allocate_resource() says "allocate empty slot in the resource tree given 
range & alignment". So this "empty slot" could be exactly the same range.

I experimented with that a bit trying to call 
allocate_resource(&iomem_resource, ...) several times in another place 
to see what ranges it returns in both cases (w/ and w/o calling 
insert_resource here). So an experiment confirmed (of course, if I made 
it correctly) that the same range could be allocated if we didn't call 
insert_resource() here. And as I understand there is nothing strange 
here, as iomem_resource covers all address space initially (0, -1) and 
everything *not* inserted/requested (in other words, reserved) yet is 
considered as free and could be provided if fits constraints. Or I 
really missed something?

It feels to me that it would be better to call request_resource() 
instead of insert_resource(). It seems, that if no conflict happens both 
functions will behave in same way, but in case of conflict if the 
conflicting resource entirely fit the new resource the former will 
return an error. I think, this way we will be able to detect that a 
range we are trying to reserve is already present and bail out early.


>
> Or maybe it is the other way around: core Linux code assumes everything
> is described in iomem_resource so something under kernel/ or mm/ would
> crash if we start using a page pointing to an address missing from
> iomem_resource?
>   
>   
>>>>    	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
>>>>    	if (!pgmap) {
>>>>    		ret = -ENOMEM;
>>>> @@ -95,12 +137,40 @@ static int fill_list(unsigned int nr_pages)
>>>>    err_memremap:
>>>>    	kfree(pgmap);
>>>>    err_pgmap:
>>>> +	if (tmp_res) {
>>>> +		release_resource(tmp_res);
>>>> +		kfree(tmp_res);
>>>> +	}
>>>> +err_insert:
>>>>    	release_resource(res);
>>>>    err_resource:
>>>>    	kfree(res);
>>>>    	return ret;
>>>>    }
>>>>    +static void unpopulated_init(void)
>>>> +{
>>>> +	static bool inited = false;
>>> initialized = false
>> ok.
>>
>>
>>>
>>>> +	int ret;
>>>> +
>>>> +	if (inited)
>>>> +		return;
>>>> +
>>>> +	/*
>>>> +	 * Try to initialize Xen resource the first and fall back to default
>>>> +	 * resource if arch doesn't offer one.
>>>> +	 */
>>>> +	ret = arch_xen_unpopulated_init(&xen_resource);
>>>> +	if (!ret)
>>>> +		target_resource = &xen_resource;
>>>> +	else if (ret == -ENOSYS)
>>>> +		target_resource = &iomem_resource;
>>>> +	else
>>>> +		pr_err("Cannot initialize Xen resource\n");
>>>> +
>>>> +	inited = true;
>>>> +}
>>> Would it make sense to call unpopulated_init from an init function,
>>> rather than every time xen_alloc_unpopulated_pages is called?
>> Good point, thank you. Will do. To be honest, I also don't like the current
>> approach much.
>>
>>
>>>
>>>>    /**
>>>>     * xen_alloc_unpopulated_pages - alloc unpopulated pages
>>>>     * @nr_pages: Number of pages
>>>> @@ -112,6 +182,16 @@ int xen_alloc_unpopulated_pages(unsigned int
>>>> nr_pages, struct page **pages)
>>>>    	unsigned int i;
>>>>    	int ret = 0;
>>>>    +	unpopulated_init();
>>>> +
>>>> +	/*
>>>> +	 * Fall back to default behavior if we do not have any suitable
>>>> resource
>>>> +	 * to allocate required region from and as the result we won't be able
>>>> to
>>>> +	 * construct pages.
>>>> +	 */
>>>> +	if (!target_resource)
>>>> +		return alloc_xenballooned_pages(nr_pages, pages);
>>> The commit message says that the behavior on x86 doesn't change but this
>>> seems to be a change that could impact x86?
>> I don't think, however I didn't tested on x86 and might be wrong, but
>> according to the current patch, on x86 the "target_resource" is always valid
>> and points to the "iomem_resource" as arch_xen_unpopulated_init() is not
>> implemented. So there won't be any fallback to use
>> alloc_(free)_xenballooned_pages() here and fill_list() will behave as usual.
>   
> If target_resource is always valid, then we don't need this special
> check. In fact, the condition should never be true.


The target_resource is always valid and points to the "iomem_resource" 
on x86 (this is equivalent to the behavior before this patch).
On Arm target_resource might be NULL if arch_xen_unpopulated_init() 
failed, for example, if no extended regions reported by the hypervisor.
We cannot use "iomem_resource" on Arm, only a resource constructed from 
extended regions. This is why I added that check (and fallback to 
xenballooned pages).
What I was thinking is that in case of using old Xen (although we would 
need to balloon out RAM pages) we still would be able to keep working, 
so no need to disable CONFIG_XEN_UNPOPULATED_ALLOC on such setups.


>
>
>> You raised a really good question, on Arm we need a fallback to balloon out
>> RAM pages again if hypervisor doesn't provide extended regions (we run on old
>> version, no unused regions with reasonable size, etc), so I decided to put a
>> fallback code here, an indicator of the failure is invalid "target_resource".
> I think it is unnecessary as we already assume today that
> &iomem_resource is always available.
>> I noticed the patch which is about to be upstreamed that removes
>> alloc_(free)xenballooned_pages API [1]. Right now I have no idea how/where
>> this fallback could be implemented as this is under build option control
>> (CONFIG_XEN_UNPOPULATED_ALLOC). So the API with the same name is either used
>> for unpopulated pages (if set) or ballooned pages (if not set). I would
>> appreciate suggestions regarding that. I am wondering would it be possible and
>> correctly to have both mechanisms (unpopulated and ballooned) enabled by
>> default and some init code to decide which one to use at runtime or some sort?
> I would keep it simple and remove the fallback from this patch. So:
>
> - if not CONFIG_XEN_UNPOPULATED_ALLOC, then balloon
> - if CONFIG_XEN_UNPOPULATED_ALLOC, then
>      - xen_resource if present
>      - otherwise iomem_resource

Unfortunately, we cannot use iomem_resource on Arm safely, either 
xen_resource or fail (if no fallback exists).


>
> The xen_resource/iomem_resource config can be done at init time using
> target_resource. At runtime, target_resource is always != NULL so we
> just go ahead and use it.


Thank you for the suggestion. OK, let's keep it simple and drop fallback 
attempts for now. With one remark:
We will make CONFIG_XEN_UNPOPULATED_ALLOC disabled by default on Arm in 
next patch. So by default everything will behave as usual on Arm 
(balloon out RAM pages),
if user knows for sure that Xen reports extended regions, he/she can 
enable the config. This way we won't break anything. What do you think?


[snip]


-- 
Regards,

Oleksandr Tyshchenko



^ permalink raw reply	[relevance 0%]

* Re: [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-11-09 18:34  0%     ` Oleksandr
@ 2021-11-19  0:59  0%       ` Stefano Stabellini
  2021-11-19 18:18  0%         ` Oleksandr
  0 siblings, 1 reply; 200+ results
From: Stefano Stabellini @ 2021-11-19  0:59 UTC (permalink / raw)
  To: Oleksandr
  Cc: Stefano Stabellini, xen-devel, linux-kernel,
	Oleksandr Tyshchenko, Boris Ostrovsky, Juergen Gross,
	Julien Grall

On Tue, 9 Nov 2021, Oleksandr wrote:
> On 28.10.21 19:37, Stefano Stabellini wrote:
> 
> Hi Stefano
> 
> I am sorry for the late response.
> 
> > On Tue, 26 Oct 2021, Oleksandr Tyshchenko wrote:
> > > From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> > > 
> > > The main reason of this change is that unpopulated-alloc
> > > code cannot be used in its current form on Arm, but there
> > > is a desire to reuse it to avoid wasting real RAM pages
> > > for the grant/foreign mappings.
> > > 
> > > The problem is that system "iomem_resource" is used for
> > > the address space allocation, but the really unallocated
> > > space can't be figured out precisely by the domain on Arm
> > > without hypervisor involvement. For example, not all device
> > > I/O regions are known by the time domain starts creating
> > > grant/foreign mappings. And following the advise from
> > > "iomem_resource" we might end up reusing these regions by
> > > a mistake. So, the hypervisor which maintains the P2M for
> > > the domain is in the best position to provide unused regions
> > > of guest physical address space which could be safely used
> > > to create grant/foreign mappings.
> > > 
> > > Introduce new helper arch_xen_unpopulated_init() which purpose
> > > is to create specific Xen resource based on the memory regions
> > > provided by the hypervisor to be used as unused space for Xen
> > > scratch pages.
> > > 
> > > If arch doesn't implement arch_xen_unpopulated_init() to
> > > initialize Xen resource the default "iomem_resource" will be used.
> > > So the behavior on x86 won't be changed.
> > > 
> > > Also fall back to allocate xenballooned pages (steal real RAM
> > > pages) if we do not have any suitable resource to work with and
> > > as the result we won't be able to provide unpopulated pages.
> > > 
> > > Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> > > ---
> > > Changes RFC -> V2:
> > >     - new patch, instead of
> > >      "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to provide
> > > unallocated space"
> > > ---
> > >   drivers/xen/unpopulated-alloc.c | 89
> > > +++++++++++++++++++++++++++++++++++++++--
> > >   include/xen/xen.h               |  2 +
> > >   2 files changed, 88 insertions(+), 3 deletions(-)
> > > 
> > > diff --git a/drivers/xen/unpopulated-alloc.c
> > > b/drivers/xen/unpopulated-alloc.c
> > > index a03dc5b..1f1d8d8 100644
> > > --- a/drivers/xen/unpopulated-alloc.c
> > > +++ b/drivers/xen/unpopulated-alloc.c
> > > @@ -8,6 +8,7 @@
> > >     #include <asm/page.h>
> > >   +#include <xen/balloon.h>
> > >   #include <xen/page.h>
> > >   #include <xen/xen.h>
> > >   @@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
> > >   static struct page *page_list;
> > >   static unsigned int list_count;
> > >   +static struct resource *target_resource;
> > > +static struct resource xen_resource = {
> > > +	.name = "Xen unused space",
> > > +};
> > > +
> > > +/*
> > > + * If arch is not happy with system "iomem_resource" being used for
> > > + * the region allocation it can provide it's own view by initializing
> > > + * "xen_resource" with unused regions of guest physical address space
> > > + * provided by the hypervisor.
> > > + */
> > > +int __weak arch_xen_unpopulated_init(struct resource *res)
> > > +{
> > > +	return -ENOSYS;
> > > +}
> > > +
> > >   static int fill_list(unsigned int nr_pages)
> > >   {
> > >   	struct dev_pagemap *pgmap;
> > > -	struct resource *res;
> > > +	struct resource *res, *tmp_res = NULL;
> > >   	void *vaddr;
> > >   	unsigned int i, alloc_pages = round_up(nr_pages, PAGES_PER_SECTION);
> > > -	int ret = -ENOMEM;
> > > +	int ret;
> > >     	res = kzalloc(sizeof(*res), GFP_KERNEL);
> > >   	if (!res)
> > > @@ -30,7 +47,7 @@ static int fill_list(unsigned int nr_pages)
> > >   	res->name = "Xen scratch";
> > >   	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
> > >   -	ret = allocate_resource(&iomem_resource, res,
> > > +	ret = allocate_resource(target_resource, res,
> > >   				alloc_pages * PAGE_SIZE, 0, -1,
> > >   				PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
> > >   	if (ret < 0) {
> > > @@ -38,6 +55,31 @@ static int fill_list(unsigned int nr_pages)
> > >   		goto err_resource;
> > >   	}
> > >   +	/*
> > > +	 * Reserve the region previously allocated from Xen resource to avoid
> > > +	 * re-using it by someone else.
> > > +	 */
> > > +	if (target_resource != &iomem_resource) {
> > > +		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
> > > +		if (!res) {
> > > +			ret = -ENOMEM;
> > > +			goto err_insert;
> > > +		}
> > > +
> > > +		tmp_res->name = res->name;
> > > +		tmp_res->start = res->start;
> > > +		tmp_res->end = res->end;
> > > +		tmp_res->flags = res->flags;
> > > +
> > > +		ret = insert_resource(&iomem_resource, tmp_res);
> > > +		if (ret < 0) {
> > > +			pr_err("Cannot insert IOMEM resource [%llx - %llx]\n",
> > > +			       tmp_res->start, tmp_res->end);
> > > +			kfree(tmp_res);
> > > +			goto err_insert;
> > > +		}
> > > +	}
> > I am a bit confused.. why do we need to do this? Who could be
> > erroneously re-using the region? Are you saying that the next time
> > allocate_resource is called it could find the same region again? It
> > doesn't seem possible?
> 
> 
> No, as I understand the allocate_resource() being called for the same root
> resource won't provide the same region... We only need to do this (insert the
> region into "iomem_resource") if we allocated it from our *internal*
> "xen_resource", as *global* "iomem_resource" (which is used everywhere) is not
> aware of that region has been already allocated. So inserting a region here we
> reserving it, otherwise it could be reused elsewhere.

But elsewhere where?

Let's say that allocate_resource allocates a range from xen_resource.
From reading the code, it doesn't look like iomem_resource would have
that range because the extended regions described under /hypervisor are
not added automatically to iomem_resource.

So what if we don't call insert_resource? Nothing could allocate the
same range because iomem_resource doesn't have it at all and
xen_resource is not used anywhere if not here.

What am I missing?


Or maybe it is the other way around: core Linux code assumes everything
is described in iomem_resource so something under kernel/ or mm/ would
crash if we start using a page pointing to an address missing from
iomem_resource?
 
 
> > >   	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
> > >   	if (!pgmap) {
> > >   		ret = -ENOMEM;
> > > @@ -95,12 +137,40 @@ static int fill_list(unsigned int nr_pages)
> > >   err_memremap:
> > >   	kfree(pgmap);
> > >   err_pgmap:
> > > +	if (tmp_res) {
> > > +		release_resource(tmp_res);
> > > +		kfree(tmp_res);
> > > +	}
> > > +err_insert:
> > >   	release_resource(res);
> > >   err_resource:
> > >   	kfree(res);
> > >   	return ret;
> > >   }
> > >   +static void unpopulated_init(void)
> > > +{
> > > +	static bool inited = false;
> > initialized = false
> 
> ok.
> 
> 
> > 
> > 
> > > +	int ret;
> > > +
> > > +	if (inited)
> > > +		return;
> > > +
> > > +	/*
> > > +	 * Try to initialize Xen resource the first and fall back to default
> > > +	 * resource if arch doesn't offer one.
> > > +	 */
> > > +	ret = arch_xen_unpopulated_init(&xen_resource);
> > > +	if (!ret)
> > > +		target_resource = &xen_resource;
> > > +	else if (ret == -ENOSYS)
> > > +		target_resource = &iomem_resource;
> > > +	else
> > > +		pr_err("Cannot initialize Xen resource\n");
> > > +
> > > +	inited = true;
> > > +}
> > Would it make sense to call unpopulated_init from an init function,
> > rather than every time xen_alloc_unpopulated_pages is called?
> 
> Good point, thank you. Will do. To be honest, I also don't like the current
> approach much.
> 
> 
> > 
> > 
> > >   /**
> > >    * xen_alloc_unpopulated_pages - alloc unpopulated pages
> > >    * @nr_pages: Number of pages
> > > @@ -112,6 +182,16 @@ int xen_alloc_unpopulated_pages(unsigned int
> > > nr_pages, struct page **pages)
> > >   	unsigned int i;
> > >   	int ret = 0;
> > >   +	unpopulated_init();
> > > +
> > > +	/*
> > > +	 * Fall back to default behavior if we do not have any suitable
> > > resource
> > > +	 * to allocate required region from and as the result we won't be able
> > > to
> > > +	 * construct pages.
> > > +	 */
> > > +	if (!target_resource)
> > > +		return alloc_xenballooned_pages(nr_pages, pages);
> > The commit message says that the behavior on x86 doesn't change but this
> > seems to be a change that could impact x86?
> I don't think, however I didn't tested on x86 and might be wrong, but
> according to the current patch, on x86 the "target_resource" is always valid
> and points to the "iomem_resource" as arch_xen_unpopulated_init() is not
> implemented. So there won't be any fallback to use
> alloc_(free)_xenballooned_pages() here and fill_list() will behave as usual.
 
If target_resource is always valid, then we don't need this special
check. In fact, the condition should never be true.


> You raised a really good question, on Arm we need a fallback to balloon out
> RAM pages again if hypervisor doesn't provide extended regions (we run on old
> version, no unused regions with reasonable size, etc), so I decided to put a
> fallback code here, an indicator of the failure is invalid "target_resource".

I think it is unnecessary as we already assume today that
&iomem_resource is always available.


> I noticed the patch which is about to be upstreamed that removes
> alloc_(free)xenballooned_pages API [1]. Right now I have no idea how/where
> this fallback could be implemented as this is under build option control
> (CONFIG_XEN_UNPOPULATED_ALLOC). So the API with the same name is either used
> for unpopulated pages (if set) or ballooned pages (if not set). I would
> appreciate suggestions regarding that. I am wondering would it be possible and
> correctly to have both mechanisms (unpopulated and ballooned) enabled by
> default and some init code to decide which one to use at runtime or some sort?

I would keep it simple and remove the fallback from this patch. So:

- if not CONFIG_XEN_UNPOPULATED_ALLOC, then balloon
- if CONFIG_XEN_UNPOPULATED_ALLOC, then
    - xen_resource if present
    - otherwise iomem_resource

The xen_resource/iomem_resource config can be done at init time using
target_resource. At runtime, target_resource is always != NULL so we
just go ahead and use it.

 
> > 
> > >   	mutex_lock(&list_lock);
> > >   	if (list_count < nr_pages) {
> > >   		ret = fill_list(nr_pages - list_count);
> > > @@ -159,6 +239,9 @@ void xen_free_unpopulated_pages(unsigned int nr_pages,
> > > struct page **pages)
> > >   {
> > >   	unsigned int i;
> > >   +	if (!target_resource)
> > > +		return free_xenballooned_pages(nr_pages, pages);
> > > +
> > >   	mutex_lock(&list_lock);
> > >   	for (i = 0; i < nr_pages; i++) {
> > >   		pages[i]->zone_device_data = page_list;
> > > diff --git a/include/xen/xen.h b/include/xen/xen.h
> > > index 43efba0..55d2ef8 100644
> > > --- a/include/xen/xen.h
> > > +++ b/include/xen/xen.h
> > > @@ -55,6 +55,8 @@ extern u64 xen_saved_max_mem_size;
> > >   #ifdef CONFIG_XEN_UNPOPULATED_ALLOC
> > >   int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page
> > > **pages);
> > >   void xen_free_unpopulated_pages(unsigned int nr_pages, struct page
> > > **pages);
> > > +struct resource;
> > This is to avoid having to #include linux/ioport.h, right? Is it a
> > problem or is it just to minimize the headers dependencies?
> > 
> > It looks like adding #include <linux/ioport.h> below #include
> > <linux/types.h> in include/xen/xen.h would work too. I am not sure what
> > is the best way though, I'll let Juergen comment.
> Yes, the initial reason to use forward declaration here was to minimize the
> headers dependencies.
> I have rechecked, your suggestion works as well, thank you. So I would be OK
> either way, let's wait for other opinions.
> 
> 
> > 
> > 
> > > +int arch_xen_unpopulated_init(struct resource *res);
> > >   #else
> > >   #define xen_alloc_unpopulated_pages alloc_xenballooned_pages
> > >   #define xen_free_unpopulated_pages free_xenballooned_pages
> > > -- 
> > > 2.7.4
> > > 
> 
> [1] https://lore.kernel.org/lkml/20211102092234.17852-1-jgross@suse.com/
> 
> -- 
> Regards,
> 
> Oleksandr Tyshchenko
> 


^ permalink raw reply	[relevance 0%]

* Re: [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-10-28 16:37  0%   ` Stefano Stabellini
@ 2021-11-09 18:34  0%     ` Oleksandr
  2021-11-19  0:59  0%       ` Stefano Stabellini
  0 siblings, 1 reply; 200+ results
From: Oleksandr @ 2021-11-09 18:34 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: xen-devel, linux-kernel, Oleksandr Tyshchenko, Boris Ostrovsky,
	Juergen Gross, Julien Grall


On 28.10.21 19:37, Stefano Stabellini wrote:

Hi Stefano

I am sorry for the late response.

> On Tue, 26 Oct 2021, Oleksandr Tyshchenko wrote:
>> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>>
>> The main reason of this change is that unpopulated-alloc
>> code cannot be used in its current form on Arm, but there
>> is a desire to reuse it to avoid wasting real RAM pages
>> for the grant/foreign mappings.
>>
>> The problem is that system "iomem_resource" is used for
>> the address space allocation, but the really unallocated
>> space can't be figured out precisely by the domain on Arm
>> without hypervisor involvement. For example, not all device
>> I/O regions are known by the time domain starts creating
>> grant/foreign mappings. And following the advise from
>> "iomem_resource" we might end up reusing these regions by
>> a mistake. So, the hypervisor which maintains the P2M for
>> the domain is in the best position to provide unused regions
>> of guest physical address space which could be safely used
>> to create grant/foreign mappings.
>>
>> Introduce new helper arch_xen_unpopulated_init() which purpose
>> is to create specific Xen resource based on the memory regions
>> provided by the hypervisor to be used as unused space for Xen
>> scratch pages.
>>
>> If arch doesn't implement arch_xen_unpopulated_init() to
>> initialize Xen resource the default "iomem_resource" will be used.
>> So the behavior on x86 won't be changed.
>>
>> Also fall back to allocate xenballooned pages (steal real RAM
>> pages) if we do not have any suitable resource to work with and
>> as the result we won't be able to provide unpopulated pages.
>>
>> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
>> ---
>> Changes RFC -> V2:
>>     - new patch, instead of
>>      "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to provide unallocated space"
>> ---
>>   drivers/xen/unpopulated-alloc.c | 89 +++++++++++++++++++++++++++++++++++++++--
>>   include/xen/xen.h               |  2 +
>>   2 files changed, 88 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/xen/unpopulated-alloc.c b/drivers/xen/unpopulated-alloc.c
>> index a03dc5b..1f1d8d8 100644
>> --- a/drivers/xen/unpopulated-alloc.c
>> +++ b/drivers/xen/unpopulated-alloc.c
>> @@ -8,6 +8,7 @@
>>   
>>   #include <asm/page.h>
>>   
>> +#include <xen/balloon.h>
>>   #include <xen/page.h>
>>   #include <xen/xen.h>
>>   
>> @@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
>>   static struct page *page_list;
>>   static unsigned int list_count;
>>   
>> +static struct resource *target_resource;
>> +static struct resource xen_resource = {
>> +	.name = "Xen unused space",
>> +};
>> +
>> +/*
>> + * If arch is not happy with system "iomem_resource" being used for
>> + * the region allocation it can provide it's own view by initializing
>> + * "xen_resource" with unused regions of guest physical address space
>> + * provided by the hypervisor.
>> + */
>> +int __weak arch_xen_unpopulated_init(struct resource *res)
>> +{
>> +	return -ENOSYS;
>> +}
>> +
>>   static int fill_list(unsigned int nr_pages)
>>   {
>>   	struct dev_pagemap *pgmap;
>> -	struct resource *res;
>> +	struct resource *res, *tmp_res = NULL;
>>   	void *vaddr;
>>   	unsigned int i, alloc_pages = round_up(nr_pages, PAGES_PER_SECTION);
>> -	int ret = -ENOMEM;
>> +	int ret;
>>   
>>   	res = kzalloc(sizeof(*res), GFP_KERNEL);
>>   	if (!res)
>> @@ -30,7 +47,7 @@ static int fill_list(unsigned int nr_pages)
>>   	res->name = "Xen scratch";
>>   	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
>>   
>> -	ret = allocate_resource(&iomem_resource, res,
>> +	ret = allocate_resource(target_resource, res,
>>   				alloc_pages * PAGE_SIZE, 0, -1,
>>   				PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
>>   	if (ret < 0) {
>> @@ -38,6 +55,31 @@ static int fill_list(unsigned int nr_pages)
>>   		goto err_resource;
>>   	}
>>   
>> +	/*
>> +	 * Reserve the region previously allocated from Xen resource to avoid
>> +	 * re-using it by someone else.
>> +	 */
>> +	if (target_resource != &iomem_resource) {
>> +		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
>> +		if (!res) {
>> +			ret = -ENOMEM;
>> +			goto err_insert;
>> +		}
>> +
>> +		tmp_res->name = res->name;
>> +		tmp_res->start = res->start;
>> +		tmp_res->end = res->end;
>> +		tmp_res->flags = res->flags;
>> +
>> +		ret = insert_resource(&iomem_resource, tmp_res);
>> +		if (ret < 0) {
>> +			pr_err("Cannot insert IOMEM resource [%llx - %llx]\n",
>> +			       tmp_res->start, tmp_res->end);
>> +			kfree(tmp_res);
>> +			goto err_insert;
>> +		}
>> +	}
> I am a bit confused.. why do we need to do this? Who could be
> erroneously re-using the region? Are you saying that the next time
> allocate_resource is called it could find the same region again? It
> doesn't seem possible?


No, as I understand the allocate_resource() being called for the same 
root resource won't provide the same region... We only need to do this 
(insert the region into "iomem_resource") if we allocated it from our 
*internal* "xen_resource", as *global* "iomem_resource" (which is used 
everywhere) is not aware of that region has been already allocated. So 
inserting a region here we reserving it, otherwise it could be reused 
elsewhere.


>
>
>>   	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
>>   	if (!pgmap) {
>>   		ret = -ENOMEM;
>> @@ -95,12 +137,40 @@ static int fill_list(unsigned int nr_pages)
>>   err_memremap:
>>   	kfree(pgmap);
>>   err_pgmap:
>> +	if (tmp_res) {
>> +		release_resource(tmp_res);
>> +		kfree(tmp_res);
>> +	}
>> +err_insert:
>>   	release_resource(res);
>>   err_resource:
>>   	kfree(res);
>>   	return ret;
>>   }
>>   
>> +static void unpopulated_init(void)
>> +{
>> +	static bool inited = false;
> initialized = false

ok.


>
>
>> +	int ret;
>> +
>> +	if (inited)
>> +		return;
>> +
>> +	/*
>> +	 * Try to initialize Xen resource the first and fall back to default
>> +	 * resource if arch doesn't offer one.
>> +	 */
>> +	ret = arch_xen_unpopulated_init(&xen_resource);
>> +	if (!ret)
>> +		target_resource = &xen_resource;
>> +	else if (ret == -ENOSYS)
>> +		target_resource = &iomem_resource;
>> +	else
>> +		pr_err("Cannot initialize Xen resource\n");
>> +
>> +	inited = true;
>> +}
> Would it make sense to call unpopulated_init from an init function,
> rather than every time xen_alloc_unpopulated_pages is called?

Good point, thank you. Will do. To be honest, I also don't like the 
current approach much.


>
>
>>   /**
>>    * xen_alloc_unpopulated_pages - alloc unpopulated pages
>>    * @nr_pages: Number of pages
>> @@ -112,6 +182,16 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>>   	unsigned int i;
>>   	int ret = 0;
>>   
>> +	unpopulated_init();
>> +
>> +	/*
>> +	 * Fall back to default behavior if we do not have any suitable resource
>> +	 * to allocate required region from and as the result we won't be able to
>> +	 * construct pages.
>> +	 */
>> +	if (!target_resource)
>> +		return alloc_xenballooned_pages(nr_pages, pages);
> The commit message says that the behavior on x86 doesn't change but this
> seems to be a change that could impact x86?
I don't think, however I didn't tested on x86 and might be wrong, but 
according to the current patch, on x86 the "target_resource" is always 
valid and points to the "iomem_resource" as arch_xen_unpopulated_init() 
is not implemented. So there won't be any fallback to use 
alloc_(free)_xenballooned_pages() here and fill_list() will behave as usual.

You raised a really good question, on Arm we need a fallback to balloon 
out RAM pages again if hypervisor doesn't provide extended regions (we 
run on old version, no unused regions with reasonable size, etc), so I 
decided to put a fallback code here, an indicator of the failure is 
invalid "target_resource". I noticed the patch which is about to be 
upstreamed that removes alloc_(free)xenballooned_pages API [1]. Right 
now I have no idea how/where this fallback could be implemented as this 
is under build option control (CONFIG_XEN_UNPOPULATED_ALLOC). So the API 
with the same name is either used for unpopulated pages (if set) or 
ballooned pages (if not set). I would appreciate suggestions regarding 
that. I am wondering would it be possible and correctly to have both 
mechanisms (unpopulated and ballooned) enabled by default and some init 
code to decide which one to use at runtime or some sort?


>
>>   	mutex_lock(&list_lock);
>>   	if (list_count < nr_pages) {
>>   		ret = fill_list(nr_pages - list_count);
>> @@ -159,6 +239,9 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>>   {
>>   	unsigned int i;
>>   
>> +	if (!target_resource)
>> +		return free_xenballooned_pages(nr_pages, pages);
>> +
>>   	mutex_lock(&list_lock);
>>   	for (i = 0; i < nr_pages; i++) {
>>   		pages[i]->zone_device_data = page_list;
>> diff --git a/include/xen/xen.h b/include/xen/xen.h
>> index 43efba0..55d2ef8 100644
>> --- a/include/xen/xen.h
>> +++ b/include/xen/xen.h
>> @@ -55,6 +55,8 @@ extern u64 xen_saved_max_mem_size;
>>   #ifdef CONFIG_XEN_UNPOPULATED_ALLOC
>>   int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
>>   void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
>> +struct resource;
> This is to avoid having to #include linux/ioport.h, right? Is it a
> problem or is it just to minimize the headers dependencies?
>
> It looks like adding #include <linux/ioport.h> below #include
> <linux/types.h> in include/xen/xen.h would work too. I am not sure what
> is the best way though, I'll let Juergen comment.
Yes, the initial reason to use forward declaration here was to minimize 
the headers dependencies.
I have rechecked, your suggestion works as well, thank you. So I would 
be OK either way, let's wait for other opinions.


>
>
>> +int arch_xen_unpopulated_init(struct resource *res);
>>   #else
>>   #define xen_alloc_unpopulated_pages alloc_xenballooned_pages
>>   #define xen_free_unpopulated_pages free_xenballooned_pages
>> -- 
>> 2.7.4
>>

[1] https://lore.kernel.org/lkml/20211102092234.17852-1-jgross@suse.com/

-- 
Regards,

Oleksandr Tyshchenko



^ permalink raw reply	[relevance 0%]

* [GIT PULL] xen: branch for v5.16-rc1
@ 2021-11-09 14:28  7% Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2021-11-09 14:28 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, xen-devel, boris.ostrovsky

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-5.16b-rc1-tag

xen: branch for v5.16-rc1

It contains the following patches:

- a series for speeding up the boot of Xen PV guests

- some cleanups in Xen related code

- replacement of license texts with the appropriate SPDX headers and
  fixing of wrong SPDX headers in Xen header files

- a small series making paravirtualized interrupt masking much simpler
  and at the same time removing complaints of objtool

- a fix for Xen ballooning hogging workqueues for too long

- enablement of the Xen pciback driver for Arm

- some further small fixes/enhancements


Thanks.

Juergen

 Documentation/admin-guide/kernel-parameters.txt |   7 +
 arch/arm/xen/enlighten.c                        |   1 -
 arch/arm/xen/hypercall.S                        |   1 -
 arch/arm64/xen/hypercall.S                      |   1 -
 arch/x86/include/asm/paravirt_types.h           |   2 +
 arch/x86/include/asm/xen/hypercall.h            | 233 +++++++++++-------------
 arch/x86/include/asm/xen/hypervisor.h           |   4 +
 arch/x86/include/asm/xen/pci.h                  |  19 --
 arch/x86/kernel/paravirt.c                      |  13 +-
 arch/x86/pci/xen.c                              |  76 +-------
 arch/x86/xen/enlighten.c                        | 116 +++---------
 arch/x86/xen/enlighten_hvm.c                    |   6 +-
 arch/x86/xen/enlighten_pv.c                     |  35 +---
 arch/x86/xen/irq.c                              |  62 +------
 arch/x86/xen/mmu_pv.c                           |  52 ++++--
 arch/x86/xen/setup.c                            |  10 +-
 arch/x86/xen/smp.c                              |  28 ---
 arch/x86/xen/smp_pv.c                           |   2 -
 arch/x86/xen/xen-head.S                         |  12 +-
 arch/x86/xen/xen-ops.h                          |   4 +-
 drivers/xen/Kconfig                             |  24 +++
 drivers/xen/Makefile                            |   2 +-
 drivers/xen/balloon.c                           | 113 ++++++++----
 drivers/xen/mem-reservation.c                   |  27 +--
 drivers/xen/pci.c                               |  76 ++++++++
 drivers/xen/pvcalls-back.c                      |   1 -
 drivers/xen/xen-acpi-processor.c                |   6 +-
 drivers/xen/xen-pciback/Makefile                |   7 +
 drivers/xen/xen-pciback/conf_space_capability.c |   2 +-
 drivers/xen/xen-pciback/conf_space_header.c     |   8 +-
 drivers/xen/xen-pciback/pci_stub.c              |   3 +-
 drivers/xen/xen-pciback/pciback.h               |   5 +
 drivers/xen/xen-pciback/xenbus.c                |   8 +-
 include/xen/arm/hypercall.h                     |  15 --
 include/xen/balloon.h                           |   3 -
 include/xen/interface/callback.h                |  19 +-
 include/xen/interface/elfnote.h                 |  19 +-
 include/xen/interface/event_channel.h           |   2 +-
 include/xen/interface/features.h                |   2 +-
 include/xen/interface/grant_table.h             |  19 +-
 include/xen/interface/hvm/dm_op.h               |  19 +-
 include/xen/interface/hvm/hvm_op.h              |  20 +-
 include/xen/interface/hvm/hvm_vcpu.h            |  19 +-
 include/xen/interface/hvm/params.h              |  20 +-
 include/xen/interface/hvm/start_info.h          |  19 +-
 include/xen/interface/io/9pfs.h                 |  19 +-
 include/xen/interface/io/blkif.h                |   2 +-
 include/xen/interface/io/console.h              |   2 +-
 include/xen/interface/io/displif.h              |  19 +-
 include/xen/interface/io/fbif.h                 |  19 +-
 include/xen/interface/io/kbdif.h                |  19 +-
 include/xen/interface/io/netif.h                |  19 +-
 include/xen/interface/io/pciif.h                |  19 +-
 include/xen/interface/io/protocols.h            |   2 +-
 include/xen/interface/io/pvcalls.h              |   2 +
 include/xen/interface/io/ring.h                 |  19 +-
 include/xen/interface/io/sndif.h                |  19 +-
 include/xen/interface/io/vscsiif.h              |  19 +-
 include/xen/interface/io/xenbus.h               |   2 +-
 include/xen/interface/io/xs_wire.h              |   2 +-
 include/xen/interface/memory.h                  |   2 +-
 include/xen/interface/nmi.h                     |   2 +-
 include/xen/interface/physdev.h                 |  20 +-
 include/xen/interface/platform.h                |  19 +-
 include/xen/interface/sched.h                   |  19 +-
 include/xen/interface/vcpu.h                    |  19 +-
 include/xen/interface/version.h                 |   2 +-
 include/xen/interface/xen-mca.h                 |   1 +
 include/xen/interface/xen.h                     |  19 +-
 include/xen/interface/xenpmu.h                  |   2 +-
 include/xen/pci.h                               |  28 +++
 include/xen/xen.h                               |   6 -
 72 files changed, 496 insertions(+), 968 deletions(-)

Arnd Bergmann (1):
      xen/balloon: fix unused-variable warning

Christophe JAILLET (1):
      xen/pvcalls-back: Remove redundant 'flush_workqueue()' calls

Jan Beulich (6):
      xen/x86: streamline set_pte_mfn()
      xen/x86: restore (fix) xen_set_pte_init() behavior
      xen/x86: adjust xen_set_fixmap()
      xen/x86: adjust handling of the L3 user vsyscall special page table
      xen/x86: there's no highmem anymore in PV mode
      xen/x86: restrict PV Dom0 identity mapping

Jiasheng Jiang (1):
      xen: Fix implicit type conversion

Juergen Gross (10):
      xen: fix wrong SPDX headers of Xen related headers
      x86/pvh: add prototype for xen_pvh_init()
      x86/xen: remove xen_have_vcpu_info_placement flag
      x86/xen: switch initial pvops IRQ functions to dummy ones
      x86/xen: remove 32-bit pv leftovers
      xen: allow pv-only hypercalls only with CONFIG_XEN_PV
      xen: remove highmem remnants
      x86/xen: remove 32-bit awareness from startup_xen
      xen/balloon: add late_initcall_sync() for initial ballooning done
      xen/balloon: rename alloc/free_xenballooned_pages

Oleksandr Andrushchenko (1):
      xen-pciback: allow compiling on other archs than x86

Thomas Gleixner (1):
      x86/xen: Remove redundant irq_enter/exit() invocations

YueHaibing (1):
      xen-pciback: Fix return in pm_ctrl_init()


^ permalink raw reply	[relevance 7%]

* Re: [PATCH] xen/balloon: fix unused-variable warning
  2021-11-08 11:14 18% [PATCH] xen/balloon: fix unused-variable warning Arnd Bergmann
  2021-11-08 16:24  5% ` Juergen Gross
@ 2021-11-09 13:30  5% ` Boris Ostrovsky
  1 sibling, 0 replies; 200+ results
From: Boris Ostrovsky @ 2021-11-09 13:30 UTC (permalink / raw)
  To: Arnd Bergmann, Juergen Gross
  Cc: Arnd Bergmann, Stefano Stabellini, Oscar Salvador, Pankaj Gupta,
	Andrew Morton, David Hildenbrand, xen-devel, linux-kernel


On 11/8/21 6:14 AM, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
>
> In configurations with CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=n
> and CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y, gcc warns about an
> unused variable:
>
> drivers/xen/balloon.c:83:12: error: 'xen_hotplug_unpopulated' defined but not used [-Werror=unused-variable]
>
> Since this is always zero when CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
> is disabled, turn it into a preprocessor constant in that case.
>
> Fixes: 121f2faca2c0 ("xen/balloon: rename alloc/free_xenballooned_pages")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>



Applied to for-linus-5.16b


-boris



^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: fix unused-variable warning
  2021-11-08 11:14 18% [PATCH] xen/balloon: fix unused-variable warning Arnd Bergmann
@ 2021-11-08 16:24  5% ` Juergen Gross
  2021-11-09 13:30  5% ` Boris Ostrovsky
  1 sibling, 0 replies; 200+ results
From: Juergen Gross @ 2021-11-08 16:24 UTC (permalink / raw)
  To: Arnd Bergmann, Boris Ostrovsky
  Cc: Arnd Bergmann, Stefano Stabellini, Oscar Salvador, Pankaj Gupta,
	Andrew Morton, David Hildenbrand, xen-devel, linux-kernel


[-- Attachment #1.1.1: Type: text/plain, Size: 676 bytes --]

On 08.11.21 12:14, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> In configurations with CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=n
> and CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y, gcc warns about an
> unused variable:
> 
> drivers/xen/balloon.c:83:12: error: 'xen_hotplug_unpopulated' defined but not used [-Werror=unused-variable]
> 
> Since this is always zero when CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
> is disabled, turn it into a preprocessor constant in that case.
> 
> Fixes: 121f2faca2c0 ("xen/balloon: rename alloc/free_xenballooned_pages")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Reviewed-by: Juergen Gross <jgross@suse.com>


Juergen


[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 5%]

* [PATCH] xen/balloon: fix unused-variable warning
@ 2021-11-08 11:14 18% Arnd Bergmann
  2021-11-08 16:24  5% ` Juergen Gross
  2021-11-09 13:30  5% ` Boris Ostrovsky
  0 siblings, 2 replies; 200+ results
From: Arnd Bergmann @ 2021-11-08 11:14 UTC (permalink / raw)
  To: Boris Ostrovsky, Juergen Gross
  Cc: Arnd Bergmann, Stefano Stabellini, Oscar Salvador, Pankaj Gupta,
	Andrew Morton, David Hildenbrand, xen-devel, linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

In configurations with CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=n
and CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y, gcc warns about an
unused variable:

drivers/xen/balloon.c:83:12: error: 'xen_hotplug_unpopulated' defined but not used [-Werror=unused-variable]

Since this is always zero when CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
is disabled, turn it into a preprocessor constant in that case.

Fixes: 121f2faca2c0 ("xen/balloon: rename alloc/free_xenballooned_pages")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/xen/balloon.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index ad9ba1e97450..ba2ea11e0d3d 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -80,9 +80,8 @@
 static uint __read_mostly balloon_boot_timeout = 180;
 module_param(balloon_boot_timeout, uint, 0444);
 
-static int xen_hotplug_unpopulated;
-
 #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
+static int xen_hotplug_unpopulated;
 
 static struct ctl_table balloon_table[] = {
 	{
@@ -115,6 +114,8 @@ static struct ctl_table xen_root[] = {
 	{ }
 };
 
+#else
+#define xen_hotplug_unpopulated 0
 #endif
 
 /*
-- 
2.29.2



^ permalink raw reply related	[relevance 18%]

* Re: [PATCH v2] xen/balloon: rename alloc/free_xenballooned_pages
  2021-11-02  9:22 25% [PATCH v2] xen/balloon: rename alloc/free_xenballooned_pages Juergen Gross
  2021-11-04  1:48  5% ` Boris Ostrovsky
@ 2021-11-05 12:18  5% ` Boris Ostrovsky
  1 sibling, 0 replies; 200+ results
From: Boris Ostrovsky @ 2021-11-05 12:18 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel; +Cc: Stefano Stabellini


On 11/2/21 5:22 AM, Juergen Gross wrote:
> alloc_xenballooned_pages() and free_xenballooned_pages() are used as
> direct replacements of xen_alloc_unpopulated_pages() and
> xen_free_unpopulated_pages() in case CONFIG_XEN_UNPOPULATED_ALLOC isn't
> defined.
>
> Guard both functions with !CONFIG_XEN_UNPOPULATED_ALLOC and rename them
> to the xen_*() variants they are replacing. This allows to remove some
> ifdeffery from the xen.h header file. Adapt the prototype of the
> functions to match.
>
> Signed-off-by: Juergen Gross <jgross@suse.com>


Applied to for-linus-5-16b.


-boris



^ permalink raw reply	[relevance 5%]

* Re: [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-11-02  9:19 21% [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done Juergen Gross
  2021-11-04  1:55  5% ` Boris Ostrovsky
@ 2021-11-05 12:18  5% ` Boris Ostrovsky
  1 sibling, 0 replies; 200+ results
From: Boris Ostrovsky @ 2021-11-05 12:18 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-doc, linux-kernel
  Cc: Jonathan Corbet, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki


On 11/2/21 5:19 AM, Juergen Gross wrote:
> When running as PVH or HVM guest with actual memory < max memory the
> hypervisor is using "populate on demand" in order to allow the guest
> to balloon down from its maximum memory size. For this to work
> correctly the guest must not touch more memory pages than its target
> memory size as otherwise the PoD cache will be exhausted and the guest
> is crashed as a result of that.
>
> In extreme cases ballooning down might not be finished today before
> the init process is started, which can consume lots of memory.
>
> In order to avoid random boot crashes in such cases, add a late init
> call to wait for ballooning down having finished for PVH/HVM guests.
>
> Warn on console if initial ballooning fails, panic() after stalling
> for more than 3 minutes per default. Add a module parameter for
> changing this timeout.
>
> Cc: <stable@vger.kernel.org>
> Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
> Signed-off-by: Juergen Gross <jgross@suse.com>



Applied to for-linus-5-16b.


-boris



^ permalink raw reply	[relevance 5%]

* Re: [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-11-04 16:44  5%         ` Juergen Gross
@ 2021-11-04 17:05  5%           ` Boris Ostrovsky
  0 siblings, 0 replies; 200+ results
From: Boris Ostrovsky @ 2021-11-04 17:05 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-doc, linux-kernel
  Cc: Jonathan Corbet, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki



>
>>> And if so, would you mind doing this while committing (I have one day
>>> off tomorrow)?
>>
>>
>> Yes, of course.
>
> Thanks.


So I'll change this to pr_notice, even though it's not the best solution.


-boris



^ permalink raw reply	[relevance 5%]

* Re: [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-11-04 16:34  5%       ` Boris Ostrovsky
@ 2021-11-04 16:44  5%         ` Juergen Gross
  2021-11-04 17:05  5%           ` Boris Ostrovsky
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2021-11-04 16:44 UTC (permalink / raw)
  To: Boris Ostrovsky, xen-devel, linux-doc, linux-kernel
  Cc: Jonathan Corbet, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki


[-- Attachment #1.1.1: Type: text/plain, Size: 3020 bytes --]

On 04.11.21 17:34, Boris Ostrovsky wrote:
> 
> On 11/4/21 12:21 PM, Juergen Gross wrote:
>> On 04.11.21 16:55, Boris Ostrovsky wrote:
>>>
>>> On 11/3/21 9:55 PM, Boris Ostrovsky wrote:
>>>>
>>>> On 11/2/21 5:19 AM, Juergen Gross wrote:
>>>>> When running as PVH or HVM guest with actual memory < max memory the
>>>>> hypervisor is using "populate on demand" in order to allow the guest
>>>>> to balloon down from its maximum memory size. For this to work
>>>>> correctly the guest must not touch more memory pages than its target
>>>>> memory size as otherwise the PoD cache will be exhausted and the guest
>>>>> is crashed as a result of that.
>>>>>
>>>>> In extreme cases ballooning down might not be finished today before
>>>>> the init process is started, which can consume lots of memory.
>>>>>
>>>>> In order to avoid random boot crashes in such cases, add a late init
>>>>> call to wait for ballooning down having finished for PVH/HVM guests.
>>>>>
>>>>> Warn on console if initial ballooning fails, panic() after stalling
>>>>> for more than 3 minutes per default. Add a module parameter for
>>>>> changing this timeout.
>>>>>
>>>>> Cc: <stable@vger.kernel.org>
>>>>> Reported-by: Marek Marczykowski-Górecki 
>>>>> <marmarek@invisiblethingslab.com>
>>>>> Signed-off-by: Juergen Gross <jgross@suse.com>
>>>>
>>>>
>>>>
>>>> Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
>>>
>>>
>>> This appears to have noticeable effect on boot time (and boot 
>>> experience in general).
>>>
>>>
>>> I have
>>>
>>>
>>>    memory=1024
>>>    maxmem=8192
>>>
>>>
>>> And my boot time (on an admittedly slow box) went from 33 to 45 
>>> seconds. And boot pauses in the middle while it is waiting for 
>>> ballooning to complete.
>>>
>>>
>>> [    5.062714] xen:balloon: Waiting for initial ballooning down 
>>> having finished.
>>> [    5.449696] random: crng init done
>>> [   34.613050] xen:balloon: Initial ballooning down finished.
>>
>> This shows that before it was just by chance that the PoD cache wasn't
>> exhausted.
> 
> 
> True.
> 
> 
>>
>>> So at least I think we should consider bumping log level down from info.
>>
>> Which level would you prefer? warn?
>>
> 
> Notice? Although that won't make much difference as WARN is the default 
> level.

Right. That was my thinking.

> I suppose we can't turn scrubbing off at this point?

I don't think we can be sure a ballooned page wasn't in use before. And
it could contain some data e.g. from the loaded initrd, maybe even put
there by the boot loader. So no, I wouldn't want to do that by default.

We could add another value to the xen_scrub_pages boot parameter, like
xen_scrub_pages=not-at-boot or some such. But this should be another
patch. And it should be documented that initrd or kernel data might
leak.

>> And if so, would you mind doing this while committing (I have one day
>> off tomorrow)?
> 
> 
> Yes, of course.

Thanks.


Juergen


[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-11-04 16:21  5%     ` Juergen Gross
@ 2021-11-04 16:34  5%       ` Boris Ostrovsky
  2021-11-04 16:44  5%         ` Juergen Gross
  0 siblings, 1 reply; 200+ results
From: Boris Ostrovsky @ 2021-11-04 16:34 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-doc, linux-kernel
  Cc: Jonathan Corbet, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki


On 11/4/21 12:21 PM, Juergen Gross wrote:
> On 04.11.21 16:55, Boris Ostrovsky wrote:
>>
>> On 11/3/21 9:55 PM, Boris Ostrovsky wrote:
>>>
>>> On 11/2/21 5:19 AM, Juergen Gross wrote:
>>>> When running as PVH or HVM guest with actual memory < max memory the
>>>> hypervisor is using "populate on demand" in order to allow the guest
>>>> to balloon down from its maximum memory size. For this to work
>>>> correctly the guest must not touch more memory pages than its target
>>>> memory size as otherwise the PoD cache will be exhausted and the guest
>>>> is crashed as a result of that.
>>>>
>>>> In extreme cases ballooning down might not be finished today before
>>>> the init process is started, which can consume lots of memory.
>>>>
>>>> In order to avoid random boot crashes in such cases, add a late init
>>>> call to wait for ballooning down having finished for PVH/HVM guests.
>>>>
>>>> Warn on console if initial ballooning fails, panic() after stalling
>>>> for more than 3 minutes per default. Add a module parameter for
>>>> changing this timeout.
>>>>
>>>> Cc: <stable@vger.kernel.org>
>>>> Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
>>>> Signed-off-by: Juergen Gross <jgross@suse.com>
>>>
>>>
>>>
>>> Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
>>
>>
>> This appears to have noticeable effect on boot time (and boot experience in general).
>>
>>
>> I have
>>
>>
>>    memory=1024
>>    maxmem=8192
>>
>>
>> And my boot time (on an admittedly slow box) went from 33 to 45 seconds. And boot pauses in the middle while it is waiting for ballooning to complete.
>>
>>
>> [    5.062714] xen:balloon: Waiting for initial ballooning down having finished.
>> [    5.449696] random: crng init done
>> [   34.613050] xen:balloon: Initial ballooning down finished.
>
> This shows that before it was just by chance that the PoD cache wasn't
> exhausted.


True.


>
>> So at least I think we should consider bumping log level down from info.
>
> Which level would you prefer? warn?
>

Notice? Although that won't make much difference as WARN is the default level.


I suppose we can't turn scrubbing off at this point?


> And if so, would you mind doing this while committing (I have one day
> off tomorrow)?


Yes, of course.


-boris



^ permalink raw reply	[relevance 5%]

* Re: [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-11-04 15:55 11%   ` Boris Ostrovsky
  2021-11-04 16:21  5%     ` Juergen Gross
@ 2021-11-04 16:23  5%     ` Marek Marczykowski-Górecki
  1 sibling, 0 replies; 200+ results
From: Marek Marczykowski-Górecki @ 2021-11-04 16:23 UTC (permalink / raw)
  To: Boris Ostrovsky
  Cc: Juergen Gross, xen-devel, linux-doc, linux-kernel,
	Jonathan Corbet, Stefano Stabellini, stable

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

On Thu, Nov 04, 2021 at 11:55:34AM -0400, Boris Ostrovsky wrote:
> This appears to have noticeable effect on boot time (and boot experience in general).

Yes, this is kind of intentional. It avoids killing the domain ("out of
PoD memory") for the price of increased boot time. I still wonder why it
wasn't an issue before, although it could just be a race that was less
likely to loose before.

You can find some analysis of mine here:
https://lore.kernel.org/xen-devel/YXFxKC4shCATB913@mail-itl/

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-11-04 15:55 11%   ` Boris Ostrovsky
@ 2021-11-04 16:21  5%     ` Juergen Gross
  2021-11-04 16:34  5%       ` Boris Ostrovsky
  2021-11-04 16:23  5%     ` Marek Marczykowski-Górecki
  1 sibling, 1 reply; 200+ results
From: Juergen Gross @ 2021-11-04 16:21 UTC (permalink / raw)
  To: Boris Ostrovsky, xen-devel, linux-doc, linux-kernel
  Cc: Jonathan Corbet, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki


[-- Attachment #1.1.1: Type: text/plain, Size: 2120 bytes --]

On 04.11.21 16:55, Boris Ostrovsky wrote:
> 
> On 11/3/21 9:55 PM, Boris Ostrovsky wrote:
>>
>> On 11/2/21 5:19 AM, Juergen Gross wrote:
>>> When running as PVH or HVM guest with actual memory < max memory the
>>> hypervisor is using "populate on demand" in order to allow the guest
>>> to balloon down from its maximum memory size. For this to work
>>> correctly the guest must not touch more memory pages than its target
>>> memory size as otherwise the PoD cache will be exhausted and the guest
>>> is crashed as a result of that.
>>>
>>> In extreme cases ballooning down might not be finished today before
>>> the init process is started, which can consume lots of memory.
>>>
>>> In order to avoid random boot crashes in such cases, add a late init
>>> call to wait for ballooning down having finished for PVH/HVM guests.
>>>
>>> Warn on console if initial ballooning fails, panic() after stalling
>>> for more than 3 minutes per default. Add a module parameter for
>>> changing this timeout.
>>>
>>> Cc: <stable@vger.kernel.org>
>>> Reported-by: Marek Marczykowski-Górecki 
>>> <marmarek@invisiblethingslab.com>
>>> Signed-off-by: Juergen Gross <jgross@suse.com>
>>
>>
>>
>> Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
> 
> 
> This appears to have noticeable effect on boot time (and boot experience 
> in general).
> 
> 
> I have
> 
> 
>    memory=1024
>    maxmem=8192
> 
> 
> And my boot time (on an admittedly slow box) went from 33 to 45 seconds. 
> And boot pauses in the middle while it is waiting for ballooning to 
> complete.
> 
> 
> [    5.062714] xen:balloon: Waiting for initial ballooning down having 
> finished.
> [    5.449696] random: crng init done
> [   34.613050] xen:balloon: Initial ballooning down finished.

This shows that before it was just by chance that the PoD cache wasn't
exhausted.

> So at least I think we should consider bumping log level down from info.

Which level would you prefer? warn?

And if so, would you mind doing this while committing (I have one day
off tomorrow)?


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-11-04  1:55  5% ` Boris Ostrovsky
@ 2021-11-04 15:55 11%   ` Boris Ostrovsky
  2021-11-04 16:21  5%     ` Juergen Gross
  2021-11-04 16:23  5%     ` Marek Marczykowski-Górecki
  0 siblings, 2 replies; 200+ results
From: Boris Ostrovsky @ 2021-11-04 15:55 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-doc, linux-kernel
  Cc: Jonathan Corbet, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki


On 11/3/21 9:55 PM, Boris Ostrovsky wrote:
>
> On 11/2/21 5:19 AM, Juergen Gross wrote:
>> When running as PVH or HVM guest with actual memory < max memory the
>> hypervisor is using "populate on demand" in order to allow the guest
>> to balloon down from its maximum memory size. For this to work
>> correctly the guest must not touch more memory pages than its target
>> memory size as otherwise the PoD cache will be exhausted and the guest
>> is crashed as a result of that.
>>
>> In extreme cases ballooning down might not be finished today before
>> the init process is started, which can consume lots of memory.
>>
>> In order to avoid random boot crashes in such cases, add a late init
>> call to wait for ballooning down having finished for PVH/HVM guests.
>>
>> Warn on console if initial ballooning fails, panic() after stalling
>> for more than 3 minutes per default. Add a module parameter for
>> changing this timeout.
>>
>> Cc: <stable@vger.kernel.org>
>> Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
>> Signed-off-by: Juergen Gross <jgross@suse.com>
>
>
>
> Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>


This appears to have noticeable effect on boot time (and boot experience in general).


I have


   memory=1024
   maxmem=8192


And my boot time (on an admittedly slow box) went from 33 to 45 seconds. And boot pauses in the middle while it is waiting for ballooning to complete.


[    5.062714] xen:balloon: Waiting for initial ballooning down having finished.
[    5.449696] random: crng init done
[   34.613050] xen:balloon: Initial ballooning down finished.


So at least I think we should consider bumping log level down from info.



-boris



^ permalink raw reply	[relevance 11%]

* Re: [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-11-02  9:19 21% [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done Juergen Gross
@ 2021-11-04  1:55  5% ` Boris Ostrovsky
  2021-11-04 15:55 11%   ` Boris Ostrovsky
  2021-11-05 12:18  5% ` Boris Ostrovsky
  1 sibling, 1 reply; 200+ results
From: Boris Ostrovsky @ 2021-11-04  1:55 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-doc, linux-kernel
  Cc: Jonathan Corbet, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki


On 11/2/21 5:19 AM, Juergen Gross wrote:
> When running as PVH or HVM guest with actual memory < max memory the
> hypervisor is using "populate on demand" in order to allow the guest
> to balloon down from its maximum memory size. For this to work
> correctly the guest must not touch more memory pages than its target
> memory size as otherwise the PoD cache will be exhausted and the guest
> is crashed as a result of that.
>
> In extreme cases ballooning down might not be finished today before
> the init process is started, which can consume lots of memory.
>
> In order to avoid random boot crashes in such cases, add a late init
> call to wait for ballooning down having finished for PVH/HVM guests.
>
> Warn on console if initial ballooning fails, panic() after stalling
> for more than 3 minutes per default. Add a module parameter for
> changing this timeout.
>
> Cc: <stable@vger.kernel.org>
> Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
> Signed-off-by: Juergen Gross <jgross@suse.com>



Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>



^ permalink raw reply	[relevance 5%]

* Re: [PATCH v2] xen/balloon: rename alloc/free_xenballooned_pages
  2021-11-02  9:22 25% [PATCH v2] xen/balloon: rename alloc/free_xenballooned_pages Juergen Gross
@ 2021-11-04  1:48  5% ` Boris Ostrovsky
  2021-11-05 12:18  5% ` Boris Ostrovsky
  1 sibling, 0 replies; 200+ results
From: Boris Ostrovsky @ 2021-11-04  1:48 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel; +Cc: Stefano Stabellini


On 11/2/21 5:22 AM, Juergen Gross wrote:
> alloc_xenballooned_pages() and free_xenballooned_pages() are used as
> direct replacements of xen_alloc_unpopulated_pages() and
> xen_free_unpopulated_pages() in case CONFIG_XEN_UNPOPULATED_ALLOC isn't
> defined.
>
> Guard both functions with !CONFIG_XEN_UNPOPULATED_ALLOC and rename them
> to the xen_*() variants they are replacing. This allows to remove some
> ifdeffery from the xen.h header file. Adapt the prototype of the
> functions to match.
>
> Signed-off-by: Juergen Gross <jgross@suse.com>


Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>



^ permalink raw reply	[relevance 5%]

* [PATCH v2] xen/balloon: rename alloc/free_xenballooned_pages
@ 2021-11-02  9:22 25% Juergen Gross
  2021-11-04  1:48  5% ` Boris Ostrovsky
  2021-11-05 12:18  5% ` Boris Ostrovsky
  0 siblings, 2 replies; 200+ results
From: Juergen Gross @ 2021-11-02  9:22 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Juergen Gross, Boris Ostrovsky, Stefano Stabellini

alloc_xenballooned_pages() and free_xenballooned_pages() are used as
direct replacements of xen_alloc_unpopulated_pages() and
xen_free_unpopulated_pages() in case CONFIG_XEN_UNPOPULATED_ALLOC isn't
defined.

Guard both functions with !CONFIG_XEN_UNPOPULATED_ALLOC and rename them
to the xen_*() variants they are replacing. This allows to remove some
ifdeffery from the xen.h header file. Adapt the prototype of the
functions to match.

Signed-off-by: Juergen Gross <jgross@suse.com>
---
V2:
- adapt prototypes (kernel test robot)
---
 drivers/xen/balloon.c | 24 +++++++++++++-----------
 include/xen/balloon.h |  3 ---
 include/xen/xen.h     |  6 ------
 3 files changed, 13 insertions(+), 20 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 3a661b7697d4..7b692636fad6 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -580,7 +580,8 @@ void balloon_set_new_target(unsigned long target)
 }
 EXPORT_SYMBOL_GPL(balloon_set_new_target);
 
-static int add_ballooned_pages(int nr_pages)
+#ifndef CONFIG_XEN_UNPOPULATED_ALLOC
+static int add_ballooned_pages(unsigned int nr_pages)
 {
 	enum bp_state st;
 
@@ -608,14 +609,14 @@ static int add_ballooned_pages(int nr_pages)
 }
 
 /**
- * alloc_xenballooned_pages - get pages that have been ballooned out
+ * xen_alloc_unpopulated_pages - get pages that have been ballooned out
  * @nr_pages: Number of pages to get
  * @pages: pages returned
  * @return 0 on success, error otherwise
  */
-int alloc_xenballooned_pages(int nr_pages, struct page **pages)
+int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 {
-	int pgno = 0;
+	unsigned int pgno = 0;
 	struct page *page;
 	int ret;
 
@@ -650,7 +651,7 @@ int alloc_xenballooned_pages(int nr_pages, struct page **pages)
 	return 0;
  out_undo:
 	mutex_unlock(&balloon_mutex);
-	free_xenballooned_pages(pgno, pages);
+	xen_free_unpopulated_pages(pgno, pages);
 	/*
 	 * NB: free_xenballooned_pages will only subtract pgno pages, but since
 	 * target_unpopulated is incremented with nr_pages at the start we need
@@ -659,16 +660,16 @@ int alloc_xenballooned_pages(int nr_pages, struct page **pages)
 	balloon_stats.target_unpopulated -= nr_pages - pgno;
 	return ret;
 }
-EXPORT_SYMBOL(alloc_xenballooned_pages);
+EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
 
 /**
- * free_xenballooned_pages - return pages retrieved with get_ballooned_pages
+ * xen_free_unpopulated_pages - return pages retrieved with get_ballooned_pages
  * @nr_pages: Number of pages
  * @pages: pages to return
  */
-void free_xenballooned_pages(int nr_pages, struct page **pages)
+void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 {
-	int i;
+	unsigned int i;
 
 	mutex_lock(&balloon_mutex);
 
@@ -685,9 +686,9 @@ void free_xenballooned_pages(int nr_pages, struct page **pages)
 
 	mutex_unlock(&balloon_mutex);
 }
-EXPORT_SYMBOL(free_xenballooned_pages);
+EXPORT_SYMBOL(xen_free_unpopulated_pages);
 
-#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
+#if defined(CONFIG_XEN_PV)
 static void __init balloon_add_region(unsigned long start_pfn,
 				      unsigned long pages)
 {
@@ -710,6 +711,7 @@ static void __init balloon_add_region(unsigned long start_pfn,
 	balloon_stats.total_pages += extra_pfn_end - start_pfn;
 }
 #endif
+#endif
 
 static int __init balloon_init(void)
 {
diff --git a/include/xen/balloon.h b/include/xen/balloon.h
index 6dbdb0b3fd03..e93d4f0088c5 100644
--- a/include/xen/balloon.h
+++ b/include/xen/balloon.h
@@ -26,9 +26,6 @@ extern struct balloon_stats balloon_stats;
 
 void balloon_set_new_target(unsigned long target);
 
-int alloc_xenballooned_pages(int nr_pages, struct page **pages);
-void free_xenballooned_pages(int nr_pages, struct page **pages);
-
 #ifdef CONFIG_XEN_BALLOON
 void xen_balloon_init(void);
 #else
diff --git a/include/xen/xen.h b/include/xen/xen.h
index 43efba045acc..9f031b5faa54 100644
--- a/include/xen/xen.h
+++ b/include/xen/xen.h
@@ -52,13 +52,7 @@ bool xen_biovec_phys_mergeable(const struct bio_vec *vec1,
 extern u64 xen_saved_max_mem_size;
 #endif
 
-#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
 int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
 void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
-#else
-#define xen_alloc_unpopulated_pages alloc_xenballooned_pages
-#define xen_free_unpopulated_pages free_xenballooned_pages
-#include <xen/balloon.h>
-#endif
 
 #endif	/* _XEN_XEN_H */
-- 
2.26.2



^ permalink raw reply related	[relevance 25%]

* [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done
@ 2021-11-02  9:19 21% Juergen Gross
  2021-11-04  1:55  5% ` Boris Ostrovsky
  2021-11-05 12:18  5% ` Boris Ostrovsky
  0 siblings, 2 replies; 200+ results
From: Juergen Gross @ 2021-11-02  9:19 UTC (permalink / raw)
  To: xen-devel, linux-doc, linux-kernel
  Cc: Juergen Gross, Jonathan Corbet, Boris Ostrovsky,
	Stefano Stabellini, stable, Marek Marczykowski-Górecki

When running as PVH or HVM guest with actual memory < max memory the
hypervisor is using "populate on demand" in order to allow the guest
to balloon down from its maximum memory size. For this to work
correctly the guest must not touch more memory pages than its target
memory size as otherwise the PoD cache will be exhausted and the guest
is crashed as a result of that.

In extreme cases ballooning down might not be finished today before
the init process is started, which can consume lots of memory.

In order to avoid random boot crashes in such cases, add a late init
call to wait for ballooning down having finished for PVH/HVM guests.

Warn on console if initial ballooning fails, panic() after stalling
for more than 3 minutes per default. Add a module parameter for
changing this timeout.

Cc: <stable@vger.kernel.org>
Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
---
V2:
- add warning and panic() when stalling (Marek Marczykowski-Górecki)
- don't wait if credit > 0
V3:
- issue warning only after ballooning failed (Marek Marczykowski-Górecki)
- make panic() timeout configurable via parameter
V4:
- fix boot parameter (Boris Ostrovsky)
- set new state directly in update_schedule() (Boris Ostrovsky)
---
 .../admin-guide/kernel-parameters.txt         |  7 ++
 drivers/xen/balloon.c                         | 86 ++++++++++++++-----
 2 files changed, 70 insertions(+), 23 deletions(-)

diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
index 43dc35fe5bc0..1396fd2d9031 100644
--- a/Documentation/admin-guide/kernel-parameters.txt
+++ b/Documentation/admin-guide/kernel-parameters.txt
@@ -6349,6 +6349,13 @@
 			improve timer resolution at the expense of processing
 			more timer interrupts.
 
+	xen.balloon_boot_timeout= [XEN]
+			The time (in seconds) to wait before giving up to boot
+			in case initial ballooning fails to free enough memory.
+			Applies only when running as HVM or PVH guest and
+			started with less memory configured than allowed at
+			max. Default is 180.
+
 	xen.event_eoi_delay=	[XEN]
 			How long to delay EOI handling in case of event
 			storms (jiffies). Default is 10.
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 3a50f097ed3e..3a661b7697d4 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -58,6 +58,7 @@
 #include <linux/percpu-defs.h>
 #include <linux/slab.h>
 #include <linux/sysctl.h>
+#include <linux/moduleparam.h>
 
 #include <asm/page.h>
 #include <asm/tlb.h>
@@ -73,6 +74,12 @@
 #include <xen/page.h>
 #include <xen/mem-reservation.h>
 
+#undef MODULE_PARAM_PREFIX
+#define MODULE_PARAM_PREFIX "xen."
+
+static uint __read_mostly balloon_boot_timeout = 180;
+module_param(balloon_boot_timeout, uint, 0444);
+
 static int xen_hotplug_unpopulated;
 
 #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
@@ -125,12 +132,12 @@ static struct ctl_table xen_root[] = {
  * BP_ECANCELED: error, balloon operation canceled.
  */
 
-enum bp_state {
+static enum bp_state {
 	BP_DONE,
 	BP_WAIT,
 	BP_EAGAIN,
 	BP_ECANCELED
-};
+} balloon_state = BP_DONE;
 
 /* Main waiting point for xen-balloon thread. */
 static DECLARE_WAIT_QUEUE_HEAD(balloon_thread_wq);
@@ -199,18 +206,15 @@ static struct page *balloon_next_page(struct page *page)
 	return list_entry(next, struct page, lru);
 }
 
-static enum bp_state update_schedule(enum bp_state state)
+static void update_schedule(void)
 {
-	if (state == BP_WAIT)
-		return BP_WAIT;
-
-	if (state == BP_ECANCELED)
-		return BP_ECANCELED;
+	if (balloon_state == BP_WAIT || balloon_state == BP_ECANCELED)
+		return;
 
-	if (state == BP_DONE) {
+	if (balloon_state == BP_DONE) {
 		balloon_stats.schedule_delay = 1;
 		balloon_stats.retry_count = 1;
-		return BP_DONE;
+		return;
 	}
 
 	++balloon_stats.retry_count;
@@ -219,7 +223,8 @@ static enum bp_state update_schedule(enum bp_state state)
 			balloon_stats.retry_count > balloon_stats.max_retry_count) {
 		balloon_stats.schedule_delay = 1;
 		balloon_stats.retry_count = 1;
-		return BP_ECANCELED;
+		balloon_state = BP_ECANCELED;
+		return;
 	}
 
 	balloon_stats.schedule_delay <<= 1;
@@ -227,7 +232,7 @@ static enum bp_state update_schedule(enum bp_state state)
 	if (balloon_stats.schedule_delay > balloon_stats.max_schedule_delay)
 		balloon_stats.schedule_delay = balloon_stats.max_schedule_delay;
 
-	return BP_EAGAIN;
+	balloon_state = BP_EAGAIN;
 }
 
 #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
@@ -494,9 +499,9 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
  * Stop waiting if either state is BP_DONE and ballooning action is
  * needed, or if the credit has changed while state is not BP_DONE.
  */
-static bool balloon_thread_cond(enum bp_state state, long credit)
+static bool balloon_thread_cond(long credit)
 {
-	if (state == BP_DONE)
+	if (balloon_state == BP_DONE)
 		credit = 0;
 
 	return current_credit() != credit || kthread_should_stop();
@@ -510,13 +515,12 @@ static bool balloon_thread_cond(enum bp_state state, long credit)
  */
 static int balloon_thread(void *unused)
 {
-	enum bp_state state = BP_DONE;
 	long credit;
 	unsigned long timeout;
 
 	set_freezable();
 	for (;;) {
-		switch (state) {
+		switch (balloon_state) {
 		case BP_DONE:
 		case BP_ECANCELED:
 			timeout = 3600 * HZ;
@@ -532,7 +536,7 @@ static int balloon_thread(void *unused)
 		credit = current_credit();
 
 		wait_event_freezable_timeout(balloon_thread_wq,
-			balloon_thread_cond(state, credit), timeout);
+			balloon_thread_cond(credit), timeout);
 
 		if (kthread_should_stop())
 			return 0;
@@ -543,22 +547,23 @@ static int balloon_thread(void *unused)
 
 		if (credit > 0) {
 			if (balloon_is_inflated())
-				state = increase_reservation(credit);
+				balloon_state = increase_reservation(credit);
 			else
-				state = reserve_additional_memory();
+				balloon_state = reserve_additional_memory();
 		}
 
 		if (credit < 0) {
 			long n_pages;
 
 			n_pages = min(-credit, si_mem_available());
-			state = decrease_reservation(n_pages, GFP_BALLOON);
-			if (state == BP_DONE && n_pages != -credit &&
+			balloon_state = decrease_reservation(n_pages,
+							     GFP_BALLOON);
+			if (balloon_state == BP_DONE && n_pages != -credit &&
 			    n_pages < totalreserve_pages)
-				state = BP_EAGAIN;
+				balloon_state = BP_EAGAIN;
 		}
 
-		state = update_schedule(state);
+		update_schedule();
 
 		mutex_unlock(&balloon_mutex);
 
@@ -765,3 +770,38 @@ static int __init balloon_init(void)
 	return 0;
 }
 subsys_initcall(balloon_init);
+
+static int __init balloon_wait_finish(void)
+{
+	long credit, last_credit = 0;
+	unsigned long last_changed = 0;
+
+	if (!xen_domain())
+		return -ENODEV;
+
+	/* PV guests don't need to wait. */
+	if (xen_pv_domain() || !current_credit())
+		return 0;
+
+	pr_info("Waiting for initial ballooning down having finished.\n");
+
+	while ((credit = current_credit()) < 0) {
+		if (credit != last_credit) {
+			last_changed = jiffies;
+			last_credit = credit;
+		}
+		if (balloon_state == BP_ECANCELED) {
+			pr_warn_once("Initial ballooning failed, %ld pages need to be freed.\n",
+				     -credit);
+			if (jiffies - last_changed >= HZ * balloon_boot_timeout)
+				panic("Initial ballooning failed!\n");
+		}
+
+		schedule_timeout_interruptible(HZ / 10);
+	}
+
+	pr_info("Initial ballooning down finished.\n");
+
+	return 0;
+}
+late_initcall_sync(balloon_wait_finish);
-- 
2.26.2



^ permalink raw reply related	[relevance 21%]

* Re: [PATCH v3] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-10-29 23:44  5%     ` Boris Ostrovsky
@ 2021-11-01  7:21  5%       ` Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2021-11-01  7:21 UTC (permalink / raw)
  To: Boris Ostrovsky, Marek Marczykowski-Górecki
  Cc: xen-devel, linux-kernel, Stefano Stabellini, stable


[-- Attachment #1.1.1: Type: text/plain, Size: 3264 bytes --]

On 30.10.21 01:44, Boris Ostrovsky wrote:
> 
> On 10/29/21 6:18 PM, Marek Marczykowski-Górecki wrote:
>> On Fri, Oct 29, 2021 at 05:46:18PM -0400, Boris Ostrovsky wrote:
>>> On 10/29/21 10:20 AM, Juergen Gross wrote:
>>>> --- a/Documentation/ABI/stable/sysfs-devices-system-xen_memory
>>>> +++ b/Documentation/ABI/stable/sysfs-devices-system-xen_memory
>>>> @@ -84,3 +84,13 @@ Description:
>>>>            Control scrubbing pages before returning them to Xen for 
>>>> others domains
>>>>            use. Can be set with xen_scrub_pages cmdline
>>>>            parameter. Default value controlled with 
>>>> CONFIG_XEN_SCRUB_PAGES_DEFAULT.
>>>> +
>>>> +What:        /sys/devices/system/xen_memory/xen_memory0/boot_timeout
>>>> +Date:        November 2021
>>>> +KernelVersion:    5.16
>>>> +Contact:    xen-devel@lists.xenproject.org
>>>> +Description:
>>>> +        The time (in seconds) to wait before giving up to boot in case
>>>> +        initial ballooning fails to free enough memory. Applies only
>>>> +        when running as HVM or PVH guest and started with less memory
>>>> +        configured than allowed at max.
>>>
>>> How is this going to be used? We only need this during boot.
>>>
>>>
>>>> -        state = update_schedule(state);
>>>> +        balloon_state = update_schedule(balloon_state);
>>>
>>> Now that balloon_state has whole file scope it can probably be 
>>> updated inside update_schedule().
>>>
>>>
>>>> +    while ((credit = current_credit()) < 0) {
>>>> +        if (credit != last_credit) {
>>>> +            last_changed = jiffies;
>>>> +            last_credit = credit;
>>>> +        }
>>>> +        if (balloon_state == BP_ECANCELED) {
>>>
>>> What about other states? We are really waiting for BP_DONE, aren't we?
>> BP_DONE is set also as an intermediate step:
>>
>>                         balloon_state = decrease_reservation(n_pages,
>>                                                              
>> GFP_BALLOON);
>>                         if (balloon_state == BP_DONE && n_pages != 
>> -credit &&
>>                              n_pages < totalreserve_pages)
>>                                 balloon_state = BP_EAGAIN;
>>
>> It would be bad to finish waiting in this case.
> 
> 
> RIght, but if we were to say 'if (balloon_state != BP_DONE)' the worst 
> that can happen is that we will continue on to the next iteration 
> without warning and/or panicing. Of course, there is a chance thaton the 
> next iteration the same thing will happen but I think chances of hitting 
> this race every time are infinitely low. We can also check for 
> current_credit() again.
> 
> 
> The question is whether we do want to continue waiting if we are in 
> BP_AGAIN. I don't think BP_WAIT is possible in this case although this 
> may change in the future and we will forget to update this code.

BP_EAGAIN should not stop waiting, as it might be intermediate in case
some caches or buffers are freed.


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH v3] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-10-29 21:46  5% ` Boris Ostrovsky
  2021-10-29 22:18  5%   ` Marek Marczykowski-Górecki
@ 2021-11-01  7:15  5%   ` Juergen Gross
  1 sibling, 0 replies; 200+ results
From: Juergen Gross @ 2021-11-01  7:15 UTC (permalink / raw)
  To: Boris Ostrovsky, xen-devel, linux-kernel
  Cc: Stefano Stabellini, stable, Marek Marczykowski-Górecki


[-- Attachment #1.1.1: Type: text/plain, Size: 1950 bytes --]

On 29.10.21 23:46, Boris Ostrovsky wrote:
> 
> On 10/29/21 10:20 AM, Juergen Gross wrote:
>> --- a/Documentation/ABI/stable/sysfs-devices-system-xen_memory
>> +++ b/Documentation/ABI/stable/sysfs-devices-system-xen_memory
>> @@ -84,3 +84,13 @@ Description:
>>           Control scrubbing pages before returning them to Xen for 
>> others domains
>>           use. Can be set with xen_scrub_pages cmdline
>>           parameter. Default value controlled with 
>> CONFIG_XEN_SCRUB_PAGES_DEFAULT.
>> +
>> +What:        /sys/devices/system/xen_memory/xen_memory0/boot_timeout
>> +Date:        November 2021
>> +KernelVersion:    5.16
>> +Contact:    xen-devel@lists.xenproject.org
>> +Description:
>> +        The time (in seconds) to wait before giving up to boot in case
>> +        initial ballooning fails to free enough memory. Applies only
>> +        when running as HVM or PVH guest and started with less memory
>> +        configured than allowed at max.
> 
> 
> How is this going to be used? We only need this during boot.

Of course. Will switch to module_param().

>> -        state = update_schedule(state);
>> +        balloon_state = update_schedule(balloon_state);
> 
> 
> Now that balloon_state has whole file scope it can probably be updated 
> inside update_schedule().

I can do that.

>> +    while ((credit = current_credit()) < 0) {
>> +        if (credit != last_credit) {
>> +            last_changed = jiffies;
>> +            last_credit = credit;
>> +        }
>> +        if (balloon_state == BP_ECANCELED) {
> 
> 
> What about other states? We are really waiting for BP_DONE, aren't we?

Nearly. We are waiting for credit not being negative.

And in case of cancelled we know this won't happen without Xen admin
intervention.


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: rename alloc/free_xenballooned_pages
  2021-10-29 14:22 25% [PATCH] xen/balloon: rename alloc/free_xenballooned_pages Juergen Gross
@ 2021-10-30 10:27 10% ` kernel test robot
  0 siblings, 0 replies; 200+ results
From: kernel test robot @ 2021-10-30 10:27 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel
  Cc: kbuild-all, Juergen Gross, Boris Ostrovsky, Stefano Stabellini

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

Hi Juergen,

I love your patch! Yet something to improve:

[auto build test ERROR on xen-tip/linux-next]
[also build test ERROR on linux/master linus/master v5.15-rc7 next-20211029]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Juergen-Gross/xen-balloon-rename-alloc-free_xenballooned_pages/20211029-222901
base:   https://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git linux-next
config: arm64-defconfig (attached as .config)
compiler: aarch64-linux-gcc (GCC) 11.2.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/0day-ci/linux/commit/4db6d782d7d5ef16ced6f4e54161bd8f1148d39b
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Juergen-Gross/xen-balloon-rename-alloc-free_xenballooned_pages/20211029-222901
        git checkout 4db6d782d7d5ef16ced6f4e54161bd8f1148d39b
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=arm64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/xen/balloon.c:612:5: error: conflicting types for 'xen_alloc_unpopulated_pages'; have 'int(int,  struct page **)'
     612 | int xen_alloc_unpopulated_pages(int nr_pages, struct page **pages)
         |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   In file included from drivers/xen/balloon.c:68:
   include/xen/xen.h:55:5: note: previous declaration of 'xen_alloc_unpopulated_pages' with type 'int(unsigned int,  struct page **)'
      55 | int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
         |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   In file included from include/linux/linkage.h:7,
                    from include/linux/kernel.h:8,
                    from include/linux/list.h:9,
                    from include/linux/rculist.h:10,
                    from include/linux/pid.h:5,
                    from include/linux/sched.h:14,
                    from include/linux/ratelimit.h:6,
                    from include/linux/dev_printk.h:16,
                    from include/linux/device.h:15,
                    from include/linux/node.h:18,
                    from include/linux/cpu.h:17,
                    from drivers/xen/balloon.c:41:
   drivers/xen/balloon.c:658:15: error: conflicting types for 'xen_alloc_unpopulated_pages'; have 'int(int,  struct page **)'
     658 | EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
         |               ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/export.h:98:28: note: in definition of macro '___EXPORT_SYMBOL'
      98 |         extern typeof(sym) sym;                                                 \
         |                            ^~~
   include/linux/export.h:160:41: note: in expansion of macro '__EXPORT_SYMBOL'
     160 | #define _EXPORT_SYMBOL(sym, sec)        __EXPORT_SYMBOL(sym, sec, "")
         |                                         ^~~~~~~~~~~~~~~
   include/linux/export.h:163:41: note: in expansion of macro '_EXPORT_SYMBOL'
     163 | #define EXPORT_SYMBOL(sym)              _EXPORT_SYMBOL(sym, "")
         |                                         ^~~~~~~~~~~~~~
   drivers/xen/balloon.c:658:1: note: in expansion of macro 'EXPORT_SYMBOL'
     658 | EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
         | ^~~~~~~~~~~~~
   In file included from drivers/xen/balloon.c:68:
   include/xen/xen.h:55:5: note: previous declaration of 'xen_alloc_unpopulated_pages' with type 'int(unsigned int,  struct page **)'
      55 | int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
         |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~
>> drivers/xen/balloon.c:665:6: error: conflicting types for 'xen_free_unpopulated_pages'; have 'void(int,  struct page **)'
     665 | void xen_free_unpopulated_pages(int nr_pages, struct page **pages)
         |      ^~~~~~~~~~~~~~~~~~~~~~~~~~
   In file included from drivers/xen/balloon.c:68:
   include/xen/xen.h:56:6: note: previous declaration of 'xen_free_unpopulated_pages' with type 'void(unsigned int,  struct page **)'
      56 | void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
         |      ^~~~~~~~~~~~~~~~~~~~~~~~~~
   In file included from include/linux/linkage.h:7,
                    from include/linux/kernel.h:8,
                    from include/linux/list.h:9,
                    from include/linux/rculist.h:10,
                    from include/linux/pid.h:5,
                    from include/linux/sched.h:14,
                    from include/linux/ratelimit.h:6,
                    from include/linux/dev_printk.h:16,
                    from include/linux/device.h:15,
                    from include/linux/node.h:18,
                    from include/linux/cpu.h:17,
                    from drivers/xen/balloon.c:41:
   drivers/xen/balloon.c:684:15: error: conflicting types for 'xen_free_unpopulated_pages'; have 'void(int,  struct page **)'
     684 | EXPORT_SYMBOL(xen_free_unpopulated_pages);
         |               ^~~~~~~~~~~~~~~~~~~~~~~~~~
   include/linux/export.h:98:28: note: in definition of macro '___EXPORT_SYMBOL'
      98 |         extern typeof(sym) sym;                                                 \
         |                            ^~~
   include/linux/export.h:160:41: note: in expansion of macro '__EXPORT_SYMBOL'
     160 | #define _EXPORT_SYMBOL(sym, sec)        __EXPORT_SYMBOL(sym, sec, "")
         |                                         ^~~~~~~~~~~~~~~
   include/linux/export.h:163:41: note: in expansion of macro '_EXPORT_SYMBOL'
     163 | #define EXPORT_SYMBOL(sym)              _EXPORT_SYMBOL(sym, "")
         |                                         ^~~~~~~~~~~~~~
   drivers/xen/balloon.c:684:1: note: in expansion of macro 'EXPORT_SYMBOL'
     684 | EXPORT_SYMBOL(xen_free_unpopulated_pages);
         | ^~~~~~~~~~~~~
   In file included from drivers/xen/balloon.c:68:
   include/xen/xen.h:56:6: note: previous declaration of 'xen_free_unpopulated_pages' with type 'void(unsigned int,  struct page **)'
      56 | void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
         |      ^~~~~~~~~~~~~~~~~~~~~~~~~~


vim +612 drivers/xen/balloon.c

   605	
   606	/**
   607	 * xen_alloc_unpopulated_pages - get pages that have been ballooned out
   608	 * @nr_pages: Number of pages to get
   609	 * @pages: pages returned
   610	 * @return 0 on success, error otherwise
   611	 */
 > 612	int xen_alloc_unpopulated_pages(int nr_pages, struct page **pages)
   613	{
   614		int pgno = 0;
   615		struct page *page;
   616		int ret;
   617	
   618		mutex_lock(&balloon_mutex);
   619	
   620		balloon_stats.target_unpopulated += nr_pages;
   621	
   622		while (pgno < nr_pages) {
   623			page = balloon_retrieve(true);
   624			if (page) {
   625				pages[pgno++] = page;
   626	#ifdef CONFIG_XEN_HAVE_PVMMU
   627				/*
   628				 * We don't support PV MMU when Linux and Xen is using
   629				 * different page granularity.
   630				 */
   631				BUILD_BUG_ON(XEN_PAGE_SIZE != PAGE_SIZE);
   632	
   633				if (!xen_feature(XENFEAT_auto_translated_physmap)) {
   634					ret = xen_alloc_p2m_entry(page_to_pfn(page));
   635					if (ret < 0)
   636						goto out_undo;
   637				}
   638	#endif
   639			} else {
   640				ret = add_ballooned_pages(nr_pages - pgno);
   641				if (ret < 0)
   642					goto out_undo;
   643			}
   644		}
   645		mutex_unlock(&balloon_mutex);
   646		return 0;
   647	 out_undo:
   648		mutex_unlock(&balloon_mutex);
   649		xen_free_unpopulated_pages(pgno, pages);
   650		/*
   651		 * NB: free_xenballooned_pages will only subtract pgno pages, but since
   652		 * target_unpopulated is incremented with nr_pages at the start we need
   653		 * to remove the remaining ones also, or accounting will be screwed.
   654		 */
   655		balloon_stats.target_unpopulated -= nr_pages - pgno;
   656		return ret;
   657	}
   658	EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
   659	
   660	/**
   661	 * xen_free_unpopulated_pages - return pages retrieved with get_ballooned_pages
   662	 * @nr_pages: Number of pages
   663	 * @pages: pages to return
   664	 */
 > 665	void xen_free_unpopulated_pages(int nr_pages, struct page **pages)
   666	{
   667		int i;
   668	
   669		mutex_lock(&balloon_mutex);
   670	
   671		for (i = 0; i < nr_pages; i++) {
   672			if (pages[i])
   673				balloon_append(pages[i]);
   674		}
   675	
   676		balloon_stats.target_unpopulated -= nr_pages;
   677	
   678		/* The balloon may be too large now. Shrink it if needed. */
   679		if (current_credit())
   680			wake_up(&balloon_thread_wq);
   681	
   682		mutex_unlock(&balloon_mutex);
   683	}
   684	EXPORT_SYMBOL(xen_free_unpopulated_pages);
   685	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 56286 bytes --]

^ permalink raw reply	[relevance 10%]

* Re: [PATCH v3] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-10-29 22:18  5%   ` Marek Marczykowski-Górecki
@ 2021-10-29 23:44  5%     ` Boris Ostrovsky
  2021-11-01  7:21  5%       ` Juergen Gross
  0 siblings, 1 reply; 200+ results
From: Boris Ostrovsky @ 2021-10-29 23:44 UTC (permalink / raw)
  To: Marek Marczykowski-Górecki
  Cc: Juergen Gross, xen-devel, linux-kernel, Stefano Stabellini, stable


On 10/29/21 6:18 PM, Marek Marczykowski-Górecki wrote:
> On Fri, Oct 29, 2021 at 05:46:18PM -0400, Boris Ostrovsky wrote:
>> On 10/29/21 10:20 AM, Juergen Gross wrote:
>>> --- a/Documentation/ABI/stable/sysfs-devices-system-xen_memory
>>> +++ b/Documentation/ABI/stable/sysfs-devices-system-xen_memory
>>> @@ -84,3 +84,13 @@ Description:
>>>    		Control scrubbing pages before returning them to Xen for others domains
>>>    		use. Can be set with xen_scrub_pages cmdline
>>>    		parameter. Default value controlled with CONFIG_XEN_SCRUB_PAGES_DEFAULT.
>>> +
>>> +What:		/sys/devices/system/xen_memory/xen_memory0/boot_timeout
>>> +Date:		November 2021
>>> +KernelVersion:	5.16
>>> +Contact:	xen-devel@lists.xenproject.org
>>> +Description:
>>> +		The time (in seconds) to wait before giving up to boot in case
>>> +		initial ballooning fails to free enough memory. Applies only
>>> +		when running as HVM or PVH guest and started with less memory
>>> +		configured than allowed at max.
>>
>> How is this going to be used? We only need this during boot.
>>
>>
>>> -		state = update_schedule(state);
>>> +		balloon_state = update_schedule(balloon_state);
>>
>> Now that balloon_state has whole file scope it can probably be updated inside update_schedule().
>>
>>
>>> +	while ((credit = current_credit()) < 0) {
>>> +		if (credit != last_credit) {
>>> +			last_changed = jiffies;
>>> +			last_credit = credit;
>>> +		}
>>> +		if (balloon_state == BP_ECANCELED) {
>>
>> What about other states? We are really waiting for BP_DONE, aren't we?
> BP_DONE is set also as an intermediate step:
>
>                         balloon_state = decrease_reservation(n_pages,
>                                                              GFP_BALLOON);
>                         if (balloon_state == BP_DONE && n_pages != -credit &&
>                              n_pages < totalreserve_pages)
>                                 balloon_state = BP_EAGAIN;
>
> It would be bad to finish waiting in this case.


RIght, but if we were to say 'if (balloon_state != BP_DONE)' the worst that can happen is that we will continue on to the next iteration without warning and/or panicing. Of course, there is a chance thaton the next iteration the same thing will happen but I think chances of hitting this race every time are infinitely low. We can also check for current_credit() again.


The question is whether we do want to continue waiting if we are in BP_AGAIN. I don't think BP_WAIT is possible in this case although this may change in the future and we will forget to update this code.


-boris



^ permalink raw reply	[relevance 5%]

* Re: [PATCH v3] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-10-29 21:46  5% ` Boris Ostrovsky
@ 2021-10-29 22:18  5%   ` Marek Marczykowski-Górecki
  2021-10-29 23:44  5%     ` Boris Ostrovsky
  2021-11-01  7:15  5%   ` Juergen Gross
  1 sibling, 1 reply; 200+ results
From: Marek Marczykowski-Górecki @ 2021-10-29 22:18 UTC (permalink / raw)
  To: Boris Ostrovsky
  Cc: Juergen Gross, xen-devel, linux-kernel, Stefano Stabellini, stable

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

On Fri, Oct 29, 2021 at 05:46:18PM -0400, Boris Ostrovsky wrote:
> 
> On 10/29/21 10:20 AM, Juergen Gross wrote:
> > --- a/Documentation/ABI/stable/sysfs-devices-system-xen_memory
> > +++ b/Documentation/ABI/stable/sysfs-devices-system-xen_memory
> > @@ -84,3 +84,13 @@ Description:
> >   		Control scrubbing pages before returning them to Xen for others domains
> >   		use. Can be set with xen_scrub_pages cmdline
> >   		parameter. Default value controlled with CONFIG_XEN_SCRUB_PAGES_DEFAULT.
> > +
> > +What:		/sys/devices/system/xen_memory/xen_memory0/boot_timeout
> > +Date:		November 2021
> > +KernelVersion:	5.16
> > +Contact:	xen-devel@lists.xenproject.org
> > +Description:
> > +		The time (in seconds) to wait before giving up to boot in case
> > +		initial ballooning fails to free enough memory. Applies only
> > +		when running as HVM or PVH guest and started with less memory
> > +		configured than allowed at max.
> 
> 
> How is this going to be used? We only need this during boot.
> 
> 
> > -		state = update_schedule(state);
> > +		balloon_state = update_schedule(balloon_state);
> 
> 
> Now that balloon_state has whole file scope it can probably be updated inside update_schedule().
> 
> 
> > +	while ((credit = current_credit()) < 0) {
> > +		if (credit != last_credit) {
> > +			last_changed = jiffies;
> > +			last_credit = credit;
> > +		}
> > +		if (balloon_state == BP_ECANCELED) {
> 
> 
> What about other states? We are really waiting for BP_DONE, aren't we?

BP_DONE is set also as an intermediate step:

                       balloon_state = decrease_reservation(n_pages,
                                                            GFP_BALLOON);
                       if (balloon_state == BP_DONE && n_pages != -credit &&
                            n_pages < totalreserve_pages)
                               balloon_state = BP_EAGAIN;

It would be bad to finish waiting in this case.

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH v3] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-10-29 14:20 24% [PATCH v3] " Juergen Gross
@ 2021-10-29 21:46  5% ` Boris Ostrovsky
  2021-10-29 22:18  5%   ` Marek Marczykowski-Górecki
  2021-11-01  7:15  5%   ` Juergen Gross
  0 siblings, 2 replies; 200+ results
From: Boris Ostrovsky @ 2021-10-29 21:46 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel
  Cc: Stefano Stabellini, stable, Marek Marczykowski-Górecki


On 10/29/21 10:20 AM, Juergen Gross wrote:
> --- a/Documentation/ABI/stable/sysfs-devices-system-xen_memory
> +++ b/Documentation/ABI/stable/sysfs-devices-system-xen_memory
> @@ -84,3 +84,13 @@ Description:
>   		Control scrubbing pages before returning them to Xen for others domains
>   		use. Can be set with xen_scrub_pages cmdline
>   		parameter. Default value controlled with CONFIG_XEN_SCRUB_PAGES_DEFAULT.
> +
> +What:		/sys/devices/system/xen_memory/xen_memory0/boot_timeout
> +Date:		November 2021
> +KernelVersion:	5.16
> +Contact:	xen-devel@lists.xenproject.org
> +Description:
> +		The time (in seconds) to wait before giving up to boot in case
> +		initial ballooning fails to free enough memory. Applies only
> +		when running as HVM or PVH guest and started with less memory
> +		configured than allowed at max.


How is this going to be used? We only need this during boot.


>   
> -		state = update_schedule(state);
> +		balloon_state = update_schedule(balloon_state);


Now that balloon_state has whole file scope it can probably be updated inside update_schedule().


> +	while ((credit = current_credit()) < 0) {
> +		if (credit != last_credit) {
> +			last_changed = jiffies;
> +			last_credit = credit;
> +		}
> +		if (balloon_state == BP_ECANCELED) {


What about other states? We are really waiting for BP_DONE, aren't we?


-boris


> +			pr_warn_once("Initial ballooning failed, %ld pages need to be freed.\n",
> +				     -credit);
> +			if (jiffies - last_changed >=
> +			    HZ * balloon_stats.boot_timeout)
> +				panic("Initial ballooning failed!\n");
> +		}
> +


^ permalink raw reply	[relevance 5%]

* [PATCH] xen/balloon: rename alloc/free_xenballooned_pages
@ 2021-10-29 14:22 25% Juergen Gross
  2021-10-30 10:27 10% ` kernel test robot
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2021-10-29 14:22 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Juergen Gross, Boris Ostrovsky, Stefano Stabellini

alloc_xenballooned_pages() and free_xenballooned_pages() are used as
direct replacements of xen_alloc_unpopulated_pages() and
xen_free_unpopulated_pages() in case CONFIG_XEN_UNPOPULATED_ALLOC isn't
defined.

Guard both functions with !CONFIG_XEN_UNPOPULATED_ALLOC and rename them
to the xen_*() variants they are replacing. This allows to remove some
ifdeffery from the xen.h header file.

Signed-off-by: Juergen Gross <jgross@suse.com>
---
 drivers/xen/balloon.c | 18 ++++++++++--------
 include/xen/balloon.h |  3 ---
 include/xen/xen.h     |  6 ------
 3 files changed, 10 insertions(+), 17 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 98fae43d4cec..35fac7fb513a 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -575,6 +575,7 @@ void balloon_set_new_target(unsigned long target)
 }
 EXPORT_SYMBOL_GPL(balloon_set_new_target);
 
+#ifndef CONFIG_XEN_UNPOPULATED_ALLOC
 static int add_ballooned_pages(int nr_pages)
 {
 	enum bp_state st;
@@ -603,12 +604,12 @@ static int add_ballooned_pages(int nr_pages)
 }
 
 /**
- * alloc_xenballooned_pages - get pages that have been ballooned out
+ * xen_alloc_unpopulated_pages - get pages that have been ballooned out
  * @nr_pages: Number of pages to get
  * @pages: pages returned
  * @return 0 on success, error otherwise
  */
-int alloc_xenballooned_pages(int nr_pages, struct page **pages)
+int xen_alloc_unpopulated_pages(int nr_pages, struct page **pages)
 {
 	int pgno = 0;
 	struct page *page;
@@ -645,7 +646,7 @@ int alloc_xenballooned_pages(int nr_pages, struct page **pages)
 	return 0;
  out_undo:
 	mutex_unlock(&balloon_mutex);
-	free_xenballooned_pages(pgno, pages);
+	xen_free_unpopulated_pages(pgno, pages);
 	/*
 	 * NB: free_xenballooned_pages will only subtract pgno pages, but since
 	 * target_unpopulated is incremented with nr_pages at the start we need
@@ -654,14 +655,14 @@ int alloc_xenballooned_pages(int nr_pages, struct page **pages)
 	balloon_stats.target_unpopulated -= nr_pages - pgno;
 	return ret;
 }
-EXPORT_SYMBOL(alloc_xenballooned_pages);
+EXPORT_SYMBOL(xen_alloc_unpopulated_pages);
 
 /**
- * free_xenballooned_pages - return pages retrieved with get_ballooned_pages
+ * xen_free_unpopulated_pages - return pages retrieved with get_ballooned_pages
  * @nr_pages: Number of pages
  * @pages: pages to return
  */
-void free_xenballooned_pages(int nr_pages, struct page **pages)
+void xen_free_unpopulated_pages(int nr_pages, struct page **pages)
 {
 	int i;
 
@@ -680,9 +681,9 @@ void free_xenballooned_pages(int nr_pages, struct page **pages)
 
 	mutex_unlock(&balloon_mutex);
 }
-EXPORT_SYMBOL(free_xenballooned_pages);
+EXPORT_SYMBOL(xen_free_unpopulated_pages);
 
-#if defined(CONFIG_XEN_PV) && !defined(CONFIG_XEN_UNPOPULATED_ALLOC)
+#if defined(CONFIG_XEN_PV)
 static void __init balloon_add_region(unsigned long start_pfn,
 				      unsigned long pages)
 {
@@ -705,6 +706,7 @@ static void __init balloon_add_region(unsigned long start_pfn,
 	balloon_stats.total_pages += extra_pfn_end - start_pfn;
 }
 #endif
+#endif
 
 static int __init balloon_init(void)
 {
diff --git a/include/xen/balloon.h b/include/xen/balloon.h
index 95a4187f263b..d6ee920fafa4 100644
--- a/include/xen/balloon.h
+++ b/include/xen/balloon.h
@@ -27,9 +27,6 @@ extern struct balloon_stats balloon_stats;
 
 void balloon_set_new_target(unsigned long target);
 
-int alloc_xenballooned_pages(int nr_pages, struct page **pages);
-void free_xenballooned_pages(int nr_pages, struct page **pages);
-
 #ifdef CONFIG_XEN_BALLOON
 void xen_balloon_init(void);
 #else
diff --git a/include/xen/xen.h b/include/xen/xen.h
index 43efba045acc..9f031b5faa54 100644
--- a/include/xen/xen.h
+++ b/include/xen/xen.h
@@ -52,13 +52,7 @@ bool xen_biovec_phys_mergeable(const struct bio_vec *vec1,
 extern u64 xen_saved_max_mem_size;
 #endif
 
-#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
 int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
 void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
-#else
-#define xen_alloc_unpopulated_pages alloc_xenballooned_pages
-#define xen_free_unpopulated_pages free_xenballooned_pages
-#include <xen/balloon.h>
-#endif
 
 #endif	/* _XEN_XEN_H */
-- 
2.26.2



^ permalink raw reply related	[relevance 25%]

* [PATCH v3] xen/balloon: add late_initcall_sync() for initial ballooning done
@ 2021-10-29 14:20 24% Juergen Gross
  2021-10-29 21:46  5% ` Boris Ostrovsky
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2021-10-29 14:20 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Juergen Gross, Boris Ostrovsky, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki

When running as PVH or HVM guest with actual memory < max memory the
hypervisor is using "populate on demand" in order to allow the guest
to balloon down from its maximum memory size. For this to work
correctly the guest must not touch more memory pages than its target
memory size as otherwise the PoD cache will be exhausted and the guest
is crashed as a result of that.

In extreme cases ballooning down might not be finished today before
the init process is started, which can consume lots of memory.

In order to avoid random boot crashes in such cases, add a late init
call to wait for ballooning down having finished for PVH/HVM guests.

Warn on console if initial ballooning fails, panic() after stalling
for more than 3 minutes per default. Add a module parameter for
changing this timeout.

Cc: <stable@vger.kernel.org>
Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
---
V2:
- add warning and panic() when stalling (Marek Marczykowski-Górecki)
- don't wait if credit > 0
V3:
- issue warning only after ballooning failed (Marek Marczykowski-Górecki)
- make panic() timeout configurable via parameter
---
 .../stable/sysfs-devices-system-xen_memory    | 10 +++
 drivers/xen/balloon.c                         | 63 +++++++++++++++----
 drivers/xen/xen-balloon.c                     |  2 +
 include/xen/balloon.h                         |  1 +
 4 files changed, 63 insertions(+), 13 deletions(-)

diff --git a/Documentation/ABI/stable/sysfs-devices-system-xen_memory b/Documentation/ABI/stable/sysfs-devices-system-xen_memory
index 6d83f95a8a8e..2da062e2c94a 100644
--- a/Documentation/ABI/stable/sysfs-devices-system-xen_memory
+++ b/Documentation/ABI/stable/sysfs-devices-system-xen_memory
@@ -84,3 +84,13 @@ Description:
 		Control scrubbing pages before returning them to Xen for others domains
 		use. Can be set with xen_scrub_pages cmdline
 		parameter. Default value controlled with CONFIG_XEN_SCRUB_PAGES_DEFAULT.
+
+What:		/sys/devices/system/xen_memory/xen_memory0/boot_timeout
+Date:		November 2021
+KernelVersion:	5.16
+Contact:	xen-devel@lists.xenproject.org
+Description:
+		The time (in seconds) to wait before giving up to boot in case
+		initial ballooning fails to free enough memory. Applies only
+		when running as HVM or PVH guest and started with less memory
+		configured than allowed at max.
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 3a50f097ed3e..98fae43d4cec 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -125,12 +125,12 @@ static struct ctl_table xen_root[] = {
  * BP_ECANCELED: error, balloon operation canceled.
  */
 
-enum bp_state {
+static enum bp_state {
 	BP_DONE,
 	BP_WAIT,
 	BP_EAGAIN,
 	BP_ECANCELED
-};
+} balloon_state = BP_DONE;
 
 /* Main waiting point for xen-balloon thread. */
 static DECLARE_WAIT_QUEUE_HEAD(balloon_thread_wq);
@@ -494,9 +494,9 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
  * Stop waiting if either state is BP_DONE and ballooning action is
  * needed, or if the credit has changed while state is not BP_DONE.
  */
-static bool balloon_thread_cond(enum bp_state state, long credit)
+static bool balloon_thread_cond(long credit)
 {
-	if (state == BP_DONE)
+	if (balloon_state == BP_DONE)
 		credit = 0;
 
 	return current_credit() != credit || kthread_should_stop();
@@ -510,13 +510,12 @@ static bool balloon_thread_cond(enum bp_state state, long credit)
  */
 static int balloon_thread(void *unused)
 {
-	enum bp_state state = BP_DONE;
 	long credit;
 	unsigned long timeout;
 
 	set_freezable();
 	for (;;) {
-		switch (state) {
+		switch (balloon_state) {
 		case BP_DONE:
 		case BP_ECANCELED:
 			timeout = 3600 * HZ;
@@ -532,7 +531,7 @@ static int balloon_thread(void *unused)
 		credit = current_credit();
 
 		wait_event_freezable_timeout(balloon_thread_wq,
-			balloon_thread_cond(state, credit), timeout);
+			balloon_thread_cond(credit), timeout);
 
 		if (kthread_should_stop())
 			return 0;
@@ -543,22 +542,23 @@ static int balloon_thread(void *unused)
 
 		if (credit > 0) {
 			if (balloon_is_inflated())
-				state = increase_reservation(credit);
+				balloon_state = increase_reservation(credit);
 			else
-				state = reserve_additional_memory();
+				balloon_state = reserve_additional_memory();
 		}
 
 		if (credit < 0) {
 			long n_pages;
 
 			n_pages = min(-credit, si_mem_available());
-			state = decrease_reservation(n_pages, GFP_BALLOON);
-			if (state == BP_DONE && n_pages != -credit &&
+			balloon_state = decrease_reservation(n_pages,
+							     GFP_BALLOON);
+			if (balloon_state == BP_DONE && n_pages != -credit &&
 			    n_pages < totalreserve_pages)
-				state = BP_EAGAIN;
+				balloon_state = BP_EAGAIN;
 		}
 
-		state = update_schedule(state);
+		balloon_state = update_schedule(balloon_state);
 
 		mutex_unlock(&balloon_mutex);
 
@@ -731,6 +731,7 @@ static int __init balloon_init(void)
 	balloon_stats.max_schedule_delay = 32;
 	balloon_stats.retry_count = 1;
 	balloon_stats.max_retry_count = 4;
+	balloon_stats.boot_timeout = 180;
 
 #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
 	set_online_page_callback(&xen_online_page);
@@ -765,3 +766,39 @@ static int __init balloon_init(void)
 	return 0;
 }
 subsys_initcall(balloon_init);
+
+static int __init balloon_wait_finish(void)
+{
+	long credit, last_credit = 0;
+	unsigned long last_changed;
+
+	if (!xen_domain())
+		return -ENODEV;
+
+	/* PV guests don't need to wait. */
+	if (xen_pv_domain() || !current_credit())
+		return 0;
+
+	pr_info("Waiting for initial ballooning down having finished.\n");
+
+	while ((credit = current_credit()) < 0) {
+		if (credit != last_credit) {
+			last_changed = jiffies;
+			last_credit = credit;
+		}
+		if (balloon_state == BP_ECANCELED) {
+			pr_warn_once("Initial ballooning failed, %ld pages need to be freed.\n",
+				     -credit);
+			if (jiffies - last_changed >=
+			    HZ * balloon_stats.boot_timeout)
+				panic("Initial ballooning failed!\n");
+		}
+
+		schedule_timeout_interruptible(HZ / 10);
+	}
+
+	pr_info("Initial ballooning down finished.\n");
+
+	return 0;
+}
+late_initcall_sync(balloon_wait_finish);
diff --git a/drivers/xen/xen-balloon.c b/drivers/xen/xen-balloon.c
index 8cd583db20b1..6e5db50ede0f 100644
--- a/drivers/xen/xen-balloon.c
+++ b/drivers/xen/xen-balloon.c
@@ -150,6 +150,7 @@ static DEVICE_ULONG_ATTR(schedule_delay, 0444, balloon_stats.schedule_delay);
 static DEVICE_ULONG_ATTR(max_schedule_delay, 0644, balloon_stats.max_schedule_delay);
 static DEVICE_ULONG_ATTR(retry_count, 0444, balloon_stats.retry_count);
 static DEVICE_ULONG_ATTR(max_retry_count, 0644, balloon_stats.max_retry_count);
+static DEVICE_ULONG_ATTR(boot_timeout, 0644, balloon_stats.boot_timeout);
 static DEVICE_BOOL_ATTR(scrub_pages, 0644, xen_scrub_pages);
 
 static ssize_t target_kb_show(struct device *dev, struct device_attribute *attr,
@@ -211,6 +212,7 @@ static struct attribute *balloon_attrs[] = {
 	&dev_attr_max_schedule_delay.attr.attr,
 	&dev_attr_retry_count.attr.attr,
 	&dev_attr_max_retry_count.attr.attr,
+	&dev_attr_boot_timeout.attr.attr,
 	&dev_attr_scrub_pages.attr.attr,
 	NULL
 };
diff --git a/include/xen/balloon.h b/include/xen/balloon.h
index 6dbdb0b3fd03..95a4187f263b 100644
--- a/include/xen/balloon.h
+++ b/include/xen/balloon.h
@@ -20,6 +20,7 @@ struct balloon_stats {
 	unsigned long max_schedule_delay;
 	unsigned long retry_count;
 	unsigned long max_retry_count;
+	unsigned long boot_timeout;
 };
 
 extern struct balloon_stats balloon_stats;
-- 
2.26.2



^ permalink raw reply related	[relevance 24%]

* Re: [PATCH] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-10-29 10:22  5%       ` Juergen Gross
@ 2021-10-29 10:32  5%         ` Marek Marczykowski-Górecki
  0 siblings, 0 replies; 200+ results
From: Marek Marczykowski-Górecki @ 2021-10-29 10:32 UTC (permalink / raw)
  To: Juergen Gross
  Cc: xen-devel, linux-kernel, Boris Ostrovsky, Stefano Stabellini, stable

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

On Fri, Oct 29, 2021 at 12:22:18PM +0200, Juergen Gross wrote:
> On 29.10.21 11:57, Marek Marczykowski-Górecki wrote:
> > On Fri, Oct 29, 2021 at 06:48:44AM +0200, Juergen Gross wrote:
> > > On 28.10.21 22:16, Marek Marczykowski-Górecki wrote:
> > > > On Thu, Oct 28, 2021 at 12:59:52PM +0200, Juergen Gross wrote:
> > > > > When running as PVH or HVM guest with actual memory < max memory the
> > > > > hypervisor is using "populate on demand" in order to allow the guest
> > > > > to balloon down from its maximum memory size. For this to work
> > > > > correctly the guest must not touch more memory pages than its target
> > > > > memory size as otherwise the PoD cache will be exhausted and the guest
> > > > > is crashed as a result of that.
> > > > > 
> > > > > In extreme cases ballooning down might not be finished today before
> > > > > the init process is started, which can consume lots of memory.
> > > > > 
> > > > > In order to avoid random boot crashes in such cases, add a late init
> > > > > call to wait for ballooning down having finished for PVH/HVM guests.
> > > > > 
> > > > > Cc: <stable@vger.kernel.org>
> > > > > Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
> > > > > Signed-off-by: Juergen Gross <jgross@suse.com>
> > > > 
> > > > It may happen that initial balloon down fails (state==BP_ECANCELED). In
> > > > that case, it waits indefinitely. I think it should rather report a
> > > > failure (and panic? it's similar to OOM before PID 1 starts, so rather
> > > > hard to recover), instead of hanging.
> > > 
> > > Okay, I can add something like that. I'm thinking of issuing a failure
> > > message in case of credit not having changed for 1 minute and panic()
> > > after two more minutes. Is this fine?
> > 
> > Isn't it better to get a state from balloon_thread()? If the balloon
> > fails it won't really try anymore (until 3600s timeout), so waiting in
> > that state doesn't help. And reporting the failure earlier may be more
> > user friendly. Or maybe there is something that could wakeup the thread
> > earlier, that I don't see? Hot plugging more RAM is rather unlikely at
> > this stage...
> 
> Waking up the thread would be easy, but probably that wouldn't really
> help.

Waking it up alone no. I was thinking what could wake it up - if
nothing, then definitely waiting wouldn't help. You explained that just
below:

> The idea was that maybe a Xen admin would see the guest not booting up
> further and then adding some more memory to the guest (this should wake
> up the balloon thread again).
> 
> I agree that stopping to wait for ballooning to finish in case of it
> having failed is probably a sensible thing to do. Additionally I could
> add a boot parameter to control the timeout after the fail message and
> the panic().

Right, that would make sense: it's basically a time admin has to plug in
more memory to the VM.

> What do you think?

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-10-29  9:57  5%     ` Marek Marczykowski-Górecki
@ 2021-10-29 10:22  5%       ` Juergen Gross
  2021-10-29 10:32  5%         ` Marek Marczykowski-Górecki
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2021-10-29 10:22 UTC (permalink / raw)
  To: Marek Marczykowski-Górecki
  Cc: xen-devel, linux-kernel, Boris Ostrovsky, Stefano Stabellini, stable


[-- Attachment #1.1.1: Type: text/plain, Size: 2531 bytes --]

On 29.10.21 11:57, Marek Marczykowski-Górecki wrote:
> On Fri, Oct 29, 2021 at 06:48:44AM +0200, Juergen Gross wrote:
>> On 28.10.21 22:16, Marek Marczykowski-Górecki wrote:
>>> On Thu, Oct 28, 2021 at 12:59:52PM +0200, Juergen Gross wrote:
>>>> When running as PVH or HVM guest with actual memory < max memory the
>>>> hypervisor is using "populate on demand" in order to allow the guest
>>>> to balloon down from its maximum memory size. For this to work
>>>> correctly the guest must not touch more memory pages than its target
>>>> memory size as otherwise the PoD cache will be exhausted and the guest
>>>> is crashed as a result of that.
>>>>
>>>> In extreme cases ballooning down might not be finished today before
>>>> the init process is started, which can consume lots of memory.
>>>>
>>>> In order to avoid random boot crashes in such cases, add a late init
>>>> call to wait for ballooning down having finished for PVH/HVM guests.
>>>>
>>>> Cc: <stable@vger.kernel.org>
>>>> Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
>>>> Signed-off-by: Juergen Gross <jgross@suse.com>
>>>
>>> It may happen that initial balloon down fails (state==BP_ECANCELED). In
>>> that case, it waits indefinitely. I think it should rather report a
>>> failure (and panic? it's similar to OOM before PID 1 starts, so rather
>>> hard to recover), instead of hanging.
>>
>> Okay, I can add something like that. I'm thinking of issuing a failure
>> message in case of credit not having changed for 1 minute and panic()
>> after two more minutes. Is this fine?
> 
> Isn't it better to get a state from balloon_thread()? If the balloon
> fails it won't really try anymore (until 3600s timeout), so waiting in
> that state doesn't help. And reporting the failure earlier may be more
> user friendly. Or maybe there is something that could wakeup the thread
> earlier, that I don't see? Hot plugging more RAM is rather unlikely at
> this stage...

Waking up the thread would be easy, but probably that wouldn't really
help.

The idea was that maybe a Xen admin would see the guest not booting up
further and then adding some more memory to the guest (this should wake
up the balloon thread again).

I agree that stopping to wait for ballooning to finish in case of it
having failed is probably a sensible thing to do. Additionally I could
add a boot parameter to control the timeout after the fail message and
the panic().

What do you think?


Juergen


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-10-29  4:48  5%   ` Juergen Gross
@ 2021-10-29  9:57  5%     ` Marek Marczykowski-Górecki
  2021-10-29 10:22  5%       ` Juergen Gross
  0 siblings, 1 reply; 200+ results
From: Marek Marczykowski-Górecki @ 2021-10-29  9:57 UTC (permalink / raw)
  To: Juergen Gross
  Cc: xen-devel, linux-kernel, Boris Ostrovsky, Stefano Stabellini, stable

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

On Fri, Oct 29, 2021 at 06:48:44AM +0200, Juergen Gross wrote:
> On 28.10.21 22:16, Marek Marczykowski-Górecki wrote:
> > On Thu, Oct 28, 2021 at 12:59:52PM +0200, Juergen Gross wrote:
> > > When running as PVH or HVM guest with actual memory < max memory the
> > > hypervisor is using "populate on demand" in order to allow the guest
> > > to balloon down from its maximum memory size. For this to work
> > > correctly the guest must not touch more memory pages than its target
> > > memory size as otherwise the PoD cache will be exhausted and the guest
> > > is crashed as a result of that.
> > > 
> > > In extreme cases ballooning down might not be finished today before
> > > the init process is started, which can consume lots of memory.
> > > 
> > > In order to avoid random boot crashes in such cases, add a late init
> > > call to wait for ballooning down having finished for PVH/HVM guests.
> > > 
> > > Cc: <stable@vger.kernel.org>
> > > Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
> > > Signed-off-by: Juergen Gross <jgross@suse.com>
> > 
> > It may happen that initial balloon down fails (state==BP_ECANCELED). In
> > that case, it waits indefinitely. I think it should rather report a
> > failure (and panic? it's similar to OOM before PID 1 starts, so rather
> > hard to recover), instead of hanging.
> 
> Okay, I can add something like that. I'm thinking of issuing a failure
> message in case of credit not having changed for 1 minute and panic()
> after two more minutes. Is this fine?

Isn't it better to get a state from balloon_thread()? If the balloon
fails it won't really try anymore (until 3600s timeout), so waiting in
that state doesn't help. And reporting the failure earlier may be more
user friendly. Or maybe there is something that could wakeup the thread
earlier, that I don't see? Hot plugging more RAM is rather unlikely at
this stage...
See my patch at [1], although rather hacky (and likely - racy).

[1] https://lore.kernel.org/xen-devel/YXFxKC4shCATB913@mail-itl/

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 5%]

* [PATCH v2] xen/balloon: add late_initcall_sync() for initial ballooning done
@ 2021-10-29  7:49 16% Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2021-10-29  7:49 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Juergen Gross, Boris Ostrovsky, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki

When running as PVH or HVM guest with actual memory < max memory the
hypervisor is using "populate on demand" in order to allow the guest
to balloon down from its maximum memory size. For this to work
correctly the guest must not touch more memory pages than its target
memory size as otherwise the PoD cache will be exhausted and the guest
is crashed as a result of that.

In extreme cases ballooning down might not be finished today before
the init process is started, which can consume lots of memory.

In order to avoid random boot crashes in such cases, add a late init
call to wait for ballooning down having finished for PVH/HVM guests.

Warn on console if ballooning stalls for more than 1 minute, panic()
after stalling for more than 3 minutes.

Cc: <stable@vger.kernel.org>
Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
---
V2:
- add warning and panic() when stalling (Marek Marczykowski-Górecki)
- don't wait if credit > 0
---
 drivers/xen/balloon.c | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 3a50f097ed3e..c0c1c754e515 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -765,3 +765,38 @@ static int __init balloon_init(void)
 	return 0;
 }
 subsys_initcall(balloon_init);
+
+static int __init balloon_wait_finish(void)
+{
+	long credit, last_credit = 0;
+	unsigned long last_changed;
+
+	if (!xen_domain())
+		return -ENODEV;
+
+	/* PV guests don't need to wait. */
+	if (xen_pv_domain() || !current_credit())
+		return 0;
+
+	pr_info("Waiting for initial ballooning down having finished.\n");
+
+	while ((credit = current_credit()) < 0) {
+		if (credit != last_credit) {
+			last_changed = jiffies;
+			last_credit = credit;
+		}
+		if (jiffies - last_changed >= HZ * 60) {
+			pr_warn_once("Initial ballooning stalling for 60s, %ld pages need to be freed.\n",
+				     -credit);
+		}
+		if (jiffies - last_changed >= 3 * HZ * 60)
+			panic("Initial ballooning failed!\n");
+
+		schedule_timeout_interruptible(HZ / 10);
+	}
+
+	pr_info("Initial ballooning down finished.\n");
+
+	return 0;
+}
+late_initcall_sync(balloon_wait_finish);
-- 
2.26.2



^ permalink raw reply related	[relevance 16%]

* Re: [PATCH] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-10-28 20:16  5% ` Marek Marczykowski-Górecki
@ 2021-10-29  4:48  5%   ` Juergen Gross
  2021-10-29  9:57  5%     ` Marek Marczykowski-Górecki
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2021-10-29  4:48 UTC (permalink / raw)
  To: Marek Marczykowski-Górecki
  Cc: xen-devel, linux-kernel, Boris Ostrovsky, Stefano Stabellini, stable


[-- Attachment #1.1.1: Type: text/plain, Size: 1440 bytes --]

On 28.10.21 22:16, Marek Marczykowski-Górecki wrote:
> On Thu, Oct 28, 2021 at 12:59:52PM +0200, Juergen Gross wrote:
>> When running as PVH or HVM guest with actual memory < max memory the
>> hypervisor is using "populate on demand" in order to allow the guest
>> to balloon down from its maximum memory size. For this to work
>> correctly the guest must not touch more memory pages than its target
>> memory size as otherwise the PoD cache will be exhausted and the guest
>> is crashed as a result of that.
>>
>> In extreme cases ballooning down might not be finished today before
>> the init process is started, which can consume lots of memory.
>>
>> In order to avoid random boot crashes in such cases, add a late init
>> call to wait for ballooning down having finished for PVH/HVM guests.
>>
>> Cc: <stable@vger.kernel.org>
>> Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
>> Signed-off-by: Juergen Gross <jgross@suse.com>
> 
> It may happen that initial balloon down fails (state==BP_ECANCELED). In
> that case, it waits indefinitely. I think it should rather report a
> failure (and panic? it's similar to OOM before PID 1 starts, so rather
> hard to recover), instead of hanging.

Okay, I can add something like that. I'm thinking of issuing a failure
message in case of credit not having changed for 1 minute and panic()
after two more minutes. Is this fine?


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-10-28 10:59 17% [PATCH] xen/balloon: add late_initcall_sync() for initial ballooning done Juergen Gross
  2021-10-28 18:13  5% ` Boris Ostrovsky
@ 2021-10-28 20:16  5% ` Marek Marczykowski-Górecki
  2021-10-29  4:48  5%   ` Juergen Gross
  1 sibling, 1 reply; 200+ results
From: Marek Marczykowski-Górecki @ 2021-10-28 20:16 UTC (permalink / raw)
  To: Juergen Gross
  Cc: xen-devel, linux-kernel, Boris Ostrovsky, Stefano Stabellini, stable

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

On Thu, Oct 28, 2021 at 12:59:52PM +0200, Juergen Gross wrote:
> When running as PVH or HVM guest with actual memory < max memory the
> hypervisor is using "populate on demand" in order to allow the guest
> to balloon down from its maximum memory size. For this to work
> correctly the guest must not touch more memory pages than its target
> memory size as otherwise the PoD cache will be exhausted and the guest
> is crashed as a result of that.
> 
> In extreme cases ballooning down might not be finished today before
> the init process is started, which can consume lots of memory.
> 
> In order to avoid random boot crashes in such cases, add a late init
> call to wait for ballooning down having finished for PVH/HVM guests.
> 
> Cc: <stable@vger.kernel.org>
> Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
> Signed-off-by: Juergen Gross <jgross@suse.com>

It may happen that initial balloon down fails (state==BP_ECANCELED). In
that case, it waits indefinitely. I think it should rather report a
failure (and panic? it's similar to OOM before PID 1 starts, so rather
hard to recover), instead of hanging.

Anyway, it does fix the boot crashes.

> ---
>  drivers/xen/balloon.c | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
> 
> diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
> index 3a50f097ed3e..d19b851c3d3b 100644
> --- a/drivers/xen/balloon.c
> +++ b/drivers/xen/balloon.c
> @@ -765,3 +765,23 @@ static int __init balloon_init(void)
>  	return 0;
>  }
>  subsys_initcall(balloon_init);
> +
> +static int __init balloon_wait_finish(void)
> +{
> +	if (!xen_domain())
> +		return -ENODEV;
> +
> +	/* PV guests don't need to wait. */
> +	if (xen_pv_domain() || !current_credit())
> +		return 0;
> +
> +	pr_info("Waiting for initial ballooning down having finished.\n");
> +
> +	while (current_credit())
> +		schedule_timeout_interruptible(HZ / 10);
> +
> +	pr_info("Initial ballooning down finished.\n");
> +
> +	return 0;
> +}
> +late_initcall_sync(balloon_wait_finish);
> -- 
> 2.26.2
> 

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: add late_initcall_sync() for initial ballooning done
  2021-10-28 10:59 17% [PATCH] xen/balloon: add late_initcall_sync() for initial ballooning done Juergen Gross
@ 2021-10-28 18:13  5% ` Boris Ostrovsky
  2021-10-28 20:16  5% ` Marek Marczykowski-Górecki
  1 sibling, 0 replies; 200+ results
From: Boris Ostrovsky @ 2021-10-28 18:13 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel
  Cc: Stefano Stabellini, stable, Marek Marczykowski-Górecki


On 10/28/21 6:59 AM, Juergen Gross wrote:
> +
> +	while (current_credit())
> +		schedule_timeout_interruptible(HZ / 10);


Should we be concerned that we may get stuck here forever if for some reason we can't balloon down everything?


-boris




^ permalink raw reply	[relevance 5%]

* Re: [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource
  2021-10-26 16:05  6% ` [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource Oleksandr Tyshchenko
@ 2021-10-28 16:37  0%   ` Stefano Stabellini
  2021-11-09 18:34  0%     ` Oleksandr
  0 siblings, 1 reply; 200+ results
From: Stefano Stabellini @ 2021-10-28 16:37 UTC (permalink / raw)
  To: Oleksandr Tyshchenko
  Cc: xen-devel, linux-kernel, Oleksandr Tyshchenko, Boris Ostrovsky,
	Juergen Gross, Stefano Stabellini, Julien Grall

On Tue, 26 Oct 2021, Oleksandr Tyshchenko wrote:
> From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> 
> The main reason of this change is that unpopulated-alloc
> code cannot be used in its current form on Arm, but there
> is a desire to reuse it to avoid wasting real RAM pages
> for the grant/foreign mappings.
> 
> The problem is that system "iomem_resource" is used for
> the address space allocation, but the really unallocated
> space can't be figured out precisely by the domain on Arm
> without hypervisor involvement. For example, not all device
> I/O regions are known by the time domain starts creating
> grant/foreign mappings. And following the advise from
> "iomem_resource" we might end up reusing these regions by
> a mistake. So, the hypervisor which maintains the P2M for
> the domain is in the best position to provide unused regions
> of guest physical address space which could be safely used
> to create grant/foreign mappings.
> 
> Introduce new helper arch_xen_unpopulated_init() which purpose
> is to create specific Xen resource based on the memory regions
> provided by the hypervisor to be used as unused space for Xen
> scratch pages.
> 
> If arch doesn't implement arch_xen_unpopulated_init() to
> initialize Xen resource the default "iomem_resource" will be used.
> So the behavior on x86 won't be changed.
> 
> Also fall back to allocate xenballooned pages (steal real RAM
> pages) if we do not have any suitable resource to work with and
> as the result we won't be able to provide unpopulated pages.
> 
> Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
> ---
> Changes RFC -> V2:
>    - new patch, instead of
>     "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to provide unallocated space"
> ---
>  drivers/xen/unpopulated-alloc.c | 89 +++++++++++++++++++++++++++++++++++++++--
>  include/xen/xen.h               |  2 +
>  2 files changed, 88 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/xen/unpopulated-alloc.c b/drivers/xen/unpopulated-alloc.c
> index a03dc5b..1f1d8d8 100644
> --- a/drivers/xen/unpopulated-alloc.c
> +++ b/drivers/xen/unpopulated-alloc.c
> @@ -8,6 +8,7 @@
>  
>  #include <asm/page.h>
>  
> +#include <xen/balloon.h>
>  #include <xen/page.h>
>  #include <xen/xen.h>
>  
> @@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
>  static struct page *page_list;
>  static unsigned int list_count;
>  
> +static struct resource *target_resource;
> +static struct resource xen_resource = {
> +	.name = "Xen unused space",
> +};
> +
> +/*
> + * If arch is not happy with system "iomem_resource" being used for
> + * the region allocation it can provide it's own view by initializing
> + * "xen_resource" with unused regions of guest physical address space
> + * provided by the hypervisor.
> + */
> +int __weak arch_xen_unpopulated_init(struct resource *res)
> +{
> +	return -ENOSYS;
> +}
> +
>  static int fill_list(unsigned int nr_pages)
>  {
>  	struct dev_pagemap *pgmap;
> -	struct resource *res;
> +	struct resource *res, *tmp_res = NULL;
>  	void *vaddr;
>  	unsigned int i, alloc_pages = round_up(nr_pages, PAGES_PER_SECTION);
> -	int ret = -ENOMEM;
> +	int ret;
>  
>  	res = kzalloc(sizeof(*res), GFP_KERNEL);
>  	if (!res)
> @@ -30,7 +47,7 @@ static int fill_list(unsigned int nr_pages)
>  	res->name = "Xen scratch";
>  	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
>  
> -	ret = allocate_resource(&iomem_resource, res,
> +	ret = allocate_resource(target_resource, res,
>  				alloc_pages * PAGE_SIZE, 0, -1,
>  				PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
>  	if (ret < 0) {
> @@ -38,6 +55,31 @@ static int fill_list(unsigned int nr_pages)
>  		goto err_resource;
>  	}
>  
> +	/*
> +	 * Reserve the region previously allocated from Xen resource to avoid
> +	 * re-using it by someone else.
> +	 */
> +	if (target_resource != &iomem_resource) {
> +		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
> +		if (!res) {
> +			ret = -ENOMEM;
> +			goto err_insert;
> +		}
> +
> +		tmp_res->name = res->name;
> +		tmp_res->start = res->start;
> +		tmp_res->end = res->end;
> +		tmp_res->flags = res->flags;
> +
> +		ret = insert_resource(&iomem_resource, tmp_res);
> +		if (ret < 0) {
> +			pr_err("Cannot insert IOMEM resource [%llx - %llx]\n",
> +			       tmp_res->start, tmp_res->end);
> +			kfree(tmp_res);
> +			goto err_insert;
> +		}
> +	}

I am a bit confused.. why do we need to do this? Who could be
erroneously re-using the region? Are you saying that the next time
allocate_resource is called it could find the same region again? It
doesn't seem possible?


>  	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
>  	if (!pgmap) {
>  		ret = -ENOMEM;
> @@ -95,12 +137,40 @@ static int fill_list(unsigned int nr_pages)
>  err_memremap:
>  	kfree(pgmap);
>  err_pgmap:
> +	if (tmp_res) {
> +		release_resource(tmp_res);
> +		kfree(tmp_res);
> +	}
> +err_insert:
>  	release_resource(res);
>  err_resource:
>  	kfree(res);
>  	return ret;
>  }
>  
> +static void unpopulated_init(void)
> +{
> +	static bool inited = false;

initialized = false


> +	int ret;
> +
> +	if (inited)
> +		return;
> +
> +	/*
> +	 * Try to initialize Xen resource the first and fall back to default
> +	 * resource if arch doesn't offer one.
> +	 */
> +	ret = arch_xen_unpopulated_init(&xen_resource);
> +	if (!ret)
> +		target_resource = &xen_resource;
> +	else if (ret == -ENOSYS)
> +		target_resource = &iomem_resource;
> +	else
> +		pr_err("Cannot initialize Xen resource\n");
> +
> +	inited = true;
> +}

Would it make sense to call unpopulated_init from an init function,
rather than every time xen_alloc_unpopulated_pages is called?


>  /**
>   * xen_alloc_unpopulated_pages - alloc unpopulated pages
>   * @nr_pages: Number of pages
> @@ -112,6 +182,16 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>  	unsigned int i;
>  	int ret = 0;
>  
> +	unpopulated_init();
> +
> +	/*
> +	 * Fall back to default behavior if we do not have any suitable resource
> +	 * to allocate required region from and as the result we won't be able to
> +	 * construct pages.
> +	 */
> +	if (!target_resource)
> +		return alloc_xenballooned_pages(nr_pages, pages);

The commit message says that the behavior on x86 doesn't change but this
seems to be a change that could impact x86?


>  	mutex_lock(&list_lock);
>  	if (list_count < nr_pages) {
>  		ret = fill_list(nr_pages - list_count);
> @@ -159,6 +239,9 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
>  {
>  	unsigned int i;
>  
> +	if (!target_resource)
> +		return free_xenballooned_pages(nr_pages, pages);
> +
>  	mutex_lock(&list_lock);
>  	for (i = 0; i < nr_pages; i++) {
>  		pages[i]->zone_device_data = page_list;
> diff --git a/include/xen/xen.h b/include/xen/xen.h
> index 43efba0..55d2ef8 100644
> --- a/include/xen/xen.h
> +++ b/include/xen/xen.h
> @@ -55,6 +55,8 @@ extern u64 xen_saved_max_mem_size;
>  #ifdef CONFIG_XEN_UNPOPULATED_ALLOC
>  int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
>  void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
> +struct resource;

This is to avoid having to #include linux/ioport.h, right? Is it a
problem or is it just to minimize the headers dependencies?

It looks like adding #include <linux/ioport.h> below #include
<linux/types.h> in include/xen/xen.h would work too. I am not sure what
is the best way though, I'll let Juergen comment.


> +int arch_xen_unpopulated_init(struct resource *res);
>  #else
>  #define xen_alloc_unpopulated_pages alloc_xenballooned_pages
>  #define xen_free_unpopulated_pages free_xenballooned_pages
> -- 
> 2.7.4
> 


^ permalink raw reply	[relevance 0%]

* [PATCH] xen/balloon: add late_initcall_sync() for initial ballooning done
@ 2021-10-28 10:59 17% Juergen Gross
  2021-10-28 18:13  5% ` Boris Ostrovsky
  2021-10-28 20:16  5% ` Marek Marczykowski-Górecki
  0 siblings, 2 replies; 200+ results
From: Juergen Gross @ 2021-10-28 10:59 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Juergen Gross, Boris Ostrovsky, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki

When running as PVH or HVM guest with actual memory < max memory the
hypervisor is using "populate on demand" in order to allow the guest
to balloon down from its maximum memory size. For this to work
correctly the guest must not touch more memory pages than its target
memory size as otherwise the PoD cache will be exhausted and the guest
is crashed as a result of that.

In extreme cases ballooning down might not be finished today before
the init process is started, which can consume lots of memory.

In order to avoid random boot crashes in such cases, add a late init
call to wait for ballooning down having finished for PVH/HVM guests.

Cc: <stable@vger.kernel.org>
Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
---
 drivers/xen/balloon.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 3a50f097ed3e..d19b851c3d3b 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -765,3 +765,23 @@ static int __init balloon_init(void)
 	return 0;
 }
 subsys_initcall(balloon_init);
+
+static int __init balloon_wait_finish(void)
+{
+	if (!xen_domain())
+		return -ENODEV;
+
+	/* PV guests don't need to wait. */
+	if (xen_pv_domain() || !current_credit())
+		return 0;
+
+	pr_info("Waiting for initial ballooning down having finished.\n");
+
+	while (current_credit())
+		schedule_timeout_interruptible(HZ / 10);
+
+	pr_info("Initial ballooning down finished.\n");
+
+	return 0;
+}
+late_initcall_sync(balloon_wait_finish);
-- 
2.26.2



^ permalink raw reply related	[relevance 17%]

* [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource
  @ 2021-10-26 16:05  6% ` Oleksandr Tyshchenko
  2021-10-28 16:37  0%   ` Stefano Stabellini
  0 siblings, 1 reply; 200+ results
From: Oleksandr Tyshchenko @ 2021-10-26 16:05 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Oleksandr Tyshchenko, Boris Ostrovsky, Juergen Gross,
	Stefano Stabellini, Julien Grall

From: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>

The main reason of this change is that unpopulated-alloc
code cannot be used in its current form on Arm, but there
is a desire to reuse it to avoid wasting real RAM pages
for the grant/foreign mappings.

The problem is that system "iomem_resource" is used for
the address space allocation, but the really unallocated
space can't be figured out precisely by the domain on Arm
without hypervisor involvement. For example, not all device
I/O regions are known by the time domain starts creating
grant/foreign mappings. And following the advise from
"iomem_resource" we might end up reusing these regions by
a mistake. So, the hypervisor which maintains the P2M for
the domain is in the best position to provide unused regions
of guest physical address space which could be safely used
to create grant/foreign mappings.

Introduce new helper arch_xen_unpopulated_init() which purpose
is to create specific Xen resource based on the memory regions
provided by the hypervisor to be used as unused space for Xen
scratch pages.

If arch doesn't implement arch_xen_unpopulated_init() to
initialize Xen resource the default "iomem_resource" will be used.
So the behavior on x86 won't be changed.

Also fall back to allocate xenballooned pages (steal real RAM
pages) if we do not have any suitable resource to work with and
as the result we won't be able to provide unpopulated pages.

Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
---
Changes RFC -> V2:
   - new patch, instead of
    "[RFC PATCH 2/2] xen/unpopulated-alloc: Query hypervisor to provide unallocated space"
---
 drivers/xen/unpopulated-alloc.c | 89 +++++++++++++++++++++++++++++++++++++++--
 include/xen/xen.h               |  2 +
 2 files changed, 88 insertions(+), 3 deletions(-)

diff --git a/drivers/xen/unpopulated-alloc.c b/drivers/xen/unpopulated-alloc.c
index a03dc5b..1f1d8d8 100644
--- a/drivers/xen/unpopulated-alloc.c
+++ b/drivers/xen/unpopulated-alloc.c
@@ -8,6 +8,7 @@
 
 #include <asm/page.h>
 
+#include <xen/balloon.h>
 #include <xen/page.h>
 #include <xen/xen.h>
 
@@ -15,13 +16,29 @@ static DEFINE_MUTEX(list_lock);
 static struct page *page_list;
 static unsigned int list_count;
 
+static struct resource *target_resource;
+static struct resource xen_resource = {
+	.name = "Xen unused space",
+};
+
+/*
+ * If arch is not happy with system "iomem_resource" being used for
+ * the region allocation it can provide it's own view by initializing
+ * "xen_resource" with unused regions of guest physical address space
+ * provided by the hypervisor.
+ */
+int __weak arch_xen_unpopulated_init(struct resource *res)
+{
+	return -ENOSYS;
+}
+
 static int fill_list(unsigned int nr_pages)
 {
 	struct dev_pagemap *pgmap;
-	struct resource *res;
+	struct resource *res, *tmp_res = NULL;
 	void *vaddr;
 	unsigned int i, alloc_pages = round_up(nr_pages, PAGES_PER_SECTION);
-	int ret = -ENOMEM;
+	int ret;
 
 	res = kzalloc(sizeof(*res), GFP_KERNEL);
 	if (!res)
@@ -30,7 +47,7 @@ static int fill_list(unsigned int nr_pages)
 	res->name = "Xen scratch";
 	res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
 
-	ret = allocate_resource(&iomem_resource, res,
+	ret = allocate_resource(target_resource, res,
 				alloc_pages * PAGE_SIZE, 0, -1,
 				PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
 	if (ret < 0) {
@@ -38,6 +55,31 @@ static int fill_list(unsigned int nr_pages)
 		goto err_resource;
 	}
 
+	/*
+	 * Reserve the region previously allocated from Xen resource to avoid
+	 * re-using it by someone else.
+	 */
+	if (target_resource != &iomem_resource) {
+		tmp_res = kzalloc(sizeof(*tmp_res), GFP_KERNEL);
+		if (!res) {
+			ret = -ENOMEM;
+			goto err_insert;
+		}
+
+		tmp_res->name = res->name;
+		tmp_res->start = res->start;
+		tmp_res->end = res->end;
+		tmp_res->flags = res->flags;
+
+		ret = insert_resource(&iomem_resource, tmp_res);
+		if (ret < 0) {
+			pr_err("Cannot insert IOMEM resource [%llx - %llx]\n",
+			       tmp_res->start, tmp_res->end);
+			kfree(tmp_res);
+			goto err_insert;
+		}
+	}
+
 	pgmap = kzalloc(sizeof(*pgmap), GFP_KERNEL);
 	if (!pgmap) {
 		ret = -ENOMEM;
@@ -95,12 +137,40 @@ static int fill_list(unsigned int nr_pages)
 err_memremap:
 	kfree(pgmap);
 err_pgmap:
+	if (tmp_res) {
+		release_resource(tmp_res);
+		kfree(tmp_res);
+	}
+err_insert:
 	release_resource(res);
 err_resource:
 	kfree(res);
 	return ret;
 }
 
+static void unpopulated_init(void)
+{
+	static bool inited = false;
+	int ret;
+
+	if (inited)
+		return;
+
+	/*
+	 * Try to initialize Xen resource the first and fall back to default
+	 * resource if arch doesn't offer one.
+	 */
+	ret = arch_xen_unpopulated_init(&xen_resource);
+	if (!ret)
+		target_resource = &xen_resource;
+	else if (ret == -ENOSYS)
+		target_resource = &iomem_resource;
+	else
+		pr_err("Cannot initialize Xen resource\n");
+
+	inited = true;
+}
+
 /**
  * xen_alloc_unpopulated_pages - alloc unpopulated pages
  * @nr_pages: Number of pages
@@ -112,6 +182,16 @@ int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 	unsigned int i;
 	int ret = 0;
 
+	unpopulated_init();
+
+	/*
+	 * Fall back to default behavior if we do not have any suitable resource
+	 * to allocate required region from and as the result we won't be able to
+	 * construct pages.
+	 */
+	if (!target_resource)
+		return alloc_xenballooned_pages(nr_pages, pages);
+
 	mutex_lock(&list_lock);
 	if (list_count < nr_pages) {
 		ret = fill_list(nr_pages - list_count);
@@ -159,6 +239,9 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages)
 {
 	unsigned int i;
 
+	if (!target_resource)
+		return free_xenballooned_pages(nr_pages, pages);
+
 	mutex_lock(&list_lock);
 	for (i = 0; i < nr_pages; i++) {
 		pages[i]->zone_device_data = page_list;
diff --git a/include/xen/xen.h b/include/xen/xen.h
index 43efba0..55d2ef8 100644
--- a/include/xen/xen.h
+++ b/include/xen/xen.h
@@ -55,6 +55,8 @@ extern u64 xen_saved_max_mem_size;
 #ifdef CONFIG_XEN_UNPOPULATED_ALLOC
 int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
 void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
+struct resource;
+int arch_xen_unpopulated_init(struct resource *res);
 #else
 #define xen_alloc_unpopulated_pages alloc_xenballooned_pages
 #define xen_free_unpopulated_pages free_xenballooned_pages
-- 
2.7.4



^ permalink raw reply related	[relevance 6%]

* Re: Tentative fix for "out of PoD memory" issue
  2021-10-21 11:53 22% Tentative fix for "out of PoD memory" issue Juergen Gross
@ 2021-10-21 13:54 14% ` Marek Marczykowski-Górecki
  0 siblings, 0 replies; 200+ results
From: Marek Marczykowski-Górecki @ 2021-10-21 13:54 UTC (permalink / raw)
  To: Juergen Gross; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 2498 bytes --]

On Thu, Oct 21, 2021 at 01:53:06PM +0200, Juergen Gross wrote:
> Marek,
> 
> could you please test whether the attached patch is fixing your
> problem?

Sure. In fact, I made a similar patch in the meantime (attached) to
experiment with this a bit.

> BTW, I don't think this couldn't happen before kernel 5.15. I guess
> my modification to use a kernel thread instead of a workqueue just
> made the issue more probable.

I think you are right here. But this all looks still a bit weird.

1. baseline: 5.10.61 (before using kernel thread - which was backported to
stable branches).

Here the startup completes successfully (no "out of PoD memory"
issue) with memory=270MB. 

2. 5.10.61 with added boot delay patch:
The delay is about 18s and the guest boot successfully.

3. 5.10.71 with "xen/balloon: fix cancelled balloon action" but without
delay patch:
The domain is killed during startup (in the middle of fsck, I think)

4. 5.10.74 with delay patch:
The delay is about 19s and the guest boot successfully.

Now the weird part: with memory=270MB with the delay patch, the balloon
delay _fails_ - state=BP_ECANCELED, and credit is -19712 at that time.
In both thread and workqueue balloon variants. Yet, it isn't killed (*).
But with 5.10.61, even without the delay patch, the guest starts
successfully in the end.

Also, I think there was some implicit wait for initial balloon down
before. That was the main motivation for 197ecb3802c0 "xen/balloon: add
runtime control for scrubbing ballooned out pages" - because that
initial balloon down held the system startup for some long time. Sadly,
I can't find my notes from debugging that (especially if I had written
down a stacktrace _where_ exactly it was waiting)...

> I couldn't reproduce the crash you are seeing, but the introduced
> wait was 4.2 seconds on my test system (a PVH guest with 2 GB of
> memory, maxmem 6 GB).

I'm testing it on a much more aggressive setting:
 - memory: 270 MB (the minimal that is sufficient to boot the system)
 - maxmem: 4 GB

The default settings in Qubes are:
 - memory: 400 MB
 - maxmem: 4 GB

That should explains why it happens on Qubes way more often than
elsewhere.


(*) At some point during system boot, qubes memory manager kicks in and
the VM gets more memory. But it's rather late, and definitely after it is
killed with "out of PoD memory" in other cases.

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #1.2: balloon-wait-5.10.61.patch --]
[-- Type: text/plain, Size: 3701 bytes --]

From 947818c731094a952d4955e99a23ef336daf7ab9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?=
 <marmarek@invisiblethingslab.com>
Date: Thu, 21 Oct 2021 01:10:21 +0200
Subject: [PATCH] WIP: xen/balloon: wait for initial balloon down before
 starting userspace
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Organization: Invisible Things Lab
Cc: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>

When HVM/PVH guest with maxmem > memory, a populate on demand feature is
used. This allows the guest to see up to 'maxmem' memory, but when it
tries to use more than 'memory', it is crashed. Balloon driver should
prevent that by ballooning down the guest before it tries to use too
much memory. Unfortunately, this was done asynchronously and it wasn't
really guaranteed to be quick enough. And indeed, with recent kernel
versions, the initial balloon down process is slower and guests with
small initial 'memory' are crashed frequently by Xen.

Fix this by adding late init call that waits for the initial balloon
down to complete, before allowing any userspace to run. If that initial
balloon down fails, it is very likely that guest will be killed (as soon
as it will really use all the memory that something has allocated) -
print a message about that to aid diagnosing issues.

Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
(cherry picked from commit 9a226e669c918c98ee603ee30a1798da6434a423)
---
 drivers/xen/balloon.c | 27 ++++++++++++++++++++++++++-
 1 file changed, 26 insertions(+), 1 deletion(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index b57b2067ecbf..c2a4e25a14dc 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -56,6 +56,7 @@
 #include <linux/percpu-defs.h>
 #include <linux/slab.h>
 #include <linux/sysctl.h>
+#include <linux/completion.h>
 
 #include <asm/page.h>
 #include <asm/tlb.h>
@@ -136,6 +137,8 @@ static DEFINE_MUTEX(balloon_mutex);
 struct balloon_stats balloon_stats;
 EXPORT_SYMBOL_GPL(balloon_stats);
 
+static DECLARE_COMPLETION(initial_balloon);
+
 /* We increase/decrease in batches which fit in a page */
 static xen_pfn_t frame_list[PAGE_SIZE / sizeof(xen_pfn_t)];
 
@@ -501,7 +504,6 @@ static void balloon_process(struct work_struct *work)
 	enum bp_state state = BP_DONE;
 	long credit;
 
-
 	do {
 		mutex_lock(&balloon_mutex);
 
@@ -526,6 +528,15 @@ static void balloon_process(struct work_struct *work)
 
 		state = update_schedule(state);
 
+		if (credit >= 0)
+			complete(&initial_balloon);
+		else if (state == BP_ECANCELED) {
+			if (!completion_done(&initial_balloon) && !xen_pv_domain())
+				pr_err("Initial balloon down failed, expect the domain to be killed with \"out of PoD memory\" error by Xen.\n");
+			complete(&initial_balloon);
+		}
+
+
 		mutex_unlock(&balloon_mutex);
 
 		cond_resched();
@@ -677,6 +688,20 @@ static void __init balloon_add_region(unsigned long start_pfn,
 }
 #endif
 
+static int __init wait_for_initial_balloon_down(void)
+{
+	mutex_lock(&balloon_mutex);
+	/* optionally re-init completion after retrieving balloon target */
+	if (current_credit() < 0)
+		reinit_completion(&initial_balloon);
+	mutex_unlock(&balloon_mutex);
+	printk(KERN_INFO "waiting for initial balloon down %ld\n", current_credit());
+	wait_for_completion(&initial_balloon);
+	printk(KERN_INFO "done waiting for initial balloon down %ld\n", current_credit());
+	return 0;
+}
+late_initcall(wait_for_initial_balloon_down);
+
 static int __init balloon_init(void)
 {
 	if (!xen_domain())
-- 
2.31.1


[-- Attachment #1.3: balloon-wait-5.10.74.patch --]
[-- Type: text/plain, Size: 3474 bytes --]

From 9a226e669c918c98ee603ee30a1798da6434a423 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?=
 <marmarek@invisiblethingslab.com>
Date: Thu, 21 Oct 2021 01:10:21 +0200
Subject: [PATCH] WIP: xen/balloon: wait for initial balloon down before
 starting userspace
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Organization: Invisible Things Lab
Cc: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>

When HVM/PVH guest with maxmem > memory, a populate on demand feature is
used. This allows the guest to see up to 'maxmem' memory, but when it
tries to use more than 'memory', it is crashed. Balloon driver should
prevent that by ballooning down the guest before it tries to use too
much memory. Unfortunately, this was done asynchronously and it wasn't
really guaranteed to be quick enough. And indeed, with recent kernel
versions, the initial balloon down process is slower and guests with
small initial 'memory' are crashed frequently by Xen.

Fix this by adding late init call that waits for the initial balloon
down to complete, before allowing any userspace to run. If that initial
balloon down fails, it is very likely that guest will be killed (as soon
as it will really use all the memory that something has allocated) -
print a message about that to aid diagnosing issues.

Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
---
 drivers/xen/balloon.c | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 1911a62a6d9c..a91d90f91c81 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -58,6 +58,7 @@
 #include <linux/percpu-defs.h>
 #include <linux/slab.h>
 #include <linux/sysctl.h>
+#include <linux/completion.h>
 
 #include <asm/page.h>
 #include <asm/tlb.h>
@@ -140,6 +141,8 @@ static DEFINE_MUTEX(balloon_mutex);
 struct balloon_stats balloon_stats;
 EXPORT_SYMBOL_GPL(balloon_stats);
 
+static DECLARE_COMPLETION(initial_balloon);
+
 /* We increase/decrease in batches which fit in a page */
 static xen_pfn_t frame_list[PAGE_SIZE / sizeof(xen_pfn_t)];
 
@@ -531,6 +534,14 @@ static int balloon_thread(void *unused)
 
 		credit = current_credit();
 
+		if (credit >= 0)
+			complete(&initial_balloon);
+		else if (state == BP_ECANCELED) {
+			if (!completion_done(&initial_balloon) && !xen_pv_domain())
+				pr_err("Initial balloon down failed, expect the domain to be killed with \"out of PoD memory\" error by Xen.\n");
+			complete(&initial_balloon);
+		}
+
 		wait_event_freezable_timeout(balloon_thread_wq,
 			balloon_thread_cond(state, credit), timeout);
 
@@ -706,6 +717,20 @@ static void __init balloon_add_region(unsigned long start_pfn,
 }
 #endif
 
+static int __init wait_for_initial_balloon_down(void)
+{
+	mutex_lock(&balloon_mutex);
+	/* optionally re-init completion after retrieving balloon target */
+	if (current_credit() < 0)
+		reinit_completion(&initial_balloon);
+	mutex_unlock(&balloon_mutex);
+	printk(KERN_INFO "waiting for initial balloon down %ld\n", current_credit());
+	wait_for_completion(&initial_balloon);
+	printk(KERN_INFO "done waiting for initial balloon down %ld\n", current_credit());
+	return 0;
+}
+late_initcall(wait_for_initial_balloon_down);
+
 static int __init balloon_init(void)
 {
 	struct task_struct *task;
-- 
2.31.1


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply related	[relevance 14%]

* Tentative fix for "out of PoD memory" issue
@ 2021-10-21 11:53 22% Juergen Gross
  2021-10-21 13:54 14% ` Marek Marczykowski-Górecki
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2021-10-21 11:53 UTC (permalink / raw)
  To: Marek Marczykowski-Górecki; +Cc: xen-devel


[-- Attachment #1.1.1: Type: text/plain, Size: 426 bytes --]

Marek,

could you please test whether the attached patch is fixing your
problem?

BTW, I don't think this couldn't happen before kernel 5.15. I guess
my modification to use a kernel thread instead of a workqueue just
made the issue more probable.

I couldn't reproduce the crash you are seeing, but the introduced
wait was 4.2 seconds on my test system (a PVH guest with 2 GB of
memory, maxmem 6 GB).


Juergen

[-- Attachment #1.1.2: 0001-xen-balloon-add-late_initcall_sync-for-initial-ballo.patch --]
[-- Type: text/x-patch, Size: 2156 bytes --]

From 3ee35f6f110e2258ec94f0d1397fac8c26b41761 Mon Sep 17 00:00:00 2001
From: Juergen Gross <jgross@suse.com>
To: linux-kernel@vger.kernel.org
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: xen-devel@lists.xenproject.org
Date: Thu, 21 Oct 2021 12:51:06 +0200
Subject: [PATCH] xen/balloon: add late_initcall_sync() for initial ballooning
 done
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

When running as PVH or HVM guest with actual memory < max memory the
hypervisor is using "populate on demand" in order to allow the guest
to balloon down from its maximum memory size. For this to work
correctly the guest must not touch more memory pages than its target
memory size as otherwise the PoD cache will be exhausted and the guest
is crashed as a result of that.

In extreme cases ballooning down might not be finished today before
the init process is started, which can consume lots of memory.

In order to avoid random boot crashes in such cases, add a late init
call to wait for ballooning down having finished for PVH/HVM guests.

Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
---
 drivers/xen/balloon.c | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 3a50f097ed3e..d19b851c3d3b 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -765,3 +765,23 @@ static int __init balloon_init(void)
 	return 0;
 }
 subsys_initcall(balloon_init);
+
+static int __init balloon_wait_finish(void)
+{
+	if (!xen_domain())
+		return -ENODEV;
+
+	/* PV guests don't need to wait. */
+	if (xen_pv_domain() || !current_credit())
+		return 0;
+
+	pr_info("Waiting for initial ballooning down having finished.\n");
+
+	while (current_credit())
+		schedule_timeout_interruptible(HZ / 10);
+
+	pr_info("Initial ballooning down finished.\n");
+
+	return 0;
+}
+late_initcall_sync(balloon_wait_finish);
-- 
2.26.2


[-- Attachment #1.1.3: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply related	[relevance 22%]

* [GIT PULL] xen: branch for v5.15-rc5
@ 2021-10-08 14:19  7% Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2021-10-08 14:19 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, xen-devel, boris.ostrovsky

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-5.15b-rc5-tag

xen: branch for v5.15-rc5

It contains the following patches:

- a small series to fix two minor issues in the Xen privcmd driver plus
  a cleanup patch for that driver

- a series fixing multiple issues related to running as PVH guest and
  some related earlyprintk fixes for other Xen guest types

- another fix of an issue introduced in 5.15 the Xen balloon driver

Thanks.

Juergen

 Documentation/admin-guide/kernel-parameters.txt |  2 +-
 arch/x86/include/asm/xen/pci.h                  | 11 +++--
 arch/x86/pci/xen.c                              | 15 ++++---
 arch/x86/platform/pvh/enlighten.c               | 12 +++---
 arch/x86/xen/Kconfig                            | 19 +++++----
 arch/x86/xen/Makefile                           |  2 +-
 arch/x86/xen/enlighten.c                        | 54 ++++++++++++++++++++++---
 arch/x86/xen/enlighten_pv.c                     | 35 +---------------
 arch/x86/xen/enlighten_pvh.c                    | 10 ++++-
 arch/x86/xen/mmu_pv.c                           |  2 +-
 arch/x86/xen/xen-ops.h                          |  5 ++-
 drivers/tty/hvc/hvc_xen.c                       | 13 +++---
 drivers/xen/Kconfig                             |  4 +-
 drivers/xen/balloon.c                           | 21 +++++++---
 drivers/xen/privcmd.c                           | 18 ++++-----
 include/xen/xen-ops.h                           | 15 +++----
 16 files changed, 135 insertions(+), 103 deletions(-)

Jan Beulich (12):
      xen/privcmd: replace kcalloc() by kvcalloc() when allocating empty pages
      xen/privcmd: fix error handling in mmap-resource processing
      xen/privcmd: drop "pages" parameter from xen_remap_pfn()
      xen/x86: prevent PVH type from getting clobbered
      xen/x86: allow PVH Dom0 without XEN_PV=y
      xen/x86: make "earlyprintk=xen" work better for PVH Dom0
      xen/x86: allow "earlyprintk=xen" to work for PV Dom0
      xen/x86: make "earlyprintk=xen" work for HVM/PVH DomU
      xen/x86: generalize preferred console model from PV to PVH Dom0
      xen/x86: hook up xen_banner() also for PVH
      x86/PVH: adjust function/data placement
      xen/x86: adjust data placement

Juergen Gross (1):
      xen/balloon: fix cancelled balloon action


^ permalink raw reply	[relevance 7%]

* Re: [PATCH] xen/balloon: fix cancelled balloon action
  2021-10-05 13:34 18% [PATCH] xen/balloon: fix cancelled balloon action Juergen Gross
@ 2021-10-06  1:11  6% ` Boris Ostrovsky
  0 siblings, 0 replies; 200+ results
From: Boris Ostrovsky @ 2021-10-06  1:11 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel
  Cc: Stefano Stabellini, stable, Marek Marczykowski-Górecki


On 10/5/21 9:34 AM, Juergen Gross wrote:
> In case a ballooning action is cancelled the new kernel thread handling
> the ballooning might end up in a busy loop.
>
> Fix that by handling the cancelled action gracefully.
>
> While at it introduce a short wait for the BP_WAIT case.
>
> Cc: stable@vger.kernel.org
> Fixes: 8480ed9c2bbd56 ("xen/balloon: use a kernel thread instead a workqueue")
> Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
> Signed-off-by: Juergen Gross <jgross@suse.com>


Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>




^ permalink raw reply	[relevance 6%]

* [PATCH] xen/balloon: fix cancelled balloon action
@ 2021-10-05 13:34 18% Juergen Gross
  2021-10-06  1:11  6% ` Boris Ostrovsky
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2021-10-05 13:34 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Juergen Gross, Boris Ostrovsky, Stefano Stabellini, stable,
	Marek Marczykowski-Górecki

In case a ballooning action is cancelled the new kernel thread handling
the ballooning might end up in a busy loop.

Fix that by handling the cancelled action gracefully.

While at it introduce a short wait for the BP_WAIT case.

Cc: stable@vger.kernel.org
Fixes: 8480ed9c2bbd56 ("xen/balloon: use a kernel thread instead a workqueue")
Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
---
 drivers/xen/balloon.c | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 43ebfe36ac27..3a50f097ed3e 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -491,12 +491,12 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
 }
 
 /*
- * Stop waiting if either state is not BP_EAGAIN and ballooning action is
- * needed, or if the credit has changed while state is BP_EAGAIN.
+ * Stop waiting if either state is BP_DONE and ballooning action is
+ * needed, or if the credit has changed while state is not BP_DONE.
  */
 static bool balloon_thread_cond(enum bp_state state, long credit)
 {
-	if (state != BP_EAGAIN)
+	if (state == BP_DONE)
 		credit = 0;
 
 	return current_credit() != credit || kthread_should_stop();
@@ -516,10 +516,19 @@ static int balloon_thread(void *unused)
 
 	set_freezable();
 	for (;;) {
-		if (state == BP_EAGAIN)
-			timeout = balloon_stats.schedule_delay * HZ;
-		else
+		switch (state) {
+		case BP_DONE:
+		case BP_ECANCELED:
 			timeout = 3600 * HZ;
+			break;
+		case BP_EAGAIN:
+			timeout = balloon_stats.schedule_delay * HZ;
+			break;
+		case BP_WAIT:
+			timeout = HZ;
+			break;
+		}
+
 		credit = current_credit();
 
 		wait_event_freezable_timeout(balloon_thread_wq,
-- 
2.26.2



^ permalink raw reply related	[relevance 18%]

* Re: xen-balloon thread using 100% of CPU, regression in 5.4.150
  2021-10-05  8:05 30%     ` Juergen Gross
  2021-10-05 13:31  5%       ` Marek Marczykowski-Górecki
@ 2021-10-05 13:33  5%       ` Jason Andryuk
  1 sibling, 0 replies; 200+ results
From: Jason Andryuk @ 2021-10-05 13:33 UTC (permalink / raw)
  To: Juergen Gross; +Cc: Marek Marczykowski-Górecki, xen-devel, Jan Beulich

On Tue, Oct 5, 2021 at 4:05 AM Juergen Gross <jgross@suse.com> wrote:
>
> On 04.10.21 11:14, Marek Marczykowski-Górecki wrote:
> > On Mon, Oct 04, 2021 at 07:31:40AM +0200, Juergen Gross wrote:
> >> On 03.10.21 06:47, Marek Marczykowski-Górecki wrote:
> >>> Hi,
> >>>
> >>> After updating a PVH domU to 5.4.150, I see xen-balloon thread using
> >>> 100% CPU (one thread).
> >>> This is a domain started with memory=maxmem=716800KiB (via libvirt). Then,
> >>> inside, I see:
> >>>
> >>> # cat /sys/devices/system/xen_memory/xen_memory0/target_kb
> >>> 716924
> >>> # cat /sys/devices/system/xen_memory/xen_memory0/info/current_kb
> >>> 716400
> >>>
> >>> Doing `cat info/current_kb > target_kb` "fixes" the issue. But still,
> >>> something is wrong - on earlier kernel (5.4.143 to be precise), it
> >>> wasn't spinning, with exactly the same values reported in sysfs. It
> >>> shouldn't run in circles if it can't get that much memory it wants. I
> >>> strongly suspect "xen/balloon: use a kernel thread instead a workqueue"
> >>> or related commit being responsible, but I haven't verified it.
> >>
> >> I think you are right. I need to handle the BP_ECANCELED case similar to
> >> BP_EAGAIN in the kernel thread (wait until target size changes again).
> >>
> >> One further question: do you see any kernel message in the guest related
> >> to the looping balloon thread?
> >
> > Nothing, only the usual "xen:balloon: Initialising balloon driver", and
> > nothing related to balloon after that.
>
> Could you try the attached patch, please? I've tested it briefly with
> PV and PVH guests.

I was seeing the CPU spinning in dom0 with xen command line:
dom0_mem=min:420M,max:420M,420M

Your patch eliminated the CPU spinning.

Tested-by: Jason Andryuk <jandryuk@gmail.com>

Thanks, Juergen

-Jason


^ permalink raw reply	[relevance 5%]

* Re: xen-balloon thread using 100% of CPU, regression in 5.4.150
  2021-10-05  8:05 30%     ` Juergen Gross
@ 2021-10-05 13:31  5%       ` Marek Marczykowski-Górecki
  2021-10-05 13:33  5%       ` Jason Andryuk
  1 sibling, 0 replies; 200+ results
From: Marek Marczykowski-Górecki @ 2021-10-05 13:31 UTC (permalink / raw)
  To: Juergen Gross; +Cc: xen-devel, Jan Beulich

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

On Tue, Oct 05, 2021 at 10:05:39AM +0200, Juergen Gross wrote:
> On 04.10.21 11:14, Marek Marczykowski-Górecki wrote:
> > On Mon, Oct 04, 2021 at 07:31:40AM +0200, Juergen Gross wrote:
> > > On 03.10.21 06:47, Marek Marczykowski-Górecki wrote:
> > > > Hi,
> > > > 
> > > > After updating a PVH domU to 5.4.150, I see xen-balloon thread using
> > > > 100% CPU (one thread).
> > > > This is a domain started with memory=maxmem=716800KiB (via libvirt). Then,
> > > > inside, I see:
> > > > 
> > > > # cat /sys/devices/system/xen_memory/xen_memory0/target_kb
> > > > 716924
> > > > # cat /sys/devices/system/xen_memory/xen_memory0/info/current_kb
> > > > 716400
> > > > 
> > > > Doing `cat info/current_kb > target_kb` "fixes" the issue. But still,
> > > > something is wrong - on earlier kernel (5.4.143 to be precise), it
> > > > wasn't spinning, with exactly the same values reported in sysfs. It
> > > > shouldn't run in circles if it can't get that much memory it wants. I
> > > > strongly suspect "xen/balloon: use a kernel thread instead a workqueue"
> > > > or related commit being responsible, but I haven't verified it.
> > > 
> > > I think you are right. I need to handle the BP_ECANCELED case similar to
> > > BP_EAGAIN in the kernel thread (wait until target size changes again).
> > > 
> > > One further question: do you see any kernel message in the guest related
> > > to the looping balloon thread?
> > 
> > Nothing, only the usual "xen:balloon: Initialising balloon driver", and
> > nothing related to balloon after that.
> 
> Could you try the attached patch, please? I've tested it briefly with
> PV and PVH guests.

Yes, it helps, thanks!

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: xen-balloon thread using 100% of CPU, regression in 5.4.150
  2021-10-04  9:14 11%   ` Marek Marczykowski-Górecki
@ 2021-10-05  8:05 30%     ` Juergen Gross
  2021-10-05 13:31  5%       ` Marek Marczykowski-Górecki
  2021-10-05 13:33  5%       ` Jason Andryuk
  0 siblings, 2 replies; 200+ results
From: Juergen Gross @ 2021-10-05  8:05 UTC (permalink / raw)
  To: Marek Marczykowski-Górecki; +Cc: xen-devel, Jan Beulich


[-- Attachment #1.1.1: Type: text/plain, Size: 1505 bytes --]

On 04.10.21 11:14, Marek Marczykowski-Górecki wrote:
> On Mon, Oct 04, 2021 at 07:31:40AM +0200, Juergen Gross wrote:
>> On 03.10.21 06:47, Marek Marczykowski-Górecki wrote:
>>> Hi,
>>>
>>> After updating a PVH domU to 5.4.150, I see xen-balloon thread using
>>> 100% CPU (one thread).
>>> This is a domain started with memory=maxmem=716800KiB (via libvirt). Then,
>>> inside, I see:
>>>
>>> # cat /sys/devices/system/xen_memory/xen_memory0/target_kb
>>> 716924
>>> # cat /sys/devices/system/xen_memory/xen_memory0/info/current_kb
>>> 716400
>>>
>>> Doing `cat info/current_kb > target_kb` "fixes" the issue. But still,
>>> something is wrong - on earlier kernel (5.4.143 to be precise), it
>>> wasn't spinning, with exactly the same values reported in sysfs. It
>>> shouldn't run in circles if it can't get that much memory it wants. I
>>> strongly suspect "xen/balloon: use a kernel thread instead a workqueue"
>>> or related commit being responsible, but I haven't verified it.
>>
>> I think you are right. I need to handle the BP_ECANCELED case similar to
>> BP_EAGAIN in the kernel thread (wait until target size changes again).
>>
>> One further question: do you see any kernel message in the guest related
>> to the looping balloon thread?
> 
> Nothing, only the usual "xen:balloon: Initialising balloon driver", and
> nothing related to balloon after that.

Could you try the attached patch, please? I've tested it briefly with
PV and PVH guests.


Juergen


[-- Attachment #1.1.2: 0001-xen-balloon-fix-cancelled-balloon-action.patch --]
[-- Type: text/x-patch, Size: 2117 bytes --]

From c0901b425d5939b7f3ce6c3f4bb7a0161b819745 Mon Sep 17 00:00:00 2001
From: Juergen Gross <jgross@suse.com>
Date: Mon, 4 Oct 2021 17:05:48 +0200
Subject: [PATCH] xen/balloon: fix cancelled balloon action
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

In case a ballooning action is cancelled the new kernel thread handling
the ballooning might end up in a busy loop.

Fix that by handling the cancelled action gracefully.

Cc: stable@vger.kernel.org
Fixes: 8480ed9c2bbd56 ("xen/balloon: use a kernel thread instead a workqueue")
Reported-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
---
 drivers/xen/balloon.c | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 43ebfe36ac27..3a50f097ed3e 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -491,12 +491,12 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
 }
 
 /*
- * Stop waiting if either state is not BP_EAGAIN and ballooning action is
- * needed, or if the credit has changed while state is BP_EAGAIN.
+ * Stop waiting if either state is BP_DONE and ballooning action is
+ * needed, or if the credit has changed while state is not BP_DONE.
  */
 static bool balloon_thread_cond(enum bp_state state, long credit)
 {
-	if (state != BP_EAGAIN)
+	if (state == BP_DONE)
 		credit = 0;
 
 	return current_credit() != credit || kthread_should_stop();
@@ -516,10 +516,19 @@ static int balloon_thread(void *unused)
 
 	set_freezable();
 	for (;;) {
-		if (state == BP_EAGAIN)
-			timeout = balloon_stats.schedule_delay * HZ;
-		else
+		switch (state) {
+		case BP_DONE:
+		case BP_ECANCELED:
 			timeout = 3600 * HZ;
+			break;
+		case BP_EAGAIN:
+			timeout = balloon_stats.schedule_delay * HZ;
+			break;
+		case BP_WAIT:
+			timeout = HZ;
+			break;
+		}
+
 		credit = current_credit();
 
 		wait_event_freezable_timeout(balloon_thread_wq,
-- 
2.26.2


[-- Attachment #1.1.3: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply related	[relevance 30%]

* [RFC PATCH] dma-mapping: don't set swiotlb-xen fops for IOMMU-protected devices
  @ 2021-10-04  9:54  5% ` Roman Skakun
  0 siblings, 0 replies; 200+ results
From: Roman Skakun @ 2021-10-04  9:54 UTC (permalink / raw)
  To: Stefano Stabellini, Julien Grall, xen-devel
  Cc: Roman Skakun, Roman Skakun, Volodymyr Babchuk, Andrii Anisov,
	Roman Skakun

Prior to this patch swiotlb-xen fops are set for all devices when
we are booting as as Dom0 or direct-mapped DomU.

Since Xen now marks devices which are IOMMU-protected by
adding additional property to the relevant device, we can
check for this property and don't set swiotlb-xen fops for
any IOMMU-protected device.

Signed-off-by: Roman Skakun <Roman_Skakun@epam.com>
---
 arch/arm/mm/dma-mapping.c   | 2 +-
 arch/arm/xen/enlighten.c    | 4 ++++
 arch/arm64/mm/dma-mapping.c | 2 +-
 include/xen/xen.h           | 2 ++
 4 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
index c4b8df2ad328..c3e5841d871e 100644
--- a/arch/arm/mm/dma-mapping.c
+++ b/arch/arm/mm/dma-mapping.c
@@ -2280,7 +2280,7 @@ void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size,
 	set_dma_ops(dev, dma_ops);
 
 #ifdef CONFIG_XEN
-	if (xen_initial_domain())
+	if (xen_initial_domain() && !xen_is_device_protected(dev))
 		dev->dma_ops = &xen_swiotlb_dma_ops;
 #endif
 	dev->archdata.dma_ops_setup = true;
diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c
index 49f566ad9acb..6ddef3233095 100644
--- a/arch/arm/xen/enlighten.c
+++ b/arch/arm/xen/enlighten.c
@@ -425,6 +425,10 @@ static int __init xen_pm_init(void)
 }
 late_initcall(xen_pm_init);
 
+bool xen_is_device_protected(void *obj) {
+	struct device *dev = obj;
+	return of_property_read_bool(dev->of_node, "xen,behind-iommu");
+}
 
 /* empty stubs */
 void xen_arch_pre_suspend(void) { }
diff --git a/arch/arm64/mm/dma-mapping.c b/arch/arm64/mm/dma-mapping.c
index 93e87b287556..0af5f7a63124 100644
--- a/arch/arm64/mm/dma-mapping.c
+++ b/arch/arm64/mm/dma-mapping.c
@@ -53,7 +53,7 @@ void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size,
 		iommu_setup_dma_ops(dev, dma_base, size);
 
 #ifdef CONFIG_XEN
-	if (xen_initial_domain())
+	if (xen_initial_domain() && !xen_is_device_protected(dev))
 		dev->dma_ops = &xen_swiotlb_dma_ops;
 #endif
 }
diff --git a/include/xen/xen.h b/include/xen/xen.h
index 43efba045acc..3725d69de6f9 100644
--- a/include/xen/xen.h
+++ b/include/xen/xen.h
@@ -61,4 +61,6 @@ void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
 #include <xen/balloon.h>
 #endif
 
+bool xen_is_device_protected(void *obj);
+
 #endif	/* _XEN_XEN_H */
-- 
2.27.0



^ permalink raw reply related	[relevance 5%]

* Re: xen-balloon thread using 100% of CPU, regression in 5.4.150
  2021-10-04  5:31  5% ` Juergen Gross
@ 2021-10-04  9:14 11%   ` Marek Marczykowski-Górecki
  2021-10-05  8:05 30%     ` Juergen Gross
  0 siblings, 1 reply; 200+ results
From: Marek Marczykowski-Górecki @ 2021-10-04  9:14 UTC (permalink / raw)
  To: Juergen Gross; +Cc: xen-devel, Jan Beulich

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

On Mon, Oct 04, 2021 at 07:31:40AM +0200, Juergen Gross wrote:
> On 03.10.21 06:47, Marek Marczykowski-Górecki wrote:
> > Hi,
> > 
> > After updating a PVH domU to 5.4.150, I see xen-balloon thread using
> > 100% CPU (one thread).
> > This is a domain started with memory=maxmem=716800KiB (via libvirt). Then,
> > inside, I see:
> > 
> > # cat /sys/devices/system/xen_memory/xen_memory0/target_kb
> > 716924
> > # cat /sys/devices/system/xen_memory/xen_memory0/info/current_kb
> > 716400
> > 
> > Doing `cat info/current_kb > target_kb` "fixes" the issue. But still,
> > something is wrong - on earlier kernel (5.4.143 to be precise), it
> > wasn't spinning, with exactly the same values reported in sysfs. It
> > shouldn't run in circles if it can't get that much memory it wants. I
> > strongly suspect "xen/balloon: use a kernel thread instead a workqueue"
> > or related commit being responsible, but I haven't verified it.
> 
> I think you are right. I need to handle the BP_ECANCELED case similar to
> BP_EAGAIN in the kernel thread (wait until target size changes again).
> 
> One further question: do you see any kernel message in the guest related
> to the looping balloon thread?

Nothing, only the usual "xen:balloon: Initialising balloon driver", and
nothing related to balloon after that.


-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 11%]

* Re: xen-balloon thread using 100% of CPU, regression in 5.4.150
  2021-10-03  4:47 11% xen-balloon thread using 100% of CPU, regression in 5.4.150 Marek Marczykowski-Górecki
@ 2021-10-04  5:31  5% ` Juergen Gross
  2021-10-04  9:14 11%   ` Marek Marczykowski-Górecki
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2021-10-04  5:31 UTC (permalink / raw)
  To: Marek Marczykowski-Górecki, xen-devel; +Cc: Jan Beulich


[-- Attachment #1.1.1: Type: text/plain, Size: 1116 bytes --]

On 03.10.21 06:47, Marek Marczykowski-Górecki wrote:
> Hi,
> 
> After updating a PVH domU to 5.4.150, I see xen-balloon thread using
> 100% CPU (one thread).
> This is a domain started with memory=maxmem=716800KiB (via libvirt). Then,
> inside, I see:
> 
> # cat /sys/devices/system/xen_memory/xen_memory0/target_kb
> 716924
> # cat /sys/devices/system/xen_memory/xen_memory0/info/current_kb
> 716400
> 
> Doing `cat info/current_kb > target_kb` "fixes" the issue. But still,
> something is wrong - on earlier kernel (5.4.143 to be precise), it
> wasn't spinning, with exactly the same values reported in sysfs. It
> shouldn't run in circles if it can't get that much memory it wants. I
> strongly suspect "xen/balloon: use a kernel thread instead a workqueue"
> or related commit being responsible, but I haven't verified it.

I think you are right. I need to handle the BP_ECANCELED case similar to
BP_EAGAIN in the kernel thread (wait until target size changes again).

One further question: do you see any kernel message in the guest related
to the looping balloon thread?


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 5%]

* xen-balloon and 5.10.70
@ 2021-10-03  9:52 11% Henrik Riomar
  0 siblings, 0 replies; 200+ results
From: Henrik Riomar @ 2021-10-03  9:52 UTC (permalink / raw)
  To: xen-devel

Hi,

Running 5.10.70 on a dom0 shows 100% load on one core for the
xen-balloon kernel thread (was a workqueue before 5.10.70).

I have upgraded two dom0's to 5.10.70 and both of them shows this issue.

Xen version is 4.15.1.

To trigger the problem:
 dom_mem=3000M,max:3000M

Does not trigger the problem:
 dom_mem=3000M

(the other system with the issue has "dom0_mem=4096M,max:4096M")

/etc/xl/xl.conf:
 #autoballon="auto" 
 or
 autoballon="off"
 or 
 autoballon="on"

does not matter, in trigging the problem (i.e. autoballon="off", still
gets [xen-ballon] to hog down one core).

Can not see the problem before starting the first domU, and shutting
down all domUs stops xen-balloon to hog the core.

Workaround in a running system is to lower
 /sys/devices/system/xen_memory/xen_memory0/target_kb.

With max:3000M this was 3072000 (kb), and just lowering it to 3069952
(i.e. by 2 meg) "solved" the issue, and stopped the fan in my laptop :-)

/ Henrik


^ permalink raw reply	[relevance 11%]

* xen-balloon thread using 100% of CPU, regression in 5.4.150
@ 2021-10-03  4:47 11% Marek Marczykowski-Górecki
  2021-10-04  5:31  5% ` Juergen Gross
  0 siblings, 1 reply; 200+ results
From: Marek Marczykowski-Górecki @ 2021-10-03  4:47 UTC (permalink / raw)
  To: xen-devel; +Cc: Juergen Gross, Jan Beulich

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

Hi,

After updating a PVH domU to 5.4.150, I see xen-balloon thread using
100% CPU (one thread).
This is a domain started with memory=maxmem=716800KiB (via libvirt). Then,
inside, I see:

# cat /sys/devices/system/xen_memory/xen_memory0/target_kb
716924
# cat /sys/devices/system/xen_memory/xen_memory0/info/current_kb
716400

Doing `cat info/current_kb > target_kb` "fixes" the issue. But still,
something is wrong - on earlier kernel (5.4.143 to be precise), it
wasn't spinning, with exactly the same values reported in sysfs. It
shouldn't run in circles if it can't get that much memory it wants. I
strongly suspect "xen/balloon: use a kernel thread instead a workqueue"
or related commit being responsible, but I haven't verified it.

This specific test is from Xen 4.8.5 (+quite a lot of patches), but I've
got report of the same issue on 4.14.3 too. Anyway, I don't think Xen
version matters here much.

I have _not_ managed to reproduce the issue on 5.10.70, nor 5.14.9. In
both cases, just after starting the domain, I see
current_kb=target_kb=716412. And writing 716924 to target_kb manually
does not cause xen-balloon thread to spin.

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[relevance 11%]

* [GIT PULL] xen: branch for v5.15-rc3
@ 2021-09-25 14:31  7% Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2021-09-25 14:31 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, xen-devel, boris.ostrovsky

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-5.15b-rc3-tag

xen: branch for v5.15-rc3

It contains some minor cleanups and fixes of some theoretical bugs, as
well as a fix of a bug introduced in 5.15-rc1.

Thanks.

Juergen

 arch/x86/Kconfig                       |  1 -
 arch/x86/include/asm/xen/swiotlb-xen.h |  6 +-----
 arch/x86/xen/enlighten_pv.c            | 15 +++++++++------
 arch/x86/xen/pci-swiotlb-xen.c         |  4 ++--
 arch/x86/xen/smp_pv.c                  |  4 ----
 drivers/pci/Kconfig                    |  2 +-
 drivers/xen/Kconfig                    |  1 +
 drivers/xen/balloon.c                  |  4 ++--
 drivers/xen/gntdev.c                   |  8 ++++++++
 drivers/xen/swiotlb-xen.c              |  7 ++++---
 include/xen/xen-ops.h                  | 12 ------------
 11 files changed, 28 insertions(+), 36 deletions(-)

Jan Beulich (7):
      xen/x86: drop redundant zeroing from cpu_initialize_context()
      Xen/gntdev: don't ignore kernel unmapping error
      swiotlb-xen: ensure to issue well-formed XENMEM_exchange requests
      PCI: only build xen-pcifront in PV-enabled environments
      xen/pci-swiotlb: reduce visibility of symbols
      swiotlb-xen: this is PV-only on x86
      xen/x86: fix PV trap handling on secondary processors

Juergen Gross (1):
      xen/balloon: fix balloon kthread freezing


^ permalink raw reply	[relevance 7%]

* [PATCH AUTOSEL 4.14 04/13] xen/balloon: use a kernel thread instead a workqueue
       [not found]     <20210923033959.1421662-1-sashal@kernel.org>
@ 2021-09-23  3:39 30% ` Sasha Levin
  0 siblings, 0 replies; 200+ results
From: Sasha Levin @ 2021-09-23  3:39 UTC (permalink / raw)
  To: linux-kernel, stable
  Cc: Juergen Gross, Jan Beulich, Boris Ostrovsky, Sasha Levin, xen-devel

From: Juergen Gross <jgross@suse.com>

[ Upstream commit 8480ed9c2bbd56fc86524998e5f2e3e22f5038f6 ]

Today the Xen ballooning is done via delayed work in a workqueue. This
might result in workqueue hangups being reported in case of large
amounts of memory are being ballooned in one go (here 16GB):

BUG: workqueue lockup - pool cpus=6 node=0 flags=0x0 nice=0 stuck for 64s!
Showing busy workqueues and worker pools:
workqueue events: flags=0x0
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=2/256 refcnt=3
    in-flight: 229:balloon_process
    pending: cache_reap
workqueue events_freezable_power_: flags=0x84
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=1/256 refcnt=2
    pending: disk_events_workfn
workqueue mm_percpu_wq: flags=0x8
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=1/256 refcnt=2
    pending: vmstat_update
pool 12: cpus=6 node=0 flags=0x0 nice=0 hung=64s workers=3 idle: 2222 43

This can easily be avoided by using a dedicated kernel thread for doing
the ballooning work.

Reported-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Link: https://lore.kernel.org/r/20210827123206.15429-1-jgross@suse.com
Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/xen/balloon.c | 62 +++++++++++++++++++++++++++++++------------
 1 file changed, 45 insertions(+), 17 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index a8e0836dffd4..b9abe3ef2188 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -43,6 +43,8 @@
 #include <linux/sched.h>
 #include <linux/cred.h>
 #include <linux/errno.h>
+#include <linux/freezer.h>
+#include <linux/kthread.h>
 #include <linux/mm.h>
 #include <linux/bootmem.h>
 #include <linux/pagemap.h>
@@ -119,7 +121,7 @@ static struct ctl_table xen_root[] = {
 #define EXTENT_ORDER (fls(XEN_PFN_PER_PAGE) - 1)
 
 /*
- * balloon_process() state:
+ * balloon_thread() state:
  *
  * BP_DONE: done or nothing to do,
  * BP_WAIT: wait to be rescheduled,
@@ -134,6 +136,8 @@ enum bp_state {
 	BP_ECANCELED
 };
 
+/* Main waiting point for xen-balloon thread. */
+static DECLARE_WAIT_QUEUE_HEAD(balloon_thread_wq);
 
 static DEFINE_MUTEX(balloon_mutex);
 
@@ -148,10 +152,6 @@ static xen_pfn_t frame_list[PAGE_SIZE / sizeof(xen_pfn_t)];
 static LIST_HEAD(ballooned_pages);
 static DECLARE_WAIT_QUEUE_HEAD(balloon_wq);
 
-/* Main work function, always executed in process context. */
-static void balloon_process(struct work_struct *work);
-static DECLARE_DELAYED_WORK(balloon_worker, balloon_process);
-
 /* When ballooning out (allocating memory to return to Xen) we don't really
    want the kernel to try too hard since that can trigger the oom killer. */
 #define GFP_BALLOON \
@@ -389,7 +389,7 @@ static void xen_online_page(struct page *page)
 static int xen_memory_notifier(struct notifier_block *nb, unsigned long val, void *v)
 {
 	if (val == MEM_ONLINE)
-		schedule_delayed_work(&balloon_worker, 0);
+		wake_up(&balloon_thread_wq);
 
 	return NOTIFY_OK;
 }
@@ -571,18 +571,43 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
 }
 
 /*
- * As this is a work item it is guaranteed to run as a single instance only.
+ * Stop waiting if either state is not BP_EAGAIN and ballooning action is
+ * needed, or if the credit has changed while state is BP_EAGAIN.
+ */
+static bool balloon_thread_cond(enum bp_state state, long credit)
+{
+	if (state != BP_EAGAIN)
+		credit = 0;
+
+	return current_credit() != credit || kthread_should_stop();
+}
+
+/*
+ * As this is a kthread it is guaranteed to run as a single instance only.
  * We may of course race updates of the target counts (which are protected
  * by the balloon lock), or with changes to the Xen hard limit, but we will
  * recover from these in time.
  */
-static void balloon_process(struct work_struct *work)
+static int balloon_thread(void *unused)
 {
 	enum bp_state state = BP_DONE;
 	long credit;
+	unsigned long timeout;
+
+	set_freezable();
+	for (;;) {
+		if (state == BP_EAGAIN)
+			timeout = balloon_stats.schedule_delay * HZ;
+		else
+			timeout = 3600 * HZ;
+		credit = current_credit();
 
+		wait_event_interruptible_timeout(balloon_thread_wq,
+				 balloon_thread_cond(state, credit), timeout);
+
+		if (kthread_should_stop())
+			return 0;
 
-	do {
 		mutex_lock(&balloon_mutex);
 
 		credit = current_credit();
@@ -609,12 +634,7 @@ static void balloon_process(struct work_struct *work)
 		mutex_unlock(&balloon_mutex);
 
 		cond_resched();
-
-	} while (credit && state == BP_DONE);
-
-	/* Schedule more work if there is some still to be done. */
-	if (state == BP_EAGAIN)
-		schedule_delayed_work(&balloon_worker, balloon_stats.schedule_delay * HZ);
+	}
 }
 
 /* Resets the Xen limit, sets new target, and kicks off processing. */
@@ -622,7 +642,7 @@ void balloon_set_new_target(unsigned long target)
 {
 	/* No need for lock. Not read-modify-write updates. */
 	balloon_stats.target_pages = target;
-	schedule_delayed_work(&balloon_worker, 0);
+	wake_up(&balloon_thread_wq);
 }
 EXPORT_SYMBOL_GPL(balloon_set_new_target);
 
@@ -727,7 +747,7 @@ void free_xenballooned_pages(int nr_pages, struct page **pages)
 
 	/* The balloon may be too large now. Shrink it if needed. */
 	if (current_credit())
-		schedule_delayed_work(&balloon_worker, 0);
+		wake_up(&balloon_thread_wq);
 
 	mutex_unlock(&balloon_mutex);
 }
@@ -761,6 +781,8 @@ static void __init balloon_add_region(unsigned long start_pfn,
 
 static int __init balloon_init(void)
 {
+	struct task_struct *task;
+
 	if (!xen_domain())
 		return -ENODEV;
 
@@ -804,6 +826,12 @@ static int __init balloon_init(void)
 	}
 #endif
 
+	task = kthread_run(balloon_thread, NULL, "xen-balloon");
+	if (IS_ERR(task)) {
+		pr_err("xen-balloon thread could not be started, ballooning will not work!\n");
+		return PTR_ERR(task);
+	}
+
 	/* Init the xen-balloon driver. */
 	xen_balloon_init();
 
-- 
2.30.2



^ permalink raw reply related	[relevance 30%]

* [PATCH AUTOSEL 4.19 05/15] xen/balloon: use a kernel thread instead a workqueue
       [not found]     <20210923033929.1421446-1-sashal@kernel.org>
@ 2021-09-23  3:39 30% ` Sasha Levin
  0 siblings, 0 replies; 200+ results
From: Sasha Levin @ 2021-09-23  3:39 UTC (permalink / raw)
  To: linux-kernel, stable
  Cc: Juergen Gross, Jan Beulich, Boris Ostrovsky, Sasha Levin, xen-devel

From: Juergen Gross <jgross@suse.com>

[ Upstream commit 8480ed9c2bbd56fc86524998e5f2e3e22f5038f6 ]

Today the Xen ballooning is done via delayed work in a workqueue. This
might result in workqueue hangups being reported in case of large
amounts of memory are being ballooned in one go (here 16GB):

BUG: workqueue lockup - pool cpus=6 node=0 flags=0x0 nice=0 stuck for 64s!
Showing busy workqueues and worker pools:
workqueue events: flags=0x0
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=2/256 refcnt=3
    in-flight: 229:balloon_process
    pending: cache_reap
workqueue events_freezable_power_: flags=0x84
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=1/256 refcnt=2
    pending: disk_events_workfn
workqueue mm_percpu_wq: flags=0x8
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=1/256 refcnt=2
    pending: vmstat_update
pool 12: cpus=6 node=0 flags=0x0 nice=0 hung=64s workers=3 idle: 2222 43

This can easily be avoided by using a dedicated kernel thread for doing
the ballooning work.

Reported-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Link: https://lore.kernel.org/r/20210827123206.15429-1-jgross@suse.com
Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/xen/balloon.c | 62 +++++++++++++++++++++++++++++++------------
 1 file changed, 45 insertions(+), 17 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index b23edf64c2b2..643dbe5620e8 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -43,6 +43,8 @@
 #include <linux/sched.h>
 #include <linux/cred.h>
 #include <linux/errno.h>
+#include <linux/freezer.h>
+#include <linux/kthread.h>
 #include <linux/mm.h>
 #include <linux/bootmem.h>
 #include <linux/pagemap.h>
@@ -120,7 +122,7 @@ static struct ctl_table xen_root[] = {
 #define EXTENT_ORDER (fls(XEN_PFN_PER_PAGE) - 1)
 
 /*
- * balloon_process() state:
+ * balloon_thread() state:
  *
  * BP_DONE: done or nothing to do,
  * BP_WAIT: wait to be rescheduled,
@@ -135,6 +137,8 @@ enum bp_state {
 	BP_ECANCELED
 };
 
+/* Main waiting point for xen-balloon thread. */
+static DECLARE_WAIT_QUEUE_HEAD(balloon_thread_wq);
 
 static DEFINE_MUTEX(balloon_mutex);
 
@@ -149,10 +153,6 @@ static xen_pfn_t frame_list[PAGE_SIZE / sizeof(xen_pfn_t)];
 static LIST_HEAD(ballooned_pages);
 static DECLARE_WAIT_QUEUE_HEAD(balloon_wq);
 
-/* Main work function, always executed in process context. */
-static void balloon_process(struct work_struct *work);
-static DECLARE_DELAYED_WORK(balloon_worker, balloon_process);
-
 /* When ballooning out (allocating memory to return to Xen) we don't really
    want the kernel to try too hard since that can trigger the oom killer. */
 #define GFP_BALLOON \
@@ -383,7 +383,7 @@ static void xen_online_page(struct page *page)
 static int xen_memory_notifier(struct notifier_block *nb, unsigned long val, void *v)
 {
 	if (val == MEM_ONLINE)
-		schedule_delayed_work(&balloon_worker, 0);
+		wake_up(&balloon_thread_wq);
 
 	return NOTIFY_OK;
 }
@@ -508,18 +508,43 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
 }
 
 /*
- * As this is a work item it is guaranteed to run as a single instance only.
+ * Stop waiting if either state is not BP_EAGAIN and ballooning action is
+ * needed, or if the credit has changed while state is BP_EAGAIN.
+ */
+static bool balloon_thread_cond(enum bp_state state, long credit)
+{
+	if (state != BP_EAGAIN)
+		credit = 0;
+
+	return current_credit() != credit || kthread_should_stop();
+}
+
+/*
+ * As this is a kthread it is guaranteed to run as a single instance only.
  * We may of course race updates of the target counts (which are protected
  * by the balloon lock), or with changes to the Xen hard limit, but we will
  * recover from these in time.
  */
-static void balloon_process(struct work_struct *work)
+static int balloon_thread(void *unused)
 {
 	enum bp_state state = BP_DONE;
 	long credit;
+	unsigned long timeout;
+
+	set_freezable();
+	for (;;) {
+		if (state == BP_EAGAIN)
+			timeout = balloon_stats.schedule_delay * HZ;
+		else
+			timeout = 3600 * HZ;
+		credit = current_credit();
 
+		wait_event_interruptible_timeout(balloon_thread_wq,
+				 balloon_thread_cond(state, credit), timeout);
+
+		if (kthread_should_stop())
+			return 0;
 
-	do {
 		mutex_lock(&balloon_mutex);
 
 		credit = current_credit();
@@ -546,12 +571,7 @@ static void balloon_process(struct work_struct *work)
 		mutex_unlock(&balloon_mutex);
 
 		cond_resched();
-
-	} while (credit && state == BP_DONE);
-
-	/* Schedule more work if there is some still to be done. */
-	if (state == BP_EAGAIN)
-		schedule_delayed_work(&balloon_worker, balloon_stats.schedule_delay * HZ);
+	}
 }
 
 /* Resets the Xen limit, sets new target, and kicks off processing. */
@@ -559,7 +579,7 @@ void balloon_set_new_target(unsigned long target)
 {
 	/* No need for lock. Not read-modify-write updates. */
 	balloon_stats.target_pages = target;
-	schedule_delayed_work(&balloon_worker, 0);
+	wake_up(&balloon_thread_wq);
 }
 EXPORT_SYMBOL_GPL(balloon_set_new_target);
 
@@ -664,7 +684,7 @@ void free_xenballooned_pages(int nr_pages, struct page **pages)
 
 	/* The balloon may be too large now. Shrink it if needed. */
 	if (current_credit())
-		schedule_delayed_work(&balloon_worker, 0);
+		wake_up(&balloon_thread_wq);
 
 	mutex_unlock(&balloon_mutex);
 }
@@ -698,6 +718,8 @@ static void __init balloon_add_region(unsigned long start_pfn,
 
 static int __init balloon_init(void)
 {
+	struct task_struct *task;
+
 	if (!xen_domain())
 		return -ENODEV;
 
@@ -741,6 +763,12 @@ static int __init balloon_init(void)
 	}
 #endif
 
+	task = kthread_run(balloon_thread, NULL, "xen-balloon");
+	if (IS_ERR(task)) {
+		pr_err("xen-balloon thread could not be started, ballooning will not work!\n");
+		return PTR_ERR(task);
+	}
+
 	/* Init the xen-balloon driver. */
 	xen_balloon_init();
 
-- 
2.30.2



^ permalink raw reply related	[relevance 30%]

* [PATCH AUTOSEL 5.4 07/19] xen/balloon: use a kernel thread instead a workqueue
       [not found]     <20210923033853.1421193-1-sashal@kernel.org>
@ 2021-09-23  3:38 30% ` Sasha Levin
  0 siblings, 0 replies; 200+ results
From: Sasha Levin @ 2021-09-23  3:38 UTC (permalink / raw)
  To: linux-kernel, stable
  Cc: Juergen Gross, Jan Beulich, Boris Ostrovsky, Sasha Levin, xen-devel

From: Juergen Gross <jgross@suse.com>

[ Upstream commit 8480ed9c2bbd56fc86524998e5f2e3e22f5038f6 ]

Today the Xen ballooning is done via delayed work in a workqueue. This
might result in workqueue hangups being reported in case of large
amounts of memory are being ballooned in one go (here 16GB):

BUG: workqueue lockup - pool cpus=6 node=0 flags=0x0 nice=0 stuck for 64s!
Showing busy workqueues and worker pools:
workqueue events: flags=0x0
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=2/256 refcnt=3
    in-flight: 229:balloon_process
    pending: cache_reap
workqueue events_freezable_power_: flags=0x84
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=1/256 refcnt=2
    pending: disk_events_workfn
workqueue mm_percpu_wq: flags=0x8
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=1/256 refcnt=2
    pending: vmstat_update
pool 12: cpus=6 node=0 flags=0x0 nice=0 hung=64s workers=3 idle: 2222 43

This can easily be avoided by using a dedicated kernel thread for doing
the ballooning work.

Reported-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Link: https://lore.kernel.org/r/20210827123206.15429-1-jgross@suse.com
Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/xen/balloon.c | 62 +++++++++++++++++++++++++++++++------------
 1 file changed, 45 insertions(+), 17 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index ebb05517b6aa..2762d246991b 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -43,6 +43,8 @@
 #include <linux/sched.h>
 #include <linux/cred.h>
 #include <linux/errno.h>
+#include <linux/freezer.h>
+#include <linux/kthread.h>
 #include <linux/mm.h>
 #include <linux/memblock.h>
 #include <linux/pagemap.h>
@@ -117,7 +119,7 @@ static struct ctl_table xen_root[] = {
 #define EXTENT_ORDER (fls(XEN_PFN_PER_PAGE) - 1)
 
 /*
- * balloon_process() state:
+ * balloon_thread() state:
  *
  * BP_DONE: done or nothing to do,
  * BP_WAIT: wait to be rescheduled,
@@ -132,6 +134,8 @@ enum bp_state {
 	BP_ECANCELED
 };
 
+/* Main waiting point for xen-balloon thread. */
+static DECLARE_WAIT_QUEUE_HEAD(balloon_thread_wq);
 
 static DEFINE_MUTEX(balloon_mutex);
 
@@ -146,10 +150,6 @@ static xen_pfn_t frame_list[PAGE_SIZE / sizeof(xen_pfn_t)];
 static LIST_HEAD(ballooned_pages);
 static DECLARE_WAIT_QUEUE_HEAD(balloon_wq);
 
-/* Main work function, always executed in process context. */
-static void balloon_process(struct work_struct *work);
-static DECLARE_DELAYED_WORK(balloon_worker, balloon_process);
-
 /* When ballooning out (allocating memory to return to Xen) we don't really
    want the kernel to try too hard since that can trigger the oom killer. */
 #define GFP_BALLOON \
@@ -383,7 +383,7 @@ static void xen_online_page(struct page *page, unsigned int order)
 static int xen_memory_notifier(struct notifier_block *nb, unsigned long val, void *v)
 {
 	if (val == MEM_ONLINE)
-		schedule_delayed_work(&balloon_worker, 0);
+		wake_up(&balloon_thread_wq);
 
 	return NOTIFY_OK;
 }
@@ -508,18 +508,43 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
 }
 
 /*
- * As this is a work item it is guaranteed to run as a single instance only.
+ * Stop waiting if either state is not BP_EAGAIN and ballooning action is
+ * needed, or if the credit has changed while state is BP_EAGAIN.
+ */
+static bool balloon_thread_cond(enum bp_state state, long credit)
+{
+	if (state != BP_EAGAIN)
+		credit = 0;
+
+	return current_credit() != credit || kthread_should_stop();
+}
+
+/*
+ * As this is a kthread it is guaranteed to run as a single instance only.
  * We may of course race updates of the target counts (which are protected
  * by the balloon lock), or with changes to the Xen hard limit, but we will
  * recover from these in time.
  */
-static void balloon_process(struct work_struct *work)
+static int balloon_thread(void *unused)
 {
 	enum bp_state state = BP_DONE;
 	long credit;
+	unsigned long timeout;
+
+	set_freezable();
+	for (;;) {
+		if (state == BP_EAGAIN)
+			timeout = balloon_stats.schedule_delay * HZ;
+		else
+			timeout = 3600 * HZ;
+		credit = current_credit();
 
+		wait_event_interruptible_timeout(balloon_thread_wq,
+				 balloon_thread_cond(state, credit), timeout);
+
+		if (kthread_should_stop())
+			return 0;
 
-	do {
 		mutex_lock(&balloon_mutex);
 
 		credit = current_credit();
@@ -546,12 +571,7 @@ static void balloon_process(struct work_struct *work)
 		mutex_unlock(&balloon_mutex);
 
 		cond_resched();
-
-	} while (credit && state == BP_DONE);
-
-	/* Schedule more work if there is some still to be done. */
-	if (state == BP_EAGAIN)
-		schedule_delayed_work(&balloon_worker, balloon_stats.schedule_delay * HZ);
+	}
 }
 
 /* Resets the Xen limit, sets new target, and kicks off processing. */
@@ -559,7 +579,7 @@ void balloon_set_new_target(unsigned long target)
 {
 	/* No need for lock. Not read-modify-write updates. */
 	balloon_stats.target_pages = target;
-	schedule_delayed_work(&balloon_worker, 0);
+	wake_up(&balloon_thread_wq);
 }
 EXPORT_SYMBOL_GPL(balloon_set_new_target);
 
@@ -664,7 +684,7 @@ void free_xenballooned_pages(int nr_pages, struct page **pages)
 
 	/* The balloon may be too large now. Shrink it if needed. */
 	if (current_credit())
-		schedule_delayed_work(&balloon_worker, 0);
+		wake_up(&balloon_thread_wq);
 
 	mutex_unlock(&balloon_mutex);
 }
@@ -696,6 +716,8 @@ static void __init balloon_add_region(unsigned long start_pfn,
 
 static int __init balloon_init(void)
 {
+	struct task_struct *task;
+
 	if (!xen_domain())
 		return -ENODEV;
 
@@ -739,6 +761,12 @@ static int __init balloon_init(void)
 	}
 #endif
 
+	task = kthread_run(balloon_thread, NULL, "xen-balloon");
+	if (IS_ERR(task)) {
+		pr_err("xen-balloon thread could not be started, ballooning will not work!\n");
+		return PTR_ERR(task);
+	}
+
 	/* Init the xen-balloon driver. */
 	xen_balloon_init();
 
-- 
2.30.2



^ permalink raw reply related	[relevance 30%]

* Re: [PATCH] xen/balloon: fix balloon kthread freezing
  2021-09-20 10:03 19% [PATCH] xen/balloon: fix balloon kthread freezing Juergen Gross
@ 2021-09-20 19:29  6% ` Boris Ostrovsky
  0 siblings, 0 replies; 200+ results
From: Boris Ostrovsky @ 2021-09-20 19:29 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel; +Cc: Stefano Stabellini


On 9/20/21 6:03 AM, Juergen Gross wrote:
> Commit 8480ed9c2bbd56 ("xen/balloon: use a kernel thread instead a
> workqueue") switched the Xen balloon driver to use a kernel thread.
> Unfortunately the patch omitted to call try_to_freeze() or to use
> wait_event_freezable_timeout(), causing a system suspend to fail.
>
> Fixes: 8480ed9c2bbd56 ("xen/balloon: use a kernel thread instead a workqueue")
> Signed-off-by: Juergen Gross <jgross@suse.com>



Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>



^ permalink raw reply	[relevance 6%]

* [PATCH] xen/balloon: fix balloon kthread freezing
@ 2021-09-20 10:03 19% Juergen Gross
  2021-09-20 19:29  6% ` Boris Ostrovsky
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2021-09-20 10:03 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Juergen Gross, Boris Ostrovsky, Stefano Stabellini

Commit 8480ed9c2bbd56 ("xen/balloon: use a kernel thread instead a
workqueue") switched the Xen balloon driver to use a kernel thread.
Unfortunately the patch omitted to call try_to_freeze() or to use
wait_event_freezable_timeout(), causing a system suspend to fail.

Fixes: 8480ed9c2bbd56 ("xen/balloon: use a kernel thread instead a workqueue")
Signed-off-by: Juergen Gross <jgross@suse.com>
---
 drivers/xen/balloon.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 2d2803883306..43ebfe36ac27 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -522,8 +522,8 @@ static int balloon_thread(void *unused)
 			timeout = 3600 * HZ;
 		credit = current_credit();
 
-		wait_event_interruptible_timeout(balloon_thread_wq,
-				 balloon_thread_cond(state, credit), timeout);
+		wait_event_freezable_timeout(balloon_thread_wq,
+			balloon_thread_cond(state, credit), timeout);
 
 		if (kthread_should_stop())
 			return 0;
-- 
2.26.2



^ permalink raw reply related	[relevance 19%]

* [GIT PULL] xen: branch for v5.15-rc2
@ 2021-09-17 11:35  6% Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2021-09-17 11:35 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, xen-devel, boris.ostrovsky

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-5.15b-rc2-tag

xen: branch for v5.15-rc2

It contains:
- The first hunk of a Xen swiotlb fixup series fixing multiple minor
  issues and doing some small cleanups
- Some further Xen related fixes avoiding WARN() splats when running
  as Xen guests or dom0
- A Kconfig fix allowing the pvcalls frontend to be built as a module

Thanks.

Juergen

 arch/x86/xen/enlighten_pv.c |  7 +++++
 arch/x86/xen/mmu_pv.c       |  7 +++--
 drivers/base/power/trace.c  | 10 ++++++++
 drivers/xen/Kconfig         |  2 +-
 drivers/xen/balloon.c       | 62 ++++++++++++++++++++++++++++++++-------------
 drivers/xen/swiotlb-xen.c   | 37 +++++++++++++--------------
 6 files changed, 85 insertions(+), 40 deletions(-)

Jan Beulich (9):
      xen/pvcalls: backend can be a module
      swiotlb-xen: avoid double free
      swiotlb-xen: fix late init retry
      swiotlb-xen: maintain slab count properly
      swiotlb-xen: suppress certain init retries
      swiotlb-xen: limit init retries
      swiotlb-xen: drop leftover __ref
      swiotlb-xen: arrange to have buffer info logged
      swiotlb-xen: drop DEFAULT_NSLABS

Juergen Gross (4):
      xen/balloon: use a kernel thread instead a workqueue
      PM: base: power: don't try to use non-existing RTC for storing data
      xen: reset legacy rtc flag for PV domU
      xen: fix usage of pmd_populate in mremap for pv guests


^ permalink raw reply	[relevance 6%]

* Re: [PATCH 12/12] swiotlb-xen: this is PV-only on x86
  @ 2021-09-13 20:49  5%         ` Stefano Stabellini
  0 siblings, 0 replies; 200+ results
From: Stefano Stabellini @ 2021-09-13 20:49 UTC (permalink / raw)
  To: Jan Beulich
  Cc: Stefano Stabellini, Juergen Gross, Boris Ostrovsky, lkml,
	xen-devel, the arch/x86 maintainers, Thomas Gleixner,
	Ingo Molnar, Borislav Petkov, Christoph Hellwig

On Mon, 13 Sep 2021, Jan Beulich wrote:
> On 11.09.2021 01:48, Stefano Stabellini wrote:
> > On Wed, 8 Sep 2021, Christoph Hellwig wrote:
> >> On Tue, Sep 07, 2021 at 02:13:21PM +0200, Jan Beulich wrote:
> >>> The code is unreachable for HVM or PVH, and it also makes little sense
> >>> in auto-translated environments. On Arm, with
> >>> xen_{create,destroy}_contiguous_region() both being stubs, I have a hard
> >>> time seeing what good the Xen specific variant does - the generic one
> >>> ought to be fine for all purposes there. Still Arm code explicitly
> >>> references symbols here, so the code will continue to be included there.
> >>
> >> Can the Xen/arm folks look into that?  Getting ARM out of using
> >> swiotlb-xen would be a huge step forward cleaning up some DMA APIs.
> > 
> > On ARM swiotlb-xen is used for a different purpose compared to x86.
> > 
> > Many ARM SoCs still don't have an IOMMU covering all DMA-mastering
> > devices (e.g. Raspberry Pi 4). As a consequence we map Dom0 1:1 (guest
> > physical == physical address).
> > 
> > Now if it was just for Dom0, thanks to the 1:1 mapping, we wouldn't need
> > swiotlb-xen. But when we start using PV drivers to share the network or
> > disk between Dom0 and DomU we are going to get DomU pages mapped in
> > Dom0, we call them "foreign pages".  They are not mapped 1:1. It can
> > happen that one of these foreign pages are used for DMA operations
> > (e.g. related to the NIC). swiotlb-xen is used to detect these
> > situations and translate the guest physical address to physical address
> > of foreign pages appropriately.
> 
> Thinking about this some more - if Dom0 is 1:1 mapped, why don't you
> map foreign pages 1:1 as well then?

That's because the foreign page, from Linux POV, would appear out of
thin air. It would just show up in a region not considered memory just
few moments before, so there would be no memblock, no struct page,
nothing. At least in the past that caused serious issues to the kernel.

This is the reason why the kernel is using ballooned-out pages to map
foreign pages even on x86:

drivers/block/xen-blkback/blkback.c:xen_blkbk_map -> gnttab_page_cache_get
drivers/xen/grant-table.c:gnttab_page_cache_get
drivers/xen/grant-table.c:gnttab_alloc_pages
drivers/xen/unpopulated-alloc.c:xen_alloc_unpopulated_pages
drivers/xen/balloon.c:alloc_xenballooned_pages


^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: use a kernel thread instead a workqueue
  2021-09-08 15:11  5%   ` Juergen Gross
@ 2021-09-08 16:05  5%     ` Boris Ostrovsky
  0 siblings, 0 replies; 200+ results
From: Boris Ostrovsky @ 2021-09-08 16:05 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel; +Cc: Stefano Stabellini, Jan Beulich


On 9/8/21 11:11 AM, Juergen Gross wrote:
> On 08.09.21 16:47, Boris Ostrovsky wrote:
>>
>>
>> Given that wait_event_interruptible_timeout() is a bunch of nested macros do we need to worry here about overly aggressive compiler optimizing out 'credit = current_credit()'?
>
> I don't think so. current_credit() is reading from balloon_stats, which
> is a global variable. So the compiler shouldn't assume the contents
> won't change.


Ah, ok --- good point. Then I guess we should be fine.


Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>


>
> But I can add a barrier() after 'credit = current_credit()' in case
> you'd feel uneasy without it.
>
>
> Juergen


^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: use a kernel thread instead a workqueue
  2021-09-08 14:47  5% ` Boris Ostrovsky
@ 2021-09-08 15:11  5%   ` Juergen Gross
  2021-09-08 16:05  5%     ` Boris Ostrovsky
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2021-09-08 15:11 UTC (permalink / raw)
  To: Boris Ostrovsky, xen-devel, linux-kernel; +Cc: Stefano Stabellini, Jan Beulich


[-- Attachment #1.1.1: Type: text/plain, Size: 1588 bytes --]

On 08.09.21 16:47, Boris Ostrovsky wrote:
> 
> On 8/27/21 8:32 AM, Juergen Gross wrote:
>> +static bool balloon_thread_cond(enum bp_state state, long credit)
>> +{
>> +	if (state != BP_EAGAIN)
>> +		credit = 0;
>> +
>> +	return current_credit() != credit || kthread_should_stop();
>> +}
>> +
>> +/*
>> + * As this is a kthread it is guaranteed to run as a single instance only.
>>    * We may of course race updates of the target counts (which are protected
>>    * by the balloon lock), or with changes to the Xen hard limit, but we will
>>    * recover from these in time.
>>    */
>> -static void balloon_process(struct work_struct *work)
>> +static int balloon_thread(void *unused)
>>   {
>>   	enum bp_state state = BP_DONE;
>>   	long credit;
>> +	unsigned long timeout;
>> +
>> +	set_freezable();
>> +	for (;;) {
>> +		if (state == BP_EAGAIN)
>> +			timeout = balloon_stats.schedule_delay * HZ;
>> +		else
>> +			timeout = 3600 * HZ;
>> +		credit = current_credit();
>>   
>> +		wait_event_interruptible_timeout(balloon_thread_wq,
>> +				 balloon_thread_cond(state, credit), timeout);
> 
> 
> Given that wait_event_interruptible_timeout() is a bunch of nested macros do we need to worry here about overly aggressive compiler optimizing out 'credit = current_credit()'?

I don't think so. current_credit() is reading from balloon_stats, which
is a global variable. So the compiler shouldn't assume the contents
won't change.

But I can add a barrier() after 'credit = current_credit()' in case
you'd feel uneasy without it.


Juergen

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3135 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]

^ permalink raw reply	[relevance 5%]

* Re: [PATCH] xen/balloon: use a kernel thread instead a workqueue
  2021-08-27 12:32 30% [PATCH] xen/balloon: use a kernel thread instead a workqueue Juergen Gross
@ 2021-09-08 14:47  5% ` Boris Ostrovsky
  2021-09-08 15:11  5%   ` Juergen Gross
  0 siblings, 1 reply; 200+ results
From: Boris Ostrovsky @ 2021-09-08 14:47 UTC (permalink / raw)
  To: Juergen Gross, xen-devel, linux-kernel; +Cc: Stefano Stabellini, Jan Beulich


On 8/27/21 8:32 AM, Juergen Gross wrote:
> +static bool balloon_thread_cond(enum bp_state state, long credit)
> +{
> +	if (state != BP_EAGAIN)
> +		credit = 0;
> +
> +	return current_credit() != credit || kthread_should_stop();
> +}
> +
> +/*
> + * As this is a kthread it is guaranteed to run as a single instance only.
>   * We may of course race updates of the target counts (which are protected
>   * by the balloon lock), or with changes to the Xen hard limit, but we will
>   * recover from these in time.
>   */
> -static void balloon_process(struct work_struct *work)
> +static int balloon_thread(void *unused)
>  {
>  	enum bp_state state = BP_DONE;
>  	long credit;
> +	unsigned long timeout;
> +
> +	set_freezable();
> +	for (;;) {
> +		if (state == BP_EAGAIN)
> +			timeout = balloon_stats.schedule_delay * HZ;
> +		else
> +			timeout = 3600 * HZ;
> +		credit = current_credit();
>  
> +		wait_event_interruptible_timeout(balloon_thread_wq,
> +				 balloon_thread_cond(state, credit), timeout);


Given that wait_event_interruptible_timeout() is a bunch of nested macros do we need to worry here about overly aggressive compiler optimizing out 'credit = current_credit()'?


-boris




^ permalink raw reply	[relevance 5%]

* [PATCH] xen/balloon: use a kernel thread instead a workqueue
@ 2021-08-27 12:32 30% Juergen Gross
  2021-09-08 14:47  5% ` Boris Ostrovsky
  0 siblings, 1 reply; 200+ results
From: Juergen Gross @ 2021-08-27 12:32 UTC (permalink / raw)
  To: xen-devel, linux-kernel
  Cc: Juergen Gross, Boris Ostrovsky, Stefano Stabellini, Jan Beulich

Today the Xen ballooning is done via delayed work in a workqueue. This
might result in workqueue hangups being reported in case of large
amounts of memory are being ballooned in one go (here 16GB):

BUG: workqueue lockup - pool cpus=6 node=0 flags=0x0 nice=0 stuck for 64s!
Showing busy workqueues and worker pools:
workqueue events: flags=0x0
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=2/256 refcnt=3
    in-flight: 229:balloon_process
    pending: cache_reap
workqueue events_freezable_power_: flags=0x84
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=1/256 refcnt=2
    pending: disk_events_workfn
workqueue mm_percpu_wq: flags=0x8
  pwq 12: cpus=6 node=0 flags=0x0 nice=0 active=1/256 refcnt=2
    pending: vmstat_update
pool 12: cpus=6 node=0 flags=0x0 nice=0 hung=64s workers=3 idle: 2222 43

This can easily be avoided by using a dedicated kernel thread for doing
the ballooning work.

Reported-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
---
 drivers/xen/balloon.c | 62 +++++++++++++++++++++++++++++++------------
 1 file changed, 45 insertions(+), 17 deletions(-)

diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index 671c71245a7b..2d2803883306 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -43,6 +43,8 @@
 #include <linux/sched.h>
 #include <linux/cred.h>
 #include <linux/errno.h>
+#include <linux/freezer.h>
+#include <linux/kthread.h>
 #include <linux/mm.h>
 #include <linux/memblock.h>
 #include <linux/pagemap.h>
@@ -115,7 +117,7 @@ static struct ctl_table xen_root[] = {
 #define EXTENT_ORDER (fls(XEN_PFN_PER_PAGE) - 1)
 
 /*
- * balloon_process() state:
+ * balloon_thread() state:
  *
  * BP_DONE: done or nothing to do,
  * BP_WAIT: wait to be rescheduled,
@@ -130,6 +132,8 @@ enum bp_state {
 	BP_ECANCELED
 };
 
+/* Main waiting point for xen-balloon thread. */
+static DECLARE_WAIT_QUEUE_HEAD(balloon_thread_wq);
 
 static DEFINE_MUTEX(balloon_mutex);
 
@@ -144,10 +148,6 @@ static xen_pfn_t frame_list[PAGE_SIZE / sizeof(xen_pfn_t)];
 static LIST_HEAD(ballooned_pages);
 static DECLARE_WAIT_QUEUE_HEAD(balloon_wq);
 
-/* Main work function, always executed in process context. */
-static void balloon_process(struct work_struct *work);
-static DECLARE_DELAYED_WORK(balloon_worker, balloon_process);
-
 /* When ballooning out (allocating memory to return to Xen) we don't really
    want the kernel to try too hard since that can trigger the oom killer. */
 #define GFP_BALLOON \
@@ -366,7 +366,7 @@ static void xen_online_page(struct page *page, unsigned int order)
 static int xen_memory_notifier(struct notifier_block *nb, unsigned long val, void *v)
 {
 	if (val == MEM_ONLINE)
-		schedule_delayed_work(&balloon_worker, 0);
+		wake_up(&balloon_thread_wq);
 
 	return NOTIFY_OK;
 }
@@ -491,18 +491,43 @@ static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
 }
 
 /*
- * As this is a work item it is guaranteed to run as a single instance only.
+ * Stop waiting if either state is not BP_EAGAIN and ballooning action is
+ * needed, or if the credit has changed while state is BP_EAGAIN.
+ */
+static bool balloon_thread_cond(enum bp_state state, long credit)
+{
+	if (state != BP_EAGAIN)
+		credit = 0;
+
+	return current_credit() != credit || kthread_should_stop();
+}
+
+/*
+ * As this is a kthread it is guaranteed to run as a single instance only.
  * We may of course race updates of the target counts (which are protected
  * by the balloon lock), or with changes to the Xen hard limit, but we will
  * recover from these in time.
  */
-static void balloon_process(struct work_struct *work)
+static int balloon_thread(void *unused)
 {
 	enum bp_state state = BP_DONE;
 	long credit;
+	unsigned long timeout;
+
+	set_freezable();
+	for (;;) {
+		if (state == BP_EAGAIN)
+			timeout = balloon_stats.schedule_delay * HZ;
+		else
+			timeout = 3600 * HZ;
+		credit = current_credit();
 
+		wait_event_interruptible_timeout(balloon_thread_wq,
+				 balloon_thread_cond(state, credit), timeout);
+
+		if (kthread_should_stop())
+			return 0;
 
-	do {
 		mutex_lock(&balloon_mutex);
 
 		credit = current_credit();
@@ -529,12 +554,7 @@ static void balloon_process(struct work_struct *work)
 		mutex_unlock(&balloon_mutex);
 
 		cond_resched();
-
-	} while (credit && state == BP_DONE);
-
-	/* Schedule more work if there is some still to be done. */
-	if (state == BP_EAGAIN)
-		schedule_delayed_work(&balloon_worker, balloon_stats.schedule_delay * HZ);
+	}
 }
 
 /* Resets the Xen limit, sets new target, and kicks off processing. */
@@ -542,7 +562,7 @@ void balloon_set_new_target(unsigned long target)
 {
 	/* No need for lock. Not read-modify-write updates. */
 	balloon_stats.target_pages = target;
-	schedule_delayed_work(&balloon_worker, 0);
+	wake_up(&balloon_thread_wq);
 }
 EXPORT_SYMBOL_GPL(balloon_set_new_target);
 
@@ -647,7 +667,7 @@ void free_xenballooned_pages(int nr_pages, struct page **pages)
 
 	/* The balloon may be too large now. Shrink it if needed. */
 	if (current_credit())
-		schedule_delayed_work(&balloon_worker, 0);
+		wake_up(&balloon_thread_wq);
 
 	mutex_unlock(&balloon_mutex);
 }
@@ -679,6 +699,8 @@ static void __init balloon_add_region(unsigned long start_pfn,
 
 static int __init balloon_init(void)
 {
+	struct task_struct *task;
+
 	if (!xen_domain())
 		return -ENODEV;
 
@@ -722,6 +744,12 @@ static int __init balloon_init(void)
 	}
 #endif
 
+	task = kthread_run(balloon_thread, NULL, "xen-balloon");
+	if (IS_ERR(task)) {
+		pr_err("xen-balloon thread could not be started, ballooning will not work!\n");
+		return PTR_ERR(task);
+	}
+
 	/* Init the xen-balloon driver. */
 	xen_balloon_init();
 
-- 
2.26.2



^ permalink raw reply related	[relevance 30%]

* [GIT PULL] xen: branch for v5.14-rc1
@ 2021-07-07  7:01  5% Juergen Gross
  0 siblings, 0 replies; 200+ results
From: Juergen Gross @ 2021-07-07  7:01 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, xen-devel, boris.ostrovsky

Linus,

Please git pull the following tag:

 git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git for-linus-5.14-rc1-tag

xen: branch for v5.14-rc1

It contains only two minor patches this time: one cleanup patch and
one patch refreshing a Xen header.

Thanks.

Juergen

 drivers/xen/pcpu.c                |   6 +-
 drivers/xen/xen-balloon.c         |  28 ++--
 drivers/xen/xenbus/xenbus_probe.c |  15 +-
 include/xen/interface/io/ring.h   | 278 +++++++++++++++++++++-----------------
 4 files changed, 177 insertions(+), 150 deletions(-)

Juergen Gross (1):
      xen: sync include/xen/interface/io/ring.h with Xen's newest version

YueHaibing (1):
      xen: Use DEVICE_ATTR_*() macro


^ permalink raw reply	[relevance 5%]

* [BUG] xen net scatter-gather hang
@ 2021-06-15  9:13  2% Håkon Alstadheim
  0 siblings, 0 replies; 200+ results
From: Håkon Alstadheim @ 2021-06-15  9:13 UTC (permalink / raw)
  To: xen-devel

I get theese in a domU:

---

[  174.883188][    C4] net eth0: rx->offset: 0, size: -1
[  174.883198][    C4] net eth0: rx->offset: 0, size: -1
[  174.883202][    C4] net eth0: rx->offset: 0, size: -1
[  174.883205][    C4] net eth0: rx->offset: 0, size: -1
[  174.883207][    C4] net eth0: rx->offset: 0, size: -1
[  174.883211][    C4] net eth0: rx->offset: 0, size: -1
[  174.883214][    C4] net eth0: rx->offset: 0, size: -1
[  174.883217][    C4] net eth0: rx->offset: 0, size: -1
[  174.883220][    C4] net eth0: rx->offset: 0, size: -1
[  174.883471][    C4] 
==================================================================
[  174.883474][    C4] BUG: KASAN: use-after-free in 
xennet_poll+0x28dc/0x3c80
[  174.883484][    C4] Write of size 8 at addr ffff88812fba1040 by task 
X/2988

---

The crash is easilyu reprocucible, just start the domU and fire up 
firefox. The crash does not happen if I do     "ethtool -K vif${domid}.0 
sg off tso off"  in dom0. The domU has a USB card and and graphics card 
passed through. The config is way  too maximalist. Please let me know  
specific settings I should tighten up to get better debug info.

--- Details: ---

# xl info
host                   : gentoo
release                : 5.13.0-rc6
version                : #2 SMP Mon Jun 14 12:40:43 CEST 2021
machine                : x86_64
nr_cpus                : 12
max_cpu_id             : 11
nr_nodes               : 2
cores_per_socket       : 6
threads_per_core       : 1
cpu_mhz                : 2399.982
hw_caps                : 
bfebfbff:77fef3ff:2c100800:00000021:00000001:000037ab:00000000:00000100
virt_caps              : pv hvm hvm_directio pv_directio hap 
iommu_hap_pt_share
total_memory           : 130953
free_memory            : 9936
sharing_freed_memory   : 0
sharing_used_memory    : 0
outstanding_claims     : 0
free_cpus              : 0
xen_major              : 4
xen_minor              : 15
xen_extra              : .1-pre
xen_version            : 4.15.1-pre
xen_caps               : xen-3.0-x86_64 hvm-3.0-x86_32 hvm-3.0-x86_32p 
hvm-3.0-x86_64
xen_scheduler          : credit2
xen_pagesize           : 4096
platform_params        : virt_start=0xffff800000000000
xen_changeset          : Tue Jun 8 18:34:36 2021 +0100 git:a339ceaa8f-dirty
xen_commandline        : xen.cfg xen-marker-203 console_timestamps=date 
iommu=1 com1=115200,8n1 console=com1 conswitch=lx 
cpufreq=xen:performance,verbose smt=0 core_parking=power nmi=dom0 
gnttab_max_frames=512 gnttab_max_maptrack_frames=2048 
vcpu_migration_delay=2000 tickle_one_idle_cpu=1 sched=credit2 
timer_slop=5000 max_cstate=2 dom0_mem=16G,max:16G dom0_max_vcpus=8 
loglvl=error/all guest_loglvl=error/all
cc_compiler            : gcc (Gentoo 10.3.0 p1) 10.3.0
cc_compile_by          : hakon
cc_compile_domain      : alstadheim.priv.no
cc_compile_date        : Sat Jun 12 23:39:03 CEST 2021
build_id               : 32581c9edcce5110d37abc1490e91c9b
xend_config_format     : 4

--- xl info ends ---

The "dirty" is from this:

---

git diff
diff --git a/.gitignore b/.gitignore
index 1c2fa1530b..cddcf26db5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -435,3 +435,4 @@ tools/xl/xl
  docs/txt/misc/*.txt
  docs/txt/man/*.txt
  docs/figs/*.png
+install.log
diff --git a/tools/libs/light/libxl_pci.c b/tools/libs/light/libxl_pci.c
index 1a1c263080..31cf54807c 100644
--- a/tools/libs/light/libxl_pci.c
+++ b/tools/libs/light/libxl_pci.c
@@ -1503,7 +1503,7 @@ static int libxl__device_pci_reset(libxl__gc *gc, 
unsigned int domain, unsigned
      char *reset;
      int fd, rc;

-    reset = GCSPRINTF("%s/do_flr", SYSFS_PCIBACK_DRIVER);
+    reset = GCSPRINTF("%s/reset", SYSFS_PCIBACK_DRIVER);
      fd = open(reset, O_WRONLY);
      if (fd >= 0) {
          char *buf = GCSPRINTF(PCI_BDF, domain, bus, dev, func);

--- diff ends ---

The console log is rather long. I have an automatic trigger of a 
shut-down of the domU after the "rx->offset" messages, so part of the 
log shows an attempt to shut down the domU.

Below the domU log comes a dump of everything from dom0 xen console. 
Search for "ends" to find it.

Full console log from domU:

---

Parsing config from /etc/xen/gt.hvm
WARNING: msr_relaxed will be removed in future versions.
If it fixes an issue you are having please report to 
xen-devel@lists.xenproject.org.
[    0.000000][    T0] Linux version 5.13.0-rc6-x86_64 (root@gt) 
(x86_64-pc-linux-gnu-gcc (Gentoo 11.1.0-r1 p2) 11.1.0, GNU ld (Gentoo 
2.36.1 p3) 2.36.1) #1 SMP Mon Jun 14 14:48:44 CEST 2021
[    0.000000][    T0] Command line: real_root=LABEL=RAID-GT  ro 
intel_iommu=on init=/lib/systemd/systemd net.ifnames=0 
xen_blkfront.max_indirect_segments=64 udev.log-priority=3 
xen_netfront.max_queues=4  scsi_mod.use_blk_mq=1 elevator=mq-deadline 
pti=off amdgpu.si_support=1 amdgpu.dpm=1 amdgpu.msi=1 nohz=off 
xen_timer_slop=5000 console=ttyS0 nowatchdog ignore_loglevel
[    0.000000][    T0] KERNEL supported cpus:
[    0.000000][    T0]   Intel GenuineIntel
[    0.000000][    T0] x86/fpu: Supporting XSAVE feature 0x001: 'x87 
floating point registers'
[    0.000000][    T0] x86/fpu: Supporting XSAVE feature 0x002: 'SSE 
registers'
[    0.000000][    T0] x86/fpu: Supporting XSAVE feature 0x004: 'AVX 
registers'
[    0.000000][    T0] x86/fpu: xstate_offset[2]:  576, 
xstate_sizes[2]:  256
[    0.000000][    T0] x86/fpu: Enabled xstate features 0x7, context 
size is 832 bytes, using 'standard' format.
[    0.000000][    T0] BIOS-provided physical RAM map:
[    0.000000][    T0] BIOS-e820: [mem 
0x0000000000000000-0x000000000009fbff] usable
[    0.000000][    T0] BIOS-e820: [mem 
0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000][    T0] BIOS-e820: [mem 
0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000][    T0] BIOS-e820: [mem 
0x0000000000100000-0x000000003ffecfff] usable
[    0.000000][    T0] BIOS-e820: [mem 
0x000000003ffed000-0x000000003fffffff] reserved
[    0.000000][    T0] BIOS-e820: [mem 
0x000000007db85000-0x000000007db94fff] reserved
[    0.000000][    T0] BIOS-e820: [mem 
0x00000000fc000000-0x00000000fc00afff] ACPI NVS
[    0.000000][    T0] BIOS-e820: [mem 
0x00000000fc00b000-0x00000000ffffffff] reserved
[    0.000000][    T0] BIOS-e820: [mem 
0x0000000100000000-0x000000057f7fffff] usable
[    0.000000][    T0] printk: debug: ignoring loglevel setting.
[    0.000000][    T0] NX (Execute Disable) protection: active
[    0.000000][    T0] SMBIOS 2.4 present.
[    0.000000][    T0] DMI: Xen HVM domU, BIOS 4.15.1-pre 06/12/2021
[    0.000000][    T0] Hypervisor detected: Xen HVM
[    0.000000][    T0] Xen version 4.15.
[    0.000000][    T0] Xen Platform PCI: I/O protocol version 1
[    0.000000][    T0] Netfront and the Xen platform PCI driver have 
been compiled for this kernel: unplug emulated NICs.
[    0.000000][    T0] Blkfront and the Xen platform PCI driver have 
been compiled for this kernel: unplug emulated disks.
[    0.000000][    T0] You might have to change the root device
[    0.000000][    T0] from /dev/hd[a-d] to /dev/xvd[a-d]
[    0.000000][    T0] in your root= kernel command line option
[    0.000023][    T0] HVMOP_pagetable_dying not supported
[    0.000493][    T0] tsc: Detected 2399.996 MHz processor
[    0.001648][    T0] e820: update [mem 0x00000000-0x00000fff] usable 
==> reserved
[    0.001664][    T0] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001678][    T0] last_pfn = 0x57f800 max_arch_pfn = 0x400000000
[    0.004147][    T0] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  
WP  UC- WT
[    0.010831][    T0] last_pfn = 0x3ffed max_arch_pfn = 0x400000000
[    0.016025][    T0] found SMP MP-table at [mem 0x000f5a90-0x000f5a9f]
[    0.016070][    T0] Kernel/User page tables isolation: disabled on 
command line.
[    0.016078][    T0] Using GB pages for direct mapping
[    0.016821][    T0] RAMDISK: [mem 0x3fa30000-0x3ffdffff]
[    0.016851][    T0] ACPI: Early table checksum verification disabled
[    0.016871][    T0] ACPI: RSDP 0x00000000000F59E0 000024 (v02 Xen   )
[    0.016894][    T0] ACPI: XSDT 0x00000000FC00A670 000054 (v01 Xen    
HVM      00000000 HVML 00000000)
[    0.016918][    T0] ACPI: FACP 0x00000000FC00A370 0000F4 (v04 Xen    
HVM      00000000 HVML 00000000)
[    0.016961][    T0] ACPI: DSDT 0x00000000FC001040 0092A3 (v02 Xen    
HVM      00000000 INTL 20200326)
[    0.016973][    T0] ACPI: FACS 0x00000000FC001000 000040
[    0.016983][    T0] ACPI: FACS 0x00000000FC001000 000040
[    0.016994][    T0] ACPI: APIC 0x00000000FC00A470 000090 (v02 Xen    
HVM      00000000 HVML 00000000)
[    0.017006][    T0] ACPI: HPET 0x00000000FC00A580 000038 (v01 Xen    
HVM      00000000 HVML 00000000)
[    0.017017][    T0] ACPI: WAET 0x00000000FC00A5C0 000028 (v01 Xen    
HVM      00000000 HVML 00000000)
[    0.017028][    T0] ACPI: SSDT 0x00000000FC00A5F0 000031 (v02 Xen    
HVM      00000000 INTL 20200326)
[    0.017040][    T0] ACPI: SSDT 0x00000000FC00A630 000031 (v02 Xen    
HVM      00000000 INTL 20200326)
[    0.017049][    T0] ACPI: Reserving FACP table memory at [mem 
0xfc00a370-0xfc00a463]
[    0.017055][    T0] ACPI: Reserving DSDT table memory at [mem 
0xfc001040-0xfc00a2e2]
[    0.017060][    T0] ACPI: Reserving FACS table memory at [mem 
0xfc001000-0xfc00103f]
[    0.017065][    T0] ACPI: Reserving FACS table memory at [mem 
0xfc001000-0xfc00103f]
[    0.017069][    T0] ACPI: Reserving APIC table memory at [mem 
0xfc00a470-0xfc00a4ff]
[    0.017074][    T0] ACPI: Reserving HPET table memory at [mem 
0xfc00a580-0xfc00a5b7]
[    0.017078][    T0] ACPI: Reserving WAET table memory at [mem 
0xfc00a5c0-0xfc00a5e7]
[    0.017083][    T0] ACPI: Reserving SSDT table memory at [mem 
0xfc00a5f0-0xfc00a620]
[    0.017088][    T0] ACPI: Reserving SSDT table memory at [mem 
0xfc00a630-0xfc00a660]
[    0.017193][    T0] ACPI: Local APIC address 0xfee00000
[    0.017331][    T0] No NUMA configuration found
[    0.017336][    T0] Faking a node at [mem 
0x0000000000000000-0x000000057f7fffff]
[    0.017346][    T0] NODE_DATA(0) allocated [mem 0x57f7fb000-0x57f7fefff]
[    0.017430][    T0] Zone ranges:
[    0.017434][    T0]   DMA      [mem 
0x0000000000001000-0x0000000000ffffff]
[    0.017443][    T0]   DMA32    [mem 
0x0000000001000000-0x00000000ffffffff]
[    0.017450][    T0]   Normal   [mem 
0x0000000100000000-0x000000057f7fffff]
[    0.017457][    T0] Movable zone start for each node
[    0.017479][    T0] Early memory node ranges
[    0.017483][    T0]   node   0: [mem 
0x0000000000001000-0x000000000009efff]
[    0.017489][    T0]   node   0: [mem 
0x0000000000100000-0x000000003ffecfff]
[    0.017493][    T0]   node   0: [mem 
0x0000000100000000-0x000000057f7fffff]
[    0.017500][    T0] Initmem setup node 0 [mem 
0x0000000000001000-0x000000057f7fffff]
[    0.017507][    T0] On node 0 totalpages: 4978571
[    0.017513][    T0]   DMA zone: 64 pages used for memmap
[    0.017519][    T0]   DMA zone: 158 pages reserved
[    0.017523][    T0]   DMA zone: 3998 pages, LIFO batch:0
[    0.018807][    T0]   DMA zone: 28770 pages in unavailable ranges
[    0.018813][    T0]   DMA32 zone: 4032 pages used for memmap
[    0.018818][    T0]   DMA32 zone: 258029 pages, LIFO batch:63
[    0.026615][    T0]   DMA32 zone: 19 pages in unavailable ranges
[    0.026673][    T0]   Normal zone: 73696 pages used for memmap
[    0.026681][    T0]   Normal zone: 4716544 pages, LIFO batch:63
[    0.171473][    T0]   Normal zone: 2048 pages in unavailable ranges
[    0.770557][    T0] kasan: KernelAddressSanitizer initialized
[    0.773375][    T0] ACPI: PM-Timer IO Port: 0xb008
[    0.773395][    T0] ACPI: Local APIC address 0xfee00000
[    0.773535][    T0] IOAPIC[0]: apic_id 1, version 17, address 
0xfec00000, GSI 0-47
[    0.773546][    T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 
dfl dfl)
[    0.773553][    T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 
low level)
[    0.773560][    T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 
low level)
[    0.773566][    T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 
low level)
[    0.773575][    T0] ACPI: IRQ0 used by override.
[    0.773580][    T0] ACPI: IRQ5 used by override.
[    0.773584][    T0] ACPI: IRQ9 used by override.
[    0.773588][    T0] ACPI: IRQ10 used by override.
[    0.773592][    T0] ACPI: IRQ11 used by override.
[    0.773601][    T0] Using ACPI (MADT) for SMP configuration information
[    0.773606][    T0] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.773615][    T0] TSC deadline timer available
[    0.773621][    T0] smpboot: Allowing 6 CPUs, 0 hotplug CPUs
[    0.773650][    T0] PM: hibernation: Registered nosave memory: [mem 
0x00000000-0x00000fff]
[    0.773658][    T0] PM: hibernation: Registered nosave memory: [mem 
0x0009f000-0x0009ffff]
[    0.773663][    T0] PM: hibernation: Registered nosave memory: [mem 
0x000a0000-0x000effff]
[    0.773667][    T0] PM: hibernation: Registered nosave memory: [mem 
0x000f0000-0x000fffff]
[    0.773673][    T0] PM: hibernation: Registered nosave memory: [mem 
0x3ffed000-0x3fffffff]
[    0.773678][    T0] PM: hibernation: Registered nosave memory: [mem 
0x40000000-0x7db84fff]
[    0.773682][    T0] PM: hibernation: Registered nosave memory: [mem 
0x7db85000-0x7db94fff]
[    0.773686][    T0] PM: hibernation: Registered nosave memory: [mem 
0x7db95000-0xfbffffff]
[    0.773691][    T0] PM: hibernation: Registered nosave memory: [mem 
0xfc000000-0xfc00afff]
[    0.773695][    T0] PM: hibernation: Registered nosave memory: [mem 
0xfc00b000-0xffffffff]
[    0.773703][    T0] [mem 0x7db95000-0xfbffffff] available for PCI 
devices
[    0.773708][    T0] Booting paravirtualized kernel on Xen HVM
[    0.773726][    T0] clocksource: refined-jiffies: mask: 0xffffffff 
max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.773754][    T0] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 
nr_cpu_ids:6 nr_node_ids:1
[    0.774498][    T0] percpu: Embedded 65 pages/cpu s226832 r8192 
d31216 u524288
[    0.774513][    T0] pcpu-alloc: s226832 r8192 d31216 u524288 
alloc=1*2097152
[    0.774522][    T0] pcpu-alloc: [0] 0 1 2 3 [0] 4 5 - -
[    0.774597][    T0] xen: PV spinlocks enabled
[    0.774605][    T0] PV qspinlock hash table entries: 256 (order: 0, 
4096 bytes, linear)
[    0.774617][    T0] Built 1 zonelists, mobility grouping on. Total 
pages: 4900621
[    0.774622][    T0] Policy zone: Normal
[    0.774627][    T0] Kernel command line: real_root=LABEL=RAID-GT  ro 
intel_iommu=on init=/lib/systemd/systemd net.ifnames=0 
xen_blkfront.max_indirect_segments=64 udev.log-priority=3 
xen_netfront.max_queues=4  scsi_mod.use_blk_mq=1 elevator=mq-deadline 
pti=off amdgpu.si_support=1 amdgpu.dpm=1 amdgpu.msi=1 nohz=off 
xen_timer_slop=5000 console=ttyS0 nowatchdog ignore_loglevel
[    0.774722][    T0] DMAR: IOMMU enabled
[    0.774857][    T0] Kernel parameter elevator= does not have any 
effect anymore.
[    0.774857][    T0] Please use sysfs to set IO scheduler for 
individual devices.
[    0.779459][    T0] Dentry cache hash table entries: 4194304 (order: 
13, 33554432 bytes, linear)
[    0.781700][    T0] Inode-cache hash table entries: 2097152 (order: 
12, 16777216 bytes, linear)
[    0.781797][    T0] mem auto-init: stack:off, heap alloc:on, heap 
free:off
[    1.473275][    T0] Memory: 16880560K/19914284K available (49173K 
kernel code, 14692K rwdata, 11088K rodata, 2692K init, 7008K bss, 
3033468K reserved, 0K cma-reserved)
[    1.473314][    T0] random: get_random_u64 called from 
__kmem_cache_create+0x2e/0x5e0 with crng_init=0
[    1.473668][    T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, 
CPUs=6, Nodes=1
[    1.473712][    T0] ftrace: allocating 52352 entries in 205 pages
[    1.504020][    T0] ftrace: allocated 205 pages with 5 groups
[    1.504440][    T0] rcu: Hierarchical RCU implementation.
[    1.504446][    T0] rcu:     RCU event tracing is enabled.
[    1.504450][    T0] rcu:     RCU restricting CPUs from NR_CPUS=64 to 
nr_cpu_ids=6.
[    1.504455][    T0]     Rude variant of Tasks RCU enabled.
[    1.504459][    T0]     Tracing variant of Tasks RCU enabled.
[    1.504462][    T0] rcu: RCU calculated value of scheduler-enlistment 
delay is 100 jiffies.
[    1.504466][    T0] rcu: Adjusting geometry for rcu_fanout_leaf=16, 
nr_cpu_ids=6
[    1.521458][    T0] NR_IRQS: 4352, nr_irqs: 880, preallocated irqs: 16
[    1.521605][    T0] xen:events: Using FIFO-based ABI
[    1.521654][    T0] xen:events: Xen HVM callback vector for event 
delivery is enabled
[    1.521917][    T0] random: crng done (trusting CPU's manufacturer)
[    1.600531][    T0] Console: colour VGA+ 80x25
[    3.042529][    T0] printk: console [ttyS0] enabled
[    3.049101][    T0] Lock dependency validator: Copyright (c) 2006 Red 
Hat, Inc., Ingo Molnar
[    3.060197][    T0] ... MAX_LOCKDEP_SUBCLASSES:  8
[    3.069900][    T0] ... MAX_LOCK_DEPTH:          48
[    3.079641][    T0] ... MAX_LOCKDEP_KEYS:        8192
[    3.089886][    T0] ... CLASSHASH_SIZE:          4096
[    3.097288][    T0] ... MAX_LOCKDEP_ENTRIES:     32768
[    3.102165][    T0] ... MAX_LOCKDEP_CHAINS:      65536
[    3.106783][    T0] ... CHAINHASH_SIZE:          32768
[    3.111947][    T0]  memory used by lock dependency info: 3637 kB
[    3.118567][    T0]  per task-struct memory footprint: 1920 bytes
[    3.125150][    T0] ACPI: Core revision 20210331
[    3.134142][    T0] clocksource: hpet: mask: 0xffffffff max_cycles: 
0xffffffff, max_idle_ns: 30580167144 ns
[    3.146769][    T0] APIC: Switch to symmetric I/O mode setup
[    3.154372][    T0] x2apic: IRQ remapping doesn't support X2APIC mode
[    3.167629][    T0] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    3.180765][    T0] clocksource: tsc-early: mask: 0xffffffffffffffff 
max_cycles: 0x229833f6470, max_idle_ns: 440795327230 ns
[    3.192960][    T0] Calibrating delay loop (skipped), value 
calculated using timer frequency.. 4799.99 BogoMIPS (lpj=2399996)
[    3.193966][    T0] pid_max: default: 32768 minimum: 301
[    3.196000][    T0] LSM: Security Framework initializing
[    3.197987][    T0] Mount-cache hash table entries: 65536 (order: 7, 
524288 bytes, linear)
[    3.199044][    T0] Mountpoint-cache hash table entries: 65536 
(order: 7, 524288 bytes, linear)
[    3.202200][    T0] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 
1024
[    3.202965][    T0] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 
1024, 1GB 4
[    3.203975][    T0] Spectre V1 : Mitigation: usercopy/swapgs barriers 
and __user pointer sanitization
[    3.204967][    T0] Spectre V2 : Mitigation: Full generic retpoline
[    3.205962][    T0] Spectre V2 : Spectre v2 / SpectreRSB mitigation: 
Filling RSB on context switch
[    3.206961][    T0] Spectre V2 : Enabling Restricted Speculation for 
firmware calls
[    3.207969][    T0] Spectre V2 : mitigation: Enabling conditional 
Indirect Branch Prediction Barrier
[    3.208963][    T0] Spectre V2 : User space: Mitigation: STIBP via 
seccomp and prctl
[    3.209967][    T0] Speculative Store Bypass: Mitigation: Speculative 
Store Bypass disabled via prctl and seccomp
[    3.210972][    T0] MDS: Mitigation: Clear CPU buffers
[    3.218634][    T0] Freeing SMP alternatives memory: 44K
[    3.220211][    T1] clocksource: xen: mask: 0xffffffffffffffff 
max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    3.220981][    T1] Xen: using vcpuop timer interface
[    3.221991][    T1] installing Xen timer for CPU 0
[    3.223167][    T1] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2620 v3 @ 
2.40GHz (family: 0x6, model: 0x3f, stepping: 0x2)
[    3.224136][    T1] cpu 0 spinlock event irq 52
[    3.226018][    T1] Performance Events: unsupported p6 CPU model 63 
no PMU driver, software events only.
[    3.227207][    T1] rcu: Hierarchical SRCU implementation.
[    3.230482][    T1] NMI watchdog: Perf NMI watchdog permanently disabled
[    3.231524][    T1] smp: Bringing up secondary CPUs ...
[    3.232639][    T1] installing Xen timer for CPU 1
[    3.233194][    T1] x86: Booting SMP configuration:
[    3.233975][    T1] .... node  #0, CPUs:      #1
[    3.234972][   T17] cpu 1 spinlock event irq 57
[    3.247177][    T1] installing Xen timer for CPU 2
[    3.248211][    T1]  #2
[    3.249090][   T23] cpu 2 spinlock event irq 62
[    3.259712][    T1] installing Xen timer for CPU 3
[    3.260221][    T1]  #3
[    3.261162][   T29] cpu 3 spinlock event irq 67
[    3.273213][    T1] installing Xen timer for CPU 4
[    3.274190][    T1]  #4
[    3.275092][   T35] cpu 4 spinlock event irq 72
[    3.284642][    T1] installing Xen timer for CPU 5
[    3.285250][    T1]  #5
[    3.286100][   T41] cpu 5 spinlock event irq 77
[    3.304261][    T1] smp: Brought up 1 node, 6 CPUs
[    3.304978][    T1] smpboot: Max logical packages: 1
[    3.305979][    T1] smpboot: Total of 6 processors activated 
(28799.95 BogoMIPS)
[    3.310964][    T1] devtmpfs: initialized
[    3.319303][    T1] PM: Registering ACPI NVS region [mem 
0xfc000000-0xfc00afff] (45056 bytes)
[    3.320391][    T1] clocksource: jiffies: mask: 0xffffffff 
max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    3.321033][    T1] futex hash table entries: 2048 (order: 6, 262144 
bytes, linear)
[    3.322361][    T1] pinctrl core: initialized pinctrl subsystem
[    3.323909][    T1]
[    3.323970][    T1] 
*************************************************************
[    3.324975][    T1] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE 
NOTICE    **
[    3.325977][    T1] 
**                                                         **
[    3.326978][    T1] **  IOMMU DebugFS SUPPORT HAS BEEN ENABLED IN 
THIS KERNEL  **
[    3.327978][    T1] 
**                                                         **
[    3.328977][    T1] ** This means that this kernel is built to expose 
internal **
[    3.329980][    T1] ** IOMMU data structures, which may compromise 
security on **
[    3.330977][    T1] ** your 
system.                                            **
[    3.331976][    T1] 
**                                                         **
[    3.332973][    T1] ** If you see this message and you are not 
debugging the   **
[    3.333972][    T1] ** kernel, report this immediately to your 
vendor!         **
[    3.334974][    T1] 
**                                                         **
[    3.335973][    T1] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE 
NOTICE    **
[    3.336968][    T1] 
*************************************************************
[    3.338082][    T1] PM: RTC time: 23:00:23, date: 2021-06-14
[    3.339859][    T1] NET: Registered protocol family 16
[    3.341695][    T1] audit: initializing netlink subsys (disabled)
[    3.342192][   T50] audit: type=2000 audit(1623711622.829:1): 
state=initialized audit_enabled=0 res=1
[    3.343461][    T1] thermal_sys: Registered thermal governor 
'fair_share'
[    3.343976][    T1] thermal_sys: Registered thermal governor 'bang_bang'
[    3.344972][    T1] thermal_sys: Registered thermal governor 'step_wise'
[    3.345983][    T1] thermal_sys: Registered thermal governor 
'user_space'
[    3.346984][    T1] thermal_sys: Registered thermal governor 
'power_allocator'
[    3.348114][    T1] cpuidle: using governor ladder
[    3.350301][    T1] ACPI: bus type PCI registered
[    3.350978][    T1] acpiphp: ACPI Hot Plug PCI Controller Driver 
version: 0.5
[    3.353006][    T1] PCI: Using configuration type 1 for base access
[    3.372862][    T1] Kprobes globally optimized
[    3.373217][    T1] HugeTLB registered 1.00 GiB page size, 
pre-allocated 0 pages
[    3.374976][    T1] HugeTLB registered 2.00 MiB page size, 
pre-allocated 0 pages
[    3.379083][    T1] cryptd: max_cpu_qlen set to 1000
[    3.390301][    T1] ACPI: Added _OSI(Module Device)
[    3.390975][    T1] ACPI: Added _OSI(Processor Device)
[    3.391978][    T1] ACPI: Added _OSI(3.0 _SCP Extensions)
[    3.392981][    T1] ACPI: Added _OSI(Processor Aggregator Device)
[    3.393992][    T1] ACPI: Added _OSI(Linux-Dell-Video)
[    3.394994][    T1] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    3.395993][    T1] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    3.557052][    T1] ACPI: 3 ACPI AML tables successfully acquired and 
loaded
[    3.562045][    T1] xen: --> pirq=16 -> irq=9 (gsi=9)
[    3.615936][    T1] ACPI: Interpreter enabled
[    3.616106][    T1] ACPI: (supports S0 S3 S4 S5)
[    3.616991][    T1] ACPI: Using IOAPIC for interrupt routing
[    3.618202][    T1] PCI: Using host bridge windows from ACPI; if 
necessary, use "pci=nocrs" and report a bug
[    3.622294][    T1] ACPI: Enabled 2 GPEs in block 00 to 0F
[    3.739892][    T1] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 
00-ff])
[    3.740000][    T1] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM 
Segments MSI HPX-Type3]
[    3.741182][    T1] acpi PNP0A03:00: fail to add MMCONFIG 
information, can't access extended PCI configuration space under this 
bridge.
[    3.749653][    T1] acpiphp: Slot [3] registered
[    3.750246][    T1] acpiphp: Slot [4] registered
[    3.751235][    T1] acpiphp: Slot [5] registered
[    3.752296][    T1] acpiphp: Slot [6] registered
[    3.753433][    T1] acpiphp: Slot [7] registered
[    3.754260][    T1] acpiphp: Slot [8] registered
[    3.755218][    T1] acpiphp: Slot [9] registered
[    3.756170][    T1] acpiphp: Slot [10] registered
[    3.757170][    T1] acpiphp: Slot [11] registered
[    3.758163][    T1] acpiphp: Slot [12] registered
[    3.759208][    T1] acpiphp: Slot [13] registered
[    3.760186][    T1] acpiphp: Slot [14] registered
[    3.761247][    T1] acpiphp: Slot [15] registered
[    3.762170][    T1] acpiphp: Slot [16] registered
[    3.763219][    T1] acpiphp: Slot [17] registered
[    3.764201][    T1] acpiphp: Slot [18] registered
[    3.765225][    T1] acpiphp: Slot [19] registered
[    3.766184][    T1] acpiphp: Slot [20] registered
[    3.767210][    T1] acpiphp: Slot [21] registered
[    3.768209][    T1] acpiphp: Slot [22] registered
[    3.769178][    T1] acpiphp: Slot [23] registered
[    3.770194][    T1] acpiphp: Slot [24] registered
[    3.771229][    T1] acpiphp: Slot [25] registered
[    3.772229][    T1] acpiphp: Slot [26] registered
[    3.773287][    T1] acpiphp: Slot [27] registered
[    3.774221][    T1] acpiphp: Slot [28] registered
[    3.775251][    T1] acpiphp: Slot [29] registered
[    3.776224][    T1] acpiphp: Slot [30] registered
[    3.777219][    T1] acpiphp: Slot [31] registered
[    3.778123][    T1] PCI host bridge to bus 0000:00
[    3.778985][    T1] pci_bus 0000:00: root bus resource [io 
0x0000-0x0cf7 window]
[    3.779989][    T1] pci_bus 0000:00: root bus resource [io 
0x0d00-0xffff window]
[    3.780987][    T1] pci_bus 0000:00: root bus resource [mem 
0x000a0000-0x000bffff window]
[    3.781990][    T1] pci_bus 0000:00: root bus resource [mem 
0x40000000-0xfbffffff window]
[    3.782998][    T1] pci_bus 0000:00: root bus resource [bus 00-ff]
[    3.784406][    T1] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[    3.790293][    T1] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[    3.797457][    T1] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
[    3.800911][    T1] pci 0000:00:01.1: reg 0x20: [io 0xc200-0xc20f]
[    3.801970][    T1] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: 
[io  0x01f0-0x01f7]
[    3.802979][    T1] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: 
[io  0x03f6]
[    3.803983][    T1] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: 
[io  0x0170-0x0177]
[    3.804983][    T1] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: 
[io  0x0376]
[    3.808393][    T1] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
[    3.814430][    T1] pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] 
claimed by PIIX4 ACPI
[    3.815110][    T1] pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] 
claimed by PIIX4 SMB
[    3.820467][    T1] pci 0000:00:02.0: [5853:0001] type 00 class 0xff8000
[    3.822968][    T1] pci 0000:00:02.0: reg 0x10: [io 0xc000-0xc0ff]
[    3.825970][    T1] pci 0000:00:02.0: reg 0x14: [mem 
0x52000000-0x52ffffff pref]
[    3.838421][    T1] pci 0000:00:03.0: [1013:00b8] type 00 class 0x030000
[    3.840971][    T1] pci 0000:00:03.0: reg 0x10: [mem 
0x50000000-0x51ffffff pref]
[    3.843839][    T1] pci 0000:00:03.0: reg 0x14: [mem 
0x530dc000-0x530dcfff]
[    3.851395][    T1] pci 0000:00:03.0: reg 0x30: [mem 
0x530c0000-0x530cffff pref]
[    3.857623][    T1] pci 0000:00:05.0: [1b21:1242] type 00 class 0x0c0330
[    3.862225][    T1] pci 0000:00:05.0: reg 0x10: [mem 
0x530d0000-0x530d7fff 64bit]
[    3.873555][    T1] pci 0000:00:05.0: enabling Extended Tags
[    3.882289][    T1] pci 0000:00:06.0: [1002:6811] type 00 class 0x030000
[    3.885012][    T1] pci 0000:00:06.0: reg 0x10: [mem 
0x3ff40000000-0x3ff4fffffff 64bit pref]
[    3.888011][    T1] pci 0000:00:06.0: reg 0x18: [mem 
0x53040000-0x5307ffff 64bit]
[    3.891015][    T1] pci 0000:00:06.0: reg 0x20: [io 0xc100-0xc1ff]
[    3.896003][    T1] pci 0000:00:06.0: reg 0x30: [mem 
0x530a0000-0x530bffff pref]
[    3.897367][    T1] pci 0000:00:06.0: enabling Extended Tags
[    3.902368][    T1] pci 0000:00:06.0: supports D1 D2
[    3.907673][    T1] pci 0000:00:07.0: [1002:aab0] type 00 class 0x040300
[    3.910018][    T1] pci 0000:00:07.0: reg 0x10: [mem 
0x530d8000-0x530dbfff 64bit]
[    3.921411][    T1] pci 0000:00:07.0: enabling Extended Tags
[    3.925516][    T1] pci 0000:00:07.0: supports D1 D2
[    3.946743][    T1] ACPI: PCI: Interrupt link LNKA configured for IRQ 5
[    3.948327][    T1] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    3.950375][    T1] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    3.952370][    T1] ACPI: PCI: Interrupt link LNKD configured for IRQ 5
[    3.988605][    T1] xen:balloon: Initialising balloon driver
[    3.989590][    T1] iommu: Default domain type: Translated
[    3.990146][    T1] pci 0000:00:03.0: vgaarb: setting as boot VGA device
[    3.990954][    T1] pci 0000:00:03.0: vgaarb: VGA device added: 
decodes=io+mem,owns=io+mem,locks=none
[    3.991103][    T1] pci 0000:00:06.0: vgaarb: VGA device added: 
decodes=io+mem,owns=io+mem,locks=none
[    3.991979][    T1] pci 0000:00:03.0: vgaarb: no bridge control possible
[    3.992973][    T1] pci 0000:00:06.0: vgaarb: bridge control possible
[    3.993976][    T1] vgaarb: loaded
[    3.996847][    T1] SCSI subsystem initialized
[    3.997147][    T1] libata version 3.00 loaded.
[    3.998287][    T1] mc: Linux media interface: v0.10
[    3.999030][    T1] videodev: Linux video capture interface: v2.00
[    4.000139][    T1] pps_core: LinuxPPS API ver. 1 registered
[    4.000973][    T1] pps_core: Software ver. 5.3.6 - Copyright 
2005-2007 Rodolfo Giometti <giometti@linux.it>
[    4.002028][    T1] PTP clock support registered
[    4.003244][    T1] EDAC MC: Ver: 3.0.0
[    4.008465][    T1] NetLabel: Initializing
[    4.008974][    T1] NetLabel:  domain hash size = 128
[    4.009978][    T1] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    4.011140][    T1] NetLabel:  unlabeled traffic allowed by default
[    4.012174][    T1] PCI: Using ACPI for IRQ routing
[    4.012975][    T1] PCI: pci_cache_line_size set to 64 bytes
[    4.014954][    T1] pci 0000:00:06.0: can't claim BAR 0 [mem 
0x3ff40000000-0x3ff4fffffff 64bit pref]: no compatible bridge window
[    4.016534][    T1] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    4.016982][    T1] e820: reserve RAM buffer [mem 0x3ffed000-0x3fffffff]
[    4.017980][    T1] e820: reserve RAM buffer [mem 
0x57f800000-0x57fffffff]
[    4.019316][    T1] hpet: 3 channels of 0 reserved for per-cpu timers
[    4.020008][    T1] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    4.020973][    T1] hpet0: 3 comparators, 64-bit 62.500000 MHz counter
[    4.026479][    T1] clocksource: Switched to clocksource xen
[    4.230189][    T1] VFS: Disk quotas dquot_6.6.0
[    4.239949][    T1] VFS: Dquot-cache hash table entries: 512 (order 
0, 4096 bytes)
[    4.259610][    T1] FS-Cache: Loaded
[    4.270420][    T1] pnp: PnP ACPI init
[    4.278947][    T1] system 00:00: [mem 0x00000000-0x0009ffff] could 
not be reserved
[    4.294081][    T1] system 00:00: Plug and Play ACPI device, IDs 
PNP0c02 (active)
[    4.306565][    T1] system 00:01: [io  0x08a0-0x08a3] has been reserved
[    4.317586][    T1] system 00:01: [io  0x0cc0-0x0ccf] has been reserved
[    4.327656][    T1] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    4.337691][    T1] system 00:01: Plug and Play ACPI device, IDs 
PNP0c02 (active)
[    4.350838][    T1] xen: --> pirq=17 -> irq=8 (gsi=8)
[    4.360348][    T1] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 
(active)
[    4.373174][    T1] xen: --> pirq=18 -> irq=12 (gsi=12)
[    4.383488][    T1] pnp 00:03: Plug and Play ACPI device, IDs PNP0f13 
(active)
[    4.397222][    T1] xen: --> pirq=19 -> irq=1 (gsi=1)
[    4.407775][    T1] pnp 00:04: Plug and Play ACPI device, IDs PNP0303 
PNP030b (active)
[    4.435180][    T1] xen: --> pirq=20 -> irq=6 (gsi=6)
[    4.453694][    T1] pnp 00:05: [dma 2]
[    4.464419][    T1] pnp 00:05: Plug and Play ACPI device, IDs PNP0700 
(active)
[    4.479430][    T1] xen: --> pirq=21 -> irq=4 (gsi=4)
[    4.487704][    T1] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 
(active)
[    4.500486][    T1] system 00:07: [io  0xae00-0xae0f] has been reserved
[    4.510464][    T1] system 00:07: [io  0xb044-0xb047] has been reserved
[    4.519524][    T1] system 00:07: Plug and Play ACPI device, IDs 
PNP0c02 (active)
[    4.538009][    T1] pnp: PnP ACPI: found 8 devices
[    4.564424][    T1] clocksource: acpi_pm: mask: 0xffffff max_cycles: 
0xffffff, max_idle_ns: 2085701024 ns
[    4.577109][    T1] NET: Registered protocol family 2
[    4.584098][    T1] IP idents hash table entries: 262144 (order: 9, 
2097152 bytes, linear)
[    4.597552][    T1] tcp_listen_portaddr_hash hash table entries: 
16384 (order: 8, 1310720 bytes, linear)
[    4.613104][    T1] TCP established hash table entries: 262144 
(order: 9, 2097152 bytes, linear)
[    4.631136][    T1] TCP bind hash table entries: 65536 (order: 10, 
4718592 bytes, vmalloc)
[    4.646758][    T1] TCP: Hash tables configured (established 262144 
bind 65536)
[    4.658919][    T1] MPTCP token hash table entries: 32768 (order: 9, 
2883584 bytes, linear)
[    4.672747][    T1] UDP hash table entries: 16384 (order: 9, 2621440 
bytes, linear)
[    4.684508][    T1] UDP-Lite hash table entries: 16384 (order: 9, 
2621440 bytes, linear)
[    4.696264][    T1] NET: Registered protocol family 1
[    4.704132][    T1] RPC: Registered named UNIX socket transport module.
[    4.712545][    T1] RPC: Registered udp transport module.
[    4.719577][    T1] RPC: Registered tcp transport module.
[    4.726671][    T1] RPC: Registered tcp NFSv4.1 backchannel transport 
module.
[    4.735900][    T1] NET: Registered protocol family 44
[    4.742537][    T1] pci 0000:00:06.0: BAR 0: assigned [mem 
0x40000000-0x4fffffff 64bit pref]
[    4.774063][    T1] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 
window]
[    4.783210][    T1] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff 
window]
[    4.792051][    T1] pci_bus 0000:00: resource 6 [mem 
0x000a0000-0x000bffff window]
[    4.801478][    T1] pci_bus 0000:00: resource 7 [mem 
0x40000000-0xfbffffff window]
[    4.812601][    T1] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    4.821801][    T1] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    4.832079][    T1] pci 0000:00:00.0: quirk_natoma+0x0/0x60 took 
10036 usecs
[    4.843114][    T1] pci 0000:00:01.0: Activating ISA DMA hang 
workarounds
[    4.853830][    T1] pci 0000:00:01.0: quirk_isa_dma_hangs+0x0/0x60 
took 10464 usecs
[    4.864873][    T1] pci 0000:00:03.0: Video device with shadowed ROM 
at [mem 0x000c0000-0x000dffff]
[    4.876550][    T1] pci 0000:00:03.0: pci_fixup_video+0x0/0x220 took 
11652 usecs
[    4.890576][    T1] xen: --> pirq=34 -> irq=36 (gsi=36)
[    4.902384][    T1] pci 0000:00:05.0: 
quirk_usb_early_handoff+0x0/0xb80 took 16008 usecs
[    4.912847][    T1] PCI: CLS 0 bytes, default 64
[    4.918823][    T1] PCI-DMA: Using software bounce buffering for IO 
(SWIOTLB)
[    4.919297][  T120] Unpacking initramfs...
[    4.928050][    T1] software IO TLB: mapped [mem 
0x000000003ba30000-0x000000003fa30000] (64MB)
[    5.113717][    T1] clocksource: tsc: mask: 0xffffffffffffffff 
max_cycles: 0x229833f6470, max_idle_ns: 440795327230 ns
[    5.132532][    T1] Initialise system trusted keyrings
[    5.140184][    T1] Key type blacklist registered
[    5.146824][    T1] workingset: timestamp_bits=40 max_order=23 
bucket_order=0
[    5.174550][    T1] zbud: loaded
[    5.184144][    T1] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    5.195204][    T1] FS-Cache: Netfs 'nfs' registered for caching
[    5.204637][    T1] NFS: Registering the id_resolver key type
[    5.216693][    T1] Key type id_resolver registered
[    5.231875][    T1] Key type id_legacy registered
[    5.251095][    T1] nfs4filelayout_init: NFSv4 File Layout Driver 
Registering...
[    5.284410][    T1] FS-Cache: Netfs 'cifs' registered for caching
[    5.300623][    T1] Key type cifs.spnego registered
[    5.312321][    T1] Key type cifs.idmap registered
[    5.324312][    T1] fuse: init (API version 7.33)
[    5.334441][    T1] SGI XFS with ACLs, security attributes, realtime, 
quota, no debug enabled
[    5.356882][    T1] integrity: Platform Keyring initialized
[    5.380863][    T1] NET: Registered protocol family 38
[    5.392013][    T1] Key type asymmetric registered
[    5.400035][    T1] Asymmetric key parser 'x509' registered
[    5.409516][    T1] Block layer SCSI generic (bsg) driver version 0.4 
loaded (major 240)
[    5.435525][    T1] io scheduler mq-deadline registered
[    5.453004][    T1] start plist test
[    5.467282][    T1] end plist test
[    5.478298][    T1] shpchp: Standard Hot Plug PCI Controller Driver 
version: 0.4
[    5.494018][    T1] cirrusfb 0000:00:03.0: Cirrus Logic chipset on 
PCI bus, RAM (4096 kB) at 0x50000000
[    5.509345][    T1] fbcon: CL Picasso4 (fb0) is primary device
[    5.829551][    T1] Console: switching to colour frame buffer device 
80x30
[    5.898177][    T1] input: Power Button as 
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    5.916426][    T1] ACPI: button: Power Button [PWRF]
[    5.923863][    T1] input: Sleep Button as 
/devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[    5.937414][    T1] ACPI: button: Sleep Button [SLPF]
[    5.970460][    T1] xen:xen_evtchn: Event-channel device installed
[    5.997427][    T1] xen: --> pirq=22 -> irq=24 (gsi=24)
[    6.013583][    T1] xen:grant_table: Grant tables using version 1 layout
[    6.032896][    T1] Grant table initialized
[    6.047797][    T1] Initialising Xen pvcalls frontend driver
[    6.059880][    T1] Serial: 8250/16550 driver, 32 ports, IRQ sharing 
enabled
[    6.113463][    T1] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 
115200) is a 16550A
[    6.145250][    T1] Linux agpgart interface v0.103
[    6.177360][  T144] FDC 0 is a S82078B
[    6.191043][    T1] loop: module loaded
[    6.204117][    T1] ata_piix 0000:00:01.1: version 2.13
[    6.214001][    T1] ata_piix 0000:00:01.1: enabling device (0000 -> 
0001)
[    6.282718][  T147] blkfront: xvda: flush diskcache: enabled; 
persistent grants: enabled; indirect descriptors: enabled;
[    6.477649][    T1] scsi host0: ata_piix
[    6.497944][    T1] scsi host1: ata_piix
[    6.499563][  T120] Freeing initrd memory: 5824K
[    6.511572][    T1] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 
0xc200 irq 14
[    6.539466][  T147] blkfront: xvdb: flush diskcache: enabled; 
persistent grants: enabled; indirect descriptors: enabled;
[    6.542648][    T1] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 
0xc208 irq 15
[    6.589290][    T1] libphy: Fixed MDIO Bus: probed
[    6.602930][    T1] tun: Universal TUN/TAP device driver, 1.6
[    6.607681][  T147] blkfront: xvdc: flush diskcache: enabled; 
persistent grants: enabled; indirect descriptors: enabled;
[    6.630800][    T1] PPP generic driver version 2.4.2
[    6.642655][    T1] xen_netfront: Initialising Xen virtual ethernet 
driver
[    6.660660][    T1] VFIO - User Level meta-driver version: 0.3
[    6.674310][  T147] xen_netfront: backend supports XDP headroom
[    6.677139][    T1] i8042: PNP: PS/2 Controller 
[PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    6.737672][    T1] serio: i8042 KBD port at 0x60,0x64 irq 1
[    6.750315][    T1] serio: i8042 AUX port at 0x60,0x64 irq 12
[    6.761326][    T1] mousedev: PS/2 mouse device common for all mice
[    6.770325][    T1] input: PC Speaker as 
/devices/platform/pcspkr/input/input2
[    6.782407][    T1] rtc_cmos 00:02: registered as rtc0
[    6.788866][    T1] rtc_cmos 00:02: setting system clock to 
2021-06-14T23:00:28 UTC (1623711628)
[    6.799948][    T1] rtc_cmos 00:02: alarms up to one day, 114 bytes 
nvram, hpet irqs
[    6.810064][    T1] i2c /dev entries driver
[    6.815754][    T1] piix4_smbus 0000:00:01.3: SMBus Host Controller 
not enabled!
[    6.826304][    T1] device-mapper: uevent: version 1.0.3
[    6.833858][    T1] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) 
initialised: dm-devel@redhat.com
[    6.845487][    T1] EDAC sbridge: Seeking for: PCI ID 8086:2fa0
[    6.853202][    T1] EDAC sbridge:  Ver: 1.1.2
[    6.860789][    T1] intel_pstate: CPU model not supported
[    6.872344][    T1] ledtrig-cpu: registered to indicate activity on CPUs
[    6.888920][    T1] NET: Registered protocol family 10
[    6.904591][    T1] Segment Routing with IPv6
[    6.913080][    T1] NET: Registered protocol family 17
[    6.920930][    T1] Key type dns_resolver registered
[    6.931929][    T1] IPI shorthand broadcast: enabled
[    6.940569][    T1] AVX2 version of gcm_enc/dec engaged.
[    6.947999][    T1] AES CTR mode by8 optimization enabled
[    6.960698][    T1] sched_clock: Marking stable (5325535054, 
1635099995)->(8958580926, -1997945877)
[    6.985319][    T1] registered taskstats version 1
[    6.995883][    T1] Loading compiled-in X.509 certificates
[    7.006689][    T1] Loaded X.509 cert 'Build time autogenerated 
kernel key: 4855da498a739ec59685b03b61a943f1fee5db94'
[    7.029613][    T1] Key type ._fscrypt registered
[    7.038119][    T1] Key type .fscrypt registered
[    7.050737][    T1] Key type fscrypt-provisioning registered
[    7.076264][    T1] Key type encrypted registered
[    7.096338][    T1] xenbus_probe_frontend: Device with no driver: 
device/pci/0
[    7.115726][    T1] xenbus_probe_frontend: Device with no driver: 
device/vkbd/0
[    7.129174][    T1] PM:   Magic number: 9:454:49
[    7.139569][    T1] RAS: Correctable Errors collector initialized.
[    7.166109][    T1] Freeing unused kernel image (initmem) memory: 2692K
[    7.187097][    T1] Write protecting the kernel read-only data: 63488k
[    7.204674][    T1] Freeing unused kernel image (text/rodata gap) 
memory: 2024K
[    7.217515][    T1] Freeing unused kernel image (rodata/data gap) 
memory: 1200K
[    7.233657][    T1] Run /init as init process
[    7.249063][    T1]   with arguments:
[    7.262046][    T1]     /init
[    7.275373][    T1]   with environment:
[    7.286303][    T1]     HOME=/
[    7.297475][    T1]     TERM=linux
[    7.309446][    T1]     real_root=LABEL=RAID-GT
[    7.316690][    T1]     intel_iommu=on
[    7.323916][    T1]     pti=off
^[[32;1m>>^[[0;39m^[[1m Genkernel 4.2.1 (2021-06-14 13:58:02 UTC). Linux 
kernel 5.13.0-rc6-x86_64 ^[[0;39m
[    8.041945][  T102] input: ImExPS/2 Generic Explorer Mouse as 
/devices/platform/i8042/serio1/input/input3
^[[32;1m>>^[[0;39m^[[1m Activating udev ... ^[[0;39m
[   10.155010][ T2645] udevd[2645]: starting eudev-3.2.10
[   10.375852][ T2663] ACPI: bus type USB registered
[   10.385577][ T2663] usbcore: registered new interface driver usbfs
[   10.405777][ T2663] usbcore: registered new interface driver hub
[   10.417795][ T2663] usbcore: registered new device driver usb
[   10.484195][ T2663] xhci_hcd 0000:00:05.0: xHCI Host Controller
[   10.496895][ T2663] xhci_hcd 0000:00:05.0: new USB bus registered, 
assigned bus number 1
[   10.575406][ T2663] xhci_hcd 0000:00:05.0: hcc params 0x0200eec0 hci 
version 0x110 quirks 0x0000000000800010
[   10.610013][ T2663] usb usb1: New USB device found, idVendor=1d6b, 
idProduct=0002, bcdDevice= 5.13
[   10.638595][ T2663] usb usb1: New USB device strings: Mfr=3, 
Product=2, SerialNumber=1
[   10.655835][ T2663] usb usb1: Product: xHCI Host Controller
[   10.664769][ T2663] usb usb1: Manufacturer: Linux 5.13.0-rc6-x86_64 
xhci-hcd
[   10.673950][ T2663] usb usb1: SerialNumber: 0000:00:05.0
[   10.683186][ T2663] hub 1-0:1.0: USB hub found
[   10.690075][ T2663] hub 1-0:1.0: 2 ports detected
[   10.698791][ T2663] xhci_hcd 0000:00:05.0: xHCI Host Controller
[   10.708191][ T2663] xhci_hcd 0000:00:05.0: new USB bus registered, 
assigned bus number 2
[   10.719887][ T2663] xhci_hcd 0000:00:05.0: Host supports USB 3.1 
Enhanced SuperSpeed
[   10.733401][ T2663] usb usb2: We don't know the algorithms for LPM 
for this host, disabling LPM.
[   10.745074][ T2663] usb usb2: New USB device found, idVendor=1d6b, 
idProduct=0003, bcdDevice= 5.13
[   10.755991][ T2663] usb usb2: New USB device strings: Mfr=3, 
Product=2, SerialNumber=1
[   10.765660][ T2663] usb usb2: Product: xHCI Host Controller
[   10.772771][ T2663] usb usb2: Manufacturer: Linux 5.13.0-rc6-x86_64 
xhci-hcd
[   10.784533][ T2663] usb usb2: SerialNumber: 0000:00:05.0
[   10.799548][ T2663] hub 2-0:1.0: USB hub found
[   10.810746][ T2663] hub 2-0:1.0: 2 ports detected
^[[32;1m>>^[[0;39m^[[1m Determining root device (trying LABEL=RAID-GT) ...
^[[32;1m>>^[[0;39m^[[1m Root device detected as /dev/xvda! ^[[0;39m
^[[32;1m>>^[[0;39m^[[1m Mounting /dev/xvda as root ... ^[[0;39m
^[[32;1m>>^[[0;39m^[[1m Using mount -t xfs -o ro /dev/xvda /newroot ^[[0;39m
[   10.933758][ T2707] XFS (xvda): Mounting V5 Filesystem
[   11.006090][  T102] usb 1-1: new high-speed USB device number 2 using 
xhci_hcd
[   11.103723][ T2707] XFS (xvda): Ending clean mount
[   11.211807][  T102] usb 1-1: New USB device found, idVendor=1a40, 
idProduct=0101, bcdDevice= 1.11
[   11.225866][  T102] usb 1-1: New USB device strings: Mfr=0, 
Product=1, SerialNumber=0
[   11.237347][  T102] usb 1-1: Product: USB 2.0 Hub
[   11.249932][  T102] hub 1-1:1.0: USB hub found
[   11.259712][  T102] hub 1-1:1.0: 4 ports detected
^[[32;1m>>^[[0;39m^[[1m Restoring console log level (7) ... ^[[0;39m
^[[32;1m>>^[[0;39m^[[1m Switching to real root: switch_root /newroot 
/lib/systemd/systemd  ^[[0;39m
[   11.653028][  T102] usb 1-1.1: new high-speed USB device number 3 
using xhci_hcd
[   11.857879][  T102] usb 1-1.1: New USB device found, idVendor=1a40, 
idProduct=0201, bcdDevice= 1.00
[   11.873158][  T102] usb 1-1.1: New USB device strings: Mfr=0, 
Product=1, SerialNumber=0
[   11.888408][  T102] usb 1-1.1: Product: USB 2.0 Hub [MTT]
[   11.904923][  T102] hub 1-1.1:1.0: USB hub found
[   11.915361][  T102] hub 1-1.1:1.0: 7 ports detected
[   12.218120][   T64] usb 1-1.1.3: new full-speed USB device number 4 
using xhci_hcd
[   12.494108][   T64] usb 1-1.1.3: New USB device found, idVendor=1d50, 
idProduct=6122, bcdDevice= 1.01
[   12.507285][   T64] usb 1-1.1.3: New USB device strings: Mfr=1, 
Product=2, SerialNumber=0
[   12.519926][   T64] usb 1-1.1.3: Product: Ultimate Hacking Keyboard
[   12.529243][   T64] usb 1-1.1.3: Manufacturer: Ultimate Gadget 
Laboratories
[   12.947814][    T1] systemd[1]: systemd 248 running in system mode. 
(+PAM -AUDIT -SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS 
+OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD 
-LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 +LZ4 
+XZ -ZLIB -ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
[   13.007356][    T1] systemd[1]: Detected virtualization xen.
[   13.024478][    T1] systemd[1]: Detected architecture x86-64.

Welcome to ^[[1;32mGentoo/Linux^[[0m!

[   15.137251][    T1] systemd[1]: 
/lib/systemd/system/lightdm.service:8: Standard output type syslog is 
obsolete, automatically updating to journal. Please update your unit 
file, and consider removing the setting altogether.
[   15.187556][    T1] systemd[1]: Queued start job for default target 
Graphical Interface.
[   15.259644][    T1] systemd[1]: Created slice system-getty.slice.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39msystem-getty.slice^[[0m.
[   15.285724][    T1] systemd[1]: Created slice system-modprobe.slice.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39msystem-modprobe.slice^[[0m.
[   15.312934][    T1] systemd[1]: Created slice 
system-serial\x2dgetty.slice.
[^[[0;32m  OK  ^[[0m] Created slice 
^[[0;1;39msystem-serial\x2dgetty.slice^[[0m.
[   15.340276][    T1] systemd[1]: Created slice system-syslog\x2dng.slice.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39msystem-syslog\x2dng.slice^[[0m.
[   15.373562][    T1] systemd[1]: Created slice 
system-systemd\x2dfsck.slice.
[^[[0;32m  OK  ^[[0m] Created slice 
^[[0;1;39msystem-systemd\x2dfsck.slice^[[0m.
[   15.406079][    T1] systemd[1]: Created slice User and Session Slice.
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser and Session Slice^[[0m.
[   15.423218][    T1] systemd[1]: Started Dispatch Password Requests to 
Console Directory Watch.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDispatch Password …ts to Console 
Directory Watch^[[0m.
[   15.445670][    T1] systemd[1]: Started Forward Password Requests to 
Wall Directory Watch.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mForward Password R…uests to Wall 
Directory Watch^[[0m.
[   15.465687][    T1] systemd[1]: Condition check resulted in Arbitrary 
Executable File Formats File System Automount Point being skipped.
[   15.483892][    T1] systemd[1]: Reached target Paths.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mPaths^[[0m.
[   15.496104][    T1] systemd[1]: Reached target Slices.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSlices^[[0m.
[   15.521323][    T1] systemd[1]: Listening on Process Core Dump Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mProcess Core Dump Socket^[[0m.
[   15.547519][    T1] systemd[1]: Listening on initctl Compatibility 
Named Pipe.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39minitctl Compatibility Named 
Pipe^[[0m.
[   15.586114][    T1] systemd[1]: Listening on Journal Audit Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Audit Socket^[[0m.
[   15.609791][    T1] systemd[1]: Listening on Journal Socket (/dev/log).
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket (/dev/log)^[[0m.
[   15.632269][    T1] systemd[1]: Listening on Journal Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mJournal Socket^[[0m.
[   15.674676][    T1] systemd[1]: Listening on Network Service Netlink 
Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mNetwork Service Netlink 
Socket^[[0m.
[   15.712060][    T1] systemd[1]: Listening on udev Control Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Control Socket^[[0m.
[   15.735675][    T1] systemd[1]: Listening on udev Kernel Socket.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mudev Kernel Socket^[[0m.
[   15.763745][    T1] systemd[1]: Mounting Huge Pages File System...
          Mounting ^[[0;1;39mHuge Pages File System^[[0m...
[   15.786328][    T1] systemd[1]: Mounting POSIX Message Queue File 
System...
          Mounting ^[[0;1;39mPOSIX Message Queue File System^[[0m...
[   15.807103][    T1] systemd[1]: Mounting Kernel Debug File System...
          Mounting ^[[0;1;39mKernel Debug File System^[[0m...
[   15.829477][    T1] systemd[1]: Mounting Kernel Trace File System...
          Mounting ^[[0;1;39mKernel Trace File System^[[0m...
[   15.850653][    T1] systemd[1]: Starting Create list of static device 
nodes for the current kernel...
          Starting ^[[0;1;39mCreate list of st…odes for the current 
kernel^[[0m...
[   15.874516][    T1] systemd[1]: Starting Load Kernel Module configfs...
          Starting ^[[0;1;39mLoad Kernel Module configfs^[[0m...
[   15.898604][    T1] systemd[1]: Starting Load Kernel Module drm...
          Starting ^[[0;1;39mLoad Kernel Module drm^[[0m...
[   15.934381][    T1] systemd[1]: Starting Load Kernel Module fuse...
          Starting ^[[0;1;39mLoad Kernel Module fuse^[[0m...
[   15.968942][    T1] systemd[1]: Condition check resulted in Set Up 
Additional Binary Formats being skipped.
[   15.993591][    T1] systemd[1]: Starting File System Check on Root 
Device...
          Starting ^[[0;1;39mFile System Check on Root Device^[[0m...
[   16.026529][    T1] systemd[1]: Starting Journal Service...
          Starting ^[[0;1;39mJournal Service^[[0m...
[   16.059228][    T1] systemd[1]: Starting Load Kernel Modules...
          Starting ^[[0;1;39mLoad Kernel Modules^[[0m...
[   16.083609][    T1] systemd[1]: Starting Coldplug All udev Devices...
          Starting ^[[0;1;39mColdplug All udev Devices^[[0m...
[   16.114369][    T1] systemd[1]: Mounted Huge Pages File System.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mHuge Pages [   16.148798][ T1] 
systemd[1]: Mounted POSIX Message Queue File System.
File System^[[0m.
[^[[0;32m  OK  [   16.180552][    T1] systemd[1]: Mounted Kernel Debug 
File System.
^[[0m] Mounted ^[[0;1;39mPOSIX Mes[   16.205187][    T1] systemd[1]: 
Mounted Kernel Trace File System.
sage Queue File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;3[   16.232991][    T1] systemd[1]: 
Finished Create list of static device nodes for the current kernel.
9mKernel Debug File System^[[0m. [   16.269094][    T1] systemd[1]: 
modprobe@configfs.service: Deactivated successfully.

[^[[0;32m  OK  ^[[0m] Mounted ^[[0[   16.295407][    T1] systemd[1]: 
Finished Load Kernel Module configfs.
;1;39mKernel Trace File System^[[[   16.310922][    T1] systemd[1]: 
Started Journal Service.
0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mCreate list of st… nodes for the 
current kernel^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module configfs^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mJournal Service^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module drm^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad Kernel Module fuse^[[0m.
          Mounting ^[[0;1;39mFUSE Control File System^[[0m...
          Mounting ^[[0;1;39mKernel Configuration File System^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System Check on Root Device^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mFUSE Control File System^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39mKernel Configuration File System^[[0m.
          Starting ^[[0;1;39mRemount Root and Kernel File Systems^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mColdplug All udev Devices^[[0m.
[   16.818156][ T2804] xfs filesystem being remounted at / supports 
timestamps until 2038 (0x7fffffff)
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mRemount Root and Kernel File 
Systems^[[0m.
          Starting ^[[0;1;39mFlush Journal to Persistent Storage^[[0m...
          Starting ^[[0;1;39mLoad/Save Random Seed^[[0m...
          Starting ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m...
[   16.919087][ T2795] systemd-journald[2795]: Received client request 
to flush runtime journal.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mLoad/Save Random Seed^[[0m.
[   17.303339][ T2797] [drm] amdgpu kernel modesetting enabled.
[   17.317088][ T2797] amdgpu: CRAT table disabled by module option
[   17.328266][ T2797] amdgpu: Virtual CRAT table created for CPU
[^[[0;32m  OK  ^[[[   17.338547][ T2797] amdgpu: Topology: Add CPU node
0m] Finished ^[[0;1;39mCreate Static Device Nodes in /dev^[[0m.
[^[[0;32m  OK  ^[[[   17.358475][ T2797] xen: --> pirq=64 -> irq=40 (gsi=40)
0m] Reached targ[   17.370634][ T2797] [drm] initializing kernel 
modesetting (PITCAIRN 0x1002:0x6811 0x1787:0x2337 0x00).
et ^[[0;1;39mLocal File Systems ([   17.388573][ T2797] amdgpu 
0000:00:06.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
Pre)^[[0m.
[   17.412516][ T2797] [drm] register mmio base: 0x53040000
[   17.421615][ T2797] [drm] register mmio size: 262144
[^[[0;32m  OK  ^[[[   17.429451][ T2797] [drm] add ip block number 0 
<si_common>
0m] Reached targ[   17.440046][ T2797] [drm] add ip block number 1 
<gmc_v6_0>
et ^[[0;1;39mCont[   17.450850][ T2797] [drm] add ip block number 2 <si_ih>
ainers^[[0m.
[   17.459704][ T2797] [drm] add ip block number 3 <gfx_v6_0>
[   17.469800][ T2797] [drm] add ip block number 4 <si_dma>
[   17.481630][ T2797] [drm] add ip block number 5 <si_dpm>
[   17.491880][ T2797] [drm] add ip block number 6 <dce_v6_0>
[   17.504557][ T2797] [drm] add ip block number 7 <uvd_v3_1>
[   17.517377][ T2797] kfd kfd: amdgpu: PITCAIRN  not supported in kfd
          Starting ^[[0;1;39mRule-based Manage…for Device Events and 
Files^[[0m...
[   17.820407][ T2797] amdgpu 0000:00:06.0: amdgpu: Fetched VBIOS from 
ROM BAR
[   17.838104][ T2797] amdgpu: ATOM BIOS: 113-C6300100-R27
[   17.848202][ T2797] [drm] GPU posting now...
[   17.870519][ T2797] [drm] vm size is 64 GB, 2 levels, block size is 
10-bit, fragment size is 9-bit
[   17.894837][ T2797] amdgpu 0000:00:06.0: amdgpu: VRAM: 2048M 
0x000000F400000000 - 0x000000F47FFFFFFF (2048M used)
[   17.908213][ T2797] amdgpu 0000:00:06.0: amdgpu: GART: 1024M 
0x000000FF00000000 - 0x000000FF3FFFFFFF
[   17.920376][ T2797] [drm] Detected VRAM RAM=2048M, BAR=256M
[   17.928787][ T2797] [drm] RAM width 256bits GDDR5
[   17.956799][ T2797] [drm] amdgpu: 2048M of VRAM memory ready
[   17.964555][ T2797] [drm] amdgpu: 3072M of GTT memory ready.
[   17.971939][ T2797] [drm] GART: num cpu pages 262144, num gpu pages 
262144
[   17.984049][ T2797] amdgpu 0000:00:06.0: amdgpu: PCIE GART of 1024M 
enabled (table at 0x000000F400000000).
[   18.035491][ T2797] [drm] Internal thermal controller with fan control
[   18.049827][ T2797]     ui class: none
[   18.056300][ T2797]     internal class: boot
[   18.062643][ T2797]     caps:
[   18.067278][ T2797] [drm]     uvd    vclk: 0 dclk: 0
[   18.074867][ T2797] [drm]         power level 0    sclk: 15000 mclk: 
15000 vddc: 900 vddci: 950 pcie gen: 3
[   18.090020][ T2797]     status: c r b
[   18.097197][ T2797]     ui class: performance
[   18.107288][ T2797]     internal class: none
[   18.113878][ T2797]     caps:
[   18.118430][ T2797] [drm]     uvd    vclk: 0 dclk: 0
[   18.124781][ T2797] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   18.138324][ T2797] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   18.151343][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   18.164373][ T2797] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   18.177297][ T2797]     status:
[   18.181304][ T2797]     ui class: none
[   18.186258][ T2797]     internal class: uvd
[   18.191745][ T2797]     caps: video
[   18.196155][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   18.203724][ T2797] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   18.216835][ T2797] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   18.229721][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   18.242063][ T2797]     status:
[   18.246771][ T2797]     ui class: none
[   18.253158][ T2797]     internal class: ulv
[   18.260493][ T2797]     caps:
[   18.267011][ T2797] [drm]     uvd    vclk: 0 dclk: 0
[   18.267018][ T2797] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   18.267023][ T2797] [drm]         power level 1    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   18.267026][ T2797] [drm]         power level 2    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[^[[0;32m  OK  ^[[[   18.267029][ T2797]     status:
0m] Started ^[[0;[   18.267035][ T2797] [drm] amdgpu: dpm initialized
1;39mRule-based [   18.267741][ T2797] [drm] AMDGPU Display Connectors
Manager for Devi[   18.370005][ T2797] [drm] Connector 0:
ce Events and Fi[   18.377128][ T2797] [drm]   DP-1
les^[[0m.
[   18.383200][ T2797] [drm]   HPD5
[   18.392889][ T2797] [drm]   DDC: 0x1950 0x1950 0x1951 0x1951 0x1952 
0x1952 0x1953 0x1953
[   18.411775][ T2797] [drm]   Encoders:
[   18.417685][ T2797] [drm]     DFP1: INTERNAL_UNIPHY2
[   18.426558][ T2797] [drm] Connector 1:
[   18.435561][ T2797] [drm]   HDMI-A-1
[   18.451407][ T2797] [drm]   HPD1
[   18.468892][ T2797] [drm]   DDC: 0x1954 0x1954 0x1955 0x1955 0x1956 
0x1956 0x1957 0x1957
[   18.494327][ T2797] [drm]   Encoders:
[   18.502168][ T2797] [drm]     DFP2: INTERNAL_UNIPHY1
[   18.510053][ T2797] [drm] Connector 2:
[   18.519890][ T2797] [drm]   DVI-I-1
[   18.530288][ T2797] [drm]   HPD6
[   18.538796][ T2797] [drm]   DDC: 0x1960 0x1960 0x1961 0x1961 0x1962 
0x1962 0x1963 0x1963
[   18.556927][ T2797] [drm]   Encoders:
[   18.568999][ T2797] [drm]     DFP3: INTERNAL_UNIPHY
[   18.569004][ T2797] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[   18.596517][ T2797] [drm] Found UVD firmware Version: 64.0 Family ID: 13
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/ttyS0^[[0m.
[   18.761364][  T102] input: AT Translated Set 2 keyboard as 
/devices/platform/i8042/serio0/input/input4
[^[[0;32m  OK  ^[[0m] Found device ^[[0;1;39m/dev/hvc0^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mLoad/Save RF …itch Status 
/dev/rfkill Watch^[[0m.
[   18.954908][ T2845] input: Xen Virtual Keyboard as 
/devices/virtual/input/input5
[^[[0;32m  OK  ^[[0m] Found device 
^[[0;1;39m/dev/disk/by-label/RAID-GT-SWAP^[[0m.
[   19.003182][ T2845] input: Xen Virtual Pointer as 
/devices/virtual/input/input6
          Activating swap ^[[0;1;39m/dev/disk/by-label/RAID-GT-SWAP^[[0m...
[^[[0;32m  OK  ^[[0m] Found device 
^[[0;1;39m/dev/disk/by-label/RAID-GT-PT^[[0m.
          Starting ^[[0;1;39mFile System 
Check…ev/disk/by-label/RAID-GT-PT^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mFile System 
Check…/dev/disk/by-label/RAID-GT-PT^[[0m.
          Mounting ^[[0;1;39m/pt^[[0m...
[   19.227265][ T2865] XFS (xvdc): Mounting V5 Filesystem
[   19.252685][ T2832] hid: raw HID events driver (C) Jiri Kosina
[   19.311433][ T2832] usbcore: registered new interface driver usbhid
[   19.330800][ T2832] usbhid: USB HID core driver
[   19.345140][ T2797] switching from power state:
[   19.361215][ T2797]     ui class: none
[   19.367430][ T2797]     internal class: boot
[   19.375710][ T2797]     caps:
[   19.381495][ T2797] [drm]     uvd    vclk: 0 dclk: 0
[   19.390691][ T2797] [drm]         power level 0    sclk: 15000 mclk: 
15000 vddc: 900 vddci: 950 pcie gen: 3
[   19.407695][ T2797]     status: c b
[   19.413402][ T2797] switching to power state:
[   19.419706][ T2797]     ui class: performance
[   19.426595][ T2797]     internal class: none
[   19.433893][ T2797]     caps:
[   19.436061][ T2832] hid-generic 0003:1D50:6122.0001: hiddev0,hidraw0: 
USB HID v1.10 Device [Ultimate Gadget Laboratories Ultimate Hacking 
Keyboard] on usb-0000:00:05.0-1.1.3/input0
[   19.440181][ T2797] [drm]     uvd    vclk: 0 dclk: 0
[   19.469256][ T2832] input: Ultimate Gadget Laboratories Ultimate 
Hacking Keyboard as 
/devices/pci0000:00/0000:00:05.0/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.1/0003:1D50:6122.0002/input/input7 

[   19.478750][ T2797] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   19.478765][ T2797] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   19.560381][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   19.563440][ T2832] hid-generic 0003:1D50:6122.0002: input,hidraw1: 
USB HID v1.10 Keyboard [Ultimate Gadget Laboratories Ultimate Hacking 
Keyboard] on usb-0000:00:05.0-1.1.3/input1
[   19.572986][ T2797] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   19.573000][ T2797]     status: r
[   19.599278][ T2832] input: Ultimate Gadget Laboratories Ultimate 
Hacking Keyboard as 
/devices/pci0000:00/0000:00:05.0/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.2/0003:1D50:6122.0003/input/input8 

[   19.624115][  T102] switching from power state:
[   19.665310][  T102]     ui class: performance
[   19.672703][  T102]     internal class: none
[   19.678905][  T102]     caps:
[   19.682074][ T2832] hid-generic 0003:1D50:6122.0003: input,hidraw2: 
USB HID v1.10 Device [Ultimate Gadget Laboratories Ultimate Hacking 
Keyboard] on usb-0000:00:05.0-1.1.3/input2
[   19.684988][  T102] [drm]     uvd    vclk: 0 dclk: 0
[   19.738144][ T2832] input: Ultimate Gadget Laboratories Ultimate 
Hacking Keyboard as 
/devices/pci0000:00/0000:00:05.0/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.3/0003:1D50:6122.0004/input/input9 

[   19.754397][  T102] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   19.820490][  T102] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   19.841931][  T102] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   19.843255][ T2865] XFS (xvdc): Ending clean mount
[   19.864342][  T102] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   19.864363][  T102]     status:
[   19.866318][ T2832] hid-generic 0003:1D50:6122.0004: input,hidraw3: 
USB HID v1.10 Device [Ultimate Gadget Laboratories Ultimate Hacking 
Keyboard] on usb-0000:00:05.0-1.1.3/input3
[   19.868918][ T2832] input: Ultimate Gadget Laboratories Ultimate 
Hacking Keyboard as 
/devices/pci0000:00/0000:00:05.0/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.4/0003:1D50:6122.0005/input/input10 

[   19.870054][ T2832] hid-generic 0003:1D50:6122.0005: input,hidraw4: 
USB HID v1.10 Mouse [Ultimate Gadget Laboratories Ultimate Hacking 
Keyboard] on usb-0000:00:05.0-1.1.3/input4
[   20.011355][  T102]  c
[   20.015666][  T102] switching to power state:
[   20.023234][  T102]     ui class: performance
[   20.030345][  T102]     internal class: none
[   20.037912][  T102]     caps:
[   20.042646][  T102] [drm]     uvd    vclk: 0 dclk: 0
[   20.050858][  T102] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   20.066462][  T102] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   20.078796][  T102] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   20.092617][  T102] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   20.113424][  T102]     status: r
[   20.124362][ T2797] switching from power state:
[   20.141252][ T2797]     ui class: performance
[   20.155644][ T2797]     internal class: none
[   20.163503][ T2797]     caps:
[   20.171363][ T2797] [drm]     uvd    vclk: 0 dclk: 0
[   20.181686][ T2797] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   20.199096][ T2797] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   20.211841][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   20.224918][ T2797] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   20.237144][ T2797]     status: c
[   20.241731][ T2797] switching to power state:
[   20.248193][ T2797]     ui class: none
[   20.252742][ T2797]     internal class: uvd
[   20.258404][ T2797]     caps: video
[   20.262427][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   20.269326][ T2797] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   20.283300][ T2797] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   20.295992][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   20.316014][ T2797]     status: r
[   20.465354][ T2865] xfs filesystem being mounted at /pt supports 
timestamps until 2038 (0x7fffffff)
[   20.480237][ T2797] [drm] UVD initialized successfully.
[   20.498794][ T2797] amdgpu 0000:00:06.0: amdgpu: SE 2, SH per SE 2, 
CU per SH 5, active_cu_number 20
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/pt^[[0m.
[   20.535331][ T2797] switching from power state:
[   20.542439][ T2860] Adding 7813116k swap on /dev/xvdb. Priority:-2 
extents:1 across:7813116k SSFS
[   20.543669][ T2848] xen: --> pirq=68 -> irq=45 (gsi=45)
[   20.544040][ T2848] snd_hda_intel 0000:00:07.0: Force to non-snoop mode
[   20.547092][ T2797]     ui class: none
[   20.624498][ T2797]     internal class: uvd
[   20.624527][ T2797]     caps: video
[   20.624531][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   20.624541][ T2797] [drm]         power level 0    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[^[[0;32m  OK  ^[[[   20.624546][ T2797] [drm]         power level 1    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
0m] Activated sw[   20.624550][ T2797] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   20.624553][ T2797]     status: c
ap ^[[0;1;39m/dev[   20.624559][ T2797] switching to power state:
[   20.624562][ T2797]     ui class: none
/disk/by-label/R[   20.624566][ T2797]     internal class: uvd
AID-GT-SWAP^[[0m.[   20.624571][ T2797]     caps: video
[   20.624575][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000

[   20.624578][ T2797] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   20.624582][ T2797] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   20.624585][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   20.624588][ T2797]     status: r
[   20.624920][ T2797] switching from power state:
[   20.868574][ T2797]     ui class: none
[   20.868579][ T2797]     internal class: uvd
[   20.868585][ T2797]     caps: video
[   20.868588][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   20.868592][ T2797] [drm]         power level 0    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   20.868596][ T2797] [drm]         power level 1    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[^[[0;32m  OK  ^[[[   20.948992][ T2797] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
0m] Reached targ[   20.970505][ T2797]     status: c
et ^[[0;1;39mSwap[   20.980935][ T2797] switching to power state:
^[[0m.
[   20.992730][ T2797]     ui class: none
[   21.000855][ T2797]     internal class: uvd
[   21.013359][ T2797]     caps: video
[   21.023259][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   21.035066][ T2797] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   21.053816][ T2797] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   21.053823][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   21.053828][ T2797]     status: r
[   21.083582][ T2797] switching from power state:
[   21.083587][ T2797]     ui class: none
[   21.083589][ T2797]     internal class: uvd
[   21.083594][ T2797]     caps: video
[   21.083598][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   21.083602][ T2797] [drm]         power level 0    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.083606][ T2797] [drm]         power level 1    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.083609][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.083612][ T2797]     status: c
[   21.083616][ T2797] switching to power state:
[   21.083617][ T2797]     ui class: none
[   21.083619][ T2797]     internal class: uvd
[   21.083622][ T2797]     caps: video
[   21.083636][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   21.083638][ T2797] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
          Mountin[   21.083641][ T2797] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
g ^[[0;1;39m/tmp^[[   21.083644][ T2797] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1150 vddci: 1000 pcie gen: 3
[0m...[   21.083647][ T2797]     status: r

[   21.083761][ T2797] switching from power state:
[   21.083763][ T2797]     ui class: none
[   21.083765][ T2797]     internal class: uvd
[   21.083768][ T2797]     caps: video
[   21.083772][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   21.083774][ T2797] [drm]         power level 0    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.083777][ T2797] [drm]         power level 1    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.083780][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.083782][ T2797]     status: c
[   21.083786][ T2797] switching to power state:
[   21.083787][ T2797]     ui class: none
[   21.083788][ T2797]     internal class: uvd
[   21.083802][ T2797]     caps: video
[   21.083805][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   21.083807][ T2797] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   21.083809][ T2797] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   21.083812][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   21.083815][ T2797]     status: r
[   21.083894][ T2797] switching from power state:
[   21.083896][ T2797]     ui class: none
[   21.083898][ T2797]     internal class: uvd
[   21.083901][ T2797]     caps: video
[   21.083904][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   21.083906][ T2797] [drm]         power level 0    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.083909][ T2797] [drm]         power level 1    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.083911][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.083914][ T2797]     status: c
[   21.083927][ T2797] switching to power state:
[   21.083928][ T2797]     ui class: none
[   21.083930][ T2797]     internal class: uvd
[   21.083933][ T2797]     caps: video
[   21.083936][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   21.083938][ T2797] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   21.083941][ T2797] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   21.083944][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   21.083946][ T2797]     status: r
[   21.084063][ T2797] switching from power state:
[   21.084065][ T2797]     ui class: none
[   21.084067][ T2797]     internal class: uvd
[   21.084070][ T2797]     caps: video
[   21.084074][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   21.084076][ T2797] [drm]         power level 0    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.084078][ T2797] [drm]         power level 1    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.084081][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.084084][ T2797]     status: c
[   21.084087][ T2797] switching to power state:
[   21.084088][ T2797]     ui class: none
[   21.084090][ T2797]     internal class: uvd
[   21.084105][ T2797]     caps: video
[   21.084108][ T2797] [drm]     uvd    vclk: 72000 dclk: 56000
[   21.084110][ T2797] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   21.084112][ T2797] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   21.084115][ T2797] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   21.084118][ T2797]     status: r
[   21.268402][ T2797] [drm] fb mappable at 0x4049F000
[   21.494320][  T125] switching from power state:
[   21.505337][ T2797] [drm] vram apper at 0x40000000
[   21.529295][  T125]     ui class: none
[   21.529329][  T125]     internal class: uvd
[   21.559587][ T2797] [drm] size 8294400
[   21.589893][  T125]     caps: video
[   21.598231][ T2797] [drm] fb depth is 24
[   21.607010][  T125]
[   21.607020][  T125] [drm]     uvd    vclk: 72000 dclk: 56000
[   21.607026][  T125] [drm]         power level 0    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.607030][  T125] [drm]         power level 1    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.607034][  T125] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   21.607037][  T125]     status: c
[   21.614126][ T2797] [drm]    pitch is 7680
[   22.063166][  T125] switching to power state:
[   22.063174][  T125]     ui class: performance
          Mountin[   22.063178][  T125]     internal class: none
g ^[[0;1;39m/var/[   22.063184][  T125]     caps:
tmp/portage^[[0m.[   22.063187][  T125] [drm]     uvd    vclk: 0 dclk: 0
..[   22.063191][  T125] [drm]         power level 0    sclk: 30000 
mclk: 15000 vddc: 875 vddci: 850 pcie gen: 3
[   22.063195][  T125] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3

[   22.063199][  T125] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   22.063202][  T125] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   22.063221][  T125]     status: r
[   22.066179][ T2675] switching from power state:
[   22.190757][    T7] input: HDA ATI HDMI HDMI/DP,pcm=3 as 
/devices/pci0000:00/0000:00:07.0/sound/card0/input11
[   22.205742][ T2675]     ui class: performance
[   22.205748][ T2675]     internal class: none
[   22.205754][ T2675]     caps:
[   22.205757][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   22.205760][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   22.205764][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   22.205768][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   22.217260][    T7] input: HDA ATI HDMI HDMI/DP,pcm=7 as 
/devices/pci0000:00/0000:00:07.0/sound/card0/input12
[   22.217729][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   22.236644][    T7] input: HDA ATI HDMI HDMI/DP,pcm=8 as 
/devices/pci0000:00/0000:00:07.0/sound/card0/input13
[   22.240916][ T2675]     status: c
[   22.240926][ T2675] switching to power state:
[   22.240928][ T2675]     ui class: performance
[   22.240931][ T2675]     internal class: none
[   22.240935][ T2675]     caps:
[   22.240937][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   22.240941][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   22.240945][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   22.240948][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   22.250306][    T7] input: HDA ATI HDMI HDMI/DP,pcm=9 as 
/devices/pci0000:00/0000:00:07.0/sound/card0/input14
[   22.253256][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   22.253264][ T2675]     status: r
[   22.265608][ T2675] switching from power state:
[   22.283058][    T7] input: HDA ATI HDMI HDMI/DP,pcm=10 as 
/devices/pci0000:00/0000:00:07.0/sound/card0/input15
[   22.298166][ T2675]     ui class: performance
[   22.298172][ T2675]     internal class: none
[   22.298178][ T2675]     caps:
[   22.298180][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   22.298184][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   22.317108][    T7] input: HDA ATI HDMI HDMI/DP,pcm=11 as 
/devices/pci0000:00/0000:00:07.0/sound/card0/input16
[   22.342210][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   22.342221][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   22.342224][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   22.342228][ T2675]     status: c
[   22.342235][ T2675] switching to power state:
[   22.342237][ T2675]     ui class: performance
[   22.342240][ T2675]     internal class: none
[   22.342243][ T2675]     caps:
[   22.342246][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   22.342249][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   22.342252][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   22.342255][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   22.342258][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   22.342261][ T2675]     status: r
[   22.343815][ T2675] switching from power state:
[   22.731779][ T2675]     ui class: performance
[   22.731785][ T2675]     internal class: none
[   22.731791][ T2675]     caps:
[   22.731793][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   22.731797][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   22.731801][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   22.731804][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   22.731807][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   22.731810][ T2675]     status: c
[   22.731813][ T2675] switching to power state:
[   22.731815][ T2675]     ui class: performance
[   22.731817][ T2675]     internal class: none
[   22.731820][ T2675]     caps:
[   22.731823][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   22.731825][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   22.731828][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   22.731830][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   22.731833][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   22.731836][ T2675]     status: r
[   22.732093][ T2675] switching from power state:
[   22.744686][ T2797] amdgpu 0000:00:06.0: [drm] fb1: amdgpudrmfb frame 
buffer device
[   22.755361][ T2675]     ui class: performance
[   22.755367][ T2675]     internal class: none
[   22.755373][ T2675]     caps:
[   22.755375][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   22.755378][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   22.755383][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   22.755386][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   23.017318][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   23.017328][ T2675]     status: c
[   23.017334][ T2675] switching to power state:
[   23.017337][ T2675]     ui class: performance
[^[[0;32m  OK  ^[[[   23.017339][ T2675]     internal class: none
0m] Finished ^[[0[   23.017343][ T2675]     caps:
;1;39mFlush Jour[   23.017345][ T2675] [drm]     uvd    vclk: 0 dclk: 0
nal to Persisten[   23.017348][ T2675] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 875 vddci: 850 pcie gen: 3
t Storage^[[0m.[   23.017352][ T2675] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
[   23.017355][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3

[   23.017358][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   23.017361][ T2675]     status: r
[   23.017589][ T2675] switching from power state:
[   23.182177][ T2675]     ui class: performance
[   23.182182][ T2675]     internal class: none
[   23.182188][ T2675]     caps:
[   23.182190][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[^[[0;32m  OK  ^[[[   23.182193][ T2675] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3
0m] Mounted ^[[0;[   23.182198][ T2675] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
1;39m/tmp^[[0m.[   23.182201][ T2675] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   23.182204][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3

[   23.182207][ T2675]     status: c
[   23.182211][ T2675] switching to power state:
[   23.182212][ T2675]     ui class: performance
[   23.182214][ T2675]     internal class: none
[   23.182218][ T2675]     caps:
[   23.182220][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   23.182222][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   23.391065][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   23.405447][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   23.419055][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   23.431643][ T2675]     status: r
[   23.431849][ T2675] switching from power state:
[   23.445936][ T2675]     ui class: performance
[^[[0;32m  OK  ^[[[   23.452080][ T2675]     internal class: none
0m] Mounted ^[[0;[   23.458954][ T2675]     caps:
1;39m/var/tmp/po[   23.464338][ T2675] [drm]     uvd    vclk: 0 dclk: 0
rtage^[[0m.[   23.472420][ T2675] [drm]         power level 0 sclk: 30000 
mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3

[   23.485258][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   23.500797][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   23.521450][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   23.542111][ T2675]     status: c
[   23.542123][ T2675] switching to power state:
[   23.542125][ T2675]     ui class: performance
[   23.542128][ T2675]     internal class: none
[^[[0;32m  OK  ^[[[   23.542132][ T2675]     caps:
0m] Reached targ[   23.542134][ T2675] [drm]     uvd    vclk: 0 dclk: 0
et ^[[0;1;39mLoca[   23.542139][ T2675] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 875 vddci: 850 pcie gen: 3
[   23.542143][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
l File Systems^[[[   23.542146][ T2675] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1150 vddci: 1000 pcie gen: 3
0m.
[   23.542149][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   23.542152][ T2675]     status: r
[   23.542388][ T2675] switching from power state:
[   23.698543][ T2675]     ui class: performance
[   23.698548][ T2675]     internal class: none
[   23.698554][ T2675]     caps:
          Startin[   23.698556][ T2675] [drm]     uvd    vclk: 0 dclk: 0
g ^[[0;1;39mCreat[   23.698560][ T2675] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3
e Volatile Files[   23.698563][ T2675] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
[   23.698567][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
  and Directories[   23.698570][ T2675] [drm]         power level 3    
sclk: 95500 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
^[[0m...
[   23.698572][ T2675]     status: c
[   23.830684][ T2675] switching to power state:
[   23.838840][ T2675]     ui class: performance
[   23.847149][ T2675]     internal class: none
[   23.852715][ T2797] [drm] Initialized amdgpu 3.41.0 20150101 for 
0000:00:06.0 on minor 0
[   23.856983][ T2675]     caps:
[   23.856990][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   23.856994][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   23.916632][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   23.932606][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   23.949306][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   23.962636][ T2675]     status: r
[   23.967096][  T102] switching from power state:
[   23.980643][  T102]     ui class: performance
[   23.991446][  T102]     internal class: none
[   23.999549][  T102]     caps:
[   24.007038][  T102] [drm]     uvd    vclk: 0 dclk: 0
[   24.015980][  T102] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   24.037299][  T102] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.051754][  T102] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.069148][  T102] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.086106][  T102]     status: c
[   24.091638][  T102] switching to power state:
[   24.099441][  T102]     ui class: performance
[   24.109180][  T102]     internal class: none
[   24.118614][  T102]     caps:
[   24.125326][  T102] [drm]     uvd    vclk: 0 dclk: 0
[   24.136458][  T102] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   24.154602][  T102] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.169410][  T102] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   24.183031][  T102] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.194934][  T102]     status: r
[   24.198901][ T2675] switching from power state:
[   24.206626][ T2675]     ui class: performance
[   24.212745][ T2675]     internal class: none
[   24.219308][ T2675]     caps:
[   24.223759][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.232206][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   24.232212][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.232216][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.232219][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[^[[0;32m  OK  ^[[[   24.232222][ T2675]     status: c
0m] Finished ^[[0[   24.232227][ T2675] switching to power state:
;1;39mLoad Kerne[   24.232229][ T2675]     ui class: performance
[   24.232231][ T2675]     internal class: none
l Modules^[[0m.
[   24.232235][ T2675]     caps:
[   24.355105][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.363939][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   24.383813][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.398739][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   24.398746][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.398750][ T2675]     status: r
[   24.411364][ T2675] switching from power state:
[   24.452834][ T2675]     ui class: performance
[   24.465425][ T2675]     internal class: none
[   24.472258][ T2675]     caps:
[^[[0;32m  OK  ^[[[   24.479230][ T2675] [drm]     uvd    vclk: 0 dclk: 0
0m] Finished ^[[0[   24.489117][ T2675] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3
;1;39mCreate Vol[   24.512912][ T2675] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
atile Files and [   24.535167][ T2675] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
Directories^[[0m.[   24.559315][ T2675] [drm]         power level 3    
sclk: 95500 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3

[   24.575576][ T2675]     status: c
[   24.581118][ T2675] switching to power state:
[   24.588728][ T2675]     ui class: performance
[   24.595638][ T2675]     internal class: none
[   24.602357][ T2675]     caps:
[   24.602366][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.602373][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   24.602377][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
          Startin[   24.602381][ T2675] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1150 vddci: 1000 pcie gen: 3
g ^[[0;1;39mApply[   24.602384][ T2675] [drm]         power level 3    
sclk: 95500 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
  Kernel Variables^[[0m...
[   24.602387][ T2675]     status: r
[   24.608553][ T2675] switching from power state:
[   24.608562][ T2675]     ui class: performance
[   24.608565][ T2675]     internal class: none
[   24.608572][ T2675]     caps:
[   24.608575][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.608578][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   24.608583][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.608586][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.608589][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.608592][ T2675]     status: c
[   24.608596][ T2675] switching to power state:
[   24.608598][ T2675]     ui class: performance
[   24.608599][ T2675]     internal class: none
[   24.608603][ T2675]     caps:
[   24.608606][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.608608][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   24.608611][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.608614][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   24.608617][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.608620][ T2675]     status: r
[   24.608807][ T2675] switching from power state:
[   24.608809][ T2675]     ui class: performance
[   24.608811][ T2675]     internal class: none
[   24.608815][ T2675]     caps:
[   24.608817][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.608819][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   24.608822][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.608825][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.608828][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.608831][ T2675]     status: c
[   24.608835][ T2675] switching to power state:
[   24.608836][ T2675]     ui class: performance
[   24.608837][ T2675]     internal class: none
[   24.608840][ T2675]     caps:
[   24.608843][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.608845][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   24.608848][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.608850][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   24.608853][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.608856][ T2675]     status: r
[   24.609056][ T2675] switching from power state:
[   24.609059][ T2675]     ui class: performance
[   24.609061][ T2675]     internal class: none
[   24.609064][ T2675]     caps:
[   24.609066][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.609068][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   24.609071][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.609074][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609077][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609080][ T2675]     status: c
[   24.609083][ T2675] switching to power state:
[   24.609084][ T2675]     ui class: performance
[   24.609086][ T2675]     internal class: none
[   24.609089][ T2675]     caps:
[   24.609091][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.609093][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   24.609096][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.609098][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   24.609101][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609103][ T2675]     status: r
[   24.609330][ T2675] switching from power state:
[   24.609333][ T2675]     ui class: performance
[   24.609334][ T2675]     internal class: none
[   24.609338][ T2675]     caps:
[   24.609340][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.609342][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   24.609345][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.609347][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609350][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609353][ T2675]     status: c
[   24.609356][ T2675] switching to power state:
[   24.609357][ T2675]     ui class: performance
[   24.609358][ T2675]     internal class: none
[   24.609361][ T2675]     caps:
[   24.609364][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.609365][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   24.609368][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.609370][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   24.609373][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609376][ T2675]     status: r
[   24.609527][ T2675] switching from power state:
[   24.609529][ T2675]     ui class: performance
[   24.609530][ T2675]     internal class: none
[   24.609534][ T2675]     caps:
[   24.609536][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.609538][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   24.609541][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.609543][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609546][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609549][ T2675]     status: c
[   24.609552][ T2675] switching to power state:
[   24.609553][ T2675]     ui class: performance
[   24.609555][ T2675]     internal class: none
[   24.609558][ T2675]     caps:
[   24.609560][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.609562][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   24.609565][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.609568][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   24.609571][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609573][ T2675]     status: r
[   24.609698][ T2675] switching from power state:
[   24.609701][ T2675]     ui class: performance
[   24.609702][ T2675]     internal class: none
[   24.609706][ T2675]     caps:
[   24.609708][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.609710][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   24.609713][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.609715][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609718][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609721][ T2675]     status: c
[   24.609724][ T2675] switching to power state:
[   24.609725][ T2675]     ui class: performance
[   24.609727][ T2675]     internal class: none
[   24.609730][ T2675]     caps:
[   24.609732][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   24.609733][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   24.609736][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   24.609739][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   24.609741][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   24.609744][ T2675]     status: r
[   24.609867][ T2675] switching from power state:
[   26.004045][ T2675]     ui class: performance
[   26.004053][ T2675]     internal class: none
[   26.004060][ T2675]     caps:
          Startin[   26.004062][ T2675] [drm]     uvd    vclk: 0 dclk: 0
g ^[[0;1;39mUpdat[   26.004067][ T2675] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3
e UTMP about Sys[   26.004072][ T2675] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
tem Boot/Shutdow[   26.004075][ T2675] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
n^[[0m...
[   26.004079][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.004082][ T2675]     status: c
[   26.107188][ T2675] switching to power state:
[   26.114243][ T2675]     ui class: performance
[   26.114257][ T2675]     internal class: none
[   26.114265][ T2675]     caps:
[^[[0;32m  OK  ^[[[   26.114269][ T2675] [drm]     uvd    vclk: 0 dclk: 0
0m] Finished ^[[0[   26.114275][ T2675] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 875 vddci: 850 pcie gen: 3
;1;39mApply Kern[   26.168989][ T2675] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
el Variables^[[0m[   26.187803][ T2675] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1150 vddci: 1000 pcie gen: 3
.
[   26.207730][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.222667][ T2675]     status: r
[   26.227755][    T7] switching from power state:
[   26.234639][    T7]     ui class: performance
[   26.234647][    T7]     internal class: none
[   26.234655][    T7]     caps:
          Startin[   26.234657][    T7] [drm]     uvd    vclk: 0 dclk: 0
g ^[[0;1;39mNetwo[   26.234662][    T7] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3
rk Service^[[0m..[   26.234666][    T7] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
[   26.234670][    T7] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
.
[   26.234677][    T7] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.331885][    T7]     status: c
[   26.336148][    T7] switching to power state:
[   26.341864][    T7]     ui class: none
[   26.348125][    T7]     internal class: uvd
[   26.353875][    T7]     caps: video
[   26.353885][    T7] [drm]     uvd    vclk: 72000 dclk: 56000
[   26.353890][    T7] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   26.353894][    T7] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   26.353897][    T7] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   26.353901][    T7]     status: r
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mUpdate UTMP about System 
Boot/Shutdown^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mSystem Initialization^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mDaily Cleanup of Temporary 
Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mTimers^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mACPID Listen Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mAvahi mDNS/DNS-SD Stack 
Activation Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Listening on ^[[0;1;39mCUPS S[   26.532759][ T2675] 
switching from power state:
[   26.541552][ T2675]     ui class: none
cheduler^[[0m.
[   26.547731][ T2675]     internal class: uvd
[   26.555550][ T2675]     caps: video
[   26.560604][ T2675] [drm]     uvd    vclk: 72000 dclk: 56000
[   26.569568][ T2675] [drm]         power level 0    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.584803][ T2675] [drm]         power level 1    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.584812][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.584816][ T2675]     status: c
[   26.584824][ T2675] switching to power state:
[   26.584827][ T2675]     ui class: none
[   26.584829][ T2675]     internal class: uvd
[^[[0;32m  OK  ^[[[   26.584833][ T2675]     caps: video
0m] Listening on[   26.584836][ T2675] [drm]     uvd    vclk: 72000 
dclk: 56000
[   26.584840][ T2675] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
  ^[[0;1;39mD-Bus [   26.584843][ T2675] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
System Message B[   26.584846][ T2675] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   26.584849][ T2675]     status: r
us Socket^[[0m.
[   26.602682][ T2675] switching from power state:
[   26.602688][ T2675]     ui class: none
[   26.602691][ T2675]     internal class: uvd
[   26.602698][ T2675]     caps: video
[   26.602702][ T2675] [drm]     uvd    vclk: 72000 dclk: 56000
[   26.602706][ T2675] [drm]         power level 0    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.602721][ T2675] [drm]         power level 1    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.602725][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.602728][ T2675]     status: c
[   26.602731][ T2675] switching to power state:
[   26.602733][ T2675]     ui class: none
[   26.602734][ T2675]     internal class: uvd
[   26.602738][ T2675]     caps: video
[   26.602742][ T2675] [drm]     uvd    vclk: 72000 dclk: 56000
[   26.602744][ T2675] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   26.602747][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   26.602750][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   26.602753][ T2675]     status: r
[   26.602912][ T2675] switching from power state:
[   26.602914][ T2675]     ui class: none
[   26.602916][ T2675]     internal class: uvd
[   26.602920][ T2675]     caps: video
[   26.602923][ T2675] [drm]     uvd    vclk: 72000 dclk: 56000
[   26.602925][ T2675] [drm]         power level 0    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.602928][ T2675] [drm]         power level 1    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.602932][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   26.602935][ T2675]     status: c
[   26.602938][ T2675] switching to power state:
[   26.602940][ T2675]     ui class: none
[   26.602941][ T2675]     internal class: uvd
[   26.602945][ T2675]     caps: video
[   26.602948][ T2675] [drm]     uvd    vclk: 72000 dclk: 56000
[   26.602949][ T2675] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   26.602952][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   26.602997][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   26.603000][ T2675]     status: r
[   26.621334][ T2675] switching from power state:
[   27.170889][ T2675]     ui class: none
[   27.170897][ T2675]     internal class: uvd
[   27.170903][ T2675]     caps: video
[^[[0;32m  OK  ^[[[   27.170907][ T2675] [drm]     uvd    vclk: 72000 
dclk: 56000
0m] Reached targ[   27.170912][ T2675] [drm]         power level 0    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   27.170918][ T2675] [drm]         power level 1    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
et ^[[0;1;39mSock[   27.170921][ T2675] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
ets^[[0m.
[   27.170925][ T2675]     status: c
[   27.170928][ T2675] switching to power state:
[   27.170930][ T2675]     ui class: none
[   27.170932][ T2675]     internal class: uvd
[   27.170935][ T2675]     caps: video
[   27.170939][ T2675] [drm]     uvd    vclk: 72000 dclk: 56000
[   27.170941][ T2675] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   27.170945][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   27.170948][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   27.170951][ T2675]     status: r
[   27.171240][ T2675] switching from power state:
[   27.384522][ T2675]     ui class: none
[   27.384533][ T2675]     internal class: uvd
[   27.384545][ T2675]     caps: video
[   27.384550][ T2675] [drm]     uvd    vclk: 72000 dclk: 56000
[^[[0;32m  OK  ^[[[   27.384559][ T2675] [drm]         power level 0    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
0m] Reached targ[   27.384564][ T2675] [drm]         power level 1    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
et ^[[0;1;39mBasi[   27.384568][ T2675] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   27.384572][ T2675]     status: c
c System^[[0m.
[   27.384576][ T2675] switching to power state:
[   27.384579][ T2675]     ui class: none
[   27.384580][ T2675]     internal class: uvd
[   27.384584][ T2675]     caps: video
[   27.384587][ T2675] [drm]     uvd    vclk: 72000 dclk: 56000
[   27.384591][ T2675] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   27.384595][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   27.384598][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   27.384601][ T2675]     status: r
[   27.384931][ T2675] switching from power state:
[   27.588304][ T2675]     ui class: none
[   27.588311][ T2675]     internal class: uvd
[   27.588317][ T2675]     caps: video
[^[[0;32m  OK  ^[[[   27.588321][ T2675] [drm]     uvd    vclk: 72000 
dclk: 56000
0m] Started ^[[0;[   27.588328][ T2675] [drm]         power level 0    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
1;39mACPI event [   27.588332][ T2675] [drm]         power level 1    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
daemon^[[0m.
[   27.588336][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   27.588339][ T2675]     status: c
[   27.588343][ T2675] switching to power state:
[   27.588345][ T2675]     ui class: none
[   27.588346][ T2675]     internal class: uvd
[   27.588350][ T2675]     caps: video
[   27.588353][ T2675] [drm]     uvd    vclk: 72000 dclk: 56000
[   27.588356][ T2675] [drm]         power level 0    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   27.588359][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   27.588362][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   27.588365][ T2675]     status: r
[   27.588493][    T7] switching from power state:
[   27.832641][    T7]     ui class: none
[   27.832648][    T7]     internal class: uvd
[   27.832656][    T7]     caps: video
          Startin[   27.832660][    T7] [drm]     uvd    vclk: 72000 
dclk: 56000
g ^[[0;1;39mSave/[   27.832666][    T7] [drm]         power level 0    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
Restore Sound Ca[   27.832671][    T7] [drm]         power level 1    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
rd State^[[0m... [   27.832674][    T7] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   27.832678][    T7]     status: c

[   27.832682][    T7] switching to power state:
[   27.832684][    T7]     ui class: performance
[   27.832686][    T7]     internal class: none
[   27.946928][    T7]     caps:
[   27.946946][    T7] [drm]     uvd    vclk: 0 dclk: 0
[   27.946980][    T7] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   27.946986][    T7] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   27.946989][    T7] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   27.946993][    T7] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
          Startin[   27.946996][    T7]     status: r
g ^[[0;1;39mAvahi[   27.967396][ T2675] switching from power state:
  mDNS/DNS-SD Sta[   28.077933][ T2675]     ui class: performance
ck^[[0m...
[   28.087671][ T2675]     internal class: none
[   28.098642][ T2675]     caps:
[   28.104986][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   28.114477][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   28.114497][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   28.114501][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   28.114505][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[^[[0;32m  OK  ^[[[   28.114508][ T2675]     status: c
0m] Started ^[[0;[   28.114519][ T2675] switching to power state:
1;39mD-Bus Syste[   28.114521][ T2675]     ui class: performance
[   28.114524][ T2675]     internal class: none
m Message Bus^[[0[   28.114528][ T2675]     caps:
m.
[   28.114531][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   28.114533][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   28.277230][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   28.293803][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   28.293819][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   28.293825][ T2675]     status: r
[   28.294117][ T2675] switching from power state:
[^[[0;32m  OK  ^[[[   28.337995][ T2675]     ui class: performance
0m] Started ^[[0;[   28.347115][ T2675]     internal class: none
1;39mTurn off se[   28.359330][ T2675]     caps:
gmentation offlo[   28.370448][ T2675] [drm]     uvd    vclk: 0 dclk: 0
ading for eth0^[[[   28.389580][ T2675] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3
0m.
[   28.420716][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   28.441515][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   28.459397][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   28.477933][ T2675]     status: c
[   28.482524][ T2675] switching to power state:
[   28.490844][ T2675]     ui class: performance
[   28.499195][ T2675]     internal class: none
[   28.507032][ T2675]     caps:
[   28.512190][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   28.519530][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   28.534919][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   28.554026][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   28.583441][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   28.583451][ T2675]     status: r
[   28.583780][ T2675] switching from power state:
[   28.633284][ T2675]     ui class: performance
          Startin[   28.642513][ T2675]     internal class: none
g ^[[0;1;39mUser [   28.653295][ T2675]     caps:
Login Management[   28.662731][ T2675] [drm]     uvd    vclk: 0 dclk: 0
^[[0m...
[   28.671593][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   28.688842][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   28.706836][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   28.706862][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   28.706867][ T2675]     status: c
[   28.706875][ T2675] switching to power state:
[^[[0;32m  OK  ^[[[   28.706879][ T2675]     ui class: performance
0m] Started ^[[0;[   28.706881][ T2675]     internal class: none
1;39mNetwork Ser[   28.706885][ T2675]     caps:
[   28.706888][ T2675] [drm]     uvd    vclk: 0 dclk: 0
vice^[[0m.
[   28.706891][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   28.706895][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   28.706898][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   28.706901][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   28.706904][ T2675]     status: r
[   28.707177][ T2675] switching from power state:
[   28.928008][ T2675]     ui class: performance
[   28.928015][ T2675]     internal class: none
[   28.928033][ T2675]     caps:
[   28.928035][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   28.928040][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   28.928044][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   28.928048][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   28.928051][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   28.928054][ T2675]     status: c
[   28.928058][ T2675] switching to power state:
[   28.928060][ T2675]     ui class: performance
[   28.928062][ T2675]     internal class: none
[   28.928066][ T2675]     caps:
[   28.928068][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   28.928071][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   28.928074][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   28.928077][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   28.928080][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   28.928083][ T2675]     status: r
[   29.233319][ T2675] switching from power state:
[   29.254047][ T2675]     ui class: performance
[   29.268924][ T2675]     internal class: none
[   29.282021][ T2675]     caps:
[   29.289907][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[^[[0;32m  OK  ^[[[   29.302718][ T2675] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3
0m] Finished ^[[0[   29.326786][ T2675] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
;1;39mSave/Resto[   29.348210][ T2675] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
re Sound Card St[   29.367502][ T2675] [drm]         power level 3    
sclk: 95500 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
ate^[[0m.[   29.386626][ T2675]     status: c

[   29.396126][ T2675] switching to power state:
[   29.408535][ T2675]     ui class: performance
[   29.422304][ T2675]     internal class: none
[   29.437922][ T2675]     caps:
[   29.450429][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   29.450448][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   29.450456][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   29.450460][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[^[[0;32m  OK  ^[[[   29.450463][ T2675] [drm]         power level 3    
sclk: 95500 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
0m] Reached targ[   29.450467][ T2675]     status: r
et ^[[0;1;39mSoun[   29.451056][ T2675] switching from power state:
d Card^[[0m.[   29.557996][ T2675]     ui class: performance

[   29.568152][ T2675]     internal class: none
[   29.578429][ T2675]     caps:
[   29.585991][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   29.599302][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   29.599328][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   29.599333][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   29.599337][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
          Startin[   29.599340][ T2675]     status: c
g ^[[0;1;39mWait [   29.599348][ T2675] switching to power state:
for Network to b[   29.599351][ T2675]     ui class: performance
e Configured^[[0m[   29.599353][ T2675]     internal class: none
...[   29.599357][ T2675]     caps:

[   29.599360][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   29.599362][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   29.599366][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   29.599368][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   29.599371][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   29.599374][ T2675]     status: r
[   29.599630][ T2675] switching from power state:
[   29.824571][ T2675]     ui class: performance
[   29.833462][ T2675]     internal class: none
[   29.845266][ T2675]     caps:
[   29.854526][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   29.854536][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   29.854541][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   29.854544][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
          Startin[   29.854547][ T2675] [drm]         power level 3    
sclk: 95500 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
g ^[[0;1;39mNetwo[   29.854550][ T2675]     status: c
rk Name Resoluti[   29.854571][ T2675] switching to power state:
on^[[0m...[   29.854574][ T2675]     ui class: performance
[   29.854586][ T2675]     internal class: none

[   29.991246][ T2675]     caps:
[   29.998101][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   30.007420][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   30.024878][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   30.051909][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   30.080930][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.107449][ T2675]     status: r
[   30.114164][ T2675] switching from power state:
[   30.124897][ T2675]     ui class: performance
[   30.131319][ T2675]     internal class: none
[   30.137315][ T2675]     caps:
[   30.142026][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   30.148668][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   30.167036][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   30.186208][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.204702][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.219749][ T2675]     status: c
[   30.225218][ T2675] switching to power state:
[   30.233779][ T2675]     ui class: performance
[   30.240397][ T2675]     internal class: none
[   30.248058][ T2675]     caps:
[   30.255891][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   30.271786][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   30.271803][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   30.271807][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   30.271811][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.271814][ T2675]     status: r
[   30.272180][ T2675] switching from power state:
[   30.375665][ T2675]     ui class: performance
[   30.375675][ T2675]     internal class: none
[   30.375685][ T2675]     caps:
[   30.375688][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   30.375692][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   30.375697][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   30.375701][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.375705][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.375708][ T2675]     status: c
[   30.375712][ T2675] switching to power state:
[   30.375715][ T2675]     ui class: performance
[   30.375716][ T2675]     internal class: none
[   30.375720][ T2675]     caps:
[   30.375722][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   30.375725][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   30.375728][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   30.375731][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   30.586906][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.586924][ T2675]     status: r
[   30.587259][ T2675] switching from power state:
[   30.587263][ T2675]     ui class: performance
[   30.587268][ T2675]     internal class: none
[   30.587272][ T2675]     caps:
[   30.587274][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   30.587277][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   30.587281][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   30.587285][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.587287][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.587291][ T2675]     status: c
[   30.587294][ T2675] switching to power state:
[   30.587295][ T2675]     ui class: performance
[   30.587297][ T2675]     internal class: none
[   30.587300][ T2675]     caps:
[   30.587302][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   30.587304][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   30.587307][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   30.587310][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   30.587313][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.587315][ T2675]     status: r
[   30.732851][ T2675] switching from power state:
[   30.907762][ T2675]     ui class: performance
[   30.907775][ T2675]     internal class: none
[   30.907782][ T2675]     caps:
[   30.907785][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   30.907790][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   30.907795][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   30.907798][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.907802][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   30.907805][ T2675]     status: c
[   30.907809][ T2675] switching to power state:
[   30.907811][ T2675]     ui class: performance
[   30.907813][ T2675]     internal class: none
[   30.907816][ T2675]     caps:
[   30.907819][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   30.907821][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   30.907825][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   30.907828][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   31.172410][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.172425][ T2675]     status: r
[   31.172720][ T2675] switching from power state:
[   31.172724][ T2675]     ui class: performance
[   31.172727][ T2675]     internal class: none
[   31.172731][ T2675]     caps:
[   31.172733][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.172737][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   31.172740][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.172744][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.172747][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.172750][ T2675]     status: c
[   31.172753][ T2675] switching to power state:
[   31.172755][ T2675]     ui class: performance
[   31.172757][ T2675]     internal class: none
[   31.172760][ T2675]     caps:
[   31.172762][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.172764][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   31.172767][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.172770][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   31.172773][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.172776][ T2675]     status: r
[   31.172929][ T2675] switching from power state:
[   31.172931][ T2675]     ui class: performance
[   31.172933][ T2675]     internal class: none
[   31.172937][ T2675]     caps:
[   31.172939][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.172941][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   31.172944][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.172947][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.172950][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.172953][ T2675]     status: c
[   31.173013][ T2675] switching to power state:
[   31.173015][ T2675]     ui class: performance
[   31.173016][ T2675]     internal class: none
[   31.173020][ T2675]     caps:
[   31.173022][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.173024][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   31.173027][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.173030][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   31.173033][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.173036][ T2675]     status: r
[   31.173168][ T2675] switching from power state:
[   31.173171][ T2675]     ui class: performance
[   31.173172][ T2675]     internal class: none
[   31.173176][ T2675]     caps:
[   31.173178][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.173180][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   31.173183][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.173187][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.173190][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.173193][ T2675]     status: c
[   31.173196][ T2675] switching to power state:
[   31.173198][ T2675]     ui class: performance
[   31.173200][ T2675]     internal class: none
[   31.173203][ T2675]     caps:
[   31.173205][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.173207][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   31.173210][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.173212][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   31.173215][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.173217][ T2675]     status: r
[   31.173427][ T2675] switching from power state:
[   31.173431][ T2675]     ui class: performance
[   31.173434][ T2675]     internal class: none
[   31.173439][ T2675]     caps:
[   31.173441][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.173444][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   31.173448][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.173451][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.173454][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.173456][ T2675]     status: c
[   31.173463][ T2675] switching to power state:
[   31.173465][ T2675]     ui class: performance
[   31.173467][ T2675]     internal class: none
[   31.173471][ T2675]     caps:
[   31.173473][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.173475][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   31.173478][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.173481][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   31.173484][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.173487][ T2675]     status: r
[   31.173908][ T2675] switching from power state:
[   31.173914][ T2675]     ui class: performance
[   31.173917][ T2675]     internal class: none
[   31.173922][ T2675]     caps:
[   31.173924][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.173927][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   31.173931][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.173935][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.173938][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.173941][ T2675]     status: c
[   31.173945][ T2675] switching to power state:
[   31.173946][ T2675]     ui class: performance
[   31.173949][ T2675]     internal class: none
[   31.173952][ T2675]     caps:
[   31.173995][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.173998][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   31.174001][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.174004][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   31.174007][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.174011][ T2675]     status: r
[   31.174235][ T2675] switching from power state:
[   31.174239][ T2675]     ui class: performance
[   31.174241][ T2675]     internal class: none
[   31.174246][ T2675]     caps:
[   31.174248][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.174251][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   31.174255][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.174258][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.174261][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.174264][ T2675]     status: c
[   31.174268][ T2675] switching to power state:
[   31.174269][ T2675]     ui class: performance
[   31.174271][ T2675]     internal class: none
[   31.174274][ T2675]     caps:
[   31.174276][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.174278][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   31.174281][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.174284][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   31.174286][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.174289][ T2675]     status: r
[   31.174554][ T2675] switching from power state:
[   31.174557][ T2675]     ui class: performance
[   31.174559][ T2675]     internal class: none
[   31.174564][ T2675]     caps:
[   31.174566][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.174568][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   31.174571][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.174574][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.174577][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.174579][ T2675]     status: c
[   31.174583][ T2675] switching to power state:
[   31.174584][ T2675]     ui class: performance
[   31.174586][ T2675]     internal class: none
[   31.174589][ T2675]     caps:
[   31.174591][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.174593][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   31.174595][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.174598][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   31.174601][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.174603][ T2675]     status: r
[   31.174915][ T2675] switching from power state:
[   31.174917][ T2675]     ui class: performance
[   31.174920][ T2675]     internal class: none
[   31.174925][ T2675]     caps:
[   31.174927][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.174930][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   31.174933][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.174937][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.174940][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.174943][ T2675]     status: c
[   31.174946][ T2675] switching to power state:
[   31.174948][ T2675]     ui class: performance
[   31.174950][ T2675]     internal class: none
[   31.174953][ T2675]     caps:
[   31.174999][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   31.175001][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   31.175004][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   31.175007][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   31.175010][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   31.175013][ T2675]     status: r
[   31.175303][ T2675] switching from power state:
[   33.125724][ T2675]     ui class: performance
[   33.125733][ T2675]     internal class: none
[   33.125741][ T2675]     caps:
[^[[0;32m  OK  ^[[[   33.125744][ T2675] [drm]     uvd    vclk: 0 dclk: 0
0m] Started ^[[0;[   33.125749][ T2675] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3
1;39mAvahi mDNS/[   33.125753][ T2675] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
DNS-SD Stack^[[0m[   33.125757][ T2675] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
.[   33.125760][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.125763][ T2675]     status: c

[   33.125767][ T2675] switching to power state:
[   33.125768][ T2675]     ui class: performance
[   33.125770][ T2675]     internal class: none
[   33.125774][ T2675]     caps:
[   33.125777][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.125780][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.350477][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.350496][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.350500][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.350505][ T2675]     status: r
[   33.351873][ T2675] switching from power state:
[   33.439182][ T2675]     ui class: performance
[   33.439190][ T2675]     internal class: none
[   33.439197][ T2675]     caps:
[   33.439199][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.439204][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.439209][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.439212][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.439216][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.439219][ T2675]     status: c
[   33.439223][ T2675] switching to power state:
[   33.439224][ T2675]     ui class: performance
[   33.439226][ T2675]     internal class: none
[   33.439230][ T2675]     caps:
[   33.439232][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.439235][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.439238][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.439240][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.439243][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.439245][ T2675]     status: r
[   33.451718][ T2675] switching from power state:
[   33.451738][ T2675]     ui class: performance
[   33.451742][ T2675]     internal class: none
[   33.451751][ T2675]     caps:
[   33.451754][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.451761][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.451766][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.451770][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.451773][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.451776][ T2675]     status: c
[   33.451781][ T2675] switching to power state:
[   33.451783][ T2675]     ui class: performance
[   33.451785][ T2675]     internal class: none
[   33.451789][ T2675]     caps:
[   33.451791][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.451793][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.451870][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.451875][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.451878][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.451881][ T2675]     status: r
[   33.466727][ T2675] switching from power state:
[   33.466737][ T2675]     ui class: performance
[   33.466741][ T2675]     internal class: none
[   33.466748][ T2675]     caps:
[   33.466751][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.466756][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.466761][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.466764][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.466768][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.466770][ T2675]     status: c
[   33.466774][ T2675] switching to power state:
[   33.466776][ T2675]     ui class: performance
[   33.466778][ T2675]     internal class: none
[   33.466781][ T2675]     caps:
[   33.466784][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.466786][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.466789][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.466792][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.466795][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.466906][ T2675]     status: r
[   33.476544][ T2675] switching from power state:
[   33.476554][ T2675]     ui class: performance
[   33.476558][ T2675]     internal class: none
[   33.476565][ T2675]     caps:
[   33.476568][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.476573][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.476578][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.476582][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.476585][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.476588][ T2675]     status: c
[   33.476592][ T2675] switching to power state:
[   33.476594][ T2675]     ui class: performance
[   33.476596][ T2675]     internal class: none
[   33.476599][ T2675]     caps:
[   33.476601][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.476604][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.476607][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.476609][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.476612][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.476615][ T2675]     status: r
[   33.490402][ T2675] switching from power state:
[   33.490412][ T2675]     ui class: performance
[   33.490416][ T2675]     internal class: none
[   33.490424][ T2675]     caps:
[   33.490427][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.490433][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.490439][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.490442][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.490446][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.490449][ T2675]     status: c
[   33.490453][ T2675] switching to power state:
[   33.490454][ T2675]     ui class: performance
[   33.490456][ T2675]     internal class: none
[   33.490459][ T2675]     caps:
[   33.490462][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.490464][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.490467][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.490470][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.490475][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.490477][ T2675]     status: r
[   33.504295][ T2675] switching from power state:
[   33.504303][ T2675]     ui class: performance
[   33.504306][ T2675]     internal class: none
[   33.504312][ T2675]     caps:
[   33.504315][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.504319][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.504323][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.504326][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.504329][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.504332][ T2675]     status: c
[   33.504336][ T2675] switching to power state:
[   33.504337][ T2675]     ui class: performance
[   33.504339][ T2675]     internal class: none
[   33.504343][ T2675]     caps:
[   33.504345][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.504347][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.504351][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.504353][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.504356][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.504358][ T2675]     status: r
[   33.518182][ T2675] switching from power state:
[   33.518189][ T2675]     ui class: performance
[   33.518192][ T2675]     internal class: none
[   33.518198][ T2675]     caps:
[   33.518201][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.518204][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.518209][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.518212][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.518216][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.518219][ T2675]     status: c
[   33.518222][ T2675] switching to power state:
[   33.518224][ T2675]     ui class: performance
[   33.518226][ T2675]     internal class: none
[   33.518229][ T2675]     caps:
[   33.518232][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.518234][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.518237][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.518239][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.518242][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.518245][ T2675]     status: r
[   33.532361][ T2675] switching from power state:
[   33.532369][ T2675]     ui class: performance
[   33.532372][ T2675]     internal class: none
[   33.532378][ T2675]     caps:
[   33.532380][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.532384][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.532388][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.532392][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.532395][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.532398][ T2675]     status: c
[   33.532402][ T2675] switching to power state:
[   33.532403][ T2675]     ui class: performance
[   33.532405][ T2675]     internal class: none
[   33.532409][ T2675]     caps:
[   33.532411][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.532413][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.532416][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.532418][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.532421][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.532424][ T2675]     status: r
[   33.546094][ T2675] switching from power state:
[   33.546113][ T2675]     ui class: performance
[   33.546119][ T2675]     internal class: none
[   33.546129][ T2675]     caps:
[   33.546131][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.546137][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.546143][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.546146][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.546150][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.546153][ T2675]     status: c
[   33.546158][ T2675] switching to power state:
[   33.546159][ T2675]     ui class: performance
[   33.546161][ T2675]     internal class: none
[   33.546164][ T2675]     caps:
[   33.546167][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.546169][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.546172][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.546175][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.546178][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.546181][ T2675]     status: r
[   33.550781][ T2675] switching from power state:
[   33.550786][ T2675]     ui class: performance
[   33.550789][ T2675]     internal class: none
[   33.550794][ T2675]     caps:
[   33.550796][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.550800][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.550804][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.550808][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.550811][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.550814][ T2675]     status: c
[   33.550817][ T2675] switching to power state:
[   33.550819][ T2675]     ui class: performance
[   33.550821][ T2675]     internal class: none
[   33.550824][ T2675]     caps:
[   33.550827][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.550829][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.550832][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.550835][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.550838][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.550841][ T2675]     status: r
[   33.557688][ T2675] switching from power state:
[   33.557695][ T2675]     ui class: performance
[   33.557698][ T2675]     internal class: none
[   33.557712][ T2675]     caps:
[   33.557714][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.557718][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.557722][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.557728][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.557731][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.557734][ T2675]     status: c
[   33.557737][ T2675] switching to power state:
[   33.557739][ T2675]     ui class: performance
[   33.557741][ T2675]     internal class: none
[   33.557744][ T2675]     caps:
[   33.557746][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.557749][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.557752][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.557755][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.557758][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.557762][ T2675]     status: r
[   33.563751][ T2675] switching from power state:
[   33.563756][ T2675]     ui class: performance
[   33.563759][ T2675]     internal class: none
[   33.563764][ T2675]     caps:
[   33.563767][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.563770][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.563774][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.563778][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.563781][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.563784][ T2675]     status: c
[   33.563787][ T2675] switching to power state:
[   33.563789][ T2675]     ui class: performance
[   33.563791][ T2675]     internal class: none
[   33.563802][ T2675]     caps:
[   33.563804][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.563807][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.563809][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.563812][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.563815][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.563821][ T2675]     status: r
[   33.573022][ T2675] switching from power state:
[   33.573032][ T2675]     ui class: performance
[   33.573035][ T2675]     internal class: none
[   33.573042][ T2675]     caps:
[   33.573045][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.573049][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.573054][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.573058][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.573061][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.573064][ T2675]     status: c
[   33.573067][ T2675] switching to power state:
[   33.573069][ T2675]     ui class: performance
[   33.573070][ T2675]     internal class: none
[   33.573074][ T2675]     caps:
[   33.573076][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.573079][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.573082][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.573085][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.573087][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.573090][ T2675]     status: r
[   33.580388][ T2675] switching from power state:
[   33.580394][ T2675]     ui class: performance
[   33.580397][ T2675]     internal class: none
[   33.580402][ T2675]     caps:
[   33.580405][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.580408][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.580412][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.580416][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.580419][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.580422][ T2675]     status: c
[   33.580425][ T2675] switching to power state:
[   33.580427][ T2675]     ui class: performance
[   33.580429][ T2675]     internal class: none
[   33.580432][ T2675]     caps:
[   33.580435][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.580437][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.580439][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.580442][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.580445][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.580447][ T2675]     status: r
[   33.594667][ T2675] switching from power state:
[   33.594675][ T2675]     ui class: performance
[   33.594679][ T2675]     internal class: none
[   33.594685][ T2675]     caps:
[   33.594688][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.594692][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   33.594697][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.594700][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.594703][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.594706][ T2675]     status: c
[   33.594710][ T2675] switching to power state:
[   33.594711][ T2675]     ui class: performance
[   33.594713][ T2675]     internal class: none
[   33.594716][ T2675]     caps:
[   33.594719][ T2675] [drm]     uvd    vclk: 0 dclk: 0
[   33.594721][ T2675] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   33.594724][ T2675] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   33.594726][ T2675] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   33.594729][ T2675] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   33.594732][ T2675]     status: r
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mNetwork Name Resolution^[[0m.
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mWait for Network to be 
Configured^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mNetwork is Online^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mHost and Network Name 
Lookups^[[0m.
          Mounting ^[[0;1;39m/home^[[0m...
          Mounting ^[[0;1;39m/mnt/gentoo-share^[[0m...
          Mounting ^[[0;1;39m/usr/local/portage^[[0m...
          Mounting ^[[0;1;39m/usr/portage^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mBacula File Daemon service^[[0m.
          Starting ^[[0;1;39mCUPS Scheduler^[[0m...
          Starting ^[[0;1;39mOpenSSH server daemon^[[0m...
[   37.268427][ T2944] FS-Cache: Duplicate cookie detected
[   37.269774][ T2946] CIFS: No dialect specified on mount. Default has 
changed to a more secure dialect, SMB2.1 or later (e.g. SMB3.1.1), from 
CIFS (SMB1). To use the less secure SMB1 dialect to access old servers 
which do not support SMB3.1.1 (or even SMB3 or SMB2.1) specify vers=1.0 
on mount.
[   37.284812][ T2944] FS-Cache: O-cookie c=0000000040dffb02 
[p=0000000073984546 fl=222 nc=0 na=1]
[   37.367829][ T2946] CIFS: Attempting to mount \\gentoo\overlay
[   37.391763][ T2944] FS-Cache: O-cookie d=000000001d33de81 
n=0000000094d6da4d
[   37.413919][ T2944] FS-Cache: O-key=[16] 
'040000000200000002000801c0a80201'
[   37.413948][ T2944] FS-Cache: N-cookie c=00000000e8522cae 
[p=0000000073984546 fl=2 nc=0 na=1]
[   37.413999][ T2944] FS-Cache: N-cookie d=000000001d33de81 
n=00000000e8d4e0ce
[   37.414002][ T2944] FS-Cache: N-key=[16] 
'040000000200000002000801c0a80201'
          Starting ^[[0;1;39mSystem Logger Daemon "default" instance^[[0m...
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/usr/local/portage^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mUser Login Management^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mRemote File Systems^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/home^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/mnt/gentoo-share^[[0m.
[^[[0;32m  OK  ^[[0m] Mounted ^[[0;1;39m/usr/portage^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mOpenSSH server daemon^[[0m.
          Starting ^[[0;1;39mPermit User Sessions^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mPermit User Sessions^[[0m.
          Starting ^[[0;1;39mCommand Scheduler^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mGetty on tty1^[[0m.
          Starting ^[[0;1;39mLight Display Manager^[[0m...
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSerial Getty on hvc0^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mSerial Getty on ttyS0^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mLogin Prompts^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mCommand Scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Started ^[[0;1;39mLight Display Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Reached target ^[[0;1;39mUser and Group Name 
Lookups^[[0m.
          Starting ^[[0;1;39mAccounts Service^[[0m...
[^[[0;32m  OK  ^[[0m] Created slice ^[[0;1;39mUser Slice of UID 0^[[0m.
          Starting ^[[0;1;39mUser Runtime Directory /run/user/0^[[0m...
[^[[0;32m  OK  ^[[0m] Finished ^[[0;1;39mUser Runtime Directory 
/run/user/0^[[0m.
          Starting ^[[0;1;39mUser Manager for UID 0^[[0m...
          Starting ^[[0;1;39mManage, Install and Generate Color 
Profiles^[[0m...
          Starting ^[[0;1;39mAuthorization Manager^[[0m...
[   39.079167][ T2988] switching from power state:
[   39.086986][ T2988]     ui class: performance
[   39.094240][ T2988]     internal class: none
[   39.100577][ T2988]     caps:
[   39.105470][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   39.114111][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   39.128594][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   39.140886][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.153951][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.171375][ T2988]     status: c
[   39.177739][ T2988] switching to power state:
[   39.185298][ T2988]     ui class: performance
[   39.194659][ T2988]     internal class: none
[   39.201982][ T2988]     caps:
[   39.207133][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   39.218058][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   39.237414][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   39.261747][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   39.280100][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.304889][ T2988]     status: r
[   39.315534][ T2988] switching from power state:
[   39.330014][ T2988]     ui class: performance
[   39.343479][ T2988]     internal class: none
[   39.356892][ T2988]     caps:
[   39.365133][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   39.376328][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   39.399560][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   39.421422][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.450887][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.481740][ T2988]     status: c
[   39.489673][ T2988] switching to power state:
[   39.502007][ T2988]     ui class: performance
[   39.512326][ T2988]     internal class: none
[   39.522164][ T2988]     caps:
[   39.529459][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   39.539435][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   39.562153][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   39.584355][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   39.603382][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.618946][ T2988]     status: r
[   39.625269][ T2988] switching from power state:
[   39.635593][ T2988]     ui class: performance
[   39.647210][ T2988]     internal class: none
[   39.659760][ T2988]     caps:
[   39.667833][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   39.679092][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   39.696757][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   39.708980][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.722003][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.735834][ T2988]     status: c
[   39.740813][ T2988] switching to power state:
[   39.747979][ T2988]     ui class: performance
[   39.753369][ T2988]     internal class: none
[   39.759024][ T2988]     caps:
[   39.763397][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   39.770354][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   39.783022][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   39.797893][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   39.814150][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.833900][ T2988]     status: r
[   39.840907][ T2988] switching from power state:
[   39.848480][ T2988]     ui class: performance
[   39.858842][ T2988]     internal class: none
[   39.866828][ T2988]     caps:
[   39.871337][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   39.880314][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   39.901746][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   39.901755][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.901759][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.901762][ T2988]     status: c
[^[[0;32m  OK  ^[[[   39.901769][ T2988] switching to power state:
0m] Started ^[[0;1;39mAuthorization Manager^[[0m.
[   39.901771][ T2988]     ui class: performance
[   39.901773][ T2988]     internal class: none
[   39.901777][ T2988]     caps:
[   39.901780][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   39.901782][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   39.901785][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   39.901788][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   39.901792][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   39.901794][ T2988]     status: r
[   39.902078][ T2988] switching from power state:
[   40.121025][ T2988]     ui class: performance
[   40.121031][ T2988]     internal class: none
[   40.121037][ T2988]     caps:
[^[[0;32m  OK  ^[[[   40.121040][ T2988] [drm]     uvd    vclk: 0 dclk: 0
0m] Started ^[[0;1;39mAccounts Service^[[0m.
[   40.121045][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   40.121050][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   40.121053][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   40.121056][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   40.222915][ T2988]     status: c
[   40.227563][ T2988] switching to power state:
[   40.233536][ T2988]     ui class: performance
[   40.239900][ T2988]     internal class: none
[   40.247703][ T2988]     caps:
[   40.252673][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   40.260537][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   40.279761][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   40.297249][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   40.297258][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   40.297262][ T2988]     status: r
[   40.297583][ T2988] switching from power state:
[^[[0;32m  OK  ^[[[   40.350987][ T2988]     ui class: performance
0m] Started ^[[0;1;39mUser Manager for UID 0^[[0m.
[   40.369597][ T2988]     internal class: none
[   40.379273][ T2988]     caps:
[   40.379279][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   40.379283][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   40.379288][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[^[[0;32m  OK  ^[[[   40.379291][ T2988] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
0m] Started ^[[0;1;39mSession 1 of user root^[[0m.
[   40.379294][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   40.379297][ T2988]     status: c
[   40.379302][ T2988] switching to power state:
[   40.379304][ T2988]     ui class: performance
[   40.379307][ T2988]     internal class: none
[   40.529834][ T2988]     caps:
[   40.535980][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   40.548568][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   40.570141][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   40.591885][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   40.616828][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   40.639054][ T2988]     status: r
[   40.647412][ T2988] switching from power state:
[   40.661183][ T2988]     ui class: performance
[   40.674869][ T2988]     internal class: none
[   40.690287][ T2988]     caps:
[   40.698926][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   40.713989][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   40.733415][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   40.756410][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   40.776282][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   40.793580][ T2988]     status: c
[   40.799758][ T2988] switching to power state:
[   40.809845][ T2988]     ui class: performance
[   40.820309][ T2988]     internal class: none
[   40.828718][ T2988]     caps:
[   40.834531][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   40.847800][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   40.869116][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   40.893781][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   40.893790][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   40.893794][ T2988]     status: r
[   40.894422][ T2988] switching from power state:
[^[[0;32m  OK  ^[[[   40.944575][ T2988]     ui class: performance
0m] Started ^[[0;[   40.955244][ T2988]     internal class: none
1;39mSession 3 o[   40.966209][ T2988]     caps:
f user root^[[0m.[   40.973563][ T2988] [drm]     uvd    vclk: 0 dclk: 0

[   40.984866][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   41.001211][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   41.016243][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   41.031878][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   41.050307][ T2988]     status: c
[   41.057854][ T2988] switching to power state:
[   41.071032][ T2988]     ui class: performance
[   41.084812][ T2988]     internal class: none
[   41.099211][ T2988]     caps:
[   41.108548][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   41.125567][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   41.165998][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   41.202078][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   41.235107][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   41.264624][ T2988]     status: r
[   41.273905][ T2988] switching from power state:
[   41.288128][ T2988]     ui class: performance
[   41.301826][ T2988]     internal class: none
[   41.315921][ T2988]     caps:
[   41.323730][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   41.337046][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   41.357991][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   41.374188][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   41.394410][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   41.411502][ T2988]     status: c
[   41.417409][ T2988] switching to power state:
[   41.427690][ T2988]     ui class: performance
[   41.436010][ T2988]     internal class: none
[   41.443439][ T2988]     caps:
[   41.447913][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   41.457491][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   41.472460][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   41.492375][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   41.518050][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   41.544749][ T2988]     status: r
[   41.553666][ T2988] switching from power state:
[   41.563742][ T2988]     ui class: performance
[   41.571805][ T2988]     internal class: none
[   41.579870][ T2988]     caps:
[   41.584863][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   41.594561][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   41.614402][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   41.637723][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   41.658350][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   41.674317][ T2988]     status: c
[   41.679599][ T2988] switching to power state:
[   41.688043][ T2988]     ui class: performance
[   41.695597][ T2988]     internal class: none
[   41.705135][ T2988]     caps:
[   41.713839][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   41.727853][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   41.747787][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   41.768526][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   41.785384][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   41.802017][ T2988]     status: r
[   41.807542][ T2988] switching from power state:
[   41.817495][ T2988]     ui class: performance
[   41.826334][ T2988]     internal class: none
[   41.835439][ T2988]     caps:
[   41.840706][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   41.849364][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   41.869533][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   41.887519][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   41.912995][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   41.937903][ T2988]     status: c
[   41.946487][ T2988] switching to power state:
[   41.957554][ T2988]     ui class: performance
[   41.968562][ T2988]     internal class: none
[   41.978721][ T2988]     caps:
[   41.986834][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.001140][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   42.022777][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.041563][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   42.060946][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.077930][ T2988]     status: r
[   42.085339][ T2988] switching from power state:
[   42.096473][ T2988]     ui class: performance
[   42.105908][ T2988]     internal class: none
[   42.114808][ T2988]     caps:
[   42.120219][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.129861][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   42.151685][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.173046][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.187322][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.202469][ T2988]     status: c
[   42.206361][ T2988] switching to power state:
[   42.214250][ T2988]     ui class: performance
[   42.220679][ T2988]     internal class: none
[   42.227454][ T2988]     caps:
[   42.231550][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.239815][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   42.257674][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.271901][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   42.287626][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.304684][ T2988]     status: r
[   42.311669][ T2988] switching from power state:
[   42.324153][ T2988]     ui class: performance
[   42.324159][ T2988]     internal class: none
[   42.324165][ T2988]     caps:
[   42.324168][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[^[[0;32m  OK  ^[[[   42.324171][ T2988] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3
0m] Started ^[[0;[   42.324176][ T2988] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
1;39mSession 4 o[   42.324179][ T2988] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.324183][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
f user root^[[0m.[   42.324186][ T2988]     status: c

[   42.324190][ T2988] switching to power state:
[   42.324192][ T2988]     ui class: performance
[   42.324193][ T2988]     internal class: none
[   42.324197][ T2988]     caps:
[   42.324199][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.324202][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   42.324204][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.324207][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   42.324210][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.324213][ T2988]     status: r
[   42.324371][ T2988] switching from power state:
[   42.565240][ T2988]     ui class: performance
[   42.572381][ T2988]     internal class: none
[   42.580130][ T2988]     caps:
[   42.584319][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.591249][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   42.604910][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.619367][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.635455][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.652094][ T2988]     status: c
[   42.657996][ T2988] switching to power state:
[   42.665474][ T2988]     ui class: performance
[   42.671812][ T2988]     internal class: none
[   42.686901][ T2988]     caps:
[   42.686910][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.686914][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   42.686919][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.686922][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   42.686925][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.686928][ T2988]     status: r
[   42.687445][ T2988] switching from power state:
[   42.687448][ T2988]     ui class: performance
[   42.687451][ T2988]     internal class: none
[   42.687455][ T2988]     caps:
[   42.687458][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.687460][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   42.687464][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.687467][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.687470][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.687473][ T2988]     status: c
[   42.687476][ T2988] switching to power state:
[   42.687478][ T2988]     ui class: performance
[   42.687479][ T2988]     internal class: none
[   42.687483][ T2988]     caps:
[   42.687485][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.687487][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   42.687490][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.687493][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   42.687495][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.687498][ T2988]     status: r
[   42.687662][ T2988] switching from power state:
[   42.687664][ T2988]     ui class: performance
[   42.687666][ T2988]     internal class: none
[   42.687670][ T2988]     caps:
[   42.687672][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.687674][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   42.687677][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.687679][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.687682][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.687685][ T2988]     status: c
[   42.687688][ T2988] switching to power state:
[   42.687689][ T2988]     ui class: performance
[   42.687691][ T2988]     internal class: none
[   42.687694][ T2988]     caps:
[   42.687696][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.687698][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   42.687701][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.687703][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   42.687706][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.687709][ T2988]     status: r
[   42.687796][ T2988] switching from power state:
[   42.687798][ T2988]     ui class: performance
[   42.687799][ T2988]     internal class: none
[   42.687802][ T2988]     caps:
[   42.687804][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.687806][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   42.687809][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.687812][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.687815][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.687818][ T2988]     status: c
[   42.687821][ T2988] switching to power state:
[   42.687822][ T2988]     ui class: performance
[   42.687823][ T2988]     internal class: none
[   42.687826][ T2988]     caps:
[   42.687828][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   42.687830][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   42.687833][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   42.687835][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   42.687838][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   42.687841][ T2988]     status: r
[   42.687925][ T2988] switching from power state:
[   43.371213][ T3044] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[   43.380309][ T2988]     ui class: performance
[   43.380315][ T2988]     internal class: none
[   43.380329][ T2988]     caps:
[   43.380332][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.380336][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   43.380341][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.380344][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.380347][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.380350][ T2988]     status: c
[   43.380353][ T2988] switching to power state:
[   43.380355][ T2988]     ui class: performance
[   43.380357][ T2988]     internal class: none
[   43.380361][ T2988]     caps:
[   43.380363][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.380366][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   43.380369][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.380371][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   43.380374][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.380377][ T2988]     status: r
[   43.380541][ T2988] switching from power state:
[   43.390278][ T3044] vhci_hcd vhci_hcd.0: new USB bus registered, 
assigned bus number 3
[   43.390407][ T3044] vhci_hcd: created sysfs vhci_hcd.0
[   43.399449][ T2988]     ui class: performance
[   43.399455][ T2988]     internal class: none
[   43.399462][ T2988]     caps:
[   43.399464][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.399468][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   43.399473][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.413173][ T3044] usb usb3: New USB device found, idVendor=1d6b, 
idProduct=0002, bcdDevice= 5.13
[   43.426779][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.426789][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.426794][ T2988]     status:
[   43.451643][ T3044] usb usb3: New USB device strings: Mfr=3, 
Product=2, SerialNumber=1
[   43.469470][ T2988]  c
[   43.469479][ T2988] switching to power state:
[   43.469483][ T2988]     ui class: performance
[   43.469485][ T2988]     internal class: none
[   43.469489][ T2988]     caps:
[   43.469491][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.469495][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   43.469499][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.469502][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   43.469505][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.469508][ T2988]     status: r
[   43.469657][ T2988] switching from power state:
[   43.488953][ T3044] usb usb3: Product: USB/IP Virtual Host Controller
[   43.489002][ T3044] usb usb3: Manufacturer: Linux 5.13.0-rc6-x86_64 
vhci_hcd
[   43.489007][ T3044] usb usb3: SerialNumber: vhci_hcd.0
[   43.505133][ T2988]     ui class: performance
[   43.505140][ T2988]     internal class: none
[   43.505146][ T2988]     caps:
[   43.505148][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.505152][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   43.505157][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.505160][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.505163][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.505166][ T2988]     status: c
[   43.505170][ T2988] switching to power state:
[   43.505171][ T2988]     ui class: performance
[   43.505173][ T2988]     internal class: none
[   43.505177][ T2988]     caps:
[   43.505179][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.505181][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   43.505184][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.505187][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   43.505189][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.505192][ T2988]     status: r
[   43.505403][ T2988] switching from power state:
[   43.505405][ T2988]     ui class: performance
[   43.505407][ T2988]     internal class: none
[   43.505411][ T2988]     caps:
[   43.505413][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.505415][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   43.505418][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.505421][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.505424][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.505427][ T2988]     status: c
[   43.505430][ T2988] switching to power state:
[   43.505432][ T2988]     ui class: performance
[   43.505433][ T2988]     internal class: none
[   43.505436][ T2988]     caps:
[   43.505438][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.505440][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   43.505443][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.505446][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   43.505448][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.505451][ T2988]     status: r
[   43.505541][ T2988] switching from power state:
[   43.541281][ T3044] hub 3-0:1.0: USB hub found
[   43.544238][ T2988]     ui class: performance
[   43.563286][ T3044] hub 3-0:1.0: 8 ports detected
[   43.589251][ T2988]     internal class:
[   43.623167][ T3044] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[   43.643600][ T2988]  none
[   43.643610][ T2988]     caps:
[   43.643613][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.643618][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   43.658220][ T3044] vhci_hcd vhci_hcd.0: new USB bus registered, 
assigned bus number 4
[   43.666081][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.666091][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.666094][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.666097][ T2988]     status: c
[   43.666104][ T2988] switching to power state:
[   43.666107][ T2988]     ui class: performance
[   43.666109][ T2988]     internal class: none
[   43.666113][ T2988]     caps:
[   43.666115][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.666118][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   43.666121][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.666124][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   43.666127][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.666129][ T2988]     status: r
[   43.666323][ T2988] switching from power state:
[   43.673498][ T3044] usb usb4: We don't know the algorithms for LPM 
for this host, disabling LPM.
[   43.690000][ T2988]     ui class: performance
[   43.690007][ T2988]     internal class: none
[   43.690014][ T2988]     caps:
[   43.690016][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.690020][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   43.690024][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.690027][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.690031][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.690033][ T2988]     status: c
[   43.696749][ T3044] usb usb4: New USB device found, idVendor=1d6b, 
idProduct=0003, bcdDevice= 5.13
[   43.705580][ T2988] switching to power state:
[   43.705586][ T2988]     ui class: performance
[   43.705590][ T2988]     internal class: none
[   43.705595][ T2988]     caps:
[   43.705598][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.705602][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   43.705606][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.705610][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   43.705613][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.712940][ T3044] usb usb4: New USB device strings: Mfr=3, 
Product=2, SerialNumber=1
[   43.712999][ T3044] usb usb4: Product: USB/IP Virtual Host Controller
[   43.723185][ T2988]     status: r
[   43.741867][ T3044] usb usb4: Manufacturer: Linux 5.13.0-rc6-x86_64 
vhci_hcd
[   43.741879][ T3044] usb usb4: SerialNumber: vhci_hcd.0
[   43.743258][ T3044] hub 4-0:1.0: USB hub found
[   43.760751][ T2988]
[   43.760934][ T2988] switching from power state:
[   43.779162][ T3044] hub 4-0:1.0: 8 ports detected
[   43.805011][ T2988]     ui class: performance
[   43.805017][ T2988]     internal class: none
[   43.805023][ T2988]     caps:
[   43.805026][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.805030][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   43.805035][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.805038][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.805041][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.805044][ T2988]     status: c
[   43.805048][ T2988] switching to power state:
[   43.805050][ T2988]     ui class: performance
[   43.805051][ T2988]     internal class: none
[   43.805055][ T2988]     caps:
[   43.805057][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.805059][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   43.805062][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.805065][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   43.805068][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.805070][ T2988]     status: r
[   43.805239][ T2988] switching from power state:
[   43.805241][ T2988]     ui class: performance
[   43.805242][ T2988]     internal class: none
[   43.805246][ T2988]     caps:
[   43.805248][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.805250][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   43.805253][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.805256][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.805259][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.805261][ T2988]     status: c
[   43.805265][ T2988] switching to power state:
[   43.805266][ T2988]     ui class: performance
[   43.805268][ T2988]     internal class: none
[   43.805271][ T2988]     caps:
[   43.805274][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   43.805276][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   43.805278][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   43.805281][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   43.805283][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   43.805286][ T2988]     status: r
[   45.689391][ T2988] amdgpu 0000:00:06.0: vgaarb: changed VGA decodes: 
olddecodes=io+mem,decodes=none:owns=io+mem


This is gt.alstadheim.priv.no (Linux x86_64 5.13.0-rc6-x86_64) 01:01:08

gt login: [   48.032816][ T2988] switching from power state:
[   48.041076][ T2988]     ui class: performance
[   48.048649][ T2988]     internal class: none
[   48.058047][ T2988]     caps:
[   48.063801][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   48.074998][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   48.089994][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   48.108626][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   48.129618][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   48.147348][ T2988]     status: c
[   48.153752][ T2988] switching to power state:
[   48.167500][ T2988]     ui class: performance
[   48.183477][ T2988]     internal class: none
[   48.198842][ T2988]     caps:
[   48.205904][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   48.214559][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   48.230109][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   48.244814][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   48.258299][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   48.270593][ T2988]     status: r
[   48.280501][ T2988] switching from power state:
[   48.286788][ T2988]     ui class: performance
[   48.292581][ T2988]     internal class: none
[   48.298288][ T2988]     caps:
[   48.302095][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   48.308845][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   48.321442][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   48.334913][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   48.355640][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   48.379144][ T2988]     status: c
[   48.384196][ T2988] switching to power state:
[   48.390933][ T2988]     ui class: performance
[   48.399953][ T2988]     internal class: none
[   48.408547][ T2988]     caps:
[   48.413988][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   48.421329][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   48.434862][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   48.448842][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   48.462921][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   48.478626][ T2988]     status: r
[   49.034368][ T2988] switching from power state:
[   49.041292][ T2988]     ui class: performance
[   49.047437][ T2988]     internal class: none
[   49.053882][ T2988]     caps:
[   49.058805][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   49.067902][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   49.084998][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   49.103008][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.118712][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.134622][ T2988]     status: c
[   49.143198][ T2988] switching to power state:
[   49.150537][ T2988]     ui class: performance
[   49.161984][ T2988]     internal class: none
[   49.171664][ T2988]     caps:
[   49.178121][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   49.186945][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   49.206745][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   49.221552][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   49.237213][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.253733][ T2988]     status: r
[   49.261825][ T2988] switching from power state:
[   49.270462][ T2988]     ui class: performance
[   49.278845][ T2988]     internal class: none
[   49.287814][ T2988]     caps:
[   49.294241][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   49.303926][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   49.321612][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   49.336497][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.351678][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.367259][ T2988]     status: c
[   49.372153][ T2988] switching to power state:
[   49.379519][ T2988]     ui class: performance
[   49.386865][ T2988]     internal class: none
[   49.391979][ T2988]     caps:
[   49.395742][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   49.402048][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   49.414436][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   49.426730][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   49.440250][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.456336][ T2988]     status: r
[   49.461785][ T2988] switching from power state:
[   49.469891][ T2988]     ui class: performance
[   49.476628][ T2988]     internal class: none
[   49.484859][ T2988]     caps:
[   49.491777][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   49.499459][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   49.513797][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   49.528987][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.544650][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.557229][ T2988]     status: c
[   49.561672][ T2988] switching to power state:
[   49.567910][ T2988]     ui class: performance
[   49.573516][ T2988]     internal class: none
[   49.580405][ T2988]     caps:
[   49.584918][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   49.593057][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   49.609009][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   49.630226][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   49.652790][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.676944][ T2988]     status: r
[   49.682619][ T2988] switching from power state:
[   49.689899][ T2988]     ui class: performance
[   49.696589][ T2988]     internal class: none
[   49.702927][ T2988]     caps:
[   49.707435][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   49.713599][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   49.726402][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   49.742338][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.758288][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.773441][ T2988]     status: c
[   49.779112][ T2988] switching to power state:
[   49.786506][ T2988]     ui class: performance
[   49.794639][ T2988]     internal class: none
[   49.802805][ T2988]     caps:
[   49.809514][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   49.820993][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   49.842420][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   49.860225][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   49.874683][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.888932][ T2988]     status: r
[   49.893911][ T2988] switching from power state:
[   49.901561][ T2988]     ui class: performance
[   49.908815][ T2988]     internal class: none
[   49.915359][ T2988]     caps:
[   49.919540][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   49.926312][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   49.940092][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   49.952644][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.965919][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   49.989070][ T2988]     status: c
[   49.997376][ T2988] switching to power state:
[   50.009370][ T2988]     ui class: performance
[   50.020269][ T2988]     internal class: none
[   50.027856][ T2988]     caps:
[   50.031951][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   50.040188][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   50.056578][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   50.070907][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   50.082287][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.096354][ T2988]     status: r
[   50.101918][ T2988] switching from power state:
[   50.111005][ T2988]     ui class: performance
[   50.118580][ T2988]     internal class: none
[   50.126465][ T2988]     caps:
[   50.132400][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   50.142496][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   50.161069][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   50.182601][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.202597][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.225937][ T2988]     status: c
[   50.229828][ T2988] switching to power state:
[   50.236708][ T2988]     ui class: performance
[   50.244843][ T2988]     internal class: none
[   50.251869][ T2988]     caps:
[   50.256883][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   50.267618][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   50.281997][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   50.298349][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   50.318122][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.334276][ T2988]     status: r
[   50.339526][ T2988] switching from power state:
[   50.346501][ T2988]     ui class: performance
[   50.352365][ T2988]     internal class: none
[   50.358358][ T2988]     caps:
[   50.361984][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   50.372588][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   50.399403][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   50.428084][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.444330][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.458770][ T2988]     status: c
[   50.463015][ T2988] switching to power state:
[   50.472439][ T2988]     ui class: performance
[   50.481182][ T2988]     internal class: none
[   50.489982][ T2988]     caps:
[   50.494159][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   50.502269][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   50.518564][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   50.541542][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   50.561988][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.592554][ T2988]     status: r
[   50.603951][ T2988] switching from power state:
[   50.617631][ T2988]     ui class: performance
[   50.629508][ T2988]     internal class: none
[   50.641057][ T2988]     caps:
[   50.645487][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   50.653570][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   50.668806][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   50.688428][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.705637][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.725643][ T2988]     status: c
[   50.730344][ T2988] switching to power state:
[   50.737954][ T2988]     ui class: performance
[   50.744236][ T2988]     internal class: none
[   50.751596][ T2988]     caps:
[   50.757683][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   50.764904][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   50.780878][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   50.798621][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   50.815217][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.834532][ T2988]     status: r
[   50.840101][ T2988] switching from power state:
[   50.846571][ T2988]     ui class: performance
[   50.851994][ T2988]     internal class: none
[   50.857365][ T2988]     caps:
[   50.861402][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   50.867670][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   50.880073][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   50.893018][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.906996][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   50.921286][ T2988]     status: c
[   50.925899][ T2988] switching to power state:
[   50.931410][ T2988]     ui class: performance
[   50.937817][ T2988]     internal class: none
[   50.944038][ T2988]     caps:
[   50.948115][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   50.956013][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   50.972574][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   50.994598][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   51.013321][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.032573][ T2988]     status: r
[   51.038151][ T2988] switching from power state:
[   51.045392][ T2988]     ui class: performance
[   51.052391][ T2988]     internal class: none
[   51.059034][ T2988]     caps:
[   51.063469][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   51.071888][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   51.086047][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   51.099927][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.118072][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.146645][ T2988]     status: c
[   51.155288][ T2988] switching to power state:
[   51.167835][ T2988]     ui class: performance
[   51.179474][ T2988]     internal class: none
[   51.192557][ T2988]     caps:
[   51.201312][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   51.218612][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   51.246104][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   51.264456][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   51.286401][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.311294][ T2988]     status: r
[   51.317797][ T2988] switching from power state:
[   51.329402][ T2988]     ui class: performance
[   51.338917][ T2988]     internal class: none
[   51.345126][ T2988]     caps:
[   51.348535][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   51.354690][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   51.367990][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   51.380289][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.395365][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.411029][ T2988]     status: c
[   51.415580][ T2988] switching to power state:
[   51.423418][ T2988]     ui class: performance
[   51.430393][ T2988]     internal class: none
[   51.436164][ T2988]     caps:
[   51.439859][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   51.448245][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   51.460466][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   51.472484][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   51.485544][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.497192][ T2988]     status: r
[   51.501473][ T2988] switching from power state:
[   51.508454][ T2988]     ui class: performance
[   51.514380][ T2988]     internal class: none
[   51.520281][ T2988]     caps:
[   51.525981][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   51.533504][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   51.548263][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   51.563761][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.584027][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.603100][ T2988]     status: c
[   51.607292][ T2988] switching to power state:
[   51.614235][ T2988]     ui class: performance
[   51.619993][ T2988]     internal class: none
[   51.625349][ T2988]     caps:
[   51.628733][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   51.636733][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   51.648307][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   51.659756][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   51.672274][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.684201][ T2988]     status: r
[   51.688465][ T2988] switching from power state:
[   51.694306][ T2988]     ui class: performance
[   51.699785][ T2988]     internal class: none
[   51.705507][ T2988]     caps:
[   51.709873][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   51.716498][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   51.728765][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   51.740914][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.752603][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.765120][ T2988]     status: c
[   51.769792][ T2988] switching to power state:
[   51.775983][ T2988]     ui class: performance
[   51.784072][ T2988]     internal class: none
[   51.791476][ T2988]     caps:
[   51.798010][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   51.806450][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   51.820851][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   51.835549][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   51.851746][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.869598][ T2988]     status: r
[   51.874601][ T2988] switching from power state:
[   51.880539][ T2988]     ui class: performance
[   51.886381][ T2988]     internal class: none
[   51.891858][ T2988]     caps:
[   51.895376][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   51.901402][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   51.915614][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   51.930367][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.944665][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   51.962389][ T2988]     status: c
[   51.967180][ T2988] switching to power state:
[   51.974312][ T2988]     ui class: performance
[   51.980987][ T2988]     internal class: none
[   51.987707][ T2988]     caps:
[   51.994676][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   52.001348][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   52.013246][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   52.026406][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   52.041410][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.055902][ T2988]     status: r
[   52.060845][ T2988] switching from power state:
[   52.068193][ T2988]     ui class: performance
[   52.074636][ T2988]     internal class: none
[   52.081123][ T2988]     caps:
[   52.084706][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   52.090983][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   52.102174][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   52.114261][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.128809][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.145312][ T2988]     status: c
[   52.151770][ T2988] switching to power state:
[   52.159885][ T2988]     ui class: performance
[   52.167398][ T2988]     internal class: none
[   52.174692][ T2988]     caps:
[   52.178952][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   52.186203][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   52.201208][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   52.214355][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   52.230199][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.244465][ T2988]     status: r
[   52.249682][ T2988] switching from power state:
[   52.257001][ T2988]     ui class: performance
[   52.263994][ T2988]     internal class: none
[   52.269935][ T2988]     caps:
[   52.274333][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   52.280367][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   52.294763][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   52.310535][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.338199][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.362555][ T2988]     status: c
[   52.369556][ T2988] switching to power state:
[   52.377248][ T2988]     ui class: performance
[   52.383716][ T2988]     internal class: none
[   52.390403][ T2988]     caps:
[   52.395560][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   52.403050][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   52.418941][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   52.433479][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   52.450252][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.464904][ T2988]     status: r
[   52.470040][ T2988] switching from power state:
[   52.477213][ T2988]     ui class: performance
[   52.483504][ T2988]     internal class: none
[   52.489869][ T2988]     caps:
[   52.494459][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   52.502478][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   52.522066][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   52.534675][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.551013][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.566447][ T2988]     status: c
[   52.571048][ T2988] switching to power state:
[   52.579688][ T2988]     ui class: performance
[   52.586773][ T2988]     internal class: none
[   52.593774][ T2988]     caps:
[   52.598884][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   52.606989][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   52.620636][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   52.634626][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   52.649530][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.666632][ T2988]     status: r
[   52.671610][ T2988] switching from power state:
[   52.680317][ T2988]     ui class: performance
[   52.688286][ T2988]     internal class: none
[   52.696042][ T2988]     caps:
[   52.701053][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   52.710833][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   52.732312][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   52.751301][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.766846][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.780286][ T2988]     status: c
[   52.784646][ T2988] switching to power state:
[   52.791133][ T2988]     ui class: performance
[   52.797078][ T2988]     internal class: none
[   52.802544][ T2988]     caps:
[   52.806377][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   52.813006][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   52.826620][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   52.840519][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   52.854898][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.871399][ T2988]     status: r
[   52.877357][ T2988] switching from power state:
[   52.885718][ T2988]     ui class: performance
[   52.892826][ T2988]     internal class: none
[   52.898709][ T2988]     caps:
[   52.903535][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   52.910777][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   52.927721][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   52.943075][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.958703][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   52.972487][ T2988]     status: c
[   52.976410][ T2988] switching to power state:
[   52.983166][ T2988]     ui class: performance
[   52.989292][ T2988]     internal class: none
[   52.995342][ T2988]     caps:
[   52.998693][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   53.005210][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   53.017650][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   53.033148][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   53.052452][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.067238][ T2988]     status: r
[   53.072057][ T2988] switching from power state:
[   53.080014][ T2988]     ui class: performance
[   53.089692][ T2988]     internal class: none
[   53.097617][ T2988]     caps:
[   53.104229][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   53.114633][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   53.134993][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   53.157591][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.176198][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.194511][ T2988]     status: c
[   53.199333][ T2988] switching to power state:
[   53.205505][ T2988]     ui class: performance
[   53.212231][ T2988]     internal class: none
[   53.218161][ T2988]     caps:
[   53.223317][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   53.233004][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   53.246568][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   53.260107][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   53.278949][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.300534][ T2988]     status: r
[   53.308065][ T2988] switching from power state:
[   53.316766][ T2988]     ui class: performance
[   53.324025][ T2988]     internal class: none
[   53.330057][ T2988]     caps:
[   53.336703][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   53.348285][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   53.364024][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   53.379383][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.396566][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.410890][ T2988]     status: c
[   53.414902][ T2988] switching to power state:
[   53.422397][ T2988]     ui class: performance
[   53.428015][ T2988]     internal class: none
[   53.433485][ T2988]     caps:
[   53.437663][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   53.445486][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   53.458247][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   53.471189][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   53.482367][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.496406][ T2988]     status: r
[   53.501136][ T2988] switching from power state:
[   53.507315][ T2988]     ui class: performance
[   53.512239][ T2988]     internal class: none
[   53.517741][ T2988]     caps:
[   53.521019][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   53.526783][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   53.537613][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   53.549485][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.561983][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.575308][ T2988]     status: c
[   53.579470][ T2988] switching to power state:
[   53.584943][ T2988]     ui class: performance
[   53.590451][ T2988]     internal class: none
[   53.595794][ T2988]     caps:
[   53.599393][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   53.605600][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   53.616791][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   53.629764][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   53.643803][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.658182][ T2988]     status: r
[   53.663452][ T2988] switching from power state:
[   53.671492][ T2988]     ui class: performance
[   53.678954][ T2988]     internal class: none
[   53.685434][ T2988]     caps:
[   53.690055][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   53.697607][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   53.714018][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   53.729730][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.746212][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.762455][ T2988]     status: c
[   53.767499][ T2988] switching to power state:
[   53.774392][ T2988]     ui class: performance
[   53.781225][ T2988]     internal class: none
[   53.787385][ T2988]     caps:
[   53.791914][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   53.799553][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   53.813752][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   53.830811][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   53.847724][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.863984][ T2988]     status: r
[   53.868210][ T2988] switching from power state:
[   53.873907][ T2988]     ui class: performance
[   53.879633][ T2988]     internal class: none
[   53.884989][ T2988]     caps:
[   53.888607][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   53.894658][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   53.905814][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   53.917337][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.929246][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   53.940616][ T2988]     status: c
[   53.944545][ T2988] switching to power state:
[   53.950473][ T2988]     ui class: performance
[   53.956986][ T2988]     internal class: none
[   53.963041][ T2988]     caps:
[   53.967727][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   53.974924][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   53.990405][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   54.007564][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   54.027702][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   54.048105][ T2988]     status: r
[   54.054209][ T2988] switching from power state:
[   54.064523][ T2988]     ui class: performance
[   54.072401][ T2988]     internal class: none
[   54.081251][ T2988]     caps:
[   54.087859][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   54.099306][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[   54.120358][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   54.138669][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   54.158616][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   54.175846][ T2988]     status: c
[   54.181744][ T2988] switching to power state:
[   54.188211][ T2988]     ui class: performance
[   54.196419][ T2988]     internal class: none
[   54.202864][ T2988]     caps:
[   54.206627][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[   54.212773][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[   54.227275][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[   54.244267][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[   54.257389][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[   54.270212][ T2988]     status: r
[  114.350871][    C4] net eth0: rx->offset: 0, size: -1
[  114.359479][    C4] net eth0: rx->offset: 0, size: -1
[  114.374273][    C4] net eth0: rx->offset: 0, size: -1
[  114.392255][    C4] net eth0: rx->offset: 0, size: -1
[  114.409994][    C4] net eth0: rx->offset: 0, size: -1
[  114.432371][    C4] net eth0: rx->offset: 0, size: -1
[  114.444757][    C4] net eth0: rx->offset: 0, size: -1
[  114.456661][    C4] net eth0: rx->offset: 0, size: -1
[  114.468947][    C4] net eth0: rx->offset: 0, size: -1
[  114.479537][    C4] net eth0: rx->offset: 0, size: -1
[  119.771214][    C0] net_ratelimit: 10 callbacks suppressed
[  119.771234][    C0] net eth0: rx->offset: 0, size: -1
[  122.267645][    C4] net eth0: rx->offset: 0, size: -1
[  129.349111][    C0] net eth0: rx->offset: 0, size: -1
[  143.047835][    C0] net eth0: rx->offset: 0, size: -1
[  144.817545][    C2] net eth0: rx->offset: 0, size: -1
[  144.839804][    C2] net eth0: rx->offset: 0, size: -1
[  144.862807][    C2] net eth0: rx->offset: 0, size: -1
[  144.885508][    C2] net eth0: rx->offset: 0, size: -1
[  144.901521][    C2] net eth0: rx->offset: 0, size: -1
[  144.922625][    C2] net eth0: rx->offset: 0, size: -1
[  144.945898][    C2] net eth0: rx->offset: 0, size: -1
[  144.959000][    C2] net eth0: rx->offset: 0, size: -1
[  144.971690][    C2] net eth0: rx->offset: 0, size: -1
[  151.170951][    C4] net_ratelimit: 34 callbacks suppressed
[  151.184198][    C4] net eth0: rx->offset: 0, size: -1
[  157.893995][    C0] net eth0: rx->offset: 0, size: -1
[  170.029166][ T3390] vhci_hcd vhci_hcd.0: remove, state 4
[  170.038098][ T3390] usb usb4: USB disconnect, device number 1
[  170.056878][  T144] vhci_hcd: stop threads
[  170.068642][  T144] vhci_hcd: release socket
[  170.079709][  T144] vhci_hcd: disconnect device
[  170.091313][  T144] vhci_hcd: stop threads
[  170.101492][  T144] vhci_hcd: release socket
[  170.116792][  T144] vhci_hcd: disconnect device
[  170.131894][  T144] vhci_hcd: stop threads
[  170.146247][  T144] vhci_hcd: release socket
[  170.157459][  T144] vhci_hcd: disconnect device
[  170.167452][  T144] vhci_hcd: stop threads
[  170.174531][  T144] vhci_hcd: release socket
[  170.181446][  T144] vhci_hcd: disconnect device
[  170.189136][  T144] vhci_hcd: stop threads
[  170.197586][  T144] vhci_hcd: release socket
[  170.205616][  T144] vhci_hcd: disconnect device
[  170.214846][  T144] vhci_hcd: stop threads
[  170.222260][  T144] vhci_hcd: release socket
[  170.230262][  T144] vhci_hcd: disconnect device
[  170.240362][  T144] vhci_hcd: stop threads
[  170.247683][  T144] vhci_hcd: release socket
[  170.256942][  T144] vhci_hcd: disconnect device
[  170.265135][  T144] vhci_hcd: stop threads
[  170.274894][  T144] vhci_hcd: release socket
[  170.282406][  T144] vhci_hcd: disconnect device
[  170.291643][ T3390] vhci_hcd vhci_hcd.0: USB bus 4 deregistered
[  170.304527][ T3390] vhci_hcd vhci_hcd.0: remove, state 4
[  170.318038][ T3390] usb usb3: USB disconnect, device number 1
[  170.337944][  T144] vhci_hcd: stop threads
[  170.349623][  T144] vhci_hcd: release socket
[  170.361032][  T144] vhci_hcd: disconnect device
[  170.373074][  T144] vhci_hcd: stop threads
[  170.381444][  T144] vhci_hcd: release socket
[  170.392380][  T144] vhci_hcd: disconnect device
[  170.400150][  T144] vhci_hcd: stop threads
[  170.407365][  T144] vhci_hcd: release socket
[  170.414146][  T144] vhci_hcd: disconnect device
[  170.422140][  T144] vhci_hcd: stop threads
[  170.429377][  T144] vhci_hcd: release socket
[  170.437002][  T144] vhci_hcd: disconnect device
[  170.444469][  T144] vhci_hcd: stop threads
[  170.450820][  T144] vhci_hcd: release socket
[  170.458211][  T144] vhci_hcd: disconnect device
[  170.465724][  T144] vhci_hcd: stop threads
[  170.474392][  T144] vhci_hcd: release socket
[  170.482202][  T144] vhci_hcd: disconnect device
[  170.489682][  T144] vhci_hcd: stop threads
[  170.496369][  T144] vhci_hcd: release socket
[  170.504703][  T144] vhci_hcd: disconnect device
[  170.512016][  T144] vhci_hcd: stop threads
[  170.519139][  T144] vhci_hcd: release socket
[  170.529409][  T144] vhci_hcd: disconnect device
[  170.542301][ T3390] vhci_hcd vhci_hcd.0: USB bus 3 deregistered
[  170.679838][    C2] net eth0: rx->offset: 0, size: -1
          Stopping ^[[0;1;39mSession 11 of user hakon^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39msystem-modprobe.slice^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mHost and Network Name 
Lookups^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mSound Card^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped target ^[[0;1;39mTimers^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mDaily Cleanup of Temporary 
Directories^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mProcess Core Dump Socket^[[0m.
[^[[0;32m  OK  ^[[0m] Closed ^[[0;1;39mLoad/Save RF Kill Switch Status 
/dev/rfkill Watch^[[0m.
          Unmounting ^[[0;1;39m/mnt/gentoo-share^[[0m...
          Unmounting ^[[0;1;39m/usr/portage^[[0m...
          Stopping ^[[0;1;39mAccounts Service^[[0m...
          Stopping ^[[0;1;39mSave/Restore Sound Card State^[[0m...
          Stopping ^[[0;1;39mManage, Install and Generate Color 
Profiles^[[0m...
          Stopping ^[[0;1;39mService for 
local.d/ftrace_dump_on_oops.*^[[0m...
          Stopping ^[[0;1;39mService for local.d/radeon-bus-id.*^[[0m...
          Stopping ^[[0;1;39mAuthorization Manager^[[0m...
          Stopping ^[[0;1;39mLoad/Save Random Seed^[[0m...
          Stopping ^[[0;1;39mUser Manager for UID 0^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mService for 
local.d/ftrace_dump_on_oops.*^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mService for 
local.d/radeon-bus-id.*^[[0m.
          Stopping ^[[0;1;39mService for local.d/disk-tune.*^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mService for local.d/disk-tune.*^[[0m.
          Stopping ^[[0;1;39mService for local.d/config-record.*^[[0m...
[^[[0;32m  OK         Stopping ^[[0;1;39mOpenSSH server daemon^[[0m...
          Stopping ^[[0;1;39mSystem Logger Daemon "default" instance^[[0m...
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mBacula File Daemon service^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mOpenSSH server daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mGetty on tty1^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSerial Getty on hvc0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCommand Scheduler^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSerial Getty on ttyS0^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSystem Logger Daemon "default" 
instance^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mManage, Install and Generate Color 
Profiles^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAuthorization Manager^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mUser Manager for UID 0^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/mnt/gentoo-share^[[0m.
[^[[0;32m  OK  ^[[0m] Unmounted ^[[0;1;39m/usr/portage^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mSave/Restore Sound Card State^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mACPI event daemon^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mLoad/Save Random Seed^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39msystem-getty.slice^[[0m.
[^[[0;32m  OK  ^[[0m] Removed slice ^[[0;1;39msyste[  171.767105][ T105] 
switching from power state:
m-serial\x2dgett[  171.779176][  T105]     ui class: performance
[  171.793756][  T105]     internal class: none
y.slice^[[0m.
[  171.806940][  T105]     caps:
[  171.821269][  T105] [drm]     uvd    vclk: 0 dclk: 0
[  171.836987][  T105] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  171.836996][  T105] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  171.837000][  T105] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  171.837003][  T105] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[^[[0;32m  OK  ^[[[  171.837006][  T105]     status: c
0m] Removed slic[  171.837013][  T105] switching to power state:
e ^[[0;1;39msyste[  171.837015][  T105]     ui class: performance
[  171.837017][  T105]     internal class: none
m-syslog\x2dng.s[  171.837021][  T105]     caps:
lice^[[0m.
[  171.837024][  T105] [drm]     uvd    vclk: 0 dclk: 0
[  171.837026][  T105] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  171.837029][  T105] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  171.837033][  T105] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  171.837036][  T105] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  171.837038][  T105]     status: r
[  171.837556][  T105] switching from power state:
[  172.068590][  T105]     ui class: performance
[  172.068597][  T105]     internal class: none
[  172.068603][  T105]     caps:
          Stoppin[  172.068605][  T105] [drm]     uvd    vclk: 0 dclk: 0
g ^[[0;1;39mUser [  172.068609][  T105] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3
[  172.068613][  T105] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
Runtime Director[  172.068617][  T105] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
y /run/user/0^[[0[  172.068620][  T105] [drm]         power level 3    
sclk: 95500 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  172.068623][  T105]     status: c
m...
[  172.068626][  T105] switching to power state:
[  172.068628][  T105]     ui class: performance
[  172.068630][  T105]     internal class: none
[  172.068633][  T105]     caps:
[  172.068635][  T105] [drm]     uvd    vclk: 0 dclk: 0
[  172.068638][  T105] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  172.260460][  T105] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  172.260471][  T105] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  172.260475][  T105] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  172.260479][  T105]     status: r
[^[[0;32m  OK  ^[[[  172.283298][  T105] switching from power state:
0m] Unmounted ^[[[  172.334718][  T105]     ui class: performance
0;1;39m/run/user[  172.346929][  T105]     internal class: none
[  172.356983][  T105]     caps:
/0^[[0m.
[  172.364520][  T105] [drm]     uvd    vclk: 0 dclk: 0
[  172.375849][  T105] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  172.395753][  T105] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  172.395763][  T105] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  172.395766][  T105] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  172.395770][  T105]     status: c
[^[[0;32m  OK  ^[[[  172.395776][  T105] switching to power state:
0m] Stopped ^[[0;[  172.395779][  T105]     ui class: performance
1;39mMake remote[  172.395781][  T105]     internal class: none
[  172.395785][  T105]     caps:
  CUPS printers a[  172.395787][  T105] [drm]     uvd    vclk: 0 dclk: 0
[  172.395789][  T105] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
vailable locally[  172.395792][  T105] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
^[[0m.
[  172.395795][  T105] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  172.395799][  T105] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  172.395802][  T105]     status: r
[  172.581477][  T105] switching from power state:
[  172.587999][  T105]     ui class: performance
[  172.588004][  T105]     internal class: none
[  172.588010][  T105]     caps:
[  172.588012][  T105] [drm]     uvd    vclk: 0 dclk: 0
[  172.588016][  T105] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[^[[0;32m  OK  ^[[[  172.588020][  T105] [drm]         power level 1    
sclk: 45000 mclk: 140000 vddc: 950 vddci: 1000 pcie gen: 3
0m] Stopped ^[[0;[  172.588023][  T105] [drm]         power level 2    
sclk: 93000 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
1;39mUser Runtim[  172.588027][  T105] [drm]         power level 3    
sclk: 95500 mclk: 140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  172.588030][  T105]     status: c
e Directory /run[  172.588034][  T105] switching to power state:
/user/0^[[0m.
[  172.588035][  T105]     ui class: performance
[  172.734695][  T105]     internal class: none
[  172.743153][  T105]     caps:
[  172.747863][  T105] [drm]     uvd    vclk: 0 dclk: 0
[  172.754606][  T105] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  172.754613][  T105] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  172.754617][  T105] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  172.754619][  T105] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[^[[0;32m  OK  ^[[[  172.754622][  T105]     status: r
0m] Removed slic[  172.754767][  T105] switching from power state:
[  172.860991][  T105]     ui class: performance
e ^[[0;1;39mUser [  172.867089][  T105]     internal class: none
Slice of UID 0^[[[  172.875203][  T105]     caps:
[  172.881470][  T105] [drm]     uvd    vclk: 0 dclk: 0
0m.
[  172.889330][  T105] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  172.906734][  T105] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  172.918557][  T105] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  172.932338][  T105] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  172.932346][  T105]     status: c
[  172.932352][  T105] switching to power state:
          Stoppin[  172.932354][  T105]     ui class: performance
g ^[[0;1;39mAvahi[  172.932356][  T105]     internal class: none
[  172.932360][  T105]     caps:
  mDNS/DNS-SD Sta[  172.932362][  T105] [drm]     uvd    vclk: 0 dclk: 0
[  172.932365][  T105] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
ck^[[0m...
[  172.932368][  T105] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  172.932371][  T105] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  172.932374][  T105] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  172.932377][  T105]     status: r
[  172.932513][  T105] switching from power state:
[  173.069200][  T105]     ui class: performance
[  173.069205][  T105]     internal class: none
[  173.069211][  T105]     caps:
          Stoppin[  173.069213][  T105] [drm]     uvd    vclk: 0 dclk: 0
g ^[[0;1;39mCUPS [  173.069217][  T105] [drm]         power level 0    
sclk: 30000 mclk: 15000 vddc: 900 vddci: 850 pcie gen: 3
Scheduler^[[0m...
[  173.069222][  T105] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  173.069225][  T105] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  173.069228][  T105] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  173.069231][  T105]     status: c
[  173.069235][  T105] switching to power state:
[  173.069236][  T105]     ui class: performance
[  173.069238][  T105]     internal class: none
[  173.069241][  T105]     caps:
[  173.069244][  T105] [drm]     uvd    vclk: 0 dclk: 0
[  173.226364][  T105] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  173.226374][  T105] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  173.226380][  T105] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  173.226383][  T105] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  173.226386][  T105]     status: r
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mAvahi mDNS/DNS-SD Stack^[[0m.
[^[[0;32m  OK  ^[[0m] Stopped ^[[0;1;39mCUPS Scheduler^[[0m.
[  173.676996][ T2988] switching from power state:
[  173.685608][ T2988]     ui class: performance
[  173.692890][ T2988]     internal class: none
[  173.701716][ T2988]     caps:
[  173.708552][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  173.720330][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  173.739404][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  173.756798][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  173.772673][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  173.772683][ T2988]     status: c
[  173.772689][ T2988] switching to power state:
[  173.772691][ T2988]     ui class: performance
[^[[0;32m  OK  ^[[[  173.772693][ T2988]     internal class: none
0m] Stopped ^[[0;[  173.772697][ T2988]     caps:
1;39mAccounts Se[  173.772700][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  173.772703][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
rvice^[[0m.
[  173.772706][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  173.772709][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  173.772712][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  173.772715][ T2988]     status: r
[  173.933675][ T2988] switching from power state:
[  173.940210][ T2988]     ui class: performance
[  173.946592][ T2988]     internal class: none
[  173.952362][ T2988]     caps:
[  173.956396][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  173.962898][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  173.975939][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  173.994698][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.021216][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.042619][ T2988]     status: c
[  174.047717][ T2988] switching to power state:
[  174.054857][ T2988]     ui class: performance
[  174.060556][ T2988]     internal class: none
[  174.066060][ T2988]     caps:
[  174.069652][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  174.075980][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  174.088457][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  174.101182][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  174.116446][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.130094][ T2988]     status: r
[  174.151718][ T2988] switching from power state:
[  174.160065][ T2988]     ui class: performance
[  174.166732][ T2988]     internal class: none
[  174.174221][ T2988]     caps:
[  174.180681][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  174.194451][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  174.213891][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  174.227004][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.239056][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.254858][ T2988]     status: c
[  174.259900][ T2988] switching to power state:
[  174.269540][ T2988]     ui class: performance
[  174.280677][ T2988]     internal class: none
[  174.290226][ T2988]     caps:
[  174.294917][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  174.303289][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  174.319685][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  174.336738][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  174.353186][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.369386][ T2988]     status: r
[  174.375124][ T2988] switching from power state:
[  174.381298][ T2988]     ui class: performance
[  174.387061][ T2988]     internal class: none
[  174.392532][ T2988]     caps:
[  174.396184][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  174.402932][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  174.417510][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  174.443560][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.474364][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.496914][ T2988]     status: c
[  174.502184][ T2988] switching to power state:
[  174.510823][ T2988]     ui class: performance
[  174.518029][ T2988]     internal class: none
[  174.523845][ T2988]     caps:
[  174.527730][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  174.533809][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  174.546381][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  174.559560][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  174.573071][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.585596][ T2988]     status: r
[  174.589865][ T2988] switching from power state:
[  174.595665][ T2988]     ui class: performance
[  174.601790][ T2988]     internal class: none
[  174.607443][ T2988]     caps:
[  174.611988][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  174.621070][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  174.636439][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  174.650333][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.669586][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.684982][ T2988]     status: c
[  174.690780][ T2988] switching to power state:
[  174.697952][ T2988]     ui class: performance
[  174.704527][ T2988]     internal class: none
[  174.711512][ T2988]     caps:
[  174.717113][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  174.724947][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  174.741625][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  174.755981][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  174.771761][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  174.788205][ T2988]     status: r
[  174.793560][ T2988] switching from power state:
[  174.801709][ T2988]     ui class: performance
[  174.811023][ T2988]     internal class: none
[  174.824278][ T2988]     caps:
[  174.830405][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  174.843774][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  174.865656][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  174.883188][    C4] net eth0: rx->offset: 0, size: -1
[  174.883198][    C4] net eth0: rx->offset: 0, size: -1
[  174.883202][    C4] net eth0: rx->offset: 0, size: -1
[  174.883205][    C4] net eth0: rx->offset: 0, size: -1
[  174.883207][    C4] net eth0: rx->offset: 0, size: -1
[  174.883211][    C4] net eth0: rx->offset: 0, size: -1
[  174.883214][    C4] net eth0: rx->offset: 0, size: -1
[  174.883217][    C4] net eth0: rx->offset: 0, size: -1
[  174.883220][    C4] net eth0: rx->offset: 0, size: -1
[  174.883471][    C4] 
==================================================================
[  174.883474][    C4] BUG: KASAN: use-after-free in 
xennet_poll+0x28dc/0x3c80
[  174.883484][    C4] Write of size 8 at addr ffff88812fba1040 by task 
X/2988
[  174.883488][    C4]
[  174.883490][    C4] CPU: 4 PID: 2988 Comm: X Not tainted 
5.13.0-rc6-x86_64 #1
[  174.883494][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  174.883497][    C4] Call Trace:
[  174.883500][    C4]  <IRQ>
[  174.883503][    C4]  dump_stack+0xa1/0xd3
[  174.883510][    C4] print_address_description.constprop.0+0x1d/0x140
[  174.883518][    C4]  ? xennet_poll+0x28dc/0x3c80
[  174.883524][    C4]  kasan_report.cold+0x7b/0xd4
[  174.883532][    C4]  ? xennet_poll+0x28dc/0x3c80
[  174.883539][    C4]  __asan_report_store8_noabort+0x17/0x20
[  174.883545][    C4]  xennet_poll+0x28dc/0x3c80
[  174.883555][    C4]  ? xen_vcpuop_set_next_event+0x124/0x1c0
[  174.883568][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  174.883574][    C4]  ? __kasan_check_read+0x11/0x20
[  174.883579][    C4]  ? __raise_softirq_irqoff+0x36/0xe0
[  174.883586][    C4]  ? __napi_schedule+0x1b5/0x260
[  174.883596][    C4]  ? __kasan_check_read+0x11/0x20
[  174.883601][    C4]  ? __lock_acquire.constprop.0+0x494/0xe40
[  174.883609][    C4]  ? lock_release+0x205/0x820
[  174.883613][    C4]  ? do_raw_spin_lock+0x13e/0x280
[  174.883631][    C4]  ? handle_edge_irq+0x35e/0xb60
[  174.883642][    C4]  ? handle_irq_for_port+0x192/0x4c0
[  174.883650][    C4]  ? __kasan_check_write+0x14/0x20
[  174.883657][    C4]  __napi_poll+0xb2/0x4c0
[  174.883665][    C4]  net_rx_action+0x2d7/0xa20
[  174.883673][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  174.883677][    C4]  ? __xen_evtchn_do_upcall+0x99/0x180
[  174.883684][    C4]  ? __kasan_check_write+0x14/0x20
[  174.883690][    C4]  ? _raw_read_unlock+0x23/0x40
[  174.883698][    C4]  ? __xen_evtchn_do_upcall+0x107/0x180
[  174.883705][    C4]  __do_softirq+0x1cd/0x66d
[  174.883730][    C4]  irq_exit_rcu+0x12c/0x1c0
[  174.883739][    C4]  sysvec_xen_hvm_callback+0x79/0xa0
[  174.883745][    C4]  </IRQ>
[  174.883748][    C4]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  174.883753][    C4] RIP: 0010:console_unlock+0x78f/0x940
[  174.883759][    C4] Code: 28 ff ff ff 4c 29 e6 49 8d bc 24 60 6f 2f 
86 e8 47 d7 ff ff 4c 01 e0 48 89 85 c0 fe ff ff e9 d5 fa ff ff fb 66 0f 
1f 44 00 00 <e9> 61 fe ff ff c7 05 82 3d e3 04 00 00 00 00 48 8b 7d 08 
e8 d9 e1
[  174.883763][    C4] RSP: 0018:ffffc90000617438 EFLAGS: 00000206
[  174.883769][    C4] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 
1ffff1102279ab9f
[  174.883772][    C4] RDX: 1ffff1102279ab70 RSI: 0000000000000000 RDI: 
ffff888113cd5b80
[  174.883775][    C4] RBP: ffffc900006175a8 R08: 0000000000000000 R09: 
000000000000000a
[  174.883777][    C4] R10: ffff888113cd5b88 R11: 0000000000080000 R12: 
0000000000000200
[  174.883780][    C4] R13: ffffc900006174a0 R14: dffffc0000000000 R15: 
ffffc90000617580
[  174.883792][    C4]  ? console_unlock+0x5ec/0x940
[  174.883801][    C4]  ? devkmsg_read+0x6e0/0x6e0
[  174.883808][    C4]  ? zap_class+0x162/0x740
[  174.883817][    C4]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  174.883823][    C4]  ? vprintk_default+0x1d/0x20
[  174.883832][    C4]  vprintk_emit+0xea/0x260
[  174.883840][    C4]  vprintk_default+0x1d/0x20
[  174.883844][    C4]  vprintk+0x4c/0xe0
[  174.883849][    C4]  printk+0xb2/0xe3
[  174.883853][    C4]  ? record_print_text.cold+0x11/0x11
[  174.883856][    C4]  ? record_print_text.cold+0x11/0x11
[  174.883861][    C4]  ? vprintk+0x4c/0xe0
[  174.883866][    C4]  ? printk+0xb2/0xe3
[  174.883874][    C4]  si_dpm_print_power_state.cold+0x15b/0x1d7 [amdgpu]
[  174.884295][    C4]  ? si_dpm_vblank_too_short+0x60/0x60 [amdgpu]
[  174.884619][    C4] amdgpu_pm_compute_clocks.part.0.cold+0x16d/0x339 
[amdgpu]
[  174.884949][    C4]  ? amdgpu_dpm_get_vrefresh+0x200/0x200 [amdgpu]
[  174.885269][    C4]  ? amdgpu_atombios_crtc_lock+0x180/0x180 [amdgpu]
[  174.885566][    C4]  ? amdgpu_atombios_crtc_blank+0x180/0x180 [amdgpu]
[  174.885827][    C4]  amdgpu_pm_compute_clocks+0x58/0x80 [amdgpu]
[  174.886146][    C4]  dce_v6_0_crtc_dpms+0xe4/0x220 [amdgpu]
[  174.886422][    C4]  dce_v6_0_crtc_disable+0x9c/0xce0 [amdgpu]
[  174.886733][    C4]  ? drm_helper_encoder_in_use+0x222/0x2e0
[  174.886741][    C4]  ? drm_helper_force_disable_all+0x1e0/0x1e0
[  174.886747][    C4]  ? dce_v6_0_resume+0x1e0/0x1e0 [amdgpu]
[  174.887020][    C4]  ? __kasan_check_read+0x11/0x20
[  174.887026][    C4]  ? mutex_is_locked+0x17/0x60
[  174.887036][    C4] __drm_helper_disable_unused_functions+0xfb/0x2a0
[  174.887043][    C4]  drm_crtc_helper_set_config+0x14a8/0x28a0
[  174.887048][    C4]  ? find_held_lock+0x35/0x140
[  174.887065][    C4]  ? drm_connector_get_single_encoder+0x220/0x220
[  174.887069][    C4]  ? do_raw_spin_unlock+0x159/0x200
[  174.887075][    C4]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  174.887085][    C4]  amdgpu_display_crtc_set_config+0xb7/0x460 [amdgpu]
[  174.887361][    C4] __drm_mode_set_config_internal+0x298/0x6c0
[  174.887369][    C4]  ? 
drm_warn_on_modeset_not_all_locked.part.0+0x97/0xe0
[  174.887378][    C4]  drm_mode_set_config_internal+0x12e/0x180
[  174.887385][    C4] drm_client_modeset_commit_locked+0x30c/0x4e0
[  174.887389][    C4]  ? mutex_lock_nested+0x1b/0x20
[  174.887397][    C4]  drm_client_modeset_commit+0x3f/0x80
[  174.887402][    C4] 
__drm_fb_helper_restore_fbdev_mode_unlocked+0x15a/0x1a0
[  174.887412][    C4]  drm_fb_helper_lastclose+0x39/0x60
[  174.887416][    C4]  amdgpu_driver_lastclose_kms+0xe/0x20 [amdgpu]
[  174.887671][    C4]  drm_release+0x3b8/0x4c0
[  174.887679][    C4]  __fput+0x1b7/0x780
[  174.887690][    C4]  ____fput+0xe/0x20
[  174.887695][    C4]  task_work_run+0xd4/0x160
[  174.887704][    C4]  do_exit+0x9d3/0x2380
[  174.887708][    C4]  ? __up_read+0x1d4/0x8c0
[  174.887711][    C4]  ? lock_release+0x205/0x820
[  174.887720][    C4]  ? mm_update_next_owner+0x6a0/0x6a0
[  174.887731][    C4]  ? up_read+0x23/0x40
[  174.887738][    C4]  do_group_exit+0xfd/0x2c0
[  174.887745][    C4]  __x64_sys_exit_group+0x43/0x60
[  174.887750][    C4]  do_syscall_64+0x40/0xc0
[  174.887756][    C4]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[  174.887761][    C4] RIP: 0033:0x7f0f4e5097c9
[  174.887765][    C4] Code: Unable to access opcode bytes at RIP 
0x7f0f4e50979f.
[  174.887767][    C4] RSP: 002b:00007fffa554fed8 EFLAGS: 00000246 
ORIG_RAX: 00000000000000e7
[  174.887772][    C4] RAX: ffffffffffffffda RBX: 00007f0f4e604800 RCX: 
00007f0f4e5097c9
[  174.887775][    C4] RDX: 000000000000003c RSI: 00000000000000e7 RDI: 
0000000000000000
[  174.887777][    C4] RBP: 00007f0f4e604800 R08: fffffffffffffd78 R09: 
000055cf14e37180
[  174.887780][    C4] R10: fffffffffffff9bc R11: 0000000000000246 R12: 
0000000000000000
[  174.887782][    C4] R13: 0000000000000000 R14: 00000000000005dd R15: 
0000000000000000
[  174.887795][    C4]
[  174.887797][    C4] Allocated by task 0:
[  174.887799][    C4]  kasan_save_stack+0x23/0x60
[  174.887804][    C4]  __kasan_slab_alloc+0x68/0x80
[  174.887808][    C4]  kmem_cache_alloc_node+0x242/0x380
[  174.887811][    C4]  __alloc_skb+0x156/0x280
[  174.887816][    C4]  __netdev_alloc_skb+0x46/0x320
[  174.887820][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  174.887825][    C4]  xennet_poll+0x1e8b/0x3c80
[  174.887829][    C4]  __napi_poll+0xb2/0x4c0
[  174.887833][    C4]  net_rx_action+0x2d7/0xa20
[  174.887836][    C4]  __do_softirq+0x1cd/0x66d
[  174.887839][    C4]
[  174.887840][    C4] Freed by task 0:
[  174.887842][    C4]  kasan_save_stack+0x23/0x60
[  174.887846][    C4]  kasan_set_track+0x20/0x40
[  174.887849][    C4]  kasan_set_free_info+0x24/0x40
[  174.887854][    C4]  __kasan_slab_free+0xf1/0x140
[  174.887857][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  174.887861][    C4]  kmem_cache_free+0x10b/0x520
[  174.887864][    C4]  kfree_skbmem+0x9a/0x140
[  174.887868][    C4]  kfree_skb+0x10d/0x240
[  174.887871][    C4]  xennet_poll+0x1ab2/0x3c80
[  174.887875][    C4]  __napi_poll+0xb2/0x4c0
[  174.887878][    C4]  net_rx_action+0x2d7/0xa20
[  174.887881][    C4]  __do_softirq+0x1cd/0x66d
[  174.887884][    C4]
[  174.887886][    C4] The buggy address belongs to the object at 
ffff88812fba1040
[  174.887886][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  174.887889][    C4] The buggy address is located 0 bytes inside of
[  174.887889][    C4]  216-byte region [ffff88812fba1040, 
ffff88812fba1118)
[  174.887892][    C4] The buggy address belongs to the page:
[  174.887894][    C4] page:00000000d03f6c30 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fba0
[  174.887899][    C4] head:00000000d03f6c30 order:1 compound_mapcount:0
[  174.887902][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  174.887910][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  174.887914][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  174.887916][    C4] page dumped because: kasan: bad access detected
[  174.887918][    C4]
[  174.887919][    C4] Memory state around the buggy address:
[  174.887921][    C4]  ffff88812fba0f00: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.887924][    C4]  ffff88812fba0f80: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  174.887926][    C4] >ffff88812fba1000: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  174.887928][    C4] ^
[  174.887930][    C4]  ffff88812fba1080: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.887932][    C4]  ffff88812fba1100: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  174.887934][    C4] 
==================================================================
[  174.887936][    C4] Disabling lock debugging due to kernel taint
[  174.888006][    C4] 
==================================================================
[  174.888008][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  174.888012][    C4]
[  174.888014][    C4] CPU: 4 PID: 2988 Comm: X Tainted: G B             
5.13.0-rc6-x86_64 #1
[  174.888018][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  174.888020][    C4] Call Trace:
[  174.888021][    C4]  <IRQ>
[  174.888023][    C4]  dump_stack+0xa1/0xd3
[  174.888027][    C4] print_address_description.constprop.0+0x1d/0x140
[  174.888032][    C4]  ? kfree+0xd7/0x560
[  174.888036][    C4]  kasan_report_invalid_free+0x56/0x80
[  174.888040][    C4]  ? kfree+0xd7/0x560
[  174.888082][    C4]  __kasan_slab_free+0x110/0x140
[  174.888087][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  174.888092][    C4]  kfree+0xd7/0x560
[  174.888095][    C4]  ? skb_release_data+0x41c/0x520
[  174.888099][    C4]  ? xennet_poll+0x15d9/0x3c80
[  174.888104][    C4]  ? kmem_cache_free+0x10b/0x520
[  174.888109][    C4]  skb_release_data+0x41c/0x520
[  174.888113][    C4]  ? xennet_poll+0x15d9/0x3c80
[  174.888118][    C4]  ? xennet_poll+0x15d9/0x3c80
[  174.888122][    C4]  kfree_skb+0x105/0x240
[  174.888126][    C4]  xennet_poll+0x15d9/0x3c80
[  174.888135][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  174.888139][    C4]  ? __kasan_check_read+0x11/0x20
[  174.888144][    C4]  ? __raise_softirq_irqoff+0x36/0xe0
[  174.888149][    C4]  ? __napi_schedule+0x1b5/0x260
[  174.888156][    C4]  ? __kasan_check_read+0x11/0x20
[  174.888160][    C4]  ? __lock_acquire.constprop.0+0x494/0xe40
[  174.888165][    C4]  ? lock_release+0x205/0x820
[  174.888168][    C4]  ? do_raw_spin_lock+0x13e/0x280
[  174.888176][    C4]  ? handle_edge_irq+0x35e/0xb60
[  174.888182][    C4]  ? handle_irq_for_port+0x192/0x4c0
[  174.888187][    C4]  ? __kasan_check_write+0x14/0x20
[  174.888193][    C4]  __napi_poll+0xb2/0x4c0
[  174.888197][    C4]  net_rx_action+0x2d7/0xa20
[  174.888202][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  174.888205][    C4]  ? __xen_evtchn_do_upcall+0x99/0x180
[  174.888210][    C4]  ? __kasan_check_write+0x14/0x20
[  174.888214][    C4]  ? _raw_read_unlock+0x23/0x40
[  174.888219][    C4]  ? __xen_evtchn_do_upcall+0x107/0x180
[  174.888224][    C4]  __do_softirq+0x1cd/0x66d
[  174.888229][    C4]  irq_exit_rcu+0x12c/0x1c0
[  174.888234][    C4]  sysvec_xen_hvm_callback+0x79/0xa0
[  174.888238][    C4]  </IRQ>
[  174.888240][    C4]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  174.888245][    C4] RIP: 0010:console_unlock+0x78f/0x940
[  174.888249][    C4] Code: 28 ff ff ff 4c 29 e6 49 8d bc 24 60 6f 2f 
86 e8 47 d7 ff ff 4c 01 e0 48 89 85 c0 fe ff ff e9 d5 fa ff ff fb 66 0f 
1f 44 00 00 <e9> 61 fe ff ff c7 05 82 3d e3 04 00 00 00 00 48 8b 7d 08 
e8 d9 e1
[  174.888252][    C4] RSP: 0018:ffffc90000617438 EFLAGS: 00000206
[  174.888256][    C4] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 
1ffff1102279ab9f
[  174.888258][    C4] RDX: 1ffff1102279ab70 RSI: 0000000000000000 RDI: 
ffff888113cd5b80
[  174.888260][    C4] RBP: ffffc900006175a8 R08: 0000000000000000 R09: 
000000000000000a
[  174.888262][    C4] R10: ffff888113cd5b88 R11: 0000000000080000 R12: 
0000000000000200
[  174.888265][    C4] R13: ffffc900006174a0 R14: dffffc0000000000 R15: 
ffffc90000617580
[  174.888270][    C4]  ? console_unlock+0x5ec/0x940
[  174.888275][    C4]  ? devkmsg_read+0x6e0/0x6e0
[  174.888280][    C4]  ? zap_class+0x162/0x740
[  174.888284][    C4]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  174.888289][    C4]  ? vprintk_default+0x1d/0x20
[  174.888294][    C4]  vprintk_emit+0xea/0x260
[  174.888299][    C4]  vprintk_default+0x1d/0x20
[  174.888302][    C4]  vprintk+0x4c/0xe0
[  174.888306][    C4]  printk+0xb2/0xe3
[  174.888309][    C4]  ? record_print_text.cold+0x11/0x11
[  174.888312][    C4]  ? record_print_text.cold+0x11/0x11
[  174.888316][    C4]  ? vprintk+0x4c/0xe0
[  174.888319][    C4]  ? printk+0xb2/0xe3
[  174.888324][    C4]  si_dpm_print_power_state.cold+0x15b/0x1d7 [amdgpu]
[  174.888653][    C4]  ? si_dpm_vblank_too_short+0x60/0x60 [amdgpu]
[  174.888979][    C4] amdgpu_pm_compute_clocks.part.0.cold+0x16d/0x339 
[amdgpu]
[  174.889306][    C4]  ? amdgpu_dpm_get_vrefresh+0x200/0x200 [amdgpu]
[  174.889661][    C4]  ? amdgpu_atombios_crtc_lock+0x180/0x180 [amdgpu]
[  174.889937][    C4]  ? amdgpu_atombios_crtc_blank+0x180/0x180 [amdgpu]
[  174.890195][    C4]  amdgpu_pm_compute_clocks+0x58/0x80 [amdgpu]
[  174.890512][    C4]  dce_v6_0_crtc_dpms+0xe4/0x220 [amdgpu]
[  174.890787][    C4]  dce_v6_0_crtc_disable+0x9c/0xce0 [amdgpu]
[  174.891227][    C4]  ? drm_helper_encoder_in_use+0x222/0x2e0
[  174.891234][    C4]  ? drm_helper_force_disable_all+0x1e0/0x1e0
[  174.891239][    C4]  ? dce_v6_0_resume+0x1e0/0x1e0 [amdgpu]
[  174.891509][    C4]  ? __kasan_check_read+0x11/0x20
[  174.891515][    C4]  ? mutex_is_locked+0x17/0x60
[  174.891522][    C4] __drm_helper_disable_unused_functions+0xfb/0x2a0
[  174.891528][    C4]  drm_crtc_helper_set_config+0x14a8/0x28a0
[  174.891532][    C4]  ? find_held_lock+0x35/0x140
[  174.891539][    C4]  ? drm_connector_get_single_encoder+0x220/0x220
[  174.891544][    C4]  ? do_raw_spin_unlock+0x159/0x200
[  174.891548][    C4]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  174.891555][    C4]  amdgpu_display_crtc_set_config+0xb7/0x460 [amdgpu]
[  174.891813][    C4] __drm_mode_set_config_internal+0x298/0x6c0
[  174.891819][    C4]  ? 
drm_warn_on_modeset_not_all_locked.part.0+0x97/0xe0
[  174.891826][    C4]  drm_mode_set_config_internal+0x12e/0x180
[  174.891831][    C4] drm_client_modeset_commit_locked+0x30c/0x4e0
[  174.891835][    C4]  ? mutex_lock_nested+0x1b/0x20
[  174.891840][    C4]  drm_client_modeset_commit+0x3f/0x80
[  174.891844][    C4] 
__drm_fb_helper_restore_fbdev_mode_unlocked+0x15a/0x1a0
[  174.891852][    C4]  drm_fb_helper_lastclose+0x39/0x60
[  174.891855][    C4]  amdgpu_driver_lastclose_kms+0xe/0x20 [amdgpu]
[  174.892130][    C4]  drm_release+0x3b8/0x4c0
[  174.892136][    C4]  __fput+0x1b7/0x780
[  174.892143][    C4]  ____fput+0xe/0x20
[  174.892147][    C4]  task_work_run+0xd4/0x160
[  174.892153][    C4]  do_exit+0x9d3/0x2380
[  174.892157][    C4]  ? __up_read+0x1d4/0x8c0
[  174.892160][    C4]  ? lock_release+0x205/0x820
[  174.892165][    C4]  ? mm_update_next_owner+0x6a0/0x6a0
[  174.892171][    C4]  ? up_read+0x23/0x40
[  174.892175][    C4]  do_group_exit+0xfd/0x2c0
[  174.892180][    C4]  __x64_sys_exit_group+0x43/0x60
[  174.892184][    C4]  do_syscall_64+0x40/0xc0
[  174.892189][    C4]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[  174.892194][    C4] RIP: 0033:0x7f0f4e5097c9
[  174.892198][    C4] Code: Unable to access opcode bytes at RIP 
0x7f0f4e50979f.
[  174.892199][    C4] RSP: 002b:00007fffa554fed8 EFLAGS: 00000246 
ORIG_RAX: 00000000000000e7
[  174.892205][    C4] RAX: ffffffffffffffda RBX: 00007f0f4e604800 RCX: 
00007f0f4e5097c9
[  174.892208][    C4] RDX: 000000000000003c RSI: 00000000000000e7 RDI: 
0000000000000000
[  174.892210][    C4] RBP: 00007f0f4e604800 R08: fffffffffffffd78 R09: 
000055cf14e37180
[  174.892212][    C4] R10: fffffffffffff9bc R11: 0000000000000246 R12: 
0000000000000000
[  174.892215][    C4] R13: 0000000000000000 R14: 00000000000005dd R15: 
0000000000000000
[  174.892220][    C4]
[  174.892222][    C4] Allocated by task 0:
[  174.892224][    C4] (stack is not available)
[  174.892225][    C4]
[  174.892227][    C4] Freed by task 0:
[  174.892229][    C4]  kasan_save_stack+0x23/0x60
[  174.892234][    C4]  kasan_set_track+0x20/0x40
[  174.892237][    C4]  kasan_set_free_info+0x24/0x40
[  174.892241][    C4]  __kasan_slab_free+0xf1/0x140
[  174.892245][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  174.892248][    C4]  kfree+0xd7/0x560
[  174.892251][    C4]  skb_release_data+0x41c/0x520
[  174.892255][    C4]  kfree_skb+0x105/0x240
[  174.892258][    C4]  xennet_poll+0x1ab2/0x3c80
[  174.892263][    C4]  __napi_poll+0xb2/0x4c0
[  174.892266][    C4]  net_rx_action+0x2d7/0xa20
[  174.892269][    C4]  __do_softirq+0x1cd/0x66d
[  174.892272][    C4]
[  174.892273][    C4] The buggy address belongs to the object at 
ffff88812fabd800
[  174.892273][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  174.892276][    C4] The buggy address is located 0 bytes inside of
[  174.892276][    C4]  1024-byte region [ffff88812fabd800, 
ffff88812fabdc00)
[  174.892280][    C4] The buggy address belongs to the page:
[  174.892282][    C4] page:00000000d0c67a5b refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fab8
[  174.892286][    C4] head:00000000d0c67a5b order:3 compound_mapcount:0 
compound_pincount:0
[  174.892290][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  174.892297][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  174.892300][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  174.892302][    C4] page dumped because: kasan: bad access detected
[  174.892304][    C4]
[  174.892305][    C4] Memory state around the buggy address:
[  174.892307][    C4]  ffff88812fabd700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  174.892309][    C4]  ffff88812fabd780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  174.892311][    C4] >ffff88812fabd800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.892313][    C4]                    ^
[  174.892315][    C4]  ffff88812fabd880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.892317][    C4]  ffff88812fabd900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.892319][    C4] 
==================================================================
[  174.892348][    C4] 
==================================================================
[  174.892350][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  174.892354][    C4]
[  174.892356][    C4] CPU: 4 PID: 2988 Comm: X Tainted: G B             
5.13.0-rc6-x86_64 #1
[  174.892360][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  174.892362][    C4] Call Trace:
[  174.892364][    C4]  <IRQ>
[  174.892366][    C4]  dump_stack+0xa1/0xd3
[  174.892371][    C4] print_address_description.constprop.0+0x1d/0x140
[  174.892385][    C4]  ? kmem_cache_free+0x10b/0x520
[  174.892389][    C4]  kasan_report_invalid_free+0x56/0x80
[  174.892394][    C4]  ? kmem_cache_free+0x10b/0x520
[  174.892397][    C4]  __kasan_slab_free+0x110/0x140
[  174.892402][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  174.892406][    C4]  ? xennet_poll+0x15d9/0x3c80
[  174.892411][    C4]  kmem_cache_free+0x10b/0x520
[  174.892415][    C4]  ? kfree_skbmem+0x9a/0x140
[  174.892420][    C4]  ? xennet_poll+0x15d9/0x3c80
[  174.892424][    C4]  kfree_skbmem+0x9a/0x140
[  174.892428][    C4]  kfree_skb+0x10d/0x240
[  174.892432][    C4]  xennet_poll+0x15d9/0x3c80
[  174.892441][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  174.892445][    C4]  ? __kasan_check_read+0x11/0x20
[  174.892450][    C4]  ? __raise_softirq_irqoff+0x36/0xe0
[  174.892455][    C4]  ? __napi_schedule+0x1b5/0x260
[  174.892461][    C4]  ? __kasan_check_read+0x11/0x20
[  174.892466][    C4]  ? __lock_acquire.constprop.0+0x494/0xe40
[  174.892470][    C4]  ? lock_release+0x205/0x820
[  174.892473][    C4]  ? do_raw_spin_lock+0x13e/0x280
[  174.892481][    C4]  ? handle_edge_irq+0x35e/0xb60
[  174.892487][    C4]  ? handle_irq_for_port+0x192/0x4c0
[  174.892493][    C4]  ? __kasan_check_write+0x14/0x20
[  174.892498][    C4]  __napi_poll+0xb2/0x4c0
[  174.892503][    C4]  net_rx_action+0x2d7/0xa20
[  174.892507][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  174.892510][    C4]  ? __xen_evtchn_do_upcall+0x99/0x180
[  174.892515][    C4]  ? __kasan_check_write+0x14/0x20
[  174.892520][    C4]  ? _raw_read_unlock+0x23/0x40
[  174.892524][    C4]  ? __xen_evtchn_do_upcall+0x107/0x180
[  174.892529][    C4]  __do_softirq+0x1cd/0x66d
[  174.892534][    C4]  irq_exit_rcu+0x12c/0x1c0
[  174.892538][    C4]  sysvec_xen_hvm_callback+0x79/0xa0
[  174.892543][    C4]  </IRQ>
[  174.892545][    C4]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  174.892549][    C4] RIP: 0010:console_unlock+0x78f/0x940
[  174.892553][    C4] Code: 28 ff ff ff 4c 29 e6 49 8d bc 24 60 6f 2f 
86 e8 47 d7 ff ff 4c 01 e0 48 89 85 c0 fe ff ff e9 d5 fa ff ff fb 66 0f 
1f 44 00 00 <e9> 61 fe ff ff c7 05 82 3d e3 04 00 00 00 00 48 8b 7d 08 
e8 d9 e1
[  174.892557][    C4] RSP: 0018:ffffc90000617438 EFLAGS: 00000206
[  174.892560][    C4] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 
1ffff1102279ab9f
[  174.892563][    C4] RDX: 1ffff1102279ab70 RSI: 0000000000000000 RDI: 
ffff888113cd5b80
[  174.892565][    C4] RBP: ffffc900006175a8 R08: 0000000000000000 R09: 
000000000000000a
[  174.892567][    C4] R10: ffff888113cd5b88 R11: 0000000000080000 R12: 
0000000000000200
[  174.892569][    C4] R13: ffffc900006174a0 R14: dffffc0000000000 R15: 
ffffc90000617580
[  174.892575][    C4]  ? console_unlock+0x5ec/0x940
[  174.892580][    C4]  ? devkmsg_read+0x6e0/0x6e0
[  174.892585][    C4]  ? zap_class+0x162/0x740
[  174.892589][    C4]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  174.892594][    C4]  ? vprintk_default+0x1d/0x20
[  174.892600][    C4]  vprintk_emit+0xea/0x260
[  174.892604][    C4]  vprintk_default+0x1d/0x20
[  174.892608][    C4]  vprintk+0x4c/0xe0
[  174.892611][    C4]  printk+0xb2/0xe3
[  174.892615][    C4]  ? record_print_text.cold+0x11/0x11
[  174.892618][    C4]  ? record_print_text.cold+0x11/0x11
[  174.892621][    C4]  ? vprintk+0x4c/0xe0
[  174.892625][    C4]  ? printk+0xb2/0xe3
[  174.892629][    C4]  si_dpm_print_power_state.cold+0x15b/0x1d7 [amdgpu]
[  174.892961][    C4]  ? si_dpm_vblank_too_short+0x60/0x60 [amdgpu]
[  174.893336][    C4] amdgpu_pm_compute_clocks.part.0.cold+0x16d/0x339 
[amdgpu]
[  174.893710][    C4]  ? amdgpu_dpm_get_vrefresh+0x200/0x200 [amdgpu]
[  174.894026][    C4]  ? amdgpu_atombios_crtc_lock+0x180/0x180 [amdgpu]
[  174.894293][    C4]  ? amdgpu_atombios_crtc_blank+0x180/0x180 [amdgpu]
[  174.894542][    C4]  amdgpu_pm_compute_clocks+0x58/0x80 [amdgpu]
[  174.894865][    C4]  dce_v6_0_crtc_dpms+0xe4/0x220 [amdgpu]
[  174.895175][    C4]  dce_v6_0_crtc_disable+0x9c/0xce0 [amdgpu]
[  174.895446][    C4]  ? drm_helper_encoder_in_use+0x222/0x2e0
[  174.895451][    C4]  ? drm_helper_force_disable_all+0x1e0/0x1e0
[  174.895456][    C4]  ? dce_v6_0_resume+0x1e0/0x1e0 [amdgpu]
[  174.895727][    C4]  ? __kasan_check_read+0x11/0x20
[  174.895732][    C4]  ? mutex_is_locked+0x17/0x60
[  174.895738][    C4] __drm_helper_disable_unused_functions+0xfb/0x2a0
[  174.895743][    C4]  drm_crtc_helper_set_config+0x14a8/0x28a0
[  174.895747][    C4]  ? find_held_lock+0x35/0x140
[  174.895755][    C4]  ? drm_connector_get_single_encoder+0x220/0x220
[  174.895759][    C4]  ? do_raw_spin_unlock+0x159/0x200
[  174.895763][    C4]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  174.895769][    C4]  amdgpu_display_crtc_set_config+0xb7/0x460 [amdgpu]
[  174.896030][    C4] __drm_mode_set_config_internal+0x298/0x6c0
[  174.896036][    C4]  ? 
drm_warn_on_modeset_not_all_locked.part.0+0x97/0xe0
[  174.896042][    C4]  drm_mode_set_config_internal+0x12e/0x180
[  174.896047][    C4] drm_client_modeset_commit_locked+0x30c/0x4e0
[  174.896051][    C4]  ? mutex_lock_nested+0x1b/0x20
[  174.896055][    C4]  drm_client_modeset_commit+0x3f/0x80
[  174.896059][    C4] 
__drm_fb_helper_restore_fbdev_mode_unlocked+0x15a/0x1a0
[  174.896066][    C4]  drm_fb_helper_lastclose+0x39/0x60
[  174.896069][    C4]  amdgpu_driver_lastclose_kms+0xe/0x20 [amdgpu]
[  174.896343][    C4]  drm_release+0x3b8/0x4c0
[  174.896347][    C4]  __fput+0x1b7/0x780
[  174.896353][    C4]  ____fput+0xe/0x20
[  174.896357][    C4]  task_work_run+0xd4/0x160
[  174.896362][    C4]  do_exit+0x9d3/0x2380
[  174.896405][    C4]  ? __up_read+0x1d4/0x8c0
[  174.896407][    C4]  ? lock_release+0x205/0x820
[  174.896412][    C4]  ? mm_update_next_owner+0x6a0/0x6a0
[  174.896418][    C4]  ? up_read+0x23/0x40
[  174.896421][    C4]  do_group_exit+0xfd/0x2c0
[  174.896426][    C4]  __x64_sys_exit_group+0x43/0x60
[  174.896430][    C4]  do_syscall_64+0x40/0xc0
[  174.896434][    C4]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[  174.896438][    C4] RIP: 0033:0x7f0f4e5097c9
[  174.896441][    C4] Code: Unable to access opcode bytes at RIP 
0x7f0f4e50979f.
[  174.896443][    C4] RSP: 002b:00007fffa554fed8 EFLAGS: 00000246 
ORIG_RAX: 00000000000000e7
[  174.896447][    C4] RAX: ffffffffffffffda RBX: 00007f0f4e604800 RCX: 
00007f0f4e5097c9
[  174.896450][    C4] RDX: 000000000000003c RSI: 00000000000000e7 RDI: 
0000000000000000
[  174.896452][    C4] RBP: 00007f0f4e604800 R08: fffffffffffffd78 R09: 
000055cf14e37180
[  174.896454][    C4] R10: fffffffffffff9bc R11: 0000000000000246 R12: 
0000000000000000
[  174.896456][    C4] R13: 0000000000000000 R14: 00000000000005dd R15: 
0000000000000000
[  174.896462][    C4]
[  174.896463][    C4] Allocated by task 0:
[  174.896466][    C4]  kasan_save_stack+0x23/0x60
[  174.896470][    C4]  __kasan_slab_alloc+0x68/0x80
[  174.896473][    C4]  kmem_cache_alloc_node+0x242/0x380
[  174.896476][    C4]  __alloc_skb+0x156/0x280
[  174.896479][    C4]  __netdev_alloc_skb+0x46/0x320
[  174.896482][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  174.896486][    C4]  xennet_poll+0x1e8b/0x3c80
[  174.896490][    C4]  __napi_poll+0xb2/0x4c0
[  174.896492][    C4]  net_rx_action+0x2d7/0xa20
[  174.896495][    C4]  __do_softirq+0x1cd/0x66d
[  174.896497][    C4]
[  174.896498][    C4] Freed by task 0:
[  174.896500][    C4] (stack is not available)
[  174.896501][    C4]
[  174.896502][    C4] The buggy address belongs to the object at 
ffff88812fba1040
[  174.896502][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  174.896505][    C4] The buggy address is located 0 bytes inside of
[  174.896505][    C4]  216-byte region [ffff88812fba1040, 
ffff88812fba1118)
[  174.896508][    C4] The buggy address belongs to the page:
[  174.896509][    C4] page:00000000d03f6c30 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fba0
[  174.896513][    C4] head:00000000d03f6c30 order:1 compound_mapcount:0
[  174.896515][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  174.896520][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  174.896523][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  174.896525][    C4] page dumped because: kasan: bad access detected
[  174.896526][    C4]
[  174.896527][    C4] Memory state around the buggy address:
[  174.896529][    C4]  ffff88812fba0f00: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.896532][    C4]  ffff88812fba0f80: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  174.896534][    C4] >ffff88812fba1000: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  174.896535][    C4] ^
[  174.896537][    C4]  ffff88812fba1080: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.896539][    C4]  ffff88812fba1100: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  174.896541][    C4] 
==================================================================
[  174.896568][    C4] 
==================================================================
[  174.896570][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  174.896573][    C4]
[  174.896575][    C4] CPU: 4 PID: 2988 Comm: X Tainted: G B             
5.13.0-rc6-x86_64 #1
[  174.896579][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  174.896580][    C4] Call Trace:
[  174.896582][    C4]  <IRQ>
[  174.896584][    C4]  dump_stack+0xa1/0xd3
[  174.896588][    C4] print_address_description.constprop.0+0x1d/0x140
[  174.896592][    C4]  ? kfree+0xd7/0x560
[  174.896595][    C4]  kasan_report_invalid_free+0x56/0x80
[  174.896599][    C4]  ? kfree+0xd7/0x560
[  174.896603][    C4]  __kasan_slab_free+0x110/0x140
[  174.896607][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  174.896612][    C4]  kfree+0xd7/0x560
[  174.896615][    C4]  ? skb_release_data+0x41c/0x520
[  174.896619][    C4]  ? xennet_poll+0x15d9/0x3c80
[  174.896623][    C4]  ? kmem_cache_free+0x10b/0x520
[  174.896627][    C4]  skb_release_data+0x41c/0x520
[  174.896631][    C4]  ? xennet_poll+0x15d9/0x3c80
[  174.896635][    C4]  ? xennet_poll+0x15d9/0x3c80
[  174.896639][    C4]  kfree_skb+0x105/0x240
[  174.896643][    C4]  xennet_poll+0x15d9/0x3c80
[  174.896651][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  174.896655][    C4]  ? __kasan_check_read+0x11/0x20
[  174.896659][    C4]  ? __raise_softirq_irqoff+0x36/0xe0
[  174.896664][    C4]  ? __napi_schedule+0x1b5/0x260
[  174.896669][    C4]  ? __kasan_check_read+0x11/0x20
[  174.896673][    C4]  ? __lock_acquire.constprop.0+0x494/0xe40
[  174.896677][    C4]  ? lock_release+0x205/0x820
[  174.896680][    C4]  ? do_raw_spin_lock+0x13e/0x280
[  174.896687][    C4]  ? handle_edge_irq+0x35e/0xb60
[  174.896692][    C4]  ? handle_irq_for_port+0x192/0x4c0
[  174.896697][    C4]  ? __kasan_check_write+0x14/0x20
[  174.896702][    C4]  __napi_poll+0xb2/0x4c0
[  174.896706][    C4]  net_rx_action+0x2d7/0xa20
[  174.896711][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  174.896713][    C4]  ? __xen_evtchn_do_upcall+0x99/0x180
[  174.896718][    C4]  ? __kasan_check_write+0x14/0x20
[  174.896722][    C4]  ? _raw_read_unlock+0x23/0x40
[  174.896727][    C4]  ? __xen_evtchn_do_upcall+0x107/0x180
[  174.896731][    C4]  __do_softirq+0x1cd/0x66d
[  174.896736][    C4]  irq_exit_rcu+0x12c/0x1c0
[  174.896740][    C4]  sysvec_xen_hvm_callback+0x79/0xa0
[  174.896744][    C4]  </IRQ>
[  174.896746][    C4]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  174.896750][    C4] RIP: 0010:console_unlock+0x78f/0x940
[  174.896754][    C4] Code: 28 ff ff ff 4c 29 e6 49 8d bc 24 60 6f 2f 
86 e8 47 d7 ff ff 4c 01 e0 48 89 85 c0 fe ff ff e9 d5 fa ff ff fb 66 0f 
1f 44 00 00 <e9> 61 fe ff ff c7 05 82 3d e3 04 00 00 00 00 48 8b 7d 08 
e8 d9 e1
[  174.896757][    C4] RSP: 0018:ffffc90000617438 EFLAGS: 00000206
[  174.896760][    C4] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 
1ffff1102279ab9f
[  174.896762][    C4] RDX: 1ffff1102279ab70 RSI: 0000000000000000 RDI: 
ffff888113cd5b80
[  174.896764][    C4] RBP: ffffc900006175a8 R08: 0000000000000000 R09: 
000000000000000a
[  174.896766][    C4] R10: ffff888113cd5b88 R11: 0000000000080000 R12: 
0000000000000200
[  174.896768][    C4] R13: ffffc900006174a0 R14: dffffc0000000000 R15: 
ffffc90000617580
[  174.896773][    C4]  ? console_unlock+0x5ec/0x940
[  174.896778][    C4]  ? devkmsg_read+0x6e0/0x6e0
[  174.896782][    C4]  ? zap_class+0x162/0x740
[  174.896786][    C4]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  174.896791][    C4]  ? vprintk_default+0x1d/0x20
[  174.896795][    C4]  vprintk_emit+0xea/0x260
[  174.896799][    C4]  vprintk_default+0x1d/0x20
[  174.896803][    C4]  vprintk+0x4c/0xe0
[  174.896806][    C4]  printk+0xb2/0xe3
[  174.896809][    C4]  ? record_print_text.cold+0x11/0x11
[  174.896812][    C4]  ? record_print_text.cold+0x11/0x11
[  174.896815][    C4]  ? vprintk+0x4c/0xe0
[  174.896818][    C4]  ? printk+0xb2/0xe3
[  174.896822][    C4]  si_dpm_print_power_state.cold+0x15b/0x1d7 [amdgpu]
[  174.897155][    C4]  ? si_dpm_vblank_too_short+0x60/0x60 [amdgpu]
[  174.897478][    C4] amdgpu_pm_compute_clocks.part.0.cold+0x16d/0x339 
[amdgpu]
[  174.897821][    C4]  ? amdgpu_dpm_get_vrefresh+0x200/0x200 [amdgpu]
[  174.898193][    C4]  ? amdgpu_atombios_crtc_lock+0x180/0x180 [amdgpu]
[  174.898491][    C4]  ? amdgpu_atombios_crtc_blank+0x180/0x180 [amdgpu]
[  174.898808][    C4]  amdgpu_pm_compute_clocks+0x58/0x80 [amdgpu]
[  174.899130][    C4]  dce_v6_0_crtc_dpms+0xe4/0x220 [amdgpu]
[  174.899401][    C4]  dce_v6_0_crtc_disable+0x9c/0xce0 [amdgpu]
[  174.899673][    C4]  ? drm_helper_encoder_in_use+0x222/0x2e0
[  174.899678][    C4]  ? drm_helper_force_disable_all+0x1e0/0x1e0
[  174.899683][    C4]  ? dce_v6_0_resume+0x1e0/0x1e0 [amdgpu]
[  174.899951][    C4]  ? __kasan_check_read+0x11/0x20
[  174.899956][    C4]  ? mutex_is_locked+0x17/0x60
[  174.899962][    C4] __drm_helper_disable_unused_functions+0xfb/0x2a0
[  174.899967][    C4]  drm_crtc_helper_set_config+0x14a8/0x28a0
[  174.899971][    C4]  ? find_held_lock+0x35/0x140
[  174.899978][    C4]  ? drm_connector_get_single_encoder+0x220/0x220
[  174.899982][    C4]  ? do_raw_spin_unlock+0x159/0x200
[  174.899986][    C4]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  174.899993][    C4]  amdgpu_display_crtc_set_config+0xb7/0x460 [amdgpu]
[  174.900251][    C4] __drm_mode_set_config_internal+0x298/0x6c0
[  174.900256][    C4]  ? 
drm_warn_on_modeset_not_all_locked.part.0+0x97/0xe0
[  174.900262][    C4]  drm_mode_set_config_internal+0x12e/0x180
[  174.900278][    C4] drm_client_modeset_commit_locked+0x30c/0x4e0
[  174.900282][    C4]  ? mutex_lock_nested+0x1b/0x20
[  174.900286][    C4]  drm_client_modeset_commit+0x3f/0x80
[  174.900290][    C4] 
__drm_fb_helper_restore_fbdev_mode_unlocked+0x15a/0x1a0
[  174.900296][    C4]  drm_fb_helper_lastclose+0x39/0x60
[  174.900310][    C4]  amdgpu_driver_lastclose_kms+0xe/0x20 [amdgpu]
[  174.900546][    C4]  drm_release+0x3b8/0x4c0
[  174.900550][    C4]  __fput+0x1b7/0x780
[  174.900556][    C4]  ____fput+0xe/0x20
[  174.900559][    C4]  task_work_run+0xd4/0x160
[  174.900564][    C4]  do_exit+0x9d3/0x2380
[  174.900568][    C4]  ? __up_read+0x1d4/0x8c0
[  174.900570][    C4]  ? lock_release+0x205/0x820
[  174.900575][    C4]  ? mm_update_next_owner+0x6a0/0x6a0
[  174.900581][    C4]  ? up_read+0x23/0x40
[  174.900584][    C4]  do_group_exit+0xfd/0x2c0
[  174.900589][    C4]  __x64_sys_exit_group+0x43/0x60
[  174.900593][    C4]  do_syscall_64+0x40/0xc0
[  174.900597][    C4]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[  174.900601][    C4] RIP: 0033:0x7f0f4e5097c9
[  174.900604][    C4] Code: Unable to access opcode bytes at RIP 
0x7f0f4e50979f.
[  174.900606][    C4] RSP: 002b:00007fffa554fed8 EFLAGS: 00000246 
ORIG_RAX: 00000000000000e7
[  174.900611][    C4] RAX: ffffffffffffffda RBX: 00007f0f4e604800 RCX: 
00007f0f4e5097c9
[  174.900613][    C4] RDX: 000000000000003c RSI: 00000000000000e7 RDI: 
0000000000000000
[  174.900615][    C4] RBP: 00007f0f4e604800 R08: fffffffffffffd78 R09: 
000055cf14e37180
[  174.900617][    C4] R10: fffffffffffff9bc R11: 0000000000000246 R12: 
0000000000000000
[  174.900619][    C4] R13: 0000000000000000 R14: 00000000000005dd R15: 
0000000000000000
[  174.900625][    C4]
[  174.900626][    C4] Allocated by task 0:
[  174.900628][    C4] (stack is not available)
[  174.900629][    C4]
[  174.900630][    C4] Freed by task 0:
[  174.900632][    C4]  kasan_save_stack+0x23/0x60
[  174.900636][    C4]  kasan_set_track+0x20/0x40
[  174.900639][    C4]  kasan_set_free_info+0x24/0x40
[  174.900643][    C4]  __kasan_slab_free+0xf1/0x140
[  174.900646][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  174.900649][    C4]  kfree+0xd7/0x560
[  174.900652][    C4]  skb_release_data+0x41c/0x520
[  174.900655][    C4]  kfree_skb+0x105/0x240
[  174.900658][    C4]  xennet_poll+0x1ab2/0x3c80
[  174.900662][    C4]  __napi_poll+0xb2/0x4c0
[  174.900664][    C4]  net_rx_action+0x2d7/0xa20
[  174.900667][    C4]  __do_softirq+0x1cd/0x66d
[  174.900670][    C4]
[  174.900670][    C4] The buggy address belongs to the object at 
ffff88812fabe800
[  174.900670][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  174.900673][    C4] The buggy address is located 0 bytes inside of
[  174.900673][    C4]  1024-byte region [ffff88812fabe800, 
ffff88812fabec00)
[  174.900676][    C4] The buggy address belongs to the page:
[  174.900678][    C4] page:00000000d0c67a5b refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fab8
[  174.900682][    C4] head:00000000d0c67a5b order:3 compound_mapcount:0 
compound_pincount:0
[  174.900685][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  174.900690][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  174.900693][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  174.900695][    C4] page dumped because: kasan: bad access detected
[  174.900696][    C4]
[  174.900697][    C4] Memory state around the buggy address:
[  174.900699][    C4]  ffff88812fabe700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  174.900702][    C4]  ffff88812fabe780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  174.900704][    C4] >ffff88812fabe800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.900705][    C4]                    ^
[  174.900707][    C4]  ffff88812fabe880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.900709][    C4]  ffff88812fabe900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.900710][    C4] 
==================================================================
[  174.900736][    C4] 
==================================================================
[  174.900738][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  174.900742][    C4]
[  174.900743][    C4] CPU: 4 PID: 2988 Comm: X Tainted: G B             
5.13.0-rc6-x86_64 #1
[  174.900747][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  174.900748][    C4] Call Trace:
[  174.900750][    C4]  <IRQ>
[  174.900752][    C4]  dump_stack+0xa1/0xd3
[  174.900755][    C4] print_address_description.constprop.0+0x1d/0x140
[  174.900760][    C4]  ? kmem_cache_free+0x10b/0x520
[  174.900763][    C4]  kasan_report_invalid_free+0x56/0x80
[  174.900767][    C4]  ? kmem_cache_free+0x10b/0x520
[  174.900771][    C4]  __kasan_slab_free+0x110/0x140
[  174.900775][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  174.900779][    C4]  ? xennet_poll+0x15d9/0x3c80
[  174.900783][    C4]  kmem_cache_free+0x10b/0x520
[  174.900787][    C4]  ? kfree_skbmem+0x9a/0x140
[  174.900792][    C4]  ? xennet_poll+0x15d9/0x3c80
[  174.900796][    C4]  kfree_skbmem+0x9a/0x140
[  174.900800][    C4]  kfree_skb+0x10d/0x240
[  174.900803][    C4]  xennet_poll+0x15d9/0x3c80
[  174.900812][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  174.900828][    C4]  ? __kasan_check_read+0x11/0x20
[  174.900832][    C4]  ? __raise_softirq_irqoff+0x36/0xe0
[  174.900836][    C4]  ? __napi_schedule+0x1b5/0x260
[  174.900841][    C4]  ? __kasan_check_read+0x11/0x20
[  174.900845][    C4]  ? __lock_acquire.constprop.0+0x494/0xe40
[  174.900850][    C4]  ? lock_release+0x205/0x820
[  174.900852][    C4]  ? do_raw_spin_lock+0x13e/0x280
[  174.900859][    C4]  ? handle_edge_irq+0x35e/0xb60
[  174.900864][    C4]  ? handle_irq_for_port+0x192/0x4c0
[  174.900869][    C4]  ? __kasan_check_write+0x14/0x20
[  174.900874][    C4]  __napi_poll+0xb2/0x4c0
[  174.900878][    C4]  net_rx_action+0x2d7/0xa20
[  174.900883][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  174.900885][    C4]  ? __xen_evtchn_do_upcall+0x99/0x180
[  174.900890][    C4]  ? __kasan_check_write+0x14/0x20
[  174.900894][    C4]  ? _raw_read_unlock+0x23/0x40
[  174.900898][    C4]  ? __xen_evtchn_do_upcall+0x107/0x180
[  174.900903][    C4]  __do_softirq+0x1cd/0x66d
[  174.900907][    C4]  irq_exit_rcu+0x12c/0x1c0
[  174.900911][    C4]  sysvec_xen_hvm_callback+0x79/0xa0
[  174.900915][    C4]  </IRQ>
[  174.900917][    C4]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  174.900921][    C4] RIP: 0010:console_unlock+0x78f/0x940
[  174.900925][    C4] Code: 28 ff ff ff 4c 29 e6 49 8d bc 24 60 6f 2f 
86 e8 47 d7 ff ff 4c 01 e0 48 89 85 c0 fe ff ff e9 d5 fa ff ff fb 66 0f 
1f 44 00 00 <e9> 61 fe ff ff c7 05 82 3d e3 04 00 00 00 00 48 8b 7d 08 
e8 d9 e1
[  174.900928][    C4] RSP: 0018:ffffc90000617438 EFLAGS: 00000206
[  174.900931][    C4] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 
1ffff1102279ab9f
[  174.900933][    C4] RDX: 1ffff1102279ab70 RSI: 0000000000000000 RDI: 
ffff888113cd5b80
[  174.900935][    C4] RBP: ffffc900006175a8 R08: 0000000000000000 R09: 
000000000000000a
[  174.900937][    C4] R10: ffff888113cd5b88 R11: 0000000000080000 R12: 
0000000000000200
[  174.900939][    C4] R13: ffffc900006174a0 R14: dffffc0000000000 R15: 
ffffc90000617580
[  174.900944][    C4]  ? console_unlock+0x5ec/0x940
[  174.900949][    C4]  ? devkmsg_read+0x6e0/0x6e0
[  174.900953][    C4]  ? zap_class+0x162/0x740
[  174.900962][    C4]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  174.900978][    C4]  ? vprintk_default+0x1d/0x20
[  174.900983][    C4]  vprintk_emit+0xea/0x260
[  174.900988][    C4]  vprintk_default+0x1d/0x20
[  174.900991][    C4]  vprintk+0x4c/0xe0
[  174.900995][    C4]  printk+0xb2/0xe3
[  174.900999][    C4]  ? record_print_text.cold+0x11/0x11
[  174.901002][    C4]  ? record_print_text.cold+0x11/0x11
[  174.901005][    C4]  ? vprintk+0x4c/0xe0
[  174.901009][    C4]  ? printk+0xb2/0xe3
[  174.901014][    C4]  si_dpm_print_power_state.cold+0x15b/0x1d7 [amdgpu]
[  174.901360][    C4]  ? si_dpm_vblank_too_short+0x60/0x60 [amdgpu]
[  174.901652][    C4] amdgpu_pm_compute_clocks.part.0.cold+0x16d/0x339 
[amdgpu]
[  174.901986][    C4]  ? amdgpu_dpm_get_vrefresh+0x200/0x200 [amdgpu]
[  174.902310][    C4]  ? amdgpu_atombios_crtc_lock+0x180/0x180 [amdgpu]
[  174.902557][    C4]  ? amdgpu_atombios_crtc_blank+0x180/0x180 [amdgpu]
[  174.902794][    C4]  amdgpu_pm_compute_clocks+0x58/0x80 [amdgpu]
[  174.903106][    C4]  dce_v6_0_crtc_dpms+0xe4/0x220 [amdgpu]
[  174.903391][    C4]  dce_v6_0_crtc_disable+0x9c/0xce0 [amdgpu]
[  174.903639][    C4]  ? drm_helper_encoder_in_use+0x222/0x2e0
[  174.903644][    C4]  ? drm_helper_force_disable_all+0x1e0/0x1e0
[  174.903648][    C4]  ? dce_v6_0_resume+0x1e0/0x1e0 [amdgpu]
[  174.903907][    C4]  ? __kasan_check_read+0x11/0x20
[  174.903912][    C4]  ? mutex_is_locked+0x17/0x60
[  174.903917][    C4] __drm_helper_disable_unused_functions+0xfb/0x2a0
[  174.903922][    C4]  drm_crtc_helper_set_config+0x14a8/0x28a0
[  174.903925][    C4]  ? find_held_lock+0x35/0x140
[  174.903932][    C4]  ? drm_connector_get_single_encoder+0x220/0x220
[  174.903936][    C4]  ? do_raw_spin_unlock+0x159/0x200
[  174.903940][    C4]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  174.903945][    C4]  amdgpu_display_crtc_set_config+0xb7/0x460 [amdgpu]
[  174.904213][    C4] __drm_mode_set_config_internal+0x298/0x6c0
[  174.904218][    C4]  ? 
drm_warn_on_modeset_not_all_locked.part.0+0x97/0xe0
[  174.904224][    C4]  drm_mode_set_config_internal+0x12e/0x180
[  174.904229][    C4] drm_client_modeset_commit_locked+0x30c/0x4e0
[  174.904233][    C4]  ? mutex_lock_nested+0x1b/0x20
[  174.904237][    C4]  drm_client_modeset_commit+0x3f/0x80
[  174.904241][    C4] 
__drm_fb_helper_restore_fbdev_mode_unlocked+0x15a/0x1a0
[  174.904247][    C4]  drm_fb_helper_lastclose+0x39/0x60
[  174.904251][    C4]  amdgpu_driver_lastclose_kms+0xe/0x20 [amdgpu]
[  174.904578][    C4]  drm_release+0x3b8/0x4c0
[  174.904583][    C4]  __fput+0x1b7/0x780
[  174.904589][    C4]  ____fput+0xe/0x20
[  174.904593][    C4]  task_work_run+0xd4/0x160
[  174.904598][    C4]  do_exit+0x9d3/0x2380
[  174.904602][    C4]  ? __up_read+0x1d4/0x8c0
[  174.904605][    C4]  ? lock_release+0x205/0x820
[  174.904609][    C4]  ? mm_update_next_owner+0x6a0/0x6a0
[  174.904616][    C4]  ? up_read+0x23/0x40
[  174.904619][    C4]  do_group_exit+0xfd/0x2c0
[  174.904624][    C4]  __x64_sys_exit_group+0x43/0x60
[  174.904628][    C4]  do_syscall_64+0x40/0xc0
[  174.904633][    C4]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[  174.904637][    C4] RIP: 0033:0x7f0f4e5097c9
[  174.904640][    C4] Code: Unable to access opcode bytes at RIP 
0x7f0f4e50979f.
[  174.904642][    C4] RSP: 002b:00007fffa554fed8 EFLAGS: 00000246 
ORIG_RAX: 00000000000000e7
[  174.904646][    C4] RAX: ffffffffffffffda RBX: 00007f0f4e604800 RCX: 
00007f0f4e5097c9
[  174.904648][    C4] RDX: 000000000000003c RSI: 00000000000000e7 RDI: 
0000000000000000
[  174.904650][    C4] RBP: 00007f0f4e604800 R08: fffffffffffffd78 R09: 
000055cf14e37180
[  174.904653][    C4] R10: fffffffffffff9bc R11: 0000000000000246 R12: 
0000000000000000
[  174.904655][    C4] R13: 0000000000000000 R14: 00000000000005dd R15: 
0000000000000000
[  174.904660][    C4]
[  174.904661][    C4] Allocated by task 0:
[  174.904664][    C4]  kasan_save_stack+0x23/0x60
[  174.904668][    C4]  __kasan_slab_alloc+0x68/0x80
[  174.904671][    C4]  kmem_cache_alloc_node+0x242/0x380
[  174.904675][    C4]  __alloc_skb+0x156/0x280
[  174.904678][    C4]  __netdev_alloc_skb+0x46/0x320
[  174.904681][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  174.904685][    C4]  xennet_poll+0x1e8b/0x3c80
[  174.904689][    C4]  __napi_poll+0xb2/0x4c0
[  174.904692][    C4]  net_rx_action+0x2d7/0xa20
[  174.904694][    C4]  __do_softirq+0x1cd/0x66d
[  174.904697][    C4]
[  174.904698][    C4] Freed by task 0:
[  174.904700][    C4] (stack is not available)
[  174.904701][    C4]
[  174.904701][    C4] The buggy address belongs to the object at 
ffff88812fba0dc0
[  174.904701][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  174.904704][    C4] The buggy address is located 0 bytes inside of
[  174.904704][    C4]  216-byte region [ffff88812fba0dc0, 
ffff88812fba0e98)
[  174.904708][    C4] The buggy address belongs to the page:
[  174.904709][    C4] page:00000000d03f6c30 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fba0
[  174.904713][    C4] head:00000000d03f6c30 order:1 compound_mapcount:0
[  174.904715][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  174.904720][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  174.904723][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  174.904725][    C4] page dumped because: kasan: bad access detected
[  174.904727][    C4]
[  174.904728][    C4] Memory state around the buggy address:
[  174.904729][    C4]  ffff88812fba0c80: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.904732][    C4]  ffff88812fba0d00: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  174.904734][    C4] >ffff88812fba0d80: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  174.904735][    C4] ^
[  174.904737][    C4]  ffff88812fba0e00: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  174.904739][    C4]  ffff88812fba0e80: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  174.904741][    C4] 
==================================================================
[  180.087703][    C0] net_ratelimit: 28 callbacks suppressed
[  180.087737][    C0] net eth0: rx->offset: 0, size: -1
[  180.089133][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  180.089142][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  180.089146][ T2988]     status: c
[  180.089152][ T2988] switching to power state:
[  180.089154][ T2988]     ui class: performance
[  180.089156][ T2988]     internal class: none
[  182.140560][ T2988]     caps:
[  182.140563][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.140567][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.140571][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.140574][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.140577][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[^[[0m^[[0;31m*   [  182.140579][ T2988]     status: r
[  182.140701][    C4] 
==================================================================
[  182.140787][ T2988] switching from power state:
[  182.140790][ T2988]     ui class: performance
[  182.140792][ T2988]     internal class: none
[  182.140796][ T2988]     caps:
[  182.140798][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.140801][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.140805][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.140808][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.140810][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.140813][ T2988]     status: c
[  182.140816][ T2988] switching to power state:
[  182.140817][ T2988]     ui class: performance
[  182.140818][ T2988]     internal class: none
[  182.140821][ T2988]     caps:
[  182.140823][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.140824][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.140827][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.140830][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.140832][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.140835][ T2988]     status: r
[  182.140912][ T2988] switching from power state:
[  182.140913][ T2988]     ui class: performance
[  182.140915][ T2988]     internal class: none
[  182.140917][ T2988]     caps:
[  182.140919][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.140921][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.140923][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.140926][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.140929][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.140931][ T2988]     status: c
[  182.140934][ T2988] switching to power state:
[  182.140935][ T2988]     ui class: performance
[  182.140936][ T2988]     internal class: none
[  182.140938][ T2988]     caps:
[  182.140940][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.140941][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.140944][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.140946][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.140948][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.140950][ T2988]     status: r
[  182.141118][ T2988] switching from power state:
[  182.141120][ T2988]     ui class: performance
[  182.141121][ T2988]     internal class: none
[  182.141124][ T2988]     caps:
[  182.141126][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141127][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.141130][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141132][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141135][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141137][ T2988]     status: c
[  182.141139][ T2988] switching to power state:
[  182.141141][ T2988]     ui class: performance
[  182.141142][ T2988]     internal class: none
[  182.141144][ T2988]     caps:
[  182.141146][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141148][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.141150][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141152][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.141155][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141157][ T2988]     status: r
[  182.141224][ T2988] switching from power state:
[  182.141225][ T2988]     ui class: performance
[  182.141227][ T2988]     internal class: none
[  182.141229][ T2988]     caps:
[  182.141231][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141232][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.141235][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141237][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141239][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141241][ T2988]     status: c
[  182.141244][ T2988] switching to power state:
[  182.141245][ T2988]     ui class: performance
[  182.141246][ T2988]     internal class: none
[  182.141249][ T2988]     caps:
[  182.141250][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141252][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.141254][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141257][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.141259][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141262][ T2988]     status: r
[  182.141325][ T2988] switching from power state:
[  182.141326][ T2988]     ui class: performance
[  182.141327][ T2988]     internal class: none
[  182.141330][ T2988]     caps:
[  182.141332][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141333][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.141336][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141338][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141341][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141343][ T2988]     status: c
[  182.141346][ T2988] switching to power state:
[  182.141347][ T2988]     ui class: performance
[  182.141348][ T2988]     internal class: none
[  182.141351][ T2988]     caps:
[  182.141352][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141354][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.141356][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141359][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.141361][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141363][ T2988]     status: r
[  182.141491][ T2988] switching from power state:
[  182.141494][ T2988]     ui class: performance
[  182.141496][ T2988]     internal class: none
[  182.141500][ T2988]     caps:
[  182.141502][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141504][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.141507][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141510][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141512][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141515][ T2988]     status: c
[  182.141518][ T2988] switching to power state:
[  182.141519][ T2988]     ui class: performance
[  182.141520][ T2988]     internal class: none
[  182.141523][ T2988]     caps:
[  182.141525][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141526][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.141529][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141531][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.141534][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141536][ T2988]     status: r
[  182.141620][ T2988] switching from power state:
[  182.141622][ T2988]     ui class: performance
[  182.141624][ T2988]     internal class: none
[  182.141626][ T2988]     caps:
[  182.141628][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141630][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.141632][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141635][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141637][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141639][ T2988]     status: c
[  182.141642][ T2988] switching to power state:
[  182.141643][ T2988]     ui class: performance
[  182.141644][ T2988]     internal class: none
[  182.141647][ T2988]     caps:
[  182.141648][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141650][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.141652][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141654][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.141657][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141659][ T2988]     status: r
[  182.141828][ T2988] switching from power state:
[  182.141830][ T2988]     ui class: performance
[  182.141832][ T2988]     internal class: none
[  182.141835][ T2988]     caps:
[  182.141837][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141838][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.141841][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141843][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141846][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141849][ T2988]     status: c
[  182.141851][ T2988] switching to power state:
[  182.141852][ T2988]     ui class: performance
[  182.141853][ T2988]     internal class: none
[  182.141856][ T2988]     caps:
[  182.141857][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141859][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.141861][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141864][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.141866][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141868][ T2988]     status: r
[  182.141933][ T2988] switching from power state:
[  182.141934][ T2988]     ui class: performance
[  182.141935][ T2988]     internal class: none
[  182.141938][ T2988]     caps:
[  182.141940][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141941][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.141944][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141946][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141949][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.141951][ T2988]     status: c
[  182.141954][ T2988] switching to power state:
[  182.141984][ T2988]     ui class: performance
[  182.141986][ T2988]     internal class: none
[  182.141988][ T2988]     caps:
[  182.141990][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.141992][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.141995][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.141998][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.142001][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142003][ T2988]     status: r
[  182.142070][ T2988] switching from power state:
[  182.142071][ T2988]     ui class: performance
[  182.142072][ T2988]     internal class: none
[  182.142075][ T2988]     caps:
[  182.142077][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142078][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.142081][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142084][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142086][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142089][ T2988]     status: c
[  182.142092][ T2988] switching to power state:
[  182.142093][ T2988]     ui class: performance
[  182.142094][ T2988]     internal class: none
[  182.142096][ T2988]     caps:
[  182.142098][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142100][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.142102][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142105][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.142107][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142109][ T2988]     status: r
[  182.142253][ T2988] switching from power state:
[  182.142255][ T2988]     ui class: performance
[  182.142258][ T2988]     internal class: none
[  182.142262][ T2988]     caps:
[  182.142264][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142266][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.142270][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142273][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142276][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142278][ T2988]     status: c
[  182.142281][ T2988] switching to power state:
[  182.142283][ T2988]     ui class: performance
[  182.142284][ T2988]     internal class: none
[  182.142287][ T2988]     caps:
[  182.142289][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142291][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.142293][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142296][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.142298][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142301][ T2988]     status: r
[  182.142371][ T2988] switching from power state:
[  182.142372][ T2988]     ui class: performance
[  182.142388][ T2988]     internal class: none
[  182.142391][ T2988]     caps:
[  182.142393][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142395][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.142397][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142401][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142403][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142406][ T2988]     status: c
[  182.142408][ T2988] switching to power state:
[  182.142409][ T2988]     ui class: performance
[  182.142410][ T2988]     internal class: none
[  182.142413][ T2988]     caps:
[  182.142415][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142417][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.142419][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142422][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.142424][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142427][ T2988]     status: r
[  182.142598][ T2988] switching from power state:
[  182.142600][ T2988]     ui class: performance
[  182.142602][ T2988]     internal class: none
[  182.142605][ T2988]     caps:
[  182.142607][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142609][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.142612][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142615][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142618][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142620][ T2988]     status: c
[  182.142623][ T2988] switching to power state:
[  182.142624][ T2988]     ui class: performance
[  182.142625][ T2988]     internal class: none
[  182.142628][ T2988]     caps:
[  182.142630][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142631][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.142634][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142636][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.142639][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142641][ T2988]     status: r
[  182.142710][ T2988] switching from power state:
[  182.142711][ T2988]     ui class: performance
[  182.142712][ T2988]     internal class: none
[  182.142715][ T2988]     caps:
[  182.142717][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142719][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.142721][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142724][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142726][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142729][ T2988]     status: c
[  182.142731][ T2988] switching to power state:
[  182.142732][ T2988]     ui class: performance
[  182.142734][ T2988]     internal class: none
[  182.142736][ T2988]     caps:
[  182.142738][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142739][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.142742][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142745][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.142747][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142750][ T2988]     status: r
[  182.142813][ T2988] switching from power state:
[  182.142814][ T2988]     ui class: performance
[  182.142815][ T2988]     internal class: none
[  182.142818][ T2988]     caps:
[  182.142820][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142822][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.142824][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142827][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142830][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142832][ T2988]     status: c
[  182.142834][ T2988] switching to power state:
[  182.142836][ T2988]     ui class: performance
[  182.142837][ T2988]     internal class: none
[  182.142839][ T2988]     caps:
[  182.142841][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.142843][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.142845][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.142848][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.142851][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.142853][ T2988]     status: r
[  182.143124][ T2988] switching from power state:
[  182.143127][ T2988]     ui class: performance
[  182.143129][ T2988]     internal class: none
[  182.143133][ T2988]     caps:
[  182.143134][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143136][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.143139][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143142][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143144][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143147][ T2988]     status: c
[  182.143149][ T2988] switching to power state:
[  182.143150][ T2988]     ui class: performance
[  182.143151][ T2988]     internal class: none
[  182.143154][ T2988]     caps:
[  182.143156][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143157][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.143160][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143162][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.143166][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143168][ T2988]     status: r
[  182.143243][ T2988] switching from power state:
[  182.143245][ T2988]     ui class: performance
[  182.143246][ T2988]     internal class: none
[  182.143249][ T2988]     caps:
[  182.143251][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143252][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.143255][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143257][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143268][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143270][ T2988]     status: c
[  182.143273][ T2988] switching to power state:
[  182.143274][ T2988]     ui class: performance
[  182.143275][ T2988]     internal class: none
[  182.143278][ T2988]     caps:
[  182.143279][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143281][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.143283][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143286][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.143289][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143291][ T2988]     status: r
[  182.143390][ T2988] switching from power state:
[  182.143391][ T2988]     ui class: performance
[  182.143393][ T2988]     internal class: none
[  182.143395][ T2988]     caps:
[  182.143397][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143399][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.143401][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143404][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143525][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143529][ T2988]     status: c
[  182.143533][ T2988] switching to power state:
[  182.143534][ T2988]     ui class: performance
[  182.143536][ T2988]     internal class: none
[  182.143539][ T2988]     caps:
[  182.143541][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143543][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.143546][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143549][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.143551][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143554][ T2988]     status: r
[  182.143642][ T2988] switching from power state:
[  182.143644][ T2988]     ui class: performance
[  182.143645][ T2988]     internal class: none
[  182.143648][ T2988]     caps:
[  182.143650][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143652][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.143655][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143658][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143661][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143663][ T2988]     status: c
[  182.143666][ T2988] switching to power state:
[  182.143667][ T2988]     ui class: performance
[  182.143668][ T2988]     internal class: none
[  182.143671][ T2988]     caps:
[  182.143673][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143674][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.143677][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143680][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.143682][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143685][ T2988]     status: r
[  182.143750][ T2988] switching from power state:
[  182.143751][ T2988]     ui class: performance
[  182.143753][ T2988]     internal class: none
[  182.143755][ T2988]     caps:
[  182.143757][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143759][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.143761][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143764][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143766][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143769][ T2988]     status: c
[  182.143771][ T2988] switching to power state:
[  182.143772][ T2988]     ui class: performance
[  182.143774][ T2988]     internal class: none
[  182.143776][ T2988]     caps:
[  182.143778][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143779][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.143782][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143784][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.143787][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143789][ T2988]     status: r
[  182.143852][ T2988] switching from power state:
[  182.143854][ T2988]     ui class: performance
[  182.143855][ T2988]     internal class: none
[  182.143857][ T2988]     caps:
[  182.143859][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143861][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.143863][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143865][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143868][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143870][ T2988]     status: c
[  182.143873][ T2988] switching to power state:
[  182.143874][ T2988]     ui class: performance
[  182.143875][ T2988]     internal class: none
[  182.143878][ T2988]     caps:
[  182.143880][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.143882][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.143884][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.143887][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.143890][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.143892][ T2988]     status: r
[  182.144047][ T2988] switching from power state:
[  182.144050][ T2988]     ui class: performance
[  182.144052][ T2988]     internal class: none
[  182.144055][ T2988]     caps:
[  182.144057][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144059][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.144062][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144065][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144068][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144070][ T2988]     status: c
[  182.144073][ T2988] switching to power state:
[  182.144074][ T2988]     ui class: performance
[  182.144076][ T2988]     internal class: none
[  182.144078][ T2988]     caps:
[  182.144080][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144082][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.144084][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144087][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.144090][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144092][ T2988]     status: r
[  182.144320][ T2988] switching from power state:
[  182.144323][ T2988]     ui class: performance
[  182.144324][ T2988]     internal class: none
[  182.144327][ T2988]     caps:
[  182.144329][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144331][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.144334][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144337][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144339][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144342][ T2988]     status: c
[  182.144344][ T2988] switching to power state:
[  182.144345][ T2988]     ui class: performance
[  182.144347][ T2988]     internal class: none
[  182.144349][ T2988]     caps:
[  182.144351][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144352][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.144355][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144358][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.144360][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144363][ T2988]     status: r
[  182.144438][ T2988] switching from power state:
[  182.144440][ T2988]     ui class: performance
[  182.144441][ T2988]     internal class: none
[  182.144444][ T2988]     caps:
[  182.144445][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144447][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.144450][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144453][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144455][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144458][ T2988]     status: c
[  182.144460][ T2988] switching to power state:
[  182.144461][ T2988]     ui class: performance
[  182.144463][ T2988]     internal class: none
[  182.144465][ T2988]     caps:
[  182.144467][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144469][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.144472][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144474][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.144476][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144479][ T2988]     status: r
[  182.144601][ T2988] switching from power state:
[  182.144604][ T2988]     ui class: performance
[  182.144606][ T2988]     internal class: none
[  182.144610][ T2988]     caps:
[  182.144612][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144615][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.144619][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144622][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144624][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144627][ T2988]     status: c
[  182.144630][ T2988] switching to power state:
[  182.144631][ T2988]     ui class: performance
[  182.144633][ T2988]     internal class: none
[  182.144636][ T2988]     caps:
[  182.144638][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144639][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.144642][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144645][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.144648][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144650][ T2988]     status: r
[  182.144736][ T2988] switching from power state:
[  182.144738][ T2988]     ui class: performance
[  182.144739][ T2988]     internal class: none
[  182.144742][ T2988]     caps:
[  182.144744][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144746][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.144749][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144751][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144754][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144756][ T2988]     status: c
[  182.144759][ T2988] switching to power state:
[  182.144760][ T2988]     ui class: performance
[  182.144762][ T2988]     internal class: none
[  182.144765][ T2988]     caps:
[  182.144766][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144768][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.144771][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144773][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.144776][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144778][ T2988]     status: r
[  182.144900][ T2988] switching from power state:
[  182.144903][ T2988]     ui class: performance
[  182.144905][ T2988]     internal class: none
[  182.144909][ T2988]     caps:
[  182.144911][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144914][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 900 vddci: 850 pcie gen: 3
[  182.144918][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144921][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144924][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144927][ T2988]     status: c
[  182.144930][ T2988] switching to power state:
[  182.144931][ T2988]     ui class: performance
[  182.144933][ T2988]     internal class: none
[  182.144935][ T2988]     caps:
[  182.144937][ T2988] [drm]     uvd    vclk: 0 dclk: 0
[  182.144939][ T2988] [drm]         power level 0    sclk: 30000 mclk: 
15000 vddc: 875 vddci: 850 pcie gen: 3
[  182.144942][ T2988] [drm]         power level 1    sclk: 45000 mclk: 
140000 vddc: 950 vddci: 1000 pcie gen: 3
[  182.144945][ T2988] [drm]         power level 2    sclk: 93000 mclk: 
140000 vddc: 1150 vddci: 1000 pcie gen: 3
[  182.144947][ T2988] [drm]         power level 3    sclk: 95500 mclk: 
140000 vddc: 1188 vddci: 1000 pcie gen: 3
[  182.144950][ T2988]     status: r
[  185.527647][    C0] net eth0: rx->offset: 0, size: -1
[  185.531541][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  185.531556][    C4]
[  185.531559][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  185.531565][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  185.531568][    C4] Call Trace:
[  185.531575][    C4]  dump_stack+0xa1/0xd3
[  185.531581][    C4] print_address_description.constprop.0+0x1d/0x140
[  185.531587][    C4]  ? kfree+0xd7/0x560
[  187.570466][    C4]  kasan_report_invalid_free+0x56/0x80
[  187.577260][    C4]  ? kfree+0xd7/0x560
[  187.583133][    C4]  __kasan_slab_free+0x110/0x140
[  187.591285][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  187.598652][    C4]  kfree+0xd7/0x560
[  187.605044][    C4]  ? skb_release_data+0x41c/0x520
[  187.613266][    C4]  ? xennet_poll+0x15d9/0x3c80
[  187.623212][    C4]  ? kmem_cache_free+0x10b/0x520
[  187.632575][    C4]  skb_release_data+0x41c/0x520
[  187.642833][    C4]  ? xennet_poll+0x15d9/0x3c80
[  187.650333][    C4]  ? xennet_poll+0x15d9/0x3c80
[  187.657687][    C4]  kfree_skb+0x105/0x240
[  187.664488][    C4]  xennet_poll+0x15d9/0x3c80
[  187.672773][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  187.680320][    C4]  ? kasan_set_track+0x20/0x40
[  187.686723][    C4]  ? kasan_set_free_info+0x24/0x40
[  187.693925][    C4]  ? __kasan_slab_free+0xf1/0x140
[  187.700244][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  187.708223][    C4]  ? kfree+0xd7/0x560
[  187.714096][    C4]  ? skb_release_data+0x41c/0x520
[  187.720630][    C4]  ? __kfree_skb_defer+0x45/0x60
[  187.727349][    C4]  ? net_tx_action+0x1d9/0x860
[  187.734188][    C4]  ? __do_softirq+0x1cd/0x66d
[  187.741564][    C4]  ? run_ksoftirqd+0x2b/0x40
[  187.747522][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  187.754698][    C4]  ? kthread+0x32d/0x400
[  187.760406][    C4]  ? ret_from_fork+0x22/0x30
[  187.766552][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  187.773595][    C4]  ? __kasan_check_read+0x11/0x20
[  187.780511][    C4]  ? lock_release+0xa3/0x820
[  187.788568][    C4]  ? verify_cpu+0x100/0x100
[  187.796166][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  187.805455][    C4]  __napi_poll+0xb2/0x4c0
[  187.811803][    C4]  ? kfree+0xd7/0x560
[  187.818652][    C4]  net_rx_action+0x2d7/0xa20
[  187.827884][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  187.837312][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  187.845354][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  187.851581][    C4]  ? net_tx_action+0x1d9/0x860
[  187.857669][    C4]  __do_softirq+0x1cd/0x66d
[  187.863353][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  187.872406][    C4]  run_ksoftirqd+0x2b/0x40
[  187.879344][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  187.887566][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  187.897300][    C4]  ? __kthread_parkme+0x8d/0x120
[  187.905923][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  187.916290][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  187.925479][    C4]  kthread+0x32d/0x400
[  187.930727][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  187.938540][    C4]  ret_from_fork+0x22/0x30
[  187.944582][    C4]
[  187.947585][    C4] Allocated by task 0:
[  187.952774][    C4] (stack is not available)
[  187.958881][    C4]
[  187.961747][    C4] Freed by task 38:
[  187.966292][    C4]  kasan_save_stack+0x23/0x60
[  187.972898][    C4]  kasan_set_track+0x20/0x40
[  187.979780][    C4]  kasan_set_free_info+0x24/0x40
[  187.988647][    C4]  __kasan_slab_free+0xf1/0x140
[  187.999368][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  188.011072][    C4]  kfree+0xd7/0x560
[  188.020674][    C4]  skb_release_data+0x41c/0x520
[  188.030220][    C4]  kfree_skb+0x105/0x240
[  188.039313][    C4]  xennet_poll+0x1ab2/0x3c80
[  188.046713][    C4]  __napi_poll+0xb2/0x4c0
[  188.053726][    C4]  net_rx_action+0x2d7/0xa20
[  188.062236][    C4]  __do_softirq+0x1cd/0x66d
[  188.069114][    C4]
[  188.072904][    C4] The buggy address belongs to the object at 
ffff88812fab9800
[  188.072904][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  188.095297][    C4] The buggy address is located 0 bytes inside of
[  188.095297][    C4]  1024-byte region [ffff88812fab9800, 
ffff88812fab9c00)
[  188.115461][    C4] The buggy address belongs to the page:
[  188.124069][    C4] page:00000000d0c67a5b refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fab8
[  188.139339][    C4] head:00000000d0c67a5b order:3 compound_mapcount:0 
compound_pincount:0
[  188.149736][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  188.161665][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  188.178368][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  188.197185][    C4] page dumped because: kasan: bad access detected
[  188.214106][    C4]
[  188.219630][    C4] Memory state around the buggy address:
[  188.232720][    C4]  ffff88812fab9700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  188.248129][    C4]  ffff88812fab9780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  188.261517][    C4] >ffff88812fab9800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  188.275313][    C4]                    ^
[  188.283263][    C4]  ffff88812fab9880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  188.296708][    C4]  ffff88812fab9900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  188.310336][    C4] 
==================================================================
   ^[[0m] (1 of 2) A stop job is running for …n 11 of user hakon (4s / 
1min 29s)
[  188.331574][    C4] 
==================================================================
[  188.343256][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  188.343272][    C4]
[  188.343275][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  188.343281][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  188.343284][    C4] Call Trace:
[  188.343291][    C4]  dump_stack+0xa1/0xd3
[  188.343298][    C4] print_address_description.constprop.0+0x1d/0x140
^[M ^[[K[^[[0;1;31m[  188.343303][    C4]  ? kmem_cache_free+0x10b/0x520
[  188.343307][    C4]  kasan_report_invalid_free+0x56/0x80
[  188.343312][    C4]  ? kmem_cache_free+0x10b/0x520
[  188.343315][    C4]  __kasan_slab_free+0x110/0x140
[  188.343321][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  188.343326][    C4]  ? xennet_poll+0x15d9/0x3c80
[  188.343333][    C4]  kmem_cache_free+0x10b/0x520
[  188.343337][    C4]  ? kfree_skbmem+0x9a/0x140
[  188.496310][    C4]  ? xennet_poll+0x15d9/0x3c80
[  188.504346][    C4]  kfree_skbmem+0x9a/0x140
[  188.512339][    C4]  kfree_skb+0x10d/0x240
[  188.519196][    C4]  xennet_poll+0x15d9/0x3c80
[  188.527146][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  188.534266][    C4]  ? kasan_set_track+0x20/0x40
[  188.542131][    C4]  ? kasan_set_free_info+0x24/0x40
[  188.550717][    C4]  ? __kasan_slab_free+0xf1/0x140
[  188.558140][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  188.565215][    C4]  ? kfree+0xd7/0x560
[  188.570966][    C4]  ? skb_release_data+0x41c/0x520
[  188.577784][    C4]  ? __kfree_skb_defer+0x45/0x60
[  188.584215][    C4]  ? net_tx_action+0x1d9/0x860
[  188.591062][    C4]  ? __do_softirq+0x1cd/0x66d
[  188.599608][    C4]  ? run_ksoftirqd+0x2b/0x40
[  188.609078][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  188.618220][    C4]  ? kthread+0x32d/0x400
[  188.624431][    C4]  ? ret_from_fork+0x22/0x30
[  188.630900][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  188.637538][    C4]  ? __kasan_check_read+0x11/0x20
[  188.644170][    C4]  ? lock_release+0xa3/0x820
[  188.649986][    C4]  ? verify_cpu+0x100/0x100
[  188.655871][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  188.662804][    C4]  __napi_poll+0xb2/0x4c0
[  188.668213][    C4]  ? kfree+0xd7/0x560
[  188.673485][    C4]  net_rx_action+0x2d7/0xa20
[  188.680200][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  188.687175][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  188.694712][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  188.701730][    C4]  ? net_tx_action+0x1d9/0x860
[  188.708527][    C4]  __do_softirq+0x1cd/0x66d
[  188.714309][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  188.723060][    C4]  run_ksoftirqd+0x2b/0x40
[  188.728937][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  188.735220][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  188.743952][    C4]  ? __kthread_parkme+0x8d/0x120
[  188.751294][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  188.761075][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  188.772278][    C4]  kthread+0x32d/0x400
[  188.779681][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  188.790615][    C4]  ret_from_fork+0x22/0x30
[  188.799164][    C4]
[  188.803667][    C4] Allocated by task 0:
[  188.811476][    C4]  kasan_save_stack+0x23/0x60
[  188.819980][    C4]  __kasan_slab_alloc+0x68/0x80
[  188.828416][    C4]  kmem_cache_alloc_node+0x242/0x380
[  188.836253][    C4]  __alloc_skb+0x156/0x280
[  188.842393][    C4]  __netdev_alloc_skb+0x46/0x320
[  188.849358][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  188.857641][    C4]  xennet_poll+0x1e8b/0x3c80
[  188.864632][    C4]  __napi_poll+0xb2/0x4c0
[  188.871804][    C4]  net_rx_action+0x2d7/0xa20
[  188.879287][    C4]  __do_softirq+0x1cd/0x66d
[  188.886616][    C4]
[  188.890504][    C4] Freed by task 0:
[  188.897276][    C4] (stack is not available)
[  188.904648][    C4]
[  188.908527][    C4] The buggy address belongs to the object at 
ffff88812fba0f00
[  188.908527][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  188.932865][    C4] The buggy address is located 0 bytes inside of
[  188.932865][    C4]  216-byte region [ffff88812fba0f00, 
ffff88812fba0fd8)
[  188.954232][    C4] The buggy address belongs to the page:
[  188.963240][    C4] page:00000000d03f6c30 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fba0
[  188.981472][    C4] head:00000000d03f6c30 order:1 compound_mapcount:0
[  188.992485][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  189.006217][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  189.020528][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  189.033607][    C4] page dumped because: kasan: bad access detected
[  189.042337][    C4]
[  189.045171][    C4] Memory state around the buggy address:
[  189.052429][    C4]  ffff88812fba0e00: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  189.063175][    C4]  ffff88812fba0e80: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  189.074094][    C4] >ffff88812fba0f00: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  189.084859][    C4]                    ^
[  189.090295][    C4]  ffff88812fba0f80: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  189.101715][    C4]  ffff88812fba1000: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  189.112722][    C4] 
==================================================================
*^[[0m^[[0;31m*    ^[[0m] (1 of 2) A stop job is running for … 11 of user 
hakon (16s / 1min 29s)
[  189.133240][    C4] 
==================================================================
[  189.144030][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  189.144042][    C4]
[  189.144045][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  189.144051][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  189.144054][    C4] Call Trace:
[  189.144058][    C4]  dump_stack+0xa1/0xd3
^[M ^[[K[^[[0;31m*^[[  189.144065][    C4] 
print_address_description.constprop.0+0x1d/0x140
[  189.144072][    C4]  ? kfree+0xd7/0x560
[  189.144076][    C4]  kasan_report_invalid_free+0x56/0x80
[  189.144080][    C4]  ? kfree+0xd7/0x560
[  189.269416][    C4]  __kasan_slab_free+0x110/0x140
[  189.279730][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  189.290023][    C4]  kfree+0xd7/0x560
[  189.298437][    C4]  ? skb_release_data+0x41c/0x520
[  189.311044][    C4]  ? xennet_poll+0x15d9/0x3c80
[  189.319183][    C4]  ? kmem_cache_free+0x10b/0x520
[  189.327195][    C4]  skb_release_data+0x41c/0x520
[  189.334963][    C4]  ? xennet_poll+0x15d9/0x3c80
[  189.342751][    C4]  ? xennet_poll+0x15d9/0x3c80
[  189.349919][    C4]  kfree_skb+0x105/0x240
[  189.356569][    C4]  xennet_poll+0x15d9/0x3c80
[  189.363499][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  189.372826][    C4]  ? kasan_set_track+0x20/0x40
[  189.381380][    C4]  ? kasan_set_free_info+0x24/0x40
[  189.393415][    C4]  ? __kasan_slab_free+0xf1/0x140
[  189.407897][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  189.416753][    C4]  ? kfree+0xd7/0x560
[  189.423628][    C4]  ? skb_release_data+0x41c/0x520
[  189.431384][    C4]  ? __kfree_skb_defer+0x45/0x60
[  189.441583][    C4]  ? net_tx_action+0x1d9/0x860
[  189.449886][    C4]  ? __do_softirq+0x1cd/0x66d
[  189.456673][    C4]  ? run_ksoftirqd+0x2b/0x40
[  189.462434][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  189.469311][    C4]  ? kthread+0x32d/0x400
[  189.474809][    C4]  ? ret_from_fork+0x22/0x30
[  189.481299][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  189.490230][    C4]  ? __kasan_check_read+0x11/0x20
[  189.496365][    C4]  ? lock_release+0xa3/0x820
[  189.502544][    C4]  ? verify_cpu+0x100/0x100
[  189.509204][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  189.516768][    C4]  __napi_poll+0xb2/0x4c0
[  189.523611][    C4]  ? kfree+0xd7/0x560
[  189.529707][    C4]  net_rx_action+0x2d7/0xa20
[  189.535703][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  189.542355][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  189.549592][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  189.556280][    C4]  ? net_tx_action+0x1d9/0x860
[  189.562250][    C4]  __do_softirq+0x1cd/0x66d
[  189.567885][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  189.575866][    C4]  run_ksoftirqd+0x2b/0x40
[  189.581338][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  189.592577][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  189.607677][    C4]  ? __kthread_parkme+0x8d/0x120
[  189.617187][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  189.628365][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  189.639384][    C4]  kthread+0x32d/0x400
[  189.647862][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  189.654722][    C4]  ret_from_fork+0x22/0x30
[  189.660688][    C4]
[  189.663845][    C4] Allocated by task 0:
[  189.669816][    C4] (stack is not available)
[  189.675861][    C4]
[  189.680231][    C4] Freed by task 38:
[  189.686949][    C4]  kasan_save_stack+0x23/0x60
[  189.694724][    C4]  kasan_set_track+0x20/0x40
[  189.702323][    C4]  kasan_set_free_info+0x24/0x40
[  189.710505][    C4]  __kasan_slab_free+0xf1/0x140
[  189.718200][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  189.727993][    C4]  kfree+0xd7/0x560
[  189.734471][    C4]  skb_release_data+0x41c/0x520
[  189.743592][    C4]  kfree_skb+0x105/0x240
[  189.749712][    C4]  xennet_poll+0x1ab2/0x3c80
[  189.756715][    C4]  __napi_poll+0xb2/0x4c0
[  189.763497][    C4]  net_rx_action+0x2d7/0xa20
[  189.770829][    C4]  __do_softirq+0x1cd/0x66d
[  189.777570][    C4]
[  189.781026][    C4] The buggy address belongs to the object at 
ffff88812fabd000
[  189.781026][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  189.813652][    C4] The buggy address is located 0 bytes inside of
[  189.813652][    C4]  1024-byte region [ffff88812fabd000, 
ffff88812fabd400)
[  189.843331][    C4] The buggy address belongs to the page:
[  189.852905][    C4] page:00000000d0c67a5b refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fab8
[  189.869090][    C4] head:00000000d0c67a5b order:3 compound_mapcount:0 
compound_pincount:0
[  189.882204][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  189.894830][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  189.908717][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  189.921429][    C4] page dumped because: kasan: bad access detected
[  189.930898][    C4]
[  189.934887][    C4] Memory state around the buggy address:
[  189.943863][    C4]  ffff88812fabcf00: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  189.956857][    C4]  ffff88812fabcf80: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  189.970095][    C4] >ffff88812fabd000: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  189.984139][    C4]                    ^
[  189.995979][    C4]  ffff88812fabd080: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  190.018090][    C4]  ffff88812fabd100: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  190.040822][    C4] 
==================================================================
[0;1;31m*^[[0m^[[0;31m*   ^[[0m] (1 of 2) A stop job is running for … 11 of 
user hakon (17s / 1min 29s)
[  190.065443][    C4] 
==================================================================
[  190.077767][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  190.077780][    C4]
[  190.077783][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  190.077789][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  190.077791][    C4] Call Trace:
[  190.077797][    C4]  dump_stack+0xa1/0xd3
[  190.077803][    C4] print_address_description.constprop.0+0x1d/0x140
^[M ^[[K[ ^[[0;31m*[  190.077808][    C4]  ? kmem_cache_free+0x10b/0x520
[  190.077813][    C4]  kasan_report_invalid_free+0x56/0x80
[  190.077817][    C4]  ? kmem_cache_free+0x10b/0x520
[  190.077821][    C4]  __kasan_slab_free+0x110/0x140
[  190.077826][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  190.077831][    C4]  ? xennet_poll+0x15d9/0x3c80
[  190.077837][    C4]  kmem_cache_free+0x10b/0x520
[  190.077842][    C4]  ? kfree_skbmem+0x9a/0x140
[  190.205538][    C4]  ? xennet_poll+0x15d9/0x3c80
[  190.213620][    C4]  kfree_skbmem+0x9a/0x140
[  190.224354][    C4]  kfree_skb+0x10d/0x240
[  190.235434][    C4]  xennet_poll+0x15d9/0x3c80
[  190.242643][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  190.250056][    C4]  ? kasan_set_track+0x20/0x40
[  190.258334][    C4]  ? kasan_set_free_info+0x24/0x40
[  190.266160][    C4]  ? __kasan_slab_free+0xf1/0x140
[  190.273945][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  190.281939][    C4]  ? kfree+0xd7/0x560
[  190.288041][    C4]  ? skb_release_data+0x41c/0x520
[  190.295976][    C4]  ? __kfree_skb_defer+0x45/0x60
[  190.304060][    C4]  ? net_tx_action+0x1d9/0x860
[  190.311897][    C4]  ? __do_softirq+0x1cd/0x66d
[  190.319757][    C4]  ? run_ksoftirqd+0x2b/0x40
[  190.328694][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  190.338408][    C4]  ? kthread+0x32d/0x400
[  190.345775][    C4]  ? ret_from_fork+0x22/0x30
[  190.355313][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  190.364526][    C4]  ? __kasan_check_read+0x11/0x20
[  190.374923][    C4]  ? lock_release+0xa3/0x820
[  190.382764][    C4]  ? verify_cpu+0x100/0x100
[  190.394163][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  190.407978][    C4]  __napi_poll+0xb2/0x4c0
[  190.417021][    C4]  ? kfree+0xd7/0x560
[  190.429405][    C4]  net_rx_action+0x2d7/0xa20
[  190.441660][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  190.449233][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  190.458420][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  190.464872][    C4]  ? net_tx_action+0x1d9/0x860
[  190.471471][    C4]  __do_softirq+0x1cd/0x66d
[  190.476915][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  190.484517][    C4]  run_ksoftirqd+0x2b/0x40
[  190.490331][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  190.497020][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  190.506932][    C4]  ? __kthread_parkme+0x8d/0x120
[  190.514554][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  190.526021][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  190.536669][    C4]  kthread+0x32d/0x400
[  190.543225][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  190.551447][    C4]  ret_from_fork+0x22/0x30
[  190.558672][    C4]
[  190.562759][    C4] Allocated by task 0:
[  190.569853][    C4]  kasan_save_stack+0x23/0x60
[  190.579652][    C4]  __kasan_slab_alloc+0x68/0x80
[  190.592327][    C4]  kmem_cache_alloc_node+0x242/0x380
[  190.604175][    C4]  __alloc_skb+0x156/0x280
[  190.613857][    C4]  __netdev_alloc_skb+0x46/0x320
[  190.626686][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  190.636565][    C4]  xennet_poll+0x1e8b/0x3c80
[  190.644828][    C4]  __napi_poll+0xb2/0x4c0
[  190.652205][    C4]  net_rx_action+0x2d7/0xa20
[  190.660822][    C4]  __do_softirq+0x1cd/0x66d
[  190.667941][    C4]
[  190.671911][    C4] Freed by task 0:
[  190.677828][    C4] (stack is not available)
[  190.684930][    C4]
[  190.688641][    C4] The buggy address belongs to the object at 
ffff88812fba08c0
[  190.688641][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  190.710807][    C4] The buggy address is located 0 bytes inside of
[  190.710807][    C4]  216-byte region [ffff88812fba08c0, 
ffff88812fba0998)
[  190.727292][    C4] The buggy address belongs to the page:
[  190.735058][    C4] page:00000000d03f6c30 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fba0
[  190.749323][    C4] head:00000000d03f6c30 order:1 compound_mapcount:0
[  190.758581][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  190.770848][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  190.783878][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  190.801150][    C4] page dumped because: kasan: bad access detected
[  190.814745][    C4]
[  190.818818][    C4] Memory state around the buggy address:
[  190.829341][    C4]  ffff88812fba0780: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  190.841686][    C4]  ffff88812fba0800: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  190.852792][    C4] >ffff88812fba0880: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  190.863771][    C4] ^
[  190.871906][    C4]  ffff88812fba0900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  190.882218][    C4]  ffff88812fba0980: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  190.893098][    C4] 
==================================================================
^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] (2 of 2) A stop job is running for …t 
Display Manager (18s / 1min 30s)
[  190.912422][    C4] 
==================================================================
[  190.926244][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  190.926258][    C4]
[  190.926261][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  190.926268][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  190.926271][    C4] Call Trace:
[  190.926276][    C4]  dump_stack+0xa1/0xd3
[  190.926283][    C4] print_address_description.constprop.0+0x1d/0x140
^[M ^[[K[  ^[[0;31m[  190.926290][    C4]  ? kfree+0xd7/0x560
[  190.926293][    C4]  kasan_report_invalid_free+0x56/0x80
[  191.029215][    C4]  ? kfree+0xd7/0x560
[  191.036381][    C4]  __kasan_slab_free+0x110/0x140
[  191.045501][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  191.055804][    C4]  kfree+0xd7/0x560
[  191.062892][    C4]  ? skb_release_data+0x41c/0x520
[  191.071770][    C4]  ? xennet_poll+0x15d9/0x3c80
[  191.079163][    C4]  ? kmem_cache_free+0x10b/0x520
[  191.087657][    C4]  skb_release_data+0x41c/0x520
[  191.095521][    C4]  ? xennet_poll+0x15d9/0x3c80
[  191.105701][    C4]  ? xennet_poll+0x15d9/0x3c80
[  191.114513][    C4]  kfree_skb+0x105/0x240
[  191.122540][    C4]  xennet_poll+0x15d9/0x3c80
[  191.133127][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  191.141172][    C4]  ? kasan_set_track+0x20/0x40
[  191.149491][    C4]  ? kasan_set_free_info+0x24/0x40
[  191.160318][    C4]  ? __kasan_slab_free+0xf1/0x140
[  191.172281][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  191.191738][    C4]  ? kfree+0xd7/0x560
[  191.202612][    C4]  ? skb_release_data+0x41c/0x520
[  191.213975][    C4]  ? __kfree_skb_defer+0x45/0x60
[  191.224021][    C4]  ? net_tx_action+0x1d9/0x860
[  191.232076][    C4]  ? __do_softirq+0x1cd/0x66d
[  191.240112][    C4]  ? run_ksoftirqd+0x2b/0x40
[  191.246447][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  191.253797][    C4]  ? kthread+0x32d/0x400
[  191.259553][    C4]  ? ret_from_fork+0x22/0x30
[  191.266890][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  191.274770][    C4]  ? __kasan_check_read+0x11/0x20
[  191.282395][    C4]  ? lock_release+0xa3/0x820
[  191.290706][    C4]  ? verify_cpu+0x100/0x100
[  191.297634][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  191.306794][    C4]  __napi_poll+0xb2/0x4c0
[  191.314410][    C4]  ? kfree+0xd7/0x560
[  191.321519][    C4]  net_rx_action+0x2d7/0xa20
[  191.329187][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  191.339638][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  191.350101][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  191.358947][    C4]  ? net_tx_action+0x1d9/0x860
[  191.368811][    C4]  __do_softirq+0x1cd/0x66d
[  191.375214][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  191.385397][    C4]  run_ksoftirqd+0x2b/0x40
[  191.398719][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  191.413800][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  191.439665][    C4]  ? __kthread_parkme+0x8d/0x120
[  191.453471][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  191.463496][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  191.476027][    C4]  kthread+0x32d/0x400
[  191.481496][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  191.490285][    C4]  ret_from_fork+0x22/0x30
[  191.497026][    C4]
[  191.500352][    C4] Allocated by task 0:
[  191.506505][    C4] (stack is not available)
[  191.512027][    C4]
[  191.514781][    C4] Freed by task 38:
[  191.519770][    C4]  kasan_save_stack+0x23/0x60
[  191.525683][    C4]  kasan_set_track+0x20/0x40
[  191.531240][    C4]  kasan_set_free_info+0x24/0x40
[  191.537536][    C4]  __kasan_slab_free+0xf1/0x140
[  191.543765][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  191.550559][    C4]  kfree+0xd7/0x560
[  191.555703][    C4]  skb_release_data+0x41c/0x520
[  191.561966][    C4]  kfree_skb+0x105/0x240
[  191.567409][    C4]  xennet_poll+0x1ab2/0x3c80
[  191.573814][    C4]  __napi_poll+0xb2/0x4c0
[  191.580046][    C4]  net_rx_action+0x2d7/0xa20
[  191.588873][    C4]  __do_softirq+0x1cd/0x66d
[  191.597835][    C4]
[  191.602315][    C4] The buggy address belongs to the object at 
ffff88812faba000
[  191.602315][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  191.632813][    C4] The buggy address is located 0 bytes inside of
[  191.632813][    C4]  1024-byte region [ffff88812faba000, 
ffff88812faba400)
[  191.658283][    C4] The buggy address belongs to the page:
[  191.667306][    C4] page:00000000d0c67a5b refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fab8
[  191.683502][    C4] head:00000000d0c67a5b order:3 compound_mapcount:0 
compound_pincount:0
[  191.696623][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  191.710183][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  191.723799][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  191.738303][    C4] page dumped because: kasan: bad access detected
[  191.748151][    C4]
[  191.751685][    C4] Memory state around the buggy address:
[  191.761888][    C4]  ffff88812fab9f00: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  191.773812][    C4]  ffff88812fab9f80: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  191.784889][    C4] >ffff88812faba000: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  191.798495][    C4]                    ^
[  191.807306][    C4]  ffff88812faba080: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  191.820657][    C4]  ffff88812faba100: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  191.834386][    C4] 
==================================================================
*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] (2 of 2) A stop job is running for …t 
Display Manager (19s / 1min 30s)
[  191.857787][    C4] 
==================================================================
[  191.870725][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  191.870739][    C4]
[  191.870742][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  191.870748][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  191.870751][    C4] Call Trace:
[  191.870757][    C4]  dump_stack+0xa1/0xd3
^[M ^[[K[   ^[[0;31[  191.870764][    C4] 
print_address_description.constprop.0+0x1d/0x140
[  191.870770][    C4]  ? kmem_cache_free+0x10b/0x520
[  191.870775][    C4]  kasan_report_invalid_free+0x56/0x80
[  191.946982][    C4]  ? kmem_cache_free+0x10b/0x520
[  191.953344][    C4]  __kasan_slab_free+0x110/0x140
[  191.960326][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  191.967293][    C4]  ? xennet_poll+0x15d9/0x3c80
[  191.973739][    C4]  kmem_cache_free+0x10b/0x520
[  191.980126][    C4]  ? kfree_skbmem+0x9a/0x140
[  191.989537][    C4]  ? xennet_poll+0x15d9/0x3c80
[  191.996560][    C4]  kfree_skbmem+0x9a/0x140
[  192.004530][    C4]  kfree_skb+0x10d/0x240
[  192.011599][    C4]  xennet_poll+0x15d9/0x3c80
[  192.017949][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  192.025262][    C4]  ? kasan_set_track+0x20/0x40
[  192.031628][    C4]  ? kasan_set_free_info+0x24/0x40
[  192.038991][    C4]  ? __kasan_slab_free+0xf1/0x140
[  192.045590][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  192.052534][    C4]  ? kfree+0xd7/0x560
[  192.057698][    C4]  ? skb_release_data+0x41c/0x520
[  192.063825][    C4]  ? __kfree_skb_defer+0x45/0x60
[  192.070304][    C4]  ? net_tx_action+0x1d9/0x860
[  192.076508][    C4]  ? __do_softirq+0x1cd/0x66d
[  192.082675][    C4]  ? run_ksoftirqd+0x2b/0x40
[  192.088867][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  192.096301][    C4]  ? kthread+0x32d/0x400
[  192.101878][    C4]  ? ret_from_fork+0x22/0x30
[  192.108017][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  192.114145][    C4]  ? __kasan_check_read+0x11/0x20
[  192.121139][    C4]  ? lock_release+0xa3/0x820
[  192.127107][    C4]  ? verify_cpu+0x100/0x100
[  192.132763][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  192.140496][    C4]  __napi_poll+0xb2/0x4c0
[  192.145915][    C4]  ? kfree+0xd7/0x560
[  192.150800][    C4]  net_rx_action+0x2d7/0xa20
[  192.157637][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  192.164579][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  192.173916][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  192.181394][    C4]  ? net_tx_action+0x1d9/0x860
[  192.190426][    C4]  __do_softirq+0x1cd/0x66d
[  192.197029][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  192.211223][    C4]  run_ksoftirqd+0x2b/0x40
[  192.219314][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  192.229962][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  192.241103][    C4]  ? __kthread_parkme+0x8d/0x120
[  192.248498][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  192.257517][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  192.266728][    C4]  kthread+0x32d/0x400
[  192.273553][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  192.280919][    C4]  ret_from_fork+0x22/0x30
[  192.289640][    C4]
[  192.294567][    C4] Allocated by task 0:
[  192.301935][    C4]  kasan_save_stack+0x23/0x60
[  192.309426][    C4]  __kasan_slab_alloc+0x68/0x80
[  192.316824][    C4]  kmem_cache_alloc_node+0x242/0x380
[  192.326266][    C4]  __alloc_skb+0x156/0x280
[  192.332690][    C4]  __netdev_alloc_skb+0x46/0x320
[  192.340298][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  192.348233][    C4]  xennet_poll+0x1e8b/0x3c80
[  192.355483][    C4]  __napi_poll+0xb2/0x4c0
[  192.361084][    C4]  net_rx_action+0x2d7/0xa20
[  192.367630][    C4]  __do_softirq+0x1cd/0x66d
[  192.375731][    C4]
[  192.379474][    C4] Freed by task 0:
[  192.385746][    C4] (stack is not available)
[  192.397419][    C4]
[  192.403609][    C4] The buggy address belongs to the object at 
ffff888123766a00
[  192.403609][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  192.432808][    C4] The buggy address is located 0 bytes inside of
[  192.432808][    C4]  216-byte region [ffff888123766a00, 
ffff888123766ad8)
[  192.454469][    C4] The buggy address belongs to the page:
[  192.462678][    C4] page:0000000033082a5e refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x123766
[  192.477744][    C4] head:0000000033082a5e order:1 compound_mapcount:0
[  192.487458][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  192.501120][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  192.515115][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  192.530822][    C4] page dumped because: kasan: bad access detected
[  192.540913][    C4]
[  192.546652][    C4] Memory state around the buggy address:
[  192.561075][    C4]  ffff888123766900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  192.579298][    C4]  ffff888123766980: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  192.597861][    C4] >ffff888123766a00: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  192.614236][    C4]                    ^
[  192.621747][    C4]  ffff888123766a80: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  192.635403][    C4]  ffff888123766b00: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  192.649548][    C4] 
==================================================================
m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] (2 of 2) A stop job is running for …t 
Display Manager (20s / 1min 30s)
[  192.676598][    C4] 
==================================================================
[  192.689893][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  192.689904][    C4]
[  192.689907][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  192.689913][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  192.689915][    C4] Call Trace:
^[M ^[[K[    ^[[0;3[  192.689921][    C4]  dump_stack+0xa1/0xd3
[  192.689928][    C4] print_address_description.constprop.0+0x1d/0x140
[  192.689933][    C4]  ? kfree+0xd7/0x560
[  192.689937][    C4]  kasan_report_invalid_free+0x56/0x80
[  192.689942][    C4]  ? kfree+0xd7/0x560
[  192.689945][    C4]  __kasan_slab_free+0x110/0x140
[  192.689950][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  192.689955][    C4]  kfree+0xd7/0x560
[  192.689959][    C4]  ? skb_release_data+0x41c/0x520
[  192.689966][    C4]  ? xennet_poll+0x15d9/0x3c80
[  192.689972][    C4]  ? kmem_cache_free+0x10b/0x520
[  192.689977][    C4]  skb_release_data+0x41c/0x520
[  192.689981][    C4]  ? xennet_poll+0x15d9/0x3c80
[  192.689986][    C4]  ? xennet_poll+0x15d9/0x3c80
[  192.689991][    C4]  kfree_skb+0x105/0x240
[  192.689995][    C4]  xennet_poll+0x15d9/0x3c80
[  192.690004][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  192.690009][    C4]  ? kasan_set_track+0x20/0x40
[  192.690013][    C4]  ? kasan_set_free_info+0x24/0x40
[  192.690017][    C4]  ? __kasan_slab_free+0xf1/0x140
[  192.690021][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  192.921491][    C4]  ? kfree+0xd7/0x560
[  192.926607][    C4]  ? skb_release_data+0x41c/0x520
[  192.932756][    C4]  ? __kfree_skb_defer+0x45/0x60
[  192.942952][    C4]  ? net_tx_action+0x1d9/0x860
[  192.949829][    C4]  ? __do_softirq+0x1cd/0x66d
[  192.958638][    C4]  ? run_ksoftirqd+0x2b/0x40
[  192.965016][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  192.973042][    C4]  ? kthread+0x32d/0x400
[  192.978590][    C4]  ? ret_from_fork+0x22/0x30
[  192.986109][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  192.995438][    C4]  ? __kasan_check_read+0x11/0x20
[  193.001581][    C4]  ? lock_release+0xa3/0x820
[  193.007532][    C4]  ? verify_cpu+0x100/0x100
[  193.013170][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  193.020537][    C4]  __napi_poll+0xb2/0x4c0
[  193.026094][    C4]  ? kfree+0xd7/0x560
[  193.031203][    C4]  net_rx_action+0x2d7/0xa20
[  193.037689][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  193.045865][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  193.054672][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  193.062498][    C4]  ? net_tx_action+0x1d9/0x860
[  193.069666][    C4]  __do_softirq+0x1cd/0x66d
[  193.076902][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  193.087875][    C4]  run_ksoftirqd+0x2b/0x40
[  193.095450][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  193.105045][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  193.116404][    C4]  ? __kthread_parkme+0x8d/0x120
[  193.126301][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  193.139579][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  193.154934][    C4]  kthread+0x32d/0x400
[  193.163333][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  193.181208][    C4]  ret_from_fork+0x22/0x30
[  193.193675][    C4]
[  193.198961][    C4] Allocated by task 0:
[  193.205212][    C4] (stack is not available)
[  193.211612][    C4]
[  193.214900][    C4] Freed by task 38:
[  193.220075][    C4]  kasan_save_stack+0x23/0x60
[  193.226387][    C4]  kasan_set_track+0x20/0x40
[  193.232659][    C4]  kasan_set_free_info+0x24/0x40
[  193.239812][    C4]  __kasan_slab_free+0xf1/0x140
[  193.247596][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  193.258294][    C4]  kfree+0xd7/0x560
[  193.264416][    C4]  skb_release_data+0x41c/0x520
[  193.272496][    C4]  kfree_skb+0x105/0x240
[  193.279610][    C4]  xennet_poll+0x1ab2/0x3c80
[  193.286843][    C4]  __napi_poll+0xb2/0x4c0
[  193.293498][    C4]  net_rx_action+0x2d7/0xa20
[  193.302317][    C4]  __do_softirq+0x1cd/0x66d
[  193.308548][    C4]
[  193.311701][    C4] The buggy address belongs to the object at 
ffff88812fabc000
[  193.311701][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  193.331743][    C4] The buggy address is located 0 bytes inside of
[  193.331743][    C4]  1024-byte region [ffff88812fabc000, 
ffff88812fabc400)
[  193.362661][    C4] The buggy address belongs to the page:
[  193.378134][    C4] page:00000000d0c67a5b refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fab8
[  193.402344][    C4] head:00000000d0c67a5b order:3 compound_mapcount:0 
compound_pincount:0
[  193.415323][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  193.427764][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  193.441720][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  193.455326][    C4] page dumped because: kasan: bad access detected
[  193.465247][    C4]
[  193.468798][    C4] Memory state around the buggy address:
[  193.477749][    C4]  ffff88812fabbf00: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  193.490661][    C4]  ffff88812fabbf80: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  193.503351][    C4] >ffff88812fabc000: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  193.517517][    C4]                    ^
[  193.523690][    C4]  ffff88812fabc080: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  193.541440][    C4]  ffff88812fabc100: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  193.554356][    C4] 
==================================================================
1m*^[[0;1;31m*^[[0m] (1 of 2) A stop job is running for … 11 of user hakon 
(20s / 1min 29s)
[  193.579371][    C4] 
==================================================================
[  193.590634][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  193.590649][    C4]
[  193.590651][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  193.590657][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  193.590660][    C4] Call Trace:
[  193.590665][    C4]  dump_stack+0xa1/0xd3
[  193.590671][    C4] print_address_description.constprop.0+0x1d/0x140
^[M ^[[K[     ^[[0;[  193.590677][    C4]  ? kmem_cache_free+0x10b/0x520
[  193.590681][    C4]  kasan_report_invalid_free+0x56/0x80
[  193.590686][    C4]  ? kmem_cache_free+0x10b/0x520
[  193.590690][    C4]  __kasan_slab_free+0x110/0x140
[  193.590695][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  193.590700][    C4]  ? xennet_poll+0x15d9/0x3c80
[  193.590705][    C4]  kmem_cache_free+0x10b/0x520
[  193.590710][    C4]  ? kfree_skbmem+0x9a/0x140
[  193.590717][    C4]  ? xennet_poll+0x15d9/0x3c80
[  193.590721][    C4]  kfree_skbmem+0x9a/0x140
[  193.590725][    C4]  kfree_skb+0x10d/0x240
[  193.590730][    C4]  xennet_poll+0x15d9/0x3c80
[  193.590739][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  193.759413][    C4]  ? kasan_set_track+0x20/0x40
[  193.766891][    C4]  ? kasan_set_free_info+0x24/0x40
[  193.774780][    C4]  ? __kasan_slab_free+0xf1/0x140
[  193.782288][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  193.791163][    C4]  ? kfree+0xd7/0x560
[  193.796963][    C4]  ? skb_release_data+0x41c/0x520
[  193.803786][    C4]  ? __kfree_skb_defer+0x45/0x60
[  193.810216][    C4]  ? net_tx_action+0x1d9/0x860
[  193.816171][    C4]  ? __do_softirq+0x1cd/0x66d
[  193.822204][    C4]  ? run_ksoftirqd+0x2b/0x40
[  193.827934][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  193.834446][    C4]  ? kthread+0x32d/0x400
[  193.840558][    C4]  ? ret_from_fork+0x22/0x30
[  193.846188][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  193.852719][    C4]  ? __kasan_check_read+0x11/0x20
[  193.860040][    C4]  ? lock_release+0xa3/0x820
[  193.866183][    C4]  ? verify_cpu+0x100/0x100
[  193.872025][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  193.878726][    C4]  __napi_poll+0xb2/0x4c0
[  193.884022][    C4]  ? kfree+0xd7/0x560
[  193.889382][    C4]  net_rx_action+0x2d7/0xa20
[  193.895136][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  193.903878][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  193.912675][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  193.922058][    C4]  ? net_tx_action+0x1d9/0x860
[  193.930306][    C4]  __do_softirq+0x1cd/0x66d
[  193.937941][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  193.948762][    C4]  run_ksoftirqd+0x2b/0x40
[  193.956111][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  193.962339][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  193.970112][    C4]  ? __kthread_parkme+0x8d/0x120
[  193.976308][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  193.983953][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  193.991765][    C4]  kthread+0x32d/0x400
[  193.997006][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  194.003485][    C4]  ret_from_fork+0x22/0x30
[  194.008936][    C4]
[  194.011855][    C4] Allocated by task 0:
[  194.016626][    C4]  kasan_save_stack+0x23/0x60
[  194.023223][    C4]  __kasan_slab_alloc+0x68/0x80
[  194.029017][    C4]  kmem_cache_alloc_node+0x242/0x380
[  194.035490][    C4]  __alloc_skb+0x156/0x280
[  194.041115][    C4]  __netdev_alloc_skb+0x46/0x320
[  194.047473][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  194.054664][    C4]  xennet_poll+0x1e8b/0x3c80
[  194.060751][    C4]  __napi_poll+0xb2/0x4c0
[  194.066324][    C4]  net_rx_action+0x2d7/0xa20
[  194.072528][    C4]  __do_softirq+0x1cd/0x66d
[  194.079476][    C4]
[  194.082951][    C4] Freed by task 0:
[  194.092537][    C4] (stack is not available)
[  194.101414][    C4]
[  194.106966][    C4] The buggy address belongs to the object at 
ffff888123767900
[  194.106966][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  194.138368][    C4] The buggy address is located 0 bytes inside of
[  194.138368][    C4]  216-byte region [ffff888123767900, 
ffff8881237679d8)
[  194.160147][    C4] The buggy address belongs to the page:
[  194.169144][    C4] page:0000000033082a5e refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x123766
[  194.182806][    C4] head:0000000033082a5e order:1 compound_mapcount:0
[  194.191704][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  194.201972][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  194.212411][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  194.223703][    C4] page dumped because: kasan: bad access detected
[  194.231960][    C4]
[  194.234708][    C4] Memory state around the buggy address:
[  194.241865][    C4]  ffff888123767800: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  194.251707][    C4]  ffff888123767880: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  194.261749][    C4] >ffff888123767900: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  194.274864][    C4]                    ^
[  194.280701][    C4]  ffff888123767980: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  194.295529][    C4]  ffff888123767a00: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  194.310960][    C4] 
==================================================================
31m*^[[0m] (1 of 2) A stop job is running for … 11 of user hakon (21s / 
1min 29s)
[  194.333042][    C4] 
==================================================================
[  194.343415][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  194.343427][    C4]
[  194.343429][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  194.343435][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  194.343438][    C4] Call Trace:
[  194.343443][    C4]  dump_stack+0xa1/0xd3
[  194.343449][    C4] print_address_description.constprop.0+0x1d/0x140
^[M ^[[K[    ^[[0;3[  194.343456][    C4]  ? kfree+0xd7/0x560
[  194.343460][    C4]  kasan_report_invalid_free+0x56/0x80
[  194.412666][    C4]  ? kfree+0xd7/0x560
[  194.417749][    C4]  __kasan_slab_free+0x110/0x140
[  194.424363][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  194.431058][    C4]  kfree+0xd7/0x560
[  194.436257][    C4]  ? skb_release_data+0x41c/0x520
[  194.442790][    C4]  ? __kasan_check_read+0x11/0x20
[  194.448911][    C4]  skb_release_data+0x41c/0x520
[  194.455519][    C4]  ? xennet_poll+0x15d9/0x3c80
[  194.462340][    C4]  ? xennet_poll+0x15d9/0x3c80
[  194.469568][    C4]  kfree_skb+0x105/0x240
[  194.477947][    C4]  xennet_poll+0x15d9/0x3c80
[  194.485526][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  194.492917][    C4]  ? kasan_set_track+0x20/0x40
[  194.499161][    C4]  ? kasan_set_free_info+0x24/0x40
[  194.505599][    C4]  ? __kasan_slab_free+0xf1/0x140
[  194.511947][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  194.518706][    C4]  ? kfree+0xd7/0x560
[  194.523713][    C4]  ? skb_release_data+0x41c/0x520
[  194.529857][    C4]  ? __kfree_skb_defer+0x45/0x60
[  194.535810][    C4]  ? net_tx_action+0x1d9/0x860
[  194.541593][    C4]  ? __do_softirq+0x1cd/0x66d
[  194.547419][    C4]  ? run_ksoftirqd+0x2b/0x40
[  194.555667][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  194.563042][    C4]  ? kthread+0x32d/0x400
[  194.569126][    C4]  ? ret_from_fork+0x22/0x30
[  194.575247][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  194.581695][    C4]  ? __kasan_check_read+0x11/0x20
[  194.588381][    C4]  ? lock_release+0xa3/0x820
[  194.594616][    C4]  ? verify_cpu+0x100/0x100
[  194.600193][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  194.607292][    C4]  __napi_poll+0xb2/0x4c0
[  194.612546][    C4]  ? kfree+0xd7/0x560
[  194.617550][    C4]  net_rx_action+0x2d7/0xa20
[  194.623691][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  194.630566][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  194.638300][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  194.644860][    C4]  ? net_tx_action+0x1d9/0x860
[  194.651164][    C4]  __do_softirq+0x1cd/0x66d
[  194.657199][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  194.664416][    C4]  run_ksoftirqd+0x2b/0x40
[  194.669948][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  194.676515][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  194.684424][    C4]  ? __kthread_parkme+0x8d/0x120
[  194.690830][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  194.701145][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  194.711862][    C4]  kthread+0x32d/0x400
[  194.718919][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  194.727532][    C4]  ret_from_fork+0x22/0x30
[  194.734526][    C4]
[  194.738752][    C4] Allocated by task 0:
[  194.746283][    C4] (stack is not available)
[  194.752453][    C4]
[  194.755749][    C4] Freed by task 38:
[  194.760505][    C4]  kasan_save_stack+0x23/0x60
[  194.766447][    C4]  kasan_set_track+0x20/0x40
[  194.772392][    C4]  kasan_set_free_info+0x24/0x40
[  194.778548][    C4]  __kasan_slab_free+0xf1/0x140
[  194.784840][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  194.792154][    C4]  kfree+0xd7/0x560
[  194.797154][    C4]  skb_release_data+0x41c/0x520
[  194.803316][    C4]  kfree_skb+0x105/0x240
[  194.808515][    C4]  xennet_poll+0x1ab2/0x3c80
[  194.814265][    C4]  __napi_poll+0xb2/0x4c0
[  194.819908][    C4]  net_rx_action+0x2d7/0xa20
[  194.825744][    C4]  __do_softirq+0x1cd/0x66d
[  194.831408][    C4]
[  194.834239][    C4] The buggy address belongs to the object at 
ffff88812fabc800
[  194.834239][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  194.852293][    C4] The buggy address is located 0 bytes inside of
[  194.852293][    C4]  1024-byte region [ffff88812fabc800, 
ffff88812fabcc00)
[  194.868775][    C4] The buggy address belongs to the page:
[  194.876277][    C4] page:00000000d0c67a5b refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fab8
[  194.891368][    C4] head:00000000d0c67a5b order:3 compound_mapcount:0 
compound_pincount:0
[  194.911581][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  194.929413][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  194.947348][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  194.960589][    C4] page dumped because: kasan: bad access detected
[  194.971494][    C4]
[  194.975515][    C4] Memory state around the buggy address:
[  194.985374][    C4]  ffff88812fabc700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  194.999195][    C4]  ffff88812fabc780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  195.014320][    C4] >ffff88812fabc800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  195.029523][    C4]                    ^
[  195.037121][    C4]  ffff88812fabc880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  195.050239][    C4]  ffff88812fabc900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  195.063046][    C4] 
==================================================================
1m*^[[0;1;31m*^[[0m] (1 of 2) A stop job is running for … 11 of user hakon 
(22s / 1min 29s)
[  195.092525][    C4] 
==================================================================
[  195.113160][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  195.113174][    C4]
[  195.113178][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  195.113184][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  195.113186][    C4] Call Trace:
[  195.113193][    C4]  dump_stack+0xa1/0xd3
[  195.113200][    C4] print_address_description.constprop.0+0x1d/0x140
^[M ^[[K[   ^[[0;31[  195.113205][    C4]  ? kmem_cache_free+0x10b/0x520
[  195.113209][    C4]  kasan_report_invalid_free+0x56/0x80
[  195.113214][    C4]  ? kmem_cache_free+0x10b/0x520
[  195.113218][    C4]  __kasan_slab_free+0x110/0x140
[  195.113223][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  195.113227][    C4]  ? xennet_poll+0x15d9/0x3c80
[  195.113234][    C4]  kmem_cache_free+0x10b/0x520
[  195.113238][    C4]  ? kfree_skbmem+0x9a/0x140
[  195.113245][    C4]  ? xennet_poll+0x15d9/0x3c80
[  195.113249][    C4]  kfree_skbmem+0x9a/0x140
[  195.113253][    C4]  kfree_skb+0x10d/0x240
[  195.113258][    C4]  xennet_poll+0x15d9/0x3c80
[  195.289108][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  195.296657][    C4]  ? kasan_set_track+0x20/0x40
[  195.305649][    C4]  ? kasan_set_free_info+0x24/0x40
[  195.315898][    C4]  ? __kasan_slab_free+0xf1/0x140
[  195.324427][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  195.333952][    C4]  ? kfree+0xd7/0x560
[  195.343453][    C4]  ? skb_release_data+0x41c/0x520
[  195.351519][    C4]  ? __kfree_skb_defer+0x45/0x60
[  195.358404][    C4]  ? net_tx_action+0x1d9/0x860
[  195.364312][    C4]  ? __do_softirq+0x1cd/0x66d
[  195.370190][    C4]  ? run_ksoftirqd+0x2b/0x40
[  195.375914][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  195.381978][    C4]  ? kthread+0x32d/0x400
[  195.387970][    C4]  ? ret_from_fork+0x22/0x30
[  195.394623][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  195.400496][    C4]  ? __kasan_check_read+0x11/0x20
[  195.407179][    C4]  ? lock_release+0xa3/0x820
[  195.412943][    C4]  ? verify_cpu+0x100/0x100
[  195.418918][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  195.427172][    C4]  __napi_poll+0xb2/0x4c0
[  195.433648][    C4]  ? kfree+0xd7/0x560
[  195.439112][    C4]  net_rx_action+0x2d7/0xa20
[  195.444732][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  195.451806][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  195.459019][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  195.465287][    C4]  ? net_tx_action+0x1d9/0x860
[  195.471188][    C4]  __do_softirq+0x1cd/0x66d
[  195.476694][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  195.487573][    C4]  run_ksoftirqd+0x2b/0x40
[  195.495732][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  195.508193][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  195.528025][    C4]  ? __kthread_parkme+0x8d/0x120
[  195.538723][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  195.547930][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  195.557802][    C4]  kthread+0x32d/0x400
[  195.563684][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  195.572394][    C4]  ret_from_fork+0x22/0x30
[  195.579716][    C4]
[  195.583433][    C4] Allocated by task 0:
[  195.590074][    C4]  kasan_save_stack+0x23/0x60
[  195.596654][    C4]  __kasan_slab_alloc+0x68/0x80
[  195.603344][    C4]  kmem_cache_alloc_node+0x242/0x380
[  195.610679][    C4]  __alloc_skb+0x156/0x280
[  195.616970][    C4]  __netdev_alloc_skb+0x46/0x320
[  195.625584][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  195.633530][    C4]  xennet_poll+0x1e8b/0x3c80
[  195.641114][    C4]  __napi_poll+0xb2/0x4c0
[  195.647723][    C4]  net_rx_action+0x2d7/0xa20
[  195.654256][    C4]  __do_softirq+0x1cd/0x66d
[  195.660524][    C4]
[  195.664251][    C4] Freed by task 0:
[  195.673597][    C4] (stack is not available)
[  195.682949][    C4]
[  195.690702][    C4] The buggy address belongs to the object at 
ffff888123767180
[  195.690702][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  195.724289][    C4] The buggy address is located 0 bytes inside of
[  195.724289][    C4]  216-byte region [ffff888123767180, 
ffff888123767258)
[  195.748575][    C4] The buggy address belongs to the page:
[  195.761612][    C4] page:0000000033082a5e refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x123766
[  195.785269][    C4] head:0000000033082a5e order:1 compound_mapcount:0
[  195.798209][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  195.808803][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  195.819803][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  195.830992][    C4] page dumped because: kasan: bad access detected
[  195.840133][    C4]
[  195.842954][    C4] Memory state around the buggy address:
[  195.849774][    C4]  ffff888123767080: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  195.860723][    C4]  ffff888123767100: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  195.874295][    C4] >ffff888123767180: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  195.889217][    C4]                    ^
[  195.897347][    C4]  ffff888123767200: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  195.909563][    C4]  ffff888123767280: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  195.920752][    C4] 
==================================================================
m*^[[0;1;31m*^[[0m^[[0;31m*^[[0m] (2 of 2) A stop job is running for …t 
Display Manager (23s / 1min 30s)
[  195.940670][    C4] 
==================================================================
[  195.951611][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  195.951623][    C4]
[  195.951626][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  195.951632][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  195.951635][    C4] Call Trace:
[  195.951640][    C4]  dump_stack+0xa1/0xd3
[  195.951647][    C4] print_address_description.constprop.0+0x1d/0x140
^[M ^[[K[  ^[[0;31m[  195.951652][    C4]  ? kfree+0xd7/0x560
[  195.951656][    C4]  kasan_report_invalid_free+0x56/0x80
[  195.951660][    C4]  ? kfree+0xd7/0x560
[  195.951664][    C4]  __kasan_slab_free+0x110/0x140
[  195.951668][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  195.951674][    C4]  kfree+0xd7/0x560
[  195.951677][    C4]  ? skb_release_data+0x41c/0x520
[  195.951683][    C4]  ? xennet_poll+0x15d9/0x3c80
[  195.951690][    C4]  ? kmem_cache_free+0x10b/0x520
[  195.951696][    C4]  skb_release_data+0x41c/0x520
[  195.951700][    C4]  ? xennet_poll+0x15d9/0x3c80
[  195.951705][    C4]  ? xennet_poll+0x15d9/0x3c80
[  195.951710][    C4]  kfree_skb+0x105/0x240
[  195.951714][    C4]  xennet_poll+0x15d9/0x3c80
[  196.111605][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  196.117624][    C4]  ? kasan_set_track+0x20/0x40
[  196.124382][    C4]  ? kasan_set_free_info+0x24/0x40
[  196.130787][    C4]  ? __kasan_slab_free+0xf1/0x140
[  196.137780][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  196.145236][    C4]  ? kfree+0xd7/0x560
[  196.150231][    C4]  ? skb_release_data+0x41c/0x520
[  196.156766][    C4]  ? __kfree_skb_defer+0x45/0x60
[  196.162824][    C4]  ? net_tx_action+0x1d9/0x860
[  196.168851][    C4]  ? __do_softirq+0x1cd/0x66d
[  196.174843][    C4]  ? run_ksoftirqd+0x2b/0x40
[  196.180729][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  196.187601][    C4]  ? kthread+0x32d/0x400
[  196.192969][    C4]  ? ret_from_fork+0x22/0x30
[  196.199359][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  196.206065][    C4]  ? __kasan_check_read+0x11/0x20
[  196.212475][    C4]  ? lock_release+0xa3/0x820
[  196.218861][    C4]  ? verify_cpu+0x100/0x100
[  196.225346][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  196.232450][    C4]  __napi_poll+0xb2/0x4c0
[  196.238146][    C4]  ? kfree+0xd7/0x560
[  196.244573][    C4]  net_rx_action+0x2d7/0xa20
[  196.252582][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  196.262681][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  196.272598][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  196.279570][    C0] net eth0: rx->offset: 0, size: -1
[  196.282546][    C4]  ? net_tx_action+0x1d9/0x860
[  196.282560][    C4]  __do_softirq+0x1cd/0x66d
[  196.282567][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  196.282575][    C4]  run_ksoftirqd+0x2b/0x40
[  196.282580][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  196.332331][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  196.341826][    C4]  ? __kthread_parkme+0x8d/0x120
[  196.349207][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  196.357673][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  196.365514][    C4]  kthread+0x32d/0x400
[  196.370816][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  196.377379][    C4]  ret_from_fork+0x22/0x30
[  196.382628][    C4]
[  196.385851][    C4] Allocated by task 0:
[  196.390913][    C4] (stack is not available)
[  196.396287][    C4]
[  196.399365][    C4] Freed by task 38:
[  196.403934][    C4]  kasan_save_stack+0x23/0x60
[  196.409647][    C4]  kasan_set_track+0x20/0x40
[  196.415064][    C4]  kasan_set_free_info+0x24/0x40
[  196.421504][    C4]  __kasan_slab_free+0xf1/0x140
[  196.427786][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  196.434235][    C4]  kfree+0xd7/0x560
[  196.439262][    C4]  skb_release_data+0x41c/0x520
[  196.447168][    C4]  kfree_skb+0x105/0x240
[  196.453911][    C4]  xennet_poll+0x1ab2/0x3c80
[  196.462466][    C4]  __napi_poll+0xb2/0x4c0
[  196.470083][    C4]  net_rx_action+0x2d7/0xa20
[  196.478533][    C4]  __do_softirq+0x1cd/0x66d
[  196.485217][    C4]
[  196.490054][    C4] The buggy address belongs to the object at 
ffff88812fabf800
[  196.490054][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  196.510349][    C4] The buggy address is located 0 bytes inside of
[  196.510349][    C4]  1024-byte region [ffff88812fabf800, 
ffff88812fabfc00)
[  196.527581][    C4] The buggy address belongs to the page:
[  196.534468][    C4] page:00000000d0c67a5b refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x12fab8
[  196.547382][    C4] head:00000000d0c67a5b order:3 compound_mapcount:0 
compound_pincount:0
[  196.558036][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  196.568257][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  196.579266][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  196.590714][    C4] page dumped because: kasan: bad access detected
[  196.598771][    C4]
[  196.601943][    C4] Memory state around the buggy address:
[  196.609513][    C4]  ffff88812fabf700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  196.619789][    C4]  ffff88812fabf780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  196.632708][    C4] >ffff88812fabf800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  196.647484][    C4]                    ^
[  196.656085][    C4]  ffff88812fabf880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  196.670904][    C4]  ffff88812fabf900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  196.683414][    C4] 
==================================================================
*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] (2 of 2) A stop job is running for …t 
Display Manager (24s / 1min 30s)
[  196.703793][    C4] 
==================================================================
[  196.714438][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  196.714451][    C4]
[  196.714454][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  196.714460][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  196.714463][    C4] Call Trace:
[  196.714469][    C4]  dump_stack+0xa1/0xd3
[  196.714475][    C4] print_address_description.constprop.0+0x1d/0x140
^[M ^[[K[ ^[[0;31m*[  196.714480][    C4]  ? kmem_cache_free+0x10b/0x520
[  196.714484][    C4]  kasan_report_invalid_free+0x56/0x80
[  196.714489][    C4]  ? kmem_cache_free+0x10b/0x520
[  196.714493][    C4]  __kasan_slab_free+0x110/0x140
[  196.714498][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  196.714503][    C4]  ? xennet_poll+0x15d9/0x3c80
[  196.714509][    C4]  kmem_cache_free+0x10b/0x520
[  196.714513][    C4]  ? kfree_skbmem+0x9a/0x140
[  196.845236][    C4]  ? xennet_poll+0x15d9/0x3c80
[  196.854355][    C4]  kfree_skbmem+0x9a/0x140
[  196.862950][    C4]  kfree_skb+0x10d/0x240
[  196.871478][    C4]  xennet_poll+0x15d9/0x3c80
[  196.878631][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  196.884679][    C4]  ? kasan_set_track+0x20/0x40
[  196.891339][    C4]  ? kasan_set_free_info+0x24/0x40
[  196.898334][    C4]  ? __kasan_slab_free+0xf1/0x140
[  196.904762][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  196.912166][    C4]  ? kfree+0xd7/0x560
[  196.917244][    C4]  ? skb_release_data+0x41c/0x520
[  196.923785][    C4]  ? __kfree_skb_defer+0x45/0x60
[  196.929875][    C4]  ? net_tx_action+0x1d9/0x860
[  196.936132][    C4]  ? __do_softirq+0x1cd/0x66d
[  196.942227][    C4]  ? run_ksoftirqd+0x2b/0x40
[  196.948024][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  196.954476][    C4]  ? kthread+0x32d/0x400
[  196.959747][    C4]  ? ret_from_fork+0x22/0x30
[  196.965344][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  196.971744][    C4]  ? __kasan_check_read+0x11/0x20
[  196.979012][    C4]  ? lock_release+0xa3/0x820
[  196.986470][    C4]  ? verify_cpu+0x100/0x100
[  196.993755][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  197.003250][    C4]  __napi_poll+0xb2/0x4c0
[  197.013533][    C4]  ? kfree+0xd7/0x560
[  197.025698][    C4]  net_rx_action+0x2d7/0xa20
[  197.035740][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  197.050115][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  197.067516][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  197.080702][    C4]  ? net_tx_action+0x1d9/0x860
[  197.089643][    C4]  __do_softirq+0x1cd/0x66d
[  197.098385][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  197.110771][    C4]  run_ksoftirqd+0x2b/0x40
[  197.118624][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  197.128315][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  197.139082][    C4]  ? __kthread_parkme+0x8d/0x120
[  197.147677][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  197.163858][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  197.179423][    C4]  kthread+0x32d/0x400
[  197.188145][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  197.197398][    C4]  ret_from_fork+0x22/0x30
[  197.205246][    C4]
[  197.209632][    C4] Allocated by task 0:
[  197.221411][    C4]  kasan_save_stack+0x23/0x60
[  197.236830][    C4]  __kasan_slab_alloc+0x68/0x80
[  197.251335][    C4]  kmem_cache_alloc_node+0x242/0x380
[  197.262631][    C4]  __alloc_skb+0x156/0x280
[  197.272539][    C4]  __netdev_alloc_skb+0x46/0x320
[  197.280669][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  197.289944][    C4]  xennet_poll+0x1e8b/0x3c80
[  197.297216][    C4]  __napi_poll+0xb2/0x4c0
[  197.304057][    C4]  net_rx_action+0x2d7/0xa20
[  197.311158][    C4]  __do_softirq+0x1cd/0x66d
[  197.318365][    C4]
[  197.321891][    C4] Freed by task 0:
[  197.327427][    C4] (stack is not available)
[  197.333346][    C4]
[  197.336752][    C4] The buggy address belongs to the object at 
ffff888123766dc0
[  197.336752][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  197.357131][    C4] The buggy address is located 0 bytes inside of
[  197.357131][    C4]  216-byte region [ffff888123766dc0, 
ffff888123766e98)
[  197.374016][    C4] The buggy address belongs to the page:
[  197.380785][    C4] page:0000000033082a5e refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x123766
[  197.396021][    C4] head:0000000033082a5e order:1 compound_mapcount:0
[  197.405669][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  197.416059][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  197.428976][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  197.444956][    C4] page dumped because: kasan: bad access detected
[  197.455874][    C4]
[  197.459469][    C4] Memory state around the buggy address:
[  197.467122][    C4]  ffff888123766c80: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  197.479361][    C4]  ffff888123766d00: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  197.489920][    C4] >ffff888123766d80: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  197.499918][    C4] ^
[  197.508461][    C4]  ffff888123766e00: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  197.517910][    C4]  ffff888123766e80: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  197.528159][    C4] 
==================================================================
^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] (2 of 2) A stop job is running for …t 
Display Manager (25s / 1min 30s)
[  197.546305][    C4] 
==================================================================
[  197.556565][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  197.556576][    C4]
[  197.556579][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  197.556584][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  197.556587][    C4] Call Trace:
[  197.556591][    C4]  dump_stack+0xa1/0xd3
[  197.556597][    C4] print_address_description.constprop.0+0x1d/0x140
^[M ^[[K[^[[0;31m*^[[  197.556604][    C4]  ? kfree+0xd7/0x560
[  197.556607][    C4]  kasan_report_invalid_free+0x56/0x80
[  197.556612][    C4]  ? kfree+0xd7/0x560
[  197.556615][    C4]  __kasan_slab_free+0x110/0x140
[  197.556620][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  197.556625][    C4]  kfree+0xd7/0x560
[  197.556629][    C4]  ? skb_release_data+0x41c/0x520
[  197.674534][    C4]  ? xennet_poll+0x15d9/0x3c80
[  197.680401][    C4]  ? kmem_cache_free+0x10b/0x520
[  197.687281][    C4]  skb_release_data+0x41c/0x520
[  197.694759][    C4]  ? xennet_poll+0x15d9/0x3c80
[  197.701585][    C4]  ? xennet_poll+0x15d9/0x3c80
[  197.708515][    C4]  kfree_skb+0x105/0x240
[  197.714227][    C4]  xennet_poll+0x15d9/0x3c80
[  197.720814][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  197.727034][    C4]  ? kasan_set_track+0x20/0x40
[  197.733603][    C4]  ? kasan_set_free_info+0x24/0x40
[  197.740929][    C4]  ? __kasan_slab_free+0xf1/0x140
[  197.747228][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  197.754523][    C4]  ? kfree+0xd7/0x560
[  197.760490][    C4]  ? skb_release_data+0x41c/0x520
[  197.766985][    C4]  ? __kfree_skb_defer+0x45/0x60
[  197.775549][    C4]  ? net_tx_action+0x1d9/0x860
[  197.781746][    C4]  ? __do_softirq+0x1cd/0x66d
[  197.792668][    C4]  ? run_ksoftirqd+0x2b/0x40
[  197.801889][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  197.815558][    C4]  ? kthread+0x32d/0x400
[  197.825950][    C4]  ? ret_from_fork+0x22/0x30
[  197.835734][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  197.843951][    C4]  ? __kasan_check_read+0x11/0x20
[  197.856137][    C4]  ? lock_release+0xa3/0x820
[  197.863900][    C4]  ? verify_cpu+0x100/0x100
[  197.872511][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  197.882326][    C4]  __napi_poll+0xb2/0x4c0
[  197.889238][    C4]  ? kfree+0xd7/0x560
[  197.895752][    C4]  net_rx_action+0x2d7/0xa20
[  197.902953][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  197.911100][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  197.921278][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  197.928642][    C4]  ? net_tx_action+0x1d9/0x860
[  197.936443][    C4]  __do_softirq+0x1cd/0x66d
[  197.943758][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  197.954181][    C4]  run_ksoftirqd+0x2b/0x40
[  197.961474][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  197.969116][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  197.978440][    C4]  ? __kthread_parkme+0x8d/0x120
[  197.986917][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  198.002581][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  198.023172][    C4]  kthread+0x32d/0x400
[  198.030482][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  198.039450][    C4]  ret_from_fork+0x22/0x30
[  198.046425][    C4]
[  198.049662][    C4] Allocated by task 0:
[  198.054694][    C4] (stack is not available)
[  198.060348][    C4]
[  198.063533][    C4] Freed by task 38:
[  198.068393][    C4]  kasan_save_stack+0x23/0x60
[  198.074675][    C4]  kasan_set_track+0x20/0x40
[  198.080501][    C4]  kasan_set_free_info+0x24/0x40
[  198.087458][    C4]  __kasan_slab_free+0xf1/0x140
[  198.095680][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  198.103660][    C4]  kfree+0xd7/0x560
[  198.109553][    C4]  skb_release_data+0x41c/0x520
[  198.118584][    C4]  kfree_skb+0x105/0x240
[  198.126056][    C4]  xennet_poll+0x1ab2/0x3c80
[  198.133346][    C4]  __napi_poll+0xb2/0x4c0
[  198.141173][    C4]  net_rx_action+0x2d7/0xa20
[  198.148043][    C4]  __do_softirq+0x1cd/0x66d
[  198.154647][    C4]
[  198.158311][    C4] The buggy address belongs to the object at 
ffff8881237d7800
[  198.158311][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  198.179577][    C4] The buggy address is located 0 bytes inside of
[  198.179577][    C4]  1024-byte region [ffff8881237d7800, 
ffff8881237d7c00)
[  198.208651][    C4] The buggy address belongs to the page:
[  198.219422][    C4] page:000000003b068a4d refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x1237d0
[  198.243057][    C4] head:000000003b068a4d order:3 compound_mapcount:0 
compound_pincount:0
[  198.256730][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  198.271380][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  198.286563][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  198.301277][    C4] page dumped because: kasan: bad access detected
[  198.314275][    C4]
[  198.318929][    C4] Memory state around the buggy address:
[  198.329036][    C4]  ffff8881237d7700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  198.343366][    C4]  ffff8881237d7780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  198.355693][    C4] >ffff8881237d7800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  198.368527][    C4]                    ^
[  198.377311][    C4]  ffff8881237d7880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  198.396567][    C4]  ffff8881237d7900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  198.416094][    C4] 
==================================================================
[0;1;31m*^[[0m^[[0;31m*   ^[[0m] (1 of 2) A stop job is running for … 11 of 
user hakon (25s / 1min 29s)
[  198.446859][    C4] 
==================================================================
[  198.457043][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  198.457057][    C4]
[  198.457061][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  198.457067][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  198.457070][    C4] Call Trace:
[  198.457076][    C4]  dump_stack+0xa1/0xd3
[  198.457083][    C4] print_address_description.constprop.0+0x1d/0x140
^[M ^[[K[^[[0;1;31m[  198.457088][    C4]  ? kmem_cache_free+0x10b/0x520
[  198.457093][    C4]  kasan_report_invalid_free+0x56/0x80
[  198.457097][    C4]  ? kmem_cache_free+0x10b/0x520
[  198.457101][    C4]  __kasan_slab_free+0x110/0x140
[  198.543457][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  198.549847][    C4]  ? xennet_poll+0x15d9/0x3c80
[  198.556326][    C4]  kmem_cache_free+0x10b/0x520
[  198.562217][    C4]  ? kfree_skbmem+0x9a/0x140
[  198.567755][    C4]  ? xennet_poll+0x15d9/0x3c80
[  198.574692][    C4]  kfree_skbmem+0x9a/0x140
[  198.580641][    C4]  kfree_skb+0x10d/0x240
[  198.588351][    C4]  xennet_poll+0x15d9/0x3c80
[  198.595136][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  198.601827][    C4]  ? kasan_set_track+0x20/0x40
[  198.611153][    C4]  ? kasan_set_free_info+0x24/0x40
[  198.618921][    C4]  ? __kasan_slab_free+0xf1/0x140
[  198.628439][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  198.635785][    C4]  ? kfree+0xd7/0x560
[  198.640802][    C4]  ? skb_release_data+0x41c/0x520
[  198.647003][    C4]  ? __kfree_skb_defer+0x45/0x60
[  198.652860][    C4]  ? net_tx_action+0x1d9/0x860
[  198.658706][    C4]  ? __do_softirq+0x1cd/0x66d
[  198.664974][    C4]  ? run_ksoftirqd+0x2b/0x40
[  198.670892][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  198.677345][    C4]  ? kthread+0x32d/0x400
[  198.682661][    C4]  ? ret_from_fork+0x22/0x30
[  198.688808][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  198.695353][    C4]  ? __kasan_check_read+0x11/0x20
[  198.702288][    C4]  ? lock_release+0xa3/0x820
[  198.708759][    C4]  ? verify_cpu+0x100/0x100
[  198.714958][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  198.721860][    C4]  __napi_poll+0xb2/0x4c0
[  198.727152][    C4]  ? kfree+0xd7/0x560
[  198.732356][    C4]  net_rx_action+0x2d7/0xa20
[  198.738954][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  198.746318][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  198.753460][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  198.760415][    C4]  ? net_tx_action+0x1d9/0x860
[  198.770977][    C4]  __do_softirq+0x1cd/0x66d
[  198.779252][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  198.792733][    C4]  run_ksoftirqd+0x2b/0x40
[  198.801933][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  198.813520][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  198.824765][    C4]  ? __kthread_parkme+0x8d/0x120
[  198.832027][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  198.841767][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  198.850357][    C4]  kthread+0x32d/0x400
[  198.857849][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  198.866497][    C4]  ret_from_fork+0x22/0x30
[  198.873199][    C4]
[  198.876566][    C4] Allocated by task 38:
[  198.882819][    C4]  kasan_save_stack+0x23/0x60
[  198.890008][    C4]  __kasan_slab_alloc+0x68/0x80
[  198.896700][    C4]  kmem_cache_alloc_node+0x242/0x380
[  198.904306][    C4]  __alloc_skb+0x156/0x280
[  198.910690][    C4]  __netdev_alloc_skb+0x46/0x320
[  198.917455][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  198.926010][    C4]  xennet_poll+0x1e8b/0x3c80
[  198.932245][    C4]  __napi_poll+0xb2/0x4c0
[  198.939041][    C4]  net_rx_action+0x2d7/0xa20
[  198.945988][    C4]  __do_softirq+0x1cd/0x66d
[  198.953151][    C4]
[  198.957672][    C4] Freed by task 0:
[  198.965667][    C4] (stack is not available)
[  198.975841][    C4]
[  198.980300][    C4] The buggy address belongs to the object at 
ffff888123767e00
[  198.980300][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  199.011205][    C4] The buggy address is located 0 bytes inside of
[  199.011205][    C4]  216-byte region [ffff888123767e00, 
ffff888123767ed8)
[  199.032900][    C4] The buggy address belongs to the page:
[  199.042711][    C4] page:0000000033082a5e refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x123766
[  199.059163][    C4] head:0000000033082a5e order:1 compound_mapcount:0
[  199.069123][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  199.082894][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  199.096611][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  199.110232][    C4] page dumped because: kasan: bad access detected
[  199.121213][    C4]
[  199.126160][    C4] Memory state around the buggy address:
[  199.134442][    C4]  ffff888123767d00: 00 00 00 00 00 00 00 00 00 00 
00 00 00 00 00 00
[  199.147976][    C4]  ffff888123767d80: 00 00 00 fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  199.168211][    C4] >ffff888123767e00: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  199.188885][    C4]                    ^
[  199.197861][    C4]  ffff888123767e80: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  199.221841][    C4]  ffff888123767f00: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  199.241048][    C4] 
==================================================================
*^[[0m^[[0;31m*    ^[[0m] (1 of 2) A stop job is running for … 11 of user 
hakon (26s / 1min 29s)
[  199.273299][    C4] 
==================================================================
[  199.290407][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  199.290422][    C4]
[  199.290425][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  199.290431][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  199.290433][    C4] Call Trace:
[  199.290439][    C4]  dump_stack+0xa1/0xd3
^[M ^[[K[^[[0m^[[0;3[  199.290446][    C4] 
print_address_description.constprop.0+0x1d/0x140
[  199.290453][    C4]  ? kfree+0xd7/0x560
[  199.290457][    C4]  kasan_report_invalid_free+0x56/0x80
[  199.290461][    C4]  ? kfree+0xd7/0x560
[  199.415962][    C4]  __kasan_slab_free+0x110/0x140
[  199.430627][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  199.441098][    C4]  kfree+0xd7/0x560
[  199.447766][    C4]  ? skb_release_data+0x41c/0x520
[  199.457633][    C4]  ? xennet_poll+0x15d9/0x3c80
[  199.465678][    C4]  ? kmem_cache_free+0x10b/0x520
[  199.473870][    C4]  skb_release_data+0x41c/0x520
[  199.480854][    C4]  ? xennet_poll+0x15d9/0x3c80
[  199.488138][    C4]  ? xennet_poll+0x15d9/0x3c80
[  199.494851][    C4]  kfree_skb+0x105/0x240
[  199.500662][    C4]  xennet_poll+0x15d9/0x3c80
[  199.507585][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  199.513901][    C4]  ? kasan_set_track+0x20/0x40
[  199.521157][    C4]  ? kasan_set_free_info+0x24/0x40
[  199.528393][    C4]  ? __kasan_slab_free+0xf1/0x140
[  199.535531][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  199.543327][    C4]  ? kfree+0xd7/0x560
[  199.549296][    C4]  ? skb_release_data+0x41c/0x520
[  199.556785][    C4]  ? __kfree_skb_defer+0x45/0x60
[  199.566972][    C4]  ? net_tx_action+0x1d9/0x860
[  199.578739][    C4]  ? __do_softirq+0x1cd/0x66d
[  199.589654][    C4]  ? run_ksoftirqd+0x2b/0x40
[  199.598032][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  199.605483][    C4]  ? kthread+0x32d/0x400
[  199.610742][    C4]  ? ret_from_fork+0x22/0x30
[  199.616429][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  199.622798][    C4]  ? __kasan_check_read+0x11/0x20
[  199.629070][    C4]  ? lock_release+0xa3/0x820
[  199.634951][    C4]  ? verify_cpu+0x100/0x100
[  199.640679][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  199.648403][    C4]  __napi_poll+0xb2/0x4c0
[  199.657408][    C4]  ? kfree+0xd7/0x560
[  199.663410][    C4]  net_rx_action+0x2d7/0xa20
[  199.669041][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  199.675647][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  199.682562][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  199.689323][    C4]  ? net_tx_action+0x1d9/0x860
[  199.694945][    C4]  __do_softirq+0x1cd/0x66d
[  199.700237][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  199.707495][    C4]  run_ksoftirqd+0x2b/0x40
[  199.712819][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  199.719146][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  199.727121][    C4]  ? __kthread_parkme+0x8d/0x120
[  199.733630][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  199.741407][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  199.748961][    C4]  kthread+0x32d/0x400
[  199.754246][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  199.761147][    C4]  ret_from_fork+0x22/0x30
[  199.766482][    C4]
[  199.769492][    C4] Allocated by task 0:
[  199.774770][    C4] (stack is not available)
[  199.780466][    C4]
[  199.783493][    C4] Freed by task 0:
[  199.788930][    C4]  kasan_save_stack+0x23/0x60
[  199.796576][    C4]  kasan_set_track+0x20/0x40
[  199.805992][    C4]  kasan_set_free_info+0x24/0x40
[  199.818320][    C4]  __kasan_slab_free+0xf1/0x140
[  199.830701][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  199.841487][    C4]  kfree+0xd7/0x560
[  199.850715][    C4]  skb_release_data+0x41c/0x520
[  199.859704][    C4]  kfree_skb+0x105/0x240
[  199.868666][    C4]  xennet_poll+0x1ab2/0x3c80
[  199.877842][    C4]  __napi_poll+0xb2/0x4c0
[  199.885704][    C4]  net_rx_action+0x2d7/0xa20
[  199.892631][    C4]  __do_softirq+0x1cd/0x66d
[  199.898162][    C4]
[  199.901144][    C4] The buggy address belongs to the object at 
ffff8881237d7000
[  199.901144][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  199.918816][    C4] The buggy address is located 0 bytes inside of
[  199.918816][    C4]  1024-byte region [ffff8881237d7000, 
ffff8881237d7400)
[  199.935613][    C4] The buggy address belongs to the page:
[  199.943031][    C4] page:000000003b068a4d refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x1237d0
[  199.956223][    C4] head:000000003b068a4d order:3 compound_mapcount:0 
compound_pincount:0
[  199.966591][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  199.977938][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  199.993518][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  200.011059][    C4] page dumped because: kasan: bad access detected
[  200.024150][    C4]
[  200.030019][    C4] Memory state around the buggy address:
[  200.040154][    C4]  ffff8881237d6f00: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  200.051802][    C4]  ffff8881237d6f80: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  200.065291][    C4] >ffff8881237d7000: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  200.078728][    C4]                    ^
[  200.084830][    C4]  ffff8881237d7080: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  200.095971][    C4]  ffff8881237d7100: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  200.109416][    C4] 
==================================================================
1m*     ^[[0m] (1 of 2) A stop job is running for … 11 of user hakon (27s 
/ 1min 29s)
[  200.131324][    C4] 
==================================================================
[  200.143892][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  200.143904][    C4]
[  200.143907][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  200.143912][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  200.143915][    C4] Call Trace:
[  200.143919][    C4]  dump_stack+0xa1/0xd3
^[M ^[[K[^[[0;1;31m[  200.143926][    C4] 
print_address_description.constprop.0+0x1d/0x140
[  200.143931][    C4]  ? kmem_cache_free+0x10b/0x520
[  200.143935][    C4]  kasan_report_invalid_free+0x56/0x80
[  200.143940][    C4]  ? kmem_cache_free+0x10b/0x520
[  200.143943][    C4]  __kasan_slab_free+0x110/0x140
[  200.143948][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  200.143954][    C4]  ? xennet_poll+0x15d9/0x3c80
[  200.143960][    C4]  kmem_cache_free+0x10b/0x520
[  200.143964][    C4]  ? kfree_skbmem+0x9a/0x140
[  200.143971][    C4]  ? xennet_poll+0x15d9/0x3c80
[  200.143976][    C4]  kfree_skbmem+0x9a/0x140
[  200.143979][    C4]  kfree_skb+0x10d/0x240
[  200.143984][    C4]  xennet_poll+0x15d9/0x3c80
[  200.143993][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  200.143997][    C4]  ? kasan_set_track+0x20/0x40
[  200.144001][    C4]  ? kasan_set_free_info+0x24/0x40
[  200.144006][    C4]  ? __kasan_slab_free+0xf1/0x140
[  200.144010][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  200.144013][    C4]  ? kfree+0xd7/0x560
[  200.144017][    C4]  ? skb_release_data+0x41c/0x520
[  200.422499][    C4]  ? __kfree_skb_defer+0x45/0x60
[  200.433632][    C4]  ? net_tx_action+0x1d9/0x860
[  200.441630][    C4]  ? __do_softirq+0x1cd/0x66d
[  200.450496][    C4]  ? run_ksoftirqd+0x2b/0x40
[  200.458579][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  200.466961][    C4]  ? kthread+0x32d/0x400
[  200.474814][    C4]  ? ret_from_fork+0x22/0x30
[  200.481359][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  200.489666][    C4]  ? __kasan_check_read+0x11/0x20
[  200.499137][    C4]  ? lock_release+0xa3/0x820
[  200.508374][    C4]  ? verify_cpu+0x100/0x100
[  200.515303][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  200.524964][    C4]  __napi_poll+0xb2/0x4c0
[  200.531389][    C4]  ? kfree+0xd7/0x560
[  200.537937][    C4]  net_rx_action+0x2d7/0xa20
[  200.547205][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  200.560233][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  200.574181][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  200.584740][    C4]  ? net_tx_action+0x1d9/0x860
[  200.594485][    C4]  __do_softirq+0x1cd/0x66d
[  200.601066][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  200.609972][    C4]  run_ksoftirqd+0x2b/0x40
[  200.615619][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  200.622112][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  200.629669][    C4]  ? __kthread_parkme+0x8d/0x120
[  200.637946][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  200.647237][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  200.655370][    C4]  kthread+0x32d/0x400
[  200.660504][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  200.666800][    C4]  ret_from_fork+0x22/0x30
[  200.672481][    C4]
[  200.675423][    C4] Allocated by task 38:
[  200.680480][    C4]  kasan_save_stack+0x23/0x60
[  200.686959][    C4]  __kasan_slab_alloc+0x68/0x80
[  200.693435][    C4]  kmem_cache_alloc_node+0x242/0x380
[  200.700359][    C4]  __alloc_skb+0x156/0x280
[  200.706086][    C4]  __netdev_alloc_skb+0x46/0x320
[  200.712833][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  200.719924][    C4]  xennet_poll+0x1e8b/0x3c80
[  200.726178][    C4]  __napi_poll+0xb2/0x4c0
[  200.733488][    C4]  net_rx_action+0x2d7/0xa20
[  200.745385][    C4]  __do_softirq+0x1cd/0x66d
[  200.756439][    C4]
[  200.762721][    C4] Freed by task 0:
[  200.774206][    C4] (stack is not available)
[  200.785775][    C4]
[  200.789925][    C4] The buggy address belongs to the object at 
ffff888123767b80
[  200.789925][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  200.811445][    C4] The buggy address is located 0 bytes inside of
[  200.811445][    C4]  216-byte region [ffff888123767b80, 
ffff888123767c58)
[  200.831756][    C4] The buggy address belongs to the page:
[  200.839630][    C4] page:0000000033082a5e refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x123766
[  200.854616][    C4] head:0000000033082a5e order:1 compound_mapcount:0
[  200.863765][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  200.875050][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  200.888159][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  200.900494][    C4] page dumped because: kasan: bad access detected
[  200.911374][    C4]
[  200.915042][    C4] Memory state around the buggy address:
[  200.926805][    C4]  ffff888123767a80: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  200.946444][    C4]  ffff888123767b00: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  200.964582][    C4] >ffff888123767b80: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  200.981548][    C4]                    ^
[  200.988422][    C4]  ffff888123767c00: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  201.000428][    C4]  ffff888123767c80: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  201.012154][    C4] 
==================================================================
*^[[0m^[[0;31m*    ^[[0m] (2 of 2) A stop job is running for …t Display 
Manager (29s / 1min 30s)
[  201.034635][    C4] net eth0: rx->offset: 0, size: -1
[  201.044199][    C4] net eth0: rx->offset: 0, size: -1
[  201.044209][    C4] net eth0: rx->offset: 0, size: -1
[  201.044215][    C4] net eth0: rx->offset: 0, size: -1
[  201.044218][    C4] net eth0: rx->offset: 0, size: -1
[  201.044221][    C4] net eth0: rx->offset: 0, size: -1
[  201.044230][    C4] 
==================================================================
[  201.044232][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
^[M ^[[K[^[[0;31m*^[[  201.044241][    C4]
[  201.044244][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  201.044250][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  201.044252][    C4] Call Trace:
[  201.044258][    C4]  dump_stack+0xa1/0xd3
[  201.204927][    C4] print_address_description.constprop.0+0x1d/0x140
[  201.214952][    C4]  ? kfree+0xd7/0x560
[  201.220385][    C4]  kasan_report_invalid_free+0x56/0x80
[  201.229299][    C4]  ? kfree+0xd7/0x560
[  201.235873][    C4]  __kasan_slab_free+0x110/0x140
[  201.244242][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  201.253371][    C4]  kfree+0xd7/0x560
[  201.259751][    C4]  ? skb_release_data+0x41c/0x520
[  201.267861][    C4]  ? free_unref_page+0x145/0x1e0
[  201.275864][    C4]  skb_release_data+0x41c/0x520
[  201.283416][    C4]  ? xennet_poll+0x1ab2/0x3c80
[  201.290765][    C4]  kfree_skb+0x105/0x240
[  201.297392][    C4]  xennet_poll+0x1ab2/0x3c80
[  201.304453][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  201.312220][    C4]  ? kasan_set_track+0x20/0x40
[  201.322286][    C4]  ? kasan_set_free_info+0x24/0x40
[  201.333738][    C4]  ? __kasan_slab_free+0xf1/0x140
[  201.348056][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  201.363040][    C4]  ? kfree+0xd7/0x560
[  201.372620][    C4]  ? skb_release_data+0x41c/0x520
[  201.380319][    C4]  ? __kfree_skb_defer+0x45/0x60
[  201.387731][    C4]  ? net_tx_action+0x1d9/0x860
[  201.394518][    C4]  ? __do_softirq+0x1cd/0x66d
[  201.400588][    C4]  ? run_ksoftirqd+0x2b/0x40
[  201.406355][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  201.413038][    C4]  ? kthread+0x32d/0x400
[  201.418635][    C4]  ? ret_from_fork+0x22/0x30
[  201.424830][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  201.430972][    C4]  ? __kasan_check_read+0x11/0x20
[  201.438317][    C4]  ? lock_release+0xa3/0x820
[  201.444286][    C4]  ? verify_cpu+0x100/0x100
[  201.450645][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  201.458911][    C4]  __napi_poll+0xb2/0x4c0
[  201.464608][    C4]  ? kfree+0xd7/0x560
[  201.470120][    C4]  net_rx_action+0x2d7/0xa20
[  201.475957][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  201.482070][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  201.489324][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  201.495730][    C4]  ? net_tx_action+0x1d9/0x860
[  201.501456][    C4]  __do_softirq+0x1cd/0x66d
[  201.509042][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  201.518079][    C4]  run_ksoftirqd+0x2b/0x40
[  201.527063][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  201.535289][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  201.546472][    C4]  ? __kthread_parkme+0x8d/0x120
[  201.554707][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  201.564453][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  201.573892][    C4]  kthread+0x32d/0x400
[  201.579346][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  201.585741][    C4]  ret_from_fork+0x22/0x30
[  201.591733][    C4]
[  201.594684][    C4] Allocated by task 0:
[  201.599723][    C4] (stack is not available)
[  201.605438][    C4]
[  201.608370][    C4] Freed by task 0:
[  201.612857][    C4]  kasan_save_stack+0x23/0x60
[  201.618594][    C4]  kasan_set_track+0x20/0x40
[  201.624417][    C4]  kasan_set_free_info+0x24/0x40
[  201.630679][    C4]  __kasan_slab_free+0xf1/0x140
[  201.637181][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  201.643906][    C4]  kfree+0xd7/0x560
[  201.648754][    C4]  skb_release_data+0x41c/0x520
[  201.654662][    C4]  kfree_skb+0x105/0x240
[  201.659850][    C4]  xennet_poll+0x1ab2/0x3c80
[  201.665373][    C4]  __napi_poll+0xb2/0x4c0
[  201.670668][    C4]  net_rx_action+0x2d7/0xa20
[  201.676261][    C4]  __do_softirq+0x1cd/0x66d
[  201.681791][    C4]
[  201.684696][    C4] The buggy address belongs to the object at 
ffff8881237d1800
[  201.684696][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  201.704499][    C4] The buggy address is located 0 bytes inside of
[  201.704499][    C4]  1024-byte region [ffff8881237d1800, 
ffff8881237d1c00)
[  201.725900][    C4] The buggy address belongs to the page:
[  201.740734][    C4] page:000000003b068a4d refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x1237d0
[  201.759714][    C4] head:000000003b068a4d order:3 compound_mapcount:0 
compound_pincount:0
[  201.773377][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  201.786864][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  201.800669][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  201.814845][    C4] page dumped because: kasan: bad access detected
[  201.827112][    C4]
[  201.830619][    C4] Memory state around the buggy address:
[  201.839451][    C4]  ffff8881237d1700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  201.852340][    C4]  ffff8881237d1780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  201.866765][    C4] >ffff8881237d1800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  201.880917][    C4]                    ^
[  201.888498][    C4]  ffff8881237d1880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  201.907115][    C4]  ffff8881237d1900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  201.926265][    C4] 
==================================================================
[0;1;31m*^[[0m^[[0;31m*   ^[[0m] (2 of 2) A stop job is running for …t 
Display Manager (29s / 1min 30s)
[  201.958556][    C4] 
==================================================================
[  201.970440][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  201.970452][    C4]
[  201.970455][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  201.970461][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  201.970464][    C4] Call Trace:
[  201.970468][    C4]  dump_stack+0xa1/0xd3
^[M ^[[K[ ^[[0;31m*[  201.970475][    C4] 
print_address_description.constprop.0+0x1d/0x140
[  201.970481][    C4]  ? kmem_cache_free+0x10b/0x520
[  201.970485][    C4]  kasan_report_invalid_free+0x56/0x80
[  201.970489][    C4]  ? kmem_cache_free+0x10b/0x520
[  201.970493][    C4]  __kasan_slab_free+0x110/0x140
[  201.970498][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  201.970503][    C4]  ? xennet_poll+0x1ab2/0x3c80
[  201.970509][    C4]  kmem_cache_free+0x10b/0x520
[  201.970513][    C4]  ? kfree_skbmem+0x9a/0x140
[  201.970521][    C4]  ? xennet_poll+0x1ab2/0x3c80
[  202.135371][    C4]  kfree_skbmem+0x9a/0x140
[  202.143159][    C4]  kfree_skb+0x10d/0x240
[  202.148745][    C4]  xennet_poll+0x1ab2/0x3c80
[  202.155712][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  202.162503][    C4]  ? kasan_set_track+0x20/0x40
[  202.170606][    C4]  ? kasan_set_free_info+0x24/0x40
[  202.178868][    C4]  ? __kasan_slab_free+0xf1/0x140
[  202.185116][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  202.192385][    C4]  ? kfree+0xd7/0x560
[  202.197348][    C4]  ? skb_release_data+0x41c/0x520
[  202.203862][    C4]  ? __kfree_skb_defer+0x45/0x60
[  202.210196][    C4]  ? net_tx_action+0x1d9/0x860
[  202.215748][    C4]  ? __do_softirq+0x1cd/0x66d
[  202.221557][    C4]  ? run_ksoftirqd+0x2b/0x40
[  202.227224][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  202.233261][    C4]  ? kthread+0x32d/0x400
[  202.239029][    C4]  ? ret_from_fork+0x22/0x30
[  202.245304][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  202.251647][    C4]  ? __kasan_check_read+0x11/0x20
[  202.260266][    C4]  ? lock_release+0xa3/0x820
[  202.266719][    C4]  ? verify_cpu+0x100/0x100
[  202.275659][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  202.285720][    C4]  __napi_poll+0xb2/0x4c0
[  202.291882][    C4]  ? kfree+0xd7/0x560
[  202.297122][    C4]  net_rx_action+0x2d7/0xa20
[  202.304174][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  202.311862][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  202.319657][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  202.326067][    C4]  ? net_tx_action+0x1d9/0x860
[  202.331836][    C4]  __do_softirq+0x1cd/0x66d
[  202.337788][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  202.345855][    C4]  run_ksoftirqd+0x2b/0x40
[  202.351265][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  202.357538][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  202.365458][    C4]  ? __kthread_parkme+0x8d/0x120
[  202.371909][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  202.379724][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  202.387815][    C4]  kthread+0x32d/0x400
[  202.392923][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  202.398902][    C4]  ret_from_fork+0x22/0x30
[  202.404496][    C4]
[  202.407696][    C4] Allocated by task 38:
[  202.412716][    C4]  kasan_save_stack+0x23/0x60
[  202.418604][    C4]  __kasan_slab_alloc+0x68/0x80
[  202.424853][    C4]  kmem_cache_alloc_node+0x242/0x380
[  202.431392][    C4]  __alloc_skb+0x156/0x280
[  202.437864][    C4]  __netdev_alloc_skb+0x46/0x320
[  202.445954][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  202.454631][    C4]  xennet_poll+0x1e8b/0x3c80
[  202.461691][    C4]  __napi_poll+0xb2/0x4c0
[  202.468156][    C4]  net_rx_action+0x2d7/0xa20
[  202.475068][    C4]  __do_softirq+0x1cd/0x66d
[  202.482262][    C4]
[  202.485790][    C4] Freed by task 0:
[  202.493736][    C4] (stack is not available)
[  202.499070][    C4]
[  202.502177][    C4] The buggy address belongs to the object at 
ffff888123302b40
[  202.502177][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  202.522328][    C4] The buggy address is located 0 bytes inside of
[  202.522328][    C4]  216-byte region [ffff888123302b40, 
ffff888123302c18)
[  202.540081][    C4] The buggy address belongs to the page:
[  202.547265][    C4] page:00000000d73f6df1 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x123302
[  202.560308][    C4] head:00000000d73f6df1 order:1 compound_mapcount:0
[  202.568107][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  202.578064][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  202.589336][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  202.600427][    C4] page dumped because: kasan: bad access detected
[  202.611098][    C4]
[  202.614471][    C4] Memory state around the buggy address:
[  202.623856][    C4]  ffff888123302a00: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  202.640742][    C4]  ffff888123302a80: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  202.660948][    C4] >ffff888123302b00: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  202.682574][    C4] ^
[  202.694285][    C4]  ffff888123302b80: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  202.708306][    C4]  ffff888123302c00: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  202.720595][    C4] 
==================================================================
^[[0;1;31m*^[[0m^[[0;31m*  ^[[0m] (2 of 2) A stop job is running for …t 
Display Manager (30s / 1min 30s)
^[M ^[[K[  ^[[0;31m[  202.744830][    C4] 
==================================================================
[  202.758306][    C4] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  202.769743][    C4]
[  202.773580][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  202.790871][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  202.801795][    C4] Call Trace:
[  202.807362][    C4]  dump_stack+0xa1/0xd3
[  202.814819][    C4] print_address_description.constprop.0+0x1d/0x140
[  202.825948][    C4]  ? kfree+0xd7/0x560
[  202.831634][    C4]  kasan_report_invalid_free+0x56/0x80
[  202.842265][    C4]  ? kfree+0xd7/0x560
[  202.848832][    C4]  __kasan_slab_free+0x110/0x140
[  202.857816][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  202.865259][    C4]  kfree+0xd7/0x560
[  202.870643][    C4]  ? skb_release_data+0x41c/0x520
[  202.877259][    C4]  skb_release_data+0x41c/0x520
[  202.882829][    C4]  ? __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  202.891484][    C4]  ? __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  202.900106][    C4]  kfree_skb+0x105/0x240
[  202.905705][    C4] __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  202.914050][    C4]  ? ret_from_fork+0x22/0x30
[  202.920070][    C4]  ? generic_xdp_tx+0x4c0/0x4c0
[  202.926264][    C4]  ? kasan_save_stack+0x42/0x60
[  202.932178][    C4]  ? kasan_save_stack+0x23/0x60
[  202.938449][    C4]  ? __kasan_slab_alloc+0x68/0x80
[  202.944548][    C4]  ? kmem_cache_alloc_node+0x242/0x380
[  202.951203][    C4]  ? __alloc_skb+0x156/0x280
[  202.957215][    C4]  ? __netdev_alloc_skb+0x46/0x320
[  202.963442][    C4]  ? xennet_alloc_rx_buffers+0x237/0xae0
[  202.970591][    C4]  ? xennet_poll+0x1e8b/0x3c80
[  202.976674][    C4]  ? __napi_poll+0xb2/0x4c0
[  202.982170][    C4]  ? net_rx_action+0x2d7/0xa20
[  202.988453][    C4]  ? __do_softirq+0x1cd/0x66d
[  202.995589][    C4]  ? run_ksoftirqd+0x2b/0x40
[  203.004005][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  203.011871][    C4]  ? kthread+0x32d/0x400
[  203.019708][    C4]  ? ret_from_fork+0x22/0x30
[  203.029612][    C4]  ? get_partial_node.part.0+0x116/0x300
[  203.039588][    C4]  __netif_receive_skb_list_core+0x316/0xa20
[  203.048290][    C4]  ? __netif_receive_skb_list_core+0x316/0xa20
[  203.057196][    C4]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
[  203.065784][    C4]  ? __kasan_check_read+0x11/0x20
[  203.072161][    C4]  ? lock_acquire+0x4b/0x260
[  203.077826][    C4] netif_receive_skb_list_internal+0x616/0xd80
[  203.085323][    C4]  ? __kasan_check_write+0x14/0x20
[  203.092068][    C4]  ? __netif_receive_skb_list_core+0xa20/0xa20
[  203.099831][    C4]  ? __alloc_skb+0xce/0x280
[  203.105944][    C4]  ? gnttab_grant_foreign_access_ref+0x50/0x80
[  203.113711][    C4]  ? xennet_alloc_rx_buffers+0x15e/0xae0
[  203.120775][    C4]  napi_complete_done+0x189/0x600
[  203.127731][    C4]  xennet_poll+0x2447/0x3c80
[  203.134046][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  203.139927][    C4]  ? kasan_set_track+0x20/0x40
[  203.145804][    C4]  ? kasan_set_free_info+0x24/0x40
[  203.152146][    C4]  ? __kasan_slab_free+0xf1/0x140
[  203.161383][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  203.168556][    C4]  ? kfree+0xd7/0x560
[  203.174194][    C4]  ? skb_release_data+0x41c/0x520
[  203.188842][    C4]  ? __kfree_skb_defer+0x45/0x60
[  203.199970][    C4]  ? net_tx_action+0x1d9/0x860
[  203.210335][    C4]  ? __do_softirq+0x1cd/0x66d
[  203.224241][    C4]  ? run_ksoftirqd+0x2b/0x40
[  203.237098][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  203.249586][    C4]  ? kthread+0x32d/0x400
[  203.256532][    C4]  ? ret_from_fork+0x22/0x30
[  203.263640][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  203.271145][    C4]  ? run_timer_softirq+0x100/0x100
[  203.279449][    C4]  ? __kasan_check_read+0x11/0x20
[  203.287784][    C4]  ? lock_release+0xa3/0x820
[  203.295657][    C4]  ? verify_cpu+0x100/0x100
[  203.302828][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  203.311488][    C4]  __napi_poll+0xb2/0x4c0
[  203.318228][    C4]  ? kfree+0xd7/0x560
[  203.324472][    C4]  net_rx_action+0x2d7/0xa20
[  203.331587][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  203.340312][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  203.348612][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  203.356768][    C4]  ? net_tx_action+0x1d9/0x860
[  203.364189][    C4]  __do_softirq+0x1cd/0x66d
[  203.372995][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  203.387407][    C4]  run_ksoftirqd+0x2b/0x40
[  203.397672][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  203.411192][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  203.425652][    C4]  ? __kthread_parkme+0x8d/0x120
[  203.431699][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  203.439896][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  203.447504][    C4]  kthread+0x32d/0x400
[  203.452427][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  203.459371][    C4]  ret_from_fork+0x22/0x30
[  203.464697][    C4]
[  203.467925][    C4] Allocated by task 0:
[  203.473767][    C4] (stack is not available)
[  203.479458][    C4]
[  203.482421][    C4] Freed by task 0:
[  203.487269][    C4]  kasan_save_stack+0x23/0x60
[  203.494875][    C4]  kasan_set_track+0x20/0x40
[  203.501611][    C4]  kasan_set_free_info+0x24/0x40
[  203.509449][    C4]  __kasan_slab_free+0xf1/0x140
[  203.516244][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  203.525600][    C4]  kfree+0xd7/0x560
[  203.531492][    C4]  skb_release_data+0x41c/0x520
[  203.541822][    C4]  kfree_skb+0x105/0x240
[  203.549323][    C4]  xennet_poll+0x1ab2/0x3c80
[  203.561585][    C4]  __napi_poll+0xb2/0x4c0
[  203.574616][    C4]  net_rx_action+0x2d7/0xa20
[  203.584877][    C4]  __do_softirq+0x1cd/0x66d
[  203.594306][    C4]
[  203.598432][    C4] The buggy address belongs to the object at 
ffff8881237ca800
[  203.598432][    C4]  which belongs to the cache kmalloc-1k of size 1024
[  203.624247][    C4] The buggy address is located 0 bytes inside of
[  203.624247][    C4]  1024-byte region [ffff8881237ca800, 
ffff8881237cac00)
[  203.640861][    C4] The buggy address belongs to the page:
[  203.647614][    C4] page:0000000027182cce refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x1237c8
[  203.660080][    C4] head:0000000027182cce order:3 compound_mapcount:0 
compound_pincount:0
[  203.670639][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  203.680770][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  203.692182][    C4] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  203.702422][    C4] page dumped because: kasan: bad access detected
[  203.710003][    C4]
[  203.712674][    C4] Memory state around the buggy address:
[  203.719827][    C4]  ffff8881237ca700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  203.729864][    C4]  ffff8881237ca780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  203.744176][    C4] >ffff8881237ca800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  203.761633][    C4]                    ^
[  203.769491][    C4]  ffff8881237ca880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  203.786483][    C4]  ffff8881237ca900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  203.800667][    C4] 
==================================================================
*^[[0;1;31m*^[[0m^[[0;31m* ^[[0m] (1 of 2) A stop job is running for … 11 of 
user hakon (31s / 1min 29s)
[  203.829231][    C4] 
==================================================================
[  203.844545][    C4] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  203.844559][    C4]
[  203.844562][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  203.844568][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  203.844570][    C4] Call Trace:
[  203.844577][    C4]  dump_stack+0xa1/0xd3
^[M ^[[K[   ^[[0;31[  203.844583][    C4] 
print_address_description.constprop.0+0x1d/0x140
[  203.844596][    C4]  ? kmem_cache_free+0x10b/0x520
[  203.844600][    C4]  kasan_report_invalid_free+0x56/0x80
[  203.844605][    C4]  ? kmem_cache_free+0x10b/0x520
[  203.844609][    C4]  __kasan_slab_free+0x110/0x140
[  203.966488][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  203.982910][    C4]  ? __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  203.996192][    C4]  kmem_cache_free+0x10b/0x520
[  204.003596][    C4]  ? kfree_skbmem+0x9a/0x140
[  204.010595][    C4]  ? __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  204.020746][    C4]  kfree_skbmem+0x9a/0x140
[  204.028285][    C4]  kfree_skb+0x10d/0x240
[  204.034362][    C4] __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  204.044977][    C4]  ? ret_from_fork+0x22/0x30
[  204.052000][    C4]  ? generic_xdp_tx+0x4c0/0x4c0
[  204.059282][    C4]  ? kasan_save_stack+0x42/0x60
[  204.065962][    C4]  ? kasan_save_stack+0x23/0x60
[  204.073322][    C4]  ? __kasan_slab_alloc+0x68/0x80
[  204.080810][    C4]  ? kmem_cache_alloc_node+0x242/0x380
[  204.088710][    C4]  ? __alloc_skb+0x156/0x280
[  204.094268][    C4]  ? __netdev_alloc_skb+0x46/0x320
[  204.100598][    C4]  ? xennet_alloc_rx_buffers+0x237/0xae0
[  204.109256][    C4]  ? xennet_poll+0x1e8b/0x3c80
[  204.117524][    C4]  ? __napi_poll+0xb2/0x4c0
[  204.126228][    C4]  ? net_rx_action+0x2d7/0xa20
[  204.135678][    C4]  ? __do_softirq+0x1cd/0x66d
[  204.145742][    C4]  ? run_ksoftirqd+0x2b/0x40
[  204.155376][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  204.165497][    C4]  ? kthread+0x32d/0x400
[  204.172533][    C4]  ? ret_from_fork+0x22/0x30
[  204.178721][    C4]  ? get_partial_node.part.0+0x116/0x300
[  204.186258][    C4]  __netif_receive_skb_list_core+0x316/0xa20
[  204.194136][    C4]  ? __netif_receive_skb_list_core+0x316/0xa20
[  204.201974][    C4]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
[  204.210614][    C4]  ? __kasan_check_read+0x11/0x20
[  204.216867][    C4]  ? lock_acquire+0x4b/0x260
[  204.223181][    C4] netif_receive_skb_list_internal+0x616/0xd80
[  204.230868][    C4]  ? __kasan_check_write+0x14/0x20
[  204.237282][    C4]  ? __netif_receive_skb_list_core+0xa20/0xa20
[  204.244828][    C4]  ? __alloc_skb+0xce/0x280
[  204.250732][    C4]  ? gnttab_grant_foreign_access_ref+0x50/0x80
[  204.260105][    C4]  ? xennet_alloc_rx_buffers+0x15e/0xae0
[  204.267251][    C4]  napi_complete_done+0x189/0x600
[  204.273397][    C4]  xennet_poll+0x2447/0x3c80
[  204.279196][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  204.284689][    C4]  ? kasan_set_track+0x20/0x40
[  204.291897][    C4]  ? kasan_set_free_info+0x24/0x40
[  204.298053][    C4]  ? __kasan_slab_free+0xf1/0x140
[  204.305806][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  204.314325][    C4]  ? kfree+0xd7/0x560
[  204.320792][    C4]  ? skb_release_data+0x41c/0x520
[  204.329328][    C4]  ? __kfree_skb_defer+0x45/0x60
[  204.338765][    C4]  ? net_tx_action+0x1d9/0x860
[  204.347523][    C4]  ? __do_softirq+0x1cd/0x66d
[  204.355677][    C4]  ? run_ksoftirqd+0x2b/0x40
[  204.362473][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  204.369031][    C4]  ? kthread+0x32d/0x400
[  204.374509][    C4]  ? ret_from_fork+0x22/0x30
[  204.379922][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  204.385894][    C4]  ? run_timer_softirq+0x100/0x100
[  204.392418][    C4]  ? __kasan_check_read+0x11/0x20
[  204.398180][    C4]  ? lock_release+0xa3/0x820
[  204.403698][    C4]  ? verify_cpu+0x100/0x100
[  204.409319][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  204.415917][    C4]  __napi_poll+0xb2/0x4c0
[  204.421454][    C4]  ? kfree+0xd7/0x560
[  204.426659][    C4]  net_rx_action+0x2d7/0xa20
[  204.432065][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  204.438778][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  204.446014][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  204.452476][    C4]  ? net_tx_action+0x1d9/0x860
[  204.458658][    C4]  __do_softirq+0x1cd/0x66d
[  204.463901][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  204.471840][    C4]  run_ksoftirqd+0x2b/0x40
[  204.477064][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  204.483031][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  204.492084][    C4]  ? __kthread_parkme+0x8d/0x120
[  204.499181][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  204.510237][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  204.521905][    C4]  kthread+0x32d/0x400
[  204.528474][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  204.536525][    C4]  ret_from_fork+0x22/0x30
[  204.544403][    C4]
[  204.547919][    C4] Allocated by task 0:
[  204.553934][    C4]  kasan_save_stack+0x23/0x60
[  204.561961][    C4]  __kasan_slab_alloc+0x68/0x80
[  204.569456][    C4]  kmem_cache_alloc_node+0x242/0x380
[  204.578390][    C4]  __alloc_skb+0x156/0x280
[  204.584299][    C4]  __netdev_alloc_skb+0x46/0x320
[  204.591699][    C4]  xennet_alloc_rx_buffers+0x237/0xae0
[  204.599173][    C4]  xennet_poll+0x1e8b/0x3c80
[  204.605884][    C4]  __napi_poll+0xb2/0x4c0
[  204.611685][    C4]  net_rx_action+0x2d7/0xa20
[  204.617153][    C4]  __do_softirq+0x1cd/0x66d
[  204.623591][    C4]
[  204.626848][    C4] Freed by task 269043760:
[  204.632842][    C4] ------------[ cut here ]------------
[  204.639936][    C4] slab index 2066561 out of bounds (277) for stack 
id ffff8881
[  204.649682][    C4] WARNING: CPU: 4 PID: 38 at lib/stackdepot.c:236 
stack_depot_fetch+0x71/0xa0
[  204.661358][    C4] Modules linked in: xen_front_pgdir_shbuf 
xen_scsifront snd_hda_codec_hdmi snd_hda_intel snd_intel_dspcfg 
snd_hda_codec snd_hda_core snd_hwdep snd_pcm snd_timer snd soundcore 
hid_generic usbhid hid xen_kbdfront intel_rapl_msr atkbd 
intel_rapl_common amdgpu drm_ttm_helper ttm gpu_sched xhci_pci xhci_hcd 
usbcore [last unloaded: usbip_core]
[  204.713101][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B             5.13.0-rc6-x86_64 #1
[  204.728930][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  204.742772][    C4] RIP: 0010:stack_depot_fetch+0x71/0xa0
[  204.750732][    C4] Code: 48 c1 e0 04 25 f0 3f 00 00 48 01 c2 48 8d 
42 18 48 89 03 48 8b 5d f8 8b 42 0c c9 c3 89 f9 48 c7 c7 48 85 bb 84 e8 
2d bf 3b 01 <0f> 0b 31 c0 48 8b 5d f8 c9 c3 48 8b 5d f8 31 c0 c9 c3 48 
c7 c7 a0
[  204.777841][    C4] RSP: 0018:ffffc900002df200 EFLAGS: 00010082
[  204.786886][    C4] RAX: 0000000000000000 RBX: ffffc900002df228 RCX: 
0000000000000000
[  204.801293][    C4] RDX: 0000000000000027 RSI: 0000000000000004 RDI: 
fffff5200005be32
[  204.812429][    C4] RBP: ffffc900002df218 R08: 0000000000000001 R09: 
ffff8884d3a2091b
[  204.825238][    C4] R10: ffffed109a744123 R11: 646e692062616c73 R12: 
ffff8881239692c0
[  204.838641][    C4] R13: ffffea00048e5a00 R14: ffff8881239692c0 R15: 
ffff888123969398
[  204.848504][    C4] FS:  0000000000000000(0000) 
GS:ffff8884d3a00000(0000) knlGS:0000000000000000
[  204.861513][    C4] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  204.870334][    C4] CR2: 00007f0f44da7948 CR3: 0000000004e2a003 CR4: 
00000000001706e0
[  204.882828][    C4] Call Trace:
[  204.889788][    C4]  print_stack+0xe/0x1d
[  204.898939][    C4]  print_track+0x22/0x33
[  204.906432][    C4] 
print_address_description.constprop.0.cold+0x3c/0x179
[  204.918578][    C4]  ? kmem_cache_free+0x10b/0x520
[  204.928978][    C4]  kasan_report_invalid_free+0x56/0x80
[  204.939519][    C4]  ? kmem_cache_free+0x10b/0x520
[  204.945753][    C4]  __kasan_slab_free+0x110/0x140
[  204.952047][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  204.959530][    C4]  ? __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  204.967933][    C4]  kmem_cache_free+0x10b/0x520
[  204.974157][    C4]  ? kfree_skbmem+0x9a/0x140
[  204.979557][    C4]  ? __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  204.992011][    C4]  kfree_skbmem+0x9a/0x140
[  204.997927][    C4]  kfree_skb+0x10d/0x240
[  205.003942][    C4] __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  205.014001][    C4]  ? ret_from_fork+0x22/0x30
[  205.022103][    C4]  ? generic_xdp_tx+0x4c0/0x4c0
[  205.031111][    C4]  ? kasan_save_stack+0x42/0x60
[  205.039632][    C4]  ? kasan_save_stack+0x23/0x60
[  205.047171][    C4]  ? __kasan_slab_alloc+0x68/0x80
[  205.056057][    C4]  ? kmem_cache_alloc_node+0x242/0x380
[  205.072434][    C4]  ? __alloc_skb+0x156/0x280
[  205.083823][    C4]  ? __netdev_alloc_skb+0x46/0x320
[  205.097450][    C4]  ? xennet_alloc_rx_buffers+0x237/0xae0
[  205.112375][    C4]  ? xennet_poll+0x1e8b/0x3c80
[  205.122121][    C4]  ? __napi_poll+0xb2/0x4c0
[  205.130540][    C4]  ? net_rx_action+0x2d7/0xa20
[  205.139272][    C4]  ? __do_softirq+0x1cd/0x66d
[  205.148547][    C4]  ? run_ksoftirqd+0x2b/0x40
[  205.163313][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  205.176671][    C4]  ? kthread+0x32d/0x400
[  205.187660][    C4]  ? ret_from_fork+0x22/0x30
[  205.196351][    C4]  ? get_partial_node.part.0+0x116/0x300
[  205.205474][    C4]  __netif_receive_skb_list_core+0x316/0xa20
[  205.215499][    C4]  ? __netif_receive_skb_list_core+0x316/0xa20
[  205.225547][    C4]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
[  205.236442][    C4]  ? __kasan_check_read+0x11/0x20
[  205.244359][    C4]  ? lock_acquire+0x4b/0x260
[  205.251829][    C4] netif_receive_skb_list_internal+0x616/0xd80
[  205.268504][    C4]  ? __kasan_check_write+0x14/0x20
[  205.282183][    C4]  ? __netif_receive_skb_list_core+0xa20/0xa20
[  205.296254][    C4]  ? __alloc_skb+0xce/0x280
[  205.304164][    C4]  ? gnttab_grant_foreign_access_ref+0x50/0x80
[  205.315892][    C4]  ? xennet_alloc_rx_buffers+0x15e/0xae0
[  205.323890][    C4]  napi_complete_done+0x189/0x600
[  205.330378][    C4]  xennet_poll+0x2447/0x3c80
[  205.336781][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  205.342822][    C4]  ? kasan_set_track+0x20/0x40
[  205.348360][    C4]  ? kasan_set_free_info+0x24/0x40
[  205.355670][    C4]  ? __kasan_slab_free+0xf1/0x140
[  205.362149][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  205.369053][    C4]  ? kfree+0xd7/0x560
[  205.375028][    C4]  ? skb_release_data+0x41c/0x520
[  205.380899][    C4]  ? __kfree_skb_defer+0x45/0x60
[  205.387383][    C4]  ? net_tx_action+0x1d9/0x860
[  205.393808][    C4]  ? __do_softirq+0x1cd/0x66d
[  205.399671][    C4]  ? run_ksoftirqd+0x2b/0x40
[  205.406455][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  205.414000][    C4]  ? kthread+0x32d/0x400
[  205.420426][    C4]  ? ret_from_fork+0x22/0x30
[  205.428156][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  205.435256][    C4]  ? run_timer_softirq+0x100/0x100
[  205.443322][    C4]  ? __kasan_check_read+0x11/0x20
[  205.454004][    C4]  ? lock_release+0xa3/0x820
[  205.467919][    C4]  ? verify_cpu+0x100/0x100
[  205.479146][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  205.493467][    C4]  __napi_poll+0xb2/0x4c0
[  205.503502][    C4]  ? kfree+0xd7/0x560
[  205.509924][    C4]  net_rx_action+0x2d7/0xa20
[  205.517693][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  205.526828][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  205.537216][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  205.545459][    C4]  ? net_tx_action+0x1d9/0x860
[  205.554201][    C4]  __do_softirq+0x1cd/0x66d
[  205.561493][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  205.573580][    C4]  run_ksoftirqd+0x2b/0x40
[  205.581255][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  205.590443][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  205.601743][    C4]  ? __kthread_parkme+0x8d/0x120
[  205.609458][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  205.619228][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  205.629418][    C4]  kthread+0x32d/0x400
[  205.637919][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  205.648072][    C4]  ret_from_fork+0x22/0x30
[  205.658024][    C4] ---[ end trace 3841665df6b692d1 ]---
[  205.671039][    C4] ------------[ cut here ]------------
[  205.685394][    C4] WARNING: CPU: 4 PID: 38 at kernel/stacktrace.c:28 
stack_trace_print+0xf/0x40
[  205.704998][    C4] Modules linked in: xen_front_pgdir_shbuf 
xen_scsifront snd_hda_codec_hdmi snd_hda_intel snd_intel_dspcfg 
snd_hda_codec snd_hda_core snd_hwdep snd_pcm snd_timer snd soundcore 
hid_generic usbhid hid xen_kbdfront intel_rapl_msr atkbd 
intel_rapl_common amdgpu drm_ttm_helper ttm gpu_sched xhci_pci xhci_hcd 
usbcore [last unloaded: usbip_core]
[  205.754802][    C4] CPU: 4 PID: 38 Comm: ksoftirqd/4 Tainted: G    
B   W         5.13.0-rc6-x86_64 #1
[  205.768683][    C4] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  205.779478][    C4] RIP: 0010:stack_trace_print+0xf/0x40
[  205.787792][    C4] Code: 48 8b 55 f0 65 48 2b 14 25 28 00 00 00 75 
06 48 8b 5d f8 c9 c3 e8 e1 3e 84 02 90 0f 1f 44 00 00 48 85 ff 74 05 85 
f6 75 04 c3 <0f> 0b c3 55 48 89 e5 41 56 41 55 41 54 53 e9 66 c8 71 02 
66 66 2e
[  205.819850][    C4] RSP: 0018:ffffc900002df220 EFLAGS: 00010046
[  205.833238][    C4] RAX: 0000000000000000 RBX: ffff8881239692c8 RCX: 
0000000000000000
[  205.850669][    C4] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 
0000000000000000
[  205.871680][    C4] RBP: ffffc900002df230 R08: 0000000000000001 R09: 
ffff8884d3a2091b
[  205.886006][    C4] R10: ffffed109a744123 R11: 646e692062616c73 R12: 
ffff8881239692c0
[  205.897677][    C4] R13: ffffea00048e5a00 R14: ffff8881239692c0 R15: 
ffff888123969398
[  205.909911][    C4] FS:  0000000000000000(0000) 
GS:ffff8884d3a00000(0000) knlGS:0000000000000000
[  205.923372][    C4] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  205.933416][    C4] CR2: 00007f0f44da7948 CR3: 0000000004e2a003 CR4: 
00000000001706e0
[  205.946764][    C4] Call Trace:
[  205.951903][    C4]  ? print_stack+0x1b/0x1d
[  205.958813][    C4]  print_track+0x22/0x33
[  205.964776][    C4] 
print_address_description.constprop.0.cold+0x3c/0x179
[  205.975411][    C4]  ? kmem_cache_free+0x10b/0x520
[  205.982200][    C4]  kasan_report_invalid_free+0x56/0x80
[  205.990264][    C4]  ? kmem_cache_free+0x10b/0x520
[  205.996296][    C4]  __kasan_slab_free+0x110/0x140
[  206.004025][    C4]  slab_free_freelist_hook+0x8c/0x1c0
[  206.012567][    C4]  ? __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  206.023774][    C4]  kmem_cache_free+0x10b/0x520
[  206.030258][    C4]  ? kfree_skbmem+0x9a/0x140
[  206.038175][    C4]  ? __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  206.047834][    C4]  kfree_skbmem+0x9a/0x140
[  206.055121][    C4]  kfree_skb+0x10d/0x240
[  206.060109][    C4] __netif_receive_skb_core.constprop.0+0x42d/0x31c0
[  206.068046][    C4]  ? ret_from_fork+0x22/0x30
[  206.073507][    C4]  ? generic_xdp_tx+0x4c0/0x4c0
[  206.079362][    C4]  ? kasan_save_stack+0x42/0x60
[  206.085534][    C4]  ? kasan_save_stack+0x23/0x60
[  206.091558][    C4]  ? __kasan_slab_alloc+0x68/0x80
[  206.098262][    C4]  ? kmem_cache_alloc_node+0x242/0x380
[  206.106001][    C4]  ? __alloc_skb+0x156/0x280
[  206.112267][    C4]  ? __netdev_alloc_skb+0x46/0x320
[  206.120627][    C4]  ? xennet_alloc_rx_buffers+0x237/0xae0
[  206.129599][    C4]  ? xennet_poll+0x1e8b/0x3c80
[  206.137721][    C4]  ? __napi_poll+0xb2/0x4c0
[  206.145399][    C4]  ? net_rx_action+0x2d7/0xa20
[  206.151448][    C4]  ? __do_softirq+0x1cd/0x66d
[  206.157540][    C4]  ? run_ksoftirqd+0x2b/0x40
[  206.163171][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  206.169456][    C4]  ? kthread+0x32d/0x400
[  206.175006][    C4]  ? ret_from_fork+0x22/0x30
[  206.180549][    C4]  ? get_partial_node.part.0+0x116/0x300
[  206.190952][    C4]  __netif_receive_skb_list_core+0x316/0xa20
[  206.199112][    C4]  ? __netif_receive_skb_list_core+0x316/0xa20
[  206.210534][    C4]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
[  206.222538][    C4]  ? __kasan_check_read+0x11/0x20
[  206.230892][    C4]  ? lock_acquire+0x4b/0x260
[  206.239928][    C4] netif_receive_skb_list_internal+0x616/0xd80
[  206.248858][    C4]  ? __kasan_check_write+0x14/0x20
[  206.255261][    C4]  ? __netif_receive_skb_list_core+0xa20/0xa20
[  206.262582][    C4]  ? __alloc_skb+0xce/0x280
[  206.268089][    C4]  ? gnttab_grant_foreign_access_ref+0x50/0x80
[  206.275346][    C4]  ? xennet_alloc_rx_buffers+0x15e/0xae0
[  206.281970][    C4]  napi_complete_done+0x189/0x600
[  206.288447][    C4]  xennet_poll+0x2447/0x3c80
[  206.293679][    C4]  ? xennet_xdp+0x7e0/0x7e0
[  206.299198][    C4]  ? kasan_set_track+0x20/0x40
[  206.305406][    C4]  ? kasan_set_free_info+0x24/0x40
[  206.311715][    C4]  ? __kasan_slab_free+0xf1/0x140
[  206.317609][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  206.324540][    C4]  ? kfree+0xd7/0x560
[  206.329432][    C4]  ? skb_release_data+0x41c/0x520
[  206.335534][    C4]  ? __kfree_skb_defer+0x45/0x60
[  206.341532][    C4]  ? net_tx_action+0x1d9/0x860
[  206.347102][    C4]  ? __do_softirq+0x1cd/0x66d
[  206.352695][    C4]  ? run_ksoftirqd+0x2b/0x40
[  206.358165][    C4]  ? smpboot_thread_fn+0x2fb/0x6e0
[  206.364124][    C4]  ? kthread+0x32d/0x400
[  206.370295][    C4]  ? ret_from_fork+0x22/0x30
[  206.377466][    C4]  ? lock_downgrade+0x7e0/0x7e0
[  206.384708][    C4]  ? run_timer_softirq+0x100/0x100
[  206.394604][    C4]  ? __kasan_check_read+0x11/0x20
[  206.402177][    C4]  ? lock_release+0xa3/0x820
[  206.410652][    C4]  ? verify_cpu+0x100/0x100
[  206.416971][    C4]  ? slab_free_freelist_hook+0x8c/0x1c0
[  206.424555][    C4]  __napi_poll+0xb2/0x4c0
[  206.429893][    C4]  ? kfree+0xd7/0x560
[  206.435174][    C4]  net_rx_action+0x2d7/0xa20
[  206.441688][    C4]  ? napi_threaded_poll+0x2c0/0x2c0
[  206.448184][    C4]  ? __kasan_poison_object_data+0x23/0x40
[  206.455769][    C4]  ? napi_skb_cache_put+0x3b/0x160
[  206.463011][    C4]  ? net_tx_action+0x1d9/0x860
[  206.468894][    C4]  __do_softirq+0x1cd/0x66d
[  206.475980][    C4]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  206.483157][    C4]  run_ksoftirqd+0x2b/0x40
[  206.489319][    C4]  smpboot_thread_fn+0x2fb/0x6e0
[  206.496891][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  206.509007][    C4]  ? __kthread_parkme+0x8d/0x120
[  206.516487][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  206.528201][    C4]  ? smpboot_register_percpu_thread+0x360/0x360
[  206.537820][    C4]  kthread+0x32d/0x400
[  206.543920][    C4]  ? __kthread_bind_mask+0xa0/0xa0
[  206.551009][    C4]  ret_from_fork+0x22/0x30
[  206.557448][    C4] ---[ end trace 3841665df6b692d2 ]---
[  206.565734][    C4]
[  206.573168][    C4] The buggy address belongs to the object at 
ffff8881239692c0
[  206.573168][    C4]  which belongs to the cache skbuff_head_cache of 
size 216
[  206.605429][    C4] The buggy address is located 0 bytes inside of
[  206.605429][    C4]  216-byte region [ffff8881239692c0, 
ffff888123969398)
[  206.628957][    C4] The buggy address belongs to the page:
[  206.638768][    C4] page:00000000ecb5bb98 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x123968
[  206.654438][    C4] head:00000000ecb5bb98 order:1 compound_mapcount:0
[  206.662760][    C4] memcg:ffff888136ceca01
[  206.667965][    C4] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  206.677805][    C4] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  206.689429][    C4] raw: 0000000000000000 0000000000190019 
00000001ffffffff ffff888136ceca01
[  206.700611][    C4] page dumped because: kasan: bad access detected
[  206.711046][    C4]
[  206.714637][    C4] Memory state around the buggy address:
[  206.723667][    C4]  ffff888123969180: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  206.736048][    C4]  ffff888123969200: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  206.754852][    C4] >ffff888123969280: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  206.775194][    C4] ^
[  206.790116][    C4]  ffff888123969300: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  206.804612][    C4]  ffff888123969380: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  206.814985][    C4] 
==================================================================
[  206.826314][ T2887] 
==================================================================
[  206.840778][ T2887] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
m*^[[0;1;31m*^[[0m[  206.859279][ T2887]
[  206.867326][ T2887] CPU: 3 PID: 2887 Comm: kworker/3:3 Tainted: G    
B   W         5.13.0-rc6-x86_64 #1
^[[0;31m*^[[0m] (1[  206.886178][ T2887] Hardware name: Xen HVM domU, BIOS 
4.15.1-pre 06/12/2021
[  206.900235][ T2887] Workqueue: events delayed_fput
  of 2) A stop jo[  206.909632][ T2887] Call Trace:
b is running for[  206.916561][ T2887]  dump_stack+0xa1/0xd3
[  206.926338][ T2887] print_address_description.constprop.0+0x1d/0x140
  … 11 of user [  206.937917][ T2887]  ? kfree+0xd7/0x560
[  206.946838][ T2887]  kasan_report_invalid_free+0x56/0x80
hakon (32s / 1mi[  206.963194][ T2887]  ? kfree+0xd7/0x560
n 29s)
[  206.975693][ T2887]  __kasan_slab_free+0x110/0x140
[  206.986639][ T2887]  slab_free_freelist_hook+0x8c/0x1c0
[  206.997208][ T2887]  kfree+0xd7/0x560
[  207.003641][ T2887]  ? skb_release_data+0x41c/0x520
[  207.012515][ T2887]  ? free_unref_page+0x145/0x1e0
[  207.012533][ T2887]  skb_release_data+0x41c/0x520
[  207.012542][ T2887]  ? skb_rbtree_purge+0x74/0xa0
[  207.012548][ T2887]  kfree_skb+0x105/0x240
[  207.012552][ T2887]  skb_rbtree_purge+0x74/0xa0
[  207.012557][ T2887]  tcp_v4_destroy_sock+0xaf/0x5a0
[  207.012565][ T2887]  inet_csk_destroy_sock+0x16a/0x300
^[M ^[[K[    ^[[0;3[  207.012570][ T2887]  __tcp_close+0xaa4/0xf60
[  207.012576][ T2887]  tcp_close+0x25/0xa0
1m*^[[0;1;31m*^[[0[  207.076522][ T2887]  inet_release+0x104/0x240
[  207.085117][ T2887]  __sock_release+0xcc/0x280
m] (1 of 2) A st[  207.092466][ T2887]  sock_close+0x18/0x20
[  207.100508][ T2887]  __fput+0x1b7/0x780
op job is runnin[  207.106611][ T2887]  delayed_fput+0x54/0x80
[  207.114453][ T2887]  process_one_work+0x801/0x1360
g for … 11 of [  207.122417][ T2887]  ? pwq_dec_nr_in_flight+0x300/0x300
[  207.135671][ T2887]  ? do_raw_spin_lock+0x13e/0x280
user hakon (35s [  207.151167][ T2887]  ? __kasan_check_read+0x11/0x20
[  207.173220][ T2887]  ? lock_acquire+0x4b/0x260
/ 1min 29s)
[  207.190651][ T2887]  worker_thread+0x54f/0xf40
[  207.212411][ T2887]  ? process_one_work+0x1360/0x1360
[  207.226712][ T2887]  kthread+0x32d/0x400
[  207.234266][ T2887]  ? __kthread_bind_mask+0xa0/0xa0
[  207.243513][ T2887]  ret_from_fork+0x22/0x30
[  207.251578][ T2887]
[  207.255697][ T2887] Allocated by task 0:
[  207.263882][ T2887] (stack is not available)
[  207.271761][ T2887]
[  207.276634][ T2887] Freed by task 0:
[  207.283017][ T2887]  kasan_save_stack+0x23/0x60
[  207.290966][ T2887]  kasan_set_track+0x20/0x40
[  207.297224][ T2887]  kasan_set_free_info+0x24/0x40
[  207.303949][ T2887]  __kasan_slab_free+0xf1/0x140
[  207.311016][ T2887]  slab_free_freelist_hook+0x8c/0x1c0
[  207.318415][ T2887]  kfree+0xd7/0x560
[  207.323738][ T2887]  skb_release_data+0x41c/0x520
[  207.330683][ T2887]  kfree_skb+0x105/0x240
[  207.336971][ T2887]  xennet_poll+0x1ab2/0x3c80
[  207.343287][ T2887]  __napi_poll+0xb2/0x4c0
[  207.348569][ T2887]  net_rx_action+0x2d7/0xa20
[  207.356261][ T2887]  __do_softirq+0x1cd/0x66d
[  207.363552][ T2887]
[  207.367077][ T2887] The buggy address belongs to the object at 
ffff888110428800
[  207.367077][ T2887]  which belongs to the cache kmalloc-1k of size 1024
[  207.397251][ T2887] The buggy address is located 0 bytes inside of
[  207.397251][ T2887]  1024-byte region [ffff888110428800, 
ffff888110428c00)
[  207.418402][ T2887] The buggy address belongs to the page:
[  207.425555][ T2887] page:00000000fb9805c0 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x110428
[  207.439438][ T2887] head:00000000fb9805c0 order:3 compound_mapcount:0 
compound_pincount:0
[  207.450995][ T2887] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  207.462554][ T2887] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  207.476170][ T2887] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  207.491631][ T2887] page dumped because: kasan: bad access detected
[  207.501562][ T2887]
[  207.505434][ T2887] Memory state around the buggy address:
[  207.513976][ T2887]  ffff888110428700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  207.529172][ T2887]  ffff888110428780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  207.545443][ T2887] >ffff888110428800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  207.557475][ T2887]                    ^
[  207.565183][ T2887]  ffff888110428880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  207.589724][ T2887]  ffff888110428900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  207.612955][ T2887] 
==================================================================
[  207.629370][ T2887] 
==================================================================
[  207.646407][ T2887] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  207.660545][ T2887]
[  207.663729][ T2887] CPU: 3 PID: 2887 Comm: kworker/3:3 Tainted: G    
B   W         5.13.0-rc6-x86_64 #1
[  207.677685][ T2887] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  207.688497][ T2887] Workqueue: events delayed_fput
[  207.696352][ T2887] Call Trace:
[  207.702105][ T2887]  dump_stack+0xa1/0xd3
[  207.708960][ T2887] print_address_description.constprop.0+0x1d/0x140
[  207.719059][ T2887]  ? kmem_cache_free+0x10b/0x520
[  207.727435][ T2887]  kasan_report_invalid_free+0x56/0x80
[  207.735863][ T2887]  ? kmem_cache_free+0x10b/0x520
[  207.743762][ T2887]  __kasan_slab_free+0x110/0x140
[  207.753399][ T2887]  slab_free_freelist_hook+0x8c/0x1c0
[  207.769581][ T2887]  ? skb_rbtree_purge+0x74/0xa0
[  207.787841][ T2887]  kmem_cache_free+0x10b/0x520
[  207.802480][ T2887]  ? kfree_skbmem+0x9a/0x140
[  207.813977][ T2887]  ? skb_rbtree_purge+0x74/0xa0
[  207.826233][ T2887]  kfree_skbmem+0x9a/0x140
[  207.832977][ T2887]  kfree_skb+0x10d/0x240
[  207.840241][ T2887]  skb_rbtree_purge+0x74/0xa0
[  207.847185][ T2887]  tcp_v4_destroy_sock+0xaf/0x5a0
[  207.855111][ T2887]  inet_csk_destroy_sock+0x16a/0x300
[  207.862743][ T2887]  __tcp_close+0xaa4/0xf60
[  207.869278][ T2887]  tcp_close+0x25/0xa0
[  207.875585][ T2887]  inet_release+0x104/0x240
[  207.882238][ T2887]  __sock_release+0xcc/0x280
[  207.891526][ T2887]  sock_close+0x18/0x20
[  207.899190][ T2887]  __fput+0x1b7/0x780
[  207.907568][ T2887]  delayed_fput+0x54/0x80
[  207.916222][ T2887]  process_one_work+0x801/0x1360
[  207.927573][ T2887]  ? pwq_dec_nr_in_flight+0x300/0x300
[  207.938854][ T2887]  ? do_raw_spin_lock+0x13e/0x280
[  207.948172][ T2887]  ? __kasan_check_read+0x11/0x20
[  207.959240][ T2887]  ? lock_acquire+0x4b/0x260
[  207.967970][ T2887]  worker_thread+0x54f/0xf40
[  207.978365][ T2887]  ? process_one_work+0x1360/0x1360
[  207.987930][ T2887]  kthread+0x32d/0x400
[  207.996026][ T2887]  ? __kthread_bind_mask+0xa0/0xa0
[  208.005603][ T2887]  ret_from_fork+0x22/0x30
[  208.012446][ T2887]
[  208.015750][ T2887] Allocated by task 147:
[  208.022479][ T2887]  kasan_save_stack+0x23/0x60
[  208.029369][ T2887]  __kasan_slab_alloc+0x68/0x80
[  208.035575][ T2887]  kmem_cache_alloc_node+0x242/0x380
[  208.042207][ T2887]  __alloc_skb+0x156/0x280
[  208.049395][ T2887]  __netdev_alloc_skb+0x46/0x320
[  208.059450][ T2887]  xennet_alloc_rx_buffers+0x237/0xae0
[  208.070396][ T2887]  netback_changed+0x1c9a/0x28a0
[  208.080144][ T2887]  xenbus_otherend_changed+0x140/0x260
[  208.094503][ T2887]  backend_changed+0x13/0x20
[  208.105084][ T2887]  xenwatch_thread+0x224/0x480
[  208.113857][ T2887]  kthread+0x32d/0x400
[  208.122116][ T2887]  ret_from_fork+0x22/0x30
[  208.129759][ T2887]
[  208.133534][ T2887] Freed by task 0:
[  208.140881][ T2887] (stack is not available)
[  208.148237][ T2887]
[  208.156239][ T2887] The buggy address belongs to the object at 
ffff888110414280
[  208.156239][ T2887]  which belongs to the cache skbuff_head_cache of 
size 216
[  208.198610][ T2887] The buggy address is located 0 bytes inside of
[  208.198610][ T2887]  216-byte region [ffff888110414280, 
ffff888110414358)
[  208.226974][ T2887] The buggy address belongs to the page:
[  208.235679][ T2887] page:0000000079160a0d refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x110414
[  208.252583][ T2887] head:0000000079160a0d order:1 compound_mapcount:0
[  208.262706][ T2887] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  208.276446][ T2887] raw: 02fffc0000010200 ffffea0004411d00 
0000000a0000000a ffff8881002a3e00
[  208.293310][ T2887] raw: 0000000000000000 0000000000190019 
00000001ffffffff 0000000000000000
[  208.308186][ T2887] page dumped because: kasan: bad access detected
[  208.321613][ T2887]
[  208.325986][ T2887] Memory state around the buggy address:
[  208.335481][ T2887]  ffff888110414180: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  208.354158][ T2887]  ffff888110414200: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  208.371078][ T2887] >ffff888110414280: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  208.391859][ T2887]                    ^
[  208.405309][ T2887]  ffff888110414300: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  208.419984][ T2887]  ffff888110414380: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  208.435515][ T2887] 
==================================================================
[  208.449571][    C0] 
==================================================================
[  208.464302][    C0] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  208.476236][    C0]
[  208.479456][    C0] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G B   
W         5.13.0-rc6-x86_64 #1
[  208.496737][    C0] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  208.509194][    C0] Call Trace:
[  208.515282][    C0]  <IRQ>
[  208.521392][    C0]  dump_stack+0xa1/0xd3
[  208.529263][    C0] print_address_description.constprop.0+0x1d/0x140
[  208.542219][    C0]  ? kfree+0xd7/0x560
[  208.551125][    C0]  kasan_report_invalid_free+0x56/0x80
[  208.566871][    C0]  ? kfree+0xd7/0x560
[  208.577076][    C0]  __kasan_slab_free+0x110/0x140
[  208.591366][    C0]  slab_free_freelist_hook+0x8c/0x1c0
[  208.603354][    C0]  kfree+0xd7/0x560
[  208.610395][    C0]  ? skb_release_data+0x41c/0x520
[  208.618380][    C0]  ? __kasan_check_read+0x11/0x20
[  208.626479][    C0]  skb_release_data+0x41c/0x520
[  208.636025][    C0]  ? xennet_poll+0x15d9/0x3c80
[  208.645979][    C0]  ? xennet_poll+0x15d9/0x3c80
[  208.655275][    C0]  kfree_skb+0x105/0x240
[  208.662297][    C0]  xennet_poll+0x15d9/0x3c80
[  208.670795][    C0]  ? xennet_xdp+0x7e0/0x7e0
[  208.678436][    C0]  ? __kasan_check_read+0x11/0x20
[  208.688315][    C0]  ? __raise_softirq_irqoff+0x36/0xe0
[  208.698421][    C0]  ? __napi_schedule+0x1b5/0x260
[  208.708356][    C0]  ? __kasan_check_read+0x11/0x20
[  208.716840][    C0]  ? lock_release+0xa3/0x820
[  208.726527][    C0]  ? do_raw_spin_lock+0x13e/0x280
[  208.739288][    C0]  ? handle_edge_irq+0x35e/0xb60
[  208.751543][    C0]  ? handle_irq_for_port+0x192/0x4c0
[  208.764200][    C0]  ? __kasan_check_write+0x14/0x20
[  208.777943][    C0]  __napi_poll+0xb2/0x4c0
[  208.787877][    C0]  net_rx_action+0x2d7/0xa20
[  208.797957][    C0]  ? napi_threaded_poll+0x2c0/0x2c0
[  208.807335][    C0]  ? __kasan_check_read+0x11/0x20
[  208.815899][    C0]  ? lock_acquire+0x4b/0x260
[  208.824622][    C0]  ? __kasan_check_write+0x14/0x20
[  208.832709][    C0]  ? _raw_read_unlock+0x23/0x40
[  208.842626][    C0]  ? __xen_evtchn_do_upcall+0x107/0x180
[  208.851806][    C0]  __do_softirq+0x1cd/0x66d
[  208.859903][    C0]  irq_exit_rcu+0x12c/0x1c0
[  208.867469][    C0]  sysvec_xen_hvm_callback+0x79/0xa0
[  208.877306][    C0]  </IRQ>
[  208.882737][    C0]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  208.899300][    C0] RIP: 0010:native_safe_halt+0xe/0x20
[  208.911350][    C0] Code: cc cc cc cc cc cc cc cc cc cc cc cc cc cc 
cc cc cc cc cc cc cc cc cc cc cc cc cc cc e9 07 00 00 00 0f 00 2d b4 f4 
49 00 fb f4 <c3> 66 66 2e 0f 1f 84 00 00 00 00 00 66 0f 1f 44 00 00 e9 
07 00 00
[  208.964123][    C0] RSP: 0018:ffffffff84e07ce8 EFLAGS: 00000246
[  208.982138][    C0] RAX: 0000000000004000 RBX: ffff88810122d865 RCX: 
ffffffff83dd94c2
[  208.999803][    C0] RDX: 1ffffffff09c73d0 RSI: 0000000000000008 RDI: 
ffffffff84e39e80
[  209.015915][    C0] RBP: ffffffff84e07cf8 R08: 0000000000000000 R09: 
ffffffff84e39e87
[  209.031761][    C0] R10: fffffbfff09c73d0 R11: 0000000000000000 R12: 
ffffffff84e39e80
[  209.046682][    C0] R13: ffff88810a146000 R14: ffff88810122d864 R15: 
ffffffff8576a6c0
[  209.061586][    C0]  ? acpi_idle_do_entry+0x142/0x1e0
[  209.071461][    C0]  ? acpi_idle_do_entry+0x166/0x1e0
[  209.082887][    C0]  acpi_idle_enter+0x2ca/0x500
[  209.093822][    C0]  ? __kasan_check_write+0x14/0x20
[  209.105379][    C0]  cpuidle_enter_state+0x17c/0xe00
[  209.115312][    C0]  cpuidle_enter+0x4f/0xa0
[  209.128514][    C0]  do_idle+0x407/0x5c0
[  209.145729][    C0]  ? arch_cpu_idle_exit+0x60/0x60
[  209.166679][    C0]  cpu_startup_entry+0x20/0x40
[  209.183899][    C0]  rest_init+0x152/0x187
[  209.194747][    C0]  arch_call_rest_init+0xe/0x1b
[  209.204633][    C0]  start_kernel+0x3be/0x3db
[  209.213562][    C0]  x86_64_start_reservations+0x29/0x2b
[  209.224637][    C0]  x86_64_start_kernel+0x72/0x76
[  209.235052][    C0]  secondary_startup_64_no_verify+0xb0/0xbb
[  209.246555][    C0]
[  209.252426][    C0] Allocated by task 0:
[  209.263944][    C0] (stack is not available)
[  209.274194][    C0]
[  209.278531][    C0] Freed by task 0:
[  209.285685][    C0]  kasan_save_stack+0x23/0x60
[  209.293496][    C0]  kasan_set_track+0x20/0x40
[  209.302369][    C0]  kasan_set_free_info+0x24/0x40
[  209.313356][    C0]  __kasan_slab_free+0xf1/0x140
[  209.328610][    C0]  slab_free_freelist_hook+0x8c/0x1c0
[  209.345457][    C0]  kfree+0xd7/0x560
[  209.355449][    C0]  skb_release_data+0x41c/0x520
[  209.366346][    C0]  kfree_skb+0x105/0x240
[  209.376835][    C0]  xennet_poll+0x1ab2/0x3c80
[  209.384617][    C0]  __napi_poll+0xb2/0x4c0
[  209.392353][    C0]  net_rx_action+0x2d7/0xa20
[  209.392366][    C0]  __do_softirq+0x1cd/0x66d
[  209.392371][    C0]
[  209.392373][    C0] The buggy address belongs to the object at 
ffff888134b70800
[  209.392373][    C0]  which belongs to the cache kmalloc-1k of size 1024
[  209.392378][    C0] The buggy address is located 0 bytes inside of
[  209.392378][    C0]  1024-byte region [ffff888134b70800, 
ffff888134b70c00)
[  209.392382][    C0] The buggy address belongs to the page:
[  209.392385][    C0] page:00000000027e9922 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x134b70
^[M ^[[K[     ^[[0;[  209.392391][    C0] head:00000000027e9922 order:3 
compound_mapcount:0 compound_pincount:0
[  209.392394][    C0] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
31m*^[[0m] (2 of [  209.392403][    C0] raw: 02fffc0000010200 
dead000000000100 dead000000000122 ffff888100042dc0
2) A stop job is[  209.392406][    C0] raw: 0000000000000000 
0000000000100010 00000001ffffffff 0000000000000000
[  209.392408][    C0] page dumped because: kasan: bad access detected
[  209.392410][    C0]
  running for …[  209.392411][    C0] Memory state around the buggy 
address:
[  209.392413][    C0]  ffff888134b70700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
t Display Manage[  209.392416][    C0]  ffff888134b70780: fc fc fc fc fc 
fc fc fc fc fc fc fc fc fc fc fc
[  209.392418][    C0] >ffff888134b70800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
r (38s / 1min 30[  209.392420][    C0]                    ^
[  209.392422][    C0]  ffff888134b70880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
s)
[  209.392424][    C0]  ffff888134b70900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  209.392427][    C0] 
==================================================================
[  209.392435][    C2] 
==================================================================
[  209.723211][    C2] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  209.735839][    C2]
[  209.739291][    C2] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G B   
W         5.13.0-rc6-x86_64 #1
[  209.753237][    C2] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  209.763595][    C2] Call Trace:
[  209.768509][    C2]  <IRQ>
[  209.774166][    C2]  dump_stack+0xa1/0xd3
[  209.780668][    C2] print_address_description.constprop.0+0x1d/0x140
[  209.790619][    C2]  ? kfree+0xd7/0x560
[  209.796664][    C2]  kasan_report_invalid_free+0x56/0x80
[  209.805874][    C2]  ? kfree+0xd7/0x560
[  209.812209][    C2]  __kasan_slab_free+0x110/0x140
[  209.819732][    C2]  slab_free_freelist_hook+0x8c/0x1c0
[  209.827333][    C2]  kfree+0xd7/0x560
[  209.832693][    C2]  ? skb_release_data+0x41c/0x520
[  209.840455][    C2]  ? __kasan_check_read+0x11/0x20
[  209.847858][    C2]  skb_release_data+0x41c/0x520
[  209.856438][    C2]  ? xennet_poll+0x15d9/0x3c80
[  209.863296][    C2]  ? xennet_poll+0x15d9/0x3c80
[  209.872193][    C2]  kfree_skb+0x105/0x240
[  209.879332][    C2]  xennet_poll+0x15d9/0x3c80
[  209.886475][    C2]  ? xennet_xdp+0x7e0/0x7e0
[  209.886495][    C2]  ? __kasan_check_read+0x11/0x20
[  209.886506][    C2]  ? __raise_softirq_irqoff+0x36/0xe0
[  209.886517][    C2]  ? __napi_schedule+0x1b5/0x260
[  209.929053][    C2]  ? __kasan_check_read+0x11/0x20
^[M ^[[K[    ^[[0;3[  209.942487][    C2]  ? lock_release+0xa3/0x820
1m*^[[0;1;31m*^[[0[  209.954395][    C2]  ? do_raw_spin_lock+0x13e/0x280
m] (2 of 2) A st[  209.965557][    C2]  ? handle_edge_irq+0x35e/0xb60
[  209.977169][    C2]  ? handle_irq_for_port+0x192/0x4c0
op job is runnin[  209.986360][    C2]  ? __kasan_check_write+0x14/0x20
[  209.995306][    C2]  __napi_poll+0xb2/0x4c0
g for …t Displ[  210.000778][    C2]  net_rx_action+0x2d7/0xa20
ay Manager (38s [  210.009730][    C2]  ? napi_threaded_poll+0x2c0/0x2c0
[  210.019173][    C2]  ? __kasan_check_read+0x11/0x20
/ 1min 30s)
[  210.026064][    C2]  ? lock_acquire+0x4b/0x260
[  210.034041][    C2]  ? __kasan_check_write+0x14/0x20
[  210.041450][    C2]  ? _raw_read_unlock+0x23/0x40
[  210.047673][    C2]  ? __xen_evtchn_do_upcall+0x107/0x180
[  210.056466][    C2]  __do_softirq+0x1cd/0x66d
[  210.062785][    C2]  irq_exit_rcu+0x12c/0x1c0
[  210.069726][    C2]  sysvec_xen_hvm_callback+0x79/0xa0
[  210.078151][    C2]  </IRQ>
[  210.082531][    C2]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  210.091301][    C2] RIP: 0010:native_safe_halt+0xe/0x20
[  210.098756][    C2] Code: cc cc cc cc cc cc cc cc cc cc cc cc cc cc 
cc cc cc cc cc cc cc cc cc cc cc cc cc cc e9 07 00 00 00 0f 00 2d b4 f4 
49 00 fb f4 <c3> 66 66 2e 0f 1f 84 00 00 00 00 00 66 0f 1f 44 00 00 e9 
07 00 00
[  210.140907][    C2] RSP: 0018:ffffc90000127cf0 EFLAGS: 00000246
[  210.157122][    C2] RAX: 0000000000004000 RBX: ffff88810122b865 RCX: 
ffffffff83dd94c2
[  210.171291][    C2] RDX: 1ffff1102011ea50 RSI: 0000000000000008 RDI: 
ffff8881008f5280
[  210.185050][    C2] RBP: ffffc90000127d00 R08: 0000000000000000 R09: 
ffff8881008f5287
[  210.197207][    C2] R10: ffffed102011ea50 R11: 0000000000000000 R12: 
ffff8881008f5280
[  210.209698][    C2] R13: ffff88810a142000 R14: ffff88810122b864 R15: 
ffffffff8576a6c0
[  210.221749][    C2]  ? acpi_idle_do_entry+0x142/0x1e0
[  210.229396][    C2]  ? acpi_idle_do_entry+0x166/0x1e0
[  210.237494][    C2]  acpi_idle_enter+0x2ca/0x500
[  210.244663][    C2]  ? __kasan_check_write+0x14/0x20
[  210.253335][    C2]  cpuidle_enter_state+0x17c/0xe00
[  210.261603][    C2]  cpuidle_enter+0x4f/0xa0
[  210.269706][    C2]  do_idle+0x407/0x5c0
[  210.276449][    C2]  ? arch_cpu_idle_exit+0x60/0x60
[  210.285936][    C2]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  210.297273][    C2]  ? complete+0x5c/0x80
[  210.306846][    C2]  cpu_startup_entry+0x20/0x40
[  210.315490][    C2]  start_secondary+0x27f/0x360
[  210.325569][    C2]  ? set_cpu_sibling_map+0x2040/0x2040
[  210.335835][    C2]  secondary_startup_64_no_verify+0xb0/0xbb
[  210.345022][    C2]
[  210.348214][    C2] Allocated by task 0:
[  210.354275][    C2] (stack is not available)
[  210.360984][    C2]
[  210.364400][    C2] Freed by task 0:
[  210.370640][    C2]  kasan_save_stack+0x23/0x60
[  210.377930][    C2]  kasan_set_track+0x20/0x40
[  210.384664][    C2]  kasan_set_free_info+0x24/0x40
[  210.392901][    C2]  __kasan_slab_free+0xf1/0x140
[  210.392909][    C2]  slab_free_freelist_hook+0x8c/0x1c0
[  210.392913][    C2]  kfree+0xd7/0x560
[  210.392917][    C2]  skb_release_data+0x41c/0x520
[  210.392924][    C2]  kfree_skb+0x105/0x240
[  210.392928][    C2]  xennet_poll+0x1ab2/0x3c80
^[M ^[[K[   ^[[0;31[  210.436675][    C2]  __napi_poll+0xb2/0x4c0
m*^[[0;1;31m*^[[0m[  210.445183][    C2]  net_rx_action+0x2d7/0xa20
[  210.455633][    C2]  __do_softirq+0x1cd/0x66d
^[[0;31m*^[[0m] (2[  210.462739][    C2]
  of 2) A stop jo[  210.470757][    C2] The buggy address belongs to the 
object at ffff888125adc800
[  210.470757][    C2]  which belongs to the cache kmalloc-1k of size 1024
[  210.503650][    C2] The buggy address is located 0 bytes inside of
[  210.503650][    C2]  1024-byte region [ffff888125adc800, 
ffff888125adcc00)
b is running for[  210.528221][    C2] The buggy address belongs to the 
page:
  …t Display Ma[  210.539424][    C2] page:00000000bf52ba57 refcount:1 
mapcount:0 mapping:0000000000000000 index:0x0 pfn:0x125ad8
[  210.558012][    C2] head:00000000bf52ba57 order:3 compound_mapcount:0 
compound_pincount:0
nager (39s / 1mi[  210.574544][    C2] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
n 30s)
[  210.590226][    C2] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  210.604743][    C2] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  210.617840][    C2] page dumped because: kasan: bad access detected
[  210.627837][    C2]
[  210.631220][    C2] Memory state around the buggy address:
[  210.640094][    C2]  ffff888125adc700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  210.652858][    C2]  ffff888125adc780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  210.674645][    C2] >ffff888125adc800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  210.694027][    C2]                    ^
[  210.704353][    C2]  ffff888125adc880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  210.720622][    C2]  ffff888125adc900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  210.732779][    C2] 
==================================================================
[  210.746566][    C0] 
==================================================================
[  210.761375][    C0] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  210.761388][    C0]
[  210.761391][    C0] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G B   
W         5.13.0-rc6-x86_64 #1
[  210.761396][    C0] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  210.761399][    C0] Call Trace:
[  210.761401][    C0]  <IRQ>
[  210.761405][    C0]  dump_stack+0xa1/0xd3
^[M ^[[K[  ^[[0;31m[  210.761411][    C0] 
print_address_description.constprop.0+0x1d/0x140
[  210.761416][    C0]  ? kmem_cache_free+0x10b/0x520
*^[[0;1;31m*^[[0m^[[  210.761421][    C0] kasan_report_invalid_free+0x56/0x80
[  210.761426][    C0]  ? kmem_cache_free+0x10b/0x520
[0;31m* ^[[0m] (1[  210.874322][    C0] __kasan_slab_free+0x110/0x140
[  210.889200][    C0]  slab_free_freelist_hook+0x8c/0x1c0
  of 2) A stop jo[  210.904751][    C0]  ? xennet_poll+0x15d9/0x3c80
[  210.917858][    C0]  kmem_cache_free+0x10b/0x520
b is running for[  210.925862][    C0]  ? kfree_skbmem+0x9a/0x140
[  210.933250][    C0]  ? xennet_poll+0x15d9/0x3c80
  … 11 of user [  210.939639][    C0]  kfree_skbmem+0x9a/0x140
[  210.946523][    C0]  kfree_skb+0x10d/0x240
hakon (39s / 1mi[  210.953376][    C0]  xennet_poll+0x15d9/0x3c80
n 29s)
[  210.961463][    C0]  ? xennet_xdp+0x7e0/0x7e0
[  210.968085][    C0]  ? __kasan_check_read+0x11/0x20
[  210.974655][    C0]  ? __raise_softirq_irqoff+0x36/0xe0
[  210.981605][    C0]  ? __napi_schedule+0x1b5/0x260
[  210.987743][    C0]  ? __kasan_check_read+0x11/0x20
[  210.993625][    C0]  ? lock_release+0xa3/0x820
[  210.998840][    C0]  ? do_raw_spin_lock+0x13e/0x280
[  211.005792][    C0]  ? handle_edge_irq+0x35e/0xb60
[  211.012005][    C0]  ? handle_irq_for_port+0x192/0x4c0
[  211.018925][    C0]  ? __kasan_check_write+0x14/0x20
[  211.025343][    C0]  __napi_poll+0xb2/0x4c0
[  211.030615][    C0]  net_rx_action+0x2d7/0xa20
[  211.036506][    C0]  ? napi_threaded_poll+0x2c0/0x2c0
[  211.045235][    C0]  ? __kasan_check_read+0x11/0x20
[  211.056296][    C0]  ? lock_acquire+0x4b/0x260
[  211.066446][    C0]  ? __kasan_check_write+0x14/0x20
[  211.075910][    C0]  ? _raw_read_unlock+0x23/0x40
[  211.084589][    C0]  ? __xen_evtchn_do_upcall+0x107/0x180
[  211.097182][    C0]  __do_softirq+0x1cd/0x66d
[  211.106840][    C0]  irq_exit_rcu+0x12c/0x1c0
[  211.112859][    C0]  sysvec_xen_hvm_callback+0x79/0xa0
[  211.122834][    C0]  </IRQ>
[  211.129663][    C0]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  211.142050][    C0] RIP: 0010:native_safe_halt+0xe/0x20
[  211.142065][    C0] Code: cc cc cc cc cc cc cc cc cc cc cc cc cc cc 
cc cc cc cc cc cc cc cc cc cc cc cc cc cc e9 07 00 00 00 0f 00 2d b4 f4 
49 00 fb f4 <c3> 66 66 2e 0f 1f 84 00 00 00 00 00 66 0f 1f 44 00 00 e9 
07 00 00
[  211.142070][    C0] RSP: 0018:ffffffff84e07ce8 EFLAGS: 00000246
[  211.142076][    C0] RAX: 0000000000004000 RBX: ffff88810122d865 RCX: 
ffffffff83dd94c2
[  211.142079][    C0] RDX: 1ffffffff09c73d0 RSI: 0000000000000008 RDI: 
ffffffff84e39e80
[  211.142082][    C0] RBP: ffffffff84e07cf8 R08: 0000000000000000 R09: 
ffffffff84e39e87
[  211.142085][    C0] R10: fffffbfff09c73d0 R11: 0000000000000000 R12: 
ffffffff84e39e80
^[M ^[[K[ ^[[0;31m*[  211.142099][    C0] R13: ffff88810a146000 R14: 
ffff88810122d864 R15: ffffffff8576a6c0
[  211.142106][    C0]  ? acpi_idle_do_entry+0x142/0x1e0
^[[0;1;31m*^[[0m^[[[  211.308124][    C0]  ? acpi_idle_do_entry+0x166/0x1e0
0;31m*  ^[[0m] (1[  211.326171][    C0] acpi_idle_enter+0x2ca/0x500
[  211.336383][    C0]  ? __kasan_check_write+0x14/0x20
  of 2) A stop jo[  211.347603][    C0] cpuidle_enter_state+0x17c/0xe00
[  211.358971][    C0]  cpuidle_enter+0x4f/0xa0
b is running for[  211.368444][    C0]  do_idle+0x407/0x5c0
[  211.378416][    C0]  ? arch_cpu_idle_exit+0x60/0x60
  … 11 of user [  211.390845][    C0]  cpu_startup_entry+0x20/0x40
hakon (39s / 1mi[  211.401724][    C0]  rest_init+0x152/0x187
[  211.412281][    C0]  arch_call_rest_init+0xe/0x1b
n 29s)
[  211.420974][    C0]  start_kernel+0x3be/0x3db
[  211.429753][    C0]  x86_64_start_reservations+0x29/0x2b
[  211.439153][    C0]  x86_64_start_kernel+0x72/0x76
[  211.448251][    C0]  secondary_startup_64_no_verify+0xb0/0xbb
[  211.471472][    C0]
[  211.481961][    C0] Allocated by task 0:
[  211.493371][    C0]  kasan_save_stack+0x23/0x60
[  211.505202][    C0]  __kasan_slab_alloc+0x68/0x80
[  211.514553][    C0]  kmem_cache_alloc_node+0x242/0x380
[  211.526945][    C0]  __alloc_skb+0x156/0x280
[  211.534557][    C0]  __netdev_alloc_skb+0x46/0x320
[  211.543107][    C0]  xennet_alloc_rx_buffers+0x237/0xae0
[  211.552982][    C0]  xennet_poll+0x1e8b/0x3c80
[  211.560710][    C0]  __napi_poll+0xb2/0x4c0
[  211.567319][    C0]  net_rx_action+0x2d7/0xa20
[  211.575739][    C0]  __do_softirq+0x1cd/0x66d
[  211.582454][    C0]
[  211.587943][    C0] Freed by task 0:
[  211.597660][    C0] (stack is not available)
[  211.606923][    C0]
[  211.610236][    C0] The buggy address belongs to the object at 
ffff888125a90dc0
[  211.610236][    C0]  which belongs to the cache skbuff_head_cache of 
size 216
[  211.630373][    C0] The buggy address is located 0 bytes inside of
[  211.630373][    C0]  216-byte region [ffff888125a90dc0, 
ffff888125a90e98)
[  211.654078][    C0] The buggy address belongs to the page:
[  211.654085][    C0] page:0000000052c94be1 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x125a90
[  211.654094][    C0] head:0000000052c94be1 order:1 compound_mapcount:0
[  211.654097][    C0] memcg:ffff8881115b4401
[  211.654099][    C0] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  211.654108][    C0] raw: 02fffc0000010200 0000000000000000 
0000000c00000001 ffff8881002a3e00
[  211.654112][    C0] raw: 0000000000000000 0000000000190019 
00000001ffffffff ffff8881115b4401
^[M ^[[K[^[[0;31m*^[[  211.654113][    C0] page dumped because: kasan: bad 
access detected
[0;1;31m*^[[0m^[[0[  211.654116][    C0]
;31m*   ^[[0m] (1[  211.654117][    C0] Memory state around the buggy 
address:
[  211.654120][    C0]  ffff888125a90c80: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  211.654123][    C0]  ffff888125a90d00: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
  of 2) A stop jo[  211.654125][    C0] >ffff888125a90d80: fc fc fc fc 
fc fc fc fc fa fb fb fb fb fb fb fb
b is running for[  211.654127][ 
C0]                                            ^
[  211.654130][    C0]  ffff888125a90e00: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
  … 11 of user [  211.654133][    C0]  ffff888125a90e80: fb fb fb fc fc 
fc fc fc fc fc fc fc fc fc fc fc
[  211.654135][    C0] 
==================================================================
[  211.654175][    C2] 
==================================================================
hakon (39s / 1mi[  211.945630][    C2] BUG: KASAN: double-free or 
invalid-free in kmem_cache_free+0x10b/0x520
[  211.961624][    C2]
n 29s)
[  211.965593][    C2] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G B   
W         5.13.0-rc6-x86_64 #1
[  211.983256][    C2] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  211.995655][    C2] Call Trace:
[  212.000794][    C2]  <IRQ>
[  212.005346][    C2]  dump_stack+0xa1/0xd3
[  212.011845][    C2] print_address_description.constprop.0+0x1d/0x140
[  212.023189][    C2]  ? kmem_cache_free+0x10b/0x520
[  212.030709][    C2]  kasan_report_invalid_free+0x56/0x80
[  212.039717][    C2]  ? kmem_cache_free+0x10b/0x520
[  212.047575][    C2]  __kasan_slab_free+0x110/0x140
[  212.056328][    C2]  slab_free_freelist_hook+0x8c/0x1c0
[  212.065484][    C2]  ? xennet_poll+0x15d9/0x3c80
[  212.074590][    C2]  kmem_cache_free+0x10b/0x520
[  212.081702][    C2]  ? kfree_skbmem+0x9a/0x140
[  212.091997][    C2]  ? xennet_poll+0x15d9/0x3c80
[  212.105711][    C2]  kfree_skbmem+0x9a/0x140
[  212.114895][    C2]  kfree_skb+0x10d/0x240
[  212.121485][    C2]  xennet_poll+0x15d9/0x3c80
[  212.130639][    C2]  ? xennet_xdp+0x7e0/0x7e0
[  212.138735][    C2]  ? __kasan_check_read+0x11/0x20
[  212.138758][    C2]  ? __raise_softirq_irqoff+0x36/0xe0
[  212.138768][    C2]  ? __napi_schedule+0x1b5/0x260
[  212.138782][    C2]  ? __kasan_check_read+0x11/0x20
[  212.175834][    C2]  ? lock_release+0xa3/0x820
^[M ^[[K[^[[0;1;31m[  212.184431][    C2]  ? do_raw_spin_lock+0x13e/0x280
*^[[0m^[[0;31m*   [  212.194290][    C2]  ? handle_edge_irq+0x35e/0xb60
  ^[[0m] (2 of 2) [  212.204038][    C2]  ? handle_irq_for_port+0x192/0x4c0
[  212.215209][    C2]  ? __kasan_check_write+0x14/0x20
A stop job is ru[  212.223033][    C2]  __napi_poll+0xb2/0x4c0
[  212.231220][    C2]  net_rx_action+0x2d7/0xa20
nning for …t D[  212.240755][    C2]  ? napi_threaded_poll+0x2c0/0x2c0
isplay Manager ([  212.256030][    C2]  ? __kasan_check_read+0x11/0x20
[  212.274202][    C2]  ? lock_acquire+0x4b/0x260
41s / 1min 30s) [  212.288779][    C2]  ? __kasan_check_write+0x14/0x20

[  212.304377][    C2]  ? _raw_read_unlock+0x23/0x40
[  212.315612][    C2]  ? __xen_evtchn_do_upcall+0x107/0x180
[  212.325949][    C2]  __do_softirq+0x1cd/0x66d
[  212.332525][    C2]  irq_exit_rcu+0x12c/0x1c0
[  212.340302][    C2]  sysvec_xen_hvm_callback+0x79/0xa0
[  212.348774][    C2]  </IRQ>
[  212.354141][    C2]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  212.363985][    C2] RIP: 0010:native_safe_halt+0xe/0x20
[  212.373586][    C2] Code: cc cc cc cc cc cc cc cc cc cc cc cc cc cc 
cc cc cc cc cc cc cc cc cc cc cc cc cc cc e9 07 00 00 00 0f 00 2d b4 f4 
49 00 fb f4 <c3> 66 66 2e 0f 1f 84 00 00 00 00 00 66 0f 1f 44 00 00 e9 
07 00 00
[  212.407196][    C2] RSP: 0018:ffffc90000127cf0 EFLAGS: 00000246
[  212.417979][    C2] RAX: 0000000000004000 RBX: ffff88810122b865 RCX: 
ffffffff83dd94c2
[  212.431089][    C2] RDX: 1ffff1102011ea50 RSI: 0000000000000008 RDI: 
ffff8881008f5280
[  212.449669][    C2] RBP: ffffc90000127d00 R08: 0000000000000000 R09: 
ffff8881008f5287
[  212.472308][    C2] R10: ffffed102011ea50 R11: 0000000000000000 R12: 
ffff8881008f5280
[  212.492965][    C2] R13: ffff88810a142000 R14: ffff88810122b864 R15: 
ffffffff8576a6c0
[  212.510149][    C2]  ? acpi_idle_do_entry+0x142/0x1e0
[  212.519161][    C2]  ? acpi_idle_do_entry+0x166/0x1e0
[  212.527234][    C2]  acpi_idle_enter+0x2ca/0x500
[  212.535328][    C2]  ? __kasan_check_write+0x14/0x20
[  212.543623][    C2]  cpuidle_enter_state+0x17c/0xe00
[  212.552231][    C2]  cpuidle_enter+0x4f/0xa0
[  212.560965][    C2]  do_idle+0x407/0x5c0
[  212.567318][    C2]  ? arch_cpu_idle_exit+0x60/0x60
[  212.574826][    C2]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  212.582124][    C2]  ? complete+0x5c/0x80
[  212.589136][    C2]  cpu_startup_entry+0x20/0x40
[  212.597135][    C2]  start_secondary+0x27f/0x360
[  212.604838][    C2]  ? set_cpu_sibling_map+0x2040/0x2040
[  212.613401][    C2]  secondary_startup_64_no_verify+0xb0/0xbb
[  212.629384][    C2]
[  212.634899][    C2] Allocated by task 0:
[  212.645849][    C2]  kasan_save_stack+0x23/0x60
[  212.645876][    C2]  __kasan_slab_alloc+0x68/0x80
[  212.645880][    C2]  kmem_cache_alloc_node+0x242/0x380
[  212.645885][    C2]  __alloc_skb+0x156/0x280
[  212.645894][    C2]  __netdev_alloc_skb+0x46/0x320
[  212.645899][    C2]  xennet_alloc_rx_buffers+0x237/0xae0
[  212.645907][    C2]  xennet_poll+0x1e8b/0x3c80
^[M ^[[K[^[[0m^[[0;3[  212.645911][    C2]  __napi_poll+0xb2/0x4c0
[  212.645918][    C2]  net_rx_action+0x2d7/0xa20
1m*     ^[[0m] (2[  212.645921][    C2]  __do_softirq+0x1cd/0x66d
[  212.756834][    C2]
  of 2) A stop jo[  212.762513][    C2] Freed by task 0:
[  212.773864][    C2] (stack is not available)
b is running for[  212.783526][    C2]
[  212.791849][    C2] The buggy address belongs to the object at 
ffff888126662f00
[  212.791849][    C2]  which belongs to the cache skbuff_head_cache of 
size 216
  …t Display Ma[  212.828293][    C2] The buggy address is located 0 
bytes inside of
[  212.828293][    C2]  216-byte region [ffff888126662f00, 
ffff888126662fd8)
[  212.869431][    C2] The buggy address belongs to the page:
nager (41s / 1mi[  212.879568][    C2] page:00000000dd43c559 refcount:1 
mapcount:0 mapping:0000000000000000 index:0x0 pfn:0x126662
[  212.904761][    C2] head:00000000dd43c559 order:1 compound_mapcount:0
n 30s)
[  212.916950][    C2] memcg:ffff88811066a601
[  212.926878][    C2] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  212.941169][    C2] raw: 02fffc0000010200 0000000000000000 
0000000300000001 ffff8881002a3e00
[  212.954864][    C2] raw: 0000000000000000 0000000000190019 
00000001ffffffff ffff88811066a601
[  212.969455][    C2] page dumped because: kasan: bad access detected
[  212.979424][    C2]
[  212.983332][    C2] Memory state around the buggy address:
[  212.992570][    C2]  ffff888126662e00: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  213.011597][    C2]  ffff888126662e80: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  213.030020][    C2] >ffff888126662f00: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  213.047418][    C2]                    ^
[  213.056353][    C2]  ffff888126662f80: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  213.066534][    C2]  ffff888126663000: fc fc fc fc fc fc fc fc 00 00 
00 00 00 00 00 00
[  213.078057][    C2] 
==================================================================
[  213.089615][    C0] 
==================================================================
[  213.107373][    C0] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  213.119450][    C0]
[  213.125407][    C0] CPU: 0 PID: 12 Comm: ksoftirqd/0 Tainted: G    
B   W         5.13.0-rc6-x86_64 #1
[  213.150160][    C0] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  213.150167][    C0] Call Trace:
[  213.150174][    C0]  dump_stack+0xa1/0xd3
[  213.150184][    C0] print_address_description.constprop.0+0x1d/0x140
[  213.150191][    C0]  ? kfree+0xd7/0x560
[  213.150196][    C0]  kasan_report_invalid_free+0x56/0x80
[  213.150200][    C0]  ? kfree+0xd7/0x560
^[M ^[[K[^[[0;1;31m[  213.150204][    C0] __kasan_slab_free+0x110/0x140
[  213.150209][    C0]  slab_free_freelist_hook+0x8c/0x1c0
*^[[0m^[[0;31m*   [  213.150214][    C0]  kfree+0xd7/0x560
[  213.150218][    C0]  ? skb_release_data+0x41c/0x520
  ^[[0m] (2 of 2) [  213.150226][    C0] skb_release_data+0x41c/0x520
[  213.150231][    C0]  ? icmpv6_rcv+0x477/0xda0
A stop job is ru[  213.150238][    C0]  ? icmpv6_rcv+0x477/0xda0
[  213.310846][    C0]  kfree_skb+0x105/0x240
nning for …t D[  213.320810][    C0]  icmpv6_rcv+0x477/0xda0
isplay Manager ([  213.329854][    C0] ip6_protocol_deliver_rcu+0xaa6/0xfe0
[  213.340642][    C0]  ip6_input+0x200/0x260
42s / 1min 30s) [  213.347584][    C0]  ? ip6_input+0x1d1/0x260
[  213.357391][    C0]  ? ip6_input_finish+0x80/0x80

[  213.365347][    C0]  ? tcp_v4_early_demux+0x571/0x840
[  213.374679][    C0]  ip6_sublist_rcv_finish+0x9e/0x480
[  213.382025][    C0]  ip6_sublist_rcv+0x64b/0xba0
[  213.391069][    C0]  ? ip6_sublist_rcv_finish+0x480/0x480
[  213.405589][    C0]  ? __kasan_check_read+0x11/0x20
[  213.416755][    C0]  ? ip6_rcv_core+0xa3f/0x16a0
[  213.426805][    C0]  ipv6_list_rcv+0x2e3/0x460
[  213.434481][    C0]  ? xennet_alloc_rx_buffers+0x237/0xae0
[  213.447714][    C0]  ? ip6_sublist_rcv+0xba0/0xba0
[  213.457451][    C0]  __netif_receive_skb_list_core+0x184/0xa20
[  213.464703][    C0]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
[  213.475906][    C0]  ? __kasan_check_read+0x11/0x20
[  213.482374][    C0]  ? lock_acquire+0x4b/0x260
[  213.488761][    C0]  ? skb_defer_rx_timestamp+0x2d3/0x380
[  213.496362][    C0] netif_receive_skb_list_internal+0x616/0xd80
[  213.506817][    C0]  ? __netif_receive_skb_list_core+0xa20/0xa20
[  213.515250][    C0]  ? napi_gro_complete.constprop.0.isra.0+0x18f/0x380
[  213.524133][    C0]  ? __kasan_check_write+0x14/0x20
[  213.530159][    C0]  ? napi_gro_flush+0x298/0x3c0
[  213.535922][    C0]  napi_complete_done+0x189/0x600
[  213.542171][    C0]  xennet_poll+0x2447/0x3c80
[  213.548171][    C0]  ? xennet_xdp+0x7e0/0x7e0
[  213.553923][    C0]  ? __kasan_check_read+0x11/0x20
[  213.561362][    C0]  ? lock_release+0xa3/0x820
[  213.567346][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  213.573431][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  213.579499][    C0]  ? __kasan_check_read+0x11/0x20
[  213.586116][    C0]  ? lock_release+0xa3/0x820
[  213.591801][    C0]  ? do_raw_spin_unlock+0x159/0x200
[  213.599418][    C0]  __napi_poll+0xb2/0x4c0
[  213.611864][    C0]  net_rx_action+0x2d7/0xa20
[  213.619909][    C0]  ? call_timer_fn+0x3c0/0x3c0
[  213.629818][    C0]  ? _raw_spin_unlock_irq+0x23/0x40
[  213.639803][    C0]  ? napi_threaded_poll+0x2c0/0x2c0
[  213.639820][    C0]  __do_softirq+0x1cd/0x66d
[  213.639827][    C0]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  213.639834][    C0]  run_ksoftirqd+0x2b/0x40
[  213.639839][    C0]  smpboot_thread_fn+0x2fb/0x6e0
[  213.639846][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  213.639850][    C0]  ? __kthread_parkme+0x8d/0x120
^[M ^[[K[^[[0;31m*^[[  213.639855][    C0]  ? 
smpboot_register_percpu_thread+0x360/0x360
[  213.639859][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[0;1;31m*^[[0m^[[0[  213.639864][    C0]  kthread+0x32d/0x400
[  213.639871][    C0]  ? __kthread_bind_mask+0xa0/0xa0
[  213.639876][    C0]  ret_from_fork+0x22/0x30
[  213.639886][    C0]
;31m*   ^[[0m] (1[  213.639889][    C0] Allocated by task 0:
[  213.742620][    C0] (stack is not available)
  of 2) A stop jo[  213.750590][    C0]
[  213.756686][    C0] Freed by task 0:
b is running for[  213.762345][    C0] kasan_save_stack+0x23/0x60
[  213.769826][    C0]  kasan_set_track+0x20/0x40
  … 11 of user [  213.779170][    C0] kasan_set_free_info+0x24/0x40
[  213.794646][    C0]  __kasan_slab_free+0xf1/0x140
hakon (41s / 1mi[  213.807720][    C0] slab_free_freelist_hook+0x8c/0x1c0
n 29s)
[  213.827148][    C0]  kfree+0xd7/0x560
[  213.837365][    C0]  skb_release_data+0x41c/0x520
[  213.845656][    C0]  kfree_skb+0x105/0x240
[  213.852281][    C0]  xennet_poll+0x1ab2/0x3c80
[  213.862540][    C0]  __napi_poll+0xb2/0x4c0
[  213.869496][    C0]  net_rx_action+0x2d7/0xa20
[  213.877186][    C0]  __do_softirq+0x1cd/0x66d
[  213.885465][    C0]
[  213.891111][    C0] The buggy address belongs to the object at 
ffff888126d43000
[  213.891111][    C0]  which belongs to the cache kmalloc-1k of size 1024
[  213.918845][    C0] The buggy address is located 0 bytes inside of
[  213.918845][    C0]  1024-byte region [ffff888126d43000, 
ffff888126d43400)
[  213.944923][    C0] The buggy address belongs to the page:
[  213.956132][    C0] page:000000005fd2a6d8 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x126d40
[  213.973591][    C0] head:000000005fd2a6d8 order:3 compound_mapcount:0 
compound_pincount:0
[  213.987881][    C0] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  214.001677][    C0] raw: 02fffc0000010200 0000000000000000 
0000000200000001 ffff888100042dc0
[  214.018218][    C0] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  214.038729][    C0] page dumped because: kasan: bad access detected
[  214.050148][    C0]
[  214.053014][    C0] Memory state around the buggy address:
[  214.060651][    C0]  ffff888126d42f00: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  214.071773][    C0]  ffff888126d42f80: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  214.084691][    C0] >ffff888126d43000: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  214.097836][    C0]                    ^
[  214.103556][    C0]  ffff888126d43080: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  214.117473][    C0]  ffff888126d43100: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  214.129253][    C0] 
==================================================================
[  214.140478][    C2] 
==================================================================
[  214.140503][    C2] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  214.170341][    C2]
^[M ^[[K[ ^[[0;31m*[  214.174510][    C2] CPU: 2 PID: 0 Comm: swapper/2 
Tainted: G    B   W         5.13.0-rc6-x86_64 #1
[  214.193822][    C2] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
^[[0;1;31m*^[[0m^[[[  214.215513][    C2] Call Trace:
0;31m*  ^[[0m] (1[  214.228707][    C2]  <IRQ>
[  214.241152][    C2]  dump_stack+0xa1/0xd3
  of 2) A stop jo[  214.249599][    C2] 
print_address_description.constprop.0+0x1d/0x140
b is running for[  214.265137][    C2]  ? kfree+0xd7/0x560
  … 11 of user [  214.274501][    C2] kasan_report_invalid_free+0x56/0x80
[  214.284193][    C2]  ? kfree+0xd7/0x560
hakon (42s / 1mi[  214.293567][    C2] __kasan_slab_free+0x110/0x140
[  214.305209][    C2]  slab_free_freelist_hook+0x8c/0x1c0
n 29s)
[  214.315271][    C2]  kfree+0xd7/0x560
[  214.324662][    C2]  ? skb_release_data+0x41c/0x520
[  214.332942][    C2]  ? xennet_poll+0x15d9/0x3c80
[  214.343682][    C2]  ? kmem_cache_free+0x10b/0x520
[  214.351197][    C2]  skb_release_data+0x41c/0x520
[  214.359785][    C2]  ? xennet_poll+0x15d9/0x3c80
[  214.365826][    C2]  ? xennet_poll+0x15d9/0x3c80
[  214.371891][    C2]  kfree_skb+0x105/0x240
[  214.377112][    C2]  xennet_poll+0x15d9/0x3c80
[  214.382620][    C2]  ? xennet_xdp+0x7e0/0x7e0
[  214.388425][    C2]  ? __kasan_check_read+0x11/0x20
[  214.394572][    C2]  ? __raise_softirq_irqoff+0x36/0xe0
[  214.403160][    C2]  ? __napi_schedule+0x1b5/0x260
[  214.410851][    C2]  ? __kasan_check_read+0x11/0x20
[  214.418281][    C2]  ? lock_release+0xa3/0x820
[  214.425596][    C2]  ? do_raw_spin_lock+0x13e/0x280
[  214.432445][    C2]  ? handle_edge_irq+0x35e/0xb60
[  214.442766][    C2]  ? handle_irq_for_port+0x192/0x4c0
[  214.452876][    C2]  ? __kasan_check_write+0x14/0x20
[  214.460186][    C2]  __napi_poll+0xb2/0x4c0
[  214.468318][    C2]  net_rx_action+0x2d7/0xa20
[  214.476943][    C2]  ? napi_threaded_poll+0x2c0/0x2c0
[  214.487543][    C2]  ? __kasan_check_read+0x11/0x20
[  214.494720][    C2]  ? lock_acquire+0x4b/0x260
[  214.500909][    C2]  ? __kasan_check_write+0x14/0x20
[  214.508863][    C2]  ? _raw_read_unlock+0x23/0x40
[  214.515506][    C2]  ? __xen_evtchn_do_upcall+0x107/0x180
[  214.522839][    C2]  __do_softirq+0x1cd/0x66d
[  214.529817][    C2]  irq_exit_rcu+0x12c/0x1c0
[  214.535491][    C2]  sysvec_xen_hvm_callback+0x79/0xa0
[  214.542078][    C2]  </IRQ>
[  214.545845][    C2]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  214.553437][    C2] RIP: 0010:native_safe_halt+0xe/0x20
[  214.562580][    C2] Code: cc cc cc cc cc cc cc cc cc cc cc cc cc cc 
cc cc cc cc cc cc cc cc cc cc cc cc cc cc e9 07 00 00 00 0f 00 2d b4 f4 
49 00 fb f4 <c3> 66 66 2e 0f 1f 84 00 00 00 00 00 66 0f 1f 44 00 00 e9 
07 00 00
[  214.591969][    C2] RSP: 0018:ffffc90000127cf0 EFLAGS: 00000246
[  214.602248][    C2] RAX: 0000000000004000 RBX: ffff88810122b865 RCX: 
ffffffff83dd94c2
[  214.615196][    C2] RDX: 1ffff1102011ea50 RSI: 0000000000000008 RDI: 
ffff8881008f5280
[  214.628021][    C2] RBP: ffffc90000127d00 R08: 0000000000000000 R09: 
ffff8881008f5287
[  214.640448][    C2] R10: ffffed102011ea50 R11: 0000000000000000 R12: 
ffff8881008f5280
[  214.640456][    C2] R13: ffff88810a142000 R14: ffff88810122b864 R15: 
ffffffff8576a6c0
[  214.640463][    C2]  ? acpi_idle_do_entry+0x142/0x1e0
[  214.640477][    C2]  ? acpi_idle_do_entry+0x166/0x1e0
[  214.640481][    C2]  acpi_idle_enter+0x2ca/0x500
[  214.640487][    C2]  ? __kasan_check_write+0x14/0x20
[  214.640495][    C2]  cpuidle_enter_state+0x17c/0xe00
^[M ^[[K[  ^[[0;31m[  214.640503][    C2]  cpuidle_enter+0x4f/0xa0
[  214.640508][    C2]  do_idle+0x407/0x5c0
*^[[0;1;31m*^[[0m^[[  214.640513][    C2]  ? arch_cpu_idle_exit+0x60/0x60
[  214.640517][    C2]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[0;31m* ^[[0m] (1[  214.640522][    C2]  ? complete+0x5c/0x80
[  214.640527][    C2]  cpu_startup_entry+0x20/0x40
  of 2) A stop jo[  214.640530][    C2] start_secondary+0x27f/0x360
[  214.640537][    C2]  ? set_cpu_sibling_map+0x2040/0x2040
b is running for[  214.640543][    C2] 
secondary_startup_64_no_verify+0xb0/0xbb
[  214.640553][    C2]
  … 11 of user [  214.640556][    C2] Allocated by task 0:
[  214.640558][    C2] (stack is not available)
hakon (42s / 1mi[  214.640560][    C2]
[  214.640561][    C2] Freed by task 0:
n 29s)
[  214.828228][    C2]  kasan_save_stack+0x23/0x60
[  214.835012][    C2]  kasan_set_track+0x20/0x40
[  214.840676][    C2]  kasan_set_free_info+0x24/0x40
[  214.846752][    C2]  __kasan_slab_free+0xf1/0x140
[  214.852817][    C2]  slab_free_freelist_hook+0x8c/0x1c0
[  214.859715][    C2]  kfree+0xd7/0x560
[  214.864312][    C2]  skb_release_data+0x41c/0x520
[  214.871639][    C2]  kfree_skb+0x105/0x240
[  214.877031][    C2]  xennet_poll+0x1ab2/0x3c80
[  214.883335][    C2]  __napi_poll+0xb2/0x4c0
[  214.889487][    C2]  net_rx_action+0x2d7/0xa20
[  214.894961][    C2]  __do_softirq+0x1cd/0x66d
[  214.900203][    C2]
[  214.902965][    C2] The buggy address belongs to the object at 
ffff888125adf800
[  214.902965][    C2]  which belongs to the cache kmalloc-1k of size 1024
[  214.920162][    C2] The buggy address is located 0 bytes inside of
[  214.920162][    C2]  1024-byte region [ffff888125adf800, 
ffff888125adfc00)
[  214.936626][    C2] The buggy address belongs to the page:
[  214.943436][    C2] page:00000000bf52ba57 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x125ad8
[  214.955780][    C2] head:00000000bf52ba57 order:3 compound_mapcount:0 
compound_pincount:0
[  214.965745][    C2] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  214.976188][    C2] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  214.986474][    C2] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  214.996687][    C2] page dumped because: kasan: bad access detected
[  215.004325][    C2]
[  215.007489][    C2] Memory state around the buggy address:
[  215.015918][    C2]  ffff888125adf700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  215.027162][    C2]  ffff888125adf780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  215.043947][    C2] >ffff888125adf800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  215.056172][    C2]                    ^
[  215.063167][    C2]  ffff888125adf880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  215.076950][    C2]  ffff888125adf900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  215.087822][    C2] 
==================================================================
[  215.097640][    C0] 
==================================================================
[  215.122447][    C0] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  215.138627][    C0]
[  215.138632][    C0] CPU: 0 PID: 12 Comm: ksoftirqd/0 Tainted: G    
B   W         5.13.0-rc6-x86_64 #1
[  215.138638][    C0] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  215.138640][    C0] Call Trace:
[  215.138645][    C0]  dump_stack+0xa1/0xd3
[  215.138654][    C0] print_address_description.constprop.0+0x1d/0x140
[  215.138661][    C0]  ? kmem_cache_free+0x10b/0x520
^[M ^[[K[   ^[[0;31[  215.138666][    C0] kasan_report_invalid_free+0x56/0x80
[  215.138670][    C0]  ? kmem_cache_free+0x10b/0x520
m*^[[0;1;31m*^[[0m[  215.138674][    C0] __kasan_slab_free+0x110/0x140
[  215.138679][    C0]  slab_free_freelist_hook+0x8c/0x1c0
^[[0;31m*^[[0m] (2[  215.138684][    C0]  ? icmpv6_rcv+0x477/0xda0
[  215.138691][    C0]  kmem_cache_free+0x10b/0x520
  of 2) A stop jo[  215.138695][    C0]  ? kfree_skbmem+0x9a/0x140
[  215.138702][    C0]  ? icmpv6_rcv+0x477/0xda0
b is running for[  215.307343][    C0]  kfree_skbmem+0x9a/0x140
[  215.315286][    C0]  kfree_skb+0x10d/0x240
  …t Display Ma[  215.323574][    C0]  icmpv6_rcv+0x477/0xda0
[  215.331952][    C0]  ip6_protocol_deliver_rcu+0xaa6/0xfe0
nager (44s / 1mi[  215.342623][    C0]  ip6_input+0x200/0x260
[  215.351255][    C0]  ? ip6_input+0x1d1/0x260
n 30s)
[  215.360782][    C0]  ? ip6_input_finish+0x80/0x80
[  215.368718][    C0]  ? tcp_v4_early_demux+0x571/0x840
[  215.376461][    C0]  ip6_sublist_rcv_finish+0x9e/0x480
[  215.385701][    C0]  ip6_sublist_rcv+0x64b/0xba0
[  215.393017][    C0]  ? ip6_sublist_rcv_finish+0x480/0x480
[  215.402260][    C0]  ? __kasan_check_read+0x11/0x20
[  215.411695][    C0]  ? ip6_rcv_core+0xa3f/0x16a0
[  215.424529][    C0]  ipv6_list_rcv+0x2e3/0x460
[  215.433422][    C0]  ? xennet_alloc_rx_buffers+0x237/0xae0
[  215.444570][    C0]  ? ip6_sublist_rcv+0xba0/0xba0
[  215.456256][    C0]  __netif_receive_skb_list_core+0x184/0xa20
[  215.470330][    C0]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
[  215.481119][    C0]  ? __kasan_check_read+0x11/0x20
[  215.492056][    C0]  ? lock_acquire+0x4b/0x260
[  215.499267][    C0]  ? skb_defer_rx_timestamp+0x2d3/0x380
[  215.508151][    C0] netif_receive_skb_list_internal+0x616/0xd80
[  215.517243][    C0]  ? __netif_receive_skb_list_core+0xa20/0xa20
[  215.526579][    C0]  ? napi_gro_complete.constprop.0.isra.0+0x18f/0x380
[  215.539190][    C0]  ? __kasan_check_write+0x14/0x20
[  215.546170][    C0]  ? napi_gro_flush+0x298/0x3c0
[  215.552659][    C0]  napi_complete_done+0x189/0x600
[  215.558684][    C0]  xennet_poll+0x2447/0x3c80
[  215.564367][    C0]  ? xennet_xdp+0x7e0/0x7e0
[  215.570707][    C0]  ? __kasan_check_read+0x11/0x20
[  215.576965][    C0]  ? lock_release+0xa3/0x820
[  215.582588][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  215.589202][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  215.596146][    C0]  ? __kasan_check_read+0x11/0x20
[  215.606544][    C0]  ? lock_release+0xa3/0x820
[  215.616358][    C0]  ? do_raw_spin_unlock+0x159/0x200
[  215.629194][    C0]  __napi_poll+0xb2/0x4c0
[  215.639002][    C0]  net_rx_action+0x2d7/0xa20
[  215.639015][    C0]  ? call_timer_fn+0x3c0/0x3c0
[  215.639020][    C0]  ? _raw_spin_unlock_irq+0x23/0x40
[  215.639028][    C0]  ? napi_threaded_poll+0x2c0/0x2c0
[  215.639035][    C0]  __do_softirq+0x1cd/0x66d
[  215.639040][    C0]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  215.639047][    C0]  run_ksoftirqd+0x2b/0x40
^[M ^[[K[    ^[[0;3[  215.639051][    C0] smpboot_thread_fn+0x2fb/0x6e0
[  215.639057][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
1m*^[[0;1;31m*^[[0[  215.639062][    C0]  ? __kthread_parkme+0x8d/0x120
[  215.639067][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  215.639071][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
m] (2 of 2) A st[  215.750261][    C0]  kthread+0x32d/0x400
[  215.758696][    C0]  ? __kthread_bind_mask+0xa0/0xa0
op job is runnin[  215.767203][    C0]  ret_from_fork+0x22/0x30
[  215.775045][    C0]
g for …t Displ[  215.778331][    C0] Allocated by task 0:
[  215.786085][    C0]  kasan_save_stack+0x23/0x60
ay Manager (44s [  215.799771][    C0] __kasan_slab_alloc+0x68/0x80
[  215.813570][    C0]  kmem_cache_alloc_node+0x242/0x380
/ 1min 30s)
[  215.830973][    C0]  __alloc_skb+0x156/0x280
[  215.845319][    C0]  __netdev_alloc_skb+0x46/0x320
[  215.853729][    C0]  xennet_alloc_rx_buffers+0x237/0xae0
[  215.862762][    C0]  xennet_poll+0x1e8b/0x3c80
[  215.870390][    C0]  __napi_poll+0xb2/0x4c0
[  215.877137][    C0]  net_rx_action+0x2d7/0xa20
[  215.884576][    C0]  __do_softirq+0x1cd/0x66d
[  215.891573][    C0]
[  215.894440][    C0] Freed by task 881776:
[  215.899812][    C0] ------------[ cut here ]------------
[  215.907252][    C0] slab index 2083072 out of bounds (278) for stack 
id ffffc900
[  215.916653][    C0] WARNING: CPU: 0 PID: 12 at lib/stackdepot.c:236 
stack_depot_fetch+0x71/0xa0
[  215.928558][    C0] Modules linked in: xen_front_pgdir_shbuf 
xen_scsifront snd_hda_codec_hdmi snd_hda_intel snd_intel_dspcfg 
snd_hda_codec snd_hda_core snd_hwdep snd_pcm snd_timer snd soundcore 
hid_generic usbhid hid xen_kbdfront intel_rapl_msr atkbd 
intel_rapl_common amdgpu drm_ttm_helper ttm gpu_sched xhci_pci xhci_hcd 
usbcore [last unloaded: usbip_core]
[  215.971549][    C0] CPU: 0 PID: 12 Comm: ksoftirqd/0 Tainted: G    
B   W         5.13.0-rc6-x86_64 #1
[  215.983765][    C0] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  215.994491][    C0] RIP: 0010:stack_depot_fetch+0x71/0xa0
[  216.003735][    C0] Code: 48 c1 e0 04 25 f0 3f 00 00 48 01 c2 48 8d 
42 18 48 89 03 48 8b 5d f8 8b 42 0c c9 c3 89 f9 48 c7 c7 48 85 bb 84 e8 
2d bf 3b 01 <0f> 0b 31 c0 48 8b 5d f8 c9 c3 48 8b 5d f8 31 c0 c9 c3 48 
c7 c7 a0
[  216.043019][    C0] RSP: 0018:ffffc900000d6f60 EFLAGS: 00010082
[  216.051129][    C0] RAX: 0000000000000000 RBX: ffffc900000d6f88 RCX: 
0000000000000000
[  216.060758][    C0] RDX: 0000000000000027 RSI: 0000000000000004 RDI: 
fffff5200001adde
[  216.070391][    C0] RBP: ffffc900000d6f78 R08: 0000000000000001 R09: 
ffff8884d382091b
[  216.079961][    C0] R10: ffffed109a704123 R11: 646e692062616c73 R12: 
ffff888125a13b80
[  216.089627][    C0] R13: ffffea0004968480 R14: ffff888125a13b80 R15: 
ffff888125a13c58
[  216.099205][    C0] FS:  0000000000000000(0000) 
GS:ffff8884d3800000(0000) knlGS:0000000000000000
[  216.110109][    C0] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  216.119389][    C0] CR2: 000056104ce6e020 CR3: 0000000121a0e002 CR4: 
00000000001706f0
[  216.129292][    C0] Call Trace:
[  216.133376][    C0]  print_stack+0xe/0x1d
[  216.138764][    C0]  print_track+0x22/0x33
[  216.138776][    C0] 
print_address_description.constprop.0.cold+0x3c/0x179
[  216.138781][    C0]  ? kmem_cache_free+0x10b/0x520
[  216.138789][    C0]  kasan_report_invalid_free+0x56/0x80
[  216.138793][    C0]  ? kmem_cache_free+0x10b/0x520
[  216.138797][    C0]  __kasan_slab_free+0x110/0x140
[  216.138802][    C0]  slab_free_freelist_hook+0x8c/0x1c0
^[M ^[[K[     ^[[0;[  216.138807][    C0]  ? icmpv6_rcv+0x477/0xda0
[  216.138814][    C0]  kmem_cache_free+0x10b/0x520
31m*^[[0m] (2 of [  216.138819][    C0]  ? kfree_skbmem+0x9a/0x140
[  216.138827][    C0]  ? icmpv6_rcv+0x477/0xda0
2) A stop job is[  216.237529][    C0]  kfree_skbmem+0x9a/0x140
[  216.244576][    C0]  kfree_skb+0x10d/0x240
  running for …[  216.250113][    C0]  icmpv6_rcv+0x477/0xda0
t Display Manage[  216.257968][    C0] ip6_protocol_deliver_rcu+0xaa6/0xfe0
[  216.266989][    C0]  ip6_input+0x200/0x260
[  216.273285][    C0]  ? ip6_input+0x1d1/0x260
r (45s / 1min 30[  216.279630][    C0]  ? ip6_input_finish+0x80/0x80
[  216.288422][    C0]  ? tcp_v4_early_demux+0x571/0x840
[  216.294400][    C0]  ip6_sublist_rcv_finish+0x9e/0x480
s)
[  216.300849][    C0]  ip6_sublist_rcv+0x64b/0xba0
[  216.309689][    C0]  ? ip6_sublist_rcv_finish+0x480/0x480
[  216.318640][    C0]  ? __kasan_check_read+0x11/0x20
[  216.327501][    C0]  ? ip6_rcv_core+0xa3f/0x16a0
[  216.335494][    C0]  ipv6_list_rcv+0x2e3/0x460
[  216.343953][    C0]  ? xennet_alloc_rx_buffers+0x237/0xae0
[  216.356727][    C0]  ? ip6_sublist_rcv+0xba0/0xba0
[  216.364941][    C0]  __netif_receive_skb_list_core+0x184/0xa20
[  216.378967][    C0]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
[  216.394349][    C0]  ? __kasan_check_read+0x11/0x20
[  216.401453][    C0]  ? lock_acquire+0x4b/0x260
[  216.406910][    C0]  ? skb_defer_rx_timestamp+0x2d3/0x380
[  216.413867][    C0] netif_receive_skb_list_internal+0x616/0xd80
[  216.421442][    C0]  ? __netif_receive_skb_list_core+0xa20/0xa20
[  216.429617][    C0]  ? napi_gro_complete.constprop.0.isra.0+0x18f/0x380
[  216.441183][    C0]  ? __kasan_check_write+0x14/0x20
[  216.450645][    C0]  ? napi_gro_flush+0x298/0x3c0
[  216.461268][    C0]  napi_complete_done+0x189/0x600
[  216.472973][    C0]  xennet_poll+0x2447/0x3c80
[  216.481678][    C0]  ? xennet_xdp+0x7e0/0x7e0
[  216.488874][    C0]  ? __kasan_check_read+0x11/0x20
[  216.497616][    C0]  ? lock_release+0xa3/0x820
[  216.507491][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  216.515381][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  216.527679][    C0]  ? __kasan_check_read+0x11/0x20
[  216.539625][    C0]  ? lock_release+0xa3/0x820
[  216.551138][    C0]  ? do_raw_spin_unlock+0x159/0x200
[  216.559985][    C0]  __napi_poll+0xb2/0x4c0
[  216.567549][    C0]  net_rx_action+0x2d7/0xa20
[  216.575303][    C0]  ? call_timer_fn+0x3c0/0x3c0
[  216.583501][    C0]  ? _raw_spin_unlock_irq+0x23/0x40
[  216.593207][    C0]  ? napi_threaded_poll+0x2c0/0x2c0
[  216.601972][    C0]  __do_softirq+0x1cd/0x66d
[  216.608974][    C0]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  216.616645][    C0]  run_ksoftirqd+0x2b/0x40
[  216.622231][    C0]  smpboot_thread_fn+0x2fb/0x6e0
[  216.628379][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  216.637151][    C0]  ? __kthread_parkme+0x8d/0x120
[  216.637161][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  216.637166][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  216.637171][    C0]  kthread+0x32d/0x400
[  216.637175][    C0]  ? __kthread_bind_mask+0xa0/0xa0
[  216.637180][    C0]  ret_from_fork+0x22/0x30
[  216.637190][    C0] ---[ end trace 3841665df6b692d3 ]---
^[M ^[[K[    ^[[0;3[  216.637201][    C0] ------------[ cut here ]------------
[  216.637202][    C0] WARNING: CPU: 0 PID: 12 at kernel/stacktrace.c:28 
stack_trace_print+0xf/0x40
1m*^[[0;1;31m*^[[0[  216.714523][    C0] Modules linked in: 
xen_front_pgdir_shbuf xen_scsifront snd_hda_codec_hdmi snd_hda_intel 
snd_intel_dspcfg snd_hda_codec snd_hda_core snd_hwdep snd_pcm snd_timer 
snd soundcore hid_generic usbhid hid xen_kbdfront intel_rapl_msr atkbd 
intel_rapl_common amdgpu drm_ttm_helper ttm gpu_sched xhci_pci xhci_hcd 
usbcore [last unloaded: usbip_core]
m] (1 of 2) A st[  216.789867][    C0] CPU: 0 PID: 12 Comm: ksoftirqd/0 
Tainted: G    B   W         5.13.0-rc6-x86_64 #1
[  216.812451][    C0] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
op job is runnin[  216.829665][    C0] RIP: 0010:stack_trace_print+0xf/0x40
[  216.840786][    C0] Code: 48 8b 55 f0 65 48 2b 14 25 28 00 00 00 75 
06 48 8b 5d f8 c9 c3 e8 e1 3e 84 02 90 0f 1f 44 00 00 48 85 ff 74 05 85 
f6 75 04 c3 <0f> 0b c3 55 48 89 e5 41 56 41 55 41 54 53 e9 66 c8 71 02 
66 66 2e
g for … 11 of [  216.888966][    C0] RSP: 0018:ffffc900000d6f80 EFLAGS: 
00010046
[  216.902647][    C0] RAX: 0000000000000000 RBX: ffff888125a13b88 RCX: 
0000000000000000
user hakon (44s [  216.922758][    C0] RDX: 0000000000000000 RSI: 
0000000000000000 RDI: 0000000000000000
/ 1min 29s)
[  216.943070][    C0] RBP: ffffc900000d6f90 R08: 0000000000000001 R09: 
ffff8884d382091b
[  216.958315][    C0] R10: ffffed109a704123 R11: 646e692062616c73 R12: 
ffff888125a13b80
[  216.971693][    C0] R13: ffffea0004968480 R14: ffff888125a13b80 R15: 
ffff888125a13c58
[  216.987211][    C0] FS:  0000000000000000(0000) 
GS:ffff8884d3800000(0000) knlGS:0000000000000000
[  216.999672][    C0] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  217.011641][    C0] CR2: 000056104ce6e020 CR3: 0000000121a0e002 CR4: 
00000000001706f0
[  217.023442][    C0] Call Trace:
[  217.027889][    C0]  ? print_stack+0x1b/0x1d
[  217.033606][    C0]  print_track+0x22/0x33
[  217.039151][    C0] 
print_address_description.constprop.0.cold+0x3c/0x179
[  217.048929][    C0]  ? kmem_cache_free+0x10b/0x520
[  217.055699][    C0]  kasan_report_invalid_free+0x56/0x80
[  217.062352][    C0]  ? kmem_cache_free+0x10b/0x520
[  217.069311][    C0]  __kasan_slab_free+0x110/0x140
[  217.075568][    C0]  slab_free_freelist_hook+0x8c/0x1c0
[  217.082039][    C0]  ? icmpv6_rcv+0x477/0xda0
[  217.088175][    C0]  kmem_cache_free+0x10b/0x520
[  217.094235][    C0]  ? kfree_skbmem+0x9a/0x140
[  217.100650][    C0]  ? icmpv6_rcv+0x477/0xda0
[  217.106422][    C0]  kfree_skbmem+0x9a/0x140
[  217.116248][    C0]  kfree_skb+0x10d/0x240
[  217.126269][    C0]  icmpv6_rcv+0x477/0xda0
[  217.135788][    C0]  ip6_protocol_deliver_rcu+0xaa6/0xfe0
[  217.135804][    C0]  ip6_input+0x200/0x260
[  217.135807][    C0]  ? ip6_input+0x1d1/0x260
[  217.135811][    C0]  ? ip6_input_finish+0x80/0x80
[  217.135815][    C0]  ? tcp_v4_early_demux+0x571/0x840
[  217.135822][    C0]  ip6_sublist_rcv_finish+0x9e/0x480
[  217.135827][    C0]  ip6_sublist_rcv+0x64b/0xba0
^[M ^[[K[   ^[[0;31[  217.135832][    C0]  ? 
ip6_sublist_rcv_finish+0x480/0x480
[  217.135836][    C0]  ? __kasan_check_read+0x11/0x20
m*^[[0;1;31m*^[[0m[  217.135844][    C0]  ? ip6_rcv_core+0xa3f/0x16a0
[  217.135849][    C0]  ipv6_list_rcv+0x2e3/0x460
^[[0;31m*^[[0m] (1[  217.135852][    C0]  ? 
xennet_alloc_rx_buffers+0x237/0xae0
[  217.277878][    C0]  ? ip6_sublist_rcv+0xba0/0xba0
  of 2) A stop jo[  217.287550][    C0] 
__netif_receive_skb_list_core+0x184/0xa20
[  217.302209][    C0]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
b is running for[  217.315924][    C0]  ? __kasan_check_read+0x11/0x20
[  217.327322][    C0]  ? lock_acquire+0x4b/0x260
  … 11 of user [  217.337370][    C0]  ? skb_defer_rx_timestamp+0x2d3/0x380
[  217.355881][    C0] netif_receive_skb_list_internal+0x616/0xd80
hakon (45s / 1mi[  217.377431][    C0]  ? 
__netif_receive_skb_list_core+0xa20/0xa20
n 29s)
[  217.390232][    C0]  ? napi_gro_complete.constprop.0.isra.0+0x18f/0x380
[  217.401164][    C0]  ? __kasan_check_write+0x14/0x20
[  217.407921][    C0]  ? napi_gro_flush+0x298/0x3c0
[  217.413740][    C0]  napi_complete_done+0x189/0x600
[  217.419828][    C0]  xennet_poll+0x2447/0x3c80
[  217.425350][    C0]  ? xennet_xdp+0x7e0/0x7e0
[  217.430522][    C0]  ? __kasan_check_read+0x11/0x20
[  217.437388][    C0]  ? lock_release+0xa3/0x820
[  217.443088][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  217.449160][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  217.455182][    C0]  ? __kasan_check_read+0x11/0x20
[  217.461414][    C0]  ? lock_release+0xa3/0x820
[  217.467271][    C0]  ? do_raw_spin_unlock+0x159/0x200
[  217.475102][    C0]  __napi_poll+0xb2/0x4c0
[  217.481098][    C0]  net_rx_action+0x2d7/0xa20
[  217.488627][    C0]  ? call_timer_fn+0x3c0/0x3c0
[  217.495530][    C0]  ? _raw_spin_unlock_irq+0x23/0x40
[  217.503530][    C0]  ? napi_threaded_poll+0x2c0/0x2c0
[  217.511310][    C0]  __do_softirq+0x1cd/0x66d
[  217.519280][    C0]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  217.530552][    C0]  run_ksoftirqd+0x2b/0x40
[  217.540646][    C0]  smpboot_thread_fn+0x2fb/0x6e0
[  217.549181][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  217.563674][    C0]  ? __kthread_parkme+0x8d/0x120
[  217.572618][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  217.580729][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  217.590732][    C0]  kthread+0x32d/0x400
[  217.596142][    C0]  ? __kthread_bind_mask+0xa0/0xa0
[  217.604763][    C0]  ret_from_fork+0x22/0x30
[  217.610662][    C0] ---[ end trace 3841665df6b692d4 ]---
[  217.617982][    C0]
[  217.620935][    C0] The buggy address belongs to the object at 
ffff888125a13b80
[  217.620935][    C0]  which belongs to the cache skbuff_head_cache of 
size 216
[  217.642368][    C0] The buggy address is located 0 bytes inside of
[  217.642368][    C0]  216-byte region [ffff888125a13b80, 
ffff888125a13c58)
[  217.642378][    C0] The buggy address belongs to the page:
[  217.642381][    C0] page:000000004ad1a198 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x125a12
[  217.642387][    C0] head:000000004ad1a198 order:1 compound_mapcount:0
[  217.642390][    C0] memcg:ffff888135827401
[  217.642392][    C0] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  217.642401][    C0] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
^[M ^[[K[  ^[[0;31m[  217.642404][    C0] raw: 0000000000000000 
0000000000190019 00000001ffffffff ffff888135827401
[  217.642407][    C0] page dumped because: kasan: bad access detected
*^[[0;1;31m*^[[0m^[[  217.642409][    C0]
[0;31m* ^[[0m] (1[  217.642410][    C0] Memory state around the buggy 
address:
[  217.642413][    C0]  ffff888125a13a80: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
  of 2) A stop jo[  217.642415][    C0]  ffff888125a13b00: fc fc fc fc 
fc fc fc fc fc fc fc fc fc fc fc fc
[  217.642417][    C0] >ffff888125a13b80: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  217.642419][    C0]                    ^
b is running for[  217.642422][    C0]  ffff888125a13c00: fb fb fb fb fb 
fb fb fb fb fb fb fc fc fc fc fc
  … 11 of user [  217.642424][    C0]  ffff888125a13c80: fc fc fc fc fc 
fc fc fc fa fb fb fb fb fb fb fb
[  217.642426][    C0] 
==================================================================
hakon (45s / 1mi[  217.642474][    C2] 
==================================================================
[  217.940416][    C2] BUG: KASAN: double-free or invalid-free in 
kmem_cache_free+0x10b/0x520
[  217.964246][    C2]
n 29s)
[  217.970287][    C2] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G B   
W         5.13.0-rc6-x86_64 #1
[  217.986547][    C2] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  217.998701][    C2] Call Trace:
[  218.004200][    C2]  <IRQ>
[  218.010125][    C2]  dump_stack+0xa1/0xd3
[  218.017424][    C2] print_address_description.constprop.0+0x1d/0x140
[  218.028711][    C2]  ? kmem_cache_free+0x10b/0x520
[  218.037705][    C2]  kasan_report_invalid_free+0x56/0x80
[  218.047460][    C2]  ? kmem_cache_free+0x10b/0x520
[  218.056377][    C2]  __kasan_slab_free+0x110/0x140
[  218.064648][    C2]  slab_free_freelist_hook+0x8c/0x1c0
[  218.074625][    C2]  ? xennet_poll+0x15d9/0x3c80
[  218.083198][    C2]  kmem_cache_free+0x10b/0x520
[  218.091655][    C2]  ? kfree_skbmem+0x9a/0x140
[  218.100065][    C2]  ? xennet_poll+0x15d9/0x3c80
[  218.110259][    C2]  kfree_skbmem+0x9a/0x140
[  218.118567][    C2]  kfree_skb+0x10d/0x240
[  218.129506][    C2]  xennet_poll+0x15d9/0x3c80
[  218.140660][    C2]  ? xennet_xdp+0x7e0/0x7e0
[  218.140676][    C2]  ? __kasan_check_read+0x11/0x20
[  218.140683][    C2]  ? __raise_softirq_irqoff+0x36/0xe0
[  218.140690][    C2]  ? __napi_schedule+0x1b5/0x260
[  218.140699][    C2]  ? __kasan_check_read+0x11/0x20
[  218.140704][    C2]  ? lock_release+0xa3/0x820
[  218.140708][    C2]  ? do_raw_spin_lock+0x13e/0x280
^[M ^[[K[ ^[[0;31m*[  218.140718][    C2]  ? handle_edge_irq+0x35e/0xb60
[  218.140724][    C2]  ? handle_irq_for_port+0x192/0x4c0
^[[0;1;31m*^[[0m^[[[  218.140731][    C2]  ? __kasan_check_write+0x14/0x20
0;31m*  ^[[0m] (2[  218.140736][    C2]  __napi_poll+0xb2/0x4c0
[  218.140742][    C2]  net_rx_action+0x2d7/0xa20
[  218.140747][    C2]  ? napi_threaded_poll+0x2c0/0x2c0
  of 2) A stop jo[  218.140751][    C2]  ? __kasan_check_read+0x11/0x20
[  218.277434][    C2]  ? lock_acquire+0x4b/0x260
b is running for[  218.284846][    C2]  ? __kasan_check_write+0x14/0x20
[  218.294970][    C2]  ? _raw_read_unlock+0x23/0x40
  …t Display Ma[  218.304685][    C2]  ? __xen_evtchn_do_upcall+0x107/0x180
[  218.320824][    C2]  __do_softirq+0x1cd/0x66d
nager (47s / 1mi[  218.333423][    C2]  irq_exit_rcu+0x12c/0x1c0
[  218.348881][    C2]  sysvec_xen_hvm_callback+0x79/0xa0
n 30s)
[  218.362961][    C2]  </IRQ>
[  218.368424][    C2]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  218.378278][    C2] RIP: 0010:native_safe_halt+0xe/0x20
[  218.387553][    C2] Code: cc cc cc cc cc cc cc cc cc cc cc cc cc cc 
cc cc cc cc cc cc cc cc cc cc cc cc cc cc e9 07 00 00 00 0f 00 2d b4 f4 
49 00 fb f4 <c3> 66 66 2e 0f 1f 84 00 00 00 00 00 66 0f 1f 44 00 00 e9 
07 00 00
[  218.422923][    C2] RSP: 0018:ffffc90000127cf0 EFLAGS: 00000246
[  218.430618][    C2] RAX: 0000000000004000 RBX: ffff88810122b865 RCX: 
ffffffff83dd94c2
[  218.443367][    C2] RDX: 1ffff1102011ea50 RSI: 0000000000000008 RDI: 
ffff8881008f5280
[  218.458767][    C2] RBP: ffffc90000127d00 R08: 0000000000000000 R09: 
ffff8881008f5287
[  218.471518][    C2] R10: ffffed102011ea50 R11: 0000000000000000 R12: 
ffff8881008f5280
[  218.484528][    C2] R13: ffff88810a142000 R14: ffff88810122b864 R15: 
ffffffff8576a6c0
[  218.494235][    C2]  ? acpi_idle_do_entry+0x142/0x1e0
[  218.505888][    C2]  ? acpi_idle_do_entry+0x166/0x1e0
[  218.516420][    C2]  acpi_idle_enter+0x2ca/0x500
[  218.530813][    C2]  ? __kasan_check_write+0x14/0x20
[  218.543552][    C2]  cpuidle_enter_state+0x17c/0xe00
[  218.552802][    C2]  cpuidle_enter+0x4f/0xa0
[  218.559185][    C2]  do_idle+0x407/0x5c0
[  218.564474][    C2]  ? arch_cpu_idle_exit+0x60/0x60
[  218.571237][    C2]  ? _raw_spin_unlock_irqrestore+0x27/0x40
[  218.579190][    C2]  ? complete+0x5c/0x80
[  218.584533][    C2]  cpu_startup_entry+0x20/0x40
[  218.590222][    C2]  start_secondary+0x27f/0x360
[  218.596167][    C2]  ? set_cpu_sibling_map+0x2040/0x2040
[  218.603131][    C2]  secondary_startup_64_no_verify+0xb0/0xbb
[  218.610245][    C2]
[  218.612872][    C2] Allocated by task 0:
[  218.617758][    C2]  kasan_save_stack+0x23/0x60
[  218.623215][    C2]  __kasan_slab_alloc+0x68/0x80
[  218.629156][    C2]  kmem_cache_alloc_node+0x242/0x380
[  218.635366][    C2]  __alloc_skb+0x156/0x280
[  218.640622][    C2]  __netdev_alloc_skb+0x46/0x320
[  218.640631][    C2]  xennet_alloc_rx_buffers+0x237/0xae0
[  218.640638][    C2]  xennet_poll+0x1e8b/0x3c80
[  218.640642][    C2]  __napi_poll+0xb2/0x4c0
[  218.640645][    C2]  net_rx_action+0x2d7/0xa20
[  218.640648][    C2]  __do_softirq+0x1cd/0x66d
[  218.640653][    C2]
^[M ^[[K[^[[0;31m*^[[  218.640655][    C2] Freed by task 0:
[  218.640658][    C2] (stack is not available)
[0;1;31m*^[[0m^[[0[  218.640659][    C2]
[  218.640660][    C2] The buggy address belongs to the object at 
ffff888126663b80
[  218.640660][    C2]  which belongs to the cache skbuff_head_cache of 
size 216
;31m*   ^[[0m] (2[  218.640664][    C2] The buggy address is located 0 
bytes inside of
[  218.640664][    C2]  216-byte region [ffff888126663b80, 
ffff888126663c58)
[  218.640668][    C2] The buggy address belongs to the page:
  of 2) A stop jo[  218.640671][    C2] page:00000000dd43c559 refcount:1 
mapcount:0 mapping:0000000000000000 index:0x0 pfn:0x126662
[  218.640676][    C2] head:00000000dd43c559 order:1 compound_mapcount:0
b is running for[  218.640678][    C2] memcg:ffff88811066a601
[  218.640680][    C2] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
  …t Display Ma[  218.640689][    C2] raw: 02fffc0000010200 
0000000000000000 0000000300000001 ffff8881002a3e00
[  218.640693][    C2] raw: 0000000000000000 0000000000190019 
00000001ffffffff ffff88811066a601
nager (47s / 1mi[  218.640695][    C2] page dumped because: kasan: bad 
access detected
[  218.640697][    C2]
n 30s)
[  218.640698][    C2] Memory state around the buggy address:
[  218.640700][    C2]  ffff888126663a80: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  218.640703][    C2]  ffff888126663b00: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  218.640705][    C2] >ffff888126663b80: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  218.640707][    C2]                    ^
[  218.640709][    C2]  ffff888126663c00: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  218.988653][    C2]  ffff888126663c80: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  219.000772][    C2] 
==================================================================
[  219.013377][    C0] 
==================================================================
[  219.027503][    C0] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  219.036920][    C0]
[  219.040141][    C0] CPU: 0 PID: 12 Comm: ksoftirqd/0 Tainted: G    
B   W         5.13.0-rc6-x86_64 #1
[  219.052977][    C0] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  219.067630][    C0] Call Trace:
[  219.073619][    C0]  dump_stack+0xa1/0xd3
[  219.082313][    C0] print_address_description.constprop.0+0x1d/0x140
[  219.099444][    C0]  ? kfree+0xd7/0x560
[  219.113304][    C0]  kasan_report_invalid_free+0x56/0x80
[  219.128637][    C0]  ? kfree+0xd7/0x560
[  219.139426][    C0]  __kasan_slab_free+0x110/0x140
[  219.139442][    C0]  slab_free_freelist_hook+0x8c/0x1c0
[  219.139448][    C0]  kfree+0xd7/0x560
[  219.139452][    C0]  ? skb_release_data+0x41c/0x520
[  219.139461][    C0]  skb_release_data+0x41c/0x520
[  219.139466][    C0]  __kfree_skb+0x45/0x60
[  219.139471][    C0]  tcp_validate_incoming+0x543/0x1e40
^[M ^[[K[^[[0;1;31m[  219.139478][    C0]  ? __kasan_check_write+0x14/0x20
[  219.139484][    C0]  ? tcp_reset+0x2c0/0x2c0
*^[[0m^[[0;31m*   [  219.139491][    C0]  ? 
xen_clocksource_get_cycles+0x15/0x20
[  219.139495][    C0]  ? ktime_get+0x6b/0x100
  ^[[0m] (2 of 2) [  219.139501][    C0]  ? __kasan_check_write+0x14/0x20
[  219.139506][    C0]  tcp_rcv_established+0x51f/0x20e0
A stop job is ru[  219.139511][    C0]  ? 
__asan_report_load2_noabort+0x14/0x20
[  219.139516][    C0]  ? tcp_parse_md5sig_option+0x105/0x120
nning for …t D[  219.297882][    C0]  ? tcp_data_queue+0x5740/0x5740
[  219.313725][    C0]  ? do_raw_spin_lock+0x13e/0x280
isplay Manager ([  219.329893][    C0]  ? __kasan_check_read+0x11/0x20
[  219.342893][    C0]  tcp_v4_do_rcv+0x4fa/0x760
48s / 1min 30s) [  219.353893][    C0]  tcp_v4_rcv+0x2643/0x3640
[  219.362318][    C0]  ? tcp_v4_early_demux+0x840/0x840

[  219.371313][    C0]  ? __kasan_check_read+0x11/0x20
[  219.380240][    C0]  ip_protocol_deliver_rcu+0x2c/0x1c0
[  219.389736][    C0]  ip_local_deliver_finish+0x1df/0x260
[  219.397933][    C0]  ip_local_deliver+0x1b4/0x3c0
[  219.407219][    C0]  ? ip_local_deliver_finish+0x260/0x260
[  219.415900][    C0]  ? __asan_report_store8_noabort+0x17/0x20
[  219.423642][    C0]  ? tcp_v4_early_demux+0x7ec/0x840
[  219.430968][    C0]  ip_sublist_rcv_finish+0x219/0x480
[  219.438182][    C0]  ip_sublist_rcv+0x4b9/0x820
[  219.443854][    C0]  ? ip_sublist_rcv_finish+0x480/0x480
[  219.450525][    C0]  ? kasan_check_range+0x14f/0x1a0
[  219.456596][    C0]  ? __asan_report_load8_noabort+0x14/0x20
[  219.463212][    C0]  ? ip_rcv_core+0xab8/0xac0
[  219.468590][    C0]  ip_list_rcv+0x2f0/0x4e0
[  219.473707][    C0]  ? xennet_alloc_rx_buffers+0x237/0xae0
[  219.480245][    C0]  ? ip_rcv+0x5e0/0x5e0
[  219.485638][    C0]  __netif_receive_skb_list_core+0x6ae/0xa20
[  219.493448][    C0]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
[  219.505070][    C0]  ? __kasan_check_read+0x11/0x20
[  219.512154][    C0]  ? lock_acquire+0x4b/0x260
[  219.518352][    C0]  ? skb_defer_rx_timestamp+0x2d3/0x380
[  219.527057][    C0] netif_receive_skb_list_internal+0x616/0xd80
[  219.535403][    C0]  ? __netif_receive_skb_list_core+0xa20/0xa20
[  219.542848][    C0]  ? napi_gro_complete.constprop.0.isra.0+0x18f/0x380
[  219.552848][    C0]  ? __kasan_check_write+0x14/0x20
[  219.560714][    C0]  ? napi_gro_flush+0x298/0x3c0
[  219.567818][    C0]  napi_complete_done+0x189/0x600
[  219.575787][    C0]  xennet_poll+0x2447/0x3c80
[  219.582475][    C0]  ? xennet_xdp+0x7e0/0x7e0
[  219.590414][    C0]  ? __kasan_check_read+0x11/0x20
[  219.597687][    C0]  ? lock_release+0xa3/0x820
[  219.604770][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  219.610235][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  219.615892][    C0]  ? __kasan_check_read+0x11/0x20
[  219.621826][    C0]  ? lock_release+0xa3/0x820
[  219.627184][    C0]  ? do_raw_spin_unlock+0x159/0x200
[  219.633183][    C0]  __napi_poll+0xb2/0x4c0
[  219.638404][    C0]  net_rx_action+0x2d7/0xa20
[  219.638413][    C0]  ? call_timer_fn+0x3c0/0x3c0
[  219.638418][    C0]  ? _raw_spin_unlock_irq+0x23/0x40
[  219.638426][    C0]  ? napi_threaded_poll+0x2c0/0x2c0
[  219.638433][    C0]  __do_softirq+0x1cd/0x66d
[  219.638437][    C0]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  219.638444][    C0]  run_ksoftirqd+0x2b/0x40
^[M ^[[K[^[[0m^[[0;3[  219.638448][    C0] smpboot_thread_fn+0x2fb/0x6e0
[  219.638454][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
1m*     ^[[0m] (1[  219.638459][    C0]  ? __kthread_parkme+0x8d/0x120
[  219.638464][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
  of 2) A stop jo[  219.638468][    C0]  ? 
smpboot_register_percpu_thread+0x360/0x360
b is running for[  219.790573][    C0]  kthread+0x32d/0x400
  … 11 of user [  219.799037][    C0]  ? __kthread_bind_mask+0xa0/0xa0
[  219.808029][    C0]  ret_from_fork+0x22/0x30
hakon (47s / 1mi[  219.814353][    C0]
n 29s)
[  219.820408][    C0] Allocated by task 0:
[  219.829480][    C0] (stack is not available)
[  219.837635][    C0]
[  219.841663][    C0] Freed by task 0:
[  219.848159][    C0]  kasan_save_stack+0x23/0x60
[  219.856773][    C0]  kasan_set_track+0x20/0x40
[  219.862659][    C0]  kasan_set_free_info+0x24/0x40
[  219.869510][    C0]  __kasan_slab_free+0xf1/0x140
[  219.876560][    C0]  slab_free_freelist_hook+0x8c/0x1c0
[  219.885463][    C0]  kfree+0xd7/0x560
[  219.890413][    C0]  skb_release_data+0x41c/0x520
[  219.896494][    C0]  kfree_skb+0x105/0x240
[  219.902822][    C0]  xennet_poll+0x1ab2/0x3c80
[  219.910253][    C0]  __napi_poll+0xb2/0x4c0
[  219.916214][    C0]  net_rx_action+0x2d7/0xa20
[  219.923268][    C0]  __do_softirq+0x1cd/0x66d
[  219.930926][    C0]
[  219.934353][    C0] The buggy address belongs to the object at 
ffff888134b77800
[  219.934353][    C0]  which belongs to the cache kmalloc-1k of size 1024
[  219.959545][    C0] The buggy address is located 0 bytes inside of
[  219.959545][    C0]  1024-byte region [ffff888134b77800, 
ffff888134b77c00)
[  219.988126][    C0] The buggy address belongs to the page:
[  220.001334][    C0] page:00000000027e9922 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x134b70
[  220.018854][    C0] head:00000000027e9922 order:3 compound_mapcount:0 
compound_pincount:0
[  220.032958][    C0] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  220.048545][    C0] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  220.059184][    C0] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  220.072393][    C0] page dumped because: kasan: bad access detected
[  220.080501][    C0]
[  220.083922][    C0] Memory state around the buggy address:
[  220.091428][    C0]  ffff888134b77700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  220.102532][    C0]  ffff888134b77780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  220.112722][    C0] >ffff888134b77800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  220.124660][    C0]                    ^
[  220.130466][    C0]  ffff888134b77880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  220.144409][    C0]  ffff888134b77900: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  220.144416][    C0] 
==================================================================
[  220.144456][    C2] 
==================================================================
[  220.144461][    C2] BUG: KASAN: double-free or invalid-free in 
kfree+0xd7/0x560
[  220.144470][    C2]
[  220.144473][    C2] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G B   
W         5.13.0-rc6-x86_64 #1
[  220.144478][    C2] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
^[M ^[[K[^[[0;1;31m[  220.144482][    C2] Call Trace:
[  220.144485][    C2]  <IRQ>
*^[[0m^[[0;31m*   [  220.144489][    C2]  dump_stack+0xa1/0xd3
[  220.283702][    C2] print_address_description.constprop.0+0x1d/0x140
  ^[[0m] (1 of 2) [  220.299859][    C2]  ? kfree+0xd7/0x560
A stop job is ru[  220.311791][    C2] kasan_report_invalid_free+0x56/0x80
[  220.324061][    C2]  ? kfree+0xd7/0x560
nning for … 11[  220.334193][    C2] __kasan_slab_free+0x110/0x140
  of user hakon ([  220.345917][    C2] slab_free_freelist_hook+0x8c/0x1c0
[  220.358159][    C2]  kfree+0xd7/0x560
48s / 1min 29s) [  220.365856][    C2]  ? skb_release_data+0x41c/0x520
[  220.376324][    C2]  ? xennet_poll+0x15d9/0x3c80

[  220.388157][    C2]  ? kmem_cache_free+0x10b/0x520
[  220.395273][    C2]  skb_release_data+0x41c/0x520
[  220.402187][    C2]  ? xennet_poll+0x15d9/0x3c80
[  220.412827][    C2]  ? xennet_poll+0x15d9/0x3c80
[  220.420663][    C2]  kfree_skb+0x105/0x240
[  220.426526][    C2]  xennet_poll+0x15d9/0x3c80
[  220.433255][    C2]  ? xennet_xdp+0x7e0/0x7e0
[  220.440736][    C2]  ? __kasan_check_read+0x11/0x20
[  220.447887][    C2]  ? __raise_softirq_irqoff+0x36/0xe0
[  220.456181][    C2]  ? __napi_schedule+0x1b5/0x260
[  220.465146][    C2]  ? __kasan_check_read+0x11/0x20
[  220.476879][    C2]  ? lock_release+0xa3/0x820
[  220.484656][    C2]  ? do_raw_spin_lock+0x13e/0x280
[  220.491521][    C2]  ? handle_edge_irq+0x35e/0xb60
[  220.498336][    C2]  ? handle_irq_for_port+0x192/0x4c0
[  220.506738][    C2]  ? __kasan_check_write+0x14/0x20
[  220.513630][    C2]  __napi_poll+0xb2/0x4c0
[  220.519833][    C2]  net_rx_action+0x2d7/0xa20
[  220.526776][    C2]  ? napi_threaded_poll+0x2c0/0x2c0
[  220.533872][    C2]  ? __kasan_check_read+0x11/0x20
[  220.540293][    C2]  ? lock_acquire+0x4b/0x260
[  220.545608][    C2]  ? __kasan_check_write+0x14/0x20
[  220.551638][    C2]  ? _raw_read_unlock+0x23/0x40
[  220.557360][    C2]  ? __xen_evtchn_do_upcall+0x107/0x180
[  220.563934][    C2]  __do_softirq+0x1cd/0x66d
[  220.569544][    C2]  irq_exit_rcu+0x12c/0x1c0
[  220.575980][    C2]  sysvec_xen_hvm_callback+0x79/0xa0
[  220.585387][    C2]  </IRQ>
[  220.590639][    C2]  asm_sysvec_xen_hvm_callback+0x12/0x20
[  220.600500][    C2] RIP: 0010:native_safe_halt+0xe/0x20
[  220.608971][    C2] Code: cc cc cc cc cc cc cc cc cc cc cc cc cc cc 
cc cc cc cc cc cc cc cc cc cc cc cc cc cc e9 07 00 00 00 0f 00 2d b4 f4 
49 00 fb f4 <c3> 66 66 2e 0f 1f 84 00 00 00 00 00 66 0f 1f 44 00 00 e9 
07 00 00
[  220.648521][    C2] RSP: 0018:ffffc90000127cf0 EFLAGS: 00000246
[  220.648533][    C2] RAX: 0000000000004000 RBX: ffff88810122b865 RCX: 
ffffffff83dd94c2
[  220.648537][    C2] RDX: 1ffff1102011ea50 RSI: 0000000000000008 RDI: 
ffff8881008f5280
[  220.648540][    C2] RBP: ffffc90000127d00 R08: 0000000000000000 R09: 
ffff8881008f5287
[  220.648543][    C2] R10: ffffed102011ea50 R11: 0000000000000000 R12: 
ffff8881008f5280
[  220.648546][    C2] R13: ffff88810a142000 R14: ffff88810122b864 R15: 
ffffffff8576a6c0
[  220.648554][    C2]  ? acpi_idle_do_entry+0x142/0x1e0
^[M ^[[K[^[[0;31m*^[[  220.648568][    C2]  ? acpi_idle_do_entry+0x166/0x1e0
[  220.648573][    C2]  acpi_idle_enter+0x2ca/0x500
[0;1;31m*^[[0m^[[0[  220.648579][    C2]  ? __kasan_check_write+0x14/0x20
[  220.648586][    C2]  cpuidle_enter_state+0x17c/0xe00
;31m*   ^[[0m] (1[  220.648594][    C2]  cpuidle_enter+0x4f/0xa0
[  220.648599][    C2]  do_idle+0x407/0x5c0
  of 2) A stop jo[  220.648606][    C2]  ? arch_cpu_idle_exit+0x60/0x60
[  220.823219][    C2]  ? _raw_spin_unlock_irqrestore+0x27/0x40
b is running for[  220.838640][    C2]  ? complete+0x5c/0x80
[  220.851481][    C2]  cpu_startup_entry+0x20/0x40
  … 11 of user [  220.866481][    C2]  start_secondary+0x27f/0x360
[  220.880151][    C2]  ? set_cpu_sibling_map+0x2040/0x2040
hakon (48s / 1mi[  220.896471][    C2] 
secondary_startup_64_no_verify+0xb0/0xbb
[  220.908473][    C2]
n 29s)
[  220.912851][    C2] Allocated by task 0:
[  220.919678][    C2] (stack is not available)
[  220.925463][    C2]
[  220.928665][    C2] Freed by task 0:
[  220.933070][    C2]  kasan_save_stack+0x23/0x60
[  220.938743][    C2]  kasan_set_track+0x20/0x40
[  220.944169][    C2]  kasan_set_free_info+0x24/0x40
[  220.949943][    C2]  __kasan_slab_free+0xf1/0x140
[  220.955639][    C2]  slab_free_freelist_hook+0x8c/0x1c0
[  220.962237][    C2]  kfree+0xd7/0x560
[  220.966769][    C2]  skb_release_data+0x41c/0x520
[  220.972706][    C2]  kfree_skb+0x105/0x240
[  220.977795][    C2]  xennet_poll+0x1ab2/0x3c80
[  220.983566][    C2]  __napi_poll+0xb2/0x4c0
[  220.988924][    C2]  net_rx_action+0x2d7/0xa20
[  220.996268][    C2]  __do_softirq+0x1cd/0x66d
[  221.003358][    C2]
[  221.006612][    C2] The buggy address belongs to the object at 
ffff8881263bf800
[  221.006612][    C2]  which belongs to the cache kmalloc-1k of size 1024
[  221.029471][    C2] The buggy address is located 0 bytes inside of
[  221.029471][    C2]  1024-byte region [ffff8881263bf800, 
ffff8881263bfc00)
[  221.063503][    C2] The buggy address belongs to the page:
[  221.080451][    C2] page:0000000032a6c71b refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x1263b8
[  221.098138][    C2] head:0000000032a6c71b order:3 compound_mapcount:0 
compound_pincount:0
[  221.114383][    C2] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  221.127696][    C2] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff888100042dc0
[  221.141318][    C2] raw: 0000000000000000 0000000000100010 
00000001ffffffff 0000000000000000
[  221.141324][    C2] page dumped because: kasan: bad access detected
[  221.141327][    C2]
[  221.141329][    C2] Memory state around the buggy address:
[  221.141332][    C2]  ffff8881263bf700: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  221.141335][    C2]  ffff8881263bf780: fc fc fc fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  221.141338][    C2] >ffff8881263bf800: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
^[M ^[[K[ ^[[0;31m*[  221.141340][    C2]                    ^
[  221.141343][    C2]  ffff8881263bf880: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
^[[0;1;31m*^[[0m^[[[  221.141346][    C2]  ffff8881263bf900: fb fb fb fb fb 
fb fb fb fb fb fb fb fb fb fb fb
[  221.141348][    C2] 
==================================================================
[  221.141389][    C0] 
==================================================================
0;31m*  ^[[0m] (2[  221.329937][    C0] BUG: KASAN: double-free or 
invalid-free in kmem_cache_free+0x10b/0x520
[  221.341736][    C0]
  of 2) A stop jo[  221.344711][    C0] CPU: 0 PID: 12 Comm: ksoftirqd/0 
Tainted: G    B   W         5.13.0-rc6-x86_64 #1
[  221.357250][    C0] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
b is running for[  221.368680][    C0] Call Trace:
[  221.377150][    C0]  dump_stack+0xa1/0xd3
  …t Display Ma[  221.384252][    C0] 
print_address_description.constprop.0+0x1d/0x140
[  221.396446][    C0]  ? kmem_cache_free+0x10b/0x520
nager (50s / 1mi[  221.407453][    C0] kasan_report_invalid_free+0x56/0x80
n 30s)
[  221.419965][    C0]  ? kmem_cache_free+0x10b/0x520
[  221.428553][    C0]  __kasan_slab_free+0x110/0x140
[  221.435422][    C0]  slab_free_freelist_hook+0x8c/0x1c0
[  221.443433][    C0]  kmem_cache_free+0x10b/0x520
[  221.450874][    C0]  ? kfree_skbmem+0x9a/0x140
[  221.458747][    C0]  kfree_skbmem+0x9a/0x140
[  221.464587][    C0]  __kfree_skb+0x4d/0x60
[  221.474434][    C0]  tcp_validate_incoming+0x543/0x1e40
[  221.485158][    C0]  ? __kasan_check_write+0x14/0x20
[  221.492922][    C0]  ? tcp_reset+0x2c0/0x2c0
[  221.499125][    C0]  ? xen_clocksource_get_cycles+0x15/0x20
[  221.506601][    C0]  ? ktime_get+0x6b/0x100
[  221.511967][    C0]  ? __kasan_check_write+0x14/0x20
[  221.519218][    C0]  tcp_rcv_established+0x51f/0x20e0
[  221.527972][    C0]  ? __asan_report_load2_noabort+0x14/0x20
[  221.536085][    C0]  ? tcp_parse_md5sig_option+0x105/0x120
[  221.545260][    C0]  ? tcp_data_queue+0x5740/0x5740
[  221.552573][    C0]  ? do_raw_spin_lock+0x13e/0x280
[  221.560259][    C0]  ? __kasan_check_read+0x11/0x20
[  221.569101][    C0]  tcp_v4_do_rcv+0x4fa/0x760
[  221.578037][    C0]  tcp_v4_rcv+0x2643/0x3640
[  221.585539][    C0]  ? tcp_v4_early_demux+0x840/0x840
[  221.594367][    C0]  ? __kasan_check_read+0x11/0x20
[  221.601892][    C0]  ip_protocol_deliver_rcu+0x2c/0x1c0
[  221.609841][    C0]  ip_local_deliver_finish+0x1df/0x260
[  221.618530][    C0]  ip_local_deliver+0x1b4/0x3c0
[  221.628604][    C0]  ? ip_local_deliver_finish+0x260/0x260
[  221.641821][    C0]  ? __asan_report_store8_noabort+0x17/0x20
[  221.641837][    C0]  ? tcp_v4_early_demux+0x7ec/0x840
[  221.641846][    C0]  ip_sublist_rcv_finish+0x219/0x480
[  221.641854][    C0]  ip_sublist_rcv+0x4b9/0x820
[  221.641860][    C0]  ? ip_sublist_rcv_finish+0x480/0x480
[  221.641865][    C0]  ? kasan_check_range+0x14f/0x1a0
[  221.641871][    C0]  ? __asan_report_load8_noabort+0x14/0x20
^[M ^[[K[  ^[[0;31m[  221.641876][    C0]  ? ip_rcv_core+0xab8/0xac0
[  221.641882][    C0]  ip_list_rcv+0x2f0/0x4e0
*^[[0;1;31m*^[[0m^[[  221.641886][    C0]  ? 
xennet_alloc_rx_buffers+0x237/0xae0
[  221.641894][    C0]  ? ip_rcv+0x5e0/0x5e0
[0;31m* ^[[0m] (2[  221.641900][    C0] 
__netif_receive_skb_list_core+0x6ae/0xa20
[  221.641908][    C0]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
  of 2) A stop jo[  221.641913][    C0]  ? __kasan_check_read+0x11/0x20
[  221.641918][    C0]  ? lock_acquire+0x4b/0x260
b is running for[  221.788087][    C0]  ? 
skb_defer_rx_timestamp+0x2d3/0x380
[  221.796345][    C0] netif_receive_skb_list_internal+0x616/0xd80
  …t Display Ma[  221.804650][    C0]  ? 
__netif_receive_skb_list_core+0xa20/0xa20
nager (50s / 1mi[  221.816777][    C0]  ? 
napi_gro_complete.constprop.0.isra.0+0x18f/0x380
[  221.832765][    C0]  ? __kasan_check_write+0x14/0x20
n 30s)
[  221.845992][    C0]  ? napi_gro_flush+0x298/0x3c0
[  221.856509][    C0]  napi_complete_done+0x189/0x600
[  221.864674][    C0]  xennet_poll+0x2447/0x3c80
[  221.872260][    C0]  ? xennet_xdp+0x7e0/0x7e0
[  221.877709][    C0]  ? __kasan_check_read+0x11/0x20
[  221.883665][    C0]  ? lock_release+0xa3/0x820
[  221.889528][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  221.895396][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  221.901237][    C0]  ? __kasan_check_read+0x11/0x20
[  221.907269][    C0]  ? lock_release+0xa3/0x820
[  221.912657][    C0]  ? do_raw_spin_unlock+0x159/0x200
[  221.918827][    C0]  __napi_poll+0xb2/0x4c0
[  221.923961][    C0]  net_rx_action+0x2d7/0xa20
[  221.929505][    C0]  ? call_timer_fn+0x3c0/0x3c0
[  221.935254][    C0]  ? _raw_spin_unlock_irq+0x23/0x40
[  221.941511][    C0]  ? napi_threaded_poll+0x2c0/0x2c0
[  221.949956][    C0]  __do_softirq+0x1cd/0x66d
[  221.956378][    C0]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  221.965444][    C0]  run_ksoftirqd+0x2b/0x40
[  221.972307][    C0]  smpboot_thread_fn+0x2fb/0x6e0
[  221.979773][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  221.993144][    C0]  ? __kthread_parkme+0x8d/0x120
[  222.004406][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  222.018319][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  222.034503][    C0]  kthread+0x32d/0x400
[  222.044564][    C0]  ? __kthread_bind_mask+0xa0/0xa0
[  222.051098][    C0]  ret_from_fork+0x22/0x30
[  222.056623][    C0]
[  222.059448][    C0] Allocated by task 0:
[  222.065563][    C0]  kasan_save_stack+0x23/0x60
[  222.071945][    C0]  __kasan_slab_alloc+0x68/0x80
[  222.078283][    C0]  kmem_cache_alloc_node+0x242/0x380
[  222.084876][    C0]  __alloc_skb+0x156/0x280
[  222.090710][    C0]  __netdev_alloc_skb+0x46/0x320
[  222.097522][    C0]  xennet_alloc_rx_buffers+0x237/0xae0
[  222.105505][    C0]  xennet_poll+0x1e8b/0x3c80
[  222.111276][    C0]  __napi_poll+0xb2/0x4c0
[  222.116938][    C0]  net_rx_action+0x2d7/0xa20
[  222.123107][    C0]  __do_softirq+0x1cd/0x66d
[  222.128925][    C0]
[  222.132287][    C0] Freed by task 881776:
[  222.138150][    C0] ------------[ cut here ]------------
[  222.138153][    C0] slab index 2083072 out of bounds (278) for stack 
id ffffc900
[  222.138175][    C0] WARNING: CPU: 0 PID: 12 at lib/stackdepot.c:236 
stack_depot_fetch+0x71/0xa0
[  222.138186][    C0] Modules linked in: xen_front_pgdir_shbuf 
xen_scsifront snd_hda_codec_hdmi snd_hda_intel snd_intel_dspcfg 
snd_hda_codec snd_hda_core snd_hwdep snd_pcm snd_timer snd soundcore 
hid_generic usbhid hid xen_kbdfront intel_rapl_msr atkbd 
intel_rapl_common amdgpu drm_ttm_helper ttm gpu_sched xhci_pci xhci_hcd 
usbcore [last unloaded: usbip_core]
[  222.224375][    C0] CPU: 0 PID: 12 Comm: ksoftirqd/0 Tainted: G    
B   W         5.13.0-rc6-x86_64 #1
[  222.244580][    C0] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  222.253384][    C0] RIP: 0010:stack_depot_fetch+0x71/0xa0
^[M ^[[K[   ^[[0;31[  222.260465][    C0] Code: 48 c1 e0 04 25 f0 3f 00 00 
48 01 c2 48 8d 42 18 48 89 03 48 8b 5d f8 8b 42 0c c9 c3 89 f9 48 c7 c7 
48 85 bb 84 e8 2d bf 3b 01 <0f> 0b 31 c0 48 8b 5d f8 c9 c3 48 8b 5d f8 
31 c0 c9 c3 48 c7 c7 a0
[  222.285208][    C0] RSP: 0018:ffffc900000d6c80 EFLAGS: 00010086
m*^[[0;1;31m*^[[0m[  222.293281][    C0] RAX: 0000000000000000 RBX: 
ffffc900000d6ca8 RCX: 0000000000000000
[  222.306257][    C0] RDX: 0000000000000027 RSI: 0000000000000004 RDI: 
fffff5200001ad82
^[[0;31m*^[[0m] (2[  222.317154][    C0] RBP: ffffc900000d6c98 R08: 
0000000000000001 R09: ffff8884d382091b
[  222.331541][    C0] R10: ffffed109a704123 R11: 0000000000000007 R12: 
ffff888125a123c0
  of 2) A stop job is running for[  222.345035][    C0] R13: 
ffffea0004968480 R14: ffff888125a123c0 R15: ffff888125a12498
[  222.360409][    C0] FS:  0000000000000000(0000) 
GS:ffff8884d3800000(0000) knlGS:0000000000000000
  …t Display Ma[  222.373111][    C0] CS:  0010 DS: 0000 ES: 0000 CR0: 
0000000080050033
[  222.390751][    C0] CR2: 000056104ce6e020 CR3: 0000000121a0e002 CR4: 
00000000001706f0
nager (51s / 1min 30s)
[  222.410775][    C0] Call Trace:
[  222.421021][    C0]  print_stack+0xe/0x1d
[  222.427927][    C0]  print_track+0x22/0x33
[  222.435329][    C0] 
print_address_description.constprop.0.cold+0x3c/0x179
[  222.446384][    C0]  ? kmem_cache_free+0x10b/0x520
[  222.453019][    C0]  kasan_report_invalid_free+0x56/0x80
[  222.461900][    C0]  ? kmem_cache_free+0x10b/0x520
[  222.470151][    C0]  __kasan_slab_free+0x110/0x140
[  222.478185][    C0]  slab_free_freelist_hook+0x8c/0x1c0
[  222.487662][    C0]  kmem_cache_free+0x10b/0x520
[  222.496046][    C0]  ? kfree_skbmem+0x9a/0x140
[  222.504214][    C0]  kfree_skbmem+0x9a/0x140
[  222.511698][    C0]  __kfree_skb+0x4d/0x60
[  222.519142][    C0]  tcp_validate_incoming+0x543/0x1e40
[  222.528397][    C0]  ? __kasan_check_write+0x14/0x20
[  222.537268][    C0]  ? tcp_reset+0x2c0/0x2c0
[  222.544138][    C0]  ? xen_clocksource_get_cycles+0x15/0x20
[  222.554239][    C0]  ? ktime_get+0x6b/0x100
[  222.562508][    C0]  ? __kasan_check_write+0x14/0x20
[  222.573110][    C0]  tcp_rcv_established+0x51f/0x20e0
[  222.587242][    C0]  ? __asan_report_load2_noabort+0x14/0x20
[  222.604554][    C0]  ? tcp_parse_md5sig_option+0x105/0x120
[  222.620484][    C0]  ? tcp_data_queue+0x5740/0x5740
[  222.635582][    C0]  ? do_raw_spin_lock+0x13e/0x280
[  222.635600][    C0]  ? __kasan_check_read+0x11/0x20
[  222.635608][    C0]  tcp_v4_do_rcv+0x4fa/0x760
[  222.635616][    C0]  tcp_v4_rcv+0x2643/0x3640
[  222.635653][    C0]  ? tcp_v4_early_demux+0x840/0x840
[  222.682168][    C0]  ? __kasan_check_read+0x11/0x20
[  222.690315][    C0]  ip_protocol_deliver_rcu+0x2c/0x1c0
^[M ^[[K[    ^[[0;3[  222.700572][    C0] ip_local_deliver_finish+0x1df/0x260
[  222.712227][    C0]  ip_local_deliver+0x1b4/0x3c0
1m*^[[0;1;31m*^[[0m] (1 of 2) A st[  222.722843][    C0]  ? 
ip_local_deliver_finish+0x260/0x260
[  222.735549][    C0]  ? __asan_report_store8_noabort+0x17/0x20
[  222.744743][    C0]  ? tcp_v4_early_demux+0x7ec/0x840
op job is runnin[  222.756120][    C0] ip_sublist_rcv_finish+0x219/0x480
[  222.771322][    C0]  ip_sublist_rcv+0x4b9/0x820
g for … 11 of [  222.786919][    C0]  ? ip_sublist_rcv_finish+0x480/0x480
user hakon (50s [  222.808808][    C0]  ? kasan_check_range+0x14f/0x1a0
/ 1min 29s)
[  222.829216][    C0]  ? __asan_report_load8_noabort+0x14/0x20
[  222.843889][    C0]  ? ip_rcv_core+0xab8/0xac0
[  222.854497][    C0]  ip_list_rcv+0x2f0/0x4e0
[  222.864301][    C0]  ? xennet_alloc_rx_buffers+0x237/0xae0
[  222.877084][    C0]  ? ip_rcv+0x5e0/0x5e0
[  222.888175][    C0]  __netif_receive_skb_list_core+0x6ae/0xa20
[  222.902120][    C0]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
[  222.920250][    C0]  ? __kasan_check_read+0x11/0x20
[  222.930324][    C0]  ? lock_acquire+0x4b/0x260
[  222.937572][    C0]  ? skb_defer_rx_timestamp+0x2d3/0x380
[  222.946548][    C0] netif_receive_skb_list_internal+0x616/0xd80
[  222.957698][    C0]  ? __netif_receive_skb_list_core+0xa20/0xa20
[  222.971138][    C0]  ? napi_gro_complete.constprop.0.isra.0+0x18f/0x380
[  222.985056][    C0]  ? __kasan_check_write+0x14/0x20
[  222.998333][    C0]  ? napi_gro_flush+0x298/0x3c0
[  223.008145][    C0]  napi_complete_done+0x189/0x600
[  223.019542][    C0]  xennet_poll+0x2447/0x3c80
[  223.033816][    C0]  ? xennet_xdp+0x7e0/0x7e0
[  223.047087][    C0]  ? __kasan_check_read+0x11/0x20
[  223.060573][    C0]  ? lock_release+0xa3/0x820
[  223.069336][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  223.077566][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  223.088149][    C0]  ? __kasan_check_read+0x11/0x20
[  223.100391][    C0]  ? lock_release+0xa3/0x820
[  223.111366][    C0]  ? do_raw_spin_unlock+0x159/0x200
[  223.123314][    C0]  __napi_poll+0xb2/0x4c0
[  223.132415][    C0]  net_rx_action+0x2d7/0xa20
[  223.142731][    C0]  ? call_timer_fn+0x3c0/0x3c0
[  223.142745][    C0]  ? _raw_spin_unlock_irq+0x23/0x40
[  223.142754][    C0]  ? napi_threaded_poll+0x2c0/0x2c0
[  223.142763][    C0]  __do_softirq+0x1cd/0x66d
[  223.142769][    C0]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  223.142776][    C0]  run_ksoftirqd+0x2b/0x40
[  223.142780][    C0]  smpboot_thread_fn+0x2fb/0x6e0
^[M ^[[K[     ^[[0;[  223.142787][    C0]  ? 
smpboot_register_percpu_thread+0x360/0x360
[  223.142791][    C0]  ? __kthread_parkme+0x8d/0x120
31m*^[[0m] (1 of [  223.142796][    C0]  ? 
smpboot_register_percpu_thread+0x360/0x360
[  223.142800][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
2) A stop job is[  223.142806][    C0]  kthread+0x32d/0x400
[  223.142810][    C0]  ? __kthread_bind_mask+0xa0/0xa0
  running for …[  223.142815][    C0]  ret_from_fork+0x22/0x30
[  223.142824][    C0] ---[ end trace 3841665df6b692d5 ]---
  11 of user hako[  223.354520][    C0] ------------[ cut here 
]------------
[  223.368512][    C0] WARNING: CPU: 0 PID: 12 at kernel/stacktrace.c:28 
stack_trace_print+0xf/0x40
n (51s / 1min 29[  223.394289][    C0] Modules linked in: 
xen_front_pgdir_shbuf xen_scsifront snd_hda_codec_hdmi snd_hda_intel 
snd_intel_dspcfg snd_hda_codec snd_hda_core snd_hwdep snd_pcm snd_timer 
snd soundcore hid_generic usbhid hid xen_kbdfront intel_rapl_msr atkbd 
intel_rapl_common amdgpu drm_ttm_helper ttm gpu_sched xhci_pci xhci_hcd 
usbcore [last unloaded: usbip_core]
[  223.488775][    C0] CPU: 0 PID: 12 Comm: ksoftirqd/0 Tainted: G    
B   W         5.13.0-rc6-x86_64 #1
s)
[  223.513458][    C0] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  223.527568][    C0] RIP: 0010:stack_trace_print+0xf/0x40
[  223.537471][    C0] Code: 48 8b 55 f0 65 48 2b 14 25 28 00 00 00 75 
06 48 8b 5d f8 c9 c3 e8 e1 3e 84 02 90 0f 1f 44 00 00 48 85 ff 74 05 85 
f6 75 04 c3 <0f> 0b c3 55 48 89 e5 41 56 41 55 41 54 53 e9 66 c8 71 02 
66 66 2e
[  223.579298][    C0] RSP: 0018:ffffc900000d6ca0 EFLAGS: 00010046
[  223.593278][    C0] RAX: 0000000000000000 RBX: ffff888125a123c8 RCX: 
0000000000000000
[  223.610232][    C0] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 
0000000000000000
[  223.627455][    C0] RBP: ffffc900000d6cb0 R08: 0000000000000001 R09: 
ffff8884d382091b
[  223.648295][    C0] R10: ffffed109a704123 R11: 0000000000000007 R12: 
ffff888125a123c0
[  223.648304][    C0] R13: ffffea0004968480 R14: ffff888125a123c0 R15: 
ffff888125a12498
[  223.648307][    C0] FS:  0000000000000000(0000) 
GS:ffff8884d3800000(0000) knlGS:0000000000000000
[  223.648312][    C0] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  223.648315][    C0] CR2: 000056104ce6e020 CR3: 0000000121a0e002 CR4: 
00000000001706f0
[  223.648322][    C0] Call Trace:
[  223.648326][    C0]  ? print_stack+0x1b/0x1d
^[M ^[[K[    ^[[0;3[  223.648339][    C0]  print_track+0x22/0x33
[  223.648344][    C0] 
print_address_description.constprop.0.cold+0x3c/0x179
1m*^[[0;1;31m*^[[0m] (1 of 2) A st[  223.648350][    C0]  ? 
kmem_cache_free+0x10b/0x520
[  223.804629][    C0]  kasan_report_invalid_free+0x56/0x80
[  223.814500][    C0]  ? kmem_cache_free+0x10b/0x520
op job is runnin[  223.826720][    C0] __kasan_slab_free+0x110/0x140
[  223.837437][    C0]  slab_free_freelist_hook+0x8c/0x1c0
g for … 11 of [  223.847922][    C0]  kmem_cache_free+0x10b/0x520
[  223.868161][    C0]  ? kfree_skbmem+0x9a/0x140
user hakon (51s [  223.884154][    C0]  kfree_skbmem+0x9a/0x140
[  223.900176][    C0]  __kfree_skb+0x4d/0x60
/ 1min 29s)
[  223.912885][    C0]  tcp_validate_incoming+0x543/0x1e40
[  223.926020][    C0]  ? __kasan_check_write+0x14/0x20
[  223.934915][    C0]  ? tcp_reset+0x2c0/0x2c0
[  223.943623][    C0]  ? xen_clocksource_get_cycles+0x15/0x20
[  223.954404][    C0]  ? ktime_get+0x6b/0x100
[  223.962118][    C0]  ? __kasan_check_write+0x14/0x20
[  223.971530][    C0]  tcp_rcv_established+0x51f/0x20e0
[  223.980749][    C0]  ? __asan_report_load2_noabort+0x14/0x20
[  223.992645][    C0]  ? tcp_parse_md5sig_option+0x105/0x120
[  224.003425][    C0]  ? tcp_data_queue+0x5740/0x5740
[  224.013820][    C0]  ? do_raw_spin_lock+0x13e/0x280
[  224.025448][    C0]  ? __kasan_check_read+0x11/0x20
[  224.035386][    C0]  tcp_v4_do_rcv+0x4fa/0x760
[  224.044517][    C0]  tcp_v4_rcv+0x2643/0x3640
[  224.053684][    C0]  ? tcp_v4_early_demux+0x840/0x840
[  224.067321][    C0]  ? __kasan_check_read+0x11/0x20
[  224.082495][    C0]  ip_protocol_deliver_rcu+0x2c/0x1c0
[  224.098714][    C0]  ip_local_deliver_finish+0x1df/0x260
[  224.114575][    C0]  ip_local_deliver+0x1b4/0x3c0
[  224.128460][    C0]  ? ip_local_deliver_finish+0x260/0x260
[  224.139707][    C0]  ? __asan_report_store8_noabort+0x17/0x20
[  224.139724][    C0]  ? tcp_v4_early_demux+0x7ec/0x840
[  224.139732][    C0]  ip_sublist_rcv_finish+0x219/0x480
[  224.139740][    C0]  ip_sublist_rcv+0x4b9/0x820
[  224.139747][    C0]  ? ip_sublist_rcv_finish+0x480/0x480
[  224.139752][    C0]  ? kasan_check_range+0x14f/0x1a0
[  224.139758][    C0]  ? __asan_report_load8_noabort+0x14/0x20
^[M ^[[K[   ^[[0;31[  224.139763][    C0]  ? ip_rcv_core+0xab8/0xac0
[  224.139769][    C0]  ip_list_rcv+0x2f0/0x4e0
m*^[[0;1;31m*^[[0m[  224.139773][    C0]  ? 
xennet_alloc_rx_buffers+0x237/0xae0
[  224.139781][    C0]  ? ip_rcv+0x5e0/0x5e0
^[[0;31m*^[[0m] (2[  224.139787][    C0] 
__netif_receive_skb_list_core+0x6ae/0xa20
[  224.139795][    C0]  ? 
__netif_receive_skb_core.constprop.0+0x31c0/0x31c0
  of 2) A stop jo[  224.139800][    C0]  ? __kasan_check_read+0x11/0x20
b is running for[  224.317090][    C0]  ? lock_acquire+0x4b/0x260
[  224.332689][    C0]  ? skb_defer_rx_timestamp+0x2d3/0x380
  …t Display Ma[  224.346416][    C0] 
netif_receive_skb_list_internal+0x616/0xd80
[  224.362780][    C0]  ? __netif_receive_skb_list_core+0xa20/0xa20
nager (53s / 1mi[  224.379090][    C0]  ? 
napi_gro_complete.constprop.0.isra.0+0x18f/0x380
[  224.395485][    C0]  ? __kasan_check_write+0x14/0x20
[  224.406125][    C0]  ? napi_gro_flush+0x298/0x3c0
n 30s)
[  224.418245][    C0]  napi_complete_done+0x189/0x600
[  224.429697][    C0]  xennet_poll+0x2447/0x3c80
[  224.439312][    C0]  ? xennet_xdp+0x7e0/0x7e0
[  224.446881][    C0]  ? __kasan_check_read+0x11/0x20
[  224.457506][    C0]  ? lock_release+0xa3/0x820
[  224.465342][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  224.475513][    C0]  ? lock_downgrade+0x7e0/0x7e0
[  224.483278][    C0]  ? __kasan_check_read+0x11/0x20
[  224.494173][    C0]  ? lock_release+0xa3/0x820
[  224.505905][    C0]  ? do_raw_spin_unlock+0x159/0x200
[  224.518074][    C0]  __napi_poll+0xb2/0x4c0
[  224.533333][    C0]  net_rx_action+0x2d7/0xa20
[  224.547891][    C0]  ? call_timer_fn+0x3c0/0x3c0
[  224.559371][    C0]  ? _raw_spin_unlock_irq+0x23/0x40
[  224.568377][    C0]  ? napi_threaded_poll+0x2c0/0x2c0
[  224.578984][    C0]  __do_softirq+0x1cd/0x66d
[  224.588373][    C0]  ? perf_trace_irq_handler_entry+0x4a0/0x4a0
[  224.598207][    C0]  run_ksoftirqd+0x2b/0x40
[  224.605831][    C0]  smpboot_thread_fn+0x2fb/0x6e0
[  224.614088][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  224.625115][    C0]  ? __kthread_parkme+0x8d/0x120
[  224.633499][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  224.645226][    C0]  ? smpboot_register_percpu_thread+0x360/0x360
[  224.645242][    C0]  kthread+0x32d/0x400
[  224.645249][    C0]  ? __kthread_bind_mask+0xa0/0xa0
[  224.645254][    C0]  ret_from_fork+0x22/0x30
[  224.645264][    C0] ---[ end trace 3841665df6b692d6 ]---
[  224.645268][    C0]
[  224.645271][    C0] The buggy address belongs to the object at 
ffff888125a123c0
[  224.645271][    C0]  which belongs to the cache skbuff_head_cache of 
size 216
[  224.645275][    C0] The buggy address is located 0 bytes inside of
[  224.645275][    C0]  216-byte region [ffff888125a123c0, 
ffff888125a12498)
[  224.645279][    C0] The buggy address belongs to the page:
[  224.645282][    C0] page:000000004ad1a198 refcount:1 mapcount:0 
mapping:0000000000000000 index:0x0 pfn:0x125a12
[  224.645287][    C0] head:000000004ad1a198 order:1 compound_mapcount:0
[  224.645290][    C0] memcg:ffff888135827401
[  224.645292][    C0] flags: 
0x2fffc0000010200(slab|head|node=0|zone=2|lastcpupid=0x3fff)
[  224.645300][    C0] raw: 02fffc0000010200 dead000000000100 
dead000000000122 ffff8881002a3e00
[  224.645304][    C0] raw: 0000000000000000 0000000000190019 
00000001ffffffff ffff888135827401
[  224.645306][    C0] page dumped because: kasan: bad access detected
[  224.645308][    C0]
[  224.645309][    C0] Memory state around the buggy address:
[  224.645312][    C0]  ffff888125a12280: fa fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  224.645315][    C0]  ffff888125a12300: fb fb fb fb fb fb fb fb fb fb 
fb fc fc fc fc fc
[  224.645317][    C0] >ffff888125a12380: fc fc fc fc fc fc fc fc fa fb 
fb fb fb fb fb fb
[  224.645319][    C0] ^
[  224.645322][    C0]  ffff888125a12400: fb fb fb fb fb fb fb fb fb fb 
fb fb fb fb fb fb
[  224.645325][    C0]  ffff888125a12480: fb fb fb fc fc fc fc fc fc fc 
fc fc fc fc fc fc
[  224.645327][    C0] 
==================================================================
[  224.645359][    C2] 
==================================================================
[  224.649156][ T2950] usercopy: Kernel memory exposure attempt detected 
from SLUB object 'kmalloc-64' (offset 0, size 2706)!
[  224.649175][ T2950] ------------[ cut here ]------------
[  224.649177][ T2950] kernel BUG at mm/usercopy.c:99!
[  224.649185][ T2950] invalid opcode: 0000 [#1] SMP KASAN NOPTI
[  224.649193][ T2950] CPU: 5 PID: 2950 Comm: kworker/u13:1 Tainted: 
G    B   W         5.13.0-rc6-x86_64 #1
[  224.649198][ T2950] Hardware name: Xen HVM domU, BIOS 4.15.1-pre 
06/12/2021
[  224.649201][ T2950] Workqueue: xprtiod xs_stream_data_receive_workfn
[  224.649213][ T2950] RIP: 0010:usercopy_abort+0x7b/0x7d
[  224.649228][ T2950] Code: 35 84 51 48 0f 44 d6 49 c7 c3 00 96 35 84 
50 4c 89 d1 48 c7 c6 80 95 35 84 57 48 c7 c7 20 97 35 84 49 0f 44 f3 e8 
c7 33 fe ff <0f> 0b e8 01 cb d9 fd 4c 89 e1 49 89 d8 44 89 ea 48 81 e9 
00 00 00
[  224.649233][ T2950] RSP: 0018:ffffc90000f8f588 EFLAGS: 00010282
[  224.649237][ T2950] RAX: 0000000000000066 RBX: ffff888100042640 RCX: 
0000000000000000
[  224.649244][ T2950] RDX: 0000000000000004 RSI: 0000000000000008 RDI: 
fffff520001f1ea4
[  224.649247][ T2950] RBP: ffffc90000f8f5a0 R08: 0000000000000066 R09: 
ffff8884d3ab0d47
[  224.649250][ T2950] R10: ffffed109a7561a8 R11: 000000000000006a R12: 
0000000000000001
[  224.649253][ T2950] R13: 0000000000000040 R14: 0000000000000001 R15: 
ffffea000441bf80
[  224.649255][ T2950] FS:  0000000000000000(0000) 
GS:ffff8884d3a80000(0000) knlGS:0000000000000000
[  224.649259][ T2950] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  224.649262][ T2950] CR2: 00007fd56ff179d8 CR3: 0000000111ca8001 CR4: 
00000000001706e0
[  224.649268][ T2950] Call Trace:
[  224.649271][ T2950]  __check_heap_object+0x122/0x160
[  224.649277][ T2950]  ? kmem_cache_free+0x10b/0x520
[  224.649282][ T2950]  __check_object_size+0x1e5/0x280
[  224.649289][ T2950]  simple_copy_to_iter+0x2b/0x60
[  224.649296][ T2950]  __skb_datagram_iter+0x315/0x720
[  224.649302][ T2950]  ? zerocopy_sg_from_iter+0x100/0x100
[  224.649308][ T2950]  skb_copy_datagram_iter+0x92/0x160
[  224.649313][ T2950]  tcp_recvmsg_locked+0xcd9/0x2300
[  224.649323][ T2950]  ? tcp_splice_read+0x920/0x920
[  224.649327][ T2950]  ? __kasan_check_read+0x11/0x20
[  224.649332][ T2950]  ? lock_acquire+0x4b/0x260
[  224.649339][ T2950]  tcp_recvmsg+0x11c/0x4a0
[  224.649344][ T2950]  ? tcp_recvmsg_locked+0x2300/0x2300
[  224.649349][ T2950]  ? do_raw_spin_unlock+0x159/0x200
[  224.649353][ T2950]  ? _raw_spin_unlock_bh+0x31/0x40
[  224.649360][ T2950]  ? tcp_recvmsg+0x3c0/0x4a0
[  224.649365][ T2950]  inet_recvmsg+0x111/0x4e0
[  224.649370][ T2950]  ? inet_sendpage+0x140/0x140
[  224.649375][ T2950]  ? lock_release+0xa3/0x820
[  224.649378][ T2950]  ? lock_release+0xa3/0x820
[  224.649382][ T2950]  ? inet_sendpage+0x140/0x140
[  224.649386][ T2950]  sock_recvmsg+0xf0/0x140
[  224.649392][ T2950] xs_read_stream_request.constprop.0+0x5fd/0xe80
[  224.649397][ T2950]  ? lock_downgrade+0x7e0/0x7e0
[  224.649404][ T2950]  xs_read_stream.constprop.0+0x4fb/0xea0
[  224.649410][ T2950]  ? xs_setup_local+0x840/0x840
[  224.649414][ T2950]  ? __kasan_check_read+0x11/0x20
[  224.649421][ T2950]  ? lock_downgrade+0x7e0/0x7e0
[  224.649426][ T2950]  xs_stream_data_receive_workfn+0xfd/0x340
[  224.649432][ T2950]  process_one_work+0x801/0x1360
[  224.649438][ T2950]  ? pwq_dec_nr_in_flight+0x300/0x300
[  224.649441][ T2950]  ? do_raw_spin_lock+0x13e/0x280
[  224.649446][ T2950]  ? __kasan_check_read+0x11/0x20
[  224.649450][ T2950]  ? lock_acquire+0x4b/0x260
[  224.649455][ T2950]  worker_thread+0x54f/0xf40
[  224.649461][ T2950]  ? process_one_work+0x1360/0x1360
[  224.649465][ T2950]  kthread+0x32d/0x400


--- console log ends ---

dom0 log: (the dumU in question has to be d7 I believe)

---


2021-06-15 00:37:01 ---MARK---
(XEN) [2021-06-14 23:00:01] HVM d7v0 save: CPU
(XEN) [2021-06-14 23:00:01] HVM d7v1 save: CPU
(XEN) [2021-06-14 23:00:01] HVM d7v2 save: CPU
(XEN) [2021-06-14 23:00:01] HVM d7v3 save: CPU
(XEN) [2021-06-14 23:00:01] HVM d7v4 save: CPU
(XEN) [2021-06-14 23:00:01] HVM d7v5 save: CPU
(XEN) [2021-06-14 23:00:01] HVM d7 save: PIC
(XEN) [2021-06-14 23:00:01] HVM d7 save: IOAPIC
(XEN) [2021-06-14 23:00:01] HVM d7v0 save: LAPIC
(XEN) [2021-06-14 23:00:01] HVM d7v1 save: LAPIC
(XEN) [2021-06-14 23:00:06] printk: 55 messages suppressed.
(XEN) [2021-06-14 23:00:06] [VT-D] It's risky to assign 0000:04:00.0 
with shared RMRR at 7db85000 for d7.
(XEN) [2021-06-14 23:00:20] printk: 158 messages suppressed.
(XEN) [2021-06-14 23:00:20] Dom7 callback via changed to Direct Vector 0xf3
(XEN) [2021-06-14 23:00:24] memory_map:remove: dom7 gfn=530d0 mfn=c6b00 
nr=2
(XEN) [2021-06-14 23:00:24] memory_map:remove: dom7 gfn=530d3 mfn=c6b03 
nr=5
(XEN) [2021-06-14 23:00:26] printk: 124 messages suppressed.
(XEN) [2021-06-14 23:00:26] stdvga.c:178:d7v0 leaving stdvga mode
(XEN) [2021-06-14 23:00:32] printk: 6 messages suppressed.
(XEN) [2021-06-14 23:00:32] grant_table.c:1861:d7v2 Expanding d7 grant 
table from 5 to 6 frames
(XEN) [2021-06-14 23:00:38] memory_map:add: dom7 gfn=530a0 mfn=fbd40 nr=20
change evtmask to 0xffffff
change cpumask to 0xffff
(XEN) [2021-06-14 23:02:08] printk: 8 messages suppressed.
(XEN) [2021-06-14 23:02:08] xentrace: requesting 1 t_info pages for 32 
trace pages on 12 cpus
(XEN) [2021-06-14 23:02:08] xentrace: p0 mfn 160cbfc offset 129
(XEN) [2021-06-14 23:02:08] xentrace: p1 mfn 1600c44 offset 161
(XEN) [2021-06-14 23:02:08] xentrace: p2 mfn 1600a70 offset 193
(XEN) [2021-06-14 23:02:08] xentrace: p3 mfn 160c988 offset 225
(XEN) [2021-06-14 23:02:08] xentrace: p4 mfn 160cba0 offset 257
(XEN) [2021-06-14 23:02:08] xentrace: p5 mfn 160c990 offset 289
(XEN) [2021-06-14 23:02:08] xentrace: p6 mfn 160c940 offset 321
(XEN) [2021-06-14 23:02:08] xentrace: p7 mfn 160cb90 offset 353
(XEN) [2021-06-14 23:02:08] xentrace: p8 mfn 160cd90 offset 385
Use of uninitialized value in numeric eq (==) at 
/usr/lib64/perl5/vendor_perl/5.32/File/Tail.pm line 391.
(XEN) [2021-06-14 23:02:15] printk: 4 messages suppressed.
(XEN) [2021-06-14 23:02:15] grant_table.c:803:d0v3 Bad flags (0) or dom 
(0); expected d0
watch-xen-hypervisor-console: sending  debug-key
change evtmask to 0xffffff
change cpumask to 0xffff
(XEN) [2021-06-14 23:02:18] '*' pressed -> firing all diagnostic 
keyhandlers
(XEN) [2021-06-14 23:02:18] [d: dump registers]
(XEN) [2021-06-14 23:02:18] 'd' pressed -> dumping registers
(XEN) [2021-06-14 23:02:18]
(XEN) [2021-06-14 23:02:18] *** Dumping CPU9 guest state (d0v4): ***
(XEN) [2021-06-14 23:02:18] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:18] CPU:    9
(XEN) [2021-06-14 23:02:18] RIP: e033:[<ffffffff8100246a>]
(XEN) [2021-06-14 23:02:18] RFLAGS: 0000000000000286   EM: 0 CONTEXT: pv 
guest (d0v4)
(XEN) [2021-06-14 23:02:18] rax: 0000000000000023   rbx: 
ffff88810263a300   rcx: ffffffff8100246a
(XEN) [2021-06-14 23:02:18] rdx: 0000000000000000   rsi: 
0000000000000000   rdi: 00007f2d7b27e010
(XEN) [2021-06-14 23:02:18] rbp: ffffc90040c97ef8   rsp: 
ffffc90040c97e10   r8:  0000000000000000
(XEN) [2021-06-14 23:02:18] r9:  0000000000000000   r10: 
0000000000000000   r11: 0000000000000286
(XEN) [2021-06-14 23:02:18] r12: 0000000000000005   r13: 
00007ffd3b70fd90   r14: 00007ffd3b70fd90
(XEN) [2021-06-14 23:02:18] r15: ffff88810263a300   cr0: 
0000000080050033   cr4: 0000000000172660
(XEN) [2021-06-14 23:02:18] cr3: 0000000984805000   cr2: 0000558758755708
(XEN) [2021-06-14 23:02:18] fsb: 00007f2d7acbbc80   gsb: 
ffff888487300000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:18] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: e02b   cs: e033
(XEN) [2021-06-14 23:02:18] Guest stack trace from rsp=ffffc90040c97e10:
(XEN) [2021-06-14 23:02:18]    0000000000000000 0000000000000000 
ffffffff81859e07 ffffc90040c97e80
(XEN) [2021-06-14 23:02:18]    ffff888103cf1980 ffffc90040c97ec0 
ffffffff81204825 ffffc90040c97e78
(XEN) [2021-06-14 23:02:18]    ffffc90040c97e80 ffff888103cf19f8 
0000000000000000 0000000000001000
(XEN) [2021-06-14 23:02:18]    00007f2d7b27e000 0000000000000000 
0000000000000000 ffffc90040c97e80
(XEN) [2021-06-14 23:02:18]    78c0a401614c7200 0000000000000023 
00007f2d7b27e010 0000000000000000
(XEN) [2021-06-14 23:02:18]    0000000000000000 0000000000000000 
0000000000000000 78c0a401614c7200
(XEN) [2021-06-14 23:02:18]    ffff88810263a300 0000000000000005 
0000000000305000 00007ffd3b70fd90
(XEN) [2021-06-14 23:02:18]    ffff88810263a300 ffffc90040c97f30 
ffffffff812b4b49 0000000000000000
(XEN) [2021-06-14 23:02:18]    ffffc90040c97f58 0000000000000000 
0000000000000000 0000000000000000
(XEN) [2021-06-14 23:02:18]    ffffc90040c97f48 ffffffff81f2f77a 
0000000000000000 0000000000000000
(XEN) [2021-06-14 23:02:18]    ffffffff82000068 0000558758740d30 
0000558758740d40 00007ffd3b70fe10
(XEN) [2021-06-14 23:02:18]    0000000000000001 0000558758741b20 
00007ffd3b70fde0 0000000000000246
(XEN) [2021-06-14 23:02:19]    0000000000000001 0000000000000000 
0000000000000006 ffffffffffffffda
(XEN) [2021-06-14 23:02:19]    00007f2d7b06d417 00007ffd3b70fd90 
0000000000305000 0000000000000005
(XEN) [2021-06-14 23:02:19]    0000000000000010 00007f2d7b06d417 
0000000000000033 0000000000000246
(XEN) [2021-06-14 23:02:19]    00007ffd3b70fd88 000000000000002b
(XEN) [2021-06-14 23:02:19]
(XEN) [2021-06-14 23:02:19] *** Dumping CPU0 host state: ***
(XEN) [2021-06-14 23:02:19] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:19] CPU:    0
(XEN) [2021-06-14 23:02:19] RIP: e008:[<ffff82d0402860d6>] 
on_selected_cpus+0x156/0x180
(XEN) [2021-06-14 23:02:19] RFLAGS: 0000000000000246   CONTEXT: 
hypervisor (d6v0)
(XEN) [2021-06-14 23:02:19] rax: 0000000000000000   rbx: 
ffff82d040d5b478   rcx: 0000000000000100
(XEN) [2021-06-14 23:02:19] rdx: 0000000000000000   rsi: 
000000000000000c   rdi: ffff82d040d5b478
(XEN) [2021-06-14 23:02:19] rbp: ffff83007263fe98   rsp: 
ffff83007263fe70   r8:  1234567890abcdef
(XEN) [2021-06-14 23:02:19] r9:  1234567890abcdef   r10: 
1234567890abcdef   r11: 1234567890abcdef
(XEN) [2021-06-14 23:02:19] r12: ffff83207fa12000   r13: 
ffff82d0403d3200   r14: 0000000000000001
(XEN) [2021-06-14 23:02:19] r15: 000000000000000c   cr0: 
0000000080050033   cr4: 00000000001526e0
(XEN) [2021-06-14 23:02:19] cr3: 000000207f3f8000   cr2: 00007f180f1a6500
(XEN) [2021-06-14 23:02:19] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:19] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: e008
(XEN) [2021-06-14 23:02:19] Xen code around <ffff82d0402860d6> 
(on_selected_cpus+0x156/0x180):
(XEN) [2021-06-14 23:02:19]  f3 90 8b 35 32 a0 77 00 <48> 89 df e8 a2 fa 
f7 ff 85 c0 74 ec e9 4d ff ff
(XEN) [2021-06-14 23:02:19] Xen stack trace from rsp=ffff83007263fe70:
(XEN) [2021-06-14 23:02:19]    ffff82d04060ed00 ffff83207fa12000 
0000000000000000 0000000000000000
(XEN) [2021-06-14 23:02:19]    ffff83207f3fa000 ffff83007263fec8 
ffff82d0403d3b73 ffff83207fa12000
(XEN) [2021-06-14 23:02:19]    0000000000000001 ffff83207f3fa160 
ffff83103ffe0000 ffff83007263fef0
(XEN) [2021-06-14 23:02:19]    ffff82d0403d9bcf ffff82d0403d9ac0 
ffff83007263fef8 ffff82d040d49098
(XEN) [2021-06-14 23:02:19]    ffff83007263fd60 0000000000000000 
0000000000000001 ffffffffaebc8640
(XEN) [2021-06-14 23:02:19]    ffff9976543aa400 ffff99765434f864 
0000000000000001 ffff9977ea42a364
(XEN) [2021-06-14 23:02:19]    ffff9977ea42a384 ffff99765434f800 
0000000000000001 0000000000004000
(XEN) [2021-06-14 23:02:19]    ffff9977ea42c100 0000000000000001 
ffffffffaebc8640 ffff99765434f864
(XEN) [2021-06-14 23:02:19]    0000beef0000beef ffffffffadc7c76e 
000000bf0000beef 0000000000000246
(XEN) [2021-06-14 23:02:19]    ffffffffaea03e30 000000000000beef 
000000000000beef 000000000000beef
(XEN) [2021-06-14 23:02:19]    000000000000beef 000000000000beef 
0000e01000000000 ffff83207fa12000
(XEN) [2021-06-14 23:02:19]    0000000000000000 00000000001526e0 
0000000000000000 0000000000000000
(XEN) [2021-06-14 23:02:19]    0000060000000000 0000000000000000
(XEN) [2021-06-14 23:02:19] Xen call trace:
(XEN) [2021-06-14 23:02:19]    [<ffff82d0402860d6>] R 
on_selected_cpus+0x156/0x180
(XEN) [2021-06-14 23:02:19]    [<ffff82d0403d3b73>] F 
arch/x86/hvm/vmx/vmcs.c#vmx_clear_vmcs+0x113/0x120
(XEN) [2021-06-14 23:02:19]    [<ffff82d0403d9bcf>] F 
vmx_do_resume+0x10f/0x560
(XEN) [2021-06-14 23:02:19]
(XEN) [2021-06-14 23:02:19] *** Dumping CPU0 guest state (d6v0): ***
(XEN) [2021-06-14 23:02:19] Segment register inaccessible for d6v0
(XEN) [2021-06-14 23:02:19] (If you see this outside of debugging 
activity, please report to xen-devel@lists.xenproject.org)
(XEN) [2021-06-14 23:02:19] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:19] CPU:    0
(XEN) [2021-06-14 23:02:19] RIP: 0000:[<ffffffffadc7c76e>]
(XEN) [2021-06-14 23:02:19] RFLAGS: 0000000000000246   CONTEXT: hvm 
guest (d6v0)
(XEN) [2021-06-14 23:02:19] rax: 0000000000004000   rbx: 
0000000000000001   rcx: ffff9977ea42c100
(XEN) [2021-06-14 23:02:19] rdx: 0000000000000001   rsi: 
ffffffffaebc8640   rdi: ffff99765434f864
(XEN) [2021-06-14 23:02:19] rbp: ffff99765434f864   rsp: 
ffffffffaea03e30   r8:  0000000000000001
(XEN) [2021-06-14 23:02:19] r9:  ffff99765434f800   r10: 
ffff9977ea42a384   r11: ffff9977ea42a364
(XEN) [2021-06-14 23:02:19] r12: ffff9976543aa400   r13: 
ffffffffaebc8640   r14: 0000000000000001
(XEN) [2021-06-14 23:02:19] r15: 0000000000000000   cr0: 
0000000080050033   cr4: 00000000001706b0
(XEN) [2021-06-14 23:02:19] cr3: 000000012648a003   cr2: 00007f1aee119010
(XEN) [2021-06-14 23:02:19] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:19] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: 0000
(XEN) [2021-06-14 23:02:19]
(XEN) [2021-06-14 23:02:19] *** Dumping CPU1 host state: ***
(XEN) [2021-06-14 23:02:19] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:19] CPU:    1
(XEN) [2021-06-14 23:02:19] RIP: e008:[<ffff82d04028696a>] 
_spin_lock+0xaa/0x140
(XEN) [2021-06-14 23:02:19] RFLAGS: 0000000000000202   CONTEXT: 
hypervisor (d7v5)
(XEN) [2021-06-14 23:02:19] rax: 0000000043af43ab   rbx: 
ffff82d040a1c0e4   rcx: 0000000000000001
(XEN) [2021-06-14 23:02:19] rdx: 00000000000043af   rsi: 
0000000000000000   rdi: ffff82d040a1c0ea
(XEN) [2021-06-14 23:02:19] rbp: ffff83103ff37e60   rsp: 
ffff83103ff37e40   r8:  1234567890abcdef
(XEN) [2021-06-14 23:02:19] r9:  1234567890abcdef   r10: 
1234567890abcdef   r11: 1234567890abcdef
(XEN) [2021-06-14 23:02:19] r12: 0000000043af43ab   r13: 
ffff82d040a1c0ea   r14: 00000000000043af
(XEN) [2021-06-14 23:02:19] r15: 000000000000000c   cr0: 
0000000080050033   cr4: 00000000001526e0
(XEN) [2021-06-14 23:02:19] cr3: 0000000fbb822000   cr2: 00007f180d1214b0
(XEN) [2021-06-14 23:02:19] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:19] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: e008
(XEN) [2021-06-14 23:02:19] Xen code around <ffff82d04028696a> 
(_spin_lock+0xaa/0x140):
(XEN) [2021-06-14 23:02:19]  c1 ea 10 f3 90 66 8b 03 <66> 39 c2 75 f6 4c 
89 ef e8 09 fc ff ff 5b 41 5c
(XEN) [2021-06-14 23:02:19] Xen stack trace from rsp=ffff83103ff37e40:
(XEN) [2021-06-14 23:02:19]    ffff82d04060ed00 ffff8315c1503000 
ffff82d0403d3200 0000000000000001
(XEN) [2021-06-14 23:02:19]    ffff83103ff37e98 ffff82d040285fea 
ffff82d04060ed00 ffff8315c1503000
(XEN) [2021-06-14 23:02:19]    0000000000000000 0000000000000000 
ffff83157a990000 ffff83103ff37ec8
(XEN) [2021-06-14 23:02:19]    ffff82d0403d3b73 ffff8315c1503000 
0000000000000001 ffff83157a990160
(XEN) [2021-06-14 23:02:19]    ffff83103ff4c000 ffff83103ff37ef0 
ffff82d0403d9bcf ffff82d0403d9ac0
(XEN) [2021-06-14 23:02:19]    ffff83103ff37ef8 ffff83103ff42098 
ffff83103ff37d60 ffffffff8576a6c0
(XEN) [2021-06-14 23:02:19]    ffff8881020b1864 ffff88810b58e800 
ffff8881008fd280 ffffc90000157d00
(XEN) [2021-06-14 23:02:19]    ffff8881020b1865 0000000000000000 
ffffed102011fa50 ffff8881008fd287
(XEN) [2021-06-14 23:02:19]    0000000000000000 0000000000004000 
ffffffff83dd94c2 1ffff1102011fa50
(XEN) [2021-06-14 23:02:19]    0000000000000008 ffff8881008fd280 
0000beef0000beef ffffffff83dd8cce
(XEN) [2021-06-14 23:02:19]    000000bf0000beef 0000000000000246 
ffffc90000157cf0 000000000000beef
(XEN) [2021-06-14 23:02:19]    000000000000beef 000000000000beef 
000000000000beef 000000000000beef
(XEN) [2021-06-14 23:02:19]    0000e01000000001 ffff8315c1503000 
0000003fff1f9000 00000000001526e0
(XEN) [2021-06-14 23:02:19]    0000000000000000 0000000000000000 
0000060000000000 0000000000000000
(XEN) [2021-06-14 23:02:19] Xen call trace:
(XEN) [2021-06-14 23:02:19]    [<ffff82d04028696a>] R _spin_lock+0xaa/0x140
(XEN) [2021-06-14 23:02:19]    [<ffff82d040285fea>] F 
on_selected_cpus+0x6a/0x180
(XEN) [2021-06-14 23:02:19]    [<ffff82d0403d3b73>] F 
arch/x86/hvm/vmx/vmcs.c#vmx_clear_vmcs+0x113/0x120
(XEN) [2021-06-14 23:02:19]    [<ffff82d0403d9bcf>] F 
vmx_do_resume+0x10f/0x560
(XEN) [2021-06-14 23:02:19]
(XEN) [2021-06-14 23:02:19] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:19] *** Dumping CPU1 guest state (d7v5): ***
(XEN) [2021-06-14 23:02:19] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:19] CPU:    1
(XEN) [2021-06-14 23:02:19] RIP: 0000:[<ffffffff83dd8cce>]
(XEN) [2021-06-14 23:02:19] RFLAGS: 0000000000000246   CONTEXT: hvm 
guest (d7v5)
(XEN) [2021-06-14 23:02:19] rax: 0000000000004000   rbx: 
ffff8881020b1865   rcx: ffffffff83dd94c2
(XEN) [2021-06-14 23:02:19] rdx: 1ffff1102011fa50   rsi: 
0000000000000008   rdi: ffff8881008fd280
(XEN) [2021-06-14 23:02:19] rbp: ffffc90000157d00   rsp: 
ffffc90000157cf0   r8:  0000000000000000
(XEN) [2021-06-14 23:02:19] r9:  ffff8881008fd287   r10: 
ffffed102011fa50   r11: 0000000000000000
(XEN) [2021-06-14 23:02:19] r12: ffff8881008fd280   r13: 
ffff88810b58e800   r14: ffff8881020b1864
(XEN) [2021-06-14 23:02:19] r15: ffffffff8576a6c0   cr0: 
0000000080050033   cr4: 00000000001706e0
(XEN) [2021-06-14 23:02:19] cr3: 00000001297ba001   cr2: 00007f1808d35dd6
(XEN) [2021-06-14 23:02:19] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:19] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: 0000
(XEN) [2021-06-14 23:02:19]
(XEN) [2021-06-14 23:02:19] *** Dumping CPU2 host state: ***
(XEN) [2021-06-14 23:02:19] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:19] CPU:    2
(XEN) [2021-06-14 23:02:19] RIP: e008:[<ffff82d040286965>] 
_spin_lock+0xa5/0x140
(XEN) [2021-06-14 23:02:19] RFLAGS: 0000000000000216   CONTEXT: 
hypervisor (d6v3)
(XEN) [2021-06-14 23:02:19] rax: 0000000043b243af   rbx: 
ffff82d040a1c0e4   rcx: 0000000000000001
(XEN) [2021-06-14 23:02:19] rdx: 00000000000043b2   rsi: 
0000000000000000   rdi: ffff82d040a1c0ea
(XEN) [2021-06-14 23:02:19] rbp: ffff83103ff27e60   rsp: 
ffff83103ff27e40   r8:  1234567890abcdef
(XEN) [2021-06-14 23:02:19] r9:  1234567890abcdef   r10: 
1234567890abcdef   r11: 1234567890abcdef
(XEN) [2021-06-14 23:02:19] r12: 0000000043b243af   r13: 
ffff82d040a1c0ea   r14: 00000000000043b2
(XEN) [2021-06-14 23:02:19] r15: 000000000000000c   cr0: 
0000000080050033   cr4: 00000000001526e0
(XEN) [2021-06-14 23:02:19] cr3: 00000009bb594000   cr2: 00007f0f19a85000
(XEN) [2021-06-14 23:02:19] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:19] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: e008
(XEN) [2021-06-14 23:02:20] Xen code around <ffff82d040286965> 
(_spin_lock+0xa5/0x140):
(XEN) [2021-06-14 23:02:20]  74 10 44 89 e2 c1 ea 10 <f3> 90 66 8b 03 66 
39 c2 75 f6 4c 89 ef e8 09 fc
(XEN) [2021-06-14 23:02:20] Xen stack trace from rsp=ffff83103ff27e40:
(XEN) [2021-06-14 23:02:20]    ffff82d04060ec80 ffff8315c13b1000 
ffff82d0403d3200 0000000000000001
(XEN) [2021-06-14 23:02:20]    ffff83103ff27e98 ffff82d040285fea 
ffff82d04060ec80 ffff8315c13b1000
(XEN) [2021-06-14 23:02:20]    0000000000000000 0000000000000000 
ffff83207f3fa000 ffff83103ff27ec8
(XEN) [2021-06-14 23:02:20]    ffff82d0403d3b73 ffff8315c13b1000 
0000000000000001 ffff83207f3fa160
(XEN) [2021-06-14 23:02:20]    ffff83103ff2d000 ffff83103ff27ef0 
ffff82d0403d9bcf ffff82d0403d9ac0
(XEN) [2021-06-14 23:02:20]    ffff83103ff27ef8 ffff83103ff2a098 
ffff83103ff27d60 0000000000000000
(XEN) [2021-06-14 23:02:20]    0000000000000001 ffffffffaebc8640 
ffff996ffb184800 ffff996fc0c37864
(XEN) [2021-06-14 23:02:20]    0000000000000001 ffff9977ea4ea364 
ffff9977ea4ea384 ffff996fc0c37800
(XEN) [2021-06-14 23:02:20]    0000000000000001 0000000000004000 
ffff9977ea4ec100 0000000000000001
(XEN) [2021-06-14 23:02:20]    ffffffffaebc8640 ffff996fc0c37864 
0000beef0000beef ffffffffadc7c76e
(XEN) [2021-06-14 23:02:20]    000000bf0000beef 0000000000000246 
ffffac780009fe58 000000000000beef
(XEN) [2021-06-14 23:02:20]    000000000000beef 000000000000beef 
000000000000beef 000000000000beef
(XEN) [2021-06-14 23:02:20]    0000e01000000002 ffff8315c13b1000 
0000003fff1e1000 00000000001526e0
(XEN) [2021-06-14 23:02:20]    0000000000000000 0000000000000000 
0000060000000000 0000000000000000
(XEN) [2021-06-14 23:02:20] Xen call trace:
(XEN) [2021-06-14 23:02:20]    [<ffff82d040286965>] R _spin_lock+0xa5/0x140
(XEN) [2021-06-14 23:02:20]    [<ffff82d040285fea>] F 
on_selected_cpus+0x6a/0x180
(XEN) [2021-06-14 23:02:20]    [<ffff82d0403d3b73>] F 
arch/x86/hvm/vmx/vmcs.c#vmx_clear_vmcs+0x113/0x120
(XEN) [2021-06-14 23:02:20]    [<ffff82d0403d9bcf>] F 
vmx_do_resume+0x10f/0x560
(XEN) [2021-06-14 23:02:20]
(XEN) [2021-06-14 23:02:20] *** Dumping CPU2 guest state (d6v3): ***
(XEN) [2021-06-14 23:02:20] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:20] CPU:    2
(XEN) [2021-06-14 23:02:20] RIP: 0000:[<ffffffffadc7c76e>]
(XEN) [2021-06-14 23:02:20] RFLAGS: 0000000000000246   CONTEXT: hvm 
guest (d6v3)
(XEN) [2021-06-14 23:02:20] rax: 0000000000004000   rbx: 
0000000000000001   rcx: ffff9977ea4ec100
(XEN) [2021-06-14 23:02:20] rdx: 0000000000000001   rsi: 
ffffffffaebc8640   rdi: ffff996fc0c37864
(XEN) [2021-06-14 23:02:20] rbp: ffff996fc0c37864   rsp: 
ffffac780009fe58   r8:  0000000000000001
(XEN) [2021-06-14 23:02:20] r9:  ffff996fc0c37800   r10: 
ffff9977ea4ea384   r11: ffff9977ea4ea364
(XEN) [2021-06-14 23:02:20] r12: ffff996ffb184800   r13: 
ffffffffaebc8640   r14: 0000000000000001
(XEN) [2021-06-14 23:02:20] r15: 0000000000000000   cr0: 
0000000080050033   cr4: 00000000001706a0
(XEN) [2021-06-14 23:02:20] cr3: 0000000123008006   cr2: 00007f26678167c5
(XEN) [2021-06-14 23:02:20] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:20] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: 0000
(XEN) [2021-06-14 23:02:20]
(XEN) [2021-06-14 23:02:20] *** Dumping CPU3 guest state (d0v2): ***
(XEN) [2021-06-14 23:02:20] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:20] CPU:    3
(XEN) [2021-06-14 23:02:20] RIP: e033:[<ffffffff811412af>]
(XEN) [2021-06-14 23:02:20] RFLAGS: 0000000000000202   EM: 0 CONTEXT: pv 
guest (d0v2)
(XEN) [2021-06-14 23:02:20] rax: 0000000000000011   rbx: 
ffff888487328900   rcx: 0000000000000004
(XEN) [2021-06-14 23:02:20] rdx: ffffffff82c532d0   rsi: 
ffff8884872a4488   rdi: 0000000000000003
(XEN) [2021-06-14 23:02:20] rbp: ffffc900403bfcd0   rsp: 
ffffc900403bfc20   r8:  0000000000000004
(XEN) [2021-06-14 23:02:20] r9:  ffffffff82af5ae8   r10: 
deadbeefdeadf00d   r11: 0000000000000017
(XEN) [2021-06-14 23:02:20] r12: 0000000000000007   r13: 
0000000000000004   r14: ffff8884872a4480
(XEN) [2021-06-14 23:02:20] r15: 0000000000000004   cr0: 
0000000080050033   cr4: 0000000000172660
(XEN) [2021-06-14 23:02:20] cr3: 0000001032a22000   cr2: 00007fd4c3484248
(XEN) [2021-06-14 23:02:20] fsb: 0000000000000000   gsb: 
ffff888487280000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:20] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: e02b   cs: e033
(XEN) [2021-06-14 23:02:20] Guest stack trace from rsp=ffffc900403bfc20:
(XEN) [2021-06-14 23:02:20]    ffffc900403bfc68 ffff8884872a4480 
ffffffff81078f47 ffff8884872a4490
(XEN) [2021-06-14 23:02:20]    0000000700000007 0000000000024440 
0000000101000001 ffff8884872a4480
(XEN) [2021-06-14 23:02:20]    ffffffff81037560 ffff8884872a4488 
0000000200000003 0000000000028900
(XEN) [2021-06-14 23:02:20]    0000000000000000 ffff8884872a4488 
ffffc900403bfcf7 ffff888100076208
(XEN) [2021-06-14 23:02:20]    3a63221a0770e600 ffffffff82e78750 
ffffffff82e786e9 ffffffff82e786e0
(XEN) [2021-06-14 23:02:20]    0000000000000060 0000000000000000 
ffffc900403bfce0 ffffffff8114227d
(XEN) [2021-06-14 23:02:20]    ffffc900403bfd40 ffffffff81037aae 
cc00000000000005 ffffffff82e786e0
(XEN) [2021-06-14 23:02:20]    0000000100000007 0000000000000000 
3a63221a0770e600 ffffffff8284c970
(XEN) [2021-06-14 23:02:20]    ffffffff8284f640 ffffffff8284c968 
ffffffff82ec4220 0000000000000000
(XEN) [2021-06-14 23:02:20]    ffffc900403bfd50 ffffffff8103865a 
ffffc900403bfd60 ffffffff81034895
(XEN) [2021-06-14 23:02:20]    ffffc900403bfd98 ffffffff811de963 
0000000000000002 ffffffff82ec4220
(XEN) [2021-06-14 23:02:20]    ffff888100058100 0000000000000000 
ffff888100050000 ffffc900403bfdb8
(XEN) [2021-06-14 23:02:20]    ffffffff811dea3a ffffffff82ec4220 
0000000000000001 ffffc900403bfdd8
(XEN) [2021-06-14 23:02:20]    ffffffff811df0ea ffff88810632da80 
ffffffff82ec4220 ffffc900403bfdf0
(XEN) [2021-06-14 23:02:20]    ffffffff811df136 0000000000000001 
ffffc900403bfe68 ffffffff8126f234
(XEN) [2021-06-14 23:02:20]    0000000000000000 0000000000000000 
0000000000000000 0000000000000000
(XEN) [2021-06-14 23:02:20]    0000000000000000 0000000000000000 
0000000000000000 0000000000000000
(XEN) [2021-06-14 23:02:20]    0000000000000000 0000000000000000 
3a63221a0770e600 ffff88810632da80
(XEN) [2021-06-14 23:02:20]    ffffffff82b1b7c0 ffffc900403bfeb8 
ffffffff810b1865 ffff88810632daec
(XEN) [2021-06-14 23:02:20]    ffffffff82b1b7c8 000000000632da80 
ffff88810632daa8 ffff888100050000
(XEN) [2021-06-14 23:02:20]
(XEN) [2021-06-14 23:02:20] *** Dumping CPU4 host state: ***
(XEN) [2021-06-14 23:02:20] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:20] CPU:    4
(XEN) [2021-06-14 23:02:20] RIP: e008:[<ffff82d04028696a>] 
_spin_lock+0xaa/0x140
(XEN) [2021-06-14 23:02:20] RFLAGS: 0000000000000206   CONTEXT: 
hypervisor (d2v3)
(XEN) [2021-06-14 23:02:20] rax: 0000000043b443b1   rbx: 
ffff82d040a1c0e4   rcx: 0000000000000001
(XEN) [2021-06-14 23:02:20] rdx: 00000000000043b4   rsi: 
0000000000000000   rdi: ffff82d040a1c0ea
(XEN) [2021-06-14 23:02:20] rbp: ffff831037cf7e60   rsp: 
ffff831037cf7e40   r8:  1234567890abcdef
(XEN) [2021-06-14 23:02:20] r9:  1234567890abcdef   r10: 
1234567890abcdef   r11: 1234567890abcdef
(XEN) [2021-06-14 23:02:20] r12: 0000000043b443af   r13: 
ffff82d040a1c0ea   r14: 00000000000043b4
(XEN) [2021-06-14 23:02:20] r15: 000000000000000c   cr0: 
0000000080050033   cr4: 00000000001526e0
(XEN) [2021-06-14 23:02:20] cr3: 0000000b40bea000   cr2: 00007f1aee0f55b8
(XEN) [2021-06-14 23:02:20] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:20] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: e008
(XEN) [2021-06-14 23:02:20] Xen code around <ffff82d04028696a> 
(_spin_lock+0xaa/0x140):
(XEN) [2021-06-14 23:02:20]  c1 ea 10 f3 90 66 8b 03 <66> 39 c2 75 f6 4c 
89 ef e8 09 fc ff ff 5b 41 5c
(XEN) [2021-06-14 23:02:20] Xen stack trace from rsp=ffff831037cf7e40:
(XEN) [2021-06-14 23:02:20]    ffff82d04060eca0 ffff83207f327000 
ffff82d0403d3200 0000000000000001
(XEN) [2021-06-14 23:02:20]    ffff831037cf7e98 ffff82d040285fea 
ffff82d04060eca0 ffff83207f327000
(XEN) [2021-06-14 23:02:20]    0000000000000000 0000000000000000 
ffff830b9af2f000 ffff831037cf7ec8
(XEN) [2021-06-14 23:02:20]    ffff82d0403d3b73 ffff83207f327000 
0000000000000001 ffff830b9af2f160
(XEN) [2021-06-14 23:02:20]    ffff831037cff000 ffff831037cf7ef0 
ffff82d0403d9bcf ffff82d0403d9ac0
(XEN) [2021-06-14 23:02:20]    ffff831037cf7ef8 ffff83103ff02098 
ffff831037cf7d60 0000000000000000
(XEN) [2021-06-14 23:02:20]    0000000000000000 0000000000000000 
0000000000000000 0000000000000003
(XEN) [2021-06-14 23:02:20]    ffff888568b62200 0000000000000001 
0000000000000001 000000000000001c
(XEN) [2021-06-14 23:02:20]    00000000ffffffff 0000000000000003 
0000000000000000 0000000000000000
(XEN) [2021-06-14 23:02:20]    ffffffff8229231a ffffffff82298a3c 
0000beef0000beef ffffffff81ac19ae
(XEN) [2021-06-14 23:02:20]    000000bf0000beef 0000000000000286 
ffffc900031c3eb0 000000000000beef
(XEN) [2021-06-14 23:02:20]    000000000000beef 000000000000beef 
000000000000beef 000000000000beef
(XEN) [2021-06-14 23:02:20]    0000e01000000004 ffff83207f327000 
0000003fff1b9000 00000000001526e0
(XEN) [2021-06-14 23:02:20]    0000000000000000 0000000000000000 
0000060000000000 0000000000000000
(XEN) [2021-06-14 23:02:20] Xen call trace:
(XEN) [2021-06-14 23:02:20]    [<ffff82d04028696a>] R _spin_lock+0xaa/0x140
(XEN) [2021-06-14 23:02:20]    [<ffff82d040285fea>] F 
on_selected_cpus+0x6a/0x180
(XEN) [2021-06-14 23:02:20]    [<ffff82d0403d3b73>] F 
arch/x86/hvm/vmx/vmcs.c#vmx_clear_vmcs+0x113/0x120
(XEN) [2021-06-14 23:02:20]    [<ffff82d0403d9bcf>] F 
vmx_do_resume+0x10f/0x560
(XEN) [2021-06-14 23:02:20]
(XEN) [2021-06-14 23:02:20] *** Dumping CPU4 guest state (d2v3): ***
(XEN) [2021-06-14 23:02:20] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:20] CPU:    4
(XEN) [2021-06-14 23:02:20] RIP: 0000:[<ffffffff81ac19ae>]
(XEN) [2021-06-14 23:02:20] RFLAGS: 0000000000000286   CONTEXT: hvm 
guest (d2v3)
(XEN) [2021-06-14 23:02:20] rax: 0000000000000003   rbx: 
ffff888568b62200   rcx: 0000000000000000
(XEN) [2021-06-14 23:02:20] rdx: 0000000000000000   rsi: 
ffffffff8229231a   rdi: ffffffff82298a3c
(XEN) [2021-06-14 23:02:20] rbp: 0000000000000003   rsp: 
ffffc900031c3eb0   r8:  00000000ffffffff
(XEN) [2021-06-14 23:02:20] r9:  000000000000001c   r10: 
0000000000000001   r11: 0000000000000001
(XEN) [2021-06-14 23:02:20] r12: 0000000000000000   r13: 
0000000000000000   r14: 0000000000000000
(XEN) [2021-06-14 23:02:21] r15: 0000000000000000   cr0: 
0000000080050033   cr4: 00000000001606e0
(XEN) [2021-06-14 23:02:21] cr3: 0000000002421003   cr2: 00007f19e8a8b160
(XEN) [2021-06-14 23:02:21] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:21] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: 0000
(XEN) [2021-06-14 23:02:21]
(XEN) [2021-06-14 23:02:21] *** Dumping CPU5 host state: ***
(XEN) [2021-06-14 23:02:21] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:21] CPU:    5
(XEN) [2021-06-14 23:02:21] RIP: e008:[<ffff82d0403ac8d1>] 
arch/x86/cpu/mwait-idle.c#mwait_idle+0x5b1/0x960
(XEN) [2021-06-14 23:02:21] RFLAGS: 0000000000000246   CONTEXT: hypervisor
(XEN) [2021-06-14 23:02:21] rax: 0000000000000001   rbx: 
ffff831037cee8b0   rcx: 00000f5cd348ea6c
(XEN) [2021-06-14 23:02:21] rdx: ffff831037ce7fd0   rsi: 
0000000000000000   rdi: ffff831037cee8e0
(XEN) [2021-06-14 23:02:21] rbp: ffff831037ce7e98   rsp: 
ffff831037ce7e20   r8:  00000000000106ac
(XEN) [2021-06-14 23:02:21] r9:  ffff831037ce7e40   r10: 
1234567890abcdef   r11: 1234567890abcdef
(XEN) [2021-06-14 23:02:21] r12: 0000000000000002   r13: 
00000f5cd348ea6c   r14: 0000000000000060
(XEN) [2021-06-14 23:02:21] r15: ffff831037cee948   cr0: 
0000000080050033   cr4: 00000000001526e0
(XEN) [2021-06-14 23:02:21] cr3: 000000157a7b0000   cr2: 00007fd234ee3000
(XEN) [2021-06-14 23:02:21] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:21] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: e008
(XEN) [2021-06-14 23:02:21] Xen code around <ffff82d0403ac8d1> 
(arch/x86/cpu/mwait-idle.c#mwait_idle+0x5b1/0x960):
(XEN) [2021-06-14 23:02:21]  fd ff fb 45 0f b6 67 01 <b8> 1f 00 00 00 89 
c2 44 29 e2 b8 01 00 00 00 c4
(XEN) [2021-06-14 23:02:21] Xen stack trace from rsp=ffff831037ce7e20:
(XEN) [2021-06-14 23:02:21]    0000000000000028 ffff82d040d6b068 
0000000537ce7e88 ffff831037cee948
(XEN) [2021-06-14 23:02:21]    d348ea6c00000002 00000000000000ff 
0000000000000000 00000000000000ff
(XEN) [2021-06-14 23:02:21]    0000000000000000 000003990000038c 
0000000000000005 ffff82d040d53400
(XEN) [2021-06-14 23:02:21]    ffff82d040d53680 0000000000007fff 
ffff82d040d48930 ffff831037ce7ef0
(XEN) [2021-06-14 23:02:21]    ffff82d0404d6609 ffff82d040d6b068 
0000000000000028 0000000000000030
(XEN) [2021-06-14 23:02:21]    ffff831037ce9930 ffff82d0404d62c0 
ffff831037ce7ef8 0000000000000028
(XEN) [2021-06-14 23:02:21]    ffff83157a66d000 ffff83103ffe1000 
ffff831037ce7db0 0000000000000001
(XEN) [2021-06-14 23:02:21]    0000000000000001 ffff888560a03064 
ffff888560a03000 ffffffff82a03d90
(XEN) [2021-06-14 23:02:21]    0000000000000001 ffff888564e2b3e4 
00000000000003ab 00000000000003a8
(XEN) [2021-06-14 23:02:21]    00000f1963680fd4 0000000000004000 
00000000ffffffff 4ec4ec4ec4ec4ec5
(XEN) [2021-06-14 23:02:21]    ffffffff82b78d40 ffff88855f2c8400 
0000beef0000beef ffffffff81beb36e
(XEN) [2021-06-14 23:02:21]    000000bf0000beef 0000000000000246 
ffffffff82a03d88 000000000000beef
(XEN) [2021-06-14 23:02:21]    000000000000beef 000000000000beef 
000000000000beef 000000000000beef
(XEN) [2021-06-14 23:02:21]    0000e01000000005 ffff831037cec000 
0000003ff6fa1000 00000000001526e0
(XEN) [2021-06-14 23:02:21]    0000000000000000 0000000000000000 
0000060000000000 0000000000000000
(XEN) [2021-06-14 23:02:21] Xen call trace:
(XEN) [2021-06-14 23:02:21]    [<ffff82d0403ac8d1>] R 
arch/x86/cpu/mwait-idle.c#mwait_idle+0x5b1/0x960
(XEN) [2021-06-14 23:02:21]    [<ffff82d0404d6609>] F 
arch/x86/domain.c#idle_loop+0x349/0x360
(XEN) [2021-06-14 23:02:21]
(XEN) [2021-06-14 23:02:21] *** Dumping CPU6 host state: ***
(XEN) [2021-06-14 23:02:21] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:21] CPU:    6
(XEN) [2021-06-14 23:02:21] RIP: e008:[<ffff82d0403ac8d1>] 
arch/x86/cpu/mwait-idle.c#mwait_idle+0x5b1/0x960
(XEN) [2021-06-14 23:02:21] RFLAGS: 0000000000000246   CONTEXT: hypervisor
(XEN) [2021-06-14 23:02:21] rax: 0000000000000001   rbx: 
ffff831037cd3610   rcx: 00000f5ce5a6182e
(XEN) [2021-06-14 23:02:21] rdx: ffff83207ca0ffd0   rsi: 
0000000000000000   rdi: ffff831037cd3640
(XEN) [2021-06-14 23:02:21] rbp: ffff83207ca0fe98   rsp: 
ffff83207ca0fe20   r8:  1234567890abcdef
(XEN) [2021-06-14 23:02:21] r9:  1234567890abcdef   r10: 
1234567890abcdef   r11: 1234567890abcdef
(XEN) [2021-06-14 23:02:21] r12: 0000000000000001   r13: 
00000f5ce5a6182e   r14: 0000000000000020
(XEN) [2021-06-14 23:02:21] r15: ffff831037cd3668   cr0: 
0000000080050033   cr4: 00000000001526e0
(XEN) [2021-06-14 23:02:21] cr3: 000000157a7af000   cr2: 0000074f9a672c18
(XEN) [2021-06-14 23:02:21] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:21] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: e008
(XEN) [2021-06-14 23:02:21] Xen code around <ffff82d0403ac8d1> 
(arch/x86/cpu/mwait-idle.c#mwait_idle+0x5b1/0x960):
(XEN) [2021-06-14 23:02:21]  fd ff fb 45 0f b6 67 01 <b8> 1f 00 00 00 89 
c2 44 29 e2 b8 01 00 00 00 c4
(XEN) [2021-06-14 23:02:21] Xen stack trace from rsp=ffff83207ca0fe20:
(XEN) [2021-06-14 23:02:21]    0000000000000030 ffff82d040d6b070 
000000067ca0fe88 ffff831037cd3668
(XEN) [2021-06-14 23:02:21]    e5a6182e00000001 00000000000000ff 
0000000000000000 00000000000000ff
(XEN) [2021-06-14 23:02:21]    0000000000000000 00001d020000004e 
0000000000000006 ffff82d040d53400
(XEN) [2021-06-14 23:02:21]    ffff82d040d53700 0000000000007fff 
ffff82d040d48930 ffff83207ca0fef0
(XEN) [2021-06-14 23:02:21]    ffff82d0404d6609 ffff82d040d6b070 
0000000000000030 0000000000000038
(XEN) [2021-06-14 23:02:21]    ffff831037cd5930 ffff82d0404d62c0 
ffff83207ca0fef8 ffff831037cd8000
(XEN) [2021-06-14 23:02:21]    ffff831037cd57ac ffff831037cd3010 
ffff83207ca0fd60 0000000000000001
(XEN) [2021-06-14 23:02:21]    0000000000000001 ffff888560a00464 
ffff888560a00400 ffffc90000087df8
(XEN) [2021-06-14 23:02:21]    0000000000000001 ffff888564e6b3e4 
00000000000077a1 00000000ffffffff
(XEN) [2021-06-14 23:02:21]    00000f1975576a0d 0000000000004000 
00000000ffffffff 4ec4ec4ec4ec4ec5
(XEN) [2021-06-14 23:02:21]    ffffffff82b78d40 ffff88855f2c9800 
0000beef0000beef ffffffff81beb36e
(XEN) [2021-06-14 23:02:21]    000000bf0000beef 0000000000000246 
ffffc90000087df0 000000000000beef
(XEN) [2021-06-14 23:02:21]    000000000000beef 000000000000beef 
000000000000beef 000000000000beef
(XEN) [2021-06-14 23:02:21]    0000e01000000006 ffff831037cd8000 
0000003ff6f8d000 00000000001526e0
(XEN) [2021-06-14 23:02:21]    0000000000000000 0000000000000000 
0000060000000000 0000000000000000
(XEN) [2021-06-14 23:02:21] Xen call trace:
(XEN) [2021-06-14 23:02:21]    [<ffff82d0403ac8d1>] R 
arch/x86/cpu/mwait-idle.c#mwait_idle+0x5b1/0x960
(XEN) [2021-06-14 23:02:21]    [<ffff82d0404d6609>] F 
arch/x86/domain.c#idle_loop+0x349/0x360
(XEN) [2021-06-14 23:02:21]
(XEN) [2021-06-14 23:02:21] *** Dumping CPU7 host state: ***
(XEN) [2021-06-14 23:02:21] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:21] CPU:    7
(XEN) [2021-06-14 23:02:21] RIP: e008:[<ffff82d04053ed16>] 
flush_area_mask+0x336/0x360
(XEN) [2021-06-14 23:02:21] RFLAGS: 0000000000000246   CONTEXT: 
hypervisor (d5v5)
(XEN) [2021-06-14 23:02:21] rax: 0000000000000000   rbx: 
ffff82d040d6b8e0   rcx: 0000000000000830
(XEN) [2021-06-14 23:02:21] rdx: 0000000000000000   rsi: 
000000000000000c   rdi: ffff82d040d6b8e0
(XEN) [2021-06-14 23:02:21] rbp: ffff83207ca1fe40   rsp: 
ffff83207ca1fe08   r8:  0000000000006c88
(XEN) [2021-06-14 23:02:21] r9:  ffff83207ca1fe58   r10: 
1234567890abcdef   r11: 1234567890abcdef
(XEN) [2021-06-14 23:02:21] r12: ffff82d04060ed40   r13: 
ffff83207ca1fe50   r14: 0000000000000007
(XEN) [2021-06-14 23:02:21] r15: 000000000000000c   cr0: 
0000000080050033   cr4: 00000000001526e0
(XEN) [2021-06-14 23:02:21] cr3: 000000157a7ab000   cr2: 00007fd239d41000
(XEN) [2021-06-14 23:02:21] fsb: 0000000000000000   gsb: 
ffff888487200000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:21] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: e010   cs: e008
(XEN) [2021-06-14 23:02:21] Xen code around <ffff82d04053ed16> 
(flush_area_mask+0x336/0x360):
(XEN) [2021-06-14 23:02:21]  f3 90 8b 35 f2 13 4c 00 <48> 89 df e8 62 6e 
cc ff 85 c0 74 ec 48 8d 3d 97
(XEN) [2021-06-14 23:02:21] Xen stack trace from rsp=ffff83207ca1fe08:
(XEN) [2021-06-14 23:02:21]    0000000000000000 0000000000000000 
ffff82d04060ed40 ffff83207ca1fe50
(XEN) [2021-06-14 23:02:21]    0000000000000007 ffff82d040d53780 
ffff83207ca1fef8 ffff83207ca1fe80
(XEN) [2021-06-14 23:02:21]    ffff82d04053ee94 0000000000000f7f 
0000000000000000 0000000000000000
(XEN) [2021-06-14 23:02:21]    0000000000000000 0000000000000004 
ffff82d040d53780 ffff83207ca1fed8
(XEN) [2021-06-14 23:02:21]    ffff82d040284d00 ffff83207ca1ffc0 
00007d2fbf2acc04 0000000000000000
(XEN) [2021-06-14 23:02:21]    0000000000000000 ffff83157a627000 
00000000001526e0 0000000000000000
(XEN) [2021-06-14 23:02:21]    ffff831037cc9000 ffff83157a7c1000 
ffff83207ca1fee8 ffff82d040285013
(XEN) [2021-06-14 23:02:21]    ffff83207ca1fef0 ffff82d0403f73ab 
0000000000000001 0000000000000001
(XEN) [2021-06-14 23:02:21]    ffff888560a03864 ffff888560a03800 
ffffc900000a7df8 0000000000000001
(XEN) [2021-06-14 23:02:21]    ffff888564f6b3e4 00000000000003c6 
0000000000000390 00000f1966cd8cc2
(XEN) [2021-06-14 23:02:21]    0000000000004000 00000000ffffffff 
4ec4ec4ec4ec4ec5 ffffffff82b78d40
(XEN) [2021-06-14 23:02:21]    ffff88855f2ca400 0000beef0000beef 
ffffffff81beb36e 000000bf0000beef
(XEN) [2021-06-14 23:02:21]    0000000000000246 ffffc900000a7df0 
000000000000beef 000000000000beef
(XEN) [2021-06-14 23:02:21]    000000000000beef 000000000000beef 
000000000000beef 0000e01000000007
(XEN) [2021-06-14 23:02:21]    ffff83157a627000 0000003ff6f7d000 
00000000001526e0 0000000000000000
(XEN) [2021-06-14 23:02:21]    0000000000000000 0000060000000000 
0000000000000000
(XEN) [2021-06-14 23:02:21] Xen call trace:
(XEN) [2021-06-14 23:02:21]    [<ffff82d04053ed16>] R 
flush_area_mask+0x336/0x360
(XEN) [2021-06-14 23:02:21]    [<ffff82d04053ee94>] F 
new_tlbflush_clock_period+0x154/0x1c0
(XEN) [2021-06-14 23:02:21]    [<ffff82d040284d00>] F 
common/softirq.c#__do_softirq+0x200/0x340
(XEN) [2021-06-14 23:02:21]    [<ffff82d040285013>] F do_softirq+0x13/0x20
(XEN) [2021-06-14 23:02:21]    [<ffff82d0403f73ab>] F 
vmx_asm_do_vmentry+0x2b/0x30
(XEN) [2021-06-14 23:02:21]
(XEN) [2021-06-14 23:02:21] *** Dumping CPU7 guest state (d5v5): ***
(XEN) [2021-06-14 23:02:21] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:22] CPU:    7
(XEN) [2021-06-14 23:02:22] RIP: 0010:[<ffffffff81beb36e>]
(XEN) [2021-06-14 23:02:22] RFLAGS: 0000000000000246   CONTEXT: hvm 
guest (d5v5)
(XEN) [2021-06-14 23:02:22] rax: 0000000000004000   rbx: 
0000000000000001   rcx: 00000000ffffffff
(XEN) [2021-06-14 23:02:22] rdx: 4ec4ec4ec4ec4ec5   rsi: 
ffffffff82b78d40   rdi: ffff88855f2ca400
(XEN) [2021-06-14 23:02:22] rbp: ffffc900000a7df8   rsp: 
ffffc900000a7df0   r8:  00000f1966cd8cc2
(XEN) [2021-06-14 23:02:22] r9:  0000000000000390   r10: 
00000000000003c6   r11: ffff888564f6b3e4
(XEN) [2021-06-14 23:02:22] r12: ffff888560a03800   r13: 
ffff888560a03864   r14: 0000000000000001
(XEN) [2021-06-14 23:02:22] r15: 0000000000000001   cr0: 
0000000080050033   cr4: 00000000001606e0
(XEN) [2021-06-14 23:02:22] cr3: 000000054a0ca004   cr2: 00007fd239d41000
(XEN) [2021-06-14 23:02:22] fsb: 0000000000000000   gsb: 
ffff888564f40000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:22] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0018   cs: 0010
(XEN) [2021-06-14 23:02:22]
(XEN) [2021-06-14 23:02:22] *** Dumping CPU8 host state: ***
(XEN) [2021-06-14 23:02:22] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:22] CPU:    8
(XEN) [2021-06-14 23:02:22] RIP: e008:[<ffff82d04028696a>] 
_spin_lock+0xaa/0x140
(XEN) [2021-06-14 23:02:22] RFLAGS: 0000000000000202   CONTEXT: 
hypervisor (d7v5)
(XEN) [2021-06-14 23:02:22] rax: 0000000030cf30cd   rbx: 
ffff82d040a33bc0   rcx: 0000000000000000
(XEN) [2021-06-14 23:02:22] rdx: 00000000000030cf   rsi: 
0000000000000000   rdi: ffff82d040a33bc6
(XEN) [2021-06-14 23:02:22] rbp: ffff83207ca17d00   rsp: 
ffff83207ca17ce0   r8:  000000000001a900
(XEN) [2021-06-14 23:02:22] r9:  ffff83207ca17d4c   r10: 
0000000000000000   r11: 0000000000000000
(XEN) [2021-06-14 23:02:22] r12: 0000000030cf30cc   r13: 
ffff82d040a33bc6   r14: 00000000000030cf
(XEN) [2021-06-14 23:02:22] r15: 000000000000000c   cr0: 
0000000080050033   cr4: 00000000001526e0
(XEN) [2021-06-14 23:02:22] cr3: 0000000fbb822000   cr2: 00007f1808d35dd6
(XEN) [2021-06-14 23:02:22] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:22] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: e008
(XEN) [2021-06-14 23:02:22] Xen code around <ffff82d04028696a> 
(_spin_lock+0xaa/0x140):
(XEN) [2021-06-14 23:02:22]  c1 ea 10 f3 90 66 8b 03 <66> 39 c2 75 f6 4c 
89 ef e8 09 fc ff ff 5b 41 5c
(XEN) [2021-06-14 23:02:22] Xen stack trace from rsp=ffff83207ca17ce0:
(XEN) [2021-06-14 23:02:22]    0000000000001000 ffff82d04060ed60 
ffff82d04060ec80 0000000000000008
(XEN) [2021-06-14 23:02:22]    ffff83207ca17d48 ffff82d04053ec09 
0000000000000000 0000000000000000
(XEN) [2021-06-14 23:02:22]    ffff83207f340000 ffff82d04060ec80 
ffff83157a990000 ffff8315c1503000
(XEN) [2021-06-14 23:02:22]    ffff830b9af2f000 ffff83207ca17db0 
ffff82d0404db85c 0000000000000282
(XEN) [2021-06-14 23:02:22]    ffff83103ff29a00 0000000000000002 
ffff83207ca17db0 0000000000000000
(XEN) [2021-06-14 23:02:22]    ffff82d000000008 ffff83207f340000 
ffff83207ca17ef8 ffff8315c1503000
(XEN) [2021-06-14 23:02:22]    ffff831037cb97ac 0000000000000008 
ffff83207ca17df8 ffff82d04031c329
(XEN) [2021-06-14 23:02:22]    0000000500000007 ffff830b9af64470 
ffff830b9af2f000 ffff83207f340000
(XEN) [2021-06-14 23:02:22]    ffff8315c151df20 ffff83157a990000 
0000000000000008 ffff83207ca17e80
(XEN) [2021-06-14 23:02:22]    ffff82d04031faff ffff82d040d6b080 
00007d2fbf294fc8 ffff82d040d49a98
(XEN) [2021-06-14 23:02:22]    ffff82d040d49a98 00000f5ce8b53c6b 
ffff82d000000001 ffff8315c1503000
(XEN) [2021-06-14 23:02:22]    0000000000000040 0000000000000048 
ffff831037c89570 0000000000000003
(XEN) [2021-06-14 23:02:22]    ffff82d040d53800 0000000000000008 
ffff82d040d53800 ffff83207ca17ef8
(XEN) [2021-06-14 23:02:22]    ffff83207ca17ed8 ffff82d040284d00 
ffff83207ca17fc0 00007d2fbf2acc04
(XEN) [2021-06-14 23:02:22]    0000000000000000 0000000000000000 
ffff8315c1503000 0000000000000000
(XEN) [2021-06-14 23:02:22]    0000000000000000 0000000000000000 
0000000000000000 ffff83207ca17ee8
(XEN) [2021-06-14 23:02:22]    ffff82d040285013 00007cdf835e80e7 
ffff82d0403f73ab ffffffff8576a6c0
(XEN) [2021-06-14 23:02:22]    ffff8881020b1864 ffff88810b58e800 
ffff8881008fd280 ffffc90000157d00
(XEN) [2021-06-14 23:02:22]    ffff8881020b1865 0000000000000000 
ffffed102011fa50 ffff8881008fd287
(XEN) [2021-06-14 23:02:22]    0000000000000000 0000000000004000 
ffffffff83dd94c2 1ffff1102011fa50
(XEN) [2021-06-14 23:02:22] Xen call trace:
(XEN) [2021-06-14 23:02:22]    [<ffff82d04028696a>] R _spin_lock+0xaa/0x140
(XEN) [2021-06-14 23:02:22]    [<ffff82d04053ec09>] F 
flush_area_mask+0x229/0x360
(XEN) [2021-06-14 23:02:22]    [<ffff82d0404db85c>] F 
context_switch+0x37c/0x2160
(XEN) [2021-06-14 23:02:22]    [<ffff82d04031c329>] F 
common/sched/core.c#sched_context_switch+0x1c9/0x940
(XEN) [2021-06-14 23:02:22]    [<ffff82d04031faff>] F 
common/sched/core.c#schedule+0xd1f/0x1080
(XEN) [2021-06-14 23:02:22]    [<ffff82d040284d00>] F 
common/softirq.c#__do_softirq+0x200/0x340
(XEN) [2021-06-14 23:02:22]    [<ffff82d040285013>] F do_softirq+0x13/0x20
(XEN) [2021-06-14 23:02:22]    [<ffff82d0403f73ab>] F 
vmx_asm_do_vmentry+0x2b/0x30
(XEN) [2021-06-14 23:02:22]
(XEN) [2021-06-14 23:02:22] *** Dumping CPU8 guest state (d7v5): ***
(XEN) [2021-06-14 23:02:22] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:22] CPU:    8
(XEN) [2021-06-14 23:02:22] RIP: 0010:[<ffffffff83dd8cce>]
(XEN) [2021-06-14 23:02:22] RFLAGS: 0000000000000246   CONTEXT: hvm 
guest (d7v5)
(XEN) [2021-06-14 23:02:22] rax: 0000000000004000   rbx: 
ffff8881020b1865   rcx: ffffffff83dd94c2
(XEN) [2021-06-14 23:02:22] rdx: 1ffff1102011fa50   rsi: 
0000000000000008   rdi: ffff8881008fd280
(XEN) [2021-06-14 23:02:22] rbp: ffffc90000157d00   rsp: 
ffffc90000157cf0   r8:  0000000000000000
(XEN) [2021-06-14 23:02:22] r9:  ffff8881008fd287   r10: 
ffffed102011fa50   r11: 0000000000000000
(XEN) [2021-06-14 23:02:22] r12: ffff8881008fd280   r13: 
ffff88810b58e800   r14: ffff8881020b1864
(XEN) [2021-06-14 23:02:22] r15: ffffffff8576a6c0   cr0: 
0000000080050033   cr4: 00000000001706e0
(XEN) [2021-06-14 23:02:22] cr3: 00000001297ba001   cr2: 00007f1808d35dd6
(XEN) [2021-06-14 23:02:22] fsb: 0000000000000000   gsb: 
ffff8884d3a80000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:22] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0018   cs: 0010
(XEN) [2021-06-14 23:02:22]
(XEN) [2021-06-14 23:02:22] *** Dumping CPU10 host state: ***
(XEN) [2021-06-14 23:02:22] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:22] CPU:    10
(XEN) [2021-06-14 23:02:22] RIP: e008:[<ffff82d04028696a>] 
_spin_lock+0xaa/0x140
(XEN) [2021-06-14 23:02:22] RFLAGS: 0000000000000212   CONTEXT: 
hypervisor (d6v1)
(XEN) [2021-06-14 23:02:22] rax: 0000000030d330cf   rbx: 
ffff82d040a33bc0   rcx: 0000000000000000
(XEN) [2021-06-14 23:02:22] rdx: 00000000000030d3   rsi: 
0000000000000000   rdi: ffff82d040a33bc6
(XEN) [2021-06-14 23:02:22] rbp: ffff83207cba7df8   rsp: 
ffff83207cba7dd8   r8:  1234567890abcdef
(XEN) [2021-06-14 23:02:22] r9:  1234567890abcdef   r10: 
1234567890abcdef   r11: 1234567890abcdef
(XEN) [2021-06-14 23:02:22] r12: 0000000030d330cf   r13: 
ffff82d040a33bc6   r14: 00000000000030d3
(XEN) [2021-06-14 23:02:22] r15: 000000000000000c   cr0: 
0000000080050033   cr4: 00000000001526e0
(XEN) [2021-06-14 23:02:22] cr3: 00000009bbbc9000   cr2: 00007f1aec175000
(XEN) [2021-06-14 23:02:22] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:22] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: e008
(XEN) [2021-06-14 23:02:22] Xen code around <ffff82d04028696a> 
(_spin_lock+0xaa/0x140):
(XEN) [2021-06-14 23:02:22]  c1 ea 10 f3 90 66 8b 03 <66> 39 c2 75 f6 4c 
89 ef e8 09 fc ff ff 5b 41 5c
(XEN) [2021-06-14 23:02:22] Xen stack trace from rsp=ffff83207cba7dd8:
(XEN) [2021-06-14 23:02:22]    0000000000000100 ffff82d04060eda0 
ffff83207cba7e50 000000000000000a
(XEN) [2021-06-14 23:02:22]    ffff83207cba7e40 ffff82d04053ec09 
0000000000000000 0000000000000000
(XEN) [2021-06-14 23:02:22]    ffff82d04060eda0 ffff83207cba7e50 
000000000000000a ffff82d040d53900
(XEN) [2021-06-14 23:02:22]    ffff83207cba7ef8 ffff83207cba7e80 
ffff82d04053ee94 0000000000000bff
(XEN) [2021-06-14 23:02:22]    0000000000000000 0000000000000000 
0000000000000000 0000000000000004
(XEN) [2021-06-14 23:02:22]    ffff82d040d53900 ffff83207cba7ed8 
ffff82d040284d00 ffff83207cba7fc0
(XEN) [2021-06-14 23:02:22]    00007d2fbf2acc04 0000000000000000 
0000000000000000 ffff83207fa0a000
(XEN) [2021-06-14 23:02:22]    00000000001526e0 0000000000000000 
ffff831037ca2000 ffff83207f3fa000
(XEN) [2021-06-14 23:02:22]    ffff83207cba7ee8 ffff82d040285013 
ffff83207cba7ef0 ffff82d0403f73ab
(XEN) [2021-06-14 23:02:22]    0000000000000000 0000000000000001 
ffffffffaebc8640 ffff996ffb187800
(XEN) [2021-06-14 23:02:22]    ffff996fc0c35064 0000000000000001 
ffff9977ea46a364 ffff9977ea46a384
(XEN) [2021-06-14 23:02:22]    ffff996fc0c35000 0000000000000001 
0000000000004000 ffff9977ea46c100
(XEN) [2021-06-14 23:02:22]    0000000000000001 ffffffffaebc8640 
ffff996fc0c35064 0000beef0000beef
(XEN) [2021-06-14 23:02:22]    ffffffffadc7c76e 000000bf0000beef 
0000000000000246 ffffac780008fe58
(XEN) [2021-06-14 23:02:22]    000000000000beef 000000000000beef 
000000000000beef 000000000000beef
(XEN) [2021-06-14 23:02:22]    000000000000beef 0000e0100000000a 
ffff83207fa0a000 0000003ff6f55000
(XEN) [2021-06-14 23:02:22]    00000000001526e0 0000000000000000 
0000000000000000 0000060000000000
(XEN) [2021-06-14 23:02:22]    0000000000000000
(XEN) [2021-06-14 23:02:22] Xen call trace:
(XEN) [2021-06-14 23:02:22]    [<ffff82d04028696a>] R _spin_lock+0xaa/0x140
(XEN) [2021-06-14 23:02:22]    [<ffff82d04053ec09>] F 
flush_area_mask+0x229/0x360
(XEN) [2021-06-14 23:02:22]    [<ffff82d04053ee94>] F 
new_tlbflush_clock_period+0x154/0x1c0
(XEN) [2021-06-14 23:02:22]    [<ffff82d040284d00>] F 
common/softirq.c#__do_softirq+0x200/0x340
(XEN) [2021-06-14 23:02:22]    [<ffff82d040285013>] F do_softirq+0x13/0x20
(XEN) [2021-06-14 23:02:22]    [<ffff82d0403f73ab>] F 
vmx_asm_do_vmentry+0x2b/0x30
(XEN) [2021-06-14 23:02:22]
(XEN) [2021-06-14 23:02:22] *** Dumping CPU10 guest state (d6v1): ***
(XEN) [2021-06-14 23:02:22] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:22] CPU:    10
(XEN) [2021-06-14 23:02:22] RIP: 0010:[<ffffffffadc7c76e>]
(XEN) [2021-06-14 23:02:22] RFLAGS: 0000000000000246   CONTEXT: hvm 
guest (d6v1)
(XEN) [2021-06-14 23:02:23] rax: 0000000000004000   rbx: 
0000000000000001   rcx: ffff9977ea46c100
(XEN) [2021-06-14 23:02:23] rdx: 0000000000000001   rsi: 
ffffffffaebc8640   rdi: ffff996fc0c35064
(XEN) [2021-06-14 23:02:23] rbp: ffff996fc0c35064   rsp: 
ffffac780008fe58   r8:  0000000000000001
(XEN) [2021-06-14 23:02:23] r9:  ffff996fc0c35000   r10: 
ffff9977ea46a384   r11: ffff9977ea46a364
(XEN) [2021-06-14 23:02:23] r12: ffff996ffb187800   r13: 
ffffffffaebc8640   r14: 0000000000000001
(XEN) [2021-06-14 23:02:23] r15: 0000000000000000   cr0: 
0000000080050033   cr4: 00000000001706a0
(XEN) [2021-06-14 23:02:23] cr3: 000000012492a006   cr2: 00007f1aec175000
(XEN) [2021-06-14 23:02:23] fsb: 0000000000000000   gsb: 
ffff9977ea440000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:23] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0018   cs: 0010
(XEN) [2021-06-14 23:02:23]
(XEN) [2021-06-14 23:02:23] *** Dumping CPU11 host state: ***
(XEN) [2021-06-14 23:02:23] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:23] CPU:    11
(XEN) [2021-06-14 23:02:23] RIP: e008:[<ffff82d040205c6a>] 
__bitmap_empty+0xea/0x1a0
(XEN) [2021-06-14 23:02:23] RFLAGS: 0000000000000286   CONTEXT: 
hypervisor (d5v2)
(XEN) [2021-06-14 23:02:23] rax: 0000000000000001   rbx: 
0000000000000000   rcx: 0000000000000100
(XEN) [2021-06-14 23:02:23] rdx: 0000000000000000   rsi: 
000000000000000c   rdi: ffff82d040d5b478
(XEN) [2021-06-14 23:02:23] rbp: ffff83207ca37e60   rsp: 
ffff83207ca37e38   r8:  1234567890abcdef
(XEN) [2021-06-14 23:02:23] r9:  1234567890abcdef   r10: 
1234567890abcdef   r11: 1234567890abcdef
(XEN) [2021-06-14 23:02:23] r12: ffff83157a650000   r13: 
ffff82d040d5b478   r14: 0000000000000000
(XEN) [2021-06-14 23:02:23] r15: 000000000000000c   cr0: 
0000000080050033   cr4: 00000000001526e0
(XEN) [2021-06-14 23:02:23] cr3: 000000157a7ae000   cr2: 00007f0f19a85000
(XEN) [2021-06-14 23:02:23] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:23] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: e008
(XEN) [2021-06-14 23:02:23] Xen code around <ffff82d040205c6a> 
(__bitmap_empty+0xea/0x1a0):
(XEN) [2021-06-14 23:02:23]  85 ff 74 34 49 8b 5d 00 <44> 89 fa c1 fa 1f 
c1 ea 1a 41 8d 04 17 83 e0 3f
(XEN) [2021-06-14 23:02:23] Xen stack trace from rsp=ffff83207ca37e38:
(XEN) [2021-06-14 23:02:23]    ffff82d040d5b478 ffff83157a650000 
ffff82d0403d3200 0000000000000001
(XEN) [2021-06-14 23:02:23]    000000000000000c ffff83207ca37e98 
ffff82d0402860de ffff82d04060eda0
(XEN) [2021-06-14 23:02:23]    ffff83157a650000 0000000000000000 
0000000000000000 ffff83157a7c1000
(XEN) [2021-06-14 23:02:23]    ffff83207ca37ec8 ffff82d0403d3b73 
ffff83157a650000 0000000000000001
(XEN) [2021-06-14 23:02:23]    ffff83157a7c1160 ffff831037c95000 
ffff83207ca37ef0 ffff82d0403d9bcf
(XEN) [2021-06-14 23:02:23]    ffff82d0403d9ac0 ffff83207ca37ef8 
ffff831037c92098 ffff83207ca37d60
(XEN) [2021-06-14 23:02:23]    0000000000000001 0000000000000001 
ffff888560a02864 ffff888560a02800
(XEN) [2021-06-14 23:02:23]    ffffc9000008fdf8 0000000000000001 
ffff888564eab3e4 00000000000003b3
(XEN) [2021-06-14 23:02:23]    00000000ffffffff 00000f19a2a78e02 
0000000000004000 00000000ffffffff
(XEN) [2021-06-14 23:02:23]    4ec4ec4ec4ec4ec5 ffffffff82b78d40 
ffff88855f2cb800 0000beef0000beef
(XEN) [2021-06-14 23:02:23]    ffffffff81beb36e 000000bf0000beef 
0000000000000246 ffffc9000008fdf0
(XEN) [2021-06-14 23:02:23]    000000000000beef 000000000000beef 
000000000000beef 000000000000beef
(XEN) [2021-06-14 23:02:23]    000000000000beef 0000e0100000000b 
ffff83157a650000 0000003ff6f49000
(XEN) [2021-06-14 23:02:23]    00000000001526e0 0000000000000000 
0000000000000000 0000060000000000
(XEN) [2021-06-14 23:02:23]    0000000000000000
(XEN) [2021-06-14 23:02:23] Xen call trace:
(XEN) [2021-06-14 23:02:23]    [<ffff82d040205c6a>] R 
__bitmap_empty+0xea/0x1a0
(XEN) [2021-06-14 23:02:23]    [<ffff82d0402860de>] F 
on_selected_cpus+0x15e/0x180
(XEN) [2021-06-14 23:02:23]    [<ffff82d0403d3b73>] F 
arch/x86/hvm/vmx/vmcs.c#vmx_clear_vmcs+0x113/0x120
(XEN) [2021-06-14 23:02:23]    [<ffff82d0403d9bcf>] F 
vmx_do_resume+0x10f/0x560
(XEN) [2021-06-14 23:02:23]
(XEN) [2021-06-14 23:02:23] *** Dumping CPU11 guest state (d5v2): ***
(XEN) [2021-06-14 23:02:23] ----[ Xen-4.15.1-pre  x86_64  debug=y 
ubsan=y  Not tainted ]----
(XEN) [2021-06-14 23:02:23] CPU:    11
(XEN) [2021-06-14 23:02:23] RIP: 0000:[<ffffffff81beb36e>]
(XEN) [2021-06-14 23:02:23] RFLAGS: 0000000000000246   CONTEXT: hvm 
guest (d5v2)
(XEN) [2021-06-14 23:02:23] rax: 0000000000004000   rbx: 
0000000000000001   rcx: 00000000ffffffff
(XEN) [2021-06-14 23:02:23] rdx: 4ec4ec4ec4ec4ec5   rsi: 
ffffffff82b78d40   rdi: ffff88855f2cb800
(XEN) [2021-06-14 23:02:23] rbp: ffffc9000008fdf8   rsp: 
ffffc9000008fdf0   r8:  00000f19a2a78e02
(XEN) [2021-06-14 23:02:23] r9:  00000000ffffffff   r10: 
00000000000003b3   r11: ffff888564eab3e4
(XEN) [2021-06-14 23:02:23] r12: ffff888560a02800   r13: 
ffff888560a02864   r14: 0000000000000001
(XEN) [2021-06-14 23:02:23] r15: 0000000000000001   cr0: 
0000000080050033   cr4: 00000000001606e0
(XEN) [2021-06-14 23:02:23] cr3: 00000004948f8006   cr2: 00007fd240899000
(XEN) [2021-06-14 23:02:23] fsb: 0000000000000000   gsb: 
0000000000000000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:23] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: 0000   cs: 0000
(XEN) [2021-06-14 23:02:23]
(XEN) [2021-06-14 23:02:23] [0: dump Dom0 registers]
(XEN) [2021-06-14 23:02:23] '0' pressed -> dumping Dom0's registers
(XEN) [2021-06-14 23:02:23] *** Dumping Dom0 vcpu#0 state: ***
(XEN) [2021-06-14 23:02:23] RIP: e033:[<ffffffff810d2100>]
(XEN) [2021-06-14 23:02:23] RFLAGS: 0000000000000246   EM: 1 CONTEXT: pv 
guest (d0v0)
(XEN) [2021-06-14 23:02:23] rax: 00000f4525a0a280   rbx: 
ffff88813b602c00   rcx: 0000000000000001
(XEN) [2021-06-14 23:02:23] rdx: 0000000000000000   rsi: 
ffff88816f701e80   rdi: ffff88816f701f40
(XEN) [2021-06-14 23:02:23] rbp: ffffc900400036f8   rsp: 
ffffc900400036b0   r8:  0000000000000000
(XEN) [2021-06-14 23:02:23] r9:  0000000000b71b00   r10: 
ffff88816f701f50   r11: ffff8884872e3570
(XEN) [2021-06-14 23:02:23] r12: ffff88816f701f40   r13: 
ffff88813bdbdb80   r14: ffff8884872e34c0
(XEN) [2021-06-14 23:02:23] r15: 0000000000000008   cr0: 
0000000000000000   cr4: 0000000000050660
(XEN) [2021-06-14 23:02:23] cr3: 00000009ac4ad000   cr2: 000055f224bcbf80
(XEN) [2021-06-14 23:02:23] fsb: 0000000000000000   gsb: 
ffff888487200000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:23] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: e02b   cs: e033
(XEN) [2021-06-14 23:02:23] Guest stack trace from rsp=ffffc900400036b0:
(XEN) [2021-06-14 23:02:23]   <G><1>Fixup #GP[0000]: ffff82d04055064e 
[arch/x86/traps.c#show_guest_stack+0x60e/0x6c0] -> ffff82d0405ca947
(XEN) [2021-06-14 23:02:23] Fault while accessing guest memory.
(XEN) [2021-06-14 23:02:23] *** Dumping Dom0 vcpu#1 state: ***
(XEN) [2021-06-14 23:02:23] RIP: e033:[<ffffffff81851080>]
(XEN) [2021-06-14 23:02:23] RFLAGS: 0000000000000282   EM: 0 CONTEXT: pv 
guest (d0v1)
(XEN) [2021-06-14 23:02:23] rax: ffffffff81851080   rbx: 
ffffc900401dd150   rcx: 0000000000000002
(XEN) [2021-06-14 23:02:23] rdx: 0000000000000056   rsi: 
00000009b04d18c0   rdi: ffff8881013650c8
(XEN) [2021-06-14 23:02:23] rbp: ffffc9004001edd8   rsp: 
ffffc9004001edd0   r8:  ffff8881013650c8
(XEN) [2021-06-14 23:02:23] r9:  0000000000000002   r10: 
0000000000000056   r11: 0000000000000040
(XEN) [2021-06-14 23:02:23] r12: ffff8881019a0b40   r13: 
ffff88810c6040e0   r14: 0000000000000000
(XEN) [2021-06-14 23:02:23] r15: ffff8881019a0b40   cr0: 
0000000080050033   cr4: 0000000000050660
(XEN) [2021-06-14 23:02:23] cr3: 0000000940515000   cr2: 0000559342580000
(XEN) [2021-06-14 23:02:23] fsb: 00007f6ebdcfd140   gsb: 
ffff888487240000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:23] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: e02b   cs: e033
(XEN) [2021-06-14 23:02:23] Guest stack trace from rsp=ffffc9004001edd0:
(XEN) [2021-06-14 23:02:23]   <G><1>Fixup #GP[0000]: ffff82d04055064e 
[arch/x86/traps.c#show_guest_stack+0x60e/0x6c0] -> ffff82d0405ca947
(XEN) [2021-06-14 23:02:23] Fault while accessing guest memory.
(XEN) [2021-06-14 23:02:23] *** Dumping Dom0 vcpu#2 state: ***
(XEN) [2021-06-14 23:02:23] RIP: e033:[<ffffffff811412ac>]
(XEN) [2021-06-14 23:02:23] RFLAGS: 0000000000000202   EM: 0 CONTEXT: pv 
guest (d0v2)
(XEN) [2021-06-14 23:02:23] rax: 0000000000000011   rbx: 
ffff888487328900   rcx: 0000000000000004
(XEN) [2021-06-14 23:02:23] rdx: ffffffff82c532d0   rsi: 
ffff8884872a4488   rdi: 0000000000000003
(XEN) [2021-06-14 23:02:23] rbp: ffffc900403bfcd0   rsp: 
ffffc900403bfc20   r8:  0000000000000004
(XEN) [2021-06-14 23:02:23] r9:  ffffffff82af5ae8   r10: 
deadbeefdeadf00d   r11: 0000000000000017
(XEN) [2021-06-14 23:02:23] r12: 0000000000000007   r13: 
0000000000000004   r14: ffff8884872a4480
(XEN) [2021-06-14 23:02:23] r15: 0000000000000004   cr0: 
0000000080050033   cr4: 0000000000050660
(XEN) [2021-06-14 23:02:23] cr3: 0000001032a22000   cr2: 00007fd4c3484248
(XEN) [2021-06-14 23:02:23] fsb: 0000000000000000   gsb: 
ffff888487280000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:23] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: e02b   cs: e033
(XEN) [2021-06-14 23:02:23] Guest stack trace from rsp=ffffc900403bfc20:
(XEN) [2021-06-14 23:02:23]   <G><1>Fixup #GP[0000]: ffff82d04055064e 
[arch/x86/traps.c#show_guest_stack+0x60e/0x6c0] -> ffff82d0405ca947
(XEN) [2021-06-14 23:02:23] Fault while accessing guest memory.
(XEN) [2021-06-14 23:02:23] *** Dumping Dom0 vcpu#3 state: ***
(XEN) [2021-06-14 23:02:23] RIP: e033:[<ffffffff810f8d2f>]
(XEN) [2021-06-14 23:02:23] RFLAGS: 0000000000000206   EM: 1 CONTEXT: pv 
guest (d0v3)
(XEN) [2021-06-14 23:02:23] rax: 0000000000000003   rbx: 
ffff8884872e41c0   rcx: 0000000000000000
(XEN) [2021-06-14 23:02:23] rdx: 0000000000006813   rsi: 
000000000000005f   rdi: 0000000000000018
(XEN) [2021-06-14 23:02:23] rbp: ffffc90040190c80   rsp: 
ffffc90040190c48   r8:  0000000000000000
(XEN) [2021-06-14 23:02:23] r9:  ffffffff82af5ae8   r10: 
0000000100fc9c34   r11: ffffc90040190ff8
(XEN) [2021-06-14 23:02:23] r12: ffff8884872e34c0   r13: 
0000000000000000   r14: 0000000000000001
(XEN) [2021-06-14 23:02:23] r15: 0000000000000100   cr0: 
0000000080050033   cr4: 0000000000050660
(XEN) [2021-06-14 23:02:23] cr3: 0000000984da6000   cr2: 00007f82d79f39b0
(XEN) [2021-06-14 23:02:23] fsb: 00007fc3662a5c00   gsb: 
ffff8884872c0000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:23] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: e02b   cs: e033
(XEN) [2021-06-14 23:02:23] Guest stack trace from rsp=ffffc90040190c48:
(XEN) [2021-06-14 23:02:23]   <G><1>Fixup #GP[0000]: ffff82d04055064e 
[arch/x86/traps.c#show_guest_stack+0x60e/0x6c0] -> ffff82d0405ca947
(XEN) [2021-06-14 23:02:23] Fault while accessing guest memory.
(XEN) [2021-06-14 23:02:23] *** Dumping Dom0 vcpu#4 state: ***
(XEN) [2021-06-14 23:02:23] RIP: e033:[<ffffffff810f8e0f>]
(XEN) [2021-06-14 23:02:23] RFLAGS: 0000000000000202   EM: 1 CONTEXT: pv 
guest (d0v4)
(XEN) [2021-06-14 23:02:23] rax: 000000000000011f   rbx: 
ffff8884873241c0   rcx: 0000000000000001
(XEN) [2021-06-14 23:02:23] rdx: 0000000000000000   rsi: 
0000000000000000   rdi: 0000000000140000
(XEN) [2021-06-14 23:02:23] rbp: ffffc900401bca08   rsp: 
ffffc900401bc9d0   r8:  0000000000140000
(XEN) [2021-06-14 23:02:23] r9:  0000000000000003   r10: 
0000000000000001   r11: 0000000000000020
(XEN) [2021-06-14 23:02:23] r12: ffff8884872e34c0   r13: 
ffff8884872e41c0   r14: ffff8884873241d4
(XEN) [2021-06-14 23:02:23] r15: 0000000000000001   cr0: 
0000000080050033   cr4: 0000000000050660
(XEN) [2021-06-14 23:02:23] cr3: 0000000984805000   cr2: 0000558758755708
(XEN) [2021-06-14 23:02:23] fsb: 00007f2d7acbbc80   gsb: 
ffff888487300000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:23] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: e02b   cs: e033
(XEN) [2021-06-14 23:02:23] Guest stack trace from rsp=ffffc900401bc9d0:
(XEN) [2021-06-14 23:02:23]   <G><1>Fixup #GP[0000]: ffff82d04055064e 
[arch/x86/traps.c#show_guest_stack+0x60e/0x6c0] -> ffff82d0405ca947
(XEN) [2021-06-14 23:02:23] Fault while accessing guest memory.
(XEN) [2021-06-14 23:02:23] *** Dumping Dom0 vcpu#5 state: ***
(XEN) [2021-06-14 23:02:23] RIP: e033:[<ffffffff81736eee>]
(XEN) [2021-06-14 23:02:23] RFLAGS: 0000000000010206   EM: 0 CONTEXT: pv 
guest (d0v5)
(XEN) [2021-06-14 23:02:23] rax: 00007f6aca3baa44   rbx: 
0000000000001000   rcx: 0000000000000b00
(XEN) [2021-06-14 23:02:23] rdx: 0000000000001000   rsi: 
00007f6aca3b9f44   rdi: ffff8881c3a7f500
(XEN) [2021-06-14 23:02:23] rbp: ffffc90045537ca8   rsp: 
ffffc90045537c18   r8:  0000000000000000
(XEN) [2021-06-14 23:02:23] r9:  ffff888000000000   r10: 
ffffea0000000000   r11: 000000000000142b
(XEN) [2021-06-14 23:02:23] r12: ffff8881c3a7f000   r13: 
ffffc90045537e18   r14: 0000000000001000
(XEN) [2021-06-14 23:02:23] r15: 0000000000008818   cr0: 
0000000080050033   cr4: 0000000000050660
(XEN) [2021-06-14 23:02:23] cr3: 0000000940d59000   cr2: 0000559867294f80
(XEN) [2021-06-14 23:02:23] fsb: 00007f6aca51c400   gsb: 
ffff888487340000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:23] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: e02b   cs: e033
(XEN) [2021-06-14 23:02:23] Guest stack trace from rsp=ffffc90045537c18:
(XEN) [2021-06-14 23:02:23]   <G><1>Fixup #GP[0000]: ffff82d04055064e 
[arch/x86/traps.c#show_guest_stack+0x60e/0x6c0] -> ffff82d0405ca947
(XEN) [2021-06-14 23:02:23] Fault while accessing guest memory.
(XEN) [2021-06-14 23:02:23] *** Dumping Dom0 vcpu#6 state: ***
(XEN) [2021-06-14 23:02:23] RIP: e033:[<ffffffff81028e5c>]
(XEN) [2021-06-14 23:02:23] RFLAGS: 0000000000000246   EM: 1 CONTEXT: pv 
guest (d0v6)
(XEN) [2021-06-14 23:02:23] rax: 0000000000000000   rbx: 
0000000000000006   rcx: 00000000c0000102
(XEN) [2021-06-14 23:02:23] rdx: 0000000000000000   rsi: 
ffffc90042fefb80   rdi: 00000000c0000102
(XEN) [2021-06-14 23:02:23] rbp: ffffc90042fefbd0   rsp: 
ffffc90042fefbb8   r8:  0000000000000000
(XEN) [2021-06-14 23:02:23] r9:  ffff88816f65dc68   r10: 
00000000000003bb   r11: 0000000000000000
(XEN) [2021-06-14 23:02:23] r12: 00000000c0000102   r13: 
ffff88810017db80   r14: ffff88810017f5c0
(XEN) [2021-06-14 23:02:23] r15: ffff88813be11a40   cr0: 
0000000080050033   cr4: 0000000000050660
(XEN) [2021-06-14 23:02:23] cr3: 00000009bc448000   cr2: 00007fa4910dbd08
(XEN) [2021-06-14 23:02:23] fsb: 0000000000000000   gsb: 
ffff888487380000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:23] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: e02b   cs: e033
(XEN) [2021-06-14 23:02:23] Guest stack trace from rsp=ffffc90042fefbb8:
(XEN) [2021-06-14 23:02:23]   <G><1>Fixup #GP[0000]: ffff82d04055064e 
[arch/x86/traps.c#show_guest_stack+0x60e/0x6c0] -> ffff82d0405ca947
(XEN) [2021-06-14 23:02:23] Fault while accessing guest memory.
(XEN) [2021-06-14 23:02:23] *** Dumping Dom0 vcpu#7 state: ***
(XEN) [2021-06-14 23:02:23] RIP: e033:[<ffffffff81002468>]
(XEN) [2021-06-14 23:02:23] RFLAGS: 0000000000000286   EM: 0 CONTEXT: pv 
guest (d0v7)
(XEN) [2021-06-14 23:02:23] rax: 0000000000000023   rbx: 
ffff88810b9ded01   rcx: ffffffff8100246a
(XEN) [2021-06-14 23:02:23] rdx: 0000000000000000   rsi: 
0000000000000000   rdi: 00007f434a04f010
(XEN) [2021-06-14 23:02:23] rbp: ffffc90040c17ef8   rsp: 
ffffc90040c17e10   r8:  0000000000000000
(XEN) [2021-06-14 23:02:23] r9:  0000000000000004   r10: 
0000000000000000   r11: 0000000000000286
(XEN) [2021-06-14 23:02:23] r12: 0000000000000004   r13: 
00007ffcc2ebf0d0   r14: 00007ffcc2ebf0d0
(XEN) [2021-06-14 23:02:23] r15: ffff88810b9ded00   cr0: 
0000000080050033   cr4: 0000000000050660
(XEN) [2021-06-14 23:02:23] cr3: 00000009a7e4b000   cr2: 00007f6aca74b000
(XEN) [2021-06-14 23:02:23] fsb: 00007f4349df1000   gsb: 
ffff8884873c0000   gss: 0000000000000000
(XEN) [2021-06-14 23:02:23] ds: 0000   es: 0000   fs: 0000   gs: 0000   
ss: e02b   cs: e033
(XEN) [2021-06-14 23:02:23] Guest stack trace from rsp=ffffc90040c17e10:
(XEN) [2021-06-14 23:02:23]   <G><1>Fixup #GP[0000]: ffff82d04055064e 
[arch/x86/traps.c#show_guest_stack+0x60e/0x6c0] -> ffff82d0405ca947
(XEN) [2021-06-14 23:02:23] Fault while accessing guest memory.
(XEN) [2021-06-14 23:02:23] [H: dump heap info]
(XEN) [2021-06-14 23:02:23] 'H' pressed -> dumping heap info (now = 
16893840499559)
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=0] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=1] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=2] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=3] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=4] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=5] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=6] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=7] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=8] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=9] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=10] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=11] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=12] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=13] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=14] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=15] -> 16128 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=16] -> 32768 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=17] -> 65536 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=18] -> 131072 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=19] -> 229409 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=20] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=21] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=22] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=23] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=24] -> 1572720 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=25] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=26] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=27] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=28] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=29] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=30] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=31] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=32] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=33] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=34] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=35] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=36] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=37] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=38] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=39] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=0][zone=40] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=0] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=1] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=2] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=3] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=4] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=5] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=6] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=7] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=8] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=9] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=10] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=11] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=12] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=13] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=14] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=15] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=16] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=17] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=18] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=19] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=20] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=21] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=22] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=23] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=24] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=25] -> 495793 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=26] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=27] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=28] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=29] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=30] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=31] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=32] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=33] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=34] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=35] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=36] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=37] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=38] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=39] -> 0 pages
(XEN) [2021-06-14 23:02:23] heap[node=1][zone=40] -> 0 pages
(XEN) [2021-06-14 23:02:23] [I: dump HVM irq info]
(XEN) [2021-06-14 23:02:23] 'I' pressed -> dumping HVM irq info
(XEN) [2021-06-14 23:02:23] Domain 2:
(XEN) [2021-06-14 23:02:23] PCI 0x00000000000000000000000000000000 ISA 
0x00000001 ROUTE 5 10 11 5
(XEN) [2021-06-14 23:02:23] grant_table.c:803:d0v3 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:23] GSI [0 - 7] 00 00 01 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [8 - f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [10 - 17] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [18 - 1f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [20 - 27] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [28 - 2f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] Link 00 00 00 00
(XEN) [2021-06-14 23:02:23] Callback via 3:0xf3, not asserted
(XEN) [2021-06-14 23:02:23] Domain 3:
(XEN) [2021-06-14 23:02:23] PCI 0x00000000000000000000000000000000 ISA 
0x00000100 ROUTE 0 0 0 0
(XEN) [2021-06-14 23:02:23] GSI [0 - 7] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [8 - f] 01 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [10 - 17] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [18 - 1f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [20 - 27] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [28 - 2f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] Link 00 00 00 00
(XEN) [2021-06-14 23:02:23] Callback via 3:0xf3, not asserted
(XEN) [2021-06-14 23:02:23] Domain 5:
(XEN) [2021-06-14 23:02:23] PCI 0x00000000000000000000000000000000 ISA 
0x00000100 ROUTE 0 0 0 0
(XEN) [2021-06-14 23:02:23] GSI [0 - 7] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [8 - f] 01 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [10 - 17] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [18 - 1f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [20 - 27] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [28 - 2f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] Link 00 00 00 00
(XEN) [2021-06-14 23:02:23] Callback via 3:0xf3, not asserted
(XEN) [2021-06-14 23:02:23] Domain 6:
(XEN) [2021-06-14 23:02:23] PCI 0x00000000000000000000000000000000 ISA 
0x00000000 ROUTE 0 0 0 0
(XEN) [2021-06-14 23:02:23] GSI [0 - 7] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [8 - f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [10 - 17] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [18 - 1f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [20 - 27] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [28 - 2f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] Link 00 00 00 00
(XEN) [2021-06-14 23:02:23] Callback via 3:0xf3, not asserted
(XEN) [2021-06-14 23:02:23] Domain 7:
(XEN) [2021-06-14 23:02:23] PCI 0x00000000000000000000000000000000 ISA 
0x00000100 ROUTE 0 0 0 0
(XEN) [2021-06-14 23:02:23] GSI [0 - 7] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [8 - f] 01 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [10 - 17] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [18 - 1f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [20 - 27] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] GSI [28 - 2f] 00 00 00 00 00 00 00 00
(XEN) [2021-06-14 23:02:23] Link 00 00 00 00
(XEN) [2021-06-14 23:02:23] Callback via 3:0xf3, not asserted
(XEN) [2021-06-14 23:02:23] [M: dump MSI state]
(XEN) [2021-06-14 23:02:23] MSI information:
(XEN) [2021-06-14 23:02:23]  IOMMU   72 vec=b0 lowest  edge assert  log 
lowest dest=00010555 mask=1/  /?
(XEN) [2021-06-14 23:02:23]  IOMMU   73 vec=38 lowest  edge assert  log 
lowest dest=00000001 mask=1/  /?
(XEN) [2021-06-14 23:02:23]  MSI     74 vec=49 lowest  edge assert  log 
lowest dest=00000555 mask=1/H /1
(XEN) [2021-06-14 23:02:23]  MSI     75 vec=61 lowest  edge assert  log 
lowest dest=00000555 mask=1/H /1
(XEN) [2021-06-14 23:02:23]  MSI     76 vec=79 lowest  edge assert  log 
lowest dest=00000555 mask=1/H /1
(XEN) [2021-06-14 23:02:23]  MSI     77 vec=91 lowest  edge assert  log 
lowest dest=00000555 mask=1/H /1
(XEN) [2021-06-14 23:02:23]  MSI     78 vec=b1 lowest  edge assert  log 
lowest dest=00000555 mask=1/H /1
(XEN) [2021-06-14 23:02:23]  MSI     79 vec=c1 lowest  edge assert  log 
lowest dest=00000555 mask=0/  /?
(XEN) [2021-06-14 23:02:23]  MSI     80 vec=c9 lowest  edge assert  log 
lowest dest=00000555 mask=0/  /?
(XEN) [2021-06-14 23:02:23]  MSI     81 vec=d1 lowest  edge assert  log 
lowest dest=00000555 mask=0/  /?
(XEN) [2021-06-14 23:02:23]  MSI     82 vec=d9 lowest  edge assert  log 
lowest dest=00000555 mask=0/  /?
(XEN) [2021-06-14 23:02:23]  MSI     83 vec=e1 lowest  edge assert  log 
lowest dest=00000555 mask=0/  /?
(XEN) [2021-06-14 23:02:23]  MSI     84 vec=42 lowest  edge assert  log 
lowest dest=00000555 mask=1/H /1
(XEN) [2021-06-14 23:02:23]  MSI     85 vec=62 lowest  edge assert  log 
lowest dest=00000555 mask=1/H /1
(XEN) [2021-06-14 23:02:23]  MSI-X   86 vec=ec lowest  edge assert  log 
lowest dest=00000001 mask=1/  /0
(XEN) [2021-06-14 23:02:23]  MSI-X   87 vec=b2 lowest  edge assert  log 
lowest dest=00010010 mask=1/  /0
(XEN) [2021-06-14 23:02:23]  MSI-X   88 vec=2d lowest  edge assert  log 
lowest dest=00010010 mask=1/  /0
(XEN) [2021-06-14 23:02:23]  MSI-X   89 vec=9a lowest  edge assert  log 
lowest dest=00010001 mask=1/  /0
(XEN) [2021-06-14 23:02:23]  MSI-X   90 vec=35 lowest  edge assert  log 
lowest dest=00010001 mask=1/  /0
(XEN) [2021-06-14 23:02:23]  MSI-X   91 vec=cf lowest  edge assert  log 
lowest dest=00000010 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X   92 vec=4d lowest  edge assert  log 
lowest dest=00000040 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X   93 vec=45 lowest  edge assert  log 
lowest dest=00000001 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI     94 vec=3d lowest  edge assert  log 
lowest dest=00010100 mask=0/  /?
(XEN) [2021-06-14 23:02:24]  MSI     95 vec=d7 lowest  edge assert  log 
lowest dest=00010040 mask=0/  /?
(XEN) [2021-06-14 23:02:24]  MSI     96 vec=df lowest  edge assert  log 
lowest dest=00010040 mask=0/  /?
(XEN) [2021-06-14 23:02:24]  MSI-X   97 vec=8d lowest  edge assert  log 
lowest dest=00010004 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X   98 vec=65 lowest  edge assert  log 
lowest dest=00010400 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X   99 vec=bc lowest  edge assert  log 
lowest dest=00010100 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  100 vec=c7 lowest  edge assert  log 
lowest dest=00000010 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  101 vec=e4 lowest  edge assert  log 
lowest dest=00000100 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  102 vec=6a lowest  edge assert  log 
lowest dest=00000400 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  103 vec=cc lowest  edge assert  log 
lowest dest=00000010 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  104 vec=3c lowest  edge assert  log 
lowest dest=00010010 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  105 vec=84 lowest  edge assert  log 
lowest dest=00000001 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  106 vec=d4 lowest  edge assert  log 
lowest dest=00000100 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI    107 vec=9c lowest  edge assert  log 
lowest dest=00000400 mask=0/  /?
(XEN) [2021-06-14 23:02:24]  MSI    108 vec=5d lowest  edge assert  log 
lowest dest=00010100 mask=0/  /?
(XEN) [2021-06-14 23:02:24]  MSI-X  109 vec=64 lowest  edge assert  log 
lowest dest=00000040 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  110 vec=9b lowest  edge assert  log 
lowest dest=00000100 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  111 vec=a3 lowest  edge assert  log 
lowest dest=00000100 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  112 vec=ab lowest  edge assert  log 
lowest dest=00000100 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  113 vec=b3 lowest  edge assert  log 
lowest dest=00000100 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  114 vec=d3 lowest  edge assert  log 
lowest dest=00000100 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  115 vec=db lowest  edge assert  log 
lowest dest=00000100 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  116 vec=71 lowest  edge assert  log 
lowest dest=00010004 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  117 vec=63 lowest  edge assert  log 
lowest dest=00000001 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  118 vec=6b lowest  edge assert  log 
lowest dest=00000001 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  119 vec=73 lowest  edge assert  log 
lowest dest=00000001 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  120 vec=7b lowest  edge assert  log 
lowest dest=00000001 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  121 vec=83 lowest  edge assert  log 
lowest dest=00000001 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI-X  122 vec=8b lowest  edge assert  log 
lowest dest=00000001 mask=1/  /0
(XEN) [2021-06-14 23:02:24]  MSI    123 vec=23 lowest  edge assert  log 
lowest dest=00010100 mask=0/  /?
(XEN) [2021-06-14 23:02:24]  MSI    124 vec=5c lowest  edge assert  log 
lowest dest=00010400 mask=0/  /?
(XEN) [2021-06-14 23:02:24]  MSI    125 vec=4c lowest  edge assert  log 
lowest dest=00000400 mask=0/  /?
(XEN) [2021-06-14 23:02:24]  MSI    126 vec=6d lowest  edge assert  log 
lowest dest=00010004 mask=0/  /?
(XEN) [2021-06-14 23:02:24] [Q: dump PCI devices]
(XEN) [2021-06-14 23:02:24] ==== PCI devices ====
(XEN) [2021-06-14 23:02:24] ==== segment 0000 ====
(XEN) [2021-06-14 23:02:24] 0000:ff:1f.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:1f.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:1e.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:1e.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:1e.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:1e.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:1e.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:17.7 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:17.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:17.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:17.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:17.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:16.7 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:16.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:16.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:15.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:15.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:15.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:15.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:14.7 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:14.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:14.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:14.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:14.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:14.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:14.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:14.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:13.7 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:13.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:13.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:13.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:13.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:13.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:13.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:13.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:12.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:12.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:10.7 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:10.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:10.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:10.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:10.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0f.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0f.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0f.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0f.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0f.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0c.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0c.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0c.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0c.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0c.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0c.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0b.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0b.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:0b.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:09.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:09.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:09.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:08.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:08.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:ff:08.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:82:00.1 - d7 - node 1   - MSIs < 125 >
(XEN) [2021-06-14 23:02:24] 0000:82:00.0 - d7 - node 1   - MSIs < 124 >
(XEN) [2021-06-14 23:02:24] 0000:81:00.1 - d5 - node 1   - MSIs < 126 >
(XEN) [2021-06-14 23:02:24] 0000:81:00.0 - d5 - node 1   - MSIs < 123 >
(XEN) [2021-06-14 23:02:24] 0000:80:05.4 - d0 - node 1   - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:80:05.2 - d0 - node 1   - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:80:05.1 - d0 - node 1   - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:80:05.0 - d0 - node 1   - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:80:03.0 - d0 - node 1   - MSIs < 85 >
(XEN) [2021-06-14 23:02:24] 0000:80:02.0 - d0 - node 1   - MSIs < 84 >
(XEN) [2021-06-14 23:02:24] 0000:7f:1f.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:1f.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:1e.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:1e.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:1e.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:1e.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:1e.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:17.7 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:17.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:17.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:17.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:17.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:16.7 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:16.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:16.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:15.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:15.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:15.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:15.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:14.7 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:14.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:14.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:14.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:14.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:14.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:14.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:14.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:13.7 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:13.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:13.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:13.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:13.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:13.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:13.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:13.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:12.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:12.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:24] 0000:7f:10.7 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:10.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:10.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:10.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:10.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0f.6 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0f.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0f.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0f.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0f.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0c.5 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0c.4 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0c.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0c.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0c.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0c.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0b.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0b.1 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:0b.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:09.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:09.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:09.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:08.3 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:08.2 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:7f:08.0 - d0 - node -1  - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:0b:00.0 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:0a:00.0 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:09:00.0 - d0 - node 0   - MSIs < 96 >
(XEN) [2021-06-14 23:02:25] 0000:08:00.0 - d6 - node 0   - MSIs < 102 
103 104 105 106 >
(XEN) [2021-06-14 23:02:25] 0000:07:00.0 - d0 - node 0   - MSIs < 97 98 
99 100 101 >
(XEN) [2021-06-14 23:02:25] 0000:05:00.0 - d0 - node 0   - MSIs < 86 87 
88 89 90 91 92 93 >
(XEN) [2021-06-14 23:02:25] 0000:04:00.0 - d7 - node 0   - MSIs < 109 
110 111 112 113 114 115 >
(XEN) [2021-06-14 23:02:25] 0000:03:00.0 - d2 - node 0   - MSIs < 108 >
(XEN) [2021-06-14 23:02:25] 0000:02:00.0 - d5 - node 0   - MSIs < 116 
117 118 119 120 121 122 >
(XEN) [2021-06-14 23:02:25] 0000:00:1f.6 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:1f.3 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:1f.2 - d0 - node 0   - MSIs < 95 >
(XEN) [2021-06-14 23:02:25] 0000:00:1f.0 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:1d.0 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:1c.7 - d0 - node 0   - MSIs < 83 >
(XEN) [2021-06-14 23:02:25] 0000:00:1c.4 - d0 - node 0   - MSIs < 82 >
(XEN) [2021-06-14 23:02:25] 0000:00:1c.3 - d0 - node 0   - MSIs < 81 >
(XEN) [2021-06-14 23:02:25] 0000:00:1c.2 - d0 - node 0   - MSIs < 80 >
(XEN) [2021-06-14 23:02:25] 0000:00:1c.0 - d0 - node 0   - MSIs < 79 >
(XEN) [2021-06-14 23:02:25] 0000:00:1b.0 - d0 - node 0   - MSIs < 107 >
(XEN) [2021-06-14 23:02:25] 0000:00:1a.0 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:16.1 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:16.0 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:14.0 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:11.4 - d0 - node 0   - MSIs < 94 >
(XEN) [2021-06-14 23:02:25] 0000:00:11.0 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:05.4 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:05.2 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:05.1 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:05.0 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] 0000:00:03.0 - d0 - node 0   - MSIs < 78 >
(XEN) [2021-06-14 23:02:25] 0000:00:02.2 - d0 - node 0   - MSIs < 77 >
(XEN) [2021-06-14 23:02:25] 0000:00:02.0 - d0 - node 0   - MSIs < 76 >
(XEN) [2021-06-14 23:02:25] 0000:00:01.1 - d0 - node 0   - MSIs < 75 >
(XEN) [2021-06-14 23:02:25] 0000:00:01.0 - d0 - node 0   - MSIs < 74 >
(XEN) [2021-06-14 23:02:25] 0000:00:00.0 - d0 - node 0   - MSIs < >
(XEN) [2021-06-14 23:02:25] [V: dump iommu info]
(XEN) [2021-06-14 23:02:25]
(XEN) [2021-06-14 23:02:25] iommu 0: nr_pt_levels = 4.
(XEN) [2021-06-14 23:02:25]   Queued Invalidation: supported and enabled.
(XEN) [2021-06-14 23:02:25]   Interrupt Remapping: supported and enabled.
(XEN) [2021-06-14 23:02:25]   Interrupt Posting: not supported.
(XEN) [2021-06-14 23:02:25]   Interrupt remapping table 
(nr_entry=0x10000. Only dump P=1 entries here):
(XEN) [2021-06-14 23:02:25] R means remapped format, P means posted format.
(XEN) [2021-06-14 23:02:25] R:       SVT  SQ   SID  V  AVL FPD      DST 
DLM TM RH DM P
(XEN) [2021-06-14 23:02:25] P:       SVT  SQ   SID  V  AVL 
FPD              PDA  URG P
(XEN) [2021-06-14 23:02:25] R:  0000:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0001:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0002:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0003:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0004:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0005:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0006:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0007:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0008:  1   0  802c 37    0   0 
00010001   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0009:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  000a:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  000b:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  000c:  1   0  802c 3f    0   0 
00010001   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  000d:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  000e:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  000f:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0010:  1   0  802c ee    0   0 
00010400   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0011:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0012:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0013:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0014:  1   0  802c 27    0   0 
00010400   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0015:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0016:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0017:  1   0  802c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0018:  1   0  8010 42    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0019:  1   0  8018 62    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  001a:  1   0  8100 23    0   0 
00010100   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  001b:  1   0  8200 5c    0   0 
00010400   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  001c:  1   0  8201 4c    0   0 
00000400   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  001d:  1   0  8101 6d    0   0 
00010010   1  0  1  1 1
(XEN) [2021-06-14 23:02:25]
(XEN) [2021-06-14 23:02:25] iommu 1: nr_pt_levels = 4.
(XEN) [2021-06-14 23:02:25]   Queued Invalidation: supported and enabled.
(XEN) [2021-06-14 23:02:25]   Interrupt Remapping: supported and enabled.
(XEN) [2021-06-14 23:02:25]   Interrupt Posting: not supported.
(XEN) [2021-06-14 23:02:25]   Interrupt remapping table 
(nr_entry=0x10000. Only dump P=1 entries here):
(XEN) [2021-06-14 23:02:25] R means remapped format, P means posted format.
(XEN) [2021-06-14 23:02:25] R:       SVT  SQ   SID  V  AVL FPD      DST 
DLM TM RH DM P
(XEN) [2021-06-14 23:02:25] P:       SVT  SQ   SID  V  AVL 
FPD              PDA  URG P
(XEN) [2021-06-14 23:02:25] R:  0000:  1   0  f0ff 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0001:  1   0  f0ff a3    0   0 
00010004   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0002:  1   0  f0ff f0    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0003:  1   0  f0ff 47    0   0 
00000100   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0004:  1   0  f0ff f1    0   0 
00010555   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0005:  1   0  f0ff 50    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0006:  1   0  f0ff 58    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0007:  1   0  f0ff 60    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0008:  1   0  f0ff 8c    0   0 
00000040   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0009:  1   0  f0ff c0    0   0 
00000010   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  000a:  1   0  f0ff 78    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  000b:  1   0  f0ff 88    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  000c:  1   0  f0ff 90    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  000d:  1   0  f0ff 98    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  000e:  1   0  f0ff a0    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  000f:  1   0  f0ff a8    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0010:  1   0  f0ff b9    0   0 
00000555   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0011:  1   0  f0ff 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0012:  1   0  f0ff c4    0   0 
00000010   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0013:  1   0  f0ff 7d    0   0 
00010001   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0014:  1   0  f0ff 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0015:  1   0  f0ff 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0016:  1   0  f0ff bb    0   0 
00000555   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0017:  1   0  f0ff 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0018:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0019:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  001a:  1   0  002c d8    0   0 
00000555   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  001b:  1   0  002c 2f    0   0 
00010001   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  001c:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  001d:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  001e:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  001f:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0020:  1   0  002c e8    0   0 
00000010   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0021:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0022:  1   0  002c e6    0   0 
00010400   1  1  1  1 1
(XEN) [2021-06-14 23:02:25] R:  0023:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:25] R:  0024:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:26] R:  0025:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:26] R:  0026:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:26] R:  0027:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:26] R:  0028:  1   0  002c 99    0   0 
00000555   1  1  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0029:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:26] R:  002a:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:26] R:  002b:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:26] R:  002c:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:26] R:  002d:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:26] R:  002e:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:26] R:  002f:  1   0  002c 00    0   0 
00000000   0  0  0  0 1
(XEN) [2021-06-14 23:02:26] R:  0030:  1   0  0008 49    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0031:  1   0  0009 61    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0032:  1   0  0010 79    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0033:  1   0  0012 91    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0034:  1   0  0018 b1    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0035:  1   0  00e0 c1    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0036:  1   0  00e2 c9    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0037:  1   0  00e3 d1    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0038:  1   0  00e4 d9    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0039:  1   0  00e7 e1    0   0 
00000555   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  003a:  1   0  0500 ec    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  003b:  1   0  0500 b2    0   0 
00010010   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  003c:  1   0  0500 2d    0   0 
00010010   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  003d:  1   0  0500 9a    0   0 
00010001   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  003e:  1   0  0500 35    0   0 
00010400   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  003f:  1   0  0500 cf    0   0 
00000010   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0040:  1   0  0500 4d    0   0 
00000400   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0041:  1   0  0500 45    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0042:  1   0  008c 3d    0   0 
00010100   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0043:  1   0  00fa d7    0   0 
00010040   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0044:  1   0  0900 df    0   0 
00010040   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0045:  1   0  0700 8d    0   0 
00010004   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0046:  1   0  0700 75    0   0 
00000040   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0047:  1   0  0700 bc    0   0 
00010001   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0048:  1   0  0700 c7    0   0 
00000100   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0049:  1   0  0700 e4    0   0 
00000010   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  004a:  1   0  0800 6a    0   0 
00000400   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  004b:  1   0  0800 cc    0   0 
00000010   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  004c:  1   0  0800 3c    0   0 
00010010   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  004d:  1   0  0800 84    0   0 
00000010   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  004e:  1   0  0800 d4    0   0 
00000040   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  004f:  1   0  00d8 9c    0   0 
00000400   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0050:  1   0  0300 5d    0   0 
00010400   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0051:  1   0  0400 64    0   0 
00000040   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0052:  1   0  0400 9b    0   0 
00000100   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0053:  1   0  0400 a3    0   0 
00000100   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0054:  1   0  0400 ab    0   0 
00000100   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0055:  1   0  0400 b3    0   0 
00000100   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0056:  1   0  0400 d3    0   0 
00000100   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0057:  1   0  0400 db    0   0 
00000100   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0058:  1   0  0200 71    0   0 
00010004   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  0059:  1   0  0200 63    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  005a:  1   0  0200 6b    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  005b:  1   0  0200 73    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  005c:  1   0  0200 7b    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  005d:  1   0  0200 83    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:26] R:  005e:  1   0  0200 8b    0   0 
00000001   1  0  1  1 1
(XEN) [2021-06-14 23:02:26]
(XEN) [2021-06-14 23:02:26] Redirection table of IOAPIC 0:
(XEN) [2021-06-14 23:02:26]   #entry IDX FMT MASK TRIG IRR POL STAT 
DELI  VECTOR
(XEN) [2021-06-14 23:02:26]    00:  0000   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    01:  0001   1    0   0   0   0 0    0     a3
(XEN) [2021-06-14 23:02:26]    02:  0002   1    0   0   0   0 0    0     f0
(XEN) [2021-06-14 23:02:26]    03:  0003   1    0   0   0   0 0    0     47
(XEN) [2021-06-14 23:02:26]    04:  0004   1    0   0   0   0 0    0     f1
(XEN) [2021-06-14 23:02:26]    05:  0005   1    0   0   0   0 0    0     50
(XEN) [2021-06-14 23:02:26]    06:  0006   1    0   0   0   0 0    0     58
(XEN) [2021-06-14 23:02:26]    07:  0007   1    0   0   0   0 0    0     60
(XEN) [2021-06-14 23:02:26]    08:  0008   1    0   0   0   0 0    0     8c
(XEN) [2021-06-14 23:02:26]    09:  0009   1    0   1   0   0 0    0     c0
(XEN) [2021-06-14 23:02:26]    0a:  000a   1    0   0   0   0 0    0     78
(XEN) [2021-06-14 23:02:26]    0b:  000b   1    0   0   0   0 0    0     88
(XEN) [2021-06-14 23:02:26]    0c:  000c   1    0   0   0   0 0    0     90
(XEN) [2021-06-14 23:02:26]    0d:  000d   1    1   0   0   0 0    0     98
(XEN) [2021-06-14 23:02:26]    0e:  000e   1    0   0   0   0 0    0     a0
(XEN) [2021-06-14 23:02:26]    0f:  000f   1    0   0   0   0 0    0     a8
(XEN) [2021-06-14 23:02:26]    10:  0010   1    1   1   0   1 0    0     b9
(XEN) [2021-06-14 23:02:26]    11:  0011   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    12:  0012   1    0   1   0   1 0    0     c4
(XEN) [2021-06-14 23:02:26]    13:  0013   1    0   1   0   1 0    0     7d
(XEN) [2021-06-14 23:02:26]    14:  0014   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    15:  0015   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    16:  0016   1    1   1   0   1 0    0     bb
(XEN) [2021-06-14 23:02:26]    17:  0017   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]
(XEN) [2021-06-14 23:02:26] Redirection table of IOAPIC 1:
(XEN) [2021-06-14 23:02:26]   #entry IDX FMT MASK TRIG IRR POL STAT 
DELI  VECTOR
(XEN) [2021-06-14 23:02:26]    00:  0018   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    01:  0019   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    02:  001a   1    1   1   0   1 0    0     d8
(XEN) [2021-06-14 23:02:26]    03:  001b   1    0   1   0   1 0    0     2f
(XEN) [2021-06-14 23:02:26]    04:  001c   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    05:  001d   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    06:  001e   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    07:  001f   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    08:  0020   1    0   1   0   1 0    0     e8
(XEN) [2021-06-14 23:02:26]    09:  0021   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    0a:  0022   1    0   1   0   1 0    0     e6
(XEN) [2021-06-14 23:02:26]    0b:  0023   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    0c:  0024   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    0d:  0025   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    0e:  0026   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    0f:  0027   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    10:  0028   1    1   1   0   1 0    0     99
(XEN) [2021-06-14 23:02:26]    11:  0029   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    12:  002a   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    13:  002b   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    14:  002c   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    15:  002d   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    16:  002e   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    17:  002f   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]
(XEN) [2021-06-14 23:02:26] Redirection table of IOAPIC 2:
(XEN) [2021-06-14 23:02:26]   #entry IDX FMT MASK TRIG IRR POL STAT 
DELI  VECTOR
(XEN) [2021-06-14 23:02:26]    00:  0000   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    01:  0001   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    02:  0002   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    03:  0003   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    04:  0004   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    05:  0005   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    06:  0006   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    07:  0007   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    08:  0008   1    0   1   0   1 0    0     37
(XEN) [2021-06-14 23:02:26]    09:  0009   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    0a:  000a   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    0b:  000b   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    0c:  000c   1    0   1   0   1 0    0     3f
(XEN) [2021-06-14 23:02:26]    0d:  000d   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    0e:  000e   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    0f:  000f   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    10:  0010   1    0   1   0   1 0    0     ee
(XEN) [2021-06-14 23:02:26]    11:  0011   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    12:  0012   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    13:  0013   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    14:  0014   1    0   1   0   1 0    0     27
(XEN) [2021-06-14 23:02:26]    15:  0015   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    16:  0016   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26]    17:  0017   1    1   0   0   0 0    0     00
(XEN) [2021-06-14 23:02:26] [a: dump timer queues]
(XEN) [2021-06-14 23:02:26] Dumping timer queues:
(XEN) [2021-06-14 23:02:27] CPU00:
(XEN) [2021-06-14 23:02:27]   ex=        9007us timer=ffff83103ffe2f10 
cb=common/sched/core.c#s_timer_fn(0000000000000000)
(XEN) [2021-06-14 23:02:27]   ex=      542407us timer=ffff82d040d7cca0 
cb=arch/x86/time.c#time_calibration(0000000000000000)
(XEN) [2021-06-14 23:02:27]   ex=       45381us timer=ffff830b1e05b068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff830b1e05b000)
(XEN) [2021-06-14 23:02:27]   ex=    12633206us timer=ffff82d040d63e40 
cb=arch/x86/cpu/mcheck/non-fatal.c#mce_work_fn(0000000000000000)
(XEN) [2021-06-14 23:02:27]   ex=    56011703us timer=ffff82d040d7cc00 
cb=arch/x86/time.c#plt_overflow(0000000000000000)
(XEN) [2021-06-14 23:02:27]   ex=       67982us timer=ffff831037c34068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c34000)
(XEN) [2021-06-14 23:02:27] CPU01:
(XEN) [2021-06-14 23:02:27]   ex=       77746us timer=ffff831dd0829068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831dd0829000)
(XEN) [2021-06-14 23:02:27]   ex=       78079us timer=ffff83103ff4eca0 
cb=common/sched/core.c#s_timer_fn(0000000000000000)
(XEN) [2021-06-14 23:02:27]   ex=      174852us timer=ffff831037c31068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c31000)
(XEN) [2021-06-14 23:02:27]   ex=       81494us timer=ffff83207fa12068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83207fa12000)
(XEN) [2021-06-14 23:02:27]   ex=       78483us timer=ffff83157a627068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83157a627000)
(XEN) [2021-06-14 23:02:27] CPU02:
(XEN) [2021-06-14 23:02:27]   ex=      145400us timer=ffff83103ff3fa20 
cb=common/sched/core.c#s_timer_fn(0000000000000000)
(XEN) [2021-06-14 23:02:27] CPU03:
(XEN) [2021-06-14 23:02:27]   ex=      154300us timer=ffff83103ff1a780 
cb=common/sched/core.c#s_timer_fn(0000000000000000)
(XEN) [2021-06-14 23:02:27]   ex=      175853us timer=ffff831037c34068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c34000)
(XEN) [2021-06-14 23:02:27]   ex=      174839us timer=ffff831037c3f068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c3f000)
(XEN) [2021-06-14 23:02:27]   ex=      498204us timer=ffff830b1e052068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff830b1e052000)
(XEN) [2021-06-14 23:02:27]   ex=  3452003430us timer=ffff83157a6bb0b8 
cb=arch/x86/hvm/rtc.c#rtc_alarm_cb(ffff83157a6bb010)
(XEN) [2021-06-14 23:02:27]   ex=      183482us timer=ffff83157a66d068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83157a66d000)
(XEN) [2021-06-14 23:02:27] CPU04:
(XEN) [2021-06-14 23:02:27]   ex=      226746us timer=ffff831dd0829068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831dd0829000)
(XEN) [2021-06-14 23:02:27]   ex=      230375us timer=ffff83207f327068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83207f327000)
(XEN) [2021-06-14 23:02:27]   ex=      227979us timer=ffff831037c3f068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c3f000)
(XEN) [2021-06-14 23:02:27]   ex=      275979us timer=ffff831037c38068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c38000)
(XEN) [2021-06-14 23:02:27] CPU05:
(XEN) [2021-06-14 23:02:27]   ex=      277473us timer=ffff831de8277068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831de8277000)
(XEN) [2021-06-14 23:02:27]   ex=      285438us timer=ffff83103ff05ee0 
cb=common/sched/core.c#s_timer_fn(0000000000000000)
(XEN) [2021-06-14 23:02:27]   ex=      277746us timer=ffff831de2cab068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831de2cab000)
(XEN) [2021-06-14 23:02:27]   ex=  3453012205us timer=ffff831ef0a72828 
cb=arch/x86/hvm/rtc.c#rtc_alarm_cb(ffff831ef0a72780)
(XEN) [2021-06-14 23:02:27]   ex=      322836us timer=ffff831037c31068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c31000)
(XEN) [2021-06-14 23:02:27]   ex=      323497us timer=ffff830b1e05b068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff830b1e05b000)
(XEN) [2021-06-14 23:02:27] CPU06:
(XEN) [2021-06-14 23:02:27]   ex=      349479us timer=ffff83157a650068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83157a650000)
(XEN) [2021-06-14 23:02:27]   ex=      349494us timer=ffff8315c1380068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff8315c1380000)
(XEN) [2021-06-14 23:02:27]   ex=      373835us timer=ffff831037c2e068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c2e000)
(XEN) [2021-06-14 23:02:27]   ex=      349578us timer=ffff831037ceef60 
cb=common/sched/core.c#s_timer_fn(0000000000000000)
(XEN) [2021-06-14 23:02:27]   ex=   116590840us timer=ffff830b1e112b68 
cb=arch/x86/hvm/pmtimer.c#pmt_timer_callback(ffff830b1e112b48)
(XEN) [2021-06-14 23:02:27]   ex=   322275007us timer=ffff8309bbbc8b68 
cb=arch/x86/hvm/pmtimer.c#pmt_timer_callback(ffff8309bbbc8b48)
(XEN) [2021-06-14 23:02:27]   ex=  3452661639us timer=ffff830b1e112828 
cb=arch/x86/hvm/rtc.c#rtc_alarm_cb(ffff830b1e112780)
(XEN) [2021-06-14 23:02:27]   ex=      411978us timer=ffff831037c44068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c44000)
(XEN) [2021-06-14 23:02:27] CPU07:
(XEN) [2021-06-14 23:02:27]   ex=      445389us timer=ffff830b1e112560 
cb=arch/x86/irq.c#irq_guest_eoi_timer_fn(ffff831037d06c00)
(XEN) [2021-06-14 23:02:27]   ex=      445478us timer=ffff83157a650068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83157a650000)
(XEN) [2021-06-14 23:02:27]   ex=      446837us timer=ffff831037c2e068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c2e000)
(XEN) [2021-06-14 23:02:27]   ex=      446837us timer=ffff831037c2a068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c2a000)
(XEN) [2021-06-14 23:02:27]   ex=      666216us timer=ffff830b1e063068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff830b1e063000)
(XEN) [2021-06-14 23:02:27]   ex=  3452661639us timer=ffff830b1e112828 
cb=arch/x86/hvm/rtc.c#rtc_alarm_cb(ffff830b1e112780)
(XEN) [2021-06-14 23:02:27]   ex=      451976us timer=ffff831037c44068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c44000)
(XEN) [2021-06-14 23:02:27] CPU08:
(XEN) [2021-06-14 23:02:27]   ex=      531477us timer=ffff83157a65d068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83157a65d000)
(XEN) [2021-06-14 23:02:27]   ex=      531643us timer=ffff831de82593a0 
cb=arch/x86/irq.c#irq_guest_eoi_timer_fn(ffff831037d07b00)
(XEN) [2021-06-14 23:02:27]   ex=      531746us timer=ffff831dcffae068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831dcffae000)
(XEN) [2021-06-14 23:02:27]   ex=      533494us timer=ffff8315c1380068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff8315c1380000)
(XEN) [2021-06-14 23:02:27]   ex=   161890142us timer=ffff83157a6bb3f8 
cb=arch/x86/hvm/pmtimer.c#pmt_timer_callback(ffff83157a6bb3d8)
(XEN) [2021-06-14 23:02:27]   ex=   453760526us timer=ffff831ef0a72b68 
cb=arch/x86/hvm/pmtimer.c#pmt_timer_callback(ffff831ef0a72b48)
(XEN) [2021-06-14 23:02:27]   ex=      534440us timer=ffff831037cc8a70 
cb=common/sched/core.c#s_timer_fn(0000000000000000)
(XEN) [2021-06-14 23:02:27] CPU09:
(XEN) [2021-06-14 23:02:27] CPU10:
(XEN) [2021-06-14 23:02:27]   ex=      618476us timer=ffff83157a650068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83157a650000)
(XEN) [2021-06-14 23:02:27]   ex=      618746us timer=ffff831dcffae068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831dcffae000)
(XEN) [2021-06-14 23:02:27]   ex=      635974us timer=ffff831037c2a068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831037c2a000)
(XEN) [2021-06-14 23:02:27] CPU11:
(XEN) [2021-06-14 23:02:27]   ex=      657746us timer=ffff831dcffae068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff831dcffae000)
(XEN) [2021-06-14 23:02:27]   ex=   115708650us timer=ffff830b9acc7f38 
cb=arch/x86/hvm/pmtimer.c#pmt_timer_callback(ffff830b9acc7f18)
(XEN) [2021-06-14 23:02:27]   ex=      660375us timer=ffff83207f32f068 
cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83207f32f000)
(XEN) [2021-06-14 23:02:27] [c: dump ACPI Cx structures]
(XEN) [2021-06-14 23:02:27] 'c' pressed -> printing ACPI Cx structures
(XEN) [2021-06-14 23:02:27] max state: C2
(XEN) [2021-06-14 23:02:27] max sub-state: unlimited
(XEN) [2021-06-14 23:02:27] ==cpu0==
(XEN) [2021-06-14 23:02:27]     C1:    type[C1] latency[  2] usage[ 
3426144] method[  FFH] duration[371768197476]
(XEN) [2021-06-14 23:02:27]    *C2:    type[C1] latency[ 10] 
usage[11545884] method[  FFH] duration[2337207039237]
(XEN) [2021-06-14 23:02:27]     C3:    type[C2] latency[ 33] usage[ 
8756511] method[  FFH] duration[7923787648997]
(XEN) [2021-06-14 23:02:27]     C0:    usage[23728539] 
duration[6265262031629]
(XEN) [2021-06-14 23:02:27] PC2[703725452375] PC3[17119109027] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:27] CC3[5953375858208] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:27] ==cpu1==
(XEN) [2021-06-14 23:02:27]     C1:    type[C1] latency[  2] usage[ 
3570237] method[  FFH] duration[382958279577]
(XEN) [2021-06-14 23:02:27]     C2:    type[C1] latency[ 10] 
usage[11566597] method[  FFH] duration[2342061994564]
(XEN) [2021-06-14 23:02:27]     C3:    type[C2] latency[ 33] usage[ 
8776908] method[  FFH] duration[7902026301186]
(XEN) [2021-06-14 23:02:27]    *C0:    usage[23913743] 
duration[6271029653205]
(XEN) [2021-06-14 23:02:27] PC2[703725452375] PC3[17119109027] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:27] CC3[5930337774335] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:27] ==cpu2==
(XEN) [2021-06-14 23:02:27]     C1:    type[C1] latency[  2] usage[ 
3532489] method[  FFH] duration[381081386922]
(XEN) [2021-06-14 23:02:27]     C2:    type[C1] latency[ 10] 
usage[11531666] method[  FFH] duration[2336109536840]
(XEN) [2021-06-14 23:02:27]     C3:    type[C2] latency[ 33] usage[ 
8760630] method[  FFH] duration[7898938042796]
(XEN) [2021-06-14 23:02:27]    *C0:    usage[23824786] 
duration[6281998565349]
(XEN) [2021-06-14 23:02:27] PC2[703725452375] PC3[17119109027] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:27] CC3[5928995416057] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:27] ==cpu3==
(XEN) [2021-06-14 23:02:27]     C1:    type[C1] latency[  2] usage[ 
3513938] method[  FFH] duration[382322236882]
(XEN) [2021-06-14 23:02:27]     C2:    type[C1] latency[ 10] 
usage[11507842] method[  FFH] duration[2327504609721]
(XEN) [2021-06-14 23:02:27]     C3:    type[C2] latency[ 33] usage[ 
8742823] method[  FFH] duration[7921059076817]
(XEN) [2021-06-14 23:02:27]    *C0:    usage[23764604] 
duration[6267294297699]
(XEN) [2021-06-14 23:02:27] PC2[703725452375] PC3[17119109027] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:27] CC3[5955702111954] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:27] ==cpu4==
(XEN) [2021-06-14 23:02:27]     C1:    type[C1] latency[  2] usage[ 
3504026] method[  FFH] duration[379301525189]
(XEN) [2021-06-14 23:02:27]     C2:    type[C1] latency[ 10] 
usage[11449296] method[  FFH] duration[2321668430555]
(XEN) [2021-06-14 23:02:27]    *C3:    type[C2] latency[ 33] usage[ 
8778474] method[  FFH] duration[7923701916711]
(XEN) [2021-06-14 23:02:27]     C0:    usage[23731796] 
duration[6273559656198]
(XEN) [2021-06-14 23:02:27] PC2[703725452375] PC3[17119109027] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:27] CC3[5948358136364] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:27] ==cpu5==
(XEN) [2021-06-14 23:02:27]     C1:    type[C1] latency[  2] usage[ 
3346717] method[  FFH] duration[367393559993]
(XEN) [2021-06-14 23:02:27]     C2:    type[C1] latency[ 10] 
usage[11416612] method[  FFH] duration[2315153547936]
(XEN) [2021-06-14 23:02:27]     C3:    type[C2] latency[ 33] usage[ 
8754056] method[  FFH] duration[7970306537097]
(XEN) [2021-06-14 23:02:27]    *C0:    usage[23517386] 
duration[6245429192876]
(XEN) [2021-06-14 23:02:28] PC2[703725452375] PC3[17119109027] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:28] CC3[5998026335697] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:28] ==cpu6==
(XEN) [2021-06-14 23:02:28]     C1:    type[C1] latency[  2] usage[ 
3887672] method[  FFH] duration[433191645867]
(XEN) [2021-06-14 23:02:28]    *C2:    type[C1] latency[ 10] 
usage[10961983] method[  FFH] duration[2522238826658]
(XEN) [2021-06-14 23:02:28]     C3:    type[C2] latency[ 33] 
usage[10030297] method[  FFH] duration[7919171146331]
(XEN) [2021-06-14 23:02:28]     C0:    usage[24879952] 
duration[6023732523007]
(XEN) [2021-06-14 23:02:28] PC2[814910544708] PC3[16927767044] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:28] CC3[5741657782574] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:28] ==cpu7==
(XEN) [2021-06-14 23:02:28]     C1:    type[C1] latency[  2] usage[ 
4021070] method[  FFH] duration[440368003202]
(XEN) [2021-06-14 23:02:28]     C2:    type[C1] latency[ 10] 
usage[11085989] method[  FFH] duration[2546685703928]
(XEN) [2021-06-14 23:02:28]    *C3:    type[C2] latency[ 33] usage[ 
9942440] method[  FFH] duration[7788189808600]
(XEN) [2021-06-14 23:02:28]     C0:    usage[25049499] 
duration[6123141931172]
(XEN) [2021-06-14 23:02:28] PC2[814910544708] PC3[16927767044] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:28] CC3[5640497960003] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:28] ==cpu8==
(XEN) [2021-06-14 23:02:28]     C1:    type[C1] latency[  2] usage[ 
4042005] method[  FFH] duration[442690629564]
(XEN) [2021-06-14 23:02:28]    *C2:    type[C1] latency[ 10] 
usage[11060456] method[  FFH] duration[2545513103793]
(XEN) [2021-06-14 23:02:28]     C3:    type[C2] latency[ 33] usage[ 
9977426] method[  FFH] duration[7815044830327]
(XEN) [2021-06-14 23:02:28]     C0:    usage[25079887] 
duration[6095188189641]
(XEN) [2021-06-14 23:02:28] PC2[814910544708] PC3[16927767044] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:28] CC3[5657706161497] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:28] ==cpu9==
(XEN) [2021-06-14 23:02:28]     C1:    type[C1] latency[  2] usage[ 
4084466] method[  FFH] duration[446429271343]
(XEN) [2021-06-14 23:02:28]     C2:    type[C1] latency[ 10] 
usage[11093858] method[  FFH] duration[2544473818767]
(XEN) [2021-06-14 23:02:28]     C3:    type[C2] latency[ 33] usage[ 
9928199] method[  FFH] duration[7773031250146]
(XEN) [2021-06-14 23:02:28]    *C0:    usage[25106524] 
duration[6134553719433]
(XEN) [2021-06-14 23:02:28] PC2[814910544708] PC3[16927767044] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:28] CC3[5628625979110] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:28] ==cpu10==
(XEN) [2021-06-14 23:02:28]     C1:    type[C1] latency[  2] usage[ 
4098103] method[  FFH] duration[445198283764]
(XEN) [2021-06-14 23:02:28]    *C2:    type[C1] latency[ 10] 
usage[11080613] method[  FFH] duration[2548222295395]
(XEN) [2021-06-14 23:02:28]     C3:    type[C2] latency[ 33] usage[ 
9939904] method[  FFH] duration[7790556316873]
(XEN) [2021-06-14 23:02:28]     C0:    usage[25118620] 
duration[6114562470621]
(XEN) [2021-06-14 23:02:28] PC2[814910544708] PC3[16927767044] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:28] CC3[5641603513898] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:28] ==cpu11==
(XEN) [2021-06-14 23:02:28]     C1:    type[C1] latency[  2] usage[ 
3981766] method[  FFH] duration[434566740039]
(XEN) [2021-06-14 23:02:28]    *C2:    type[C1] latency[ 10] 
usage[11098192] method[  FFH] duration[2551206590336]
(XEN) [2021-06-14 23:02:28]     C3:    type[C2] latency[ 33] usage[ 
9991849] method[  FFH] duration[7801522846435]
(XEN) [2021-06-14 23:02:28]     C0:    usage[25071807] 
duration[6111294494814]
(XEN) [2021-06-14 23:02:28] PC2[814910544708] PC3[16927767044] PC6[0] 
PC7[0]
(XEN) [2021-06-14 23:02:28] CC3[5644586579492] CC6[0] CC7[0]
(XEN) [2021-06-14 23:02:28] [e: dump evtchn info]
(XEN) [2021-06-14 23:02:28] 'e' pressed -> dumping event-channel info
(XEN) [2021-06-14 23:02:28] Event channel information for domain 0:
(XEN) [2021-06-14 23:02:28] Polling vCPUs: {}
(XEN) [2021-06-14 23:02:28]     port [p/m/s]
(XEN) [2021-06-14 23:02:28]        1 [0/0/  -   ]: s=5 n=0 x=0 v=0
(XEN) [2021-06-14 23:02:28]        2 [1/1/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:28]        3 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:28]        4 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:28]        5 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:28]        6 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:28]        7 [1/0/  0   ]: s=5 n=1 x=0 v=0
(XEN) [2021-06-14 23:02:28]        8 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:28]        9 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:28]       10 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:28]       11 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:28]       12 [1/1/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:28]       13 [0/0/  -   ]: s=5 n=2 x=0 v=0
(XEN) [2021-06-14 23:02:28]       14 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:28]       15 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:28]       16 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:28]       17 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:28]       18 [1/1/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:28]       19 [0/0/  -   ]: s=5 n=3 x=0 v=0
(XEN) [2021-06-14 23:02:28]       20 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:28]       21 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:28]       22 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:28]       23 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:28]       24 [1/1/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:28]       25 [0/0/  -   ]: s=5 n=4 x=0 v=0
(XEN) [2021-06-14 23:02:28]       26 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:28]       27 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:28]       28 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:28]       29 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:28]       30 [1/1/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:28]       31 [1/0/  0   ]: s=5 n=5 x=0 v=0
(XEN) [2021-06-14 23:02:28]       32 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:28]       33 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:28]       34 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:28]       35 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:28]       36 [1/1/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:28]       37 [1/0/  0   ]: s=5 n=6 x=0 v=0
(XEN) [2021-06-14 23:02:28]       38 [0/0/  -   ]: s=6 n=6 x=0
(XEN) [2021-06-14 23:02:28]       39 [0/0/  -   ]: s=6 n=6 x=0
(XEN) [2021-06-14 23:02:28]       40 [0/0/  -   ]: s=6 n=6 x=0
(XEN) [2021-06-14 23:02:28]       41 [0/0/  -   ]: s=6 n=6 x=0
(XEN) [2021-06-14 23:02:28]       42 [1/1/  -   ]: s=6 n=6 x=0
(XEN) [2021-06-14 23:02:28]       43 [1/0/  0   ]: s=5 n=7 x=0 v=0
(XEN) [2021-06-14 23:02:28]       44 [0/0/  -   ]: s=6 n=7 x=0
(XEN) [2021-06-14 23:02:28]       45 [0/0/  -   ]: s=6 n=7 x=0
(XEN) [2021-06-14 23:02:28]       46 [0/0/  -   ]: s=6 n=7 x=0
(XEN) [2021-06-14 23:02:28]       47 [0/0/  -   ]: s=6 n=7 x=0
(XEN) [2021-06-14 23:02:28]       48 [1/1/  -   ]: s=6 n=7 x=0
(XEN) [2021-06-14 23:02:28]       49 [0/0/  -   ]: s=3 n=1 x=0 d=0 p=93
(XEN) [2021-06-14 23:02:28]       50 [0/0/  -   ]: s=5 n=2 x=0 v=9
(XEN) [2021-06-14 23:02:28]       51 [0/0/  -   ]: s=4 n=3 x=0 p=9 i=9
(XEN) [2021-06-14 23:02:28]       52 [0/0/  -   ]: s=5 n=4 x=0 v=16
(XEN) [2021-06-14 23:02:28]       53 [0/0/  -   ]: s=5 n=0 x=0 v=2
(XEN) [2021-06-14 23:02:28]       54 [0/0/  -   ]: s=4 n=5 x=0 p=891 i=86
(XEN) [2021-06-14 23:02:28]       55 [0/0/  -   ]: s=4 n=6 x=0 p=890 i=87
(XEN) [2021-06-14 23:02:28]       56 [0/0/  -   ]: s=4 n=7 x=0 p=889 i=88
(XEN) [2021-06-14 23:02:28]       57 [0/0/  -   ]: s=4 n=1 x=0 p=888 i=89
(XEN) [2021-06-14 23:02:28]       58 [0/0/  -   ]: s=4 n=2 x=0 p=887 i=90
(XEN) [2021-06-14 23:02:28]       59 [0/0/  -   ]: s=4 n=3 x=0 p=886 i=91
(XEN) [2021-06-14 23:02:28]       60 [0/0/  -   ]: s=4 n=4 x=0 p=885 i=92
(XEN) [2021-06-14 23:02:28]       61 [0/0/  -   ]: s=4 n=5 x=0 p=884 i=93
(XEN) [2021-06-14 23:02:28]       62 [0/0/  -   ]: s=4 n=6 x=0 p=883 i=94
(XEN) [2021-06-14 23:02:28]       63 [0/0/  -   ]: s=4 n=7 x=0 p=882 i=95
(XEN) [2021-06-14 23:02:28]       64 [0/0/  -   ]: s=4 n=0 x=0 p=881 i=96
(XEN) [2021-06-14 23:02:28]       65 [0/0/  -   ]: s=4 n=1 x=0 p=1 i=1
(XEN) [2021-06-14 23:02:28]       66 [0/0/  -   ]: s=4 n=2 x=0 p=8 i=8
(XEN) [2021-06-14 23:02:28]       67 [0/0/  -   ]: s=4 n=3 x=0 p=18 i=18
(XEN) [2021-06-14 23:02:28]       68 [0/0/  -   ]: s=3 n=2 x=0 d=6 p=1
(XEN) [2021-06-14 23:02:28]       69 [1/0/  0   ]: s=4 n=5 x=0 p=870 i=107
(XEN) [2021-06-14 23:02:28]       70 [0/0/  -   ]: s=3 n=4 x=0 d=6 p=2
(XEN) [2021-06-14 23:02:28]       71 [0/0/  -   ]: s=4 n=7 x=0 p=19 i=19
(XEN) [2021-06-14 23:02:28]       72 [0/0/  -   ]: s=3 n=6 x=0 d=6 p=3
(XEN) [2021-06-14 23:02:28]       73 [0/0/  -   ]: s=3 n=0 x=0 d=6 p=5
(XEN) [2021-06-14 23:02:28]       74 [0/0/  -   ]: s=3 n=1 x=0 d=6 p=6
(XEN) [2021-06-14 23:02:28]       75 [0/0/  -   ]: s=3 n=2 x=0 d=6 p=7
(XEN) [2021-06-14 23:02:28]       76 [0/0/  -   ]: s=3 n=3 x=0 d=6 p=8
(XEN) [2021-06-14 23:02:28]       77 [0/0/  -   ]: s=3 n=4 x=0 d=6 p=9
(XEN) [2021-06-14 23:02:28]       78 [1/1/  -   ]: s=3 n=5 x=0 d=6 p=4
(XEN) [2021-06-14 23:02:28]       79 [0/0/  -   ]: s=3 n=6 x=0 d=6 p=45
(XEN) [2021-06-14 23:02:28]       80 [0/0/  -   ]: s=3 n=7 x=0 d=6 p=46
(XEN) [2021-06-14 23:02:28]       81 [0/0/  -   ]: s=3 n=0 x=0 d=6 p=47
(XEN) [2021-06-14 23:02:28]       82 [0/0/  -   ]: s=3 n=1 x=0 d=6 p=48
(XEN) [2021-06-14 23:02:28]       83 [0/0/  -   ]: s=3 n=2 x=0 d=6 p=49
(XEN) [2021-06-14 23:02:28]       84 [0/0/  -   ]: s=3 n=3 x=0 d=6 p=50
(XEN) [2021-06-14 23:02:28]       85 [0/0/  -   ]: s=3 n=4 x=0 d=6 p=51
(XEN) [2021-06-14 23:02:28]       86 [0/0/  -   ]: s=3 n=5 x=0 d=6 p=52
(XEN) [2021-06-14 23:02:28]       87 [0/0/  -   ]: s=3 n=6 x=0 d=6 p=53
(XEN) [2021-06-14 23:02:28]       88 [0/0/  -   ]: s=4 n=0 x=0 p=880 i=97
(XEN) [2021-06-14 23:02:28]       89 [0/0/  -   ]: s=4 n=1 x=0 p=879 i=98
(XEN) [2021-06-14 23:02:28]       90 [0/0/  -   ]: s=4 n=2 x=0 p=878 i=99
(XEN) [2021-06-14 23:02:28]       91 [1/0/  0   ]: s=4 n=3 x=0 p=877 i=100
(XEN) [2021-06-14 23:02:28]       92 [0/0/  -   ]: s=4 n=4 x=0 p=876 i=101
(XEN) [2021-06-14 23:02:28]       93 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=49
(XEN) [2021-06-14 23:02:28]       94 [0/0/  -   ]: s=5 n=6 x=0 v=3
(XEN) [2021-06-14 23:02:28]       95 [0/0/  -   ]: s=5 n=7 x=0 v=8
(XEN) [2021-06-14 23:02:28]       96 [0/0/  -   ]: s=3 n=7 x=0 d=6 p=54
(XEN) [2021-06-14 23:02:28]       97 [0/0/  -   ]: s=3 n=0 x=0 d=6 p=55
(XEN) [2021-06-14 23:02:28]       98 [0/0/  -   ]: s=3 n=1 x=0 d=6 p=56
(XEN) [2021-06-14 23:02:28]       99 [0/0/  -   ]: s=3 n=2 x=0 d=6 p=57
(XEN) [2021-06-14 23:02:28]      100 [0/0/  -   ]: s=3 n=3 x=0 d=6 p=58
(XEN) [2021-06-14 23:02:28]      101 [0/0/  -   ]: s=3 n=4 x=0 d=6 p=59
(XEN) [2021-06-14 23:02:28]      102 [0/0/  -   ]: s=3 n=5 x=0 d=6 p=60
(XEN) [2021-06-14 23:02:28]      103 [0/0/  -   ]: s=3 n=6 x=0 d=6 p=61
(XEN) [2021-06-14 23:02:28]      104 [0/0/  -   ]: s=3 n=7 x=0 d=6 p=62
(XEN) [2021-06-14 23:02:28]      105 [0/0/  -   ]: s=3 n=0 x=0 d=6 p=63
(XEN) [2021-06-14 23:02:28]      106 [0/0/  -   ]: s=3 n=1 x=0 d=6 p=64
(XEN) [2021-06-14 23:02:28]      107 [0/0/  -   ]: s=3 n=3 x=0 d=3 p=1
(XEN) [2021-06-14 23:02:28]      108 [0/0/  -   ]: s=3 n=4 x=0 d=2 p=1
(XEN) [2021-06-14 23:02:29]      109 [0/0/  -   ]: s=3 n=5 x=0 d=3 p=2
(XEN) [2021-06-14 23:02:29]      110 [0/0/  -   ]: s=3 n=6 x=0 d=3 p=3
(XEN) [2021-06-14 23:02:29]      111 [0/0/  -   ]: s=3 n=7 x=0 d=3 p=5
(XEN) [2021-06-14 23:02:29]      112 [0/0/  -   ]: s=3 n=0 x=0 d=3 p=6
(XEN) [2021-06-14 23:02:29]      113 [0/0/  -   ]: s=3 n=1 x=0 d=3 p=7
(XEN) [2021-06-14 23:02:29]      114 [0/1/  -   ]: s=3 n=2 x=0 d=3 p=4
(XEN) [2021-06-14 23:02:29]      115 [0/0/  -   ]: s=3 n=3 x=0 d=2 p=2
(XEN) [2021-06-14 23:02:29]      116 [0/0/  -   ]: s=3 n=4 x=0 d=2 p=3
(XEN) [2021-06-14 23:02:29]      117 [0/0/  -   ]: s=3 n=5 x=0 d=2 p=5
(XEN) [2021-06-14 23:02:29]      118 [0/0/  -   ]: s=3 n=6 x=0 d=2 p=6
(XEN) [2021-06-14 23:02:29]      119 [0/0/  -   ]: s=3 n=7 x=0 d=2 p=7
(XEN) [2021-06-14 23:02:29]      120 [1/1/  -   ]: s=3 n=0 x=0 d=2 p=4
(XEN) [2021-06-14 23:02:29]      121 [0/0/  -   ]: s=3 n=1 x=0 d=2 p=32
(XEN) [2021-06-14 23:02:29]      122 [0/0/  -   ]: s=3 n=2 x=0 d=2 p=33
(XEN) [2021-06-14 23:02:29]      123 [0/0/  -   ]: s=3 n=3 x=0 d=2 p=34
(XEN) [2021-06-14 23:02:29]      124 [0/0/  -   ]: s=3 n=4 x=0 d=2 p=35
(XEN) [2021-06-14 23:02:29]      125 [0/0/  -   ]: s=3 n=5 x=0 d=2 p=36
(XEN) [2021-06-14 23:02:29]      126 [0/0/  -   ]: s=3 n=6 x=0 d=2 p=37
(XEN) [2021-06-14 23:02:29]      127 [0/0/  -   ]: s=3 n=7 x=0 d=2 p=38
(XEN) [2021-06-14 23:02:29]      128 [0/0/  -   ]: s=3 n=0 x=0 d=2 p=39
(XEN) [2021-06-14 23:02:29]      129 [0/0/  -   ]: s=3 n=1 x=0 d=2 p=40
(XEN) [2021-06-14 23:02:29]      130 [0/0/  -   ]: s=3 n=2 x=0 d=2 p=41
(XEN) [2021-06-14 23:02:29]      131 [0/0/  -   ]: s=3 n=3 x=0 d=2 p=42
(XEN) [2021-06-14 23:02:29]      132 [0/0/  -   ]: s=3 n=4 x=0 d=2 p=43
(XEN) [2021-06-14 23:02:29]      133 [0/0/  -   ]: s=3 n=5 x=0 d=2 p=44
(XEN) [2021-06-14 23:02:29]      134 [0/0/  -   ]: s=3 n=6 x=0 d=2 p=45
(XEN) [2021-06-14 23:02:29]      135 [0/0/  -   ]: s=3 n=7 x=0 d=2 p=46
(XEN) [2021-06-14 23:02:29]      136 [0/0/  -   ]: s=3 n=0 x=0 d=2 p=47
(XEN) [2021-06-14 23:02:29]      137 [0/0/  -   ]: s=3 n=1 x=0 d=2 p=48
(XEN) [2021-06-14 23:02:29]      138 [0/0/  -   ]: s=3 n=2 x=0 d=2 p=49
(XEN) [2021-06-14 23:02:29]      139 [0/0/  -   ]: s=3 n=3 x=0 d=2 p=50
(XEN) [2021-06-14 23:02:29]      140 [0/0/  -   ]: s=3 n=4 x=0 d=2 p=51
(XEN) [2021-06-14 23:02:29]      141 [0/0/  -   ]: s=3 n=5 x=0 d=2 p=52
(XEN) [2021-06-14 23:02:29]      142 [0/0/  -   ]: s=3 n=6 x=0 d=2 p=53
(XEN) [2021-06-14 23:02:29]      143 [0/0/  -   ]: s=3 n=7 x=0 d=2 p=54
(XEN) [2021-06-14 23:02:29]      144 [0/0/  -   ]: s=3 n=0 x=0 d=2 p=55
(XEN) [2021-06-14 23:02:29]      145 [0/0/  -   ]: s=3 n=1 x=0 d=2 p=58
(XEN) [2021-06-14 23:02:29]      146 [0/0/  -   ]: s=3 n=2 x=0 d=2 p=59
(XEN) [2021-06-14 23:02:29]      147 [0/0/  -   ]: s=3 n=3 x=0 d=2 p=60
(XEN) [2021-06-14 23:02:29]      148 [0/0/  -   ]: s=3 n=4 x=0 d=2 p=61
(XEN) [2021-06-14 23:02:29]      149 [0/0/  -   ]: s=3 n=5 x=0 d=2 p=62
(XEN) [2021-06-14 23:02:29]      150 [0/0/  -   ]: s=3 n=6 x=0 d=2 p=63
(XEN) [2021-06-14 23:02:29]      151 [0/0/  -   ]: s=3 n=7 x=0 d=2 p=64
(XEN) [2021-06-14 23:02:29]      152 [0/0/  -   ]: s=3 n=0 x=0 d=2 p=65
(XEN) [2021-06-14 23:02:29]      153 [0/0/  -   ]: s=3 n=1 x=0 d=2 p=66
(XEN) [2021-06-14 23:02:29]      154 [0/0/  -   ]: s=3 n=2 x=0 d=2 p=67
(XEN) [2021-06-14 23:02:29]      155 [0/0/  -   ]: s=3 n=3 x=0 d=2 p=68
(XEN) [2021-06-14 23:02:29]      156 [0/0/  -   ]: s=3 n=4 x=0 d=2 p=69
(XEN) [2021-06-14 23:02:29]      157 [0/0/  -   ]: s=3 n=5 x=0 d=2 p=70
(XEN) [2021-06-14 23:02:29]      158 [0/0/  -   ]: s=3 n=6 x=0 d=2 p=71
(XEN) [2021-06-14 23:02:29]      159 [0/0/  -   ]: s=3 n=7 x=0 d=2 p=72
(XEN) [2021-06-14 23:02:29]      160 [0/0/  -   ]: s=3 n=0 x=0 d=2 p=73
(XEN) [2021-06-14 23:02:29]      161 [0/0/  -   ]: s=3 n=1 x=0 d=2 p=74
(XEN) [2021-06-14 23:02:29]      162 [0/0/  -   ]: s=3 n=2 x=0 d=2 p=75
(XEN) [2021-06-14 23:02:29]      163 [0/0/  -   ]: s=3 n=3 x=0 d=2 p=76
(XEN) [2021-06-14 23:02:29]      164 [0/0/  -   ]: s=3 n=4 x=0 d=2 p=77
(XEN) [2021-06-14 23:02:29]      165 [0/0/  -   ]: s=3 n=5 x=0 d=2 p=78
(XEN) [2021-06-14 23:02:29]      166 [0/0/  -   ]: s=3 n=6 x=0 d=2 p=79
(XEN) [2021-06-14 23:02:29]      167 [0/0/  -   ]: s=3 n=7 x=0 d=2 p=80
(XEN) [2021-06-14 23:02:29]      168 [0/0/  -   ]: s=3 n=0 x=0 d=2 p=81
(XEN) [2021-06-14 23:02:29]      169 [0/0/  -   ]: s=3 n=1 x=0 d=2 p=82
(XEN) [2021-06-14 23:02:29]      170 [0/0/  -   ]: s=3 n=2 x=0 d=2 p=83
(XEN) [2021-06-14 23:02:29]      171 [0/0/  -   ]: s=3 n=3 x=0 d=2 p=84
(XEN) [2021-06-14 23:02:29]      172 [0/0/  -   ]: s=3 n=4 x=0 d=2 p=85
(XEN) [2021-06-14 23:02:29]      173 [0/0/  -   ]: s=3 n=5 x=0 d=2 p=86
(XEN) [2021-06-14 23:02:29]      174 [0/0/  -   ]: s=3 n=6 x=0 d=2 p=87
(XEN) [2021-06-14 23:02:29]      175 [0/0/  -   ]: s=3 n=7 x=0 d=2 p=88
(XEN) [2021-06-14 23:02:29]      176 [0/0/  -   ]: s=3 n=0 x=0 d=2 p=89
(XEN) [2021-06-14 23:02:29]      177 [0/0/  -   ]: s=3 n=1 x=0 d=2 p=90
(XEN) [2021-06-14 23:02:29]      178 [0/0/  -   ]: s=3 n=2 x=0 d=3 p=30
(XEN) [2021-06-14 23:02:29]      179 [1/0/  91  ]: s=3 n=3 x=0 d=3 p=34
(XEN) [2021-06-14 23:02:29]      180 [0/0/  -   ]: s=3 n=4 x=0 d=3 p=35
(XEN) [2021-06-14 23:02:29]      181 [0/0/  -   ]: s=3 n=5 x=0 d=3 p=36
(XEN) [2021-06-14 23:02:29]      182 [0/0/  -   ]: s=3 n=6 x=0 d=3 p=37
(XEN) [2021-06-14 23:02:29]      183 [0/0/  -   ]: s=3 n=7 x=0 d=3 p=38
(XEN) [2021-06-14 23:02:29]      184 [0/0/  -   ]: s=3 n=0 x=0 d=3 p=39
(XEN) [2021-06-14 23:02:29]      185 [0/0/  -   ]: s=3 n=1 x=0 d=3 p=40
(XEN) [2021-06-14 23:02:29]      186 [0/0/  -   ]: s=3 n=2 x=0 d=3 p=41
(XEN) [2021-06-14 23:02:29]      187 [0/0/  -   ]: s=3 n=3 x=0 d=3 p=42
(XEN) [2021-06-14 23:02:29]      188 [0/0/  -   ]: s=3 n=4 x=0 d=3 p=43
(XEN) [2021-06-14 23:02:29]      189 [0/0/  -   ]: s=3 n=5 x=0 d=2 p=95
(XEN) [2021-06-14 23:02:29]      190 [0/0/  -   ]: s=3 n=6 x=0 d=2 p=96
(XEN) [2021-06-14 23:02:29]      191 [0/0/  -   ]: s=3 n=7 x=0 d=2 p=97
(XEN) [2021-06-14 23:02:29]      192 [0/0/  -   ]: s=3 n=0 x=0 d=2 p=98
(XEN) [2021-06-14 23:02:29]      193 [0/0/  -   ]: s=3 n=1 x=0 d=2 p=99
(XEN) [2021-06-14 23:02:29]      194 [0/0/  -   ]: s=3 n=2 x=0 d=2 p=100
(XEN) [2021-06-14 23:02:29]      195 [0/0/  -   ]: s=3 n=3 x=0 d=2 p=101
(XEN) [2021-06-14 23:02:29]      196 [0/0/  -   ]: s=3 n=4 x=0 d=2 p=102
(XEN) [2021-06-14 23:02:29]      197 [0/0/  -   ]: s=3 n=0 x=0 d=7 p=1
(XEN) [2021-06-14 23:02:29]      198 [0/0/  -   ]: s=3 n=6 x=0 d=5 p=1
(XEN) [2021-06-14 23:02:29]      199 [0/0/  -   ]: s=3 n=2 x=0 d=7 p=2
(XEN) [2021-06-14 23:02:29]      200 [0/0/  -   ]: s=3 n=3 x=0 d=7 p=3
(XEN) [2021-06-14 23:02:29]      201 [0/0/  -   ]: s=3 n=5 x=0 d=7 p=5
(XEN) [2021-06-14 23:02:29]      202 [0/0/  -   ]: s=3 n=0 x=0 d=7 p=6
(XEN) [2021-06-14 23:02:29]      203 [0/0/  -   ]: s=3 n=1 x=0 d=7 p=7
(XEN) [2021-06-14 23:02:29]      204 [0/0/  -   ]: s=3 n=2 x=0 d=7 p=8
(XEN) [2021-06-14 23:02:29]      205 [0/0/  -   ]: s=3 n=3 x=0 d=7 p=9
(XEN) [2021-06-14 23:02:29]      206 [1/1/  -   ]: s=3 n=4 x=0 d=7 p=4
(XEN) [2021-06-14 23:02:29]      207 [0/0/  -   ]: s=3 n=7 x=0 d=5 p=2
(XEN) [2021-06-14 23:02:29]      208 [0/0/  -   ]: s=3 n=0 x=0 d=5 p=3
(XEN) [2021-06-14 23:02:29]      209 [0/0/  -   ]: s=3 n=1 x=0 d=5 p=5
(XEN) [2021-06-14 23:02:29]      210 [0/0/  -   ]: s=3 n=2 x=0 d=5 p=6
(XEN) [2021-06-14 23:02:29]      211 [0/0/  -   ]: s=3 n=3 x=0 d=5 p=7
(XEN) [2021-06-14 23:02:29]      212 [0/0/  -   ]: s=3 n=4 x=0 d=5 p=8
(XEN) [2021-06-14 23:02:29]      213 [0/0/  -   ]: s=3 n=5 x=0 d=5 p=9
(XEN) [2021-06-14 23:02:29]      214 [1/1/  -   ]: s=3 n=6 x=0 d=5 p=4
(XEN) [2021-06-14 23:02:29]      215 [0/0/  -   ]: s=4 n=7 x=0 p=3 i=3
(XEN) [2021-06-14 23:02:29]      216 [0/0/  -   ]: s=3 n=5 x=0 d=7 p=42
(XEN) [2021-06-14 23:02:29]      217 [0/0/  -   ]: s=3 n=6 x=0 d=7 p=43
(XEN) [2021-06-14 23:02:29]      218 [0/0/  -   ]: s=3 n=7 x=0 d=7 p=44
(XEN) [2021-06-14 23:02:29]      219 [0/0/  -   ]: s=3 n=0 x=0 d=7 p=45
(XEN) [2021-06-14 23:02:29]      220 [0/0/  -   ]: s=3 n=1 x=0 d=7 p=46
(XEN) [2021-06-14 23:02:29]      221 [0/0/  -   ]: s=3 n=2 x=0 d=7 p=47
(XEN) [2021-06-14 23:02:29]      222 [0/0/  -   ]: s=3 n=3 x=0 d=7 p=48
(XEN) [2021-06-14 23:02:29]      223 [0/0/  -   ]: s=3 n=4 x=0 d=7 p=49
(XEN) [2021-06-14 23:02:29]      224 [0/0/  -   ]: s=3 n=5 x=0 d=7 p=50
(XEN) [2021-06-14 23:02:29]      225 [0/0/  -   ]: s=3 n=6 x=0 d=7 p=51
(XEN) [2021-06-14 23:02:29]      226 [0/0/  -   ]: s=3 n=7 x=0 d=7 p=52
(XEN) [2021-06-14 23:02:29]      227 [0/0/  -   ]: s=3 n=0 x=0 d=7 p=53
(XEN) [2021-06-14 23:02:29]      228 [0/0/  -   ]: s=3 n=1 x=0 d=7 p=54
(XEN) [2021-06-14 23:02:29]      229 [0/0/  -   ]: s=3 n=2 x=0 d=7 p=55
(XEN) [2021-06-14 23:02:29]      230 [0/0/  -   ]: s=3 n=3 x=0 d=7 p=56
(XEN) [2021-06-14 23:02:29]      231 [0/0/  -   ]: s=3 n=4 x=0 d=7 p=57
(XEN) [2021-06-14 23:02:29]      232 [0/0/  -   ]: s=3 n=5 x=0 d=7 p=58
(XEN) [2021-06-14 23:02:29]      233 [0/0/  -   ]: s=3 n=6 x=0 d=7 p=59
(XEN) [2021-06-14 23:02:29]      234 [0/0/  -   ]: s=3 n=7 x=0 d=7 p=60
(XEN) [2021-06-14 23:02:29]      235 [0/0/  -   ]: s=3 n=0 x=0 d=7 p=61
(XEN) [2021-06-14 23:02:29]      236 [0/0/  -   ]: s=3 n=4 x=0 d=5 p=47
(XEN) [2021-06-14 23:02:29]      237 [0/0/  -   ]: s=3 n=5 x=0 d=5 p=48
(XEN) [2021-06-14 23:02:29]      238 [0/0/  -   ]: s=3 n=6 x=0 d=5 p=49
(XEN) [2021-06-14 23:02:29]      239 [0/0/  -   ]: s=3 n=7 x=0 d=5 p=50
(XEN) [2021-06-14 23:02:29]      240 [0/0/  -   ]: s=3 n=0 x=0 d=5 p=51
(XEN) [2021-06-14 23:02:29]      241 [0/0/  -   ]: s=3 n=1 x=0 d=5 p=52
(XEN) [2021-06-14 23:02:29]      242 [0/0/  -   ]: s=3 n=2 x=0 d=5 p=53
(XEN) [2021-06-14 23:02:29]      243 [0/0/  -   ]: s=3 n=3 x=0 d=5 p=54
(XEN) [2021-06-14 23:02:29]      244 [0/0/  -   ]: s=3 n=4 x=0 d=5 p=57
(XEN) [2021-06-14 23:02:29]      245 [0/0/  -   ]: s=3 n=5 x=0 d=5 p=58
(XEN) [2021-06-14 23:02:29]      246 [0/0/  -   ]: s=3 n=6 x=0 d=5 p=59
(XEN) [2021-06-14 23:02:29]      247 [0/0/  -   ]: s=3 n=7 x=0 d=5 p=60
(XEN) [2021-06-14 23:02:29]      248 [0/0/  -   ]: s=3 n=0 x=0 d=5 p=61
(XEN) [2021-06-14 23:02:29]      249 [0/0/  -   ]: s=3 n=1 x=0 d=5 p=62
(XEN) [2021-06-14 23:02:29]      250 [0/0/  -   ]: s=3 n=2 x=0 d=5 p=63
(XEN) [2021-06-14 23:02:29]      251 [0/0/  -   ]: s=3 n=3 x=0 d=5 p=64
(XEN) [2021-06-14 23:02:29]      252 [0/0/  -   ]: s=3 n=4 x=0 d=5 p=65
(XEN) [2021-06-14 23:02:29]      253 [0/0/  -   ]: s=3 n=5 x=0 d=5 p=66
(XEN) [2021-06-14 23:02:29]      254 [0/0/  -   ]: s=3 n=6 x=0 d=5 p=67
(XEN) [2021-06-14 23:02:29]      255 [0/0/  -   ]: s=3 n=7 x=0 d=5 p=68
(XEN) [2021-06-14 23:02:29]      256 [0/0/  -   ]: s=3 n=1 x=0 d=7 p=66
(XEN) [2021-06-14 23:02:29]      257 [0/0/  -   ]: s=3 n=1 x=0 d=5 p=73
(XEN) [2021-06-14 23:02:29]      258 [1/0/  90  ]: s=5 n=2 x=0 v=4
(XEN) [2021-06-14 23:02:29] Event channel information for domain 2:
(XEN) [2021-06-14 23:02:29] Polling vCPUs: {}
(XEN) [2021-06-14 23:02:29]     port [p/m/s]
(XEN) [2021-06-14 23:02:29]        1 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=108
(XEN) [2021-06-14 23:02:29]        2 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=115
(XEN) [2021-06-14 23:02:29]        3 [0/1/  -   ]: s=3 n=0 x=1 d=0 p=116
(XEN) [2021-06-14 23:02:29]        4 [0/1/  -   ]: s=3 n=0 x=1 d=0 p=120
(XEN) [2021-06-14 23:02:29]        5 [0/1/  -   ]: s=3 n=1 x=1 d=0 p=117
(XEN) [2021-06-14 23:02:29]        6 [0/1/  -   ]: s=3 n=2 x=1 d=0 p=118
(XEN) [2021-06-14 23:02:29]        7 [0/1/  -   ]: s=3 n=3 x=1 d=0 p=119
(XEN) [2021-06-14 23:02:30]        8 [1/0/  0   ]: s=5 n=0 x=0 v=0
(XEN) [2021-06-14 23:02:30]        9 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:30]       10 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:30]       11 [0/0/  -   ]: s=5 n=0 x=0 v=1
(XEN) [2021-06-14 23:02:30]       12 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:30]       13 [1/1/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:30]       14 [1/0/  0   ]: s=5 n=1 x=0 v=0
(XEN) [2021-06-14 23:02:30]       15 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:30]       16 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:30]       17 [0/0/  -   ]: s=5 n=1 x=0 v=1
(XEN) [2021-06-14 23:02:30]       18 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:30]       19 [1/1/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:30]       20 [0/0/  -   ]: s=5 n=2 x=0 v=0
(XEN) [2021-06-14 23:02:30]       21 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:30]       22 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:30]       23 [0/0/  -   ]: s=5 n=2 x=0 v=1
(XEN) [2021-06-14 23:02:30]       24 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:30]       25 [1/1/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:30]       26 [1/0/  0   ]: s=5 n=3 x=0 v=0
(XEN) [2021-06-14 23:02:30]       27 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:30]       28 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:30]       29 [0/0/  -   ]: s=5 n=3 x=0 v=1
(XEN) [2021-06-14 23:02:30]       30 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:30]       31 [1/1/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:30]       32 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=121
(XEN) [2021-06-14 23:02:30]       33 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=122
(XEN) [2021-06-14 23:02:30]       34 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=123
(XEN) [2021-06-14 23:02:30]       35 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=124
(XEN) [2021-06-14 23:02:30]       36 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=125
(XEN) [2021-06-14 23:02:30]       37 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=126
(XEN) [2021-06-14 23:02:30]       38 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=127
(XEN) [2021-06-14 23:02:30]       39 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=128
(XEN) [2021-06-14 23:02:30]       40 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=129
(XEN) [2021-06-14 23:02:30]       41 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=130
(XEN) [2021-06-14 23:02:30]       42 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=131
(XEN) [2021-06-14 23:02:30]       43 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=132
(XEN) [2021-06-14 23:02:30]       44 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=133
(XEN) [2021-06-14 23:02:30]       45 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=134
(XEN) [2021-06-14 23:02:30]       46 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=135
(XEN) [2021-06-14 23:02:30]       47 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=136
(XEN) [2021-06-14 23:02:30]       48 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=137
(XEN) [2021-06-14 23:02:30]       49 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=138
(XEN) [2021-06-14 23:02:30]       50 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=139
(XEN) [2021-06-14 23:02:30]       51 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=140
(XEN) [2021-06-14 23:02:30]       52 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=141
(XEN) [2021-06-14 23:02:30]       53 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=142
(XEN) [2021-06-14 23:02:30]       54 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=143
(XEN) [2021-06-14 23:02:30]       55 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=144
(XEN) [2021-06-14 23:02:30]       56 [0/0/  -   ]: s=4 n=0 x=0 p=20 i=0
(XEN) [2021-06-14 23:02:30]       57 [0/0/  -   ]: s=4 n=0 x=0 p=21 i=0
(XEN) [2021-06-14 23:02:30]       58 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=145
(XEN) [2021-06-14 23:02:30]       59 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=146
(XEN) [2021-06-14 23:02:30]       60 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=147
(XEN) [2021-06-14 23:02:30]       61 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=148
(XEN) [2021-06-14 23:02:30]       62 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=149
(XEN) [2021-06-14 23:02:30]       63 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=150
(XEN) [2021-06-14 23:02:30]       64 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=151
(XEN) [2021-06-14 23:02:30]       65 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=152
(XEN) [2021-06-14 23:02:30]       66 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=153
(XEN) [2021-06-14 23:02:30]       67 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=154
(XEN) [2021-06-14 23:02:30]       68 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=155
(XEN) [2021-06-14 23:02:30]       69 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=156
(XEN) [2021-06-14 23:02:30]       70 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=157
(XEN) [2021-06-14 23:02:30]       71 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=158
(XEN) [2021-06-14 23:02:30]       72 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=159
(XEN) [2021-06-14 23:02:30]       73 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=160
(XEN) [2021-06-14 23:02:30]       74 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=161
(XEN) [2021-06-14 23:02:30]       75 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=162
(XEN) [2021-06-14 23:02:30]       76 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=163
(XEN) [2021-06-14 23:02:30]       77 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=164
(XEN) [2021-06-14 23:02:30]       78 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=165
(XEN) [2021-06-14 23:02:30]       79 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=166
(XEN) [2021-06-14 23:02:30]       80 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=167
(XEN) [2021-06-14 23:02:30]       81 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=168
(XEN) [2021-06-14 23:02:30]       82 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=169
(XEN) [2021-06-14 23:02:30]       83 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=170
(XEN) [2021-06-14 23:02:30]       84 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=171
(XEN) [2021-06-14 23:02:30]       85 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=172
(XEN) [2021-06-14 23:02:30]       86 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=173
(XEN) [2021-06-14 23:02:30]       87 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=174
(XEN) [2021-06-14 23:02:30]       88 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=175
(XEN) [2021-06-14 23:02:30]       89 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=176
(XEN) [2021-06-14 23:02:30]       90 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=177
(XEN) [2021-06-14 23:02:30]       91 [0/0/  -   ]: s=4 n=0 x=0 p=23 i=0
(XEN) [2021-06-14 23:02:30]       92 [0/0/  -   ]: s=4 n=0 x=0 p=19 i=0
(XEN) [2021-06-14 23:02:30]       93 [0/0/  -   ]: s=4 n=0 x=0 p=17 i=0
(XEN) [2021-06-14 23:02:30]       94 [0/0/  -   ]: s=4 n=0 x=0 p=22 i=0
(XEN) [2021-06-14 23:02:30]       95 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=189
(XEN) [2021-06-14 23:02:30]       96 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=190
(XEN) [2021-06-14 23:02:30]       97 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=191
(XEN) [2021-06-14 23:02:30]       98 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=192
(XEN) [2021-06-14 23:02:30]       99 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=193
(XEN) [2021-06-14 23:02:30]      100 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=194
(XEN) [2021-06-14 23:02:30]      101 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=195
(XEN) [2021-06-14 23:02:30]      102 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=196
(XEN) [2021-06-14 23:02:30] Event channel information for domain 3:
(XEN) [2021-06-14 23:02:30] Polling vCPUs: {}
(XEN) [2021-06-14 23:02:30]     port [p/m/s]
(XEN) [2021-06-14 23:02:30] grant_table.c:803:d0v3 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:30]        1 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=107
(XEN) [2021-06-14 23:02:30]        2 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=109
(XEN) [2021-06-14 23:02:30]        3 [0/1/  -   ]: s=3 n=0 x=1 d=0 p=110
(XEN) [2021-06-14 23:02:30]        4 [0/1/  -   ]: s=3 n=0 x=1 d=0 p=114
(XEN) [2021-06-14 23:02:30]        5 [0/1/  -   ]: s=3 n=1 x=1 d=0 p=111
(XEN) [2021-06-14 23:02:30]        6 [0/1/  -   ]: s=3 n=2 x=1 d=0 p=112
(XEN) [2021-06-14 23:02:30]        7 [0/1/  -   ]: s=3 n=3 x=1 d=0 p=113
(XEN) [2021-06-14 23:02:30]        8 [0/0/  -   ]: s=5 n=0 x=0 v=0
(XEN) [2021-06-14 23:02:30]        9 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:30]       10 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:30]       11 [0/0/  -   ]: s=5 n=0 x=0 v=1
(XEN) [2021-06-14 23:02:30]       12 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:30]       13 [1/0/  0   ]: s=5 n=1 x=0 v=0
(XEN) [2021-06-14 23:02:30]       14 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:30]       15 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:30]       16 [0/0/  -   ]: s=5 n=1 x=0 v=1
(XEN) [2021-06-14 23:02:30]       17 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:30]       18 [0/0/  -   ]: s=5 n=2 x=0 v=0
(XEN) [2021-06-14 23:02:30]       19 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:30]       20 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:30]       21 [0/0/  -   ]: s=5 n=2 x=0 v=1
(XEN) [2021-06-14 23:02:30]       22 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:30]       23 [0/0/  -   ]: s=5 n=3 x=0 v=0
(XEN) [2021-06-14 23:02:30]       24 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:30]       25 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:30]       26 [0/0/  -   ]: s=5 n=3 x=0 v=1
(XEN) [2021-06-14 23:02:30]       27 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:30]       28 [0/0/  -   ]: s=4 n=0 x=0 p=17 i=0
(XEN) [2021-06-14 23:02:30]       29 [0/0/  -   ]: s=4 n=0 x=0 p=18 i=0
(XEN) [2021-06-14 23:02:30]       30 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=178
(XEN) [2021-06-14 23:02:30]       31 [0/0/  -   ]: s=4 n=0 x=0 p=16 i=0
(XEN) [2021-06-14 23:02:30]       32 [0/0/  -   ]: s=4 n=0 x=0 p=20 i=0
(XEN) [2021-06-14 23:02:30]       33 [0/0/  -   ]: s=4 n=0 x=0 p=19 i=0
(XEN) [2021-06-14 23:02:30]       34 [1/0/  0   ]: s=3 n=1 x=0 d=0 p=179
(XEN) [2021-06-14 23:02:30]       35 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=180
(XEN) [2021-06-14 23:02:30]       36 [0/0/  -   ]: s=3 n=3 x=0 d=0 p=181
(XEN) [2021-06-14 23:02:30]       37 [0/0/  -   ]: s=3 n=2 x=0 d=0 p=182
(XEN) [2021-06-14 23:02:30]       38 [0/0/  -   ]: s=3 n=1 x=0 d=0 p=183
(XEN) [2021-06-14 23:02:30]       39 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=184
(XEN) [2021-06-14 23:02:30]       40 [0/0/  -   ]: s=3 n=3 x=0 d=0 p=185
(XEN) [2021-06-14 23:02:30]       41 [0/0/  -   ]: s=3 n=2 x=0 d=0 p=186
(XEN) [2021-06-14 23:02:30]       42 [0/0/  -   ]: s=3 n=1 x=0 d=0 p=187
(XEN) [2021-06-14 23:02:30]       43 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=188
(XEN) [2021-06-14 23:02:30] Event channel information for domain 5:
(XEN) [2021-06-14 23:02:30] Polling vCPUs: {}
(XEN) [2021-06-14 23:02:30]     port [p/m/s]
(XEN) [2021-06-14 23:02:30]        1 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=198
(XEN) [2021-06-14 23:02:30]        2 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=207
(XEN) [2021-06-14 23:02:30]        3 [0/1/  -   ]: s=3 n=0 x=1 d=0 p=208
(XEN) [2021-06-14 23:02:30]        4 [0/1/  -   ]: s=3 n=0 x=1 d=0 p=214
(XEN) [2021-06-14 23:02:30]        5 [0/1/  -   ]: s=3 n=1 x=1 d=0 p=209
(XEN) [2021-06-14 23:02:30]        6 [0/1/  -   ]: s=3 n=2 x=1 d=0 p=210
(XEN) [2021-06-14 23:02:30]        7 [0/1/  -   ]: s=3 n=3 x=1 d=0 p=211
(XEN) [2021-06-14 23:02:30]        8 [0/1/  -   ]: s=3 n=4 x=1 d=0 p=212
(XEN) [2021-06-14 23:02:30]        9 [0/1/  -   ]: s=3 n=5 x=1 d=0 p=213
(XEN) [2021-06-14 23:02:30]       10 [1/0/  0   ]: s=5 n=0 x=0 v=0
(XEN) [2021-06-14 23:02:30]       11 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:30]       12 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:30]       13 [0/0/  -   ]: s=5 n=0 x=0 v=1
(XEN) [2021-06-14 23:02:30]       14 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:30]       15 [1/1/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:30]       16 [1/0/  0   ]: s=5 n=1 x=0 v=0
(XEN) [2021-06-14 23:02:30]       17 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:30]       18 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:31]       19 [0/0/  -   ]: s=5 n=1 x=0 v=1
(XEN) [2021-06-14 23:02:31]       20 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:31]       21 [1/1/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:31]       22 [1/0/  0   ]: s=5 n=2 x=0 v=0
(XEN) [2021-06-14 23:02:31]       23 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       24 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       25 [0/0/  -   ]: s=5 n=2 x=0 v=1
(XEN) [2021-06-14 23:02:31]       26 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       27 [1/1/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       28 [0/0/  -   ]: s=5 n=3 x=0 v=0
(XEN) [2021-06-14 23:02:31]       29 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       30 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       31 [0/0/  -   ]: s=5 n=3 x=0 v=1
(XEN) [2021-06-14 23:02:31]       32 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       33 [1/1/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       34 [0/0/  -   ]: s=5 n=4 x=0 v=0
(XEN) [2021-06-14 23:02:31]       35 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       36 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       37 [0/0/  -   ]: s=5 n=4 x=0 v=1
(XEN) [2021-06-14 23:02:31]       38 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       39 [1/1/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       40 [1/0/  0   ]: s=5 n=5 x=0 v=0
(XEN) [2021-06-14 23:02:31]       41 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       42 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       43 [0/0/  -   ]: s=5 n=5 x=0 v=1
(XEN) [2021-06-14 23:02:31]       44 [1/0/  0   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       45 [1/1/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       46 [0/0/  -   ]: s=4 n=0 x=0 p=16 i=0
(XEN) [2021-06-14 23:02:31]       47 [0/0/  -   ]: s=3 n=1 x=0 d=0 p=236
(XEN) [2021-06-14 23:02:31]       48 [1/0/  0   ]: s=3 n=3 x=0 d=0 p=237
(XEN) [2021-06-14 23:02:31]       49 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=238
(XEN) [2021-06-14 23:02:31]       50 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=239
(XEN) [2021-06-14 23:02:31]       51 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=240
(XEN) [2021-06-14 23:02:31]       52 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=241
(XEN) [2021-06-14 23:02:31]       53 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=242
(XEN) [2021-06-14 23:02:31]       54 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=243
(XEN) [2021-06-14 23:02:31]       55 [0/0/  -   ]: s=4 n=0 x=0 p=18 i=0
(XEN) [2021-06-14 23:02:31]       56 [0/0/  -   ]: s=4 n=0 x=0 p=19 i=0
(XEN) [2021-06-14 23:02:31]       57 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=244
(XEN) [2021-06-14 23:02:31]       58 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=245
(XEN) [2021-06-14 23:02:31]       59 [0/0/  -   ]: s=3 n=2 x=0 d=0 p=246
(XEN) [2021-06-14 23:02:31]       60 [0/0/  -   ]: s=3 n=4 x=0 d=0 p=247
(XEN) [2021-06-14 23:02:31]       61 [0/0/  -   ]: s=3 n=1 x=0 d=0 p=248
(XEN) [2021-06-14 23:02:31]       62 [0/0/  -   ]: s=3 n=3 x=0 d=0 p=249
(XEN) [2021-06-14 23:02:31]       63 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=250
(XEN) [2021-06-14 23:02:31]       64 [1/0/  0   ]: s=3 n=0 x=0 d=0 p=251
(XEN) [2021-06-14 23:02:31]       65 [0/0/  -   ]: s=3 n=2 x=0 d=0 p=252
(XEN) [2021-06-14 23:02:31]       66 [0/0/  -   ]: s=3 n=4 x=0 d=0 p=253
(XEN) [2021-06-14 23:02:31]       67 [0/0/  -   ]: s=3 n=1 x=0 d=0 p=254
(XEN) [2021-06-14 23:02:31]       68 [0/0/  -   ]: s=3 n=3 x=0 d=0 p=255
(XEN) [2021-06-14 23:02:31]       69 [1/1/  -   ]: s=4 n=0 x=0 p=17 i=0
(XEN) [2021-06-14 23:02:31]       70 [0/0/  -   ]: s=4 n=0 x=0 p=21 i=0
(XEN) [2021-06-14 23:02:31]       71 [0/0/  -   ]: s=4 n=0 x=0 p=20 i=0
(XEN) [2021-06-14 23:02:31]       72 [0/0/  -   ]: s=4 n=0 x=0 p=23 i=0
(XEN) [2021-06-14 23:02:31]       73 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=257
(XEN) [2021-06-14 23:02:31] Event channel information for domain 6:
(XEN) [2021-06-14 23:02:31] Polling vCPUs: {}
(XEN) [2021-06-14 23:02:31]     port [p/m/s]
(XEN) [2021-06-14 23:02:31]        1 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=68
(XEN) [2021-06-14 23:02:31]        2 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=70
(XEN) [2021-06-14 23:02:31]        3 [0/1/  -   ]: s=3 n=0 x=1 d=0 p=72
(XEN) [2021-06-14 23:02:31]        4 [0/1/  -   ]: s=3 n=0 x=1 d=0 p=78
(XEN) [2021-06-14 23:02:31]        5 [0/1/  -   ]: s=3 n=1 x=1 d=0 p=73
(XEN) [2021-06-14 23:02:31]        6 [0/1/  -   ]: s=3 n=2 x=1 d=0 p=74
(XEN) [2021-06-14 23:02:31]        7 [0/1/  -   ]: s=3 n=3 x=1 d=0 p=75
(XEN) [2021-06-14 23:02:31]        8 [0/1/  -   ]: s=3 n=4 x=1 d=0 p=76
(XEN) [2021-06-14 23:02:31]        9 [0/1/  -   ]: s=3 n=5 x=1 d=0 p=77
(XEN) [2021-06-14 23:02:31]       10 [1/0/  0   ]: s=5 n=0 x=0 v=0
(XEN) [2021-06-14 23:02:31]       11 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:31]       12 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:31]       13 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:31]       14 [1/1/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:31]       15 [1/0/  0   ]: s=5 n=1 x=0 v=0
(XEN) [2021-06-14 23:02:31]       16 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:31]       17 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:31]       18 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:31]       19 [1/1/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:31]       20 [1/0/  0   ]: s=5 n=2 x=0 v=0
(XEN) [2021-06-14 23:02:31]       21 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       22 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       23 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       24 [1/1/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       25 [0/0/  -   ]: s=5 n=3 x=0 v=0
(XEN) [2021-06-14 23:02:31]       26 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       27 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       28 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       29 [1/1/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       30 [1/0/  0   ]: s=5 n=4 x=0 v=0
(XEN) [2021-06-14 23:02:31]       31 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       32 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       33 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       34 [1/1/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       35 [0/0/  -   ]: s=5 n=5 x=0 v=0
(XEN) [2021-06-14 23:02:31]       36 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       37 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       38 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       39 [1/1/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       40 [0/0/  -   ]: s=4 n=0 x=0 p=16 i=0
(XEN) [2021-06-14 23:02:31]       41 [0/0/  -   ]: s=4 n=0 x=0 p=18 i=0
(XEN) [2021-06-14 23:02:31]       42 [0/0/  -   ]: s=4 n=0 x=0 p=20 i=0
(XEN) [2021-06-14 23:02:31]       43 [0/0/  -   ]: s=4 n=0 x=0 p=17 i=0
(XEN) [2021-06-14 23:02:31]       44 [0/0/  -   ]: s=4 n=0 x=0 p=22 i=0
(XEN) [2021-06-14 23:02:31]       45 [0/0/  -   ]: s=3 n=3 x=0 d=0 p=79
(XEN) [2021-06-14 23:02:31]       46 [1/0/  0   ]: s=3 n=5 x=0 d=0 p=80
(XEN) [2021-06-14 23:02:31]       47 [1/0/  0   ]: s=3 n=0 x=0 d=0 p=81
(XEN) [2021-06-14 23:02:31]       48 [1/0/  0   ]: s=3 n=2 x=0 d=0 p=82
(XEN) [2021-06-14 23:02:31]       49 [0/0/  -   ]: s=3 n=4 x=0 d=0 p=83
(XEN) [2021-06-14 23:02:31]       50 [0/0/  -   ]: s=3 n=1 x=0 d=0 p=84
(XEN) [2021-06-14 23:02:31]       51 [0/0/  -   ]: s=3 n=3 x=0 d=0 p=85
(XEN) [2021-06-14 23:02:31]       52 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=86
(XEN) [2021-06-14 23:02:31]       53 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=87
(XEN) [2021-06-14 23:02:31]       54 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=96
(XEN) [2021-06-14 23:02:31]       55 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=97
(XEN) [2021-06-14 23:02:31]       56 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=98
(XEN) [2021-06-14 23:02:31]       57 [0/0/  -   ]: s=3 n=3 x=0 d=0 p=99
(XEN) [2021-06-14 23:02:31]       58 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=100
(XEN) [2021-06-14 23:02:31]       59 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=101
(XEN) [2021-06-14 23:02:31]       60 [0/0/  -   ]: s=3 n=2 x=0 d=0 p=102
(XEN) [2021-06-14 23:02:31]       61 [0/0/  -   ]: s=3 n=4 x=0 d=0 p=103
(XEN) [2021-06-14 23:02:31]       62 [0/0/  -   ]: s=3 n=1 x=0 d=0 p=104
(XEN) [2021-06-14 23:02:31]       63 [0/0/  -   ]: s=3 n=3 x=0 d=0 p=105
(XEN) [2021-06-14 23:02:31]       64 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=106
(XEN) [2021-06-14 23:02:31] Event channel information for domain 7:
(XEN) [2021-06-14 23:02:31] Polling vCPUs: {}
(XEN) [2021-06-14 23:02:31]     port [p/m/s]
(XEN) [2021-06-14 23:02:31]        1 [0/0/  -   ]: s=3 n=2 x=0 d=0 p=197
(XEN) [2021-06-14 23:02:31]        2 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=199
(XEN) [2021-06-14 23:02:31]        3 [0/1/  -   ]: s=3 n=0 x=1 d=0 p=200
(XEN) [2021-06-14 23:02:31]        4 [0/1/  -   ]: s=3 n=0 x=1 d=0 p=206
(XEN) [2021-06-14 23:02:31]        5 [0/1/  -   ]: s=3 n=1 x=1 d=0 p=201
(XEN) [2021-06-14 23:02:31]        6 [0/1/  -   ]: s=3 n=2 x=1 d=0 p=202
(XEN) [2021-06-14 23:02:31]        7 [0/1/  -   ]: s=3 n=3 x=1 d=0 p=203
(XEN) [2021-06-14 23:02:31]        8 [0/1/  -   ]: s=3 n=4 x=1 d=0 p=204
(XEN) [2021-06-14 23:02:31]        9 [0/1/  -   ]: s=3 n=5 x=1 d=0 p=205
(XEN) [2021-06-14 23:02:31]       10 [1/0/  0   ]: s=5 n=0 x=0 v=0
(XEN) [2021-06-14 23:02:31]       11 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:31]       12 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:31]       13 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:31]       14 [1/1/  -   ]: s=6 n=0 x=0
(XEN) [2021-06-14 23:02:31]       15 [1/0/  0   ]: s=5 n=1 x=0 v=0
(XEN) [2021-06-14 23:02:31]       16 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:31]       17 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:31]       18 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:31]       19 [1/1/  -   ]: s=6 n=1 x=0
(XEN) [2021-06-14 23:02:31]       20 [1/0/  0   ]: s=5 n=2 x=0 v=0
(XEN) [2021-06-14 23:02:31]       21 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       22 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       23 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       24 [0/1/  -   ]: s=6 n=2 x=0
(XEN) [2021-06-14 23:02:31]       25 [1/0/  0   ]: s=5 n=3 x=0 v=0
(XEN) [2021-06-14 23:02:31]       26 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       27 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       28 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       29 [1/1/  -   ]: s=6 n=3 x=0
(XEN) [2021-06-14 23:02:31]       30 [1/0/  0   ]: s=5 n=4 x=0 v=0
(XEN) [2021-06-14 23:02:31]       31 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       32 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       33 [0/0/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       34 [1/1/  -   ]: s=6 n=4 x=0
(XEN) [2021-06-14 23:02:31]       35 [1/0/  0   ]: s=5 n=5 x=0 v=0
(XEN) [2021-06-14 23:02:31]       36 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       37 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       38 [0/0/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       39 [1/1/  -   ]: s=6 n=5 x=0
(XEN) [2021-06-14 23:02:31]       40 [0/0/  -   ]: s=4 n=1 x=0 p=16 i=0
(XEN) [2021-06-14 23:02:31]       41 [0/0/  -   ]: s=4 n=3 x=0 p=20 i=0
(XEN) [2021-06-14 23:02:31]       42 [0/0/  -   ]: s=3 n=4 x=0 d=0 p=216
(XEN) [2021-06-14 23:02:31]       43 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=217
(XEN) [2021-06-14 23:02:31]       44 [0/0/  -   ]: s=3 n=1 x=0 d=0 p=218
(XEN) [2021-06-14 23:02:32]       45 [0/0/  -   ]: s=3 n=2 x=0 d=0 p=219
(XEN) [2021-06-14 23:02:32]       46 [0/0/  -   ]: s=3 n=3 x=0 d=0 p=220
(XEN) [2021-06-14 23:02:32]       47 [0/0/  -   ]: s=3 n=4 x=0 d=0 p=221
(XEN) [2021-06-14 23:02:32]       48 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=222
(XEN) [2021-06-14 23:02:32]       49 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=223
(XEN) [2021-06-14 23:02:32]       50 [0/0/  -   ]: s=3 n=1 x=0 d=0 p=224
(XEN) [2021-06-14 23:02:32]       51 [0/0/  -   ]: s=3 n=2 x=0 d=0 p=225
(XEN) [2021-06-14 23:02:32]       52 [0/0/  -   ]: s=3 n=3 x=0 d=0 p=226
(XEN) [2021-06-14 23:02:32]       53 [0/0/  -   ]: s=3 n=4 x=0 d=0 p=227
(XEN) [2021-06-14 23:02:32]       54 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=228
(XEN) [2021-06-14 23:02:32]       55 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=229
(XEN) [2021-06-14 23:02:32]       56 [0/0/  -   ]: s=3 n=1 x=0 d=0 p=230
(XEN) [2021-06-14 23:02:32]       57 [1/0/  0   ]: s=3 n=2 x=0 d=0 p=231
(XEN) [2021-06-14 23:02:32]       58 [0/0/  -   ]: s=3 n=3 x=0 d=0 p=232
(XEN) [2021-06-14 23:02:32]       59 [0/0/  -   ]: s=3 n=4 x=0 d=0 p=233
(XEN) [2021-06-14 23:02:32]       60 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=234
(XEN) [2021-06-14 23:02:32]       61 [0/0/  -   ]: s=3 n=0 x=0 d=0 p=235
(XEN) [2021-06-14 23:02:32]       62 [0/0/  -   ]: s=4 n=1 x=0 p=18 i=0
(XEN) [2021-06-14 23:02:32]       63 [0/0/  -   ]: s=4 n=2 x=0 p=19 i=0
(XEN) [2021-06-14 23:02:32]       64 [0/0/  -   ]: s=4 n=3 x=0 p=17 i=0
(XEN) [2021-06-14 23:02:32]       65 [0/0/  -   ]: s=4 n=4 x=0 p=21 i=0
(XEN) [2021-06-14 23:02:32]       66 [0/0/  -   ]: s=3 n=5 x=0 d=0 p=256
(XEN) [2021-06-14 23:02:32] [g: print grant table usage]
(XEN) [2021-06-14 23:02:32] gnttab_usage_print_all [ key 'g' pressed
(XEN) [2021-06-14 23:02:32]       -------- active -------- -------- 
shared --------
(XEN) [2021-06-14 23:02:32] [ref] localdom mfn      pin localdom 
gmfn     flags
(XEN) [2021-06-14 23:02:32] grant-table for remote d0 (v1)
(XEN) [2021-06-14 23:02:32]   1 frames (512 max), 70 maptrack frames 
(2048 max)
(XEN) [2021-06-14 23:02:32] no active grant table entries
(XEN) [2021-06-14 23:02:32]       -------- active -------- -------- 
shared --------
(XEN) [2021-06-14 23:02:32] [ref] localdom mfn      pin localdom 
gmfn     flags
(XEN) [2021-06-14 23:02:32] grant-table for remote d2 (v1)
(XEN) [2021-06-14 23:02:32]   22 frames (512 max), 0 maptrack frames 
(2048 max)
(XEN) [2021-06-14 23:02:32] [0x000]      0 0xb1e03b 0x00000002          
0 0x0fefff 0x19
(XEN) [2021-06-14 23:02:32] [0x008]      0 0x141cfa5 0x00000001          
0 0x566fa5 0x19
(XEN) [2021-06-14 23:02:32] [0x009]      0 0x141cfa8 0x00000001          
0 0x566fa8 0x19
(XEN) [2021-06-14 23:02:32] [0x00a]      0 0x141cfaa 0x00000001          
0 0x566faa 0x19
(XEN) [2021-06-14 23:02:32] [0x00b]      0 0x141cfac 0x00000001          
0 0x566fac 0x19
(XEN) [2021-06-14 23:02:32] [0x00c]      0 0x141cfaf 0x00000001          
0 0x566faf 0x19
(XEN) [2021-06-14 23:02:32] [0x00d]      0 0x141cfb1 0x00000001          
0 0x566fb1 0x19
(XEN) [2021-06-14 23:02:32] [0x00e]      0 0x141d218 0x00000001          
0 0x566a18 0x19
(XEN) [2021-06-14 23:02:32] [0x00f]      0 0x141d21a 0x00000001          
0 0x566a1a 0x19
(XEN) [2021-06-14 23:02:32] [0x010]      0 0x141d21c 0x00000001          
0 0x566a1c 0x19
(XEN) [2021-06-14 23:02:32] [0x011]      0 0x141d21d 0x00000001          
0 0x566a1d 0x19
(XEN) [2021-06-14 23:02:32] [0x012]      0 0x141d270 0x00000001          
0 0x566a70 0x19
(XEN) [2021-06-14 23:02:32] [0x013]      0 0x141d271 0x00000001          
0 0x566a71 0x19
(XEN) [2021-06-14 23:02:32] [0x014]      0 0x141d274 0x00000001          
0 0x566a74 0x19
(XEN) [2021-06-14 23:02:32] [0x015]      0 0x141d275 0x00000001          
0 0x566a75 0x19
(XEN) [2021-06-14 23:02:32] [0x016]      0 0x141d277 0x00000001          
0 0x566a77 0x19
(XEN) [2021-06-14 23:02:32] [0x017]      0 0x141d27a 0x00000001          
0 0x566a7a 0x19
(XEN) [2021-06-14 23:02:32] [0x018]      0 0x141d27c 0x00000001          
0 0x566a7c 0x19
(XEN) [2021-06-14 23:02:32] [0x019]      0 0x141d27e 0x00000001          
0 0x566a7e 0x19
(XEN) [2021-06-14 23:02:32] [0x01a]      0 0x141d380 0x00000001          
0 0x566b80 0x19
(XEN) [2021-06-14 23:02:32] [0x01b]      0 0x141d382 0x00000001          
0 0x566b82 0x19
(XEN) [2021-06-14 23:02:32] [0x01c]      0 0x141d383 0x00000001          
0 0x566b83 0x19
(XEN) [2021-06-14 23:02:32] [0x01d]      0 0x141d384 0x00000001          
0 0x566b84 0x19
(XEN) [2021-06-14 23:02:32] [0x01e]      0 0x141d387 0x00000001          
0 0x566b87 0x19
(XEN) [2021-06-14 23:02:32] [0x01f]      0 0x141d38a 0x00000001          
0 0x566b8a 0x19
(XEN) [2021-06-14 23:02:32] [0x020]      0 0x141d394 0x00000001          
0 0x566b94 0x19
(XEN) [2021-06-14 23:02:32] [0x021]      0 0x141d395 0x00000001          
0 0x566b95 0x19
(XEN) [2021-06-14 23:02:32] [0x022]      0 0x141d398 0x00000001          
0 0x566b98 0x19
(XEN) [2021-06-14 23:02:32] [0x023]      0 0x141d399 0x00000001          
0 0x566b99 0x19
(XEN) [2021-06-14 23:02:32] [0x024]      0 0x141d39a 0x00000001          
0 0x566b9a 0x19
(XEN) [2021-06-14 23:02:32] [0x025]      0 0x141d39c 0x00000001          
0 0x566b9c 0x19
(XEN) [2021-06-14 23:02:32] [0x026]      0 0x141d39e 0x00000001          
0 0x566b9e 0x19
(XEN) [2021-06-14 23:02:32] [0x027]      0 0x141d3a1 0x00000001          
0 0x566ba1 0x19
(XEN) [2021-06-14 23:02:32] [0x028]      0 0x141d3a2 0x00000001          
0 0x566ba2 0x19
(XEN) [2021-06-14 23:02:32] [0x029]      0 0x141d3a4 0x00000001          
0 0x566ba4 0x19
(XEN) [2021-06-14 23:02:32] [0x02a]      0 0x141d3a6 0x00000001          
0 0x566ba6 0x19
(XEN) [2021-06-14 23:02:32] [0x02b]      0 0x141d3f0 0x00000001          
0 0x566bf0 0x19
(XEN) [2021-06-14 23:02:32] [0x02c]      0 0x141d3f4 0x00000001          
0 0x566bf4 0x19
(XEN) [2021-06-14 23:02:32] [0x02d]      0 0x141d3f5 0x00000001          
0 0x566bf5 0x19
(XEN) [2021-06-14 23:02:32] [0x02e]      0 0x141d3f8 0x00000001          
0 0x566bf8 0x19
(XEN) [2021-06-14 23:02:32] [0x02f]      0 0x141d3fa 0x00000001          
0 0x566bfa 0x19
(XEN) [2021-06-14 23:02:32] [0x032]      0 0x141ecdc 0x00000001          
0 0x5650dc 0x19
(XEN) [2021-06-14 23:02:32] [0x033]      0 0x141ecde 0x00000001          
0 0x5650de 0x19
(XEN) [2021-06-14 23:02:32] [0x034]      0 0x141ecdf 0x00000001          
0 0x5650df 0x19
(XEN) [2021-06-14 23:02:32] [0x035]      0 0x141ece2 0x00000001          
0 0x5650e2 0x19
(XEN) [2021-06-14 23:02:32] [0x036]      0 0x141ece5 0x00000001          
0 0x5650e5 0x19
(XEN) [2021-06-14 23:02:32] [0x037]      0 0x141ece7 0x00000001          
0 0x5650e7 0x19
(XEN) [2021-06-14 23:02:32] [0x038]      0 0x141ece8 0x00000001          
0 0x5650e8 0x19
(XEN) [2021-06-14 23:02:32] [0x039]      0 0x141ece9 0x00000001          
0 0x5650e9 0x19
(XEN) [2021-06-14 23:02:32] [0x03a]      0 0x141ed03 0x00000001          
0 0x565103 0x19
(XEN) [2021-06-14 23:02:32] [0x03b]      0 0x141ed04 0x00000001          
0 0x565104 0x19
(XEN) [2021-06-14 23:02:32] [0x03c]      0 0x141ed06 0x00000001          
0 0x565106 0x19
(XEN) [2021-06-14 23:02:32] [0x03d]      0 0x141ed08 0x00000001          
0 0x565108 0x19
(XEN) [2021-06-14 23:02:32] [0x03e]      0 0x141ed0b 0x00000001          
0 0x56510b 0x19
(XEN) [2021-06-14 23:02:32] [0x03f]      0 0x141ed0c 0x00000001          
0 0x56510c 0x19
(XEN) [2021-06-14 23:02:32] [0x040]      0 0x141ed0d 0x00000001          
0 0x56510d 0x19
(XEN) [2021-06-14 23:02:32] [0x041]      0 0x141ed0f 0x00000001          
0 0x56510f 0x19
(XEN) [2021-06-14 23:02:32] [0x049]      0 0x141ddeb 0x00000001          
0 0x5661eb 0x19
(XEN) [2021-06-14 23:02:32] [0x079]      0 0x141dbd7 0x00000001          
0 0x5663d7 0x19
(XEN) [2021-06-14 23:02:32] [0x0a0]      0 0x141e0ec 0x00000001          
0 0x565cec 0x19
(XEN) [2021-06-14 23:02:32] [0x0be]      0 0x141e107 0x00000001          
0 0x565d07 0x19
(XEN) [2021-06-14 23:02:32] [0x0db]      0 0x141d7f3 0x00000001          
0 0x5667f3 0x19
(XEN) [2021-06-14 23:02:32] [0x113]      0 0x141e10f 0x00000001          
0 0x565d0f 0x19
(XEN) [2021-06-14 23:02:32] [0x119]      0 0x141dd83 0x00000001          
0 0x566183 0x19
(XEN) [2021-06-14 23:02:32] [0x130]      0 0x141dba9 0x00000001          
0 0x5663a9 0x19
(XEN) [2021-06-14 23:02:32] [0x18d]      0 0x141da51 0x00000001          
0 0x566251 0x19
(XEN) [2021-06-14 23:02:32] [0x191]      0 0x141dd1b 0x00000001          
0 0x56611b 0x19
(XEN) [2021-06-14 23:02:32] [0x1c1]      0 0x141dbe7 0x00000001          
0 0x5663e7 0x19
(XEN) [2021-06-14 23:02:32] [0x1d5]      0 0x141dbae 0x00000001          
0 0x5663ae 0x19
(XEN) [2021-06-14 23:02:32] [0x1f6]      0 0x141db62 0x00000001          
0 0x566362 0x19
(XEN) [2021-06-14 23:02:32] [0x22e]      0 0x141e1c4 0x00000001          
0 0x565dc4 0x19
(XEN) [2021-06-14 23:02:32] [0x239]      0 0x141e1d2 0x00000001          
0 0x565dd2 0x19
(XEN) [2021-06-14 23:02:32] [0x23a]      0 0x141e442 0x00000001          
0 0x565842 0x19
(XEN) [2021-06-14 23:02:32] [0x23d]      0 0x141e073 0x00000001          
0 0x565c73 0x19
(XEN) [2021-06-14 23:02:32] [0x23e]      0 0x141da1c 0x00000001          
0 0x56621c 0x19
(XEN) [2021-06-14 23:02:32] [0x2a7]      0 0x141da8e 0x00000001          
0 0x56628e 0x19
(XEN) [2021-06-14 23:02:32] [0x2b3]      0 0x141db00 0x00000001          
0 0x566300 0x19
(XEN) [2021-06-14 23:02:32] [0x2ef]      0 0x141e1de 0x00000001          
0 0x565dde 0x19
(XEN) [2021-06-14 23:02:32] [0x2f4]      0 0x141db4c 0x00000001          
0 0x56634c 0x19
(XEN) [2021-06-14 23:02:32] [0x2f6]      0 0x141dafc 0x00000001          
0 0x5662fc 0x19
(XEN) [2021-06-14 23:02:32] [0x2f7]      0 0x141dac5 0x00000001          
0 0x5662c5 0x19
(XEN) [2021-06-14 23:02:32] [0x309]      0 0x141df18 0x00000001          
0 0x565f18 0x19
(XEN) [2021-06-14 23:02:32] [0x30d]      0 0x141da2e 0x00000001          
0 0x56622e 0x19
(XEN) [2021-06-14 23:02:32] [0x30e]      0 0x141dd69 0x00000001          
0 0x566169 0x19
(XEN) [2021-06-14 23:02:32] [0x310]      0 0x141ddd0 0x00000001          
0 0x5661d0 0x19
(XEN) [2021-06-14 23:02:32] [0x311]      0 0x141e0e4 0x00000001          
0 0x565ce4 0x19
(XEN) [2021-06-14 23:02:32] [0x314]      0 0x141dfe3 0x00000001          
0 0x565fe3 0x19
(XEN) [2021-06-14 23:02:32] [0x318]      0 0x141e1ca 0x00000001          
0 0x565dca 0x19
(XEN) [2021-06-14 23:02:32] [0x319]      0 0x141df7d 0x00000001          
0 0x565f7d 0x19
(XEN) [2021-06-14 23:02:32] [0x324]      0 0x141da37 0x00000001          
0 0x566237 0x19
(XEN) [2021-06-14 23:02:32] [0x328]      0 0x141dec9 0x00000001          
0 0x565ec9 0x19
(XEN) [2021-06-14 23:02:32] [0x32c]      0 0x141dbcd 0x00000001          
0 0x5663cd 0x19
(XEN) [2021-06-14 23:02:32] [0x32d]      0 0x141de25 0x00000001          
0 0x565e25 0x19
(XEN) [2021-06-14 23:02:32] [0x338]      0 0x141ddc7 0x00000001          
0 0x5661c7 0x19
(XEN) [2021-06-14 23:02:32] [0x35e]      0 0x141e082 0x00000001          
0 0x565c82 0x19
(XEN) [2021-06-14 23:02:32] [0x370]      0 0x141e40f 0x00000001          
0 0x56580f 0x19
(XEN) [2021-06-14 23:02:32] [0x37b]      0 0x141dde2 0x00000001          
0 0x5661e2 0x19
(XEN) [2021-06-14 23:02:32] [0x398]      0 0x141dd34 0x00000001          
0 0x566134 0x19
(XEN) [2021-06-14 23:02:32] [0x3ac]      0 0x141e40a 0x00000001          
0 0x56580a 0x19
(XEN) [2021-06-14 23:02:32] [0x3d4]      0 0x141db93 0x00000001          
0 0x566393 0x19
(XEN) [2021-06-14 23:02:32] [0x41a]      0 0x141e110 0x00000001          
0 0x565d10 0x19
(XEN) [2021-06-14 23:02:33] [0x41e]      0 0x141e15d 0x00000001          
0 0x565d5d 0x19
(XEN) [2021-06-14 23:02:33] [0x54f]      0 0x141df2b 0x00000001          
0 0x565f2b 0x19
(XEN) [2021-06-14 23:02:33] [0x550]      0 0x141daf1 0x00000001          
0 0x5662f1 0x19
(XEN) [2021-06-14 23:02:33] [0x552]      0 0x141dc9a 0x00000001          
0 0x56609a 0x19
(XEN) [2021-06-14 23:02:33] [0x553]      0 0x141da4b 0x00000001          
0 0x56624b 0x19
(XEN) [2021-06-14 23:02:33] [0x554]      0 0x141dd75 0x00000001          
0 0x566175 0x19
(XEN) [2021-06-14 23:02:33] [0x55b]      0 0x141d787 0x00000001          
0 0x566787 0x19
(XEN) [2021-06-14 23:02:33] [0x55f]      0 0x141df6a 0x00000001          
0 0x565f6a 0x19
(XEN) [2021-06-14 23:02:33] [0x560]      0 0x141dabf 0x00000001          
0 0x5662bf 0x19
(XEN) [2021-06-14 23:02:33] [0x563]      0 0x141d7be 0x00000001          
0 0x5667be 0x19
(XEN) [2021-06-14 23:02:33] [0x566]      0 0x141de3e 0x00000001          
0 0x565e3e 0x19
(XEN) [2021-06-14 23:02:33] [0x57c]      0 0x141dee3 0x00000001          
0 0x565ee3 0x19
(XEN) [2021-06-14 23:02:33] [0x57d]      0 0x141df90 0x00000001          
0 0x565f90 0x19
(XEN) [2021-06-14 23:02:33] [0x57e]      0 0x141dbc8 0x00000001          
0 0x5663c8 0x19
(XEN) [2021-06-14 23:02:33] [0x583]      0 0x141db5d 0x00000001          
0 0x56635d 0x19
(XEN) [2021-06-14 23:02:33] [0x596]      0 0x141da5e 0x00000001          
0 0x56625e 0x19
(XEN) [2021-06-14 23:02:33] [0x5a8]      0 0x141db67 0x00000001          
0 0x566367 0x19
(XEN) [2021-06-14 23:02:33] [0x5aa]      0 0x141e44e 0x00000001          
0 0x56584e 0x19
(XEN) [2021-06-14 23:02:33] [0x5c2]      0 0x141dc8f 0x00000001          
0 0x56608f 0x19
(XEN) [2021-06-14 23:02:33] [0x5d9]      0 0x141dcb5 0x00000001          
0 0x5660b5 0x19
(XEN) [2021-06-14 23:02:33] [0xd00]      0 0x78ca43 0x00000001          
0 0x551643 0x19
(XEN) [2021-06-14 23:02:33] [0xd01]      0 0x78ca44 0x00000001          
0 0x551644 0x19
(XEN) [2021-06-14 23:02:33] [0xd02]      0 0x78ca46 0x00000001          
0 0x551646 0x19
(XEN) [2021-06-14 23:02:33] [0xd03]      0 0x78ca47 0x00000001          
0 0x551647 0x19
(XEN) [2021-06-14 23:02:33] [0xd04]      0 0x78ca4b 0x00000001          
0 0x55164b 0x19
(XEN) [2021-06-14 23:02:33] [0xd05]      0 0x78ca4c 0x00000001          
0 0x55164c 0x19
(XEN) [2021-06-14 23:02:33] [0xd06]      0 0x78ca4e 0x00000001          
0 0x55164e 0x19
(XEN) [2021-06-14 23:02:33] [0xd07]      0 0x78ca4f 0x00000001          
0 0x55164f 0x19
(XEN) [2021-06-14 23:02:33] [0xd3b]      0 0x141e0ac 0x00000001          
0 0x565cac 0x19
(XEN) [2021-06-14 23:02:33] [0xd59]      0 0x141daf4 0x00000001          
0 0x5662f4 0x19
(XEN) [2021-06-14 23:02:33] [0xd6c]      0 0x141e0a8 0x00000001          
0 0x565ca8 0x19
(XEN) [2021-06-14 23:02:33] [0xd72]      0 0x141dbd5 0x00000001          
0 0x5663d5 0x19
(XEN) [2021-06-14 23:02:33] [0xd73]      0 0x141e116 0x00000001          
0 0x565d16 0x19
(XEN) [2021-06-14 23:02:33] [0xd74]      0 0x141db43 0x00000001          
0 0x566343 0x19
(XEN) [2021-06-14 23:02:33] [0xd75]      0 0x141dbbe 0x00000001          
0 0x5663be 0x19
(XEN) [2021-06-14 23:02:33] [0xd77]      0 0x141da6d 0x00000001          
0 0x56626d 0x19
(XEN) [2021-06-14 23:02:33] [0xd7e]      0 0x141daa5 0x00000001          
0 0x5662a5 0x19
(XEN) [2021-06-14 23:02:33] [0xd8b]      0 0x141e420 0x00000001          
0 0x565820 0x19
(XEN) [2021-06-14 23:02:33] [0xdc8]      0 0x141e1e7 0x00000001          
0 0x565de7 0x19
(XEN) [2021-06-14 23:02:33] [0xdf8]      0 0x141db10 0x00000001          
0 0x566310 0x19
(XEN) [2021-06-14 23:02:33] [0xe00]      0 0x141dd48 0x00000001          
0 0x566148 0x19
(XEN) [2021-06-14 23:02:33] [0xe03]      0 0x141d7bc 0x00000001          
0 0x5667bc 0x19
(XEN) [2021-06-14 23:02:33] [0xe1c]      0 0x141dca4 0x00000001          
0 0x5660a4 0x19
(XEN) [2021-06-14 23:02:33] [0xe1f]      0 0x141de62 0x00000001          
0 0x565e62 0x19
(XEN) [2021-06-14 23:02:33] [0xe20]      0 0x141db81 0x00000001          
0 0x566381 0x19
(XEN) [2021-06-14 23:02:33] [0xe2a]      0 0x141df86 0x00000001          
0 0x565f86 0x19
(XEN) [2021-06-14 23:02:33] [0xe2d]      0 0x141e0f8 0x00000001          
0 0x565cf8 0x19
(XEN) [2021-06-14 23:02:33] [0xe2e]      0 0x141e011 0x00000001          
0 0x565c11 0x19
(XEN) [2021-06-14 23:02:33] [0xe38]      0 0x141dcf5 0x00000001          
0 0x5660f5 0x19
(XEN) [2021-06-14 23:02:33] [0xe63]      0 0x141e108 0x00000001          
0 0x565d08 0x19
(XEN) [2021-06-14 23:02:33] [0xe64]      0 0x141de56 0x00000001          
0 0x565e56 0x19
(XEN) [2021-06-14 23:02:33] [0xe68]      0 0x141da4d 0x00000001          
0 0x56624d 0x19
(XEN) [2021-06-14 23:02:33] [0xe69]      0 0x141df4e 0x00000001          
0 0x565f4e 0x19
(XEN) [2021-06-14 23:02:33] [0xe6b]      0 0x141dd4f 0x00000001          
0 0x56614f 0x19
(XEN) [2021-06-14 23:02:33] [0xe6d]      0 0x141e046 0x00000001          
0 0x565c46 0x19
(XEN) [2021-06-14 23:02:33] [0xe6e]      0 0x141db56 0x00000001          
0 0x566356 0x19
(XEN) [2021-06-14 23:02:33] [0xe70]      0 0x141e0fa 0x00000001          
0 0x565cfa 0x19
(XEN) [2021-06-14 23:02:33] [0xe71]      0 0x141ddfa 0x00000001          
0 0x5661fa 0x19
(XEN) [2021-06-14 23:02:33] [0xe74]      0 0x141dcec 0x00000001          
0 0x5660ec 0x19
(XEN) [2021-06-14 23:02:33] [0xe77]      0 0x141d7b6 0x00000001          
0 0x5667b6 0x19
(XEN) [2021-06-14 23:02:33] [0xe78]      0 0x141dddc 0x00000001          
0 0x5661dc 0x19
(XEN) [2021-06-14 23:02:33] [0xe79]      0 0x141db09 0x00000001          
0 0x566309 0x19
(XEN) [2021-06-14 23:02:33] [0xe7a]      0 0x141dee8 0x00000001          
0 0x565ee8 0x19
(XEN) [2021-06-14 23:02:33] [0xe7f]      0 0x141d7a3 0x00000001          
0 0x5667a3 0x19
(XEN) [2021-06-14 23:02:33] [0xe84]      0 0x141dcd0 0x00000001          
0 0x5660d0 0x19
(XEN) [2021-06-14 23:02:33] [0xe8e]      0 0x141df52 0x00000001          
0 0x565f52 0x19
(XEN) [2021-06-14 23:02:33] [0xe98]      0 0x141dfdf 0x00000001          
0 0x565fdf 0x19
(XEN) [2021-06-14 23:02:33] [0xe9f]      0 0x141e0f4 0x00000001          
0 0x565cf4 0x19
(XEN) [2021-06-14 23:02:33] [0xeb5]      0 0x141db11 0x00000001          
0 0x566311 0x19
(XEN) [2021-06-14 23:02:33] [0xeb6]      0 0x141dd31 0x00000001          
0 0x566131 0x19
(XEN) [2021-06-14 23:02:33] [0xed0]      0 0x141e01d 0x00000001          
0 0x565c1d 0x19
(XEN) [2021-06-14 23:02:33] [0xed1]      0 0x141dd86 0x00000001          
0 0x566186 0x19
(XEN) [2021-06-14 23:02:33] [0xed2]      0 0x141db49 0x00000001          
0 0x566349 0x19
(XEN) [2021-06-14 23:02:33] [0xeff]      0 0x141df81 0x00000001          
0 0x565f81 0x19
(XEN) [2021-06-14 23:02:33] [0xf00]      0 0x141d79a 0x00000001          
0 0x56679a 0x19
(XEN) [2021-06-14 23:02:33] [0xf05]      0 0x141e0ba 0x00000001          
0 0x565cba 0x19
(XEN) [2021-06-14 23:02:33] [0xf08]      0 0x141ddb3 0x00000001          
0 0x5661b3 0x19
(XEN) [2021-06-14 23:02:33] [0xf0e]      0 0x141e06d 0x00000001          
0 0x565c6d 0x19
(XEN) [2021-06-14 23:02:33] [0xf17]      0 0x141e041 0x00000001          
0 0x565c41 0x19
(XEN) [2021-06-14 23:02:33] [0xf30]      0 0x141da38 0x00000001          
0 0x566238 0x19
(XEN) [2021-06-14 23:02:33] [0xf42]      0 0x141ddc0 0x00000001          
0 0x5661c0 0x19
(XEN) [2021-06-14 23:02:33] [0xfb2]      0 0x141e19f 0x00000001          
0 0x565d9f 0x19
(XEN) [2021-06-14 23:02:33] [0xfb5]      0 0x141deba 0x00000001          
0 0x565eba 0x19
(XEN) [2021-06-14 23:02:33] [0xfb7]      0 0x141e1d0 0x00000001          
0 0x565dd0 0x19
(XEN) [2021-06-14 23:02:33] [0xfda]      0 0x141e03e 0x00000001          
0 0x565c3e 0x19
(XEN) [2021-06-14 23:02:33] [0x1121]      0 0x141d7b3 
0x00000001          0 0x5667b3 0x19
(XEN) [2021-06-14 23:02:33] [0x1123]      0 0x141e0b7 
0x00000001          0 0x565cb7 0x19
(XEN) [2021-06-14 23:02:33] [0x11e1]      0 0x141dda5 
0x00000001          0 0x5661a5 0x19
(XEN) [2021-06-14 23:02:33] [0x11e5]      0 0x141da7a 
0x00000001          0 0x56627a 0x19
(XEN) [2021-06-14 23:02:33] [0x121e]      0 0x141dfab 
0x00000001          0 0x565fab 0x19
(XEN) [2021-06-14 23:02:33] [0x1223]      0 0x141da62 
0x00000001          0 0x566262 0x19
(XEN) [2021-06-14 23:02:33] [0x123f]      0 0x141da21 
0x00000001          0 0x566221 0x19
(XEN) [2021-06-14 23:02:33] [0x125f]      0 0x141df7b 
0x00000001          0 0x565f7b 0x19
(XEN) [2021-06-14 23:02:33] [0x1276]      0 0x141e056 
0x00000001          0 0x565c56 0x19
(XEN) [2021-06-14 23:02:33] [0x1277]      0 0x141dd57 
0x00000001          0 0x566157 0x19
(XEN) [2021-06-14 23:02:33] [0x1299]      0 0x141df70 
0x00000001          0 0x565f70 0x19
(XEN) [2021-06-14 23:02:33] [0x12bb]      0 0x141e069 
0x00000001          0 0x565c69 0x19
(XEN) [2021-06-14 23:02:33] [0x1307]      0 0x141e685 
0x00000001          0 0x565685 0x19
(XEN) [2021-06-14 23:02:33] [0x130b]      0 0x141e12f 
0x00000001          0 0x565d2f 0x19
(XEN) [2021-06-14 23:02:33] [0x1344]      0 0x141deb5 
0x00000001          0 0x565eb5 0x19
(XEN) [2021-06-14 23:02:33] [0x1387]      0 0x141db5e 
0x00000001          0 0x56635e 0x19
(XEN) [2021-06-14 23:02:33] [0x138c]      0 0x141da2d 
0x00000001          0 0x56622d 0x19
(XEN) [2021-06-14 23:02:33] [0x138d]      0 0x141dbf3 
0x00000001          0 0x5663f3 0x19
(XEN) [2021-06-14 23:02:33] [0x138e]      0 0x141e020 
0x00000001          0 0x565c20 0x19
(XEN) [2021-06-14 23:02:33] [0x13a7]      0 0x141e07c 
0x00000001          0 0x565c7c 0x19
(XEN) [2021-06-14 23:02:33] [0x13ad]      0 0x141db86 
0x00000001          0 0x566386 0x19
(XEN) [2021-06-14 23:02:33] [0x13c8]      0 0x141d7cf 
0x00000001          0 0x5667cf 0x19
(XEN) [2021-06-14 23:02:33] [0x13d1]      0 0x141dfa4 
0x00000001          0 0x565fa4 0x19
(XEN) [2021-06-14 23:02:33] [0x1404]      0 0x141e109 
0x00000001          0 0x565d09 0x19
(XEN) [2021-06-14 23:02:33] [0x1406]      0 0x141ddf9 
0x00000001          0 0x5661f9 0x19
(XEN) [2021-06-14 23:02:33] [0x141c]      0 0x141dbc7 
0x00000001          0 0x5663c7 0x19
(XEN) [2021-06-14 23:02:33] [0x141d]      0 0x141dd3b 
0x00000001          0 0x56613b 0x19
(XEN) [2021-06-14 23:02:33] [0x1427]      0 0x141dffc 
0x00000001          0 0x565ffc 0x19
(XEN) [2021-06-14 23:02:33] [0x1439]      0 0x141db7b 
0x00000001          0 0x56637b 0x19
(XEN) [2021-06-14 23:02:33] [0x1442]      0 0x141df7c 
0x00000001          0 0x565f7c 0x19
(XEN) [2021-06-14 23:02:33] [0x144d]      0 0x141d78b 
0x00000001          0 0x56678b 0x19
(XEN) [2021-06-14 23:02:33] [0x14ad]      0 0x141da94 
0x00000001          0 0x566294 0x19
(XEN) [2021-06-14 23:02:33] [0x14f5]      0 0x141ddea 
0x00000001          0 0x5661ea 0x19
(XEN) [2021-06-14 23:02:33] [0x1501]      0 0x141e14d 
0x00000001          0 0x565d4d 0x19
(XEN) [2021-06-14 23:02:33] [0x1506]      0 0x141dabb 
0x00000001          0 0x5662bb 0x19
(XEN) [2021-06-14 23:02:33] [0x1512]      0 0x141e051 
0x00000001          0 0x565c51 0x19
(XEN) [2021-06-14 23:02:33] [0x151e]      0 0x141dbbd 
0x00000001          0 0x5663bd 0x19
(XEN) [2021-06-14 23:02:33] [0x1530]      0 0x141df1d 
0x00000001          0 0x565f1d 0x19
(XEN) [2021-06-14 23:02:33] [0x1539]      0 0x141da8f 
0x00000001          0 0x56628f 0x19
(XEN) [2021-06-14 23:02:33] [0x1547]      0 0x141debd 
0x00000001          0 0x565ebd 0x19
(XEN) [2021-06-14 23:02:33] [0x1552]      0 0x141d7f1 
0x00000001          0 0x5667f1 0x19
(XEN) [2021-06-14 23:02:33] [0x1555]      0 0x141db36 
0x00000001          0 0x566336 0x19
(XEN) [2021-06-14 23:02:33] [0x1562]      0 0x141daa6 
0x00000001          0 0x5662a6 0x19
(XEN) [2021-06-14 23:02:34] [0x15b3]      0 0x141e01b 
0x00000001          0 0x565c1b 0x19
(XEN) [2021-06-14 23:02:34] [0x15e3]      0 0x141e0e5 
0x00000001          0 0x565ce5 0x19
(XEN) [2021-06-14 23:02:34] [0x161d]      0 0x141dd2c 
0x00000001          0 0x56612c 0x19
(XEN) [2021-06-14 23:02:34] [0x161f]      0 0x141da4f 
0x00000001          0 0x56624f 0x19
(XEN) [2021-06-14 23:02:34] [0x16ae]      0 0x141db74 
0x00000001          0 0x566374 0x19
(XEN) [2021-06-14 23:02:34] [0x16b3]      0 0x141dfec 
0x00000001          0 0x565fec 0x19
(XEN) [2021-06-14 23:02:34] [0x16d6]      0 0x141ddbb 
0x00000001          0 0x5661bb 0x19
(XEN) [2021-06-14 23:02:34] [0x16ed]      0 0x141e0b1 
0x00000001          0 0x565cb1 0x19
(XEN) [2021-06-14 23:02:34] [0x16f3]      0 0x141dabc 
0x00000001          0 0x5662bc 0x19
(XEN) [2021-06-14 23:02:34] [0x16f5]      0 0x141dda1 
0x00000001          0 0x5661a1 0x19
(XEN) [2021-06-14 23:02:34] [0x174e]      0 0x141dd8f 
0x00000001          0 0x56618f 0x19
(XEN) [2021-06-14 23:02:34] [0x1750]      0 0x141dacd 
0x00000001          0 0x5662cd 0x19
(XEN) [2021-06-14 23:02:34] [0x1751]      0 0x141da33 
0x00000001          0 0x566233 0x19
(XEN) [2021-06-14 23:02:34] [0x1758]      0 0x141e096 
0x00000001          0 0x565c96 0x19
(XEN) [2021-06-14 23:02:34] [0x175b]      0 0x141dd6d 
0x00000001          0 0x56616d 0x19
(XEN) [2021-06-14 23:02:34] [0x17a3]      0 0x141daf0 
0x00000001          0 0x5662f0 0x19
(XEN) [2021-06-14 23:02:34] [0x17a5]      0 0x141e118 
0x00000001          0 0x565d18 0x19
(XEN) [2021-06-14 23:02:34] [0x17a7]      0 0x141deda 
0x00000001          0 0x565eda 0x19
(XEN) [2021-06-14 23:02:34] [0x17e1]      0 0x141d3fc 
0x00000001          0 0x566bfc 0x19
(XEN) [2021-06-14 23:02:34] [0x1874]      0 0x141dd07 
0x00000001          0 0x566107 0x19
(XEN) [2021-06-14 23:02:34] [0x18a0]      0 0x141ddc4 
0x00000001          0 0x5661c4 0x19
(XEN) [2021-06-14 23:02:34] [0x18c2]      0 0x141e053 
0x00000001          0 0x565c53 0x19
(XEN) [2021-06-14 23:02:34] [0x18ca]      0 0x141dfc5 
0x00000001          0 0x565fc5 0x19
(XEN) [2021-06-14 23:02:34] [0x18e2]      0 0x141dea1 
0x00000001          0 0x565ea1 0x19
(XEN) [2021-06-14 23:02:34] [0x18eb]      0 0x141dd85 
0x00000001          0 0x566185 0x19
(XEN) [2021-06-14 23:02:34] [0x18f9]      0 0x141dd30 
0x00000001          0 0x566130 0x19
(XEN) [2021-06-14 23:02:34] [0x1900]      0 0x141df73 
0x00000001          0 0x565f73 0x19
(XEN) [2021-06-14 23:02:34] [0x1902]      0 0x141db69 
0x00000001          0 0x566369 0x19
(XEN) [2021-06-14 23:02:34] [0x192a]      0 0x141da2b 
0x00000001          0 0x56622b 0x19
(XEN) [2021-06-14 23:02:34] [0x195e]      0 0x141e750 
0x00000001          0 0x565750 0x19
(XEN) [2021-06-14 23:02:34] [0x1961]      0 0x141db80 
0x00000001          0 0x566380 0x19
(XEN) [2021-06-14 23:02:34] [0x1963]      0 0x141db40 
0x00000001          0 0x566340 0x19
(XEN) [2021-06-14 23:02:34] [0x1976]      0 0x141e17c 
0x00000001          0 0x565d7c 0x19
(XEN) [2021-06-14 23:02:34] [0x19b7]      0 0x141d7a0 
0x00000001          0 0x5667a0 0x19
(XEN) [2021-06-14 23:02:34] [0x19d5]      0 0x141dbf0 
0x00000001          0 0x5663f0 0x19
(XEN) [2021-06-14 23:02:34] [0x19e8]      0 0x141e42a 
0x00000001          0 0x56582a 0x19
(XEN) [2021-06-14 23:02:34] [0x1a00]      0 0x141df4c 
0x00000001          0 0x565f4c 0x19
(XEN) [2021-06-14 23:02:34] [0x1a09]      0 0x141dbbc 
0x00000001          0 0x5663bc 0x19
(XEN) [2021-06-14 23:02:34] [0x1a14]      0 0x141e0d2 
0x00000001          0 0x565cd2 0x19
(XEN) [2021-06-14 23:02:34] [0x1a3d]      0 0x141dea6 
0x00000001          0 0x565ea6 0x19
(XEN) [2021-06-14 23:02:34] [0x1a5e]      0 0x141e41f 
0x00000001          0 0x56581f 0x19
(XEN) [2021-06-14 23:02:34] [0x1a65]      0 0x141da15 
0x00000001          0 0x566215 0x19
(XEN) [2021-06-14 23:02:34] [0x1a80]      0 0x141ddec 
0x00000001          0 0x5661ec 0x19
(XEN) [2021-06-14 23:02:34] [0x1aa7]      0 0x141da9f 
0x00000001          0 0x56629f 0x19
(XEN) [2021-06-14 23:02:34] [0x1acd]      0 0x141e031 
0x00000001          0 0x565c31 0x19
(XEN) [2021-06-14 23:02:34] [0x1acf]      0 0x141d7e9 
0x00000001          0 0x5667e9 0x19
(XEN) [2021-06-14 23:02:34] [0x1ad0]      0 0x141ddc5 
0x00000001          0 0x5661c5 0x19
(XEN) [2021-06-14 23:02:34] [0x1ad1]      0 0x141da58 
0x00000001          0 0x566258 0x19
(XEN) [2021-06-14 23:02:34] [0x1aed]      0 0x141de47 
0x00000001          0 0x565e47 0x19
(XEN) [2021-06-14 23:02:34] [0x1b6d]      0 0x141dc96 
0x00000001          0 0x566096 0x19
(XEN) [2021-06-14 23:02:34] [0x1c25]      0 0x141da7f 
0x00000001          0 0x56627f 0x19
(XEN) [2021-06-14 23:02:34] [0x1c72]      0 0x141dbf9 
0x00000001          0 0x5663f9 0x19
(XEN) [2021-06-14 23:02:34] [0x1cb5]      0 0x141e018 
0x00000001          0 0x565c18 0x19
(XEN) [2021-06-14 23:02:34] [0x1cb7]      0 0x141dd2f 
0x00000001          0 0x56612f 0x19
(XEN) [2021-06-14 23:02:34] [0x1cc3]      0 0x141de28 
0x00000001          0 0x565e28 0x19
(XEN) [2021-06-14 23:02:34] [0x1d25]      0 0x141e1bd 
0x00000001          0 0x565dbd 0x19
(XEN) [2021-06-14 23:02:34] [0x1d32]      0 0x141d7ce 
0x00000001          0 0x5667ce 0x19
(XEN) [2021-06-14 23:02:34] [0x1d5a]      0 0x141df65 
0x00000001          0 0x565f65 0x19
(XEN) [2021-06-14 23:02:34] [0x1d73]      0 0x141dce9 
0x00000001          0 0x5660e9 0x19
(XEN) [2021-06-14 23:02:34] [0x1dc8]      0 0x141e11f 
0x00000001          0 0x565d1f 0x19
(XEN) [2021-06-14 23:02:34] [0x1dda]      0 0x141e0df 
0x00000001          0 0x565cdf 0x19
(XEN) [2021-06-14 23:02:34] [0x1df4]      0 0x141dfda 
0x00000001          0 0x565fda 0x19
(XEN) [2021-06-14 23:02:34] [0x1df7]      0 0x141dbf1 
0x00000001          0 0x5663f1 0x19
(XEN) [2021-06-14 23:02:34] [0x1df8]      0 0x141e001 
0x00000001          0 0x565c01 0x19
(XEN) [2021-06-14 23:02:34] [0x1dfa]      0 0x141ddef 
0x00000001          0 0x5661ef 0x19
(XEN) [2021-06-14 23:02:34] [0x1e12]      0 0x141dec1 
0x00000001          0 0x565ec1 0x19
(XEN) [2021-06-14 23:02:34] [0x1e44]      0 0x141e1fe 
0x00000001          0 0x565dfe 0x19
(XEN) [2021-06-14 23:02:34] [0x1e4d]      0 0x141dfb2 
0x00000001          0 0x565fb2 0x19
(XEN) [2021-06-14 23:02:34] [0x1e5e]      0 0x141da05 
0x00000001          0 0x566205 0x19
(XEN) [2021-06-14 23:02:34] [0x1e63]      0 0x141dc87 
0x00000001          0 0x566087 0x19
(XEN) [2021-06-14 23:02:34] [0x1e7b]      0 0x141e43c 
0x00000001          0 0x56583c 0x19
(XEN) [2021-06-14 23:02:34] [0x1ed1]      0 0x141dd82 
0x00000001          0 0x566182 0x19
(XEN) [2021-06-14 23:02:34] [0x1ed4]      0 0x141df83 
0x00000001          0 0x565f83 0x19
(XEN) [2021-06-14 23:02:34] [0x1ed5]      0 0x141db28 
0x00000001          0 0x566328 0x19
(XEN) [2021-06-14 23:02:34] [0x1ed6]      0 0x141e035 
0x00000001          0 0x565c35 0x19
(XEN) [2021-06-14 23:02:34] [0x1ed7]      0 0x141e180 
0x00000001          0 0x565d80 0x19
(XEN) [2021-06-14 23:02:34] [0x1edc]      0 0x141e064 
0x00000001          0 0x565c64 0x19
(XEN) [2021-06-14 23:02:34] [0x1ef6]      0 0x141db1c 
0x00000001          0 0x56631c 0x19
(XEN) [2021-06-14 23:02:34] [0x1efa]      0 0x141daa9 
0x00000001          0 0x5662a9 0x19
(XEN) [2021-06-14 23:02:34] [0x1f05]      0 0x141e049 
0x00000001          0 0x565c49 0x19
(XEN) [2021-06-14 23:02:34] [0x1f13]      0 0x141df8e 
0x00000001          0 0x565f8e 0x19
(XEN) [2021-06-14 23:02:34] [0x1f17]      0 0x141dce2 
0x00000001          0 0x5660e2 0x19
(XEN) [2021-06-14 23:02:34] [0x1f26]      0 0x141dd7d 
0x00000001          0 0x56617d 0x19
(XEN) [2021-06-14 23:02:34] [0x1f4f]      0 0x141df91 
0x00000001          0 0x565f91 0x19
(XEN) [2021-06-14 23:02:34] [0x1f62]      0 0x141e0d3 
0x00000001          0 0x565cd3 0x19
(XEN) [2021-06-14 23:02:34] [0x1f6d]      0 0x141dde6 
0x00000001          0 0x5661e6 0x19
(XEN) [2021-06-14 23:02:34] [0x1f7d]      0 0x141dd18 
0x00000001          0 0x566118 0x19
(XEN) [2021-06-14 23:02:34] [0x1fab]      0 0x141e6ec 
0x00000001          0 0x5656ec 0x19
(XEN) [2021-06-14 23:02:34] [0x1fae]      0 0x141dd97 
0x00000001          0 0x566197 0x19
(XEN) [2021-06-14 23:02:34] [0x1fb7]      0 0x141de4e 
0x00000001          0 0x565e4e 0x19
(XEN) [2021-06-14 23:02:34] [0x1fbd]      0 0x141e188 
0x00000001          0 0x565d88 0x19
(XEN) [2021-06-14 23:02:34] [0x2005]      0 0x141e03c 
0x00000001          0 0x565c3c 0x19
(XEN) [2021-06-14 23:02:34] [0x2006]      0 0x141ddf5 
0x00000001          0 0x5661f5 0x19
(XEN) [2021-06-14 23:02:34] [0x2012]      0 0x141e156 
0x00000001          0 0x565d56 0x19
(XEN) [2021-06-14 23:02:34] [0x2017]      0 0x141dd1a 
0x00000001          0 0x56611a 0x19
(XEN) [2021-06-14 23:02:34] [0x2018]      0 0x141dce5 
0x00000001          0 0x5660e5 0x19
(XEN) [2021-06-14 23:02:34] [0x201a]      0 0x141e007 
0x00000001          0 0x565c07 0x19
(XEN) [2021-06-14 23:02:34] [0x201c]      0 0x141d7ec 
0x00000001          0 0x5667ec 0x19
(XEN) [2021-06-14 23:02:34] [0x201f]      0 0x141dfe8 
0x00000001          0 0x565fe8 0x19
(XEN) [2021-06-14 23:02:34] [0x2021]      0 0x141da8c 
0x00000001          0 0x56628c 0x19
(XEN) [2021-06-14 23:02:34] [0x2022]      0 0x141db60 
0x00000001          0 0x566360 0x19
(XEN) [2021-06-14 23:02:34] [0x2025]      0 0x141daaf 
0x00000001          0 0x5662af 0x19
(XEN) [2021-06-14 23:02:34] [0x2026]      0 0x141e477 
0x00000001          0 0x565877 0x19
(XEN) [2021-06-14 23:02:34] [0x2027]      0 0x141dae2 
0x00000001          0 0x5662e2 0x19
(XEN) [2021-06-14 23:02:34] [0x2034]      0 0x141e4f5 
0x00000001          0 0x5658f5 0x19
(XEN) [2021-06-14 23:02:34] [0x2036]      0 0x141da63 
0x00000001          0 0x566263 0x19
(XEN) [2021-06-14 23:02:34] [0x20fe]      0 0x141dd88 
0x00000001          0 0x566188 0x19
(XEN) [2021-06-14 23:02:34] [0x2100]      0 0x141dbb6 
0x00000001          0 0x5663b6 0x19
(XEN) [2021-06-14 23:02:34] [0x2101]      0 0x141da3a 
0x00000001          0 0x56623a 0x19
(XEN) [2021-06-14 23:02:34] [0x2104]      0 0x141e503 
0x00000001          0 0x565903 0x19
(XEN) [2021-06-14 23:02:34] [0x2105]      0 0x141e0d8 
0x00000001          0 0x565cd8 0x19
(XEN) [2021-06-14 23:02:34] [0x214f]      0 0x141e669 
0x00000001          0 0x565669 0x19
(XEN) [2021-06-14 23:02:34] [0x21bc]      0 0x141dcc1 
0x00000001          0 0x5660c1 0x19
(XEN) [2021-06-14 23:02:34] [0x21bd]      0 0x141da27 
0x00000001          0 0x566227 0x19
(XEN) [2021-06-14 23:02:34] [0x21ff]      0 0x141dab7 
0x00000001          0 0x5662b7 0x19
(XEN) [2021-06-14 23:02:34] [0x2226]      0 0x141da46 
0x00000001          0 0x566246 0x19
(XEN) [2021-06-14 23:02:34] [0x228b]      0 0x141e08c 
0x00000001          0 0x565c8c 0x19
(XEN) [2021-06-14 23:02:34] [0x22ef]      0 0x141e015 
0x00000001          0 0x565c15 0x19
(XEN) [2021-06-14 23:02:34] [0x22ff]      0 0x141daab 
0x00000001          0 0x5662ab 0x19
(XEN) [2021-06-14 23:02:34] [0x230f]      0 0x141e055 
0x00000001          0 0x565c55 0x19
(XEN) [2021-06-14 23:02:34] [0x2317]      0 0x141dcc9 
0x00000001          0 0x5660c9 0x19
(XEN) [2021-06-14 23:02:34] [0x232e]      0 0x141dbef 
0x00000001          0 0x5663ef 0x19
(XEN) [2021-06-14 23:02:34] [0x2335]      0 0x141d792 
0x00000001          0 0x566792 0x19
(XEN) [2021-06-14 23:02:34] [0x2377]      0 0x141dfbc 
0x00000001          0 0x565fbc 0x19
(XEN) [2021-06-14 23:02:34] [0x2384]      0 0x141e08b 
0x00000001          0 0x565c8b 0x19
(XEN) [2021-06-14 23:02:34] [0x23c4]      0 0x141db66 
0x00000001          0 0x566366 0x19
(XEN) [2021-06-14 23:02:34] [0x240e]      0 0x141ddae 
0x00000001          0 0x5661ae 0x19
(XEN) [2021-06-14 23:02:35] [0x2467]      0 0x141d796 
0x00000001          0 0x566796 0x19
(XEN) [2021-06-14 23:02:35] [0x246b]      0 0x141db8e 
0x00000001          0 0x56638e 0x19
(XEN) [2021-06-14 23:02:35] [0x247b]      0 0x141d7f4 
0x00000001          0 0x5667f4 0x19
(XEN) [2021-06-14 23:02:35] [0x247c]      0 0x141dd6c 
0x00000001          0 0x56616c 0x19
(XEN) [2021-06-14 23:02:35] [0x247d]      0 0x141db65 
0x00000001          0 0x566365 0x19
(XEN) [2021-06-14 23:02:35] [0x247e]      0 0x141db25 
0x00000001          0 0x566325 0x19
(XEN) [2021-06-14 23:02:35] [0x249a]      0 0x141e045 
0x00000001          0 0x565c45 0x19
(XEN) [2021-06-14 23:02:35] [0x24da]      0 0x141dba1 
0x00000001          0 0x5663a1 0x19
(XEN) [2021-06-14 23:02:35] [0x24dc]      0 0x141db82 
0x00000001          0 0x566382 0x19
(XEN) [2021-06-14 23:02:35] [0x2507]      0 0x141dbfa 
0x00000001          0 0x5663fa 0x19
(XEN) [2021-06-14 23:02:35] [0x250e]      0 0x141e115 
0x00000001          0 0x565d15 0x19
(XEN) [2021-06-14 23:02:35] [0x2515]      0 0x141de9c 
0x00000001          0 0x565e9c 0x19
(XEN) [2021-06-14 23:02:35] [0x251b]      0 0x141de7d 
0x00000001          0 0x565e7d 0x19
(XEN) [2021-06-14 23:02:35] [0x251d]      0 0x141df3e 
0x00000001          0 0x565f3e 0x19
(XEN) [2021-06-14 23:02:35] [0x2520]      0 0x141dcdb 
0x00000001          0 0x5660db 0x19
(XEN) [2021-06-14 23:02:35] [0x2535]      0 0x141dab4 
0x00000001          0 0x5662b4 0x19
(XEN) [2021-06-14 23:02:35] [0x254b]      0 0x141dd22 
0x00000001          0 0x566122 0x19
(XEN) [2021-06-14 23:02:35] [0x255f]      0 0x141da13 
0x00000001          0 0x566213 0x19
(XEN) [2021-06-14 23:02:35] [0x2560]      0 0x141df2e 
0x00000001          0 0x565f2e 0x19
(XEN) [2021-06-14 23:02:35] [0x2578]      0 0x141ddce 
0x00000001          0 0x5661ce 0x19
(XEN) [2021-06-14 23:02:35] [0x2583]      0 0x141e0d4 
0x00000001          0 0x565cd4 0x19
(XEN) [2021-06-14 23:02:35] [0x2586]      0 0x141da69 
0x00000001          0 0x566269 0x19
(XEN) [2021-06-14 23:02:35] [0x259e]      0 0x141da12 
0x00000001          0 0x566212 0x19
(XEN) [2021-06-14 23:02:35] [0x25b7]      0 0x141dbc6 
0x00000001          0 0x5663c6 0x19
(XEN) [2021-06-14 23:02:35] [0x25bb]      0 0x141e1d1 
0x00000001          0 0x565dd1 0x19
(XEN) [2021-06-14 23:02:35] [0x25db]      0 0x141db05 
0x00000001          0 0x566305 0x19
(XEN) [2021-06-14 23:02:35] [0x2614]      0 0x141e10c 
0x00000001          0 0x565d0c 0x19
(XEN) [2021-06-14 23:02:35] [0x2615]      0 0x141dfc3 
0x00000001          0 0x565fc3 0x19
(XEN) [2021-06-14 23:02:35] [0x2616]      0 0x141db34 
0x00000001          0 0x566334 0x19
(XEN) [2021-06-14 23:02:35] [0x26b2]      0 0x141e0eb 
0x00000001          0 0x565ceb 0x19
(XEN) [2021-06-14 23:02:35] [0x2a44]      0 0x141d789 
0x00000001          0 0x566789 0x19
(XEN) [2021-06-14 23:02:35] [0x2a4e]      0 0x141e125 
0x00000001          0 0x565d25 0x19
(XEN) [2021-06-14 23:02:35] [0x2a55]      0 0x141e075 
0x00000001          0 0x565c75 0x19
(XEN) [2021-06-14 23:02:35] [0x2a56]      0 0x141e0f2 
0x00000001          0 0x565cf2 0x19
(XEN) [2021-06-14 23:02:35] [0x2a58]      0 0x141e0b6 
0x00000001          0 0x565cb6 0x19
(XEN) [2021-06-14 23:02:35] [0x2a5b]      0 0x141df6d 
0x00000001          0 0x565f6d 0x19
(XEN) [2021-06-14 23:02:35]       -------- active -------- -------- 
shared --------
(XEN) [2021-06-14 23:02:35] [ref] localdom mfn      pin localdom 
gmfn     flags
(XEN) [2021-06-14 23:02:35] grant-table for remote d3 (v1)
(XEN) [2021-06-14 23:02:35]   5 frames (64 max), 0 maptrack frames (1024 
max)
(XEN) [2021-06-14 23:02:35] [0x000]      0 0x2031d90 0x00000002          
0 0x0fefff 0x19
(XEN) [2021-06-14 23:02:35] [0x009]      0 0x13bf1c7 0x00000001          
0 0x07f1c7 0x19
(XEN) [2021-06-14 23:02:35] [0x00a]      0 0x142eddd 0x00000001          
0 0x186fdd 0x19
(XEN) [2021-06-14 23:02:35] [0x900]      0 0x143c5dd 0x00000001          
0 0x0e97dd 0x19
(XEN) [2021-06-14 23:02:35] [0x901]      0 0x143c5de 0x00000001          
0 0x0e97de 0x19
(XEN) [2021-06-14 23:02:35] [0x902]      0 0x13bfae7 0x00000001          
0 0x07fae7 0x19
(XEN) [2021-06-14 23:02:35] [0x903]      0 0x13bf0cf 0x00000001          
0 0x07f0cf 0x19
(XEN) [2021-06-14 23:02:35] [0x904]      0 0x13bfb37 0x00000001          
0 0x07fb37 0x19
(XEN) [2021-06-14 23:02:35] [0x905]      0 0x143c5e1 0x00000001          
0 0x0e97e1 0x19
(XEN) [2021-06-14 23:02:35] [0x906]      0 0x13bf0d1 0x00000001          
0 0x07f0d1 0x19
(XEN) [2021-06-14 23:02:35] [0x907]      0 0x13bfb26 0x00000001          
0 0x07fb26 0x19
(XEN) [2021-06-14 23:02:35] [0x94e]      0 0x143c401 0x00000001          
0 0x0e9601 0x19
(XEN) [2021-06-14 23:02:35] [0x974]      0 0x143c7db 0x00000001          
0 0x0e95db 0x19
(XEN) [2021-06-14 23:02:35] [0x979]      0 0x143c7d6 0x00000001          
0 0x0e95d6 0x19
(XEN) [2021-06-14 23:02:35] [0x984]      0 0x143c7ca 0x00000001          
0 0x0e95ca 0x19
(XEN) [2021-06-14 23:02:35] [0x98a]      0 0x143c7c4 0x00000001          
0 0x0e95c4 0x19
(XEN) [2021-06-14 23:02:35] [0x990]      0 0x143c7be 0x00000001          
0 0x0e95be 0x19
(XEN) [2021-06-14 23:02:35] [0x991]      0 0x143c7bd 0x00000001          
0 0x0e95bd 0x19
(XEN) [2021-06-14 23:02:35] [0x9b8]      0 0x143c796 0x00000001          
0 0x0e9596 0x19
(XEN) [2021-06-14 23:02:35] [0x9d7]      0 0x143c777 0x00000001          
0 0x0e9577 0x19
(XEN) [2021-06-14 23:02:35] [0x9dc]      0 0x143c772 0x00000001          
0 0x0e9572 0x19
(XEN) [2021-06-14 23:02:35]       -------- active -------- -------- 
shared --------
(XEN) [2021-06-14 23:02:35] [ref] localdom mfn      pin localdom 
gmfn     flags
(XEN) [2021-06-14 23:02:35] grant-table for remote d5 (v1)
(XEN) [2021-06-14 23:02:35]   10 frames (64 max), 0 maptrack frames 
(1024 max)
(XEN) [2021-06-14 23:02:35] [0x000]      0 0x15b0922 0x00000002          
0 0x0fefff 0x19
(XEN) [2021-06-14 23:02:35] [0x008]      0 0x1dd00e3 0x00000001          
0 0x5610e3 0x19
(XEN) [2021-06-14 23:02:35] [0x009]      0 0x1dd00e8 0x00000001          
0 0x5610e8 0x19
(XEN) [2021-06-14 23:02:35] [0x00a]      0 0x1de2ef0 0x00000001          
0 0x54e2f0 0x19
(XEN) [2021-06-14 23:02:35] [0x00b]      0 0x1de2ef5 0x00000001          
0 0x54e2f5 0x19
(XEN) [2021-06-14 23:02:35] [0x00c]      0 0x1de2f18 0x00000001          
0 0x54e318 0x19
(XEN) [2021-06-14 23:02:35] [0x00d]      0 0x1de2f1d 0x00000001          
0 0x54e31d 0x19
(XEN) [2021-06-14 23:02:35] [0x00e]      0 0x1de2f22 0x00000001          
0 0x54e322 0x19
(XEN) [2021-06-14 23:02:35] [0x00f]      0 0x1de2f28 0x00000001          
0 0x54e328 0x19
(XEN) [2021-06-14 23:02:35] [0x010]      0 0x1de4d82 0x00000001          
0 0x54c582 0x19
(XEN) [2021-06-14 23:02:35] [0x112]      0 0x1de4a92 0x00000001          
0 0x54c692 0x19
(XEN) [2021-06-14 23:02:35] [0x114]      0 0x1de5000 0x00000001          
0 0x54c000 0x19
(XEN) [2021-06-14 23:02:35] [0x116]      0 0x1de4cdc 0x00000001          
0 0x54c4dc 0x19
(XEN) [2021-06-14 23:02:35] [0x11b]      0 0x1de46df 0x00000001          
0 0x54cadf 0x19
(XEN) [2021-06-14 23:02:35] [0x11c]      0 0x1de47ee 0x00000001          
0 0x54cbee 0x19
(XEN) [2021-06-14 23:02:35] [0x11f]      0 0x1de4739 0x00000001          
0 0x54cb39 0x19
(XEN) [2021-06-14 23:02:35] [0x120]      0 0x1de5110 0x00000001          
0 0x54c110 0x19
(XEN) [2021-06-14 23:02:35] [0x121]      0 0x1de4e94 0x00000001          
0 0x54c294 0x19
(XEN) [2021-06-14 23:02:35] [0x123]      0 0x1de544e 0x00000001          
0 0x54bc4e 0x19
(XEN) [2021-06-14 23:02:35] [0x126]      0 0x1de51a2 0x00000001          
0 0x54c1a2 0x19
(XEN) [2021-06-14 23:02:35] [0x127]      0 0x1de5564 0x00000001          
0 0x54bd64 0x19
(XEN) [2021-06-14 23:02:35] [0x128]      0 0x1de5585 0x00000001          
0 0x54bd85 0x19
(XEN) [2021-06-14 23:02:35] [0x129]      0 0x1de47e0 0x00000001          
0 0x54cbe0 0x19
(XEN) [2021-06-14 23:02:35] [0x12a]      0 0x1de5519 0x00000001          
0 0x54bd19 0x19
(XEN) [2021-06-14 23:02:35] [0x12b]      0 0x1de4a0b 0x00000001          
0 0x54c60b 0x19
(XEN) [2021-06-14 23:02:35] [0x12c]      0 0x1de51c0 0x00000001          
0 0x54c1c0 0x19
(XEN) [2021-06-14 23:02:35] [0x131]      0 0x1de51a6 0x00000001          
0 0x54c1a6 0x19
(XEN) [2021-06-14 23:02:35] [0x132]      0 0x1de4cd5 0x00000001          
0 0x54c4d5 0x19
(XEN) [2021-06-14 23:02:35] [0x136]      0 0x1de4cbd 0x00000001          
0 0x54c4bd 0x19
(XEN) [2021-06-14 23:02:35] [0x137]      0 0x1de4dfa 0x00000001          
0 0x54c5fa 0x19
(XEN) [2021-06-14 23:02:35] [0x138]      0 0x1de465e 0x00000001          
0 0x54ca5e 0x19
(XEN) [2021-06-14 23:02:35] [0x139]      0 0x1de4f3c 0x00000001          
0 0x54c33c 0x19
(XEN) [2021-06-14 23:02:35] [0x13a]      0 0x1de4a15 0x00000001          
0 0x54c615 0x19
(XEN) [2021-06-14 23:02:35] [0x13c]      0 0x1de5195 0x00000001          
0 0x54c195 0x19
(XEN) [2021-06-14 23:02:35] [0x13e]      0 0x1de4c74 0x00000001          
0 0x54c474 0x19
(XEN) [2021-06-14 23:02:35] [0x140]      0 0x1de5145 0x00000001          
0 0x54c145 0x19
(XEN) [2021-06-14 23:02:35] [0x141]      0 0x1de4aab 0x00000001          
0 0x54c6ab 0x19
(XEN) [2021-06-14 23:02:35] [0x142]      0 0x1de4b51 0x00000001          
0 0x54c751 0x19
(XEN) [2021-06-14 23:02:35] [0x144]      0 0x1de5187 0x00000001          
0 0x54c187 0x19
(XEN) [2021-06-14 23:02:35] [0x146]      0 0x1de50c7 0x00000001          
0 0x54c0c7 0x19
(XEN) [2021-06-14 23:02:35] [0x147]      0 0x1de4abf 0x00000001          
0 0x54c6bf 0x19
(XEN) [2021-06-14 23:02:35] [0x148]      0 0x1de4d3c 0x00000001          
0 0x54c53c 0x19
(XEN) [2021-06-14 23:02:35] [0x14b]      0 0x1de50e4 0x00000001          
0 0x54c0e4 0x19
(XEN) [2021-06-14 23:02:35] [0x14c]      0 0x1de55a6 0x00000001          
0 0x54bda6 0x19
(XEN) [2021-06-14 23:02:35] [0x14d]      0 0x1de4b5b 0x00000001          
0 0x54c75b 0x19
(XEN) [2021-06-14 23:02:35] [0x14e]      0 0x1de4d01 0x00000001          
0 0x54c501 0x19
(XEN) [2021-06-14 23:02:35] [0x14f]      0 0x1de5445 0x00000001          
0 0x54bc45 0x19
(XEN) [2021-06-14 23:02:35] [0x150]      0 0x1de4dbc 0x00000001          
0 0x54c5bc 0x19
(XEN) [2021-06-14 23:02:35] [0x154]      0 0x1de4d8c 0x00000001          
0 0x54c58c 0x19
(XEN) [2021-06-14 23:02:35] [0x156]      0 0x1de5228 0x00000001          
0 0x54be28 0x19
(XEN) [2021-06-14 23:02:35] [0x157]      0 0x1de49fc 0x00000001          
0 0x54c9fc 0x19
(XEN) [2021-06-14 23:02:35] [0x158]      0 0x1de54df 0x00000001          
0 0x54bcdf 0x19
(XEN) [2021-06-14 23:02:35] [0x159]      0 0x1de4ea2 0x00000001          
0 0x54c2a2 0x19
(XEN) [2021-06-14 23:02:35] [0x15b]      0 0x1de4f07 0x00000001          
0 0x54c307 0x19
(XEN) [2021-06-14 23:02:35] [0x15c]      0 0x1de507b 0x00000001          
0 0x54c07b 0x19
(XEN) [2021-06-14 23:02:35] [0x15d]      0 0x1de51fb 0x00000001          
0 0x54c1fb 0x19
(XEN) [2021-06-14 23:02:35] [0x15e]      0 0x1de4c54 0x00000001          
0 0x54c454 0x19
(XEN) [2021-06-14 23:02:35] [0x161]      0 0x1de4fbc 0x00000001          
0 0x54c3bc 0x19
(XEN) [2021-06-14 23:02:35] [0x163]      0 0x1de5043 0x00000001          
0 0x54c043 0x19
(XEN) [2021-06-14 23:02:35] [0x167]      0 0x1de5208 0x00000001          
0 0x54be08 0x19
(XEN) [2021-06-14 23:02:35] [0x168]      0 0x1de4aad 0x00000001          
0 0x54c6ad 0x19
(XEN) [2021-06-14 23:02:35] [0x169]      0 0x1de5410 0x00000001          
0 0x54bc10 0x19
(XEN) [2021-06-14 23:02:35] [0x16c]      0 0x1de4bd1 0x00000001          
0 0x54c7d1 0x19
(XEN) [2021-06-14 23:02:36] [0x16d]      0 0x1de4f37 0x00000001          
0 0x54c337 0x19
(XEN) [2021-06-14 23:02:36] [0x173]      0 0x1de545b 0x00000001          
0 0x54bc5b 0x19
(XEN) [2021-06-14 23:02:36] [0x174]      0 0x1de4be1 0x00000001          
0 0x54c7e1 0x19
(XEN) [2021-06-14 23:02:36] [0x175]      0 0x1de4b03 0x00000001          
0 0x54c703 0x19
(XEN) [2021-06-14 23:02:36] [0x176]      0 0x1de4c52 0x00000001          
0 0x54c452 0x19
(XEN) [2021-06-14 23:02:36] [0x177]      0 0x1de50ee 0x00000001          
0 0x54c0ee 0x19
(XEN) [2021-06-14 23:02:36] [0x179]      0 0x1de51b9 0x00000001          
0 0x54c1b9 0x19
(XEN) [2021-06-14 23:02:36] [0x17b]      0 0x1de51c5 0x00000001          
0 0x54c1c5 0x19
(XEN) [2021-06-14 23:02:36] [0x17c]      0 0x1de4be8 0x00000001          
0 0x54c7e8 0x19
(XEN) [2021-06-14 23:02:36] [0x17d]      0 0x1de5059 0x00000001          
0 0x54c059 0x19
(XEN) [2021-06-14 23:02:36] [0x181]      0 0x1de4dad 0x00000001          
0 0x54c5ad 0x19
(XEN) [2021-06-14 23:02:36] [0x182]      0 0x1de4a8f 0x00000001          
0 0x54c68f 0x19
(XEN) [2021-06-14 23:02:36] [0x183]      0 0x1de5531 0x00000001          
0 0x54bd31 0x19
(XEN) [2021-06-14 23:02:36] [0x185]      0 0x1de4650 0x00000001          
0 0x54ca50 0x19
(XEN) [2021-06-14 23:02:36] [0x186]      0 0x1de5515 0x00000001          
0 0x54bd15 0x19
(XEN) [2021-06-14 23:02:36] [0x187]      0 0x1de51d1 0x00000001          
0 0x54c1d1 0x19
(XEN) [2021-06-14 23:02:36] [0x18a]      0 0x1de4cb3 0x00000001          
0 0x54c4b3 0x19
(XEN) [2021-06-14 23:02:36] [0x18b]      0 0x1de508f 0x00000001          
0 0x54c08f 0x19
(XEN) [2021-06-14 23:02:36] [0x18c]      0 0x1de55b8 0x00000001          
0 0x54bdb8 0x19
(XEN) [2021-06-14 23:02:36] [0x18d]      0 0x1de5598 0x00000001          
0 0x54bd98 0x19
(XEN) [2021-06-14 23:02:36] [0x193]      0 0x1de55c1 0x00000001          
0 0x54bdc1 0x19
(XEN) [2021-06-14 23:02:36] [0x194]      0 0x1de4ccc 0x00000001          
0 0x54c4cc 0x19
(XEN) [2021-06-14 23:02:36] [0x195]      0 0x1de5457 0x00000001          
0 0x54bc57 0x19
(XEN) [2021-06-14 23:02:36] [0x199]      0 0x1de4a11 0x00000001          
0 0x54c611 0x19
(XEN) [2021-06-14 23:02:36] [0x19b]      0 0x1de5087 0x00000001          
0 0x54c087 0x19
(XEN) [2021-06-14 23:02:36] [0x19c]      0 0x1de4efe 0x00000001          
0 0x54c2fe 0x19
(XEN) [2021-06-14 23:02:36] [0x19d]      0 0x1de5002 0x00000001          
0 0x54c002 0x19
(XEN) [2021-06-14 23:02:36] [0x19e]      0 0x1de4daf 0x00000001          
0 0x54c5af 0x19
(XEN) [2021-06-14 23:02:36] [0x1a0]      0 0x1de540c 0x00000001          
0 0x54bc0c 0x19
(XEN) [2021-06-14 23:02:36] [0x1a2]      0 0x1de4784 0x00000001          
0 0x54cb84 0x19
(XEN) [2021-06-14 23:02:36] [0x1a3]      0 0x1de5255 0x00000001          
0 0x54be55 0x19
(XEN) [2021-06-14 23:02:36] [0x1a6]      0 0x1de4be0 0x00000001          
0 0x54c7e0 0x19
(XEN) [2021-06-14 23:02:36] [0x1a7]      0 0x1de4f1a 0x00000001          
0 0x54c31a 0x19
(XEN) [2021-06-14 23:02:36] [0x1a8]      0 0x1de4624 0x00000001          
0 0x54ca24 0x19
(XEN) [2021-06-14 23:02:36] [0x1a9]      0 0x1de5573 0x00000001          
0 0x54bd73 0x19
(XEN) [2021-06-14 23:02:36] [0x1ac]      0 0x1de54f5 0x00000001          
0 0x54bcf5 0x19
(XEN) [2021-06-14 23:02:36] [0x1ae]      0 0x1de472a 0x00000001          
0 0x54cb2a 0x19
(XEN) [2021-06-14 23:02:36] [0x1af]      0 0x1de4756 0x00000001          
0 0x54cb56 0x19
(XEN) [2021-06-14 23:02:36] [0x1b0]      0 0x1de4b3a 0x00000001          
0 0x54c73a 0x19
(XEN) [2021-06-14 23:02:36] [0x1b1]      0 0x1de46e7 0x00000001          
0 0x54cae7 0x19
(XEN) [2021-06-14 23:02:36] [0x1b3]      0 0x1de5136 0x00000001          
0 0x54c136 0x19
(XEN) [2021-06-14 23:02:36] [0x1b6]      0 0x1de54dd 0x00000001          
0 0x54bcdd 0x19
(XEN) [2021-06-14 23:02:36] [0x1b7]      0 0x1de4609 0x00000001          
0 0x54ca09 0x19
(XEN) [2021-06-14 23:02:36] [0x1b8]      0 0x1de4f26 0x00000001          
0 0x54c326 0x19
(XEN) [2021-06-14 23:02:36] [0x1b9]      0 0x1de58db 0x00000001          
0 0x54b8db 0x19
(XEN) [2021-06-14 23:02:36] [0x1bd]      0 0x1de4bde 0x00000001          
0 0x54c7de 0x19
(XEN) [2021-06-14 23:02:36] [0x1c1]      0 0x1de4fa2 0x00000001          
0 0x54c3a2 0x19
(XEN) [2021-06-14 23:02:36] [0x1c2]      0 0x1de564e 0x00000001          
0 0x54ba4e 0x19
(XEN) [2021-06-14 23:02:36] [0x1c4]      0 0x1de474c 0x00000001          
0 0x54cb4c 0x19
(XEN) [2021-06-14 23:02:36] [0x1c8]      0 0x1de4798 0x00000001          
0 0x54cb98 0x19
(XEN) [2021-06-14 23:02:36] [0x1c9]      0 0x1de4681 0x00000001          
0 0x54ca81 0x19
(XEN) [2021-06-14 23:02:36] [0x1cb]      0 0x1de518e 0x00000001          
0 0x54c18e 0x19
(XEN) [2021-06-14 23:02:36] [0x1cc]      0 0x1de4a99 0x00000001          
0 0x54c699 0x19
(XEN) [2021-06-14 23:02:36] [0x1cd]      0 0x1de4679 0x00000001          
0 0x54ca79 0x19
(XEN) [2021-06-14 23:02:36] [0x1ce]      0 0x1de4703 0x00000001          
0 0x54cb03 0x19
(XEN) [2021-06-14 23:02:36] [0x1d1]      0 0x1de4a60 0x00000001          
0 0x54c660 0x19
(XEN) [2021-06-14 23:02:36] [0x1d2]      0 0x1de55e8 0x00000001          
0 0x54bde8 0x19
(XEN) [2021-06-14 23:02:36] [0x1d3]      0 0x1de470d 0x00000001          
0 0x54cb0d 0x19
(XEN) [2021-06-14 23:02:36] [0x1d4]      0 0x1de46fc 0x00000001          
0 0x54cafc 0x19
(XEN) [2021-06-14 23:02:36] [0x1d5]      0 0x1de4b16 0x00000001          
0 0x54c716 0x19
(XEN) [2021-06-14 23:02:36] [0x1d6]      0 0x1de4ee5 0x00000001          
0 0x54c2e5 0x19
(XEN) [2021-06-14 23:02:36] [0x1d8]      0 0x1de4dda 0x00000001          
0 0x54c5da 0x19
(XEN) [2021-06-14 23:02:36] [0x1da]      0 0x1de479f 0x00000001          
0 0x54cb9f 0x19
(XEN) [2021-06-14 23:02:36] [0x1db]      0 0x1de5146 0x00000001          
0 0x54c146 0x19
(XEN) [2021-06-14 23:02:36] [0x1de]      0 0x1de4dd7 0x00000001          
0 0x54c5d7 0x19
(XEN) [2021-06-14 23:02:36] [0x1df]      0 0x1de4a09 0x00000001          
0 0x54c609 0x19
(XEN) [2021-06-14 23:02:36] [0x1e0]      0 0x1de5005 0x00000001          
0 0x54c005 0x19
(XEN) [2021-06-14 23:02:36] [0x1e4]      0 0x1de4ffc 0x00000001          
0 0x54c3fc 0x19
(XEN) [2021-06-14 23:02:36] [0x1e5]      0 0x1de4788 0x00000001          
0 0x54cb88 0x19
(XEN) [2021-06-14 23:02:36] [0x1e7]      0 0x1de4e78 0x00000001          
0 0x54c278 0x19
(XEN) [2021-06-14 23:02:36] [0x1e8]      0 0x1de4c28 0x00000001          
0 0x54c428 0x19
(XEN) [2021-06-14 23:02:36] [0x1e9]      0 0x1de4a08 0x00000001          
0 0x54c608 0x19
(XEN) [2021-06-14 23:02:36] [0x1ea]      0 0x1de4db0 0x00000001          
0 0x54c5b0 0x19
(XEN) [2021-06-14 23:02:36] [0x1eb]      0 0x1de46a3 0x00000001          
0 0x54caa3 0x19
(XEN) [2021-06-14 23:02:36] [0x1ef]      0 0x1de502e 0x00000001          
0 0x54c02e 0x19
(XEN) [2021-06-14 23:02:36] [0x1f1]      0 0x1de4f0e 0x00000001          
0 0x54c30e 0x19
(XEN) [2021-06-14 23:02:36] [0x1f3]      0 0x1de51b1 0x00000001          
0 0x54c1b1 0x19
(XEN) [2021-06-14 23:02:36] [0x1f8]      0 0x1de5072 0x00000001          
0 0x54c072 0x19
(XEN) [2021-06-14 23:02:36] [0xd00]      0 0x1de5697 0x00000001          
0 0x54ba97 0x19
(XEN) [2021-06-14 23:02:36] [0xd01]      0 0x1de5698 0x00000001          
0 0x54ba98 0x19
(XEN) [2021-06-14 23:02:36] [0xd02]      0 0x1de569e 0x00000001          
0 0x54ba9e 0x19
(XEN) [2021-06-14 23:02:36] [0xd03]      0 0x1de569f 0x00000001          
0 0x54ba9f 0x19
(XEN) [2021-06-14 23:02:36] [0xd04]      0 0x1de56ac 0x00000001          
0 0x54baac 0x19
(XEN) [2021-06-14 23:02:36] [0xd05]      0 0x1de56ad 0x00000001          
0 0x54baad 0x19
(XEN) [2021-06-14 23:02:36] [0xd06]      0 0x1de56b8 0x00000001          
0 0x54bab8 0x19
(XEN) [2021-06-14 23:02:36] [0xd07]      0 0x1de56b9 0x00000001          
0 0x54bab9 0x19
(XEN) [2021-06-14 23:02:36] [0xd08]      0 0x1de56c4 0x00000001          
0 0x54bac4 0x19
(XEN) [2021-06-14 23:02:36] [0xd09]      0 0x1de6324 0x00000001          
0 0x54af24 0x19
(XEN) [2021-06-14 23:02:36] [0xd0a]      0 0x1de634d 0x00000001          
0 0x54af4d 0x19
(XEN) [2021-06-14 23:02:36] [0xd0b]      0 0x1de634e 0x00000001          
0 0x54af4e 0x19
(XEN) [2021-06-14 23:02:36] [0xd0f]      0 0x1de4d02 0x00000001          
0 0x54c502 0x19
(XEN) [2021-06-14 23:02:36] [0xd10]      0 0x1de46e3 0x00000001          
0 0x54cae3 0x19
(XEN) [2021-06-14 23:02:36] [0xd11]      0 0x1de4a50 0x00000001          
0 0x54c650 0x19
(XEN) [2021-06-14 23:02:36] [0xd12]      0 0x1de46c8 0x00000001          
0 0x54cac8 0x19
(XEN) [2021-06-14 23:02:36] [0xd13]      0 0x1de4b70 0x00000001          
0 0x54c770 0x19
(XEN) [2021-06-14 23:02:36] [0xd14]      0 0x1de4cad 0x00000001          
0 0x54c4ad 0x19
(XEN) [2021-06-14 23:02:36] [0xd15]      0 0x1de5594 0x00000001          
0 0x54bd94 0x19
(XEN) [2021-06-14 23:02:36] [0xd16]      0 0x1de464c 0x00000001          
0 0x54ca4c 0x19
(XEN) [2021-06-14 23:02:36] [0xd17]      0 0x1de4657 0x00000001          
0 0x54ca57 0x19
(XEN) [2021-06-14 23:02:36] [0xd18]      0 0x1de4e06 0x00000001          
0 0x54c206 0x19
(XEN) [2021-06-14 23:02:36] [0xd19]      0 0x1de51cf 0x00000001          
0 0x54c1cf 0x19
(XEN) [2021-06-14 23:02:36] [0xd1a]      0 0x1de4d1d 0x00000001          
0 0x54c51d 0x19
(XEN) [2021-06-14 23:02:36] [0xd1b]      0 0x1de552c 0x00000001          
0 0x54bd2c 0x19
(XEN) [2021-06-14 23:02:36] [0xd1c]      0 0x1de4fe4 0x00000001          
0 0x54c3e4 0x19
(XEN) [2021-06-14 23:02:36] [0xd1e]      0 0x1de46a5 0x00000001          
0 0x54caa5 0x19
(XEN) [2021-06-14 23:02:36] [0xd21]      0 0x1de4ddc 0x00000001          
0 0x54c5dc 0x19
(XEN) [2021-06-14 23:02:36] [0xd22]      0 0x1de4fc1 0x00000001          
0 0x54c3c1 0x19
(XEN) [2021-06-14 23:02:36] [0xd23]      0 0x1de471e 0x00000001          
0 0x54cb1e 0x19
(XEN) [2021-06-14 23:02:36] [0xd24]      0 0x1de50ed 0x00000001          
0 0x54c0ed 0x19
(XEN) [2021-06-14 23:02:36] [0xd26]      0 0x1de4e00 0x00000001          
0 0x54c200 0x19
(XEN) [2021-06-14 23:02:36] [0xd2b]      0 0x1de473a 0x00000001          
0 0x54cb3a 0x19
(XEN) [2021-06-14 23:02:36] [0xd2c]      0 0x1de4ade 0x00000001          
0 0x54c6de 0x19
(XEN) [2021-06-14 23:02:36] [0xd2d]      0 0x1de4cc9 0x00000001          
0 0x54c4c9 0x19
(XEN) [2021-06-14 23:02:36] [0xd2e]      0 0x1de4e4a 0x00000001          
0 0x54c24a 0x19
(XEN) [2021-06-14 23:02:36] [0xd30]      0 0x1de4ed9 0x00000001          
0 0x54c2d9 0x19
(XEN) [2021-06-14 23:02:36] [0xd33]      0 0x1de469e 0x00000001          
0 0x54ca9e 0x19
(XEN) [2021-06-14 23:02:36] [0xd34]      0 0x1de4baf 0x00000001          
0 0x54c7af 0x19
(XEN) [2021-06-14 23:02:36] [0xd35]      0 0x1de4713 0x00000001          
0 0x54cb13 0x19
(XEN) [2021-06-14 23:02:36] [0xd36]      0 0x1de4dd2 0x00000001          
0 0x54c5d2 0x19
(XEN) [2021-06-14 23:02:36] [0xd37]      0 0x1de4e8b 0x00000001          
0 0x54c28b 0x19
(XEN) [2021-06-14 23:02:36] [0xd38]      0 0x1de4dcc 0x00000001          
0 0x54c5cc 0x19
(XEN) [2021-06-14 23:02:36] [0xd39]      0 0x1de50c3 0x00000001          
0 0x54c0c3 0x19
(XEN) [2021-06-14 23:02:36] [0xd3a]      0 0x1de4ec4 0x00000001          
0 0x54c2c4 0x19
(XEN) [2021-06-14 23:02:36] [0xd3b]      0 0x1de4725 0x00000001          
0 0x54cb25 0x19
(XEN) [2021-06-14 23:02:36] [0xd3d]      0 0x1de548f 0x00000001          
0 0x54bc8f 0x19
(XEN) [2021-06-14 23:02:36] [0xd3e]      0 0x1de4654 0x00000001          
0 0x54ca54 0x19
(XEN) [2021-06-14 23:02:36] [0xd3f]      0 0x1de4cb4 0x00000001          
0 0x54c4b4 0x19
(XEN) [2021-06-14 23:02:36] [0xd40]      0 0x1de462d 0x00000001          
0 0x54ca2d 0x19
(XEN) [2021-06-14 23:02:36] [0xd41]      0 0x1de4ece 0x00000001          
0 0x54c2ce 0x19
(XEN) [2021-06-14 23:02:37] [0xd44]      0 0x1de4f2a 0x00000001          
0 0x54c32a 0x19
(XEN) [2021-06-14 23:02:37] [0xd45]      0 0x1de47f1 0x00000001          
0 0x54cbf1 0x19
(XEN) [2021-06-14 23:02:37] [0xd46]      0 0x1de4b4b 0x00000001          
0 0x54c74b 0x19
(XEN) [2021-06-14 23:02:37] [0xd47]      0 0x1de4c67 0x00000001          
0 0x54c467 0x19
(XEN) [2021-06-14 23:02:37] [0xd48]      0 0x1de5037 0x00000001          
0 0x54c037 0x19
(XEN) [2021-06-14 23:02:37] [0xd49]      0 0x1de4a77 0x00000001          
0 0x54c677 0x19
(XEN) [2021-06-14 23:02:37] [0xd4d]      0 0x1de5423 0x00000001          
0 0x54bc23 0x19
(XEN) [2021-06-14 23:02:37] [0xd4f]      0 0x1de5511 0x00000001          
0 0x54bd11 0x19
(XEN) [2021-06-14 23:02:37] [0xd51]      0 0x1de4dc8 0x00000001          
0 0x54c5c8 0x19
(XEN) [2021-06-14 23:02:37] [0xd52]      0 0x1de5189 0x00000001          
0 0x54c189 0x19
(XEN) [2021-06-14 23:02:37] [0xd53]      0 0x1de4a65 0x00000001          
0 0x54c665 0x19
(XEN) [2021-06-14 23:02:37] [0xd54]      0 0x1de5149 0x00000001          
0 0x54c149 0x19
(XEN) [2021-06-14 23:02:37] [0xd55]      0 0x1de4d80 0x00000001          
0 0x54c580 0x19
(XEN) [2021-06-14 23:02:37] [0xd57]      0 0x1de4a6d 0x00000001          
0 0x54c66d 0x19
(XEN) [2021-06-14 23:02:37] [0xd5a]      0 0x1de4771 0x00000001          
0 0x54cb71 0x19
(XEN) [2021-06-14 23:02:37] [0xd5b]      0 0x1de4f47 0x00000001          
0 0x54c347 0x19
(XEN) [2021-06-14 23:02:37] [0xd5c]      0 0x1de4e0b 0x00000001          
0 0x54c20b 0x19
(XEN) [2021-06-14 23:02:37] [0xd60]      0 0x1de4e0c 0x00000001          
0 0x54c20c 0x19
(XEN) [2021-06-14 23:02:37] [0xd62]      0 0x1de468f 0x00000001          
0 0x54ca8f 0x19
(XEN) [2021-06-14 23:02:37] [0xd64]      0 0x1de4f9e 0x00000001          
0 0x54c39e 0x19
(XEN) [2021-06-14 23:02:37] [0xd65]      0 0x1de54b6 0x00000001          
0 0x54bcb6 0x19
(XEN) [2021-06-14 23:02:37] [0xd67]      0 0x1de4bae 0x00000001          
0 0x54c7ae 0x19
(XEN) [2021-06-14 23:02:37] [0xd69]      0 0x1de47fc 0x00000001          
0 0x54cbfc 0x19
(XEN) [2021-06-14 23:02:37] [0xd6a]      0 0x1de54eb 0x00000001          
0 0x54bceb 0x19
(XEN) [2021-06-14 23:02:37] [0xd6c]      0 0x1de5468 0x00000001          
0 0x54bc68 0x19
(XEN) [2021-06-14 23:02:37] [0xd6d]      0 0x1de2f65 0x00000001          
0 0x54e365 0x19
(XEN) [2021-06-14 23:02:37] [0xd6f]      0 0x1de46a1 0x00000001          
0 0x54caa1 0x19
(XEN) [2021-06-14 23:02:37] [0xd70]      0 0x1de4ba1 0x00000001          
0 0x54c7a1 0x19
(XEN) [2021-06-14 23:02:37] [0xd72]      0 0x1de4e05 0x00000001          
0 0x54c205 0x19
(XEN) [2021-06-14 23:02:37] [0xd73]      0 0x1de4f46 0x00000001          
0 0x54c346 0x19
(XEN) [2021-06-14 23:02:37] [0xd74]      0 0x1de4a48 0x00000001          
0 0x54c648 0x19
(XEN) [2021-06-14 23:02:37] [0xd75]      0 0x1de4f15 0x00000001          
0 0x54c315 0x19
(XEN) [2021-06-14 23:02:37] [0xd76]      0 0x1de5553 0x00000001          
0 0x54bd53 0x19
(XEN) [2021-06-14 23:02:37] [0xd78]      0 0x1de5199 0x00000001          
0 0x54c199 0x19
(XEN) [2021-06-14 23:02:37] [0xd7a]      0 0x1de549c 0x00000001          
0 0x54bc9c 0x19
(XEN) [2021-06-14 23:02:37] [0xd7b]      0 0x1de46bb 0x00000001          
0 0x54cabb 0x19
(XEN) [2021-06-14 23:02:37] [0xd85]      0 0x1de4a4a 0x00000001          
0 0x54c64a 0x19
(XEN) [2021-06-14 23:02:37] [0xd86]      0 0x1de51a3 0x00000001          
0 0x54c1a3 0x19
(XEN) [2021-06-14 23:02:37] [0xd87]      0 0x1de4ca9 0x00000001          
0 0x54c4a9 0x19
(XEN) [2021-06-14 23:02:37] [0xd8d]      0 0x1de514f 0x00000001          
0 0x54c14f 0x19
(XEN) [2021-06-14 23:02:37] [0xd8e]      0 0x1de4e39 0x00000001          
0 0x54c239 0x19
(XEN) [2021-06-14 23:02:37] [0xd90]      0 0x1de4e4b 0x00000001          
0 0x54c24b 0x19
(XEN) [2021-06-14 23:02:37] [0xd95]      0 0x1de54f4 0x00000001          
0 0x54bcf4 0x19
(XEN) [2021-06-14 23:02:37] [0xd96]      0 0x1de4ae7 0x00000001          
0 0x54c6e7 0x19
(XEN) [2021-06-14 23:02:37] [0xd98]      0 0x1de517b 0x00000001          
0 0x54c17b 0x19
(XEN) [2021-06-14 23:02:37] [0xd99]      0 0x1de4e08 0x00000001          
0 0x54c208 0x19
(XEN) [2021-06-14 23:02:37] [0xd9a]      0 0x1de4eaa 0x00000001          
0 0x54c2aa 0x19
(XEN) [2021-06-14 23:02:37] [0xd9c]      0 0x1de4d13 0x00000001          
0 0x54c513 0x19
(XEN) [2021-06-14 23:02:37] [0xd9d]      0 0x1de4ab3 0x00000001          
0 0x54c6b3 0x19
(XEN) [2021-06-14 23:02:37] [0xd9e]      0 0x1de55ce 0x00000001          
0 0x54bdce 0x19
(XEN) [2021-06-14 23:02:37] [0xda0]      0 0x1de4ec8 0x00000001          
0 0x54c2c8 0x19
(XEN) [2021-06-14 23:02:37] [0xda1]      0 0x1de4656 0x00000001          
0 0x54ca56 0x19
(XEN) [2021-06-14 23:02:37] [0xda2]      0 0x1de5548 0x00000001          
0 0x54bd48 0x19
(XEN) [2021-06-14 23:02:37] [0xda3]      0 0x1de4666 0x00000001          
0 0x54ca66 0x19
(XEN) [2021-06-14 23:02:37] [0xda4]      0 0x1de555a 0x00000001          
0 0x54bd5a 0x19
(XEN) [2021-06-14 23:02:37] [0xda5]      0 0x1de4e96 0x00000001          
0 0x54c296 0x19
(XEN) [2021-06-14 23:02:37] [0xda8]      0 0x1de4fad 0x00000001          
0 0x54c3ad 0x19
(XEN) [2021-06-14 23:02:37] [0xda9]      0 0x1de54c0 0x00000001          
0 0x54bcc0 0x19
(XEN) [2021-06-14 23:02:37] [0xdaa]      0 0x1de51ad 0x00000001          
0 0x54c1ad 0x19
(XEN) [2021-06-14 23:02:37] [0xdab]      0 0x1de4c51 0x00000001          
0 0x54c451 0x19
(XEN) [2021-06-14 23:02:37] [0xdac]      0 0x1de5470 0x00000001          
0 0x54bc70 0x19
(XEN) [2021-06-14 23:02:37] [0xdad]      0 0x1de4778 0x00000001          
0 0x54cb78 0x19
(XEN) [2021-06-14 23:02:37] [0xdb2]      0 0x1de5040 0x00000001          
0 0x54c040 0x19
(XEN) [2021-06-14 23:02:37] [0xdb3]      0 0x1de4653 0x00000001          
0 0x54ca53 0x19
(XEN) [2021-06-14 23:02:37] [0xdb6]      0 0x1de513e 0x00000001          
0 0x54c13e 0x19
(XEN) [2021-06-14 23:02:37] [0xdb8]      0 0x1de4b9d 0x00000001          
0 0x54c79d 0x19
(XEN) [2021-06-14 23:02:37] [0xdb9]      0 0x1de4792 0x00000001          
0 0x54cb92 0x19
(XEN) [2021-06-14 23:02:37] [0xdba]      0 0x1de5082 0x00000001          
0 0x54c082 0x19
(XEN) [2021-06-14 23:02:37] [0xdbc]      0 0x1de47ac 0x00000001          
0 0x54cbac 0x19
(XEN) [2021-06-14 23:02:37] [0xdbf]      0 0x1de4eb0 0x00000001          
0 0x54c2b0 0x19
(XEN) [2021-06-14 23:02:37] [0xdc0]      0 0x1de467b 0x00000001          
0 0x54ca7b 0x19
(XEN) [2021-06-14 23:02:37] [0xdc1]      0 0x1de55ec 0x00000001          
0 0x54bdec 0x19
(XEN) [2021-06-14 23:02:37] [0xdc2]      0 0x1de4ffe 0x00000001          
0 0x54c3fe 0x19
(XEN) [2021-06-14 23:02:37] [0xdc3]      0 0x1de4c7e 0x00000001          
0 0x54c47e 0x19
(XEN) [2021-06-14 23:02:37] [0xdc5]      0 0x1de5092 0x00000001          
0 0x54c092 0x19
(XEN) [2021-06-14 23:02:37] [0xdc6]      0 0x1de4d3b 0x00000001          
0 0x54c53b 0x19
(XEN) [2021-06-14 23:02:37] [0xdc8]      0 0x1de4d31 0x00000001          
0 0x54c531 0x19
(XEN) [2021-06-14 23:02:37] [0xdc9]      0 0x1de54c9 0x00000001          
0 0x54bcc9 0x19
(XEN) [2021-06-14 23:02:37] [0xdca]      0 0x1de5583 0x00000001          
0 0x54bd83 0x19
(XEN) [2021-06-14 23:02:37] [0xdcc]      0 0x1de50c1 0x00000001          
0 0x54c0c1 0x19
(XEN) [2021-06-14 23:02:37] [0xdce]      0 0x1de4bbe 0x00000001          
0 0x54c7be 0x19
(XEN) [2021-06-14 23:02:37] [0xdd0]      0 0x1de4b14 0x00000001          
0 0x54c714 0x19
(XEN) [2021-06-14 23:02:37] [0xdd1]      0 0x1de554c 0x00000001          
0 0x54bd4c 0x19
(XEN) [2021-06-14 23:02:37] [0xdd2]      0 0x1de503e 0x00000001          
0 0x54c03e 0x19
(XEN) [2021-06-14 23:02:37] [0xdd3]      0 0x1de517e 0x00000001          
0 0x54c17e 0x19
(XEN) [2021-06-14 23:02:37] [0xdd5]      0 0x1de4ac4 0x00000001          
0 0x54c6c4 0x19
(XEN) [2021-06-14 23:02:37] [0xdd6]      0 0x1de4ad4 0x00000001          
0 0x54c6d4 0x19
(XEN) [2021-06-14 23:02:37] [0xdd8]      0 0x1de4d33 0x00000001          
0 0x54c533 0x19
(XEN) [2021-06-14 23:02:37] [0xdd9]      0 0x1de5514 0x00000001          
0 0x54bd14 0x19
(XEN) [2021-06-14 23:02:37] [0xdda]      0 0x1de5555 0x00000001          
0 0x54bd55 0x19
(XEN) [2021-06-14 23:02:37] [0xdde]      0 0x1de55f6 0x00000001          
0 0x54bdf6 0x19
(XEN) [2021-06-14 23:02:37] [0xde1]      0 0x1de46f7 0x00000001          
0 0x54caf7 0x19
(XEN) [2021-06-14 23:02:37] [0xde3]      0 0x1de4e2e 0x00000001          
0 0x54c22e 0x19
(XEN) [2021-06-14 23:02:37] [0xde6]      0 0x1de5513 0x00000001          
0 0x54bd13 0x19
(XEN) [2021-06-14 23:02:37] [0xde8]      0 0x1de522f 0x00000001          
0 0x54be2f 0x19
(XEN) [2021-06-14 23:02:37] [0xdeb]      0 0x1de50f9 0x00000001          
0 0x54c0f9 0x19
(XEN) [2021-06-14 23:02:37] [0xdec]      0 0x1de4ca4 0x00000001          
0 0x54c4a4 0x19
(XEN) [2021-06-14 23:02:37] [0xded]      0 0x1de46b3 0x00000001          
0 0x54cab3 0x19
(XEN) [2021-06-14 23:02:37] [0xdee]      0 0x1de470b 0x00000001          
0 0x54cb0b 0x19
(XEN) [2021-06-14 23:02:37] [0xdef]      0 0x1de4c2b 0x00000001          
0 0x54c42b 0x19
(XEN) [2021-06-14 23:02:37] [0xdf0]      0 0x1de4fb0 0x00000001          
0 0x54c3b0 0x19
(XEN) [2021-06-14 23:02:37] [0xdf2]      0 0x1de50ce 0x00000001          
0 0x54c0ce 0x19
(XEN) [2021-06-14 23:02:37] [0xdf3]      0 0x1de4ba9 0x00000001          
0 0x54c7a9 0x19
(XEN) [2021-06-14 23:02:37] [0xdf6]      0 0x1de46cd 0x00000001          
0 0x54cacd 0x19
(XEN) [2021-06-14 23:02:37] [0xdf7]      0 0x1de4e1f 0x00000001          
0 0x54c21f 0x19
(XEN) [2021-06-14 23:02:37] [0xdf9]      0 0x1de4c1a 0x00000001          
0 0x54c41a 0x19
(XEN) [2021-06-14 23:02:37] [0xdfd]      0 0x1de51a8 0x00000001          
0 0x54c1a8 0x19
(XEN) [2021-06-14 23:02:37] [0xdfe]      0 0x1de4d17 0x00000001          
0 0x54c517 0x19
(XEN) [2021-06-14 23:02:37] [0xe00]      0 0x1de5095 0x00000001          
0 0x54c095 0x19
(XEN) [2021-06-14 23:02:37] [0xe02]      0 0x1de4a89 0x00000001          
0 0x54c689 0x19
(XEN) [2021-06-14 23:02:37] [0xe03]      0 0x1de47e4 0x00000001          
0 0x54cbe4 0x19
(XEN) [2021-06-14 23:02:37] [0xe08]      0 0x1de4c0e 0x00000001          
0 0x54c40e 0x19
(XEN) [2021-06-14 23:02:37] [0xe09]      0 0x1de4f66 0x00000001          
0 0x54c366 0x19
(XEN) [2021-06-14 23:02:37] [0xe0a]      0 0x1de5230 0x00000001          
0 0x54be30 0x19
(XEN) [2021-06-14 23:02:37] [0xe0b]      0 0x1de4dfe 0x00000001          
0 0x54c5fe 0x19
(XEN) [2021-06-14 23:02:37] [0xe0f]      0 0x1de51c6 0x00000001          
0 0x54c1c6 0x19
(XEN) [2021-06-14 23:02:37] [0xe11]      0 0x1de501b 0x00000001          
0 0x54c01b 0x19
(XEN) [2021-06-14 23:02:37] [0xe12]      0 0x1de46a2 0x00000001          
0 0x54caa2 0x19
(XEN) [2021-06-14 23:02:37] [0xe14]      0 0x1de4d9f 0x00000001          
0 0x54c59f 0x19
(XEN) [2021-06-14 23:02:37] [0xe1a]      0 0x1de463b 0x00000001          
0 0x54ca3b 0x19
(XEN) [2021-06-14 23:02:37] [0xe1c]      0 0x1de4ec3 0x00000001          
0 0x54c2c3 0x19
(XEN) [2021-06-14 23:02:37] [0xe1f]      0 0x1de4d71 0x00000001          
0 0x54c571 0x19
(XEN) [2021-06-14 23:02:37] [0xe21]      0 0x1de463a 0x00000001          
0 0x54ca3a 0x19
(XEN) [2021-06-14 23:02:37] [0xe23]      0 0x1de472f 0x00000001          
0 0x54cb2f 0x19
(XEN) [2021-06-14 23:02:37] [0xe25]      0 0x1de46ea 0x00000001          
0 0x54caea 0x19
(XEN) [2021-06-14 23:02:37] [0xe26]      0 0x1de47ed 0x00000001          
0 0x54cbed 0x19
(XEN) [2021-06-14 23:02:37] [0xe27]      0 0x1de4aba 0x00000001          
0 0x54c6ba 0x19
(XEN) [2021-06-14 23:02:37] [0xe2a]      0 0x1de5172 0x00000001          
0 0x54c172 0x19
(XEN) [2021-06-14 23:02:38] [0xe2b]      0 0x1de5093 0x00000001          
0 0x54c093 0x19
(XEN) [2021-06-14 23:02:38] [0xe2d]      0 0x1de4c0d 0x00000001          
0 0x54c40d 0x19
(XEN) [2021-06-14 23:02:38] [0xe2e]      0 0x1de47d1 0x00000001          
0 0x54cbd1 0x19
(XEN) [2021-06-14 23:02:38] [0xe2f]      0 0x1de55e2 0x00000001          
0 0x54bde2 0x19
(XEN) [2021-06-14 23:02:38] [0xe30]      0 0x1de46b9 0x00000001          
0 0x54cab9 0x19
(XEN) [2021-06-14 23:02:38] [0xe33]      0 0x1de4dca 0x00000001          
0 0x54c5ca 0x19
(XEN) [2021-06-14 23:02:38] [0xe35]      0 0x1de50d0 0x00000001          
0 0x54c0d0 0x19
(XEN) [2021-06-14 23:02:38] [0xe36]      0 0x1de51a5 0x00000001          
0 0x54c1a5 0x19
(XEN) [2021-06-14 23:02:38] [0xe37]      0 0x1de461d 0x00000001          
0 0x54ca1d 0x19
(XEN) [2021-06-14 23:02:38] [0xe38]      0 0x1de465c 0x00000001          
0 0x54ca5c 0x19
(XEN) [2021-06-14 23:02:38] [0xe39]      0 0x1de4d04 0x00000001          
0 0x54c504 0x19
(XEN) [2021-06-14 23:02:38] [0xe3a]      0 0x1de471b 0x00000001          
0 0x54cb1b 0x19
(XEN) [2021-06-14 23:02:38] [0xe3b]      0 0x1de4a31 0x00000001          
0 0x54c631 0x19
(XEN) [2021-06-14 23:02:38] [0xe3c]      0 0x1de4bd5 0x00000001          
0 0x54c7d5 0x19
(XEN) [2021-06-14 23:02:38] [0xe3d]      0 0x1de46bc 0x00000001          
0 0x54cabc 0x19
(XEN) [2021-06-14 23:02:38] [0xe3e]      0 0x1de49fa 0x00000001          
0 0x54c9fa 0x19
(XEN) [2021-06-14 23:02:38] [0xe3f]      0 0x1de5550 0x00000001          
0 0x54bd50 0x19
(XEN) [2021-06-14 23:02:38] [0xe41]      0 0x1de4a7b 0x00000001          
0 0x54c67b 0x19
(XEN) [2021-06-14 23:02:38] [0xe44]      0 0x1de4b8e 0x00000001          
0 0x54c78e 0x19
(XEN) [2021-06-14 23:02:38] [0xe45]      0 0x1de55d7 0x00000001          
0 0x54bdd7 0x19
(XEN) [2021-06-14 23:02:38] [0xe46]      0 0x1de55b0 0x00000001          
0 0x54bdb0 0x19
(XEN) [2021-06-14 23:02:38] [0xe47]      0 0x1de551f 0x00000001          
0 0x54bd1f 0x19
(XEN) [2021-06-14 23:02:38] [0xe48]      0 0x1de50c4 0x00000001          
0 0x54c0c4 0x19
(XEN) [2021-06-14 23:02:38] [0xe49]      0 0x1de55c4 0x00000001          
0 0x54bdc4 0x19
(XEN) [2021-06-14 23:02:38] [0xe4a]      0 0x1de4ca2 0x00000001          
0 0x54c4a2 0x19
(XEN) [2021-06-14 23:02:38] [0xe4c]      0 0x1de4c7d 0x00000001          
0 0x54c47d 0x19
(XEN) [2021-06-14 23:02:38] [0xe4f]      0 0x1de501f 0x00000001          
0 0x54c01f 0x19
(XEN) [2021-06-14 23:02:38] [0xe51]      0 0x1de4aa0 0x00000001          
0 0x54c6a0 0x19
(XEN) [2021-06-14 23:02:38] [0xe53]      0 0x1de4e2f 0x00000001          
0 0x54c22f 0x19
(XEN) [2021-06-14 23:02:38] [0xe57]      0 0x1de550c 0x00000001          
0 0x54bd0c 0x19
(XEN) [2021-06-14 23:02:38] [0xe58]      0 0x1de5140 0x00000001          
0 0x54c140 0x19
(XEN) [2021-06-14 23:02:38] [0xe5b]      0 0x1de4b0e 0x00000001          
0 0x54c70e 0x19
(XEN) [2021-06-14 23:02:38] [0xe5c]      0 0x1de5100 0x00000001          
0 0x54c100 0x19
(XEN) [2021-06-14 23:02:38] [0xe5d]      0 0x1de467e 0x00000001          
0 0x54ca7e 0x19
(XEN) [2021-06-14 23:02:38] [0xe60]      0 0x1de4f53 0x00000001          
0 0x54c353 0x19
(XEN) [2021-06-14 23:02:38] [0xe63]      0 0x1de559b 0x00000001          
0 0x54bd9b 0x19
(XEN) [2021-06-14 23:02:38] [0xe66]      0 0x1de4fb2 0x00000001          
0 0x54c3b2 0x19
(XEN) [2021-06-14 23:02:38] [0xe67]      0 0x1de4d5e 0x00000001          
0 0x54c55e 0x19
(XEN) [2021-06-14 23:02:38] [0xe69]      0 0x1de51e9 0x00000001          
0 0x54c1e9 0x19
(XEN) [2021-06-14 23:02:38] [0xe6a]      0 0x1de5580 0x00000001          
0 0x54bd80 0x19
(XEN) [2021-06-14 23:02:38] [0xe6b]      0 0x1de4f2d 0x00000001          
0 0x54c32d 0x19
(XEN) [2021-06-14 23:02:38] [0xe6d]      0 0x1de4d3d 0x00000001          
0 0x54c53d 0x19
(XEN) [2021-06-14 23:02:38] [0xe6e]      0 0x1de4a54 0x00000001          
0 0x54c654 0x19
(XEN) [2021-06-14 23:02:38] [0xe6f]      0 0x1de4d52 0x00000001          
0 0x54c552 0x19
(XEN) [2021-06-14 23:02:38] [0xe70]      0 0x1de4b93 0x00000001          
0 0x54c793 0x19
(XEN) [2021-06-14 23:02:38] [0xe71]      0 0x1de2f6e 0x00000001          
0 0x54e36e 0x19
(XEN) [2021-06-14 23:02:38] [0xe73]      0 0x1de5561 0x00000001          
0 0x54bd61 0x19
(XEN) [2021-06-14 23:02:38] [0xe74]      0 0x1de5214 0x00000001          
0 0x54be14 0x19
(XEN) [2021-06-14 23:02:38] [0xe75]      0 0x1de4b67 0x00000001          
0 0x54c767 0x19
(XEN) [2021-06-14 23:02:38] [0xe76]      0 0x1de2f71 0x00000001          
0 0x54e371 0x19
(XEN) [2021-06-14 23:02:38] [0xe77]      0 0x1de2f56 0x00000001          
0 0x54e356 0x19
(XEN) [2021-06-14 23:02:38] [0xe78]      0 0x1de5442 0x00000001          
0 0x54bc42 0x19
(XEN) [2021-06-14 23:02:38] [0xe79]      0 0x1de4f98 0x00000001          
0 0x54c398 0x19
(XEN) [2021-06-14 23:02:38] [0xe7c]      0 0x1de4d7b 0x00000001          
0 0x54c57b 0x19
(XEN) [2021-06-14 23:02:38] [0xe7f]      0 0x1de5522 0x00000001          
0 0x54bd22 0x19
(XEN) [2021-06-14 23:02:38] [0xe82]      0 0x1de4a3d 0x00000001          
0 0x54c63d 0x19
(XEN) [2021-06-14 23:02:38] [0xe83]      0 0x1de557c 0x00000001          
0 0x54bd7c 0x19
(XEN) [2021-06-14 23:02:38] [0xe88]      0 0x1de4bc0 0x00000001          
0 0x54c7c0 0x19
(XEN) [2021-06-14 23:02:38] [0xe89]      0 0x1de4f10 0x00000001          
0 0x54c310 0x19
(XEN) [2021-06-14 23:02:38] [0xe8a]      0 0x1de4a46 0x00000001          
0 0x54c646 0x19
(XEN) [2021-06-14 23:02:38] [0xe8b]      0 0x1de4648 0x00000001          
0 0x54ca48 0x19
(XEN) [2021-06-14 23:02:38] [0xe8d]      0 0x1de4d3e 0x00000001          
0 0x54c53e 0x19
(XEN) [2021-06-14 23:02:38] [0xe8f]      0 0x1de4ee7 0x00000001          
0 0x54c2e7 0x19
(XEN) [2021-06-14 23:02:38] [0xe90]      0 0x1de462f 0x00000001          
0 0x54ca2f 0x19
(XEN) [2021-06-14 23:02:38] [0xe91]      0 0x1de4d88 0x00000001          
0 0x54c588 0x19
(XEN) [2021-06-14 23:02:38] [0xe93]      0 0x1de501a 0x00000001          
0 0x54c01a 0x19
(XEN) [2021-06-14 23:02:38] [0xe97]      0 0x1de4726 0x00000001          
0 0x54cb26 0x19
(XEN) [2021-06-14 23:02:38] [0xe98]      0 0x1de5216 0x00000001          
0 0x54be16 0x19
(XEN) [2021-06-14 23:02:38] [0xe99]      0 0x1de519e 0x00000001          
0 0x54c19e 0x19
(XEN) [2021-06-14 23:02:38] [0xe9d]      0 0x1de4698 0x00000001          
0 0x54ca98 0x19
(XEN) [2021-06-14 23:02:38] [0xe9e]      0 0x1de510b 0x00000001          
0 0x54c10b 0x19
(XEN) [2021-06-14 23:02:38] [0xea1]      0 0x1de4c17 0x00000001          
0 0x54c417 0x19
(XEN) [2021-06-14 23:02:38] [0xea3]      0 0x1de4f97 0x00000001          
0 0x54c397 0x19
(XEN) [2021-06-14 23:02:38] [0xea4]      0 0x1de4c6d 0x00000001          
0 0x54c46d 0x19
(XEN) [2021-06-14 23:02:38] [0xea7]      0 0x1de548c 0x00000001          
0 0x54bc8c 0x19
(XEN) [2021-06-14 23:02:38] [0xea8]      0 0x1de4b7e 0x00000001          
0 0x54c77e 0x19
(XEN) [2021-06-14 23:02:38] [0xea9]      0 0x1de5581 0x00000001          
0 0x54bd81 0x19
(XEN) [2021-06-14 23:02:38] [0xead]      0 0x1de4773 0x00000001          
0 0x54cb73 0x19
(XEN) [2021-06-14 23:02:38] [0xeb0]      0 0x1de4794 0x00000001          
0 0x54cb94 0x19
(XEN) [2021-06-14 23:02:38] [0xeb1]      0 0x1de4f9f 0x00000001          
0 0x54c39f 0x19
(XEN) [2021-06-14 23:02:38] [0xeb3]      0 0x1de51ac 0x00000001          
0 0x54c1ac 0x19
(XEN) [2021-06-14 23:02:38] [0xeb4]      0 0x1de4aa6 0x00000001          
0 0x54c6a6 0x19
(XEN) [2021-06-14 23:02:38] [0xeb5]      0 0x1de46ee 0x00000001          
0 0x54caee 0x19
(XEN) [2021-06-14 23:02:38] [0xeb7]      0 0x1de500c 0x00000001          
0 0x54c00c 0x19
(XEN) [2021-06-14 23:02:38] [0xeba]      0 0x1de4fb6 0x00000001          
0 0x54c3b6 0x19
(XEN) [2021-06-14 23:02:38] [0xebc]      0 0x1de4750 0x00000001          
0 0x54cb50 0x19
(XEN) [2021-06-14 23:02:38] [0xebe]      0 0x1de4c36 0x00000001          
0 0x54c436 0x19
(XEN) [2021-06-14 23:02:38] [0xec0]      0 0x1de55e3 0x00000001          
0 0x54bde3 0x19
(XEN) [2021-06-14 23:02:38] [0xec1]      0 0x1de5463 0x00000001          
0 0x54bc63 0x19
(XEN) [2021-06-14 23:02:38] [0xec3]      0 0x1de5174 0x00000001          
0 0x54c174 0x19
(XEN) [2021-06-14 23:02:38] [0xec5]      0 0x1de472c 0x00000001          
0 0x54cb2c 0x19
(XEN) [2021-06-14 23:02:38] [0xec7]      0 0x1de5231 0x00000001          
0 0x54be31 0x19
(XEN) [2021-06-14 23:02:38] [0xec8]      0 0x1de2f68 0x00000001          
0 0x54e368 0x19
(XEN) [2021-06-14 23:02:38] [0xecb]      0 0x1de4a9b 0x00000001          
0 0x54c69b 0x19
(XEN) [2021-06-14 23:02:38] [0xece]      0 0x1de51a0 0x00000001          
0 0x54c1a0 0x19
(XEN) [2021-06-14 23:02:38] [0xed2]      0 0x1de4f09 0x00000001          
0 0x54c309 0x19
(XEN) [2021-06-14 23:02:38] [0xed3]      0 0x1de54a0 0x00000001          
0 0x54bca0 0x19
(XEN) [2021-06-14 23:02:38] [0xed4]      0 0x1de507c 0x00000001          
0 0x54c07c 0x19
(XEN) [2021-06-14 23:02:38] [0xed5]      0 0x1de4d4f 0x00000001          
0 0x54c54f 0x19
(XEN) [2021-06-14 23:02:38] [0xed6]      0 0x1de51f1 0x00000001          
0 0x54c1f1 0x19
(XEN) [2021-06-14 23:02:38] [0xed7]      0 0x1de5103 0x00000001          
0 0x54c103 0x19
(XEN) [2021-06-14 23:02:38] [0xed9]      0 0x1de4ea6 0x00000001          
0 0x54c2a6 0x19
(XEN) [2021-06-14 23:02:38] [0xedb]      0 0x1de4751 0x00000001          
0 0x54cb51 0x19
(XEN) [2021-06-14 23:02:38] [0xede]      0 0x1de5052 0x00000001          
0 0x54c052 0x19
(XEN) [2021-06-14 23:02:38] [0xedf]      0 0x1de51cc 0x00000001          
0 0x54c1cc 0x19
(XEN) [2021-06-14 23:02:38] [0xee2]      0 0x1de4a5e 0x00000001          
0 0x54c65e 0x19
(XEN) [2021-06-14 23:02:38] [0xee3]      0 0x1de4aaa 0x00000001          
0 0x54c6aa 0x19
(XEN) [2021-06-14 23:02:38] [0xee4]      0 0x1de520b 0x00000001          
0 0x54be0b 0x19
(XEN) [2021-06-14 23:02:38] [0xee5]      0 0x1de4c5d 0x00000001          
0 0x54c45d 0x19
(XEN) [2021-06-14 23:02:38] [0xee7]      0 0x1de4de3 0x00000001          
0 0x54c5e3 0x19
(XEN) [2021-06-14 23:02:38] [0xeeb]      0 0x1de4ae6 0x00000001          
0 0x54c6e6 0x19
(XEN) [2021-06-14 23:02:38] [0xeef]      0 0x1de5472 0x00000001          
0 0x54bc72 0x19
(XEN) [2021-06-14 23:02:38] [0xef2]      0 0x1de4ad0 0x00000001          
0 0x54c6d0 0x19
(XEN) [2021-06-14 23:02:38] [0xef4]      0 0x1de518c 0x00000001          
0 0x54c18c 0x19
(XEN) [2021-06-14 23:02:38] [0xef5]      0 0x1de5588 0x00000001          
0 0x54bd88 0x19
(XEN) [2021-06-14 23:02:38] [0xef9]      0 0x1de4c20 0x00000001          
0 0x54c420 0x19
(XEN) [2021-06-14 23:02:38] [0xefa]      0 0x1de2f5c 0x00000001          
0 0x54e35c 0x19
(XEN) [2021-06-14 23:02:38] [0xefd]      0 0x1de475b 0x00000001          
0 0x54cb5b 0x19
(XEN) [2021-06-14 23:02:38] [0xeff]      0 0x1de4cc5 0x00000001          
0 0x54c4c5 0x19
(XEN) [2021-06-14 23:02:38] [0xf00]      0 0x1de470e 0x00000001          
0 0x54cb0e 0x19
(XEN) [2021-06-14 23:02:38] [0xf01]      0 0x1de549a 0x00000001          
0 0x54bc9a 0x19
(XEN) [2021-06-14 23:02:38] [0xf02]      0 0x1de4ea3 0x00000001          
0 0x54c2a3 0x19
(XEN) [2021-06-14 23:02:38] [0xf03]      0 0x1de4c07 0x00000001          
0 0x54c407 0x19
(XEN) [2021-06-14 23:02:38] [0xf06]      0 0x1de47c0 0x00000001          
0 0x54cbc0 0x19
(XEN) [2021-06-14 23:02:38] [0xf07]      0 0x1de4be9 0x00000001          
0 0x54c7e9 0x19
(XEN) [2021-06-14 23:02:38] [0xf0a]      0 0x1de478b 0x00000001          
0 0x54cb8b 0x19
(XEN) [2021-06-14 23:02:38] [0xf0b]      0 0x1de4a79 0x00000001          
0 0x54c679 0x19
(XEN) [2021-06-14 23:02:38] [0xf0f]      0 0x1de518d 0x00000001          
0 0x54c18d 0x19
(XEN) [2021-06-14 23:02:39] [0xf12]      0 0x1de4b3e 0x00000001          
0 0x54c73e 0x19
(XEN) [2021-06-14 23:02:39] [0xf1a]      0 0x1de4660 0x00000001          
0 0x54ca60 0x19
(XEN) [2021-06-14 23:02:39] [0xf1b]      0 0x1de55ae 0x00000001          
0 0x54bdae 0x19
(XEN) [2021-06-14 23:02:39] [0xf1c]      0 0x1de4e30 0x00000001          
0 0x54c230 0x19
(XEN) [2021-06-14 23:02:39] [0xf1d]      0 0x1de4acd 0x00000001          
0 0x54c6cd 0x19
(XEN) [2021-06-14 23:02:39] [0xf21]      0 0x1de5218 0x00000001          
0 0x54be18 0x19
(XEN) [2021-06-14 23:02:39] [0xf23]      0 0x1de47ba 0x00000001          
0 0x54cbba 0x19
(XEN) [2021-06-14 23:02:39] [0xf26]      0 0x1de4f0a 0x00000001          
0 0x54c30a 0x19
(XEN) [2021-06-14 23:02:39] [0xf27]      0 0x1de5482 0x00000001          
0 0x54bc82 0x19
(XEN) [2021-06-14 23:02:39] [0xf28]      0 0x1de54ee 0x00000001          
0 0x54bcee 0x19
(XEN) [2021-06-14 23:02:39] [0xf29]      0 0x1de4c44 0x00000001          
0 0x54c444 0x19
(XEN) [2021-06-14 23:02:39] [0xf2b]      0 0x1de46ba 0x00000001          
0 0x54caba 0x19
(XEN) [2021-06-14 23:02:39] [0xf2d]      0 0x1de4be4 0x00000001          
0 0x54c7e4 0x19
(XEN) [2021-06-14 23:02:39] [0xf2e]      0 0x1de4ef1 0x00000001          
0 0x54c2f1 0x19
(XEN) [2021-06-14 23:02:39] [0xf30]      0 0x1de4bb5 0x00000001          
0 0x54c7b5 0x19
(XEN) [2021-06-14 23:02:39] [0xf33]      0 0x1de4a06 0x00000001          
0 0x54c606 0x19
(XEN) [2021-06-14 23:02:39] [0xf34]      0 0x1de5070 0x00000001          
0 0x54c070 0x19
(XEN) [2021-06-14 23:02:39] [0xf36]      0 0x1de47fa 0x00000001          
0 0x54cbfa 0x19
(XEN) [2021-06-14 23:02:39] [0xf37]      0 0x1de4fe6 0x00000001          
0 0x54c3e6 0x19
(XEN) [2021-06-14 23:02:39] [0xf38]      0 0x1de4d55 0x00000001          
0 0x54c555 0x19
(XEN) [2021-06-14 23:02:39] [0xf3c]      0 0x1de517d 0x00000001          
0 0x54c17d 0x19
(XEN) [2021-06-14 23:02:39] [0xf3f]      0 0x1de4f36 0x00000001          
0 0x54c336 0x19
(XEN) [2021-06-14 23:02:39] [0xf40]      0 0x1de4f0f 0x00000001          
0 0x54c30f 0x19
(XEN) [2021-06-14 23:02:39] [0xf43]      0 0x1de4e18 0x00000001          
0 0x54c218 0x19
(XEN) [2021-06-14 23:02:39] [0xf44]      0 0x1de5139 0x00000001          
0 0x54c139 0x19
(XEN) [2021-06-14 23:02:39] [0xf45]      0 0x1de46d9 0x00000001          
0 0x54cad9 0x19
(XEN) [2021-06-14 23:02:39] [0xf46]      0 0x1de515f 0x00000001          
0 0x54c15f 0x19
(XEN) [2021-06-14 23:02:39] [0xf47]      0 0x1de4711 0x00000001          
0 0x54cb11 0x19
(XEN) [2021-06-14 23:02:39] [0xf49]      0 0x1de5469 0x00000001          
0 0x54bc69 0x19
(XEN) [2021-06-14 23:02:39] [0xf4a]      0 0x1de47b2 0x00000001          
0 0x54cbb2 0x19
(XEN) [2021-06-14 23:02:39] [0xf4b]      0 0x1de5494 0x00000001          
0 0x54bc94 0x19
(XEN) [2021-06-14 23:02:39] [0xf4e]      0 0x1de4d37 0x00000001          
0 0x54c537 0x19
(XEN) [2021-06-14 23:02:39] [0xf51]      0 0x1de4799 0x00000001          
0 0x54cb99 0x19
(XEN) [2021-06-14 23:02:39] [0xf52]      0 0x1de4e63 0x00000001          
0 0x54c263 0x19
(XEN) [2021-06-14 23:02:39] [0xf54]      0 0x1de5593 0x00000001          
0 0x54bd93 0x19
(XEN) [2021-06-14 23:02:39] [0xf57]      0 0x1de50ec 0x00000001          
0 0x54c0ec 0x19
(XEN) [2021-06-14 23:02:39] [0xf5b]      0 0x1de47c7 0x00000001          
0 0x54cbc7 0x19
(XEN) [2021-06-14 23:02:39] [0xf5c]      0 0x1de4da5 0x00000001          
0 0x54c5a5 0x19
(XEN) [2021-06-14 23:02:39] [0xf5e]      0 0x1de55a4 0x00000001          
0 0x54bda4 0x19
(XEN) [2021-06-14 23:02:39] [0xf5f]      0 0x1de50a5 0x00000001          
0 0x54c0a5 0x19
(XEN) [2021-06-14 23:02:39] [0xf60]      0 0x1de4daa 0x00000001          
0 0x54c5aa 0x19
(XEN) [2021-06-14 23:02:39] [0xf61]      0 0x1de4c7b 0x00000001          
0 0x54c47b 0x19
(XEN) [2021-06-14 23:02:39] [0xf64]      0 0x1de5008 0x00000001          
0 0x54c008 0x19
(XEN) [2021-06-14 23:02:39] [0xf66]      0 0x1de46d3 0x00000001          
0 0x54cad3 0x19
(XEN) [2021-06-14 23:02:39] [0xf67]      0 0x1de5120 0x00000001          
0 0x54c120 0x19
(XEN) [2021-06-14 23:02:39] [0xf69]      0 0x1de4e37 0x00000001          
0 0x54c237 0x19
(XEN) [2021-06-14 23:02:39] [0xf6c]      0 0x1de556c 0x00000001          
0 0x54bd6c 0x19
(XEN) [2021-06-14 23:02:39] [0xf6e]      0 0x1de4a83 0x00000001          
0 0x54c683 0x19
(XEN) [2021-06-14 23:02:39] [0xf6f]      0 0x1de46fa 0x00000001          
0 0x54cafa 0x19
(XEN) [2021-06-14 23:02:39] [0xf70]      0 0x1de5250 0x00000001          
0 0x54be50 0x19
(XEN) [2021-06-14 23:02:39] [0xf72]      0 0x1de4e64 0x00000001          
0 0x54c264 0x19
(XEN) [2021-06-14 23:02:39] [0xf73]      0 0x1de5426 0x00000001          
0 0x54bc26 0x19
(XEN) [2021-06-14 23:02:39] [0xf74]      0 0x1de46b5 0x00000001          
0 0x54cab5 0x19
(XEN) [2021-06-14 23:02:39] [0xf77]      0 0x1de4a96 0x00000001          
0 0x54c696 0x19
(XEN) [2021-06-14 23:02:39] [0xf79]      0 0x1de4c47 0x00000001          
0 0x54c447 0x19
(XEN) [2021-06-14 23:02:39] [0xf7b]      0 0x1de4c3c 0x00000001          
0 0x54c43c 0x19
(XEN) [2021-06-14 23:02:39] [0xf7d]      0 0x1de4b11 0x00000001          
0 0x54c711 0x19
(XEN) [2021-06-14 23:02:39] [0xf7e]      0 0x1de544a 0x00000001          
0 0x54bc4a 0x19
(XEN) [2021-06-14 23:02:39] [0xf83]      0 0x1de4ee0 0x00000001          
0 0x54c2e0 0x19
(XEN) [2021-06-14 23:02:39] [0xf84]      0 0x1de54cc 0x00000001          
0 0x54bccc 0x19
(XEN) [2021-06-14 23:02:39] [0xf85]      0 0x1de4c9b 0x00000001          
0 0x54c49b 0x19
(XEN) [2021-06-14 23:02:39] [0xf87]      0 0x1de4736 0x00000001          
0 0x54cb36 0x19
(XEN) [2021-06-14 23:02:39] [0xf8b]      0 0x1de5079 0x00000001          
0 0x54c079 0x19
(XEN) [2021-06-14 23:02:39] [0xf8c]      0 0x1de54b9 0x00000001          
0 0x54bcb9 0x19
(XEN) [2021-06-14 23:02:39] [0xf8d]      0 0x1de5023 0x00000001          
0 0x54c023 0x19
(XEN) [2021-06-14 23:02:39] [0xf90]      0 0x1de521d 0x00000001          
0 0x54be1d 0x19
(XEN) [2021-06-14 23:02:39] [0xf91]      0 0x1de4bac 0x00000001          
0 0x54c7ac 0x19
(XEN) [2021-06-14 23:02:39] [0xf94]      0 0x1de5116 0x00000001          
0 0x54c116 0x19
(XEN) [2021-06-14 23:02:39] [0xf95]      0 0x1de5179 0x00000001          
0 0x54c179 0x19
(XEN) [2021-06-14 23:02:39] [0xf96]      0 0x1de5527 0x00000001          
0 0x54bd27 0x19
(XEN) [2021-06-14 23:02:39] [0xf97]      0 0x1de5528 0x00000001          
0 0x54bd28 0x19
(XEN) [2021-06-14 23:02:39] [0xf99]      0 0x1de5422 0x00000001          
0 0x54bc22 0x19
(XEN) [2021-06-14 23:02:39] [0xf9a]      0 0x1de4622 0x00000001          
0 0x54ca22 0x19
(XEN) [2021-06-14 23:02:39] [0xf9d]      0 0x1de460d 0x00000001          
0 0x54ca0d 0x19
(XEN) [2021-06-14 23:02:39] [0xf9f]      0 0x1de5491 0x00000001          
0 0x54bc91 0x19
(XEN) [2021-06-14 23:02:39] [0xfa2]      0 0x1de5089 0x00000001          
0 0x54c089 0x19
(XEN) [2021-06-14 23:02:39] [0xfa3]      0 0x1de540a 0x00000001          
0 0x54bc0a 0x19
(XEN) [2021-06-14 23:02:39] [0xfa4]      0 0x1de4e87 0x00000001          
0 0x54c287 0x19
(XEN) [2021-06-14 23:02:39] [0xfa5]      0 0x1de470a 0x00000001          
0 0x54cb0a 0x19
(XEN) [2021-06-14 23:02:39] [0xfa6]      0 0x1de466b 0x00000001          
0 0x54ca6b 0x19
(XEN) [2021-06-14 23:02:39] [0xfaa]      0 0x1de4d97 0x00000001          
0 0x54c597 0x19
(XEN) [2021-06-14 23:02:39] [0xfae]      0 0x1de4d42 0x00000001          
0 0x54c542 0x19
(XEN) [2021-06-14 23:02:39] [0xfb0]      0 0x1de4ad1 0x00000001          
0 0x54c6d1 0x19
(XEN) [2021-06-14 23:02:39] [0xfb2]      0 0x1de463c 0x00000001          
0 0x54ca3c 0x19
(XEN) [2021-06-14 23:02:39] [0xfb4]      0 0x1de4c73 0x00000001          
0 0x54c473 0x19
(XEN) [2021-06-14 23:02:39] [0xfb5]      0 0x1de4a16 0x00000001          
0 0x54c616 0x19
(XEN) [2021-06-14 23:02:39] [0xfb6]      0 0x1de47e9 0x00000001          
0 0x54cbe9 0x19
(XEN) [2021-06-14 23:02:39] [0xfb7]      0 0x1de4fbe 0x00000001          
0 0x54c3be 0x19
(XEN) [2021-06-14 23:02:39] [0xfb8]      0 0x1de4ff1 0x00000001          
0 0x54c3f1 0x19
(XEN) [2021-06-14 23:02:39] [0xfb9]      0 0x1de4b90 0x00000001          
0 0x54c790 0x19
(XEN) [2021-06-14 23:02:39] [0xfbc]      0 0x1de4ce9 0x00000001          
0 0x54c4e9 0x19
(XEN) [2021-06-14 23:02:39] [0xfbd]      0 0x1de4f17 0x00000001          
0 0x54c317 0x19
(XEN) [2021-06-14 23:02:39] [0xfc1]      0 0x1de4f8f 0x00000001          
0 0x54c38f 0x19
(XEN) [2021-06-14 23:02:39] [0xfc2]      0 0x1de4ce5 0x00000001          
0 0x54c4e5 0x19
(XEN) [2021-06-14 23:02:39] [0xfc3]      0 0x1de4eb2 0x00000001          
0 0x54c2b2 0x19
(XEN) [2021-06-14 23:02:39] [0xfc4]      0 0x1de5194 0x00000001          
0 0x54c194 0x19
(XEN) [2021-06-14 23:02:39] [0xfc9]      0 0x1de512c 0x00000001          
0 0x54c12c 0x19
(XEN) [2021-06-14 23:02:39] [0xfcc]      0 0x1de54e9 0x00000001          
0 0x54bce9 0x19
(XEN) [2021-06-14 23:02:39] [0xfce]      0 0x1de4b4d 0x00000001          
0 0x54c74d 0x19
(XEN) [2021-06-14 23:02:39] [0xfcf]      0 0x1de546b 0x00000001          
0 0x54bc6b 0x19
(XEN) [2021-06-14 23:02:39] [0xfd0]      0 0x1de4f03 0x00000001          
0 0x54c303 0x19
(XEN) [2021-06-14 23:02:39] [0xfd2]      0 0x1de50d3 0x00000001          
0 0x54c0d3 0x19
(XEN) [2021-06-14 23:02:39] [0xfd5]      0 0x1de4c80 0x00000001          
0 0x54c480 0x19
(XEN) [2021-06-14 23:02:39] [0xfd6]      0 0x1de5590 0x00000001          
0 0x54bd90 0x19
(XEN) [2021-06-14 23:02:39] [0xfd8]      0 0x1de4dc7 0x00000001          
0 0x54c5c7 0x19
(XEN) [2021-06-14 23:02:39] [0xfdd]      0 0x1de5213 0x00000001          
0 0x54be13 0x19
(XEN) [2021-06-14 23:02:39] [0xfde]      0 0x1de4fec 0x00000001          
0 0x54c3ec 0x19
(XEN) [2021-06-14 23:02:39] [0xfdf]      0 0x1de5479 0x00000001          
0 0x54bc79 0x19
(XEN) [2021-06-14 23:02:39] [0xfe0]      0 0x1de5461 0x00000001          
0 0x54bc61 0x19
(XEN) [2021-06-14 23:02:39] [0xfe1]      0 0x1de4af1 0x00000001          
0 0x54c6f1 0x19
(XEN) [2021-06-14 23:02:39] [0xfe2]      0 0x1de50d4 0x00000001          
0 0x54c0d4 0x19
(XEN) [2021-06-14 23:02:39] [0xfe3]      0 0x1de4b6d 0x00000001          
0 0x54c76d 0x19
(XEN) [2021-06-14 23:02:39] [0xfe4]      0 0x1de4f23 0x00000001          
0 0x54c323 0x19
(XEN) [2021-06-14 23:02:39] [0xfe6]      0 0x1de4d05 0x00000001          
0 0x54c505 0x19
(XEN) [2021-06-14 23:02:39] [0xfe7]      0 0x1de4e2b 0x00000001          
0 0x54c22b 0x19
(XEN) [2021-06-14 23:02:39] [0xfe8]      0 0x1de478f 0x00000001          
0 0x54cb8f 0x19
(XEN) [2021-06-14 23:02:39] [0xfe9]      0 0x1de4fc3 0x00000001          
0 0x54c3c3 0x19
(XEN) [2021-06-14 23:02:39] [0xfea]      0 0x1de4d38 0x00000001          
0 0x54c538 0x19
(XEN) [2021-06-14 23:02:39] [0xfeb]      0 0x1de4f6a 0x00000001          
0 0x54c36a 0x19
(XEN) [2021-06-14 23:02:39] [0xfed]      0 0x1de54bf 0x00000001          
0 0x54bcbf 0x19
(XEN) [2021-06-14 23:02:39] [0xfef]      0 0x1de4a2a 0x00000001          
0 0x54c62a 0x19
(XEN) [2021-06-14 23:02:39] [0xff5]      0 0x1de46af 0x00000001          
0 0x54caaf 0x19
(XEN) [2021-06-14 23:02:39] [0xff6]      0 0x1de4f27 0x00000001          
0 0x54c327 0x19
(XEN) [2021-06-14 23:02:39] [0xff8]      0 0x1de4646 0x00000001          
0 0x54ca46 0x19
(XEN) [2021-06-14 23:02:39] [0xff9]      0 0x1de2f58 0x00000001          
0 0x54e358 0x19
(XEN) [2021-06-14 23:02:39] [0xffa]      0 0x1de51df 0x00000001          
0 0x54c1df 0x19
(XEN) [2021-06-14 23:02:39] [0xffc]      0 0x1de4fbf 0x00000001          
0 0x54c3bf 0x19
(XEN) [2021-06-14 23:02:39] [0xffe]      0 0x1de51cb 0x00000001          
0 0x54c1cb 0x19
(XEN) [2021-06-14 23:02:40] [0x1002]      0 0x1de50ef 
0x00000001          0 0x54c0ef 0x19
(XEN) [2021-06-14 23:02:40] [0x1004]      0 0x1de4d5c 
0x00000001          0 0x54c55c 0x19
(XEN) [2021-06-14 23:02:40] [0x1005]      0 0x1de4b0a 
0x00000001          0 0x54c70a 0x19
(XEN) [2021-06-14 23:02:40] [0x1006]      0 0x1de47c8 
0x00000001          0 0x54cbc8 0x19
(XEN) [2021-06-14 23:02:40] [0x1008]      0 0x1de55ed 
0x00000001          0 0x54bded 0x19
(XEN) [2021-06-14 23:02:40] [0x1009]      0 0x1de4a19 
0x00000001          0 0x54c619 0x19
(XEN) [2021-06-14 23:02:40] [0x100a]      0 0x1de4e29 
0x00000001          0 0x54c229 0x19
(XEN) [2021-06-14 23:02:40] [0x100b]      0 0x1de515c 
0x00000001          0 0x54c15c 0x19
(XEN) [2021-06-14 23:02:40] [0x100c]      0 0x1de4eed 
0x00000001          0 0x54c2ed 0x19
(XEN) [2021-06-14 23:02:40] [0x100d]      0 0x1de4fd8 
0x00000001          0 0x54c3d8 0x19
(XEN) [2021-06-14 23:02:40] [0x1010]      0 0x1de4d93 
0x00000001          0 0x54c593 0x19
(XEN) [2021-06-14 23:02:40] [0x1011]      0 0x1de4d4b 
0x00000001          0 0x54c54b 0x19
(XEN) [2021-06-14 23:02:40] [0x1012]      0 0x1de5535 
0x00000001          0 0x54bd35 0x19
(XEN) [2021-06-14 23:02:40] [0x1014]      0 0x1de5254 
0x00000001          0 0x54be54 0x19
(XEN) [2021-06-14 23:02:40] [0x1015]      0 0x1de4c82 
0x00000001          0 0x54c482 0x19
(XEN) [2021-06-14 23:02:40] [0x1016]      0 0x1de4b04 
0x00000001          0 0x54c704 0x19
(XEN) [2021-06-14 23:02:40] [0x1017]      0 0x1de51f7 
0x00000001          0 0x54c1f7 0x19
(XEN) [2021-06-14 23:02:40] [0x101c]      0 0x1de5105 
0x00000001          0 0x54c105 0x19
(XEN) [2021-06-14 23:02:40] [0x101d]      0 0x1de4ccf 
0x00000001          0 0x54c4cf 0x19
(XEN) [2021-06-14 23:02:40] [0x1021]      0 0x1de54ff 
0x00000001          0 0x54bcff 0x19
(XEN) [2021-06-14 23:02:40] [0x1022]      0 0x1de513d 
0x00000001          0 0x54c13d 0x19
(XEN) [2021-06-14 23:02:40] [0x1023]      0 0x1de47a6 
0x00000001          0 0x54cba6 0x19
(XEN) [2021-06-14 23:02:40] [0x1025]      0 0x1de46b8 
0x00000001          0 0x54cab8 0x19
(XEN) [2021-06-14 23:02:40] [0x1027]      0 0x1de5415 
0x00000001          0 0x54bc15 0x19
(XEN) [2021-06-14 23:02:40] [0x1028]      0 0x1de4783 
0x00000001          0 0x54cb83 0x19
(XEN) [2021-06-14 23:02:40] [0x1029]      0 0x1de4ce2 
0x00000001          0 0x54c4e2 0x19
(XEN) [2021-06-14 23:02:40] [0x102a]      0 0x1de4621 
0x00000001          0 0x54ca21 0x19
(XEN) [2021-06-14 23:02:40] [0x102c]      0 0x1de4fb5 
0x00000001          0 0x54c3b5 0x19
(XEN) [2021-06-14 23:02:40] [0x102d]      0 0x1de4617 
0x00000001          0 0x54ca17 0x19
(XEN) [2021-06-14 23:02:40] [0x102e]      0 0x1de5579 
0x00000001          0 0x54bd79 0x19
(XEN) [2021-06-14 23:02:40] [0x102f]      0 0x1de4755 
0x00000001          0 0x54cb55 0x19
(XEN) [2021-06-14 23:02:40] [0x1030]      0 0x1de5448 
0x00000001          0 0x54bc48 0x19
(XEN) [2021-06-14 23:02:40] [0x1031]      0 0x1de4c8f 
0x00000001          0 0x54c48f 0x19
(XEN) [2021-06-14 23:02:40] [0x1032]      0 0x1de50c8 
0x00000001          0 0x54c0c8 0x19
(XEN) [2021-06-14 23:02:40] [0x1033]      0 0x1de4c30 
0x00000001          0 0x54c430 0x19
(XEN) [2021-06-14 23:02:40] [0x1036]      0 0x1de50ab 
0x00000001          0 0x54c0ab 0x19
(XEN) [2021-06-14 23:02:40] [0x1038]      0 0x1de5552 
0x00000001          0 0x54bd52 0x19
(XEN) [2021-06-14 23:02:40] [0x1039]      0 0x1de461f 
0x00000001          0 0x54ca1f 0x19
(XEN) [2021-06-14 23:02:40] [0x103a]      0 0x1de4cdb 
0x00000001          0 0x54c4db 0x19
(XEN) [2021-06-14 23:02:40] [0x103b]      0 0x1de4fd1 
0x00000001          0 0x54c3d1 0x19
(XEN) [2021-06-14 23:02:40] [0x103c]      0 0x1de5439 
0x00000001          0 0x54bc39 0x19
(XEN) [2021-06-14 23:02:40] [0x103d]      0 0x1de4d56 
0x00000001          0 0x54c556 0x19
(XEN) [2021-06-14 23:02:40] [0x103e]      0 0x1de4f0d 
0x00000001          0 0x54c30d 0x19
(XEN) [2021-06-14 23:02:40] [0x103f]      0 0x1de54af 
0x00000001          0 0x54bcaf 0x19
(XEN) [2021-06-14 23:02:40] [0x1040]      0 0x1de5582 
0x00000001          0 0x54bd82 0x19
(XEN) [2021-06-14 23:02:40] [0x1041]      0 0x1de54c8 
0x00000001          0 0x54bcc8 0x19
(XEN) [2021-06-14 23:02:40] [0x1044]      0 0x1de4a2c 
0x00000001          0 0x54c62c 0x19
(XEN) [2021-06-14 23:02:40] [0x1045]      0 0x1de4bc5 
0x00000001          0 0x54c7c5 0x19
(XEN) [2021-06-14 23:02:40] [0x1046]      0 0x1de558e 
0x00000001          0 0x54bd8e 0x19
(XEN) [2021-06-14 23:02:40] [0x104c]      0 0x1de4763 
0x00000001          0 0x54cb63 0x19
(XEN) [2021-06-14 23:02:40] [0x104e]      0 0x1de4ee8 
0x00000001          0 0x54c2e8 0x19
(XEN) [2021-06-14 23:02:40] [0x104f]      0 0x1de47f6 
0x00000001          0 0x54cbf6 0x19
(XEN) [2021-06-14 23:02:40] [0x1051]      0 0x1de4b72 
0x00000001          0 0x54c772 0x19
(XEN) [2021-06-14 23:02:40] [0x1052]      0 0x1de51eb 
0x00000001          0 0x54c1eb 0x19
(XEN) [2021-06-14 23:02:40] [0x1053]      0 0x1de4c64 
0x00000001          0 0x54c464 0x19
(XEN) [2021-06-14 23:02:40] [0x1054]      0 0x1de4ec9 
0x00000001          0 0x54c2c9 0x19
(XEN) [2021-06-14 23:02:40] [0x1056]      0 0x1de4752 
0x00000001          0 0x54cb52 0x19
(XEN) [2021-06-14 23:02:40] [0x1058]      0 0x1de4df8 
0x00000001          0 0x54c5f8 0x19
(XEN) [2021-06-14 23:02:40] [0x1059]      0 0x1de557d 
0x00000001          0 0x54bd7d 0x19
(XEN) [2021-06-14 23:02:40] [0x105a]      0 0x1de4b1b 
0x00000001          0 0x54c71b 0x19
(XEN) [2021-06-14 23:02:40] [0x105c]      0 0x1de508a 
0x00000001          0 0x54c08a 0x19
(XEN) [2021-06-14 23:02:40] [0x105d]      0 0x1de50f5 
0x00000001          0 0x54c0f5 0x19
(XEN) [2021-06-14 23:02:40] [0x105e]      0 0x1de5402 
0x00000001          0 0x54bc02 0x19
(XEN) [2021-06-14 23:02:40] [0x105f]      0 0x1de4d86 
0x00000001          0 0x54c586 0x19
(XEN) [2021-06-14 23:02:40] [0x1063]      0 0x1de4dc9 
0x00000001          0 0x54c5c9 0x19
(XEN) [2021-06-14 23:02:40] [0x1064]      0 0x1de5229 
0x00000001          0 0x54be29 0x19
(XEN) [2021-06-14 23:02:40] [0x1065]      0 0x1de5417 
0x00000001          0 0x54bc17 0x19
(XEN) [2021-06-14 23:02:40] [0x1066]      0 0x1de46bd 
0x00000001          0 0x54cabd 0x19
(XEN) [2021-06-14 23:02:40] [0x1067]      0 0x1de2f6c 
0x00000001          0 0x54e36c 0x19
(XEN) [2021-06-14 23:02:40] [0x106b]      0 0x1de5126 
0x00000001          0 0x54c126 0x19
(XEN) [2021-06-14 23:02:40] [0x106d]      0 0x1de4c5e 
0x00000001          0 0x54c45e 0x19
(XEN) [2021-06-14 23:02:40] [0x106f]      0 0x1de5562 
0x00000001          0 0x54bd62 0x19
(XEN) [2021-06-14 23:02:40] [0x1070]      0 0x1de4eab 
0x00000001          0 0x54c2ab 0x19
(XEN) [2021-06-14 23:02:40] [0x1071]      0 0x1de4bb8 
0x00000001          0 0x54c7b8 0x19
(XEN) [2021-06-14 23:02:40] [0x1072]      0 0x1de4b8a 
0x00000001          0 0x54c78a 0x19
(XEN) [2021-06-14 23:02:40] [0x1073]      0 0x1de503a 
0x00000001          0 0x54c03a 0x19
(XEN) [2021-06-14 23:02:40] [0x1075]      0 0x1de47f0 
0x00000001          0 0x54cbf0 0x19
(XEN) [2021-06-14 23:02:40] [0x1079]      0 0x1de4c48 
0x00000001          0 0x54c448 0x19
(XEN) [2021-06-14 23:02:40] [0x107a]      0 0x1de4e10 
0x00000001          0 0x54c210 0x19
(XEN) [2021-06-14 23:02:40] [0x107b]      0 0x1de555e 
0x00000001          0 0x54bd5e 0x19
(XEN) [2021-06-14 23:02:40] [0x107c]      0 0x1de4b62 
0x00000001          0 0x54c762 0x19
(XEN) [2021-06-14 23:02:40] [0x107d]      0 0x1de54ca 
0x00000001          0 0x54bcca 0x19
(XEN) [2021-06-14 23:02:40] [0x107f]      0 0x1de4f5d 
0x00000001          0 0x54c35d 0x19
(XEN) [2021-06-14 23:02:40] [0x1080]      0 0x1de5049 
0x00000001          0 0x54c049 0x19
(XEN) [2021-06-14 23:02:40] [0x1081]      0 0x1de5038 
0x00000001          0 0x54c038 0x19
(XEN) [2021-06-14 23:02:40] [0x1083]      0 0x1de5444 
0x00000001          0 0x54bc44 0x19
(XEN) [2021-06-14 23:02:40] [0x1084]      0 0x1de553d 
0x00000001          0 0x54bd3d 0x19
(XEN) [2021-06-14 23:02:40] [0x1085]      0 0x1de46dc 
0x00000001          0 0x54cadc 0x19
(XEN) [2021-06-14 23:02:40] [0x1088]      0 0x1de46b7 
0x00000001          0 0x54cab7 0x19
(XEN) [2021-06-14 23:02:40] [0x1089]      0 0x1de4ef2 
0x00000001          0 0x54c2f2 0x19
(XEN) [2021-06-14 23:02:40] [0x108b]      0 0x1de4671 
0x00000001          0 0x54ca71 0x19
(XEN) [2021-06-14 23:02:40] [0x108c]      0 0x1de4cc4 
0x00000001          0 0x54c4c4 0x19
(XEN) [2021-06-14 23:02:40] [0x108e]      0 0x1de506a 
0x00000001          0 0x54c06a 0x19
(XEN) [2021-06-14 23:02:40] [0x1093]      0 0x1de4cbf 
0x00000001          0 0x54c4bf 0x19
(XEN) [2021-06-14 23:02:40] [0x1094]      0 0x1de50b6 
0x00000001          0 0x54c0b6 0x19
(XEN) [2021-06-14 23:02:40] [0x1095]      0 0x1de4f8e 
0x00000001          0 0x54c38e 0x19
(XEN) [2021-06-14 23:02:40] [0x1098]      0 0x1de4fdf 
0x00000001          0 0x54c3df 0x19
(XEN) [2021-06-14 23:02:40] [0x1099]      0 0x1de4b44 
0x00000001          0 0x54c744 0x19
(XEN) [2021-06-14 23:02:40] [0x109b]      0 0x1de520c 
0x00000001          0 0x54be0c 0x19
(XEN) [2021-06-14 23:02:40] [0x109c]      0 0x1de49f6 
0x00000001          0 0x54c9f6 0x19
(XEN) [2021-06-14 23:02:40] [0x109d]      0 0x1de50fd 
0x00000001          0 0x54c0fd 0x19
(XEN) [2021-06-14 23:02:40] [0x109f]      0 0x1de5436 
0x00000001          0 0x54bc36 0x19
(XEN) [2021-06-14 23:02:40] [0x10a0]      0 0x1de4720 
0x00000001          0 0x54cb20 0x19
(XEN) [2021-06-14 23:02:40] [0x10a1]      0 0x1de4d36 
0x00000001          0 0x54c536 0x19
(XEN) [2021-06-14 23:02:40] [0x10a6]      0 0x1de4d6d 
0x00000001          0 0x54c56d 0x19
(XEN) [2021-06-14 23:02:40] [0x10a7]      0 0x1de508c 
0x00000001          0 0x54c08c 0x19
(XEN) [2021-06-14 23:02:40] [0x10a8]      0 0x1de460e 
0x00000001          0 0x54ca0e 0x19
(XEN) [2021-06-14 23:02:40] [0x10a9]      0 0x1de5135 
0x00000001          0 0x54c135 0x19
(XEN) [2021-06-14 23:02:40] [0x10aa]      0 0x1de47ae 
0x00000001          0 0x54cbae 0x19
(XEN) [2021-06-14 23:02:40] [0x10ab]      0 0x1de500f 
0x00000001          0 0x54c00f 0x19
(XEN) [2021-06-14 23:02:40] [0x10ac]      0 0x1de4e75 
0x00000001          0 0x54c275 0x19
(XEN) [2021-06-14 23:02:40] [0x10af]      0 0x1de4bee 
0x00000001          0 0x54c7ee 0x19
(XEN) [2021-06-14 23:02:40] [0x10b0]      0 0x1de4cbe 
0x00000001          0 0x54c4be 0x19
(XEN) [2021-06-14 23:02:40] [0x10b1]      0 0x1de4c23 
0x00000001          0 0x54c423 0x19
(XEN) [2021-06-14 23:02:40] [0x10b4]      0 0x1de5414 
0x00000001          0 0x54bc14 0x19
(XEN) [2021-06-14 23:02:40] [0x10b5]      0 0x1de4d29 
0x00000001          0 0x54c529 0x19
(XEN) [2021-06-14 23:02:40] [0x10b6]      0 0x1de51ca 
0x00000001          0 0x54c1ca 0x19
(XEN) [2021-06-14 23:02:40] [0x10b7]      0 0x1de54e3 
0x00000001          0 0x54bce3 0x19
(XEN) [2021-06-14 23:02:40] [0x10b8]      0 0x1de4fde 
0x00000001          0 0x54c3de 0x19
(XEN) [2021-06-14 23:02:40] [0x10b9]      0 0x1de554f 
0x00000001          0 0x54bd4f 0x19
(XEN) [2021-06-14 23:02:40] [0x10bb]      0 0x1de4b3c 
0x00000001          0 0x54c73c 0x19
(XEN) [2021-06-14 23:02:40] [0x10bc]      0 0x1de4d72 
0x00000001          0 0x54c572 0x19
(XEN) [2021-06-14 23:02:40] [0x10c1]      0 0x1de47f4 
0x00000001          0 0x54cbf4 0x19
(XEN) [2021-06-14 23:02:40] [0x10c4]      0 0x1de4efd 
0x00000001          0 0x54c2fd 0x19
(XEN) [2021-06-14 23:02:40] [0x10c6]      0 0x1de4c71 
0x00000001          0 0x54c471 0x19
(XEN) [2021-06-14 23:02:40] [0x10c8]      0 0x1de5151 
0x00000001          0 0x54c151 0x19
(XEN) [2021-06-14 23:02:40] [0x10ca]      0 0x1de2f60 
0x00000001          0 0x54e360 0x19
(XEN) [2021-06-14 23:02:41] [0x10cb]      0 0x1de47b6 
0x00000001          0 0x54cbb6 0x19
(XEN) [2021-06-14 23:02:41] [0x10cc]      0 0x1de4cfe 
0x00000001          0 0x54c4fe 0x19
(XEN) [2021-06-14 23:02:41] [0x10cd]      0 0x1de5597 
0x00000001          0 0x54bd97 0x19
(XEN) [2021-06-14 23:02:41] [0x10ce]      0 0x1de4f28 
0x00000001          0 0x54c328 0x19
(XEN) [2021-06-14 23:02:41] [0x10d0]      0 0x1de51ab 
0x00000001          0 0x54c1ab 0x19
(XEN) [2021-06-14 23:02:41] [0x10d3]      0 0x1de4df2 
0x00000001          0 0x54c5f2 0x19
(XEN) [2021-06-14 23:02:41] [0x10d4]      0 0x1de4668 
0x00000001          0 0x54ca68 0x19
(XEN) [2021-06-14 23:02:41] [0x10d5]      0 0x1de4a3e 
0x00000001          0 0x54c63e 0x19
(XEN) [2021-06-14 23:02:41] [0x10d6]      0 0x1de4faf 
0x00000001          0 0x54c3af 0x19
(XEN) [2021-06-14 23:02:41] [0x10d7]      0 0x1de4c01 
0x00000001          0 0x54c401 0x19
(XEN) [2021-06-14 23:02:41] [0x10d8]      0 0x1de5063 
0x00000001          0 0x54c063 0x19
(XEN) [2021-06-14 23:02:41] [0x10d9]      0 0x1de5101 
0x00000001          0 0x54c101 0x19
(XEN) [2021-06-14 23:02:41] [0x10da]      0 0x1de507d 
0x00000001          0 0x54c07d 0x19
(XEN) [2021-06-14 23:02:41] [0x10db]      0 0x1de4aa1 
0x00000001          0 0x54c6a1 0x19
(XEN) [2021-06-14 23:02:41] [0x10dc]      0 0x1de51e5 
0x00000001          0 0x54c1e5 0x19
(XEN) [2021-06-14 23:02:41] [0x10dd]      0 0x1de4bf7 
0x00000001          0 0x54c7f7 0x19
(XEN) [2021-06-14 23:02:41] [0x10de]      0 0x1de547c 
0x00000001          0 0x54bc7c 0x19
(XEN) [2021-06-14 23:02:41] [0x10e0]      0 0x1de2f5a 
0x00000001          0 0x54e35a 0x19
(XEN) [2021-06-14 23:02:41] [0x10e5]      0 0x1de5467 
0x00000001          0 0x54bc67 0x19
(XEN) [2021-06-14 23:02:41] [0x10e9]      0 0x1de5409 
0x00000001          0 0x54bc09 0x19
(XEN) [2021-06-14 23:02:41] [0x10eb]      0 0x1de4a36 
0x00000001          0 0x54c636 0x19
(XEN) [2021-06-14 23:02:41] [0x10ec]      0 0x1de5473 
0x00000001          0 0x54bc73 0x19
(XEN) [2021-06-14 23:02:41] [0x10ed]      0 0x1de4ed7 
0x00000001          0 0x54c2d7 0x19
(XEN) [2021-06-14 23:02:41] [0x10ee]      0 0x1de5034 
0x00000001          0 0x54c034 0x19
(XEN) [2021-06-14 23:02:41] [0x10ef]      0 0x1de4e53 
0x00000001          0 0x54c253 0x19
(XEN) [2021-06-14 23:02:41] [0x10f0]      0 0x1de4e4e 
0x00000001          0 0x54c24e 0x19
(XEN) [2021-06-14 23:02:41] [0x10f1]      0 0x1de4c3d 
0x00000001          0 0x54c43d 0x19
(XEN) [2021-06-14 23:02:41] [0x10f2]      0 0x1de4685 
0x00000001          0 0x54ca85 0x19
(XEN) [2021-06-14 23:02:41] [0x10f3]      0 0x1de51c9 
0x00000001          0 0x54c1c9 0x19
(XEN) [2021-06-14 23:02:41] [0x10f4]      0 0x1de54d2 
0x00000001          0 0x54bcd2 0x19
(XEN) [2021-06-14 23:02:41] [0x10f5]      0 0x1de4dc5 
0x00000001          0 0x54c5c5 0x19
(XEN) [2021-06-14 23:02:41] [0x10f7]      0 0x1de4cc2 
0x00000001          0 0x54c4c2 0x19
(XEN) [2021-06-14 23:02:41] [0x10fb]      0 0x1de4d6f 
0x00000001          0 0x54c56f 0x19
(XEN) [2021-06-14 23:02:41] [0x10fd]      0 0x1de55c9 
0x00000001          0 0x54bdc9 0x19
(XEN) [2021-06-14 23:02:41] [0x10fe]      0 0x1de5502 
0x00000001          0 0x54bd02 0x19
(XEN) [2021-06-14 23:02:41] [0x10ff]      0 0x1de478a 
0x00000001          0 0x54cb8a 0x19
(XEN) [2021-06-14 23:02:41] [0x1103]      0 0x1de4c15 
0x00000001          0 0x54c415 0x19
(XEN) [2021-06-14 23:02:41] [0x1106]      0 0x1de4f00 
0x00000001          0 0x54c300 0x19
(XEN) [2021-06-14 23:02:41] [0x1107]      0 0x1de4d9d 
0x00000001          0 0x54c59d 0x19
(XEN) [2021-06-14 23:02:41] [0x1108]      0 0x1de5170 
0x00000001          0 0x54c170 0x19
(XEN) [2021-06-14 23:02:41] [0x1109]      0 0x1de4df3 
0x00000001          0 0x54c5f3 0x19
(XEN) [2021-06-14 23:02:41] [0x110a]      0 0x1de4fd0 
0x00000001          0 0x54c3d0 0x19
(XEN) [2021-06-14 23:02:41] [0x110b]      0 0x1de4d98 
0x00000001          0 0x54c598 0x19
(XEN) [2021-06-14 23:02:41] [0x110d]      0 0x1de4b10 
0x00000001          0 0x54c710 0x19
(XEN) [2021-06-14 23:02:41] [0x110f]      0 0x1de4da9 
0x00000001          0 0x54c5a9 0x19
(XEN) [2021-06-14 23:02:41] [0x1111]      0 0x1de49f5 
0x00000001          0 0x54c9f5 0x19
(XEN) [2021-06-14 23:02:41] [0x1114]      0 0x1de50a0 
0x00000001          0 0x54c0a0 0x19
(XEN) [2021-06-14 23:02:41] [0x1116]      0 0x1de4d27 
0x00000001          0 0x54c527 0x19
(XEN) [2021-06-14 23:02:41] [0x1117]      0 0x1de4a1f 
0x00000001          0 0x54c61f 0x19
(XEN) [2021-06-14 23:02:41] [0x1118]      0 0x1de51f2 
0x00000001          0 0x54c1f2 0x19
(XEN) [2021-06-14 23:02:41] [0x111c]      0 0x1de543d 
0x00000001          0 0x54bc3d 0x19
(XEN) [2021-06-14 23:02:41] [0x1122]      0 0x1de479e 
0x00000001          0 0x54cb9e 0x19
(XEN) [2021-06-14 23:02:41] [0x1123]      0 0x1de540b 
0x00000001          0 0x54bc0b 0x19
(XEN) [2021-06-14 23:02:41] [0x1126]      0 0x1de4a87 
0x00000001          0 0x54c687 0x19
(XEN) [2021-06-14 23:02:41] [0x1129]      0 0x1de50be 
0x00000001          0 0x54c0be 0x19
(XEN) [2021-06-14 23:02:41] [0x112b]      0 0x1de4789 
0x00000001          0 0x54cb89 0x19
(XEN) [2021-06-14 23:02:41] [0x112c]      0 0x1de5559 
0x00000001          0 0x54bd59 0x19
(XEN) [2021-06-14 23:02:41] [0x112d]      0 0x1de4616 
0x00000001          0 0x54ca16 0x19
(XEN) [2021-06-14 23:02:41] [0x112f]      0 0x1de4688 
0x00000001          0 0x54ca88 0x19
(XEN) [2021-06-14 23:02:41] [0x1133]      0 0x1de55cf 
0x00000001          0 0x54bdcf 0x19
(XEN) [2021-06-14 23:02:41] [0x1134]      0 0x1de4e9d 
0x00000001          0 0x54c29d 0x19
(XEN) [2021-06-14 23:02:41] [0x1135]      0 0x1de558d 
0x00000001          0 0x54bd8d 0x19
(XEN) [2021-06-14 23:02:41] [0x1136]      0 0x1de4a12 
0x00000001          0 0x54c612 0x19
(XEN) [2021-06-14 23:02:41] [0x1137]      0 0x1de4e03 
0x00000001          0 0x54c203 0x19
(XEN) [2021-06-14 23:02:41] [0x1138]      0 0x1de5210 
0x00000001          0 0x54be10 0x19
(XEN) [2021-06-14 23:02:41] [0x113a]      0 0x1de4bd8 
0x00000001          0 0x54c7d8 0x19
(XEN) [2021-06-14 23:02:41] [0x1140]      0 0x1de4608 
0x00000001          0 0x54ca08 0x19
(XEN) [2021-06-14 23:02:41] [0x1142]      0 0x1de4bdc 
0x00000001          0 0x54c7dc 0x19
(XEN) [2021-06-14 23:02:41] [0x1146]      0 0x1de4cda 
0x00000001          0 0x54c4da 0x19
(XEN) [2021-06-14 23:02:41] [0x1147]      0 0x1de4f21 
0x00000001          0 0x54c321 0x19
(XEN) [2021-06-14 23:02:41] [0x1148]      0 0x1de4a38 
0x00000001          0 0x54c638 0x19
(XEN) [2021-06-14 23:02:41] [0x1149]      0 0x1de4c6e 
0x00000001          0 0x54c46e 0x19
(XEN) [2021-06-14 23:02:41] [0x114a]      0 0x1de5403 
0x00000001          0 0x54bc03 0x19
(XEN) [2021-06-14 23:02:41] [0x114b]      0 0x1de4a82 
0x00000001          0 0x54c682 0x19
(XEN) [2021-06-14 23:02:41] [0x114d]      0 0x1de55ee 
0x00000001          0 0x54bdee 0x19
(XEN) [2021-06-14 23:02:41] [0x114e]      0 0x1de4f01 
0x00000001          0 0x54c301 0x19
(XEN) [2021-06-14 23:02:41] [0x1150]      0 0x1de4d39 
0x00000001          0 0x54c539 0x19
(XEN) [2021-06-14 23:02:41] [0x1151]      0 0x1de55d1 
0x00000001          0 0x54bdd1 0x19
(XEN) [2021-06-14 23:02:41] [0x1152]      0 0x1de4bb1 
0x00000001          0 0x54c7b1 0x19
(XEN) [2021-06-14 23:02:41] [0x1154]      0 0x1de4bf8 
0x00000001          0 0x54c7f8 0x19
(XEN) [2021-06-14 23:02:41] [0x1157]      0 0x1de4b61 
0x00000001          0 0x54c761 0x19
(XEN) [2021-06-14 23:02:41] [0x1158]      0 0x1de54a4 
0x00000001          0 0x54bca4 0x19
(XEN) [2021-06-14 23:02:41] [0x1159]      0 0x1de4e66 
0x00000001          0 0x54c266 0x19
(XEN) [2021-06-14 23:02:41] [0x115a]      0 0x1de54cd 
0x00000001          0 0x54bccd 0x19
(XEN) [2021-06-14 23:02:41] [0x115b]      0 0x1de4fe5 
0x00000001          0 0x54c3e5 0x19
(XEN) [2021-06-14 23:02:41] [0x115c]      0 0x1de4f59 
0x00000001          0 0x54c359 0x19
(XEN) [2021-06-14 23:02:41] [0x115d]      0 0x1de5060 
0x00000001          0 0x54c060 0x19
(XEN) [2021-06-14 23:02:41] [0x1161]      0 0x1de4690 
0x00000001          0 0x54ca90 0x19
(XEN) [2021-06-14 23:02:41] [0x1162]      0 0x1de4ca7 
0x00000001          0 0x54c4a7 0x19
(XEN) [2021-06-14 23:02:41] [0x1163]      0 0x1de4ce7 
0x00000001          0 0x54c4e7 0x19
(XEN) [2021-06-14 23:02:41] [0x1166]      0 0x1de4b5d 
0x00000001          0 0x54c75d 0x19
(XEN) [2021-06-14 23:02:41] [0x116a]      0 0x1de4f79 
0x00000001          0 0x54c379 0x19
(XEN) [2021-06-14 23:02:41] [0x116c]      0 0x1de4f65 
0x00000001          0 0x54c365 0x19
(XEN) [2021-06-14 23:02:41] [0x1170]      0 0x1de4e6b 
0x00000001          0 0x54c26b 0x19
(XEN) [2021-06-14 23:02:41] [0x1171]      0 0x1de4a90 
0x00000001          0 0x54c690 0x19
(XEN) [2021-06-14 23:02:41] [0x1172]      0 0x1de55f4 
0x00000001          0 0x54bdf4 0x19
(XEN) [2021-06-14 23:02:41] [0x1174]      0 0x1de4f71 
0x00000001          0 0x54c371 0x19
(XEN) [2021-06-14 23:02:41] [0x1176]      0 0x1de50b5 
0x00000001          0 0x54c0b5 0x19
(XEN) [2021-06-14 23:02:41] [0x1177]      0 0x1de4fd4 
0x00000001          0 0x54c3d4 0x19
(XEN) [2021-06-14 23:02:41] [0x1179]      0 0x1de4dff 
0x00000001          0 0x54c5ff 0x19
(XEN) [2021-06-14 23:02:41] [0x117b]      0 0x1de4631 
0x00000001          0 0x54ca31 0x19
(XEN) [2021-06-14 23:02:41] [0x117c]      0 0x1de4a93 
0x00000001          0 0x54c693 0x19
(XEN) [2021-06-14 23:02:41] [0x117d]      0 0x1de54ba 
0x00000001          0 0x54bcba 0x19
(XEN) [2021-06-14 23:02:41] [0x117e]      0 0x1de5432 
0x00000001          0 0x54bc32 0x19
(XEN) [2021-06-14 23:02:41] [0x117f]      0 0x1de5420 
0x00000001          0 0x54bc20 0x19
(XEN) [2021-06-14 23:02:41] [0x1181]      0 0x1de548b 
0x00000001          0 0x54bc8b 0x19
(XEN) [2021-06-14 23:02:41] [0x1182]      0 0x1de46eb 
0x00000001          0 0x54caeb 0x19
(XEN) [2021-06-14 23:02:41] [0x1183]      0 0x1de4c8d 
0x00000001          0 0x54c48d 0x19
(XEN) [2021-06-14 23:02:41] [0x1185]      0 0x1de4d94 
0x00000001          0 0x54c594 0x19
(XEN) [2021-06-14 23:02:41] [0x1187]      0 0x1de4ce1 
0x00000001          0 0x54c4e1 0x19
(XEN) [2021-06-14 23:02:41] [0x1188]      0 0x1de4df6 
0x00000001          0 0x54c5f6 0x19
(XEN) [2021-06-14 23:02:41] [0x1189]      0 0x1de5021 
0x00000001          0 0x54c021 0x19
(XEN) [2021-06-14 23:02:41] [0x118c]      0 0x1de54c7 
0x00000001          0 0x54bcc7 0x19
(XEN) [2021-06-14 23:02:41] [0x118e]      0 0x1de559e 
0x00000001          0 0x54bd9e 0x19
(XEN) [2021-06-14 23:02:41] [0x1191]      0 0x1de4d91 
0x00000001          0 0x54c591 0x19
(XEN) [2021-06-14 23:02:41] [0x1194]      0 0x1de5412 
0x00000001          0 0x54bc12 0x19
(XEN) [2021-06-14 23:02:41] [0x1199]      0 0x1de47d2 
0x00000001          0 0x54cbd2 0x19
(XEN) [2021-06-14 23:02:41] [0x119a]      0 0x1de51ee 
0x00000001          0 0x54c1ee 0x19
(XEN) [2021-06-14 23:02:41] [0x119c]      0 0x1de4f82 
0x00000001          0 0x54c382 0x19
(XEN) [2021-06-14 23:02:41] [0x119d]      0 0x1de508d 
0x00000001          0 0x54c08d 0x19
(XEN) [2021-06-14 23:02:41] [0x119e]      0 0x1de46c4 
0x00000001          0 0x54cac4 0x19
(XEN) [2021-06-14 23:02:41] [0x119f]      0 0x1de4ca6 
0x00000001          0 0x54c4a6 0x19
(XEN) [2021-06-14 23:02:41] [0x11a0]      0 0x1de4f33 
0x00000001          0 0x54c333 0x19
(XEN) [2021-06-14 23:02:41] [0x11a1]      0 0x1de469b 
0x00000001          0 0x54ca9b 0x19
(XEN) [2021-06-14 23:02:41] [0x11a4]      0 0x1de46cf 
0x00000001          0 0x54cacf 0x19
(XEN) [2021-06-14 23:02:41] [0x11a5]      0 0x1de47a9 
0x00000001          0 0x54cba9 0x19
(XEN) [2021-06-14 23:02:41] [0x11a6]      0 0x1de54cb 
0x00000001          0 0x54bccb 0x19
(XEN) [2021-06-14 23:02:42] [0x11a8]      0 0x1de5542 
0x00000001          0 0x54bd42 0x19
(XEN) [2021-06-14 23:02:42] [0x11a9]      0 0x1de4c5a 
0x00000001          0 0x54c45a 0x19
(XEN) [2021-06-14 23:02:42] [0x11aa]      0 0x1de4c79 
0x00000001          0 0x54c479 0x19
(XEN) [2021-06-14 23:02:42] [0x11ac]      0 0x1de5437 
0x00000001          0 0x54bc37 0x19
(XEN) [2021-06-14 23:02:42] [0x11af]      0 0x1de4c56 
0x00000001          0 0x54c456 0x19
(XEN) [2021-06-14 23:02:42] [0x11b1]      0 0x1de50b9 
0x00000001          0 0x54c0b9 0x19
(XEN) [2021-06-14 23:02:42] [0x11b3]      0 0x1de4f81 
0x00000001          0 0x54c381 0x19
(XEN) [2021-06-14 23:02:42] [0x11b5]      0 0x1de4c0c 
0x00000001          0 0x54c40c 0x19
(XEN) [2021-06-14 23:02:42] [0x11b6]      0 0x1de4f95 
0x00000001          0 0x54c395 0x19
(XEN) [2021-06-14 23:02:42] [0x11b7]      0 0x1de4f13 
0x00000001          0 0x54c313 0x19
(XEN) [2021-06-14 23:02:42] [0x11ba]      0 0x1de4dcf 
0x00000001          0 0x54c5cf 0x19
(XEN) [2021-06-14 23:02:42] [0x11bc]      0 0x1de512e 
0x00000001          0 0x54c12e 0x19
(XEN) [2021-06-14 23:02:42] [0x11be]      0 0x1de5207 
0x00000001          0 0x54be07 0x19
(XEN) [2021-06-14 23:02:42] [0x11c1]      0 0x1de5144 
0x00000001          0 0x54c144 0x19
(XEN) [2021-06-14 23:02:42] [0x11c3]      0 0x1de46d1 
0x00000001          0 0x54cad1 0x19
(XEN) [2021-06-14 23:02:42] [0x11c4]      0 0x1de4606 
0x00000001          0 0x54ca06 0x19
(XEN) [2021-06-14 23:02:42] [0x11c6]      0 0x1de4ae3 
0x00000001          0 0x54c6e3 0x19
(XEN) [2021-06-14 23:02:42] [0x11c7]      0 0x1de4dc6 
0x00000001          0 0x54c5c6 0x19
(XEN) [2021-06-14 23:02:42] [0x11c9]      0 0x1de55ef 
0x00000001          0 0x54bdef 0x19
(XEN) [2021-06-14 23:02:42] [0x11cb]      0 0x1de552e 
0x00000001          0 0x54bd2e 0x19
(XEN) [2021-06-14 23:02:42] [0x11cd]      0 0x1de469f 
0x00000001          0 0x54ca9f 0x19
(XEN) [2021-06-14 23:02:42] [0x11cf]      0 0x1de4f73 
0x00000001          0 0x54c373 0x19
(XEN) [2021-06-14 23:02:42] [0x11d0]      0 0x1de4ccd 
0x00000001          0 0x54c4cd 0x19
(XEN) [2021-06-14 23:02:42] [0x11d1]      0 0x1de5051 
0x00000001          0 0x54c051 0x19
(XEN) [2021-06-14 23:02:42] [0x11d3]      0 0x1de4f32 
0x00000001          0 0x54c332 0x19
(XEN) [2021-06-14 23:02:42] [0x11d5]      0 0x1de520e 
0x00000001          0 0x54be0e 0x19
(XEN) [2021-06-14 23:02:42] [0x11d7]      0 0x1de4ffa 
0x00000001          0 0x54c3fa 0x19
(XEN) [2021-06-14 23:02:42] [0x11d8]      0 0x1de4691 
0x00000001          0 0x54ca91 0x19
(XEN) [2021-06-14 23:02:42] [0x11d9]      0 0x1de4ea8 
0x00000001          0 0x54c2a8 0x19
(XEN) [2021-06-14 23:02:42] [0x11dd]      0 0x1de4f60 
0x00000001          0 0x54c360 0x19
(XEN) [2021-06-14 23:02:42] [0x11df]      0 0x1de4bc7 
0x00000001          0 0x54c7c7 0x19
(XEN) [2021-06-14 23:02:42] [0x11e0]      0 0x1de4655 
0x00000001          0 0x54ca55 0x19
(XEN) [2021-06-14 23:02:42] [0x11e1]      0 0x1de473c 
0x00000001          0 0x54cb3c 0x19
(XEN) [2021-06-14 23:02:42] [0x11e3]      0 0x1de54aa 
0x00000001          0 0x54bcaa 0x19
(XEN) [2021-06-14 23:02:42] [0x11e4]      0 0x1de5028 
0x00000001          0 0x54c028 0x19
(XEN) [2021-06-14 23:02:42] [0x11e5]      0 0x1de4f7a 
0x00000001          0 0x54c37a 0x19
(XEN) [2021-06-14 23:02:42] [0x11e7]      0 0x1de47b3 
0x00000001          0 0x54cbb3 0x19
(XEN) [2021-06-14 23:02:42] [0x11e8]      0 0x1de54ef 
0x00000001          0 0x54bcef 0x19
(XEN) [2021-06-14 23:02:42] [0x11eb]      0 0x1de4601 
0x00000001          0 0x54ca01 0x19
(XEN) [2021-06-14 23:02:42] [0x11ef]      0 0x1de55bf 
0x00000001          0 0x54bdbf 0x19
(XEN) [2021-06-14 23:02:42] [0x11f1]      0 0x1de4ec5 
0x00000001          0 0x54c2c5 0x19
(XEN) [2021-06-14 23:02:42] [0x11f3]      0 0x1de558a 
0x00000001          0 0x54bd8a 0x19
(XEN) [2021-06-14 23:02:42] [0x1200]      0 0x1de5453 
0x00000001          0 0x54bc53 0x19
(XEN) [2021-06-14 23:02:42] [0x1201]      0 0x1de5016 
0x00000001          0 0x54c016 0x19
(XEN) [2021-06-14 23:02:42] [0x1202]      0 0x1de4ec2 
0x00000001          0 0x54c2c2 0x19
(XEN) [2021-06-14 23:02:42] [0x1205]      0 0x1de4fd7 
0x00000001          0 0x54c3d7 0x19
(XEN) [2021-06-14 23:02:42] [0x1207]      0 0x1de5180 
0x00000001          0 0x54c180 0x19
(XEN) [2021-06-14 23:02:42] [0x1209]      0 0x1de5421 
0x00000001          0 0x54bc21 0x19
(XEN) [2021-06-14 23:02:42] [0x120b]      0 0x1de4bba 
0x00000001          0 0x54c7ba 0x19
(XEN) [2021-06-14 23:02:42] [0x120c]      0 0x1de2f64 
0x00000001          0 0x54e364 0x19
(XEN) [2021-06-14 23:02:42] [0x120d]      0 0x1de46e5 
0x00000001          0 0x54cae5 0x19
(XEN) [2021-06-14 23:02:42] [0x120e]      0 0x1de4b4f 
0x00000001          0 0x54c74f 0x19
(XEN) [2021-06-14 23:02:42] [0x120f]      0 0x1de49f2 
0x00000001          0 0x54c9f2 0x19
(XEN) [2021-06-14 23:02:42] [0x1211]      0 0x1de461e 
0x00000001          0 0x54ca1e 0x19
(XEN) [2021-06-14 23:02:42] [0x1213]      0 0x1de4ae4 
0x00000001          0 0x54c6e4 0x19
(XEN) [2021-06-14 23:02:42] [0x1214]      0 0x1de4d1f 
0x00000001          0 0x54c51f 0x19
(XEN) [2021-06-14 23:02:42] [0x1215]      0 0x1de50a9 
0x00000001          0 0x54c0a9 0x19
(XEN) [2021-06-14 23:02:42] [0x1216]      0 0x1de477a 
0x00000001          0 0x54cb7a 0x19
(XEN) [2021-06-14 23:02:42] [0x1218]      0 0x1de50e3 
0x00000001          0 0x54c0e3 0x19
(XEN) [2021-06-14 23:02:42] [0x1219]      0 0x1de47bf 
0x00000001          0 0x54cbbf 0x19
(XEN) [2021-06-14 23:02:42] [0x121c]      0 0x1de4704 
0x00000001          0 0x54cb04 0x19
(XEN) [2021-06-14 23:02:42] [0x121d]      0 0x1de4e6e 
0x00000001          0 0x54c26e 0x19
(XEN) [2021-06-14 23:02:42] [0x1220]      0 0x1de4dcb 
0x00000001          0 0x54c5cb 0x19
(XEN) [2021-06-14 23:02:42] [0x1221]      0 0x1de47f7 
0x00000001          0 0x54cbf7 0x19
(XEN) [2021-06-14 23:02:42] [0x1223]      0 0x1de4d14 
0x00000001          0 0x54c514 0x19
(XEN) [2021-06-14 23:02:42] [0x1225]      0 0x1de5080 
0x00000001          0 0x54c080 0x19
(XEN) [2021-06-14 23:02:42] [0x1229]      0 0x1de4dbb 
0x00000001          0 0x54c5bb 0x19
(XEN) [2021-06-14 23:02:42] [0x122a]      0 0x1de5401 
0x00000001          0 0x54bc01 0x19
(XEN) [2021-06-14 23:02:42] [0x122b]      0 0x1de4adf 
0x00000001          0 0x54c6df 0x19
(XEN) [2021-06-14 23:02:42] [0x1230]      0 0x1de51d6 
0x00000001          0 0x54c1d6 0x19
(XEN) [2021-06-14 23:02:42] [0x1231]      0 0x1de4745 
0x00000001          0 0x54cb45 0x19
(XEN) [2021-06-14 23:02:42] [0x1232]      0 0x1de51cd 
0x00000001          0 0x54c1cd 0x19
(XEN) [2021-06-14 23:02:42] [0x1236]      0 0x1de47cd 
0x00000001          0 0x54cbcd 0x19
(XEN) [2021-06-14 23:02:42] [0x1238]      0 0x1de47ca 
0x00000001          0 0x54cbca 0x19
(XEN) [2021-06-14 23:02:42] [0x123a]      0 0x1de50fb 
0x00000001          0 0x54c0fb 0x19
(XEN) [2021-06-14 23:02:42] [0x123b]      0 0x1de4ea0 
0x00000001          0 0x54c2a0 0x19
(XEN) [2021-06-14 23:02:42] [0x123d]      0 0x1de5131 
0x00000001          0 0x54c131 0x19
(XEN) [2021-06-14 23:02:42] [0x123e]      0 0x1de4b63 
0x00000001          0 0x54c763 0x19
(XEN) [2021-06-14 23:02:42] [0x123f]      0 0x1de54f6 
0x00000001          0 0x54bcf6 0x19
(XEN) [2021-06-14 23:02:42] [0x1243]      0 0x1de511c 
0x00000001          0 0x54c11c 0x19
(XEN) [2021-06-14 23:02:42] [0x1244]      0 0x1de4e68 
0x00000001          0 0x54c268 0x19
(XEN) [2021-06-14 23:02:42] [0x1245]      0 0x1de4e1e 
0x00000001          0 0x54c21e 0x19
(XEN) [2021-06-14 23:02:42] [0x1246]      0 0x1de4c9f 
0x00000001          0 0x54c49f 0x19
(XEN) [2021-06-14 23:02:42] [0x1247]      0 0x1de519b 
0x00000001          0 0x54c19b 0x19
(XEN) [2021-06-14 23:02:42] [0x1248]      0 0x1de4efc 
0x00000001          0 0x54c2fc 0x19
(XEN) [2021-06-14 23:02:42] [0x1249]      0 0x1de4bf1 
0x00000001          0 0x54c7f1 0x19
(XEN) [2021-06-14 23:02:42] [0x124a]      0 0x1de4a2f 
0x00000001          0 0x54c62f 0x19
(XEN) [2021-06-14 23:02:42] [0x124b]      0 0x1de46ac 
0x00000001          0 0x54caac 0x19
(XEN) [2021-06-14 23:02:42] [0x124c]      0 0x1de4f70 
0x00000001          0 0x54c370 0x19
(XEN) [2021-06-14 23:02:42] [0x124f]      0 0x1de4c2d 
0x00000001          0 0x54c42d 0x19
(XEN) [2021-06-14 23:02:42] [0x1250]      0 0x1de4dec 
0x00000001          0 0x54c5ec 0x19
(XEN) [2021-06-14 23:02:42] [0x1252]      0 0x1de5477 
0x00000001          0 0x54bc77 0x19
(XEN) [2021-06-14 23:02:42] [0x1253]      0 0x1de47bd 
0x00000001          0 0x54cbbd 0x19
(XEN) [2021-06-14 23:02:42] [0x1254]      0 0x1de4d79 
0x00000001          0 0x54c579 0x19
(XEN) [2021-06-14 23:02:42] [0x1258]      0 0x1de2f67 
0x00000001          0 0x54e367 0x19
(XEN) [2021-06-14 23:02:42] [0x1259]      0 0x1de46f3 
0x00000001          0 0x54caf3 0x19
(XEN) [2021-06-14 23:02:42] [0x125b]      0 0x1de5492 
0x00000001          0 0x54bc92 0x19
(XEN) [2021-06-14 23:02:42] [0x125e]      0 0x1de4bd0 
0x00000001          0 0x54c7d0 0x19
(XEN) [2021-06-14 23:02:42] [0x125f]      0 0x1de4ed6 
0x00000001          0 0x54c2d6 0x19
(XEN) [2021-06-14 23:02:42] [0x1260]      0 0x1de5496 
0x00000001          0 0x54bc96 0x19
(XEN) [2021-06-14 23:02:42] [0x1261]      0 0x1de4ebb 
0x00000001          0 0x54c2bb 0x19
(XEN) [2021-06-14 23:02:42] [0x1262]      0 0x1de554a 
0x00000001          0 0x54bd4a 0x19
(XEN) [2021-06-14 23:02:42] [0x1264]      0 0x1de50d6 
0x00000001          0 0x54c0d6 0x19
(XEN) [2021-06-14 23:02:42] [0x1267]      0 0x1de471a 
0x00000001          0 0x54cb1a 0x19
(XEN) [2021-06-14 23:02:42] [0x1269]      0 0x1de4a98 
0x00000001          0 0x54c698 0x19
(XEN) [2021-06-14 23:02:42] [0x126a]      0 0x1de4b60 
0x00000001          0 0x54c760 0x19
(XEN) [2021-06-14 23:02:42] [0x126c]      0 0x1de47a2 
0x00000001          0 0x54cba2 0x19
(XEN) [2021-06-14 23:02:42] [0x126e]      0 0x1de4bbb 
0x00000001          0 0x54c7bb 0x19
(XEN) [2021-06-14 23:02:42] [0x126f]      0 0x1de5524 
0x00000001          0 0x54bd24 0x19
(XEN) [2021-06-14 23:02:42] [0x1270]      0 0x1de51af 
0x00000001          0 0x54c1af 0x19
(XEN) [2021-06-14 23:02:42] [0x1271]      0 0x1de4b00 
0x00000001          0 0x54c700 0x19
(XEN) [2021-06-14 23:02:42] [0x1272]      0 0x1de5202 
0x00000001          0 0x54be02 0x19
(XEN) [2021-06-14 23:02:42] [0x1273]      0 0x1de4b43 
0x00000001          0 0x54c743 0x19
(XEN) [2021-06-14 23:02:42] [0x1274]      0 0x1de4659 
0x00000001          0 0x54ca59 0x19
(XEN) [2021-06-14 23:02:42] [0x1276]      0 0x1de4ef9 
0x00000001          0 0x54c2f9 0x19
(XEN) [2021-06-14 23:02:42] [0x1277]      0 0x1de4e70 
0x00000001          0 0x54c270 0x19
(XEN) [2021-06-14 23:02:42] [0x1278]      0 0x1de4adc 
0x00000001          0 0x54c6dc 0x19
(XEN) [2021-06-14 23:02:42] [0x1279]      0 0x1de4604 
0x00000001          0 0x54ca04 0x19
(XEN) [2021-06-14 23:02:42] [0x127b]      0 0x1de4d2a 
0x00000001          0 0x54c52a 0x19
(XEN) [2021-06-14 23:02:42] [0x127c]      0 0x1de4f84 
0x00000001          0 0x54c384 0x19
(XEN) [2021-06-14 23:02:42] [0x127d]      0 0x1de50a7 
0x00000001          0 0x54c0a7 0x19
(XEN) [2021-06-14 23:02:42] [0x127e]      0 0x1de462a 
0x00000001          0 0x54ca2a 0x19
(XEN) [2021-06-14 23:02:42] [0x127f]      0 0x1de4ead 
0x00000001          0 0x54c2ad 0x19
(XEN) [2021-06-14 23:02:42] [0x1280]      0 0x1de543e 
0x00000001          0 0x54bc3e 0x19
(XEN) [2021-06-14 23:02:42] [0x1283]      0 0x1de508b 
0x00000001          0 0x54c08b 0x19
(XEN) [2021-06-14 23:02:42] [0x1285]      0 0x1de51fe 
0x00000001          0 0x54c1fe 0x19
(XEN) [2021-06-14 23:02:42] [0x1286]      0 0x1de51e6 
0x00000001          0 0x54c1e6 0x19
(XEN) [2021-06-14 23:02:43] [0x1287]      0 0x1de4e7c 
0x00000001          0 0x54c27c 0x19
(XEN) [2021-06-14 23:02:43] [0x1289]      0 0x1de4d7d 
0x00000001          0 0x54c57d 0x19
(XEN) [2021-06-14 23:02:43] [0x128a]      0 0x1de4f35 
0x00000001          0 0x54c335 0x19
(XEN) [2021-06-14 23:02:43] [0x128c]      0 0x1de4eae 
0x00000001          0 0x54c2ae 0x19
(XEN) [2021-06-14 23:02:43] [0x128d]      0 0x1de4fc6 
0x00000001          0 0x54c3c6 0x19
(XEN) [2021-06-14 23:02:43] [0x128e]      0 0x1de5251 
0x00000001          0 0x54be51 0x19
(XEN) [2021-06-14 23:02:43] [0x1291]      0 0x1de50d5 
0x00000001          0 0x54c0d5 0x19
(XEN) [2021-06-14 23:02:43] [0x1293]      0 0x1de54fe 
0x00000001          0 0x54bcfe 0x19
(XEN) [2021-06-14 23:02:43] [0x1294]      0 0x1de4ff7 
0x00000001          0 0x54c3f7 0x19
(XEN) [2021-06-14 23:02:43] [0x1295]      0 0x1de4be5 
0x00000001          0 0x54c7e5 0x19
(XEN) [2021-06-14 23:02:43] [0x1296]      0 0x1de55e9 
0x00000001          0 0x54bde9 0x19
(XEN) [2021-06-14 23:02:43] [0x1297]      0 0x1de5031 
0x00000001          0 0x54c031 0x19
(XEN) [2021-06-14 23:02:43] [0x1298]      0 0x1de4f11 
0x00000001          0 0x54c311 0x19
(XEN) [2021-06-14 23:02:43] [0x1299]      0 0x1de4f7c 
0x00000001          0 0x54c37c 0x19
(XEN) [2021-06-14 23:02:43] [0x129b]      0 0x1de46ce 
0x00000001          0 0x54cace 0x19
(XEN) [2021-06-14 23:02:43] [0x129c]      0 0x1de4b4a 
0x00000001          0 0x54c74a 0x19
(XEN) [2021-06-14 23:02:43] [0x129d]      0 0x1de2f53 
0x00000001          0 0x54e353 0x19
(XEN) [2021-06-14 23:02:43] [0x129f]      0 0x1de4614 
0x00000001          0 0x54ca14 0x19
(XEN) [2021-06-14 23:02:43] [0x12a0]      0 0x1de2f54 
0x00000001          0 0x54e354 0x19
(XEN) [2021-06-14 23:02:43] [0x12a1]      0 0x1de46d5 
0x00000001          0 0x54cad5 0x19
(XEN) [2021-06-14 23:02:43] [0x12a2]      0 0x1de5499 
0x00000001          0 0x54bc99 0x19
(XEN) [2021-06-14 23:02:43] [0x12a3]      0 0x1de509e 
0x00000001          0 0x54c09e 0x19
(XEN) [2021-06-14 23:02:43] [0x12a5]      0 0x1de55f5 
0x00000001          0 0x54bdf5 0x19
(XEN) [2021-06-14 23:02:43] [0x12a6]      0 0x1de549d 
0x00000001          0 0x54bc9d 0x19
(XEN) [2021-06-14 23:02:43] [0x12a8]      0 0x1de4d8b 
0x00000001          0 0x54c58b 0x19
(XEN) [2021-06-14 23:02:43] [0x12a9]      0 0x1de4cf1 
0x00000001          0 0x54c4f1 0x19
(XEN) [2021-06-14 23:02:43] [0x12aa]      0 0x1de4f8a 
0x00000001          0 0x54c38a 0x19
(XEN) [2021-06-14 23:02:43] [0x12ac]      0 0x1de4731 
0x00000001          0 0x54cb31 0x19
(XEN) [2021-06-14 23:02:43] [0x12ad]      0 0x1de4dc3 
0x00000001          0 0x54c5c3 0x19
(XEN) [2021-06-14 23:02:43] [0x12af]      0 0x1de2f57 
0x00000001          0 0x54e357 0x19
(XEN) [2021-06-14 23:02:43] [0x12b2]      0 0x1de4b37 
0x00000001          0 0x54c737 0x19
(XEN) [2021-06-14 23:02:43] [0x12b3]      0 0x1de4f88 
0x00000001          0 0x54c388 0x19
(XEN) [2021-06-14 23:02:43] [0x12b4]      0 0x1de5020 
0x00000001          0 0x54c020 0x19
(XEN) [2021-06-14 23:02:43] [0x12b5]      0 0x1de4c4d 
0x00000001          0 0x54c44d 0x19
(XEN) [2021-06-14 23:02:43] [0x12b6]      0 0x1de4a58 
0x00000001          0 0x54c658 0x19
(XEN) [2021-06-14 23:02:43] [0x12b7]      0 0x1de5036 
0x00000001          0 0x54c036 0x19
(XEN) [2021-06-14 23:02:43] [0x12b8]      0 0x1de511b 
0x00000001          0 0x54c11b 0x19
(XEN) [2021-06-14 23:02:43] [0x12b9]      0 0x1de5483 
0x00000001          0 0x54bc83 0x19
(XEN) [2021-06-14 23:02:43] [0x12ba]      0 0x1de553f 
0x00000001          0 0x54bd3f 0x19
(XEN) [2021-06-14 23:02:43] [0x12bb]      0 0x1de4791 
0x00000001          0 0x54cb91 0x19
(XEN) [2021-06-14 23:02:43] [0x12bd]      0 0x1de4e57 
0x00000001          0 0x54c257 0x19
(XEN) [2021-06-14 23:02:43] [0x12c0]      0 0x1de46a6 
0x00000001          0 0x54caa6 0x19
(XEN) [2021-06-14 23:02:43] [0x12c3]      0 0x1de4ca0 
0x00000001          0 0x54c4a0 0x19
(XEN) [2021-06-14 23:02:43] [0x12c4]      0 0x1de46a0 
0x00000001          0 0x54caa0 0x19
(XEN) [2021-06-14 23:02:43] [0x12c6]      0 0x1de5407 
0x00000001          0 0x54bc07 0x19
(XEN) [2021-06-14 23:02:43] [0x12c8]      0 0x1de5012 
0x00000001          0 0x54c012 0x19
(XEN) [2021-06-14 23:02:43] [0x12c9]      0 0x1de5447 
0x00000001          0 0x54bc47 0x19
(XEN) [2021-06-14 23:02:43] [0x12cd]      0 0x1de4a37 
0x00000001          0 0x54c637 0x19
(XEN) [2021-06-14 23:02:43] [0x12ce]      0 0x1de4a91 
0x00000001          0 0x54c691 0x19
(XEN) [2021-06-14 23:02:43] [0x12cf]      0 0x1de4ab9 
0x00000001          0 0x54c6b9 0x19
(XEN) [2021-06-14 23:02:43] [0x12d0]      0 0x1de4eff 
0x00000001          0 0x54c2ff 0x19
(XEN) [2021-06-14 23:02:43] [0x12d1]      0 0x1de51e1 
0x00000001          0 0x54c1e1 0x19
(XEN) [2021-06-14 23:02:43] [0x12d2]      0 0x1de5551 
0x00000001          0 0x54bd51 0x19
(XEN) [2021-06-14 23:02:43] [0x12d3]      0 0x1de47eb 
0x00000001          0 0x54cbeb 0x19
(XEN) [2021-06-14 23:02:43] [0x12d4]      0 0x1de5176 
0x00000001          0 0x54c176 0x19
(XEN) [2021-06-14 23:02:43] [0x12d7]      0 0x1de4e01 
0x00000001          0 0x54c201 0x19
(XEN) [2021-06-14 23:02:43] [0x12d8]      0 0x1de5554 
0x00000001          0 0x54bd54 0x19
(XEN) [2021-06-14 23:02:43] [0x12d9]      0 0x1de4ea4 
0x00000001          0 0x54c2a4 0x19
(XEN) [2021-06-14 23:02:43] [0x12da]      0 0x1de5489 
0x00000001          0 0x54bc89 0x19
(XEN) [2021-06-14 23:02:43] [0x12db]      0 0x1de4f22 
0x00000001          0 0x54c322 0x19
(XEN) [2021-06-14 23:02:43] [0x12dc]      0 0x1de4c69 
0x00000001          0 0x54c469 0x19
(XEN) [2021-06-14 23:02:43] [0x12dd]      0 0x1de5462 
0x00000001          0 0x54bc62 0x19
(XEN) [2021-06-14 23:02:43] [0x12e0]      0 0x1de51ff 
0x00000001          0 0x54c1ff 0x19
(XEN) [2021-06-14 23:02:43] [0x12e1]      0 0x1de4b50 
0x00000001          0 0x54c750 0x19
(XEN) [2021-06-14 23:02:43] [0x12e2]      0 0x1de4b92 
0x00000001          0 0x54c792 0x19
(XEN) [2021-06-14 23:02:43] [0x12e3]      0 0x1de4df0 
0x00000001          0 0x54c5f0 0x19
(XEN) [2021-06-14 23:02:43] [0x12e5]      0 0x1de55da 
0x00000001          0 0x54bdda 0x19
(XEN) [2021-06-14 23:02:43] [0x12e6]      0 0x1de4e14 
0x00000001          0 0x54c214 0x19
(XEN) [2021-06-14 23:02:43] [0x12e7]      0 0x1de49f8 
0x00000001          0 0x54c9f8 0x19
(XEN) [2021-06-14 23:02:43] [0x12eb]      0 0x1de4ced 
0x00000001          0 0x54c4ed 0x19
(XEN) [2021-06-14 23:02:43] [0x12ec]      0 0x1de4764 
0x00000001          0 0x54cb64 0x19
(XEN) [2021-06-14 23:02:43] [0x12ed]      0 0x1de4c29 
0x00000001          0 0x54c429 0x19
(XEN) [2021-06-14 23:02:43] [0x12ef]      0 0x1de5497 
0x00000001          0 0x54bc97 0x19
(XEN) [2021-06-14 23:02:43] [0x12f0]      0 0x1de5132 
0x00000001          0 0x54c132 0x19
(XEN) [2021-06-14 23:02:43] [0x12f1]      0 0x1de50f0 
0x00000001          0 0x54c0f0 0x19
(XEN) [2021-06-14 23:02:43] [0x12f2]      0 0x1de4f64 
0x00000001          0 0x54c364 0x19
(XEN) [2021-06-14 23:02:43] [0x12f7]      0 0x1de4758 
0x00000001          0 0x54cb58 0x19
(XEN) [2021-06-14 23:02:43] [0x12fb]      0 0x1de5449 
0x00000001          0 0x54bc49 0x19
(XEN) [2021-06-14 23:02:43] [0x12fd]      0 0x1de5520 
0x00000001          0 0x54bd20 0x19
(XEN) [2021-06-14 23:02:43] [0x12fe]      0 0x1de4625 
0x00000001          0 0x54ca25 0x19
(XEN) [2021-06-14 23:02:43] [0x1300]      0 0x1de4de9 
0x00000001          0 0x54c5e9 0x19
(XEN) [2021-06-14 23:02:43] [0x1301]      0 0x1de4f77 
0x00000001          0 0x54c377 0x19
(XEN) [2021-06-14 23:02:43] [0x1303]      0 0x1de4e95 
0x00000001          0 0x54c295 0x19
(XEN) [2021-06-14 23:02:43] [0x1304]      0 0x1de4d1e 
0x00000001          0 0x54c51e 0x19
(XEN) [2021-06-14 23:02:43] [0x1305]      0 0x1de5074 
0x00000001          0 0x54c074 0x19
(XEN) [2021-06-14 23:02:43] [0x1306]      0 0x1de4b0c 
0x00000001          0 0x54c70c 0x19
(XEN) [2021-06-14 23:02:43] [0x1307]      0 0x1de51d3 
0x00000001          0 0x54c1d3 0x19
(XEN) [2021-06-14 23:02:43] [0x1308]      0 0x1de4651 
0x00000001          0 0x54ca51 0x19
(XEN) [2021-06-14 23:02:43] [0x130a]      0 0x1de4b75 
0x00000001          0 0x54c775 0x19
(XEN) [2021-06-14 23:02:43] [0x130b]      0 0x1de4cee 
0x00000001          0 0x54c4ee 0x19
(XEN) [2021-06-14 23:02:43] [0x130d]      0 0x1de50d7 
0x00000001          0 0x54c0d7 0x19
(XEN) [2021-06-14 23:02:43] [0x130f]      0 0x1de4e9f 
0x00000001          0 0x54c29f 0x19
(XEN) [2021-06-14 23:02:43] [0x1310]      0 0x1de4a01 
0x00000001          0 0x54c601 0x19
(XEN) [2021-06-14 23:02:43] [0x1311]      0 0x1de4f41 
0x00000001          0 0x54c341 0x19
(XEN) [2021-06-14 23:02:43] [0x1314]      0 0x1de4c60 
0x00000001          0 0x54c460 0x19
(XEN) [2021-06-14 23:02:43] [0x1315]      0 0x1de4b58 
0x00000001          0 0x54c758 0x19
(XEN) [2021-06-14 23:02:43] [0x1318]      0 0x1de5237 
0x00000001          0 0x54be37 0x19
(XEN) [2021-06-14 23:02:43] [0x131b]      0 0x1de4eea 
0x00000001          0 0x54c2ea 0x19
(XEN) [2021-06-14 23:02:43] [0x131e]      0 0x1de55d0 
0x00000001          0 0x54bdd0 0x19
(XEN) [2021-06-14 23:02:43] [0x131f]      0 0x1de5464 
0x00000001          0 0x54bc64 0x19
(XEN) [2021-06-14 23:02:43] [0x1321]      0 0x1de4662 
0x00000001          0 0x54ca62 0x19
(XEN) [2021-06-14 23:02:43] [0x1324]      0 0x1de4e9b 
0x00000001          0 0x54c29b 0x19
(XEN) [2021-06-14 23:02:43] [0x1325]      0 0x1de4aaf 
0x00000001          0 0x54c6af 0x19
(XEN) [2021-06-14 23:02:43] [0x1327]      0 0x1de50eb 
0x00000001          0 0x54c0eb 0x19
(XEN) [2021-06-14 23:02:43] [0x1328]      0 0x1de54e2 
0x00000001          0 0x54bce2 0x19
(XEN) [2021-06-14 23:02:43] [0x1329]      0 0x1de5538 
0x00000001          0 0x54bd38 0x19
(XEN) [2021-06-14 23:02:43] [0x132b]      0 0x1de479c 
0x00000001          0 0x54cb9c 0x19
(XEN) [2021-06-14 23:02:43] [0x132f]      0 0x1de46aa 
0x00000001          0 0x54caaa 0x19
(XEN) [2021-06-14 23:02:43] [0x1335]      0 0x1de5232 
0x00000001          0 0x54be32 0x19
(XEN) [2021-06-14 23:02:43] [0x1336]      0 0x1de5102 
0x00000001          0 0x54c102 0x19
(XEN) [2021-06-14 23:02:43] [0x1337]      0 0x1de4c21 
0x00000001          0 0x54c421 0x19
(XEN) [2021-06-14 23:02:43] [0x1338]      0 0x1de4c86 
0x00000001          0 0x54c486 0x19
(XEN) [2021-06-14 23:02:43] [0x133a]      0 0x1de4c97 
0x00000001          0 0x54c497 0x19
(XEN) [2021-06-14 23:02:43] [0x133b]      0 0x1de5165 
0x00000001          0 0x54c165 0x19
(XEN) [2021-06-14 23:02:43] [0x133c]      0 0x1de4a28 
0x00000001          0 0x54c628 0x19
(XEN) [2021-06-14 23:02:43] [0x133e]      0 0x1de4d26 
0x00000001          0 0x54c526 0x19
(XEN) [2021-06-14 23:02:43] [0x1340]      0 0x1de4d64 
0x00000001          0 0x54c564 0x19
(XEN) [2021-06-14 23:02:43] [0x1343]      0 0x1de4ef5 
0x00000001          0 0x54c2f5 0x19
(XEN) [2021-06-14 23:02:43] [0x1344]      0 0x1de4a9d 
0x00000001          0 0x54c69d 0x19
(XEN) [2021-06-14 23:02:43] [0x1345]      0 0x1de4636 
0x00000001          0 0x54ca36 0x19
(XEN) [2021-06-14 23:02:43] [0x1346]      0 0x1de46d4 
0x00000001          0 0x54cad4 0x19
(XEN) [2021-06-14 23:02:43] [0x1347]      0 0x1de54c4 
0x00000001          0 0x54bcc4 0x19
(XEN) [2021-06-14 23:02:43] [0x1348]      0 0x1de4d1c 
0x00000001          0 0x54c51c 0x19
(XEN) [2021-06-14 23:02:43] [0x134c]      0 0x1de4eb6 
0x00000001          0 0x54c2b6 0x19
(XEN) [2021-06-14 23:02:43] [0x134f]      0 0x1de4a0a 
0x00000001          0 0x54c60a 0x19
(XEN) [2021-06-14 23:02:43] [0x1350]      0 0x1de4d0b 
0x00000001          0 0x54c50b 0x19
(XEN) [2021-06-14 23:02:44] [0x1353]      0 0x1de475f 
0x00000001          0 0x54cb5f 0x19
(XEN) [2021-06-14 23:02:44] [0x1355]      0 0x1de4ee3 
0x00000001          0 0x54c2e3 0x19
(XEN) [2021-06-14 23:02:44] [0x1357]      0 0x1de4638 
0x00000001          0 0x54ca38 0x19
(XEN) [2021-06-14 23:02:44] [0x1359]      0 0x1de46ca 
0x00000001          0 0x54caca 0x19
(XEN) [2021-06-14 23:02:44] [0x135b]      0 0x1de4c12 
0x00000001          0 0x54c412 0x19
(XEN) [2021-06-14 23:02:44] [0x135c]      0 0x1de4fe7 
0x00000001          0 0x54c3e7 0x19
(XEN) [2021-06-14 23:02:44] [0x135d]      0 0x1de5239 
0x00000001          0 0x54be39 0x19
(XEN) [2021-06-14 23:02:44] [0x1360]      0 0x1de5121 
0x00000001          0 0x54c121 0x19
(XEN) [2021-06-14 23:02:44] [0x1362]      0 0x1de4e3c 
0x00000001          0 0x54c23c 0x19
(XEN) [2021-06-14 23:02:44] [0x1363]      0 0x1de4c1e 
0x00000001          0 0x54c41e 0x19
(XEN) [2021-06-14 23:02:44] [0x1364]      0 0x1de4b71 
0x00000001          0 0x54c771 0x19
(XEN) [2021-06-14 23:02:44] [0x1365]      0 0x1de4fc5 
0x00000001          0 0x54c3c5 0x19
(XEN) [2021-06-14 23:02:44] [0x1366]      0 0x1de4781 
0x00000001          0 0x54cb81 0x19
(XEN) [2021-06-14 23:02:44] [0x1367]      0 0x1de5404 
0x00000001          0 0x54bc04 0x19
(XEN) [2021-06-14 23:02:44] [0x136b]      0 0x1de547d 
0x00000001          0 0x54bc7d 0x19
(XEN) [2021-06-14 23:02:44] [0x136d]      0 0x1de4bef 
0x00000001          0 0x54c7ef 0x19
(XEN) [2021-06-14 23:02:44] [0x1371]      0 0x1de4acb 
0x00000001          0 0x54c6cb 0x19
(XEN) [2021-06-14 23:02:44] [0x1372]      0 0x1de4a04 
0x00000001          0 0x54c604 0x19
(XEN) [2021-06-14 23:02:44] [0x1377]      0 0x1de4e93 
0x00000001          0 0x54c293 0x19
(XEN) [2021-06-14 23:02:44] [0x1378]      0 0x1de4be3 
0x00000001          0 0x54c7e3 0x19
(XEN) [2021-06-14 23:02:44] [0x1379]      0 0x1de5455 
0x00000001          0 0x54bc55 0x19
(XEN) [2021-06-14 23:02:44] [0x137b]      0 0x1de4fd6 
0x00000001          0 0x54c3d6 0x19
(XEN) [2021-06-14 23:02:44] [0x137d]      0 0x1de4c57 
0x00000001          0 0x54c457 0x19
(XEN) [2021-06-14 23:02:44] [0x137e]      0 0x1de5058 
0x00000001          0 0x54c058 0x19
(XEN) [2021-06-14 23:02:44] [0x1382]      0 0x1de5226 
0x00000001          0 0x54be26 0x19
(XEN) [2021-06-14 23:02:44] [0x1383]      0 0x1de5225 
0x00000001          0 0x54be25 0x19
(XEN) [2021-06-14 23:02:44] [0x1384]      0 0x1de54d0 
0x00000001          0 0x54bcd0 0x19
(XEN) [2021-06-14 23:02:44] [0x1385]      0 0x1de521b 
0x00000001          0 0x54be1b 0x19
(XEN) [2021-06-14 23:02:44] [0x1386]      0 0x1de5054 
0x00000001          0 0x54c054 0x19
(XEN) [2021-06-14 23:02:44] [0x1388]      0 0x1de5424 
0x00000001          0 0x54bc24 0x19
(XEN) [2021-06-14 23:02:44] [0x138b]      0 0x1de5222 
0x00000001          0 0x54be22 0x19
(XEN) [2021-06-14 23:02:44] [0x138e]      0 0x1de51be 
0x00000001          0 0x54c1be 0x19
(XEN) [2021-06-14 23:02:44]       -------- active -------- -------- 
shared --------
(XEN) [2021-06-14 23:02:44] [ref] localdom mfn      pin localdom 
gmfn     flags
(XEN) [2021-06-14 23:02:44] grant-table for remote d6 (v1)
(XEN) [2021-06-14 23:02:44]   7 frames (64 max), 0 maptrack frames (1024 
max)
(XEN) [2021-06-14 23:02:44] [0x000]      0 0xb476b0 0x00000002          
0 0x0fefff 0x19
(XEN) [2021-06-14 23:02:44] [0x12f]      0 0xfbfd15 0x00000001          
0 0x13fd15 0x19
(XEN) [2021-06-14 23:02:44] [0x133]      0 0xfbfd0c 0x00000001          
0 0x13fd0c 0x19
(XEN) [2021-06-14 23:02:44] [0x1fe]      0 0xfbdb48 0x00000001          
0 0x13db48 0x19
(XEN) [2021-06-14 23:02:44] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:44] [0x500]      0 0xfbc85c 0x00000001          
0 0x13c85c 0x19
(XEN) [2021-06-14 23:02:44] [0x501]      0 0xfbc85b 0x00000001          
0 0x13c85b 0x19
(XEN) [2021-06-14 23:02:44] [0x502]      0 0xfbc858 0x00000001          
0 0x13c858 0x19
(XEN) [2021-06-14 23:02:44] [0x503]      0 0xfbc857 0x00000001          
0 0x13c857 0x19
(XEN) [2021-06-14 23:02:44] [0x504]      0 0xfbc9d8 0x00000001          
0 0x13c9d8 0x19
(XEN) [2021-06-14 23:02:44] [0x505]      0 0xfbc9d9 0x00000001          
0 0x13c9d9 0x19
(XEN) [2021-06-14 23:02:44] [0x506]      0 0xfbc9dc 0x00000001          
0 0x13c9dc 0x19
(XEN) [2021-06-14 23:02:44] [0x507]      0 0xfbc9dd 0x00000001          
0 0x13c9dd 0x19
(XEN) [2021-06-14 23:02:44] [0x508]      0 0xfbc9de 0x00000001          
0 0x13c9de 0x19
(XEN) [2021-06-14 23:02:44] [0x509]      0 0xfbca98 0x00000001          
0 0x13ca98 0x19
(XEN) [2021-06-14 23:02:44] [0x50a]      0 0xfbca9a 0x00000001          
0 0x13ca9a 0x19
(XEN) [2021-06-14 23:02:44] [0x50b]      0 0xfbca9c 0x00000001          
0 0x13ca9c 0x19
(XEN) [2021-06-14 23:02:44] [0x50c]      0 0xfbca9e 0x00000001          
0 0x13ca9e 0x19
(XEN) [2021-06-14 23:02:44] [0x50d]      0 0xfbcf48 0x00000001          
0 0x13cf48 0x19
(XEN) [2021-06-14 23:02:44] [0x50e]      0 0xfbcf4a 0x00000001          
0 0x13cf4a 0x19
(XEN) [2021-06-14 23:02:44] [0x50f]      0 0xfbcf4b 0x00000001          
0 0x13cf4b 0x19
(XEN) [2021-06-14 23:02:44] [0x510]      0 0xfbcf4d 0x00000001          
0 0x13cf4d 0x19
(XEN) [2021-06-14 23:02:44] [0x511]      0 0xfbcf4e 0x00000001          
0 0x13cf4e 0x19
(XEN) [2021-06-14 23:02:44] [0x512]      0 0xfbcf69 0x00000001          
0 0x13cf69 0x19
(XEN) [2021-06-14 23:02:44] [0x513]      0 0xfbcf6a 0x00000001          
0 0x13cf6a 0x19
(XEN) [2021-06-14 23:02:44] [0x5b9]      0 0xfbdb42 0x00000001          
0 0x13db42 0x19
(XEN) [2021-06-14 23:02:44] [0x5c7]      0 0xfbdb41 0x00000001          
0 0x13db41 0x19
(XEN) [2021-06-14 23:02:44] [0x5e1]      0 0xfbfd17 0x00000001          
0 0x13fd17 0x19
(XEN) [2021-06-14 23:02:44] [0x64b]      0 0xfbfe45 0x00000001          
0 0x13fe45 0x19
(XEN) [2021-06-14 23:02:44] [0x658]      0 0xfbf495 0x00000001          
0 0x13f495 0x19
(XEN) [2021-06-14 23:02:44] [0x659]      0 0xfbfd27 0x00000001          
0 0x13fd27 0x19
(XEN) [2021-06-14 23:02:44] [0x65f]      0 0xfbfd1c 0x00000001          
0 0x13fd1c 0x19
(XEN) [2021-06-14 23:02:44] [0x681]      0 0xfbf496 0x00000001          
0 0x13f496 0x19
(XEN) [2021-06-14 23:02:44] [0x6a2]      0 0xfbfd19 0x00000001          
0 0x13fd19 0x19
(XEN) [2021-06-14 23:02:44] [0x6a5]      0 0xfbfd1a 0x00000001          
0 0x13fd1a 0x19
(XEN) [2021-06-14 23:02:44] [0x6bd]      0 0xfbfd18 0x00000001          
0 0x13fd18 0x19
(XEN) [2021-06-14 23:02:44] [0x6cd]      0 0xfbdb49 0x00000001          
0 0x13db49 0x19
(XEN) [2021-06-14 23:02:44] [0x721]      0 0xfbfe42 0x00000001          
0 0x13fe42 0x19
(XEN) [2021-06-14 23:02:44] [0x773]      0 0xfbfd1e 0x00000001          
0 0x13fd1e 0x19
(XEN) [2021-06-14 23:02:44] [0x81c]      0 0xfbf7a5 0x00000001          
0 0x13f7a5 0x19
(XEN) [2021-06-14 23:02:44] [0x81f]      0 0xfbfd28 0x00000001          
0 0x13fd28 0x19
(XEN) [2021-06-14 23:02:44] [0x868]      0 0xfbf492 0x00000001          
0 0x13f492 0x19
(XEN) [2021-06-14 23:02:44] [0x8fc]      0 0xfbfe41 0x00000001          
0 0x13fe41 0x19
(XEN) [2021-06-14 23:02:44] [0x951]      0 0xfbf3b0 0x00000001          
0 0x13f3b0 0x19
(XEN) [2021-06-14 23:02:44] [0x95f]      0 0xfbfd1d 0x00000001          
0 0x13fd1d 0x19
(XEN) [2021-06-14 23:02:44] [0x974]      0 0xfbfd20 0x00000001          
0 0x13fd20 0x19
(XEN) [2021-06-14 23:02:44] [0x975]      0 0xfbfd22 0x00000001          
0 0x13fd22 0x19
(XEN) [2021-06-14 23:02:44] [0x97e]      0 0xfbfe43 0x00000001          
0 0x13fe43 0x19
(XEN) [2021-06-14 23:02:44] [0x980]      0 0xfbfd5e 0x00000001          
0 0x13fd5e 0x19
(XEN) [2021-06-14 23:02:44] [0x9d8]      0 0xfbf72e 0x00000001          
0 0x13f72e 0x19
(XEN) [2021-06-14 23:02:44] [0x9de]      0 0xfbf491 0x00000001          
0 0x13f491 0x19
(XEN) [2021-06-14 23:02:44] [0x9ef]      0 0xfbfd5f 0x00000001          
0 0x13fd5f 0x19
(XEN) [2021-06-14 23:02:44] [0xa04]      0 0xfbfe7c 0x00000001          
0 0x13fe7c 0x19
(XEN) [2021-06-14 23:02:44] [0xa95]      0 0xfbf7a6 0x00000001          
0 0x13f7a6 0x19
(XEN) [2021-06-14 23:02:44] [0xaa3]      0 0xfbfd21 0x00000001          
0 0x13fd21 0x19
(XEN) [2021-06-14 23:02:44] [0xabf]      0 0xfbfc70 0x00000001          
0 0x13fc70 0x19
(XEN) [2021-06-14 23:02:44] [0xaed]      0 0xfbfd16 0x00000001          
0 0x13fd16 0x19
(XEN) [2021-06-14 23:02:44] [0xaf3]      0 0xfbf48c 0x00000001          
0 0x13f48c 0x19
(XEN) [2021-06-14 23:02:44] [0xb03]      0 0xfbf48f 0x00000001          
0 0x13f48f 0x19
(XEN) [2021-06-14 23:02:44] [0xb19]      0 0xfbdb40 0x00000001          
0 0x13db40 0x19
(XEN) [2021-06-14 23:02:44] [0xb2a]      0 0xfbf48d 0x00000001          
0 0x13f48d 0x19
(XEN) [2021-06-14 23:02:44] [0xb60]      0 0xfbfd14 0x00000001          
0 0x13fd14 0x19
(XEN) [2021-06-14 23:02:44] [0xb64]      0 0xfbfd7f 0x00000001          
0 0x13fd7f 0x19
(XEN) [2021-06-14 23:02:44] [0xb75]      0 0xfbfd1f 0x00000001          
0 0x13fd1f 0x19
(XEN) [2021-06-14 23:02:44] [0xbc3]      0 0xfbf7aa 0x00000001          
0 0x13f7aa 0x19
(XEN) [2021-06-14 23:02:44] [0xbd3]      0 0xfbf7a8 0x00000001          
0 0x13f7a8 0x19
(XEN) [2021-06-14 23:02:44] [0xbd8]      0 0xfbf7a7 0x00000001          
0 0x13f7a7 0x19
(XEN) [2021-06-14 23:02:44] [0xbe0]      0 0xfbdb47 0x00000001          
0 0x13db47 0x19
(XEN) [2021-06-14 23:02:44] [0xbe1]      0 0xfbf490 0x00000001          
0 0x13f490 0x19
(XEN) [2021-06-14 23:02:44] [0xbec]      0 0xfbf7ff 0x00000001          
0 0x13f7ff 0x19
(XEN) [2021-06-14 23:02:44] [0xc07]      0 0xfbf800 0x00000001          
0 0x13f800 0x19
(XEN) [2021-06-14 23:02:44]       -------- active -------- -------- 
shared --------
(XEN) [2021-06-14 23:02:44] [ref] localdom mfn      pin localdom 
gmfn     flags
(XEN) [2021-06-14 23:02:44] grant-table for remote d7 (v1)
(XEN) [2021-06-14 23:02:44]   9 frames (512 max), 0 maptrack frames 
(2048 max)
(XEN) [2021-06-14 23:02:44] [0x000]      0 0x15ba8cd 0x00000002          
0 0x0fefff 0x19
(XEN) [2021-06-14 23:02:44] [0x008]      0 0x16012cf 0x00000001          
0 0x1012cf 0x19
(XEN) [2021-06-14 23:02:44] [0x009]      0 0x16012c2 0x00000001          
0 0x1012c2 0x19
(XEN) [2021-06-14 23:02:44] [0x00a]      0 0x16012c1 0x00000001          
0 0x1012c1 0x19
(XEN) [2021-06-14 23:02:44] [0x00b]      0 0x16012bf 0x00000001          
0 0x1012bf 0x19
(XEN) [2021-06-14 23:02:44] [0x00c]      0 0x16012bd 0x00000001          
0 0x1012bd 0x19
(XEN) [2021-06-14 23:02:44] [0x00d]      0 0x16012bb 0x00000001          
0 0x1012bb 0x19
(XEN) [2021-06-14 23:02:44] [0x00e]      0 0x16012ae 0x00000001          
0 0x1012ae 0x19
(XEN) [2021-06-14 23:02:44] [0x00f]      0 0x16012ac 0x00000001          
0 0x1012ac 0x19
(XEN) [2021-06-14 23:02:44] [0x010]      0 0x16012a8 0x00000001          
0 0x1012a8 0x19
(XEN) [2021-06-14 23:02:44] [0x011]      0 0x16012a4 0x00000001          
0 0x1012a4 0x19
(XEN) [2021-06-14 23:02:44] [0x012]      0 0x16012a3 0x00000001          
0 0x1012a3 0x19
(XEN) [2021-06-14 23:02:44] [0x013]      0 0x16012a1 0x00000001          
0 0x1012a1 0x19
(XEN) [2021-06-14 23:02:44] [0x014]      0 0x16070e8 0x00000001          
0 0x1070e8 0x19
(XEN) [2021-06-14 23:02:44] [0x016]      0 0x1607062 0x00000001          
0 0x107062 0x19
(XEN) [2021-06-14 23:02:44] [0x14a]      0 0x160e30c 0x00000001          
0 0x10e30c 0x19
(XEN) [2021-06-14 23:02:44] [0x14b]      0 0x160e30b 0x00000001          
0 0x10e30b 0x19
(XEN) [2021-06-14 23:02:44] [0x14c]      0 0x160e30a 0x00000001          
0 0x10e30a 0x19
(XEN) [2021-06-14 23:02:44] [0x14e]      0 0x160e308 0x00000001          
0 0x10e308 0x19
(XEN) [2021-06-14 23:02:45] [0x150]      0 0x160e306 0x00000001          
0 0x10e306 0x19
(XEN) [2021-06-14 23:02:45] [0x152]      0 0x160e304 0x00000001          
0 0x10e304 0x19
(XEN) [2021-06-14 23:02:45] [0x153]      0 0x160e303 0x00000001          
0 0x10e303 0x19
(XEN) [2021-06-14 23:02:45] [0x157]      0 0x160e2ff 0x00000001          
0 0x10e2ff 0x19
(XEN) [2021-06-14 23:02:45] [0x159]      0 0x160e2fd 0x00000001          
0 0x10e2fd 0x19
(XEN) [2021-06-14 23:02:45] [0x15f]      0 0x160e2f7 0x00000001          
0 0x10e2f7 0x19
(XEN) [2021-06-14 23:02:45] [0x160]      0 0x160e2f6 0x00000001          
0 0x10e2f6 0x19
(XEN) [2021-06-14 23:02:45] [0x161]      0 0x160e2f5 0x00000001          
0 0x10e2f5 0x19
(XEN) [2021-06-14 23:02:45] [0x162]      0 0x160e2f4 0x00000001          
0 0x10e2f4 0x19
(XEN) [2021-06-14 23:02:45] [0x163]      0 0x160e2f3 0x00000001          
0 0x10e2f3 0x19
(XEN) [2021-06-14 23:02:45] [0x165]      0 0x160e2f0 0x00000001          
0 0x10e2f0 0x19
(XEN) [2021-06-14 23:02:45] [0x166]      0 0x160e2ef 0x00000001          
0 0x10e2ef 0x19
(XEN) [2021-06-14 23:02:45] [0x168]      0 0x160e2ed 0x00000001          
0 0x10e2ed 0x19
(XEN) [2021-06-14 23:02:45] [0x169]      0 0x160e2ec 0x00000001          
0 0x10e2ec 0x19
(XEN) [2021-06-14 23:02:45] [0x16a]      0 0x160e2eb 0x00000001          
0 0x10e2eb 0x19
(XEN) [2021-06-14 23:02:45] [0x16b]      0 0x160e2ea 0x00000001          
0 0x10e2ea 0x19
(XEN) [2021-06-14 23:02:45] [0x16c]      0 0x160e2e9 0x00000001          
0 0x10e2e9 0x19
(XEN) [2021-06-14 23:02:45] [0x16d]      0 0x160e2e8 0x00000001          
0 0x10e2e8 0x19
(XEN) [2021-06-14 23:02:45] [0x16e]      0 0x160e2e7 0x00000001          
0 0x10e2e7 0x19
(XEN) [2021-06-14 23:02:45] [0x1cb]      0 0x1605b36 0x00000001          
0 0x105b36 0x19
(XEN) [2021-06-14 23:02:45] [0x1cd]      0 0x1605b34 0x00000001          
0 0x105b34 0x19
(XEN) [2021-06-14 23:02:45] [0x1cf]      0 0x1605b32 0x00000001          
0 0x105b32 0x19
(XEN) [2021-06-14 23:02:45] [0x1d0]      0 0x1605b31 0x00000001          
0 0x105b31 0x19
(XEN) [2021-06-14 23:02:45] [0x1d1]      0 0x1605b30 0x00000001          
0 0x105b30 0x19
(XEN) [2021-06-14 23:02:45] [0x1d2]      0 0x1605b2f 0x00000001          
0 0x105b2f 0x19
(XEN) [2021-06-14 23:02:45] [0x1d3]      0 0x1605b2e 0x00000001          
0 0x105b2e 0x19
(XEN) [2021-06-14 23:02:45] [0x1d4]      0 0x1605b2d 0x00000001          
0 0x105b2d 0x19
(XEN) [2021-06-14 23:02:45] [0x1d5]      0 0x1605b2c 0x00000001          
0 0x105b2c 0x19
(XEN) [2021-06-14 23:02:45] [0x1d6]      0 0x1605b2b 0x00000001          
0 0x105b2b 0x19
(XEN) [2021-06-14 23:02:45] [0x1d7]      0 0x1605b2a 0x00000001          
0 0x105b2a 0x19
(XEN) [2021-06-14 23:02:45] [0x1d8]      0 0x1605b29 0x00000001          
0 0x105b29 0x19
(XEN) [2021-06-14 23:02:45] [0x1da]      0 0x1605b27 0x00000001          
0 0x105b27 0x19
(XEN) [2021-06-14 23:02:45] [0x1db]      0 0x1605b26 0x00000001          
0 0x105b26 0x19
(XEN) [2021-06-14 23:02:45] [0x1dc]      0 0x1605b25 0x00000001          
0 0x105b25 0x19
(XEN) [2021-06-14 23:02:45] [0x1de]      0 0x1605b23 0x00000001          
0 0x105b23 0x19
(XEN) [2021-06-14 23:02:45] [0x1df]      0 0x1605b22 0x00000001          
0 0x105b22 0x19
(XEN) [2021-06-14 23:02:45] [0x1e0]      0 0x1605b21 0x00000001          
0 0x105b21 0x19
(XEN) [2021-06-14 23:02:45] [0x1e1]      0 0x1605b1f 0x00000001          
0 0x105b1f 0x19
(XEN) [2021-06-14 23:02:45] [0x1e2]      0 0x1605b1e 0x00000001          
0 0x105b1e 0x19
(XEN) [2021-06-14 23:02:45] [0x1e4]      0 0x1605b1c 0x00000001          
0 0x105b1c 0x19
(XEN) [2021-06-14 23:02:45] [0x1e5]      0 0x1605b1b 0x00000001          
0 0x105b1b 0x19
(XEN) [2021-06-14 23:02:45] [0x1e7]      0 0x1605b19 0x00000001          
0 0x105b19 0x19
(XEN) [2021-06-14 23:02:45] [0x1e8]      0 0x1605b18 0x00000001          
0 0x105b18 0x19
(XEN) [2021-06-14 23:02:45] [0x1e9]      0 0x1605b17 0x00000001          
0 0x105b17 0x19
(XEN) [2021-06-14 23:02:45] [0x1ea]      0 0x1605b16 0x00000001          
0 0x105b16 0x19
(XEN) [2021-06-14 23:02:45] [0x1eb]      0 0x1605b15 0x00000001          
0 0x105b15 0x19
(XEN) [2021-06-14 23:02:45] [0x1ec]      0 0x1605b14 0x00000001          
0 0x105b14 0x19
(XEN) [2021-06-14 23:02:45] [0x1ed]      0 0x1605b13 0x00000001          
0 0x105b13 0x19
(XEN) [2021-06-14 23:02:45] [0x1ee]      0 0x1605b12 0x00000001          
0 0x105b12 0x19
(XEN) [2021-06-14 23:02:45] [0x1ef]      0 0x1605b11 0x00000001          
0 0x105b11 0x19
(XEN) [2021-06-14 23:02:45] [0x1f0]      0 0x1605b10 0x00000001          
0 0x105b10 0x19
(XEN) [2021-06-14 23:02:45] [0x1f1]      0 0x1605b0f 0x00000001          
0 0x105b0f 0x19
(XEN) [2021-06-14 23:02:45] [0x1f2]      0 0x1605b0e 0x00000001          
0 0x105b0e 0x19
(XEN) [2021-06-14 23:02:45] [0x1f3]      0 0x1605b0d 0x00000001          
0 0x105b0d 0x19
(XEN) [2021-06-14 23:02:45] [0x1f4]      0 0x1605b0c 0x00000001          
0 0x105b0c 0x19
(XEN) [2021-06-14 23:02:45] [0x1f6]      0 0x1605b0a 0x00000001          
0 0x105b0a 0x19
(XEN) [2021-06-14 23:02:45] [0x1f9]      0 0x1605b07 0x00000001          
0 0x105b07 0x19
(XEN) [2021-06-14 23:02:45] [0x1fa]      0 0x1605b06 0x00000001          
0 0x105b06 0x19
(XEN) [2021-06-14 23:02:45] [0x1fc]      0 0x1605b04 0x00000001          
0 0x105b04 0x19
(XEN) [2021-06-14 23:02:45] [0x1fd]      0 0x1605b03 0x00000001          
0 0x105b03 0x19
(XEN) [2021-06-14 23:02:45] [0x1fe]      0 0x1605b02 0x00000001          
0 0x105b02 0x19
(XEN) [2021-06-14 23:02:45] [0x900]      0 0x161002e 0x00000001          
0 0x11002e 0x19
(XEN) [2021-06-14 23:02:45] [0x901]      0 0x161002f 0x00000001          
0 0x11002f 0x19
(XEN) [2021-06-14 23:02:45] [0x902]      0 0x1610031 0x00000001          
0 0x110031 0x19
(XEN) [2021-06-14 23:02:45] [0x903]      0 0x1610032 0x00000001          
0 0x110032 0x19
(XEN) [2021-06-14 23:02:45] [0x904]      0 0x1610035 0x00000001          
0 0x110035 0x19
(XEN) [2021-06-14 23:02:45] [0x905]      0 0x1610036 0x00000001          
0 0x110036 0x19
(XEN) [2021-06-14 23:02:45] [0x906]      0 0x1610039 0x00000001          
0 0x110039 0x19
(XEN) [2021-06-14 23:02:45] [0x907]      0 0x161003a 0x00000001          
0 0x11003a 0x19
(XEN) [2021-06-14 23:02:45] [0x909]      0 0x16070e7 0x00000001          
0 0x1070e7 0x19
(XEN) [2021-06-14 23:02:45] [0x90a]      0 0x16070e6 0x00000001          
0 0x1070e6 0x19
(XEN) [2021-06-14 23:02:45] [0x90b]      0 0x16070e5 0x00000001          
0 0x1070e5 0x19
(XEN) [2021-06-14 23:02:45] [0x90c]      0 0x16070e4 0x00000001          
0 0x1070e4 0x19
(XEN) [2021-06-14 23:02:45] [0x90d]      0 0x16070e3 0x00000001          
0 0x1070e3 0x19
(XEN) [2021-06-14 23:02:45] [0x90e]      0 0x16070e2 0x00000001          
0 0x1070e2 0x19
(XEN) [2021-06-14 23:02:45] [0x90f]      0 0x16070e1 0x00000001          
0 0x1070e1 0x19
(XEN) [2021-06-14 23:02:45] [0x910]      0 0x16070e0 0x00000001          
0 0x1070e0 0x19
(XEN) [2021-06-14 23:02:45] [0x911]      0 0x16070df 0x00000001          
0 0x1070df 0x19
(XEN) [2021-06-14 23:02:45] [0x912]      0 0x16070de 0x00000001          
0 0x1070de 0x19
(XEN) [2021-06-14 23:02:45] [0x913]      0 0x16070dd 0x00000001          
0 0x1070dd 0x19
(XEN) [2021-06-14 23:02:45] [0x914]      0 0x16070dc 0x00000001          
0 0x1070dc 0x19
(XEN) [2021-06-14 23:02:45] [0x915]      0 0x16070db 0x00000001          
0 0x1070db 0x19
(XEN) [2021-06-14 23:02:45] [0x916]      0 0x16070da 0x00000001          
0 0x1070da 0x19
(XEN) [2021-06-14 23:02:45] [0x917]      0 0x16070d9 0x00000001          
0 0x1070d9 0x19
(XEN) [2021-06-14 23:02:45] [0x918]      0 0x16070d8 0x00000001          
0 0x1070d8 0x19
(XEN) [2021-06-14 23:02:45] [0x919]      0 0x16070d7 0x00000001          
0 0x1070d7 0x19
(XEN) [2021-06-14 23:02:45] [0x91a]      0 0x16070d6 0x00000001          
0 0x1070d6 0x19
(XEN) [2021-06-14 23:02:45] [0x91b]      0 0x16070d5 0x00000001          
0 0x1070d5 0x19
(XEN) [2021-06-14 23:02:45] [0x91c]      0 0x16070d4 0x00000001          
0 0x1070d4 0x19
(XEN) [2021-06-14 23:02:45] [0x91d]      0 0x16070d3 0x00000001          
0 0x1070d3 0x19
(XEN) [2021-06-14 23:02:45] [0x91e]      0 0x16070d2 0x00000001          
0 0x1070d2 0x19
(XEN) [2021-06-14 23:02:45] [0x91f]      0 0x16070d1 0x00000001          
0 0x1070d1 0x19
(XEN) [2021-06-14 23:02:45] [0x920]      0 0x16070d0 0x00000001          
0 0x1070d0 0x19
(XEN) [2021-06-14 23:02:45] [0x921]      0 0x16070cf 0x00000001          
0 0x1070cf 0x19
(XEN) [2021-06-14 23:02:45] [0x922]      0 0x16070ce 0x00000001          
0 0x1070ce 0x19
(XEN) [2021-06-14 23:02:45] [0x923]      0 0x16070cd 0x00000001          
0 0x1070cd 0x19
(XEN) [2021-06-14 23:02:45] [0x924]      0 0x16070cc 0x00000001          
0 0x1070cc 0x19
(XEN) [2021-06-14 23:02:45] [0x925]      0 0x16070cb 0x00000001          
0 0x1070cb 0x19
(XEN) [2021-06-14 23:02:45] [0x926]      0 0x16070ca 0x00000001          
0 0x1070ca 0x19
(XEN) [2021-06-14 23:02:45] [0x928]      0 0x16070c8 0x00000001          
0 0x1070c8 0x19
(XEN) [2021-06-14 23:02:45] [0x929]      0 0x16070c7 0x00000001          
0 0x1070c7 0x19
(XEN) [2021-06-14 23:02:45] [0x92a]      0 0x16070c6 0x00000001          
0 0x1070c6 0x19
(XEN) [2021-06-14 23:02:45] [0x92b]      0 0x16070c5 0x00000001          
0 0x1070c5 0x19
(XEN) [2021-06-14 23:02:45] [0x92c]      0 0x16070c4 0x00000001          
0 0x1070c4 0x19
(XEN) [2021-06-14 23:02:45] [0x92d]      0 0x16070c3 0x00000001          
0 0x1070c3 0x19
(XEN) [2021-06-14 23:02:45] [0x92e]      0 0x16070c2 0x00000001          
0 0x1070c2 0x19
(XEN) [2021-06-14 23:02:45] [0x92f]      0 0x16070c1 0x00000001          
0 0x1070c1 0x19
(XEN) [2021-06-14 23:02:45] [0x930]      0 0x16070c0 0x00000001          
0 0x1070c0 0x19
(XEN) [2021-06-14 23:02:45] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:45] [0x931]      0 0x16070bf 0x00000001          
0 0x1070bf 0x19
(XEN) [2021-06-14 23:02:45] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:45] [0x932]      0 0x16070be 0x00000001          
0 0x1070be 0x19
(XEN) [2021-06-14 23:02:45] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:45] [0x933]      0 0x16070bd 0x00000001          
0 0x1070bd 0x19
(XEN) [2021-06-14 23:02:45] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:45] [0x934]      0 0x16070bc 0x00000001          
0 0x1070bc 0x19
(XEN) [2021-06-14 23:02:45] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:45] [0x935]      0 0x16070bb 0x00000001          
0 0x1070bb 0x19
(XEN) [2021-06-14 23:02:45] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:45] [0x937]      0 0x16070b9 0x00000001          
0 0x1070b9 0x19
(XEN) [2021-06-14 23:02:45] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:45] [0x938]      0 0x16070b8 0x00000001          
0 0x1070b8 0x19
(XEN) [2021-06-14 23:02:45] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:45] [0x939]      0 0x16070b7 0x00000001          
0 0x1070b7 0x19
(XEN) [2021-06-14 23:02:45] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:45] [0x93a]      0 0x16070b6 0x00000001          
0 0x1070b6 0x19
(XEN) [2021-06-14 23:02:45] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:45] [0x93b]      0 0x16070b5 0x00000001          
0 0x1070b5 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0x93c]      0 0x16070b4 0x00000001          
0 0x1070b4 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0x93d]      0 0x16070b3 0x00000001          
0 0x1070b3 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0x93e]      0 0x16070b2 0x00000001          
0 0x1070b2 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0x93f]      0 0x16070b1 0x00000001          
0 0x1070b1 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0x9a7]      0 0x16070b0 0x00000001          
0 0x1070b0 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0x9a8]      0 0x16070af 0x00000001          
0 0x1070af 0x19
(XEN) [2021-06-14 23:02:46] [0x9a9]      0 0x16070ae 0x00000001          
0 0x1070ae 0x19
(XEN) [2021-06-14 23:02:46] [0x9aa]      0 0x16070ad 0x00000001          
0 0x1070ad 0x19
(XEN) [2021-06-14 23:02:46] [0x9ab]      0 0x16070ac 0x00000001          
0 0x1070ac 0x19
(XEN) [2021-06-14 23:02:46] [0x9ac]      0 0x16070ab 0x00000001          
0 0x1070ab 0x19
(XEN) [2021-06-14 23:02:46] [0x9ad]      0 0x16070a9 0x00000001          
0 0x1070a9 0x19
(XEN) [2021-06-14 23:02:46] [0x9ae]      0 0x16070a8 0x00000001          
0 0x1070a8 0x19
(XEN) [2021-06-14 23:02:46] [0x9d5]      0 0x1609365 0x00000001          
0 0x109365 0x19
(XEN) [2021-06-14 23:02:46] [0x9ee]      0 0x160935c 0x00000001          
0 0x10935c 0x19
(XEN) [2021-06-14 23:02:46] [0xa41]      0 0x160e249 0x00000001          
0 0x10e249 0x19
(XEN) [2021-06-14 23:02:46] [0xa42]      0 0x160e248 0x00000001          
0 0x10e248 0x19
(XEN) [2021-06-14 23:02:46] [0xa43]      0 0x160e247 0x00000001          
0 0x10e247 0x19
(XEN) [2021-06-14 23:02:46] [0xa44]      0 0x160e246 0x00000001          
0 0x10e246 0x19
(XEN) [2021-06-14 23:02:46] [0xa45]      0 0x160e245 0x00000001          
0 0x10e245 0x19
(XEN) [2021-06-14 23:02:46] [0xa46]      0 0x160e244 0x00000001          
0 0x10e244 0x19
(XEN) [2021-06-14 23:02:46] [0xa48]      0 0x160e242 0x00000001          
0 0x10e242 0x19
(XEN) [2021-06-14 23:02:46] [0xa49]      0 0x160e241 0x00000001          
0 0x10e241 0x19
(XEN) [2021-06-14 23:02:46] [0xa4a]      0 0x160e240 0x00000001          
0 0x10e240 0x19
(XEN) [2021-06-14 23:02:46] [0xa4c]      0 0x160e23e 0x00000001          
0 0x10e23e 0x19
(XEN) [2021-06-14 23:02:46] [0xa4d]      0 0x160e23d 0x00000001          
0 0x10e23d 0x19
(XEN) [2021-06-14 23:02:46] [0xa4f]      0 0x160e23b 0x00000001          
0 0x10e23b 0x19
(XEN) [2021-06-14 23:02:46] [0xa50]      0 0x160e23a 0x00000001          
0 0x10e23a 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa51]      0 0x160e239 0x00000001          
0 0x10e239 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa52]      0 0x160e238 0x00000001          
0 0x10e238 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa53]      0 0x160e237 0x00000001          
0 0x10e237 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa55]      0 0x160e235 0x00000001          
0 0x10e235 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa57]      0 0x160e233 0x00000001          
0 0x10e233 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa58]      0 0x160e232 0x00000001          
0 0x10e232 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa5a]      0 0x160e230 0x00000001          
0 0x10e230 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa5b]      0 0x160e22e 0x00000001          
0 0x10e22e 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa5d]      0 0x160e22c 0x00000001          
0 0x10e22c 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa60]      0 0x160e229 0x00000001          
0 0x10e229 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa61]      0 0x160e228 0x00000001          
0 0x10e228 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa64]      0 0x160e225 0x00000001          
0 0x10e225 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa65]      0 0x160e224 0x00000001          
0 0x10e224 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa66]      0 0x160e223 0x00000001          
0 0x10e223 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa68]      0 0x160e221 0x00000001          
0 0x10e221 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa69]      0 0x160e220 0x00000001          
0 0x10e220 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa6b]      0 0x160e21e 0x00000001          
0 0x10e21e 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa6c]      0 0x160e21d 0x00000001          
0 0x10e21d 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa6d]      0 0x160e21c 0x00000001          
0 0x10e21c 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa6e]      0 0x160e21b 0x00000001          
0 0x10e21b 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa6f]      0 0x160e21a 0x00000001          
0 0x10e21a 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa70]      0 0x160e219 0x00000001          
0 0x10e219 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa73]      0 0x160e216 0x00000001          
0 0x10e216 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa74]      0 0x160e215 0x00000001          
0 0x10e215 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa75]      0 0x160e214 0x00000001          
0 0x10e214 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa77]      0 0x160e212 0x00000001          
0 0x10e212 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa7c]      0 0x160e20d 0x00000001          
0 0x10e20d 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa7e]      0 0x160e20b 0x00000001          
0 0x10e20b 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa7f]      0 0x160e20a 0x00000001          
0 0x10e20a 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xa81]      0 0x160e208 0x00000001          
0 0x10e208 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb45]      0 0x16093b9 0x00000001          
0 0x1093b9 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb46]      0 0x16093b8 0x00000001          
0 0x1093b8 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb47]      0 0x16093b7 0x00000001          
0 0x1093b7 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb48]      0 0x16093b6 0x00000001          
0 0x1093b6 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb49]      0 0x1605b7f 0x00000001          
0 0x105b7f 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb4c]      0 0x1605b7c 0x00000001          
0 0x105b7c 0x19
(XEN) [2021-06-14 23:02:46] [0xb4d]      0 0x16093b5 0x00000001          
0 0x1093b5 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb4e]      0 0x16093b4 0x00000001          
0 0x1093b4 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb4f]      0 0x16093b3 0x00000001          
0 0x1093b3 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb50]      0 0x16093b2 0x00000001          
0 0x1093b2 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb51]      0 0x16093b1 0x00000001          
0 0x1093b1 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v5 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb52]      0 0x16093b0 0x00000001          
0 0x1093b0 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v5 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb53]      0 0x16093af 0x00000001          
0 0x1093af 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v5 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb54]      0 0x16093ae 0x00000001          
0 0x1093ae 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v5 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb55]      0 0x16093ad 0x00000001          
0 0x1093ad 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v5 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb56]      0 0x16093ac 0x00000001          
0 0x1093ac 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v5 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb57]      0 0x16093ab 0x00000001          
0 0x1093ab 0x19
(XEN) [2021-06-14 23:02:46] grant_table.c:803:d0v5 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:46] [0xb58]      0 0x16093aa 0x00000001          
0 0x1093aa 0x19
(XEN) [2021-06-14 23:02:47] grant_table.c:803:d0v5 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:47] [0xb59]      0 0x16093a9 0x00000001          
0 0x1093a9 0x19
(XEN) [2021-06-14 23:02:47] [0xb5a]      0 0x16093a8 0x00000001          
0 0x1093a8 0x19
(XEN) [2021-06-14 23:02:47] [0xb5b]      0 0x16093a7 0x00000001          
0 0x1093a7 0x19
(XEN) [2021-06-14 23:02:47] [0xb5c]      0 0x16093a6 0x00000001          
0 0x1093a6 0x19
(XEN) [2021-06-14 23:02:47] [0xb5d]      0 0x16093a5 0x00000001          
0 0x1093a5 0x19
(XEN) [2021-06-14 23:02:47] [0xb5e]      0 0x16093a4 0x00000001          
0 0x1093a4 0x19
(XEN) [2021-06-14 23:02:47] [0xb5f]      0 0x16093a3 0x00000001          
0 0x1093a3 0x19
(XEN) [2021-06-14 23:02:47] [0xb60]      0 0x16093a2 0x00000001          
0 0x1093a2 0x19
(XEN) [2021-06-14 23:02:47] [0xb61]      0 0x16093a1 0x00000001          
0 0x1093a1 0x19
(XEN) [2021-06-14 23:02:47] [0xb62]      0 0x16093a0 0x00000001          
0 0x1093a0 0x19
(XEN) [2021-06-14 23:02:47] [0xb63]      0 0x160939f 0x00000001          
0 0x10939f 0x19
(XEN) [2021-06-14 23:02:47] [0xb64]      0 0x160939e 0x00000001          
0 0x10939e 0x19
(XEN) [2021-06-14 23:02:47] [0xb65]      0 0x160939d 0x00000001          
0 0x10939d 0x19
(XEN) [2021-06-14 23:02:47] [0xb66]      0 0x160939c 0x00000001          
0 0x10939c 0x19
(XEN) [2021-06-14 23:02:47] [0xb67]      0 0x160939b 0x00000001          
0 0x10939b 0x19
(XEN) [2021-06-14 23:02:47] [0xb68]      0 0x160939a 0x00000001          
0 0x10939a 0x19
(XEN) [2021-06-14 23:02:47] [0xb69]      0 0x1609399 0x00000001          
0 0x109399 0x19
(XEN) [2021-06-14 23:02:47] [0xb6a]      0 0x1609398 0x00000001          
0 0x109398 0x19
(XEN) [2021-06-14 23:02:47] [0xb6b]      0 0x1609397 0x00000001          
0 0x109397 0x19
(XEN) [2021-06-14 23:02:47] [0xb6c]      0 0x1609396 0x00000001          
0 0x109396 0x19
(XEN) [2021-06-14 23:02:47] [0xb6d]      0 0x1609395 0x00000001          
0 0x109395 0x19
(XEN) [2021-06-14 23:02:47] [0xb6e]      0 0x1609394 0x00000001          
0 0x109394 0x19
(XEN) [2021-06-14 23:02:47] [0xb6f]      0 0x1609393 0x00000001          
0 0x109393 0x19
(XEN) [2021-06-14 23:02:47] [0xb70]      0 0x1609392 0x00000001          
0 0x109392 0x19
(XEN) [2021-06-14 23:02:47] [0xb71]      0 0x1609391 0x00000001          
0 0x109391 0x19
(XEN) [2021-06-14 23:02:47] [0xb72]      0 0x1609390 0x00000001          
0 0x109390 0x19
(XEN) [2021-06-14 23:02:47] [0xb73]      0 0x160938f 0x00000001          
0 0x10938f 0x19
(XEN) [2021-06-14 23:02:47] [0xb74]      0 0x160938e 0x00000001          
0 0x10938e 0x19
(XEN) [2021-06-14 23:02:47] [0xb75]      0 0x160938d 0x00000001          
0 0x10938d 0x19
(XEN) [2021-06-14 23:02:47] [0xb76]      0 0x160938c 0x00000001          
0 0x10938c 0x19
(XEN) [2021-06-14 23:02:47] [0xb77]      0 0x160938b 0x00000001          
0 0x10938b 0x19
(XEN) [2021-06-14 23:02:47] [0xb78]      0 0x160938a 0x00000001          
0 0x10938a 0x19
(XEN) [2021-06-14 23:02:47] [0xb79]      0 0x1609389 0x00000001          
0 0x109389 0x19
(XEN) [2021-06-14 23:02:47] [0xb7a]      0 0x1609388 0x00000001          
0 0x109388 0x19
(XEN) [2021-06-14 23:02:47] [0xb7b]      0 0x1609387 0x00000001          
0 0x109387 0x19
(XEN) [2021-06-14 23:02:47] [0xb7c]      0 0x1609386 0x00000001          
0 0x109386 0x19
(XEN) [2021-06-14 23:02:47] [0xb7d]      0 0x1609385 0x00000001          
0 0x109385 0x19
(XEN) [2021-06-14 23:02:47] [0xb7e]      0 0x1609384 0x00000001          
0 0x109384 0x19
(XEN) [2021-06-14 23:02:47] [0xb7f]      0 0x1609383 0x00000001          
0 0x109383 0x19
(XEN) [2021-06-14 23:02:47] [0xb80]      0 0x1609382 0x00000001          
0 0x109382 0x19
(XEN) [2021-06-14 23:02:47] [0xb81]      0 0x1609381 0x00000001          
0 0x109381 0x19
(XEN) [2021-06-14 23:02:47] [0xb82]      0 0x1609380 0x00000001          
0 0x109380 0x19
(XEN) [2021-06-14 23:02:47] [0xb83]      0 0x160937f 0x00000001          
0 0x10937f 0x19
(XEN) [2021-06-14 23:02:47] [0xb84]      0 0x160937e 0x00000001          
0 0x10937e 0x19
(XEN) [2021-06-14 23:02:47] [0xb85]      0 0x160937d 0x00000001          
0 0x10937d 0x19
(XEN) [2021-06-14 23:02:47] [0xb86]      0 0x160937c 0x00000001          
0 0x10937c 0x19
(XEN) [2021-06-14 23:02:47] [0xb87]      0 0x160937a 0x00000001          
0 0x10937a 0x19
(XEN) [2021-06-14 23:02:47] [0xb88]      0 0x1609379 0x00000001          
0 0x109379 0x19
(XEN) [2021-06-14 23:02:47] [0xb89]      0 0x1609378 0x00000001          
0 0x109378 0x19
(XEN) [2021-06-14 23:02:47] [0xb8a]      0 0x1609377 0x00000001          
0 0x109377 0x19
(XEN) [2021-06-14 23:02:47] [0xb8b]      0 0x16070a7 0x00000001          
0 0x1070a7 0x19
(XEN) [2021-06-14 23:02:47] [0xb8c]      0 0x16070a6 0x00000001          
0 0x1070a6 0x19
(XEN) [2021-06-14 23:02:47] [0xb8d]      0 0x16070a5 0x00000001          
0 0x1070a5 0x19
(XEN) [2021-06-14 23:02:47] [0xb8f]      0 0x16070a3 0x00000001          
0 0x1070a3 0x19
(XEN) [2021-06-14 23:02:47] [0xb90]      0 0x16070a2 0x00000001          
0 0x1070a2 0x19
(XEN) [2021-06-14 23:02:47] [0xb91]      0 0x16070a1 0x00000001          
0 0x1070a1 0x19
(XEN) [2021-06-14 23:02:47] [0xb92]      0 0x16070a0 0x00000001          
0 0x1070a0 0x19
(XEN) [2021-06-14 23:02:47] [0xb93]      0 0x160709f 0x00000001          
0 0x10709f 0x19
(XEN) [2021-06-14 23:02:47] [0xb94]      0 0x160709e 0x00000001          
0 0x10709e 0x19
(XEN) [2021-06-14 23:02:47] [0xb95]      0 0x160709d 0x00000001          
0 0x10709d 0x19
(XEN) [2021-06-14 23:02:47] [0xb96]      0 0x160709c 0x00000001          
0 0x10709c 0x19
(XEN) [2021-06-14 23:02:47] [0xb97]      0 0x160709b 0x00000001          
0 0x10709b 0x19
(XEN) [2021-06-14 23:02:47] [0xb98]      0 0x160709a 0x00000001          
0 0x10709a 0x19
(XEN) [2021-06-14 23:02:47] [0xb99]      0 0x1607099 0x00000001          
0 0x107099 0x19
(XEN) [2021-06-14 23:02:47] [0xb9a]      0 0x1607098 0x00000001          
0 0x107098 0x19
(XEN) [2021-06-14 23:02:47] [0xb9b]      0 0x1607097 0x00000001          
0 0x107097 0x19
(XEN) [2021-06-14 23:02:47] [0xb9c]      0 0x1607096 0x00000001          
0 0x107096 0x19
(XEN) [2021-06-14 23:02:47] [0xb9d]      0 0x1607095 0x00000001          
0 0x107095 0x19
(XEN) [2021-06-14 23:02:47] [0xb9e]      0 0x1607094 0x00000001          
0 0x107094 0x19
(XEN) [2021-06-14 23:02:47] [0xb9f]      0 0x1607093 0x00000001          
0 0x107093 0x19
(XEN) [2021-06-14 23:02:47] [0xba0]      0 0x1607092 0x00000001          
0 0x107092 0x19
(XEN) [2021-06-14 23:02:47] [0xba2]      0 0x1607090 0x00000001          
0 0x107090 0x19
(XEN) [2021-06-14 23:02:47] [0xba3]      0 0x160708f 0x00000001          
0 0x10708f 0x19
(XEN) [2021-06-14 23:02:47] [0xba4]      0 0x160708e 0x00000001          
0 0x10708e 0x19
(XEN) [2021-06-14 23:02:47] [0xba5]      0 0x160708d 0x00000001          
0 0x10708d 0x19
(XEN) [2021-06-14 23:02:47] [0xba6]      0 0x160708c 0x00000001          
0 0x10708c 0x19
(XEN) [2021-06-14 23:02:47] [0xba7]      0 0x160708b 0x00000001          
0 0x10708b 0x19
(XEN) [2021-06-14 23:02:47] [0xba8]      0 0x160708a 0x00000001          
0 0x10708a 0x19
(XEN) [2021-06-14 23:02:47] [0xbaa]      0 0x1607088 0x00000001          
0 0x107088 0x19
(XEN) [2021-06-14 23:02:47] [0xbab]      0 0x1607087 0x00000001          
0 0x107087 0x19
(XEN) [2021-06-14 23:02:47] [0xbac]      0 0x1607086 0x00000001          
0 0x107086 0x19
(XEN) [2021-06-14 23:02:47] [0xbad]      0 0x1607085 0x00000001          
0 0x107085 0x19
(XEN) [2021-06-14 23:02:47] [0xbae]      0 0x1607084 0x00000001          
0 0x107084 0x19
(XEN) [2021-06-14 23:02:47] [0xbaf]      0 0x1607083 0x00000001          
0 0x107083 0x19
(XEN) [2021-06-14 23:02:47] [0xbb0]      0 0x1607082 0x00000001          
0 0x107082 0x19
(XEN) [2021-06-14 23:02:47] [0xbb1]      0 0x1607081 0x00000001          
0 0x107081 0x19
(XEN) [2021-06-14 23:02:47] [0xbb2]      0 0x1607080 0x00000001          
0 0x107080 0x19
(XEN) [2021-06-14 23:02:47] [0xbb3]      0 0x160707f 0x00000001          
0 0x10707f 0x19
(XEN) [2021-06-14 23:02:47] [0xbb4]      0 0x160707e 0x00000001          
0 0x10707e 0x19
(XEN) [2021-06-14 23:02:47] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:47] [0xbb5]      0 0x160707d 0x00000001          
0 0x10707d 0x19
(XEN) [2021-06-14 23:02:47] [0xbb6]      0 0x160707c 0x00000001          
0 0x10707c 0x19
(XEN) [2021-06-14 23:02:47] [0xbb7]      0 0x160707b 0x00000001          
0 0x10707b 0x19
(XEN) [2021-06-14 23:02:47] [0xbb8]      0 0x160707a 0x00000001          
0 0x10707a 0x19
(XEN) [2021-06-14 23:02:47] [0xbb9]      0 0x1607079 0x00000001          
0 0x107079 0x19
(XEN) [2021-06-14 23:02:47] [0xbba]      0 0x1607078 0x00000001          
0 0x107078 0x19
(XEN) [2021-06-14 23:02:47] [0xbbb]      0 0x1607077 0x00000001          
0 0x107077 0x19
(XEN) [2021-06-14 23:02:47] [0xbbc]      0 0x1607076 0x00000001          
0 0x107076 0x19
(XEN) [2021-06-14 23:02:47] [0xbbd]      0 0x1607075 0x00000001          
0 0x107075 0x19
(XEN) [2021-06-14 23:02:47] [0xbbe]      0 0x1605b7b 0x00000001          
0 0x105b7b 0x19
(XEN) [2021-06-14 23:02:47] [0xbbf]      0 0x1605b7a 0x00000001          
0 0x105b7a 0x19
(XEN) [2021-06-14 23:02:47] [0xbc0]      0 0x1605b79 0x00000001          
0 0x105b79 0x19
(XEN) [2021-06-14 23:02:47] [0xbc1]      0 0x1605b78 0x00000001          
0 0x105b78 0x19
(XEN) [2021-06-14 23:02:47] [0xbc3]      0 0x1605b76 0x00000001          
0 0x105b76 0x19
(XEN) [2021-06-14 23:02:47] [0xbc4]      0 0x1605b75 0x00000001          
0 0x105b75 0x19
(XEN) [2021-06-14 23:02:47] [0xbc5]      0 0x160936c 0x00000001          
0 0x10936c 0x19
(XEN) [2021-06-14 23:02:47] [0xbc6]      0 0x1605b73 0x00000001          
0 0x105b73 0x19
(XEN) [2021-06-14 23:02:47] [0xbc7]      0 0x1605b72 0x00000001          
0 0x105b72 0x19
(XEN) [2021-06-14 23:02:47] [0xbc8]      0 0x1605b71 0x00000001          
0 0x105b71 0x19
(XEN) [2021-06-14 23:02:47] [0xbc9]      0 0x1605b70 0x00000001          
0 0x105b70 0x19
(XEN) [2021-06-14 23:02:47] [0xbca]      0 0x1605b6f 0x00000001          
0 0x105b6f 0x19
(XEN) [2021-06-14 23:02:47] [0xbcc]      0 0x1605b6d 0x00000001          
0 0x105b6d 0x19
(XEN) [2021-06-14 23:02:47] [0xbcd]      0 0x1605b6c 0x00000001          
0 0x105b6c 0x19
(XEN) [2021-06-14 23:02:47] [0xbce]      0 0x1605b6b 0x00000001          
0 0x105b6b 0x19
(XEN) [2021-06-14 23:02:47] [0xbcf]      0 0x1605b6a 0x00000001          
0 0x105b6a 0x19
(XEN) [2021-06-14 23:02:47] [0xbd0]      0 0x1605b69 0x00000001          
0 0x105b69 0x19
(XEN) [2021-06-14 23:02:47] [0xbd2]      0 0x1605b67 0x00000001          
0 0x105b67 0x19
(XEN) [2021-06-14 23:02:47] [0xbd3]      0 0x1605b66 0x00000001          
0 0x105b66 0x19
(XEN) [2021-06-14 23:02:47] [0xbd5]      0 0x1605b64 0x00000001          
0 0x105b64 0x19
(XEN) [2021-06-14 23:02:47] [0xbd9]      0 0x1605b5f 0x00000001          
0 0x105b5f 0x19
(XEN) [2021-06-14 23:02:47] [0xbda]      0 0x1605b5e 0x00000001          
0 0x105b5e 0x19
(XEN) [2021-06-14 23:02:47] [0xbdb]      0 0x1605b5d 0x00000001          
0 0x105b5d 0x19
(XEN) [2021-06-14 23:02:47] [0xbdc]      0 0x1605b5c 0x00000001          
0 0x105b5c 0x19
(XEN) [2021-06-14 23:02:47] [0xbdf]      0 0x1605b59 0x00000001          
0 0x105b59 0x19
(XEN) [2021-06-14 23:02:47] [0xbe0]      0 0x1605b58 0x00000001          
0 0x105b58 0x19
(XEN) [2021-06-14 23:02:47] [0xbe1]      0 0x1605b57 0x00000001          
0 0x105b57 0x19
(XEN) [2021-06-14 23:02:47] [0xbe2]      0 0x1605b56 0x00000001          
0 0x105b56 0x19
(XEN) [2021-06-14 23:02:48] [0xbe4]      0 0x1605b54 0x00000001          
0 0x105b54 0x19
(XEN) [2021-06-14 23:02:48] [0xbe5]      0 0x1605b53 0x00000001          
0 0x105b53 0x19
(XEN) [2021-06-14 23:02:48] [0xbe6]      0 0x1605b52 0x00000001          
0 0x105b52 0x19
(XEN) [2021-06-14 23:02:48] [0xbe7]      0 0x1605b51 0x00000001          
0 0x105b51 0x19
(XEN) [2021-06-14 23:02:48] [0xbe8]      0 0x1605b50 0x00000001          
0 0x105b50 0x19
(XEN) [2021-06-14 23:02:48] [0xbe9]      0 0x1605b4f 0x00000001          
0 0x105b4f 0x19
(XEN) [2021-06-14 23:02:48] [0xbea]      0 0x1605b4e 0x00000001          
0 0x105b4e 0x19
(XEN) [2021-06-14 23:02:48] [0xbeb]      0 0x1605b4d 0x00000001          
0 0x105b4d 0x19
(XEN) [2021-06-14 23:02:48] [0xbec]      0 0x1605b4c 0x00000001          
0 0x105b4c 0x19
(XEN) [2021-06-14 23:02:48] [0xbed]      0 0x1605b4b 0x00000001          
0 0x105b4b 0x19
(XEN) [2021-06-14 23:02:48] [0xbee]      0 0x1605b4a 0x00000001          
0 0x105b4a 0x19
(XEN) [2021-06-14 23:02:48] [0xbef]      0 0x1605b49 0x00000001          
0 0x105b49 0x19
(XEN) [2021-06-14 23:02:48] [0xbf0]      0 0x1605b48 0x00000001          
0 0x105b48 0x19
(XEN) [2021-06-14 23:02:48] [0xbf1]      0 0x1605b47 0x00000001          
0 0x105b47 0x19
(XEN) [2021-06-14 23:02:48] [0xbf2]      0 0x1605b46 0x00000001          
0 0x105b46 0x19
(XEN) [2021-06-14 23:02:48] [0xbf3]      0 0x1605b45 0x00000001          
0 0x105b45 0x19
(XEN) [2021-06-14 23:02:48] [0xbf4]      0 0x1605b44 0x00000001          
0 0x105b44 0x19
(XEN) [2021-06-14 23:02:48] [0xbf5]      0 0x1605b43 0x00000001          
0 0x105b43 0x19
(XEN) [2021-06-14 23:02:48] [0xbf6]      0 0x1605b42 0x00000001          
0 0x105b42 0x19
(XEN) [2021-06-14 23:02:48] [0xbf7]      0 0x1605b41 0x00000001          
0 0x105b41 0x19
(XEN) [2021-06-14 23:02:48] [0xbf8]      0 0x1605b40 0x00000001          
0 0x105b40 0x19
(XEN) [2021-06-14 23:02:48] [0xbf9]      0 0x1605b3f 0x00000001          
0 0x105b3f 0x19
(XEN) [2021-06-14 23:02:48] [0xbfa]      0 0x1605b3e 0x00000001          
0 0x105b3e 0x19
(XEN) [2021-06-14 23:02:48] [0xbfb]      0 0x1605b3d 0x00000001          
0 0x105b3d 0x19
(XEN) [2021-06-14 23:02:48] [0xbfc]      0 0x1605b3c 0x00000001          
0 0x105b3c 0x19
(XEN) [2021-06-14 23:02:48] [0xbfd]      0 0x1605b3b 0x00000001          
0 0x105b3b 0x19
(XEN) [2021-06-14 23:02:48] [0xbfe]      0 0x1605b3a 0x00000001          
0 0x105b3a 0x19
(XEN) [2021-06-14 23:02:48] [0xbff]      0 0x1605b39 0x00000001          
0 0x105b39 0x19
(XEN) [2021-06-14 23:02:48] [0xc00]      0 0x1607074 0x00000001          
0 0x107074 0x19
(XEN) [2021-06-14 23:02:48] [0xc01]      0 0x1607073 0x00000001          
0 0x107073 0x19
(XEN) [2021-06-14 23:02:48] [0xc02]      0 0x1607072 0x00000001          
0 0x107072 0x19
(XEN) [2021-06-14 23:02:48] [0xc03]      0 0x1607071 0x00000001          
0 0x107071 0x19
(XEN) [2021-06-14 23:02:48] [0xc04]      0 0x1607070 0x00000001          
0 0x107070 0x19
(XEN) [2021-06-14 23:02:48] [0xc05]      0 0x160706f 0x00000001          
0 0x10706f 0x19
(XEN) [2021-06-14 23:02:48] [0xc06]      0 0x160706e 0x00000001          
0 0x10706e 0x19
(XEN) [2021-06-14 23:02:48] [0xc07]      0 0x160706d 0x00000001          
0 0x10706d 0x19
(XEN) [2021-06-14 23:02:48] [0xc08]      0 0x160706c 0x00000001          
0 0x10706c 0x19
(XEN) [2021-06-14 23:02:48] [0xc09]      0 0x160706b 0x00000001          
0 0x10706b 0x19
(XEN) [2021-06-14 23:02:48] [0xc0a]      0 0x160706a 0x00000001          
0 0x10706a 0x19
(XEN) [2021-06-14 23:02:48] [0xc0b]      0 0x1607068 0x00000001          
0 0x107068 0x19
(XEN) [2021-06-14 23:02:48] [0xc0d]      0 0x1607066 0x00000001          
0 0x107066 0x19
(XEN) [2021-06-14 23:02:48] [0xc0e]      0 0x1607065 0x00000001          
0 0x107065 0x19
(XEN) [2021-06-14 23:02:48] [0xc11]      0 0x160934e 0x00000001          
0 0x10934e 0x19
(XEN) [2021-06-14 23:02:48] [0xc12]      0 0x160934f 0x00000001          
0 0x10934f 0x19
(XEN) [2021-06-14 23:02:48] [0xc13]      0 0x1609350 0x00000001          
0 0x109350 0x19
(XEN) [2021-06-14 23:02:48] [0xc14]      0 0x1609351 0x00000001          
0 0x109351 0x19
(XEN) [2021-06-14 23:02:48] [0xc15]      0 0x1609352 0x00000001          
0 0x109352 0x19
(XEN) [2021-06-14 23:02:48] [0xc16]      0 0x1609353 0x00000001          
0 0x109353 0x19
(XEN) [2021-06-14 23:02:48] [0xc17]      0 0x1609354 0x00000001          
0 0x109354 0x19
(XEN) [2021-06-14 23:02:48] [0xc18]      0 0x1609355 0x00000001          
0 0x109355 0x19
(XEN) [2021-06-14 23:02:48] [0xc19]      0 0x1609356 0x00000001          
0 0x109356 0x19
(XEN) [2021-06-14 23:02:48] [0xc1a]      0 0x1609357 0x00000001          
0 0x109357 0x19
(XEN) [2021-06-14 23:02:48] [0xc1b]      0 0x1609358 0x00000001          
0 0x109358 0x19
(XEN) [2021-06-14 23:02:48] [0xc1c]      0 0x1609359 0x00000001          
0 0x109359 0x19
(XEN) [2021-06-14 23:02:48] [0xc1d]      0 0x160935a 0x00000001          
0 0x10935a 0x19
(XEN) [2021-06-14 23:02:48] [0xc1e]      0 0x160935b 0x00000001          
0 0x10935b 0x19
(XEN) [2021-06-14 23:02:48] [0xc1f]      0 0x160934d 0x00000001          
0 0x10934d 0x19
(XEN) [2021-06-14 23:02:48] [0xc20]      0 0x1609366 0x00000001          
0 0x109366 0x19
(XEN) [2021-06-14 23:02:48] [0xc21]      0 0x1609367 0x00000001          
0 0x109367 0x19
(XEN) [2021-06-14 23:02:48] [0xc22]      0 0x1609368 0x00000001          
0 0x109368 0x19
(XEN) [2021-06-14 23:02:48] [0xc23]      0 0x1609369 0x00000001          
0 0x109369 0x19
(XEN) [2021-06-14 23:02:48] [0xc24]      0 0x160936a 0x00000001          
0 0x10936a 0x19
(XEN) [2021-06-14 23:02:48] [0xc25]      0 0x160936b 0x00000001          
0 0x10936b 0x19
(XEN) [2021-06-14 23:02:48] [0xc26]      0 0x160935d 0x00000001          
0 0x10935d 0x19
(XEN) [2021-06-14 23:02:48] [0xc27]      0 0x160935e 0x00000001          
0 0x10935e 0x19
(XEN) [2021-06-14 23:02:48] [0xc28]      0 0x160935f 0x00000001          
0 0x10935f 0x19
(XEN) [2021-06-14 23:02:48] [0xc29]      0 0x1609360 0x00000001          
0 0x109360 0x19
(XEN) [2021-06-14 23:02:48] [0xc2a]      0 0x1609361 0x00000001          
0 0x109361 0x19
(XEN) [2021-06-14 23:02:48] [0xc2b]      0 0x1609362 0x00000001          
0 0x109362 0x19
(XEN) [2021-06-14 23:02:48] [0xc2c]      0 0x1609363 0x00000001          
0 0x109363 0x19
(XEN) [2021-06-14 23:02:48] [0xc2d]      0 0x1609364 0x00000001          
0 0x109364 0x19
(XEN) [2021-06-14 23:02:48] [0x1041]      0 0x1607064 
0x00000001          0 0x107064 0x19
(XEN) [2021-06-14 23:02:48] [0x1042]      0 0x1607063 
0x00000001          0 0x107063 0x19
(XEN) [2021-06-14 23:02:48] [0x1043]      0 0x1609376 
0x00000001          0 0x109376 0x19
(XEN) [2021-06-14 23:02:48] [0x1044]      0 0x1609375 
0x00000001          0 0x109375 0x19
(XEN) [2021-06-14 23:02:48] [0x1045]      0 0x1609374 
0x00000001          0 0x109374 0x19
(XEN) [2021-06-14 23:02:48] [0x1046]      0 0x1609373 
0x00000001          0 0x109373 0x19
(XEN) [2021-06-14 23:02:48] [0x1047]      0 0x1609372 
0x00000001          0 0x109372 0x19
(XEN) [2021-06-14 23:02:48] [0x1048]      0 0x1609371 
0x00000001          0 0x109371 0x19
(XEN) [2021-06-14 23:02:48] [0x1049]      0 0x1609370 
0x00000001          0 0x109370 0x19
(XEN) [2021-06-14 23:02:48] [0x104a]      0 0x160936f 
0x00000001          0 0x10936f 0x19
(XEN) [2021-06-14 23:02:48] [0x104b]      0 0x160936e 
0x00000001          0 0x10936e 0x19
(XEN) [2021-06-14 23:02:48] [0x104c]      0 0x160936d 
0x00000001          0 0x10936d 0x19
(XEN) [2021-06-14 23:02:48] [0x104d]      0 0x1607061 
0x00000001          0 0x107061 0x19
(XEN) [2021-06-14 23:02:48] [0x104e]      0 0x1607060 
0x00000001          0 0x107060 0x19
(XEN) [2021-06-14 23:02:48] [0x104f]      0 0x160705f 
0x00000001          0 0x10705f 0x19
(XEN) [2021-06-14 23:02:48] [0x1050]      0 0x160705e 
0x00000001          0 0x10705e 0x19
(XEN) [2021-06-14 23:02:48] [0x1051]      0 0x160705d 
0x00000001          0 0x10705d 0x19
(XEN) [2021-06-14 23:02:48] gnttab_usage_print_all ] done
(XEN) [2021-06-14 23:02:48] [i: dump interrupt bindings]
(XEN) [2021-06-14 23:02:48] IRQ information:
(XEN) [2021-06-14 23:02:48]    IRQ:   0 vec:f0 IO-APIC-edge status=000 
aff:{0}/{0} arch/x86/time.c#timer_interrupt()
(XEN) [2021-06-14 23:02:48]    IRQ:   1 vec:a3 IO-APIC-edge status=030 
aff:{7}/{6-11} in-flight=0 d0:  1(---)
(XEN) [2021-06-14 23:02:48]    IRQ:   3 vec:47 IO-APIC-edge status=030 
aff:{4}/{0-5} in-flight=0 d0:  3(---)
(XEN) [2021-06-14 23:02:48]    IRQ:   4 vec:f1 IO-APIC-edge status=000 
aff:{0-11}/{0-11} drivers/char/ns16550.c#ns16550_interrupt()
(XEN) [2021-06-14 23:02:48]    IRQ:   5 vec:50 IO-APIC-edge status=002 
aff:{0}/{0} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:   6 vec:58 IO-APIC-edge status=002 
aff:{0}/{0} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:   7 vec:60 IO-APIC-edge status=002 
aff:{0}/{0} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:   8 vec:8c IO-APIC-edge status=030 
aff:{3}/{0-5} in-flight=0 d0:  8(---)
(XEN) [2021-06-14 23:02:48]    IRQ:   9 vec:c0 IO-APIC-level status=030 
aff:{2}/{0-5} in-flight=0 d0:  9(---)
(XEN) [2021-06-14 23:02:48]    IRQ:  10 vec:78 IO-APIC-edge status=002 
aff:{0}/{0} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:  11 vec:88 IO-APIC-edge status=002 
aff:{0}/{0} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:  12 vec:90 IO-APIC-edge status=002 
aff:{0}/{0} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:  13 vec:98 IO-APIC-edge status=002 
aff:{0-11}/{0} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:  14 vec:a0 IO-APIC-edge status=002 
aff:{0}/{0} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:  15 vec:a8 IO-APIC-edge status=002 
aff:{0}/{0} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:  16 vec:b9 IO-APIC-level status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:  18 vec:c4 IO-APIC-level status=030 
aff:{2}/{0-5} in-flight=0 d0: 18(---)
(XEN) [2021-06-14 23:02:48]    IRQ:  19 vec:ad IO-APIC-level status=030 
aff:{1}/{0-5} in-flight=0 d0: 19(---),d6: 19(-M-)
(XEN) [2021-06-14 23:02:48]    IRQ:  22 vec:bb IO-APIC-level status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:  26 vec:d8 IO-APIC-level status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:  27 vec:2f IO-APIC-level status=010 
aff:{6}/{6-11} in-flight=0 d5: 27(-M-)
(XEN) [2021-06-14 23:02:48]    IRQ:  32 vec:e8 IO-APIC-level status=010 
aff:{2}/{0-5} in-flight=0 d2: 32(-M-)
(XEN) [2021-06-14 23:02:48]    IRQ:  34 vec:e6 IO-APIC-level status=010 
aff:{11}/{6-11} in-flight=0 d7: 34(-M-)
(XEN) [2021-06-14 23:02:48]    IRQ:  40 vec:99 IO-APIC-level status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:48]    IRQ:  56 vec:37 IO-APIC-level status=010 
aff:{6}/{6-11} in-flight=0 d5: 56(-M-)
(XEN) [2021-06-14 23:02:48]    IRQ:  60 vec:3f IO-APIC-level status=010 
aff:{6}/{6-11} in-flight=0 d5: 60(-M-)
(XEN) [2021-06-14 23:02:48]    IRQ:  64 vec:ee IO-APIC-level status=010 
aff:{11}/{6-11} in-flight=0 d7: 64(-M-)
(XEN) [2021-06-14 23:02:48]    IRQ:  68 vec:27 IO-APIC-level status=010 
aff:{11}/{6-11} in-flight=0 d7: 68(-M-)
(XEN) [2021-06-14 23:02:48]    IRQ:  72 vec:b0 DMA_MSI status=000 
aff:{6-11}/{6-11} drivers/passthrough/vtd/iommu.c#iommu_page_fault()
(XEN) [2021-06-14 23:02:48]    IRQ:  73 vec:38 DMA_MSI status=000 
aff:{0-5}/{0} drivers/passthrough/vtd/iommu.c#iommu_page_fault()
(XEN) [2021-06-14 23:02:48]    IRQ:  74 vec:49 PCI-MSI/-X status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  75 vec:61 PCI-MSI/-X status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  76 vec:79 PCI-MSI/-X status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  77 vec:91 PCI-MSI/-X status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  78 vec:b1 PCI-MSI/-X status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  79 vec:c1 PCI-MSI status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  80 vec:c9 PCI-MSI status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  81 vec:d1 PCI-MSI status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  82 vec:d9 PCI-MSI status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  83 vec:e1 PCI-MSI status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  84 vec:42 PCI-MSI/-X status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  85 vec:62 PCI-MSI/-X status=002 
aff:{0-11}/{0-5} mapped, unbound
(XEN) [2021-06-14 23:02:49]    IRQ:  86 vec:bd PCI-MSI/-X status=030 
aff:{10}/{6-11} in-flight=0 d0:891(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  87 vec:b2 PCI-MSI/-X status=030 
aff:{7}/{6-11} in-flight=0 d0:890(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  88 vec:a5 PCI-MSI/-X status=030 
aff:{3}/{0-5} in-flight=0 d0:889(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  89 vec:d5 PCI-MSI/-X status=030 
aff:{5}/{0-5} in-flight=0 d0:888(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  90 vec:36 PCI-MSI/-X status=010 
aff:{0}/{0-5} in-flight=0 d0:887(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  91 vec:9d PCI-MSI/-X status=030 
aff:{10}/{6-11} in-flight=0 d0:886(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  92 vec:dd PCI-MSI/-X status=030 
aff:{10}/{6-11} in-flight=0 d0:885(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  93 vec:b5 PCI-MSI/-X status=030 
aff:{10}/{6-11} in-flight=0 d0:884(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  94 vec:3d PCI-MSI status=030 
aff:{6}/{6-11} in-flight=0 d0:883(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  95 vec:d7 PCI-MSI status=030 
aff:{9}/{6-11} in-flight=0 d0:882(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  96 vec:df PCI-MSI status=030 
aff:{9}/{6-11} in-flight=0 d0:881(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  97 vec:8d PCI-MSI/-X status=030 
aff:{7}/{6-11} in-flight=0 d0:880(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  98 vec:75 PCI-MSI/-X status=030 
aff:{1}/{0-5} in-flight=0 d0:879(---)
(XEN) [2021-06-14 23:02:49]    IRQ:  99 vec:e5 PCI-MSI/-X status=030 
aff:{5}/{0-5} in-flight=0 d0:878(---)
(XEN) [2021-06-14 23:02:49]    IRQ: 100 vec:ed PCI-MSI/-X status=030 
aff:{10}/{6-11} in-flight=0 d0:877(---)
(XEN) [2021-06-14 23:02:49]    IRQ: 101 vec:2e PCI-MSI/-X status=030 
aff:{10}/{6-11} in-flight=0 d0:876(---)
(XEN) [2021-06-14 23:02:49]    IRQ: 102 vec:6a PCI-MSI/-X status=030 
aff:{5}/{0-5} in-flight=0 d6:103(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 103 vec:26 PCI-MSI/-X status=030 
aff:{11}/{6-11} in-flight=0 d6:102(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 104 vec:85 PCI-MSI/-X status=030 
aff:{4}/{0-5} in-flight=0 d6:101(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 105 vec:84 PCI-MSI/-X status=030 
aff:{2}/{0-5} (XEN) [2021-06-14 23:02:49] grant_table.c:803:d0v4 Bad 
flags (0) or dom (0); expected d0
in-flight=0 d6:100(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 106 vec:46 PCI-MSI/-X status=030 
aff:{0}/{0-5} in-flight=0 d6: 99(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 107 vec:c5 PCI-MSI status=030 
aff:{10}/{6-11} in-flight=0 d0:870(---)
(XEN) [2021-06-14 23:02:49]    IRQ: 108 vec:5d PCI-MSI status=010 
aff:{11}/{6-11} in-flight=0 d2:103(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 109 vec:64 PCI-MSI/-X status=030 
aff:{3}/{0-5} in-flight=0 d7:103(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 110 vec:9b PCI-MSI/-X status=030 
aff:{4}/{0-5} in-flight=0 d7:102(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 111 vec:a3 PCI-MSI/-X status=030 
aff:{4}/{0-5} in-flight=0 d7:101(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 112 vec:ab PCI-MSI/-X status=030 
aff:{4}/{0-5} in-flight=0 d7:100(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 113 vec:b3 PCI-MSI/-X status=030 
aff:{4}/{0-5} in-flight=0 d7: 99(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 114 vec:d3 PCI-MSI/-X status=030 
aff:{4}/{0-5} in-flight=0 d7: 98(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 115 vec:db PCI-MSI/-X status=030 
aff:{4}/{0-5} in-flight=0 d7: 97(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 116 vec:71 PCI-MSI/-X status=030 
aff:{7}/{6-11} in-flight=0 d5:103(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 117 vec:63 PCI-MSI/-X status=030 
aff:{0}/{0-5} in-flight=0 d5:102(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 118 vec:6b PCI-MSI/-X status=030 
aff:{0}/{0-5} in-flight=0 d5:101(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 119 vec:73 PCI-MSI/-X status=030 
aff:{0}/{0-5} in-flight=0 d5:100(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 120 vec:7b PCI-MSI/-X status=030 
aff:{0}/{0-5} in-flight=0 d5: 99(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 121 vec:83 PCI-MSI/-X status=030 
aff:{0}/{0-5} in-flight=0 d5: 98(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 122 vec:8b PCI-MSI/-X status=030 
aff:{0}/{0-5} in-flight=0 d5: 97(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 123 vec:4e PCI-MSI status=030 
aff:{5}/{0-5} in-flight=0 d5: 96(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 124 vec:5c PCI-MSI status=030 
aff:{6}/{6-11} in-flight=0 d7: 96(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 125 vec:4c PCI-MSI status=030 
aff:{5}/{0-5} in-flight=0 d7: 95(-M-)
(XEN) [2021-06-14 23:02:49]    IRQ: 126 vec:6d PCI-MSI status=030 
aff:{8}/{6-11} in-flight=0 d5: 95(-M-)
(XEN) [2021-06-14 23:02:49] Direct vector information:
(XEN) [2021-06-14 23:02:49]    0x22 -> irq_move_cleanup_interrupt()
(XEN) [2021-06-14 23:02:49]    0xf2 -> 
arch/x86/cpu/mcheck/mce_intel.c#cmci_interrupt()
(XEN) [2021-06-14 23:02:49]    0xf3 -> 
arch/x86/cpu/mcheck/mce_intel.c#intel_thermal_interrupt()
(XEN) [2021-06-14 23:02:49]    0xf4 -> 
arch/x86/hvm/vmx/vmx.c#pi_notification_interrupt()
(XEN) [2021-06-14 23:02:49]    0xf9 -> pmu_apic_interrupt()
(XEN) [2021-06-14 23:02:49]    0xfa -> apic_timer_interrupt()
(XEN) [2021-06-14 23:02:49]    0xfb -> call_function_interrupt()
(XEN) [2021-06-14 23:02:49]    0xfc -> event_check_interrupt()
(XEN) [2021-06-14 23:02:49]    0xfd -> invalidate_interrupt()
(XEN) [2021-06-14 23:02:49]    0xfe -> error_interrupt()
(XEN) [2021-06-14 23:02:49]    0xff -> spurious_interrupt()
(XEN) [2021-06-14 23:02:49] IO-APIC interrupt information:
(XEN) [2021-06-14 23:02:49]     IRQ  0 Vec240:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin  2: vec=f0 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00000001
(XEN) [2021-06-14 23:02:49]     IRQ  1 Vec163:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin  1: vec=a3 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00010004
(XEN) [2021-06-14 23:02:49]     IRQ  3 Vec 71:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin  3: vec=47 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00000100
(XEN) [2021-06-14 23:02:49]     IRQ  4 Vec241:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin  4: vec=f1 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00010555
(XEN) [2021-06-14 23:02:49]     IRQ  5 Vec 80:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin  5: vec=50 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00000001
(XEN) [2021-06-14 23:02:49]     IRQ  6 Vec 88:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin  6: vec=58 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00000001
(XEN) [2021-06-14 23:02:49]     IRQ  7 Vec 96:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin  7: vec=60 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00000001
(XEN) [2021-06-14 23:02:49]     IRQ  8 Vec140:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin  8: vec=8c 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00000040
(XEN) [2021-06-14 23:02:49]     IRQ  9 Vec192:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin  9: vec=c0 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=L mask=0 
dest_id:00000010
(XEN) [2021-06-14 23:02:49]     IRQ 10 Vec120:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin 10: vec=78 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00000001
(XEN) [2021-06-14 23:02:49]     IRQ 11 Vec136:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin 11: vec=88 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00000001
(XEN) [2021-06-14 23:02:49]     IRQ 12 Vec144:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin 12: vec=90 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00000001
(XEN) [2021-06-14 23:02:49]     IRQ 13 Vec152:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin 13: vec=98 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=1 
dest_id:00000001
(XEN) [2021-06-14 23:02:49]     IRQ 14 Vec160:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin 14: vec=a0 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00000001
(XEN) [2021-06-14 23:02:49]     IRQ 15 Vec168:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin 15: vec=a8 
delivery=LoPri dest=L status=0 polarity=0 irr=0 trig=E mask=0 
dest_id:00000001
(XEN) [2021-06-14 23:02:49]     IRQ 16 Vec185:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin 16: vec=b9 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=1 
dest_id:00000555
(XEN) [2021-06-14 23:02:49]     IRQ 18 Vec196:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin 18: vec=c4 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=0 
dest_id:00000010
(XEN) [2021-06-14 23:02:49]     IRQ 19 Vec173:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin 19: vec=ad 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=0 
dest_id:00000004
(XEN) [2021-06-14 23:02:49]     IRQ 22 Vec187:
(XEN) [2021-06-14 23:02:49]       Apic 0x00, Pin 22: vec=bb 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=1 
dest_id:00000555
(XEN) [2021-06-14 23:02:49]     IRQ 26 Vec216:
(XEN) [2021-06-14 23:02:49]       Apic 0x01, Pin  2: vec=d8 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=1 
dest_id:00000555
(XEN) [2021-06-14 23:02:49]     IRQ 27 Vec 47:
(XEN) [2021-06-14 23:02:49]       Apic 0x01, Pin  3: vec=2f 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=0 
dest_id:00010001
(XEN) [2021-06-14 23:02:49]     IRQ 32 Vec232:
(XEN) [2021-06-14 23:02:49]       Apic 0x01, Pin  8: vec=e8 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=0 
dest_id:00000010
(XEN) [2021-06-14 23:02:49]     IRQ 34 Vec230:
(XEN) [2021-06-14 23:02:49]       Apic 0x01, Pin 10: vec=e6 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=0 
dest_id:00010400
(XEN) [2021-06-14 23:02:49]     IRQ 40 Vec153:
(XEN) [2021-06-14 23:02:49]       Apic 0x01, Pin 16: vec=99 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=1 
dest_id:00000555
(XEN) [2021-06-14 23:02:49]     IRQ 56 Vec 55:
(XEN) [2021-06-14 23:02:49]       Apic 0x02, Pin  8: vec=37 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=0 
dest_id:00010001
(XEN) [2021-06-14 23:02:50]     IRQ 60 Vec 63:
(XEN) [2021-06-14 23:02:50]       Apic 0x02, Pin 12: vec=3f 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=0 
dest_id:00010001
(XEN) [2021-06-14 23:02:50]     IRQ 64 Vec238:
(XEN) [2021-06-14 23:02:50]       Apic 0x02, Pin 16: vec=ee 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=0 
dest_id:00010400
(XEN) [2021-06-14 23:02:50]     IRQ 68 Vec 39:
(XEN) [2021-06-14 23:02:50]       Apic 0x02, Pin 20: vec=27 
delivery=LoPri dest=L status=0 polarity=1 irr=0 trig=L mask=0 
dest_id:00010400
(XEN) [2021-06-14 23:02:50] [m: memory info]
(XEN) [2021-06-14 23:02:50] Physical memory information:
(XEN) [2021-06-14 23:02:50]     Xen heap: 0kB free
(XEN) [2021-06-14 23:02:50]     heap[15]: 64512kB free
(XEN) [2021-06-14 23:02:50]     heap[16]: 131072kB free
(XEN) [2021-06-14 23:02:50]     heap[17]: 262144kB free
(XEN) [2021-06-14 23:02:50]     heap[18]: 524288kB free
(XEN) [2021-06-14 23:02:50]     heap[19]: 917636kB free
(XEN) [2021-06-14 23:02:50]     DMA heap: 1899652kB free
(XEN) [2021-06-14 23:02:50]     heap[24]: 6290880kB free
(XEN) [2021-06-14 23:02:50]     heap[25]: 1983172kB free
(XEN) [2021-06-14 23:02:50]     Dom heap: 8274052kB free
(XEN) [2021-06-14 23:02:50] [n: NMI statistics]
(XEN) [2021-06-14 23:02:50] CPU    NMI
(XEN) [2021-06-14 23:02:50]   0      2
(XEN) [2021-06-14 23:02:50]   1      0
(XEN) [2021-06-14 23:02:50]   2      0
(XEN) [2021-06-14 23:02:50]   3      0
(XEN) [2021-06-14 23:02:50]   4      0
(XEN) [2021-06-14 23:02:50]   5      0
(XEN) [2021-06-14 23:02:50]   6      0
(XEN) [2021-06-14 23:02:50]   7      0
(XEN) [2021-06-14 23:02:50]   8      0
(XEN) [2021-06-14 23:02:50]   9      0
(XEN) [2021-06-14 23:02:50]  10      0
(XEN) [2021-06-14 23:02:50]  11      0
(XEN) [2021-06-14 23:02:50] d0v0: NMI neither pending nor masked
(XEN) [2021-06-14 23:02:50] [p: print performance counters]
(XEN) [2021-06-14 23:02:50] Xen performance counters SHOW  (now = 
16920481776666)
(XEN) [2021-06-14 23:02:50] exceptions TOTAL[    79357368]
(XEN) [2021-06-14 23:02:50]                   ARR00[         0] 
ARR01[         0]  ARR02[         0]  ARR03[    492405]
(XEN) [2021-06-14 23:02:50]                   ARR04[         0] 
ARR05[         0]  ARR06[      1201]  ARR07[         0]
(XEN) [2021-06-14 23:02:50]                   ARR08[         0] 
ARR09[         0]  ARR10[         0]  ARR11[         0]
(XEN) [2021-06-14 23:02:50]                   ARR12[         1] ARR13[  
69905172]  ARR14[   8958657]  ARR15[         0]
(XEN) [2021-06-14 23:02:50]                   ARR16[         0] 
ARR17[         0]  ARR18[         0]  ARR19[         0]
(XEN) [2021-06-14 23:02:50]                   ARR20[         0] 
ARR21[         0]  ARR22[         0]  ARR23[         0]
(XEN) [2021-06-14 23:02:50]                   ARR24[         0] 
ARR25[         0]  ARR26[         0]  ARR27[         0]
(XEN) [2021-06-14 23:02:50]                   ARR28[         0] 
ARR29[         0]  ARR30[         0]  ARR31[         0]
(XEN) [2021-06-14 23:02:50] vmexits TOTAL[  1185247649]
(XEN) [2021-06-14 23:02:50]                   ARR00[         0] ARR01[ 
135632490]  ARR02[         0]  ARR03[         0]
(XEN) [2021-06-14 23:02:50]                   ARR04[         0] 
ARR05[         0]  ARR06[         0]  ARR07[ 304121397]
(XEN) [2021-06-14 23:02:50]                   ARR08[         0] 
ARR09[         0]  ARR10[  24393537]  ARR11[         0]
(XEN) [2021-06-14 23:02:50]                   ARR12[ 251667860] 
ARR13[         0]  ARR14[         0]  ARR15[         0]
(XEN) [2021-06-14 23:02:50]                   ARR16[         0] 
ARR17[         0]  ARR18[ 425866442]  ARR19[         0]
(XEN) [2021-06-14 23:02:50]                   ARR20[         0] 
ARR21[         0]  ARR22[         0]  ARR23[         0]
(XEN) [2021-06-14 23:02:50]                   ARR24[         0] 
ARR25[         0]  ARR26[         0]  ARR27[         0]
(XEN) [2021-06-14 23:02:50]                   ARR28[   1609038] 
ARR29[        38]  ARR30[   3185995]  ARR31[    369562]
(XEN) [2021-06-14 23:02:50]                   ARR32[      1280] 
ARR33[         0]  ARR34[         0]  ARR35[         0]
(XEN) [2021-06-14 23:02:50]                   ARR36[         0] 
ARR37[         0]  ARR38[         0]  ARR39[         0]
(XEN) [2021-06-14 23:02:50]                   ARR40[  38129033] 
ARR41[         0]  ARR42[         0]  ARR43[         0]
(XEN) [2021-06-14 23:02:50]                   ARR44[         1] 
ARR45[       195]  ARR46[         0]  ARR47[         0]
(XEN) [2021-06-14 23:02:50]                   ARR48[    255810] 
ARR49[     18291]  ARR50[         0]  ARR51[         0]
(XEN) [2021-06-14 23:02:50]                   ARR52[         0] 
ARR53[         0]  ARR54[        55]  ARR55[        44]
(XEN) [2021-06-14 23:02:50] cause vector TOTAL[           0]
(XEN) [2021-06-14 23:02:50] SVMexits TOTAL[           0]
(XEN) [2021-06-14 23:02:50] segmentation fixups TOTAL[           0]
(XEN) [2021-06-14 23:02:50] apic timer interrupts TOTAL[   261296221]  
CPU00[  22015639]  CPU01[  21983485]  CPU02[ 21960573]  CPU03[  21918261]
(XEN) [2021-06-14 23:02:50] CPU04[  21901034]  CPU05[  21827405]  
CPU06[  21586232]  CPU07[ 21652276]
(XEN) [2021-06-14 23:02:50] CPU08[  21625113]  CPU09[  21601078]  
CPU10[  21596158]  CPU11[ 21629255]
(XEN) [2021-06-14 23:02:50] domain page tlb flushes TOTAL[      965705]  
CPU00[     61953]  CPU01[     63968] CPU02[     64600]  CPU03[     65705]
(XEN) [2021-06-14 23:02:50] CPU04[     66724]  CPU05[     62779]  
CPU06[     95203] CPU07[     98425]
(XEN) [2021-06-14 23:02:50] CPU08[     97532]  CPU09[     96406]  
CPU10[     96401] CPU11[     96011]
(XEN) [2021-06-14 23:02:50] calls to mmuext_op TOTAL[    16010940]  
CPU00[    730114]  CPU01[    805748] CPU02[    804784]  CPU03[    794956]
(XEN) [2021-06-14 23:02:50] CPU04[    794844]  CPU05[    702558]  
CPU06[   1754133]  CPU07[ 1971466]
(XEN) [2021-06-14 23:02:50] CPU08[   1919259]  CPU09[   1948422]  
CPU10[   1925783]  CPU11[ 1858873]
(XEN) [2021-06-14 23:02:50] mmuext ops TOTAL[    29773197]  CPU00[   
1356353]  CPU01[   1440142] CPU02[   1451254]  CPU03[   1419663]
(XEN) [2021-06-14 23:02:50] CPU04[   1408412]  CPU05[   1312110]  
CPU06[   3320591]  CPU07[ 3661687]
(XEN) [2021-06-14 23:02:50] CPU08[   3607938]  CPU09[   3645486]  
CPU10[   3614747]  CPU11[ 3534814]
(XEN) [2021-06-14 23:02:50] calls to mmu_update TOTAL[    39123648]  
CPU00[   1529289]  CPU01[   2264527] CPU02[   2013124]  CPU03[   2222015]
(XEN) [2021-06-14 23:02:50] CPU04[   2345658]  CPU05[   1390582]  
CPU06[   3222160]  CPU07[ 9154270]
(XEN) [2021-06-14 23:02:50] CPU08[   3854395]  CPU09[   3992600]  
CPU10[   3845809]  CPU11[ 3289305]
(XEN) [2021-06-14 23:02:50] page updates TOTAL[    44724861]  CPU00[   
1832850]  CPU01[   2705012] CPU02[   2433149]  CPU03[   2748417]
(XEN) [2021-06-14 23:02:50] CPU04[   2748751]  CPU05[   1681499]  
CPU06[   3639691]  CPU07[ 9848678]
(XEN) [2021-06-14 23:02:50] CPU08[   4441804]  CPU09[   4526026]  
CPU10[   4405489]  CPU11[ 3713495]
(XEN) [2021-06-14 23:02:50] mmu_updates of writable pages TOTAL[    
10110502]  CPU00[    319725]  CPU01[    467396] CPU02[    450769]  
CPU03[    527031]
(XEN) [2021-06-14 23:02:50] CPU04[    393785]  CPU05[    306907]  
CPU06[    445877]  CPU07[ 4924700]
(XEN) [2021-06-14 23:02:50] CPU08[    628516]  CPU09[    566336]  
CPU10[    627740]  CPU11[ 451720]
(XEN) [2021-06-14 23:02:50] calls to update_va_map TOTAL[     1475863]  
CPU00[     41121]  CPU01[     78848] CPU02[     69922]  CPU03[     71323]
(XEN) [2021-06-14 23:02:50] CPU04[     70903]  CPU05[     36540]  
CPU06[     63489]  CPU07[ 726400]
(XEN) [2021-06-14 23:02:50] CPU08[     81299]  CPU09[     91297]  
CPU10[     83875] CPU11[     60846]
(XEN) [2021-06-14 23:02:50] page faults TOTAL[     8958657]  CPU00[    
425172]  CPU01[    678626] CPU02[    598376]  CPU03[    670915]
(XEN) [2021-06-14 23:02:50] CPU04[    786008]  CPU05[    433004]  
CPU06[    732211]  CPU07[ 1054067]
(XEN) [2021-06-14 23:02:50] CPU08[    948596]  CPU09[    959282]  
CPU10[    916811]  CPU11[ 755589]
(XEN) [2021-06-14 23:02:50] copy_user faults TOTAL[      806766]  
CPU00[     59277]  CPU01[     59769] CPU02[     59739]  CPU03[     59760]
(XEN) [2021-06-14 23:02:50] CPU04[     59859]  CPU05[     59436]  
CPU06[     72312] CPU07[     76341]
(XEN) [2021-06-14 23:02:50] CPU08[     74886]  CPU09[     74916]  
CPU10[     74838] CPU11[     75633]
(XEN) [2021-06-14 23:02:50] map_domain_page count TOTAL[   181146772]  
CPU00[  14920770]  CPU01[  18860993] CPU02[   8383635]  CPU03[   9392496]
(XEN) [2021-06-14 23:02:50] CPU04[  13098013]  CPU05[   7602456]  
CPU06[  15744774]  CPU07[ 26119453]
(XEN) [2021-06-14 23:02:50] CPU08[  14569150]  CPU09[  14918259]  
CPU10[  16992285]  CPU11[ 20544488]
(XEN) [2021-06-14 23:02:50] writable pt emulations TOTAL[     3264636]  
CPU00[    138773]  CPU01[    230514] CPU02[    198911]  CPU03[    238590]
(XEN) [2021-06-14 23:02:50] CPU04[    298843]  CPU05[    167623]  
CPU06[    268141]  CPU07[ 406902]
(XEN) [2021-06-14 23:02:50] CPU08[    360233]  CPU09[    358088]  
CPU10[    324152]  CPU11[ 273866]
(XEN) [2021-06-14 23:02:50] mmio ro emulations TOTAL[         303]  
CPU00[         0]  CPU01[         3] CPU02[        23]  CPU03[        21]
(XEN) [2021-06-14 23:02:50] CPU04[        14]  CPU05[        25]  
CPU06[         8] CPU07[        54]
(XEN) [2021-06-14 23:02:50] CPU08[        42]  CPU09[        16]  
CPU10[        53] CPU11[        44]
(XEN) [2021-06-14 23:02:50] pre-exception fixed TOTAL[           0]
(XEN) [2021-06-14 23:02:50] guest pagetable walks TOTAL[  2242301107]  
CPU00[ 190015803]  CPU01[ 190010080]  CPU02[ 189552946]  CPU03[ 189379165]
(XEN) [2021-06-14 23:02:51] CPU04[ 188958240]  CPU05[ 188635765]  CPU06[ 
184108499]  CPU07[ 184688294]
(XEN) [2021-06-14 23:02:51] CPU08[ 184266295]  CPU09[ 184190111]  CPU10[ 
184188074]  CPU11[ 184311018]
(XEN) [2021-06-14 23:02:51] calls to shadow_alloc TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_alloc flushed TLBs TOTAL[           0]
(XEN) [2021-06-14 23:02:51] number of shadow pages in use 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] calls to shadow_free TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow recycles old shadows TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow recycles in-use shadows 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow hit read-only linear map 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow A bit update TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow A&D bit update TOTAL[           0]
(XEN) [2021-06-14 23:02:51] calls to shadow_fault TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault fast path n/p TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault fast path mmio TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault fast path error 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault guest bad gfn TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault really guest fault 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault emulates a read 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault emulates a write 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault emulator fails TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault emulate stack write 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault emulate for CR0.WP=0 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault fast emulate TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault fast emulate failed 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault handled as mmio 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_fault fixed fault TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow causes ptwr to emulate 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] calls to shadow_validate_gl1e 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] calls to shadow_validate_gl2e 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] calls to shadow_validate_gl3e 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] calls to shadow_validate_gl4e 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] calls to shadow_hash_lookup TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow hash hit in bucket head 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow hash misses TOTAL[           0]
(XEN) [2021-06-14 23:02:51] calls to get_shadow_status TOTAL[           0]
(XEN) [2021-06-14 23:02:51] calls to shadow_hash_insert TOTAL[           0]
(XEN) [2021-06-14 23:02:51] calls to shadow_hash_delete TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow removes write access TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow writeable: 32b w2k3 TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow writeable: 32pae w2k3 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow writeable: 64b w2k3 TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow writeable: linux low/solaris 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow writeable: linux high 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow writeable: FreeBSD TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow writeable: sl1p TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow writeable: sl1p failed 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow writeable brute-force 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow writeable resync bf TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow removes all mappings TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow rm-mappings brute-force 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow unshadows for fork/exit 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow unshadows a page TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow unshadow by up-pointer 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow unshadow brute-force TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow_get_page_from_l1e failed 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow checks gwalk TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow check inconsistent gwalk 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow flush tlb by removing write perm  
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow emulates invlpg TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow invlpg faults TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow extra pt write TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow extra non-pt-write op 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow extra emulation failed 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow OOS fixup adds TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow OOS fixup evictions TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow OOS unsyncs TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow OOS evictions TOTAL[           0]
(XEN) [2021-06-14 23:02:51] shadow OOS resyncs TOTAL[           0]
(XEN) [2021-06-14 23:02:51] realmode instructions emulated 
TOTAL[           0]
(XEN) [2021-06-14 23:02:51] vmexits from realmode TOTAL[           0]
(XEN) [2021-06-14 23:02:51] vmexits from Pause-Loop Detection TOTAL[    
38131907]  CPU00[   3795163]  CPU01[   3785589] CPU02[   3885311]  
CPU03[   3799393]
(XEN) [2021-06-14 23:02:51] CPU04[   3856715]  CPU05[   3827047]  
CPU06[   2412338]  CPU07[ 2515533]
(XEN) [2021-06-14 23:02:51] CPU08[   2587634]  CPU09[   2585950]  
CPU10[   2526618]  CPU11[ 2554632]
(XEN) [2021-06-14 23:02:51] hypercalls TOTAL[   501159413]
(XEN) [2021-06-14 23:02:51]                   ARR00[ 501159476] 
ARR01[         0]  ARR02[         0]  ARR03[         0]
(XEN) [2021-06-14 23:02:51]                   ARR04[         0] 
ARR05[         0]  ARR06[         0]  ARR07[         0]
(XEN) [2021-06-14 23:02:51]                   ARR08[         0] 
ARR09[         0]  ARR10[         0]  ARR11[         0]
(XEN) [2021-06-14 23:02:51]                   ARR12[         0] 
ARR13[         0]  ARR14[         0]  ARR15[         0]
(XEN) [2021-06-14 23:02:51]                   ARR16[         0] 
ARR17[         0]  ARR18[         0]  ARR19[         0]
(XEN) [2021-06-14 23:02:51]                   ARR20[         0] 
ARR21[         0]  ARR22[         0]  ARR23[         0]
(XEN) [2021-06-14 23:02:51]                   ARR24[         0] 
ARR25[         0]  ARR26[         0]  ARR27[         0]
(XEN) [2021-06-14 23:02:51]                   ARR28[         0] 
ARR29[         0]  ARR30[         0]  ARR31[         0]
(XEN) [2021-06-14 23:02:51]                   ARR32[         0] 
ARR33[         0]  ARR34[         0]  ARR35[         0]
(XEN) [2021-06-14 23:02:51]                   ARR36[         0] 
ARR37[         0]  ARR38[         0]  ARR39[         0]
(XEN) [2021-06-14 23:02:51]                   ARR40[         0] 
ARR41[         0]  ARR42[         0]  ARR43[         0]
(XEN) [2021-06-14 23:02:51]                   ARR44[         0] 
ARR45[         0]  ARR46[         0]  ARR47[         0]
(XEN) [2021-06-14 23:02:51]                   ARR48[         0] 
ARR49[         0]  ARR50[         0]  ARR51[         0]
(XEN) [2021-06-14 23:02:51]                   ARR52[         0] 
ARR53[         0]  ARR54[         0]  ARR55[         0]
(XEN) [2021-06-14 23:02:51]                   ARR56[         0] 
ARR57[         0]  ARR58[         0]  ARR59[         0]
(XEN) [2021-06-14 23:02:51]                   ARR60[         0] 
ARR61[         0]  ARR62[         0]  ARR63[         0]
(XEN) [2021-06-14 23:02:51] calls to multicall TOTAL[      158784]  
CPU00[      7188]  CPU01[     13189] CPU02[     11477]  CPU03[     12631]
(XEN) [2021-06-14 23:02:51] CPU04[     12982]  CPU05[      6298]  
CPU06[     11880] CPU07[     23971]
(XEN) [2021-06-14 23:02:51] CPU08[     15217]  CPU09[     17148]  
CPU10[     15343] CPU11[     11460]
(XEN) [2021-06-14 23:02:51] calls from multicall TOTAL[     1309908]  
CPU00[     60337]  CPU01[    114716] CPU02[    101643]  CPU03[    102915]
(XEN) [2021-06-14 23:02:51] CPU04[    102546]  CPU05[     53810]  
CPU06[     94148]  CPU07[ 210569]
(XEN) [2021-06-14 23:02:51] CPU08[    120736]  CPU09[    134245]  
CPU10[    123707] CPU11[     90536]
(XEN) [2021-06-14 23:02:51] #interrupts TOTAL[   421232512]  CPU00[  
33606254]  CPU01[  33732584]  CPU02[ 33727434]  CPU03[  33635764]
(XEN) [2021-06-14 23:02:51] CPU04[  33648007]  CPU05[  33331794]  
CPU06[  36490358]  CPU07[ 36672312]
(XEN) [2021-06-14 23:02:51] CPU08[  36702950]  CPU09[  36563772]  
CPU10[  36657941]  CPU11[ 36463931]
(XEN) [2021-06-14 23:02:51] #IPIs TOTAL[   143261504]  CPU00[  
10448762]  CPU01[  10612484]  CPU02[ 10637290]  CPU03[  10579645]
(XEN) [2021-06-14 23:02:51] CPU04[  10614803]  CPU05[  10367581]  
CPU06[  13203728]  CPU07[ 13385253]
(XEN) [2021-06-14 23:02:51] CPU08[  13450223]  CPU09[  13336402]  
CPU10[  13419437]  CPU11[ 13206179]
(XEN) [2021-06-14 23:02:51] RCU: idle_timer TOTAL[           1]  
CPU00[         0]  CPU01[         0] CPU02[         0]  CPU03[         0]
(XEN) [2021-06-14 23:02:51] CPU04[         0]  CPU05[         0]  
CPU06[         1] CPU07[         0]
(XEN) [2021-06-14 23:02:51] CPU08[         0]  CPU09[         0]  
CPU10[         0] CPU11[         0]
(XEN) [2021-06-14 23:02:51] sched: timer TOTAL[     8895485]  CPU00[    
735221]  CPU01[    742084] CPU02[    739670]  CPU03[    743799]
(XEN) [2021-06-14 23:02:51] CPU04[    739681]  CPU05[    738291]  
CPU06[    721516]  CPU07[ 749070]
(XEN) [2021-06-14 23:02:51] CPU08[    742962]  CPU09[    747636]  
CPU10[    746520]  CPU11[ 749067]
(XEN) [2021-06-14 23:02:51] sched: runs through scheduler TOTAL[   
643776030]  CPU00[  52571647]  CPU01[  52705913]  CPU02[ 52635664]  
CPU03[  52414855]
(XEN) [2021-06-14 23:02:52] CPU04[  52453016]  CPU05[  52219792]  
CPU06[  54455766]  CPU07[ 54856069]
(XEN) [2021-06-14 23:02:52] CPU08[  54884308]  CPU09[  54830043]  
CPU10[  54821732]  CPU11[ 54927856]
(XEN) [2021-06-14 23:02:52] sched: context switches TOTAL[   594262846]  
CPU00[  47869202]  CPU01[  48008372]  CPU02[ 47839549]  CPU03[  47700399]
(XEN) [2021-06-14 23:02:52] CPU04[  47686462]  CPU05[  47484179]  
CPU06[  51083705]  CPU07[ 51345205]
(XEN) [2021-06-14 23:02:52] CPU08[  51307551]  CPU09[  51255232]  
CPU10[  51304768]  CPU11[ 51378804]
(XEN) [2021-06-14 23:02:52] sched: specific scheduler TOTAL[   
643779363]  CPU00[  52572005]  CPU01[  52706324]  CPU02[ 52635866]  
CPU03[  52415201]
(XEN) [2021-06-14 23:02:52] CPU04[  52453290]  CPU05[  52220213]  
CPU06[  54456037]  CPU07[ 54856352]
(XEN) [2021-06-14 23:02:52] CPU08[  54884524]  CPU09[  54830043]  
CPU10[  54822058]  CPU11[ 54928133]
(XEN) [2021-06-14 23:02:52] sched: dom_init TOTAL[           8]  
CPU00[         3]  CPU01[         1] CPU02[         0]  CPU03[         0]
(XEN) [2021-06-14 23:02:52] CPU04[         0]  CPU05[         1]  
CPU06[         0] CPU07[         0]
(XEN) [2021-06-14 23:02:52] CPU08[         1]  CPU09[         1]  
CPU10[         0] CPU11[         1]
(XEN) [2021-06-14 23:02:52] sched: dom_destroy TOTAL[           2]  
CPU00[         0]  CPU01[         0] CPU02[         0]  CPU03[         0]
(XEN) [2021-06-14 23:02:52] CPU04[         0]  CPU05[         0]  
CPU06[         1] CPU07[         0]
(XEN) [2021-06-14 23:02:52] CPU08[         0]  CPU09[         1]  
CPU10[         0] CPU11[         0]
(XEN) [2021-06-14 23:02:52] sched: vcpu_yield TOTAL[    38151639]  
CPU00[   3796348]  CPU01[   3786870] CPU02[   3886675]  CPU03[   3800747]
(XEN) [2021-06-14 23:02:52] CPU04[   3858025]  CPU05[   3828495]  
CPU06[   2414065]  CPU07[ 2518419]
(XEN) [2021-06-14 23:02:52] CPU08[   2589443]  CPU09[   2587682]  
CPU10[   2528510]  CPU11[ 2556420]
(XEN) [2021-06-14 23:02:52] sched: unit_alloc TOTAL[          70]  
CPU00[        42]  CPU01[         6] CPU02[         0]  CPU03[         0]
(XEN) [2021-06-14 23:02:52] CPU04[         0]  CPU05[         0]  
CPU06[         6] CPU07[         0]
(XEN) [2021-06-14 23:02:52] CPU08[         6]  CPU09[         0]  
CPU10[         4] CPU11[         6]
(XEN) [2021-06-14 23:02:52] sched: unit_insert TOTAL[          46]  
CPU00[        18]  CPU01[         6] CPU02[         0]  CPU03[         0]
(XEN) [2021-06-14 23:02:52] CPU04[         0]  CPU05[         0]  
CPU06[         6] CPU07[         0]
(XEN) [2021-06-14 23:02:52] CPU08[         6]  CPU09[         0]  
CPU10[         4] CPU11[         6]
(XEN) [2021-06-14 23:02:52] sched: unit_remove TOTAL[          12]  
CPU00[         0]  CPU01[         0] CPU02[         0]  CPU03[         0]
(XEN) [2021-06-14 23:02:52] CPU04[         0]  CPU05[         0]  
CPU06[         6] CPU07[         0]
(XEN) [2021-06-14 23:02:52] CPU08[         0]  CPU09[         6]  
CPU10[         0] CPU11[         0]
(XEN) [2021-06-14 23:02:52] sched: unit_sleep TOTAL[        2441]  
CPU00[       275]  CPU01[       297] CPU02[       142]  CPU03[       191]
(XEN) [2021-06-14 23:02:52] CPU04[       189]  CPU05[       217]  
CPU06[       211] CPU07[       191]
(XEN) [2021-06-14 23:02:52] CPU08[       142]  CPU09[       133]  
CPU10[       265] CPU11[       188]
(XEN) [2021-06-14 23:02:52] sched: unit_wake_running TOTAL[      
903117]  CPU00[     74109]  CPU01[     74002] CPU02[     72786]  
CPU03[     72722]
(XEN) [2021-06-14 23:02:52] CPU04[     74048]  CPU05[     72840]  
CPU06[     75887] CPU07[     78247]
(XEN) [2021-06-14 23:02:52] (XEN) [2021-06-14 23:02:52] 
grant_table.c:803:d0v3 Bad flags (0) or dom (0); expected d0
   CPU08[     77385]  CPU09[     76683]  CPU10[     76318] CPU11[     
78093]
(XEN) [2021-06-14 23:02:52] sched: unit_wake_onrunq TOTAL[           8]  
CPU00[         0]  CPU01[         0] CPU02[         0]  CPU03[         1]
(XEN) [2021-06-14 23:02:52] CPU04[         1]  CPU05[         0]  
CPU06[         2] CPU07[         1]
(XEN) [2021-06-14 23:02:52] CPU08[         0]  CPU09[         1]  
CPU10[         1] CPU11[         1]
(XEN) [2021-06-14 23:02:52] sched: unit_wake_runnable TOTAL[   
298128686]  CPU00[  23954632]  CPU01[  23970796]  CPU02[ 23885891]  
CPU03[  23827323]
(XEN) [2021-06-14 23:02:52] CPU04[  23851130]  CPU05[  23696608]  
CPU06[  25763246]  CPU07[ 25856640]
(XEN) [2021-06-14 23:02:52] CPU08[  25820279]  CPU09[  25826194]  
CPU10[  25830418]  CPU11[ 25845874]
(XEN) [2021-06-14 23:02:52] sched: unit_wake_not_runnable 
TOTAL[           0]
(XEN) [2021-06-14 23:02:52] sched: tickled_no_cpu TOTAL[    17059211]  
CPU00[   1082939]  CPU01[   1080884] CPU02[   1077255]  CPU03[   1075032]
(XEN) [2021-06-14 23:02:52] CPU04[   1070366]  CPU05[   1066321]  
CPU06[   1735355]  CPU07[ 1768423]
(XEN) [2021-06-14 23:02:52] CPU08[   1779619]  CPU09[   1764720]  
CPU10[   1778835]  CPU11[ 1779555]
(XEN) [2021-06-14 23:02:52] sched: tickled_idle_cpu TOTAL[   279331815]  
CPU00[  22736094]  CPU01[  22783920]  CPU02[ 22679538]  CPU03[  22646476]
(XEN) [2021-06-14 23:02:52] CPU04[  22634755]  CPU05[  22483830]  
CPU06[  23836361]  CPU07[ 23947563]
(XEN) [2021-06-14 23:02:52] CPU08[  23850059]  CPU09[  23942807]  
CPU10[  23886968]  CPU11[ 23903684]
(XEN) [2021-06-14 23:02:52] sched: tickled_idle_cpu_exclusive 
TOTAL[           0]
(XEN) [2021-06-14 23:02:52] sched: tickled_busy_cpu TOTAL[    18564667]  
CPU00[   1323898]  CPU01[   1292014] CPU02[   1308502]  CPU03[   1281682]
(XEN) [2021-06-14 23:02:52] CPU04[   1311544]  CPU05[   1306912]  
CPU06[   1794248]  CPU07[ 1783710]
(XEN) [2021-06-14 23:02:52] CPU08[   1824565]  CPU09[   1752398]  
CPU10[   1796374]  CPU11[ 1788924]
(XEN) [2021-06-14 23:02:52] sched: unit_check TOTAL[  1287614382]  
CPU00[ 105149848]  CPU01[ 105417756]  CPU02[ 105278102]  CPU03[ 104835850]
(XEN) [2021-06-14 23:02:52] CPU04[ 104912160]  CPU05[ 104445250]  CPU06[ 
108916512]  CPU07[ 109717314]
(XEN) [2021-06-14 23:02:52] CPU08[ 109773719]  CPU09[ 109660086]  CPU10[ 
109648730]  CPU11[ 109860704]
(XEN) [2021-06-14 23:02:52] csched: delay TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: acct_run TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: acct_no_work TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: acct_balance TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: acct_reorder TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: acct_min_credit TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: acct_unit_active TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: acct_unit_idle TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: unit_boost TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: unit_park TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: unit_unpark TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: load_balance_idle TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: load_balance_over TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: load_balance_other TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: steal_trylock TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: steal_trylock_failed 
TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: steal_peer_idle TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: migrate_queued TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: migrate_running TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: migrate_kicked_away TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched: unit_hot TOTAL[           0]
(XEN) [2021-06-14 23:02:52] csched2: burn_credits_t2c TOTAL[   
425609151]  CPU00[  34941338]  CPU01[  34921858]  CPU02[ 34961033]  
CPU03[  34723803]
(XEN) [2021-06-14 23:02:52] CPU04[  34817134]  CPU05[  34657671]  
CPU06[  35838948]  CPU07[ 36150523]
(XEN) [2021-06-14 23:02:52] CPU08[  36247870]  CPU09[  36071593]  
CPU10[  36113983]  CPU11[ 36163771]
(XEN) [2021-06-14 23:02:52] csched2: acct_load_balance TOTAL[        
1096]  CPU00[       107]  CPU01[       100] CPU02[       103]  
CPU03[        90]
(XEN) [2021-06-14 23:02:52] CPU04[        88]  CPU05[        81]  
CPU06[        82] CPU07[        95]
(XEN) [2021-06-14 23:02:52] CPU08[        84]  CPU09[        73]  
CPU10[        89] CPU11[       104]
(XEN) [2021-06-14 23:02:52] csched2: update_max_weight_quick 
TOTAL[           9]  CPU00[         3]  CPU01[         1] CPU02[         
1]  CPU03[         0]
(XEN) [2021-06-14 23:02:52] CPU04[         2]  CPU05[         0]  
CPU06[         1] CPU07[         0]
(XEN) [2021-06-14 23:02:52] CPU08[         0]  CPU09[         0]  
CPU10[         1] CPU11[         0]
(XEN) [2021-06-14 23:02:52] csched2: update_max_weight_full 
TOTAL[         426]  CPU00[        44]  CPU01[        41] CPU02[        
53]  CPU03[        32]
(XEN) [2021-06-14 23:02:53] CPU04[        26]  CPU05[        31]  
CPU06[        29] CPU07[        37]
(XEN) [2021-06-14 23:02:53] CPU08[        30]  CPU09[        26]  
CPU10[        44] CPU11[        33]
(XEN) [2021-06-14 23:02:53] csched2: migrate_requested TOTAL[         
824]  CPU00[        81]  CPU01[        75] CPU02[        77]  
CPU03[        58]
(XEN) [2021-06-14 23:02:53] CPU04[        72]  CPU05[        64]  
CPU06[        61] CPU07[        71]
(XEN) [2021-06-14 23:02:53] CPU08[        73]  CPU09[        49]  
CPU10[        65] CPU11[        78]
(XEN) [2021-06-14 23:02:53] csched2: migrate_on_runq TOTAL[          
83]  CPU00[         5]  CPU01[         7] CPU02[        10]  
CPU03[         7]
(XEN) [2021-06-14 23:02:53] CPU04[         6]  CPU05[         6]  
CPU06[         7] CPU07[        10]
(XEN) [2021-06-14 23:02:53] CPU08[         6]  CPU09[         4]  
CPU10[        10] CPU11[         5]
(XEN) [2021-06-14 23:02:53] csched2: migrate_no_runq TOTAL[        
2017]  CPU00[       200]  CPU01[       180] CPU02[       175]  
CPU03[       169]
(XEN) [2021-06-14 23:02:53] CPU04[       170]  CPU05[       150]  
CPU06[       155] CPU07[       167]
(XEN) [2021-06-14 23:02:53] CPU08[       150]  CPU09[       150]  
CPU10[       170] CPU11[       181]
(XEN) [2021-06-14 23:02:53] csched2: runtime_min_timer TOTAL[    
72280957]  CPU00[   4978109]  CPU01[   5487769] CPU02[   5196454]  
CPU03[   5215313]
(XEN) [2021-06-14 23:02:53] CPU04[   4711060]  CPU05[   4759081]  
CPU06[   6955494]  CPU07[ 7400382]
(XEN) [2021-06-14 23:02:53] CPU08[   6891188]  CPU09[   7165317]  
CPU10[   6798065]  CPU11[ 6722856]
(XEN) [2021-06-14 23:02:53] csched2: runtime_max_timer TOTAL[    
27380270]  CPU00[   1844873]  CPU01[   1829180] CPU02[   1855250]  
CPU03[   1839474]
(XEN) [2021-06-14 23:02:53] CPU04[   1840844]  CPU05[   1839481]  
CPU06[   2696125]  CPU07[ 2706080]
(XEN) [2021-06-14 23:02:53] CPU08[   2732319]  CPU09[   2714485]  
CPU10[   2737640]  CPU11[ 2744527]
(XEN) [2021-06-14 23:02:53] csched2: pick_resource TOTAL[         909]  
CPU00[       103]  CPU01[        85] CPU02[        67]  CPU03[        64]
(XEN) [2021-06-14 23:02:53] CPU04[        78]  CPU05[        66]  
CPU06[        76] CPU07[        68]
(XEN) [2021-06-14 23:02:53] CPU08[        78]  CPU09[        65]  
CPU10[        80] CPU11[        79]
(XEN) [2021-06-14 23:02:53] csched2: need_fallback_cpu TOTAL[           0]
(XEN) [2021-06-14 23:02:53] csched2: migrated TOTAL[    74432913]  
CPU00[   4953449]  CPU01[   4943252] CPU02[   4944818]  CPU03[   4926708]
(XEN) [2021-06-14 23:02:53] CPU04[   4923933]  CPU05[   4908607]  
CPU06[   7440838]  CPU07[ 7484221]
(XEN) [2021-06-14 23:02:53] CPU08[   7502586]  CPU09[   7442285]  
CPU10[   7491230]  CPU11[ 7471088]
(XEN) [2021-06-14 23:02:53] csched2: migrate_resisted TOTAL[     
3047248]  CPU00[    261206]  CPU01[    259510] CPU02[    260772]  
CPU03[    263325]
(XEN) [2021-06-14 23:02:53] CPU04[    258056]  CPU05[    265342]  
CPU06[    225253]  CPU07[ 244738]
(XEN) [2021-06-14 23:02:53] CPU08[    308578]  CPU09[    228671]  
CPU10[    227100]  CPU11[ 244697]
(XEN) [2021-06-14 23:02:53] csched2: credit_reset TOTAL[     3852877]  
CPU00[    318074]  CPU01[    322881] CPU02[    322653]  CPU03[    321017]
(XEN) [2021-06-14 23:02:53] CPU04[    320985]  CPU05[    317008]  
CPU06[    312510]  CPU07[ 326068]
(XEN) [2021-06-14 23:02:53] CPU08[    321385]  CPU09[    325287]  
CPU10[    322423]  CPU11[ 322589]
(XEN) [2021-06-14 23:02:53] csched2: deferred_to_tickled_cpu TOTAL[    
52041253]  CPU00[   3414118]  CPU01[   4156735] CPU02[   3659778]  
CPU03[   3710606]
(XEN) [2021-06-14 23:02:53] CPU04[   3057353]  CPU05[   3142181]  
CPU06[   5307453]  CPU07[ 5636271]
(XEN) [2021-06-14 23:02:53] CPU08[   4930845]  CPU09[   5346693]  
CPU10[   4915708]  CPU11[ 4763568]
(XEN) [2021-06-14 23:02:53] csched2: tickled_cpu_overwritten 
TOTAL[          11]  CPU00[         1]  CPU01[         2] CPU02[         
1]  CPU03[         1]
(XEN) [2021-06-14 23:02:53] CPU04[         2]  CPU05[         0]  
CPU06[         0] CPU07[         1]
(XEN) [2021-06-14 23:02:53] CPU08[         0]  CPU09[         0]  
CPU10[         1] CPU11[         2]
(XEN) [2021-06-14 23:02:53] csched2: tickled_cpu_overridden TOTAL[     
3151147]  CPU00[    182704]  CPU01[    182825] CPU02[    182161]  
CPU03[    182090]
(XEN) [2021-06-14 23:02:53] CPU04[    181397]  CPU05[    181895]  
CPU06[    334256]  CPU07[ 345981]
(XEN) [2021-06-14 23:02:53] CPU08[    345437]  CPU09[    344212]  
CPU10[    343746]  CPU11[ 344444]
(XEN) [2021-06-14 23:02:53] PG_need_flush tlb flushes TOTAL[      
549864]  CPU00[     25455]  CPU01[     45111] CPU02[     41430]  
CPU03[     43741]
(XEN) [2021-06-14 23:02:53] CPU04[     43584]  CPU05[     22757]  
CPU06[     40993] CPU07[     85853]
(XEN) [2021-06-14 23:02:53] CPU08[     51541]  CPU09[     57473]  
CPU10[     52934] CPU11[     38992]
(XEN) [2021-06-14 23:02:53] [q: dump domain (and guest debug) info]
(XEN) [2021-06-14 23:02:53] 'q' pressed -> dumping domain info (now = 
16923891556598)
(XEN) [2021-06-14 23:02:53] General information for domain 0:
(XEN) [2021-06-14 23:02:53]     refcnt=8 dying=0 pause_count=0
(XEN) [2021-06-14 23:02:53]     nr_pages=4194304 xenheap_pages=2 
shared_pages=0 paged_pages=0 dirty_cpus={2} max_pages=4194304
(XEN) [2021-06-14 23:02:53] handle=00000000-0000-0000-0000-000000000000 
vm_assist=0000002d
(XEN) [2021-06-14 23:02:53] Rangesets belonging to domain 0:
(XEN) [2021-06-14 23:02:53]     Interrupts { 1-71, 74-126 }
(XEN) [2021-06-14 23:02:53]     I/O Memory { 0-c7ffb, c7ffd-fbffb, 
fbffd-fedff, fef00-3ffffffff }
(XEN) [2021-06-14 23:02:53]     I/O Ports  { 0-1f, 22-3f, 44-60, 62-9f, 
a2-3f7, 400-407, 40c-cfb, d00-ffff }
(XEN) [2021-06-14 23:02:53]     log-dirty  { }
(XEN) [2021-06-14 23:02:53] Memory pages belonging to domain 0:
(XEN) [2021-06-14 23:02:53]     DomPage list too long to display
(XEN) [2021-06-14 23:02:53]     XenPage 000000000007dffc: 
caf=c000000000000002, taf=e400000000000002
(XEN) [2021-06-14 23:02:53]     XenPage 0000000001037c45: 
caf=c000000000000002, taf=e400000000000002
(XEN) [2021-06-14 23:02:53] NODE affinity for domain 0: [0-1]
(XEN) [2021-06-14 23:02:53] VCPU information and callbacks for domain 0:
(XEN) [2021-06-14 23:02:53]   UNIT0 affinities: hard={0-11} soft={0-11}
(XEN) [2021-06-14 23:02:53]     VCPU0: CPU4 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:53]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:53] No periodic timer
(XEN) [2021-06-14 23:02:53]   UNIT1 affinities: hard={0-11} soft={0-11}
(XEN) [2021-06-14 23:02:53]     VCPU1: CPU5 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:53]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:53] No periodic timer
(XEN) [2021-06-14 23:02:53]   UNIT2 affinities: hard={0-11} soft={0-11}
(XEN) [2021-06-14 23:02:53]     VCPU2: CPU5 [has=F] poll=0 
upcall_pend=00 upcall_mask=00 dirty_cpu=0
(XEN) [2021-06-14 23:02:53]     pause_count=0 pause_flags=0
(XEN) [2021-06-14 23:02:53] No periodic timer
(XEN) [2021-06-14 23:02:53]   UNIT3 affinities: hard={0-11} soft={0-11}
(XEN) [2021-06-14 23:02:53]     VCPU3: CPU6 [has=F] poll=0 
upcall_pend=01 upcall_mask=00
(XEN) [2021-06-14 23:02:53]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:53] No periodic timer
(XEN) [2021-06-14 23:02:53]   UNIT4 affinities: hard={0-11} soft={0-11}
(XEN) [2021-06-14 23:02:53]     VCPU4: CPU6 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:53]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:53] No periodic timer
(XEN) [2021-06-14 23:02:53]   UNIT5 affinities: hard={0-11} soft={0-11}
(XEN) [2021-06-14 23:02:53]     VCPU5: CPU6 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:53]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:53] No periodic timer
(XEN) [2021-06-14 23:02:53]   UNIT6 affinities: hard={0-11} soft={0-11}
(XEN) [2021-06-14 23:02:53]     VCPU6: CPU7 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:53]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:53] No periodic timer
(XEN) [2021-06-14 23:02:53]   UNIT7 affinities: hard={0-11} soft={0-11}
(XEN) [2021-06-14 23:02:53]     VCPU7: CPU0 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:53]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:53] No periodic timer
(XEN) [2021-06-14 23:02:53] General information for domain 2:
(XEN) [2021-06-14 23:02:53]     refcnt=3 dying=0 pause_count=0
(XEN) [2021-06-14 23:02:53]     nr_pages=4978763 xenheap_pages=23 
shared_pages=0 paged_pages=0 dirty_cpus={2,10} max_pages=4980992
(XEN) [2021-06-14 23:02:53] handle=39adc800-c94e-409a-83df-1ca7eb320ed7 
vm_assist=00000020
(XEN) [2021-06-14 23:02:53]     paging assistance: hap refcounts 
translate external
(XEN) [2021-06-14 23:02:53] Rangesets belonging to domain 2:
(XEN) [2021-06-14 23:02:53]     ioreq_server 0 pci { 0, 8-9, b, 10, 18, 
20, 30, 38 }
(XEN) [2021-06-14 23:02:53]     ioreq_server 0 memory { a0000-bffff, 
40000000-407fffff, 41000000-413fffff, 42000000-42ffffff, 
43040000-4307ffff, 43090000-4309500f, 43095020-4309507b, 
fec00000-fec00fff, fed00000-fed003ff, fee00000-feefffff }
(XEN) [2021-06-14 23:02:53]     ioreq_server 0 port { 0-1f, 60, 64, 
70-71, 80-83, 87, 89-8b, 8f, 92, b2-b3, c0-df, f0, 170-177, 1f0-1f7, 
376, 3b0-3df, 3f1-3ff, 510-511, cf8-cff, ae00-ae13, af00-af1f, 
afe0-afe3, b000-b005, b008-b00b, c000-c0ff, c200-c20f }
(XEN) [2021-06-14 23:02:53]     Interrupts { 32, 108 }
(XEN) [2021-06-14 23:02:53]     I/O Memory { c6c00-c6c3f }
(XEN) [2021-06-14 23:02:53]     I/O Ports  { }
(XEN) [2021-06-14 23:02:53]     log-dirty  { }
(XEN) [2021-06-14 23:02:53] Memory pages belonging to domain 2:
(XEN) [2021-06-14 23:02:53]     DomPage list too long to display
(XEN) [2021-06-14 23:02:54]     PoD entries=0 cachesize=0
(XEN) [2021-06-14 23:02:54]     XenPage 000000000007dff4: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000000b9acaf: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141b38c: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141c7eb: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001404104: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141b39d: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141b396: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141b3af: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141b3a7: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141c7fd: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141c7f4: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141cf9b: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141cf94: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141cf8b: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141cf84: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141cf7b: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141cf72: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141cf69: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141cf60: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141cf55: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001de56e5: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001de3bae: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001de2f77: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     ExtraPage 0000000000b9af65: 
caf=8040000000000002, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     ExtraPage 0000000000b1e031: 
caf=8040000000000003, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     ExtraPage 0000000000b1e030: 
caf=8040000000000003, taf=e400000000000001
(XEN) [2021-06-14 23:02:54] NODE affinity for domain 2: [0]
(XEN) [2021-06-14 23:02:54] VCPU information and callbacks for domain 2:
(XEN) [2021-06-14 23:02:54]   UNIT0 affinities: hard={0-11} soft={0-5}
(XEN) [2021-06-14 23:02:54]     VCPU0: CPU8 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:54]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:54]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:54] No periodic timer
(XEN) [2021-06-14 23:02:54]   UNIT1 affinities: hard={0-11} soft={0-5}
(XEN) [2021-06-14 23:02:54]     VCPU1: CPU6 [has=T] poll=0 
upcall_pend=00 upcall_mask=00 dirty_cpu=7
(XEN) [2021-06-14 23:02:54]     pause_count=0 pause_flags=0
(XEN) [2021-06-14 23:02:54]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:54] No periodic timer
(XEN) [2021-06-14 23:02:54]   UNIT2 affinities: hard={0-11} soft={0-5}
(XEN) [2021-06-14 23:02:54]     VCPU2: CPU2 [has=T] poll=0 
upcall_pend=00 upcall_mask=00 dirty_cpu=5
(XEN) [2021-06-14 23:02:54]     pause_count=0 pause_flags=0
(XEN) [2021-06-14 23:02:54]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:54] No periodic timer
(XEN) [2021-06-14 23:02:54]   UNIT3 affinities: hard={0-11} soft={0-5}
(XEN) [2021-06-14 23:02:54]     VCPU3: CPU1 [has=T] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:54]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:54]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:54] No periodic timer
(XEN) [2021-06-14 23:02:54] General information for domain 3:
(XEN) [2021-06-14 23:02:54]     refcnt=3 dying=0 pause_count=0
(XEN) [2021-06-14 23:02:54]     nr_pages=1572923 xenheap_pages=6 
shared_pages=0 paged_pages=0 dirty_cpus={} max_pages=1573120
(XEN) [2021-06-14 23:02:54] handle=303cfd3a-6f50-42f6-92ae-c389b52435cd 
vm_assist=00000000
(XEN) [2021-06-14 23:02:54]     paging assistance: hap refcounts 
translate external
(XEN) [2021-06-14 23:02:54] Rangesets belonging to domain 3:
(XEN) [2021-06-14 23:02:54]     ioreq_server 0 pci { 0, 8-9, b, 10 }
(XEN) [2021-06-14 23:02:54]     ioreq_server 0 memory { 
f0000000-f0ffffff, fec00000-fec00fff, fed00000-fed003ff, 
fee00000-feefffff }
(XEN) [2021-06-14 23:02:54]     ioreq_server 0 port { 0-1f, 60, 64, 
70-71, 80-83, 87, 89-8b, 8f, 92, b2-b3, c0-df, f0, 170-177, 1f0-1f7, 
376, 3f1-3ff, cf8-cff, ae00-ae13, af00-af1f, afe0-afe3, b000-b005, 
b008-b00b, c000-c10f }
(XEN) [2021-06-14 23:02:54]     Interrupts { }
(XEN) [2021-06-14 23:02:54]     I/O Memory { }
(XEN) [2021-06-14 23:02:54]     I/O Ports  { }
(XEN) [2021-06-14 23:02:54]     log-dirty  { }
(XEN) [2021-06-14 23:02:54] Memory pages belonging to domain 3:
(XEN) [2021-06-14 23:02:54]     DomPage list too long to display
(XEN) [2021-06-14 23:02:54]     PoD entries=0 cachesize=0
(XEN) [2021-06-14 23:02:54]     XenPage 00000000000785fe: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000000b1e064: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141c715: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141b3b2: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141c713: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000141c7e4: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     ExtraPage 0000000000b1e070: 
caf=8040000000000002, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     ExtraPage 0000000002031d87: 
caf=8040000000000003, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     ExtraPage 0000000002031d86: 
caf=8040000000000003, taf=e400000000000001
(XEN) [2021-06-14 23:02:54] NODE affinity for domain 3: [1]
(XEN) [2021-06-14 23:02:54] VCPU information and callbacks for domain 3:
(XEN) [2021-06-14 23:02:54]   UNIT0 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:54]     VCPU0: CPU7 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:54]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:54]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:54] No periodic timer
(XEN) [2021-06-14 23:02:54]   UNIT1 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:54]     VCPU1: CPU3 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:54]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:54]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:54] No periodic timer
(XEN) [2021-06-14 23:02:54]   UNIT2 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:54]     VCPU2: CPU0 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:54]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:54]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:54] No periodic timer
(XEN) [2021-06-14 23:02:54]   UNIT3 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:54]     VCPU3: CPU6 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:54]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:54]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:54] No periodic timer
(XEN) [2021-06-14 23:02:54] General information for domain 5:
(XEN) [2021-06-14 23:02:54]     refcnt=3 dying=0 pause_count=0
(XEN) [2021-06-14 23:02:54]     nr_pages=4948045 xenheap_pages=11 
shared_pages=0 paged_pages=0 dirty_cpus={0-1,4,6,10} max_pages=4980992
(XEN) [2021-06-14 23:02:54] handle=f70f2a85-5027-4a70-9aa2-0d5ebff5c7e5 
vm_assist=00000020
(XEN) [2021-06-14 23:02:54]     paging assistance: hap refcounts 
translate external
(XEN) [2021-06-14 23:02:54] Rangesets belonging to domain 5:
(XEN) [2021-06-14 23:02:54]     ioreq_server 0 pci { 0, 8-9, b, 10, 18, 
28, 30, 38 }
(XEN) [2021-06-14 23:02:54]     ioreq_server 0 memory { a0000-bffff, 
40000000-58ffffff, 59040000-5907ffff, 590d0000-590ddfff, 
fec00000-fec00fff, fed00000-fed003ff, fee00000-feefffff }
(XEN) [2021-06-14 23:02:54]     ioreq_server 0 port { 0-1f, 60, 64, 
70-71, 80-83, 87, 89-8b, 8f, 92, b2-b3, c0-df, f0, 170-177, 1ce-1d1, 
1f0-1f7, 376, 3b4-3b5, 3ba, 3c0-3cf, 3d4-3d5, 3da, 3f1-3ff, cf8-cff, 
ae00-ae13, af00-af1f, afe0-afe3, b000-b005, b008-b00b, c000-c20f, 
c240-c25f }
(XEN) [2021-06-14 23:02:54]     Interrupts { 27, 56, 60, 116-123, 126 }
(XEN) [2021-06-14 23:02:54]     I/O Memory { 0-2, c6d00-c6d07, 
e0000-effff, fbe00-fbe63 }
(XEN) [2021-06-14 23:02:54]     I/O Ports  { f000-f0ff }
(XEN) [2021-06-14 23:02:54]     log-dirty  { }
(XEN) [2021-06-14 23:02:54] Memory pages belonging to domain 5:
(XEN) [2021-06-14 23:02:54]     DomPage list too long to display
(XEN) [2021-06-14 23:02:54]     PoD entries=0 cachesize=0
(XEN) [2021-06-14 23:02:54]     XenPage 000000000007dd10: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 000000000157a66e: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001dd1f98: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001dd080e: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001dd1ef8: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001de2ee1: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001de2ce4: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001dd00c5: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001dd0809: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 0000000001dcffaa: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     XenPage 00000000015c150d: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     ExtraPage 000000000157a67a: 
caf=8040000000000002, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     ExtraPage 0000000001ef8ac7: 
caf=8040000000000003, taf=e400000000000001
(XEN) [2021-06-14 23:02:54]     ExtraPage 0000000001ef8ac6: 
caf=8040000000000003, taf=e400000000000001
(XEN) [2021-06-14 23:02:54] NODE affinity for domain 5: [1]
(XEN) [2021-06-14 23:02:54] VCPU information and callbacks for domain 5:
(XEN) [2021-06-14 23:02:54]   UNIT0 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:54]     VCPU0: CPU10 [has=T] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:54]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:54]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:54] No periodic timer
(XEN) [2021-06-14 23:02:54]   UNIT1 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:54]     VCPU1: CPU0 [has=F] poll=0 
upcall_pend=00 upcall_mask=00 dirty_cpu=2
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=0
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT2 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:55]     VCPU2: CPU7 [has=T] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT3 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:55]     VCPU3: CPU0 [has=T] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT4 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:55]     VCPU4: CPU0 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT5 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:55]     VCPU5: CPU8 [has=F] poll=0 
upcall_pend=00 upcall_mask=00 dirty_cpu=7
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=0
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55] General information for domain 6:
(XEN) [2021-06-14 23:02:55]     refcnt=3 dying=0 pause_count=0
(XEN) [2021-06-14 23:02:55]     nr_pages=9697355 xenheap_pages=8 
shared_pages=0 paged_pages=0 dirty_cpus={3,5} max_pages=9699584
(XEN) [2021-06-14 23:02:55] handle=e7958404-b10a-434b-8f28-80506871a4a0 
vm_assist=00000020
(XEN) [2021-06-14 23:02:55]     paging assistance: hap refcounts 
translate external
(XEN) [2021-06-14 23:02:55] Rangesets belonging to domain 6:
(XEN) [2021-06-14 23:02:55]     ioreq_server 0 pci { 0, 8-9, b, 10, 18, 
28 }
(XEN) [2021-06-14 23:02:55]     ioreq_server 0 memory { a0000-bffff, 
f0000000-f07fffff, f1000000-f13fffff, f2000000-f307ffff, 
f30f0000-f30f4fff, fec00000-fec00fff, fed00000-fed003ff, 
fee00000-feefffff }
(XEN) [2021-06-14 23:02:55]     ioreq_server 0 port { 0-1f, 60, 64, 
70-71, 80-83, 87, 89-8b, 8f, 92, b2-b3, c0-df, f0, 170-177, 1f0-1f7, 
376, 3b0-3df, 3f1-3ff, 510-511, cf8-cff, ae00-ae13, af00-af1f, 
afe0-afe3, b000-b005, b008-b00b, c000-c10f, c140-c15f }
(XEN) [2021-06-14 23:02:55]     Interrupts { 19, 102-106 }
(XEN) [2021-06-14 23:02:55]     I/O Memory { c6900-c6983 }
(XEN) [2021-06-14 23:02:55]     I/O Ports  { 4000-401f }
(XEN) [2021-06-14 23:02:55]     log-dirty  { }
(XEN) [2021-06-14 23:02:55] Memory pages belonging to domain 6:
(XEN) [2021-06-14 23:02:55]     DomPage list too long to display
(XEN) [2021-06-14 23:02:55]     PoD entries=0 cachesize=0
(XEN) [2021-06-14 23:02:55]     XenPage 000000000007dd9c: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 000000000207fa13: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000000fbb9e8: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000000fbb783: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000001de6f70: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000000fbb876: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000000fbb58f: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000000fbb768: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     ExtraPage 0000000000b9af72: 
caf=8040000000000002, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     ExtraPage 0000000000b476a7: 
caf=8040000000000003, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     ExtraPage 0000000000b476a6: 
caf=8040000000000003, taf=e400000000000001
(XEN) [2021-06-14 23:02:55] NODE affinity for domain 6: [0]
(XEN) [2021-06-14 23:02:55] VCPU information and callbacks for domain 6:
(XEN) [2021-06-14 23:02:55]   UNIT0 affinities: hard={0-11} soft={0-5}
(XEN) [2021-06-14 23:02:55]     VCPU0: CPU2 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT1 affinities: hard={0-11} soft={0-5}
(XEN) [2021-06-14 23:02:55]     VCPU1: CPU4 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT2 affinities: hard={0-11} soft={0-5}
(XEN) [2021-06-14 23:02:55]     VCPU2: CPU2 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT3 affinities: hard={0-11} soft={0-5}
(XEN) [2021-06-14 23:02:55]     VCPU3: CPU5 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT4 affinities: hard={0-11} soft={0-5}
(XEN) [2021-06-14 23:02:55]     VCPU4: CPU3 [has=F] poll=0 
upcall_pend=00 upcall_mask=00 dirty_cpu=3
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT5 affinities: hard={0-11} soft={0-5}
(XEN) [2021-06-14 23:02:55]     VCPU5: CPU7 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55] General information for domain 7:
(XEN) [2021-06-14 23:02:55]     refcnt=3 dying=0 pause_count=0
(XEN) [2021-06-14 23:02:55]     nr_pages=4978763 xenheap_pages=10 
shared_pages=0 paged_pages=0 dirty_cpus={3-4} max_pages=4980992
(XEN) [2021-06-14 23:02:55] handle=86a83579-0463-4248-a894-78df22c57374 
vm_assist=00000020
(XEN) [2021-06-14 23:02:55]     paging assistance: hap refcounts 
translate external
(XEN) [2021-06-14 23:02:55] Rangesets belonging to domain 7:
(XEN) [2021-06-14 23:02:55]     ioreq_server 0 pci { 0, 8-9, b, 10, 18, 
28, 30, 38 }
(XEN) [2021-06-14 23:02:55]     ioreq_server 0 memory { a0000-bffff, 
40000000-507fffff, 51000000-513fffff, 52000000-52ffffff, 
53040000-5307ffff, 530d0000-530dcfff, fec00000-fec00fff, 
fed00000-fed003ff, fee00000-feefffff }
(XEN) [2021-06-14 23:02:55]     ioreq_server 0 port { 0-1f, 60, 64, 
70-71, 80-83, 87, 89-8b, 8f, 92, b2-b3, c0-df, f0, 170-177, 1f0-1f7, 
376, 3b0-3df, 3f1-3ff, 510-511, cf8-cff, ae00-ae13, af00-af1f, 
afe0-afe3, b000-b005, b008-b00b, c000-c20f }
(XEN) [2021-06-14 23:02:55]     Interrupts { 34, 64, 68, 109-115, 124-125 }
(XEN) [2021-06-14 23:02:55]     I/O Memory { c6b00-c6b07, fbd00-fbd63, 
3fff0000-3fffffff }
(XEN) [2021-06-14 23:02:55]     I/O Ports  { e000-e0ff }
(XEN) [2021-06-14 23:02:55]     log-dirty  { }
(XEN) [2021-06-14 23:02:55] Memory pages belonging to domain 7:
(XEN) [2021-06-14 23:02:55]     DomPage list too long to display
(XEN) [2021-06-14 23:02:55]     PoD entries=0 cachesize=0
(XEN) [2021-06-14 23:02:55]     XenPage 00000000000787c6: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000001de2a50: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 000000000160cbb9: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000001609afc: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000001600c43: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 000000000160152e: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000001601500: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000001600a75: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 000000000160cbfe: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     XenPage 0000000000fbb810: 
caf=c000000000000001, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     ExtraPage 0000000000f870c2: 
caf=8040000000000002, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     ExtraPage 00000000015ba8c4: 
caf=8040000000000003, taf=e400000000000001
(XEN) [2021-06-14 23:02:55]     ExtraPage 00000000015ba8c3: 
caf=8040000000000003, taf=e400000000000001
(XEN) [2021-06-14 23:02:55] NODE affinity for domain 7: [1]
(XEN) [2021-06-14 23:02:55] VCPU information and callbacks for domain 7:
(XEN) [2021-06-14 23:02:55]   UNIT0 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:55]     VCPU0: CPU5 [has=F] poll=0 
upcall_pend=00 upcall_mask=00 dirty_cpu=5
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT1 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:55]     VCPU1: CPU6 [has=F] poll=0 
upcall_pend=00 upcall_mask=00 dirty_cpu=6
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT2 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:55]     VCPU2: CPU0 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT3 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:55]     VCPU3: CPU6 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT4 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:55]     VCPU4: CPU8 [has=F] poll=0 
upcall_pend=00 upcall_mask=00 dirty_cpu=7
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=0
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55]   UNIT5 affinities: hard={0-11} soft={6-11}
(XEN) [2021-06-14 23:02:55]     VCPU5: CPU6 [has=F] poll=0 
upcall_pend=00 upcall_mask=00
(XEN) [2021-06-14 23:02:55]     pause_count=0 pause_flags=1
(XEN) [2021-06-14 23:02:55]     paging assistance: hap, 4 levels
(XEN) [2021-06-14 23:02:55] No periodic timer
(XEN) [2021-06-14 23:02:55] Notifying guest 0:0 (virq 1, port 0)
(XEN) [2021-06-14 23:02:55] Notifying guest 0:1 (virq 1, port 0)
(XEN) [2021-06-14 23:02:55] Notifying guest 0:2 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 0:3 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 0:4 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 0:5 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 0:6 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 0:7 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 2:0 (virq 1, port 11)
(XEN) [2021-06-14 23:02:56] Notifying guest 2:1 (virq 1, port 17)
(XEN) [2021-06-14 23:02:56] Notifying guest 2:2 (virq 1, port 23)
(XEN) [2021-06-14 23:02:56] Notifying guest 2:3 (virq 1, port 29)
(XEN) [2021-06-14 23:02:56] Notifying guest 3:0 (virq 1, port 11)
(XEN) [2021-06-14 23:02:56] Notifying guest 3:1 (virq 1, port 16)
(XEN) [2021-06-14 23:02:56] Notifying guest 3:2 (virq 1, port 21)
(XEN) [2021-06-14 23:02:56] Notifying guest 3:3 (virq 1, port 26)
(XEN) [2021-06-14 23:02:56] Notifying guest 5:0 (virq 1, port 13)
(XEN) [2021-06-14 23:02:56] Notifying guest 5:1 (virq 1, port 19)
(XEN) [2021-06-14 23:02:56] Notifying guest 5:2 (virq 1, port 25)
(XEN) [2021-06-14 23:02:56] Notifying guest 5:3 (virq 1, port 31)
(XEN) [2021-06-14 23:02:56] Notifying guest 5:4 (virq 1, port 37)
(XEN) [2021-06-14 23:02:56] Notifying guest 5:5 (virq 1, port 43)
(XEN) [2021-06-14 23:02:56] Notifying guest 6:0 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 6:1 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 6:2 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 6:3 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 6:4 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 6:5 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 7:0 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 7:1 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 7:2 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 7:3 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 7:4 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Notifying guest 7:5 (virq 1, port 0)
(XEN) [2021-06-14 23:02:56] Shared frames 0 -- Saved frames 0
(XEN) [2021-06-14 23:02:56] [r: dump run queues]
(XEN) [2021-06-14 23:02:56] sched_smt_power_savings: disabled
(XEN) [2021-06-14 23:02:56] NOW=16926506786025
(XEN) [2021-06-14 23:02:56] Online Cpus: 0-11
(XEN) [2021-06-14 23:02:56] Cpupool 0:
(XEN) [2021-06-14 23:02:56] Cpus: 0-11
(XEN) [2021-06-14 23:02:56] Scheduling granularity: cpu, 1 CPU per 
sched-resource
(XEN) [2021-06-14 23:02:56] Scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) [2021-06-14 23:02:56] Active queues: 2
(XEN) [2021-06-14 23:02:56]     default-weight     = 256
(XEN) [2021-06-14 23:02:56] Runqueue 0:
(XEN) [2021-06-14 23:02:56]     ncpus              = 6
(XEN) [2021-06-14 23:02:56]     cpus               = 0-5
(XEN) [2021-06-14 23:02:56]     max_weight         = 8192
(XEN) [2021-06-14 23:02:56]     pick_bias          = 1
(XEN) [2021-06-14 23:02:56]     instload           = 6
(XEN) [2021-06-14 23:02:56]     aveload            = 922129 (~351%)
(XEN) [2021-06-14 23:02:56]     idlers: 010
(XEN) [2021-06-14 23:02:56]     tickled: 000
(XEN) [2021-06-14 23:02:56]     fully idle cores: 010
(XEN) [2021-06-14 23:02:56] Runqueue 1:
(XEN) [2021-06-14 23:02:56]     ncpus              = 6
(XEN) [2021-06-14 23:02:56]     cpus               = 6-11
(XEN) [2021-06-14 23:02:56]     max_weight         = 8192
(XEN) [2021-06-14 23:02:56]     pick_bias          = 9
(XEN) [2021-06-14 23:02:56]     instload           = 5
(XEN) [2021-06-14 23:02:56]     aveload            = 948262 (~361%)
(XEN) [2021-06-14 23:02:56]     idlers: 100
(XEN) [2021-06-14 23:02:56]     tickled: 800
(XEN) [2021-06-14 23:02:56]     fully idle cores: 100
(XEN) [2021-06-14 23:02:56] Domain info:
(XEN) [2021-06-14 23:02:56]     Domain: 0 w 8192 c 0 v 8
(XEN) [2021-06-14 23:02:56]       1: [0.0] flags=0 cpu=4 credit=10500000 
[w=8192] load=18377 (~7%)
(XEN) [2021-06-14 23:02:56]       2: [0.1] flags=0 cpu=0 credit=10500000 
[w=8192] load=15789 (~6%)
(XEN) [2021-06-14 23:02:56]       3: [0.2] flags=2 cpu=5 credit=-6474099 
[w=8192] load=19757 (~7%)
(XEN) [2021-06-14 23:02:56]       4: [0.3] flags=2 cpu=7 
credit=-10000000 [w=8192] load=21744 (~8%)
(XEN) [2021-06-14 23:02:56]       5: [0.4] flags=0 cpu=10 credit=9806067 
[w=8192] load=6582 (~2%)
(XEN) [2021-06-14 23:02:56]       6: [0.5] flags=2 cpu=6 credit=6065370 
[w=8192] load=17286 (~6%)
(XEN) [2021-06-14 23:02:56]       7: [0.6] flags=0 cpu=7 credit=10433976 
[w=8192] load=21940 (~8%)
(XEN) [2021-06-14 23:02:56]       8: [0.7] flags=0 cpu=0 credit=617262 
[w=8192] load=12078 (~4%)
(XEN) [2021-06-14 23:02:56]     Domain: 2 w 6144 c 0 v 4
(XEN) [2021-06-14 23:02:56]       9: [2.0] flags=0 cpu=10 
credit=-10000000 [w=6144] load=121976 (~46%)
(XEN) [2021-06-14 23:02:56]      10: [2.1] flags=0 cpu=7 
credit=-10000000 [w=6144] load=169292 (~64%)
(XEN) [2021-06-14 23:02:56]      11: [2.2] flags=0 cpu=4 
credit=-10000000 [w=6144] load=119004 (~45%)
(XEN) [2021-06-14 23:02:56]      12: [2.3] flags=0 cpu=0 
credit=-10000000 [w=6144] load=119251 (~45%)
(XEN) [2021-06-14 23:02:56]     Domain: 3 w 256 c 0 v 4
(XEN) [2021-06-14 23:02:56]      13: [3.0] flags=0 cpu=10 credit=7495200 
[w=256] load=15751 (~6%)
(XEN) [2021-06-14 23:02:56]      14: [3.1] flags=2 cpu=2 
credit=-10000000 [w=256] load=741 (~0%)
(XEN) [2021-06-14 23:02:56]      15: [3.2] flags=12 cpu=3 
credit=-10000000 [w=256] load=128 (~0%)
(XEN) [2021-06-14 23:02:56]      16: [3.3] flags=2 cpu=6 
credit=-10000000 [w=256] load=46 (~0%)
(XEN) [2021-06-14 23:02:56]     Domain: 5 w 4096 c 0 v 6
(XEN) [2021-06-14 23:02:56]      17: [5.0] flags=2 cpu=11 credit=9870780 
[w=4096] load=163724 (~62%)
(XEN) [2021-06-14 23:02:56]      18: [5.1] flags=0 cpu=1 
credit=-10000000 [w=4096] load=169315 (~64%)
(XEN) [2021-06-14 23:02:56]      19: [5.2] flags=0 cpu=7 
credit=-10000000 [w=4096] load=125433 (~47%)
(XEN) [2021-06-14 23:02:56]      20: [5.3] flags=0 cpu=0 credit=10500000 
[w=4096] load=86081 (~32%)
(XEN) [2021-06-14 23:02:56]      21: [5.4] flags=0 cpu=0 
credit=-10000000 [w=4096] load=111423 (~42%)
(XEN) [2021-06-14 23:02:56]      22: [5.5] flags=2 cpu=8 
credit=-10000000 [w=4096] load=94772 (~36%)
(XEN) [2021-06-14 23:02:56]     Domain: 6 w 7168 c 0 v 6
(XEN) [2021-06-14 23:02:56]      23: [6.0] flags=0 cpu=1 credit=7868149 
[w=7168] load=11321 (~4%)
(XEN) [2021-06-14 23:02:56]      24: [6.1] flags=0 cpu=2 credit=10488692 
[w=7168] load=11481 (~4%)
(XEN) [2021-06-14 23:02:56]      25: [6.2] flags=0 cpu=3 credit=-2788456 
[w=7168] load=6278 (~2%)
(XEN) [2021-06-14 23:02:56]      26: [6.3] flags=0 cpu=4 credit=10500000 
[w=7168] load=8498 (~3%)
(XEN) [2021-06-14 23:02:56]      27: [6.4] flags=0 cpu=5 credit=10500000 
[w=7168] load=70661 (~26%)
(XEN) [2021-06-14 23:02:56]      28: [6.5] flags=2 cpu=10 
credit=-2571937 [w=7168] load=23950 (~9%)
(XEN) [2021-06-14 23:02:56]     Domain: 7 w 4096 c 0 v 6
(XEN) [2021-06-14 23:02:56]      29: [7.0] flags=0 cpu=2 
credit=-10000000 [w=4096] load=32708 (~12%)
(XEN) [2021-06-14 23:02:56]      30: [7.1] flags=0 cpu=7 
credit=-10000000 [w=4096] load=64408 (~24%)
(XEN) [2021-06-14 23:02:56]      31: [7.2] flags=0 cpu=5 credit=10500000 
[w=4096] load=25520 (~9%)
(XEN) [2021-06-14 23:02:56]      32: [7.3] flags=0 cpu=8 
credit=-10000000 [w=4096] load=28079 (~10%)
(XEN) [2021-06-14 23:02:56]      33: [7.4] flags=0 cpu=10 
credit=-10000000 [w=4096] load=22690 (~8%)
(XEN) [2021-06-14 23:02:56]      34: [7.5] flags=0 cpu=11 
credit=10500000 [w=4096] load=26152 (~9%)
(XEN) [2021-06-14 23:02:56] Runqueue 0:
(XEN) [2021-06-14 23:02:56] CPU[00] runq=0, sibling={0}, core={0-5}
(XEN) [2021-06-14 23:02:56]     run: [0.1] flags=2 cpu=0 
credit=-10000000 [w=8192] load=37296 (~14%)
(XEN) [2021-06-14 23:02:56] CPU[01] runq=0, sibling={1}, core={0-5}
(XEN) [2021-06-14 23:02:56] CPU[02] runq=0, sibling={2}, core={0-5}
(XEN) [2021-06-14 23:02:56]     run: [3.1] flags=2 cpu=2 
credit=-10000000 [w=256] load=741 (~0%)
(XEN) [2021-06-14 23:02:56] CPU[03] runq=0, sibling={3}, core={0-5}
(XEN) [2021-06-14 23:02:56]     run: [3.2] flags=2 cpu=3 
credit=-10000000 [w=256] load=128 (~0%)
(XEN) [2021-06-14 23:02:56] CPU[04] runq=0, sibling={4}, core={0-5}
(XEN) [2021-06-14 23:02:56]     run: [0.0] flags=2 cpu=4 
credit=-10000000 [w=8192] load=21202 (~8%)
(XEN) [2021-06-14 23:02:56] CPU[05] runq=0, sibling={5}, core={0-5}
(XEN) [2021-06-14 23:02:56]     run: [0.2] flags=2 cpu=5 credit=-6474099 
[w=8192] load=19757 (~7%)
(XEN) [2021-06-14 23:02:56] RUNQ:
(XEN) [2021-06-14 23:02:56]       0: [5.3] flags=0 cpu=0 credit=10500000 
[w=4096] load=86081 (~32%)
(XEN) [2021-06-14 23:02:56]       1: [2.2] flags=0 cpu=4 
credit=-10000000 [w=6144] load=119004 (~45%)
(XEN) [2021-06-14 23:02:56] Runqueue 1:
(XEN) [2021-06-14 23:02:56] CPU[06] runq=1, sibling={6}, core={6-11}
(XEN) [2021-06-14 23:02:56]     run: [3.3] flags=2 cpu=6 
credit=-10000000 [w=256] load=46 (~0%)
(XEN) [2021-06-14 23:02:56] CPU[07] runq=1, sibling={7}, core={6-11}
(XEN) [2021-06-14 23:02:56]     run: [0.3] flags=2 cpu=7 
credit=-10000000 [w=8192] load=21744 (~8%)
(XEN) [2021-06-14 23:02:56] CPU[08] runq=1, sibling={8}, core={6-11}
(XEN) [2021-06-14 23:02:56] CPU[09] runq=1, sibling={9}, core={6-11}
(XEN) [2021-06-14 23:02:56] CPU[10] runq=1, sibling={10}, core={6-11}
(XEN) [2021-06-14 23:02:56] CPU[11] runq=1, sibling={11}, core={6-11}
(XEN) [2021-06-14 23:02:56]     run: [5.0] flags=2 cpu=11 credit=9870780 
[w=4096] load=163724 (~62%)
(XEN) [2021-06-14 23:02:56] RUNQ:
(XEN) [2021-06-14 23:02:56]       0: [0.6] flags=0 cpu=7 credit=10433976 
[w=8192] load=21940 (~8%)
(XEN) [2021-06-14 23:02:56]       1: [2.1] flags=0 cpu=7 
credit=-10000000 [w=6144] load=178689 (~68%)
(XEN) [2021-06-14 23:02:56]       2: [7.1] flags=0 cpu=7 
credit=-10000000 [w=4096] load=64408 (~24%)
(XEN) [2021-06-14 23:02:56]       3: [5.2] flags=0 cpu=7 
credit=-10000000 [w=4096] load=126185 (~48%)
(XEN) [2021-06-14 23:02:56] CPUs info:
(XEN) [2021-06-14 23:02:56] CPU[00] current=d0v1, curr=d0v1, prev=NULL
(XEN) [2021-06-14 23:02:56] CPU[01] current=d6v4, curr=d6v4, prev=NULL
(XEN) [2021-06-14 23:02:56] CPU[02] current=d5v4, curr=d5v4, prev=NULL
(XEN) [2021-06-14 23:02:56] CPU[03] current=d2v3, curr=d2v3, prev=d0v2
(XEN) [2021-06-14 23:02:56] CPU[04] current=d6v1, curr=d6v1, prev=NULL
(XEN) [2021-06-14 23:02:56] CPU[05] current=d7v0, curr=d7v0, prev=NULL
(XEN) [2021-06-14 23:02:56] CPU[06] current=d5v5, curr=d5v5, prev=NULL
(XEN) [2021-06-14 23:02:56] CPU[07] current=d3v0, curr=d3v0, prev=NULL
(XEN) [2021-06-14 23:02:56] CPU[08] current=d2v0, curr=d5v2, prev=d2v0
(XEN) [2021-06-14 23:02:56] CPU[09] current=d[IDLE]v9, curr=d[IDLE]v9, 
prev=NULL
(XEN) [2021-06-14 23:02:56] CPU[10] current=d0v4, curr=d0v4, prev=NULL
(XEN) [2021-06-14 23:02:56] CPU[11] current=d7v5, curr=d7v5, prev=d0v6
(XEN) [2021-06-14 23:02:56] [s: dump softtsc stats]
(XEN) [2021-06-14 23:02:56] TSC marked as reliable, warp = 0 (count=2)
(XEN) [2021-06-14 23:02:56] dom2(hvm): 
mode=0,ofs=0x323f78f3d9,khz=2399996,inc=1
(XEN) [2021-06-14 23:02:56] dom3(hvm): 
mode=0,ofs=0x3250b0bd9e,khz=2399996,inc=1
(XEN) [2021-06-14 23:02:56] dom5(hvm): 
mode=0,ofs=0x3cfe10b4a9,khz=2399996,inc=1
(XEN) [2021-06-14 23:02:56] dom6(hvm): 
mode=0,ofs=0xa34e58b7b78,khz=2399996,inc=1
(XEN) [2021-06-14 23:02:56] dom7(hvm): 
mode=0,ofs=0xf3c2e70dc08,khz=2399996,inc=1
(XEN) [2021-06-14 23:02:56] [t: display multi-cpu clock info]
(XEN) [2021-06-14 23:02:57] Synced stime skew: max=379ns avg=379ns 
samples=1 current=379ns
(XEN) [2021-06-14 23:02:57] Synced cycles skew: max=582 avg=582 
samples=1 current=582
(XEN) [2021-06-14 23:02:57] [u: dump NUMA info]
(XEN) [2021-06-14 23:02:57] 'u' pressed -> dumping numa info (now = 
16927332435516)
(XEN) [2021-06-14 23:02:57] NODE0 start->0 size->17301504 free->2047633
(XEN) [2021-06-14 23:02:57] NODE1 start->17301504 size->16777216 
free->495793
(XEN) [2021-06-14 23:02:57] CPU0...5 -> NODE0
(XEN) [2021-06-14 23:02:57] CPU6...11 -> NODE1
(XEN) [2021-06-14 23:02:57] Memory location of each domain:
(XEN) [2021-06-14 23:02:57] Domain 0 (total: 4194304):
(XEN) [2021-06-14 23:02:57]     Node 0: 2037218
(XEN) [2021-06-14 23:02:57]     Node 1: 2157086
(XEN) [2021-06-14 23:02:57] Domain 2 (total: 4978763):
(XEN) [2021-06-14 23:02:57]     Node 0: 4317759
(XEN) [2021-06-14 23:02:57]     Node 1: 661004
(XEN) [2021-06-14 23:02:57] Domain 3 (total: 1572923):
(XEN) [2021-06-14 23:02:57]     Node 0: 0
(XEN) [2021-06-14 23:02:57]     Node 1: 1572923
(XEN) [2021-06-14 23:02:57] Domain 5 (total: 4948045):
(XEN) [2021-06-14 23:02:57]     Node 0: 0
(XEN) [2021-06-14 23:02:57]     Node 1: 4948045
(XEN) [2021-06-14 23:02:57] Domain 6 (total: 9697355):
(XEN) [2021-06-14 23:02:57]     Node 0: 7862347
(XEN) [2021-06-14 23:02:57]     Node 1: 1835008
(XEN) [2021-06-14 23:02:57] Domain 7 (total: 4978763):
(XEN) [2021-06-14 23:02:57]     Node 0: 262144
(XEN) [2021-06-14 23:02:57]     Node 1: 4716619
(XEN) [2021-06-14 23:02:57] [v: dump VT-x VMCSs]
(XEN) [2021-06-14 23:02:57] *********** VMCS Areas **************
(XEN) [2021-06-14 23:02:57]
(XEN) [2021-06-14 23:02:57] >>> Domain 2 <<<
(XEN) [2021-06-14 23:02:57]     VCPU 0
(XEN) [2021-06-14 23:02:57] *** Guest State ***
(XEN) [2021-06-14 23:02:57] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:02:57] CR4: actual=0x00000000001626f0, 
shadow=0x0000000000160670, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:02:57] CR3 = 0x00000005161ea003
(XEN) [2021-06-14 23:02:57] RSP = 0xffffc9000bcf3ab0 
(0xffffc9000bcf3ab0)  RIP = 0xffffffff8196085e (0xffffffff8196085e)
(XEN) [2021-06-14 23:02:57] RFLAGS=0x00000206 (0x00000206)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:02:57] Sysenter RSP=fffffe0000003000 
CS:RIP=0010:ffffffff81c013a0
(XEN) [2021-06-14 23:02:57]        sel  attr  limit   base
(XEN) [2021-06-14 23:02:57]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   FS: 0000 1c000 ffffffff 00007f04815f4740
(XEN) [2021-06-14 23:02:57]   GS: 0000 1c000 ffffffff ffff88856c200000
(XEN) [2021-06-14 23:02:57] GDTR:            0000007f fffffe0000001000
(XEN) [2021-06-14 23:02:57] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:02:57]   TR: 0040 0008b 0000206f fffffe0000003000
(XEN) [2021-06-14 23:02:57] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:02:57] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:02:57] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:02:57] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:02:57] InterruptStatus = 0000
(XEN) [2021-06-14 23:02:57] *** Host State ***
(XEN) [2021-06-14 23:02:57] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207ca17f70
(XEN) [2021-06-14 23:02:57] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:02:57] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037cb8040
(XEN) [2021-06-14 23:02:57] GDTBase=ffff83207cba5000 
IDTBase=ffff83207cbb2000
(XEN) [2021-06-14 23:02:57] CR0=0000000080050033 CR3=000000207f3db000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:02:57] Sysenter RSP=ffff83207ca17fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:02:57] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:02:57] *** Control State ***
(XEN) [2021-06-14 23:02:57] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:02:57] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:02:57] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:02:57] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:02:57] VMExit: intr_info=800000fc errcode=00000000 
ilen=00000002
(XEN) [2021-06-14 23:02:57]         reason=00000001 
qualification=0000000000000000
(XEN) [2021-06-14 23:02:57] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:02:57] TSC Offset = 0xfffd824c37f81ebb  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:02:57] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:02:57] EPT pointer = 0x0000000b9acc501e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:02:57] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:02:57] Virtual processor ID = 0x15eb VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:02:57]     VCPU 1
(XEN) [2021-06-14 23:02:57] *** Guest State ***
(XEN) [2021-06-14 23:02:57] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:02:57] CR4: actual=0x00000000001626e0, 
shadow=0x0000000000160660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:02:57] CR3 = 0x0000000002421005
(XEN) [2021-06-14 23:02:57] RSP = 0xffffc900031b3eb0 
(0xffffc900031b3eb0)  RIP = 0xffffffff81ac19ad (0xffffffff81ac19ae)
(XEN) [2021-06-14 23:02:57] RFLAGS=0x00000286 (0x00000286)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:02:57] Sysenter RSP=fffffe000002f000 
CS:RIP=0010:ffffffff81c013a0
(XEN) [2021-06-14 23:02:57]        sel  attr  limit   base
(XEN) [2021-06-14 23:02:57]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   GS: 0000 1c000 ffffffff ffff88856c280000
(XEN) [2021-06-14 23:02:57] GDTR:            0000007f fffffe000002d000
(XEN) [2021-06-14 23:02:57] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:02:57]   TR: 0040 0008b 0000206f fffffe000002f000
(XEN) [2021-06-14 23:02:57] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:02:57] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:02:57] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:02:57] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:02:57] InterruptStatus = 0000
(XEN) [2021-06-14 23:02:57] *** Host State ***
(XEN) [2021-06-14 23:02:57] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207ca0ff70
(XEN) [2021-06-14 23:02:57] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:02:57] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037cd4040
(XEN) [2021-06-14 23:02:57] GDTBase=ffff83207cba6000 
IDTBase=ffff83207ca07000
(XEN) [2021-06-14 23:02:57] CR0=0000000080050033 CR3=0000000b40beb000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:02:57] Sysenter RSP=ffff83207ca0ffa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:02:57] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:02:57] *** Control State ***
(XEN) [2021-06-14 23:02:57] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:02:57] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:02:57] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:02:57] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:02:57] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:02:57]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:02:57] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:02:57] TSC Offset = 0xfffd824c37f81ebb  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:02:57] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:02:57] EPT pointer = 0x0000000b9acc501e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:02:57] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:02:57] Virtual processor ID = 0x3ab2 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:02:57]     VCPU 2
(XEN) [2021-06-14 23:02:57] *** Guest State ***
(XEN) [2021-06-14 23:02:57] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:02:57] CR4: actual=0x00000000001626e0, 
shadow=0x0000000000160660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:02:57] CR3 = 0x0000000002421002
(XEN) [2021-06-14 23:02:57] RSP = 0xffffc900031bbeb0 
(0xffffc900031bbeb0)  RIP = 0xffffffff81ac19ad (0xffffffff81ac19ae)
(XEN) [2021-06-14 23:02:57] RFLAGS=0x00000286 (0x00000286)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:02:57] Sysenter RSP=fffffe000005b000 
CS:RIP=0010:ffffffff81c013a0
(XEN) [2021-06-14 23:02:57]        sel  attr  limit   base
(XEN) [2021-06-14 23:02:57]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57]   GS: 0000 1c000 ffffffff ffff88856c300000
(XEN) [2021-06-14 23:02:57] GDTR:            0000007f fffffe0000059000
(XEN) [2021-06-14 23:02:57] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:57] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:02:57]   TR: 0040 0008b 0000206f fffffe000005b000
(XEN) [2021-06-14 23:02:57] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:02:57] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:02:57] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:02:57] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:02:57] InterruptStatus = 0000
(XEN) [2021-06-14 23:02:57] *** Host State ***
(XEN) [2021-06-14 23:02:57] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83103ff27f70
(XEN) [2021-06-14 23:02:57] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:02:57] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff83103ff28040
(XEN) [2021-06-14 23:02:57] GDTBase=ffff83103ff1e000 
IDTBase=ffff83103ff1f000
(XEN) [2021-06-14 23:02:57] CR0=0000000080050033 CR3=000000207f3da000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:02:57] Sysenter RSP=ffff83103ff27fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:02:57] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:02:57] *** Control State ***
(XEN) [2021-06-14 23:02:57] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:02:57] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:02:58] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:02:58] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:02:58] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:02:58]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:02:58] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:02:58] TSC Offset = 0xfffd824c37f81ebb  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:02:58] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:02:58] EPT pointer = 0x0000000b9acc501e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:02:58] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:02:58] Virtual processor ID = 0x6df4 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:02:58]     VCPU 3
(XEN) [2021-06-14 23:02:58] *** Guest State ***
(XEN) [2021-06-14 23:02:58] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:02:58] CR4: actual=0x00000000001626e0, 
shadow=0x0000000000160660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:02:58] CR3 = 0x0000000002421003
(XEN) [2021-06-14 23:02:58] RSP = 0xffffc900031c3eb0 
(0xffffc900031c3eb0)  RIP = 0xffffffff81ac19ad (0xffffffff81ac19ae)
(XEN) [2021-06-14 23:02:58] RFLAGS=0x00000286 (0x00000286)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:02:58] Sysenter RSP=fffffe0000087000 
CS:RIP=0010:ffffffff81c013a0
(XEN) [2021-06-14 23:02:58]        sel  attr  limit   base
(XEN) [2021-06-14 23:02:58]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   GS: 0000 1c000 ffffffff ffff88856c380000
(XEN) [2021-06-14 23:02:58] GDTR:            0000007f fffffe0000085000
(XEN) [2021-06-14 23:02:58] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:02:58]   TR: 0040 0008b 0000206f fffffe0000087000
(XEN) [2021-06-14 23:02:58] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:02:58] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:02:58] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:02:58] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:02:58] InterruptStatus = 0000
(XEN) [2021-06-14 23:02:58] *** Host State ***
(XEN) [2021-06-14 23:02:58] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83103ff0ff70
(XEN) [2021-06-14 23:02:58] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:02:58] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff83103ff14040
(XEN) [2021-06-14 23:02:58] GDTBase=ffff83103ff05000 
IDTBase=ffff83103ff12000
(XEN) [2021-06-14 23:02:58] CR0=0000000080050033 CR3=0000000b40bea000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:02:58] Sysenter RSP=ffff83103ff0ffa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:02:58] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:02:58] *** Control State ***
(XEN) [2021-06-14 23:02:58] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:02:58] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:02:58] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:02:58] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:02:58] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:02:58]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:02:58] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:02:58] TSC Offset = 0xfffd824c37f81ebb  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:02:58] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:02:58] EPT pointer = 0x0000000b9acc501e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:02:58] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:02:58] Virtual processor ID = 0x1688 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:02:58]
(XEN) [2021-06-14 23:02:58] >>> Domain 3 <<<
(XEN) [2021-06-14 23:02:58]     VCPU 0
(XEN) [2021-06-14 23:02:58] *** Guest State ***
(XEN) [2021-06-14 23:02:58] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:02:58] CR4: actual=0x00000000001626f0, 
shadow=0x0000000000160670, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:02:58] CR3 = 0x00000001873cb000
(XEN) [2021-06-14 23:02:58] RSP = 0xffff88018fc03cb0 
(0xffff88018fc03cb0)  RIP = 0xffffffff813a3082 (0xffffffff813a3083)
(XEN) [2021-06-14 23:02:58] RFLAGS=0x00000006 (0x00000006)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:02:58] Sysenter RSP=0000000000000000 
CS:RIP=0010:ffffffff8153c570
(XEN) [2021-06-14 23:02:58]        sel  attr  limit   base
(XEN) [2021-06-14 23:02:58]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   GS: 0000 1c000 ffffffff ffff88018fc00000
(XEN) [2021-06-14 23:02:58] GDTR:            0000007f ffff88018fc0c000
(XEN) [2021-06-14 23:02:58] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58] IDTR:            00000fff ffffffffff57c000
(XEN) [2021-06-14 23:02:58]   TR: 0040 0008b 00002087 ffff88018fc04480
(XEN) [2021-06-14 23:02:58] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0007010600070106
(XEN) [2021-06-14 23:02:58] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:02:58] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:02:58] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:02:58] InterruptStatus = 00f6
(XEN) [2021-06-14 23:02:58] *** Host State ***
(XEN) [2021-06-14 23:02:58] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207ca1ff70
(XEN) [2021-06-14 23:02:58] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:02:58] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037cc4040
(XEN) [2021-06-14 23:02:58] GDTBase=ffff83207c9f7000 
IDTBase=ffff83207ca04000
(XEN) [2021-06-14 23:02:58] CR0=0000000080050033 CR3=000000207f319000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:02:58] Sysenter RSP=ffff83207ca1ffa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:02:58] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:02:58] *** Control State ***
(XEN) [2021-06-14 23:02:58] PinBased=000000bf CPUBased=b6a065fe 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:02:58] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:02:58] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:02:58] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:02:58] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:02:58]         reason=0000001e 
qualification=0000000003f90000
(XEN) [2021-06-14 23:02:58] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:02:58] TSC Offset = 0xfffd824c638b8730  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:02:58] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:02:58] EPT pointer = 0x0000000b1e11101e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:02:58] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:02:58] Virtual processor ID = 0xebc9 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:02:58]     VCPU 1
(XEN) [2021-06-14 23:02:58] *** Guest State ***
(XEN) [2021-06-14 23:02:58] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:02:58] CR4: actual=0x00000000001626f0, 
shadow=0x0000000000160670, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:02:58] CR3 = 0x00000000ea652000
(XEN) [2021-06-14 23:02:58] RSP = 0xffff88018fc83e28 
(0xffff88018fc83e28)  RIP = 0xffffffff81539480 (0xffffffff81539480)
(XEN) [2021-06-14 23:02:58] RFLAGS=0x00000006 (0x00000006)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:02:58] Sysenter RSP=0000000000000000 
CS:RIP=0010:ffffffff8153c570
(XEN) [2021-06-14 23:02:58]        sel  attr  limit   base
(XEN) [2021-06-14 23:02:58]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58]   GS: 0000 1c000 ffffffff ffff88018fc80000
(XEN) [2021-06-14 23:02:58] GDTR:            0000007f ffff88018fc8c000
(XEN) [2021-06-14 23:02:58] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:58] IDTR:            00000fff ffffffffff57c000
(XEN) [2021-06-14 23:02:58]   TR: 0040 0008b 00002087 ffff88018fc84480
(XEN) [2021-06-14 23:02:58] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0007010600070106
(XEN) [2021-06-14 23:02:58] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:02:58] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:02:58] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:02:58] InterruptStatus = 0000
(XEN) [2021-06-14 23:02:58] *** Host State ***
(XEN) [2021-06-14 23:02:58] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83103ff37f70
(XEN) [2021-06-14 23:02:58] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:02:58] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff83103ff40040
(XEN) [2021-06-14 23:02:58] GDTBase=ffff83103ff2e000 
IDTBase=ffff83103ff3b000
(XEN) [2021-06-14 23:02:58] CR0=0000000080050033 CR3=0000000b1e10b000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:02:58] Sysenter RSP=ffff83103ff37fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:02:58] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:02:58] *** Control State ***
(XEN) [2021-06-14 23:02:58] PinBased=000000bf CPUBased=b6a065fe 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:02:58] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:02:58] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:02:58] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:02:58] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000002
(XEN) [2021-06-14 23:02:58]         reason=00000028 
qualification=0000000000000000
(XEN) [2021-06-14 23:02:58] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:02:58] TSC Offset = 0xfffd824c638b8730  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:02:58] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:02:58] EPT pointer = 0x0000000b1e11101e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:02:58] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:02:59] Virtual processor ID = 0x1c1f VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:02:59]     VCPU 2
(XEN) [2021-06-14 23:02:59] *** Guest State ***
(XEN) [2021-06-14 23:02:59] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:02:59] CR4: actual=0x00000000001626f0, 
shadow=0x0000000000160670, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:02:59] CR3 = 0x000000007fa56000
(XEN) [2021-06-14 23:02:59] RSP = 0xffff88018fd03e28 
(0xffff88018fd03e28)  RIP = 0xffffffff81539480 (0xffffffff81539480)
(XEN) [2021-06-14 23:02:59] RFLAGS=0x00000002 (0x00000002)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:02:59] Sysenter RSP=0000000000000000 
CS:RIP=0010:ffffffff8153c570
(XEN) [2021-06-14 23:02:59]        sel  attr  limit   base
(XEN) [2021-06-14 23:02:59]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   GS: 0000 1c000 ffffffff ffff88018fd00000
(XEN) [2021-06-14 23:02:59] GDTR:            0000007f ffff88018fd0c000
(XEN) [2021-06-14 23:02:59] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59] IDTR:            00000fff ffffffffff57c000
(XEN) [2021-06-14 23:02:59]   TR: 0040 0008b 00002087 ffff88018fd04480
(XEN) [2021-06-14 23:02:59] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0007010600070106
(XEN) [2021-06-14 23:02:59] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:02:59] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:02:59] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:02:59] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:02:59] InterruptStatus = 0000
(XEN) [2021-06-14 23:02:59] *** Host State ***
(XEN) [2021-06-14 23:02:59] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff831037cf7f70
(XEN) [2021-06-14 23:02:59] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:02:59] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff83103ff00040
(XEN) [2021-06-14 23:02:59] GDTBase=ffff831037cef000 
IDTBase=ffff831037cfc000
(XEN) [2021-06-14 23:02:59] CR0=0000000080050033 CR3=000000207f318000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:02:59] Sysenter RSP=ffff831037cf7fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:02:59] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:02:59] *** Control State ***
(XEN) [2021-06-14 23:02:59] PinBased=000000bf CPUBased=b6a065fe 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:02:59] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:02:59] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:02:59] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:02:59] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000002
(XEN) [2021-06-14 23:02:59]         reason=00000028 
qualification=0000000000000000
(XEN) [2021-06-14 23:02:59] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:02:59] TSC Offset = 0xfffd824c638b8730  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:02:59] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:02:59] EPT pointer = 0x0000000b1e11101e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:02:59] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:02:59] Virtual processor ID = 0x7886 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:02:59]     VCPU 3
(XEN) [2021-06-14 23:02:59] *** Guest State ***
(XEN) [2021-06-14 23:02:59] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:02:59] CR4: actual=0x00000000001626f0, 
shadow=0x0000000000160670, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:02:59] CR3 = 0x00000000ea652000
(XEN) [2021-06-14 23:02:59] RSP = 0xffff88018fd83e28 
(0xffff88018fd83e28)  RIP = 0xffffffff81539480 (0xffffffff81539480)
(XEN) [2021-06-14 23:02:59] RFLAGS=0x00000002 (0x00000002)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:02:59] Sysenter RSP=0000000000000000 
CS:RIP=0010:ffffffff8153c570
(XEN) [2021-06-14 23:02:59]        sel  attr  limit   base
(XEN) [2021-06-14 23:02:59]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   GS: 0000 1c000 ffffffff ffff88018fd80000
(XEN) [2021-06-14 23:02:59] GDTR:            0000007f ffff88018fd8c000
(XEN) [2021-06-14 23:02:59] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59] IDTR:            00000fff ffffffffff57c000
(XEN) [2021-06-14 23:02:59]   TR: 0040 0008b 00002087 ffff88018fd84480
(XEN) [2021-06-14 23:02:59] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0007010600070106
(XEN) [2021-06-14 23:02:59] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:02:59] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:02:59] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:02:59] InterruptStatus = 0000
(XEN) [2021-06-14 23:02:59] *** Host State ***
(XEN) [2021-06-14 23:02:59] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207ca1ff70
(XEN) [2021-06-14 23:02:59] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:02:59] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037cc4040
(XEN) [2021-06-14 23:02:59] GDTBase=ffff83207c9f7000 
IDTBase=ffff83207ca04000
(XEN) [2021-06-14 23:02:59] CR0=0000000080050033 CR3=0000000b1e10a000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:02:59] Sysenter RSP=ffff83207ca1ffa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:02:59] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:02:59] *** Control State ***
(XEN) [2021-06-14 23:02:59] PinBased=000000bf CPUBased=b6a065fe 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:02:59] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:02:59] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:02:59] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:02:59] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000002
(XEN) [2021-06-14 23:02:59]         reason=00000028 
qualification=0000000000000000
(XEN) [2021-06-14 23:02:59] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:02:59] TSC Offset = 0xfffd824c638b8730  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:02:59] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:02:59] EPT pointer = 0x0000000b1e11101e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:02:59] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:02:59] Virtual processor ID = 0xf840 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:02:59]
(XEN) [2021-06-14 23:02:59] >>> Domain 5 <<<
(XEN) [2021-06-14 23:02:59]     VCPU 0
(XEN) [2021-06-14 23:02:59] *** Guest State ***
(XEN) [2021-06-14 23:02:59] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:02:59] CR4: actual=0x00000000001626f0, 
shadow=0x0000000000160670, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:02:59] CR3 = 0x000000046094f804
(XEN) [2021-06-14 23:02:59] RSP = 0x00007fd23cdfeae8 
(0x00007fd23cdfeae8)  RIP = 0x00007fd3cbe94c51 (0x00007fd3cbe94c51)
(XEN) [2021-06-14 23:02:59] RFLAGS=0x00000202 (0x00000202)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:02:59] Sysenter RSP=fffffe0000003000 
CS:RIP=0010:ffffffff81c01560
(XEN) [2021-06-14 23:02:59]        sel  attr  limit   base
(XEN) [2021-06-14 23:02:59]   CS: 0033 0a0fb ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   SS: 002b 0c0f3 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59]   FS: 0000 1c000 ffffffff 00007fd23cdff640
(XEN) [2021-06-14 23:02:59]   GS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59] GDTR:            0000007f fffffe0000001000
(XEN) [2021-06-14 23:02:59] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:02:59] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:02:59]   TR: 0040 0008b 00004087 fffffe0000003000
(XEN) [2021-06-14 23:02:59] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:02:59] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:02:59] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:02:59] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:02:59] InterruptStatus = 0000
(XEN) [2021-06-14 23:02:59] *** Host State ***
(XEN) [2021-06-14 23:02:59] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207cba7f70
(XEN) [2021-06-14 23:02:59] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:02:59] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037c9c040
(XEN) [2021-06-14 23:02:59] GDTBase=ffff83207ca31000 
IDTBase=ffff83207ca3e000
(XEN) [2021-06-14 23:02:59] CR0=0000000080050033 CR3=000000157a7b0000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:02:59] Sysenter RSP=ffff83207cba7fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:02:59] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:02:59] *** Control State ***
(XEN) [2021-06-14 23:02:59] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:02:59] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:02:59] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:02:59] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:02:59] VMExit: intr_info=800000fc errcode=00000000 
ilen=00000002
(XEN) [2021-06-14 23:02:59]         reason=00000001 
qualification=0000000000000000
(XEN) [2021-06-14 23:02:59] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:02:59] TSC Offset = 0xfffd823273e28d22  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:02:59] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:02:59] EPT pointer = 0x000000157a7bb01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:02:59] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:02:59] Virtual processor ID = 0x24f3 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:02:59]     VCPU 1
(XEN) [2021-06-14 23:02:59] *** Guest State ***
(XEN) [2021-06-14 23:02:59] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:02:59] CR4: actual=0x00000000001626e0, 
shadow=0x0000000000160660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:02:59] CR3 = 0x000000054a0cb805
(XEN) [2021-06-14 23:02:59] RSP = 0x00007fe2f2b62500 
(0x00007fe2f2b62500)  RIP = 0x00007fe309b81291 (0x00007fe309b81291)
(XEN) [2021-06-14 23:02:59] RFLAGS=0x00000206 (0x00000206)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:00] Sysenter RSP=fffffe0000034000 
CS:RIP=0010:ffffffff81c01560
(XEN) [2021-06-14 23:03:00]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:00]   CS: 0033 0a0fb ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   SS: 002b 0c0f3 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   FS: 0000 1c000 ffffffff 00007fe2f2b63640
(XEN) [2021-06-14 23:03:00]   GS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00] GDTR:            0000007f fffffe0000032000
(XEN) [2021-06-14 23:03:00] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:00]   TR: 0040 0008b 00004087 fffffe0000034000
(XEN) [2021-06-14 23:03:00] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:00] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:00] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:00] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:00] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:00] *** Host State ***
(XEN) [2021-06-14 23:03:00] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83103ff0ff70
(XEN) [2021-06-14 23:03:00] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:00] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff83103ff14040
(XEN) [2021-06-14 23:03:00] GDTBase=ffff83103ff05000 
IDTBase=ffff83103ff12000
(XEN) [2021-06-14 23:03:00] CR0=0000000080050033 CR3=000000157a7af000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:00] Sysenter RSP=ffff83103ff0ffa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:00] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:00] *** Control State ***
(XEN) [2021-06-14 23:03:00] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:00] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:00] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:00] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:00] VMExit: intr_info=800000fc errcode=00000000 
ilen=00000002
(XEN) [2021-06-14 23:03:00]         reason=00000001 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:00] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:00] TSC Offset = 0xfffd823273e28d22  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:00] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:00] EPT pointer = 0x000000157a7bb01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:00] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:00] Virtual processor ID = 0x268e VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:00]     VCPU 2
(XEN) [2021-06-14 23:03:00] *** Guest State ***
(XEN) [2021-06-14 23:03:00] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:00] CR4: actual=0x00000000001626e0, 
shadow=0x0000000000160660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:00] CR3 = 0x00000004f25b2002
(XEN) [2021-06-14 23:03:00] RSP = 0xffffc9000008fdf0 
(0xffffc9000008fdf0)  RIP = 0xffffffff81beb36d (0xffffffff81beb36e)
(XEN) [2021-06-14 23:03:00] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:00] Sysenter RSP=fffffe0000065000 
CS:RIP=0010:ffffffff81c01560
(XEN) [2021-06-14 23:03:00]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:00]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   GS: 0000 1c000 ffffffff ffff888564e80000
(XEN) [2021-06-14 23:03:00] GDTR:            0000007f fffffe0000063000
(XEN) [2021-06-14 23:03:00] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:00]   TR: 0040 0008b 00004087 fffffe0000065000
(XEN) [2021-06-14 23:03:00] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:00] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:00] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:00] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:00] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:00] *** Host State ***
(XEN) [2021-06-14 23:03:00] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207ca37f70
(XEN) [2021-06-14 23:03:00] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:00] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037c90040
(XEN) [2021-06-14 23:03:00] GDTBase=ffff83207ca2f000 
IDTBase=ffff83207ca3c000
(XEN) [2021-06-14 23:03:00] CR0=0000000080050033 CR3=000000157a7ae000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:00] Sysenter RSP=ffff83207ca37fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:00] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:00] *** Control State ***
(XEN) [2021-06-14 23:03:00] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:00] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:00] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:00] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:00] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:00]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:00] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:00] TSC Offset = 0xfffd823273e28d22  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:00] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:00] EPT pointer = 0x000000157a7bb01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:00] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:00] Virtual processor ID = 0x3cfd VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:00]     VCPU 3
(XEN) [2021-06-14 23:03:00] *** Guest State ***
(XEN) [2021-06-14 23:03:00] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:00] CR4: actual=0x00000000001626e0, 
shadow=0x0000000000160660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:00] CR3 = 0x000000046094e005
(XEN) [2021-06-14 23:03:00] RSP = 0xffffc90000097df0 
(0xffffc90000097df0)  RIP = 0xffffffff81beb36d (0xffffffff81beb36e)
(XEN) [2021-06-14 23:03:00] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:00] Sysenter RSP=fffffe0000096000 
CS:RIP=0010:ffffffff81c01560
(XEN) [2021-06-14 23:03:00]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:00]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   GS: 0000 1c000 ffffffff ffff888564ec0000
(XEN) [2021-06-14 23:03:00] GDTR:            0000007f fffffe0000094000
(XEN) [2021-06-14 23:03:00] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:00]   TR: 0040 0008b 00004087 fffffe0000096000
(XEN) [2021-06-14 23:03:00] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:00] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:00] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:00] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:00] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:00] *** Host State ***
(XEN) [2021-06-14 23:03:00] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83103ff27f70
(XEN) [2021-06-14 23:03:00] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:00] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff83103ff28040
(XEN) [2021-06-14 23:03:00] GDTBase=ffff83103ff1e000 
IDTBase=ffff83103ff1f000
(XEN) [2021-06-14 23:03:00] CR0=0000000080050033 CR3=000000157a7ad000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:00] Sysenter RSP=ffff83103ff27fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:00] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:00] *** Control State ***
(XEN) [2021-06-14 23:03:00] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:00] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:00] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:00] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:00] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:00]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:00] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:00] TSC Offset = 0xfffd823273e28d22  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:00] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:00] EPT pointer = 0x000000157a7bb01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:00] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:00] Virtual processor ID = 0x8923 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:00]     VCPU 4
(XEN) [2021-06-14 23:03:00] *** Guest State ***
(XEN) [2021-06-14 23:03:00] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:00] CR4: actual=0x00000000001626e0, 
shadow=0x0000000000160660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:00] CR3 = 0x00000004f4204005
(XEN) [2021-06-14 23:03:00] RSP = 0xffffc9000009fda8 
(0xffffc9000009fda8)  RIP = 0xffffffff81138e7c (0xffffffff81138e7c)
(XEN) [2021-06-14 23:03:00] RFLAGS=0x00000046 (0x00000046)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:00] Sysenter RSP=fffffe00000c7000 
CS:RIP=0010:ffffffff81c01560
(XEN) [2021-06-14 23:03:00]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:00]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00]   GS: 0000 1c000 ffffffff ffff888564f00000
(XEN) [2021-06-14 23:03:00] GDTR:            0000007f fffffe00000c5000
(XEN) [2021-06-14 23:03:00] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:00] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:00]   TR: 0040 0008b 00004087 fffffe00000c7000
(XEN) [2021-06-14 23:03:01] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:01] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:01] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:01] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:01] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:01] *** Host State ***
(XEN) [2021-06-14 23:03:01] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff831037cf7f70
(XEN) [2021-06-14 23:03:01] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:01] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff83103ff00040
(XEN) [2021-06-14 23:03:01] GDTBase=ffff831037cef000 
IDTBase=ffff831037cfc000
(XEN) [2021-06-14 23:03:01] CR0=0000000080050033 CR3=000000157a7ac000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:01] Sysenter RSP=ffff831037cf7fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:01] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:01] *** Control State ***
(XEN) [2021-06-14 23:03:01] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:01] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:01] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:01] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:01] VMExit: intr_info=800000fc errcode=00000000 
ilen=00000003
(XEN) [2021-06-14 23:03:01]         reason=00000001 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:01] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:01] TSC Offset = 0xfffd823273e28d22  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:01] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:01] EPT pointer = 0x000000157a7bb01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:01] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:01] Virtual processor ID = 0x8938 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:01]     VCPU 5
(XEN) [2021-06-14 23:03:01] *** Guest State ***
(XEN) [2021-06-14 23:03:01] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:01] CR4: actual=0x00000000001626e0, 
shadow=0x0000000000160660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:01] CR3 = 0x000000046094e003
(XEN) [2021-06-14 23:03:01] RSP = 0xffffc900000a7df0 
(0xffffc900000a7df0)  RIP = 0xffffffff81beb36d (0xffffffff81beb36e)
(XEN) [2021-06-14 23:03:01] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:01] Sysenter RSP=fffffe00000f8000 
CS:RIP=0010:ffffffff81c01560
(XEN) [2021-06-14 23:03:01]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:01]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   GS: 0000 1c000 ffffffff ffff888564f40000
(XEN) [2021-06-14 23:03:01] GDTR:            0000007f fffffe00000f6000
(XEN) [2021-06-14 23:03:01] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:01]   TR: 0040 0008b 00004087 fffffe00000f8000
(XEN) [2021-06-14 23:03:01] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:01] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:01] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:01] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:01] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:01] *** Host State ***
(XEN) [2021-06-14 23:03:01] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207ca0ff70
(XEN) [2021-06-14 23:03:01] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:01] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037cd4040
(XEN) [2021-06-14 23:03:01] GDTBase=ffff83207cba6000 
IDTBase=ffff83207ca07000
(XEN) [2021-06-14 23:03:01] CR0=0000000080050033 CR3=000000157a7ab000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:01] Sysenter RSP=ffff83207ca0ffa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:01] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:01] *** Control State ***
(XEN) [2021-06-14 23:03:01] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:01] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:01] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:01] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:01] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:01]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:01] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:01] TSC Offset = 0xfffd823273e28d22  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:01] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:01] EPT pointer = 0x000000157a7bb01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:01] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:01] Virtual processor ID = 0x64f8 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:01]
(XEN) [2021-06-14 23:03:01] >>> Domain 6 <<<
(XEN) [2021-06-14 23:03:01]     VCPU 0
(XEN) [2021-06-14 23:03:01] *** Guest State ***
(XEN) [2021-06-14 23:03:01] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:01] CR4: actual=0x00000000001726f0, 
shadow=0x0000000000170630, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:01] CR3 = 0x00000001210f8006
(XEN) [2021-06-14 23:03:01] RSP = 0xffffffffaea03e30 
(0xffffffffaea03e30)  RIP = 0xffffffffadc7c76d (0xffffffffadc7c76e)
(XEN) [2021-06-14 23:03:01] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:01] Sysenter RSP=fffffe0000003000 
CS:RIP=0010:ffffffffade01420
(XEN) [2021-06-14 23:03:01]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:01]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   GS: 0000 1c000 ffffffff ffff9977ea400000
(XEN) [2021-06-14 23:03:01] GDTR:            0000007f fffffe0000001000
(XEN) [2021-06-14 23:03:01] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:01]   TR: 0040 0008b 00004087 fffffe0000003000
(XEN) [2021-06-14 23:03:01] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:01] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:01] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:01] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:01] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:01] *** Host State ***
(XEN) [2021-06-14 23:03:01] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff831037cf7f70
(XEN) [2021-06-14 23:03:01] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:01] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff83103ff00040
(XEN) [2021-06-14 23:03:01] GDTBase=ffff831037cef000 
IDTBase=ffff831037cfc000
(XEN) [2021-06-14 23:03:01] CR0=0000000080050033 CR3=000000207f3f8000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:01] Sysenter RSP=ffff831037cf7fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:01] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:01] *** Control State ***
(XEN) [2021-06-14 23:03:01] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:01] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:01] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:01] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:01] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:01]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:01] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:01] TSC Offset = 0xfffd6a453b49069e  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:01] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:01] EPT pointer = 0x0000000a2772901e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:01] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:01] Virtual processor ID = 0x918b VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:01]     VCPU 1
(XEN) [2021-06-14 23:03:01] *** Guest State ***
(XEN) [2021-06-14 23:03:01] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:01] CR4: actual=0x00000000001726e0, 
shadow=0x0000000000170620, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:01] CR3 = 0x0000000123008001
(XEN) [2021-06-14 23:03:01] RSP = 0xffffac780008fe58 
(0xffffac780008fe58)  RIP = 0xffffffffadc7c76d (0xffffffffadc7c76e)
(XEN) [2021-06-14 23:03:01] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:01] Sysenter RSP=fffffe0000038000 
CS:RIP=0010:ffffffffade01420
(XEN) [2021-06-14 23:03:01]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:01]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01]   GS: 0000 1c000 ffffffff ffff9977ea440000
(XEN) [2021-06-14 23:03:01] GDTR:            0000007f fffffe0000036000
(XEN) [2021-06-14 23:03:01] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:01] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:01]   TR: 0040 0008b 00004087 fffffe0000038000
(XEN) [2021-06-14 23:03:01] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:01] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:01] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:01] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:01] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:01] *** Host State ***
(XEN) [2021-06-14 23:03:01] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83103ff27f70
(XEN) [2021-06-14 23:03:01] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:01] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff83103ff28040
(XEN) [2021-06-14 23:03:02] GDTBase=ffff83103ff1e000 
IDTBase=ffff83103ff1f000
(XEN) [2021-06-14 23:03:02] CR0=0000000080050033 CR3=00000009bbbc9000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:02] Sysenter RSP=ffff83103ff27fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:02] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:02] *** Control State ***
(XEN) [2021-06-14 23:03:02] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:02] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:02] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:02] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:02] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:02]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:02] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:02] TSC Offset = 0xfffd6a453b49069e  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:02] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:02] EPT pointer = 0x0000000a2772901e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:02] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:02] Virtual processor ID = 0x96f9 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:02]     VCPU 2
(XEN) [2021-06-14 23:03:02] *** Guest State ***
(XEN) [2021-06-14 23:03:02] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:02] CR4: actual=0x00000000001726e0, 
shadow=0x0000000000170620, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:02] CR3 = 0x000000012492a004
(XEN) [2021-06-14 23:03:02] RSP = 0xffffac7800097e58 
(0xffffac7800097e58)  RIP = 0xffffffffadc7c76d (0xffffffffadc7c76e)
(XEN) [2021-06-14 23:03:02] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:02] Sysenter RSP=fffffe000006d000 
CS:RIP=0010:ffffffffade01420
(XEN) [2021-06-14 23:03:02]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:02]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   GS: 0000 1c000 ffffffff ffff9977ea480000
(XEN) [2021-06-14 23:03:02] GDTR:            0000007f fffffe000006b000
(XEN) [2021-06-14 23:03:02] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:02]   TR: 0040 0008b 00004087 fffffe000006d000
(XEN) [2021-06-14 23:03:02] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:02] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:02] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:02] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:02] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:02] *** Host State ***
(XEN) [2021-06-14 23:03:02] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83007263ff70
(XEN) [2021-06-14 23:03:02] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:02] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff82d040d47040
(XEN) [2021-06-14 23:03:02] GDTBase=ffff82d040a09000 
IDTBase=ffff82d040d45000
(XEN) [2021-06-14 23:03:02] CR0=0000000080050033 CR3=000000207f3f1000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:02] Sysenter RSP=ffff83007263ffa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:02] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:02] *** Control State ***
(XEN) [2021-06-14 23:03:02] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:02] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:02] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:02] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:02] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:02]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:02] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:02] TSC Offset = 0xfffd6a453b49069e  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:02] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:02] EPT pointer = 0x0000000a2772901e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:02] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:02] Virtual processor ID = 0x7b99 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:02]     VCPU 3
(XEN) [2021-06-14 23:03:02] *** Guest State ***
(XEN) [2021-06-14 23:03:02] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:02] CR4: actual=0x00000000001726e0, 
shadow=0x0000000000170620, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:02] CR3 = 0x00000001210f8006
(XEN) [2021-06-14 23:03:02] RSP = 0xffffac780009fe58 
(0xffffac780009fe58)  RIP = 0xffffffffadc7c76d (0xffffffffadc7c76e)
(XEN) [2021-06-14 23:03:02] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:02] Sysenter RSP=fffffe00000a2000 
CS:RIP=0010:ffffffffade01420
(XEN) [2021-06-14 23:03:02]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:02]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   GS: 0000 1c000 ffffffff ffff9977ea4c0000
(XEN) [2021-06-14 23:03:02] GDTR:            0000007f fffffe00000a0000
(XEN) [2021-06-14 23:03:02] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:02]   TR: 0040 0008b 00004087 fffffe00000a2000
(XEN) [2021-06-14 23:03:02] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:02] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:02] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:02] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:02] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:02] *** Host State ***
(XEN) [2021-06-14 23:03:02] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83103ff27f70
(XEN) [2021-06-14 23:03:02] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:02] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff83103ff28040
(XEN) [2021-06-14 23:03:02] GDTBase=ffff83103ff1e000 
IDTBase=ffff83103ff1f000
(XEN) [2021-06-14 23:03:02] CR0=0000000080050033 CR3=00000009bb594000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:02] Sysenter RSP=ffff83103ff27fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:02] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:02] *** Control State ***
(XEN) [2021-06-14 23:03:02] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:02] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:02] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:02] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:02] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:02]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:02] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:02] TSC Offset = 0xfffd6a453b49069e  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:02] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:02] EPT pointer = 0x0000000a2772901e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:02] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:02] Virtual processor ID = 0x9d38 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:02]     VCPU 4
(XEN) [2021-06-14 23:03:02] *** Guest State ***
(XEN) [2021-06-14 23:03:02] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:02] CR4: actual=0x00000000001726e0, 
shadow=0x0000000000170620, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:02] CR3 = 0x000000012492a003
(XEN) [2021-06-14 23:03:02] RSP = 0xffffac78000a7e58 
(0xffffac78000a7e58)  RIP = 0xffffffffadc7c76d (0xffffffffadc7c76e)
(XEN) [2021-06-14 23:03:02] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:02] Sysenter RSP=fffffe00000d7000 
CS:RIP=0010:ffffffffade01420
(XEN) [2021-06-14 23:03:02]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:02]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02]   GS: 0000 1c000 ffffffff ffff9977ea500000
(XEN) [2021-06-14 23:03:02] GDTR:            0000007f fffffe00000d5000
(XEN) [2021-06-14 23:03:02] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:02] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:02]   TR: 0040 0008b 00004087 fffffe00000d7000
(XEN) [2021-06-14 23:03:02] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:02] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:02] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:02] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:02] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:02] *** Host State ***
(XEN) [2021-06-14 23:03:02] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83007263ff70
(XEN) [2021-06-14 23:03:02] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:02] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff82d040d47040
(XEN) [2021-06-14 23:03:02] GDTBase=ffff82d040a09000 
IDTBase=ffff82d040d45000
(XEN) [2021-06-14 23:03:02] CR0=0000000080050033 CR3=000000207f3f0000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:02] Sysenter RSP=ffff83007263ffa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:02] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:02] *** Control State ***
(XEN) [2021-06-14 23:03:02] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:02] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:02] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:02] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:02] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:03]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:03] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:03] TSC Offset = 0xfffd6a453b49069e  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:03] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:03] EPT pointer = 0x0000000a2772901e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:03] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:03] Virtual processor ID = 0x822e VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:03]     VCPU 5
(XEN) [2021-06-14 23:03:03] *** Guest State ***
(XEN) [2021-06-14 23:03:03] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:03] CR4: actual=0x00000000001726e0, 
shadow=0x0000000000170620, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:03] CR3 = 0x000000012492a002
(XEN) [2021-06-14 23:03:03] RSP = 0xffffac78000afe58 
(0xffffac78000afe58)  RIP = 0xffffffffadc7c76d (0xffffffffadc7c76e)
(XEN) [2021-06-14 23:03:03] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:03] Sysenter RSP=fffffe000010c000 
CS:RIP=0010:ffffffffade01420
(XEN) [2021-06-14 23:03:03]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:03]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   GS: 0000 1c000 ffffffff ffff9977ea540000
(XEN) [2021-06-14 23:03:03] GDTR:            0000007f fffffe000010a000
(XEN) [2021-06-14 23:03:03] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:03]   TR: 0040 0008b 00004087 fffffe000010c000
(XEN) [2021-06-14 23:03:03] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:03] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:03] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:03] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:03] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:03] *** Host State ***
(XEN) [2021-06-14 23:03:03] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207cba7f70
(XEN) [2021-06-14 23:03:03] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:03] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037c9c040
(XEN) [2021-06-14 23:03:03] GDTBase=ffff83207ca31000 
IDTBase=ffff83207ca3e000
(XEN) [2021-06-14 23:03:03] CR0=0000000080050033 CR3=00000009bc0a1000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:03] Sysenter RSP=ffff83207cba7fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:03] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:03] *** Control State ***
(XEN) [2021-06-14 23:03:03] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:03] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:03] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:03] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:03] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:03]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:03] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:03] TSC Offset = 0xfffd6a453b49069e  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:03] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:03] EPT pointer = 0x0000000a2772901e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:03] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:03] Virtual processor ID = 0x4e81 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:03]
(XEN) [2021-06-14 23:03:03] >>> Domain 7 <<<
(XEN) [2021-06-14 23:03:03]     VCPU 0
(XEN) [2021-06-14 23:03:03] *** Guest State ***
(XEN) [2021-06-14 23:03:03] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:03] CR4: actual=0x00000000001726f0, 
shadow=0x0000000000170670, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:03] CR3 = 0x000000013000c006
(XEN) [2021-06-14 23:03:03] RSP = 0xffffffff84e07ce8 
(0xffffffff84e07ce8)  RIP = 0xffffffff83dd8ccd (0xffffffff83dd8cce)
(XEN) [2021-06-14 23:03:03] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:03] Sysenter RSP=fffffe0000003000 
CS:RIP=0010:ffffffff83e01540
(XEN) [2021-06-14 23:03:03]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:03]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   GS: 0000 1c000 ffffffff ffff8884d3800000
(XEN) [2021-06-14 23:03:03] GDTR:            0000007f fffffe0000001000
(XEN) [2021-06-14 23:03:03] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:03]   TR: 0040 0008b 00004087 fffffe0000003000
(XEN) [2021-06-14 23:03:03] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:03] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:03] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:03] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:03] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:03] *** Host State ***
(XEN) [2021-06-14 23:03:03] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff831037cf7f70
(XEN) [2021-06-14 23:03:03] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:03] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff83103ff00040
(XEN) [2021-06-14 23:03:03] GDTBase=ffff831037cef000 
IDTBase=ffff831037cfc000
(XEN) [2021-06-14 23:03:03] CR0=0000000080050033 CR3=00000014040d7000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:03] Sysenter RSP=ffff831037cf7fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:03] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:03] *** Control State ***
(XEN) [2021-06-14 23:03:03] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:03] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:03] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:03] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:03] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:03]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:03] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:03] TSC Offset = 0xfffd5e346725fa5b  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:03] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:03] EPT pointer = 0x0000000f870ae01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:03] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:03] Virtual processor ID = 0xa377 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:03]     VCPU 1
(XEN) [2021-06-14 23:03:03] *** Guest State ***
(XEN) [2021-06-14 23:03:03] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:03] CR4: actual=0x00000000001726e0, 
shadow=0x0000000000170660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:03] CR3 = 0x0000000117484006
(XEN) [2021-06-14 23:03:03] RSP = 0xffffc90000117cf0 
(0xffffc90000117cf0)  RIP = 0xffffffff83dd8ccd (0xffffffff83dd8cce)
(XEN) [2021-06-14 23:03:03] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:03] Sysenter RSP=fffffe000003e000 
CS:RIP=0010:ffffffff83e01540
(XEN) [2021-06-14 23:03:03]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:03]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03]   GS: 0000 1c000 ffffffff ffff8884d3880000
(XEN) [2021-06-14 23:03:03] GDTR:            0000007f fffffe000003c000
(XEN) [2021-06-14 23:03:03] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:03] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:03]   TR: 0040 0008b 00004087 fffffe000003e000
(XEN) [2021-06-14 23:03:03] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:03] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:03] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:03] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:03] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:03] *** Host State ***
(XEN) [2021-06-14 23:03:03] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207ca37f70
(XEN) [2021-06-14 23:03:03] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:03] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037c90040
(XEN) [2021-06-14 23:03:03] GDTBase=ffff83207ca2f000 
IDTBase=ffff83207ca3c000
(XEN) [2021-06-14 23:03:03] CR0=0000000080050033 CR3=0000000fbb824000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:03] Sysenter RSP=ffff83207ca37fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:03] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:03] *** Control State ***
(XEN) [2021-06-14 23:03:03] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:03] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:03] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:03] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:03] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:03]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:03] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:03] TSC Offset = 0xfffd5e346725fa5b  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:03] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:03] EPT pointer = 0x0000000f870ae01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:03] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:03] Virtual processor ID = 0x689f VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:03]     VCPU 2
(XEN) [2021-06-14 23:03:03] *** Guest State ***
(XEN) [2021-06-14 23:03:03] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:04] CR4: actual=0x00000000001726e0, 
shadow=0x0000000000170660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:04] CR3 = 0x00000001440aa004
(XEN) [2021-06-14 23:03:04] RSP = 0xffffc90000127cf0 
(0xffffc90000127cf0)  RIP = 0xffffffff83dd8ccd (0xffffffff83dd8cce)
(XEN) [2021-06-14 23:03:04] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:04] Sysenter RSP=fffffe0000079000 
CS:RIP=0010:ffffffff83e01540
(XEN) [2021-06-14 23:03:04]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:04]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   GS: 0000 1c000 ffffffff ffff8884d3900000
(XEN) [2021-06-14 23:03:04] GDTR:            0000007f fffffe0000077000
(XEN) [2021-06-14 23:03:04] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:04]   TR: 0040 0008b 00004087 fffffe0000079000
(XEN) [2021-06-14 23:03:04] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:04] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:04] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:04] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:04] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:04] *** Host State ***
(XEN) [2021-06-14 23:03:04] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207ca37f70
(XEN) [2021-06-14 23:03:04] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:04] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037c90040
(XEN) [2021-06-14 23:03:04] GDTBase=ffff83207ca2f000 
IDTBase=ffff83207ca3c000
(XEN) [2021-06-14 23:03:04] CR0=0000000080050033 CR3=00000014040de000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:04] Sysenter RSP=ffff83207ca37fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:04] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:04] *** Control State ***
(XEN) [2021-06-14 23:03:04] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:04] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:04] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:04] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:04] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:04]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:04] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:04] TSC Offset = 0xfffd5e346725fa5b  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:04] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:04] EPT pointer = 0x0000000f870ae01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:04] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:04] Virtual processor ID = 0x6b74 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:04]     VCPU 3
(XEN) [2021-06-14 23:03:04] *** Guest State ***
(XEN) [2021-06-14 23:03:04] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:04] CR4: actual=0x00000000001726e0, 
shadow=0x0000000000170660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:04] CR3 = 0x00000001297ba004
(XEN) [2021-06-14 23:03:04] RSP = 0xffffc900002a0ec8 
(0xffffc900002a0ec8)  RIP = 0xffffffff812e8693 (0xffffffff812e8693)
(XEN) [2021-06-14 23:03:04] RFLAGS=0x00000046 (0x00000046)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:04] Sysenter RSP=fffffe00000b4000 
CS:RIP=0010:ffffffff83e01540
(XEN) [2021-06-14 23:03:04]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:04]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   GS: 0000 1c000 ffffffff ffff8884d3980000
(XEN) [2021-06-14 23:03:04] GDTR:            0000007f fffffe00000b2000
(XEN) [2021-06-14 23:03:04] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:04]   TR: 0040 0008b 00004087 fffffe00000b4000
(XEN) [2021-06-14 23:03:04] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:04] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:04] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:04] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:04] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:04] *** Host State ***
(XEN) [2021-06-14 23:03:04] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207ca37f70
(XEN) [2021-06-14 23:03:04] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:04] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037c90040
(XEN) [2021-06-14 23:03:04] GDTBase=ffff83207ca2f000 
IDTBase=ffff83207ca3c000
(XEN) [2021-06-14 23:03:04] CR0=0000000080050033 CR3=0000000fbb823000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:04] Sysenter RSP=ffff83207ca37fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:04] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:04] *** Control State ***
(XEN) [2021-06-14 23:03:04] PinBased=000000bf CPUBased=b6a065fe 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:04] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:04] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:04] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:04] VMExit: intr_info=800000fc errcode=00000000 
ilen=00000007
(XEN) [2021-06-14 23:03:04]         reason=00000001 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:04] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:04] TSC Offset = 0xfffd5e346725fa5b  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:04] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:04] EPT pointer = 0x0000000f870ae01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:04] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:04] Virtual processor ID = 0x7092 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:04]     VCPU 4
(XEN) [2021-06-14 23:03:04] *** Guest State ***
(XEN) [2021-06-14 23:03:04] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:04] CR4: actual=0x00000000001726e0, 
shadow=0x0000000000170660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:04] CR3 = 0x000000012c468001
(XEN) [2021-06-14 23:03:04] RSP = 0xffffc90000147cf0 
(0xffffc90000147cf0)  RIP = 0xffffffff83dd8ccd (0xffffffff83dd8cce)
(XEN) [2021-06-14 23:03:04] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:04] Sysenter RSP=fffffe00000ef000 
CS:RIP=0010:ffffffff83e01540
(XEN) [2021-06-14 23:03:04]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:04]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   GS: 0000 1c000 ffffffff ffff8884d3a00000
(XEN) [2021-06-14 23:03:04] GDTR:            0000007f fffffe00000ed000
(XEN) [2021-06-14 23:03:04] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:04]   TR: 0040 0008b 00004087 fffffe00000ef000
(XEN) [2021-06-14 23:03:04] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:04] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:04] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:04] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:04] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:04] *** Host State ***
(XEN) [2021-06-14 23:03:04] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207ca37f70
(XEN) [2021-06-14 23:03:04] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:04] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037c90040
(XEN) [2021-06-14 23:03:04] GDTBase=ffff83207ca2f000 
IDTBase=ffff83207ca3c000
(XEN) [2021-06-14 23:03:04] CR0=0000000080050033 CR3=00000015c151b000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:04] Sysenter RSP=ffff83207ca37fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:04] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:04] *** Control State ***
(XEN) [2021-06-14 23:03:04] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:04] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:04] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:04] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:04] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:04]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:04] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:04] TSC Offset = 0xfffd5e346725fa5b  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:04] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:04] EPT pointer = 0x0000000f870ae01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:04] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:04] Virtual processor ID = 0x74d6 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:04]     VCPU 5
(XEN) [2021-06-14 23:03:04] *** Guest State ***
(XEN) [2021-06-14 23:03:04] CR0: actual=0x0000000080050033, 
shadow=0x0000000080050033, gh_mask=ffffffffffffffff
(XEN) [2021-06-14 23:03:04] CR4: actual=0x00000000001726e0, 
shadow=0x0000000000170660, gh_mask=ffffffffffe8f860
(XEN) [2021-06-14 23:03:04] CR3 = 0x0000000126bce005
(XEN) [2021-06-14 23:03:04] RSP = 0xffffc90000157cf0 
(0xffffc90000157cf0)  RIP = 0xffffffff83dd8ccd (0xffffffff83dd8cce)
(XEN) [2021-06-14 23:03:04] RFLAGS=0x00000246 (0x00000246)  DR7 = 
0x0000000000000400
(XEN) [2021-06-14 23:03:04] Sysenter RSP=fffffe000012a000 
CS:RIP=0010:ffffffff83e01540
(XEN) [2021-06-14 23:03:04]        sel  attr  limit   base
(XEN) [2021-06-14 23:03:04]   CS: 0010 0a09b ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   DS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   SS: 0018 0c093 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   ES: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:04]   FS: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:05]   GS: 0000 1c000 ffffffff ffff8884d3a80000
(XEN) [2021-06-14 23:03:05] GDTR:            0000007f fffffe0000128000
(XEN) [2021-06-14 23:03:05] LDTR: 0000 1c000 ffffffff 0000000000000000
(XEN) [2021-06-14 23:03:05] IDTR:            00000fff fffffe0000000000
(XEN) [2021-06-14 23:03:05]   TR: 0040 0008b 00004087 fffffe000012a000
(XEN) [2021-06-14 23:03:05] EFER(VMCS) = 0x0000000000000d01  PAT = 
0x0407050600070106
(XEN) [2021-06-14 23:03:05] PreemptionTimer = 0x00000000  SM Base = 
0x00000000
(XEN) [2021-06-14 23:03:05] DebugCtl = 0x0000000000000000 
DebugExceptions = 0x0000000000000000
(XEN) [2021-06-14 23:03:05] Interruptibility = 00000000 ActivityState = 
00000000
(XEN) [2021-06-14 23:03:05] InterruptStatus = 0000
(XEN) [2021-06-14 23:03:05] *** Host State ***
(XEN) [2021-06-14 23:03:05] RIP = 0xffff82d0403f7110 
(vmx_asm_vmexit_handler)  RSP = 0xffff83207ca37f70
(XEN) [2021-06-14 23:03:05] CS=e008 SS=0000 DS=0000 ES=0000 FS=0000 
GS=0000 TR=e040
(XEN) [2021-06-14 23:03:05] FSBase=0000000000000000 
GSBase=0000000000000000 TRBase=ffff831037c90040
(XEN) [2021-06-14 23:03:05] GDTBase=ffff83207ca2f000 
IDTBase=ffff83207ca3c000
(XEN) [2021-06-14 23:03:05] CR0=0000000080050033 CR3=0000000fbb822000 
CR4=00000000001526e0
(XEN) [2021-06-14 23:03:05] Sysenter RSP=ffff83207ca37fa0 
CS:RIP=e008:ffff82d0405c8440
(XEN) [2021-06-14 23:03:05] EFER = 0x0000000000000d01  PAT = 
0x0000050100070406
(XEN) [2021-06-14 23:03:05] *** Control State ***
(XEN) [2021-06-14 23:03:05] PinBased=000000bf CPUBased=b6a065fa 
SecondaryExec=000017eb
(XEN) [2021-06-14 23:03:05] EntryControls=0000d3ff ExitControls=002fefff
(XEN) [2021-06-14 23:03:05] ExceptionBitmap=00060002 PFECmask=00000000 
PFECmatch=00000000
(XEN) [2021-06-14 23:03:05] VMEntry: intr_info=000000f3 errcode=00000000 
ilen=00000000
(XEN) [2021-06-14 23:03:05] VMExit: intr_info=00000000 errcode=00000000 
ilen=00000001
(XEN) [2021-06-14 23:03:05]         reason=0000000c 
qualification=0000000000000000
(XEN) [2021-06-14 23:03:05] IDTVectoring: info=00000000 errcode=00000000
(XEN) [2021-06-14 23:03:05] TSC Offset = 0xfffd5e346725fa5b  TSC 
Multiplier = 0x0000000000000000
(XEN) [2021-06-14 23:03:05] TPR Threshold = 0x00  PostedIntrVec = 0xf4
(XEN) [2021-06-14 23:03:05] EPT pointer = 0x0000000f870ae01e  EPTP index 
= 0x0000
(XEN) [2021-06-14 23:03:05] PLE Gap=00000080 Window=00001000
(XEN) [2021-06-14 23:03:05] Virtual processor ID = 0x7916 VMfunc 
controls = 0000000000000000
(XEN) [2021-06-14 23:03:05] **************************************
(XEN) [2021-06-14 23:03:05] [z: dump IOAPIC info]
(XEN) [2021-06-14 23:03:05] number of MP IRQ sources: 15.
(XEN) [2021-06-14 23:03:05] number of IO-APIC #1 registers: 24.
(XEN) [2021-06-14 23:03:05] number of IO-APIC #2 registers: 24.
(XEN) [2021-06-14 23:03:05] number of IO-APIC #3 registers: 24.
(XEN) [2021-06-14 23:03:05] testing the IO APIC.......................
(XEN) [2021-06-14 23:03:05] IO APIC #1......
(XEN) [2021-06-14 23:03:05] .... register #00: 01000000
(XEN) [2021-06-14 23:03:05] .......    : physical APIC id: 01
(XEN) [2021-06-14 23:03:05] .......    : Delivery Type: 0
(XEN) [2021-06-14 23:03:05] .......    : LTS          : 0
(XEN) [2021-06-14 23:03:05] .... register #01: 00170020
(XEN) [2021-06-14 23:03:05] .......     : max redirection entries: 0017
(XEN) [2021-06-14 23:03:05] .......     : PRQ implemented: 0
(XEN) [2021-06-14 23:03:05] .......     : IO APIC version: 0020
(XEN) [2021-06-14 23:03:05] .... IRQ redirection table:
(XEN) [2021-06-14 23:03:05]  NR  DestID Msk Trg IRR Pol Stat DstM DelM Vec
(XEN) [2021-06-14 23:03:05]  00 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  01 00010004 0   0   0   0   0    1 1    A3
(XEN) [2021-06-14 23:03:05]  02 00000001 0   0   0   0   0    1 1    F0
(XEN) [2021-06-14 23:03:05]  03 00000100 0   0   0   0   0    1 1    47
(XEN) [2021-06-14 23:03:05]  04 00010555 0   0   0   0   0    1 1    F1
(XEN) [2021-06-14 23:03:05]  05 00000001 0   0   0   0   0    1 1    50
(XEN) [2021-06-14 23:03:05]  06 00000001 0   0   0   0   0    1 1    58
(XEN) [2021-06-14 23:03:05]  07 00000001 0   0   0   0   0    1 1    60
(XEN) [2021-06-14 23:03:05]  08 00000040 0   0   0   0   0    1 1    8C
(XEN) [2021-06-14 23:03:05]  09 00000010 0   1   0   0   0    1 1    C0
(XEN) [2021-06-14 23:03:05]  0a 00000001 0   0   0   0   0    1 1    78
(XEN) [2021-06-14 23:03:05]  0b 00000001 0   0   0   0   0    1 1    88
(XEN) [2021-06-14 23:03:05]  0c 00000001 0   0   0   0   0    1 1    90
(XEN) [2021-06-14 23:03:05]  0d 00000001 1   0   0   0   0    1 1    98
(XEN) [2021-06-14 23:03:05]  0e 00000001 0   0   0   0   0    1 1    A0
(XEN) [2021-06-14 23:03:05]  0f 00000001 0   0   0   0   0    1 1    A8
(XEN) [2021-06-14 23:03:05]  10 00000555 1   1   0   1   0    1 1    B9
(XEN) [2021-06-14 23:03:05]  11 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  12 00000010 0   1   0   1   0    1 1    C4
(XEN) [2021-06-14 23:03:05]  13 00000004 0   1   0   1   0    1 1    AD
(XEN) [2021-06-14 23:03:05]  14 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  15 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  16 00000555 1   1   0   1   0    1 1    BB
(XEN) [2021-06-14 23:03:05]  17 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05] IO APIC #2......
(XEN) [2021-06-14 23:03:05] .... register #00: 02000000
(XEN) [2021-06-14 23:03:05] .......    : physical APIC id: 02
(XEN) [2021-06-14 23:03:05] .......    : Delivery Type: 0
(XEN) [2021-06-14 23:03:05] .......    : LTS          : 0
(XEN) [2021-06-14 23:03:05] .... register #01: 00170020
(XEN) [2021-06-14 23:03:05] .......     : max redirection entries: 0017
(XEN) [2021-06-14 23:03:05] .......     : PRQ implemented: 0
(XEN) [2021-06-14 23:03:05] .......     : IO APIC version: 0020
(XEN) [2021-06-14 23:03:05] .... register #02: 00000000
(XEN) [2021-06-14 23:03:05] .......     : arbitration: 00
(XEN) [2021-06-14 23:03:05] .... register #03: 00000001
(XEN) [2021-06-14 23:03:05] .......     : Boot DT    : 1
(XEN) [2021-06-14 23:03:05] .... IRQ redirection table:
(XEN) [2021-06-14 23:03:05]  NR  DestID Msk Trg IRR Pol Stat DstM DelM Vec
(XEN) [2021-06-14 23:03:05]  00 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  01 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  02 00000555 1   1   0   1   0    1 1    D8
(XEN) [2021-06-14 23:03:05]  03 00010001 0   1   0   1   0    1 1    2F
(XEN) [2021-06-14 23:03:05]  04 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  05 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  06 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  07 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  08 00000010 0   1   0   1   0    1 1    E8
(XEN) [2021-06-14 23:03:05]  09 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  0a 00010400 0   1   0   1   0    1 1    E6
(XEN) [2021-06-14 23:03:05]  0b 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  0c 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  0d 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  0e 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  0f 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  10 00000555 1   1   0   1   0    1 1    99
(XEN) [2021-06-14 23:03:05]  11 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  12 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  13 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  14 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  15 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  16 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  17 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05] IO APIC #3......
(XEN) [2021-06-14 23:03:05] .... register #00: 03000000
(XEN) [2021-06-14 23:03:05] .......    : physical APIC id: 03
(XEN) [2021-06-14 23:03:05] .......    : Delivery Type: 0
(XEN) [2021-06-14 23:03:05] .......    : LTS          : 0
(XEN) [2021-06-14 23:03:05] .... register #01: 00170020
(XEN) [2021-06-14 23:03:05] .......     : max redirection entries: 0017
(XEN) [2021-06-14 23:03:05] .......     : PRQ implemented: 0
(XEN) [2021-06-14 23:03:05] .......     : IO APIC version: 0020
(XEN) [2021-06-14 23:03:05] .... register #02: 00000000
(XEN) [2021-06-14 23:03:05] .......     : arbitration: 00
(XEN) [2021-06-14 23:03:05] .... register #03: 00000001
(XEN) [2021-06-14 23:03:05] .......     : Boot DT    : 1
(XEN) [2021-06-14 23:03:05] .... IRQ redirection table:
(XEN) [2021-06-14 23:03:05]  NR  DestID Msk Trg IRR Pol Stat DstM DelM Vec
(XEN) [2021-06-14 23:03:05]  00 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  01 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  02 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  03 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  04 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  05 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  06 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  07 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  08 00010001 0   1   0   1   0    1 1    37
(XEN) [2021-06-14 23:03:05]  09 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  0a 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  0b 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  0c 00010001 0   1   0   1   0    1 1    3F
(XEN) [2021-06-14 23:03:05]  0d 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  0e 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  0f 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  10 00010400 0   1   0   1   0    1 1    EE
(XEN) [2021-06-14 23:03:05]  11 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  12 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  13 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  14 00010400 0   1   0   1   0    1 1    27
(XEN) [2021-06-14 23:03:05]  15 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  16 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05]  17 00000000 1   0   0   0   0    0 0    00
(XEN) [2021-06-14 23:03:05] Using vector-based indexing
(XEN) [2021-06-14 23:03:05] IRQ to pin mappings:
(XEN) [2021-06-14 23:03:05] IRQ240 -> 0:2
(XEN) [2021-06-14 23:03:05] IRQ163 -> 0:1
(XEN) [2021-06-14 23:03:05] IRQ71 -> 0:3
(XEN) [2021-06-14 23:03:05] IRQ241 -> 0:4
(XEN) [2021-06-14 23:03:05] IRQ80 -> 0:5
(XEN) [2021-06-14 23:03:05] IRQ88 -> 0:6
(XEN) [2021-06-14 23:03:05] IRQ96 -> 0:7
(XEN) [2021-06-14 23:03:05] IRQ140 -> 0:8
(XEN) [2021-06-14 23:03:05] IRQ192 -> 0:9
(XEN) [2021-06-14 23:03:05] IRQ120 -> 0:10
(XEN) [2021-06-14 23:03:05] IRQ136 -> 0:11
(XEN) [2021-06-14 23:03:05] IRQ144 -> 0:12
(XEN) [2021-06-14 23:03:06] IRQ152 -> 0:13
(XEN) [2021-06-14 23:03:06] IRQ160 -> 0:14
(XEN) [2021-06-14 23:03:06] IRQ168 -> 0:15
(XEN) [2021-06-14 23:03:06] IRQ185 -> 0:16
(XEN) [2021-06-14 23:03:06] IRQ196 -> 0:18
(XEN) [2021-06-14 23:03:06] IRQ173 -> 0:19
(XEN) [2021-06-14 23:03:06] IRQ187 -> 0:22
(XEN) [2021-06-14 23:03:06] IRQ216 -> 1:2
(XEN) [2021-06-14 23:03:06] IRQ47 -> 1:3
(XEN) [2021-06-14 23:03:06] IRQ232 -> 1:8
(XEN) [2021-06-14 23:03:06] IRQ230 -> 1:10
(XEN) [2021-06-14 23:03:06] IRQ153 -> 1:16
(XEN) [2021-06-14 23:03:06] IRQ55 -> 2:8
(XEN) [2021-06-14 23:03:06] IRQ63 -> 2:12
(XEN) [2021-06-14 23:03:06] IRQ238 -> 2:16
(XEN) [2021-06-14 23:03:06] IRQ39 -> 2:20
(XEN) [2021-06-14 23:03:06] .................................... done.
(XEN) [2021-06-14 23:03:11] printk: 26 messages suppressed.
(XEN) [2021-06-14 23:03:11] grant_table.c:803:d0v2 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:16] grant_table.c:803:d0v0 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:16] grant_table.c:803:d0v0 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:16] grant_table.c:803:d0v0 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:16] grant_table.c:803:d0v0 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:16] grant_table.c:803:d0v0 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:16] grant_table.c:803:d0v0 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:16] grant_table.c:803:d0v0 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:16] grant_table.c:803:d0v0 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:16] grant_table.c:803:d0v0 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:17] printk: 54 messages suppressed.
(XEN) [2021-06-14 23:03:17] grant_table.c:803:d0v1 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:26] printk: 2 messages suppressed.
(XEN) [2021-06-14 23:03:26] grant_table.c:803:d0v6 Bad flags (0) or dom 
(0); expected d0
(XEN) [2021-06-14 23:03:37] grant_table.c:803:d0v4 Bad flags (0) or dom 
(0); expected d0
2021-06-15 01:07:01 ---MARK---


--- dom0 log ends ---

--

Regards, Håkon




^ permalink raw reply related	[relevance 2%]

* Re: [PATCH -next 2/3] xen: balloon: Replaced simple_strtoull() with kstrtoull()
  2021-05-27 14:10  5%   ` David Laight
@ 2021-05-27 14:37  5%     ` Dan Carpenter
  0 siblings, 0 replies; 200+ results
From: Dan Carpenter @ 2021-05-27 14:37 UTC (permalink / raw)
  To: David Laight
  Cc: 'Chen Huang',
	Michael Ellerman, Benjamin Herrenschmidt, Paul Mackerras,
	Boris Ostrovsky, Juergen Gross, Stefano Stabellini, Mark Fasheh,
	Joel Becker, Joseph Qi, Nathan Lynch, Andrew Donnellan,
	Alexey Kardashevskiy, Andrew Morton, Stephen Rothwell,
	Jens Axboe, Yang Yingliang, Masahiro Yamada, linuxppc-dev,
	linux-kernel, xen-devel, ocfs2-devel

On Thu, May 27, 2021 at 02:10:21PM +0000, David Laight wrote:
> From: Chen Huang
> > Sent: 26 May 2021 10:20
> > 
> > The simple_strtoull() function is deprecated in some situation, since
> > it does not check for the range overflow, use kstrtoull() instead.
> > 
> ...
> > -	target_bytes = simple_strtoull(buf, &endchar, 0) * 1024;
> > +	ret = kstrtoull(buf, 0, &target_bytes);
> > +	if (ret)
> > +		return ret;
> > +	target_bytes *= 1024;
> 
> I'd have thought it was more important to check *endchar
> than overflow.

That's one of the differences between simple_strtoull() and kstrtoull().
The simple_strtoull() will accept a string like "123ABC", but kstrtoull()
will only accept NUL terminated numbers or a newline followed by a NUL
terminator.  Which is fine in this context because users will be doing
"echo 1234 > /sys/foo".

> If you are worried about overflow you need a range check
> before the multiply.

This is probably a case where if the users cause an integer overflow
then they get what they deserve.

regards,
dan carpenter


^ permalink raw reply	[relevance 5%]

* RE: [PATCH -next 2/3] xen: balloon: Replaced simple_strtoull() with kstrtoull()
  2021-05-26  9:20 18% ` [PATCH -next 2/3] xen: balloon: " Chen Huang
@ 2021-05-27 14:10  5%   ` David Laight
  2021-05-27 14:37  5%     ` Dan Carpenter
  0 siblings, 1 reply; 200+ results
From: David Laight @ 2021-05-27 14:10 UTC (permalink / raw)
  To: 'Chen Huang',
	Michael Ellerman, Benjamin Herrenschmidt, Paul Mackerras,
	Boris Ostrovsky, Juergen Gross, Stefano Stabellini, Mark Fasheh,
	Joel Becker, Joseph Qi, Nathan Lynch, Andrew Donnellan,
	Alexey Kardashevskiy, Andrew Morton, Stephen Rothwell,
	Jens Axboe, Yang Yingliang, Masahiro Yamada, Dan Carpenter
  Cc: linuxppc-dev, linux-kernel, xen-devel, ocfs2-devel

From: Chen Huang
> Sent: 26 May 2021 10:20
> 
> The simple_strtoull() function is deprecated in some situation, since
> it does not check for the range overflow, use kstrtoull() instead.
> 
...
> -	target_bytes = simple_strtoull(buf, &endchar, 0) * 1024;
> +	ret = kstrtoull(buf, 0, &target_bytes);
> +	if (ret)
> +		return ret;
> +	target_bytes *= 1024;

I'd have thought it was more important to check *endchar
than overflow.
If you are worried about overflow you need a range check
before the multiply.

	David

-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)



^ permalink raw reply	[relevance 5%]

* [PATCH -next] xen: Use DEVICE_ATTR_*() macro
@ 2021-05-26 14:10 12% YueHaibing
  0 siblings, 0 replies; 200+ results
From: YueHaibing @ 2021-05-26 14:10 UTC (permalink / raw)
  To: boris.ostrovsky, jgross, sstabellini, yuehaibing; +Cc: xen-devel, linux-kernel

Use DEVICE_ATTR_*() helper instead of plain DEVICE_ATTR(),
which makes the code a bit shorter and easier to read.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/xen/pcpu.c                |  6 +++---
 drivers/xen/xen-balloon.c         | 28 +++++++++++-----------------
 drivers/xen/xenbus/xenbus_probe.c | 15 +++++++--------
 3 files changed, 21 insertions(+), 28 deletions(-)

diff --git a/drivers/xen/pcpu.c b/drivers/xen/pcpu.c
index 1bcdd5227771..47aa3a1ccaf5 100644
--- a/drivers/xen/pcpu.c
+++ b/drivers/xen/pcpu.c
@@ -92,7 +92,7 @@ static int xen_pcpu_up(uint32_t cpu_id)
 	return HYPERVISOR_platform_op(&op);
 }
 
-static ssize_t show_online(struct device *dev,
+static ssize_t online_show(struct device *dev,
 			   struct device_attribute *attr,
 			   char *buf)
 {
@@ -101,7 +101,7 @@ static ssize_t show_online(struct device *dev,
 	return sprintf(buf, "%u\n", !!(cpu->flags & XEN_PCPU_FLAGS_ONLINE));
 }
 
-static ssize_t __ref store_online(struct device *dev,
+static ssize_t __ref online_store(struct device *dev,
 				  struct device_attribute *attr,
 				  const char *buf, size_t count)
 {
@@ -130,7 +130,7 @@ static ssize_t __ref store_online(struct device *dev,
 		ret = count;
 	return ret;
 }
-static DEVICE_ATTR(online, S_IRUGO | S_IWUSR, show_online, store_online);
+static DEVICE_ATTR_RW(online);
 
 static struct attribute *pcpu_dev_attrs[] = {
 	&dev_attr_online.attr,
diff --git a/drivers/xen/xen-balloon.c b/drivers/xen/xen-balloon.c
index a8d24433c8e9..8cd583db20b1 100644
--- a/drivers/xen/xen-balloon.c
+++ b/drivers/xen/xen-balloon.c
@@ -134,13 +134,13 @@ void xen_balloon_init(void)
 EXPORT_SYMBOL_GPL(xen_balloon_init);
 
 #define BALLOON_SHOW(name, format, args...)				\
-	static ssize_t show_##name(struct device *dev,			\
+	static ssize_t name##_show(struct device *dev,			\
 				   struct device_attribute *attr,	\
 				   char *buf)				\
 	{								\
 		return sprintf(buf, format, ##args);			\
 	}								\
-	static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
+	static DEVICE_ATTR_RO(name)
 
 BALLOON_SHOW(current_kb, "%lu\n", PAGES2KB(balloon_stats.current_pages));
 BALLOON_SHOW(low_kb, "%lu\n", PAGES2KB(balloon_stats.balloon_low));
@@ -152,16 +152,15 @@ static DEVICE_ULONG_ATTR(retry_count, 0444, balloon_stats.retry_count);
 static DEVICE_ULONG_ATTR(max_retry_count, 0644, balloon_stats.max_retry_count);
 static DEVICE_BOOL_ATTR(scrub_pages, 0644, xen_scrub_pages);
 
-static ssize_t show_target_kb(struct device *dev, struct device_attribute *attr,
+static ssize_t target_kb_show(struct device *dev, struct device_attribute *attr,
 			      char *buf)
 {
 	return sprintf(buf, "%lu\n", PAGES2KB(balloon_stats.target_pages));
 }
 
-static ssize_t store_target_kb(struct device *dev,
+static ssize_t target_kb_store(struct device *dev,
 			       struct device_attribute *attr,
-			       const char *buf,
-			       size_t count)
+			       const char *buf, size_t count)
 {
 	char *endchar;
 	unsigned long long target_bytes;
@@ -176,22 +175,19 @@ static ssize_t store_target_kb(struct device *dev,
 	return count;
 }
 
-static DEVICE_ATTR(target_kb, S_IRUGO | S_IWUSR,
-		   show_target_kb, store_target_kb);
+static DEVICE_ATTR_RW(target_kb);
 
-
-static ssize_t show_target(struct device *dev, struct device_attribute *attr,
-			      char *buf)
+static ssize_t target_show(struct device *dev, struct device_attribute *attr,
+			   char *buf)
 {
 	return sprintf(buf, "%llu\n",
 		       (unsigned long long)balloon_stats.target_pages
 		       << PAGE_SHIFT);
 }
 
-static ssize_t store_target(struct device *dev,
+static ssize_t target_store(struct device *dev,
 			    struct device_attribute *attr,
-			    const char *buf,
-			    size_t count)
+			    const char *buf, size_t count)
 {
 	char *endchar;
 	unsigned long long target_bytes;
@@ -206,9 +202,7 @@ static ssize_t store_target(struct device *dev,
 	return count;
 }
 
-static DEVICE_ATTR(target, S_IRUGO | S_IWUSR,
-		   show_target, store_target);
-
+static DEVICE_ATTR_RW(target);
 
 static struct attribute *balloon_attrs[] = {
 	&dev_attr_target_kb.attr,
diff --git a/drivers/xen/xenbus/xenbus_probe.c b/drivers/xen/xenbus/xenbus_probe.c
index 97f0d234482d..33d09b3f6211 100644
--- a/drivers/xen/xenbus/xenbus_probe.c
+++ b/drivers/xen/xenbus/xenbus_probe.c
@@ -207,7 +207,7 @@ void xenbus_otherend_changed(struct xenbus_watch *watch,
 EXPORT_SYMBOL_GPL(xenbus_otherend_changed);
 
 #define XENBUS_SHOW_STAT(name)						\
-static ssize_t show_##name(struct device *_dev,				\
+static ssize_t name##_show(struct device *_dev,				\
 			   struct device_attribute *attr,		\
 			   char *buf)					\
 {									\
@@ -215,14 +215,14 @@ static ssize_t show_##name(struct device *_dev,				\
 									\
 	return sprintf(buf, "%d\n", atomic_read(&dev->name));		\
 }									\
-static DEVICE_ATTR(name, 0444, show_##name, NULL)
+static DEVICE_ATTR_RO(name)
 
 XENBUS_SHOW_STAT(event_channels);
 XENBUS_SHOW_STAT(events);
 XENBUS_SHOW_STAT(spurious_events);
 XENBUS_SHOW_STAT(jiffies_eoi_delayed);
 
-static ssize_t show_spurious_threshold(struct device *_dev,
+static ssize_t spurious_threshold_show(struct device *_dev,
 				       struct device_attribute *attr,
 				       char *buf)
 {
@@ -231,9 +231,9 @@ static ssize_t show_spurious_threshold(struct device *_dev,
 	return sprintf(buf, "%d\n", dev->spurious_threshold);
 }
 
-static ssize_t set_spurious_threshold(struct device *_dev,
-				      struct device_attribute *attr,
-				      const char *buf, size_t count)
+static ssize_t spurious_threshold_store(struct device *_dev,
+					struct device_attribute *attr,
+					const char *buf, size_t count)
 {
 	struct xenbus_device *dev = to_xenbus_device(_dev);
 	unsigned int val;
@@ -248,8 +248,7 @@ static ssize_t set_spurious_threshold(struct device *_dev,
 	return count;
 }
 
-static DEVICE_ATTR(spurious_threshold, 0644, show_spurious_threshold,
-		   set_spurious_threshold);
+static DEVICE_ATTR_RW(spurious_threshold);
 
 static struct attribute *xenbus_attrs[] = {
 	&dev_attr_event_channels.attr,
-- 
2.17.1



^ permalink raw reply related	[relevance 12%]

* [PATCH -next 2/3] xen: balloon: Replaced simple_strtoull() with kstrtoull()
  @ 2021-05-26  9:20 18% ` Chen Huang
  2021-05-27 14:10  5%   ` David Laight
  0 siblings, 1 reply; 200+ results
From: Chen Huang @ 2021-05-26  9:20 UTC (permalink / raw)
  To: Michael Ellerman, Benjamin Herrenschmidt, Paul Mackerras,
	Boris Ostrovsky, Juergen Gross, Stefano Stabellini, Mark Fasheh,
	Joel Becker, Joseph Qi, Nathan Lynch, Andrew Donnellan,
	Alexey Kardashevskiy, Andrew Morton, Stephen Rothwell,
	Jens Axboe, Yang Yingliang, Masahiro Yamada, Dan Carpenter
  Cc: linuxppc-dev, linux-kernel, xen-devel, ocfs2-devel, Chen Huang

The simple_strtoull() function is deprecated in some situation, since
it does not check for the range overflow, use kstrtoull() instead.

Signed-off-by: Chen Huang <chenhuang5@huawei.com>
---
 drivers/xen/xen-balloon.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/xen/xen-balloon.c b/drivers/xen/xen-balloon.c
index a8d24433c8e9..1fba838963d2 100644
--- a/drivers/xen/xen-balloon.c
+++ b/drivers/xen/xen-balloon.c
@@ -163,13 +163,16 @@ static ssize_t store_target_kb(struct device *dev,
 			       const char *buf,
 			       size_t count)
 {
-	char *endchar;
+	ssize_t ret;
 	unsigned long long target_bytes;
 
 	if (!capable(CAP_SYS_ADMIN))
 		return -EPERM;
 
-	target_bytes = simple_strtoull(buf, &endchar, 0) * 1024;
+	ret = kstrtoull(buf, 0, &target_bytes);
+	if (ret)
+		return ret;
+	target_bytes *= 1024;
 
 	balloon_set_new_target(target_bytes >> PAGE_SHIFT);
 
-- 
2.25.1



^ permalink raw reply related	[relevance 18%]

* Re: [PATCH -next] xen/pcpu: Use DEVICE_ATTR_RW macro
  2021-05-24 12:48  5% ` Boris Ostrovsky
@ 2021-05-25  6:17  0%   ` YueHaibing
  0 siblings, 0 replies; 200+ results
From: YueHaibing @ 2021-05-25  6:17 UTC (permalink / raw)
  To: Boris Ostrovsky, jgross, sstabellini; +Cc: xen-devel, linux-kernel



On 2021/5/24 20:48, Boris Ostrovsky wrote:
> 
> On 5/23/21 3:02 AM, YueHaibing wrote:
>> Use DEVICE_ATTR_RW helper instead of plain DEVICE_ATTR,
>> which makes the code a bit shorter and easier to read.
>>
>> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
> 
> 
> Do you think you can also make similar change in drivers/xen/xen-balloon.c and drivers/xen/xenbus/xenbus_probe.c?
> 
Sure, will do that in v2.
> 
> 
> Thanks.
> 
> -boris
> 
> .
> 


^ permalink raw reply	[relevance 0%]

* Re: [PATCH -next] xen/pcpu: Use DEVICE_ATTR_RW macro
  @ 2021-05-24 12:48  5% ` Boris Ostrovsky
  2021-05-25  6:17  0%   ` YueHaibing
  0 siblings, 1 reply; 200+ results
From: Boris Ostrovsky @ 2021-05-24 12:48 UTC (permalink / raw)
  To: YueHaibing, jgross, sstabellini; +Cc: xen-devel, linux-kernel


On 5/23/21 3:02 AM, YueHaibing wrote:
> Use DEVICE_ATTR_RW helper instead of plain DEVICE_ATTR,
> which makes the code a bit shorter and easier to read.
>
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>


Do you think you can also make similar change in drivers/xen/xen-balloon.c and drivers/xen/xenbus/xenbus_probe.c?



Thanks.

-boris



^ permalink raw reply	[relevance 5%]

* [PATCH v2 1/2] xen/x86: make XEN_BALLOON_MEMORY_HOTPLUG_LIMIT depend on MEMORY_HOTPLUG
  @ 2021-03-24 12:24  6% ` Roger Pau Monne
  0 siblings, 0 replies; 200+ results
From: Roger Pau Monne @ 2021-03-24 12:24 UTC (permalink / raw)
  To: linux-kernel
  Cc: Roger Pau Monne, Boris Ostrovsky, Juergen Gross,
	Stefano Stabellini, Jan Beulich, xen-devel

The Xen memory hotplug limit should depend on the memory hotplug
generic option, rather than the Xen balloon configuration. It's
possible to have a kernel with generic memory hotplug enabled, but
without Xen balloon enabled, at which point memory hotplug won't work
correctly due to the size limitation of the p2m.

Rename the option to XEN_MEMORY_HOTPLUG_LIMIT since it's no longer
tied to ballooning.

Fixes: 9e2369c06c8a18 ("xen: add helpers to allocate unpopulated memory")
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
---
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Jan Beulich <jbeulich@suse.com>
Cc: xen-devel@lists.xenproject.org
---
 arch/x86/xen/p2m.c  | 4 ++--
 drivers/xen/Kconfig | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/x86/xen/p2m.c b/arch/x86/xen/p2m.c
index 17d80f751fcb..a33902d05e45 100644
--- a/arch/x86/xen/p2m.c
+++ b/arch/x86/xen/p2m.c
@@ -98,8 +98,8 @@ EXPORT_SYMBOL_GPL(xen_p2m_size);
 unsigned long xen_max_p2m_pfn __read_mostly;
 EXPORT_SYMBOL_GPL(xen_max_p2m_pfn);
 
-#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT
-#define P2M_LIMIT CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT
+#ifdef CONFIG_XEN_MEMORY_HOTPLUG_LIMIT
+#define P2M_LIMIT CONFIG_XEN_MEMORY_HOTPLUG_LIMIT
 #else
 #define P2M_LIMIT 0
 #endif
diff --git a/drivers/xen/Kconfig b/drivers/xen/Kconfig
index 41645fe6ad48..ea0efd290c37 100644
--- a/drivers/xen/Kconfig
+++ b/drivers/xen/Kconfig
@@ -50,11 +50,11 @@ config XEN_BALLOON_MEMORY_HOTPLUG
 
 	  SUBSYSTEM=="memory", ACTION=="add", RUN+="/bin/sh -c '[ -f /sys$devpath/state ] && echo online > /sys$devpath/state'"
 
-config XEN_BALLOON_MEMORY_HOTPLUG_LIMIT
+config XEN_MEMORY_HOTPLUG_LIMIT
 	int "Hotplugged memory limit (in GiB) for a PV guest"
 	default 512
 	depends on XEN_HAVE_PVMMU
-	depends on XEN_BALLOON_MEMORY_HOTPLUG
+	depends on MEMORY_HOTPLUG
 	help
 	  Maxmium amount of memory (in GiB) that a PV guest can be
 	  expanded to when using memory hotplug.
-- 
2.30.1



^ permalink raw reply related	[relevance 6%]

* [PATCH 1/2] xen/x86: make XEN_BALLOON_MEMORY_HOTPLUG_LIMIT depend on MEMORY_HOTPLUG
  @ 2021-03-17 11:04  6% ` Roger Pau Monne
  0 siblings, 0 replies; 200+ results
From: Roger Pau Monne @ 2021-03-17 11:04 UTC (permalink / raw)
  To: linux-kernel
  Cc: Roger Pau Monne, Boris Ostrovsky, Juergen Gross,
	Stefano Stabellini, Jan Beulich, xen-devel

The Xen memory hotplug limit should depend on the memory hotplug
generic option, rather than the Xen balloon configuration. It's
possible to have a kernel with generic memory hotplug enabled, but
without Xen balloon enabled, at which point memory hotplug won't work
correctly due to the size limitation of the p2m.

Rename the option to XEN_MEMORY_HOTPLUG_LIMIT since it's no longer
tied to ballooning.

Fixes: 9e2369c06c8a18 ("xen: add helpers to allocate unpopulated memory")
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
---
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Jan Beulich <jbeulich@suse.com>
Cc: xen-devel@lists.xenproject.org
---
 arch/x86/xen/p2m.c  | 4 ++--
 drivers/xen/Kconfig | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/x86/xen/p2m.c b/arch/x86/xen/p2m.c
index 17d80f751fcb..a33902d05e45 100644
--- a/arch/x86/xen/p2m.c
+++ b/arch/x86/xen/p2m.c
@@ -98,8 +98,8 @@ EXPORT_SYMBOL_GPL(xen_p2m_size);
 unsigned long xen_max_p2m_pfn __read_mostly;
 EXPORT_SYMBOL_GPL(xen_max_p2m_pfn);
 
-#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT
-#define P2M_LIMIT CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT
+#ifdef CONFIG_XEN_MEMORY_HOTPLUG_LIMIT
+#define P2M_LIMIT CONFIG_XEN_MEMORY_HOTPLUG_LIMIT
 #else
 #define P2M_LIMIT 0
 #endif
diff --git a/drivers/xen/Kconfig b/drivers/xen/Kconfig
index 41645fe6ad48..ea0efd290c37 100644
--- a/drivers/xen/Kconfig
+++ b/drivers/xen/Kconfig
@@ -50,11 +50,11 @@ config XEN_BALLOON_MEMORY_HOTPLUG
 
 	  SUBSYSTEM=="memory", ACTION=="add", RUN+="/bin/sh -c '[ -f /sys$devpath/state ] && echo online > /sys$devpath/state'"
 
-config XEN_BALLOON_MEMORY_HOTPLUG_LIMIT
+config XEN_MEMORY_HOTPLUG_LIMIT
 	int "Hotplugged memory limit (in GiB) for a PV guest"
 	default 512
 	depends on XEN_HAVE_PVMMU
-	depends on XEN_BALLOON_MEMORY_HOTPLUG
+	depends on MEMORY_HOTPLUG
 	help
 	  Maxmium amount of memory (in GiB) that a PV guest can be
 	  expanded to when using memory hotplug.
-- 
2.30.1



^ permalink raw reply related	[relevance 6%]

* Re: [PATCH v1] mm/memory_hotplug: MEMHP_MERGE_RESOURCE -> MHP_MERGE_RESOURCE
  2021-01-26 11:58 10% [PATCH v1] mm/memory_hotplug: MEMHP_MERGE_RESOURCE -> MHP_MERGE_RESOURCE David Hildenbrand
  2021-01-26 12:27  0% ` Miaohe Lin
  2021-01-26 14:41  0% ` Michael S. Tsirkin
@ 2021-02-03  5:36  0% ` Pankaj Gupta
  2 siblings, 0 replies; 200+ results
From: Pankaj Gupta @ 2021-02-03  5:36 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: LKML, Linux MM, Andrew Morton, K. Y. Srinivasan, Haiyang Zhang,
	Stephen Hemminger, Wei Liu, Michael S. Tsirkin, Jason Wang,
	Boris Ostrovsky, Juergen Gross, Stefano Stabellini, Michal Hocko,
	Oscar Salvador, Anshuman Khandual, Wei Yang, linux-hyperv,
	virtualization, xen-devel

> Let's make "MEMHP_MERGE_RESOURCE" consistent with "MHP_NONE", "mhp_t" and
> "mhp_flags". As discussed recently [1], "mhp" is our internal
> acronym for memory hotplug now.
>
> [1] https://lore.kernel.org/linux-mm/c37de2d0-28a1-4f7d-f944-cfd7d81c334d@redhat.com/
>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: "K. Y. Srinivasan" <kys@microsoft.com>
> Cc: Haiyang Zhang <haiyangz@microsoft.com>
> Cc: Stephen Hemminger <sthemmin@microsoft.com>
> Cc: Wei Liu <wei.liu@kernel.org>
> Cc: "Michael S. Tsirkin" <mst@redhat.com>
> Cc: Jason Wang <jasowang@redhat.com>
> Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
> Cc: Juergen Gross <jgross@suse.com>
> Cc: Stefano Stabellini <sstabellini@kernel.org>
> Cc: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
> Cc: Michal Hocko <mhocko@kernel.org>
> Cc: Oscar Salvador <osalvador@suse.de>
> Cc: Anshuman Khandual <anshuman.khandual@arm.com>
> Cc: Wei Yang <richard.weiyang@linux.alibaba.com>
> Cc: linux-hyperv@vger.kernel.org
> Cc: virtualization@lists.linux-foundation.org
> Cc: xen-devel@lists.xenproject.org
> Signed-off-by: David Hildenbrand <david@redhat.com>
> ---
>  drivers/hv/hv_balloon.c        | 2 +-
>  drivers/virtio/virtio_mem.c    | 2 +-
>  drivers/xen/balloon.c          | 2 +-
>  include/linux/memory_hotplug.h | 2 +-
>  mm/memory_hotplug.c            | 2 +-
>  5 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/hv/hv_balloon.c b/drivers/hv/hv_balloon.c
> index 8c471823a5af..2f776d78e3c1 100644
> --- a/drivers/hv/hv_balloon.c
> +++ b/drivers/hv/hv_balloon.c
> @@ -726,7 +726,7 @@ static void hv_mem_hot_add(unsigned long start, unsigned long size,
>
>                 nid = memory_add_physaddr_to_nid(PFN_PHYS(start_pfn));
>                 ret = add_memory(nid, PFN_PHYS((start_pfn)),
> -                               (HA_CHUNK << PAGE_SHIFT), MEMHP_MERGE_RESOURCE);
> +                               (HA_CHUNK << PAGE_SHIFT), MHP_MERGE_RESOURCE);
>
>                 if (ret) {
>                         pr_err("hot_add memory failed error is %d\n", ret);
> diff --git a/drivers/virtio/virtio_mem.c b/drivers/virtio/virtio_mem.c
> index 85a272c9978e..148bea39b09a 100644
> --- a/drivers/virtio/virtio_mem.c
> +++ b/drivers/virtio/virtio_mem.c
> @@ -623,7 +623,7 @@ static int virtio_mem_add_memory(struct virtio_mem *vm, uint64_t addr,
>         /* Memory might get onlined immediately. */
>         atomic64_add(size, &vm->offline_size);
>         rc = add_memory_driver_managed(vm->nid, addr, size, vm->resource_name,
> -                                      MEMHP_MERGE_RESOURCE);
> +                                      MHP_MERGE_RESOURCE);
>         if (rc) {
>                 atomic64_sub(size, &vm->offline_size);
>                 dev_warn(&vm->vdev->dev, "adding memory failed: %d\n", rc);
> diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
> index b57b2067ecbf..671c71245a7b 100644
> --- a/drivers/xen/balloon.c
> +++ b/drivers/xen/balloon.c
> @@ -331,7 +331,7 @@ static enum bp_state reserve_additional_memory(void)
>         mutex_unlock(&balloon_mutex);
>         /* add_memory_resource() requires the device_hotplug lock */
>         lock_device_hotplug();
> -       rc = add_memory_resource(nid, resource, MEMHP_MERGE_RESOURCE);
> +       rc = add_memory_resource(nid, resource, MHP_MERGE_RESOURCE);
>         unlock_device_hotplug();
>         mutex_lock(&balloon_mutex);
>
> diff --git a/include/linux/memory_hotplug.h b/include/linux/memory_hotplug.h
> index 3d99de0db2dd..4b834f5d032e 100644
> --- a/include/linux/memory_hotplug.h
> +++ b/include/linux/memory_hotplug.h
> @@ -53,7 +53,7 @@ typedef int __bitwise mhp_t;
>   * with this flag set, the resource pointer must no longer be used as it
>   * might be stale, or the resource might have changed.
>   */
> -#define MEMHP_MERGE_RESOURCE   ((__force mhp_t)BIT(0))
> +#define MHP_MERGE_RESOURCE     ((__force mhp_t)BIT(0))
>
>  /*
>   * Extended parameters for memory hotplug:
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index 710e469fb3a1..ae497e3ff77c 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -1153,7 +1153,7 @@ int __ref add_memory_resource(int nid, struct resource *res, mhp_t mhp_flags)
>          * In case we're allowed to merge the resource, flag it and trigger
>          * merging now that adding succeeded.
>          */
> -       if (mhp_flags & MEMHP_MERGE_RESOURCE)
> +       if (mhp_flags & MHP_MERGE_RESOURCE)
>                 merge_system_ram_resource(res);
>
>         /* online pages if requested */

 Reviewed-by: Pankaj Gupta <pankaj.gupta@cloud.ionos.com>


^ permalink raw reply	[relevance 0%]

* Re: Problems with APIC on versions 4.9 and later (4.8 works)
  @ 2021-02-01 15:26  3%                                   ` Claudemir Todo Bom
  0 siblings, 0 replies; 200+ results
From: Claudemir Todo Bom @ 2021-02-01 15:26 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel

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

Em seg., 1 de fev. de 2021 às 12:09, Jan Beulich <jbeulich@suse.com> escreveu:
>
> On 01.02.2021 15:46, Claudemir Todo Bom wrote:
> > Tested first without the debug patch and with following parameters:
>
> And this test was all three of the non-debugging patches?

Yes, all three patches.

> > xen: dom0_mem=1024M,max:2048M dom0_max_vcpus=4 dom0_vcpus_pin=true smt=true
> > kernel: loglevel=3
> >
> > same behaviour as before... black screen right after the xen messages.
> >
> > adding earlyprintk=xen to the kernel command line is sufficient to
> > make it boot, I can imagine this can be happening because Xen is not
> > releasing console to the kernel at that moment.
>
> If the answer to the above question is "yes", then I start
> suspecting this to be a different problem. I'm not sure I
> see a way to debug this without having access to any output
> (i.e. neither video nor serial). Without "earlyprintk=xen"
> and instead with "vga=keep watchdog" on the Xen command
> line, is there anything helpful (without or if need be with
> the debugging patch in place)?

with "vga=text-80x25,keep watchdog" and without the earlyprintk,
system booted. I'm attaching the "xl dmesg" and "dmesg" outputs here.

>
> > The system worked well (with earlyprintk=xen), tested with the "yes
> > stress test" mentioned before on a guest and on dom0.
> >
> > Then, I installed the debug patch and booted it again, it also needed
> > the earlyprintk=xen parameter on the kernel command line. I've also
> > added console_timestamps=boot to the xen command line in order to get
> > the time of the messages.
> >
> > I'm attaching the outputs of "xl dmesg" and "dmesg" on this message.
> >
> > Think it is almost done! WIll wait for the next round of tests!
>
> As per above, not sure if there's going to be one. Thanks
> for your patient testing!

I can live with the "earlyprintk=xen" or any other solution that makes
it boot. I'm pretty sure this problem will appear in tests of other
people with a setup that helps debug deeper.

Thank you for your work!

Best regards,
Claudemir

[-- Attachment #2: xen-dmesg.txt --]
[-- Type: text/plain, Size: 32603 bytes --]

(XEN) parameter "placeholder" unknown!
(XEN) Xen version 4.11.4 (Debian 4.11.4+57-g41a822c392-2) (pkg-xen-devel@lists.alioth.debian.org) (gcc (Debian 8.3.0-6) 8.3.0) debug=n  Mon Feb  1 11:31:44 -03 2021
(XEN) Bootloader: GRUB 2.04-12
(XEN) Command line: placeholder dom0_mem=1024M,max:2048M dom0_max_vcpus=4 dom0_vcpus_pin=true smt=true vga=text-80x25,keep watchdog
(XEN) Xen image load base address: 0xba200000
(XEN) Video information:
(XEN)  VGA is text mode 80x25, font 8x16
(XEN)  VBE/DDC methods: none; EDID transfer time: 0 seconds
(XEN)  EDID info not retrieved because no DDC retrieval method detected
(XEN) Disc information:
(XEN)  Found 1 MBR signatures
(XEN)  Found 2 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN)  0000000000000000 - 000000000009e800 (usable)
(XEN)  000000000009e800 - 00000000000a0000 (reserved)
(XEN)  00000000000e0000 - 0000000000100000 (reserved)
(XEN)  0000000000100000 - 00000000ba952000 (usable)
(XEN)  00000000ba952000 - 00000000ba98b000 (reserved)
(XEN)  00000000ba98b000 - 00000000babc3000 (usable)
(XEN)  00000000babc3000 - 00000000bb1c0000 (ACPI NVS)
(XEN)  00000000bb1c0000 - 00000000bb843000 (reserved)
(XEN)  00000000bb843000 - 00000000bb844000 (usable)
(XEN)  00000000bb844000 - 00000000bb8ca000 (ACPI NVS)
(XEN)  00000000bb8ca000 - 00000000bbd0f000 (usable)
(XEN)  00000000bbd0f000 - 00000000bbff4000 (reserved)
(XEN)  00000000bbff4000 - 00000000bc000000 (usable)
(XEN)  00000000d0000000 - 00000000e0000000 (reserved)
(XEN)  00000000fed1c000 - 00000000fed20000 (reserved)
(XEN)  00000000ff000000 - 0000000100000000 (reserved)
(XEN)  0000000100000000 - 0000000440000000 (usable)
(XEN) ACPI: RSDP 000F04A0, 0024 (r2 ALASKA)
(XEN) ACPI: XSDT BB0DD070, 005C (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) ACPI: FACP BB0E5728, 010C (r5 ALASKA    A M I  1072009 AMI     10013)
(XEN) ACPI: DSDT BB0DD160, 85C7 (r2 ALASKA    A M I       20 INTL 20051117)
(XEN) ACPI: FACS BB1B7F80, 0040
(XEN) ACPI: APIC BB0E5838, 01A8 (r3 ALASKA    A M I  1072009 AMI     10013)
(XEN) ACPI: FPDT BB0E59E0, 0044 (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) ACPI: MCFG BB0E5A28, 003C (r1 ALASKA OEMMCFG.  1072009 MSFT       97)
(XEN) ACPI: HPET BB0E5A68, 0038 (r1 ALASKA    A M I  1072009 AMI.        5)
(XEN) ACPI: SSDT BB0E5AA0, CD380 (r2  INTEL    CpuPm     4000 INTL 20051117)
(XEN) ACPI: DMAR BB1B2E20, 00EC (r1 A M I   OEMDMAR        1 INTL        1)
(XEN) System RAM: 16303MB (16694760kB)
(XEN) Domain heap initialised
(XEN) ACPI: 32/64X FACS address mismatch in FADT - bb1b7f80/0000000000000000, using 32
(XEN) IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
(XEN) IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
(XEN) Enabling APIC mode:  Phys.  Using 2 I/O APICs
(XEN) Switched to APIC driver x2apic_cluster
(XEN) xstate: size: 0x340 and states: 0x7
(XEN) Speculative mitigation facilities:
(XEN)   Hardware features:
(XEN)   Compiled-in support: INDIRECT_THUNK SHADOW_PAGING
(XEN)   Xen settings: BTI-Thunk RETPOLINE, SPEC_CTRL: No, Other:
(XEN)   L1TF: believed vulnerable, maxphysaddr L1D 46, CPUID 46, Safe address 300000000000
(XEN)   Support for VMs: PV: RSB EAGER_FPU, HVM: RSB EAGER_FPU
(XEN)   XPTI (64-bit PV only): Dom0 enabled, DomU enabled
(XEN)   PV L1TF shadowing: Dom0 disabled, DomU enabled
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Platform timer is 14.318MHz HPET
(XEN) Detected 2494.341 MHz processor.
(XEN) Initing memory sharing.
(XEN) Intel VT-d iommu 0 supported page sizes: 4kB, 2MB, 1GB.
(XEN) Intel VT-d Snoop Control enabled.
(XEN) Intel VT-d Dom0 DMA Passthrough not enabled.
(XEN) Intel VT-d Queued Invalidation enabled.
(XEN) Intel VT-d Interrupt Remapping enabled.
(XEN) Intel VT-d Posted Interrupt not enabled.
(XEN) Intel VT-d Shared EPT tables enabled.
(XEN) I/O virtualisation enabled
(XEN)  - Dom0 mode: Relaxed
(XEN) Interrupt remapping enabled
(XEN) Enabled directed EOI with ioapic_ack_old on!
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using old ACK method
(XEN) TSC: c=1 r=1
(XEN) INIT[ 0] t=00000019edcb876b s=00002e6c00f6 m=00002e6c0291
(XEN) Allocated console ring of 64 KiB.
(XEN) VMX: Supported advanced features:
(XEN)  - APIC MMIO access virtualisation
(XEN)  - APIC TPR shadow
(XEN)  - Extended Page Tables (EPT)
(XEN)  - Virtual-Processor Identifiers (VPID)
(XEN)  - Virtual NMI
(XEN)  - MSR direct-access bitmap
(XEN)  - Unrestricted Guest
(XEN)  - APIC Register Virtualization
(XEN)  - Virtual Interrupt Delivery
(XEN)  - Posted Interrupt Processing
(XEN) HVM: ASIDs enabled.
(XEN) VMX: Disabling executable EPT superpages due to CVE-2018-12207
(XEN) HVM: VMX enabled
(XEN) HVM: Hardware Assisted Paging (HAP) detected
(XEN) HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) INIT[ 1] t=0000001abbb944be s=00002fec7229 m=00002fec741f
(XEN) INIT[ 2] t=0000001abbf5e2d9 s=00003004bf8d m=00003004c173
(XEN) INIT[ 3] t=0000001abc3590e9 s=0000301e4789 m=0000301e4957
(XEN) INIT[ 4] t=0000001abc7041e4 s=00003035cefc m=00003035d0e1
(XEN) INIT[ 5] t=0000001abcab6010 s=0000304d8267 m=0000304d8457
(XEN) INIT[ 6] t=0000001abce62453 s=0000306511b8 m=000030651384
(XEN) INIT[ 7] t=0000001abd2178c3 s=0000307cdacb m=0000307cdcce
(XEN) INIT[ 8] t=0000001abd5ce797 s=00003094ae7f m=00003094b075
(XEN) INIT[ 9] t=0000001abd98ab83 s=000030aca472 m=000030aca67c
(XEN) INIT[10] t=0000001abdd44ccc s=000030c48c5a m=000030c48e54
(XEN) INIT[11] t=0000001abe106a84 s=000030dca67d m=000030dca85f
(XEN) INIT[12] t=0000001abe4c48bf s=000030f4a69a m=000030f4a8c4
(XEN) INIT[13] t=0000001abe8bd4e7 s=0000310e2181 m=0000310e22be
(XEN) INIT[14] t=0000001abec7ce2d s=000031262be3 m=000031262e0d
(XEN) INIT[15] t=0000001abf03acf9 s=0000313e2c79 m=0000313e2eb8
(XEN) INIT[16] t=0000001abf3f43aa s=000031561070 m=000031561278
(XEN) INIT[17] t=0000001abf7b0af2 s=0000316e0788 m=0000316e0997
(XEN) INIT[18] t=0000001abfb6bf27 s=00003185f6e8 m=00003185f912
(XEN) INIT[19] t=0000001abff263cb s=0000319de08b m=0000319de28d
(XEN) INIT[20] t=0000001ac02dff6e s=000031b5c603 m=000031b5c836
(XEN) INIT[21] t=0000001ac069d45a s=000031cdc2a3 m=000031cdc4c9
(XEN) INIT[22] t=0000001ac0a5a654 s=000031e5be5c m=000031e5c08b
(XEN) INIT[23] t=0000001ac0e1af64 s=000031fdcfc8 m=000031fdd221
(XEN) Brought up 24 CPUs
(XEN) Testing NMI watchdog on all CPUs: ok
(XEN) CHK[ 0] ca2eccf8
(XEN) chk[   0] CPU0  0000000000000000 00000019ff4fab4b #-1
(XEN) chk[   1] CPU1  0000000000000000 0000001ac97e7aba #-1
(XEN) chk[   2] CPU12 0000000000000000 0000001ac97e7b61 #-1
(XEN) chk[   3] CPU7  0000000000000000 0000001ac97e7c43 #-1
(XEN) chk[   4] CPU6  0000000000000000 0000001ac97e7c2f #-1
(XEN) chk[   5] CPU14 0000000000000000 0000001ac97e7c18 #-1
(XEN) chk[   6] CPU18 0000000000000000 0000001ac97e7d77 #-1
(XEN) chk[   7] CPU3  0000000000000000 0000001ac97e7c53 #-1
(XEN) chk[   8] CPU2  0000000000000000 0000001ac97e7c5f #-1
(XEN) chk[   9] CPU10 0000000000000000 0000001ac97e7d77 #-1
(XEN) chk[  10] CPU9  0000000000000000 0000001ac97e7d57 #-1
(XEN) chk[  11] CPU22 0000000000000000 0000001ac97e7dc4 #-1
(XEN) chk[  12] CPU23 0000000000000000 0000001ac97e7db8 #-1
(XEN) chk[  13] CPU16 0000000000000000 0000001ac97e7d2d #-1
(XEN) chk[  14] CPU19 0000000000000000 0000001ac97e7d83 #-1
(XEN) chk[  15] CPU11 0000000000000000 0000001ac97e7d6b #-1
(XEN) chk[  16] CPU21 0000000000000000 0000001ac97e7c56 #-1
(XEN) chk[  17] CPU13 0000000000000000 0000001ac97e7b55 #-1
(XEN) chk[  18] CPU15 0000000000000000 0000001ac97e7c10 #-1
(XEN) chk[  19] CPU8  0000000000000000 0000001ac97e7d63 #-1
(XEN) chk[  20] CPU17 0000000000000000 0000001ac97e7d21 #-1
(XEN) chk[  21] CPU5  0000000000000000 0000001ac97e7df0 #-1
(XEN) chk[  22] CPU4  0000000000000000 0000001ac97e7dfc #-1
(XEN) chk[  23] CPU20 0000000000000000 0000001ac97e7c5e #-1
(XEN) chk[  24] CPU0  0000001ac97e902a 00000019ff4fe663 #1
(XEN) chk[  25] CPU0  0000001ac97f2173 00000019ff5054ff #2
(XEN) chk[  26] CPU0  0000001ac9811bcb 00000019ff524f2b #7
(XEN) chk[  27] CPU0  0000001ac983147b 00000019ff5447d7 #12
(XEN) chk[  28] CPU0  0000001ac98441e3 00000019ff557533 #15
(XEN) chk[  29] CPU0  0000001ac993ec57 00000019ff651f9f #55
(XEN) chk[  30] CPU0  0000001aca0d59ab 00000019ffde8cef #366
(XEN) chk[  31] CPU0  0000001aca45d873 0000001a00170bb3 #510
(XEN) chk[  32] CPU0  0000001acc77e3df 0000001a024916e7 #1934
(XEN) TSC warp detected, disabling TSC_RELIABLE
(XEN) TSC: c=1 r=0
(XEN) TSC: time.c#time_calibration_tsc_rendezvous
(XEN) RDZV[ 0] t=0000001a0a057b57
(XEN) RDZV[ 1] t=0000001ad434529e
(XEN) RDZV[ 3] t=0000001ad43560b2
(XEN) RDZV[ 2] t=0000001ad43560aa
(XEN) RDZV[ 4] t=0000001ad435693b
(XEN) RDZV[ 5] t=0000001ad4356943
(XEN) RDZV[ 7] t=0000001ad43572fc
(XEN) RDZV[ 6] t=0000001ad4357304
(XEN) RDZV[ 9] t=0000001ad43580a6
(XEN) RDZV[ 8] t=0000001ad435809e
(XEN) RDZV[11] t=0000001ad4358cac
(XEN) RDZV[10] t=0000001ad4358cb4
(XEN) RDZV[13] t=0000001ad4359605
(XEN) RDZV[12] t=0000001ad435960d
(XEN) RDZV[14] t=0000001ad4359fff
(XEN) RDZV[15] t=0000001ad435a007
(XEN) RDZV[17] t=0000001ad435a853
(XEN) RDZV[16] t=0000001ad435a857
(XEN) RDZV[18] t=0000001ad435b1da
(XEN) RDZV[19] t=0000001ad435b1d2
(XEN) RDZV[21] t=0000001ad435bb38
(XEN) RDZV[20] t=0000001ad435bb3c
(XEN) RDZV[23] t=0000001ad435c58e
(XEN) RDZV[22] t=0000001ad435c59a
(XEN) RDZV[22] t=0000001ad929b567(0000001ad929b567) s=00003bb9db2a(00003bba20cf)
(XEN) RDZV[23] t=0000001ad929b567(0000001ad929b567) s=00003bb9db09(00003bba20cf)
(XEN) RDZV[20] t=0000001ad929b567(0000001ad929b567) s=00003bb9db06(00003bba20cf)
(XEN) RDZV[12] t=0000001ad929b567(0000001ad929b567) s=00003bb9dae8(00003bba20cf)
(XEN) RDZV[13] t=0000001ad929b567(0000001ad929b567) s=00003bb9dbc1(00003bba20cf)
(XEN) RDZV[ 8] t=0000001ad929b567(0000001ad929b567) s=00003bb9dae7(00003bba20cf)
(XEN) RDZV[ 9] t=0000001ad929b567(0000001ad929b567) s=00003bb9dafd(00003bba20cf)
(XEN) RDZV[14] t=0000001ad929b567(0000001ad929b567) s=00003bb9db06(00003bba20cf)
(XEN) RDZV[15] t=0000001ad929b567(0000001ad929b567) s=00003bb9daff(00003bba20cf)
(XEN) RDZV[ 6] t=0000001ad929b567(0000001ad929b567) s=00003bb9db21(00003bba20cf)
(XEN) RDZV[ 7] t=0000001ad929b567(0000001ad929b567) s=00003bb9db09(00003bba20cf)
(XEN) RDZV[21] t=0000001ad929b567(0000001ad929b567) s=00003bb9daf2(00003bba20cf)
(XEN) RDZV[17] t=0000001ad929b567(0000001ad929b567) s=00003bb9dbc8(00003bba20cf)
(XEN) RDZV[16] t=0000001ad929b567(0000001ad929b567) s=00003bb9dbe9(00003bba20cf)
(XEN) RDZV[ 2] t=0000001ad929b567(0000001ad929b567) s=00003bb9dacc(00003bba20cf)
(XEN) RDZV[ 1] t=0000001ad929b567(0000001ad929b567) s=00003bb9da91(00003bba20cf)
(XEN) RDZV[19] t=0000001ad929b567(0000001ad929b567) s=00003bb9db52(00003bba20cf)
(XEN) RDZV[18] t=0000001ad929b567(0000001ad929b567) s=00003bb9dafc(00003bba20cf)
(XEN) RDZV[ 3] t=0000001ad929b567(0000001ad929b567) s=00003bb9db25(00003bba20cf)
(XEN) RDZV[10] t=0000001ad929b567(0000001ad929b567) s=00003bb9dbc6(00003bba20cf)
(XEN) RDZV[11] t=0000001ad929b567(0000001ad929b567) s=00003bb9dc06(00003bba20cf)
(XEN) RDZV[ 0] t=0000001ad929b567(0000001ad929b567) s=00003bb9d95d(00003bba20cf)
(XEN) RDZV[ 4] t=0000001ad929b567(0000001ad929b567) s=00003bb9dc89(00003bba20cf)
(XEN) RDZV[ 5] t=0000001ad929b567(0000001ad929b567) s=00003bb9dc90(00003bba20cf)
(XEN) TSC adjusted by ca2ed684
(XEN) TSC: end rendezvous
(XEN) mtrr: your CPUs had inconsistent fixed MTRR settings
(XEN) Dom0 has maximum 816 PIRQs
(XEN)  Xen  kernel: 64-bit, lsb, compat32
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x2c2c000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000428000000->000000042c000000 (237067 pages to be allocated)
(XEN)  Init. ramdisk: 000000043de0b000->000000043ffff664
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff82c2c000
(XEN)  Init. ramdisk: 0000000000000000->0000000000000000
(XEN)  Phys-Mach map: 0000008000000000->0000008000200000
(XEN)  Start info:    ffffffff82c2c000->ffffffff82c2c4b8
(XEN)  Xenstore ring: 0000000000000000->0000000000000000
(XEN)  Console ring:  0000000000000000->0000000000000000
(XEN)  Page tables:   ffffffff82c2d000->ffffffff82c48000
(XEN)  Boot stack:    ffffffff82c48000->ffffffff82c49000
(XEN)  TOTAL:         ffffffff80000000->ffffffff83000000
(XEN)  ENTRY ADDRESS: ffffffff8282a160
(XEN) Dom0 has maximum 4 VCPUs
(XEN) TSC: time.c#time_calibration_tsc_rendezvous
(XEN) RDZV[ 0] t=0000001b7d5f40ab
(XEN) RDZV[ 1] t=0000001b7d5f4557
(XEN) RDZV[ 2] t=0000001b7d605924
(XEN) RDZV[ 3] t=0000001b7d605914
(XEN) RDZV[ 5] t=0000001b7d605f02
(XEN) RDZV[ 4] t=0000001b7d605f16
(XEN) RDZV[ 6] t=0000001b7d606a4e
(XEN) RDZV[ 7] t=0000001b7d606a4a
(XEN) RDZV[ 8] t=0000001b7d60785a
(XEN) RDZV[ 9] t=0000001b7d6077b6
(XEN) RDZV[10] t=0000001b7d6082aa
(XEN) RDZV[11] t=0000001b7d608292
(XEN) RDZV[12] t=0000001b7d608ce2
(XEN) RDZV[13] t=0000001b7d608d72
(XEN) RDZV[15] t=0000001b7d609789
(XEN) RDZV[14] t=0000001b7d60978d
(XEN) RDZV[17] t=0000001b7d609f12
(XEN) RDZV[16] t=0000001b7d609efa
(XEN) RDZV[19] t=0000001b7d60a88c
(XEN) RDZV[18] t=0000001b7d60a88c
(XEN) RDZV[21] t=0000001b7d60b12b
(XEN) RDZV[20] t=0000001b7d60b113
(XEN) RDZV[22] t=0000001b7d60baae
(XEN) RDZV[23] t=0000001b7d60baaa
(XEN) RDZV[ 0] t=0000001b82548784(0000001b82548784) s=00007f8bdd1e(00007f8c7c7b)
(XEN) RDZV[ 1] t=0000001b82548784(0000001b82548784) s=00007f8bdf11(00007f8c7c7b)
(XEN) RDZV[ 7] t=0000001b82548784(0000001b82548784) s=00007f8bdf6c(00007f8c7c7b)
(XEN) RDZV[ 6] t=0000001b82548784(0000001b82548784) s=00007f8bdf7d(00007f8c7c7b)
(XEN) RDZV[ 9] t=0000001b82548784(0000001b82548784) s=00007f8bdefc(00007f8c7c7b)
(XEN) RDZV[ 8] t=0000001b82548784(0000001b82548784) s=00007f8bdf20(00007f8c7c7b)
(XEN) RDZV[ 4] t=0000001b82548784(0000001b82548784) s=00007f8be0a5(00007f8c7c7b)
(XEN) RDZV[13] t=0000001b82548784(0000001b82548784) s=00007f8be012(00007f8c7c7b)
(XEN) RDZV[12] t=0000001b82548784(0000001b82548784) s=00007f8bdef2(00007f8c7c7b)
(XEN) RDZV[14] t=0000001b82548784(0000001b82548784) s=00007f8bdf52(00007f8c7c7b)
(XEN) RDZV[15] t=0000001b82548784(0000001b82548784) s=00007f8bdf4b(00007f8c7c7b)
(XEN) RDZV[17] t=0000001b82548784(0000001b82548784) s=00007f8be108(00007f8c7c7b)
(XEN) RDZV[16] t=0000001b82548784(0000001b82548784) s=00007f8be141(00007f8c7c7b)
(XEN) RDZV[18] t=0000001b82548784(0000001b82548784) s=00007f8bded4(00007f8c7c7b)
(XEN) RDZV[20] t=0000001b82548784(0000001b82548784) s=00007f8be028(00007f8c7c7b)
(XEN) RDZV[22] t=0000001b82548784(0000001b82548784) s=00007f8be022(00007f8c7c7b)
(XEN) RDZV[ 2] t=0000001b82548784(0000001b82548784) s=00007f8be120(00007f8c7c7b)
(XEN) RDZV[ 5] t=0000001b82548784(0000001b82548784) s=00007f8be0a2(00007f8c7c7b)
(XEN) RDZV[ 3] t=0000001b82548784(0000001b82548784) s=00007f8be17e(00007f8c7c7b)
(XEN) RDZV[10] t=0000001b82548784(0000001b82548784) s=00007f8bdfc8(00007f8c7c7b)
(XEN) RDZV[11] t=0000001b82548784(0000001b82548784) s=00007f8be007(00007f8c7c7b)
(XEN) RDZV[21] t=0000001b82548784(0000001b82548784) s=00007f8be01e(00007f8c7c7b)
(XEN) RDZV[19] t=0000001b82548784(0000001b82548784) s=00007f8bdf27(00007f8c7c7b)
(XEN) RDZV[23] t=0000001b82548784(0000001b82548784) s=00007f8be001(00007f8c7c7b)
(XEN) TSC adjusted by 679
(XEN) TSC: end rendezvous
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Scrubbing Free RAM on 1 nodes using 12 CPUs
(XEN) ............done.
(XEN) Std. Loglevel: Errors and warnings
(XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings)
(XEN) Xen is keeping VGA console.
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen)
(XEN) Freed 476kB init memory
(XEN) TSC: time.c#time_calibration_tsc_rendezvous
(XEN) RDZV[ 0] t=0000001cb8e13f4a
(XEN) RDZV[ 1] t=0000001cb8e14466
(XEN) RDZV[ 3] t=0000001cb8e25743
(XEN) RDZV[ 2] t=0000001cb8e2573f
(XEN) RDZV[ 5] t=0000001cb8e25f52
(XEN) RDZV[ 4] t=0000001cb8e25f46
(XEN) RDZV[ 6] t=0000001cb8e26953
(XEN) RDZV[ 7] t=0000001cb8e2698b
(XEN) RDZV[ 9] t=0000001cb8e277b7
(XEN) RDZV[ 8] t=0000001cb8e27803
(XEN) RDZV[11] t=0000001cb8e2829b
(XEN) RDZV[10] t=0000001cb8e2824f
(XEN) RDZV[13] t=0000001cb8e28ccc
(XEN) RDZV[12] t=0000001cb8e28ccc
(XEN) RDZV[14] t=0000001cb8e2967b
(XEN) RDZV[15] t=0000001cb8e2961b
(XEN) RDZV[17] t=0000001cb8e29e15
(XEN) RDZV[16] t=0000001cb8e29e39
(XEN) RDZV[19] t=0000001cb8e2a790
(XEN) RDZV[18] t=0000001cb8e2a79c
(XEN) RDZV[21] t=0000001cb8e2b1d4
(XEN) RDZV[20] t=0000001cb8e2b1a0
(XEN) RDZV[23] t=0000001cb8e2b984
(XEN) RDZV[22] t=0000001cb8e2b978
(XEN) RDZV[ 0] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093b03(0000fe0a79cd)
(XEN) RDZV[ 1] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093d98(0000fe0a79cd)
(XEN) RDZV[22] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093f63(0000fe0a79cd)
(XEN) RDZV[18] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093dee(0000fe0a79cd)
(XEN) RDZV[19] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093e3a(0000fe0a79cd)
(XEN) RDZV[16] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe094142(0000fe0a79cd)
(XEN) RDZV[17] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe0940ec(0000fe0a79cd)
(XEN) RDZV[ 7] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093f7d(0000fe0a79cd)
(XEN) RDZV[ 6] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093f69(0000fe0a79cd)
(XEN) RDZV[11] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093e8c(0000fe0a79cd)
(XEN) RDZV[10] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093e35(0000fe0a79cd)
(XEN) RDZV[ 3] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe094105(0000fe0a79cd)
(XEN) RDZV[21] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093efd(0000fe0a79cd)
(XEN) RDZV[14] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093ddc(0000fe0a79cd)
(XEN) RDZV[15] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093dac(0000fe0a79cd)
(XEN) RDZV[20] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093efb(0000fe0a79cd)
(XEN) RDZV[ 5] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe094157(0000fe0a79cd)
(XEN) RDZV[ 2] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe0940ab(0000fe0a79cd)
(XEN) RDZV[12] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093d75(0000fe0a79cd)
(XEN) RDZV[13] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093e8e(0000fe0a79cd)
(XEN) RDZV[23] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093f46(0000fe0a79cd)
(XEN) RDZV[ 9] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093db6(0000fe0a79cd)
(XEN) RDZV[ 8] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe093e06(0000fe0a79cd)
(XEN) RDZV[ 4] t=0000001cbdd6c389(0000001cbdd6c389) s=0000fe094163(0000fe0a79cd)
(XEN) TSC adjusted by 533
(XEN) TSC: end rendezvous
(XEN) TSC: time.c#time_calibration_tsc_rendezvous
(XEN) RDZV[ 3] t=0000001f1637c6eb
(XEN) RDZV[ 2] t=0000001f1637c6ef
(XEN) RDZV[ 1] t=0000001f1637cd79
(XEN) RDZV[ 0] t=0000001f1637cfe9
(XEN) RDZV[ 5] t=0000001f1638d078
(XEN) RDZV[ 4] t=0000001f1638d088
(XEN) RDZV[ 7] t=0000001f1638da21
(XEN) RDZV[ 6] t=0000001f1638da49
(XEN) RDZV[ 8] t=0000001f1638e7ca
(XEN) RDZV[ 9] t=0000001f1638e7ba
(XEN) RDZV[11] t=0000001f1638f43a
(XEN) RDZV[10] t=0000001f1638f326
(XEN) RDZV[13] t=0000001f1639005f
(XEN) RDZV[12] t=0000001f1639008f
(XEN) RDZV[15] t=0000001f163908c9
(XEN) RDZV[14] t=0000001f163908cd
(XEN) RDZV[16] t=0000001f163911fe
(XEN) RDZV[17] t=0000001f163911fe
(XEN) RDZV[18] t=0000001f16391a43
(XEN) RDZV[19] t=0000001f16391b53
(XEN) RDZV[21] t=0000001f163925d2
(XEN) RDZV[20] t=0000001f1639254a
(XEN) RDZV[22] t=0000001f16392d0e
(XEN) RDZV[23] t=0000001f16392d02
(XEN) RDZV[ 0] t=0000001f1b280823(0000001f1b280823) s=0001f0b6506e(0001f0b8c7d1)
(XEN) RDZV[ 1] t=0000001f1b280823(0000001f1b280823) s=0001f0b654f6(0001f0b8c7d1)
(XEN) RDZV[ 6] t=0000001f1b280823(0000001f1b280823) s=0001f0b65806(0001f0b8c7d1)
(XEN) RDZV[ 7] t=0000001f1b280823(0000001f1b280823) s=0001f0b6580d(0001f0b8c7d1)
(XEN) RDZV[21] t=0000001f1b280823(0000001f1b280823) s=0001f0b6590f(0001f0b8c7d1)
(XEN) RDZV[ 4] t=0000001f1b280823(0000001f1b280823) s=0001f0b65bb1(0001f0b8c7d1)
(XEN) RDZV[17] t=0000001f1b280823(0000001f1b280823) s=0001f0b658fb(0001f0b8c7d1)
(XEN) RDZV[16] t=0000001f1b280823(0000001f1b280823) s=0001f0b6594a(0001f0b8c7d1)
(XEN) RDZV[ 3] t=0000001f1b280823(0000001f1b280823) s=0001f0b65a49(0001f0b8c7d1)
(XEN) RDZV[12] t=0000001f1b280823(0000001f1b280823) s=0001f0b6589e(0001f0b8c7d1)
(XEN) RDZV[13] t=0000001f1b280823(0000001f1b280823) s=0001f0b659a3(0001f0b8c7d1)
(XEN) RDZV[ 8] t=0000001f1b280823(0000001f1b280823) s=0001f0b65510(0001f0b8c7d1)
(XEN) RDZV[ 9] t=0000001f1b280823(0000001f1b280823) s=0001f0b65586(0001f0b8c7d1)
(XEN) RDZV[22] t=0000001f1b280823(0000001f1b280823) s=0001f0b6597c(0001f0b8c7d1)
(XEN) RDZV[15] t=0000001f1b280823(0000001f1b280823) s=0001f0b654fb(0001f0b8c7d1)
(XEN) RDZV[14] t=0000001f1b280823(0000001f1b280823) s=0001f0b65531(0001f0b8c7d1)
(XEN) RDZV[20] t=0000001f1b280823(0000001f1b280823) s=0001f0b658e1(0001f0b8c7d1)
(XEN) RDZV[18] t=0000001f1b280823(0000001f1b280823) s=0001f0b654e5(0001f0b8c7d1)
(XEN) RDZV[19] t=0000001f1b280823(0000001f1b280823) s=0001f0b6559c(0001f0b8c7d1)
(XEN) RDZV[11] t=0000001f1b280823(0000001f1b280823) s=0001f0b65687(0001f0b8c7d1)
(XEN) RDZV[10] t=0000001f1b280823(0000001f1b280823) s=0001f0b655cc(0001f0b8c7d1)
(XEN) RDZV[ 5] t=0000001f1b280823(0000001f1b280823) s=0001f0b65bb8(0001f0b8c7d1)
(XEN) RDZV[ 2] t=0000001f1b280823(0000001f1b280823) s=0001f0b659f0(0001f0b8c7d1)
(XEN) RDZV[23] t=0000001f1b280823(0000001f1b280823) s=0001f0b65958(0001f0b8c7d1)
(XEN) TSC adjusted by 55a
(XEN) TSC: end rendezvous
(XEN) TSC: time.c#time_calibration_tsc_rendezvous
(XEN) RDZV[ 0] t=00000023c63fbf96
(XEN) RDZV[ 1] t=00000023c63fca92
(XEN) RDZV[ 3] t=00000023c640ede9
(XEN) RDZV[ 2] t=00000023c640edf5
(XEN) RDZV[ 4] t=00000023c640ef33
(XEN) RDZV[ 5] t=00000023c640ef3f
(XEN) RDZV[ 6] t=00000023c640fb42
(XEN) RDZV[ 7] t=00000023c640f8d6
(XEN) RDZV[ 8] t=00000023c6410951
(XEN) RDZV[ 9] t=00000023c6410951
(XEN) RDZV[10] t=00000023c6411491
(XEN) RDZV[11] t=00000023c6411341
(XEN) RDZV[13] t=00000023c6411e78
(XEN) RDZV[12] t=00000023c6411eb4
(XEN) RDZV[14] t=00000023c6412907
(XEN) RDZV[15] t=00000023c6412943
(XEN) RDZV[17] t=00000023c6412ff3
(XEN) RDZV[16] t=00000023c6412efb
(XEN) RDZV[18] t=00000023c64139c5
(XEN) RDZV[19] t=00000023c64139b5
(XEN) RDZV[21] t=00000023c6414335
(XEN) RDZV[20] t=00000023c64141fd
(XEN) RDZV[23] t=00000023c6414fe5
(XEN) RDZV[22] t=00000023c6414fd5
(XEN) RDZV[ 0] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1cffcd7(0003d1d5ee97)
(XEN) RDZV[ 1] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d004e4(0003d1d5ee97)
(XEN) RDZV[22] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00dd6(0003d1d5ee97)
(XEN) RDZV[23] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00d97(0003d1d5ee97)
(XEN) RDZV[17] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d009a6(0003d1d5ee97)
(XEN) RDZV[16] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d009c3(0003d1d5ee97)
(XEN) RDZV[10] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d0077f(0003d1d5ee97)
(XEN) RDZV[11] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00890(0003d1d5ee97)
(XEN) RDZV[ 5] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00f42(0003d1d5ee97)
(XEN) RDZV[ 8] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00510(0003d1d5ee97)
(XEN) RDZV[ 9] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d005b3(0003d1d5ee97)
(XEN) RDZV[21] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d007c9(0003d1d5ee97)
(XEN) RDZV[ 7] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00add(0003d1d5ee97)
(XEN) RDZV[ 6] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00bda(0003d1d5ee97)
(XEN) RDZV[20] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d007e8(0003d1d5ee97)
(XEN) RDZV[19] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00457(0003d1d5ee97)
(XEN) RDZV[18] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d0037f(0003d1d5ee97)
(XEN) RDZV[15] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00914(0003d1d5ee97)
(XEN) RDZV[14] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00950(0003d1d5ee97)
(XEN) RDZV[ 2] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00f58(0003d1d5ee97)
(XEN) RDZV[13] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00b1b(0003d1d5ee97)
(XEN) RDZV[12] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00a7a(0003d1d5ee97)
(XEN) RDZV[ 3] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00f8a(0003d1d5ee97)
(XEN) RDZV[ 4] t=00000023cb2f82c3(00000023cb2f82c3) s=0003d1d00f44(0003d1d5ee97)
(XEN) TSC adjusted by 249
(XEN) TSC: end rendezvous
(XEN) TSC: time.c#time_calibration_tsc_rendezvous
(XEN) RDZV[ 0] t=0000002d1bbfbfeb
(XEN) RDZV[ 1] t=0000002d1bbfc9af
(XEN) RDZV[ 2] t=0000002d1bc0e20c
(XEN) RDZV[ 3] t=0000002d1bc0e20c
(XEN) RDZV[ 5] t=0000002d1bc0e586
(XEN) RDZV[ 4] t=0000002d1bc0e576
(XEN) RDZV[ 6] t=0000002d1bc0ef26
(XEN) RDZV[ 7] t=0000002d1bc0ef36
(XEN) RDZV[ 9] t=0000002d1bc0fd04
(XEN) RDZV[ 8] t=0000002d1bc0fd04
(XEN) RDZV[10] t=0000002d1bc1061c
(XEN) RDZV[11] t=0000002d1bc10658
(XEN) RDZV[13] t=0000002d1bc1115b
(XEN) RDZV[12] t=0000002d1bc11187
(XEN) RDZV[15] t=0000002d1bc11b80
(XEN) RDZV[14] t=0000002d1bc11b8c
(XEN) RDZV[17] t=0000002d1bc121da
(XEN) RDZV[16] t=0000002d1bc121ea
(XEN) RDZV[18] t=0000002d1bc12a88
(XEN) RDZV[19] t=0000002d1bc12a9c
(XEN) RDZV[21] t=0000002d1bc1361a
(XEN) RDZV[20] t=0000002d1bc1361e
(XEN) RDZV[22] t=0000002d1bc141dc
(XEN) RDZV[23] t=0000002d1bc141dc
(XEN) RDZV[23] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a811(00078fd82565)
(XEN) RDZV[10] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a055(00078fd82565)
(XEN) RDZV[ 6] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a48a(00078fd82565)
(XEN) RDZV[ 7] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a53b(00078fd82565)
(XEN) RDZV[20] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a3a7(00078fd82565)
(XEN) RDZV[22] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7ab37(00078fd82565)
(XEN) RDZV[18] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a098(00078fd82565)
(XEN) RDZV[19] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a11a(00078fd82565)
(XEN) RDZV[21] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a07a(00078fd82565)
(XEN) RDZV[ 1] t=0000002d20af22fa(0000002d20af22fa) s=00078fc799e8(00078fd82565)
(XEN) RDZV[11] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a449(00078fd82565)
(XEN) RDZV[ 8] t=0000002d20af22fa(0000002d20af22fa) s=00078fc79ccd(00078fd82565)
(XEN) RDZV[ 9] t=0000002d20af22fa(0000002d20af22fa) s=00078fc79fcc(00078fd82565)
(XEN) RDZV[ 5] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7ac41(00078fd82565)
(XEN) RDZV[13] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a54d(00078fd82565)
(XEN) RDZV[12] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a4fe(00078fd82565)
(XEN) RDZV[ 0] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7874e(00078fd82565)
(XEN) RDZV[ 2] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7ac3d(00078fd82565)
(XEN) RDZV[16] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a29d(00078fd82565)
(XEN) RDZV[17] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a242(00078fd82565)
(XEN) RDZV[ 3] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7abf7(00078fd82565)
(XEN) RDZV[ 4] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7abd6(00078fd82565)
(XEN) RDZV[14] t=0000002d20af22fa(0000002d20af22fa) s=00078fc7a030(00078fd82565)
(XEN) RDZV[15] t=0000002d20af22fa(0000002d20af22fa) s=00078fc79e2a(00078fd82565)
(XEN) TSC adjusted by 3ef
(XEN) TSC: end rendezvous
(XEN) TSC: time.c#time_calibration_tsc_rendezvous
(XEN) RDZV[ 0] t=0000003fbc335573
(XEN) RDZV[ 1] t=0000003fbc3361bb
(XEN) RDZV[ 2] t=0000003fbc345c50
(XEN) RDZV[ 3] t=0000003fbc345c4c
(XEN) RDZV[ 4] t=0000003fbc34692f
(XEN) RDZV[ 5] t=0000003fbc34693f
(XEN) RDZV[ 6] t=0000003fbc347095
(XEN) RDZV[ 7] t=0000003fbc347095
(XEN) RDZV[ 9] t=0000003fbc347e95
(XEN) RDZV[ 8] t=0000003fbc347e95
(XEN) RDZV[11] t=0000003fbc348bf8
(XEN) RDZV[10] t=0000003fbc348c68
(XEN) RDZV[13] t=0000003fbc349457
(XEN) RDZV[12] t=0000003fbc349493
(XEN) RDZV[14] t=0000003fbc349f5e
(XEN) RDZV[15] t=0000003fbc349f6a
(XEN) RDZV[17] t=0000003fbc34a5e5
(XEN) RDZV[16] t=0000003fbc34a5cd
(XEN) RDZV[18] t=0000003fbc34b0a7
(XEN) RDZV[19] t=0000003fbc34b07f
(XEN) RDZV[21] t=0000003fbc34b936
(XEN) RDZV[20] t=0000003fbc34b936
(XEN) RDZV[23] t=0000003fbc34c5ae
(XEN) RDZV[22] t=0000003fbc34c5e2
(XEN) RDZV[ 0] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c39a2(000f07a29ca9)
(XEN) RDZV[15] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c2c78(000f07a29ca9)
(XEN) RDZV[14] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c2dac(000f07a29ca9)
(XEN) RDZV[16] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c3783(000f07a29ca9)
(XEN) RDZV[17] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c373a(000f07a29ca9)
(XEN) RDZV[18] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c3c27(000f07a29ca9)
(XEN) RDZV[ 1] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c19d7(000f07a29ca9)
(XEN) RDZV[13] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c2ce1(000f07a29ca9)
(XEN) RDZV[12] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c2cee(000f07a29ca9)
(XEN) RDZV[ 6] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c40eb(000f07a29ca9)
(XEN) RDZV[ 7] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c42ff(000f07a29ca9)
(XEN) RDZV[21] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c38ab(000f07a29ca9)
(XEN) RDZV[19] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c3d03(000f07a29ca9)
(XEN) RDZV[ 8] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c28ef(000f07a29ca9)
(XEN) RDZV[ 9] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c2c4f(000f07a29ca9)
(XEN) RDZV[11] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c41cc(000f07a29ca9)
(XEN) RDZV[10] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c3cf3(000f07a29ca9)
(XEN) RDZV[20] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c38ee(000f07a29ca9)
(XEN) RDZV[22] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c4141(000f07a29ca9)
(XEN) RDZV[ 3] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c374d(000f07a29ca9)
(XEN) RDZV[ 5] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c379b(000f07a29ca9)
(XEN) RDZV[23] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c3ef0(000f07a29ca9)
(XEN) RDZV[ 2] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c3425(000f07a29ca9)
(XEN) RDZV[ 4] t=0000003fc122d4ca(0000003fc122d4ca) s=000f077c3548(000f07a29ca9)
(XEN) TSC: end rendezvous
(XEN) TSC adjusted by 974
(XEN) TSC: time.c#time_calibration_tsc_rendezvous
(XEN) RDZV[ 0] t=00000064f28509f1
(XEN) RDZV[ 1] t=00000064f28513b1
(XEN) RDZV[ 8] t=00000064f28610fa
(XEN) RDZV[ 9] t=00000064f286159a
(XEN) RDZV[ 3] t=00000064f2862f93
(XEN) RDZV[ 2] t=00000064f2862f8b
(XEN) RDZV[ 5] t=00000064f28639a1
(XEN) RDZV[ 4] t=00000064f28638ed
(XEN) RDZV[ 6] t=00000064f2864399
(XEN) RDZV[ 7] t=00000064f2864349
(XEN) RDZV[10] t=00000064f286515f
(XEN) RDZV[11] t=00000064f286516f
(XEN) RDZV[13] t=00000064f2865992
(XEN) RDZV[12] t=00000064f2865c12
(XEN) RDZV[15] t=00000064f2866584
(XEN) RDZV[14] t=00000064f2866564
(XEN) RDZV[17] t=00000064f2866e53
(XEN) RDZV[16] t=00000064f2866e53
(XEN) RDZV[19] t=00000064f286785b
(XEN) RDZV[18] t=00000064f286786f
(XEN) RDZV[21] t=00000064f286820b
(XEN) RDZV[20] t=00000064f286820f
(XEN) RDZV[23] t=00000064f2868ad6
(XEN) RDZV[22] t=00000064f2868bb2
(XEN) RDZV[ 3] t=00000064f7744933(00000064f7744933) s=001df2a78982(001df2f7d65b)
(XEN) RDZV[18] t=00000064f7744933(00000064f7744933) s=001df2a788cf(001df2f7d65b)
(XEN) RDZV[19] t=00000064f7744933(00000064f7744933) s=001df2a789f8(001df2f7d65b)
(XEN) RDZV[16] t=00000064f7744933(00000064f7744933) s=001df2a78088(001df2f7d65b)
(XEN) RDZV[17] t=00000064f7744933(00000064f7744933) s=001df2a7832a(001df2f7d65b)
(XEN) RDZV[22] t=00000064f7744933(00000064f7744933) s=001df2a79f32(001df2f7d65b)
(XEN) RDZV[ 2] t=00000064f7744933(00000064f7744933) s=001df2a7851a(001df2f7d65b)
(XEN) RDZV[ 5] t=00000064f7744933(00000064f7744933) s=001df2a78187(001df2f7d65b)
(XEN) RDZV[ 1] t=00000064f7744933(00000064f7744933) s=001df2a7481b(001df2f7d65b)
(XEN) RDZV[23] t=00000064f7744933(00000064f7744933) s=001df2a796e9(001df2f7d65b)
(XEN) RDZV[12] t=00000064f7744933(00000064f7744933) s=001df2a777aa(001df2f7d65b)
(XEN) RDZV[13] t=00000064f7744933(00000064f7744933) s=001df2a7778f(001df2f7d65b)
(XEN) RDZV[ 0] t=00000064f7744933(00000064f7744933) s=001df2a73cfd(001df2f7d65b)
(XEN) RDZV[20] t=00000064f7744933(00000064f7744933) s=001df2a7373a(001df2f7d65b)
(XEN) RDZV[ 9] t=00000064f7744933(00000064f7744933) s=001df2a779e5(001df2f7d65b)
(XEN) RDZV[ 8] t=00000064f7744933(00000064f7744933) s=001df2a77344(001df2f7d65b)
(XEN) RDZV[11] t=00000064f7744933(00000064f7744933) s=001df2a79817(001df2f7d65b)
(XEN) RDZV[10] t=00000064f7744933(00000064f7744933) s=001df2a78e37(001df2f7d65b)
(XEN) RDZV[15] t=00000064f7744933(00000064f7744933) s=001df2a76f0c(001df2f7d65b)
(XEN) RDZV[14] t=00000064f7744933(00000064f7744933) s=001df2a76ed9(001df2f7d65b)
(XEN) RDZV[ 7] t=00000064f7744933(00000064f7744933) s=001df2a79990(001df2f7d65b)
(XEN) RDZV[ 6] t=00000064f7744933(00000064f7744933) s=001df2a79498(001df2f7d65b)
(XEN) RDZV[21] t=00000064f7744933(00000064f7744933) s=001df2a74279(001df2f7d65b)
(XEN) RDZV[ 4] t=00000064f7744933(00000064f7744933) s=001df2a77cf2(001df2f7d65b)
(XEN) TSC: end rendezvous
(XEN) TSC adjusted by 734

[-- Attachment #3: kernel-dmesg.txt --]
[-- Type: text/plain, Size: 70172 bytes --]

[    0.000000] Linux version 5.10.0-1-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-3) 10.2.1 20201224, GNU ld (GNU Binutils for Debian) 2.35.1) #1 SMP Debian 5.10.4-1 (2020-12-31)
[    0.000000] Command line: placeholder root=UUID=ffd2e44e-3eb7-4c4d-a028-dad7da03c831 ro loglevel=3
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] Released 0 page(s)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] Xen: [mem 0x0000000000000000-0x000000000009dfff] usable
[    0.000000] Xen: [mem 0x000000000009e800-0x00000000000fffff] reserved
[    0.000000] Xen: [mem 0x0000000000100000-0x0000000080061fff] usable
[    0.000000] Xen: [mem 0x00000000ba952000-0x00000000ba98afff] reserved
[    0.000000] Xen: [mem 0x00000000babc3000-0x00000000bb1bffff] ACPI NVS
[    0.000000] Xen: [mem 0x00000000bb1c0000-0x00000000bb842fff] reserved
[    0.000000] Xen: [mem 0x00000000bb844000-0x00000000bb8c9fff] ACPI NVS
[    0.000000] Xen: [mem 0x00000000bbd0f000-0x00000000bbff3fff] reserved
[    0.000000] Xen: [mem 0x00000000d0000000-0x00000000dfffffff] reserved
[    0.000000] Xen: [mem 0x00000000fbffc000-0x00000000fbffcfff] reserved
[    0.000000] Xen: [mem 0x00000000fec00000-0x00000000fec01fff] reserved
[    0.000000] Xen: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] Xen: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: To be filled by O.E.M. To be filled by O.E.M./Intel X79, BIOS 4.6.5 07/17/2019
[    0.000000] Hypervisor detected: Xen PV
[    0.046803] tsc: Fast TSC calibration using PIT
[    0.046805] tsc: Detected 2494.279 MHz processor
[    0.046806] tsc: Detected 2494.340 MHz TSC
[    0.052290] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.052293] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.052298] last_pfn = 0x80062 max_arch_pfn = 0x400000000
[    0.052299] Disabled
[    0.052300] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[    0.052306] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP  UC  UC  
[    0.067090] Kernel/User page tables isolation: disabled on XEN PV.
[    0.679640] RAMDISK: [mem 0x04000000-0x061f4fff]
[    0.679653] ACPI: Early table checksum verification disabled
[    0.685907] ACPI: RSDP 0x00000000000F04A0 000024 (v02 ALASKA)
[    0.685918] ACPI: XSDT 0x00000000BB0DD070 00005C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.685945] ACPI: FACP 0x00000000BB0E5728 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.686010] ACPI: DSDT 0x00000000BB0DD160 0085C7 (v02 ALASKA A M I    00000020 INTL 20051117)
[    0.686025] ACPI: FACS 0x00000000BB1B7F80 000040
[    0.686039] ACPI: APIC 0x00000000BB0E5838 0001A8 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.686053] ACPI: FPDT 0x00000000BB0E59E0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.686068] ACPI: MCFG 0x00000000BB0E5A28 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.686082] ACPI: HPET 0x00000000BB0E5A68 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.686097] ACPI: SSDT 0x00000000BB0E5AA0 0CD380 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.686112] ACPI: RMAD 0x00000000BB1B2E20 0000EC (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.686151] ACPI: Local APIC address 0xfee00000
[    0.686152] Setting APIC routing to Xen PV.
[    0.686185] NUMA turned off
[    0.686187] Faking a node at [mem 0x0000000000000000-0x0000000080061fff]
[    0.686199] NODE_DATA(0) allocated [mem 0x3fbf7000-0x3fc20fff]
[    0.699249] Zone ranges:
[    0.699251]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.699253]   DMA32    [mem 0x0000000001000000-0x0000000080061fff]
[    0.699254]   Normal   empty
[    0.699255]   Device   empty
[    0.699257] Movable zone start for each node
[    0.699260] Early memory node ranges
[    0.699261]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.699262]   node   0: [mem 0x0000000000100000-0x0000000080061fff]
[    0.699587] Zeroed struct page in unavailable ranges: 32769 pages
[    0.699589] Initmem setup node 0 [mem 0x0000000000001000-0x0000000080061fff]
[    0.699590] On node 0 totalpages: 524287
[    0.699592]   DMA zone: 64 pages used for memmap
[    0.699592]   DMA zone: 21 pages reserved
[    0.699593]   DMA zone: 3997 pages, LIFO batch:0
[    0.699644]   DMA32 zone: 8130 pages used for memmap
[    0.699645]   DMA32 zone: 520290 pages, LIFO batch:63
[    0.700375] p2m virtual area at (____ptrval____), size is 40000000
[    0.998178] Remapped 98 page(s)
[    1.000267] ACPI: PM-Timer IO Port: 0x408
[    1.000274] ACPI: Local APIC address 0xfee00000
[    1.000347] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    1.000349] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    1.000350] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    1.000352] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    1.000353] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    1.000354] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    1.000356] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    1.000357] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    1.000359] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    1.000360] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    1.000362] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    1.000363] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    1.000365] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    1.000366] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    1.000367] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    1.000369] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    1.000370] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    1.000372] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    1.000373] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    1.000374] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    1.000376] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    1.000377] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    1.000379] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    1.000380] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    1.000409] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    1.000422] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    1.000440] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    1.000443] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    1.000452] ACPI: IRQ0 used by override.
[    1.000453] ACPI: IRQ9 used by override.
[    1.000469] Using ACPI (MADT) for SMP configuration information
[    1.000475] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    1.000483] smpboot: Allowing 24 CPUs, 0 hotplug CPUs
[    1.000503] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.000505] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    1.000505] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    1.000507] [mem 0x80062000-0xba951fff] available for PCI devices
[    1.000510] Booting paravirtualized kernel on Xen
[    1.000511] Xen version: 4.11.4 (preserve-AD)
[    1.000515] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.005077] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:24 nr_cpu_ids:24 nr_node_ids:1
[    1.005897] percpu: Embedded 54 pages/cpu s183960 r8192 d29032 u262144
[    1.005904] pcpu-alloc: s183960 r8192 d29032 u262144 alloc=1*2097152
[    1.005906] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    1.005916] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 
[    1.005986] xen: PV spinlocks enabled
[    1.005991] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    1.005995] Built 1 zonelists, mobility grouping on.  Total pages: 516072
[    1.005996] Policy zone: DMA32
[    1.005998] Kernel command line: placeholder root=UUID=ffd2e44e-3eb7-4c4d-a028-dad7da03c831 ro loglevel=3
[    1.006202] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    1.006283] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.006789] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.051558] software IO TLB: mapped [mem 0x0000000038c00000-0x000000003cc00000] (64MB)
[    1.072057] Memory: 197808K/2097148K available (12295K kernel code, 2540K rwdata, 4060K rodata, 2380K init, 1692K bss, 1229692K reserved, 0K cma-reserved)
[    1.072065] random: get_random_u64 called from __kmem_cache_create+0x2e/0x550 with crng_init=0
[    1.072368] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    1.073305] ftrace: allocating 35988 entries in 141 pages
[    1.086924] ftrace: allocated 141 pages with 4 groups
[    1.087335] rcu: Hierarchical RCU implementation.
[    1.087337] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    1.087338] 	Rude variant of Tasks RCU enabled.
[    1.087339] 	Tracing variant of Tasks RCU enabled.
[    1.087340] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.087341] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    1.098325] Using NULL legacy PIC
[    1.098326] NR_IRQS: 524544, nr_irqs: 864, preallocated irqs: 0
[    1.098391] xen:events: Using FIFO-based ABI
[    1.098424] xen: --> pirq=1 -> irq=1 (gsi=1)
[    1.098439] xen: --> pirq=2 -> irq=2 (gsi=2)
[    1.098453] xen: --> pirq=3 -> irq=3 (gsi=3)
[    1.098467] xen: --> pirq=4 -> irq=4 (gsi=4)
[    1.098480] xen: --> pirq=5 -> irq=5 (gsi=5)
[    1.098494] xen: --> pirq=6 -> irq=6 (gsi=6)
[    1.098508] xen: --> pirq=7 -> irq=7 (gsi=7)
[    1.098521] xen: --> pirq=8 -> irq=8 (gsi=8)
[    1.098536] xen: --> pirq=9 -> irq=9 (gsi=9)
[    1.098550] xen: --> pirq=10 -> irq=10 (gsi=10)
[    1.098565] xen: --> pirq=11 -> irq=11 (gsi=11)
[    1.098579] xen: --> pirq=12 -> irq=12 (gsi=12)
[    1.098593] xen: --> pirq=13 -> irq=13 (gsi=13)
[    1.098607] xen: --> pirq=14 -> irq=14 (gsi=14)
[    1.098621] xen: --> pirq=15 -> irq=15 (gsi=15)
[    1.098667] random: crng done (trusting CPU's manufacturer)
[    1.103635] Console: colour VGA+ 80x25
[    1.103647] printk: console [tty0] enabled
[    1.103658] printk: console [hvc0] enabled
[    1.103686] ACPI: Core revision 20200925
[    1.176998] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    1.177010] Xen: using vcpuop timer interface
[    1.177015] installing Xen timer for CPU 0
[    1.177055] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x23f45725f32, max_idle_ns: 440795273770 ns
[    1.177058] Calibrating delay loop (skipped), value calculated using timer frequency.. 4988.68 BogoMIPS (lpj=9977360)
[    1.177061] pid_max: default: 32768 minimum: 301
[    1.177155] LSM: Security Framework initializing
[    1.177182] Yama: disabled by default; enable with sysctl kernel.yama.*
[    1.177277] AppArmor: AppArmor initialized
[    1.177283] TOMOYO Linux initialized
[    1.177330] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.177335] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.178102] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    1.178104] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    1.178108] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.178109] Spectre V2 : Mitigation: Full generic retpoline
[    1.178110] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    1.178111] Speculative Store Bypass: Vulnerable
[    1.178113] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    1.178253] Freeing SMP alternatives memory: 32K
[    1.181187] cpu 0 spinlock event irq 49
[    1.181194] VPMU disabled by hypervisor.
[    1.181588] Performance Events: unsupported p6 CPU model 62 no PMU driver, software events only.
[    1.181693] rcu: Hierarchical SRCU implementation.
[    1.182169] NMI watchdog: Perf NMI watchdog permanently disabled
[    1.182321] smp: Bringing up secondary CPUs ...
[    1.182590] installing Xen timer for CPU 1
[    1.182960] cpu 1 spinlock event irq 59
[    1.182960] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    1.182960] installing Xen timer for CPU 2
[    1.182960] cpu 2 spinlock event irq 65
[    1.182960] installing Xen timer for CPU 3
[    1.182960] cpu 3 spinlock event irq 71
[    1.182960] smp: Brought up 1 node, 4 CPUs
[    1.182960] smpboot: Max logical packages: 6
[    1.186776] node 0 deferred pages initialised in 0ms
[    1.186814] devtmpfs: initialized
[    1.186814] x86/mm: Memory block size: 128MB
[    1.186814] PM: Registering ACPI NVS region [mem 0xbabc3000-0xbb1bffff] (6279168 bytes)
[    1.186814] PM: Registering ACPI NVS region [mem 0xbb844000-0xbb8c9fff] (548864 bytes)
[    1.186814] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    1.186814] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    1.186814] pinctrl core: initialized pinctrl subsystem
[    1.186814] NET: Registered protocol family 16
[    1.186814] xen:grant_table: Grant tables using version 1 layout
[    1.186814] Grant table initialized
[    1.186814] audit: initializing netlink subsys (disabled)
[    1.186814] audit: type=2000 audit(1612192794.947:1): state=initialized audit_enabled=0 res=1
[    1.186814] thermal_sys: Registered thermal governor 'fair_share'
[    1.186814] thermal_sys: Registered thermal governor 'bang_bang'
[    1.186814] thermal_sys: Registered thermal governor 'step_wise'
[    1.186814] thermal_sys: Registered thermal governor 'user_space'
[    1.186814] ACPI: bus type PCI registered
[    1.186814] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.186814] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xd0000000-0xdfffffff] (base 0xd0000000)
[    1.186814] PCI: MMCONFIG at [mem 0xd0000000-0xdfffffff] reserved in E820
[    1.277591] PCI: Using configuration type 1 for base access
[    1.461249] ACPI: Added _OSI(Module Device)
[    1.461251] ACPI: Added _OSI(Processor Device)
[    1.461252] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.461254] ACPI: Added _OSI(Processor Aggregator Device)
[    1.461255] ACPI: Added _OSI(Linux-Dell-Video)
[    1.461257] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    1.461259] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    1.629408] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    1.643731] xen: registering gsi 9 triggering 0 polarity 0
[    1.649095] ACPI: Interpreter enabled
[    1.649108] ACPI: (supports S0 S5)
[    1.649110] ACPI: Using IOAPIC for interrupt routing
[    1.649149] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.649719] ACPI: Enabled 6 GPEs in block 00 to 3F
[    1.668271] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    1.668277] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    1.668501] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME AER LTR]
[    1.668707] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PCIeCapability]
[    1.669273] PCI host bridge to bus 0000:00
[    1.669276] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    1.669278] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    1.669279] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    1.669280] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    1.669282] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.669283] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    1.669284] pci_bus 0000:00: root bus resource [mem 0xcc000000-0xffffffff window]
[    1.669285] pci_bus 0000:00: root bus resource [mem 0x440000000-0x3fffffffffff window]
[    1.669287] pci_bus 0000:00: root bus resource [bus 00-fe]
[    1.669344] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    1.669625] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    1.669877] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[    1.670228] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    1.670510] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400
[    1.670860] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    1.671159] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    1.671509] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    1.671780] pci 0000:00:02.1: [8086:0e05] type 01 class 0x060400
[    1.672130] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[    1.672401] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    1.672751] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    1.673021] pci 0000:00:02.3: [8086:0e07] type 01 class 0x060400
[    1.673373] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
[    1.673662] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    1.673833] pci 0000:00:03.0: enabling Extended Tags
[    1.674041] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    1.674317] pci 0000:00:03.1: [8086:0e09] type 01 class 0x060400
[    1.674666] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    1.674935] pci 0000:00:03.2: [8086:0e0a] type 01 class 0x060400
[    1.675285] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    1.675553] pci 0000:00:03.3: [8086:0e0b] type 01 class 0x060400
[    1.675903] pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
[    1.676173] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[    1.676598] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[    1.677021] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020
[    1.677086] pci 0000:00:05.4: reg 0x10: [mem 0xfb304000-0xfb304fff]
[    1.677562] pci 0000:00:06.0: [8086:0e10] type 00 class 0x088000
[    1.678000] pci 0000:00:06.1: [8086:0e11] type 00 class 0x088000
[    1.678420] pci 0000:00:06.2: [8086:0e12] type 00 class 0x088000
[    1.678839] pci 0000:00:06.3: [8086:0e13] type 00 class 0x088000
[    1.679256] pci 0000:00:06.4: [8086:0e14] type 00 class 0x088000
[    1.679673] pci 0000:00:06.5: [8086:0e15] type 00 class 0x088000
[    1.680090] pci 0000:00:06.6: [8086:0e16] type 00 class 0x088000
[    1.680506] pci 0000:00:06.7: [8086:0e17] type 00 class 0x088000
[    1.680923] pci 0000:00:07.0: [8086:0e18] type 00 class 0x088000
[    1.681353] pci 0000:00:07.1: [8086:0e19] type 00 class 0x088000
[    1.681777] pci 0000:00:07.2: [8086:0e1a] type 00 class 0x088000
[    1.682198] pci 0000:00:07.3: [8086:0e1b] type 00 class 0x088000
[    1.682616] pci 0000:00:07.4: [8086:0e1c] type 00 class 0x088000
[    1.683140] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    1.683198] pci 0000:00:1a.0: reg 0x10: [mem 0xfb302000-0xfb3023ff]
[    1.683513] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    1.683723] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    1.684072] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    1.684144] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    1.684151] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    1.684348] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    1.684698] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    1.684767] pci 0000:00:1c.1: Enabling MPC IRBNCE
[    1.684773] pci 0000:00:1c.1: Intel PCH root port ACS workaround enabled
[    1.684974] pci 0000:00:1c.4: [8086:1e18] type 01 class 0x060400
[    1.685325] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    1.685395] pci 0000:00:1c.4: Enabling MPC IRBNCE
[    1.685402] pci 0000:00:1c.4: Intel PCH root port ACS workaround enabled
[    1.685623] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    1.685681] pci 0000:00:1d.0: reg 0x10: [mem 0xfb301000-0xfb3013ff]
[    1.686003] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.686202] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    1.686600] pci 0000:00:1f.0: [8086:1e48] type 00 class 0x060100
[    1.687125] pci 0000:00:1f.2: [8086:1e02] type 00 class 0x010601
[    1.687181] pci 0000:00:1f.2: reg 0x10: [io  0xf070-0xf077]
[    1.687211] pci 0000:00:1f.2: reg 0x14: [io  0xf060-0xf063]
[    1.687241] pci 0000:00:1f.2: reg 0x18: [io  0xf050-0xf057]
[    1.687271] pci 0000:00:1f.2: reg 0x1c: [io  0xf040-0xf043]
[    1.687301] pci 0000:00:1f.2: reg 0x20: [io  0xf020-0xf03f]
[    1.687331] pci 0000:00:1f.2: reg 0x24: [mem 0xfb300000-0xfb3007ff]
[    1.687514] pci 0000:00:1f.2: PME# supported from D3hot
[    1.687697] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    1.687768] pci 0000:00:1f.3: reg 0x10: [mem 0x3ffffff00000-0x3ffffff000ff 64bit]
[    1.687854] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    1.688194] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.688356] pci 0000:00:01.1: PCI bridge to [bus 02]
[    1.688560] pci 0000:03:00.0: [10de:01d3] type 00 class 0x030000
[    1.688612] pci 0000:03:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
[    1.688655] pci 0000:03:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
[    1.688698] pci 0000:03:00.0: reg 0x1c: [mem 0xf9000000-0xf9ffffff 64bit]
[    1.688752] pci 0000:03:00.0: reg 0x30: [mem 0xfb000000-0xfb01ffff pref]
[    1.689032] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    1.689057] pci 0000:00:02.0: PCI bridge to [bus 03]
[    1.689081] pci 0000:00:02.0:   bridge window [mem 0xf9000000-0xfb0fffff]
[    1.689099] pci 0000:00:02.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[    1.689233] pci 0000:00:02.1: PCI bridge to [bus 04]
[    1.689394] pci 0000:00:02.2: PCI bridge to [bus 05]
[    1.689556] pci 0000:00:02.3: PCI bridge to [bus 06]
[    1.689723] pci 0000:00:03.0: PCI bridge to [bus 07]
[    1.689892] pci 0000:00:03.1: PCI bridge to [bus 08]
[    1.690056] pci 0000:00:03.2: PCI bridge to [bus 09]
[    1.690218] pci 0000:00:03.3: PCI bridge to [bus 0a]
[    1.690377] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[    1.690588] pci 0000:0c:00.0: [1106:3483] type 00 class 0x0c0330
[    1.690670] pci 0000:0c:00.0: reg 0x10: [mem 0xfb200000-0xfb200fff 64bit]
[    1.691033] pci 0000:0c:00.0: PME# supported from D0 D3cold
[    1.691224] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[    1.691243] pci 0000:00:1c.1:   bridge window [mem 0xfb200000-0xfb2fffff]
[    1.691452] pci 0000:0d:00.0: [10ec:8168] type 00 class 0x020000
[    1.691518] pci 0000:0d:00.0: reg 0x10: [io  0xe000-0xe0ff]
[    1.691609] pci 0000:0d:00.0: reg 0x18: [mem 0xfb104000-0xfb104fff 64bit]
[    1.691664] pci 0000:0d:00.0: reg 0x20: [mem 0xfb100000-0xfb103fff 64bit]
[    1.691996] pci 0000:0d:00.0: supports D1 D2
[    1.691997] pci 0000:0d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.692262] pci 0000:00:1c.4: PCI bridge to [bus 0d]
[    1.692273] pci 0000:00:1c.4:   bridge window [io  0xe000-0xefff]
[    1.692283] pci 0000:00:1c.4:   bridge window [mem 0xfb100000-0xfb1fffff]
[    1.692369] pci_bus 0000:0e: extended config space not accessible
[    1.692529] pci 0000:00:1e.0: PCI bridge to [bus 0e] (subtractive decode)
[    1.692563] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    1.692565] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    1.692566] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    1.692567] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    1.692568] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    1.692569] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[    1.692571] pci 0000:00:1e.0:   bridge window [mem 0xcc000000-0xffffffff window] (subtractive decode)
[    1.692572] pci 0000:00:1e.0:   bridge window [mem 0x440000000-0x3fffffffffff window] (subtractive decode)
[    1.693122] xen: registering gsi 13 triggering 1 polarity 0
[    1.693350] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus ff])
[    1.693354] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    1.693379] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
[    1.693442] PCI host bridge to bus 0000:ff
[    1.693444] pci_bus 0000:ff: root bus resource [bus ff]
[    1.693503] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000
[    1.693757] pci 0000:ff:08.2: [8086:0e32] type 00 class 0x110100
[    1.694024] pci 0000:ff:08.3: [8086:0e83] type 00 class 0x088000
[    1.694363] pci 0000:ff:08.4: [8086:0e84] type 00 class 0x088000
[    1.694709] pci 0000:ff:08.5: [8086:0e85] type 00 class 0x088000
[    1.695045] pci 0000:ff:08.6: [8086:0e86] type 00 class 0x088000
[    1.695383] pci 0000:ff:08.7: [8086:0e87] type 00 class 0x088000
[    1.695712] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000
[    1.695960] pci 0000:ff:09.2: [8086:0e33] type 00 class 0x110100
[    1.696216] pci 0000:ff:09.3: [8086:0e93] type 00 class 0x088000
[    1.696553] pci 0000:ff:09.4: [8086:0e94] type 00 class 0x088000
[    1.696898] pci 0000:ff:09.5: [8086:0e95] type 00 class 0x088000
[    1.697239] pci 0000:ff:09.6: [8086:0e96] type 00 class 0x088000
[    1.697563] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000
[    1.697810] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000
[    1.698047] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000
[    1.698296] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000
[    1.698547] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000
[    1.698786] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000
[    1.699033] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000
[    1.699266] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000
[    1.699503] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000
[    1.699736] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000
[    1.699969] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000
[    1.700206] pci 0000:ff:0c.5: [8086:0eea] type 00 class 0x088000
[    1.700447] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000
[    1.700680] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000
[    1.700914] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000
[    1.701113] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000
[    1.701348] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000
[    1.701581] pci 0000:ff:0d.5: [8086:0eeb] type 00 class 0x088000
[    1.701835] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000
[    1.702078] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100
[    1.702360] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000
[    1.702694] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000
[    1.703029] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000
[    1.703362] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000
[    1.703695] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000
[    1.704028] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000
[    1.704369] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000
[    1.704707] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000
[    1.705043] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000
[    1.705380] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000
[    1.705719] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000
[    1.706059] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000
[    1.706393] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000
[    1.706726] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000
[    1.707054] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000
[    1.707293] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100
[    1.707538] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000
[    1.707773] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100
[    1.708027] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000
[    1.708261] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000
[    1.708493] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000
[    1.708777] pci 0000:ff:1c.0: [8086:0e60] type 00 class 0x088000
[    1.709016] pci 0000:ff:1c.1: [8086:0e38] type 00 class 0x110100
[    1.709311] pci 0000:ff:1d.0: [8086:0e68] type 00 class 0x088000
[    1.709646] pci 0000:ff:1d.1: [8086:0e79] type 00 class 0x088000
[    1.709991] pci 0000:ff:1d.2: [8086:0e6a] type 00 class 0x088000
[    1.710327] pci 0000:ff:1d.3: [8086:0e6b] type 00 class 0x088000
[    1.710660] pci 0000:ff:1d.4: [8086:0e6c] type 00 class 0x088000
[    1.710999] pci 0000:ff:1d.5: [8086:0e6d] type 00 class 0x088000
[    1.711346] pci 0000:ff:1e.0: [8086:0ef0] type 00 class 0x088000
[    1.711680] pci 0000:ff:1e.1: [8086:0ef1] type 00 class 0x088000
[    1.712019] pci 0000:ff:1e.2: [8086:0ef2] type 00 class 0x088000
[    1.712353] pci 0000:ff:1e.3: [8086:0ef3] type 00 class 0x088000
[    1.712687] pci 0000:ff:1e.4: [8086:0ef4] type 00 class 0x088000
[    1.713026] pci 0000:ff:1e.5: [8086:0ef5] type 00 class 0x088000
[    1.713369] pci 0000:ff:1e.6: [8086:0ef6] type 00 class 0x088000
[    1.713703] pci 0000:ff:1e.7: [8086:0ef7] type 00 class 0x088000
[    1.714175] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    1.714261] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    1.714345] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15)
[    1.714428] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 *4 5 6 10 11 12 14 15)
[    1.714511] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.714594] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.714677] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.714760] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    1.717118] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 4/0x1 ignored.
[    1.717118] ACPI: Unable to map lapic to logical cpu number
[    1.717243] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 5/0x3 ignored.
[    1.717244] ACPI: Unable to map lapic to logical cpu number
[    1.717392] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 6/0x5 ignored.
[    1.717393] ACPI: Unable to map lapic to logical cpu number
[    1.717540] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 7/0x7 ignored.
[    1.717540] ACPI: Unable to map lapic to logical cpu number
[    1.717630] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 8/0x8 ignored.
[    1.717631] ACPI: Unable to map lapic to logical cpu number
[    1.717724] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 9/0x9 ignored.
[    1.717725] ACPI: Unable to map lapic to logical cpu number
[    1.717815] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 10/0xa ignored.
[    1.717816] ACPI: Unable to map lapic to logical cpu number
[    1.717910] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 11/0xb ignored.
[    1.717910] ACPI: Unable to map lapic to logical cpu number
[    1.718005] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 12/0x10 ignored.
[    1.718006] ACPI: Unable to map lapic to logical cpu number
[    1.718100] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 13/0x11 ignored.
[    1.718101] ACPI: Unable to map lapic to logical cpu number
[    1.718192] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 14/0x12 ignored.
[    1.718193] ACPI: Unable to map lapic to logical cpu number
[    1.718288] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 15/0x13 ignored.
[    1.718289] ACPI: Unable to map lapic to logical cpu number
[    1.718380] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 16/0x14 ignored.
[    1.718381] ACPI: Unable to map lapic to logical cpu number
[    1.718475] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 17/0x15 ignored.
[    1.718476] ACPI: Unable to map lapic to logical cpu number
[    1.718567] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 18/0x16 ignored.
[    1.718567] ACPI: Unable to map lapic to logical cpu number
[    1.718662] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 19/0x17 ignored.
[    1.718663] ACPI: Unable to map lapic to logical cpu number
[    1.718754] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 20/0x18 ignored.
[    1.718755] ACPI: Unable to map lapic to logical cpu number
[    1.718850] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 21/0x19 ignored.
[    1.718851] ACPI: Unable to map lapic to logical cpu number
[    1.718943] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 22/0x1a ignored.
[    1.718944] ACPI: Unable to map lapic to logical cpu number
[    1.719057] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 23/0x1b ignored.
[    1.719058] ACPI: Unable to map lapic to logical cpu number
[    1.719564] xen:balloon: Initialising balloon driver
[    1.719564] iommu: Default domain type: Translated 
[    1.721106] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[    1.721106] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.721107] pci 0000:03:00.0: vgaarb: bridge control possible
[    1.721108] vgaarb: loaded
[    1.721199] EDAC MC: Ver: 3.0.0
[    1.722173] NetLabel: Initializing
[    1.722173] NetLabel:  domain hash size = 128
[    1.722173] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.722173] NetLabel:  unlabeled traffic allowed by default
[    1.722173] PCI: Using ACPI for IRQ routing
[    1.750682] PCI: pci_cache_line_size set to 64 bytes
[    1.751527] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    1.751529] e820: reserve RAM buffer [mem 0x80062000-0x83ffffff]
[    1.753064] clocksource: Switched to clocksource tsc-early
[    1.764675] VFS: Disk quotas dquot_6.6.0
[    1.764692] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.764713] hugetlbfs: disabling because there are no supported hugepage sizes
[    1.764806] AppArmor: AppArmor Filesystem Enabled
[    1.764823] pnp: PnP ACPI init
[    1.764972] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    1.764974] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    1.764975] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    1.764976] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    1.764978] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    1.764979] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[    1.764981] system 00:00: [mem 0xfee00000-0xfeefffff] has been reserved
[    1.764987] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.765134] system 00:01: [mem 0xfbffc000-0xfbffdfff] could not be reserved
[    1.765139] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.765369] system 00:02: [io  0x0a00-0x0a1f] has been reserved
[    1.765370] system 00:02: [io  0x0a20-0x0a2f] has been reserved
[    1.765372] system 00:02: [io  0x0a30-0x0a3f] has been reserved
[    1.765376] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.765405] xen: registering gsi 1 triggering 1 polarity 0
[    1.765450] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    1.765487] xen: registering gsi 12 triggering 1 polarity 0
[    1.765528] pnp 00:04: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[    1.765556] xen: registering gsi 8 triggering 1 polarity 0
[    1.765591] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.765686] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    1.765691] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.765967] system 00:07: [io  0x0400-0x0453] has been reserved
[    1.765969] system 00:07: [io  0x0458-0x047f] has been reserved
[    1.765970] system 00:07: [io  0x1180-0x119f] has been reserved
[    1.765972] system 00:07: [io  0x0500-0x057f] has been reserved
[    1.765974] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.765975] system 00:07: [mem 0xfec00000-0xfecfffff] could not be reserved
[    1.765977] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    1.765981] system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.766096] system 00:08: [io  0x0454-0x0457] has been reserved
[    1.766101] system 00:08: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    1.766562] pnp: PnP ACPI: found 9 devices
[    1.785356] PM-Timer failed consistency check  (0xffffff) - aborting.
[    1.785419] NET: Registered protocol family 2
[    1.785595] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    1.785614] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.785663] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    1.785685] TCP: Hash tables configured (established 16384 bind 16384)
[    1.785724] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.785734] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.785919] NET: Registered protocol family 1
[    1.785924] NET: Registered protocol family 44
[    1.785952] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.785991] pci 0000:00:01.1: PCI bridge to [bus 02]
[    1.786029] pci 0000:00:02.0: PCI bridge to [bus 03]
[    1.786043] pci 0000:00:02.0:   bridge window [mem 0xf9000000-0xfb0fffff]
[    1.786053] pci 0000:00:02.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[    1.786071] pci 0000:00:02.1: PCI bridge to [bus 04]
[    1.786108] pci 0000:00:02.2: PCI bridge to [bus 05]
[    1.786145] pci 0000:00:02.3: PCI bridge to [bus 06]
[    1.786183] pci 0000:00:03.0: PCI bridge to [bus 07]
[    1.786220] pci 0000:00:03.1: PCI bridge to [bus 08]
[    1.786257] pci 0000:00:03.2: PCI bridge to [bus 09]
[    1.786294] pci 0000:00:03.3: PCI bridge to [bus 0a]
[    1.786332] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[    1.786371] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[    1.786385] pci 0000:00:1c.1:   bridge window [mem 0xfb200000-0xfb2fffff]
[    1.786412] pci 0000:00:1c.4: PCI bridge to [bus 0d]
[    1.786418] pci 0000:00:1c.4:   bridge window [io  0xe000-0xefff]
[    1.786432] pci 0000:00:1c.4:   bridge window [mem 0xfb100000-0xfb1fffff]
[    1.786458] pci 0000:00:1e.0: PCI bridge to [bus 0e]
[    1.786497] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    1.786498] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    1.786499] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    1.786501] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    1.786502] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    1.786503] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    1.786504] pci_bus 0000:00: resource 10 [mem 0xcc000000-0xffffffff window]
[    1.786505] pci_bus 0000:00: resource 11 [mem 0x440000000-0x3fffffffffff window]
[    1.786507] pci_bus 0000:03: resource 1 [mem 0xf9000000-0xfb0fffff]
[    1.786508] pci_bus 0000:03: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
[    1.786510] pci_bus 0000:0c: resource 1 [mem 0xfb200000-0xfb2fffff]
[    1.786511] pci_bus 0000:0d: resource 0 [io  0xe000-0xefff]
[    1.786513] pci_bus 0000:0d: resource 1 [mem 0xfb100000-0xfb1fffff]
[    1.786514] pci_bus 0000:0e: resource 4 [io  0x0000-0x03af window]
[    1.786515] pci_bus 0000:0e: resource 5 [io  0x03e0-0x0cf7 window]
[    1.786516] pci_bus 0000:0e: resource 6 [io  0x03b0-0x03df window]
[    1.786517] pci_bus 0000:0e: resource 7 [io  0x0d00-0xffff window]
[    1.786518] pci_bus 0000:0e: resource 8 [mem 0x000a0000-0x000bffff window]
[    1.786519] pci_bus 0000:0e: resource 9 [mem 0x000c0000-0x000dffff window]
[    1.786521] pci_bus 0000:0e: resource 10 [mem 0xcc000000-0xffffffff window]
[    1.786522] pci_bus 0000:0e: resource 11 [mem 0x440000000-0x3fffffffffff window]
[    1.786652] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[    1.786824] xen: registering gsi 16 triggering 0 polarity 1
[    1.786848] xen: --> pirq=16 -> irq=16 (gsi=16)
[    1.787085] xen: registering gsi 23 triggering 0 polarity 1
[    1.787103] xen: --> pirq=23 -> irq=23 (gsi=23)
[    1.787304] pci 0000:03:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.787386] xen: registering gsi 16 triggering 0 polarity 1
[    1.787390] Already setup the GSI :16
[    1.787432] xen: registering gsi 17 triggering 0 polarity 1
[    1.787448] xen: --> pirq=17 -> irq=17 (gsi=17)
[    1.787894] PCI: CLS 64 bytes, default 64
[    1.787945] Trying to unpack rootfs image as initramfs...
[    2.320780] Freeing initrd memory: 34772K
[    2.320830] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x23f45725f32, max_idle_ns: 440795273770 ns
[    2.320914] clocksource: Switched to clocksource tsc
[    2.321505] Initialise system trusted keyrings
[    2.321517] Key type blacklist registered
[    2.321665] workingset: timestamp_bits=36 max_order=18 bucket_order=0
[    2.322761] zbud: loaded
[    2.323218] integrity: Platform Keyring initialized
[    2.323221] Key type asymmetric registered
[    2.323223] Asymmetric key parser 'x509' registered
[    2.323233] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    2.323389] io scheduler mq-deadline registered
[    2.323720] xen: registering gsi 26 triggering 0 polarity 1
[    2.323748] xen: --> pirq=26 -> irq=26 (gsi=26)
[    2.324290] xen: registering gsi 26 triggering 0 polarity 1
[    2.324295] Already setup the GSI :26
[    2.324791] xen: registering gsi 32 triggering 0 polarity 1
[    2.324809] xen: --> pirq=32 -> irq=32 (gsi=32)
[    2.325297] xen: registering gsi 32 triggering 0 polarity 1
[    2.325302] Already setup the GSI :32
[    2.325789] xen: registering gsi 32 triggering 0 polarity 1
[    2.325793] Already setup the GSI :32
[    2.326277] xen: registering gsi 32 triggering 0 polarity 1
[    2.326282] Already setup the GSI :32
[    2.326766] xen: registering gsi 40 triggering 0 polarity 1
[    2.326784] xen: --> pirq=40 -> irq=40 (gsi=40)
[    2.327285] xen: registering gsi 40 triggering 0 polarity 1
[    2.327289] Already setup the GSI :40
[    2.327768] xen: registering gsi 40 triggering 0 polarity 1
[    2.327773] Already setup the GSI :40
[    2.328262] xen: registering gsi 40 triggering 0 polarity 1
[    2.328267] Already setup the GSI :40
[    2.328756] xen: registering gsi 17 triggering 0 polarity 1
[    2.328760] Already setup the GSI :17
[    2.329432] xen: registering gsi 17 triggering 0 polarity 1
[    2.329437] Already setup the GSI :17
[    2.329799] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.329811] intel_idle: MWAIT substates: 0x1120
[    2.329991] Monitor-Mwait will be used to enter C-1 state
[    2.330020] ACPI: \_SB_.SCK0.C000: Found 1 idle states
[    2.330022] intel_idle: v0.5.1 model 0x3E
[    2.330027] intel_idle: intel_idle yielding to none
[    2.330197] ACPI: \_SB_.SCK0.C000: Found 1 idle states
[    2.330520] ACPI: \_SB_.SCK0.C002: Found 1 idle states
[    2.330833] ACPI: \_SB_.SCK0.C004: Found 1 idle states
[    2.331136] ACPI: \_SB_.SCK0.C006: Found 1 idle states
[    2.331791] xen_mcelog: /dev/mcelog registered by Xen
[    2.332369] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.333094] hpet_acpi_add: no address or irqs in _CRS
[    2.333117] Linux agpgart interface v0.103
[    2.333215] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    2.333216] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[    2.333618] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    2.334259] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.334265] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.334468] mousedev: PS/2 mouse device common for all mice
[    2.334546] rtc_cmos 00:05: RTC can wake from S4
[    2.334912] rtc_cmos 00:05: registered as rtc0
[    2.334989] rtc_cmos 00:05: setting system clock to 2021-02-01T15:19:56 UTC (1612192796)
[    2.335014] rtc_cmos 00:05: alarms up to one month, y3k, 114 bytes nvram
[    2.335023] intel_pstate: CPU model not supported
[    2.335146] ledtrig-cpu: registered to indicate activity on CPUs
[    2.335905] NET: Registered protocol family 10
[    2.356778] Segment Routing with IPv6
[    2.356803] mip6: Mobile IPv6
[    2.356806] NET: Registered protocol family 17
[    2.356919] mpls_gso: MPLS GSO support
[    2.357218] IPI shorthand broadcast: enabled
[    2.357226] sched_clock: Marking stable (2278760525, 78422631)->(2371388831, -14205675)
[    2.357516] registered taskstats version 1
[    2.357519] Loading compiled-in X.509 certificates
[    2.397333] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
[    2.397353] Loaded X.509 cert 'Debian Secure Boot Signer 2020: 00b55eb3b9'
[    2.397390] zswap: loaded using pool lzo/zbud
[    2.397798] Key type ._fscrypt registered
[    2.397799] Key type .fscrypt registered
[    2.397800] Key type fscrypt-provisioning registered
[    2.397846] AppArmor: AppArmor sha1 policy hashing enabled
[    2.400414] Freeing unused kernel image (initmem) memory: 2380K
[    2.433151] Write protecting the kernel read-only data: 18432k
[    2.447246] Freeing unused kernel image (text/rodata gap) memory: 2040K
[    2.447317] Freeing unused kernel image (rodata/data gap) memory: 36K
[    2.899184] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.899192] Run /init as init process
[    2.899194]   with arguments:
[    2.899194]     /init
[    2.899195]     placeholder
[    2.899196]   with environment:
[    2.899197]     HOME=/
[    2.899198]     TERM=linux
[    3.185964] xen: registering gsi 18 triggering 0 polarity 1
[    3.185997] xen: --> pirq=18 -> irq=18 (gsi=18)
[    3.186159] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    3.186879] i2c i2c-0: 4/4 memory slots populated (from DMI)
[    3.222630] xen: registering gsi 16 triggering 0 polarity 1
[    3.222636] Already setup the GSI :16
[    3.231037] ACPI: bus type USB registered
[    3.231060] usbcore: registered new interface driver usbfs
[    3.231067] usbcore: registered new interface driver hub
[    3.231175] usbcore: registered new device driver usb
[    3.231587] SCSI subsystem initialized
[    3.243171] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.244707] ehci-pci: EHCI PCI platform driver
[    3.245048] xen: registering gsi 16 triggering 0 polarity 1
[    3.245053] Already setup the GSI :16
[    3.245182] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    3.245193] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.245228] ehci-pci 0000:00:1a.0: debug port 2
[    3.249198] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    3.249493] ehci-pci 0000:00:1a.0: irq 16, io mem 0xfb302000
[    3.255840] libata version 3.00 loaded.
[    3.256544] libphy: r8169: probed
[    3.256787] r8169 0000:0d:00.0 eth0: RTL8168h/8111h, 00:e0:4c:0a:52:97, XID 541, IRQ 89
[    3.256790] r8169 0000:0d:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    3.265121] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.265294] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    3.265297] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.265299] usb usb1: Product: EHCI Host Controller
[    3.265303] usb usb1: Manufacturer: Linux 5.10.0-1-amd64 ehci_hcd
[    3.265311] usb usb1: SerialNumber: 0000:00:1a.0
[    3.265527] hub 1-0:1.0: USB hub found
[    3.266129] hub 1-0:1.0: 2 ports detected
[    3.266564] xen: registering gsi 23 triggering 0 polarity 1
[    3.266570] Already setup the GSI :23
[    3.266652] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.266661] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.266696] ehci-pci 0000:00:1d.0: debug port 2
[    3.267375] xen: registering gsi 17 triggering 0 polarity 1
[    3.267381] Already setup the GSI :17
[    3.270651] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    3.271748] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb301000
[    3.272531] ahci 0000:00:1f.2: version 3.0
[    3.272652] xen: registering gsi 19 triggering 0 polarity 1
[    3.272686] xen: --> pirq=19 -> irq=19 (gsi=19)
[    3.272897] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
[    3.272901] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    3.285129] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.285289] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    3.285292] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.285294] usb usb2: Product: EHCI Host Controller
[    3.285296] usb usb2: Manufacturer: Linux 5.10.0-1-amd64 ehci_hcd
[    3.285297] usb usb2: SerialNumber: 0000:00:1d.0
[    3.285512] hub 2-0:1.0: USB hub found
[    3.285538] hub 2-0:1.0: 2 ports detected
[    3.286219] xhci_hcd 0000:0c:00.0: xHCI Host Controller
[    3.286228] xhci_hcd 0000:0c:00.0: new USB bus registered, assigned bus number 3
[    3.286520] xhci_hcd 0000:0c:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x0000000000000890
[    3.287292] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    3.287294] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.287296] usb usb3: Product: xHCI Host Controller
[    3.287298] usb usb3: Manufacturer: Linux 5.10.0-1-amd64 xhci-hcd
[    3.287300] usb usb3: SerialNumber: 0000:0c:00.0
[    3.287695] hub 3-0:1.0: USB hub found
[    3.287726] hub 3-0:1.0: 1 port detected
[    3.288010] xhci_hcd 0000:0c:00.0: xHCI Host Controller
[    3.288016] xhci_hcd 0000:0c:00.0: new USB bus registered, assigned bus number 4
[    3.288020] xhci_hcd 0000:0c:00.0: Host supports USB 3.0 SuperSpeed
[    3.288206] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    3.288209] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.288210] usb usb4: Product: xHCI Host Controller
[    3.288212] usb usb4: Manufacturer: Linux 5.10.0-1-amd64 xhci-hcd
[    3.288214] usb usb4: SerialNumber: 0000:0c:00.0
[    3.288582] hub 4-0:1.0: USB hub found
[    3.288615] hub 4-0:1.0: 4 ports detected
[    3.289502] scsi host0: ahci
[    3.289864] scsi host1: ahci
[    3.292868] r8169 0000:0d:00.0 enp13s0: renamed from eth0
[    3.296341] scsi host2: ahci
[    3.297158] scsi host3: ahci
[    3.297682] scsi host4: ahci
[    3.298147] scsi host5: ahci
[    3.298236] ata1: SATA max UDMA/133 abar m2048@0xfb300000 port 0xfb300100 irq 90
[    3.298239] ata2: SATA max UDMA/133 abar m2048@0xfb300000 port 0xfb300180 irq 90
[    3.298240] ata3: DUMMY
[    3.298241] ata4: DUMMY
[    3.298243] ata5: DUMMY
[    3.298244] ata6: DUMMY
[    3.601132] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    3.612129] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.612249] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.612427] ata1.00: ATA-11: KINGSTON SUV400S37120G, 0C3FD6SD, max UDMA/133
[    3.612429] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    3.612963] ata1.00: configured for UDMA/133
[    3.613122] scsi 0:0:0:0: Direct-Access     ATA      KINGSTON SUV400S D6SD PQ: 0 ANSI: 5
[    3.621135] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    3.621139] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    3.628856] ata2.00: ATA-8: KINGSTON SV300S37A120G, 525ABBF0, max UDMA/133
[    3.628859] ata2.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    3.650125] ata2.00: configured for UDMA/133
[    3.650270] scsi 1:0:0:0: Direct-Access     ATA      KINGSTON SV300S3 BBF0 PQ: 0 ANSI: 5
[    3.661147] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[    3.661150] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    3.661179] sd 0:0:0:0: [sda] Write Protect is off
[    3.661182] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.661199] sd 1:0:0:0: [sdb] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[    3.661226] sd 1:0:0:0: [sdb] Write Protect is off
[    3.661228] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.661238] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.661277] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.695557]  sda: sda1 sda2
[    3.696149] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.698510] sd 1:0:0:0: [sdb] Attached SCSI disk
[    3.761182] device-mapper: uevent: version 1.0.3
[    3.761310] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[    3.769430] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    3.769433] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.769892] hub 1-1:1.0: USB hub found
[    3.770066] hub 1-1:1.0: 6 ports detected
[    3.770833] usb 3-1: New USB device found, idVendor=2109, idProduct=3431, bcdDevice= 4.20
[    3.770836] usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.770838] usb 3-1: Product: USB2.0 Hub
[    3.771997] hub 3-1:1.0: USB hub found
[    3.772307] hub 3-1:1.0: 4 ports detected
[    3.781438] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    3.781441] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.781745] hub 2-1:1.0: USB hub found
[    3.781832] hub 2-1:1.0: 8 ports detected
[    3.915253] PM: Image not found (code -22)
[    4.065104] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
[    4.073093] usb 2-1.4: new high-speed USB device number 3 using ehci-pci
[    4.083033] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    4.173983] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[    4.187304] usb 1-1.2: New USB device found, idVendor=099a, idProduct=610c, bcdDevice= 0.01
[    4.187307] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.187309] usb 1-1.2: Product: USB Multimedia Keyboard 
[    4.187310] usb 1-1.2: Manufacturer:  
[    4.192538] usb 2-1.4: New USB device found, idVendor=148f, idProduct=7601, bcdDevice= 0.00
[    4.192540] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.192541] usb 2-1.4: Product: 802.11 n WLAN
[    4.192542] usb 2-1.4: Manufacturer: MediaTek
[    4.192543] usb 2-1.4: SerialNumber: 1.0
[    4.264431] systemd[1]: Inserted module 'autofs4'
[    4.310242] systemd[1]: systemd 247.2-5 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
[    4.310522] systemd[1]: Detected architecture x86-64.
[    4.313124] systemd[1]: Set hostname to <debian>.
[    4.387063] systemd-sysv-generator[225]: SysV service '/etc/init.d/xen' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    4.402276] systemd-sysv-generator[225]: SysV service '/etc/init.d/exim4' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    4.402403] systemd-sysv-generator[225]: SysV service '/etc/init.d/xencommons' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    4.404976] systemd-sysv-generator[225]: SysV service '/etc/init.d/isc-dhcp-server' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    4.467049] systemd[1]: /lib/systemd/system/virtlogd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlogd-sock → /run/libvirt/virtlogd-sock; please update the unit file accordingly.
[    4.475984] systemd[1]: /lib/systemd/system/virtlogd-admin.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlogd-admin-sock → /run/libvirt/virtlogd-admin-sock; please update the unit file accordingly.
[    4.476561] systemd[1]: /lib/systemd/system/virtlockd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlockd-sock → /run/libvirt/virtlockd-sock; please update the unit file accordingly.
[    4.477606] systemd[1]: /lib/systemd/system/virtlockd-admin.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlockd-admin-sock → /run/libvirt/virtlockd-admin-sock; please update the unit file accordingly.
[    4.529016] systemd[1]: Queued start job for default target Graphical Interface.
[    4.530954] systemd[1]: Created slice Virtual Machine and Container Slice.
[    4.532543] systemd[1]: Created slice system-getty.slice.
[    4.533497] systemd[1]: Created slice system-modprobe.slice.
[    4.534391] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    4.535251] systemd[1]: Created slice User and Session Slice.
[    4.535872] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    4.536478] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.537272] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.537782] systemd[1]: Reached target Local Encrypted Volumes.
[    4.538282] systemd[1]: Reached target Paths.
[    4.538754] systemd[1]: Reached target Remote File Systems.
[    4.539220] systemd[1]: Reached target Slices.
[    4.539709] systemd[1]: Reached target Libvirt guests shutdown.
[    4.540306] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    4.540940] systemd[1]: Listening on LVM2 poll daemon socket.
[    4.542503] systemd[1]: Listening on Syslog Socket.
[    4.543147] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.543716] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    4.544562] systemd[1]: Listening on Journal Audit Socket.
[    4.545266] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.546000] systemd[1]: Listening on Journal Socket.
[    4.546726] systemd[1]: Listening on udev Control Socket.
[    4.547376] systemd[1]: Listening on udev Kernel Socket.
[    4.548178] systemd[1]: Condition check resulted in Huge Pages File System being skipped.
[    4.550946] systemd[1]: Mounting POSIX Message Queue File System...
[    4.554870] systemd[1]: Mounting Kernel Debug File System...
[    4.559269] systemd[1]: Mounting Kernel Trace File System...
[    4.560475] systemd[1]: Finished Availability of block devices.
[    4.564386] systemd[1]: Starting Set the console keyboard layout...
[    4.568389] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    4.571768] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    4.575519] systemd[1]: Starting Load Kernel Module configfs...
[    4.579312] systemd[1]: Starting Load Kernel Module drm...
[    4.583138] systemd[1]: Starting Load Kernel Module fuse...
[    4.584711] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    4.584859] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    4.591475] systemd[1]: Starting Journal Service...
[    4.608127] systemd[1]: Starting Load Kernel Modules...
[    4.611369] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.616077] systemd[1]: Starting Coldplug All udev Devices...
[    4.616331] fuse: init (API version 7.32)
[    4.625621] systemd[1]: Mounted POSIX Message Queue File System.
[    4.626914] systemd[1]: Mounted Kernel Debug File System.
[    4.627686] systemd[1]: Mounted Kernel Trace File System.
[    4.628985] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    4.630519] systemd[1]: modprobe@configfs.service: Succeeded.
[    4.631114] systemd[1]: Finished Load Kernel Module configfs.
[    4.632434] systemd[1]: modprobe@fuse.service: Succeeded.
[    4.633017] systemd[1]: Finished Load Kernel Module fuse.
[    4.637524] systemd[1]: Mounting FUSE Control File System...
[    4.641402] systemd[1]: Mounting Kernel Configuration File System...
[    4.643471] systemd[1]: modprobe@drm.service: Succeeded.
[    4.644153] systemd[1]: Finished Load Kernel Module drm.
[    4.651290] systemd[1]: Mounted FUSE Control File System.
[    4.655065] xen:xen_evtchn: Event-channel device installed
[    4.655621] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[    4.658810] systemd[1]: Finished Remount Root and Kernel File Systems.
[    4.660486] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    4.660578] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[    4.664090] systemd[1]: Starting Load/Save Random Seed...
[    4.675933] systemd[1]: Starting Create System Users...
[    4.681305] systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[    4.682306] systemd[1]: Mounted Kernel Configuration File System.
[    4.704614] xen_pciback: backend is vpci
[    4.723145] systemd[1]: Finished Load/Save Random Seed.
[    4.724511] systemd[1]: Condition check resulted in First Boot Complete being skipped.
[    4.727981] systemd[1]: Finished Create System Users.
[    4.731300] systemd[1]: Starting Create Static Device Nodes in /dev...
[    4.767047] systemd[1]: Finished Create Static Device Nodes in /dev.
[    4.768633] systemd[1]: Finished Load Kernel Modules.
[    4.772026] systemd[1]: Starting Apply Kernel Variables...
[    4.777154] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[    4.820252] systemd[1]: Finished Set the console keyboard layout.
[    4.821024] systemd[1]: Reached target Local File Systems (Pre).
[    4.821654] systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
[    4.821699] systemd[1]: Reached target Local File Systems.
[    4.822306] systemd[1]: Reached target Containers.
[    4.825600] systemd[1]: Starting Load AppArmor profiles...
[    4.828601] systemd[1]: Starting Set console font and keymap...
[    4.829306] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped.
[    4.829499] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
[    4.829648] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
[    4.831343] systemd[1]: Finished Apply Kernel Variables.
[    4.928612] systemd[1]: Started Rule-based Manager for Device Events and Files.
[    4.946298] systemd[1]: Finished Set console font and keymap.
[    4.965869] systemd[1]: Started Journal Service.
[    5.058420] audit: type=1400 audit(1612192799.219:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=282 comm="apparmor_parser"
[    5.058427] audit: type=1400 audit(1612192799.219:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=282 comm="apparmor_parser"
[    5.058568] audit: type=1400 audit(1612192799.219:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=284 comm="apparmor_parser"
[    5.059173] audit: type=1400 audit(1612192799.219:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/libvirtd" pid=281 comm="apparmor_parser"
[    5.059178] audit: type=1400 audit(1612192799.219:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/libvirtd//qemu_bridge_helper" pid=281 comm="apparmor_parser"
[    5.063356] audit: type=1400 audit(1612192799.223:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=283 comm="apparmor_parser"
[    5.063361] audit: type=1400 audit(1612192799.223:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=283 comm="apparmor_parser"
[    5.063365] audit: type=1400 audit(1612192799.223:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=283 comm="apparmor_parser"
[    5.075832] audit: type=1400 audit(1612192799.235:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="virt-aa-helper" pid=285 comm="apparmor_parser"
[    5.086238] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
[    5.101154] ACPI: Power Button [PWRB]
[    5.101281] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[    5.101362] ACPI: Power Button [PWRF]
[    6.632356] hid: raw HID events driver (C) Jiri Kosina
[    6.637863] iTCO_vendor_support: vendor-support=0
[    6.644457] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.644506] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    6.644755] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.650057] usbcore: registered new interface driver usbhid
[    6.650060] usbhid: USB HID core driver
[    6.669050] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    6.686254] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    6.728059] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    6.728395] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
[    6.728737] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[    6.729232] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    6.730315] platform regulatory.0: firmware: failed to load regulatory.db (-2)
[    6.730317] firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
[    6.730320] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    6.730323] cfg80211: failed to load regulatory.db
[    6.834092] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    6.959121] usb 2-1.4: reset high-speed USB device number 3 using ehci-pci
[    7.068098] mt7601u 2-1.4:1.0: ASIC revision: 76010001 MAC revision: 76010500
[    7.069940] mt7601u 2-1.4:1.0: firmware: direct-loading firmware mt7601u.bin
[    7.069948] mt7601u 2-1.4:1.0: Firmware Version: 0.1.00 Build: 7640 Build time: 201302052146____
[    7.086386] input:   USB Multimedia Keyboard  as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:099A:610C.0001/input/input6
[    7.089904] cryptd: max_cpu_qlen set to 1000
[    7.094544] Adding 3905532k swap on /dev/sda1.  Priority:-2 extents:1 across:3905532k SSFS
[    7.148468] AVX version of gcm_enc/dec engaged.
[    7.148470] AES CTR mode by8 optimization enabled
[    7.149710] hid-generic 0003:099A:610C.0001: input,hidraw0: USB HID v1.00 Keyboard [  USB Multimedia Keyboard ] on usb-0000:00:1a.0-1.2/input0
[    7.150072] input:   USB Multimedia Keyboard  Consumer Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:099A:610C.0002/input/input7
[    7.213264] input:   USB Multimedia Keyboard  System Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:099A:610C.0002/input/input8
[    7.213742] hid-generic 0003:099A:610C.0002: input,hidraw1: USB HID v1.00 Device [  USB Multimedia Keyboard ] on usb-0000:00:1a.0-1.2/input1
[    7.475713] mt7601u 2-1.4:1.0: EEPROM ver:0d fae:00
[    7.704506] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    7.706192] usbcore: registered new interface driver mt7601u
[    7.718325] mt7601u 2-1.4:1.0 wlx20e0160064bd: renamed from wlan0
[   10.459142] wlx20e0160064bd: authenticate with 68:ff:7b:47:86:17
[   10.493855] wlx20e0160064bd: send auth to 68:ff:7b:47:86:17 (try 1/3)
[   10.497613] wlx20e0160064bd: authenticated
[   10.501110] wlx20e0160064bd: associate with 68:ff:7b:47:86:17 (try 1/3)
[   10.508058] wlx20e0160064bd: RX AssocResp from 68:ff:7b:47:86:17 (capab=0x431 status=0 aid=2)
[   10.545847] wlx20e0160064bd: associated
[   10.599233] IPv6: ADDRCONF(NETDEV_CHANGE): wlx20e0160064bd: link becomes ready
[   14.156418] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   14.190609] br-lan: port 1(enp13s0) entered blocking state
[   14.190611] br-lan: port 1(enp13s0) entered disabled state
[   14.190697] device enp13s0 entered promiscuous mode
[   14.195933] r8169 0000:0d:00.0: firmware: direct-loading firmware rtl_nic/rtl8168h-2.fw
[   14.221144] Generic FE-GE Realtek PHY r8169-d00:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-d00:00, irq=IGNORE)
[   14.401259] r8169 0000:0d:00.0 enp13s0: Link is Down
[   14.405272] br-lan: port 1(enp13s0) entered blocking state
[   14.405274] br-lan: port 1(enp13s0) entered forwarding state
[   15.189165] br-lan: port 1(enp13s0) entered disabled state

^ permalink raw reply	[relevance 3%]

* Re: Problems with APIC on versions 4.9 and later (4.8 works)
  @ 2021-02-01 14:46  3%                               ` Claudemir Todo Bom
    0 siblings, 1 reply; 200+ results
From: Claudemir Todo Bom @ 2021-02-01 14:46 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel

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

Tested first without the debug patch and with following parameters:

xen: dom0_mem=1024M,max:2048M dom0_max_vcpus=4 dom0_vcpus_pin=true smt=true
kernel: loglevel=3

same behaviour as before... black screen right after the xen messages.

adding earlyprintk=xen to the kernel command line is sufficient to
make it boot, I can imagine this can be happening because Xen is not
releasing console to the kernel at that moment.

The system worked well (with earlyprintk=xen), tested with the "yes
stress test" mentioned before on a guest and on dom0.

Then, I installed the debug patch and booted it again, it also needed
the earlyprintk=xen parameter on the kernel command line. I've also
added console_timestamps=boot to the xen command line in order to get
the time of the messages.

I'm attaching the outputs of "xl dmesg" and "dmesg" on this message.

Think it is almost done! WIll wait for the next round of tests!

Thank you very much!

Em seg., 1 de fev. de 2021 às 09:47, Jan Beulich <jbeulich@suse.com> escreveu:
>
> On 29.01.2021 20:31, Claudemir Todo Bom wrote:
> > I've applied both patches, system didn't booted, used following parameters:
> >
> > xen: dom0_mem=1024M,max:2048M dom0_max_vcpus=4 dom0_vcpus_pin=true smt=true
> > kernel: loglevel=3
> >
> > The screen cleared right after the initial xen messages and frozen
> > there for a few minutes until I restarted the system.
> >
> > I've added "vga=text-80x25,keep" to the xen command line and
> > "nomodeset" to the kernel command line, hoping to get some more info
> > and surprisingly this was sufficient to make system boot!
> >
> > System prompt took a lot to appear, the kernel driver for the usb
> > keyboard loaded after 3 minutes and the driver for the usb wifi dongle
> > I am using loaded about five minutes after kernel boot, and I had to
> > issue "ifup -a" to get an ip address from the dhcp server, and it took
> > almost one minute to get it!
>
> I was able to repro this behavior, by deliberately screwing up
> CPU0's TSC early during boot. This of course did make it a lot
> easier to find and fix the problem. I've Cc-ed you on the full
> 3-patch series that I've sent a minute ago, because while you
> may continue to opt for ignoring the first patch, you'll now
> need the latter two. And as before, the updated debugging patch
> below.
>
> Jan
>
> --- a/xen/arch/x86/time.c
> +++ b/xen/arch/x86/time.c
> @@ -1558,6 +1558,12 @@ static void local_time_calibration(void)
>   * TSC Reliability check
>   */
>
> +static struct {//temp
> + unsigned cpu;
> + signed iter;
> + cycles_t prev, now;
> +} check_log[NR_CPUS + 4];
> +static unsigned check_idx;//temp
>  /*
>   * The Linux original version of this function is
>   * Copyright (c) 2006, Red Hat, Inc., Ingo Molnar
> @@ -1566,6 +1572,7 @@ static void check_tsc_warp(unsigned long
>  {
>      static DEFINE_SPINLOCK(sync_lock);
>      static cycles_t last_tsc;
> +unsigned idx, cpu = smp_processor_id();//temp
>
>      cycles_t start, now, prev, end;
>      int i;
> @@ -1576,6 +1583,15 @@ static void check_tsc_warp(unsigned long
>      end = start + tsc_khz * 20ULL;
>      now = start;
>
> +{//temp
> + spin_lock(&sync_lock);
> + idx = check_idx++;
> + check_log[idx].cpu = cpu;
> + check_log[idx].iter = -1;
> + check_log[idx].now = now;
> + spin_unlock(&sync_lock);
> +}
> +
>      for ( i = 0; ; i++ )
>      {
>          /*
> @@ -1610,7 +1626,14 @@ static void check_tsc_warp(unsigned long
>          {
>              spin_lock(&sync_lock);
>              if ( *max_warp < prev - now )
> +{//temp
>                  *max_warp = prev - now;
> + idx = check_idx++;
> + check_log[idx].cpu = cpu;
> + check_log[idx].iter = i;
> + check_log[idx].prev = prev;
> + check_log[idx].now = now;
> +}
>              spin_unlock(&sync_lock);
>          }
>      }
> @@ -1647,6 +1670,12 @@ static void tsc_check_reliability(void)
>          cpu_relax();
>
>      spin_unlock(&lock);
> +{//temp
> + unsigned i;
> + printk("CHK[%2u] %lx\n", cpu, tsc_max_warp);//temp
> + for(i = 0; i < ARRAY_SIZE(check_log) && check_log[i].now; ++i)
> +  printk("chk[%4u] CPU%-2u %016lx %016lx #%d\n", i, check_log[i].cpu, check_log[i].prev, check_log[i].now, check_log[i].iter);
> +}
>  }
>
>  /*
> @@ -1661,6 +1690,7 @@ struct calibration_rendezvous {
>      uint64_t master_tsc_stamp, max_tsc_stamp;
>  };
>
> +static bool rdzv_log;//temp
>  static void
>  time_calibration_rendezvous_tail(const struct calibration_rendezvous *r,
>                                   uint64_t old_tsc, uint64_t new_tsc)
> @@ -1671,6 +1701,7 @@ time_calibration_rendezvous_tail(const s
>      c->local_stime  = get_s_time_fixed(old_tsc ?: new_tsc);
>      c->master_stime = r->master_stime;
>
> +if(rdzv_log) printk("RDZV[%2u] t=%016lx(%016lx) s=%012lx(%012lx)\n", smp_processor_id(), c->local_tsc, r->master_tsc_stamp, c->local_stime, r->master_stime);//temp
>      raise_softirq(TIME_CALIBRATE_SOFTIRQ);
>  }
>
> @@ -1684,7 +1715,9 @@ static void time_calibration_tsc_rendezv
>      struct calibration_rendezvous *r = _r;
>      unsigned int total_cpus = cpumask_weight(&r->cpu_calibration_map);
>      uint64_t tsc = 0;
> +uint64_t adj = 0;//temp
>
> +if(rdzv_log) printk("RDZV[%2u] t=%016lx\n", smp_processor_id(), rdtsc_ordered());//temp
>      /* Loop to get rid of cache effects on TSC skew. */
>      for ( i = 4; i >= 0; i-- )
>      {
> @@ -1701,6 +1734,7 @@ static void time_calibration_tsc_rendezv
>                   * Use the largest value observed anywhere on the first
>                   * iteration.
>                   */
> +adj = r->max_tsc_stamp - r->master_tsc_stamp,//temp
>                  r->master_tsc_stamp = r->max_tsc_stamp;
>              else if ( i == 0 )
>                  r->master_stime = read_platform_stime(NULL);
> @@ -1743,6 +1777,13 @@ static void time_calibration_tsc_rendezv
>      }
>
>      time_calibration_rendezvous_tail(r, tsc, r->master_tsc_stamp);
> +if(adj) {//temp
> + static unsigned long cnt, thr;
> + if(++cnt > thr) {
> +  thr |= cnt;
> +  printk("TSC adjusted by %lx\n", adj);
> + }
> +}
>  }
>
>  /* Ordinary rendezvous function which does not modify TSC values. */
> @@ -1794,6 +1835,12 @@ static void time_calibration(void *unuse
>      struct calibration_rendezvous r = {
>          .semaphore = ATOMIC_INIT(0)
>      };
> +static unsigned long cnt, thr;//temp
> +if(++cnt > thr) {//temp
> + thr |= cnt;
> + printk("TSC: %ps\n", time_calibration_rendezvous_fn);
> + rdzv_log = true;
> +}
>
>      if ( clocksource_is_tsc() )
>      {
> @@ -1808,6 +1855,10 @@ static void time_calibration(void *unuse
>      on_selected_cpus(&r.cpu_calibration_map,
>                       time_calibration_rendezvous_fn,
>                       &r, 1);
> +if(rdzv_log) {//temp
> + rdzv_log = false;
> + printk("TSC: end rendezvous\n");
> +}
>  }
>
>  static struct cpu_time_stamp ap_bringup_ref;
> @@ -1904,6 +1955,7 @@ void init_percpu_time(void)
>      }
>      t->stamp.local_tsc   = tsc;
>      t->stamp.local_stime = now;
> +printk("INIT[%2u] t=%016lx s=%012lx m=%012lx\n", smp_processor_id(), tsc, now, t->stamp.master_stime);//temp
>  }
>
>  /*
> @@ -2046,6 +2098,7 @@ static int __init verify_tsc_reliability
>       * While with constant-rate TSCs the scale factor can be shared, when TSCs
>       * are not marked as 'reliable', re-sync during rendezvous.
>       */
> +printk("TSC: c=%d r=%d\n", !!boot_cpu_has(X86_FEATURE_CONSTANT_TSC), !!boot_cpu_has(X86_FEATURE_TSC_RELIABLE));//temp
>      if ( boot_cpu_has(X86_FEATURE_CONSTANT_TSC) &&
>           !boot_cpu_has(X86_FEATURE_TSC_RELIABLE) )
>          time_calibration_rendezvous_fn = time_calibration_tsc_rendezvous;
> @@ -2061,6 +2114,7 @@ int __init init_xen_time(void)
>  {
>      tsc_check_writability();
>
> +printk("TSC: c=%d r=%d\n", !!boot_cpu_has(X86_FEATURE_CONSTANT_TSC), !!boot_cpu_has(X86_FEATURE_TSC_RELIABLE));//temp
>      open_softirq(TIME_CALIBRATE_SOFTIRQ, local_time_calibration);
>
>      /* NB. get_wallclock_time() can take over one second to execute. */

[-- Attachment #2: xen-dmesg.txt --]
[-- Type: text/plain, Size: 37509 bytes --]

(XEN) parameter "placeholder" unknown!
(XEN) [    0.000000] Xen version 4.11.4 (Debian 4.11.4+57-g41a822c392-2) (pkg-xen-devel@lists.alioth.debian.org) (gcc (Debian 8.3.0-6) 8.3.0) debug=n  Mon Feb  1 11:31:44 -03 2021
(XEN) [    0.000000] Bootloader: GRUB 2.04-12
(XEN) [    0.000000] Command line: placeholder dom0_mem=1024M,max:2048M dom0_max_vcpus=4 dom0_vcpus_pin=true smt=true console_timestamps=boot
(XEN) [    0.000000] Xen image load base address: 0xba200000
(XEN) [    0.000000] Video information:
(XEN) [    0.000000]  VGA is text mode 80x25, font 8x16
(XEN) [    0.000000]  VBE/DDC methods: none; EDID transfer time: 0 seconds
(XEN) [    0.000000]  EDID info not retrieved because no DDC retrieval method detected
(XEN) [    0.000000] Disc information:
(XEN) [    0.000000]  Found 1 MBR signatures
(XEN) [    0.000000]  Found 2 EDD information structures
(XEN) [    0.000000] Xen-e820 RAM map:
(XEN) [    0.000000]  0000000000000000 - 000000000009e800 (usable)
(XEN) [    0.000000]  000000000009e800 - 00000000000a0000 (reserved)
(XEN) [    0.000000]  00000000000e0000 - 0000000000100000 (reserved)
(XEN) [    0.000000]  0000000000100000 - 00000000ba952000 (usable)
(XEN) [    0.000000]  00000000ba952000 - 00000000ba98b000 (reserved)
(XEN) [    0.000000]  00000000ba98b000 - 00000000babc3000 (usable)
(XEN) [    0.000000]  00000000babc3000 - 00000000bb1c0000 (ACPI NVS)
(XEN) [    0.000000]  00000000bb1c0000 - 00000000bb843000 (reserved)
(XEN) [    0.000000]  00000000bb843000 - 00000000bb844000 (usable)
(XEN) [    0.000000]  00000000bb844000 - 00000000bb8ca000 (ACPI NVS)
(XEN) [    0.000000]  00000000bb8ca000 - 00000000bbd0f000 (usable)
(XEN) [    0.000000]  00000000bbd0f000 - 00000000bbff4000 (reserved)
(XEN) [    0.000000]  00000000bbff4000 - 00000000bc000000 (usable)
(XEN) [    0.000000]  00000000d0000000 - 00000000e0000000 (reserved)
(XEN) [    0.000000]  00000000fed1c000 - 00000000fed20000 (reserved)
(XEN) [    0.000000]  00000000ff000000 - 0000000100000000 (reserved)
(XEN) [    0.000000]  0000000100000000 - 0000000440000000 (usable)
(XEN) [    0.000000] ACPI: RSDP 000F04A0, 0024 (r2 ALASKA)
(XEN) [    0.000000] ACPI: XSDT BB0DD070, 005C (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) [    0.000000] ACPI: FACP BB0E5728, 010C (r5 ALASKA    A M I  1072009 AMI     10013)
(XEN) [    0.000000] ACPI: DSDT BB0DD160, 85C7 (r2 ALASKA    A M I       20 INTL 20051117)
(XEN) [    0.000000] ACPI: FACS BB1B7F80, 0040
(XEN) [    0.000000] ACPI: APIC BB0E5838, 01A8 (r3 ALASKA    A M I  1072009 AMI     10013)
(XEN) [    0.000000] ACPI: FPDT BB0E59E0, 0044 (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) [    0.000000] ACPI: MCFG BB0E5A28, 003C (r1 ALASKA OEMMCFG.  1072009 MSFT       97)
(XEN) [    0.000000] ACPI: HPET BB0E5A68, 0038 (r1 ALASKA    A M I  1072009 AMI.        5)
(XEN) [    0.000000] ACPI: SSDT BB0E5AA0, CD380 (r2  INTEL    CpuPm     4000 INTL 20051117)
(XEN) [    0.000000] ACPI: DMAR BB1B2E20, 00EC (r1 A M I   OEMDMAR        1 INTL        1)
(XEN) [    0.000000] System RAM: 16303MB (16694760kB)
(XEN) [    0.000000] Domain heap initialised
(XEN) [    0.000000] ACPI: 32/64X FACS address mismatch in FADT - bb1b7f80/0000000000000000, using 32
(XEN) [    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
(XEN) [    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
(XEN) [    0.000000] Enabling APIC mode:  Phys.  Using 2 I/O APICs
(XEN) [    0.000000] Switched to APIC driver x2apic_cluster
(XEN) [    0.000000] xstate: size: 0x340 and states: 0x7
(XEN) [    0.000000] Speculative mitigation facilities:
(XEN) [    0.000000]   Hardware features:
(XEN) [    0.000000]   Compiled-in support: INDIRECT_THUNK SHADOW_PAGING
(XEN) [    0.000000]   Xen settings: BTI-Thunk RETPOLINE, SPEC_CTRL: No, Other:
(XEN) [    0.000000]   L1TF: believed vulnerable, maxphysaddr L1D 46, CPUID 46, Safe address 300000000000
(XEN) [    0.000000]   Support for VMs: PV: RSB EAGER_FPU, HVM: RSB EAGER_FPU
(XEN) [    0.000000]   XPTI (64-bit PV only): Dom0 enabled, DomU enabled
(XEN) [    0.000000]   PV L1TF shadowing: Dom0 disabled, DomU enabled
(XEN) [    0.000000] Using scheduler: SMP Credit Scheduler (credit)
(XEN) [    0.000000] Platform timer is 14.318MHz HPET
(XEN) [    0.458887] Detected 2494.338 MHz processor.
(XEN) [    0.462916] Initing memory sharing.
(XEN) [    0.465729] Intel VT-d iommu 0 supported page sizes: 4kB, 2MB, 1GB.
(XEN) [    0.467130] Intel VT-d Snoop Control enabled.
(XEN) [    0.468525] Intel VT-d Dom0 DMA Passthrough not enabled.
(XEN) [    0.469919] Intel VT-d Queued Invalidation enabled.
(XEN) [    0.471313] Intel VT-d Interrupt Remapping enabled.
(XEN) [    0.472702] Intel VT-d Posted Interrupt not enabled.
(XEN) [    0.474212] Intel VT-d Shared EPT tables enabled.
(XEN) [    0.486844] I/O virtualisation enabled
(XEN) [    0.488249]  - Dom0 mode: Relaxed
(XEN) [    0.489635] Interrupt remapping enabled
(XEN) [    0.491158] Enabled directed EOI with ioapic_ack_old on!
(XEN) [    0.493494] ENABLING IO-APIC IRQs
(XEN) [    0.494879]  -> Using old ACK method
(XEN) [    0.697382] TSC: c=1 r=1
(XEN) [    1.483974] INIT[ 0] t=000000193a6297b9 s=000058739cf4 m=000058739e8f
(XEN) [    1.485375] Allocated console ring of 64 KiB.
(XEN) [    1.486777] VMX: Supported advanced features:
(XEN) [    1.488165]  - APIC MMIO access virtualisation
(XEN) [    1.489556]  - APIC TPR shadow
(XEN) [    1.490940]  - Extended Page Tables (EPT)
(XEN) [    1.492327]  - Virtual-Processor Identifiers (VPID)
(XEN) [    1.493721]  - Virtual NMI
(XEN) [    1.495106]  - MSR direct-access bitmap
(XEN) [    1.496493]  - Unrestricted Guest
(XEN) [    1.497880]  - APIC Register Virtualization
(XEN) [    1.499380]  - Virtual Interrupt Delivery
(XEN) [    1.500768]  - Posted Interrupt Processing
(XEN) [    1.502162] HVM: ASIDs enabled.
(XEN) [    1.503544] VMX: Disabling executable EPT superpages due to CVE-2018-12207
(XEN) [    1.506320] HVM: VMX enabled
(XEN) [    1.507701] HVM: Hardware Assisted Paging (HAP) detected
(XEN) [    1.509097] HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) [    1.510631] INIT[ 1] t=0000001a0862c447 s=00005a0a5c72 m=00005a0a5e2f
(XEN) [    1.512231] INIT[ 2] t=0000001a089f9dff s=00005a22c184 m=00005a22c340
(XEN) [    1.513789] INIT[ 3] t=0000001a08daf7fb s=00005a3a8d31 m=00005a3a8eb8
(XEN) [    1.515453] INIT[ 4] t=0000001a091a41ee s=00005a53ec94 m=00005a53ee3b
(XEN) [    1.517009] INIT[ 5] t=0000001a09558cfe s=00005a6bb1f1 m=00005a6bb3b3
(XEN) [    1.518561] INIT[ 6] t=0000001a09908c97 s=00005a83591b m=00005a835ae2
(XEN) [    1.520127] INIT[ 7] t=0000001a09cc36cf s=00005a9b4495 m=00005a9b4646
(XEN) [    1.521701] INIT[ 8] t=0000001a0a08129e s=00005ab34432 m=00005ab345d9
(XEN) [    1.523278] INIT[ 9] t=0000001a0a441f82 s=00005acb5724 m=00005acb58cc
(XEN) [    1.524854] INIT[10] t=0000001a0a800d9a s=00005ae35e1e m=00005ae35fbe
(XEN) [    1.526428] INIT[11] t=0000001a0abbff76 s=00005afb6638 m=00005afb680c
(XEN) [    1.527997] INIT[12] t=0000001a0af7b25a s=00005b135527 m=00005b1356fc
(XEN) [    1.529579] INIT[13] t=0000001a0b33f53a s=00005b2b7df2 m=00005b2b7fc2
(XEN) [    1.531252] INIT[14] t=0000001a0b7397c5 s=00005b4500e2 m=00005b4502bc
(XEN) [    1.532822] INIT[15] t=0000001a0baf5c8d s=00005b5cf721 m=00005b5cf90a
(XEN) [    1.534389] INIT[16] t=0000001a0beafc9e s=00005b74ded8 m=00005b74e09b
(XEN) [    1.535963] INIT[17] t=0000001a0c26e966 s=00005b8ce4f9 m=00005b8ce6bb
(XEN) [    1.537531] INIT[18] t=0000001a0c628d6e s=00005ba4ce2a m=00005ba4cff0
(XEN) [    1.539105] INIT[19] t=0000001a0c9e7f5e s=00005bbcd64e m=00005bbcd83f
(XEN) [    1.540676] INIT[20] t=0000001a0cda417d s=00005bd4cb67 m=00005bd4cd75
(XEN) [    1.542248] INIT[21] t=0000001a0d1624f9 s=00005becce3a m=00005becd009
(XEN) [    1.543824] INIT[22] t=0000001a0d521878 s=00005c04d708 m=00005c04d8e4
(XEN) [    1.545417] INIT[23] t=0000001a0d8ebc60 s=00005c1d2684 m=00005c1d2867
(XEN) [    1.546839] Brought up 24 CPUs
(XEN) [    1.601922] CHK[ 0] ca09997e
(XEN) [    1.603304] chk[   0] CPU0  0000000000000000 0000001948f1cba5 #-1
(XEN) [    1.604703] chk[   1] CPU1  0000000000000000 0000001a12fb67bb #-1
(XEN) [    1.606105] chk[   2] CPU7  0000000000000000 0000001a12fb6861 #-1
(XEN) [    1.607504] chk[   3] CPU6  0000000000000000 0000001a12fb686d #-1
(XEN) [    1.608902] chk[   4] CPU18 0000000000000000 0000001a12fb68d6 #-1
(XEN) [    1.610302] chk[   5] CPU16 0000000000000000 0000001a12fb68d5 #-1
(XEN) [    1.611810] chk[   6] CPU19 0000000000000000 0000001a12fb68ce #-1
(XEN) [    1.613206] chk[   7] CPU8  0000000000000000 0000001a12fb688b #-1
(XEN) [    1.614607] chk[   8] CPU15 0000000000000000 0000001a12fb69ab #-1
(XEN) [    1.616009] chk[   9] CPU9  0000000000000000 0000001a12fb6897 #-1
(XEN) [    1.617409] chk[  10] CPU21 0000000000000000 0000001a12fb68b4 #-1
(XEN) [    1.618810] chk[  11] CPU14 0000000000000000 0000001a12fb69a3 #-1
(XEN) [    1.620210] chk[  12] CPU20 0000000000000000 0000001a12fb68bc #-1
(XEN) [    1.621614] chk[  13] CPU17 0000000000000000 0000001a12fb68c9 #-1
(XEN) [    1.623015] chk[  14] CPU13 0000000000000000 0000001a12fb68bf #-1
(XEN) [    1.624416] chk[  15] CPU3  0000000000000000 0000001a12fb6a43 #-1
(XEN) [    1.625815] chk[  16] CPU2  0000000000000000 0000001a12fb6a4f #-1
(XEN) [    1.627328] chk[  17] CPU12 0000000000000000 0000001a12fb68cb #-1
(XEN) [    1.628726] chk[  18] CPU11 0000000000000000 0000001a12fb69d7 #-1
(XEN) [    1.630130] chk[  19] CPU4  0000000000000000 0000001a12fb6a68 #-1
(XEN) [    1.631535] chk[  20] CPU5  0000000000000000 0000001a12fb6a5c #-1
(XEN) [    1.632935] chk[  21] CPU22 0000000000000000 0000001a12fb69bc #-1
(XEN) [    1.634336] chk[  22] CPU23 0000000000000000 0000001a12fb69b0 #-1
(XEN) [    1.635737] chk[  23] CPU10 0000000000000000 0000001a12fb69cb #-1
(XEN) [    1.637140] chk[  24] CPU0  0000001a12fbd163 0000001948f238d5 #1
(XEN) [    1.638537] chk[  25] CPU0  0000001a12fd02c7 0000001948f36a15 #4
(XEN) [    1.639937] chk[  26] CPU0  0000001a12fd67f7 0000001948f3cef5 #5
(XEN) [    1.641335] chk[  27] CPU0  0000001a12fe3217 0000001948f498bd #7
(XEN) [    1.642734] chk[  28] CPU0  0000001a13053f8f 0000001948fba625 #25
(XEN) [    1.644249] chk[  29] CPU0  0000001a131d71ff 000000194913d881 #87
(XEN) [    1.645649] TSC warp detected, disabling TSC_RELIABLE
(XEN) [    1.647047] TSC: c=1 r=0
(XEN) [    1.648432] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [    1.649828] RDZV[ 0] t=00000019530b1f29
(XEN) [    1.651216] RDZV[ 1] t=0000001a1d14c273
(XEN) [    1.652606] RDZV[ 2] t=0000001a1d15dc69
(XEN) [    1.653993] RDZV[ 3] t=0000001a1d15dc6d
(XEN) [    1.655381] RDZV[ 5] t=0000001a1d15e612
(XEN) [    1.656765] RDZV[ 4] t=0000001a1d15e60a
(XEN) [    1.658158] RDZV[ 7] t=0000001a1d15ef8f
(XEN) [    1.659629] RDZV[ 6] t=0000001a1d15ef87
(XEN) [    1.661022] RDZV[ 8] t=0000001a1d15fcb9
(XEN) [    1.662409] RDZV[ 9] t=0000001a1d15fcbd
(XEN) [    1.663800] RDZV[11] t=0000001a1d1609cb
(XEN) [    1.665191] RDZV[10] t=0000001a1d1609d3
(XEN) [    1.666584] RDZV[12] t=0000001a1d16127c
(XEN) [    1.667971] RDZV[13] t=0000001a1d161274
(XEN) [    1.669362] RDZV[15] t=0000001a1d161ceb
(XEN) [    1.670745] RDZV[14] t=0000001a1d161cf3
(XEN) [    1.672135] RDZV[17] t=0000001a1d162483
(XEN) [    1.673524] RDZV[16] t=0000001a1d16247b
(XEN) [    1.674914] RDZV[18] t=0000001a1d162eca
(XEN) [    1.676384] RDZV[19] t=0000001a1d162ed6
(XEN) [    1.677772] RDZV[21] t=0000001a1d1637cb
(XEN) [    1.679159] RDZV[20] t=0000001a1d1637c3
(XEN) [    1.680548] RDZV[22] t=0000001a1d164171
(XEN) [    1.681935] RDZV[23] t=0000001a1d164179
(XEN) [    1.683325] RDZV[20] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556aa7(00006455af56)
(XEN) [    1.686095] RDZV[ 4] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a2d(00006455af56)
(XEN) [    1.688874] RDZV[18] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a5a(00006455af56)
(XEN) [    1.691734] RDZV[19] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a2c(00006455af56)
(XEN) [    1.694507] RDZV[21] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556af2(00006455af56)
(XEN) [    1.697286] RDZV[ 8] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a64(00006455af56)
(XEN) [    1.700057] RDZV[ 9] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a3f(00006455af56)
(XEN) [    1.702841] RDZV[12] t=0000001a220f7ce3(0000001a220f7ce3) s=0000645569f9(00006455af56)
(XEN) [    1.705625] RDZV[13] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a09(00006455af56)
(XEN) [    1.708515] RDZV[ 7] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a42(00006455af56)
(XEN) [    1.711292] RDZV[ 6] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a5b(00006455af56)
(XEN) [    1.714064] RDZV[14] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a38(00006455af56)
(XEN) [    1.716842] RDZV[15] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a3c(00006455af56)
(XEN) [    1.719625] RDZV[ 3] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a6d(00006455af56)
(XEN) [    1.722400] RDZV[23] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a08(00006455af56)
(XEN) [    1.725285] RDZV[16] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a4f(00006455af56)
(XEN) [    1.728056] RDZV[ 1] t=0000001a220f7ce3(0000001a220f7ce3) s=0000645569f6(00006455af56)
(XEN) [    1.730839] RDZV[10] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a56(00006455af56)
(XEN) [    1.733615] RDZV[11] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a21(00006455af56)
(XEN) [    1.736397] RDZV[17] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a2d(00006455af56)
(XEN) [    1.739284] RDZV[22] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a2f(00006455af56)
(XEN) [    3.100981] RDZV[ 0] t=0000001a220f7ce3(0000001a220f7ce3) s=00006455687d(00006455af56)
(XEN) [    1.744831] RDZV[ 2] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a21(00006455af56)
(XEN) [    1.747607] RDZV[ 5] t=0000001a220f7ce3(0000001a220f7ce3) s=000064556a1d(00006455af56)
(XEN) [    3.109313] TSC adjusted by ca09a102
(XEN) [    3.110699] TSC: end rendezvous
(XEN) [    3.112087] mtrr: your CPUs had inconsistent fixed MTRR settings
(XEN) [    3.113511] Dom0 has maximum 816 PIRQs
(XEN) [    2.464395]  Xen  kernel: 64-bit, lsb, compat32
(XEN) [    2.465786]  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x2c2c000
(XEN) [    2.468975] PHYSICAL MEMORY ARRANGEMENT:
(XEN) [    2.470362]  Dom0 alloc.:   0000000428000000->000000042c000000 (237067 pages to be allocated)
(XEN) [    2.473145]  Init. ramdisk: 000000043de0b000->000000043ffff664
(XEN) [    2.474546] VIRTUAL MEMORY ARRANGEMENT:
(XEN) [    2.476051]  Loaded kernel: ffffffff81000000->ffffffff82c2c000
(XEN) [    2.477450]  Init. ramdisk: 0000000000000000->0000000000000000
(XEN) [    2.478849]  Phys-Mach map: 0000008000000000->0000008000200000
(XEN) [    2.480248]  Start info:    ffffffff82c2c000->ffffffff82c2c4b8
(XEN) [    2.481645]  Xenstore ring: 0000000000000000->0000000000000000
(XEN) [    2.483040]  Console ring:  0000000000000000->0000000000000000
(XEN) [    2.484438]  Page tables:   ffffffff82c2d000->ffffffff82c48000
(XEN) [    2.485837]  Boot stack:    ffffffff82c48000->ffffffff82c49000
(XEN) [    2.487238]  TOTAL:         ffffffff80000000->ffffffff83000000
(XEN) [    2.488637]  ENTRY ADDRESS: ffffffff8282a160
(XEN) [    2.490854] Dom0 has maximum 4 VCPUs
(XEN) [    2.820823] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [    2.822222] RDZV[ 0] t=0000001acb62c27f
(XEN) [    2.823611] RDZV[ 1] t=0000001acb62c3ab
(XEN) [    2.824997] RDZV[ 2] t=0000001acb63e38d
(XEN) [    2.826384] RDZV[ 3] t=0000001acb63e3f9
(XEN) [    2.827855] RDZV[ 5] t=0000001acb63ed55
(XEN) [    2.829241] RDZV[ 4] t=0000001acb63e8f1
(XEN) [    2.830633] RDZV[ 7] t=0000001acb63f5b1
(XEN) [    2.832023] RDZV[ 6] t=0000001acb63f5a1
(XEN) [    2.833414] RDZV[ 9] t=0000001acb63fffd
(XEN) [    2.834803] RDZV[ 8] t=0000001acb63fffd
(XEN) [    2.836197] RDZV[11] t=0000001acb640fb5
(XEN) [    2.837588] RDZV[10] t=0000001acb640f85
(XEN) [    2.838974] RDZV[13] t=0000001acb64179d
(XEN) [    2.840363] RDZV[12] t=0000001acb641971
(XEN) [    2.841756] RDZV[15] t=0000001acb64233c
(XEN) [    2.843146] RDZV[14] t=0000001acb6421c4
(XEN) [    2.844620] RDZV[17] t=0000001acb642b0e
(XEN) [    2.846007] RDZV[16] t=0000001acb642b22
(XEN) [    2.847396] RDZV[18] t=0000001acb643526
(XEN) [    2.848785] RDZV[19] t=0000001acb643522
(XEN) [    2.850176] RDZV[20] t=0000001acb643edd
(XEN) [    2.851562] RDZV[21] t=0000001acb643ecd
(XEN) [    2.852949] RDZV[22] t=0000001acb6447b9
(XEN) [    2.854334] RDZV[23] t=0000001acb6447d5
(XEN) [    2.855722] RDZV[ 0] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36c787(0000aa3765a9)
(XEN) [    2.858502] RDZV[23] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36c985(0000aa3765a9)
(XEN) [    2.861364] RDZV[22] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36c99e(0000aa3765a9)
(XEN) [    2.864140] RDZV[ 8] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36c8f9(0000aa3765a9)
(XEN) [    2.866921] RDZV[ 9] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36c8d4(0000aa3765a9)
(XEN) [    2.869698] RDZV[20] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36ca36(0000aa3765a9)
(XEN) [    2.872472] RDZV[21] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36ca84(0000aa3765a9)
(XEN) [    2.875248] RDZV[14] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36cb85(0000aa3765a9)
(XEN) [    2.878135] RDZV[15] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36cc1a(0000aa3765a9)
(XEN) [    2.880915] RDZV[17] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36cc84(0000aa3765a9)
(XEN) [    2.883686] RDZV[16] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36ccb1(0000aa3765a9)
(XEN) [    2.886464] RDZV[ 7] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36ca4e(0000aa3765a9)
(XEN) [    2.889246] RDZV[ 6] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36ca6a(0000aa3765a9)
(XEN) [    2.892135] RDZV[12] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36ca43(0000aa3765a9)
(XEN) [    2.894915] RDZV[13] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36c990(0000aa3765a9)
(XEN) [    2.897690] RDZV[ 2] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36c9f3(0000aa3765a9)
(XEN) [    2.900467] RDZV[ 1] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36c95a(0000aa3765a9)
(XEN) [    2.903250] RDZV[10] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36c9ed(0000aa3765a9)
(XEN) [    2.906031] RDZV[11] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36c9c5(0000aa3765a9)
(XEN) [    2.908926] RDZV[18] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36ca36(0000aa3765a9)
(XEN) [    2.911699] RDZV[ 3] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36ca71(0000aa3765a9)
(XEN) [    2.914478] RDZV[ 5] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36ca1f(0000aa3765a9)
(XEN) [    2.917256] RDZV[19] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36ca0d(0000aa3765a9)
(XEN) [    2.920033] RDZV[ 4] t=0000001ad05daa86(0000001ad05daa86) s=0000aa36c86d(0000aa3765a9)
(XEN) [    2.922810] TSC adjusted by 857
(XEN) [    2.924304] TSC: end rendezvous
(XEN) [    3.325505] Initial low memory virq threshold set at 0x4000 pages.
(XEN) [    3.326910] Scrubbing Free RAM on 1 nodes using 12 CPUs
(XEN) [    3.410122] ............done.
(XEN) [    4.156432] Std. Loglevel: Errors and warnings
(XEN) [    4.157921] Guest Loglevel: Nothing (Rate-limited: Errors and warnings)
(XEN) [    4.159324] Xen is relinquishing VGA console.
(XEN) [    4.161170] *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen)
(XEN) [    4.161333] Freed 476kB init memory
(XEN) [    4.976218] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [    4.976222] RDZV[ 0] t=0000001c0ba16049
(XEN) [    4.976225] RDZV[ 1] t=0000001c0ba165b9
(XEN) [    4.976253] RDZV[ 3] t=0000001c0ba26df7
(XEN) [    4.976255] RDZV[ 2] t=0000001c0ba26de7
(XEN) [    4.976258] RDZV[ 4] t=0000001c0ba2767c
(XEN) [    4.976260] RDZV[ 5] t=0000001c0ba2768c
(XEN) [    4.976263] RDZV[ 7] t=0000001c0ba27f92
(XEN) [    4.976266] RDZV[ 6] t=0000001c0ba27fd6
(XEN) [    4.976269] RDZV[ 8] t=0000001c0ba28e27
(XEN) [    4.976271] RDZV[ 9] t=0000001c0ba28e17
(XEN) [    4.976274] RDZV[10] t=0000001c0ba299c2
(XEN) [    4.976277] RDZV[11] t=0000001c0ba299be
(XEN) [    4.976279] RDZV[13] t=0000001c0ba2a37a
(XEN) [    4.976282] RDZV[12] t=0000001c0ba2a28e
(XEN) [    4.976285] RDZV[15] t=0000001c0ba2acff
(XEN) [    4.976288] RDZV[14] t=0000001c0ba2acff
(XEN) [    4.976292] RDZV[17] t=0000001c0ba2b568
(XEN) [    4.976294] RDZV[16] t=0000001c0ba2b578
(XEN) [    4.976295] RDZV[19] t=0000001c0ba2be8d
(XEN) [    4.976297] RDZV[18] t=0000001c0ba2bea5
(XEN) [    4.976301] RDZV[20] t=0000001c0ba2c806
(XEN) [    4.976303] RDZV[21] t=0000001c0ba2c7d2
(XEN) [    4.976306] RDZV[22] t=0000001c0ba2d23a
(XEN) [    4.976308] RDZV[23] t=0000001c0ba2d23a
(XEN) [    4.976312] RDZV[ 0] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c713e(0001289da3cb)
(XEN) [    4.976315] RDZV[ 1] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c7477(0001289da3cb)
(XEN) [    4.976318] RDZV[ 2] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c753e(0001289da3cb)
(XEN) [    4.976320] RDZV[ 8] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c75fb(0001289da3cb)
(XEN) [    4.976322] RDZV[ 9] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c75da(0001289da3cb)
(XEN) [    4.976325] RDZV[21] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c759f(0001289da3cb)
(XEN) [    4.976328] RDZV[18] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c750e(0001289da3cb)
(XEN) [    4.976330] RDZV[19] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c74cd(0001289da3cb)
(XEN) [    4.976332] RDZV[ 3] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c75ca(0001289da3cb)
(XEN) [    4.976335] RDZV[23] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c748d(0001289da3cb)
(XEN) [    4.976338] RDZV[ 6] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c768c(0001289da3cb)
(XEN) [    4.976340] RDZV[ 7] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c764a(0001289da3cb)
(XEN) [    4.976344] RDZV[17] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c7ce3(0001289da3cb)
(XEN) [    4.976346] RDZV[16] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c7d18(0001289da3cb)
(XEN) [    4.976347] RDZV[ 4] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c7336(0001289da3cb)
(XEN) [    4.976350] RDZV[20] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c7561(0001289da3cb)
(XEN) [    4.976353] RDZV[15] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c773a(0001289da3cb)
(XEN) [    4.976355] RDZV[14] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c769e(0001289da3cb)
(XEN) [    4.976357] RDZV[13] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c7477(0001289da3cb)
(XEN) [    4.976360] RDZV[12] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c74d3(0001289da3cb)
(XEN) [    4.976361] RDZV[22] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c74a9(0001289da3cb)
(XEN) [    4.976364] RDZV[ 5] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c74ed(0001289da3cb)
(XEN) [    4.976367] RDZV[10] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c789f(0001289da3cb)
(XEN) [    4.976369] RDZV[11] t=0000001c0ba4b4b2(0000001c0ba4b4b2) s=0001289c787b(0001289da3cb)
(XEN) [    4.976369] TSC adjusted by 6bd
(XEN) [    4.976370] TSC: end rendezvous
(XEN) [    8.976532] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [    8.976556] RDZV[ 0] t=0000001e5e607d8f
(XEN) [    8.976559] RDZV[ 1] t=0000001e5e607fdf
(XEN) [    8.976578] RDZV[ 2] t=0000001e5e6139be
(XEN) [    8.976581] RDZV[ 3] t=0000001e5e6139a6
(XEN) [    8.976584] RDZV[ 4] t=0000001e5e613d43
(XEN) [    8.976587] RDZV[ 5] t=0000001e5e613d37
(XEN) [    8.976590] RDZV[ 6] t=0000001e5e61481f
(XEN) [    8.976592] RDZV[ 7] t=0000001e5e61481f
(XEN) [    8.976595] RDZV[ 8] t=0000001e5e615370
(XEN) [    8.976598] RDZV[ 9] t=0000001e5e615370
(XEN) [    8.976602] RDZV[10] t=0000001e5e616220
(XEN) [    8.976604] RDZV[11] t=0000001e5e616244
(XEN) [    8.976606] RDZV[13] t=0000001e5e61f6d8
(XEN) [    8.976609] RDZV[12] t=0000001e5e61f520
(XEN) [    8.976612] RDZV[14] t=0000001e5e620205
(XEN) [    8.976615] RDZV[15] t=0000001e5e620225
(XEN) [    8.976619] RDZV[16] t=0000001e5e620bd4
(XEN) [    8.976622] RDZV[17] t=0000001e5e620bd4
(XEN) [    8.976623] RDZV[18] t=0000001e5e621414
(XEN) [    8.976625] RDZV[19] t=0000001e5e621414
(XEN) [    8.976628] RDZV[20] t=0000001e5e622016
(XEN) [    8.976630] RDZV[21] t=0000001e5e622002
(XEN) [    8.976633] RDZV[22] t=0000001e5e622861
(XEN) [    8.976636] RDZV[23] t=0000001e5e6227d5
(XEN) [    8.976640] RDZV[ 0] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9971(0002170eef7b)
(XEN) [    8.976644] RDZV[ 6] t=0000001e5e63966d(0000001e5e63966d) s=0002170ca05e(0002170eef7b)
(XEN) [    8.976646] RDZV[ 7] t=0000001e5e63966d(0000001e5e63966d) s=0002170ca025(0002170eef7b)
(XEN) [    8.976648] RDZV[ 1] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9e24(0002170eef7b)
(XEN) [    8.976651] RDZV[14] t=0000001e5e63966d(0000001e5e63966d) s=0002170ca24a(0002170eef7b)
(XEN) [    8.976654] RDZV[15] t=0000001e5e63966d(0000001e5e63966d) s=0002170ca308(0002170eef7b)
(XEN) [    8.976658] RDZV[17] t=0000001e5e63966d(0000001e5e63966d) s=0002170ca6a8(0002170eef7b)
(XEN) [    8.976658] RDZV[18] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9ecd(0002170eef7b)
(XEN) [    8.976661] RDZV[19] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9e94(0002170eef7b)
(XEN) [    8.976663] RDZV[22] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9deb(0002170eef7b)
(XEN) [    8.976668] RDZV[16] t=0000001e5e63966d(0000001e5e63966d) s=0002170ca6ec(0002170eef7b)
(XEN) [    8.976668] RDZV[ 9] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9f16(0002170eef7b)
(XEN) [    8.976671] RDZV[ 8] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9f40(0002170eef7b)
(XEN) [    8.976673] RDZV[23] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9d9d(0002170eef7b)
(XEN) [    8.976675] RDZV[13] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9e38(0002170eef7b)
(XEN) [    8.976678] RDZV[12] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9dd4(0002170eef7b)
(XEN) [    8.976680] RDZV[ 4] t=0000001e5e63966d(0000001e5e63966d) s=0002170ca022(0002170eef7b)
(XEN) [    8.976684] RDZV[10] t=0000001e5e63966d(0000001e5e63966d) s=0002170ca1df(0002170eef7b)
(XEN) [    8.976686] RDZV[11] t=0000001e5e63966d(0000001e5e63966d) s=0002170ca1a6(0002170eef7b)
(XEN) [    8.976688] RDZV[ 5] t=0000001e5e63966d(0000001e5e63966d) s=0002170ca1d6(0002170eef7b)
(XEN) [    8.976691] RDZV[ 3] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9f2c(0002170eef7b)
(XEN) [    8.976692] RDZV[ 2] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9e93(0002170eef7b)
(XEN) [    8.976695] RDZV[21] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9eb8(0002170eef7b)
(XEN) [    8.976697] RDZV[20] t=0000001e5e63966d(0000001e5e63966d) s=0002170c9e70(0002170eef7b)
(XEN) [    8.976697] TSC adjusted by 5a6
(XEN) [    8.976698] TSC: end rendezvous
(XEN) [   16.977079] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [   16.977103] RDZV[ 0] t=0000002303d9bb6a
(XEN) [   16.977107] RDZV[ 1] t=0000002303da5df4
(XEN) [   16.977129] RDZV[ 3] t=0000002303db2496
(XEN) [   16.977131] RDZV[ 2] t=0000002303db24aa
(XEN) [   16.977136] RDZV[ 4] t=0000002303db26a6
(XEN) [   16.977138] RDZV[ 5] t=0000002303db26ba
(XEN) [   16.977140] RDZV[ 7] t=0000002303db3131
(XEN) [   16.977142] RDZV[ 6] t=0000002303db311d
(XEN) [   16.977149] RDZV[ 8] t=0000002303db4014
(XEN) [   16.977151] RDZV[ 9] t=0000002303db4028
(XEN) [   16.977151] RDZV[11] t=0000002303db4a7c
(XEN) [   16.977153] RDZV[10] t=0000002303db4aa4
(XEN) [   16.977156] RDZV[13] t=0000002303db5453
(XEN) [   16.977158] RDZV[12] t=0000002303db5453
(XEN) [   16.977164] RDZV[15] t=0000002303db5d8f
(XEN) [   16.977166] RDZV[14] t=0000002303db5e4b
(XEN) [   16.977171] RDZV[16] t=0000002303db65a4
(XEN) [   16.977174] RDZV[17] t=0000002303db65c4
(XEN) [   16.977172] RDZV[19] t=0000002303db6f73
(XEN) [   16.977174] RDZV[18] t=0000002303db6f7f
(XEN) [   16.977177] RDZV[21] t=0000002303db79c9
(XEN) [   16.977180] RDZV[20] t=0000002303db79d1
(XEN) [   16.977182] RDZV[23] t=0000002303db835d
(XEN) [   16.977184] RDZV[22] t=0000002303db8391
(XEN) [   16.977189] RDZV[ 1] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4cb7(0003f3f0be57)
(XEN) [   16.977192] RDZV[20] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4eb8(0003f3f0be57)
(XEN) [   16.977194] RDZV[22] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4db7(0003f3f0be57)
(XEN) [   16.977197] RDZV[ 3] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4e5d(0003f3f0be57)
(XEN) [   16.977200] RDZV[11] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb506a(0003f3f0be57)
(XEN) [   16.977203] RDZV[10] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb50b4(0003f3f0be57)
(XEN) [   16.977208] RDZV[ 8] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb5f01(0003f3f0be57)
(XEN) [   16.977211] RDZV[ 9] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb5eaf(0003f3f0be57)
(XEN) [   16.977209] RDZV[19] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4f09(0003f3f0be57)
(XEN) [   16.977212] RDZV[18] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4f69(0003f3f0be57)
(XEN) [   16.977214] RDZV[12] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4dd2(0003f3f0be57)
(XEN) [   16.977217] RDZV[13] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4e22(0003f3f0be57)
(XEN) [   16.977217] RDZV[ 0] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4381(0003f3f0be57)
(XEN) [   16.977227] RDZV[17] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb6033(0003f3f0be57)
(XEN) [   16.977229] RDZV[16] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb5fee(0003f3f0be57)
(XEN) [   16.977227] RDZV[ 6] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb5082(0003f3f0be57)
(XEN) [   16.977229] RDZV[ 7] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb5063(0003f3f0be57)
(XEN) [   16.977231] RDZV[23] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4ce0(0003f3f0be57)
(XEN) [   16.977233] RDZV[21] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4df8(0003f3f0be57)
(XEN) [   16.977239] RDZV[15] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb58b4(0003f3f0be57)
(XEN) [   16.977241] RDZV[14] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb581a(0003f3f0be57)
(XEN) [   16.977240] RDZV[ 2] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb4dc7(0003f3f0be57)
(XEN) [   16.977244] RDZV[ 4] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb5447(0003f3f0be57)
(XEN) [   16.977246] RDZV[ 5] t=0000002303dd6eff(0000002303dd6eff) s=0003f3eb54f8(0003f3f0be57)
(XEN) [   16.977244] TSC adjusted by 513
(XEN) [   16.977246] TSC: end rendezvous
(XEN) [   32.978179] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [   32.978203] RDZV[ 0] t=0000002c4ecd4749
(XEN) [   32.978209] RDZV[ 1] t=0000002c4ecdec2a
(XEN) [   32.978232] RDZV[ 3] t=0000002c4eceaf8e
(XEN) [   32.978234] RDZV[ 2] t=0000002c4eceaf8a
(XEN) [   32.978239] RDZV[ 4] t=0000002c4eceb200
(XEN) [   32.978241] RDZV[ 5] t=0000002c4eceb1f0
(XEN) [   32.978245] RDZV[ 7] t=0000002c4ecebc78
(XEN) [   32.978247] RDZV[ 6] t=0000002c4ecebb74
(XEN) [   32.978252] RDZV[ 9] t=0000002c4ecec95a
(XEN) [   32.978254] RDZV[ 8] t=0000002c4ecec94a
(XEN) [   32.978254] RDZV[11] t=0000002c4eced4fa
(XEN) [   32.978256] RDZV[10] t=0000002c4eced56e
(XEN) [   32.978258] RDZV[12] t=0000002c4ecedd35
(XEN) [   32.978260] RDZV[13] t=0000002c4ecede59
(XEN) [   32.978267] RDZV[14] t=0000002c4ecee7b5
(XEN) [   32.978270] RDZV[15] t=0000002c4ecee92d
(XEN) [   32.978274] RDZV[17] t=0000002c4ecef08f
(XEN) [   32.978276] RDZV[16] t=0000002c4ecef08b
(XEN) [   32.978275] RDZV[19] t=0000002c4ecef8fd
(XEN) [   32.978278] RDZV[18] t=0000002c4ecefa21
(XEN) [   32.978281] RDZV[20] t=0000002c4ecf0492
(XEN) [   32.978283] RDZV[21] t=0000002c4ecf0332
(XEN) [   32.978286] RDZV[22] t=0000002c4ecf0ed9
(XEN) [   32.978288] RDZV[23] t=0000002c4ecf0edd
(XEN) [   32.978291] RDZV[ 1] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8bb51(0007adb76209)
(XEN) [   32.978295] RDZV[ 2] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c14c(0007adb76209)
(XEN) [   32.978297] RDZV[ 3] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c233(0007adb76209)
(XEN) [   32.978303] RDZV[ 8] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8d135(0007adb76209)
(XEN) [   32.978305] RDZV[ 9] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8d0d1(0007adb76209)
(XEN) [   32.978304] RDZV[19] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c409(0007adb76209)
(XEN) [   32.978306] RDZV[13] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8bdc3(0007adb76209)
(XEN) [   32.978308] RDZV[12] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8be1d(0007adb76209)
(XEN) [   32.978314] RDZV[14] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8cc39(0007adb76209)
(XEN) [   32.978317] RDZV[15] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8cda7(0007adb76209)
(XEN) [   32.978317] RDZV[23] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c4e3(0007adb76209)
(XEN) [   32.978319] RDZV[21] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c392(0007adb76209)
(XEN) [   32.978323] RDZV[ 4] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c71c(0007adb76209)
(XEN) [   32.978325] RDZV[22] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c50e(0007adb76209)
(XEN) [   32.978321] RDZV[ 0] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8aa24(0007adb76209)
(XEN) [   32.978333] RDZV[17] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8d415(0007adb76209)
(XEN) [   32.978336] RDZV[16] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8d49a(0007adb76209)
(XEN) [   32.978336] RDZV[ 7] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c9ce(0007adb76209)
(XEN) [   32.978338] RDZV[ 6] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c964(0007adb76209)
(XEN) [   32.978339] RDZV[20] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c54c(0007adb76209)
(XEN) [   32.978342] RDZV[18] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c5fb(0007adb76209)
(XEN) [   32.978344] RDZV[10] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c3a2(0007adb76209)
(XEN) [   32.978346] RDZV[11] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c27e(0007adb76209)
(XEN) [   32.978350] RDZV[ 5] t=0000002c4ed0f82f(0000002c4ed0f82f) s=0007ada8c7d5(0007adb76209)
(XEN) [   32.978344] TSC adjusted by 5d1
(XEN) [   32.978345] TSC: end rendezvous
(XEN) [   64.980354] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [   64.980358] RDZV[ 0] t=0000003ee4b3bd48
(XEN) [   64.980369] RDZV[ 1] t=0000003ee4b3c3a4
(XEN) [   64.980385] RDZV[ 3] t=0000003ee4b3c569
(XEN) [   64.980386] RDZV[ 2] t=0000003ee4b3c565
(XEN) [   64.980404] RDZV[ 5] t=0000003ee4b4b959
(XEN) [   64.980406] RDZV[ 4] t=0000003ee4b4b965
(XEN) [   64.980409] RDZV[ 6] t=0000003ee4b4c2b0
(XEN) [   64.980412] RDZV[ 7] t=0000003ee4b4c2a0
(XEN) [   64.980415] RDZV[ 8] t=0000003ee4b4d08f
(XEN) [   64.980418] RDZV[ 9] t=0000003ee4b4d0a3
(XEN) [   64.980418] RDZV[10] t=0000003ee4b4da06
(XEN) [   64.980421] RDZV[11] t=0000003ee4b4da42
(XEN) [   64.980419] RDZV[13] t=0000003ee4b4e602
(XEN) [   64.980421] RDZV[12] t=0000003ee4b4e652
(XEN) [   64.980428] RDZV[15] t=0000003ee4b4f070
(XEN) [   64.980429] RDZV[14] t=0000003ee4b4f074
(XEN) [   64.980436] RDZV[16] t=0000003ee4b4f97b
(XEN) [   64.980438] RDZV[17] t=0000003ee4b4f977
(XEN) [   64.980439] RDZV[18] t=0000003ee4b50186
(XEN) [   64.980441] RDZV[19] t=0000003ee4b50192
(XEN) [   64.980442] RDZV[20] t=0000003ee4b50aac
(XEN) [   64.980444] RDZV[21] t=0000003ee4b50aa0
(XEN) [   64.980448] RDZV[22] t=0000003ee4b515f0
(XEN) [   64.980451] RDZV[23] t=0000003ee4b515cc
(XEN) [   64.980441] RDZV[ 0] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f2122caac(000f21457c08)
(XEN) [   64.980466] RDZV[ 3] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f21232119(000f21457c08)
(XEN) [   64.980460] RDZV[20] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f2122fee0(000f21457c08)
(XEN) [   64.980463] RDZV[22] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f21230370(000f21457c08)
(XEN) [   64.980467] RDZV[19] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f21230841(000f21457c08)
(XEN) [   64.980469] RDZV[18] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f212307f9(000f21457c08)
(XEN) [   64.980469] RDZV[21] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f2122fdcc(000f21457c08)
(XEN) [   64.980473] RDZV[23] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f21230681(000f21457c08)
(XEN) [   64.980480] RDZV[ 5] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f2123145a(000f21457c08)
(XEN) [   64.980482] RDZV[ 4] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f2123149f(000f21457c08)
(XEN) [   64.980482] RDZV[10] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f21230a6d(000f21457c08)
(XEN) [   64.980485] RDZV[11] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f21230be3(000f21457c08)
(XEN) [   64.980484] RDZV[14] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f212300f7(000f21457c08)
(XEN) [   64.980488] RDZV[15] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f2123073a(000f21457c08)
(XEN) [   64.980494] RDZV[ 6] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f2123112f(000f21457c08)
(XEN) [   64.980496] RDZV[ 7] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f212312ff(000f21457c08)
(XEN) [   64.980499] RDZV[ 8] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f21231515(000f21457c08)
(XEN) [   64.980502] RDZV[ 9] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f21231773(000f21457c08)
(XEN) [   64.980496] RDZV[12] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f2122f7cd(000f21457c08)
(XEN) [   64.980499] RDZV[13] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f2122f970(000f21457c08)
(XEN) [   64.980508] RDZV[17] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f21231126(000f21457c08)
(XEN) [   64.980510] RDZV[16] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f21231142(000f21457c08)
(XEN) [   64.980503] RDZV[ 1] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f2122edc3(000f21457c08)
(XEN) [   64.980518] RDZV[ 2] t=0000003ee4b6ce3e(0000003ee4b6ce3e) s=000f21231ec8(000f21457c08)
(XEN) [   64.980498] TSC adjusted by 14e
(XEN) [   64.980499] TSC: end rendezvous

[-- Attachment #3: kernel-dmesg.txt --]
[-- Type: text/plain, Size: 70204 bytes --]

[    0.000000] Linux version 5.10.0-1-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-3) 10.2.1 20201224, GNU ld (GNU Binutils for Debian) 2.35.1) #1 SMP Debian 5.10.4-1 (2020-12-31)
[    0.000000] Command line: placeholder root=UUID=ffd2e44e-3eb7-4c4d-a028-dad7da03c831 ro loglevel=3 earlyprintk=xen
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] Released 0 page(s)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] Xen: [mem 0x0000000000000000-0x000000000009dfff] usable
[    0.000000] Xen: [mem 0x000000000009e800-0x00000000000fffff] reserved
[    0.000000] Xen: [mem 0x0000000000100000-0x0000000080061fff] usable
[    0.000000] Xen: [mem 0x00000000ba952000-0x00000000ba98afff] reserved
[    0.000000] Xen: [mem 0x00000000babc3000-0x00000000bb1bffff] ACPI NVS
[    0.000000] Xen: [mem 0x00000000bb1c0000-0x00000000bb842fff] reserved
[    0.000000] Xen: [mem 0x00000000bb844000-0x00000000bb8c9fff] ACPI NVS
[    0.000000] Xen: [mem 0x00000000bbd0f000-0x00000000bbff3fff] reserved
[    0.000000] Xen: [mem 0x00000000d0000000-0x00000000dfffffff] reserved
[    0.000000] Xen: [mem 0x00000000fbffc000-0x00000000fbffcfff] reserved
[    0.000000] Xen: [mem 0x00000000fec00000-0x00000000fec01fff] reserved
[    0.000000] Xen: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] Xen: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: To be filled by O.E.M. To be filled by O.E.M./Intel X79, BIOS 4.6.5 07/17/2019
[    0.000000] Hypervisor detected: Xen PV
[    0.046807] tsc: Fast TSC calibration using PIT
[    0.046809] tsc: Detected 2494.406 MHz processor
[    0.046810] tsc: Detected 2494.338 MHz TSC
[    0.052257] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.052260] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.052266] last_pfn = 0x80062 max_arch_pfn = 0x400000000
[    0.052267] Disabled
[    0.052268] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[    0.052274] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP  UC  UC  
[    0.067087] Kernel/User page tables isolation: disabled on XEN PV.
[    0.679369] RAMDISK: [mem 0x04000000-0x061f4fff]
[    0.679382] ACPI: Early table checksum verification disabled
[    0.685536] ACPI: RSDP 0x00000000000F04A0 000024 (v02 ALASKA)
[    0.685547] ACPI: XSDT 0x00000000BB0DD070 00005C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.685574] ACPI: FACP 0x00000000BB0E5728 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.685640] ACPI: DSDT 0x00000000BB0DD160 0085C7 (v02 ALASKA A M I    00000020 INTL 20051117)
[    0.685655] ACPI: FACS 0x00000000BB1B7F80 000040
[    0.685669] ACPI: APIC 0x00000000BB0E5838 0001A8 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.685683] ACPI: FPDT 0x00000000BB0E59E0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.685698] ACPI: MCFG 0x00000000BB0E5A28 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.685712] ACPI: HPET 0x00000000BB0E5A68 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.685727] ACPI: SSDT 0x00000000BB0E5AA0 0CD380 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.685742] ACPI: RMAD 0x00000000BB1B2E20 0000EC (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.685780] ACPI: Local APIC address 0xfee00000
[    0.685782] Setting APIC routing to Xen PV.
[    0.685815] NUMA turned off
[    0.685816] Faking a node at [mem 0x0000000000000000-0x0000000080061fff]
[    0.685829] NODE_DATA(0) allocated [mem 0x3fbf7000-0x3fc20fff]
[    0.698997] Zone ranges:
[    0.698998]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.699000]   DMA32    [mem 0x0000000001000000-0x0000000080061fff]
[    0.699002]   Normal   empty
[    0.699003]   Device   empty
[    0.699004] Movable zone start for each node
[    0.699008] Early memory node ranges
[    0.699009]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.699010]   node   0: [mem 0x0000000000100000-0x0000000080061fff]
[    0.699332] Zeroed struct page in unavailable ranges: 32769 pages
[    0.699334] Initmem setup node 0 [mem 0x0000000000001000-0x0000000080061fff]
[    0.699335] On node 0 totalpages: 524287
[    0.699337]   DMA zone: 64 pages used for memmap
[    0.699337]   DMA zone: 21 pages reserved
[    0.699338]   DMA zone: 3997 pages, LIFO batch:0
[    0.699389]   DMA32 zone: 8130 pages used for memmap
[    0.699390]   DMA32 zone: 520290 pages, LIFO batch:63
[    0.700118] p2m virtual area at (____ptrval____), size is 40000000
[    0.926549] Remapped 98 page(s)
[    0.928639] ACPI: PM-Timer IO Port: 0x408
[    0.928646] ACPI: Local APIC address 0xfee00000
[    0.928718] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.928720] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.928722] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.928723] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.928725] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.928726] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.928728] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.928729] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.928730] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.928732] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.928733] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.928735] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.928736] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.928738] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.928739] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.928741] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.928742] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.928743] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.928745] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.928746] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.928747] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.928749] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.928750] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.928752] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.928780] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.928793] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.928811] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.928814] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.928822] ACPI: IRQ0 used by override.
[    0.928824] ACPI: IRQ9 used by override.
[    0.928840] Using ACPI (MADT) for SMP configuration information
[    0.928845] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.928854] smpboot: Allowing 24 CPUs, 0 hotplug CPUs
[    0.928873] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.928875] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    0.928876] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.928878] [mem 0x80062000-0xba951fff] available for PCI devices
[    0.928881] Booting paravirtualized kernel on Xen
[    0.928882] Xen version: 4.11.4 (preserve-AD)
[    0.928885] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.933328] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:24 nr_cpu_ids:24 nr_node_ids:1
[    0.934282] percpu: Embedded 54 pages/cpu s183960 r8192 d29032 u262144
[    0.934290] pcpu-alloc: s183960 r8192 d29032 u262144 alloc=1*2097152
[    0.934292] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.934302] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 
[    0.934371] xen: PV spinlocks enabled
[    0.934375] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.934380] Built 1 zonelists, mobility grouping on.  Total pages: 516072
[    0.934381] Policy zone: DMA32
[    0.934382] Kernel command line: placeholder root=UUID=ffd2e44e-3eb7-4c4d-a028-dad7da03c831 ro loglevel=3 earlyprintk=xen
[    0.934599] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.934679] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.935187] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.980711] software IO TLB: mapped [mem 0x0000000038c00000-0x000000003cc00000] (64MB)
[    1.000510] Memory: 197808K/2097148K available (12295K kernel code, 2540K rwdata, 4060K rodata, 2380K init, 1692K bss, 1229692K reserved, 0K cma-reserved)
[    1.000518] random: get_random_u64 called from __kmem_cache_create+0x2e/0x550 with crng_init=0
[    1.000821] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    1.001758] ftrace: allocating 35988 entries in 141 pages
[    1.015381] ftrace: allocated 141 pages with 4 groups
[    1.015793] rcu: Hierarchical RCU implementation.
[    1.015795] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    1.015796] 	Rude variant of Tasks RCU enabled.
[    1.015797] 	Tracing variant of Tasks RCU enabled.
[    1.015798] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.015799] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    1.026755] Using NULL legacy PIC
[    1.026757] NR_IRQS: 524544, nr_irqs: 864, preallocated irqs: 0
[    1.026820] xen:events: Using FIFO-based ABI
[    1.026853] xen: --> pirq=1 -> irq=1 (gsi=1)
[    1.026868] xen: --> pirq=2 -> irq=2 (gsi=2)
[    1.026882] xen: --> pirq=3 -> irq=3 (gsi=3)
[    1.026896] xen: --> pirq=4 -> irq=4 (gsi=4)
[    1.026909] xen: --> pirq=5 -> irq=5 (gsi=5)
[    1.026923] xen: --> pirq=6 -> irq=6 (gsi=6)
[    1.026937] xen: --> pirq=7 -> irq=7 (gsi=7)
[    1.026950] xen: --> pirq=8 -> irq=8 (gsi=8)
[    1.026965] xen: --> pirq=9 -> irq=9 (gsi=9)
[    1.026979] xen: --> pirq=10 -> irq=10 (gsi=10)
[    1.026994] xen: --> pirq=11 -> irq=11 (gsi=11)
[    1.027008] xen: --> pirq=12 -> irq=12 (gsi=12)
[    1.027022] xen: --> pirq=13 -> irq=13 (gsi=13)
[    1.027036] xen: --> pirq=14 -> irq=14 (gsi=14)
[    1.027050] xen: --> pirq=15 -> irq=15 (gsi=15)
[    1.027096] random: crng done (trusting CPU's manufacturer)
[    1.032061] Console: colour VGA+ 80x25
[    1.032073] printk: console [tty0] enabled
[    1.032084] printk: console [hvc0] enabled
[    1.032112] ACPI: Core revision 20200925
[    1.105241] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    1.105253] Xen: using vcpuop timer interface
[    1.105258] installing Xen timer for CPU 0
[    1.105298] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x23f454f0625, max_idle_ns: 440795228661 ns
[    1.105301] Calibrating delay loop (skipped), value calculated using timer frequency.. 4988.67 BogoMIPS (lpj=9977352)
[    1.105304] pid_max: default: 32768 minimum: 301
[    1.105398] LSM: Security Framework initializing
[    1.105425] Yama: disabled by default; enable with sysctl kernel.yama.*
[    1.105521] AppArmor: AppArmor initialized
[    1.105526] TOMOYO Linux initialized
[    1.105573] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.105578] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.106358] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    1.106359] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    1.106363] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.106364] Spectre V2 : Mitigation: Full generic retpoline
[    1.106365] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    1.106366] Speculative Store Bypass: Vulnerable
[    1.106368] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    1.106506] Freeing SMP alternatives memory: 32K
[    1.109431] cpu 0 spinlock event irq 49
[    1.109439] VPMU disabled by hypervisor.
[    1.109833] Performance Events: unsupported p6 CPU model 62 no PMU driver, software events only.
[    1.109938] rcu: Hierarchical SRCU implementation.
[    1.110416] NMI watchdog: Perf NMI watchdog permanently disabled
[    1.110569] smp: Bringing up secondary CPUs ...
[    1.110839] installing Xen timer for CPU 1
[    1.111206] cpu 1 spinlock event irq 59
[    1.111206] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    1.111206] installing Xen timer for CPU 2
[    1.111206] cpu 2 spinlock event irq 65
[    1.111206] installing Xen timer for CPU 3
[    1.111206] cpu 3 spinlock event irq 71
[    1.111206] smp: Brought up 1 node, 4 CPUs
[    1.111206] smpboot: Max logical packages: 6
[    1.114928] node 0 deferred pages initialised in 0ms
[    1.114965] devtmpfs: initialized
[    1.114965] x86/mm: Memory block size: 128MB
[    1.114965] PM: Registering ACPI NVS region [mem 0xbabc3000-0xbb1bffff] (6279168 bytes)
[    1.114965] PM: Registering ACPI NVS region [mem 0xbb844000-0xbb8c9fff] (548864 bytes)
[    1.114965] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    1.114965] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    1.114965] pinctrl core: initialized pinctrl subsystem
[    1.114965] NET: Registered protocol family 16
[    1.114965] xen:grant_table: Grant tables using version 1 layout
[    1.114965] Grant table initialized
[    1.114965] audit: initializing netlink subsys (disabled)
[    1.114965] audit: type=2000 audit(1612190532.582:1): state=initialized audit_enabled=0 res=1
[    1.114965] thermal_sys: Registered thermal governor 'fair_share'
[    1.114965] thermal_sys: Registered thermal governor 'bang_bang'
[    1.114965] thermal_sys: Registered thermal governor 'step_wise'
[    1.114965] thermal_sys: Registered thermal governor 'user_space'
[    1.114965] ACPI: bus type PCI registered
[    1.114965] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.114965] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xd0000000-0xdfffffff] (base 0xd0000000)
[    1.114965] PCI: MMCONFIG at [mem 0xd0000000-0xdfffffff] reserved in E820
[    1.207901] PCI: Using configuration type 1 for base access
[    1.389470] ACPI: Added _OSI(Module Device)
[    1.389472] ACPI: Added _OSI(Processor Device)
[    1.389474] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.389475] ACPI: Added _OSI(Processor Aggregator Device)
[    1.389477] ACPI: Added _OSI(Linux-Dell-Video)
[    1.389478] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    1.389480] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    1.557336] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    1.571420] xen: registering gsi 9 triggering 0 polarity 0
[    1.576799] ACPI: Interpreter enabled
[    1.576813] ACPI: (supports S0 S5)
[    1.576814] ACPI: Using IOAPIC for interrupt routing
[    1.576855] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.577440] ACPI: Enabled 6 GPEs in block 00 to 3F
[    1.595979] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    1.595985] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    1.596208] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME AER LTR]
[    1.596413] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PCIeCapability]
[    1.596978] PCI host bridge to bus 0000:00
[    1.596981] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    1.596982] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    1.596983] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    1.596984] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    1.596985] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.596987] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    1.596988] pci_bus 0000:00: root bus resource [mem 0xcc000000-0xffffffff window]
[    1.596989] pci_bus 0000:00: root bus resource [mem 0x440000000-0x3fffffffffff window]
[    1.596991] pci_bus 0000:00: root bus resource [bus 00-fe]
[    1.597047] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    1.597340] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    1.597578] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[    1.597930] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    1.598217] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400
[    1.598568] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    1.598868] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    1.599219] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    1.599490] pci 0000:00:02.1: [8086:0e05] type 01 class 0x060400
[    1.599840] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[    1.600112] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    1.600462] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    1.600731] pci 0000:00:02.3: [8086:0e07] type 01 class 0x060400
[    1.601081] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
[    1.601380] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    1.601545] pci 0000:00:03.0: enabling Extended Tags
[    1.601754] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    1.602026] pci 0000:00:03.1: [8086:0e09] type 01 class 0x060400
[    1.602382] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    1.602653] pci 0000:00:03.2: [8086:0e0a] type 01 class 0x060400
[    1.603003] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    1.603275] pci 0000:00:03.3: [8086:0e0b] type 01 class 0x060400
[    1.603625] pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
[    1.603895] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[    1.604321] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[    1.604744] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020
[    1.604795] pci 0000:00:05.4: reg 0x10: [mem 0xfb304000-0xfb304fff]
[    1.605266] pci 0000:00:06.0: [8086:0e10] type 00 class 0x088000
[    1.605697] pci 0000:00:06.1: [8086:0e11] type 00 class 0x088000
[    1.606116] pci 0000:00:06.2: [8086:0e12] type 00 class 0x088000
[    1.606545] pci 0000:00:06.3: [8086:0e13] type 00 class 0x088000
[    1.606964] pci 0000:00:06.4: [8086:0e14] type 00 class 0x088000
[    1.607385] pci 0000:00:06.5: [8086:0e15] type 00 class 0x088000
[    1.607803] pci 0000:00:06.6: [8086:0e16] type 00 class 0x088000
[    1.608220] pci 0000:00:06.7: [8086:0e17] type 00 class 0x088000
[    1.608645] pci 0000:00:07.0: [8086:0e18] type 00 class 0x088000
[    1.609067] pci 0000:00:07.1: [8086:0e19] type 00 class 0x088000
[    1.609493] pci 0000:00:07.2: [8086:0e1a] type 00 class 0x088000
[    1.609911] pci 0000:00:07.3: [8086:0e1b] type 00 class 0x088000
[    1.610339] pci 0000:00:07.4: [8086:0e1c] type 00 class 0x088000
[    1.610866] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    1.610924] pci 0000:00:1a.0: reg 0x10: [mem 0xfb302000-0xfb3023ff]
[    1.611240] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    1.611451] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    1.611800] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    1.611872] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    1.611879] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    1.612072] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    1.612422] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    1.612491] pci 0000:00:1c.1: Enabling MPC IRBNCE
[    1.612498] pci 0000:00:1c.1: Intel PCH root port ACS workaround enabled
[    1.612697] pci 0000:00:1c.4: [8086:1e18] type 01 class 0x060400
[    1.613046] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    1.613116] pci 0000:00:1c.4: Enabling MPC IRBNCE
[    1.613122] pci 0000:00:1c.4: Intel PCH root port ACS workaround enabled
[    1.613344] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    1.613402] pci 0000:00:1d.0: reg 0x10: [mem 0xfb301000-0xfb3013ff]
[    1.613718] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.613915] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    1.614322] pci 0000:00:1f.0: [8086:1e48] type 00 class 0x060100
[    1.614847] pci 0000:00:1f.2: [8086:1e02] type 00 class 0x010601
[    1.614903] pci 0000:00:1f.2: reg 0x10: [io  0xf070-0xf077]
[    1.614933] pci 0000:00:1f.2: reg 0x14: [io  0xf060-0xf063]
[    1.614963] pci 0000:00:1f.2: reg 0x18: [io  0xf050-0xf057]
[    1.614993] pci 0000:00:1f.2: reg 0x1c: [io  0xf040-0xf043]
[    1.615023] pci 0000:00:1f.2: reg 0x20: [io  0xf020-0xf03f]
[    1.615053] pci 0000:00:1f.2: reg 0x24: [mem 0xfb300000-0xfb3007ff]
[    1.615236] pci 0000:00:1f.2: PME# supported from D3hot
[    1.615419] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    1.615490] pci 0000:00:1f.3: reg 0x10: [mem 0x3ffffff00000-0x3ffffff000ff 64bit]
[    1.615576] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    1.615916] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.616084] pci 0000:00:01.1: PCI bridge to [bus 02]
[    1.616287] pci 0000:03:00.0: [10de:01d3] type 00 class 0x030000
[    1.616339] pci 0000:03:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
[    1.616382] pci 0000:03:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
[    1.616425] pci 0000:03:00.0: reg 0x1c: [mem 0xf9000000-0xf9ffffff 64bit]
[    1.616479] pci 0000:03:00.0: reg 0x30: [mem 0xfb000000-0xfb01ffff pref]
[    1.616760] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    1.616787] pci 0000:00:02.0: PCI bridge to [bus 03]
[    1.616806] pci 0000:00:02.0:   bridge window [mem 0xf9000000-0xfb0fffff]
[    1.616823] pci 0000:00:02.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[    1.616954] pci 0000:00:02.1: PCI bridge to [bus 04]
[    1.617119] pci 0000:00:02.2: PCI bridge to [bus 05]
[    1.617279] pci 0000:00:02.3: PCI bridge to [bus 06]
[    1.617452] pci 0000:00:03.0: PCI bridge to [bus 07]
[    1.617615] pci 0000:00:03.1: PCI bridge to [bus 08]
[    1.617775] pci 0000:00:03.2: PCI bridge to [bus 09]
[    1.617937] pci 0000:00:03.3: PCI bridge to [bus 0a]
[    1.618094] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[    1.618316] pci 0000:0c:00.0: [1106:3483] type 00 class 0x0c0330
[    1.618399] pci 0000:0c:00.0: reg 0x10: [mem 0xfb200000-0xfb200fff 64bit]
[    1.618761] pci 0000:0c:00.0: PME# supported from D0 D3cold
[    1.618953] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[    1.618972] pci 0000:00:1c.1:   bridge window [mem 0xfb200000-0xfb2fffff]
[    1.619181] pci 0000:0d:00.0: [10ec:8168] type 00 class 0x020000
[    1.619247] pci 0000:0d:00.0: reg 0x10: [io  0xe000-0xe0ff]
[    1.619337] pci 0000:0d:00.0: reg 0x18: [mem 0xfb104000-0xfb104fff 64bit]
[    1.619392] pci 0000:0d:00.0: reg 0x20: [mem 0xfb100000-0xfb103fff 64bit]
[    1.619722] pci 0000:0d:00.0: supports D1 D2
[    1.619723] pci 0000:0d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.619988] pci 0000:00:1c.4: PCI bridge to [bus 0d]
[    1.619999] pci 0000:00:1c.4:   bridge window [io  0xe000-0xefff]
[    1.620009] pci 0000:00:1c.4:   bridge window [mem 0xfb100000-0xfb1fffff]
[    1.620094] pci_bus 0000:0e: extended config space not accessible
[    1.620255] pci 0000:00:1e.0: PCI bridge to [bus 0e] (subtractive decode)
[    1.620290] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    1.620291] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    1.620293] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    1.620294] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    1.620295] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    1.620296] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[    1.620297] pci 0000:00:1e.0:   bridge window [mem 0xcc000000-0xffffffff window] (subtractive decode)
[    1.620299] pci 0000:00:1e.0:   bridge window [mem 0x440000000-0x3fffffffffff window] (subtractive decode)
[    1.620843] xen: registering gsi 13 triggering 1 polarity 0
[    1.621072] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus ff])
[    1.621076] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    1.621101] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
[    1.621164] PCI host bridge to bus 0000:ff
[    1.621166] pci_bus 0000:ff: root bus resource [bus ff]
[    1.621224] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000
[    1.621479] pci 0000:ff:08.2: [8086:0e32] type 00 class 0x110100
[    1.621738] pci 0000:ff:08.3: [8086:0e83] type 00 class 0x088000
[    1.622081] pci 0000:ff:08.4: [8086:0e84] type 00 class 0x088000
[    1.622440] pci 0000:ff:08.5: [8086:0e85] type 00 class 0x088000
[    1.622778] pci 0000:ff:08.6: [8086:0e86] type 00 class 0x088000
[    1.623116] pci 0000:ff:08.7: [8086:0e87] type 00 class 0x088000
[    1.623447] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000
[    1.623697] pci 0000:ff:09.2: [8086:0e33] type 00 class 0x110100
[    1.623954] pci 0000:ff:09.3: [8086:0e93] type 00 class 0x088000
[    1.624292] pci 0000:ff:09.4: [8086:0e94] type 00 class 0x088000
[    1.624637] pci 0000:ff:09.5: [8086:0e95] type 00 class 0x088000
[    1.624973] pci 0000:ff:09.6: [8086:0e96] type 00 class 0x088000
[    1.625297] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000
[    1.625540] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000
[    1.625777] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000
[    1.626021] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000
[    1.626282] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000
[    1.626523] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000
[    1.626771] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000
[    1.627008] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000
[    1.627242] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000
[    1.627476] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000
[    1.627712] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000
[    1.627950] pci 0000:ff:0c.5: [8086:0eea] type 00 class 0x088000
[    1.628192] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000
[    1.628427] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000
[    1.628664] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000
[    1.628898] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000
[    1.629132] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000
[    1.629377] pci 0000:ff:0d.5: [8086:0eeb] type 00 class 0x088000
[    1.629620] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000
[    1.629863] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100
[    1.630142] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000
[    1.630486] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000
[    1.630825] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000
[    1.631159] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000
[    1.631491] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000
[    1.631824] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000
[    1.632170] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000
[    1.632510] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000
[    1.632844] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000
[    1.633179] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000
[    1.633517] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000
[    1.633852] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000
[    1.634190] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000
[    1.634528] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000
[    1.634856] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000
[    1.635096] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100
[    1.635340] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000
[    1.635575] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100
[    1.635830] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000
[    1.636065] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000
[    1.636299] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000
[    1.636583] pci 0000:ff:1c.0: [8086:0e60] type 00 class 0x088000
[    1.636822] pci 0000:ff:1c.1: [8086:0e38] type 00 class 0x110100
[    1.637112] pci 0000:ff:1d.0: [8086:0e68] type 00 class 0x088000
[    1.637452] pci 0000:ff:1d.1: [8086:0e79] type 00 class 0x088000
[    1.637787] pci 0000:ff:1d.2: [8086:0e6a] type 00 class 0x088000
[    1.638122] pci 0000:ff:1d.3: [8086:0e6b] type 00 class 0x088000
[    1.638467] pci 0000:ff:1d.4: [8086:0e6c] type 00 class 0x088000
[    1.638806] pci 0000:ff:1d.5: [8086:0e6d] type 00 class 0x088000
[    1.639151] pci 0000:ff:1e.0: [8086:0ef0] type 00 class 0x088000
[    1.639486] pci 0000:ff:1e.1: [8086:0ef1] type 00 class 0x088000
[    1.639826] pci 0000:ff:1e.2: [8086:0ef2] type 00 class 0x088000
[    1.640161] pci 0000:ff:1e.3: [8086:0ef3] type 00 class 0x088000
[    1.640495] pci 0000:ff:1e.4: [8086:0ef4] type 00 class 0x088000
[    1.640831] pci 0000:ff:1e.5: [8086:0ef5] type 00 class 0x088000
[    1.641166] pci 0000:ff:1e.6: [8086:0ef6] type 00 class 0x088000
[    1.641506] pci 0000:ff:1e.7: [8086:0ef7] type 00 class 0x088000
[    1.641972] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    1.642060] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    1.642144] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15)
[    1.642238] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 *4 5 6 10 11 12 14 15)
[    1.642322] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.642407] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.642491] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.642576] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    1.645319] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 4/0x1 ignored.
[    1.645319] ACPI: Unable to map lapic to logical cpu number
[    1.645490] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 5/0x3 ignored.
[    1.645491] ACPI: Unable to map lapic to logical cpu number
[    1.645638] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 6/0x5 ignored.
[    1.645639] ACPI: Unable to map lapic to logical cpu number
[    1.645786] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 7/0x7 ignored.
[    1.645787] ACPI: Unable to map lapic to logical cpu number
[    1.645876] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 8/0x8 ignored.
[    1.645877] ACPI: Unable to map lapic to logical cpu number
[    1.645970] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 9/0x9 ignored.
[    1.645971] ACPI: Unable to map lapic to logical cpu number
[    1.646060] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 10/0xa ignored.
[    1.646061] ACPI: Unable to map lapic to logical cpu number
[    1.646154] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 11/0xb ignored.
[    1.646155] ACPI: Unable to map lapic to logical cpu number
[    1.646244] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 12/0x10 ignored.
[    1.646245] ACPI: Unable to map lapic to logical cpu number
[    1.646339] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 13/0x11 ignored.
[    1.646340] ACPI: Unable to map lapic to logical cpu number
[    1.646430] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 14/0x12 ignored.
[    1.646430] ACPI: Unable to map lapic to logical cpu number
[    1.646525] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 15/0x13 ignored.
[    1.646526] ACPI: Unable to map lapic to logical cpu number
[    1.646616] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 16/0x14 ignored.
[    1.646617] ACPI: Unable to map lapic to logical cpu number
[    1.646711] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 17/0x15 ignored.
[    1.646712] ACPI: Unable to map lapic to logical cpu number
[    1.646807] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 18/0x16 ignored.
[    1.646808] ACPI: Unable to map lapic to logical cpu number
[    1.646903] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 19/0x17 ignored.
[    1.646904] ACPI: Unable to map lapic to logical cpu number
[    1.646997] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 20/0x18 ignored.
[    1.646998] ACPI: Unable to map lapic to logical cpu number
[    1.647093] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 21/0x19 ignored.
[    1.647094] ACPI: Unable to map lapic to logical cpu number
[    1.647186] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 22/0x1a ignored.
[    1.647187] ACPI: Unable to map lapic to logical cpu number
[    1.647283] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 23/0x1b ignored.
[    1.647283] ACPI: Unable to map lapic to logical cpu number
[    1.647816] xen:balloon: Initialising balloon driver
[    1.647816] iommu: Default domain type: Translated 
[    1.649339] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[    1.649340] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.649354] pci 0000:03:00.0: vgaarb: bridge control possible
[    1.649355] vgaarb: loaded
[    1.649451] EDAC MC: Ver: 3.0.0
[    1.650417] NetLabel: Initializing
[    1.650417] NetLabel:  domain hash size = 128
[    1.650417] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.650417] NetLabel:  unlabeled traffic allowed by default
[    1.650417] PCI: Using ACPI for IRQ routing
[    1.678180] PCI: pci_cache_line_size set to 64 bytes
[    1.679029] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    1.679032] e820: reserve RAM buffer [mem 0x80062000-0x83ffffff]
[    1.681330] clocksource: Switched to clocksource tsc-early
[    1.692898] VFS: Disk quotas dquot_6.6.0
[    1.692915] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.692937] hugetlbfs: disabling because there are no supported hugepage sizes
[    1.693029] AppArmor: AppArmor Filesystem Enabled
[    1.693047] pnp: PnP ACPI init
[    1.693193] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    1.693195] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    1.693196] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    1.693198] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    1.693199] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    1.693201] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[    1.693202] system 00:00: [mem 0xfee00000-0xfeefffff] has been reserved
[    1.693208] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.693357] system 00:01: [mem 0xfbffc000-0xfbffdfff] could not be reserved
[    1.693362] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.693598] system 00:02: [io  0x0a00-0x0a1f] has been reserved
[    1.693599] system 00:02: [io  0x0a20-0x0a2f] has been reserved
[    1.693601] system 00:02: [io  0x0a30-0x0a3f] has been reserved
[    1.693605] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.693634] xen: registering gsi 1 triggering 1 polarity 0
[    1.693679] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    1.693715] xen: registering gsi 12 triggering 1 polarity 0
[    1.693756] pnp 00:04: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[    1.693783] xen: registering gsi 8 triggering 1 polarity 0
[    1.693820] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.693912] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    1.693917] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.694191] system 00:07: [io  0x0400-0x0453] has been reserved
[    1.694192] system 00:07: [io  0x0458-0x047f] has been reserved
[    1.694194] system 00:07: [io  0x1180-0x119f] has been reserved
[    1.694195] system 00:07: [io  0x0500-0x057f] has been reserved
[    1.694197] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.694199] system 00:07: [mem 0xfec00000-0xfecfffff] could not be reserved
[    1.694201] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    1.694205] system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.694319] system 00:08: [io  0x0454-0x0457] has been reserved
[    1.694324] system 00:08: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    1.694787] pnp: PnP ACPI: found 9 devices
[    1.714225] PM-Timer failed consistency check  (0xffffff) - aborting.
[    1.714286] NET: Registered protocol family 2
[    1.714593] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    1.714613] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.714663] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    1.714685] TCP: Hash tables configured (established 16384 bind 16384)
[    1.714728] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.714737] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.714905] NET: Registered protocol family 1
[    1.714914] NET: Registered protocol family 44
[    1.714949] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.714990] pci 0000:00:01.1: PCI bridge to [bus 02]
[    1.715028] pci 0000:00:02.0: PCI bridge to [bus 03]
[    1.715042] pci 0000:00:02.0:   bridge window [mem 0xf9000000-0xfb0fffff]
[    1.715052] pci 0000:00:02.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[    1.715069] pci 0000:00:02.1: PCI bridge to [bus 04]
[    1.715107] pci 0000:00:02.2: PCI bridge to [bus 05]
[    1.715145] pci 0000:00:02.3: PCI bridge to [bus 06]
[    1.715182] pci 0000:00:03.0: PCI bridge to [bus 07]
[    1.715220] pci 0000:00:03.1: PCI bridge to [bus 08]
[    1.715258] pci 0000:00:03.2: PCI bridge to [bus 09]
[    1.715295] pci 0000:00:03.3: PCI bridge to [bus 0a]
[    1.715334] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[    1.715373] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[    1.715387] pci 0000:00:1c.1:   bridge window [mem 0xfb200000-0xfb2fffff]
[    1.715414] pci 0000:00:1c.4: PCI bridge to [bus 0d]
[    1.715420] pci 0000:00:1c.4:   bridge window [io  0xe000-0xefff]
[    1.715434] pci 0000:00:1c.4:   bridge window [mem 0xfb100000-0xfb1fffff]
[    1.715460] pci 0000:00:1e.0: PCI bridge to [bus 0e]
[    1.715500] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    1.715501] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    1.715502] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    1.715503] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    1.715505] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    1.715506] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    1.715507] pci_bus 0000:00: resource 10 [mem 0xcc000000-0xffffffff window]
[    1.715508] pci_bus 0000:00: resource 11 [mem 0x440000000-0x3fffffffffff window]
[    1.715510] pci_bus 0000:03: resource 1 [mem 0xf9000000-0xfb0fffff]
[    1.715511] pci_bus 0000:03: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
[    1.715513] pci_bus 0000:0c: resource 1 [mem 0xfb200000-0xfb2fffff]
[    1.715514] pci_bus 0000:0d: resource 0 [io  0xe000-0xefff]
[    1.715516] pci_bus 0000:0d: resource 1 [mem 0xfb100000-0xfb1fffff]
[    1.715517] pci_bus 0000:0e: resource 4 [io  0x0000-0x03af window]
[    1.715518] pci_bus 0000:0e: resource 5 [io  0x03e0-0x0cf7 window]
[    1.715520] pci_bus 0000:0e: resource 6 [io  0x03b0-0x03df window]
[    1.715521] pci_bus 0000:0e: resource 7 [io  0x0d00-0xffff window]
[    1.715522] pci_bus 0000:0e: resource 8 [mem 0x000a0000-0x000bffff window]
[    1.715523] pci_bus 0000:0e: resource 9 [mem 0x000c0000-0x000dffff window]
[    1.715525] pci_bus 0000:0e: resource 10 [mem 0xcc000000-0xffffffff window]
[    1.715526] pci_bus 0000:0e: resource 11 [mem 0x440000000-0x3fffffffffff window]
[    1.715667] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[    1.715854] xen: registering gsi 16 triggering 0 polarity 1
[    1.715882] xen: --> pirq=16 -> irq=16 (gsi=16)
[    1.716124] xen: registering gsi 23 triggering 0 polarity 1
[    1.716144] xen: --> pirq=23 -> irq=23 (gsi=23)
[    1.716346] pci 0000:03:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.716429] xen: registering gsi 16 triggering 0 polarity 1
[    1.716433] Already setup the GSI :16
[    1.716479] xen: registering gsi 17 triggering 0 polarity 1
[    1.716496] xen: --> pirq=17 -> irq=17 (gsi=17)
[    1.716946] PCI: CLS 64 bytes, default 64
[    1.717001] Trying to unpack rootfs image as initramfs...
[    2.249216] Freeing initrd memory: 34772K
[    2.249272] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x23f454f0625, max_idle_ns: 440795228661 ns
[    2.249378] clocksource: Switched to clocksource tsc
[    2.249848] Initialise system trusted keyrings
[    2.249861] Key type blacklist registered
[    2.250006] workingset: timestamp_bits=36 max_order=18 bucket_order=0
[    2.251095] zbud: loaded
[    2.251551] integrity: Platform Keyring initialized
[    2.251555] Key type asymmetric registered
[    2.251556] Asymmetric key parser 'x509' registered
[    2.251566] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    2.251721] io scheduler mq-deadline registered
[    2.252044] xen: registering gsi 26 triggering 0 polarity 1
[    2.252074] xen: --> pirq=26 -> irq=26 (gsi=26)
[    2.252617] xen: registering gsi 26 triggering 0 polarity 1
[    2.252622] Already setup the GSI :26
[    2.253120] xen: registering gsi 32 triggering 0 polarity 1
[    2.253138] xen: --> pirq=32 -> irq=32 (gsi=32)
[    2.253646] xen: registering gsi 32 triggering 0 polarity 1
[    2.253650] Already setup the GSI :32
[    2.254145] xen: registering gsi 32 triggering 0 polarity 1
[    2.254149] Already setup the GSI :32
[    2.254635] xen: registering gsi 32 triggering 0 polarity 1
[    2.254640] Already setup the GSI :32
[    2.255134] xen: registering gsi 40 triggering 0 polarity 1
[    2.255152] xen: --> pirq=40 -> irq=40 (gsi=40)
[    2.255651] xen: registering gsi 40 triggering 0 polarity 1
[    2.255656] Already setup the GSI :40
[    2.256141] xen: registering gsi 40 triggering 0 polarity 1
[    2.256146] Already setup the GSI :40
[    2.256635] xen: registering gsi 40 triggering 0 polarity 1
[    2.256640] Already setup the GSI :40
[    2.257129] xen: registering gsi 17 triggering 0 polarity 1
[    2.257134] Already setup the GSI :17
[    2.257753] xen: registering gsi 17 triggering 0 polarity 1
[    2.257757] Already setup the GSI :17
[    2.258120] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.258132] intel_idle: MWAIT substates: 0x1120
[    2.258260] Monitor-Mwait will be used to enter C-1 state
[    2.258270] ACPI: \_SB_.SCK0.C000: Found 1 idle states
[    2.258271] intel_idle: v0.5.1 model 0x3E
[    2.258276] intel_idle: intel_idle yielding to none
[    2.258415] ACPI: \_SB_.SCK0.C000: Found 1 idle states
[    2.258700] ACPI: \_SB_.SCK0.C002: Found 1 idle states
[    2.259064] ACPI: \_SB_.SCK0.C004: Found 1 idle states
[    2.259367] ACPI: \_SB_.SCK0.C006: Found 1 idle states
[    2.260033] xen_mcelog: /dev/mcelog registered by Xen
[    2.260607] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.261340] hpet_acpi_add: no address or irqs in _CRS
[    2.261363] Linux agpgart interface v0.103
[    2.261461] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    2.261462] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[    2.261866] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    2.262495] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.262501] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.262707] mousedev: PS/2 mouse device common for all mice
[    2.262788] rtc_cmos 00:05: RTC can wake from S4
[    2.263155] rtc_cmos 00:05: registered as rtc0
[    2.263231] rtc_cmos 00:05: setting system clock to 2021-02-01T14:42:12 UTC (1612190532)
[    2.263253] rtc_cmos 00:05: alarms up to one month, y3k, 114 bytes nvram
[    2.263261] intel_pstate: CPU model not supported
[    2.263386] ledtrig-cpu: registered to indicate activity on CPUs
[    2.264139] NET: Registered protocol family 10
[    2.284721] Segment Routing with IPv6
[    2.284742] mip6: Mobile IPv6
[    2.284745] NET: Registered protocol family 17
[    2.284858] mpls_gso: MPLS GSO support
[    2.285150] IPI shorthand broadcast: enabled
[    2.285157] sched_clock: Marking stable (2206874906, 78236752)->(2297763652, -12651994)
[    2.285490] registered taskstats version 1
[    2.285493] Loading compiled-in X.509 certificates
[    2.325233] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
[    2.325253] Loaded X.509 cert 'Debian Secure Boot Signer 2020: 00b55eb3b9'
[    2.325289] zswap: loaded using pool lzo/zbud
[    2.325738] Key type ._fscrypt registered
[    2.325739] Key type .fscrypt registered
[    2.325740] Key type fscrypt-provisioning registered
[    2.325786] AppArmor: AppArmor sha1 policy hashing enabled
[    2.328318] Freeing unused kernel image (initmem) memory: 2380K
[    2.357373] Write protecting the kernel read-only data: 18432k
[    2.371440] Freeing unused kernel image (text/rodata gap) memory: 2040K
[    2.371511] Freeing unused kernel image (rodata/data gap) memory: 36K
[    2.822307] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.822386] Run /init as init process
[    2.822389]   with arguments:
[    2.822390]     /init
[    2.822391]     placeholder
[    2.822391]   with environment:
[    2.822393]     HOME=/
[    2.822393]     TERM=linux
[    3.146199] xen: registering gsi 18 triggering 0 polarity 1
[    3.146239] xen: --> pirq=18 -> irq=18 (gsi=18)
[    3.146404] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    3.147113] i2c i2c-0: 4/4 memory slots populated (from DMI)
[    3.148825] ACPI: bus type USB registered
[    3.148861] usbcore: registered new interface driver usbfs
[    3.148874] usbcore: registered new interface driver hub
[    3.149461] usbcore: registered new device driver usb
[    3.154274] SCSI subsystem initialized
[    3.156140] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.158342] xen: registering gsi 16 triggering 0 polarity 1
[    3.158348] Already setup the GSI :16
[    3.159163] ehci-pci: EHCI PCI platform driver
[    3.159298] xen: registering gsi 16 triggering 0 polarity 1
[    3.159308] Already setup the GSI :16
[    3.160334] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    3.160345] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.160390] ehci-pci 0000:00:1a.0: debug port 2
[    3.164368] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    3.165340] ehci-pci 0000:00:1a.0: irq 16, io mem 0xfb302000
[    3.182604] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.184260] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    3.184263] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.184264] usb usb1: Product: EHCI Host Controller
[    3.184266] usb usb1: Manufacturer: Linux 5.10.0-1-amd64 ehci_hcd
[    3.184267] usb usb1: SerialNumber: 0000:00:1a.0
[    3.184463] hub 1-0:1.0: USB hub found
[    3.184488] hub 1-0:1.0: 2 ports detected
[    3.184945] xen: registering gsi 23 triggering 0 polarity 1
[    3.184950] Already setup the GSI :23
[    3.185076] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.185085] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.185130] ehci-pci 0000:00:1d.0: debug port 2
[    3.185284] xen: registering gsi 17 triggering 0 polarity 1
[    3.185289] Already setup the GSI :17
[    3.189117] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    3.189177] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb301000
[    3.189267] libata version 3.00 loaded.
[    3.194907] libphy: r8169: probed
[    3.195172] r8169 0000:0d:00.0 eth0: RTL8168h/8111h, 00:e0:4c:0a:52:97, XID 541, IRQ 89
[    3.195175] r8169 0000:0d:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    3.198062] ahci 0000:00:1f.2: version 3.0
[    3.198176] xen: registering gsi 19 triggering 0 polarity 1
[    3.198197] xen: --> pirq=19 -> irq=19 (gsi=19)
[    3.198375] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
[    3.198378] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    3.201345] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.201519] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    3.201522] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.201524] usb usb2: Product: EHCI Host Controller
[    3.201526] usb usb2: Manufacturer: Linux 5.10.0-1-amd64 ehci_hcd
[    3.201528] usb usb2: SerialNumber: 0000:00:1d.0
[    3.201747] hub 2-0:1.0: USB hub found
[    3.201777] hub 2-0:1.0: 2 ports detected
[    3.202063] xhci_hcd 0000:0c:00.0: xHCI Host Controller
[    3.202072] xhci_hcd 0000:0c:00.0: new USB bus registered, assigned bus number 3
[    3.202636] xhci_hcd 0000:0c:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x0000000000000890
[    3.203041] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    3.203043] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.203045] usb usb3: Product: xHCI Host Controller
[    3.203047] usb usb3: Manufacturer: Linux 5.10.0-1-amd64 xhci-hcd
[    3.203049] usb usb3: SerialNumber: 0000:0c:00.0
[    3.203227] hub 3-0:1.0: USB hub found
[    3.203256] hub 3-0:1.0: 1 port detected
[    3.203544] xhci_hcd 0000:0c:00.0: xHCI Host Controller
[    3.203550] xhci_hcd 0000:0c:00.0: new USB bus registered, assigned bus number 4
[    3.203555] xhci_hcd 0000:0c:00.0: Host supports USB 3.0 SuperSpeed
[    3.203776] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    3.203779] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.203781] usb usb4: Product: xHCI Host Controller
[    3.203782] usb usb4: Manufacturer: Linux 5.10.0-1-amd64 xhci-hcd
[    3.203783] usb usb4: SerialNumber: 0000:0c:00.0
[    3.203978] hub 4-0:1.0: USB hub found
[    3.204008] hub 4-0:1.0: 4 ports detected
[    3.209996] scsi host0: ahci
[    3.210379] scsi host1: ahci
[    3.210683] scsi host2: ahci
[    3.211191] scsi host3: ahci
[    3.213429] scsi host4: ahci
[    3.214474] scsi host5: ahci
[    3.214556] ata1: SATA max UDMA/133 abar m2048@0xfb300000 port 0xfb300100 irq 90
[    3.214559] ata2: SATA max UDMA/133 abar m2048@0xfb300000 port 0xfb300180 irq 90
[    3.214561] ata3: DUMMY
[    3.214562] ata4: DUMMY
[    3.214563] ata5: DUMMY
[    3.214564] ata6: DUMMY
[    3.231993] r8169 0000:0d:00.0 enp13s0: renamed from eth0
[    3.517376] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    3.528784] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.528809] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.529199] ata1.00: ATA-11: KINGSTON SUV400S37120G, 0C3FD6SD, max UDMA/133
[    3.529202] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    3.530032] ata1.00: configured for UDMA/133
[    3.530192] scsi 0:0:0:0: Direct-Access     ATA      KINGSTON SUV400S D6SD PQ: 0 ANSI: 5
[    3.537373] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[    3.537386] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    3.545522] ata2.00: ATA-8: KINGSTON SV300S37A120G, 525ABBF0, max UDMA/133
[    3.545524] ata2.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    3.566634] ata2.00: configured for UDMA/133
[    3.566764] scsi 1:0:0:0: Direct-Access     ATA      KINGSTON SV300S3 BBF0 PQ: 0 ANSI: 5
[    3.577199] sd 1:0:0:0: [sdb] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[    3.577217] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[    3.577220] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    3.577223] sd 1:0:0:0: [sdb] Write Protect is off
[    3.577227] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.577243] sd 0:0:0:0: [sda] Write Protect is off
[    3.577245] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.577268] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.577286] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.594805] sd 1:0:0:0: [sdb] Attached SCSI disk
[    3.602006]  sda: sda1 sda2
[    3.602690] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.665476] device-mapper: uevent: version 1.0.3
[    3.665601] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[    3.673658] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    3.673661] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.674005] hub 1-1:1.0: USB hub found
[    3.674179] hub 1-1:1.0: 6 ports detected
[    3.690657] usb 3-1: New USB device found, idVendor=2109, idProduct=3431, bcdDevice= 4.20
[    3.690660] usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.690661] usb 3-1: Product: USB2.0 Hub
[    3.691645] hub 3-1:1.0: USB hub found
[    3.691989] hub 3-1:1.0: 4 ports detected
[    3.693654] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    3.693657] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.694157] hub 2-1:1.0: USB hub found
[    3.694283] hub 2-1:1.0: 8 ports detected
[    3.811430] PM: Image not found (code -22)
[    3.969332] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
[    3.970134] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    3.989350] usb 2-1.4: new high-speed USB device number 3 using ehci-pci
[    4.084193] usb 1-1.2: New USB device found, idVendor=099a, idProduct=610c, bcdDevice= 0.01
[    4.084196] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.084198] usb 1-1.2: Product: USB Multimedia Keyboard 
[    4.084199] usb 1-1.2: Manufacturer:  
[    4.109504] usb 2-1.4: New USB device found, idVendor=148f, idProduct=7601, bcdDevice= 0.00
[    4.109507] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.109508] usb 2-1.4: Product: 802.11 n WLAN
[    4.109509] usb 2-1.4: Manufacturer: MediaTek
[    4.109510] usb 2-1.4: SerialNumber: 1.0
[    4.209068] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[    5.459433] systemd[1]: Inserted module 'autofs4'
[    5.505335] systemd[1]: systemd 247.2-5 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
[    5.505618] systemd[1]: Detected architecture x86-64.
[    5.508215] systemd[1]: Set hostname to <debian>.
[    5.576257] systemd-sysv-generator[223]: SysV service '/etc/init.d/xen' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    5.593520] systemd-sysv-generator[223]: SysV service '/etc/init.d/exim4' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    5.593650] systemd-sysv-generator[223]: SysV service '/etc/init.d/xencommons' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    5.596808] systemd-sysv-generator[223]: SysV service '/etc/init.d/isc-dhcp-server' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[    5.656794] systemd[1]: /lib/systemd/system/virtlogd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlogd-sock → /run/libvirt/virtlogd-sock; please update the unit file accordingly.
[    5.665747] systemd[1]: /lib/systemd/system/virtlogd-admin.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlogd-admin-sock → /run/libvirt/virtlogd-admin-sock; please update the unit file accordingly.
[    5.666326] systemd[1]: /lib/systemd/system/virtlockd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlockd-sock → /run/libvirt/virtlockd-sock; please update the unit file accordingly.
[    5.667359] systemd[1]: /lib/systemd/system/virtlockd-admin.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlockd-admin-sock → /run/libvirt/virtlockd-admin-sock; please update the unit file accordingly.
[    5.718990] systemd[1]: Queued start job for default target Graphical Interface.
[    5.720940] systemd[1]: Created slice Virtual Machine and Container Slice.
[    5.722527] systemd[1]: Created slice system-getty.slice.
[    5.723458] systemd[1]: Created slice system-modprobe.slice.
[    5.724350] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    5.725209] systemd[1]: Created slice User and Session Slice.
[    5.725858] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    5.726463] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    5.727229] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    5.727724] systemd[1]: Reached target Local Encrypted Volumes.
[    5.728218] systemd[1]: Reached target Paths.
[    5.728688] systemd[1]: Reached target Remote File Systems.
[    5.729159] systemd[1]: Reached target Slices.
[    5.729674] systemd[1]: Reached target Libvirt guests shutdown.
[    5.730269] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    5.730900] systemd[1]: Listening on LVM2 poll daemon socket.
[    5.732452] systemd[1]: Listening on Syslog Socket.
[    5.733096] systemd[1]: Listening on fsck to fsckd communication Socket.
[    5.733687] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    5.734528] systemd[1]: Listening on Journal Audit Socket.
[    5.735202] systemd[1]: Listening on Journal Socket (/dev/log).
[    5.735937] systemd[1]: Listening on Journal Socket.
[    5.736659] systemd[1]: Listening on udev Control Socket.
[    5.737328] systemd[1]: Listening on udev Kernel Socket.
[    5.738131] systemd[1]: Condition check resulted in Huge Pages File System being skipped.
[    5.740825] systemd[1]: Mounting POSIX Message Queue File System...
[    5.744163] systemd[1]: Mounting Kernel Debug File System...
[    5.747458] systemd[1]: Mounting Kernel Trace File System...
[    5.748517] systemd[1]: Finished Availability of block devices.
[    5.752551] systemd[1]: Starting Set the console keyboard layout...
[    5.756271] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    5.759362] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    5.763222] systemd[1]: Starting Load Kernel Module configfs...
[    5.766943] systemd[1]: Starting Load Kernel Module drm...
[    5.770748] systemd[1]: Starting Load Kernel Module fuse...
[    5.772353] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    5.772490] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    5.778946] systemd[1]: Starting Journal Service...
[    5.784249] systemd[1]: Starting Load Kernel Modules...
[    5.788792] systemd[1]: Starting Remount Root and Kernel File Systems...
[    5.793151] systemd[1]: Starting Coldplug All udev Devices...
[    5.798696] systemd[1]: Mounted POSIX Message Queue File System.
[    5.799378] systemd[1]: Mounted Kernel Debug File System.
[    5.800063] systemd[1]: Mounted Kernel Trace File System.
[    5.801139] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    5.802268] systemd[1]: modprobe@configfs.service: Succeeded.
[    5.802702] systemd[1]: Finished Load Kernel Module configfs.
[    5.805935] systemd[1]: Mounting Kernel Configuration File System...
[    5.816628] systemd[1]: Mounted Kernel Configuration File System.
[    5.851830] fuse: init (API version 7.32)
[    5.859341] systemd[1]: modprobe@fuse.service: Succeeded.
[    5.859948] systemd[1]: Finished Load Kernel Module fuse.
[    5.864206] systemd[1]: Mounting FUSE Control File System...
[    5.869345] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[    5.872954] xen:xen_evtchn: Event-channel device installed
[    5.877858] systemd[1]: Finished Remount Root and Kernel File Systems.
[    5.879579] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    5.879671] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[    5.882999] systemd[1]: Starting Load/Save Random Seed...
[    5.891772] systemd[1]: Starting Create System Users...
[    5.894002] systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[    5.895491] systemd[1]: modprobe@drm.service: Succeeded.
[    5.896190] systemd[1]: Finished Load Kernel Module drm.
[    5.906180] systemd[1]: Mounted FUSE Control File System.
[    5.917344] xen_pciback: backend is vpci
[    5.941496] systemd[1]: Finished Create System Users.
[    5.944934] systemd[1]: Starting Create Static Device Nodes in /dev...
[    5.950800] systemd[1]: Finished Load/Save Random Seed.
[    5.951724] systemd[1]: Condition check resulted in First Boot Complete being skipped.
[    5.984479] systemd[1]: Finished Create Static Device Nodes in /dev.
[    5.989593] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[    6.001099] systemd[1]: Finished Set the console keyboard layout.
[    6.002977] systemd[1]: Finished Load Kernel Modules.
[    6.004003] systemd[1]: Reached target Local File Systems (Pre).
[    6.004672] systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
[    6.004724] systemd[1]: Reached target Local File Systems.
[    6.005343] systemd[1]: Reached target Containers.
[    6.008834] systemd[1]: Starting Load AppArmor profiles...
[    6.012478] systemd[1]: Starting Set console font and keymap...
[    6.013232] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped.
[    6.013447] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
[    6.013591] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
[    6.018486] systemd[1]: Starting Apply Kernel Variables...
[    6.051021] systemd[1]: Finished Apply Kernel Variables.
[    6.058996] systemd[1]: Finished Set console font and keymap.
[    6.066370] systemd[1]: Started Rule-based Manager for Device Events and Files.
[    6.125440] systemd[1]: Started Journal Service.
[    6.161795] audit: type=1400 audit(1612190536.392:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=282 comm="apparmor_parser"
[    6.164477] audit: type=1400 audit(1612190536.396:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=281 comm="apparmor_parser"
[    6.164483] audit: type=1400 audit(1612190536.396:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=281 comm="apparmor_parser"
[    6.164487] audit: type=1400 audit(1612190536.396:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=281 comm="apparmor_parser"
[    6.164893] audit: type=1400 audit(1612190536.396:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=280 comm="apparmor_parser"
[    6.164900] audit: type=1400 audit(1612190536.396:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=280 comm="apparmor_parser"
[    6.168739] audit: type=1400 audit(1612190536.400:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/libvirtd" pid=279 comm="apparmor_parser"
[    6.168746] audit: type=1400 audit(1612190536.400:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/libvirtd//qemu_bridge_helper" pid=279 comm="apparmor_parser"
[    6.174628] audit: type=1400 audit(1612190536.408:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="virt-aa-helper" pid=283 comm="apparmor_parser"
[    6.231795] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
[    6.245376] ACPI: Power Button [PWRB]
[    6.245478] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[    6.245562] ACPI: Power Button [PWRF]
[    7.738212] hid: raw HID events driver (C) Jiri Kosina
[    7.742009] iTCO_vendor_support: vendor-support=0
[    7.746422] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    7.746471] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    7.746919] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    7.752394] usbcore: registered new interface driver usbhid
[    7.752396] usbhid: USB HID core driver
[    7.771586] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    7.771665] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    7.869954] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    7.870322] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
[    7.870682] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[    7.871027] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    7.871345] platform regulatory.0: firmware: failed to load regulatory.db (-2)
[    7.871347] firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
[    7.871349] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    7.871352] cfg80211: failed to load regulatory.db
[    7.927923] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    8.061333] usb 2-1.4: reset high-speed USB device number 3 using ehci-pci
[    8.164689] cryptd: max_cpu_qlen set to 1000
[    8.165410] Adding 3905532k swap on /dev/sda1.  Priority:-2 extents:1 across:3905532k SSFS
[    8.177540] mt7601u 2-1.4:1.0: ASIC revision: 76010001 MAC revision: 76010500
[    8.179506] mt7601u 2-1.4:1.0: firmware: direct-loading firmware mt7601u.bin
[    8.179515] mt7601u 2-1.4:1.0: Firmware Version: 0.1.00 Build: 7640 Build time: 201302052146____
[    8.221034] AVX version of gcm_enc/dec engaged.
[    8.221037] AES CTR mode by8 optimization enabled
[    8.239217] input:   USB Multimedia Keyboard  as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:099A:610C.0001/input/input6
[    8.299430] hid-generic 0003:099A:610C.0001: input,hidraw0: USB HID v1.00 Keyboard [  USB Multimedia Keyboard ] on usb-0000:00:1a.0-1.2/input0
[    8.299826] input:   USB Multimedia Keyboard  Consumer Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:099A:610C.0002/input/input7
[    8.365222] input:   USB Multimedia Keyboard  System Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:099A:610C.0002/input/input8
[    8.365559] hid-generic 0003:099A:610C.0002: input,hidraw1: USB HID v1.00 Device [  USB Multimedia Keyboard ] on usb-0000:00:1a.0-1.2/input1
[    8.583763] mt7601u 2-1.4:1.0: EEPROM ver:0d fae:00
[    8.812171] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    8.812783] usbcore: registered new interface driver mt7601u
[    8.820438] mt7601u 2-1.4:1.0 wlx20e0160064bd: renamed from wlan0
[   11.550930] wlx20e0160064bd: authenticate with 68:ff:7b:47:86:17
[   11.587055] wlx20e0160064bd: send auth to 68:ff:7b:47:86:17 (try 1/3)
[   11.589458] wlx20e0160064bd: authenticated
[   11.593337] wlx20e0160064bd: associate with 68:ff:7b:47:86:17 (try 1/3)
[   11.598565] wlx20e0160064bd: RX AssocResp from 68:ff:7b:47:86:17 (capab=0x431 status=0 aid=2)
[   11.636551] wlx20e0160064bd: associated
[   11.694192] IPv6: ADDRCONF(NETDEV_CHANGE): wlx20e0160064bd: link becomes ready
[   14.900296] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   14.935999] br-lan: port 1(enp13s0) entered blocking state
[   14.936002] br-lan: port 1(enp13s0) entered disabled state
[   14.936086] device enp13s0 entered promiscuous mode
[   14.941244] r8169 0000:0d:00.0: firmware: direct-loading firmware rtl_nic/rtl8168h-2.fw
[   14.969349] Generic FE-GE Realtek PHY r8169-d00:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-d00:00, irq=IGNORE)
[   15.169472] r8169 0000:0d:00.0 enp13s0: Link is Down
[   15.173447] br-lan: port 1(enp13s0) entered blocking state
[   15.173451] br-lan: port 1(enp13s0) entered forwarding state
[   15.917396] br-lan: port 1(enp13s0) entered disabled state

^ permalink raw reply	[relevance 3%]

* Re: Problems with APIC on versions 4.9 and later (4.8 works)
  @ 2021-01-29 19:31  3%                           ` Claudemir Todo Bom
    0 siblings, 1 reply; 200+ results
From: Claudemir Todo Bom @ 2021-01-29 19:31 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel

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

Em sex., 29 de jan. de 2021 às 13:24, Jan Beulich <jbeulich@suse.com> escreveu:
>
> On 28.01.2021 14:08, Claudemir Todo Bom wrote:
> > Em qui., 28 de jan. de 2021 às 06:49, Jan Beulich <jbeulich@suse.com> escreveu:
> >>
> >> On 28.01.2021 10:47, Jan Beulich wrote:
> >>> On 26.01.2021 14:03, Claudemir Todo Bom wrote:
> >>>> If this information is good for more tests, please send the patch and
> >>>> I will test it!
> >>>
> >>> Here you go. For simplifying analysis it may be helpful if you
> >>> could limit the number of CPUs in use, e.g. by "maxcpus=4" or
> >>> at least "smt=0". Provided the problem still reproduces with
> >>> such options, of course.
> >>
> >> Speaking of command line options - it doesn't look like you have
> >> told us what else you have on the Xen command line, and without
> >> a serial log this isn't visible (e.g. in your video).
> >
> > All tests are done with xen command line:
> >
> > dom0_mem=1024M,max:2048M dom0_max_vcpus=4 dom0_vcpus_pin=true
> > smt=false vga=text-80x50,keep
> >
> > and kernel command line:
> >
> > loglevel=0 earlyprintk=xen nomodeset
> >
> > this way I can get all xen messages on console.
> >
> > Attached are the frames I captured from a video, I manually selected
> > them starting from the first readable frame.
>
> I've just sent a pair of patches, with you Cc-ed on the 2nd one.
> Please give that one a try, with or without the updated debugging
> patch below. In case of problems I'd of course want to see the
> output from the debugging patch as well. I think it's up to you
> whether you also use the first patch from that series - afaict it
> shouldn't directly affect your case, but I may be wrong.

I've applied both patches, system didn't booted, used following parameters:

xen: dom0_mem=1024M,max:2048M dom0_max_vcpus=4 dom0_vcpus_pin=true smt=true
kernel: loglevel=3

The screen cleared right after the initial xen messages and frozen
there for a few minutes until I restarted the system.

I've added "vga=text-80x25,keep" to the xen command line and
"nomodeset" to the kernel command line, hoping to get some more info
and surprisingly this was sufficient to make system boot!

System prompt took a lot to appear, the kernel driver for the usb
keyboard loaded after 3 minutes and the driver for the usb wifi dongle
I am using loaded about five minutes after kernel boot, and I had to
issue "ifup -a" to get an ip address from the dhcp server, and it took
almost one minute to get it!

Also, the system became very sensible for the keyboard, a lot of
double-typing happening with it, console beeps keeps sounding longer
also.

Then with the debug patch, since it booted I was able to get the "xl
dmesg" output with all the debug messages, it is attached. I'm also
attaching the dmesg output also, but I do not know if it is useful in
any form. Kernel started to boot at stamp ~20 of the xen hypervisor.

Hope all of this helps!

[-- Attachment #2: xen-dmesg.txt --]
[-- Type: text/plain, Size: 45053 bytes --]

(XEN) parameter "placeholder" unknown!
(XEN) [    0.000000] Xen version 4.11.4 (Debian 4.11.4+57-g41a822c392-2) (pkg-xen-devel@lists.alioth.debian.org) (gcc (Debian 8.3.0-6) 8.3.0) debug=n  Fri Jan 29 14:15:17 -03 2021
(XEN) [    0.000000] Bootloader: GRUB 2.04-12
(XEN) [    0.000000] Command line: placeholder dom0_mem=1024M,max:2048M dom0_max_vcpus=4 dom0_vcpus_pin=true smt=true vga=text-80x25,keep console_timestamps=boot
(XEN) [    0.000000] Xen image load base address: 0xba200000
(XEN) [    0.000000] Video information:
(XEN) [    0.000000]  VGA is text mode 80x25, font 8x16
(XEN) [    0.000000]  VBE/DDC methods: none; EDID transfer time: 0 seconds
(XEN) [    0.000000]  EDID info not retrieved because no DDC retrieval method detected
(XEN) [    0.000000] Disc information:
(XEN) [    0.000000]  Found 1 MBR signatures
(XEN) [    0.000000]  Found 2 EDD information structures
(XEN) [    0.000000] Xen-e820 RAM map:
(XEN) [    0.000000]  0000000000000000 - 000000000009e800 (usable)
(XEN) [    0.000000]  000000000009e800 - 00000000000a0000 (reserved)
(XEN) [    0.000000]  00000000000e0000 - 0000000000100000 (reserved)
(XEN) [    0.000000]  0000000000100000 - 00000000ba952000 (usable)
(XEN) [    0.000000]  00000000ba952000 - 00000000ba98b000 (reserved)
(XEN) [    0.000000]  00000000ba98b000 - 00000000babc3000 (usable)
(XEN) [    0.000000]  00000000babc3000 - 00000000bb1c0000 (ACPI NVS)
(XEN) [    0.000000]  00000000bb1c0000 - 00000000bb843000 (reserved)
(XEN) [    0.000000]  00000000bb843000 - 00000000bb844000 (usable)
(XEN) [    0.000000]  00000000bb844000 - 00000000bb8ca000 (ACPI NVS)
(XEN) [    0.000000]  00000000bb8ca000 - 00000000bbd0f000 (usable)
(XEN) [    0.000000]  00000000bbd0f000 - 00000000bbff4000 (reserved)
(XEN) [    0.000000]  00000000bbff4000 - 00000000bc000000 (usable)
(XEN) [    0.000000]  00000000d0000000 - 00000000e0000000 (reserved)
(XEN) [    0.000000]  00000000fed1c000 - 00000000fed20000 (reserved)
(XEN) [    0.000000]  00000000ff000000 - 0000000100000000 (reserved)
(XEN) [    0.000000]  0000000100000000 - 0000000440000000 (usable)
(XEN) [    0.000000] ACPI: RSDP 000F04A0, 0024 (r2 ALASKA)
(XEN) [    0.000000] ACPI: XSDT BB0DD070, 005C (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) [    0.000000] ACPI: FACP BB0E5728, 010C (r5 ALASKA    A M I  1072009 AMI     10013)
(XEN) [    0.000000] ACPI: DSDT BB0DD160, 85C7 (r2 ALASKA    A M I       20 INTL 20051117)
(XEN) [    0.000000] ACPI: FACS BB1B7F80, 0040
(XEN) [    0.000000] ACPI: APIC BB0E5838, 01A8 (r3 ALASKA    A M I  1072009 AMI     10013)
(XEN) [    0.000000] ACPI: FPDT BB0E59E0, 0044 (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) [    0.000000] ACPI: MCFG BB0E5A28, 003C (r1 ALASKA OEMMCFG.  1072009 MSFT       97)
(XEN) [    0.000000] ACPI: HPET BB0E5A68, 0038 (r1 ALASKA    A M I  1072009 AMI.        5)
(XEN) [    0.000000] ACPI: SSDT BB0E5AA0, CD380 (r2  INTEL    CpuPm     4000 INTL 20051117)
(XEN) [    0.000000] ACPI: DMAR BB1B2E20, 00EC (r1 A M I   OEMDMAR        1 INTL        1)
(XEN) [    0.000000] System RAM: 16303MB (16694760kB)
(XEN) [    0.000000] Domain heap initialised
(XEN) [    0.000000] ACPI: 32/64X FACS address mismatch in FADT - bb1b7f80/0000000000000000, using 32
(XEN) [    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
(XEN) [    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
(XEN) [    0.000000] Enabling APIC mode:  Phys.  Using 2 I/O APICs
(XEN) [    0.000000] Switched to APIC driver x2apic_cluster
(XEN) [    0.000000] xstate: size: 0x340 and states: 0x7
(XEN) [    0.000000] Speculative mitigation facilities:
(XEN) [    0.000000]   Hardware features:
(XEN) [    0.000000]   Compiled-in support: INDIRECT_THUNK SHADOW_PAGING
(XEN) [    0.000000]   Xen settings: BTI-Thunk RETPOLINE, SPEC_CTRL: No, Other:
(XEN) [    0.000000]   L1TF: believed vulnerable, maxphysaddr L1D 46, CPUID 46, Safe address 300000000000
(XEN) [    0.000000]   Support for VMs: PV: RSB EAGER_FPU, HVM: RSB EAGER_FPU
(XEN) [    0.000000]   XPTI (64-bit PV only): Dom0 enabled, DomU enabled
(XEN) [    0.000000]   PV L1TF shadowing: Dom0 disabled, DomU enabled
(XEN) [    0.000000] Using scheduler: SMP Credit Scheduler (credit)
(XEN) [    0.000000] Platform timer is 14.318MHz HPET
(XEN) [    0.460437] Detected 2494.346 MHz processor.
(XEN) [    0.464468] Initing memory sharing.
(XEN) [    0.467279] Intel VT-d iommu 0 supported page sizes: 4kB, 2MB, 1GB.
(XEN) [    0.468679] Intel VT-d Snoop Control enabled.
(XEN) [    0.470072] Intel VT-d Dom0 DMA Passthrough not enabled.
(XEN) [    0.471461] Intel VT-d Queued Invalidation enabled.
(XEN) [    0.472848] Intel VT-d Interrupt Remapping enabled.
(XEN) [    0.474237] Intel VT-d Posted Interrupt not enabled.
(XEN) [    0.475745] Intel VT-d Shared EPT tables enabled.
(XEN) [    0.488349] I/O virtualisation enabled
(XEN) [    0.489753]  - Dom0 mode: Relaxed
(XEN) [    0.491253] Interrupt remapping enabled
(XEN) [    0.492657] Enabled directed EOI with ioapic_ack_old on!
(XEN) [    0.494993] ENABLING IO-APIC IRQs
(XEN) [    0.496375]  -> Using old ACK method
(XEN) [    0.699046] TSC: c=1 r=1
(XEN) [    1.275072] INIT[ 0] t=00000032c82a01ac s=00004c0006e9 m=00004c000886
(XEN) [    1.276594] Allocated console ring of 64 KiB.
(XEN) [    1.277994] VMX: Supported advanced features:
(XEN) [    1.279383]  - APIC MMIO access virtualisation
(XEN) [    1.280771]  - APIC TPR shadow
(XEN) [    1.282151]  - Extended Page Tables (EPT)
(XEN) [    1.283539]  - Virtual-Processor Identifiers (VPID)
(XEN) [    1.284927]  - Virtual NMI
(XEN) [    1.286303]  - MSR direct-access bitmap
(XEN) [    1.287690]  - Unrestricted Guest
(XEN) [    1.289073]  - APIC Register Virtualization
(XEN) [    1.290459]  - Virtual Interrupt Delivery
(XEN) [    1.291959]  - Posted Interrupt Processing
(XEN) [    1.293352] HVM: ASIDs enabled.
(XEN) [    1.294737] VMX: Disabling executable EPT superpages due to CVE-2018-12207
(XEN) [    1.297506] HVM: VMX enabled
(XEN) [    1.298886] HVM: Hardware Assisted Paging (HAP) detected
(XEN) [    1.300273] HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) [    1.301803] INIT[ 1] t=00000033963e53c9 s=00004d97e715 m=00004d97e955
(XEN) [    1.303397] INIT[ 2] t=00000033967af744 s=00004db036ca m=00004db038d9
(XEN) [    1.304956] INIT[ 3] t=0000003396b65834 s=00004dc8050e m=00004dc8070b
(XEN) [    1.306506] INIT[ 4] t=0000003396f14d08 s=00004ddfa7bb m=00004ddfa9dd
(XEN) [    1.308178] INIT[ 5] t=000000339730fb9c s=00004df92f96 m=00004df931c1
(XEN) [    1.309730] INIT[ 6] t=00000033976bfe40 s=00004e10d7de m=00004e10da08
(XEN) [    1.311295] INIT[ 7] t=0000003397a79af4 s=00004e28bdd0 m=00004e28c03c
(XEN) [    1.312866] INIT[ 8] t=0000003397e35a79 s=00004e40b222 m=00004e40b45b
(XEN) [    1.314436] INIT[ 9] t=00000033981f2211 s=00004e58a94e m=00004e58abbf
(XEN) [    1.316008] INIT[10] t=00000033985af070 s=00004e70a383 m=00004e70a5de
(XEN) [    1.317584] INIT[11] t=000000339896f4a8 s=00004e88b335 m=00004e88b58b
(XEN) [    1.319160] INIT[12] t=0000003398d2e37c s=00004ea0ba23 m=00004ea0bc7c
(XEN) [    1.320736] INIT[13] t=00000033990ee854 s=00004eb8ca0c m=00004eb8cc6f
(XEN) [    1.322317] INIT[14] t=00000033994b0f4b s=00004ed0e79f m=00004ed0ea05
(XEN) [    1.323977] INIT[15] t=00000033998a498b s=00004eea40c7 m=00004eea4342
(XEN) [    1.325553] INIT[16] t=0000003399c63617 s=00004f0246e5 m=00004f024962
(XEN) [    1.327127] INIT[17] t=000000339a023027 s=00004f1a524e m=00004f1a54f7
(XEN) [    1.328698] INIT[18] t=000000339a3df050 s=00004f3246cf m=00004f32495b
(XEN) [    1.330270] INIT[19] t=000000339a79c9cc s=00004f4a4511 m=00004f4a47d8
(XEN) [    1.331845] INIT[20] t=000000339ab5b11f s=00004f624916 m=00004f624bc9
(XEN) [    1.333420] INIT[21] t=000000339af1b363 s=00004f7a57ee m=00004f7a5aa4
(XEN) [    1.334994] INIT[22] t=000000339b2d8ee4 s=00004f925720 m=00004f9259f2
(XEN) [    1.336574] INIT[23] t=000000339b69bb6c s=00004faa76ea m=00004faa79b7
(XEN) [    1.337993] Brought up 24 CPUs
(XEN) [    1.394884] CHK[ 0] ca1aeea9
(XEN) [    1.396261] chk[   0] CPU0  0000000000000000 00000032d6ffcd9c #-1
(XEN) [    1.397657] chk[   1] CPU1  0000000000000000 00000033a11abde5 #-1
(XEN) [    1.399055] chk[   2] CPU11 0000000000000000 00000033a11abe92 #-1
(XEN) [    1.400446] chk[   3] CPU8  0000000000000000 00000033a11abec7 #-1
(XEN) [    1.401845] chk[   4] CPU9  0000000000000000 00000033a11abed3 #-1
(XEN) [    1.403242] chk[   5] CPU4  0000000000000000 00000033a11abee1 #-1
(XEN) [    1.404641] chk[   6] CPU5  0000000000000000 00000033a11abeed #-1
(XEN) [    1.406142] chk[   7] CPU12 0000000000000000 00000033a11abfd0 #-1
(XEN) [    1.407540] chk[   8] CPU7  0000000000000000 00000033a11abfe0 #-1
(XEN) [    1.408937] chk[   9] CPU6  0000000000000000 00000033a11abfe8 #-1
(XEN) [    1.410337] chk[  10] CPU15 0000000000000000 00000033a11abea6 #-1
(XEN) [    1.411737] chk[  11] CPU20 0000000000000000 00000033a11ac00b #-1
(XEN) [    1.413133] chk[  12] CPU10 0000000000000000 00000033a11abe9a #-1
(XEN) [    1.414525] chk[  13] CPU22 0000000000000000 00000033a11abeb4 #-1
(XEN) [    1.415923] chk[  14] CPU23 0000000000000000 00000033a11abeac #-1
(XEN) [    1.417319] chk[  15] CPU13 0000000000000000 00000033a11abfc8 #-1
(XEN) [    1.418715] chk[  16] CPU14 0000000000000000 00000033a11abe9a #-1
(XEN) [    1.420114] chk[  17] CPU18 0000000000000000 00000033a11ac144 #-1
(XEN) [    1.421628] chk[  18] CPU2  0000000000000000 00000033a11abecc #-1
(XEN) [    1.423026] chk[  19] CPU3  0000000000000000 00000033a11abec0 #-1
(XEN) [    1.424425] chk[  20] CPU19 0000000000000000 00000033a11ac14c #-1
(XEN) [    1.425822] chk[  21] CPU16 0000000000000000 00000033a11ac16f #-1
(XEN) [    1.427219] chk[  22] CPU17 0000000000000000 00000033a11ac163 #-1
(XEN) [    1.428613] chk[  23] CPU21 0000000000000000 00000033a11ac003 #-1
(XEN) [    1.430010] chk[  24] CPU0  00000033a11af051 00000032d7001158 #1
(XEN) [    1.431403] chk[  25] CPU0  00000033a11b654b 00000032d70078ac #2
(XEN) [    1.432802] chk[  26] CPU0  00000033a11bc677 00000032d700d938 #3
(XEN) [    1.434199] chk[  27] CPU0  00000033a11c2763 00000032d7013a00 #4
(XEN) [    1.435595] chk[  28] CPU0  00000033a11db4bb 00000032d702c730 #8
(XEN) [    1.437110] chk[  29] CPU0  00000033a11ed703 00000032d703e910 #11
(XEN) [    1.438507] chk[  30] CPU0  00000033a41424bd 00000032d9f93628 #1998
(XEN) [    1.439908] chk[  31] CPU0  00000033a4146739 00000032d9f97890 #1999
(XEN) [    1.441307] TSC warp detected, disabling TSC_RELIABLE
(XEN) [    1.442695] TSC: c=1 r=0
(XEN) [    2.803501] TSC adjusted by ca1afd83
(XEN) [    2.804886] TSC: end rendezvous
(XEN) [    2.806270] mtrr: your CPUs had inconsistent fixed MTRR settings
(XEN) [    2.807692] Dom0 has maximum 816 PIRQs
(XEN) [    3.517504]  Xen  kernel: 64-bit, lsb, compat32
(XEN) [    3.518894]  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x2c2c000
(XEN) [    3.522084] PHYSICAL MEMORY ARRANGEMENT:
(XEN) [    3.523470]  Dom0 alloc.:   0000000428000000->000000042c000000 (237067 pages to be allocated)
(XEN) [    3.526244]  Init. ramdisk: 000000043de0b000->000000043ffff664
(XEN) [    3.527638] VIRTUAL MEMORY ARRANGEMENT:
(XEN) [    3.529019]  Loaded kernel: ffffffff81000000->ffffffff82c2c000
(XEN) [    3.530418]  Init. ramdisk: 0000000000000000->0000000000000000
(XEN) [    3.531814]  Phys-Mach map: 0000008000000000->0000008000200000
(XEN) [    3.533328]  Start info:    ffffffff82c2c000->ffffffff82c2c4b8
(XEN) [    3.534723]  Xenstore ring: 0000000000000000->0000000000000000
(XEN) [    3.536118]  Console ring:  0000000000000000->0000000000000000
(XEN) [    3.537516]  Page tables:   ffffffff82c2d000->ffffffff82c48000
(XEN) [    3.538912]  Boot stack:    ffffffff82c48000->ffffffff82c49000
(XEN) [    3.540307]  TOTAL:         ffffffff80000000->ffffffff83000000
(XEN) [    3.541706]  ENTRY ADDRESS: ffffffff8282a160
(XEN) [    3.543910] Dom0 has maximum 4 VCPUs
(XEN) [    3.877522] TSC adjusted by 7cc
(XEN) [    3.878904] TSC: end rendezvous
(XEN) [    4.281401] Initial low memory virq threshold set at 0x4000 pages.
(XEN) [    4.282802] Scrubbing Free RAM on 1 nodes using 12 CPUs
(XEN) [    4.365826] .........TSC: end rendezvous
(XEN) [    5.009066] ...done.
(XEN) [    5.113023] Std. Loglevel: Errors and warnings
(XEN) [    5.114410] Guest Loglevel: Nothing (Rate-limited: Errors and warnings)
(XEN) [    5.115811] Xen is keeping VGA console.
(XEN) [    5.136858] *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen)
(XEN) [    5.139785] Freed 476kB init memory
(XEN) [    5.933093] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [    5.934487] RDZV[ 0] t=000000357ce69d0d
(XEN) [    4.576490] RDZV[ 1] t=000000357ce6a225
(XEN) [    4.577959] RDZV[ 2] t=000000357ce7b201
(XEN) [    4.579344] RDZV[ 3] t=000000357ce7b225
(XEN) [    4.580730] RDZV[ 4] t=000000357ce7ba5c
(XEN) [    4.582114] RDZV[ 5] t=000000357ce7b8b4
(XEN) [    4.583503] RDZV[ 7] t=000000357ce7c57d
(XEN) [    4.584891] RDZV[ 6] t=000000357ce7c56d
(XEN) [    4.586282] RDZV[ 8] t=000000357ce7d2a8
(XEN) [    4.587670] RDZV[ 9] t=000000357ce7d2f8
(XEN) [    4.589062] RDZV[10] t=000000357ce7de71
(XEN) [    4.590451] RDZV[11] t=000000357ce7de51
(XEN) [    4.591838] RDZV[13] t=000000357ce7e7e9
(XEN) [    4.593304] RDZV[12] t=000000357ce7e7d9
(XEN) [    4.594695] RDZV[15] t=000000357ce7f24d
(XEN) [    4.596084] RDZV[14] t=000000357ce7f23d
(XEN) [    4.597470] RDZV[17] t=000000357ce7f9be
(XEN) [    4.598856] RDZV[16] t=000000357ce7f9be
(XEN) [    4.600243] RDZV[18] t=000000357ce8031e
(XEN) [    4.601631] RDZV[19] t=000000357ce8031a
(XEN) [    4.603017] RDZV[21] t=000000357ce80c9e
(XEN) [    4.604399] RDZV[20] t=000000357ce80cae
(XEN) [    4.605786] RDZV[22] t=000000357ce81736
(XEN) [    4.607164] RDZV[23] t=000000357ce8174a
(XEN) [    5.967933] RDZV[ 0] t=0000003581df9112(0000003581df82f2) s=000163b7655c(000112b1dd79)
(XEN) [    4.611408] RDZV[ 1] t=0000003581df952e(0000003581df82f2) s=000112b0eab2(000112b1dd79)
(XEN) [    4.614181] RDZV[15] t=0000003581df94fa(0000003581df82f2) s=000112b0eaea(000112b1dd79)
(XEN) [    4.616959] RDZV[14] t=0000003581df94e6(0000003581df82f2) s=000112b0eae7(000112b1dd79)
(XEN) [    4.619735] RDZV[21] t=0000003581df94ea(0000003581df82f2) s=000112b0eaaf(000112b1dd79)
(XEN) [    4.622504] RDZV[ 7] t=0000003581df92fe(0000003581df82f2) s=000112b0e9d2(000112b1dd79)
(XEN) [    4.625377] RDZV[ 6] t=0000003581df949a(0000003581df82f2) s=000112b0eaa4(000112b1dd79)
(XEN) [    4.628154] RDZV[ 3] t=0000003581df959a(0000003581df82f2) s=000112b0eb35(000112b1dd79)
(XEN) [    4.630924] RDZV[23] t=0000003581df9586(0000003581df82f2) s=000112b0ead6(000112b1dd79)
(XEN) [    4.633693] RDZV[19] t=0000003581df9542(0000003581df82f2) s=000112b0ead3(000112b1dd79)
(XEN) [    4.636460] RDZV[18] t=0000003581df9552(0000003581df82f2) s=000112b0eb14(000112b1dd79)
(XEN) [    4.639238] RDZV[11] t=0000003581df954e(0000003581df82f2) s=000112b0eb1b(000112b1dd79)
(XEN) [    4.642117] RDZV[10] t=0000003581df954a(0000003581df82f2) s=000112b0eb05(000112b1dd79)
(XEN) [    4.644895] RDZV[13] t=0000003581df9426(0000003581df82f2) s=000112b0ea92(000112b1dd79)
(XEN) [    4.647670] RDZV[12] t=0000003581df90c2(0000003581df82f2) s=000112b0e92c(000112b1dd79)
(XEN) [    4.650443] RDZV[ 8] t=0000003581df9546(0000003581df82f2) s=000112b0eafd(000112b1dd79)
(XEN) [    4.653219] RDZV[ 9] t=0000003581df955e(0000003581df82f2) s=000112b0eae1(000112b1dd79)
(XEN) [    4.655997] RDZV[16] t=0000003581df9502(0000003581df82f2) s=000112b0eaea(000112b1dd79)
(XEN) [    4.658872] RDZV[17] t=0000003581df94f2(0000003581df82f2) s=000112b0eac1(000112b1dd79)
(XEN) [    4.661646] RDZV[20] t=0000003581df94ea(0000003581df82f2) s=000112b0eaab(000112b1dd79)
(XEN) [    4.664410] RDZV[ 4] t=0000003581df957e(0000003581df82f2) s=000112b0eb06(000112b1dd79)
(XEN) [    4.667188] RDZV[ 2] t=0000003581df959a(0000003581df82f2) s=000112b0eb1a(000112b1dd79)
(XEN) [    4.669959] RDZV[22] t=0000003581df958a(0000003581df82f2) s=000112b0ead4(000112b1dd79)
(XEN) [    4.672729] RDZV[ 5] t=0000003581df956a(0000003581df82f2) s=000112b0eb0a(000112b1dd79)
(XEN) [    6.034998] TSC adjusted by 3d9
(XEN) [    6.036379] TSC: end rendezvous
(XEN) [    7.037767] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [    7.039162] RDZV[ 0] t=0000003621235626
(XEN) [    5.681168] RDZV[ 1] t=00000036212355a6
(XEN) [    5.682555] RDZV[ 2] t=00000036212472e9
(XEN) [    5.683941] RDZV[ 3] t=0000003621247305
(XEN) [    5.685330] RDZV[ 5] t=000000362124787d
(XEN) [    5.686716] RDZV[ 4] t=0000003621247889
(XEN) [    5.688105] RDZV[ 7] t=0000003621248126
(XEN) [    5.689489] RDZV[ 6] t=00000036212482ae
(XEN) [    5.690874] RDZV[ 8] t=00000036212490c9
(XEN) [    5.692264] RDZV[ 9] t=00000036212490cd
(XEN) [    5.693655] RDZV[11] t=0000003621249c95
(XEN) [    5.695043] RDZV[10] t=0000003621249c95
(XEN) [    5.696429] RDZV[13] t=000000362124a4ad
(XEN) [    5.697817] RDZV[12] t=000000362124a159
(XEN) [    5.699206] RDZV[14] t=000000362124afbd
(XEN) [    5.700594] RDZV[15] t=000000362124afc1
(XEN) [    5.701982] RDZV[17] t=000000362124b787
(XEN) [    5.703368] RDZV[16] t=000000362124b797
(XEN) [    5.704751] RDZV[18] t=000000362124c219
(XEN) [    5.706136] RDZV[19] t=000000362124c209
(XEN) [    5.707523] RDZV[20] t=000000362124c9f5
(XEN) [    5.708910] RDZV[21] t=000000362124c9f1
(XEN) [    5.710298] RDZV[23] t=000000362124d618
(XEN) [    5.711679] RDZV[22] t=000000362124d62c
(XEN) [    5.713069] RDZV[ 5] t=0000003626163091(0000003626161f55) s=0001548679db(00015487bd84)
(XEN) [    5.715850] RDZV[ 9] t=00000036261630e5(0000003626161f55) s=0001548679d9(00015487bd84)
(XEN) [    5.718621] RDZV[ 8] t=00000036261630b9(0000003626161f55) s=0001548679ed(00015487bd84)
(XEN) [    5.721395] RDZV[12] t=00000036261630f9(0000003626161f55) s=000154867a05(00015487bd84)
(XEN) [    5.724173] RDZV[13] t=00000036261630f5(0000003626161f55) s=000154867a0d(00015487bd84)
(XEN) [    5.726950] RDZV[ 4] t=0000003626163071(0000003626161f55) s=0001548679c2(00015487bd84)
(XEN) [    5.729728] RDZV[20] t=0000003626163181(0000003626161f55) s=000154867a10(00015487bd84)
(XEN) [    5.732496] RDZV[11] t=0000003626163155(0000003626161f55) s=000154867a46(00015487bd84)
(XEN) [    5.735271] RDZV[ 7] t=0000003626162fb9(0000003626161f55) s=000154867945(00015487bd84)
(XEN) [    5.738048] RDZV[ 6] t=00000036261631b5(0000003626161f55) s=000154867a3e(00015487bd84)
(XEN) [    5.740825] RDZV[21] t=0000003626163185(0000003626161f55) s=000154867a15(00015487bd84)
(XEN) [    5.743595] RDZV[14] t=0000003626163129(0000003626161f55) s=000154867a2a(00015487bd84)
(XEN) [    5.746369] RDZV[15] t=0000003626163119(0000003626161f55) s=000154867a1f(00015487bd84)
(XEN) [    5.749143] RDZV[23] t=0000003626163135(0000003626161f55) s=0001548679de(00015487bd84)
(XEN) [    5.751914] RDZV[10] t=0000003626163151(0000003626161f55) s=000154867a30(00015487bd84)
(XEN) [    5.754691] RDZV[16] t=00000036261630fd(0000003626161f55) s=000154867a10(00015487bd84)
(XEN) [    5.757467] RDZV[17] t=0000003626163105(0000003626161f55) s=0001548679f1(00015487bd84)
(XEN) [    5.760237] RDZV[18] t=000000362616310d(0000003626161f55) s=000154867a20(00015487bd84)
(XEN) [    5.763005] RDZV[19] t=0000003626163091(0000003626161f55) s=0001548679b4(00015487bd84)
(XEN) [    5.765779] RDZV[ 2] t=000000362616311d(0000003626161f55) s=000154867a10(00015487bd84)
(XEN) [    5.768553] RDZV[22] t=0000003626162e75(0000003626161f55) s=0001548678c0(00015487bd84)
(XEN) [    5.771324] RDZV[ 3] t=00000036261630d5(0000003626161f55) s=000154867a0e(00015487bd84)
(XEN) [    5.774094] RDZV[ 1] t=0000003626163079(0000003626161f55) s=000154867992(00015487bd84)
(XEN) [    7.136241] RDZV[ 0] t=000000362616300d(0000003626161f55) s=0001a58cf5b6(00015487bd84)
(XEN) [    7.139010] TSC: end rendezvous
(XEN) [    9.140447] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [    9.141843] RDZV[ 0] t=0000003759c0d1c4
(XEN) [    7.783850] RDZV[ 3] t=0000003759c0d012
(XEN) [    7.785230] RDZV[ 2] t=0000003759c0d35a
(XEN) [    7.786615] RDZV[ 1] t=0000003759c0e630
(XEN) [    7.788003] RDZV[ 5] t=0000003759c1b797
(XEN) [    7.789390] RDZV[ 4] t=0000003759c1b777
(XEN) [    7.790777] RDZV[ 7] t=0000003759c1c21f
(XEN) [    7.792164] RDZV[ 6] t=0000003759c1c1e7
(XEN) [    7.793553] RDZV[ 9] t=0000003759c1cf0f
(XEN) [    7.794941] RDZV[ 8] t=0000003759c1cf0f
(XEN) [    7.796328] RDZV[11] t=0000003759c1d806
(XEN) [    7.797715] RDZV[10] t=0000003759c1d7f6
(XEN) [    7.799102] RDZV[13] t=0000003759c26e78
(XEN) [    7.800484] RDZV[12] t=0000003759c26c30
(XEN) [    7.801875] RDZV[14] t=0000003759c278f1
(XEN) [    7.803263] RDZV[15] t=0000003759c278ed
(XEN) [    7.804651] RDZV[17] t=0000003759c27ef1
(XEN) [    7.806036] RDZV[16] t=0000003759c280ad
(XEN) [    7.807425] RDZV[19] t=0000003759c28a3f
(XEN) [    7.808810] RDZV[18] t=0000003759c289db
(XEN) [    7.810195] RDZV[20] t=0000003759c2962c
(XEN) [    7.811578] RDZV[21] t=0000003759c29628
(XEN) [    7.812966] RDZV[23] t=0000003759c2a148
(XEN) [    7.814345] RDZV[22] t=0000003759c2a158
(XEN) [    7.815732] RDZV[ 1] t=000000375eb30734(000000375eb2f718) s=0001d1da921c(0001d1dc7870)
(XEN) [    9.177882] RDZV[ 0] t=000000375eb30668(000000375eb2f718) s=000222e10e1a(0001d1dc7870)
(XEN) [    7.821275] RDZV[16] t=000000375eb307bc(000000375eb2f718) s=0001d1da929b(0001d1dc7870)
(XEN) [    7.824052] RDZV[17] t=000000375eb307d0(000000375eb2f718) s=0001d1da9282(0001d1dc7870)
(XEN) [    7.826825] RDZV[ 4] t=000000375eb30720(000000375eb2f718) s=0001d1da9248(0001d1dc7870)
(XEN) [    7.829596] RDZV[15] t=000000375eb3064c(000000375eb2f718) s=0001d1da920c(0001d1dc7870)
(XEN) [    7.832372] RDZV[14] t=000000375eb30650(000000375eb2f718) s=0001d1da9212(0001d1dc7870)
(XEN) [    7.835150] RDZV[20] t=000000375eb307d4(000000375eb2f718) s=0001d1da9271(0001d1dc7870)
(XEN) [    7.837924] RDZV[10] t=000000375eb307e0(000000375eb2f718) s=0001d1da92a8(0001d1dc7870)
(XEN) [    7.840700] RDZV[11] t=000000375eb307e0(000000375eb2f718) s=0001d1da92bd(0001d1dc7870)
(XEN) [    7.843468] RDZV[ 5] t=000000375eb30760(000000375eb2f718) s=0001d1da926d(0001d1dc7870)
(XEN) [    7.846244] RDZV[ 6] t=000000375eb3073c(000000375eb2f718) s=0001d1da924d(0001d1dc7870)
(XEN) [    7.849022] RDZV[ 7] t=000000375eb306d0(000000375eb2f718) s=0001d1da91f5(0001d1dc7870)
(XEN) [    7.851798] RDZV[ 9] t=000000375eb307f0(000000375eb2f718) s=0001d1da9283(0001d1dc7870)
(XEN) [    7.854576] RDZV[ 8] t=000000375eb30804(000000375eb2f718) s=0001d1da92b1(0001d1dc7870)
(XEN) [    7.857348] RDZV[ 3] t=000000375eb307dc(000000375eb2f718) s=0001d1da92b6(0001d1dc7870)
(XEN) [    7.860122] RDZV[18] t=000000375eb30714(000000375eb2f718) s=0001d1da9262(0001d1dc7870)
(XEN) [    7.862895] RDZV[19] t=000000375eb30714(000000375eb2f718) s=0001d1da9228(0001d1dc7870)
(XEN) [    7.865670] RDZV[12] t=000000375eb307d8(000000375eb2f718) s=0001d1da929e(0001d1dc7870)
(XEN) [    7.868444] RDZV[13] t=000000375eb30688(000000375eb2f718) s=0001d1da9220(0001d1dc7870)
(XEN) [    7.871214] RDZV[22] t=000000375eb306f4(000000375eb2f718) s=0001d1da9200(0001d1dc7870)
(XEN) [    7.873988] RDZV[21] t=000000375eb30808(000000375eb2f718) s=0001d1da9289(0001d1dc7870)
(XEN) [    7.876761] RDZV[23] t=000000375eb30708(000000375eb2f718) s=0001d1da920b(0001d1dc7870)
(XEN) [    7.879534] RDZV[ 2] t=000000375eb30694(000000375eb2f718) s=0001d1da9218(0001d1dc7870)
(XEN) [    9.241686] TSC: end rendezvous
(XEN) [   10.243119] TSC adjusted by 290
(XEN) [   13.244616] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [   13.246011] RDZV[ 0] t=00000039bbf057cc
(XEN) [   11.888018] RDZV[ 2] t=00000039bbf05558
(XEN) [   11.889403] RDZV[ 3] t=00000039bbf05a7c
(XEN) [   11.890786] RDZV[ 1] t=00000039bbf05fc8
(XEN) [   11.892172] RDZV[ 4] t=00000039bbf15f21
(XEN) [   11.893558] RDZV[ 5] t=00000039bbf15e81
(XEN) [   11.894950] RDZV[ 7] t=00000039bbf1679a
(XEN) [   11.896335] RDZV[ 6] t=00000039bbf1678a
(XEN) [   11.897727] RDZV[ 9] t=00000039bbf17615
(XEN) [   11.899118] RDZV[ 8] t=00000039bbf17611
(XEN) [   11.900507] RDZV[11] t=00000039bbf17ebd
(XEN) [   11.901899] RDZV[10] t=00000039bbf17ec5
(XEN) [   11.903290] RDZV[13] t=00000039bbf189bd
(XEN) [   11.904673] RDZV[12] t=00000039bbf18b7d
(XEN) [   11.906060] RDZV[15] t=00000039bbf19414
(XEN) [   11.907447] RDZV[14] t=00000039bbf19410
(XEN) [   11.908837] RDZV[17] t=00000039bbf19f8c
(XEN) [   11.910223] RDZV[16] t=00000039bbf19f9c
(XEN) [   11.911609] RDZV[18] t=00000039bbf1a711
(XEN) [   11.912997] RDZV[19] t=00000039bbf1a6f9
(XEN) [   11.914384] RDZV[21] t=00000039bbf1afb5
(XEN) [   11.915769] RDZV[20] t=00000039bbf1aef5
(XEN) [   11.917157] RDZV[22] t=00000039bbf1ba35
(XEN) [   11.918539] RDZV[23] t=00000039bbf1bb01
(XEN) [   11.919927] RDZV[ 1] t=00000039c0e3906e(00000039c0e381ca) s=0002c67b9dad(0002c67ed56c)
(XEN) [   13.282079] RDZV[ 0] t=00000039c0e39076(00000039c0e381ca) s=0003178219ff(0002c67ed56c)
(XEN) [   11.925472] RDZV[ 5] t=00000039c0e390ea(00000039c0e381ca) s=0002c67b9e1d(0002c67ed56c)
(XEN) [   11.928247] RDZV[17] t=00000039c0e390ce(00000039c0e381ca) s=0002c67b9dfb(0002c67ed56c)
(XEN) [   11.931017] RDZV[16] t=00000039c0e3908a(00000039c0e381ca) s=0002c67b9e00(0002c67ed56c)
(XEN) [   11.933784] RDZV[ 8] t=00000039c0e39066(00000039c0e381ca) s=0002c67b9deb(0002c67ed56c)
(XEN) [   11.936563] RDZV[ 9] t=00000039c0e39116(00000039c0e381ca) s=0002c67b9e0c(0002c67ed56c)
(XEN) [   11.939338] RDZV[ 7] t=00000039c0e3901a(00000039c0e381ca) s=0002c67b9d8b(0002c67ed56c)
(XEN) [   11.942114] RDZV[ 6] t=00000039c0e39062(00000039c0e381ca) s=0002c67b9dd5(0002c67ed56c)
(XEN) [   11.944892] RDZV[18] t=00000039c0e38e56(00000039c0e381ca) s=0002c67b9d29(0002c67ed56c)
(XEN) [   11.947659] RDZV[19] t=00000039c0e39072(00000039c0e381ca) s=0002c67b9dc7(0002c67ed56c)
(XEN) [   11.950435] RDZV[13] t=00000039c0e3902a(00000039c0e381ca) s=0002c67b9dda(0002c67ed56c)
(XEN) [   11.953211] RDZV[12] t=00000039c0e38ff2(00000039c0e381ca) s=0002c67b9dbc(0002c67ed56c)
(XEN) [   11.955985] RDZV[23] t=00000039c0e390d6(00000039c0e381ca) s=0002c67b9dd6(0002c67ed56c)
(XEN) [   11.958759] RDZV[22] t=00000039c0e38f52(00000039c0e381ca) s=0002c67b9d38(0002c67ed56c)
(XEN) [   11.961524] RDZV[14] t=00000039c0e38fee(00000039c0e381ca) s=0002c67b9dca(0002c67ed56c)
(XEN) [   11.964300] RDZV[15] t=00000039c0e39002(00000039c0e381ca) s=0002c67b9dce(0002c67ed56c)
(XEN) [   11.967075] RDZV[10] t=00000039c0e39056(00000039c0e381ca) s=0002c67b9de9(0002c67ed56c)
(XEN) [   11.969850] RDZV[11] t=00000039c0e39076(00000039c0e381ca) s=0002c67b9e0b(0002c67ed56c)
(XEN) [   11.972627] RDZV[21] t=00000039c0e38fe2(00000039c0e381ca) s=0002c67b9d8b(0002c67ed56c)
(XEN) [   11.975398] RDZV[20] t=00000039c0e38fe2(00000039c0e381ca) s=0002c67b9d88(0002c67ed56c)
(XEN) [   11.978167] RDZV[ 2] t=00000039c0e3901e(00000039c0e381ca) s=0002c67b9dc8(0002c67ed56c)
(XEN) [   11.980941] RDZV[ 4] t=00000039c0e390e6(00000039c0e381ca) s=0002c67b9e10(0002c67ed56c)
(XEN) [   11.983719] RDZV[ 3] t=00000039c0e3903a(00000039c0e381ca) s=0002c67b9def(0002c67ed56c)
(XEN) [   13.345869] TSC: end rendezvous
(XEN) [   18.347495] TSC adjusted by 216
(XEN) [   21.348998] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [   21.350406] RDZV[ 0] t=0000003e70db4888
(XEN) [   19.992414] RDZV[ 1] t=0000003e70db52b8
(XEN) [   19.993801] RDZV[ 3] t=0000003e70dc6d3c
(XEN) [   19.995183] RDZV[ 2] t=0000003e70dc6da4
(XEN) [   19.996572] RDZV[ 4] t=0000003e70dc7063
(XEN) [   19.997959] RDZV[ 5] t=0000003e70dc7047
(XEN) [   19.999345] RDZV[ 7] t=0000003e70dc799f
(XEN) [   20.000727] RDZV[ 6] t=0000003e70dc798f
(XEN) [   20.002115] RDZV[ 8] t=0000003e70dc86fb
(XEN) [   20.003504] RDZV[ 9] t=0000003e70dc86ff
(XEN) [   20.004890] RDZV[10] t=0000003e70dc90f8
(XEN) [   20.006280] RDZV[11] t=0000003e70dc9110
(XEN) [   20.007668] RDZV[12] t=0000003e70dc9a66
(XEN) [   20.009057] RDZV[13] t=0000003e70dc9a5a
(XEN) [   20.010445] RDZV[14] t=0000003e70dca4fd
(XEN) [   20.011835] RDZV[15] t=0000003e70dca4e1
(XEN) [   20.013223] RDZV[16] t=0000003e70dcacab
(XEN) [   20.014603] RDZV[17] t=0000003e70dcacab
(XEN) [   20.015986] RDZV[18] t=0000003e70dcb813
(XEN) [   20.017374] RDZV[19] t=0000003e70dcb777
(XEN) [   20.018762] RDZV[20] t=0000003e70dcc0e3
(XEN) [   20.020144] RDZV[21] t=0000003e70dcc0e3
(XEN) [   20.021531] RDZV[23] t=0000003e70dccc89
(XEN) [   20.022915] RDZV[22] t=0000003e70dccc8d
(XEN) [   20.024305] RDZV[ 6] t=0000003e75cdd5e7(0000003e75cdc7cb) s=0004a98a98ea(0004a99069dd)
(XEN) [   20.027078] RDZV[ 7] t=0000003e75cdd5e7(0000003e75cdc7cb) s=0004a98a98bc(0004a99069dd)
(XEN) [   21.389228] RDZV[ 0] t=0000003e75cdd737(0000003e75cdc7cb) s=0004fa911593(0004a99069dd)
(XEN) [   20.032625] RDZV[17] t=0000003e75cdd7f3(0000003e75cdc7cb) s=0004a98a99b6(0004a99069dd)
(XEN) [   20.035399] RDZV[12] t=0000003e75cdd827(0000003e75cdc7cb) s=0004a98a99e5(0004a99069dd)
(XEN) [   20.038175] RDZV[13] t=0000003e75cdd82b(0000003e75cdc7cb) s=0004a98a99ef(0004a99069dd)
(XEN) [   20.040953] RDZV[ 1] t=0000003e75cdd7b7(0000003e75cdc7cb) s=0004a98a9978(0004a99069dd)
(XEN) [   20.043721] RDZV[10] t=0000003e75cdd82b(0000003e75cdc7cb) s=0004a98a99ec(0004a99069dd)
(XEN) [   20.046496] RDZV[11] t=0000003e75cdd7a7(0000003e75cdc7cb) s=0004a98a99cb(0004a99069dd)
(XEN) [   20.049275] RDZV[ 4] t=0000003e75cdd757(0000003e75cdc7cb) s=0004a98a9983(0004a99069dd)
(XEN) [   20.052051] RDZV[23] t=0000003e75cdd823(0000003e75cdc7cb) s=0004a98a99a2(0004a99069dd)
(XEN) [   20.054822] RDZV[21] t=0000003e75cdd6e7(0000003e75cdc7cb) s=0004a98a9939(0004a99069dd)
(XEN) [   20.057589] RDZV[20] t=0000003e75cdd6e7(0000003e75cdc7cb) s=0004a98a9936(0004a99069dd)
(XEN) [   20.060356] RDZV[22] t=0000003e75cdd80f(0000003e75cdc7cb) s=0004a98a9997(0004a99069dd)
(XEN) [   20.063133] RDZV[19] t=0000003e75cdd803(0000003e75cdc7cb) s=0004a98a99ae(0004a99069dd)
(XEN) [   20.065904] RDZV[18] t=0000003e75cdd81b(0000003e75cdc7cb) s=0004a98a99f2(0004a99069dd)
(XEN) [   20.068677] RDZV[16] t=0000003e75cdd603(0000003e75cdc7cb) s=0004a98a990f(0004a99069dd)
(XEN) [   20.071449] RDZV[15] t=0000003e75cdd863(0000003e75cdc7cb) s=0004a98a9a09(0004a99069dd)
(XEN) [   20.074221] RDZV[14] t=0000003e75cdd84f(0000003e75cdc7cb) s=0004a98a9a04(0004a99069dd)
(XEN) [   20.076995] RDZV[ 5] t=0000003e75cdd64b(0000003e75cdc7cb) s=0004a98a9922(0004a99069dd)
(XEN) [   20.079772] RDZV[ 8] t=0000003e75cdd7fb(0000003e75cdc7cb) s=0004a98a99d4(0004a99069dd)
(XEN) [   20.082545] RDZV[ 9] t=0000003e75cdd7fb(0000003e75cdc7cb) s=0004a98a99ad(0004a99069dd)
(XEN) [   20.085320] RDZV[ 3] t=0000003e75cdd81f(0000003e75cdc7cb) s=0004a98a99f6(0004a99069dd)
(XEN) [   20.088087] RDZV[ 2] t=0000003e75cdd81f(0000003e75cdc7cb) s=0004a98a99dc(0004a99069dd)
(XEN) [   21.450239] TSC: end rendezvous
(XEN) [   34.452273] TSC adjusted by 14a
(XEN) [   37.453806] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [   37.455218] RDZV[ 0] t=00000047cb3bbdb1
(XEN) [   36.097225] RDZV[ 1] t=00000047cb3bc761
(XEN) [   36.098613] RDZV[ 2] t=00000047cb3cdcff
(XEN) [   36.099998] RDZV[ 3] t=00000047cb3cdcf7
(XEN) [   36.101386] RDZV[ 5] t=00000047cb3ce1c1
(XEN) [   36.102775] RDZV[ 4] t=00000047cb3ce1b1
(XEN) [   36.104165] RDZV[ 7] t=00000047cb3ceb78
(XEN) [   36.105552] RDZV[ 6] t=00000047cb3ceb64
(XEN) [   36.106941] RDZV[ 8] t=00000047cb3cf92b
(XEN) [   36.108325] RDZV[ 9] t=00000047cb3cf8f3
(XEN) [   36.109717] RDZV[11] t=00000047cb3d0243
(XEN) [   36.111104] RDZV[10] t=00000047cb3d0223
(XEN) [   36.112495] RDZV[13] t=00000047cb3d0df6
(XEN) [   36.113884] RDZV[12] t=00000047cb3d0df6
(XEN) [   36.115274] RDZV[15] t=00000047cb3d187d
(XEN) [   36.116661] RDZV[14] t=00000047cb3d1881
(XEN) [   36.118051] RDZV[17] t=00000047cb3d2059
(XEN) [   36.119437] RDZV[16] t=00000047cb3d2085
(XEN) [   36.120824] RDZV[19] t=00000047cb3d297a
(XEN) [   36.122204] RDZV[18] t=00000047cb3d2a0a
(XEN) [   36.123592] RDZV[21] t=00000047cb3d3363
(XEN) [   36.124976] RDZV[20] t=00000047cb3d3357
(XEN) [   36.126361] RDZV[23] t=00000047cb3d3f14
(XEN) [   36.127748] RDZV[22] t=00000047cb3d3f08
(XEN) [   36.129136] RDZV[ 1] t=00000047d02f0300(00000047d02ef54c) s=00086976d33e(000869838e67)
(XEN) [   37.491286] RDZV[ 0] t=00000047d02f0278(00000047d02ef54c) s=0008ba7d4f57(000869838e67)
(XEN) [   36.134683] RDZV[18] t=00000047d02f03b4(00000047d02ef54c) s=00086976d3da(000869838e67)
(XEN) [   36.137450] RDZV[19] t=00000047d02f0364(00000047d02ef54c) s=00086976d37d(000869838e67)
(XEN) [   36.140224] RDZV[10] t=00000047d02f020c(00000047d02ef54c) s=00086976d322(000869838e67)
(XEN) [   36.143002] RDZV[11] t=00000047d02f0224(00000047d02ef54c) s=00086976d340(000869838e67)
(XEN) [   36.145777] RDZV[ 8] t=00000047d02f02a8(00000047d02ef54c) s=00086976d35d(000869838e67)
(XEN) [   36.148553] RDZV[ 9] t=00000047d02f0248(00000047d02ef54c) s=00086976d310(000869838e67)
(XEN) [   36.151320] RDZV[14] t=00000047d02f0218(00000047d02ef54c) s=00086976d332(000869838e67)
(XEN) [   36.154096] RDZV[15] t=00000047d02f02a4(00000047d02ef54c) s=00086976d366(000869838e67)
(XEN) [   36.156870] RDZV[16] t=00000047d02f02ec(00000047d02ef54c) s=00086976d37b(000869838e67)
(XEN) [   36.159643] RDZV[17] t=00000047d02f02e8(00000047d02ef54c) s=00086976d359(000869838e67)
(XEN) [   36.162418] RDZV[23] t=00000047d02f037c(00000047d02ef54c) s=00086976d370(000869838e67)
(XEN) [   36.165184] RDZV[ 5] t=00000047d02f02dc(00000047d02ef54c) s=00086976d36d(000869838e67)
(XEN) [   36.167959] RDZV[13] t=00000047d02f027c(00000047d02ef54c) s=00086976d353(000869838e67)
(XEN) [   36.170735] RDZV[12] t=00000047d02f0280(00000047d02ef54c) s=00086976d34b(000869838e67)
(XEN) [   36.173510] RDZV[ 4] t=00000047d02f0310(00000047d02ef54c) s=00086976d376(000869838e67)
(XEN) [   36.176285] RDZV[ 7] t=00000047d02f0364(00000047d02ef54c) s=00086976d365(000869838e67)
(XEN) [   36.179058] RDZV[ 6] t=00000047d02f0368(00000047d02ef54c) s=00086976d394(000869838e67)
(XEN) [   36.181837] RDZV[ 2] t=00000047d02f02e8(00000047d02ef54c) s=00086976d36f(000869838e67)
(XEN) [   36.184611] RDZV[ 3] t=00000047d02f02e8(00000047d02ef54c) s=00086976d389(000869838e67)
(XEN) [   36.187381] RDZV[20] t=00000047d02f02d8(00000047d02ef54c) s=00086976d340(000869838e67)
(XEN) [   36.190151] RDZV[22] t=00000047d02f0328(00000047d02ef54c) s=00086976d348(000869838e67)
(XEN) [   36.192919] RDZV[21] t=00000047d02f0234(00000047d02ef54c) s=00086976d301(000869838e67)
(XEN) [   37.555066] TSC: end rendezvous
(XEN) [   66.558005] TSC adjusted by 1eb
(XEN) [   69.559522] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [   69.560932] RDZV[ 0] t=0000005a7089b562
(XEN) [   68.202938] RDZV[ 1] t=0000005a7089bf12
(XEN) [   68.204326] RDZV[ 2] t=0000005a708ad38f
(XEN) [   68.205712] RDZV[ 3] t=0000005a708ad38f
(XEN) [   68.207095] RDZV[ 5] t=0000005a708ad61d
(XEN) [   68.208480] RDZV[ 4] t=0000005a708ad619
(XEN) [   68.209871] RDZV[ 7] t=0000005a708adfd4
(XEN) [   68.211259] RDZV[ 6] t=0000005a708ae818
(XEN) [   68.212647] RDZV[ 8] t=0000005a708aed9d
(XEN) [   68.214034] RDZV[ 9] t=0000005a708aeda1
(XEN) [   68.215425] RDZV[11] t=0000005a708af872
(XEN) [   68.216813] RDZV[10] t=0000005a708af9d2
(XEN) [   68.218201] RDZV[13] t=0000005a708b02f3
(XEN) [   68.219590] RDZV[12] t=0000005a708b02ef
(XEN) [   68.220977] RDZV[14] t=0000005a708b0bb0
(XEN) [   68.222359] RDZV[15] t=0000005a708b0cd8
(XEN) [   68.223749] RDZV[16] t=0000005a708b1493
(XEN) [   68.225135] RDZV[17] t=0000005a708b149f
(XEN) [   68.226524] RDZV[18] t=0000005a708b1eba
(XEN) [   68.227907] RDZV[19] t=0000005a708b1eba
(XEN) [   68.229294] RDZV[20] t=0000005a708b2731
(XEN) [   68.230680] RDZV[21] t=0000005a708b2775
(XEN) [   68.232066] RDZV[22] t=0000005a708b32d9
(XEN) [   68.233448] RDZV[23] t=0000005a708b32bd
(XEN) [   69.594216] RDZV[ 0] t=0000005a757c7651(0000005a757c68d9) s=001034236b61(000fe3389ad9)
(XEN) [   68.237606] RDZV[ 1] t=0000005a757c7865(0000005a757c68d9) s=000fe31cefe8(000fe3389ad9)
(XEN) [   68.240381] RDZV[ 5] t=0000005a757c77bd(0000005a757c68d9) s=000fe31cefe4(000fe3389ad9)
(XEN) [   68.243156] RDZV[11] t=0000005a757c7945(0000005a757c68d9) s=000fe31cf09c(000fe3389ad9)
(XEN) [   68.245934] RDZV[10] t=0000005a757c7945(0000005a757c68d9) s=000fe31cf085(000fe3389ad9)
(XEN) [   68.248708] RDZV[ 4] t=0000005a757c77a9(0000005a757c68d9) s=000fe31cefcb(000fe3389ad9)
(XEN) [   68.251480] RDZV[ 3] t=0000005a757c7aa1(0000005a757c68d9) s=000fe31cf122(000fe3389ad9)
(XEN) [   68.254254] RDZV[ 9] t=0000005a757c7839(0000005a757c68d9) s=000fe31ceff0(000fe3389ad9)
(XEN) [   68.257049] RDZV[ 8] t=0000005a757c787d(0000005a757c68d9) s=000fe31cf030(000fe3389ad9)
(XEN) [   68.259826] RDZV[13] t=0000005a757c772d(0000005a757c68d9) s=000fe31cefb4(000fe3389ad9)
(XEN) [   68.262605] RDZV[ 6] t=0000005a757c75cd(0000005a757c68d9) s=000fe31cef0b(000fe3389ad9)
(XEN) [   68.265374] RDZV[ 7] t=0000005a757c773d(0000005a757c68d9) s=000fe31cef6d(000fe3389ad9)
(XEN) [   68.268152] RDZV[16] t=0000005a757c7719(0000005a757c68d9) s=000fe31cefa9(000fe3389ad9)
(XEN) [   68.270929] RDZV[17] t=0000005a757c7719(0000005a757c68d9) s=000fe31cef87(000fe3389ad9)
(XEN) [   68.273703] RDZV[23] t=0000005a757c7759(0000005a757c68d9) s=000fe31cef7b(000fe3389ad9)
(XEN) [   68.276477] RDZV[12] t=0000005a757c772d(0000005a757c68d9) s=000fe31cefa9(000fe3389ad9)
(XEN) [   68.279245] RDZV[ 2] t=0000005a757c7a49(0000005a757c68d9) s=000fe31cf0e1(000fe3389ad9)
(XEN) [   68.282022] RDZV[21] t=0000005a757c7839(0000005a757c68d9) s=000fe31cefe9(000fe3389ad9)
(XEN) [   68.284794] RDZV[22] t=0000005a757c7769(0000005a757c68d9) s=000fe31cef7c(000fe3389ad9)
(XEN) [   68.287567] RDZV[15] t=0000005a757c7785(0000005a757c68d9) s=000fe31cefdc(000fe3389ad9)
(XEN) [   68.290343] RDZV[14] t=0000005a757c7745(0000005a757c68d9) s=000fe31cefc4(000fe3389ad9)
(XEN) [   68.293112] RDZV[20] t=0000005a757c7839(0000005a757c68d9) s=000fe31cefe7(000fe3389ad9)
(XEN) [   68.295885] RDZV[19] t=0000005a757c77cd(0000005a757c68d9) s=000fe31cefbf(000fe3389ad9)
(XEN) [   68.298656] RDZV[18] t=0000005a757c77b9(0000005a757c68d9) s=000fe31ceff3(000fe3389ad9)
(XEN) [   69.660811] TSC: end rendezvous
(XEN) [  130.666150] TSC adjusted by 27b
(XEN) [  133.667664] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [  133.669076] RDZV[ 0] t=0000007fabca922e
(XEN) [  132.311080] RDZV[ 1] t=0000007fabca9dce
(XEN) [  132.312470] RDZV[ 3] t=0000007fabcba087
(XEN) [  132.313855] RDZV[ 2] t=0000007fabcba083
(XEN) [  132.315241] RDZV[ 4] t=0000007fabcba475
(XEN) [  132.316628] RDZV[ 5] t=0000007fabcba479
(XEN) [  132.318018] RDZV[ 7] t=0000007fabcbace8
(XEN) [  132.319401] RDZV[ 6] t=0000007fabcbacf8
(XEN) [  132.320786] RDZV[ 8] t=0000007fabcbbb83
(XEN) [  132.322177] RDZV[ 9] t=0000007fabcbbc77
(XEN) [  132.323565] RDZV[11] t=0000007fabcbc6d7
(XEN) [  132.324951] RDZV[10] t=0000007fabcbc6cf
(XEN) [  132.326337] RDZV[13] t=0000007fabcbd0da
(XEN) [  132.327726] RDZV[12] t=0000007fabcbd0da
(XEN) [  132.329116] RDZV[15] t=0000007fabcbdb02
(XEN) [  132.330503] RDZV[14] t=0000007fabcbdaee
(XEN) [  132.331891] RDZV[16] t=0000007fabcbdee3
(XEN) [  132.333276] RDZV[17] t=0000007fabcbdf2b
(XEN) [  132.334659] RDZV[19] t=0000007fabcbed70
(XEN) [  132.336046] RDZV[18] t=0000007fabcbed60
(XEN) [  132.337435] RDZV[20] t=0000007fabcbf68b
(XEN) [  132.338821] RDZV[21] t=0000007fabcbf67f
(XEN) [  132.340206] RDZV[22] t=0000007fabcbfa0e
(XEN) [  132.341593] RDZV[23] t=0000007fabcbfa0e
(XEN) [  132.342985] RDZV[ 1] t=0000007fb0bd8a58(0000007fb0bd7a0c) s=001ed041a8ba(001ed08665f3)
(XEN) [  133.705135] RDZV[ 0] t=0000007fb0bd8a50(0000007fb0bd7a0c) s=001f21482507(001ed08665f3)
(XEN) [  132.348522] RDZV[ 5] t=0000007fb0bd8a58(0000007fb0bd7a0c) s=001ed041a8fd(001ed08665f3)
(XEN) [  132.351297] RDZV[16] t=0000007fb0bd8a70(0000007fb0bd7a0c) s=001ed041a909(001ed08665f3)
(XEN) [  132.354075] RDZV[23] t=0000007fb0bd8ae4(0000007fb0bd7a0c) s=001ed041a8f8(001ed08665f3)
(XEN) [  132.356847] RDZV[ 4] t=0000007fb0bd8a74(0000007fb0bd7a0c) s=001ed041a8f2(001ed08665f3)
(XEN) [  132.359622] RDZV[ 2] t=0000007fb0bd8900(0000007fb0bd7a0c) s=001ed041a86a(001ed08665f3)
(XEN) [  132.362388] RDZV[14] t=0000007fb0bd8ae0(0000007fb0bd7a0c) s=001ed041a942(001ed08665f3)
(XEN) [  132.365161] RDZV[15] t=0000007fb0bd8ae0(0000007fb0bd7a0c) s=001ed041a93f(001ed08665f3)
(XEN) [  132.367935] RDZV[11] t=0000007fb0bd8b40(0000007fb0bd7a0c) s=001ed041a972(001ed08665f3)
(XEN) [  132.370712] RDZV[10] t=0000007fb0bd8b40(0000007fb0bd7a0c) s=001ed041a95d(001ed08665f3)
(XEN) [  132.373492] RDZV[12] t=0000007fb0bd8a7c(0000007fb0bd7a0c) s=001ed041a906(001ed08665f3)
(XEN) [  132.376268] RDZV[13] t=0000007fb0bd8a6c(0000007fb0bd7a0c) s=001ed041a90a(001ed08665f3)
(XEN) [  132.379044] RDZV[ 9] t=0000007fb0bd8afc(0000007fb0bd7a0c) s=001ed041a915(001ed08665f3)
(XEN) [  132.381819] RDZV[ 8] t=0000007fb0bd8b0c(0000007fb0bd7a0c) s=001ed041a943(001ed08665f3)
(XEN) [  132.384599] RDZV[17] t=0000007fb0bd8a60(0000007fb0bd7a0c) s=001ed041a8e4(001ed08665f3)
(XEN) [  132.387373] RDZV[22] t=0000007fb0bd8ac4(0000007fb0bd7a0c) s=001ed041a8e1(001ed08665f3)
(XEN) [  132.390144] RDZV[19] t=0000007fb0bd8ad8(0000007fb0bd7a0c) s=001ed041a8ff(001ed08665f3)
(XEN) [  132.392913] RDZV[ 6] t=0000007fb0bd8b08(0000007fb0bd7a0c) s=001ed041a92e(001ed08665f3)
(XEN) [  132.395692] RDZV[ 7] t=0000007fb0bd8a08(0000007fb0bd7a0c) s=001ed041a89a(001ed08665f3)
(XEN) [  132.398469] RDZV[18] t=0000007fb0bd8aa4(0000007fb0bd7a0c) s=001ed041a92b(001ed08665f3)
(XEN) [  132.401241] RDZV[21] t=0000007fb0bd8c00(0000007fb0bd7a0c) s=001ed041a97c(001ed08665f3)
(XEN) [  132.404013] RDZV[20] t=0000007fb0bd8894(0000007fb0bd7a0c) s=001ed041a81b(001ed08665f3)
(XEN) [  132.406777] RDZV[ 3] t=0000007fb0bd88fc(0000007fb0bd7a0c) s=001ed041a884(001ed08665f3)
(XEN) [  133.768930] TSC: end rendezvous
(XEN) [  258.777776] TSC adjusted by 38f
(XEN) [  261.779280] TSC: time.c#time_calibration_tsc_rendezvous
(XEN) [  261.780671] RDZV[ 0] t=000000ca12bbaaa7
(XEN) [  260.422678] RDZV[ 1] t=000000ca12bbb133
(XEN) [  260.424067] RDZV[ 2] t=000000ca12bbb24d
(XEN) [  260.425454] RDZV[ 3] t=000000ca12bbb251
(XEN) [  260.426841] RDZV[ 5] t=000000ca12bc6ecf
(XEN) [  260.428226] RDZV[ 4] t=000000ca12bc6ee3
(XEN) [  260.429615] RDZV[ 6] t=000000ca12bcaff0
(XEN) [  260.431003] RDZV[ 7] t=000000ca12bcae94
(XEN) [  260.432389] RDZV[ 8] t=000000ca12bcbd56
(XEN) [  260.433776] RDZV[ 9] t=000000ca12bcbc9e
(XEN) [  260.435167] RDZV[11] t=000000ca12bcc687
(XEN) [  260.436555] RDZV[10] t=000000ca12bcc56b
(XEN) [  260.437948] RDZV[12] t=000000ca12bcd028
(XEN) [  260.439337] RDZV[13] t=000000ca12bcd02c
(XEN) [  260.440728] RDZV[15] t=000000ca12bcdd57
(XEN) [  260.442114] RDZV[14] t=000000ca12bcdd67
(XEN) [  260.443502] RDZV[17] t=000000ca12bce464
(XEN) [  260.444889] RDZV[16] t=000000ca12bce48c
(XEN) [  260.446272] RDZV[19] t=000000ca12bceede
(XEN) [  260.447658] RDZV[18] t=000000ca12bcee86
(XEN) [  260.449046] RDZV[21] t=000000ca12bcf75e
(XEN) [  260.450432] RDZV[20] t=000000ca12bcf74e
(XEN) [  260.451819] RDZV[22] t=000000ca12bd0302
(XEN) [  260.453203] RDZV[23] t=000000ca12bd02de
(XEN) [  260.454593] RDZV[ 1] t=000000ca17af13a8(000000ca17af0410) s=003ca44da60c(003ca4d957fd)
(XEN) [  260.457367] RDZV[ 9] t=000000ca17af131c(000000ca17af0410) s=003ca44da5f1(003ca4d957fd)
(XEN) [  260.460140] RDZV[ 8] t=000000ca17af1330(000000ca17af0410) s=003ca44da621(003ca4d957fd)
(XEN) [  260.462913] RDZV[22] t=000000ca17af1350(000000ca17af0410) s=003ca44da5eb(003ca4d957fd)
(XEN) [  260.465686] RDZV[16] t=000000ca17af1398(000000ca17af0410) s=003ca44da650(003ca4d957fd)
(XEN) [  260.468457] RDZV[17] t=000000ca17af13d0(000000ca17af0410) s=003ca44da643(003ca4d957fd)
(XEN) [  260.471234] RDZV[10] t=000000ca17af1348(000000ca17af0410) s=003ca44da62f(003ca4d957fd)
(XEN) [  260.474007] RDZV[11] t=000000ca17af1340(000000ca17af0410) s=003ca44da640(003ca4d957fd)
(XEN) [  260.476779] RDZV[ 5] t=000000ca17af13f8(000000ca17af0410) s=003ca44da673(003ca4d957fd)
(XEN) [  260.479558] RDZV[19] t=000000ca17af1310(000000ca17af0410) s=003ca44da5e3(003ca4d957fd)
(XEN) [  260.482333] RDZV[18] t=000000ca17af1300(000000ca17af0410) s=003ca44da61a(003ca4d957fd)
(XEN) [  260.485107] RDZV[ 2] t=000000ca17af13dc(000000ca17af0410) s=003ca44da65c(003ca4d957fd)
(XEN) [  260.487882] RDZV[ 6] t=000000ca17af12d0(000000ca17af0410) s=003ca44da5eb(003ca4d957fd)
(XEN) [  260.490655] RDZV[ 7] t=000000ca17af12e8(000000ca17af0410) s=003ca44da5c1(003ca4d957fd)
(XEN) [  260.493432] RDZV[ 4] t=000000ca17af13f4(000000ca17af0410) s=003ca44da65c(003ca4d957fd)
(XEN) [  260.496209] RDZV[21] t=000000ca17af13e4(000000ca17af0410) s=003ca44da640(003ca4d957fd)
(XEN) [  261.858361] RDZV[ 0] t=000000ca17af12b8(000000ca17af0410) s=003cf55421fb(003ca4d957fd)
(XEN) [  260.501754] RDZV[13] t=000000ca17af1420(000000ca17af0410) s=003ca44da68a(003ca4d957fd)
(XEN) [  260.504526] RDZV[12] t=000000ca17af13e0(000000ca17af0410) s=003ca44da65f(003ca4d957fd)
(XEN) [  260.507302] RDZV[14] t=000000ca17af1374(000000ca17af0410) s=003ca44da64d(003ca4d957fd)
(XEN) [  260.510080] RDZV[15] t=000000ca17af1360(000000ca17af0410) s=003ca44da63d(003ca4d957fd)
(XEN) [  260.512858] RDZV[20] t=000000ca17af13f4(000000ca17af0410) s=003ca44da63f(003ca4d957fd)
(XEN) [  260.515629] RDZV[ 3] t=000000ca17af1250(000000ca17af0410) s=003ca44da5d7(003ca4d957fd)
(XEN) [  260.518395] RDZV[23] t=000000ca17af1350(000000ca17af0410) s=003ca44da5f9(003ca4d957fd)
(XEN) [  261.880549] TSC: end rendezvous

[-- Attachment #3: kernel-dmesg.txt --]
[-- Type: text/plain, Size: 68368 bytes --]

[    0.000000] Linux version 5.10.0-1-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-3) 10.2.1 20201224, GNU ld (GNU Binutils for Debian) 2.35.1) #1 SMP Debian 5.10.4-1 (2020-12-31)
[    0.000000] Command line: placeholder root=UUID=ffd2e44e-3eb7-4c4d-a028-dad7da03c831 ro earlyprintk=xen loglevel=0 nomodeset
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] Released 0 page(s)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] Xen: [mem 0x0000000000000000-0x000000000009dfff] usable
[    0.000000] Xen: [mem 0x000000000009e800-0x00000000000fffff] reserved
[    0.000000] Xen: [mem 0x0000000000100000-0x0000000080061fff] usable
[    0.000000] Xen: [mem 0x00000000ba952000-0x00000000ba98afff] reserved
[    0.000000] Xen: [mem 0x00000000babc3000-0x00000000bb1bffff] ACPI NVS
[    0.000000] Xen: [mem 0x00000000bb1c0000-0x00000000bb842fff] reserved
[    0.000000] Xen: [mem 0x00000000bb844000-0x00000000bb8c9fff] ACPI NVS
[    0.000000] Xen: [mem 0x00000000bbd0f000-0x00000000bbff3fff] reserved
[    0.000000] Xen: [mem 0x00000000d0000000-0x00000000dfffffff] reserved
[    0.000000] Xen: [mem 0x00000000fbffc000-0x00000000fbffcfff] reserved
[    0.000000] Xen: [mem 0x00000000fec00000-0x00000000fec01fff] reserved
[    0.000000] Xen: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] Xen: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: To be filled by O.E.M. To be filled by O.E.M./Intel X79, BIOS 4.6.5 07/17/2019
[    0.000000] Hypervisor detected: Xen PV
[    0.046591] tsc: Fast TSC calibration using PIT
[    0.046593] tsc: Detected 2494.334 MHz processor
[    0.046594] tsc: Detected 2494.346 MHz TSC
[    0.052182] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.052185] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.052191] last_pfn = 0x80062 max_arch_pfn = 0x400000000
[    0.052192] Disabled
[    0.052193] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[    0.052198] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP  UC  UC  
[    0.066973] Kernel/User page tables isolation: disabled on XEN PV.
[    0.679417] RAMDISK: [mem 0x04000000-0x061f4fff]
[    0.679431] ACPI: Early table checksum verification disabled
[    0.685594] ACPI: RSDP 0x00000000000F04A0 000024 (v02 ALASKA)
[    0.685604] ACPI: XSDT 0x00000000BB0DD070 00005C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.685631] ACPI: FACP 0x00000000BB0E5728 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.685696] ACPI: DSDT 0x00000000BB0DD160 0085C7 (v02 ALASKA A M I    00000020 INTL 20051117)
[    0.685710] ACPI: FACS 0x00000000BB1B7F80 000040
[    0.685725] ACPI: APIC 0x00000000BB0E5838 0001A8 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.685739] ACPI: FPDT 0x00000000BB0E59E0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.685754] ACPI: MCFG 0x00000000BB0E5A28 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.685768] ACPI: HPET 0x00000000BB0E5A68 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.685783] ACPI: SSDT 0x00000000BB0E5AA0 0CD380 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.685798] ACPI: RMAD 0x00000000BB1B2E20 0000EC (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.685836] ACPI: Local APIC address 0xfee00000
[    0.685838] Setting APIC routing to Xen PV.
[    0.685871] NUMA turned off
[    0.685872] Faking a node at [mem 0x0000000000000000-0x0000000080061fff]
[    0.685885] NODE_DATA(0) allocated [mem 0x3fbf7000-0x3fc20fff]
[    0.699053] Zone ranges:
[    0.699054]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.699056]   DMA32    [mem 0x0000000001000000-0x0000000080061fff]
[    0.699057]   Normal   empty
[    0.699059]   Device   empty
[    0.699060] Movable zone start for each node
[    0.699063] Early memory node ranges
[    0.699064]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.699065]   node   0: [mem 0x0000000000100000-0x0000000080061fff]
[    0.699391] Zeroed struct page in unavailable ranges: 32769 pages
[    0.699393] Initmem setup node 0 [mem 0x0000000000001000-0x0000000080061fff]
[    0.699394] On node 0 totalpages: 524287
[    0.699396]   DMA zone: 64 pages used for memmap
[    0.699396]   DMA zone: 21 pages reserved
[    0.699398]   DMA zone: 3997 pages, LIFO batch:0
[    0.699448]   DMA32 zone: 8130 pages used for memmap
[    0.699449]   DMA32 zone: 520290 pages, LIFO batch:63
[    0.700176] p2m virtual area at (____ptrval____), size is 40000000
[    1.031136] Remapped 98 page(s)
[    1.033212] ACPI: PM-Timer IO Port: 0x408
[    1.033219] ACPI: Local APIC address 0xfee00000
[    1.033292] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    1.033293] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    1.033295] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    1.033297] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    1.033298] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    1.033299] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    1.033301] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    1.033303] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    1.033304] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    1.033305] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    1.033307] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    1.033308] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    1.033310] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    1.033311] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    1.033313] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    1.033314] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    1.033315] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    1.033317] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    1.033318] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    1.033320] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    1.033321] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    1.033323] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    1.033324] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    1.033325] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    1.033354] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    1.033366] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    1.033384] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    1.033387] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    1.033396] ACPI: IRQ0 used by override.
[    1.033398] ACPI: IRQ9 used by override.
[    1.033414] Using ACPI (MADT) for SMP configuration information
[    1.033419] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    1.033427] smpboot: Allowing 24 CPUs, 0 hotplug CPUs
[    1.033447] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.033449] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    1.033450] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    1.033452] [mem 0x80062000-0xba951fff] available for PCI devices
[    1.033455] Booting paravirtualized kernel on Xen
[    1.033456] Xen version: 4.11.4 (preserve-AD)
[    1.033459] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    1.037908] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:24 nr_cpu_ids:24 nr_node_ids:1
[    1.038720] percpu: Embedded 54 pages/cpu s183960 r8192 d29032 u262144
[    1.038727] pcpu-alloc: s183960 r8192 d29032 u262144 alloc=1*2097152
[    1.038729] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    1.038739] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 
[    1.038808] xen: PV spinlocks enabled
[    1.038813] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    1.038817] Built 1 zonelists, mobility grouping on.  Total pages: 516072
[    1.038818] Policy zone: DMA32
[    1.038820] Kernel command line: placeholder root=UUID=ffd2e44e-3eb7-4c4d-a028-dad7da03c831 ro earlyprintk=xen loglevel=0 nomodeset
[    1.038884] You have booted with nomodeset. This means your GPU drivers are DISABLED
[    1.038885] Any video related functionality will be severely degraded, and you may not even be able to suspend the system properly
[    1.038885] Unless you actually understand what nomodeset does, you should reboot without enabling it
[    1.039049] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    1.039131] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.039637] mem auto-init: stack:off, heap alloc:on, heap free:off
[    1.084148] software IO TLB: mapped [mem 0x0000000038c00000-0x000000003cc00000] (64MB)
[    1.104139] Memory: 197808K/2097148K available (12295K kernel code, 2540K rwdata, 4060K rodata, 2380K init, 1692K bss, 1229692K reserved, 0K cma-reserved)
[    1.104148] random: get_random_u64 called from __kmem_cache_create+0x2e/0x550 with crng_init=0
[    1.104451] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    1.105397] ftrace: allocating 35988 entries in 141 pages
[    1.119008] ftrace: allocated 141 pages with 4 groups
[    1.119422] rcu: Hierarchical RCU implementation.
[    1.119424] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    1.119425] 	Rude variant of Tasks RCU enabled.
[    1.119425] 	Tracing variant of Tasks RCU enabled.
[    1.119426] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.119427] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    1.130515] Using NULL legacy PIC
[    1.130517] NR_IRQS: 524544, nr_irqs: 864, preallocated irqs: 0
[    1.130581] xen:events: Using FIFO-based ABI
[    1.130614] xen: --> pirq=1 -> irq=1 (gsi=1)
[    1.130629] xen: --> pirq=2 -> irq=2 (gsi=2)
[    1.130643] xen: --> pirq=3 -> irq=3 (gsi=3)
[    1.130657] xen: --> pirq=4 -> irq=4 (gsi=4)
[    1.130671] xen: --> pirq=5 -> irq=5 (gsi=5)
[    1.130685] xen: --> pirq=6 -> irq=6 (gsi=6)
[    1.130699] xen: --> pirq=7 -> irq=7 (gsi=7)
[    1.130712] xen: --> pirq=8 -> irq=8 (gsi=8)
[    1.130727] xen: --> pirq=9 -> irq=9 (gsi=9)
[    1.130741] xen: --> pirq=10 -> irq=10 (gsi=10)
[    1.130756] xen: --> pirq=11 -> irq=11 (gsi=11)
[    1.130770] xen: --> pirq=12 -> irq=12 (gsi=12)
[    1.130785] xen: --> pirq=13 -> irq=13 (gsi=13)
[    1.130799] xen: --> pirq=14 -> irq=14 (gsi=14)
[    1.130813] xen: --> pirq=15 -> irq=15 (gsi=15)
[    1.130860] random: crng done (trusting CPU's manufacturer)
[    1.135707] Console: colour VGA+ 80x25
[    1.135719] printk: console [tty0] enabled
[    1.135730] printk: console [hvc0] enabled
[    1.135758] ACPI: Core revision 20200925
[    1.209211] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    1.209223] Xen: using vcpuop timer interface
[    1.209228] installing Xen timer for CPU 0
[    1.209268] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x23f45cd4443, max_idle_ns: 440795305613 ns
[    1.209272] Calibrating delay loop (skipped), value calculated using timer frequency.. 4988.69 BogoMIPS (lpj=9977384)
[    1.209275] pid_max: default: 32768 minimum: 301
[    1.209369] LSM: Security Framework initializing
[    1.209396] Yama: disabled by default; enable with sysctl kernel.yama.*
[    1.209491] AppArmor: AppArmor initialized
[    1.209496] TOMOYO Linux initialized
[    1.209543] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.209549] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.211703] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    1.211705] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    1.211708] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.211710] Spectre V2 : Mitigation: Full generic retpoline
[    1.211711] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    1.211712] Speculative Store Bypass: Vulnerable
[    1.211714] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    1.211851] Freeing SMP alternatives memory: 32K
[    1.217398] cpu 0 spinlock event irq 49
[    1.217405] VPMU disabled by hypervisor.
[    1.217801] Performance Events: unsupported p6 CPU model 62 no PMU driver, software events only.
[    1.217906] rcu: Hierarchical SRCU implementation.
[    1.218383] NMI watchdog: Perf NMI watchdog permanently disabled
[    1.218536] smp: Bringing up secondary CPUs ...
[    1.218807] installing Xen timer for CPU 1
[    1.225270] cpu 1 spinlock event irq 59
[    1.321282] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    1.321628] installing Xen timer for CPU 2
[    1.321970] cpu 2 spinlock event irq 65
[    1.321970] installing Xen timer for CPU 3
[    1.321970] cpu 3 spinlock event irq 71
[    1.342236] smp: Brought up 1 node, 4 CPUs
[    1.342237] smpboot: Max logical packages: 6
[    1.342908] node 0 deferred pages initialised in 0ms
[    1.342943] devtmpfs: initialized
[    1.342943] x86/mm: Memory block size: 128MB
[    1.342943] PM: Registering ACPI NVS region [mem 0xbabc3000-0xbb1bffff] (6279168 bytes)
[    1.342943] PM: Registering ACPI NVS region [mem 0xbb844000-0xbb8c9fff] (548864 bytes)
[    1.345311] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    1.345311] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    1.345352] pinctrl core: initialized pinctrl subsystem
[    1.345618] NET: Registered protocol family 16
[    1.345618] xen:grant_table: Grant tables using version 1 layout
[    1.345618] Grant table initialized
[    1.345618] audit: initializing netlink subsys (disabled)
[    1.345846] audit: type=2000 audit(1611943002.795:1): state=initialized audit_enabled=0 res=1
[    1.345846] thermal_sys: Registered thermal governor 'fair_share'
[    1.345846] thermal_sys: Registered thermal governor 'bang_bang'
[    1.345846] thermal_sys: Registered thermal governor 'step_wise'
[    1.345846] thermal_sys: Registered thermal governor 'user_space'
[    1.345846] ACPI: bus type PCI registered
[    1.345846] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.345846] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xd0000000-0xdfffffff] (base 0xd0000000)
[    1.345846] PCI: MMCONFIG at [mem 0xd0000000-0xdfffffff] reserved in E820
[    2.528114] PCI: Using configuration type 1 for base access
[    3.853270] clocksource: timekeeping watchdog on CPU2: Marking clocksource 'tsc-early' as unstable because the skew is too large:
[    3.853270] clocksource:                       'xen' wd_now: 2209b97b3 wd_last: 1ce4abf7b mask: ffffffffffffffff
[    3.853270] clocksource:                       'tsc-early' cs_now: 37689a0068 cs_last: 368c11307d mask: ffffffffffffffff
[    3.853270] tsc: Marking TSC unstable due to clocksource watchdog
[    5.298275] ACPI: Added _OSI(Module Device)
[    5.298275] ACPI: Added _OSI(Processor Device)
[    5.298275] ACPI: Added _OSI(3.0 _SCP Extensions)
[    5.298275] ACPI: Added _OSI(Processor Aggregator Device)
[    5.298275] ACPI: Added _OSI(Linux-Dell-Video)
[    5.298275] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    5.298275] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    6.477270] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    6.477270] xen: registering gsi 9 triggering 0 polarity 0
[    6.477270] ACPI: Interpreter enabled
[    6.477270] ACPI: (supports S0 S5)
[    6.477270] ACPI: Using IOAPIC for interrupt routing
[    6.477270] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    6.477270] ACPI: Enabled 6 GPEs in block 00 to 3F
[    6.477270] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    6.477270] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    6.477270] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME AER LTR]
[    6.477270] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PCIeCapability]
[    6.477270] PCI host bridge to bus 0000:00
[    6.477270] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    6.477270] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    6.477270] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    6.477270] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    6.477270] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    6.477270] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    6.477270] pci_bus 0000:00: root bus resource [mem 0xcc000000-0xffffffff window]
[    6.477270] pci_bus 0000:00: root bus resource [mem 0x440000000-0x3fffffffffff window]
[    6.477270] pci_bus 0000:00: root bus resource [bus 00-fe]
[    6.477270] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    6.477270] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[    6.477270] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400
[    6.477270] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    6.477270] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:02.1: [8086:0e05] type 01 class 0x060400
[    6.477270] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    6.477270] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:02.3: [8086:0e07] type 01 class 0x060400
[    6.477270] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    6.477270] pci 0000:00:03.0: enabling Extended Tags
[    6.477270] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:03.1: [8086:0e09] type 01 class 0x060400
[    6.477270] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:03.2: [8086:0e0a] type 01 class 0x060400
[    6.477270] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:03.3: [8086:0e0b] type 01 class 0x060400
[    6.477270] pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[    6.477270] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[    6.477270] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020
[    6.477270] pci 0000:00:05.4: reg 0x10: [mem 0xfb304000-0xfb304fff]
[    6.477270] pci 0000:00:06.0: [8086:0e10] type 00 class 0x088000
[    6.477270] pci 0000:00:06.1: [8086:0e11] type 00 class 0x088000
[    6.477270] pci 0000:00:06.2: [8086:0e12] type 00 class 0x088000
[    6.477270] pci 0000:00:06.3: [8086:0e13] type 00 class 0x088000
[    6.477270] pci 0000:00:06.4: [8086:0e14] type 00 class 0x088000
[    6.477270] pci 0000:00:06.5: [8086:0e15] type 00 class 0x088000
[    6.477270] pci 0000:00:06.6: [8086:0e16] type 00 class 0x088000
[    6.477270] pci 0000:00:06.7: [8086:0e17] type 00 class 0x088000
[    6.477270] pci 0000:00:07.0: [8086:0e18] type 00 class 0x088000
[    6.477270] pci 0000:00:07.1: [8086:0e19] type 00 class 0x088000
[    6.477270] pci 0000:00:07.2: [8086:0e1a] type 00 class 0x088000
[    6.477270] pci 0000:00:07.3: [8086:0e1b] type 00 class 0x088000
[    6.477270] pci 0000:00:07.4: [8086:0e1c] type 00 class 0x088000
[    6.477270] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    6.477270] pci 0000:00:1a.0: reg 0x10: [mem 0xfb302000-0xfb3023ff]
[    6.477270] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    6.477270] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    6.477270] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    6.477270] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    6.477270] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:1c.1: Enabling MPC IRBNCE
[    6.477270] pci 0000:00:1c.1: Intel PCH root port ACS workaround enabled
[    6.477270] pci 0000:00:1c.4: [8086:1e18] type 01 class 0x060400
[    6.477270] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:1c.4: Enabling MPC IRBNCE
[    6.477270] pci 0000:00:1c.4: Intel PCH root port ACS workaround enabled
[    6.477270] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    6.477270] pci 0000:00:1d.0: reg 0x10: [mem 0xfb301000-0xfb3013ff]
[    6.477270] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    6.477270] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    6.477270] pci 0000:00:1f.0: [8086:1e48] type 00 class 0x060100
[    6.477270] pci 0000:00:1f.2: [8086:1e02] type 00 class 0x010601
[    6.477270] pci 0000:00:1f.2: reg 0x10: [io  0xf070-0xf077]
[    6.477270] pci 0000:00:1f.2: reg 0x14: [io  0xf060-0xf063]
[    6.477270] pci 0000:00:1f.2: reg 0x18: [io  0xf050-0xf057]
[    6.477270] pci 0000:00:1f.2: reg 0x1c: [io  0xf040-0xf043]
[    6.477270] pci 0000:00:1f.2: reg 0x20: [io  0xf020-0xf03f]
[    6.477270] pci 0000:00:1f.2: reg 0x24: [mem 0xfb300000-0xfb3007ff]
[    6.477270] pci 0000:00:1f.2: PME# supported from D3hot
[    6.477270] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    6.477270] pci 0000:00:1f.3: reg 0x10: [mem 0x3ffffff00000-0x3ffffff000ff 64bit]
[    6.477270] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    6.477270] pci 0000:00:01.0: PCI bridge to [bus 01]
[    6.477270] pci 0000:00:01.1: PCI bridge to [bus 02]
[    6.477270] pci 0000:03:00.0: [10de:01d3] type 00 class 0x030000
[    6.477270] pci 0000:03:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
[    6.477270] pci 0000:03:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
[    6.477270] pci 0000:03:00.0: reg 0x1c: [mem 0xf9000000-0xf9ffffff 64bit]
[    6.477270] pci 0000:03:00.0: reg 0x30: [mem 0xfb000000-0xfb01ffff pref]
[    6.477270] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    6.477270] pci 0000:00:02.0: PCI bridge to [bus 03]
[    6.477270] pci 0000:00:02.0:   bridge window [mem 0xf9000000-0xfb0fffff]
[    6.477270] pci 0000:00:02.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[    6.477270] pci 0000:00:02.1: PCI bridge to [bus 04]
[    6.477270] pci 0000:00:02.2: PCI bridge to [bus 05]
[    6.477270] pci 0000:00:02.3: PCI bridge to [bus 06]
[    6.477270] pci 0000:00:03.0: PCI bridge to [bus 07]
[    6.477270] pci 0000:00:03.1: PCI bridge to [bus 08]
[    6.477270] pci 0000:00:03.2: PCI bridge to [bus 09]
[    6.477270] pci 0000:00:03.3: PCI bridge to [bus 0a]
[    6.477270] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[    6.477270] pci 0000:0c:00.0: [1106:3483] type 00 class 0x0c0330
[    6.477270] pci 0000:0c:00.0: reg 0x10: [mem 0xfb200000-0xfb200fff 64bit]
[    6.477270] pci 0000:0c:00.0: PME# supported from D0 D3cold
[    6.477270] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[    6.477270] pci 0000:00:1c.1:   bridge window [mem 0xfb200000-0xfb2fffff]
[    6.477270] pci 0000:0d:00.0: [10ec:8168] type 00 class 0x020000
[    6.477270] pci 0000:0d:00.0: reg 0x10: [io  0xe000-0xe0ff]
[    6.477270] pci 0000:0d:00.0: reg 0x18: [mem 0xfb104000-0xfb104fff 64bit]
[    6.477270] pci 0000:0d:00.0: reg 0x20: [mem 0xfb100000-0xfb103fff 64bit]
[    6.477270] pci 0000:0d:00.0: supports D1 D2
[    6.477270] pci 0000:0d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    6.477270] pci 0000:00:1c.4: PCI bridge to [bus 0d]
[    6.477270] pci 0000:00:1c.4:   bridge window [io  0xe000-0xefff]
[    6.477270] pci 0000:00:1c.4:   bridge window [mem 0xfb100000-0xfb1fffff]
[    6.477270] pci_bus 0000:0e: extended config space not accessible
[    6.477270] pci 0000:00:1e.0: PCI bridge to [bus 0e] (subtractive decode)
[    6.477270] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    6.477270] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    6.477270] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    6.477270] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    6.477270] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    6.477270] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[    6.477270] pci 0000:00:1e.0:   bridge window [mem 0xcc000000-0xffffffff window] (subtractive decode)
[    6.477270] pci 0000:00:1e.0:   bridge window [mem 0x440000000-0x3fffffffffff window] (subtractive decode)
[    6.477270] xen: registering gsi 13 triggering 1 polarity 0
[    6.477270] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus ff])
[    6.477270] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    6.477270] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
[    6.477270] PCI host bridge to bus 0000:ff
[    6.477270] pci_bus 0000:ff: root bus resource [bus ff]
[    6.477270] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000
[    6.477270] pci 0000:ff:08.2: [8086:0e32] type 00 class 0x110100
[    6.477270] pci 0000:ff:08.3: [8086:0e83] type 00 class 0x088000
[    6.477270] pci 0000:ff:08.4: [8086:0e84] type 00 class 0x088000
[    6.477270] pci 0000:ff:08.5: [8086:0e85] type 00 class 0x088000
[    6.477270] pci 0000:ff:08.6: [8086:0e86] type 00 class 0x088000
[    6.477270] pci 0000:ff:08.7: [8086:0e87] type 00 class 0x088000
[    6.477270] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000
[    6.477270] pci 0000:ff:09.2: [8086:0e33] type 00 class 0x110100
[    6.477270] pci 0000:ff:09.3: [8086:0e93] type 00 class 0x088000
[    6.477270] pci 0000:ff:09.4: [8086:0e94] type 00 class 0x088000
[    6.477270] pci 0000:ff:09.5: [8086:0e95] type 00 class 0x088000
[    6.477270] pci 0000:ff:09.6: [8086:0e96] type 00 class 0x088000
[    6.477270] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000
[    6.477270] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000
[    6.477270] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000
[    6.477270] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000
[    6.477270] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000
[    6.477270] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000
[    6.477270] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000
[    6.477270] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000
[    6.477270] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000
[    6.477270] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000
[    6.477270] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000
[    6.477270] pci 0000:ff:0c.5: [8086:0eea] type 00 class 0x088000
[    6.477270] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000
[    6.477270] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000
[    6.477270] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000
[    6.477270] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000
[    6.477270] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000
[    6.477270] pci 0000:ff:0d.5: [8086:0eeb] type 00 class 0x088000
[    6.477270] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000
[    6.477270] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100
[    6.477270] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000
[    6.477270] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000
[    6.477270] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000
[    6.477270] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000
[    6.477270] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000
[    6.477270] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000
[    6.477270] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000
[    6.477270] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000
[    6.477270] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000
[    6.477270] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000
[    6.477270] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000
[    6.477270] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000
[    6.477270] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000
[    6.477270] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000
[    6.477270] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000
[    6.477270] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100
[    6.477270] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000
[    6.477270] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100
[    6.477270] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000
[    6.477270] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000
[    6.477270] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000
[    6.477270] pci 0000:ff:1c.0: [8086:0e60] type 00 class 0x088000
[    6.477270] pci 0000:ff:1c.1: [8086:0e38] type 00 class 0x110100
[    6.477270] pci 0000:ff:1d.0: [8086:0e68] type 00 class 0x088000
[    6.477270] pci 0000:ff:1d.1: [8086:0e79] type 00 class 0x088000
[    6.477270] pci 0000:ff:1d.2: [8086:0e6a] type 00 class 0x088000
[    6.477270] pci 0000:ff:1d.3: [8086:0e6b] type 00 class 0x088000
[    6.477270] pci 0000:ff:1d.4: [8086:0e6c] type 00 class 0x088000
[    6.477270] pci 0000:ff:1d.5: [8086:0e6d] type 00 class 0x088000
[    6.477270] pci 0000:ff:1e.0: [8086:0ef0] type 00 class 0x088000
[    6.477270] pci 0000:ff:1e.1: [8086:0ef1] type 00 class 0x088000
[    6.477270] pci 0000:ff:1e.2: [8086:0ef2] type 00 class 0x088000
[    6.477270] pci 0000:ff:1e.3: [8086:0ef3] type 00 class 0x088000
[    6.477270] pci 0000:ff:1e.4: [8086:0ef4] type 00 class 0x088000
[    6.477270] pci 0000:ff:1e.5: [8086:0ef5] type 00 class 0x088000
[    6.477270] pci 0000:ff:1e.6: [8086:0ef6] type 00 class 0x088000
[    6.477270] pci 0000:ff:1e.7: [8086:0ef7] type 00 class 0x088000
[    6.477270] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    6.477270] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    6.477270] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15)
[    6.477270] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 *4 5 6 10 11 12 14 15)
[    6.477270] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    6.477270] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    6.477270] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    6.477270] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 4/0x1 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 5/0x3 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 6/0x5 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 7/0x7 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 8/0x8 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 9/0x9 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 10/0xa ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 11/0xb ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 12/0x10 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 13/0x11 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 14/0x12 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 15/0x13 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 16/0x14 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 17/0x15 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 18/0x16 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 19/0x17 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 20/0x18 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 21/0x19 ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 22/0x1a ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.477270] APIC: NR_CPUS/possible_cpus limit of 4 reached. Processor 23/0x1b ignored.
[    6.477270] ACPI: Unable to map lapic to logical cpu number
[    6.873274] xen:balloon: Initialising balloon driver
[    6.873274] iommu: Default domain type: Translated 
[    6.873313] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[    6.873313] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    6.873313] pci 0000:03:00.0: vgaarb: bridge control possible
[    6.873313] vgaarb: loaded
[    6.873313] EDAC MC: Ver: 3.0.0
[    6.878205] NetLabel: Initializing
[    6.878205] NetLabel:  domain hash size = 128
[    6.878205] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    6.878205] NetLabel:  unlabeled traffic allowed by default
[    6.878205] PCI: Using ACPI for IRQ routing
[    6.905293] PCI: pci_cache_line_size set to 64 bytes
[    6.905293] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    6.905293] e820: reserve RAM buffer [mem 0x80062000-0x83ffffff]
[    7.377274] clocksource: Switched to clocksource xen
[    8.237323] VFS: Disk quotas dquot_6.6.0
[    8.237323] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    8.237323] hugetlbfs: disabling because there are no supported hugepage sizes
[    8.237323] AppArmor: AppArmor Filesystem Enabled
[    8.237323] pnp: PnP ACPI init
[    8.237323] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    8.237323] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    8.237323] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    8.237323] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    8.237323] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    8.237323] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[    8.237323] system 00:00: [mem 0xfee00000-0xfeefffff] has been reserved
[    8.237323] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    8.237323] system 00:01: [mem 0xfbffc000-0xfbffdfff] could not be reserved
[    8.237323] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    8.237323] system 00:02: [io  0x0a00-0x0a1f] has been reserved
[    8.237323] system 00:02: [io  0x0a20-0x0a2f] has been reserved
[    8.237323] system 00:02: [io  0x0a30-0x0a3f] has been reserved
[    8.237323] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    8.237323] xen: registering gsi 1 triggering 1 polarity 0
[    8.237323] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    8.237323] xen: registering gsi 12 triggering 1 polarity 0
[    8.237323] pnp 00:04: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[    8.237323] xen: registering gsi 8 triggering 1 polarity 0
[    8.237323] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    8.237323] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    8.237323] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    8.237323] system 00:07: [io  0x0400-0x0453] has been reserved
[    8.237323] system 00:07: [io  0x0458-0x047f] has been reserved
[    8.237323] system 00:07: [io  0x1180-0x119f] has been reserved
[    8.237323] system 00:07: [io  0x0500-0x057f] has been reserved
[    8.237323] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    8.237323] system 00:07: [mem 0xfec00000-0xfecfffff] could not be reserved
[    8.237323] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    8.237323] system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
[    8.237323] system 00:08: [io  0x0454-0x0457] has been reserved
[    8.237323] system 00:08: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    8.237323] pnp: PnP ACPI: found 9 devices
[    8.245304] PM-Timer failed consistency check  (0xffffff) - aborting.
[    8.245304] NET: Registered protocol family 2
[    8.245304] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    8.245304] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    8.245304] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    8.245304] TCP: Hash tables configured (established 16384 bind 16384)
[    8.245304] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    8.245304] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    8.245304] NET: Registered protocol family 1
[    8.245304] NET: Registered protocol family 44
[    8.245304] pci 0000:00:01.0: PCI bridge to [bus 01]
[    8.245304] pci 0000:00:01.1: PCI bridge to [bus 02]
[    8.245304] pci 0000:00:02.0: PCI bridge to [bus 03]
[    8.245304] pci 0000:00:02.0:   bridge window [mem 0xf9000000-0xfb0fffff]
[    8.245304] pci 0000:00:02.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[    8.245304] pci 0000:00:02.1: PCI bridge to [bus 04]
[    8.245304] pci 0000:00:02.2: PCI bridge to [bus 05]
[    8.245304] pci 0000:00:02.3: PCI bridge to [bus 06]
[    8.245304] pci 0000:00:03.0: PCI bridge to [bus 07]
[    8.245304] pci 0000:00:03.1: PCI bridge to [bus 08]
[    8.245304] pci 0000:00:03.2: PCI bridge to [bus 09]
[    8.245304] pci 0000:00:03.3: PCI bridge to [bus 0a]
[    8.245304] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[    8.245304] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[    8.245304] pci 0000:00:1c.1:   bridge window [mem 0xfb200000-0xfb2fffff]
[    8.245304] pci 0000:00:1c.4: PCI bridge to [bus 0d]
[    8.245304] pci 0000:00:1c.4:   bridge window [io  0xe000-0xefff]
[    8.245304] pci 0000:00:1c.4:   bridge window [mem 0xfb100000-0xfb1fffff]
[    8.245304] pci 0000:00:1e.0: PCI bridge to [bus 0e]
[    8.245304] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    8.245304] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    8.245304] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    8.245304] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    8.245304] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    8.245304] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    8.245304] pci_bus 0000:00: resource 10 [mem 0xcc000000-0xffffffff window]
[    8.245304] pci_bus 0000:00: resource 11 [mem 0x440000000-0x3fffffffffff window]
[    8.245304] pci_bus 0000:03: resource 1 [mem 0xf9000000-0xfb0fffff]
[    8.245304] pci_bus 0000:03: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
[    8.245304] pci_bus 0000:0c: resource 1 [mem 0xfb200000-0xfb2fffff]
[    8.245304] pci_bus 0000:0d: resource 0 [io  0xe000-0xefff]
[    8.245304] pci_bus 0000:0d: resource 1 [mem 0xfb100000-0xfb1fffff]
[    8.245304] pci_bus 0000:0e: resource 4 [io  0x0000-0x03af window]
[    8.245304] pci_bus 0000:0e: resource 5 [io  0x03e0-0x0cf7 window]
[    8.245304] pci_bus 0000:0e: resource 6 [io  0x03b0-0x03df window]
[    8.245304] pci_bus 0000:0e: resource 7 [io  0x0d00-0xffff window]
[    8.245304] pci_bus 0000:0e: resource 8 [mem 0x000a0000-0x000bffff window]
[    8.245304] pci_bus 0000:0e: resource 9 [mem 0x000c0000-0x000dffff window]
[    8.245304] pci_bus 0000:0e: resource 10 [mem 0xcc000000-0xffffffff window]
[    8.245304] pci_bus 0000:0e: resource 11 [mem 0x440000000-0x3fffffffffff window]
[    8.245304] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[    8.245304] xen: registering gsi 16 triggering 0 polarity 1
[    8.245304] xen: --> pirq=16 -> irq=16 (gsi=16)
[    8.245304] xen: registering gsi 23 triggering 0 polarity 1
[    8.245304] xen: --> pirq=23 -> irq=23 (gsi=23)
[    8.245304] pci 0000:03:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    8.245304] xen: registering gsi 16 triggering 0 polarity 1
[    8.245304] Already setup the GSI :16
[    8.245304] xen: registering gsi 17 triggering 0 polarity 1
[    8.245304] xen: --> pirq=17 -> irq=17 (gsi=17)
[    8.245304] PCI: CLS 64 bytes, default 64
[    8.245304] Trying to unpack rootfs image as initramfs...
[   12.257295] Freeing initrd memory: 34772K
[   12.397037] Initialise system trusted keyrings
[   12.397037] Key type blacklist registered
[   12.397291] workingset: timestamp_bits=36 max_order=18 bucket_order=0
[   12.397291] zbud: loaded
[   12.398970] integrity: Platform Keyring initialized
[   12.398970] Key type asymmetric registered
[   12.398970] Asymmetric key parser 'x509' registered
[   12.398970] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[   12.399150] io scheduler mq-deadline registered
[   12.399186] xen: registering gsi 26 triggering 0 polarity 1
[   12.399186] xen: --> pirq=26 -> irq=26 (gsi=26)
[   12.399186] xen: registering gsi 26 triggering 0 polarity 1
[   12.399186] Already setup the GSI :26
[   12.399186] xen: registering gsi 32 triggering 0 polarity 1
[   12.399186] xen: --> pirq=32 -> irq=32 (gsi=32)
[   12.399186] xen: registering gsi 32 triggering 0 polarity 1
[   12.399186] Already setup the GSI :32
[   12.401286] xen: registering gsi 32 triggering 0 polarity 1
[   12.401286] Already setup the GSI :32
[   12.401286] xen: registering gsi 32 triggering 0 polarity 1
[   12.401286] Already setup the GSI :32
[   12.401286] xen: registering gsi 40 triggering 0 polarity 1
[   12.401286] xen: --> pirq=40 -> irq=40 (gsi=40)
[   12.401286] xen: registering gsi 40 triggering 0 polarity 1
[   12.401286] Already setup the GSI :40
[   12.401286] xen: registering gsi 40 triggering 0 polarity 1
[   12.401286] Already setup the GSI :40
[   12.401286] xen: registering gsi 40 triggering 0 polarity 1
[   12.401286] Already setup the GSI :40
[   12.401286] xen: registering gsi 17 triggering 0 polarity 1
[   12.401286] Already setup the GSI :17
[   12.401286] xen: registering gsi 17 triggering 0 polarity 1
[   12.401286] Already setup the GSI :17
[   12.403186] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   12.403186] intel_idle: MWAIT substates: 0x1120
[   12.405621] Monitor-Mwait will be used to enter C-1 state
[   12.405641] ACPI: \_SB_.SCK0.C000: Found 1 idle states
[   12.405641] intel_idle: v0.5.1 model 0x3E
[   12.405641] intel_idle: intel_idle yielding to none
[   12.405813] ACPI: \_SB_.SCK0.C000: Found 1 idle states
[   12.405935] ACPI: \_SB_.SCK0.C002: Found 1 idle states
[   12.405935] ACPI: \_SB_.SCK0.C004: Found 1 idle states
[   12.405935] ACPI: \_SB_.SCK0.C006: Found 1 idle states
[   12.407425] xen_mcelog: /dev/mcelog registered by Xen
[   12.408080] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[   12.408870] hpet_acpi_add: no address or irqs in _CRS
[   12.408893] Linux agpgart interface v0.103
[   12.408989] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[   12.408990] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[   12.409390] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[   12.410022] serio: i8042 KBD port at 0x60,0x64 irq 1
[   12.410028] serio: i8042 AUX port at 0x60,0x64 irq 12
[   12.410254] mousedev: PS/2 mouse device common for all mice
[   12.410337] rtc_cmos 00:05: RTC can wake from S4
[   12.410717] rtc_cmos 00:05: registered as rtc0
[   12.410794] rtc_cmos 00:05: setting system clock to 2021-01-29T17:56:52 UTC (1611943012)
[   12.410816] rtc_cmos 00:05: alarms up to one month, y3k, 114 bytes nvram
[   12.410824] intel_pstate: CPU model not supported
[   12.410947] ledtrig-cpu: registered to indicate activity on CPUs
[   12.411696] NET: Registered protocol family 10
[   12.431563] Segment Routing with IPv6
[   12.431563] mip6: Mobile IPv6
[   12.431563] NET: Registered protocol family 17
[   12.432415] mpls_gso: MPLS GSO support
[   12.432536] IPI shorthand broadcast: enabled
[   12.432536] sched_clock: Marking stable (12354092564, 78444069)->(12687811846, -255275213)
[   12.432928] registered taskstats version 1
[   12.432928] Loading compiled-in X.509 certificates
[   13.786527] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
[   13.786527] Loaded X.509 cert 'Debian Secure Boot Signer 2020: 00b55eb3b9'
[   13.786527] zswap: loaded using pool lzo/zbud
[   13.792860] Key type ._fscrypt registered
[   13.792860] Key type .fscrypt registered
[   13.792868] Key type fscrypt-provisioning registered
[   13.792883] AppArmor: AppArmor sha1 policy hashing enabled
[   13.795488] Freeing unused kernel image (initmem) memory: 2380K
[   16.493336] Write protecting the kernel read-only data: 18432k
[   16.507036] Freeing unused kernel image (text/rodata gap) memory: 2040K
[   16.507412] Freeing unused kernel image (rodata/data gap) memory: 36K
[   18.281320] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[   18.282999] Run /init as init process
[   18.283002]   with arguments:
[   18.283003]     /init
[   18.283003]     placeholder
[   18.283004]   with environment:
[   18.283005]     HOME=/
[   18.283006]     TERM=linux
[   21.195344] SCSI subsystem initialized
[   21.315310] xen: registering gsi 18 triggering 0 polarity 1
[   21.315310] xen: --> pirq=18 -> irq=18 (gsi=18)
[   21.315310] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[   21.315310] ACPI: bus type USB registered
[   21.315310] usbcore: registered new interface driver usbfs
[   21.315310] usbcore: registered new interface driver hub
[   21.316043] i2c i2c-0: 4/4 memory slots populated (from DMI)
[   21.316043] usbcore: registered new device driver usb
[   22.086097] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   22.181280] libata version 3.00 loaded.
[   22.416732] ehci-pci: EHCI PCI platform driver
[   22.416868] xen: registering gsi 16 triggering 0 polarity 1
[   22.416874] Already setup the GSI :16
[   22.416990] ehci-pci 0000:00:1a.0: EHCI Host Controller
[   22.416999] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[   22.417033] ehci-pci 0000:00:1a.0: debug port 2
[   22.421006] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[   22.421064] ehci-pci 0000:00:1a.0: irq 16, io mem 0xfb302000
[   22.456762] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[   22.456916] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   22.456919] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   22.456921] usb usb1: Product: EHCI Host Controller
[   22.456922] usb usb1: Manufacturer: Linux 5.10.0-1-amd64 ehci_hcd
[   22.456924] usb usb1: SerialNumber: 0000:00:1a.0
[   22.487110] hub 1-0:1.0: USB hub found
[   22.487136] hub 1-0:1.0: 2 ports detected
[   22.487525] xen: registering gsi 23 triggering 0 polarity 1
[   22.487530] Already setup the GSI :23
[   22.487608] ehci-pci 0000:00:1d.0: EHCI Host Controller
[   22.487616] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[   22.487656] ehci-pci 0000:00:1d.0: debug port 2
[   22.491597] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[   22.491653] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb301000
[   22.513689] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[   22.513858] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   22.513861] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   22.513862] usb usb2: Product: EHCI Host Controller
[   22.513864] usb usb2: Manufacturer: Linux 5.10.0-1-amd64 ehci_hcd
[   22.513866] usb usb2: SerialNumber: 0000:00:1d.0
[   22.537207] hub 2-0:1.0: USB hub found
[   22.537230] hub 2-0:1.0: 2 ports detected
[   22.814953] ahci 0000:00:1f.2: version 3.0
[   22.815007] xen: registering gsi 19 triggering 0 polarity 1
[   22.815007] xen: --> pirq=19 -> irq=19 (gsi=19)
[   22.815007] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
[   22.815007] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[   22.824871] usb 1-1: new high-speed USB device number 2 using ehci-pci
[   22.885295] usb 2-1: new high-speed USB device number 2 using ehci-pci
[   22.977615] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[   22.977618] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   22.977919] hub 1-1:1.0: USB hub found
[   22.977991] hub 1-1:1.0: 6 ports detected
[   23.021300] xen: registering gsi 16 triggering 0 polarity 1
[   23.033303] Already setup the GSI :16
[   23.041614] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[   23.041617] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   23.041918] hub 2-1:1.0: USB hub found
[   23.041990] hub 2-1:1.0: 8 ports detected
[   23.265296] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
[   23.336655] usb 2-1.4: new high-speed USB device number 3 using ehci-pci
[   23.349748] scsi host0: ahci
[   23.350103] scsi host1: ahci
[   23.350396] scsi host2: ahci
[   23.350706] scsi host3: ahci
[   23.351013] scsi host4: ahci
[   23.351307] scsi host5: ahci
[   23.351307] ata1: SATA max UDMA/133 abar m2048@0xfb300000 port 0xfb300100 irq 89
[   23.351307] ata2: SATA max UDMA/133 abar m2048@0xfb300000 port 0xfb300180 irq 89
[   23.351307] ata3: DUMMY
[   23.351307] ata4: DUMMY
[   23.351307] ata5: DUMMY
[   23.351307] ata6: DUMMY
[   23.379592] usb 1-1.2: New USB device found, idVendor=099a, idProduct=610c, bcdDevice= 0.01
[   23.379595] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   23.379597] usb 1-1.2: Product: USB Multimedia Keyboard 
[   23.379598] usb 1-1.2: Manufacturer:  
[   23.452466] usb 2-1.4: New USB device found, idVendor=148f, idProduct=7601, bcdDevice= 0.00
[   23.452469] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   23.452471] usb 2-1.4: Product: 802.11 n WLAN
[   23.452473] usb 2-1.4: Manufacturer: MediaTek
[   23.452475] usb 2-1.4: SerialNumber: 1.0
[   24.725275] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[   24.725275] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   24.727270] ata1.00: ATA-11: KINGSTON SUV400S37120G, 0C3FD6SD, max UDMA/133
[   24.727270] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 32), AA
[   24.727720] ata1.00: configured for UDMA/133
[   24.727720] scsi 0:0:0:0: Direct-Access     ATA      KINGSTON SUV400S D6SD PQ: 0 ANSI: 5
[   24.747393] ata2.00: ATA-8: KINGSTON SV300S37A120G, 525ABBF0, max UDMA/133
[   24.747393] ata2.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 32), AA
[   24.757282] hid: raw HID events driver (C) Jiri Kosina
[   24.763317] ata2.00: configured for UDMA/133
[   24.763317] scsi 1:0:0:0: Direct-Access     ATA      KINGSTON SV300S3 BBF0 PQ: 0 ANSI: 5
[   24.927751] xen: registering gsi 17 triggering 0 polarity 1
[   24.927756] Already setup the GSI :17
[   24.947759] xhci_hcd 0000:0c:00.0: xHCI Host Controller
[   24.947768] xhci_hcd 0000:0c:00.0: new USB bus registered, assigned bus number 3
[   24.947893] xhci_hcd 0000:0c:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x0000000000000890
[   24.948260] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   24.948263] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   24.948265] usb usb3: Product: xHCI Host Controller
[   24.948267] usb usb3: Manufacturer: Linux 5.10.0-1-amd64 xhci-hcd
[   24.948269] usb usb3: SerialNumber: 0000:0c:00.0
[   24.948441] hub 3-0:1.0: USB hub found
[   24.948465] hub 3-0:1.0: 1 port detected
[   24.948713] xhci_hcd 0000:0c:00.0: xHCI Host Controller
[   24.948719] xhci_hcd 0000:0c:00.0: new USB bus registered, assigned bus number 4
[   24.948723] xhci_hcd 0000:0c:00.0: Host supports USB 3.0 SuperSpeed
[   24.948910] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[   24.948912] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   24.948914] usb usb4: Product: xHCI Host Controller
[   24.948915] usb usb4: Manufacturer: Linux 5.10.0-1-amd64 xhci-hcd
[   24.948917] usb usb4: SerialNumber: 0000:0c:00.0
[   24.949094] hub 4-0:1.0: USB hub found
[   24.949120] hub 4-0:1.0: 4 ports detected
[   25.065278] libphy: r8169: probed
[   25.113280] r8169 0000:0d:00.0 eth0: RTL8168h/8111h, 00:e0:4c:0a:52:97, XID 541, IRQ 90
[   25.113280] r8169 0000:0d:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[   25.170025] usbcore: registered new interface driver usbhid
[   25.170027] usbhid: USB HID core driver
[   25.309303] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[   25.458727] usb 3-1: New USB device found, idVendor=2109, idProduct=3431, bcdDevice= 4.20
[   25.458730] usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[   25.458732] usb 3-1: Product: USB2.0 Hub
[   25.459730] hub 3-1:1.0: USB hub found
[   25.460053] hub 3-1:1.0: 4 ports detected
[   25.466414] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[   25.466417] sd 0:0:0:0: [sda] 4096-byte physical blocks
[   25.466426] sd 1:0:0:0: [sdb] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[   25.466446] sd 0:0:0:0: [sda] Write Protect is off
[   25.466448] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[   25.466457] sd 1:0:0:0: [sdb] Write Protect is off
[   25.466457] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[   25.466499] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   25.466508] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   25.659008] r8169 0000:0d:00.0 enp13s0: renamed from eth0
[   26.040096] input:   USB Multimedia Keyboard  as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:099A:610C.0001/input/input3
[   27.388934] hid-generic 0003:099A:610C.0001: input,hidraw0: USB HID v1.00 Keyboard [  USB Multimedia Keyboard ] on usb-0000:00:1a.0-1.2/input0
[   27.388942] input:   USB Multimedia Keyboard  Consumer Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:099A:610C.0002/input/input4
[   28.801323] input:   USB Multimedia Keyboard  System Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:099A:610C.0002/input/input5
[   28.805004] hid-generic 0003:099A:610C.0002: input,hidraw1: USB HID v1.00 Device [  USB Multimedia Keyboard ] on usb-0000:00:1a.0-1.2/input1
[   28.808846]  sda: sda1 sda2
[   28.809287] sd 0:0:0:0: [sda] Attached SCSI disk
[   28.812010] sd 1:0:0:0: [sdb] Attached SCSI disk
[   28.875553] device-mapper: uevent: version 1.0.3
[   28.875612] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[   45.150923] PM: Image not found (code -22)
[   49.297286] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[   50.597293] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[   50.695182] systemd[1]: Inserted module 'autofs4'
[   50.739926] systemd[1]: systemd 247.2-5 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
[   50.739926] systemd[1]: Detected architecture x86-64.
[   50.743491] systemd[1]: Set hostname to <debian>.
[   51.984512] systemd-sysv-generator[223]: SysV service '/etc/init.d/xen' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   52.017700] systemd-sysv-generator[223]: SysV service '/etc/init.d/exim4' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   52.017818] systemd-sysv-generator[223]: SysV service '/etc/init.d/xencommons' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   52.020451] systemd-sysv-generator[223]: SysV service '/etc/init.d/isc-dhcp-server' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
[   53.351017] systemd[1]: /lib/systemd/system/virtlogd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlogd-sock → /run/libvirt/virtlogd-sock; please update the unit file accordingly.
[   53.360023] systemd[1]: /lib/systemd/system/virtlogd-admin.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlogd-admin-sock → /run/libvirt/virtlogd-admin-sock; please update the unit file accordingly.
[   53.360552] systemd[1]: /lib/systemd/system/virtlockd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlockd-sock → /run/libvirt/virtlockd-sock; please update the unit file accordingly.
[   53.361494] systemd[1]: /lib/systemd/system/virtlockd-admin.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlockd-admin-sock → /run/libvirt/virtlockd-admin-sock; please update the unit file accordingly.
[   53.413285] systemd[1]: Queued start job for default target Graphical Interface.
[   53.415095] systemd[1]: Created slice Virtual Machine and Container Slice.
[   53.415095] systemd[1]: Created slice system-getty.slice.
[   53.417278] systemd[1]: Created slice system-modprobe.slice.
[   53.417278] systemd[1]: Created slice system-serial\x2dgetty.slice.
[   53.417278] systemd[1]: Created slice User and Session Slice.
[   53.417278] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[   53.421277] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   53.421277] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   53.421277] systemd[1]: Reached target Local Encrypted Volumes.
[   53.421277] systemd[1]: Reached target Paths.
[   53.421277] systemd[1]: Reached target Remote File Systems.
[   53.421277] systemd[1]: Reached target Slices.
[   53.421277] systemd[1]: Reached target Libvirt guests shutdown.
[   53.421277] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[   53.425293] systemd[1]: Listening on LVM2 poll daemon socket.
[   53.427435] systemd[1]: Listening on Syslog Socket.
[   53.427435] systemd[1]: Listening on fsck to fsckd communication Socket.
[   53.427435] systemd[1]: Listening on initctl Compatibility Named Pipe.
[   53.429293] systemd[1]: Listening on Journal Audit Socket.
[   53.429293] systemd[1]: Listening on Journal Socket (/dev/log).
[   53.429293] systemd[1]: Listening on Journal Socket.
[   53.429293] systemd[1]: Listening on udev Control Socket.
[   53.429293] systemd[1]: Listening on udev Kernel Socket.
[   53.433293] systemd[1]: Condition check resulted in Huge Pages File System being skipped.
[   53.433293] systemd[1]: Mounting POSIX Message Queue File System...
[   53.439673] systemd[1]: Mounting Kernel Debug File System...
[   53.441281] systemd[1]: Mounting Kernel Trace File System...
[   53.441281] systemd[1]: Finished Availability of block devices.
[   53.447674] systemd[1]: Starting Set the console keyboard layout...
[   53.450742] systemd[1]: Starting Create list of static device nodes for the current kernel...
[   53.454177] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[   53.721279] systemd[1]: Starting Load Kernel Module configfs...
[   54.705280] systemd[1]: Starting Load Kernel Module drm...
[   54.709283] systemd[1]: Starting Load Kernel Module fuse...
[   54.712447] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[   54.712447] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[   55.025282] systemd[1]: Starting Journal Service...
[   55.029282] systemd[1]: Starting Load Kernel Modules...
[   55.033280] systemd[1]: Starting Remount Root and Kernel File Systems...
[   55.034453] systemd[1]: Starting Coldplug All udev Devices...
[   55.041283] systemd[1]: Mounted POSIX Message Queue File System.
[   55.041283] systemd[1]: Mounted Kernel Debug File System.
[   55.041283] systemd[1]: Mounted Kernel Trace File System.
[   55.045281] systemd[1]: Finished Set the console keyboard layout.
[   55.046410] fuse: init (API version 7.32)
[   55.046757] systemd[1]: Finished Create list of static device nodes for the current kernel.
[   55.048441] systemd[1]: modprobe@configfs.service: Succeeded.
[   55.049283] systemd[1]: Finished Load Kernel Module configfs.
[   55.050573] systemd[1]: modprobe@drm.service: Succeeded.
[   55.052000] systemd[1]: Finished Load Kernel Module drm.
[   55.053285] systemd[1]: modprobe@fuse.service: Succeeded.
[   55.054089] systemd[1]: Finished Load Kernel Module fuse.
[   55.333275] systemd[1]: Mounting FUSE Control File System...
[   55.384799] xen:xen_evtchn: Event-channel device installed
[   56.387417] systemd[1]: Mounting Kernel Configuration File System...
[   56.391509] systemd[1]: Started Journal Service.
[   56.396033] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[   56.445432] xen_pciback: backend is vpci
[   59.081658] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
[   60.221691] audit: type=1400 audit(1611943060.224:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=287 comm="apparmor_parser"
[   60.221691] audit: type=1400 audit(1611943060.224:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/libvirtd" pid=284 comm="apparmor_parser"
[   60.221691] audit: type=1400 audit(1611943060.224:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/libvirtd//qemu_bridge_helper" pid=284 comm="apparmor_parser"
[   60.225283] audit: type=1400 audit(1611943060.224:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=286 comm="apparmor_parser"
[   60.226444] audit: type=1400 audit(1611943060.224:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=286 comm="apparmor_parser"
[   60.226444] audit: type=1400 audit(1611943060.224:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=286 comm="apparmor_parser"
[   60.226553] audit: type=1400 audit(1611943060.224:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=285 comm="apparmor_parser"
[   60.226553] audit: type=1400 audit(1611943060.224:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=285 comm="apparmor_parser"
[   60.245793] audit: type=1400 audit(1611943060.224:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="virt-aa-helper" pid=290 comm="apparmor_parser"
[   62.860844] ACPI: Power Button [PWRB]
[   62.860973] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
[   62.861053] ACPI: Power Button [PWRF]
[  245.485707] sd 0:0:0:0: Attached scsi generic sg0 type 0
[  245.486137] sd 1:0:0:0: Attached scsi generic sg1 type 0
[  248.087446] iTCO_vendor_support: vendor-support=0
[  248.088911] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[  248.089188] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
[  248.089502] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[  248.089744] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[  248.090004] platform regulatory.0: firmware: failed to load regulatory.db (-2)
[  248.090005] firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
[  248.090006] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[  248.090009] cfg80211: failed to load regulatory.db
[  253.471126] input: PC Speaker as /devices/platform/pcspkr/input/input8
[  253.472753] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[  253.472800] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[  253.472989] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[  256.188761] usb 2-1.4: reset high-speed USB device number 3 using ehci-pci
[  256.296374] mt7601u 2-1.4:1.0: ASIC revision: 76010001 MAC revision: 76010500
[  256.298232] mt7601u 2-1.4:1.0: firmware: direct-loading firmware mt7601u.bin
[  256.298238] mt7601u 2-1.4:1.0: Firmware Version: 0.1.00 Build: 7640 Build time: 201302052146____
[  256.688353] mt7601u 2-1.4:1.0: EEPROM ver:0d fae:00
[  261.672127] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[  261.672636] usbcore: registered new interface driver mt7601u
[  290.244106] mt7601u 2-1.4:1.0 wlx20e0160064bd: renamed from wlan0
[  309.141449] cryptd: max_cpu_qlen set to 1000
[  309.261291] AVX version of gcm_enc/dec engaged.
[  309.261291] AES CTR mode by8 optimization enabled
[  393.890966] wlx20e0160064bd: authenticate with 68:ff:7b:47:86:17
[  395.610464] wlx20e0160064bd: send auth to 68:ff:7b:47:86:17 (try 1/3)
[  395.612993] wlx20e0160064bd: authenticated
[  395.619365] wlx20e0160064bd: associate with 68:ff:7b:47:86:17 (try 1/3)
[  395.623241] wlx20e0160064bd: RX AssocResp from 68:ff:7b:47:86:17 (capab=0x431 status=0 aid=2)
[  396.966666] wlx20e0160064bd: associated
[  397.682487] IPv6: ADDRCONF(NETDEV_CHANGE): wlx20e0160064bd: link becomes ready
[  409.968202] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[  410.004061] br-lan: port 1(enp13s0) entered blocking state
[  410.004061] br-lan: port 1(enp13s0) entered disabled state
[  410.004139] device enp13s0 entered promiscuous mode
[  410.009939] r8169 0000:0d:00.0: firmware: direct-loading firmware rtl_nic/rtl8168h-2.fw
[  410.568740] Generic FE-GE Realtek PHY r8169-d00:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-d00:00, irq=IGNORE)
[  413.465484] r8169 0000:0d:00.0 enp13s0: Link is Down

^ permalink raw reply	[relevance 3%]

* Re: [PATCH v1] mm/memory_hotplug: MEMHP_MERGE_RESOURCE -> MHP_MERGE_RESOURCE
  2021-01-26 11:58 10% [PATCH v1] mm/memory_hotplug: MEMHP_MERGE_RESOURCE -> MHP_MERGE_RESOURCE David Hildenbrand
  2021-01-26 12:27  0% ` Miaohe Lin
@ 2021-01-26 14:41  0% ` Michael S. Tsirkin
  2021-02-03  5:36  0% ` Pankaj Gupta
  2 siblings, 0 replies; 200+ results
From: Michael S. Tsirkin @ 2021-01-26 14:41 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: linux-kernel, linux-mm, Andrew Morton, K. Y. Srinivasan,
	Haiyang Zhang, Stephen Hemminger, Wei Liu, Jason Wang,
	Boris Ostrovsky, Juergen Gross, Stefano Stabellini, Pankaj Gupta,
	Michal Hocko, Oscar Salvador, Anshuman Khandual, Wei Yang,
	linux-hyperv, virtualization, xen-devel

On Tue, Jan 26, 2021 at 12:58:29PM +0100, David Hildenbrand wrote:
> Let's make "MEMHP_MERGE_RESOURCE" consistent with "MHP_NONE", "mhp_t" and
> "mhp_flags". As discussed recently [1], "mhp" is our internal
> acronym for memory hotplug now.
> 
> [1] https://lore.kernel.org/linux-mm/c37de2d0-28a1-4f7d-f944-cfd7d81c334d@redhat.com/
> 
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: "K. Y. Srinivasan" <kys@microsoft.com>
> Cc: Haiyang Zhang <haiyangz@microsoft.com>
> Cc: Stephen Hemminger <sthemmin@microsoft.com>
> Cc: Wei Liu <wei.liu@kernel.org>
> Cc: "Michael S. Tsirkin" <mst@redhat.com>
> Cc: Jason Wang <jasowang@redhat.com>
> Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
> Cc: Juergen Gross <jgross@suse.com>
> Cc: Stefano Stabellini <sstabellini@kernel.org>
> Cc: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
> Cc: Michal Hocko <mhocko@kernel.org>
> Cc: Oscar Salvador <osalvador@suse.de>
> Cc: Anshuman Khandual <anshuman.khandual@arm.com>
> Cc: Wei Yang <richard.weiyang@linux.alibaba.com>
> Cc: linux-hyperv@vger.kernel.org
> Cc: virtualization@lists.linux-foundation.org
> Cc: xen-devel@lists.xenproject.org
> Signed-off-by: David Hildenbrand <david@redhat.com>

Acked-by: Michael S. Tsirkin <mst@redhat.com>

> ---
>  drivers/hv/hv_balloon.c        | 2 +-
>  drivers/virtio/virtio_mem.c    | 2 +-
>  drivers/xen/balloon.c          | 2 +-
>  include/linux/memory_hotplug.h | 2 +-
>  mm/memory_hotplug.c            | 2 +-
>  5 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/hv/hv_balloon.c b/drivers/hv/hv_balloon.c
> index 8c471823a5af..2f776d78e3c1 100644
> --- a/drivers/hv/hv_balloon.c
> +++ b/drivers/hv/hv_balloon.c
> @@ -726,7 +726,7 @@ static void hv_mem_hot_add(unsigned long start, unsigned long size,
>  
>  		nid = memory_add_physaddr_to_nid(PFN_PHYS(start_pfn));
>  		ret = add_memory(nid, PFN_PHYS((start_pfn)),
> -				(HA_CHUNK << PAGE_SHIFT), MEMHP_MERGE_RESOURCE);
> +				(HA_CHUNK << PAGE_SHIFT), MHP_MERGE_RESOURCE);
>  
>  		if (ret) {
>  			pr_err("hot_add memory failed error is %d\n", ret);
> diff --git a/drivers/virtio/virtio_mem.c b/drivers/virtio/virtio_mem.c
> index 85a272c9978e..148bea39b09a 100644
> --- a/drivers/virtio/virtio_mem.c
> +++ b/drivers/virtio/virtio_mem.c
> @@ -623,7 +623,7 @@ static int virtio_mem_add_memory(struct virtio_mem *vm, uint64_t addr,
>  	/* Memory might get onlined immediately. */
>  	atomic64_add(size, &vm->offline_size);
>  	rc = add_memory_driver_managed(vm->nid, addr, size, vm->resource_name,
> -				       MEMHP_MERGE_RESOURCE);
> +				       MHP_MERGE_RESOURCE);
>  	if (rc) {
>  		atomic64_sub(size, &vm->offline_size);
>  		dev_warn(&vm->vdev->dev, "adding memory failed: %d\n", rc);
> diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
> index b57b2067ecbf..671c71245a7b 100644
> --- a/drivers/xen/balloon.c
> +++ b/drivers/xen/balloon.c
> @@ -331,7 +331,7 @@ static enum bp_state reserve_additional_memory(void)
>  	mutex_unlock(&balloon_mutex);
>  	/* add_memory_resource() requires the device_hotplug lock */
>  	lock_device_hotplug();
> -	rc = add_memory_resource(nid, resource, MEMHP_MERGE_RESOURCE);
> +	rc = add_memory_resource(nid, resource, MHP_MERGE_RESOURCE);
>  	unlock_device_hotplug();
>  	mutex_lock(&balloon_mutex);
>  
> diff --git a/include/linux/memory_hotplug.h b/include/linux/memory_hotplug.h
> index 3d99de0db2dd..4b834f5d032e 100644
> --- a/include/linux/memory_hotplug.h
> +++ b/include/linux/memory_hotplug.h
> @@ -53,7 +53,7 @@ typedef int __bitwise mhp_t;
>   * with this flag set, the resource pointer must no longer be used as it
>   * might be stale, or the resource might have changed.
>   */
> -#define MEMHP_MERGE_RESOURCE	((__force mhp_t)BIT(0))
> +#define MHP_MERGE_RESOURCE	((__force mhp_t)BIT(0))
>  
>  /*
>   * Extended parameters for memory hotplug:
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index 710e469fb3a1..ae497e3ff77c 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -1153,7 +1153,7 @@ int __ref add_memory_resource(int nid, struct resource *res, mhp_t mhp_flags)
>  	 * In case we're allowed to merge the resource, flag it and trigger
>  	 * merging now that adding succeeded.
>  	 */
> -	if (mhp_flags & MEMHP_MERGE_RESOURCE)
> +	if (mhp_flags & MHP_MERGE_RESOURCE)
>  		merge_system_ram_resource(res);
>  
>  	/* online pages if requested */
> -- 
> 2.29.2



^ permalink raw reply	[relevance 0%]

* Re: [PATCH v1] mm/memory_hotplug: MEMHP_MERGE_RESOURCE -> MHP_MERGE_RESOURCE
  2021-01-26 11:58 10% [PATCH v1] mm/memory_hotplug: MEMHP_MERGE_RESOURCE -> MHP_MERGE_RESOURCE David Hildenbrand
@ 2021-01-26 12:27  0% ` Miaohe Lin
  2021-01-26 14:41  0% ` Michael S. Tsirkin
  2021-02-03  5:36  0% ` Pankaj Gupta
  2 siblings, 0 replies; 200+ results
From: Miaohe Lin @ 2021-01-26 12:27 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: linux-mm, Andrew Morton, K. Y. Srinivasan, Haiyang Zhang,
	Stephen Hemminger, Wei Liu, Michael S. Tsirkin, Jason Wang,
	Boris Ostrovsky, Juergen Gross, Stefano Stabellini, Pankaj Gupta,
	Michal Hocko, Oscar Salvador, Anshuman Khandual, Wei Yang,
	linux-hyperv, virtualization, xen-devel, linux-kernel

On 2021/1/26 19:58, David Hildenbrand wrote:
> Let's make "MEMHP_MERGE_RESOURCE" consistent with "MHP_NONE", "mhp_t" and
> "mhp_flags". As discussed recently [1], "mhp" is our internal
> acronym for memory hotplug now.
> 
> [1] https://lore.kernel.org/linux-mm/c37de2d0-28a1-4f7d-f944-cfd7d81c334d@redhat.com/
> 
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: "K. Y. Srinivasan" <kys@microsoft.com>
> Cc: Haiyang Zhang <haiyangz@microsoft.com>
> Cc: Stephen Hemminger <sthemmin@microsoft.com>
> Cc: Wei Liu <wei.liu@kernel.org>
> Cc: "Michael S. Tsirkin" <mst@redhat.com>
> Cc: Jason Wang <jasowang@redhat.com>
> Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
> Cc: Juergen Gross <jgross@suse.com>
> Cc: Stefano Stabellini <sstabellini@kernel.org>
> Cc: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
> Cc: Michal Hocko <mhocko@kernel.org>
> Cc: Oscar Salvador <osalvador@suse.de>
> Cc: Anshuman Khandual <anshuman.khandual@arm.com>
> Cc: Wei Yang <richard.weiyang@linux.alibaba.com>
> Cc: linux-hyperv@vger.kernel.org
> Cc: virtualization@lists.linux-foundation.org
> Cc: xen-devel@lists.xenproject.org> Signed-off-by: David Hildenbrand <david@redhat.com>

Reviewed-by: Miaohe Lin <linmiaohe@huawei.com>

> ---
>  drivers/hv/hv_balloon.c        | 2 +-
>  drivers/virtio/virtio_mem.c    | 2 +-
>  drivers/xen/balloon.c          | 2 +-
>  include/linux/memory_hotplug.h | 2 +-
>  mm/memory_hotplug.c            | 2 +-
>  5 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/hv/hv_balloon.c b/drivers/hv/hv_balloon.c
> index 8c471823a5af..2f776d78e3c1 100644
> --- a/drivers/hv/hv_balloon.c
> +++ b/drivers/hv/hv_balloon.c
> @@ -726,7 +726,7 @@ static void hv_mem_hot_add(unsigned long start, unsigned long size,
>  
>  		nid = memory_add_physaddr_to_nid(PFN_PHYS(start_pfn));
>  		ret = add_memory(nid, PFN_PHYS((start_pfn)),
> -				(HA_CHUNK << PAGE_SHIFT), MEMHP_MERGE_RESOURCE);
> +				(HA_CHUNK << PAGE_SHIFT), MHP_MERGE_RESOURCE);
>  
>  		if (ret) {
>  			pr_err("hot_add memory failed error is %d\n", ret);
> diff --git a/drivers/virtio/virtio_mem.c b/drivers/virtio/virtio_mem.c
> index 85a272c9978e..148bea39b09a 100644
> --- a/drivers/virtio/virtio_mem.c
> +++ b/drivers/virtio/virtio_mem.c
> @@ -623,7 +623,7 @@ static int virtio_mem_add_memory(struct virtio_mem *vm, uint64_t addr,
>  	/* Memory might get onlined immediately. */
>  	atomic64_add(size, &vm->offline_size);
>  	rc = add_memory_driver_managed(vm->nid, addr, size, vm->resource_name,
> -				       MEMHP_MERGE_RESOURCE);
> +				       MHP_MERGE_RESOURCE);
>  	if (rc) {
>  		atomic64_sub(size, &vm->offline_size);
>  		dev_warn(&vm->vdev->dev, "adding memory failed: %d\n", rc);
> diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
> index b57b2067ecbf..671c71245a7b 100644
> --- a/drivers/xen/balloon.c
> +++ b/drivers/xen/balloon.c
> @@ -331,7 +331,7 @@ static enum bp_state reserve_additional_memory(void)
>  	mutex_unlock(&balloon_mutex);
>  	/* add_memory_resource() requires the device_hotplug lock */
>  	lock_device_hotplug();
> -	rc = add_memory_resource(nid, resource, MEMHP_MERGE_RESOURCE);
> +	rc = add_memory_resource(nid, resource, MHP_MERGE_RESOURCE);
>  	unlock_device_hotplug();
>  	mutex_lock(&balloon_mutex);
>  
> diff --git a/include/linux/memory_hotplug.h b/include/linux/memory_hotplug.h
> index 3d99de0db2dd..4b834f5d032e 100644
> --- a/include/linux/memory_hotplug.h
> +++ b/include/linux/memory_hotplug.h
> @@ -53,7 +53,7 @@ typedef int __bitwise mhp_t;
>   * with this flag set, the resource pointer must no longer be used as it
>   * might be stale, or the resource might have changed.
>   */
> -#define MEMHP_MERGE_RESOURCE	((__force mhp_t)BIT(0))
> +#define MHP_MERGE_RESOURCE	((__force mhp_t)BIT(0))
>  
>  /*
>   * Extended parameters for memory hotplug:
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index 710e469fb3a1..ae497e3ff77c 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -1153,7 +1153,7 @@ int __ref add_memory_resource(int nid, struct resource *res, mhp_t mhp_flags)
>  	 * In case we're allowed to merge the resource, flag it and trigger
>  	 * merging now that adding succeeded.
>  	 */
> -	if (mhp_flags & MEMHP_MERGE_RESOURCE)
> +	if (mhp_flags & MHP_MERGE_RESOURCE)
>  		merge_system_ram_resource(res);
>  
>  	/* online pages if requested */
> 



^ permalink raw reply	[relevance 0%]

* [PATCH v1] mm/memory_hotplug: MEMHP_MERGE_RESOURCE -> MHP_MERGE_RESOURCE
@ 2021-01-26 11:58 10% David Hildenbrand
  2021-01-26 12:27  0% ` Miaohe Lin
                   ` (2 more replies)
  0 siblings, 3 replies; 200+ results
From: David Hildenbrand @ 2021-01-26 11:58 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-mm, David Hildenbrand, Andrew Morton, K. Y. Srinivasan,
	Haiyang Zhang, Stephen Hemminger, Wei Liu, Michael S. Tsirkin,
	Jason Wang, Boris Ostrovsky, Juergen Gross, Stefano Stabellini,
	Pankaj Gupta, Michal Hocko, Oscar Salvador, Anshuman Khandual,
	Wei Yang, linux-hyperv, virtualization, xen-devel

Let's make "MEMHP_MERGE_RESOURCE" consistent with "MHP_NONE", "mhp_t" and
"mhp_flags". As discussed recently [1], "mhp" is our internal
acronym for memory hotplug now.

[1] https://lore.kernel.org/linux-mm/c37de2d0-28a1-4f7d-f944-cfd7d81c334d@redhat.com/

Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: "K. Y. Srinivasan" <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Cc: Stephen Hemminger <sthemmin@microsoft.com>
Cc: Wei Liu <wei.liu@kernel.org>
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Jason Wang <jasowang@redhat.com>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: Stefano Stabellini <sstabellini@kernel.org>
Cc: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Oscar Salvador <osalvador@suse.de>
Cc: Anshuman Khandual <anshuman.khandual@arm.com>
Cc: Wei Yang <richard.weiyang@linux.alibaba.com>
Cc: linux-hyperv@vger.kernel.org
Cc: virtualization@lists.linux-foundation.org
Cc: xen-devel@lists.xenproject.org
Signed-off-by: David Hildenbrand <david@redhat.com>
---
 drivers/hv/hv_balloon.c        | 2 +-
 drivers/virtio/virtio_mem.c    | 2 +-
 drivers/xen/balloon.c          | 2 +-
 include/linux/memory_hotplug.h | 2 +-
 mm/memory_hotplug.c            | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/hv/hv_balloon.c b/drivers/hv/hv_balloon.c
index 8c471823a5af..2f776d78e3c1 100644
--- a/drivers/hv/hv_balloon.c
+++ b/drivers/hv/hv_balloon.c
@@ -726,7 +726,7 @@ static void hv_mem_hot_add(unsigned long start, unsigned long size,
 
 		nid = memory_add_physaddr_to_nid(PFN_PHYS(start_pfn));
 		ret = add_memory(nid, PFN_PHYS((start_pfn)),
-				(HA_CHUNK << PAGE_SHIFT), MEMHP_MERGE_RESOURCE);
+				(HA_CHUNK << PAGE_SHIFT), MHP_MERGE_RESOURCE);
 
 		if (ret) {
 			pr_err("hot_add memory failed error is %d\n", ret);
diff --git a/drivers/virtio/virtio_mem.c b/drivers/virtio/virtio_mem.c
index 85a272c9978e..148bea39b09a 100644
--- a/drivers/virtio/virtio_mem.c
+++ b/drivers/virtio/virtio_mem.c
@@ -623,7 +623,7 @@ static int virtio_mem_add_memory(struct virtio_mem *vm, uint64_t addr,
 	/* Memory might get onlined immediately. */
 	atomic64_add(size, &vm->offline_size);
 	rc = add_memory_driver_managed(vm->nid, addr, size, vm->resource_name,
-				       MEMHP_MERGE_RESOURCE);
+				       MHP_MERGE_RESOURCE);
 	if (rc) {
 		atomic64_sub(size, &vm->offline_size);
 		dev_warn(&vm->vdev->dev, "adding memory failed: %d\n", rc);
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
index b57b2067ecbf..671c71245a7b 100644
--- a/drivers/xen/balloon.c
+++ b/drivers/xen/balloon.c
@@ -331,7 +331,7 @@ static enum bp_state reserve_additional_memory(void)
 	mutex_unlock(&balloon_mutex);
 	/* add_memory_resource() requires the device_hotplug lock */
 	lock_device_hotplug();
-	rc = add_memory_resource(nid, resource, MEMHP_MERGE_RESOURCE);
+	rc = add_memory_resource(nid, resource, MHP_MERGE_RESOURCE);
 	unlock_device_hotplug();
 	mutex_lock(&balloon_mutex);
 
diff --git a/include/linux/memory_hotplug.h b/include/linux/memory_hotplug.h
index 3d99de0db2dd..4b834f5d032e 100644
--- a/include/linux/memory_hotplug.h
+++ b/include/linux/memory_hotplug.h
@@ -53,7 +53,7 @@ typedef int __bitwise mhp_t;
  * with this flag set, the resource pointer must no longer be used as it
  * might be stale, or the resource might have changed.
  */
-#define MEMHP_MERGE_RESOURCE	((__force mhp_t)BIT(0))
+#define MHP_MERGE_RESOURCE	((__force mhp_t)BIT(0))
 
 /*
  * Extended parameters for memory hotplug:
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index 710e469fb3a1..ae497e3ff77c 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -1153,7 +1153,7 @@ int __ref add_memory_resource(int nid, struct resource *res, mhp_t mhp_flags)
 	 * In case we're allowed to merge the resource, flag it and trigger
 	 * merging now that adding succeeded.
 	 */
-	if (mhp_flags & MEMHP_MERGE_RESOURCE)
+	if (mhp_flags & MHP_MERGE_RESOURCE)
 		merge_system_ram_resource(res);
 
 	/* online pages if requested */
-- 
2.29.2



^ permalink raw reply related	[relevance 10%]

* Re: Problems with APIC on versions 4.9 and later (4.8 works)
  @ 2021-01-19 19:47  3%   ` Claudemir Todo Bom
       [not found]       ` <CANyqHYcifnCgd5C5vbYoi4CTtoMX5+jzGqHfs6JZ+e=d2Y_dmg@mail.gmail.com>
  1 sibling, 0 replies; 200+ results
From: Claudemir Todo Bom @ 2021-01-19 19:47 UTC (permalink / raw)
  To: Jan Beulich, xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 3691 bytes --]

Hi,

I do not have serial output on this setup, so I recorded a video with 
boot_delay=50 in order to be able to get all the kernel messages: 
https://youtu.be/y95h6vqoF7Y <https://youtu.be/y95h6vqoF7Y>

This is running 4.14 from debian bullseye (testing).

I'm also attaching the dmesg output when booting xen 4.8 with  the same 
kernel version and same parameters.

I visually compared all the messages, and the only thing I noticed was 
that 4.14 used tsc as clocksource and 4.8 used xen. I tried to boot the 
kernel with "clocksource=xen" and the problem is happening with that also.

The "start" of the problem is that when the kernel gets to the "Freeing 
unused kernel image (initmem) memory: 2380K" it hangs and stays there 
for a while. After a few minutes it shows that a process (swapper) is 
blocked for sometime (image attached)

About finding what happened on the 4.8 -> 4.9 window, I may be able to 
build some code from git to check, I will try to find the build 
instructions to look at this.

Best regards,
Claudemir





Em ter., 19 de jan. de 2021 às 06:07, Jan Beulich <jbeulich@suse.com 
<mailto:jbeulich@suse.com>> escreveu:

    On 18.01.2021 21:15, Claudemir Todo Bom wrote:
     > Sorry for the simultaneous post on xen-users and xen-devel, but
    as I noted
     > that the problem appears only for versions of xen that are >=
    4.9, I think
     > that developers may have a look at this.

    Dropping xen-users.

     > I recently bought a generic mainboard and a Xeon E5-2926v2 CPU,
    it is a 12
     > core, 24 threads cpu.
     >
     > My system was already running on another machine with xen 4.11 on
    a debian
     > 10 system and after replacing the mainboard it didn't boot.
     >
     > After many tries I noticed that downgrading to the previous
    version of Xen
     > (4.8, available on Debian 9) works well. I also tried a lot of
    variations
     > for the dom0 kernel, all of them with the same results.
     >
     > All my tests were done with 4.11, but I checked with a live
    version of
     > Alpine Linux (3.7.3, with Xen 4.9.4) that the system doesn't boot
    on that
     > release also.
     >
     > With more research I noticed that if I limit dom0 to use only one CPU
     > (dom0_max_vcpus=1) the system boots up, I didn't check if guest
    VM worked,
     > but I suppose that they would not be able to use the other 23 vcpus
     > available, anyway, a system with one vcpu for dom0 would be very
    slow I
     > think.
     >
     > I've noticed also that if I keep dom0 to use more than one core
    but disable
     > acpi on the dom0 kernel, it boots up, unfortunately this is not
     > sufficient because I cannot use any device attached to the system
    (not even
     > the usb keyboard). This only helps to detect that the problem may
    be in the
     > ACPI/APIC code.
     >
     > I tried many variations with parameters related with ACPI and
    APIC. None of
     > them was satisfactory, always ended on a halted system or a self
    rebooting
     > one.
     >
     > Can anyone point me to a solution for this?

    For this we first of all need details about your problem: A full
    boot log ideally, or if this isn't available anything at least
    allowing us to see what exactly goes wrong (and with this I mean
    the first thing going wrong, not later possible follow-on issues
    from earlier problems), like screen shots. And this again ideally
    with master / staging Xen, or if that's not feasible with as new
    a version as possible.

    I don't suppose you'd be up for bisecting the 4.8 ... 4.9 window
    to determine when exactly your issue was introduced?

    Jan


[-- Attachment #1.2: Type: text/html, Size: 5662 bytes --]

[-- Attachment #2: xen-4.8.log --]
[-- Type: text/x-log, Size: 69627 bytes --]

[    0.000000] Linux version 5.10.0-1-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-3) 10.2.1 20201224, GNU ld (GNU Binutils for Debian) 2.35.1) #1 SMP Debian 5.10.4-1 (2020-12-31)
[    0.000000] Command line: root=UUID=ee23fbab-8338-46f5-8e96-43827688f501 ro debug loglevel=7 boot_delay=50
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] Released 0 page(s)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] Xen: [mem 0x0000000000000000-0x000000000009dfff] usable
[    0.000000] Xen: [mem 0x000000000009e800-0x00000000000fffff] reserved
[    0.000000] Xen: [mem 0x0000000000100000-0x0000000080061fff] usable
[    0.000000] Xen: [mem 0x00000000ba952000-0x00000000ba98afff] reserved
[    0.000000] Xen: [mem 0x00000000babc3000-0x00000000bb1bffff] ACPI NVS
[    0.000000] Xen: [mem 0x00000000bb1c0000-0x00000000bb842fff] reserved
[    0.000000] Xen: [mem 0x00000000bb844000-0x00000000bb8c9fff] ACPI NVS
[    0.000000] Xen: [mem 0x00000000bbd0f000-0x00000000bbff3fff] reserved
[    0.000000] Xen: [mem 0x00000000d0000000-0x00000000dfffffff] reserved
[    0.000000] Xen: [mem 0x00000000fbffc000-0x00000000fbffcfff] reserved
[    0.000000] Xen: [mem 0x00000000fec00000-0x00000000fec01fff] reserved
[    0.000000] Xen: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] Xen: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] Xen: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: To be filled by O.E.M. To be filled by O.E.M./Intel X79, BIOS 4.6.5 07/17/2019
[    0.000000] Hypervisor detected: Xen PV
[    0.155748] tsc: Fast TSC calibration using PIT
[    0.273468] tsc: Detected 2494.432 MHz processor
[    0.391160] tsc: Detected 2494.358 MHz TSC
[    0.526144] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    1.154983] e820: remove [mem 0x000a0000-0x000fffff] usable
[    1.508153] last_pfn = 0x80062 max_arch_pfn = 0x400000000
[    1.625758] Disabled
[    1.742984] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[    1.860672] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WC  WP  UC  UC  
[    1.993714] Kernel/User page tables isolation: disabled on XEN PV.
[    2.649981] RAMDISK: [mem 0x04000000-0x05dc8fff]
[    2.767454] ACPI: Early table checksum verification disabled
[    2.891105] ACPI: RSDP 0x00000000000F04A0 000024 (v02 ALASKA)
[    3.253960] ACPI: XSDT 0x00000000BB0DD070 00005C (v01 ALASKA A M I    01072009 AMI  00010013)
[    3.606987] ACPI: FACP 0x00000000BB0E5728 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    3.970133] ACPI: DSDT 0x00000000BB0DD160 0085C7 (v02 ALASKA A M I    00000020 INTL 20051117)
[    4.333126] ACPI: FACS 0x00000000BB1B7F80 000040
[    4.684987] ACPI: APIC 0x00000000BB0E5838 0001A8 (v03 ALASKA A M I    01072009 AMI  00010013)
[    5.037422] ACPI: FPDT 0x00000000BB0E59E0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    5.389754] ACPI: MCFG 0x00000000BB0E5A28 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    5.742863] ACPI: HPET 0x00000000BB0E5A68 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    6.095792] ACPI: SSDT 0x00000000BB0E5AA0 0CD380 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    6.448670] ACPI: RMAD 0x00000000BB1B2E20 0000EC (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    6.801480] ACPI: Local APIC address 0xfee00000
[    6.919012] Setting APIC routing to Xen PV.
[    7.036279] NUMA turned off
[    7.153873] Faking a node at [mem 0x0000000000000000-0x0000000080061fff]
[    7.271149] NODE_DATA(0) allocated [mem 0x3fbf7000-0x3fc20fff]
[    7.399420] Zone ranges:
[    7.516680]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    7.751630]   DMA32    [mem 0x0000000001000000-0x0000000080061fff]
[    7.986735]   Normal   empty
[    8.222044]   Device   empty
[    8.456663] Movable zone start for each node
[    8.574407] Early memory node ranges
[    8.691825]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    8.809515]   node   0: [mem 0x0000000000100000-0x0000000080061fff]
[    8.927465] Zeroed struct page in unavailable ranges: 32769 pages
[    9.044667] Initmem setup node 0 [mem 0x0000000000001000-0x0000000080061fff]
[    9.162315] On node 0 totalpages: 524287
[    9.279297]   DMA zone: 64 pages used for memmap
[    9.396457]   DMA zone: 21 pages reserved
[    9.513829]   DMA zone: 3997 pages, LIFO batch:0
[    9.631445]   DMA32 zone: 8130 pages used for memmap
[    9.748860]   DMA32 zone: 520290 pages, LIFO batch:63
[    9.867406] p2m virtual area at (____ptrval____), size is 40000000
[   10.210479] Remapped 98 page(s)
[   10.329593] ACPI: PM-Timer IO Port: 0x408
[   10.447444] ACPI: Local APIC address 0xfee00000
[   10.564733] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[   10.682281] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[   10.799547] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[   10.917194] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[   11.035024] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[   11.152573] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[   11.270275] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[   11.387657] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[   11.505483] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[   11.622593] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[   11.739966] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[   11.857589] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[   11.975020] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[   12.092440] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[   12.209727] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[   12.327243] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[   12.444921] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[   12.562617] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[   12.680483] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[   12.797861] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[   12.915513] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[   13.033159] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[   13.150678] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[   13.268602] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[   13.386031] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[   13.503665] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[   13.631497] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[   13.759302] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[   13.876235] ACPI: IRQ0 used by override.
[   13.993793] ACPI: IRQ9 used by override.
[   14.111247] Using ACPI (MADT) for SMP configuration information
[   14.228672] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[   14.346097] smpboot: Allowing 24 CPUs, 0 hotplug CPUs
[   14.463755] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[   14.581455] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[   14.698760] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[   14.816316] [mem 0x80062000-0xba951fff] available for PCI devices
[   14.944123] Booting paravirtualized kernel on Xen
[   15.071833] Xen version: 4.8.5 (preserve-AD)
[   15.189473] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[   15.311546] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:24 nr_cpu_ids:24 nr_node_ids:1
[   15.429964] percpu: Embedded 54 pages/cpu s183960 r8192 d29032 u262144
[   15.547375] pcpu-alloc: s183960 r8192 d29032 u262144 alloc=1*2097152
[   15.782948] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[   18.135212] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 
[   19.428001] xen: PV spinlocks enabled
[   19.545785] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[   19.663507] Built 1 zonelists, mobility grouping on.  Total pages: 516072
[   19.791258] Policy zone: DMA32
[   19.919067] Kernel command line: root=UUID=ee23fbab-8338-46f5-8e96-43827688f501 ro debug loglevel=7 boot_delay=50
[   20.036434] printk: log_buf_len individual max cpu contribution: 4096 bytes
[   20.153962] printk: log_buf_len total cpu_extra contributions: 94208 bytes
[   20.271758] printk: log_buf_len min size: 131072 bytes
[   20.389700] printk: log_buf_len: 262144 bytes
[   20.507253] printk: early log buf free: 122784(93%)
[   20.624684] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[   20.742294] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[   20.872428] mem auto-init: stack:off, heap alloc:on, heap free:off
[   21.039024] software IO TLB: mapped [mem 0x0000000038b00000-0x000000003cb00000] (64MB)
[   21.176419] Memory: 202080K/2097148K available (12295K kernel code, 2540K rwdata, 4060K rodata, 2380K init, 1692K bss, 1226580K reserved, 0K cma-reserved)
[   21.294073] random: get_random_u64 called from __kmem_cache_create+0x2e/0x550 with crng_init=0
[   21.412132] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=1
[   21.530599] ftrace: allocating 35988 entries in 141 pages
[   21.661941] ftrace: allocated 141 pages with 4 groups
[   21.780239] rcu: Hierarchical RCU implementation.
[   21.897798] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=24.
[   22.015504] 	Rude variant of Tasks RCU enabled.
[   22.132721] 	Tracing variant of Tasks RCU enabled.
[   22.250416] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[   22.368071] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24
[   22.495373] Using NULL legacy PIC
[   22.613052] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 0
[   22.731035] xen:events: Using FIFO-based ABI
[   22.848508] xen: --> pirq=1 -> irq=1 (gsi=1)
[   22.965668] xen: --> pirq=2 -> irq=2 (gsi=2)
[   23.083268] xen: --> pirq=3 -> irq=3 (gsi=3)
[   23.200545] xen: --> pirq=4 -> irq=4 (gsi=4)
[   23.318489] xen: --> pirq=5 -> irq=5 (gsi=5)
[   23.435962] xen: --> pirq=6 -> irq=6 (gsi=6)
[   23.553119] xen: --> pirq=7 -> irq=7 (gsi=7)
[   23.670867] xen: --> pirq=8 -> irq=8 (gsi=8)
[   23.787679] xen: --> pirq=9 -> irq=9 (gsi=9)
[   23.904613] xen: --> pirq=10 -> irq=10 (gsi=10)
[   24.022630] xen: --> pirq=11 -> irq=11 (gsi=11)
[   24.140050] xen: --> pirq=12 -> irq=12 (gsi=12)
[   24.257486] xen: --> pirq=13 -> irq=13 (gsi=13)
[   24.375039] xen: --> pirq=14 -> irq=14 (gsi=14)
[   24.492544] xen: --> pirq=15 -> irq=15 (gsi=15)
[   24.610310] random: crng done (trusting CPU's manufacturer)
[   24.742994] Console: colour VGA+ 80x25
[   24.868893] printk: console [tty0] enabled
[   24.987088] printk: console [hvc0] enabled
[   25.104720] ACPI: Core revision 20200925
[   25.312475] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[   25.440380] Xen: using vcpuop timer interface
[   25.558129] installing Xen timer for CPU 0
[   25.614278] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x23f467e01fe, max_idle_ns: 440795236622 ns
[   25.670368] Calibrating delay loop (skipped), value calculated using timer frequency.. 4988.71 BogoMIPS (lpj=9977432)
[   25.782369] pid_max: default: 32768 minimum: 301
[   25.838368] LSM: Security Framework initializing
[   25.894368] Yama: disabled by default; enable with sysctl kernel.yama.*
[   25.950368] AppArmor: AppArmor initialized
[   26.006368] TOMOYO Linux initialized
[   26.062369] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[   26.118369] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[   26.174369] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[   26.230368] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[   26.286369] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[   26.342369] Spectre V2 : Mitigation: Full generic retpoline
[   26.398368] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[   26.454369] Speculative Store Bypass: Vulnerable
[   26.510368] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[   26.566369] Freeing SMP alternatives memory: 32K
[   26.626369] cpu 0 spinlock event irq 49
[   26.682368] VPMU disabled by hypervisor.
[   26.738369] Performance Events: IvyBridge events, PMU not available due to virtualization, using software events only.
[   26.906368] rcu: Hierarchical SRCU implementation.
[   26.962368] NMI watchdog: Perf NMI watchdog permanently disabled
[   27.018368] smp: Bringing up secondary CPUs ...
[   27.074369] installing Xen timer for CPU 1
[   27.130113] cpu 1 spinlock event irq 59
[   27.186370] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[   27.242369] installing Xen timer for CPU 2
[   27.302191] cpu 2 spinlock event irq 65
[   27.358369] installing Xen timer for CPU 3
[   27.414114] cpu 3 spinlock event irq 71
[   27.470369] installing Xen timer for CPU 4
[   27.526120] cpu 4 spinlock event irq 77
[   27.582369] installing Xen timer for CPU 5
[   27.638120] cpu 5 spinlock event irq 83
[   27.691661] clocksource: timekeeping watchdog on CPU1: Marking clocksource 'tsc-early' as unstable because the skew is too large:
[   27.694370] installing Xen timer for CPU 6
[   27.749879] cpu 6 spinlock event irq 89
[   27.747706] clocksource:                       'xen' wd_now: 7ebeebdcc wd_last: 7cd108633 mask: ffffffffffffffff
[   27.803707] clocksource:                       'tsc-early' cs_now: 4cd939a88e cs_last: 4bc21f9bd6 mask: ffffffffffffffff
[   27.806369] installing Xen timer for CPU 7
[   27.862201] cpu 7 spinlock event irq 95
[   27.859880] tsc: Marking TSC unstable due to clocksource watchdog
[   27.918369] installing Xen timer for CPU 8
[   27.974116] cpu 8 spinlock event irq 101
[   28.030369] installing Xen timer for CPU 9
[   28.086096] cpu 9 spinlock event irq 107
[   28.142369] installing Xen timer for CPU 10
[   28.198097] cpu 10 spinlock event irq 113
[   28.254369] installing Xen timer for CPU 11
[   28.310100] cpu 11 spinlock event irq 119
[   28.366369] installing Xen timer for CPU 12
[   28.422092] cpu 12 spinlock event irq 125
[   28.478370] installing Xen timer for CPU 13
[   28.534107] cpu 13 spinlock event irq 131
[   28.590370] installing Xen timer for CPU 14
[   28.646095] cpu 14 spinlock event irq 137
[   28.702369] installing Xen timer for CPU 15
[   28.758100] cpu 15 spinlock event irq 143
[   28.814370] installing Xen timer for CPU 16
[   28.870114] cpu 16 spinlock event irq 149
[   28.926370] installing Xen timer for CPU 17
[   28.982099] cpu 17 spinlock event irq 155
[   29.038370] installing Xen timer for CPU 18
[   29.094109] cpu 18 spinlock event irq 161
[   29.150370] installing Xen timer for CPU 19
[   29.206090] cpu 19 spinlock event irq 167
[   29.262369] installing Xen timer for CPU 20
[   29.318091] cpu 20 spinlock event irq 173
[   29.374370] installing Xen timer for CPU 21
[   29.430034] cpu 21 spinlock event irq 179
[   29.486370] installing Xen timer for CPU 22
[   29.542088] cpu 22 spinlock event irq 185
[   29.598370] installing Xen timer for CPU 23
[   29.654068] cpu 23 spinlock event irq 191
[   29.710370] smp: Brought up 1 node, 24 CPUs
[   29.766369] smpboot: Max logical packages: 1
[   29.818754] node 0 deferred pages initialised in 0ms
[   29.878369] devtmpfs: initialized
[   29.934371] x86/mm: Memory block size: 128MB
[   29.990370] PM: Registering ACPI NVS region [mem 0xbabc3000-0xbb1bffff] (6279168 bytes)
[   30.046370] PM: Registering ACPI NVS region [mem 0xbb844000-0xbb8c9fff] (548864 bytes)
[   30.102371] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[   30.158370] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[   30.214369] pinctrl core: initialized pinctrl subsystem
[   30.270369] NET: Registered protocol family 16
[   30.326371] xen:grant_table: Grant tables using version 1 layout
[   30.382369] Grant table initialized
[   30.438371] audit: initializing netlink subsys (disabled)
[   30.491028] thermal_sys: Registered thermal governor 'fair_share'
[   30.494054] audit: type=2000 audit(1611077453.743:1): state=initialized audit_enabled=0 res=1
[   30.547194] thermal_sys: Registered thermal governor 'bang_bang'
[   30.603361] thermal_sys: Registered thermal governor 'step_wise'
[   30.659528] thermal_sys: Registered thermal governor 'user_space'
[   30.715696] ACPI: bus type PCI registered
[   30.771844] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[   30.828013] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xd0000000-0xdfffffff] (base 0xd0000000)
[   30.884181] PCI: MMCONFIG at [mem 0xd0000000-0xdfffffff] reserved in E820
[   31.016402] PCI: Using configuration type 1 for base access
[   31.270351] ACPI: Added _OSI(Module Device)
[   31.322476] ACPI: Added _OSI(Processor Device)
[   31.378646] ACPI: Added _OSI(3.0 _SCP Extensions)
[   31.434812] ACPI: Added _OSI(Processor Aggregator Device)
[   31.494370] ACPI: Added _OSI(Linux-Dell-Video)
[   31.550369] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[   31.606369] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[   31.850369] ACPI: 2 ACPI AML tables successfully acquired and loaded
[   32.030371] xen: registering gsi 9 triggering 0 polarity 0
[   32.094369] ACPI: Interpreter enabled
[   32.150369] ACPI: (supports S0 S5)
[   32.206370] ACPI: Using IOAPIC for interrupt routing
[   32.262371] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[   32.266364] ACPI: Enabled 6 GPEs in block 00 to 3F
[   32.338372] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[   32.394370] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   32.450370] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME AER LTR]
[   32.503025] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PCIeCapability]
[   32.559185] PCI host bridge to bus 0000:00
[   32.615350] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[   32.671501] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[   32.727625] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[   32.783794] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[   32.839973] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[   32.896160] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[   32.952350] pci_bus 0000:00: root bus resource [mem 0xcc000000-0xffffffff window]
[   33.008533] pci_bus 0000:00: root bus resource [mem 0x840000000-0x3fffffffffff window]
[   33.064706] pci_bus 0000:00: root bus resource [bus 00-fe]
[   33.120885] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[   33.177050] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[   33.233215] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[   33.289382] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[   33.345548] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400
[   33.401712] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[   33.457874] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[   33.514037] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[   33.570200] pci 0000:00:02.1: [8086:0e05] type 01 class 0x060400
[   33.626360] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[   33.678463] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[   33.734631] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[   33.790798] pci 0000:00:02.3: [8086:0e07] type 01 class 0x060400
[   33.846963] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
[   33.903128] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[   33.959291] pci 0000:00:03.0: enabling Extended Tags
[   34.015456] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[   34.071620] pci 0000:00:03.1: [8086:0e09] type 01 class 0x060400
[   34.127782] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[   34.183946] pci 0000:00:03.2: [8086:0e0a] type 01 class 0x060400
[   34.240107] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[   34.296270] pci 0000:00:03.3: [8086:0e0b] type 01 class 0x060400
[   34.352432] pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
[   34.408591] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[   34.466371] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[   34.522370] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020
[   34.578370] pci 0000:00:05.4: reg 0x10: [mem 0xfb304000-0xfb304fff]
[   34.634370] pci 0000:00:06.0: [8086:0e10] type 00 class 0x088000
[   34.690370] pci 0000:00:06.1: [8086:0e11] type 00 class 0x088000
[   34.746371] pci 0000:00:06.2: [8086:0e12] type 00 class 0x088000
[   34.802370] pci 0000:00:06.3: [8086:0e13] type 00 class 0x088000
[   34.858372] pci 0000:00:06.4: [8086:0e14] type 00 class 0x088000
[   34.914369] pci 0000:00:06.5: [8086:0e15] type 00 class 0x088000
[   34.970369] pci 0000:00:06.6: [8086:0e16] type 00 class 0x088000
[   35.026369] pci 0000:00:06.7: [8086:0e17] type 00 class 0x088000
[   35.082369] pci 0000:00:07.0: [8086:0e18] type 00 class 0x088000
[   35.138370] pci 0000:00:07.1: [8086:0e19] type 00 class 0x088000
[   35.194369] pci 0000:00:07.2: [8086:0e1a] type 00 class 0x088000
[   35.250369] pci 0000:00:07.3: [8086:0e1b] type 00 class 0x088000
[   35.306369] pci 0000:00:07.4: [8086:0e1c] type 00 class 0x088000
[   35.362370] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[   35.418369] pci 0000:00:1a.0: reg 0x10: [mem 0xfb302000-0xfb3023ff]
[   35.474031] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[   35.530191] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[   35.586350] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[   35.638462] pci 0000:00:1c.0: Enabling MPC IRBNCE
[   35.694628] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[   35.750792] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[   35.806955] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[   35.863119] pci 0000:00:1c.1: Enabling MPC IRBNCE
[   35.919282] pci 0000:00:1c.1: Intel PCH root port ACS workaround enabled
[   35.975445] pci 0000:00:1c.4: [8086:1e18] type 01 class 0x060400
[   36.031607] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[   36.087769] pci 0000:00:1c.4: Enabling MPC IRBNCE
[   36.143933] pci 0000:00:1c.4: Intel PCH root port ACS workaround enabled
[   36.200098] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[   36.256265] pci 0000:00:1d.0: reg 0x10: [mem 0xfb301000-0xfb3013ff]
[   36.312430] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[   36.368595] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[   36.424758] pci 0000:00:1f.0: [8086:1e48] type 00 class 0x060100
[   36.482370] pci 0000:00:1f.2: [8086:1e02] type 00 class 0x010601
[   36.538370] pci 0000:00:1f.2: reg 0x10: [io  0xf070-0xf077]
[   36.594369] pci 0000:00:1f.2: reg 0x14: [io  0xf060-0xf063]
[   36.650369] pci 0000:00:1f.2: reg 0x18: [io  0xf050-0xf057]
[   36.706369] pci 0000:00:1f.2: reg 0x1c: [io  0xf040-0xf043]
[   36.762369] pci 0000:00:1f.2: reg 0x20: [io  0xf020-0xf03f]
[   36.822369] pci 0000:00:1f.2: reg 0x24: [mem 0xfb300000-0xfb3007ff]
[   36.878369] pci 0000:00:1f.2: PME# supported from D3hot
[   36.934372] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[   36.990369] pci 0000:00:1f.3: reg 0x10: [mem 0x3ffffff00000-0x3ffffff000ff 64bit]
[   37.046369] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[   37.102369] pci 0000:00:01.0: PCI bridge to [bus 01]
[   37.158369] pci 0000:00:01.1: PCI bridge to [bus 02]
[   37.214369] pci 0000:03:00.0: [10de:01d3] type 00 class 0x030000
[   37.270369] pci 0000:03:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
[   37.326370] pci 0000:03:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
[   37.382369] pci 0000:03:00.0: reg 0x1c: [mem 0xf9000000-0xf9ffffff 64bit]
[   37.438369] pci 0000:03:00.0: reg 0x30: [mem 0xfb000000-0xfb01ffff pref]
[   37.492077] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[   37.548242] pci 0000:00:02.0: PCI bridge to [bus 03]
[   37.604411] pci 0000:00:02.0:   bridge window [mem 0xf9000000-0xfb0fffff]
[   37.660579] pci 0000:00:02.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[   37.716744] pci 0000:00:02.1: PCI bridge to [bus 04]
[   37.772909] pci 0000:00:02.2: PCI bridge to [bus 05]
[   37.829070] pci 0000:00:02.3: PCI bridge to [bus 06]
[   37.885232] pci 0000:00:03.0: PCI bridge to [bus 07]
[   37.941395] pci 0000:00:03.1: PCI bridge to [bus 08]
[   37.997557] pci 0000:00:03.2: PCI bridge to [bus 09]
[   38.053719] pci 0000:00:03.3: PCI bridge to [bus 0a]
[   38.109881] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[   38.166043] pci 0000:0c:00.0: [1106:3483] type 00 class 0x0c0330
[   38.222207] pci 0000:0c:00.0: reg 0x10: [mem 0xfb200000-0xfb200fff 64bit]
[   38.278363] pci 0000:0c:00.0: PME# supported from D0 D3cold
[   38.330419] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[   38.386587] pci 0000:00:1c.1:   bridge window [mem 0xfb200000-0xfb2fffff]
[   38.442755] pci 0000:0d:00.0: [10ec:8168] type 00 class 0x020000
[   38.498922] pci 0000:0d:00.0: reg 0x10: [io  0xe000-0xe0ff]
[   38.555088] pci 0000:0d:00.0: reg 0x18: [mem 0xfb104000-0xfb104fff 64bit]
[   38.611255] pci 0000:0d:00.0: reg 0x20: [mem 0xfb100000-0xfb103fff 64bit]
[   38.667422] pci 0000:0d:00.0: supports D1 D2
[   38.723590] pci 0000:0d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   38.779756] pci 0000:00:1c.4: PCI bridge to [bus 0d]
[   38.835923] pci 0000:00:1c.4:   bridge window [io  0xe000-0xefff]
[   38.892090] pci 0000:00:1c.4:   bridge window [mem 0xfb100000-0xfb1fffff]
[   38.948217] pci_bus 0000:0e: extended config space not accessible
[   39.004385] pci 0000:00:1e.0: PCI bridge to [bus 0e] (subtractive decode)
[   39.060549] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[   39.116713] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[   39.174370] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[   39.230369] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[   39.286369] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[   39.342369] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[   39.396290] pci 0000:00:1e.0:   bridge window [mem 0xcc000000-0xffffffff window] (subtractive decode)
[   39.454371] pci 0000:00:1e.0:   bridge window [mem 0x840000000-0x3fffffffffff window] (subtractive decode)
[   39.510370] xen: registering gsi 13 triggering 1 polarity 0
[   39.566370] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus ff])
[   39.622369] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[   39.678369] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
[   39.734368] PCI host bridge to bus 0000:ff
[   39.790369] pci_bus 0000:ff: root bus resource [bus ff]
[   39.846371] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000
[   39.902369] pci 0000:ff:08.2: [8086:0e32] type 00 class 0x110100
[   39.958369] pci 0000:ff:08.3: [8086:0e83] type 00 class 0x088000
[   40.014369] pci 0000:ff:08.4: [8086:0e84] type 00 class 0x088000
[   40.070369] pci 0000:ff:08.5: [8086:0e85] type 00 class 0x088000
[   40.126369] pci 0000:ff:08.6: [8086:0e86] type 00 class 0x088000
[   40.182369] pci 0000:ff:08.7: [8086:0e87] type 00 class 0x088000
[   40.238369] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000
[   40.294369] pci 0000:ff:09.2: [8086:0e33] type 00 class 0x110100
[   40.350369] pci 0000:ff:09.3: [8086:0e93] type 00 class 0x088000
[   40.406374] pci 0000:ff:09.4: [8086:0e94] type 00 class 0x088000
[   40.462369] pci 0000:ff:09.5: [8086:0e95] type 00 class 0x088000
[   40.518369] pci 0000:ff:09.6: [8086:0e96] type 00 class 0x088000
[   40.574369] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000
[   40.630369] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000
[   40.686371] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000
[   40.742369] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000
[   40.798369] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000
[   40.854369] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000
[   40.910369] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000
[   40.966369] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000
[   41.022369] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000
[   41.078369] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000
[   41.134369] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000
[   41.190369] pci 0000:ff:0c.5: [8086:0eea] type 00 class 0x088000
[   41.246369] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000
[   41.302373] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000
[   41.358369] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000
[   41.414369] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000
[   41.466945] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000
[   41.523113] pci 0000:ff:0d.5: [8086:0eeb] type 00 class 0x088000
[   41.579282] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000
[   41.635448] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100
[   41.691614] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000
[   41.747779] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000
[   41.803953] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000
[   41.860120] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000
[   41.916287] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000
[   41.972456] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000
[   42.028624] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000
[   42.084795] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000
[   42.140960] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000
[   42.197126] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000
[   42.253293] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000
[   42.309457] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000
[   42.365622] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000
[   42.421785] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000
[   42.478370] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000
[   42.534370] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100
[   42.590370] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000
[   42.646369] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100
[   42.702369] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000
[   42.758369] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000
[   42.814369] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000
[   42.870371] pci 0000:ff:1c.0: [8086:0e60] type 00 class 0x088000
[   42.926369] pci 0000:ff:1c.1: [8086:0e38] type 00 class 0x110100
[   42.982370] pci 0000:ff:1d.0: [8086:0e68] type 00 class 0x088000
[   43.036429] pci 0000:ff:1d.1: [8086:0e79] type 00 class 0x088000
[   43.092589] pci 0000:ff:1d.2: [8086:0e6a] type 00 class 0x088000
[   43.150370] pci 0000:ff:1d.3: [8086:0e6b] type 00 class 0x088000
[   43.206369] pci 0000:ff:1d.4: [8086:0e6c] type 00 class 0x088000
[   43.262370] pci 0000:ff:1d.5: [8086:0e6d] type 00 class 0x088000
[   43.318373] pci 0000:ff:1e.0: [8086:0ef0] type 00 class 0x088000
[   43.374369] pci 0000:ff:1e.1: [8086:0ef1] type 00 class 0x088000
[   43.430370] pci 0000:ff:1e.2: [8086:0ef2] type 00 class 0x088000
[   43.483864] pci 0000:ff:1e.3: [8086:0ef3] type 00 class 0x088000
[   43.540025] pci 0000:ff:1e.4: [8086:0ef4] type 00 class 0x088000
[   43.596186] pci 0000:ff:1e.5: [8086:0ef5] type 00 class 0x088000
[   43.652348] pci 0000:ff:1e.6: [8086:0ef6] type 00 class 0x088000
[   43.708510] pci 0000:ff:1e.7: [8086:0ef7] type 00 class 0x088000
[   43.764674] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[   44.494369] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[   45.222369] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15)
[   45.890418] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 *4 5 6 10 11 12 14 15)
[   46.564429] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[   47.406369] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[   48.246369] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[   49.086369] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15)
[   49.812449] xen:balloon: Initialising balloon driver
[   49.868648] iommu: Default domain type: Translated 
[   49.874364] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[   49.874364] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[   50.034488] pci 0000:03:00.0: vgaarb: bridge control possible
[   50.090697] vgaarb: loaded
[   50.146904] EDAC MC: Ver: 3.0.0
[   50.203110] NetLabel: Initializing
[   50.259317] NetLabel:  domain hash size = 128
[   50.315522] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[   50.371731] NetLabel:  unlabeled traffic allowed by default
[   50.427943] PCI: Using ACPI for IRQ routing
[   50.504211] PCI: pci_cache_line_size set to 64 bytes
[   50.560419] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[   50.616625] e820: reserve RAM buffer [mem 0x80062000-0x83ffffff]
[   50.690404] clocksource: Switched to clocksource xen
[   50.758373] VFS: Disk quotas dquot_6.6.0
[   50.814373] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[   50.870375] hugetlbfs: disabling because there are no supported hugepage sizes
[   50.926372] AppArmor: AppArmor Filesystem Enabled
[   50.982372] pnp: PnP ACPI init
[   51.038375] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[   51.094373] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[   51.150372] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[   51.206372] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[   51.262373] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[   51.318375] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[   51.374372] system 00:00: [mem 0xfee00000-0xfeefffff] has been reserved
[   51.374449] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[   51.430373] system 00:01: [mem 0xfbffc000-0xfbffdfff] could not be reserved
[   51.430447] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[   51.486375] system 00:02: [io  0x0a00-0x0a1f] has been reserved
[   51.542374] system 00:02: [io  0x0a20-0x0a2f] has been reserved
[   51.598372] system 00:02: [io  0x0a30-0x0a3f] has been reserved
[   51.598449] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[   51.654374] xen: registering gsi 1 triggering 1 polarity 0
[   51.654428] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[   51.710372] xen: registering gsi 12 triggering 1 polarity 0
[   51.710417] pnp 00:04: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[   51.766372] xen: registering gsi 8 triggering 1 polarity 0
[   51.766412] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[   51.822374] system 00:06: [io  0x04d0-0x04d1] has been reserved
[   51.828320] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[   51.882373] system 00:07: [io  0x0400-0x0453] has been reserved
[   51.938372] system 00:07: [io  0x0458-0x047f] has been reserved
[   51.994372] system 00:07: [io  0x1180-0x119f] has been reserved
[   52.050372] system 00:07: [io  0x0500-0x057f] has been reserved
[   52.106373] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[   52.162373] system 00:07: [mem 0xfec00000-0xfecfffff] could not be reserved
[   52.218372] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[   52.218447] system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
[   52.274373] system 00:08: [io  0x0454-0x0457] has been reserved
[   52.274448] system 00:08: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[   52.330373] pnp: PnP ACPI: found 9 devices
[   52.398373] PM-Timer failed consistency check  (0xffffff) - aborting.
[   52.454372] NET: Registered protocol family 2
[   52.510407] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[   52.566382] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[   52.622380] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[   52.678381] TCP: Hash tables configured (established 16384 bind 16384)
[   52.734374] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[   52.790375] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[   52.846373] NET: Registered protocol family 1
[   52.902372] NET: Registered protocol family 44
[   52.958378] pci 0000:00:01.0: PCI bridge to [bus 01]
[   53.014372] pci 0000:00:01.1: PCI bridge to [bus 02]
[   53.070372] pci 0000:00:02.0: PCI bridge to [bus 03]
[   53.126373] pci 0000:00:02.0:   bridge window [mem 0xf9000000-0xfb0fffff]
[   53.182373] pci 0000:00:02.0:   bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[   53.238372] pci 0000:00:02.1: PCI bridge to [bus 04]
[   53.294373] pci 0000:00:02.2: PCI bridge to [bus 05]
[   53.350375] pci 0000:00:02.3: PCI bridge to [bus 06]
[   53.406375] pci 0000:00:03.0: PCI bridge to [bus 07]
[   53.462375] pci 0000:00:03.1: PCI bridge to [bus 08]
[   53.518375] pci 0000:00:03.2: PCI bridge to [bus 09]
[   53.574375] pci 0000:00:03.3: PCI bridge to [bus 0a]
[   53.630375] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[   53.686375] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[   53.742376] pci 0000:00:1c.1:   bridge window [mem 0xfb200000-0xfb2fffff]
[   53.798376] pci 0000:00:1c.4: PCI bridge to [bus 0d]
[   53.854375] pci 0000:00:1c.4:   bridge window [io  0xe000-0xefff]
[   53.910375] pci 0000:00:1c.4:   bridge window [mem 0xfb100000-0xfb1fffff]
[   53.966375] pci 0000:00:1e.0: PCI bridge to [bus 0e]
[   54.022375] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[   54.078375] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[   54.134375] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[   54.190375] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[   54.246375] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[   54.302375] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[   54.358375] pci_bus 0000:00: resource 10 [mem 0xcc000000-0xffffffff window]
[   54.414376] pci_bus 0000:00: resource 11 [mem 0x840000000-0x3fffffffffff window]
[   54.470375] pci_bus 0000:03: resource 1 [mem 0xf9000000-0xfb0fffff]
[   54.526375] pci_bus 0000:03: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
[   54.582375] pci_bus 0000:0c: resource 1 [mem 0xfb200000-0xfb2fffff]
[   54.638376] pci_bus 0000:0d: resource 0 [io  0xe000-0xefff]
[   54.694375] pci_bus 0000:0d: resource 1 [mem 0xfb100000-0xfb1fffff]
[   54.750376] pci_bus 0000:0e: resource 4 [io  0x0000-0x03af window]
[   54.806375] pci_bus 0000:0e: resource 5 [io  0x03e0-0x0cf7 window]
[   54.862375] pci_bus 0000:0e: resource 6 [io  0x03b0-0x03df window]
[   54.918375] pci_bus 0000:0e: resource 7 [io  0x0d00-0xffff window]
[   54.974375] pci_bus 0000:0e: resource 8 [mem 0x000a0000-0x000bffff window]
[   55.030375] pci_bus 0000:0e: resource 9 [mem 0x000c0000-0x000dffff window]
[   55.086375] pci_bus 0000:0e: resource 10 [mem 0xcc000000-0xffffffff window]
[   55.142375] pci_bus 0000:0e: resource 11 [mem 0x840000000-0x3fffffffffff window]
[   55.198377] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[   55.254382] pci 0000:00:05.0: quirk_disable_intel_boot_interrupt+0x0/0xf0 took 54506 usecs
[   55.310405] xen: registering gsi 16 triggering 0 polarity 1
[   55.366375] xen: --> pirq=16 -> irq=16 (gsi=16)
[   55.422378] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x700 took 109429 usecs
[   55.478375] xen: registering gsi 23 triggering 0 polarity 1
[   55.534375] xen: --> pirq=23 -> irq=23 (gsi=23)
[   55.590418] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x700 took 109422 usecs
[   55.646374] pci 0000:03:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[   55.702380] pci 0000:03:00.0: pci_fixup_video+0x0/0xe0 took 54604 usecs
[   55.758373] xen: registering gsi 16 triggering 0 polarity 1
[   55.814372] Already setup the GSI :16
[   55.870424] xen: registering gsi 17 triggering 0 polarity 1
[   55.926373] xen: --> pirq=17 -> irq=17 (gsi=17)
[   55.982376] pci 0000:0c:00.0: quirk_usb_early_handoff+0x0/0x700 took 218770 usecs
[   56.038373] PCI: CLS 64 bytes, default 64
[   56.094373] Trying to unpack rootfs image as initramfs...
[   56.666379] Freeing initrd memory: 30500K
[   56.722376] Initialise system trusted keyrings
[   56.778374] Key type blacklist registered
[   56.834373] workingset: timestamp_bits=36 max_order=18 bucket_order=0
[   56.890415] zbud: loaded
[   56.946372] integrity: Platform Keyring initialized
[   57.002372] Key type asymmetric registered
[   57.058374] Asymmetric key parser 'x509' registered
[   57.114373] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[   57.170407] io scheduler mq-deadline registered
[   57.226374] xen: registering gsi 26 triggering 0 polarity 1
[   57.282373] xen: --> pirq=26 -> irq=26 (gsi=26)
[   57.338375] xen: registering gsi 26 triggering 0 polarity 1
[   57.394378] Already setup the GSI :26
[   57.450404] xen: registering gsi 32 triggering 0 polarity 1
[   57.506372] xen: --> pirq=32 -> irq=32 (gsi=32)
[   57.562375] xen: registering gsi 32 triggering 0 polarity 1
[   57.618374] Already setup the GSI :32
[   57.674373] xen: registering gsi 32 triggering 0 polarity 1
[   57.730414] Already setup the GSI :32
[   57.786375] xen: registering gsi 32 triggering 0 polarity 1
[   57.842375] Already setup the GSI :32
[   57.898373] xen: registering gsi 40 triggering 0 polarity 1
[   57.954372] xen: --> pirq=40 -> irq=40 (gsi=40)
[   58.010375] xen: registering gsi 40 triggering 0 polarity 1
[   58.066375] Already setup the GSI :40
[   58.122373] xen: registering gsi 40 triggering 0 polarity 1
[   58.178372] Already setup the GSI :40
[   58.234375] xen: registering gsi 40 triggering 0 polarity 1
[   58.290374] Already setup the GSI :40
[   58.346373] xen: registering gsi 17 triggering 0 polarity 1
[   58.402374] Already setup the GSI :17
[   58.458375] xen: registering gsi 17 triggering 0 polarity 1
[   58.514375] Already setup the GSI :17
[   58.570404] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   58.626373] intel_idle: MWAIT substates: 0x1120
[   58.682373] Monitor-Mwait will be used to enter C-1 state
[   58.738373] Monitor-Mwait will be used to enter C-2 state
[   58.794375] ACPI: \_SB_.SCK0.C000: Found 2 idle states
[   58.850415] intel_idle: v0.5.1 model 0x3E
[   58.906372] intel_idle: intel_idle yielding to none
[   58.962373] ACPI: \_SB_.SCK0.C000: Found 2 idle states
[   59.018373] ACPI: \_SB_.SCK0.C002: Found 2 idle states
[   59.074373] ACPI: \_SB_.SCK0.C004: Found 2 idle states
[   59.130405] ACPI: \_SB_.SCK0.C006: Found 2 idle states
[   59.186379] ACPI: \_SB_.SCK0.C008: Found 2 idle states
[   59.242373] ACPI: \_SB_.SCK0.C00A: Found 2 idle states
[   59.298373] ACPI: \_SB_.SCK0.C00C: Found 2 idle states
[   59.354373] ACPI: \_SB_.SCK0.C00E: Found 2 idle states
[   59.410368] ACPI: \_SB_.SCK0.C010: Found 2 idle states
[   59.466375] ACPI: \_SB_.SCK0.C012: Found 2 idle states
[   59.522376] ACPI: \_SB_.SCK0.C014: Found 2 idle states
[   59.578373] ACPI: \_SB_.SCK0.C016: Found 2 idle states
[   59.634373] ACPI: \_SB_.SCK0.C001: Found 2 idle states
[   59.690404] ACPI: \_SB_.SCK0.C003: Found 2 idle states
[   59.746373] ACPI: \_SB_.SCK0.C005: Found 2 idle states
[   59.802373] ACPI: \_SB_.SCK0.C007: Found 2 idle states
[   59.858375] ACPI: \_SB_.SCK0.C009: Found 2 idle states
[   59.914376] ACPI: \_SB_.SCK0.C00B: Found 2 idle states
[   59.970407] ACPI: \_SB_.SCK0.C00D: Found 2 idle states
[   60.026375] ACPI: \_SB_.SCK0.C00F: Found 2 idle states
[   60.082376] ACPI: \_SB_.SCK0.C011: Found 2 idle states
[   60.138376] ACPI: \_SB_.SCK0.C013: Found 2 idle states
[   60.194373] ACPI: \_SB_.SCK0.C015: Found 2 idle states
[   60.250404] ACPI: \_SB_.SCK0.C017: Found 2 idle states
[   60.306373] xen_mcelog: /dev/mcelog registered by Xen
[   60.362374] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[   60.418373] hpet_acpi_add: no address or irqs in _CRS
[   60.474372] Linux agpgart interface v0.103
[   60.530374] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[   60.586372] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[   60.642374] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[   60.698374] serio: i8042 KBD port at 0x60,0x64 irq 1
[   60.754375] serio: i8042 AUX port at 0x60,0x64 irq 12
[   60.810405] mousedev: PS/2 mouse device common for all mice
[   60.866376] rtc_cmos 00:05: RTC can wake from S4
[   60.922375] rtc_cmos 00:05: registered as rtc0
[   60.978374] rtc_cmos 00:05: setting system clock to 2021-01-19T17:31:24 UTC (1611077484)
[   61.034373] rtc_cmos 00:05: alarms up to one month, y3k, 114 bytes nvram
[   61.090373] intel_pstate: CPU model not supported
[   61.146372] ledtrig-cpu: registered to indicate activity on CPUs
[   61.202373] NET: Registered protocol family 10
[   61.278380] Segment Routing with IPv6
[   61.334380] mip6: Mobile IPv6
[   61.390368] NET: Registered protocol family 17
[   61.446376] mpls_gso: MPLS GSO support
[   61.502376] IPI shorthand broadcast: enabled
[   61.558376] sched_clock: Marking stable (60436562241, 1065806413)->(61953278698, -450910044)
[   61.614372] registered taskstats version 1
[   61.670418] Loading compiled-in X.509 certificates
[   61.762380] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
[   61.818379] Loaded X.509 cert 'Debian Secure Boot Signer 2020: 00b55eb3b9'
[   61.874381] zswap: loaded using pool lzo/zbud
[   61.930380] Key type ._fscrypt registered
[   61.986379] Key type .fscrypt registered
[   62.042379] Key type fscrypt-provisioning registered
[   62.098381] AppArmor: AppArmor sha1 policy hashing enabled
[   62.154374] Freeing unused kernel image (initmem) memory: 2380K
[   62.210374] Write protecting the kernel read-only data: 18432k
[   62.278372] Freeing unused kernel image (text/rodata gap) memory: 2040K
[   62.334375] Freeing unused kernel image (rodata/data gap) memory: 36K
[   62.826376] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[   62.826509] Run /init as init process
[   62.826575]   with arguments:
[   62.826576]     /init
[   62.826577]   with environment:
[   62.826577]     HOME=/
[   62.826578]     TERM=linux
[   62.887464] systemd-udevd[233]: Starting version 241
[   62.896538] systemd-udevd[234]: /usr/lib/udev/rules.d/50-udev-default.rules:18: Invalid GROUP operation
[   62.896635] systemd-udevd[234]: /usr/lib/udev/rules.d/50-udev-default.rules:19: Invalid GROUP operation
[   62.896738] systemd-udevd[234]: /usr/lib/udev/rules.d/50-udev-default.rules:20: Invalid GROUP operation
[   62.896831] systemd-udevd[234]: /usr/lib/udev/rules.d/50-udev-default.rules:21: Invalid GROUP operation
[   62.896925] systemd-udevd[234]: /usr/lib/udev/rules.d/50-udev-default.rules:22: Invalid GROUP operation
[   62.897018] systemd-udevd[234]: /usr/lib/udev/rules.d/50-udev-default.rules:23: Invalid GROUP operation
[   62.897110] systemd-udevd[234]: /usr/lib/udev/rules.d/50-udev-default.rules:24: Invalid GROUP operation
[   62.897204] systemd-udevd[234]: /usr/lib/udev/rules.d/50-udev-default.rules:25: Invalid GROUP operation
[   62.897298] systemd-udevd[234]: /usr/lib/udev/rules.d/50-udev-default.rules:27: Invalid GROUP operation
[   63.122574] xen: registering gsi 18 triggering 0 polarity 1
[   63.122612] xen: --> pirq=18 -> irq=18 (gsi=18)
[   63.122754] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[   63.123370] i2c i2c-0: 4/4 memory slots populated (from DMI)
[   63.131767] SCSI subsystem initialized
[   63.134069] xen: registering gsi 16 triggering 0 polarity 1
[   63.134078] Already setup the GSI :16
[   63.134139] ACPI: bus type USB registered
[   63.134162] usbcore: registered new interface driver usbfs
[   63.134287] usbcore: registered new interface driver hub
[   63.134695] usbcore: registered new device driver usb
[   63.140091] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   63.141465] ehci-pci: EHCI PCI platform driver
[   63.141635] xen: registering gsi 16 triggering 0 polarity 1
[   63.141642] Already setup the GSI :16
[   63.141787] ehci-pci 0000:00:1a.0: EHCI Host Controller
[   63.141857] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[   63.141960] ehci-pci 0000:00:1a.0: debug port 2
[   63.145972] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[   63.146102] ehci-pci 0000:00:1a.0: irq 16, io mem 0xfb302000
[   63.146964] libata version 3.00 loaded.
[   63.152104] libphy: r8169: probed
[   63.152395] r8169 0000:0d:00.0 eth0: RTL8168h/8111h, 00:e0:4c:0a:52:97, XID 541, IRQ 209
[   63.152484] r8169 0000:0d:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[   63.158410] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[   63.158606] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   63.158694] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   63.158779] usb usb1: Product: EHCI Host Controller
[   63.158847] usb usb1: Manufacturer: Linux 5.10.0-1-amd64 ehci_hcd
[   63.158917] usb usb1: SerialNumber: 0000:00:1a.0
[   63.159194] hub 1-0:1.0: USB hub found
[   63.159273] hub 1-0:1.0: 2 ports detected
[   63.159686] xen: registering gsi 23 triggering 0 polarity 1
[   63.159693] Already setup the GSI :23
[   63.159810] ehci-pci 0000:00:1d.0: EHCI Host Controller
[   63.159879] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[   63.159983] ehci-pci 0000:00:1d.0: debug port 2
[   63.161095] xen: registering gsi 17 triggering 0 polarity 1
[   63.161102] Already setup the GSI :17
[   63.161951] ahci 0000:00:1f.2: version 3.0
[   63.162041] xen: registering gsi 19 triggering 0 polarity 1
[   63.162068] xen: --> pirq=19 -> irq=19 (gsi=19)
[   63.162246] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
[   63.162331] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[   63.163978] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[   63.164110] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb301000
[   63.164655] r8169 0000:0d:00.0 enp13s0: renamed from eth0
[   63.175129] scsi host0: ahci
[   63.175571] scsi host1: ahci
[   63.175954] scsi host2: ahci
[   63.176310] scsi host3: ahci
[   63.176700] scsi host4: ahci
[   63.177105] scsi host5: ahci
[   63.177229] ata1: SATA max UDMA/133 abar m2048@0xfb300000 port 0xfb300100 irq 210
[   63.177312] ata2: SATA max UDMA/133 abar m2048@0xfb300000 port 0xfb300180 irq 210
[   63.177393] ata3: DUMMY
[   63.177451] ata4: DUMMY
[   63.177508] ata5: DUMMY
[   63.177566] ata6: DUMMY
[   63.182406] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[   63.182576] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   63.182659] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   63.182739] usb usb2: Product: EHCI Host Controller
[   63.182801] usb usb2: Manufacturer: Linux 5.10.0-1-amd64 ehci_hcd
[   63.182867] usb usb2: SerialNumber: 0000:00:1d.0
[   63.183129] hub 2-0:1.0: USB hub found
[   63.183207] hub 2-0:1.0: 2 ports detected
[   63.183475] xhci_hcd 0000:0c:00.0: xHCI Host Controller
[   63.183559] xhci_hcd 0000:0c:00.0: new USB bus registered, assigned bus number 3
[   63.183747] xhci_hcd 0000:0c:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x0000000000000890
[   63.184143] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   63.184226] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   63.184306] usb usb3: Product: xHCI Host Controller
[   63.184368] usb usb3: Manufacturer: Linux 5.10.0-1-amd64 xhci-hcd
[   63.184433] usb usb3: SerialNumber: 0000:0c:00.0
[   63.184691] hub 3-0:1.0: USB hub found
[   63.184772] hub 3-0:1.0: 1 port detected
[   63.185006] xhci_hcd 0000:0c:00.0: xHCI Host Controller
[   63.185074] xhci_hcd 0000:0c:00.0: new USB bus registered, assigned bus number 4
[   63.185157] xhci_hcd 0000:0c:00.0: Host supports USB 3.0 SuperSpeed
[   63.185355] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[   63.185437] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   63.185517] usb usb4: Product: xHCI Host Controller
[   63.185579] usb usb4: Manufacturer: Linux 5.10.0-1-amd64 xhci-hcd
[   63.185644] usb usb4: SerialNumber: 0000:0c:00.0
[   63.185901] hub 4-0:1.0: USB hub found
[   63.185985] hub 4-0:1.0: 4 ports detected
[   63.494275] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[   63.494364] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[   63.494406] usb 1-1: new high-speed USB device number 2 using ehci-pci
[   63.494827] ata1.00: ATA-11: KINGSTON SUV400S37120G, 0C3FD6SD, max UDMA/133
[   63.494898] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 32), AA
[   63.495498] ata1.00: configured for UDMA/133
[   63.495757] scsi 0:0:0:0: Direct-Access     ATA      KINGSTON SUV400S D6SD PQ: 0 ANSI: 5
[   63.512293] ata2.00: ATA-8: KINGSTON SV300S37A120G, 525ABBF0, max UDMA/133
[   63.512364] ata2.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 32), AA
[   63.518455] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[   63.518460] usb 2-1: new high-speed USB device number 2 using ehci-pci
[   63.530908] ata2.00: configured for UDMA/133
[   63.531159] scsi 1:0:0:0: Direct-Access     ATA      KINGSTON SV300S3 BBF0 PQ: 0 ANSI: 5
[   63.541460] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[   63.541468] sd 1:0:0:0: [sdb] 234441648 512-byte logical blocks: (120 GB/112 GiB)
[   63.541546] sd 0:0:0:0: [sda] 4096-byte physical blocks
[   63.541650] sd 1:0:0:0: [sdb] Write Protect is off
[   63.541711] sd 0:0:0:0: [sda] Write Protect is off
[   63.541754] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[   63.541816] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[   63.541853] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   63.541855] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   63.559310]  sda: sda1 sda2
[   63.560122] sd 0:0:0:0: [sda] Attached SCSI disk
[   63.563787] sd 1:0:0:0: [sdb] Attached SCSI disk
[   63.648552] process '/usr/bin/fstype' started with executable stack
[   63.650726] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[   63.650811] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   63.651130] hub 1-1:1.0: USB hub found
[   63.651343] hub 1-1:1.0: 6 ports detected
[   63.663522] PM: Image not found (code -22)
[   63.672252] usb 3-1: New USB device found, idVendor=2109, idProduct=3431, bcdDevice= 4.20
[   63.672337] usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[   63.672404] usb 3-1: Product: USB2.0 Hub
[   63.673532] hub 3-1:1.0: USB hub found
[   63.673868] hub 3-1:1.0: 4 ports detected
[   63.674722] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[   63.674806] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   63.675130] hub 2-1:1.0: USB hub found
[   63.675352] hub 2-1:1.0: 8 ports detected
[   63.841806] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[   63.875899] printk: systemd-udevd: 39 output lines suppressed due to ratelimiting
[   63.938410] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
[   63.950006] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[   63.966407] usb 2-1.4: new high-speed USB device number 3 using ehci-pci
[   64.042466] systemd[1]: Inserted module 'autofs4'
[   64.052838] usb 1-1.2: New USB device found, idVendor=099a, idProduct=610c, bcdDevice= 0.01
[   64.052924] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   64.053003] usb 1-1.2: Product: USB Multimedia Keyboard 
[   64.053066] usb 1-1.2: Manufacturer:  
[   64.085839] usb 2-1.4: New USB device found, idVendor=148f, idProduct=7601, bcdDevice= 0.00
[   64.085922] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   64.086002] usb 2-1.4: Product: 802.11 n WLAN
[   64.091935] usb 2-1.4: Manufacturer: MediaTek
[   64.091936] usb 2-1.4: SerialNumber: 1.0
[   64.092246] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[   64.092518] systemd[1]: No virtualization found in DMI
[   64.092525] systemd[1]: No virtualization found in CPUID
[   64.092541] systemd[1]: Virtualization XEN found (/proc/xen exists)
[   64.092588] systemd[1]: Virtualization XEN, found /sys/hypervisor/properties/features with value 000028f0, XENFEAT_dom0 (indicating the 'hardware domain') is set.
[   64.092612] systemd[1]: Found VM virtualization none
[   64.092623] systemd[1]: Detected architecture x86-64.
[   64.092865] systemd[1]: Mounting cgroup to /sys/fs/cgroup/hugetlb of type cgroup with options hugetlb.
[   64.093001] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpu,cpuacct of type cgroup with options cpu,cpuacct.
[   64.093380] systemd[1]: Mounting cgroup to /sys/fs/cgroup/blkio of type cgroup with options blkio.
[   64.152541] systemd-bless-boot-generator[328]: Skipping generator, not an EFI boot.
[   64.155034] systemd-fstab-generator[331]: Parsing /etc/fstab
[   64.155163] systemd-fstab-generator[331]: Found entry what=/dev/disk/by-uuid/ee23fbab-8338-46f5-8e96-43827688f501 where=/ type=ext4 makefs=no nofail=no noauto=no
[   64.155802] systemd-getty-generator[332]: Automatically adding serial getty for /dev/hvc0.
[   64.155918] systemd-getty-generator[332]: Automatically adding serial getty for /dev/hvc0.
[   64.157698] systemd-fstab-generator[331]: Found entry what=/dev/disk/by-uuid/5ce8ab62-3de2-419e-8470-289073e2e55f where=none type=swap makefs=no nofail=no noauto=no
[   64.161584] systemd-gpt-auto-generator[334]: Failed to chase block device '/', ignoring: No such file or directory
[   64.161980] systemd-hibernate-resume-generator[336]: Not running in an initrd, quitting.
[   64.162831] systemd-gpt-auto-generator[334]: sda2: Root device /dev/sda.
[   64.163001] systemd-rc-local-generator[337]: /etc/rc.local does not exist, skipping.
[   64.163314] systemd-rc-local-generator[337]: /usr/sbin/halt.local does not exist, skipping.
[   64.165535] systemd-sysv-generator[340]: Native unit for lvm2.service already exists, skipping.
[   64.166420] systemd-sysv-generator[340]: Native unit for rsyslog.service already exists, skipping.
[   64.168812] systemd-sysv-generator[340]: Native unit for procps.service already exists, skipping.
[   64.169120] systemd-sysv-generator[340]: Cannot find unit exim4.service.
[   64.170049] systemd-sysv-generator[340]: Native unit for selinux-autorelabel.service already exists, skipping.
[   64.170132] systemd-sysv-generator[340]: Cannot find unit xen.service.
[   64.170763] systemd-sysv-generator[340]: Native unit for virtlogd.service already exists, skipping.
[   64.170827] systemd-sysv-generator[340]: Native unit for dnsmasq.service already exists, skipping.
[   64.171413] systemd-sysv-generator[340]: Native unit for libvirtd.service already exists, skipping.
[   64.171998] systemd-sysv-generator[340]: Native unit for dbus.service already exists, skipping.
[   64.178619] systemd-gpt-auto-generator[334]: No suitable partition table found, ignoring.
[   64.186008] printk: systemd-sysv-ge: 63 output lines suppressed due to ratelimiting
[   64.306624] systemd[355]: Operating on architecture: x86
[   64.306651] systemd[355]: Operating on architecture: x32
[   64.307519] systemd[355]: Operating on architecture: x86-64
[   64.307935] systemd[355]: Operating on architecture: x86
[   64.308208] systemd[355]: Operating on architecture: x32
[   64.308447] systemd[355]: Operating on architecture: x86-64
[   64.308666] systemd[355]: Operating on architecture: x86
[   64.308951] systemd[355]: Operating on architecture: x32
[   64.309165] systemd[355]: Operating on architecture: x86-64
[   64.309409] systemd[355]: Restricting namespace to: .
[   64.309441] systemd[355]: Operating on architecture: x86
[   64.309473] systemd[355]: Blocking cgroup.
[   64.309503] systemd[355]: Blocking ipc.
[   64.309535] systemd[355]: Blocking net.
[   64.309565] systemd[355]: Blocking mnt.
[   64.309594] systemd[355]: Blocking pid.
[   64.309624] systemd[355]: Blocking user.
[   64.309653] systemd[355]: Blocking uts.
[   64.309968] systemd[355]: Operating on architecture: x32
[   64.310002] systemd[355]: Blocking cgroup.
[   64.310031] systemd[355]: Blocking ipc.
[   64.310060] systemd[355]: Blocking net.
[   64.310089] systemd[355]: Blocking mnt.
[   64.310118] systemd[355]: Blocking pid.
[   64.310148] systemd[355]: Blocking user.
[   64.310177] systemd[355]: Blocking uts.
[   64.310521] systemd[355]: Operating on architecture: x86-64
[   64.310551] systemd[355]: Blocking cgroup.
[   64.310577] systemd[355]: Blocking ipc.
[   64.310603] systemd[355]: Blocking net.
[   64.310629] systemd[355]: Blocking mnt.
[   64.310654] systemd[355]: Blocking pid.
[   64.310680] systemd[355]: Blocking user.
[   64.310706] systemd[355]: Blocking uts.
[   64.311719] systemd[355]: Operating on architecture: x86
[   64.316625] systemd[355]: Operating on architecture: x32
[   64.318721] systemd[355]: Operating on architecture: x86-64
[   64.334793] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[   64.335791] systemd-journald[355]: Found cgroup2 on /sys/fs/cgroup/unified, unified hierarchy for systemd controller
[   64.339621] systemd-journald[355]: Journal effective settings seal=no compress=yes compress_threshold_bytes=512B
[   64.339726] systemd-journald[355]: Fixed min_use=1.0M max_use=8.8M max_size=1.1M min_size=512.0K keep_free=13.2M n_max_files=100
[   64.340220] systemd-journald[355]: Reserving 2047 entries in hash table.
[   64.340357] systemd-journald[355]: Vacuuming...
[   64.340413] systemd-journald[355]: Vacuuming done, freed 0B of archived journals from /run/log/journal/213fd1d09b77489086f4d95451358573.
[   64.340438] systemd-journald[355]: Flushing /dev/kmsg...
[   64.370979] device-mapper: uevent: version 1.0.3
[   64.371096] device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
[   64.406844] systemd[373]: Operating on architecture: x86
[   64.406870] systemd[373]: Operating on architecture: x32
[   64.407687] systemd[373]: Operating on architecture: x86-64
[   64.408036] systemd[373]: Operating on architecture: x86
[   64.408261] systemd[373]: Operating on architecture: x32
[   64.408466] systemd[373]: Operating on architecture: x86-64
[   64.408672] systemd[373]: Operating on architecture: x86
[   64.408878] systemd[373]: Operating on architecture: x32
[   64.409082] systemd[373]: Operating on architecture: x86-64
[   64.468282] systemd-journald[355]: Data hash table of /run/log/journal/213fd1d09b77489086f4d95451358573/system.journal has a fill level at 75.0 (1536 of 2047 items, 1159168 file size, 754 bytes per hash table item), suggesting rotation.
[   64.468292] systemd-journald[355]: /run/log/journal/213fd1d09b77489086f4d95451358573/system.journal: Journal header limits reached or header out-of-date, rotating.
[   64.468301] systemd-journald[355]: Rotating...
[   64.508261] audit: type=1400 audit(1611077488.080:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=397 comm="apparmor_parser"
[   64.508266] audit: type=1400 audit(1611077488.080:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=397 comm="apparmor_parser"
[   64.508773] audit: type=1400 audit(1611077488.080:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=395 comm="apparmor_parser"
[   64.508777] audit: type=1400 audit(1611077488.080:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=395 comm="apparmor_parser"
[   64.508779] audit: type=1400 audit(1611077488.080:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=395 comm="apparmor_parser"
[   64.509416] audit: type=1400 audit(1611077488.080:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/libvirtd" pid=396 comm="apparmor_parser"
[   64.509420] audit: type=1400 audit(1611077488.080:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/libvirtd//qemu_bridge_helper" pid=396 comm="apparmor_parser"
[   64.513887] audit: type=1400 audit(1611077488.084:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="virt-aa-helper" pid=394 comm="apparmor_parser"
[   64.546238] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
[   64.562445] ACPI: Power Button [PWRB]
[   64.562527] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[   64.562583] ACPI: Power Button [PWRF]
[   66.160945] hid: raw HID events driver (C) Jiri Kosina
[   66.170758] usbcore: registered new interface driver usbhid
[   66.170760] usbhid: USB HID core driver
[   66.173459] iTCO_vendor_support: vendor-support=0
[   66.215646] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   66.215729] sd 1:0:0:0: Attached scsi generic sg1 type 0
[   66.217338] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   66.217380] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[   66.217573] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   66.297832] input: PC Speaker as /devices/platform/pcspkr/input/input5
[   66.298691] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   66.298941] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
[   66.299175] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
[   66.299409] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   66.299712] platform regulatory.0: firmware: failed to load regulatory.db (-2)
[   66.299714] firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
[   66.299715] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[   66.299717] cfg80211: failed to load regulatory.db
[   66.502418] Adding 3905532k swap on /dev/sda1.  Priority:-2 extents:1 across:3905532k SSFS
[   66.518415] usb 2-1.4: reset high-speed USB device number 3 using ehci-pci
[   66.536427] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
[   66.536430] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[   66.536431] RAPL PMU: hw unit of domain package 2^-16 Joules
[   66.540846] cryptd: max_cpu_qlen set to 1000
[   66.555617] AVX version of gcm_enc/dec engaged.
[   66.555619] AES CTR mode by8 optimization enabled
[   66.629415] mt7601u 2-1.4:1.0: ASIC revision: 76010001 MAC revision: 76010500
[   66.632349] mt7601u 2-1.4:1.0: firmware: direct-loading firmware mt7601u.bin
[   66.632356] mt7601u 2-1.4:1.0: Firmware Version: 0.1.00 Build: 7640 Build time: 201302052146____
[   66.641770] xen:xen_evtchn: Event-channel device installed
[   66.660459] xen_acpi_processor: Uploading Xen processor PM info
[   67.020911] mt7601u 2-1.4:1.0: EEPROM ver:0d fae:00
[   67.248239] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   67.248971] usbcore: registered new interface driver mt7601u
[   68.457867] input:   USB Multimedia Keyboard  as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:099A:610C.0001/input/input6
[   68.519002] hid-generic 0003:099A:610C.0001: input,hidraw0: USB HID v1.00 Keyboard [  USB Multimedia Keyboard ] on usb-0000:00:1a.0-1.2/input0
[   68.519547] input:   USB Multimedia Keyboard  Consumer Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:099A:610C.0002/input/input7
[   68.559004] intel_rapl_common: Found RAPL domain package
[   68.559010] intel_rapl_common: Found RAPL domain core
[   68.569162] mt7601u 2-1.4:1.0 wlx20e0160064bd: renamed from wlan0
[   68.578532] input:   USB Multimedia Keyboard  System Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:099A:610C.0002/input/input8
[   68.578655] hid-generic 0003:099A:610C.0002: input,hidraw1: USB HID v1.00 Device [  USB Multimedia Keyboard ] on usb-0000:00:1a.0-1.2/input1

[-- Attachment #3: IMG_20210119_154753.jpg --]
[-- Type: image/jpeg, Size: 6829755 bytes --]

^ permalink raw reply	[relevance 3%]

* Xen VM call trace on fstrim: Error: discard_granularity is 0.
@ 2021-01-13 10:43  3% Arthur Borsboom
  0 siblings, 0 replies; 200+ results
From: Arthur Borsboom @ 2021-01-13 10:43 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 4231 bytes --]

When performing the following command in a Xen VM the call trace below is
generated.

    sudo fstrim -v /

Xen VM host: Xen 4.14.0
Xen Dom0: Linux 4.19.14
Xen DomX: Linux 5.10.6

The code in the kernel triggering this trace is the following.

        /* In case the discard granularity isn't set by buggy device driver
*/
        if (WARN_ON_ONCE(!q->limits.discard_granularity)) {
                char dev_name[BDEVNAME_SIZE];

                bdevname(bdev, dev_name);
                pr_err_ratelimited("%s: Error: discard_granularity is
0.\n", dev_name);
                return -EOPNOTSUPP;
        }

The call trace in the Xen VM.

[  145.295257] ------------[ cut here ]------------
[  145.295274] WARNING: CPU: 1 PID: 1230 at block/blk-lib.c:51
__blkdev_issue_discard+0x245/0x2a0
[  145.295277] Modules linked in: intel_rapl_msr intel_rapl_common
crct10dif_pclmul crc32_pclmul ghash_clmulni_intel aesni_intel crypto_simd
cryptd glue_helper rapl joydev bochs_drm drm_vram_helper drm_ttm_helper
mousedev xen_kbdfront ttm drm_kms_helper cec syscopyarea sysfillrect
sysimgblt xen_netfront fb_sys_fops intel_agp pcspkr intel_gtt mac_hid fuse
drm agpgart bpf_preload ip_tables x_tables ext4 crc32c_generic crc16
mbcache jbd2 ata_generic pata_acpi floppy xen_blkfront crc32c_intel
serio_raw ata_piix
[  145.295373] CPU: 1 PID: 1230 Comm: fstrim Not tainted 5.10.6-arch1-1 #1
[  145.295376] Hardware name: Xen HVM domU, BIOS 4.14.0 11/14/2020
[  145.295383] RIP: 0010:__blkdev_issue_discard+0x245/0x2a0
[  145.295390] Code: 48 8b 44 24 48 65 48 2b 04 25 28 00 00 00 75 6c 8b 44
24 1c 48 83 c4 50 5b 5d 41 5c 41 5d 41 5e 41 5f c3 0f 0b e9 f9 fe ff ff
<0f> 0b 48 8d 74 24 28 4c 89 ef e8 ac c2 00 00 48 c7 c6 e0 a1 86 b6
[  145.295393] RSP: 0018:ffffb283007b7b70 EFLAGS: 00010246
[  145.295399] RAX: 0000000000000000 RBX: 0000000000000000 RCX:
0000000000000c40
[  145.295402] RDX: 00000000000000c0 RSI: 0000000000012240 RDI:
ffff8e4980411380
[  145.295404] RBP: 00000000000000c0 R08: 0000000000000000 R09:
ffffb283007b7bf8
[  145.295407] R10: 0000000000000001 R11: 0000000000002000 R12:
0000000000012240
[  145.295410] R13: ffff8e4980411380 R14: ffff8e4983b14770 R15:
0000000000000000
[  145.295415] FS:  00007fd5189fc580(0000) GS:ffff8e498ad00000(0000)
knlGS:0000000000000000
[  145.295418] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  145.295421] CR2: 00005562e06d6448 CR3: 0000000108188001 CR4:
00000000003706e0
[  145.295432] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
0000000000000000
[  145.295435] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7:
0000000000000400
[  145.295437] Call Trace:
[  145.295452]  blkdev_issue_discard+0x86/0xe0
[  145.295510]  ext4_trim_fs+0x518/0x930 [ext4]
[  145.295521]  ? mntput_no_expire+0x4a/0x260
[  145.295568]  __ext4_ioctl+0xfee/0x1b10 [ext4]
[  145.295619]  ext4_ioctl+0x2a/0x40 [ext4]
[  145.295626]  __x64_sys_ioctl+0x83/0xb0
[  145.295634]  do_syscall_64+0x33/0x40
[  145.295640]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[  145.295646] RIP: 0033:0x7fd518b71f6b
[  145.295652] Code: 89 d8 49 8d 3c 1c 48 f7 d8 49 39 c4 72 b5 e8 1c ff ff
ff 85 c0 78 ba 4c 89 e0 5b 5d 41 5c c3 f3 0f 1e fa b8 10 00 00 00 0f 05
<48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d d5 ae 0c 00 f7 d8 64 89 01 48
[  145.295655] RSP: 002b:00007ffea645a438 EFLAGS: 00000246 ORIG_RAX:
0000000000000010
[  145.295660] RAX: ffffffffffffffda RBX: 00007ffea645a510 RCX:
00007fd518b71f6b
[  145.295662] RDX: 00007ffea645a450 RSI: 00000000c0185879 RDI:
0000000000000003
[  145.295665] RBP: 00005562e06d5440 R08: 00005562e06d5440 R09:
00007ffea645ae87
[  145.295668] R10: 0000000000000000 R11: 0000000000000246 R12:
0000000000000003
[  145.295670] R13: 00007ffea645ae86 R14: 0000000000000000 R15:
ffffffff00000000
[  145.295677] ---[ end trace 5fcef9628995f731 ]---
[  145.295682] xvda1: Error: discard_granularity is 0.
[  145.295703] xvda1: Error: discard_granularity is 0.

Please note that the VM is using a RAW partition as a disk on the VM host.

    <disk type='file' device='disk'>
      <driver name='qemu' type='raw'/>
      <source file='/dev/nvme0n1p2'/>
      <target dev='xvda' bus='xen'/>
    </disk>

Attachments: xen-dmesg, dom0-dmesg, domx-dmesg, domx-libvirt-xml are
attached.

-- 
Arthur Borsboom

[-- Attachment #1.2: Type: text/html, Size: 5233 bytes --]

[-- Attachment #2: xen-dmesg.txt --]
[-- Type: text/plain, Size: 9421 bytes --]

 __  __            _  _    _ _  _    ___                 _
 \ \/ /___ _ __   | || |  / | || |  / _ \  __ _ _ __ ___| |__
  \  // _ \ '_ \  | || |_ | | || |_| | | |/ _` | '__/ __| '_ \
  /  \  __/ | | | |__   _|| |__   _| |_| | (_| | | | (__| | | |
 /_/\_\___|_| |_|    |_|(_)_|  |_|(_)___/ \__,_|_|  \___|_| |_|

(XEN) Xen version 4.14.0 (arthur@localdomain) (gcc (GCC) 10.2.0) debug=n  Sat Nov 14 19:12:53 CET 2020
(XEN) Latest ChangeSet: 
(XEN) Bootloader: GRUB 2.04
(XEN) Command line: dom0_mem=4096M,max:4096M ucode=scan
(XEN) Xen image load base address: 0x82a00000
(XEN) Video information:
(XEN)  VGA is graphics mode 1024x768, 32 bpp
(XEN) Disc information:
(XEN)  Found 0 MBR signatures
(XEN)  Found 2 EDD information structures
(XEN) EFI RAM map:
(XEN)  [0000000000000000, 000000000005efff] (usable)
(XEN)  [000000000005f000, 000000000005ffff] (reserved)
(XEN)  [0000000000060000, 000000000009ffff] (usable)
(XEN)  [00000000000a0000, 00000000000fffff] (reserved)
(XEN)  [0000000000100000, 000000007baaafff] (usable)
(XEN)  [000000007baab000, 000000007baabfff] (ACPI NVS)
(XEN)  [000000007baac000, 000000007baacfff] (reserved)
(XEN)  [000000007baad000, 00000000836fafff] (usable)
(XEN)  [00000000836fb000, 000000008b887fff] (reserved)
(XEN)  [000000008b888000, 000000008bbabfff] (usable)
(XEN)  [000000008bbac000, 000000008bfbdfff] (ACPI NVS)
(XEN)  [000000008bfbe000, 000000008f6fefff] (reserved)
(XEN)  [000000008f6ff000, 000000008f6fffff] (usable)
(XEN)  [000000008f700000, 000000008fffffff] (reserved)
(XEN)  [00000000e0000000, 00000000efffffff] (reserved)
(XEN)  [00000000fe000000, 00000000fe010fff] (reserved)
(XEN)  [00000000fec00000, 00000000fec00fff] (reserved)
(XEN)  [00000000fee00000, 00000000fee00fff] (reserved)
(XEN)  [00000000ff000000, 00000000ffffffff] (reserved)
(XEN)  [0000000100000000, 000000106effffff] (usable)
(XEN) ACPI: RSDP 8BEBF000, 0024 (r2 ALASKA)
(XEN) ACPI: XSDT 8BEBF0D0, 011C (r1 ALASKA   A M I   1072009 AMI     10013)
(XEN) ACPI: FACP 8BEFD728, 0114 (r6 ALASKA   A M I   1072009 AMI     10013)
(XEN) ACPI: DSDT 8BEBF280, 3E4A4 (r2 ALASKA   A M I   1072009 INTL 20160527)
(XEN) ACPI: FACS 8BFBDF80, 0040
(XEN) ACPI: APIC 8BEFD840, 00F4 (r4 ALASKA   A M I   1072009 AMI     10013)
(XEN) ACPI: FPDT 8BEFD938, 0044 (r1 ALASKA   A M I   1072009 AMI     10013)
(XEN) ACPI: FIDT 8BEFD980, 009C (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) ACPI: MCFG 8BEFDA20, 003C (r1 ALASKA   A M I   1072009 MSFT       97)
(XEN) ACPI: SPMI 8BEFDA60, 0041 (r5 ALASKA   A M I         0 AMI.        0)
(XEN) ACPI: SSDT 8BEFDAA8, 0378 (r1 SataRe SataTabl     1000 INTL 20160527)
(XEN) ACPI: SSDT 8BEFDE20, 17D5 (r2 CpuRef  CpuSsdt     3000 INTL 20160527)
(XEN) ACPI: AAFT 8BEFF5F8, 007B (r1 ALASKA OEMAAFT   1072009 MSFT       97)
(XEN) ACPI: SSDT 8BEFF678, 31C7 (r2 SaSsdt  SaSsdt      3000 INTL 20160527)
(XEN) ACPI: SSDT 8BF02840, 2358 (r2 PegSsd  PegSsdt     1000 INTL 20160527)
(XEN) ACPI: HPET 8BF04B98, 0038 (r1 INTEL    A M I         2       1000013)
(XEN) ACPI: SSDT 8BF04BD0, 0F9E (r2 INTEL  Ther_Rvp     1000 INTL 20160527)
(XEN) ACPI: SSDT 8BF05B70, 08DA (r2  INTEL xh_mossb        0 INTL 20160527)
(XEN) ACPI: UEFI 8BF06450, 0048 (r1 ALASKA   A M I         2       1000013)
(XEN) ACPI: LPIT 8BF06498, 005C (r1 INTEL    A M I         2       1000013)
(XEN) ACPI: SSDT 8BF064F8, 27DE (r2 INTEL  PtidDevc     1000 INTL 20160527)
(XEN) ACPI: SSDT 8BF08CD8, 0FFE (r2 INTEL  TbtTypeC        0 INTL 20160527)
(XEN) ACPI: DBGP 8BF09CD8, 0034 (r1 ALASKA   A M I         2       1000013)
(XEN) ACPI: DBG2 8BF09D10, 0054 (r0 ALASKA   A M I         2       1000013)
(XEN) ACPI: SSDT 8BF09D68, 1931 (r2 ALASKA UsbCTabl     1000 INTL 20160527)
(XEN) ACPI: SSDT 8BF0B6A0, 0144 (r2 Intel  ADebTabl     1000 INTL 20160527)
(XEN) ACPI: DMAR 8BF0B7E8, 0070 (r1 INTEL  EDK2            2       1000013)
(XEN) ACPI: SPCR 8BF0B858, 0050 (r2  A M I  APTIO V  1072009 AMI.    5000D)
(XEN) ACPI: TPM2 8BF0B8A8, 0034 (r4 ALASKA   A M I         1 AMI         0)
(XEN) ACPI: SSDT 8BF0B8E0, 0D8F (r2  INTEL SpsNm           2 INTL 20160527)
(XEN) ACPI: WSMT 8BF0C670, 0028 (r1 ALASKA   A M I   1072009 AMI     10013)
(XEN) ACPI: EINJ 8BF0C698, 0130 (r1    AMI AMI.EINJ        0 AMI.        0)
(XEN) ACPI: ERST 8BF0C7C8, 0230 (r1  AMIER AMI.ERST        0 AMI.        0)
(XEN) ACPI: BERT 8BF0C9F8, 0030 (r1    AMI AMI.BERT        0 AMI.        0)
(XEN) ACPI: HEST 8BF0CA28, 00A8 (r1    AMI AMI.HEST        0 AMI.        0)
(XEN) System RAM: 65321MB (66889460kB)
(XEN) Domain heap initialised
(XEN) ACPI: Invalid sleep control/status register data: 0:0x8:0x3 0:0x8:0x3
(XEN) ACPI: 32/64X FACS address mismatch in FADT - 8bfbdf80/0000000000000000, using 32
(XEN) IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
(XEN) Enabling APIC mode:  Phys.  Using 1 I/O APICs
(XEN) Switched to APIC driver x2apic_cluster
(XEN) microcode: CPU0 updated from revision 0x96 to 0xde, date = 2020-05-25
(XEN) CPU0: TSC: ratio: 284 / 2
(XEN) CPU0: bus: 100MHz base: 3400MHz max: 4800MHz
(XEN) CPU0: 800..3400 MHz
(XEN) xstate: size: 0x440 and states: 0x1f
(XEN) Speculative mitigation facilities:
(XEN)   Hardware features: IBRS/IBPB STIBP L1D_FLUSH SSBD MD_CLEAR SRBDS_CTRL
(XEN)   Compiled-in support: INDIRECT_THUNK SHADOW_PAGING
(XEN)   Xen settings: BTI-Thunk JMP, SPEC_CTRL: IBRS+ SSBD-, Other: SRB_LOCK+ IBPB L1D_FLUSH VERW BRANCH_HARDEN
(XEN)   L1TF: believed vulnerable, maxphysaddr L1D 46, CPUID 39, Safe address 8000000000
(XEN)   Support for HVM VMs: MSR_SPEC_CTRL RSB EAGER_FPU MD_CLEAR
(XEN)   Support for PV VMs: MSR_SPEC_CTRL RSB EAGER_FPU MD_CLEAR
(XEN)   XPTI (64-bit PV only): Dom0 enabled, DomU enabled (with PCID)
(XEN)   PV L1TF shadowing: Dom0 disabled, DomU enabled
(XEN) Using scheduler: SMP Credit Scheduler rev2 (credit2)
(XEN) Initializing Credit2 scheduler
(XEN) Platform timer is 24.000MHz HPET
(XEN) Detected 3408.138 MHz processor.
(XEN) Intel VT-d iommu 0 supported page sizes: 4kB, 2MB, 1GB
(XEN) Intel VT-d Snoop Control enabled.
(XEN) Intel VT-d Dom0 DMA Passthrough not enabled.
(XEN) Intel VT-d Queued Invalidation enabled.
(XEN) Intel VT-d Interrupt Remapping enabled.
(XEN) Intel VT-d Posted Interrupt not enabled.
(XEN) Intel VT-d Shared EPT tables enabled.
(XEN) I/O virtualisation enabled
(XEN)  - Dom0 mode: Relaxed
(XEN) Interrupt remapping enabled
(XEN) Enabled directed EOI with ioapic_ack_old on!
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using old ACK method
(XEN) Allocated console ring of 32 KiB.
(XEN) VMX: Supported advanced features:
(XEN)  - APIC MMIO access virtualisation
(XEN)  - APIC TPR shadow
(XEN)  - Extended Page Tables (EPT)
(XEN)  - Virtual-Processor Identifiers (VPID)
(XEN)  - Virtual NMI
(XEN)  - MSR direct-access bitmap
(XEN)  - Unrestricted Guest
(XEN)  - VMCS shadowing
(XEN)  - VM Functions
(XEN)  - Virtualisation Exceptions
(XEN)  - Page Modification Logging
(XEN) HVM: ASIDs enabled.
(XEN) VMX: Disabling executable EPT superpages due to CVE-2018-12207
(XEN) HVM: VMX enabled
(XEN) HVM: Hardware Assisted Paging (HAP) detected
(XEN) HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) microcode: CPU2 updated from revision 0x96 to 0xde, date = 2020-05-25
(XEN) microcode: CPU4 updated from revision 0x96 to 0xde, date = 2020-05-25
(XEN) microcode: CPU6 updated from revision 0x96 to 0xde, date = 2020-05-25
(XEN) microcode: CPU8 updated from revision 0x96 to 0xde, date = 2020-05-25
(XEN) microcode: CPU10 updated from revision 0x96 to 0xde, date = 2020-05-25
(XEN) Brought up 12 CPUs
(XEN) Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) Multiple initrd candidates, picking module #1
(XEN) Dom0 has maximum 952 PIRQs
(XEN)  Xen  kernel: 64-bit, lsb, compat32
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x3800000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000001038000000->000000103c000000 (1027222 pages to be allocated)
(XEN)  Init. ramdisk: 000000106d921000->000000106ec8b000
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff83800000
(XEN)  Init. ramdisk: 0000000000000000->0000000000000000
(XEN)  Phys-Mach map: 0000008000000000->0000008000800000
(XEN)  Start info:    ffffffff83800000->ffffffff838004b8
(XEN)  Xenstore ring: 0000000000000000->0000000000000000
(XEN)  Console ring:  0000000000000000->0000000000000000
(XEN)  Page tables:   ffffffff83801000->ffffffff83822000
(XEN)  Boot stack:    ffffffff83822000->ffffffff83823000
(XEN)  TOTAL:         ffffffff80000000->ffffffff83c00000
(XEN)  ENTRY ADDRESS: ffffffff82da7180
(XEN) Dom0 has maximum 12 VCPUs
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Scrubbing Free RAM in background
(XEN) Std. Loglevel: Errors and warnings
(XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings)
(XEN) ***************************************************
(XEN) Booted on L1TF-vulnerable hardware with SMT/Hyperthreading
(XEN) enabled.  Please assess your configuration and choose an
(XEN) explicit 'smt=<bool>' setting.  See XSA-273.
(XEN) ***************************************************
(XEN) Booted on MLPDS/MFBDS-vulnerable hardware with SMT/Hyperthreading
(XEN) enabled.  Mitigations will not be fully effective.  Please
(XEN) choose an explicit smt=<bool> setting.  See XSA-297.
(XEN) ***************************************************
(XEN) 3... 2... 1... 
(XEN) Xen is relinquishing VGA console.
(XEN) *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) Freed 556kB init memory

[-- Attachment #3: dom0-dmesg.txt --]
[-- Type: text/plain, Size: 113846 bytes --]

[    2.078004] HEST: Table parsing has been initialized.
[    2.078007] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.079734] ACPI: Enabled 7 GPEs in block 00 to 7F
[    2.096677] ACPI: Power Resource [USBC] (on)
[    2.106650] ACPI: Power Resource [V0PR] (on)
[    2.107171] ACPI: Power Resource [V1PR] (on)
[    2.107704] ACPI: Power Resource [V2PR] (on)
[    2.114953] ACPI: Power Resource [WRST] (on)
[    2.120963] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.121619] ACPI: Power Resource [FN00] (off)
[    2.121722] ACPI: Power Resource [FN01] (off)
[    2.121819] ACPI: Power Resource [FN02] (off)
[    2.121916] ACPI: Power Resource [FN03] (off)
[    2.122011] ACPI: Power Resource [FN04] (off)
[    2.122671] ACPI: Power Resource [PIN] (off)
[    2.123528] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    2.123534] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.129487] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.130995] PCI host bridge to bus 0000:00
[    2.130997] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    2.130998] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    2.130999] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    2.131000] pci_bus 0000:00: root bus resource [mem 0x90000000-0xdfffffff window]
[    2.131001] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    2.131001] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[    2.131002] pci_bus 0000:00: root bus resource [bus 00-fe]
[    2.131034] pci 0000:00:00.0: [8086:3eca] type 00 class 0x060000
[    2.131917] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
[    2.132140] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    2.132617] pci 0000:00:01.1: [8086:1905] type 01 class 0x060400
[    2.132839] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    2.134916] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
[    2.134958] pci 0000:00:08.0: reg 0x10: [mem 0x400091a000-0x400091afff 64bit]
[    2.137504] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000
[    2.137598] pci 0000:00:12.0: reg 0x10: [mem 0x4000919000-0x4000919fff 64bit]
[    2.138525] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330
[    2.138574] pci 0000:00:14.0: reg 0x10: [mem 0x4000900000-0x400090ffff 64bit]
[    2.138783] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    2.139625] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000
[    2.139672] pci 0000:00:14.2: reg 0x10: [mem 0x4000910000-0x4000911fff 64bit]
[    2.139702] pci 0000:00:14.2: reg 0x18: [mem 0x4000918000-0x4000918fff 64bit]
[    2.140646] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000
[    2.141214] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    2.144190] pci 0000:00:15.1: [8086:a369] type 00 class 0x0c8000
[    2.144770] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    2.147663] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000
[    2.147715] pci 0000:00:16.0: reg 0x10: [mem 0x4000915000-0x4000915fff 64bit]
[    2.147918] pci 0000:00:16.0: PME# supported from D3hot
[    2.148326] pci 0000:00:16.4: [8086:a364] type 00 class 0x078000
[    2.148378] pci 0000:00:16.4: reg 0x10: [mem 0x4000914000-0x4000914fff 64bit]
[    2.148578] pci 0000:00:16.4: PME# supported from D3hot
[    2.149028] pci 0000:00:17.0: [8086:a352] type 00 class 0x010601
[    2.149068] pci 0000:00:17.0: reg 0x10: [mem 0x91800000-0x91801fff]
[    2.149090] pci 0000:00:17.0: reg 0x14: [mem 0x91803000-0x918030ff]
[    2.149112] pci 0000:00:17.0: reg 0x18: [io  0x4050-0x4057]
[    2.149134] pci 0000:00:17.0: reg 0x1c: [io  0x4040-0x4043]
[    2.149156] pci 0000:00:17.0: reg 0x20: [io  0x4020-0x403f]
[    2.149178] pci 0000:00:17.0: reg 0x24: [mem 0x91802000-0x918027ff]
[    2.149303] pci 0000:00:17.0: PME# supported from D3hot
[    2.150570] pci 0000:00:1b.0: [8086:a32c] type 01 class 0x060400
[    2.150827] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    2.150891] pci 0000:00:1b.0: PTM enabled (root), 4ns granularity
[    2.151678] pci 0000:00:1c.0: [8086:a338] type 01 class 0x060400
[    2.151936] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    2.151982] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[    2.152766] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400
[    2.153031] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    2.153080] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    2.154235] pci 0000:00:1e.0: [8086:a328] type 00 class 0x078000
[    2.154809] pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    2.157695] pci 0000:00:1f.0: [8086:a30a] type 00 class 0x060100
[    2.158264] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500
[    2.158445] pci 0000:00:1f.4: reg 0x10: [mem 0x4000912000-0x40009120ff 64bit]
[    2.158668] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    2.159148] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000
[    2.159189] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    2.159826] pci 0000:01:00.0: [15b7:5002] type 00 class 0x010802
[    2.159876] pci 0000:01:00.0: reg 0x10: [mem 0x91700000-0x91703fff 64bit]
[    2.159950] pci 0000:01:00.0: reg 0x20: [mem 0x91704000-0x917040ff 64bit]
[    2.167092] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.167105] pci 0000:00:01.0:   bridge window [mem 0x91700000-0x917fffff]
[    2.167245] pci 0000:02:00.0: [15b7:5002] type 00 class 0x010802
[    2.167296] pci 0000:02:00.0: reg 0x10: [mem 0x91600000-0x91603fff 64bit]
[    2.167369] pci 0000:02:00.0: reg 0x20: [mem 0x91604000-0x916040ff 64bit]
[    2.174490] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.174502] pci 0000:00:01.1:   bridge window [mem 0x91600000-0x916fffff]
[    2.174706] pci 0000:03:00.0: [8086:1563] type 00 class 0x020000
[    2.174765] pci 0000:03:00.0: reg 0x10: [mem 0x4000400000-0x40007fffff 64bit pref]
[    2.174850] pci 0000:03:00.0: reg 0x20: [mem 0x4000804000-0x4000807fff 64bit pref]
[    2.174874] pci 0000:03:00.0: reg 0x30: [mem 0x91180000-0x911fffff pref]
[    2.175082] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    2.175167] pci 0000:03:00.0: reg 0x184: [mem 0x91500000-0x91503fff 64bit]
[    2.175168] pci 0000:03:00.0: VF(n) BAR0 space: [mem 0x91500000-0x915fffff 64bit] (contains BAR0 for 64 VFs)
[    2.175207] pci 0000:03:00.0: reg 0x190: [mem 0x91400000-0x91403fff 64bit]
[    2.175208] pci 0000:03:00.0: VF(n) BAR3 space: [mem 0x91400000-0x914fffff 64bit] (contains BAR3 for 64 VFs)
[    2.175710] pci 0000:03:00.1: [8086:1563] type 00 class 0x020000
[    2.175768] pci 0000:03:00.1: reg 0x10: [mem 0x4000000000-0x40003fffff 64bit pref]
[    2.175853] pci 0000:03:00.1: reg 0x20: [mem 0x4000800000-0x4000803fff 64bit pref]
[    2.175877] pci 0000:03:00.1: reg 0x30: [mem 0x91100000-0x9117ffff pref]
[    2.176092] pci 0000:03:00.1: PME# supported from D0 D3hot D3cold
[    2.176165] pci 0000:03:00.1: reg 0x184: [mem 0x91300000-0x91303fff 64bit]
[    2.176166] pci 0000:03:00.1: VF(n) BAR0 space: [mem 0x91300000-0x913fffff 64bit] (contains BAR0 for 64 VFs)
[    2.176205] pci 0000:03:00.1: reg 0x190: [mem 0x91200000-0x91203fff 64bit]
[    2.176206] pci 0000:03:00.1: VF(n) BAR3 space: [mem 0x91200000-0x912fffff 64bit] (contains BAR3 for 64 VFs)
[    2.183421] pci 0000:00:1b.0: PCI bridge to [bus 03-04]
[    2.183438] pci 0000:00:1b.0:   bridge window [mem 0x91100000-0x915fffff]
[    2.183450] pci 0000:00:1b.0:   bridge window [mem 0x4000000000-0x40008fffff 64bit pref]
[    2.183629] pci 0000:05:00.0: [1a03:1150] type 01 class 0x060400
[    2.183783] pci 0000:05:00.0: enabling Extended Tags
[    2.183936] pci 0000:05:00.0: supports D1 D2
[    2.183936] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.190894] pci 0000:00:1c.0: PCI bridge to [bus 05-06]
[    2.190904] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    2.190911] pci 0000:00:1c.0:   bridge window [mem 0x90000000-0x910fffff]
[    2.191023] pci_bus 0000:06: extended config space not accessible
[    2.191063] pci 0000:06:00.0: [1a03:2000] type 00 class 0x030000
[    2.191112] pci 0000:06:00.0: reg 0x10: [mem 0x90000000-0x90ffffff]
[    2.191139] pci 0000:06:00.0: reg 0x14: [mem 0x91000000-0x9101ffff]
[    2.191165] pci 0000:06:00.0: reg 0x18: [io  0x3000-0x307f]
[    2.191292] pci 0000:06:00.0: BAR 0: assigned to efifb
[    2.191390] pci 0000:06:00.0: supports D1 D2
[    2.191391] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.198469] pci 0000:05:00.0: PCI bridge to [bus 06]
[    2.198487] pci 0000:05:00.0:   bridge window [io  0x3000-0x3fff]
[    2.198494] pci 0000:05:00.0:   bridge window [mem 0x90000000-0x910fffff]
[    2.205439] pci 0000:00:1d.0: PCI bridge to [bus 07]
[    2.206274] xen: registering gsi 13 triggering 1 polarity 0
[    2.206952] xen: registering gsi 14 triggering 0 polarity 1
[    2.208098] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    2.208201] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *1
[    2.208304] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    2.208405] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    2.208506] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    2.208607] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    2.208709] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    2.208811] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    2.209759] xen:balloon: Initialising balloon driver
[    2.209811] iommu: Default domain type: Translated 
[    2.209831] pci 0000:06:00.0: vgaarb: setting as boot VGA device
[    2.209831] pci 0000:06:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    2.209831] pci 0000:06:00.0: vgaarb: bridge control possible
[    2.209831] vgaarb: loaded
[    2.209831] SCSI subsystem initialized
[    2.209831] libata version 3.00 loaded.
[    2.209831] ACPI: bus type USB registered
[    2.209831] usbcore: registered new interface driver usbfs
[    2.209831] usbcore: registered new interface driver hub
[    2.209831] usbcore: registered new device driver usb
[    2.209831] pps_core: LinuxPPS API ver. 1 registered
[    2.209831] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.209831] PTP clock support registered
[    2.209831] EDAC MC: Ver: 3.0.0
[    2.209831] Registered efivars operations
[    2.210961] NetLabel: Initializing
[    2.210962] NetLabel:  domain hash size = 128
[    2.210962] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    2.210971] NetLabel:  unlabeled traffic allowed by default
[    2.210973] PCI: Using ACPI for IRQ routing
[    2.349808] PCI: pci_cache_line_size set to 64 bytes
[    2.350201] e820: reserve RAM buffer [mem 0x0005f000-0x0005ffff]
[    2.350203] e820: reserve RAM buffer [mem 0x7baab000-0x7bffffff]
[    2.350203] e820: reserve RAM buffer [mem 0x836fb000-0x83ffffff]
[    2.350204] e820: reserve RAM buffer [mem 0x8bbac000-0x8bffffff]
[    2.350204] e820: reserve RAM buffer [mem 0x8f700000-0x8fffffff]
[    2.350205] e820: reserve RAM buffer [mem 0x17c643000-0x17fffffff]
[    2.350214] clocksource: Switched to clocksource tsc-early
[    2.356451] VFS: Disk quotas dquot_6.6.0
[    2.356462] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.356479] hugetlbfs: disabling because there are no supported hugepage sizes
[    2.356498] pnp: PnP ACPI init
[    2.356920] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.357504] xen: registering gsi 4 triggering 1 polarity 0
[    2.357568] pnp 00:01: [dma 0 disabled]
[    2.357616] pnp 00:01: Plug and Play ACPI device, IDs PNP0501 (active)
[    2.358202] xen: registering gsi 3 triggering 1 polarity 0
[    2.358251] pnp 00:02: [dma 0 disabled]
[    2.358278] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    2.358404] system 00:03: [io  0x0680-0x069f] has been reserved
[    2.358405] system 00:03: [io  0x164e-0x164f] has been reserved
[    2.358408] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.358414] xen: registering gsi 8 triggering 1 polarity 0
[    2.358464] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    2.358572] system 00:05: [io  0x1854-0x1857] has been reserved
[    2.358575] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    2.358836] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
[    2.358837] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
[    2.358838] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
[    2.358839] system 00:06: [mem 0xe0000000-0xefffffff] has been reserved
[    2.358840] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
[    2.358841] system 00:06: [mem 0xfed90000-0xfed93fff] could not be reserved
[    2.358842] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
[    2.358843] system 00:06: [mem 0xfee00000-0xfeefffff] has been reserved
[    2.358846] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.359122] system 00:07: [io  0x1800-0x18fe] could not be reserved
[    2.359124] system 00:07: [mem 0xfd000000-0xfd69ffff] has been reserved
[    2.359125] system 00:07: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[    2.359126] system 00:07: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    2.359127] system 00:07: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    2.359127] system 00:07: [mem 0xfe200000-0xfe7fffff] has been reserved
[    2.359128] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    2.359131] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.359503] system 00:08: [io  0x2000-0x20fe] has been reserved
[    2.359505] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.360825] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.362213] pnp: PnP ACPI: found 10 devices
[    2.375896] PM-Timer failed consistency check  (0xffffff) - aborting.
[    2.375944] NET: Registered protocol family 2
[    2.376074] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    2.376090] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    2.376136] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    2.376162] TCP: Hash tables configured (established 32768 bind 32768)
[    2.376197] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[    2.376213] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    2.376222] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    2.376258] NET: Registered protocol family 1
[    2.376261] NET: Registered protocol family 44
[    2.376272] pci 0000:00:15.0: BAR 0: assigned [mem 0x4000913000-0x4000913fff 64bit]
[    2.376544] pci 0000:00:15.1: BAR 0: assigned [mem 0x4000916000-0x4000916fff 64bit]
[    2.376812] pci 0000:00:1e.0: BAR 0: assigned [mem 0x4000917000-0x4000917fff 64bit]
[    2.377080] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.377089] pci 0000:00:01.0:   bridge window [mem 0x91700000-0x917fffff]
[    2.377106] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.377114] pci 0000:00:01.1:   bridge window [mem 0x91600000-0x916fffff]
[    2.377131] pci 0000:00:1b.0: PCI bridge to [bus 03-04]
[    2.377145] pci 0000:00:1b.0:   bridge window [mem 0x91100000-0x915fffff]
[    2.377152] pci 0000:00:1b.0:   bridge window [mem 0x4000000000-0x40008fffff 64bit pref]
[    2.377164] pci 0000:05:00.0: PCI bridge to [bus 06]
[    2.377168] pci 0000:05:00.0:   bridge window [io  0x3000-0x3fff]
[    2.377179] pci 0000:05:00.0:   bridge window [mem 0x90000000-0x910fffff]
[    2.377200] pci 0000:00:1c.0: PCI bridge to [bus 05-06]
[    2.377204] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    2.377214] pci 0000:00:1c.0:   bridge window [mem 0x90000000-0x910fffff]
[    2.377232] pci 0000:00:1d.0: PCI bridge to [bus 07]
[    2.377260] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    2.377261] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    2.377262] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    2.377262] pci_bus 0000:00: resource 7 [mem 0x90000000-0xdfffffff window]
[    2.377263] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[    2.377264] pci_bus 0000:00: resource 9 [mem 0xfc800000-0xfe7fffff window]
[    2.377265] pci_bus 0000:01: resource 1 [mem 0x91700000-0x917fffff]
[    2.377265] pci_bus 0000:02: resource 1 [mem 0x91600000-0x916fffff]
[    2.377266] pci_bus 0000:03: resource 1 [mem 0x91100000-0x915fffff]
[    2.377267] pci_bus 0000:03: resource 2 [mem 0x4000000000-0x40008fffff 64bit pref]
[    2.377268] pci_bus 0000:05: resource 0 [io  0x3000-0x3fff]
[    2.377268] pci_bus 0000:05: resource 1 [mem 0x90000000-0x910fffff]
[    2.377269] pci_bus 0000:06: resource 0 [io  0x3000-0x3fff]
[    2.377270] pci_bus 0000:06: resource 1 [mem 0x90000000-0x910fffff]
[    2.377753] pci 0000:06:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    2.377758] PCI: CLS 64 bytes, default 64
[    2.377783] Trying to unpack rootfs image as initramfs...
[    2.385905] Freeing initrd memory: 19880K
[    2.385949] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31205602f35, max_idle_ns: 440795243820 ns
[    2.386040] clocksource: Switched to clocksource tsc
[    2.386095] check: Scanning for low memory corruption every 60 seconds
[    2.386376] Initialise system trusted keyrings
[    2.386389] Key type blacklist registered
[    2.386450] workingset: timestamp_bits=41 max_order=20 bucket_order=0
[    2.387259] zbud: loaded
[    2.394328] Key type asymmetric registered
[    2.394329] Asymmetric key parser 'x509' registered
[    2.394353] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    2.394484] io scheduler mq-deadline registered
[    2.394485] io scheduler kyber registered
[    2.394514] io scheduler bfq registered
[    2.397446] xen: registering gsi 16 triggering 0 polarity 1
[    2.397460] xen: --> pirq=16 -> irq=16 (gsi=16)
[    2.397618] pcieport 0000:00:01.0: PME: Signaling with IRQ 206
[    2.397728] pcieport 0000:00:01.0: AER: enabled with IRQ 206
[    2.397963] xen: registering gsi 16 triggering 0 polarity 1
[    2.397967] Already setup the GSI :16
[    2.398071] pcieport 0000:00:01.1: PME: Signaling with IRQ 207
[    2.398170] pcieport 0000:00:01.1: AER: enabled with IRQ 207
[    2.398371] xen: registering gsi 16 triggering 0 polarity 1
[    2.398374] Already setup the GSI :16
[    2.398509] pcieport 0000:00:1b.0: PME: Signaling with IRQ 208
[    2.398617] pcieport 0000:00:1b.0: AER: enabled with IRQ 208
[    2.398690] pcieport 0000:00:1b.0: DPC: enabled with IRQ 208
[    2.398691] pcieport 0000:00:1b.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[    2.398909] xen: registering gsi 16 triggering 0 polarity 1
[    2.398912] Already setup the GSI :16
[    2.399037] pcieport 0000:00:1c.0: PME: Signaling with IRQ 209
[    2.399142] pcieport 0000:00:1c.0: AER: enabled with IRQ 209
[    2.399212] pcieport 0000:00:1c.0: DPC: enabled with IRQ 209
[    2.399213] pcieport 0000:00:1c.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[    2.399428] xen: registering gsi 16 triggering 0 polarity 1
[    2.399431] Already setup the GSI :16
[    2.399557] pcieport 0000:00:1d.0: PME: Signaling with IRQ 210
[    2.399661] pcieport 0000:00:1d.0: AER: enabled with IRQ 210
[    2.399731] pcieport 0000:00:1d.0: DPC: enabled with IRQ 210
[    2.399732] pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[    2.399910] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.399974] efifb: probing for efifb
[    2.400699] efifb: No BGRT, not showing boot graphics
[    2.400700] efifb: framebuffer at 0x90000000, using 3072k, total 3072k
[    2.400701] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    2.400701] efifb: scrolling: redraw
[    2.400702] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.400765] fbcon: Deferring console take-over
[    2.400766] fb0: EFI VGA frame buffer device
[    2.400771] intel_idle: MWAIT substates: 0x11142120
[    2.400772] intel_idle: v0.5.1 model 0x9E
[    2.400775] intel_idle: intel_idle yielding to none
[    2.400842] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[    2.400867] ACPI: Sleep Button [SLPB]
[    2.400889] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    2.400901] ACPI: Power Button [PWRB]
[    2.400921] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    2.400974] ACPI: Power Button [PWRF]
[    2.401554] Monitor-Mwait will be used to enter C-1 state
[    2.401580] Monitor-Mwait will be used to enter C-2 state
[    2.401602] Monitor-Mwait will be used to enter C-3 state
[    2.401615] ACPI: \_SB_.PR00: Found 3 idle states
[    2.401883] ACPI: \_SB_.PR01: Found 3 idle states
[    2.402145] ACPI: \_SB_.PR02: Found 3 idle states
[    2.402346] ACPI: \_SB_.PR03: Found 3 idle states
[    2.402602] ACPI: \_SB_.PR04: Found 3 idle states
[    2.402878] ACPI: \_SB_.PR05: Found 3 idle states
[    2.403143] ACPI: \_SB_.PR06: Found 3 idle states
[    2.403344] ACPI: \_SB_.PR07: Found 3 idle states
[    2.403582] ACPI: \_SB_.PR08: Found 3 idle states
[    2.403822] ACPI: \_SB_.PR09: Found 3 idle states
[    2.404020] ACPI: \_SB_.PR10: Found 3 idle states
[    2.404271] ACPI: \_SB_.PR11: Found 3 idle states
[    2.405029] thermal LNXTHERM:00: registered as thermal_zone0
[    2.405030] ACPI: Thermal Zone [TZ00] (28 C)
[    2.405112] ERST: Error Record Serialization Table (ERST) support is initialized.
[    2.405114] pstore: Registered erst as persistent store backend
[    2.405377] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.405602] xen_mcelog: /dev/mcelog registered by Xen
[    2.405982] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.406796] 00:01: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.409152] 00:02: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    2.411065] hpet_acpi_add: no address or irqs in _CRS
[    2.411087] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    2.411088] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[    2.412483] nvme nvme0: pci function 0000:01:00.0
[    2.412558] nvme nvme1: pci function 0000:02:00.0
[    2.412566] xen: registering gsi 16 triggering 0 polarity 1
[    2.412569] Already setup the GSI :16
[    2.412577] ahci 0000:00:17.0: version 3.0
[    2.412690] xen: registering gsi 16 triggering 0 polarity 1
[    2.412693] Already setup the GSI :16
[    2.412730] xen: registering gsi 17 triggering 0 polarity 1
[    2.412743] xen: --> pirq=17 -> irq=17 (gsi=17)
[    2.412933] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    2.412935] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst 
[    2.422070] nvme nvme0: 12/0/0 default/read/poll queues
[    2.428260]  nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15
[    2.447174] nvme nvme1: 12/0/0 default/read/poll queues
[    2.453626]  nvme1n1: p1 p2 p3 p4
[    2.461618] scsi host0: ahci
[    2.461919] scsi host1: ahci
[    2.462141] scsi host2: ahci
[    2.462321] scsi host3: ahci
[    2.462466] scsi host4: ahci
[    2.462604] scsi host5: ahci
[    2.462633] ata1: SATA max UDMA/133 abar m2048@0x91802000 port 0x91802100 irq 214
[    2.462634] ata2: SATA max UDMA/133 abar m2048@0x91802000 port 0x91802180 irq 214
[    2.462635] ata3: SATA max UDMA/133 abar m2048@0x91802000 port 0x91802200 irq 214
[    2.462637] ata4: SATA max UDMA/133 abar m2048@0x91802000 port 0x91802280 irq 214
[    2.462638] ata5: SATA max UDMA/133 abar m2048@0x91802000 port 0x91802300 irq 214
[    2.462639] ata6: SATA max UDMA/133 abar m2048@0x91802000 port 0x91802380 irq 214
[    2.462679] usbcore: registered new interface driver usbserial_generic
[    2.462682] usbserial: USB Serial support registered for generic
[    2.462716] rtc_cmos 00:04: RTC can wake from S4
[    2.463596] rtc_cmos 00:04: registered as rtc0
[    2.463813] rtc_cmos 00:04: setting system clock to 2021-01-05T23:05:08 UTC (1609887908)
[    2.463824] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram
[    2.463869] intel_pstate: CPU model not supported
[    2.464190] ledtrig-cpu: registered to indicate activity on CPUs
[    2.464237] intel_pmc_core INT33A1:00:  initialized
[    2.464349] drop_monitor: Initializing network drop monitor service
[    2.464460] NET: Registered protocol family 10
[    2.475548] Segment Routing with IPv6
[    2.475548] RPL Segment Routing with IPv6
[    2.475561] NET: Registered protocol family 17
[    2.476192] IPI shorthand broadcast: enabled
[    2.476197] sched_clock: Marking stable (2449184316, 26976418)->(2527828732, -51667998)
[    2.476489] registered taskstats version 1
[    2.476495] Loading compiled-in X.509 certificates
[    2.482215] Loaded X.509 cert 'Build time autogenerated kernel key: 82b5889aaa59dbf702af08992c2866a5527a56f2'
[    2.482432] zswap: loaded using pool lz4/z3fold
[    2.482808] Key type ._fscrypt registered
[    2.482808] Key type .fscrypt registered
[    2.482809] Key type fscrypt-provisioning registered
[    2.483243] pstore: Using crash dump compression: zstd
[    2.484942] PM:   Magic number: 5:298:99
[    2.485112] RAS: Correctable Errors collector initialized.
[    2.771382] ata2: SATA link down (SStatus 0 SControl 300)
[    2.771397] ata6: SATA link down (SStatus 0 SControl 300)
[    2.771411] ata5: SATA link down (SStatus 0 SControl 300)
[    2.771425] ata3: SATA link down (SStatus 0 SControl 300)
[    2.771439] ata4: SATA link down (SStatus 0 SControl 300)
[    2.771451] ata1: SATA link down (SStatus 0 SControl 300)
[    2.774488] Freeing unused decrypted memory: 2040K
[    2.775085] Freeing unused kernel image (initmem) memory: 1660K
[    2.775086] Write protecting the kernel read-only data: 24576k
[    2.786389] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    2.786564] Freeing unused kernel image (rodata/data gap) memory: 240K
[    3.141919] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    3.141922] Run /init as init process
[    3.141923]   with arguments:
[    3.141924]     /init
[    3.141924]   with environment:
[    3.141925]     HOME=/
[    3.141925]     TERM=linux
[    3.221222] fbcon: Taking over console
[    3.221283] Console: switching to colour frame buffer device 128x48
[    3.373224] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.373232] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.374355] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[    3.374375] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.374815] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.09
[    3.374816] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.374817] usb usb1: Product: xHCI Host Controller
[    3.374818] usb usb1: Manufacturer: Linux 5.9.14-arch1-1 xhci-hcd
[    3.374819] usb usb1: SerialNumber: 0000:00:14.0
[    3.374978] hub 1-0:1.0: USB hub found
[    3.375002] hub 1-0:1.0: 16 ports detected
[    3.377476] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.377500] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.377507] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    3.377750] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.09
[    3.377752] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.377754] usb usb2: Product: xHCI Host Controller
[    3.377755] usb usb2: Manufacturer: Linux 5.9.14-arch1-1 xhci-hcd
[    3.377756] usb usb2: SerialNumber: 0000:00:14.0
[    3.377964] hub 2-0:1.0: USB hub found
[    3.377982] hub 2-0:1.0: 6 ports detected
[    3.392402] random: crng init done
[    3.460606] EXT4-fs (nvme1n1p2): mounted filesystem with ordered data mode. Opts: (null)
[    3.561140] systemd[1]: systemd 247.2-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    3.561286] systemd[1]: Detected architecture x86-64.
[    3.603869] systemd[1]: Set hostname to <xen1>.
[    3.704223] usb 1-8: new high-speed USB device number 2 using xhci_hcd
[    3.734298] systemd[1]: /usr/lib/systemd/system/virtlogd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlogd-sock → /run/libvirt/virtlogd-sock; please update the unit file accordingly.
[    3.734934] systemd[1]: /usr/lib/systemd/system/virtlogd-admin.socket:8: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlogd-admin-sock → /run/libvirt/virtlogd-admin-sock; please update the unit file accordingly.
[    3.751152] systemd[1]: /usr/lib/systemd/system/libvirtd-admin.socket:11: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/libvirt-admin-sock → /run/libvirt/libvirt-admin-sock; please update the unit file accordingly.
[    3.751473] systemd[1]: /usr/lib/systemd/system/virtlockd.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlockd-sock → /run/libvirt/virtlockd-sock; please update the unit file accordingly.
[    3.752084] systemd[1]: /usr/lib/systemd/system/virtlockd-admin.socket:8: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/virtlockd-admin-sock → /run/libvirt/virtlockd-admin-sock; please update the unit file accordingly.
[    3.753073] systemd[1]: /usr/lib/systemd/system/libvirtd.socket:9: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/libvirt-sock → /run/libvirt/libvirt-sock; please update the unit file accordingly.
[    3.753388] systemd[1]: /usr/lib/systemd/system/libvirtd-ro.socket:11: ListenStream= references a path below legacy directory /var/run/, updating /var/run/libvirt/libvirt-sock-ro → /run/libvirt/libvirt-sock-ro; please update the unit file accordingly.
[    3.754851] systemd[1]: Queued start job for default target Graphical Interface.
[    3.772051] systemd[1]: Created slice Virtual Machine and Container Slice.
[    3.772955] systemd[1]: Created slice system-getty.slice.
[    3.773266] systemd[1]: Created slice system-modprobe.slice.
[    3.773601] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    3.773897] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    3.774171] systemd[1]: Created slice User and Session Slice.
[    3.774277] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    3.774357] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    3.774534] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    3.774566] systemd[1]: Reached target Local Encrypted Volumes.
[    3.774592] systemd[1]: Reached target Paths.
[    3.774606] systemd[1]: Reached target Remote File Systems.
[    3.774622] systemd[1]: Reached target Slices.
[    3.774710] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    3.774960] systemd[1]: Listening on LVM2 metadata daemon socket.
[    3.775172] systemd[1]: Listening on LVM2 poll daemon socket.
[    3.776107] systemd[1]: Listening on Process Core Dump Socket.
[    3.780966] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[    3.781121] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.781275] systemd[1]: Listening on Journal Socket.
[    3.781484] systemd[1]: Listening on Network Service Netlink Socket.
[    3.781766] systemd[1]: Listening on udev Control Socket.
[    3.781882] systemd[1]: Listening on udev Kernel Socket.
[    3.782069] systemd[1]: Condition check resulted in Huge Pages File System being skipped.
[    3.783773] systemd[1]: Mounting POSIX Message Queue File System...
[    3.785390] systemd[1]: Mounting Mount /proc/xen files...
[    3.787251] systemd[1]: Mounting Kernel Debug File System...
[    3.789099] systemd[1]: Mounting Kernel Trace File System...
[    3.791132] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    3.792829] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    3.794581] systemd[1]: Starting Load Kernel Module configfs...
[    3.796438] systemd[1]: Starting Load Kernel Module drm...
[    3.798282] systemd[1]: Starting Load Kernel Module fuse...
[    3.799258] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    3.799369] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    3.803003] systemd[1]: Starting Journal Service...
[    3.804591] Linux agpgart interface v0.103
[    3.805728] systemd[1]: Starting Load Kernel Modules...
[    3.808283] systemd[1]: Starting Remount Root and Kernel File Systems...
[    3.808378] systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
[    3.809992] systemd[1]: Starting Coldplug All udev Devices...
[    3.812681] systemd[1]: Mounted POSIX Message Queue File System.
[    3.812710] fuse: init (API version 7.31)
[    3.812806] systemd[1]: Mounted Mount /proc/xen files.
[    3.812927] systemd[1]: Mounted Kernel Debug File System.
[    3.813069] systemd[1]: Mounted Kernel Trace File System.
[    3.813667] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    3.817119] systemd[1]: modprobe@configfs.service: Succeeded.
[    3.817555] systemd[1]: Finished Load Kernel Module configfs.
[    3.817838] systemd[1]: modprobe@fuse.service: Succeeded.
[    3.818344] systemd[1]: Finished Load Kernel Module fuse.
[    3.818446] xen:xen_evtchn: Event-channel device installed
[    3.821049] systemd[1]: Mounting FUSE Control File System...
[    3.823344] EXT4-fs (nvme1n1p2): re-mounted. Opts: (null)
[    3.823716] systemd[1]: Mounting Kernel Configuration File System...
[    3.827458] systemd[1]: Finished Remount Root and Kernel File Systems.
[    3.827792] systemd[1]: Mounted FUSE Control File System.
[    3.828069] systemd[1]: Condition check resulted in First Boot Wizard being skipped.
[    3.828617] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    3.830305] systemd[1]: Starting Load/Save Random Seed...
[    3.830444] systemd[1]: Condition check resulted in Create System Users being skipped.
[    3.832078] systemd[1]: Starting Create Static Device Nodes in /dev...
[    3.833655] systemd[1]: Mounted Kernel Configuration File System.
[    3.842498] xen_pciback: backend is vpci
[    3.844554] systemd[1]: modprobe@drm.service: Succeeded.
[    3.845027] systemd[1]: Finished Load Kernel Module drm.
[    3.845747] systemd[1]: Finished Load/Save Random Seed.
[    3.845893] systemd[1]: Condition check resulted in First Boot Complete being skipped.
[    3.846779] xen_acpi_processor: Uploading Xen processor PM info
[    3.851506] systemd[1]: Finished Create Static Device Nodes in /dev.
[    3.852111] systemd[1]: Finished Load Kernel Modules.
[    3.853640] systemd[1]: Starting Apply Kernel Variables...
[    3.856191] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[    3.863346] systemd[1]: Finished Apply Kernel Variables.
[    3.868081] usb 1-8: New USB device found, idVendor=046b, idProduct=ff01, bcdDevice= 1.00
[    3.868082] usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.868083] usb 1-8: Product: Virtual Hub
[    3.868084] usb 1-8: Manufacturer: American Megatrends Inc.
[    3.868084] usb 1-8: SerialNumber: serial
[    3.868696] hub 1-8:1.0: USB hub found
[    3.868781] hub 1-8:1.0: 5 ports detected
[    3.884996] systemd[1]: Started Journal Service.
[    3.959751] tpm_tis MSFT0101:00: 2.0 TPM (device-id 0xFE, rev-id 4)
[    3.974768] IPMI message handler: version 39.2
[    4.000771] EDAC MC0: Giving out device to module ie31200_edac controller IE31200: DEV 0000:00:00.0 (POLLED)
[    4.000983] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    4.002739] ipmi device interface
[    4.006439] ipmi_si: IPMI System Interface driver
[    4.006453] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[    4.006455] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[    4.006455] ipmi_si: Adding SMBIOS-specified kcs state machine
[    4.006483] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[    4.006614] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
[    4.012244] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[    4.012246] ipmi_si: Adding ACPI-specified kcs state machine
[    4.012285] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[    4.016902] xen: registering gsi 16 triggering 0 polarity 1
[    4.016908] Already setup the GSI :16
[    4.025186] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    4.025273] xen: registering gsi 16 triggering 0 polarity 1
[    4.025276] Already setup the GSI :16
[    4.025493] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    4.033109] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[    4.033188] xen: registering gsi 17 triggering 0 polarity 1
[    4.033193] Already setup the GSI :17
[    4.033392] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    4.040686] intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
[    4.040762] xen: registering gsi 20 triggering 0 polarity 1
[    4.040776] xen: --> pirq=20 -> irq=20 (gsi=20)
[    4.041092] idma64 idma64.2: Found Intel integrated DMA 64-bit
[    4.157569] usb 1-8.1: new high-speed USB device number 3 using xhci_hcd
[    4.258782] usb 1-8.1: New USB device found, idVendor=046b, idProduct=ff20, bcdDevice= 1.00
[    4.258783] usb 1-8.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.258784] usb 1-8.1: Product: Virtual Cdrom Device
[    4.258784] usb 1-8.1: Manufacturer: American Megatrends Inc.
[    4.258785] usb 1-8.1: SerialNumber: AAAABBBBCCCC1
[    4.297640] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x00c1d6, prod_id: 0x0202, dev_id: 0x20)
[    4.317638] Adding 2096448k swap on /dev/nvme1n1p4.  Priority:-2 extents:1 across:2096448k SSFS
[    4.347551] usb 1-8.2: new high-speed USB device number 4 using xhci_hcd
[    4.449399] usb 1-8.2: New USB device found, idVendor=046b, idProduct=ffb0, bcdDevice= 1.00
[    4.449400] usb 1-8.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.449400] usb 1-8.2: Product: Virtual Ethernet
[    4.449401] usb 1-8.2: Manufacturer: American Megatrends Inc.
[    4.449401] usb 1-8.2: SerialNumber: 1234567890
[    4.530906] usb 1-8.3: new high-speed USB device number 5 using xhci_hcd
[    4.632830] usb 1-8.3: New USB device found, idVendor=046b, idProduct=ff40, bcdDevice= 1.00
[    4.632831] usb 1-8.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.632831] usb 1-8.3: Product: Virtual Floppy Device
[    4.632832] usb 1-8.3: Manufacturer: American Megatrends Inc.
[    4.632832] usb 1-8.3: SerialNumber: AAAABBBBCCCC2
[    4.633857] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    4.633871] mei_me 0000:00:16.4: enabling device (0000 -> 0002)
[    4.634151] dca service started, version 1.12.1
[    4.634273] xen: registering gsi 16 triggering 0 polarity 1
[    4.634278] Already setup the GSI :16
[    4.634306] xen: registering gsi 16 triggering 0 polarity 1
[    4.634315] Already setup the GSI :16
[    4.637691] xen: registering gsi 16 triggering 0 polarity 1
[    4.637693] Already setup the GSI :16
[    4.637736] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    4.637791] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    4.639196] i2c i2c-2: 4/4 memory slots populated (from DMI)
[    4.639803] i2c i2c-2: Successfully instantiated SPD at 0x50
[    4.640275] i2c i2c-2: Successfully instantiated SPD at 0x51
[    4.640764] i2c i2c-2: Successfully instantiated SPD at 0x52
[    4.641234] i2c i2c-2: Successfully instantiated SPD at 0x53
[    4.643940] libphy: Fixed MDIO Bus: probed
[    4.650572] intel-spi 0000:00:1f.5: w25q256 (32768 Kbytes)
[    4.660404] Creating 1 MTD partitions on "0000:00:1f.5":
[    4.660406] 0x000000000000-0x000002000000 : "BIOS"
[    4.664295] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver
[    4.664296] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    4.664487] xen: registering gsi 16 triggering 0 polarity 1
[    4.664493] Already setup the GSI :16
[    4.672390] checking generic (90000000 300000) vs hw (90000000 1000000)
[    4.672391] fb0: switching to astdrmfb from EFI VGA
[    4.672452] Console: switching to colour dummy device 80x25
[    4.673268] xen: registering gsi 16 triggering 0 polarity 1
[    4.673272] Already setup the GSI :16
[    4.673319] xen: registering gsi 16 triggering 0 polarity 1
[    4.673321] Already setup the GSI :16
[    4.673401] ast 0000:06:00.0: [drm] Using P2A bridge for configuration
[    4.673404] ast 0000:06:00.0: [drm] AST 2500 detected
[    4.673415] ast 0000:06:00.0: [drm] Analog VGA only
[    4.673421] ast 0000:06:00.0: [drm] dram MCLK=800 Mhz type=7 bus_width=16
[    4.673511] [TTM] Zone  kernel: Available graphics memory: 2002150 KiB
[    4.673511] [TTM] Initializing pool allocator
[    4.673515] [TTM] Initializing DMA pool allocator
[    4.673701] [drm] Initialized ast 0.1.0 20120228 for 0000:06:00.0 on minor 0
[    4.679927] fbcon: astdrmfb (fb0) is primary device
[    4.691547] EXT4-fs (nvme1n1p3): mounted filesystem with ordered data mode. Opts: (null)
[    4.694509] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    4.696335] Console: switching to colour frame buffer device 128x48
[    4.697200] ast 0000:06:00.0: [drm] fb0: astdrmfb frame buffer device
[    4.717539] usb 1-8.4: new high-speed USB device number 6 using xhci_hcd
[    4.818595] usb 1-8.4: New USB device found, idVendor=046b, idProduct=ff31, bcdDevice= 1.00
[    4.818596] usb 1-8.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.818597] usb 1-8.4: Product: Virtual HardDisk Device
[    4.818598] usb 1-8.4: Manufacturer: American Megatrends Inc.
[    4.818598] usb 1-8.4: SerialNumber: AAAABBBBCCCC3
[    4.900899] usb 1-8.5: new low-speed USB device number 7 using xhci_hcd
[    4.983415] ipmi_si IPI0001:00: IPMI kcs interface initialized
[    5.004307] usb 1-8.5: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00
[    5.004308] usb 1-8.5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.004309] usb 1-8.5: Product: Virtual Keyboard and Mouse
[    5.004309] usb 1-8.5: Manufacturer: American Megatrends Inc.
[    5.199633] ipmi_ssif: IPMI SSIF Interface driver
[    5.361528] ixgbe 0000:03:00.0: Multiqueue Enabled: Rx Queue count = 12, Tx Queue count = 12 XDP Queue count = 0
[    5.460325] ixgbe 0000:03:00.0: 31.504 Gb/s available PCIe bandwidth (8.0 GT/s PCIe x4 link)
[    5.573319] ixgbe 0000:03:00.0: MAC: 4, PHY: 0, PBA No: 000000-000
[    5.573320] ixgbe 0000:03:00.0: d0:50:99:d4:2c:4e
[    5.735156] ixgbe 0000:03:00.0: Intel(R) 10 Gigabit Network Connection
[    5.735216] libphy: ixgbe-mdio: probed
[    5.735320] xen: registering gsi 17 triggering 0 polarity 1
[    5.735326] Already setup the GSI :17
[    6.191816] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[    6.242359] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    6.242360] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    6.242360] RAPL PMU: hw unit of domain package 2^-14 Joules
[    6.242360] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    6.242361] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    6.430399] ixgbe 0000:03:00.1: Multiqueue Enabled: Rx Queue count = 12, Tx Queue count = 12 XDP Queue count = 0
[    6.529582] ixgbe 0000:03:00.1: 31.504 Gb/s available PCIe bandwidth (8.0 GT/s PCIe x4 link)
[    6.642965] ixgbe 0000:03:00.1: MAC: 4, PHY: 0, PBA No: 000000-000
[    6.642966] ixgbe 0000:03:00.1: d0:50:99:d4:2c:4f
[    6.807297] ixgbe 0000:03:00.1: Intel(R) 10 Gigabit Network Connection
[    6.807356] libphy: ixgbe-mdio: probed
[    7.321615] iTCO_vendor_support: vendor-support=0
[    7.322867] ee1004 2-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[    7.323056] cryptd: max_cpu_qlen set to 1000
[    7.323164] dw-apb-uart.2: ttyS2 at MMIO 0x4000917000 (irq = 20, base_baud = 7500000) is a 16550A
[    7.323359] ee1004 2-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
[    7.323818] ee1004 2-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
[    7.324298] ee1004 2-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
[    7.442443] usb-storage 1-8.1:1.0: USB Mass Storage device detected
[    7.442673] scsi host6: usb-storage 1-8.1:1.0
[    7.442734] usb-storage 1-8.3:1.0: USB Mass Storage device detected
[    7.442894] usb-storage 1-8.3:1.0: Quirks match for vid 046b pid ff40: 200
[    7.442965] scsi host7: usb-storage 1-8.3:1.0
[    7.443018] usb-storage 1-8.4:1.0: USB Mass Storage device detected
[    7.444601] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    7.444695] iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[    7.444910] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    7.448869] scsi host8: usb-storage 1-8.4:1.0
[    7.448924] usbcore: registered new interface driver usb-storage
[    7.490936] ixgbe 0000:03:00.0 eno1: renamed from eth0
[    7.543579] AVX2 version of gcm_enc/dec engaged.
[    7.543584] AES CTR mode by8 optimization enabled
[    7.552416] usbcore: registered new interface driver uas
[    7.581226] cdc_ether 1-8.2:2.0 usb0: register 'cdc_ether' at usb-0000:00:14.0-8.2, CDC Ethernet Device, ea:44:4f:8f:30:be
[    7.581258] usbcore: registered new interface driver cdc_ether
[    7.604270] ixgbe 0000:03:00.1 eno2: renamed from eth1
[    7.681158] pps pps0: new PPS source ptp0
[    7.681221] ixgbe 0000:03:00.0: registered PHC device on eno1
[    7.819350] cdc_ether 1-8.2:2.0 enp0s20f0u8u2c2: renamed from usb0
[    7.848715] hid: raw HID events driver (C) Jiri Kosina
[    7.990162] usbcore: registered new interface driver usbhid
[    7.990163] usbhid: USB HID core driver
[    7.993948] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.5/1-8.5:1.0/0003:046B:FF10.0001/input/input4
[    7.994063] hid-generic 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:14.0-8.5/input0
[    7.994173] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.5/1-8.5:1.1/0003:046B:FF10.0002/input/input5
[    7.994310] hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:14.0-8.5/input1
[    7.999981] mousedev: PS/2 mouse device common for all mice
[    8.406081] intel_rapl_common: Found RAPL domain package
[    8.406083] intel_rapl_common: Found RAPL domain core
[    8.406085] intel_rapl_common: Found RAPL domain uncore
[    8.406087] intel_rapl_common: Found RAPL domain dram
[    8.468503] scsi 6:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[    8.468727] scsi 7:0:0:0: Direct-Access     AMI      Virtual Floppy0  1.00 PQ: 0 ANSI: 0 CCS
[    8.468959] scsi 8:0:0:0: Direct-Access     AMI      Virtual HDisk0   1.00 PQ: 0 ANSI: 0 CCS
[    8.469120] scsi 6:0:0:1: CD-ROM            AMI      Virtual CDROM1   1.00 PQ: 0 ANSI: 0 CCS
[    8.469334] scsi 7:0:0:1: Direct-Access     AMI      Virtual Floppy1  1.00 PQ: 0 ANSI: 0 CCS
[    8.469522] scsi 8:0:0:1: Direct-Access     AMI      Virtual HDisk1   1.00 PQ: 0 ANSI: 0 CCS
[    8.482223] scsi 6:0:0:2: CD-ROM            AMI      Virtual CDROM2   1.00 PQ: 0 ANSI: 0 CCS
[    8.482561] scsi 7:0:0:2: Direct-Access     AMI      Virtual Floppy2  1.00 PQ: 0 ANSI: 0 CCS
[    8.482852] scsi 8:0:0:2: Direct-Access     AMI      Virtual HDisk2   1.00 PQ: 0 ANSI: 0 CCS
[    8.483094] scsi 6:0:0:3: CD-ROM            AMI      Virtual CDROM3   1.00 PQ: 0 ANSI: 0 CCS
[    8.483338] scsi 7:0:0:3: Direct-Access     AMI      Virtual Floppy3  1.00 PQ: 0 ANSI: 0 CCS
[    8.483459] scsi 8:0:0:3: Direct-Access     AMI      Virtual HDisk3   1.00 PQ: 0 ANSI: 0 CCS
[    8.625845] memmap_init_zone_device initialised 32768 pages in 0ms
[    8.710390] sd 7:0:0:0: [sde] Attached SCSI removable disk
[    8.710583] sd 8:0:0:3: [sdd] Attached SCSI removable disk
[    8.711413] sd 7:0:0:3: [sdh] Attached SCSI removable disk
[    8.712158] sr 6:0:0:0: [sr0] scsi-1 drive
[    8.712159] cdrom: Uniform CD-ROM driver Revision: 3.20
[    8.718492] sd 7:0:0:2: [sdg] Attached SCSI removable disk
[    8.731349] sr 6:0:0:0: Attached scsi CD-ROM sr0
[    8.732470] tun: Universal TUN/TAP device driver, 1.6
[    8.733957] sr 6:0:0:1: [sr1] scsi-1 drive
[    8.735281] sd 7:0:0:1: [sdf] Attached SCSI removable disk
[    8.737681] sd 8:0:0:1: [sdb] Attached SCSI removable disk
[    8.759316] sr 6:0:0:1: Attached scsi CD-ROM sr1
[    8.762875] sr 6:0:0:2: [sr2] scsi-1 drive
[    8.763353] sd 8:0:0:2: [sdc] Attached SCSI removable disk
[    8.786369] sr 6:0:0:2: Attached scsi CD-ROM sr2
[    8.787695] sd 8:0:0:0: [sda] Attached SCSI removable disk
[    8.788293] sr 6:0:0:3: [sr3] scsi-1 drive
[    8.805755] sr 6:0:0:3: Attached scsi CD-ROM sr3
[    8.869875] virbr0: port 1(vif1.0) entered blocking state
[    8.869892] virbr0: port 1(vif1.0) entered disabled state
[    8.869935] device vif1.0 entered promiscuous mode
[    8.902225] Bridge firewalling registered
[    8.977876] virbr0: port 2(vif1.0-emu) entered blocking state
[    8.977891] virbr0: port 2(vif1.0-emu) entered disabled state
[    8.977929] device vif1.0-emu entered promiscuous mode
[    8.980121] virbr0: port 2(vif1.0-emu) entered blocking state
[    8.980122] virbr0: port 2(vif1.0-emu) entered listening state
[    9.475618] virbr0: port 3(vif2.0) entered blocking state
[    9.475635] virbr0: port 3(vif2.0) entered disabled state
[    9.475679] device vif2.0 entered promiscuous mode
[    9.560712] virbr0: port 4(vif2.0-emu) entered blocking state
[    9.560728] virbr0: port 4(vif2.0-emu) entered disabled state
[    9.560768] device vif2.0-emu entered promiscuous mode
[    9.562799] virbr0: port 4(vif2.0-emu) entered blocking state
[    9.562800] virbr0: port 4(vif2.0-emu) entered listening state
[   10.026045] virbr0: port 5(vif3.0) entered blocking state
[   10.026062] virbr0: port 5(vif3.0) entered disabled state
[   10.026107] device vif3.0 entered promiscuous mode
[   10.111148] virbr0: port 6(vif3.0-emu) entered blocking state
[   10.111164] virbr0: port 6(vif3.0-emu) entered disabled state
[   10.111206] device vif3.0-emu entered promiscuous mode
[   10.113242] virbr0: port 6(vif3.0-emu) entered blocking state
[   10.113243] virbr0: port 6(vif3.0-emu) entered listening state
[   10.539294] virbr0: port 7(vif4.0) entered blocking state
[   10.539310] virbr0: port 7(vif4.0) entered disabled state
[   10.539355] device vif4.0 entered promiscuous mode
[   10.624783] virbr0: port 8(vif4.0-emu) entered blocking state
[   10.624800] virbr0: port 8(vif4.0-emu) entered disabled state
[   10.624842] device vif4.0-emu entered promiscuous mode
[   10.626890] virbr0: port 8(vif4.0-emu) entered blocking state
[   10.626891] virbr0: port 8(vif4.0-emu) entered listening state
[   11.100709] virbr0: port 9(vif5.0) entered blocking state
[   11.100710] virbr0: port 9(vif5.0) entered disabled state
[   11.100760] device vif5.0 entered promiscuous mode
[   11.134201] virbr0: port 2(vif1.0-emu) entered learning state
[   11.189138] virbr0: port 10(vif5.0-emu) entered blocking state
[   11.189154] virbr0: port 10(vif5.0-emu) entered disabled state
[   11.189200] device vif5.0-emu entered promiscuous mode
[   11.191229] virbr0: port 10(vif5.0-emu) entered blocking state
[   11.191230] virbr0: port 10(vif5.0-emu) entered listening state
[   11.774206] virbr0: port 4(vif2.0-emu) entered learning state
[   11.777902] virbr1: port 1(vif6.0) entered blocking state
[   11.777918] virbr1: port 1(vif6.0) entered disabled state
[   11.777961] device vif6.0 entered promiscuous mode
[   11.869085] virbr1: port 2(vif6.0-emu) entered blocking state
[   11.869102] virbr1: port 2(vif6.0-emu) entered disabled state
[   11.869145] device vif6.0-emu entered promiscuous mode
[   11.871244] virbr1: port 2(vif6.0-emu) entered blocking state
[   11.871246] virbr1: port 2(vif6.0-emu) entered listening state
[   12.200873] virbr0: port 6(vif3.0-emu) entered learning state
[   12.627531] virbr0: port 8(vif4.0-emu) entered learning state
[   13.267540] virbr0: port 10(vif5.0-emu) entered learning state
[   13.267577] virbr0: port 2(vif1.0-emu) entered forwarding state
[   13.267583] virbr0: topology change detected, propagating
[   13.907538] virbr1: port 2(vif6.0-emu) entered learning state
[   13.907539] virbr0: port 4(vif2.0-emu) entered forwarding state
[   13.907542] virbr0: topology change detected, propagating
[   14.334206] virbr0: port 6(vif3.0-emu) entered forwarding state
[   14.334221] virbr0: topology change detected, propagating
[   14.760873] virbr0: port 8(vif4.0-emu) entered forwarding state
[   14.760874] virbr0: topology change detected, propagating
[   15.400876] virbr0: port 10(vif5.0-emu) entered forwarding state
[   15.400888] virbr0: topology change detected, propagating
[   16.040875] virbr1: port 2(vif6.0-emu) entered forwarding state
[   16.040886] virbr1: topology change detected, propagating
[   18.168683] ixgbe 0000:03:00.0 eno1: NIC Link is Up 10 Gbps, Flow Control: None
[   18.169027] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[   18.195537] ixgbe 0000:03:00.0 eno1: NIC Link is Down
[   18.721791] ixgbe 0000:03:00.0 eno1: NIC Link is Up 10 Gbps, Flow Control: None
[   20.997279] virbr0: port 2(vif1.0-emu) entered disabled state
[   20.998021] device vif1.0-emu left promiscuous mode
[   20.998025] virbr0: port 2(vif1.0-emu) entered disabled state
[   23.018991] virbr0: port 8(vif4.0-emu) entered disabled state
[   23.020290] device vif4.0-emu left promiscuous mode
[   23.020296] virbr0: port 8(vif4.0-emu) entered disabled state
[   23.907235] virbr0: port 10(vif5.0-emu) entered disabled state
[   23.907938] device vif5.0-emu left promiscuous mode
[   23.907940] virbr0: port 10(vif5.0-emu) entered disabled state
[   25.579863] vif vif-5-0 vif5.0: Guest Rx ready
[   25.579882] IPv6: ADDRCONF(NETDEV_CHANGE): vif5.0: link becomes ready
[   25.579939] virbr0: port 9(vif5.0) entered blocking state
[   25.579941] virbr0: port 9(vif5.0) entered listening state
[   27.201876] virbr0: port 6(vif3.0-emu) entered disabled state
[   27.202686] device vif3.0-emu left promiscuous mode
[   27.202689] virbr0: port 6(vif3.0-emu) entered disabled state
[   27.234502] vif vif-1-0 vif1.0: Guest Rx ready
[   27.254491] IPv6: ADDRCONF(NETDEV_CHANGE): vif1.0: link becomes ready
[   27.254525] virbr0: port 1(vif1.0) entered blocking state
[   27.254527] virbr0: port 1(vif1.0) entered listening state
[   27.774228] virbr0: port 9(vif5.0) entered learning state
[   28.882794] vif vif-3-0 vif3.0: Guest Rx ready
[   28.882808] IPv6: ADDRCONF(NETDEV_CHANGE): vif3.0: link becomes ready
[   28.882854] virbr0: port 5(vif3.0) entered blocking state
[   28.882857] virbr0: port 5(vif3.0) entered listening state
[   29.111381] vif vif-4-0 vif4.0: Guest Rx ready
[   29.111394] IPv6: ADDRCONF(NETDEV_CHANGE): vif4.0: link becomes ready
[   29.111453] virbr0: port 7(vif4.0) entered blocking state
[   29.111456] virbr0: port 7(vif4.0) entered listening state
[   29.221243] virbr0: port 1(vif1.0) entered learning state
[   29.835858] virbr0: port 9(vif5.0) entered forwarding state
[   29.835860] virbr0: topology change detected, propagating
[   30.871134] virbr0: port 5(vif3.0) entered learning state
[   31.077749] virbr0: port 7(vif4.0) entered learning state
[   31.285243] virbr0: port 1(vif1.0) entered forwarding state
[   31.285257] virbr0: topology change detected, propagating
[   32.288145] virbr0: port 4(vif2.0-emu) entered disabled state
[   32.288822] device vif2.0-emu left promiscuous mode
[   32.288829] virbr0: port 4(vif2.0-emu) entered disabled state
[   32.950409] virbr0: port 5(vif3.0) entered forwarding state
[   32.950410] virbr0: topology change detected, propagating
[   33.159349] virbr0: port 7(vif4.0) entered forwarding state
[   33.159351] virbr0: topology change detected, propagating
[   36.623141] virbr1: port 2(vif6.0-emu) entered disabled state
[   36.623835] device vif6.0-emu left promiscuous mode
[   36.623837] virbr1: port 2(vif6.0-emu) entered disabled state
[   37.071477] vif vif-2-0 vif2.0: Guest Rx ready
[   37.071494] IPv6: ADDRCONF(NETDEV_CHANGE): vif2.0: link becomes ready
[   37.071556] virbr0: port 3(vif2.0) entered blocking state
[   37.071560] virbr0: port 3(vif2.0) entered listening state
[   39.257170] virbr0: port 3(vif2.0) entered learning state
[   41.373256] virbr0: port 3(vif2.0) entered forwarding state
[   41.373258] virbr0: topology change detected, propagating
[   46.414100] vif vif-6-0 vif6.0: Guest Rx ready
[   46.414118] IPv6: ADDRCONF(NETDEV_CHANGE): vif6.0: link becomes ready
[   46.414174] virbr1: port 1(vif6.0) entered blocking state
[   46.414176] virbr1: port 1(vif6.0) entered listening state
[   48.593908] virbr1: port 1(vif6.0) entered learning state
[   50.725600] virbr1: port 1(vif6.0) entered forwarding state
[   50.725601] virbr1: topology change detected, propagating
[   72.264783] virbr1: port 2(vif7.0) entered blocking state
[   72.264810] virbr1: port 2(vif7.0) entered disabled state
[   72.264929] device vif7.0 entered promiscuous mode
[   72.408638] virbr1: port 3(vif7.0-emu) entered blocking state
[   72.408666] virbr1: port 3(vif7.0-emu) entered disabled state
[   72.408756] device vif7.0-emu entered promiscuous mode
[   72.411715] virbr1: port 3(vif7.0-emu) entered blocking state
[   72.411717] virbr1: port 3(vif7.0-emu) entered listening state
[   73.426381] virbr0: port 2(vif8.0) entered blocking state
[   73.426410] virbr0: port 2(vif8.0) entered disabled state
[   73.426469] device vif8.0 entered promiscuous mode
[   73.572232] virbr0: port 4(vif8.0-emu) entered blocking state
[   73.572258] virbr0: port 4(vif8.0-emu) entered disabled state
[   73.572335] device vif8.0-emu entered promiscuous mode
[   73.576033] virbr0: port 4(vif8.0-emu) entered blocking state
[   73.576036] virbr0: port 4(vif8.0-emu) entered listening state
[   74.467961] virbr0: port 6(vif9.0) entered blocking state
[   74.467985] virbr0: port 6(vif9.0) entered disabled state
[   74.468055] device vif9.0 entered promiscuous mode
[   74.595120] virbr1: port 3(vif7.0-emu) entered learning state
[   74.621903] virbr0: port 8(vif9.0-emu) entered blocking state
[   74.621928] virbr0: port 8(vif9.0-emu) entered disabled state
[   74.622006] device vif9.0-emu entered promiscuous mode
[   74.625476] virbr0: port 8(vif9.0-emu) entered blocking state
[   74.625479] virbr0: port 8(vif9.0-emu) entered listening state
[   75.661300] virbr0: port 4(vif8.0-emu) entered learning state
[   76.727524] virbr1: port 3(vif7.0-emu) entered forwarding state
[   76.727525] virbr0: port 8(vif9.0-emu) entered learning state
[   76.727527] virbr1: topology change detected, propagating
[   77.793785] virbr0: port 4(vif8.0-emu) entered forwarding state
[   77.793788] virbr0: topology change detected, propagating
[   78.860070] virbr0: port 8(vif9.0-emu) entered forwarding state
[   78.860083] virbr0: topology change detected, propagating
[   85.803030] virbr0: port 8(vif9.0-emu) entered disabled state
[   85.803781] device vif9.0-emu left promiscuous mode
[   85.803785] virbr0: port 8(vif9.0-emu) entered disabled state
[   87.319161] vif vif-9-0 vif9.0: Guest Rx ready
[   87.319175] IPv6: ADDRCONF(NETDEV_CHANGE): vif9.0: link becomes ready
[   87.319239] virbr0: port 6(vif9.0) entered blocking state
[   87.319241] virbr0: port 6(vif9.0) entered listening state
[   89.523670] virbr0: port 6(vif9.0) entered learning state
[   89.597401] virbr1: port 3(vif7.0-emu) entered disabled state
[   89.598779] device vif7.0-emu left promiscuous mode
[   89.598783] virbr1: port 3(vif7.0-emu) entered disabled state
[   91.184327] virbr0: port 4(vif8.0-emu) entered disabled state
[   91.185077] device vif8.0-emu left promiscuous mode
[   91.185081] virbr0: port 4(vif8.0-emu) entered disabled state
[   91.656508] virbr0: port 6(vif9.0) entered forwarding state
[   91.656526] virbr0: topology change detected, propagating
[   94.952689] vif vif-8-0 vif8.0: Guest Rx ready
[   94.952707] IPv6: ADDRCONF(NETDEV_CHANGE): vif8.0: link becomes ready
[   94.952766] virbr0: port 2(vif8.0) entered blocking state
[   94.952768] virbr0: port 2(vif8.0) entered listening state
[   96.988776] virbr0: port 2(vif8.0) entered learning state
[   99.121765] virbr0: port 2(vif8.0) entered forwarding state
[   99.121768] virbr0: topology change detected, propagating
[   99.165178] vif vif-7-0 vif7.0: Guest Rx ready
[   99.165198] IPv6: ADDRCONF(NETDEV_CHANGE): vif7.0: link becomes ready
[   99.165268] virbr1: port 2(vif7.0) entered blocking state
[   99.165269] virbr1: port 2(vif7.0) entered listening state
[  101.254691] virbr1: port 2(vif7.0) entered learning state
[  103.387677] virbr1: port 2(vif7.0) entered forwarding state
[  103.387679] virbr1: topology change detected, propagating
[  305.534627] usb 1-8: USB disconnect, device number 2
[  305.534634] usb 1-8.1: USB disconnect, device number 3
[  305.750534] usb 1-8.2: USB disconnect, device number 4
[  305.750617] cdc_ether 1-8.2:2.0 enp0s20f0u8u2c2: unregister 'cdc_ether' usb-0000:00:14.0-8.2, CDC Ethernet Device
[  305.803865] usb 1-8.3: USB disconnect, device number 5
[  306.081405] usb 1-8.4: USB disconnect, device number 6
[  306.404200] usb 1-8.5: USB disconnect, device number 7
[320796.028338] virbr0: port 2(vif8.0) entered disabled state
[320796.227718] virbr0: port 2(vif8.0) entered disabled state
[320796.228668] device vif8.0 left promiscuous mode
[320796.228670] virbr0: port 2(vif8.0) entered disabled state
[320979.353911] virbr0: port 2(vif10.0) entered blocking state
[320979.353935] virbr0: port 2(vif10.0) entered disabled state
[320979.353998] device vif10.0 entered promiscuous mode
[320979.454752] virbr0: port 4(vif10.0-emu) entered blocking state
[320979.454769] virbr0: port 4(vif10.0-emu) entered disabled state
[320979.454838] device vif10.0-emu entered promiscuous mode
[320979.457066] virbr0: port 4(vif10.0-emu) entered blocking state
[320979.457068] virbr0: port 4(vif10.0-emu) entered listening state
[320981.561457] virbr0: port 4(vif10.0-emu) entered learning state
[320983.694591] virbr0: port 4(vif10.0-emu) entered forwarding state
[320983.694599] virbr0: topology change detected, propagating
[320992.358896] virbr0: port 4(vif10.0-emu) entered disabled state
[320992.361045] device vif10.0-emu left promiscuous mode
[320992.361048] virbr0: port 4(vif10.0-emu) entered disabled state
[320996.269925] vif vif-10-0 vif10.0: Guest Rx ready
[320996.269938] IPv6: ADDRCONF(NETDEV_CHANGE): vif10.0: link becomes ready
[320996.269991] virbr0: port 2(vif10.0) entered blocking state
[320996.269993] virbr0: port 2(vif10.0) entered listening state
[320998.413871] virbr0: port 2(vif10.0) entered learning state
[321000.547092] virbr0: port 2(vif10.0) entered forwarding state
[321000.547105] virbr0: topology change detected, propagating
[321048.254037] virbr0: port 2(vif10.0) entered disabled state
[321048.447586] device vif10.0 left promiscuous mode
[321048.447608] virbr0: port 2(vif10.0) entered disabled state
[321062.761717] virbr0: port 2(vif11.0) entered blocking state
[321062.761735] virbr0: port 2(vif11.0) entered disabled state
[321062.761783] device vif11.0 entered promiscuous mode
[321062.860534] virbr0: port 4(vif11.0-emu) entered blocking state
[321062.860552] virbr0: port 4(vif11.0-emu) entered disabled state
[321062.860598] device vif11.0-emu entered promiscuous mode
[321062.862841] virbr0: port 4(vif11.0-emu) entered blocking state
[321062.862842] virbr0: port 4(vif11.0-emu) entered listening state
[321064.970685] virbr0: port 4(vif11.0-emu) entered learning state
[321067.103855] virbr0: port 4(vif11.0-emu) entered forwarding state
[321067.103878] virbr0: topology change detected, propagating
[321076.143020] virbr0: port 4(vif11.0-emu) entered disabled state
[321076.143607] device vif11.0-emu left promiscuous mode
[321076.143610] virbr0: port 4(vif11.0-emu) entered disabled state
[321081.631037] vif vif-11-0 vif11.0: Guest Rx ready
[321081.631050] IPv6: ADDRCONF(NETDEV_CHANGE): vif11.0: link becomes ready
[321081.631093] virbr0: port 2(vif11.0) entered blocking state
[321081.631094] virbr0: port 2(vif11.0) entered listening state
[321083.742976] virbr0: port 2(vif11.0) entered learning state
[321085.876201] virbr0: port 2(vif11.0) entered forwarding state
[321085.876203] virbr0: topology change detected, propagating
[321120.227912] virbr0: port 2(vif11.0) entered disabled state
[321120.435884] device vif11.0 left promiscuous mode
[321120.435906] virbr0: port 2(vif11.0) entered disabled state
[321136.325647] virbr0: port 2(vif12.0) entered blocking state
[321136.325667] virbr0: port 2(vif12.0) entered disabled state
[321136.325736] device vif12.0 entered promiscuous mode
[321136.430371] virbr0: port 4(vif12.0-emu) entered blocking state
[321136.430387] virbr0: port 4(vif12.0-emu) entered disabled state
[321136.430433] device vif12.0-emu entered promiscuous mode
[321136.432526] virbr0: port 4(vif12.0-emu) entered blocking state
[321136.432527] virbr0: port 4(vif12.0-emu) entered listening state
[321138.567027] virbr0: port 4(vif12.0-emu) entered learning state
[321140.700193] virbr0: port 4(vif12.0-emu) entered forwarding state
[321140.700202] virbr0: topology change detected, propagating
[321162.535442] virbr0: port 4(vif12.0-emu) entered disabled state
[321162.535938] device vif12.0-emu left promiscuous mode
[321162.535941] virbr0: port 4(vif12.0-emu) entered disabled state
[321168.442870] vif vif-12-0 vif12.0: Guest Rx ready
[321168.442884] IPv6: ADDRCONF(NETDEV_CHANGE): vif12.0: link becomes ready
[321168.442928] virbr0: port 2(vif12.0) entered blocking state
[321168.442929] virbr0: port 2(vif12.0) entered listening state
[321170.565339] virbr0: port 2(vif12.0) entered learning state
[321172.698573] virbr0: port 2(vif12.0) entered forwarding state
[321172.698583] virbr0: topology change detected, propagating
[321179.155175] virbr0: port 2(vif12.0) entered disabled state
[321179.377399] device vif12.0 left promiscuous mode
[321179.377423] virbr0: port 2(vif12.0) entered disabled state
[321297.449252] virbr0: port 2(vif13.0) entered blocking state
[321297.449273] virbr0: port 2(vif13.0) entered disabled state
[321297.449330] device vif13.0 entered promiscuous mode
[321297.551229] virbr0: port 4(vif13.0-emu) entered blocking state
[321297.551248] virbr0: port 4(vif13.0-emu) entered disabled state
[321297.551292] device vif13.0-emu entered promiscuous mode
[321297.553445] virbr0: port 4(vif13.0-emu) entered blocking state
[321297.553446] virbr0: port 4(vif13.0-emu) entered listening state
[321299.625720] virbr0: port 4(vif13.0-emu) entered learning state
[321301.758841] virbr0: port 4(vif13.0-emu) entered forwarding state
[321301.758850] virbr0: topology change detected, propagating
[321312.157275] virbr0: port 4(vif13.0-emu) entered disabled state
[321312.157889] device vif13.0-emu left promiscuous mode
[321312.157891] virbr0: port 4(vif13.0-emu) entered disabled state
[321317.739070] vif vif-13-0 vif13.0: Guest Rx ready
[321317.739082] IPv6: ADDRCONF(NETDEV_CHANGE): vif13.0: link becomes ready
[321317.739123] virbr0: port 2(vif13.0) entered blocking state
[321317.739124] virbr0: port 2(vif13.0) entered listening state
[321319.891325] virbr0: port 2(vif13.0) entered learning state
[321322.024509] virbr0: port 2(vif13.0) entered forwarding state
[321322.024519] virbr0: topology change detected, propagating
[321426.697216] virbr0: port 2(vif13.0) entered disabled state
[321426.886170] virbr0: port 2(vif13.0) entered disabled state
[321426.887148] device vif13.0 left promiscuous mode
[321426.887150] virbr0: port 2(vif13.0) entered disabled state
[321454.691132] virbr0: port 2(vif14.0) entered blocking state
[321454.691152] virbr0: port 2(vif14.0) entered disabled state
[321454.691217] device vif14.0 entered promiscuous mode
[321454.795790] virbr0: port 4(vif14.0-emu) entered blocking state
[321454.795824] virbr0: port 4(vif14.0-emu) entered disabled state
[321454.795907] device vif14.0-emu entered promiscuous mode
[321454.798411] virbr0: port 4(vif14.0-emu) entered blocking state
[321454.798413] virbr0: port 4(vif14.0-emu) entered listening state
[321456.844565] virbr0: port 4(vif14.0-emu) entered learning state
[321458.977771] virbr0: port 4(vif14.0-emu) entered forwarding state
[321458.977786] virbr0: topology change detected, propagating
[321467.784833] virbr0: port 4(vif14.0-emu) entered disabled state
[321467.785457] device vif14.0-emu left promiscuous mode
[321467.785459] virbr0: port 4(vif14.0-emu) entered disabled state
[321473.913875] vif vif-14-0 vif14.0: Guest Rx ready
[321473.913888] IPv6: ADDRCONF(NETDEV_CHANGE): vif14.0: link becomes ready
[321473.913935] virbr0: port 2(vif14.0) entered blocking state
[321473.913936] virbr0: port 2(vif14.0) entered listening state
[321476.043584] virbr0: port 2(vif14.0) entered learning state
[321478.176772] virbr0: port 2(vif14.0) entered forwarding state
[321478.176774] virbr0: topology change detected, propagating
[321501.720671] virbr0: port 1(vif1.0) entered disabled state
[321501.964894] device vif1.0 left promiscuous mode
[321501.964916] virbr0: port 1(vif1.0) entered disabled state
[321549.775782] virbr0: port 1(vif15.0) entered blocking state
[321549.775815] virbr0: port 1(vif15.0) entered disabled state
[321549.775895] device vif15.0 entered promiscuous mode
[321549.882751] virbr0: port 4(vif15.0-emu) entered blocking state
[321549.882774] virbr0: port 4(vif15.0-emu) entered disabled state
[321549.882824] device vif15.0-emu entered promiscuous mode
[321549.885261] virbr0: port 4(vif15.0-emu) entered blocking state
[321549.885263] virbr0: port 4(vif15.0-emu) entered listening state
[321551.986627] virbr0: port 4(vif15.0-emu) entered learning state
[321554.119732] virbr0: port 4(vif15.0-emu) entered forwarding state
[321554.119737] virbr0: topology change detected, propagating
[321567.870377] virbr0: port 4(vif15.0-emu) entered disabled state
[321567.872462] device vif15.0-emu left promiscuous mode
[321567.872468] virbr0: port 4(vif15.0-emu) entered disabled state
[321572.813101] vif vif-15-0 vif15.0: Guest Rx ready
[321572.813114] IPv6: ADDRCONF(NETDEV_CHANGE): vif15.0: link becomes ready
[321572.813167] virbr0: port 1(vif15.0) entered blocking state
[321572.813169] virbr0: port 1(vif15.0) entered listening state
[321575.025315] virbr0: port 1(vif15.0) entered learning state
[321577.158544] virbr0: port 1(vif15.0) entered forwarding state
[321577.158556] virbr0: topology change detected, propagating
[321813.508768] virbr0: port 1(vif15.0) entered disabled state
[321813.787071] virbr0: port 1(vif15.0) entered disabled state
[321813.788122] device vif15.0 left promiscuous mode
[321813.788124] virbr0: port 1(vif15.0) entered disabled state
[321846.955671] virbr0: port 1(vif16.0) entered blocking state
[321846.955694] virbr0: port 1(vif16.0) entered disabled state
[321846.955761] device vif16.0 entered promiscuous mode
[321847.062073] virbr0: port 4(vif16.0-emu) entered blocking state
[321847.062102] virbr0: port 4(vif16.0-emu) entered disabled state
[321847.062158] device vif16.0-emu entered promiscuous mode
[321847.064544] virbr0: port 4(vif16.0-emu) entered blocking state
[321847.064546] virbr0: port 4(vif16.0-emu) entered listening state
[321849.145275] virbr0: port 4(vif16.0-emu) entered learning state
[321851.278367] virbr0: port 4(vif16.0-emu) entered forwarding state
[321851.278376] virbr0: topology change detected, propagating
[321854.889760] virbr0: port 4(vif16.0-emu) entered disabled state
[321854.890457] device vif16.0-emu left promiscuous mode
[321854.890459] virbr0: port 4(vif16.0-emu) entered disabled state
[321859.913219] vif vif-16-0 vif16.0: Guest Rx ready
[321859.913235] IPv6: ADDRCONF(NETDEV_CHANGE): vif16.0: link becomes ready
[321859.913292] virbr0: port 1(vif16.0) entered blocking state
[321859.913293] virbr0: port 1(vif16.0) entered listening state
[321861.944530] virbr0: port 1(vif16.0) entered learning state
[321864.077822] virbr0: port 1(vif16.0) entered forwarding state
[321864.077835] virbr0: topology change detected, propagating
[321880.987505] virbr0: port 6(vif9.0) entered disabled state
[321881.241507] device vif9.0 left promiscuous mode
[321881.241532] virbr0: port 6(vif9.0) entered disabled state
[321936.013735] virbr0: port 4(vif17.0) entered blocking state
[321936.013767] virbr0: port 4(vif17.0) entered disabled state
[321936.013848] device vif17.0 entered promiscuous mode
[321936.114209] virbr0: port 6(vif17.0-emu) entered blocking state
[321936.114231] virbr0: port 6(vif17.0-emu) entered disabled state
[321936.114342] device vif17.0-emu entered promiscuous mode
[321936.116590] virbr0: port 6(vif17.0-emu) entered blocking state
[321936.116592] virbr0: port 6(vif17.0-emu) entered listening state
[321938.314172] virbr0: port 6(vif17.0-emu) entered learning state
[321940.447297] virbr0: port 6(vif17.0-emu) entered forwarding state
[321940.447306] virbr0: topology change detected, propagating
[321948.460337] virbr0: port 6(vif17.0-emu) entered disabled state
[321948.460898] device vif17.0-emu left promiscuous mode
[321948.460903] virbr0: port 6(vif17.0-emu) entered disabled state
[321951.825874] vif vif-17-0 vif17.0: Guest Rx ready
[321951.825887] IPv6: ADDRCONF(NETDEV_CHANGE): vif17.0: link becomes ready
[321951.825930] virbr0: port 4(vif17.0) entered blocking state
[321951.825931] virbr0: port 4(vif17.0) entered listening state
[321953.886637] virbr0: port 4(vif17.0) entered learning state
[321956.019858] virbr0: port 4(vif17.0) entered forwarding state
[321956.019859] virbr0: topology change detected, propagating
[322007.415874] virbr0: port 7(vif4.0) entered disabled state
[322007.557684] virbr0: port 7(vif4.0) entered disabled state
[322007.558708] device vif4.0 left promiscuous mode
[322007.558710] virbr0: port 7(vif4.0) entered disabled state
[322089.569260] virbr0: port 4(vif17.0) entered disabled state
[322089.892682] device vif17.0 left promiscuous mode
[322089.892704] virbr0: port 4(vif17.0) entered disabled state
[322114.395543] virbr0: port 4(vif18.0) entered blocking state
[322114.395560] virbr0: port 4(vif18.0) entered disabled state
[322114.395604] device vif18.0 entered promiscuous mode
[322114.498488] virbr0: port 6(vif18.0-emu) entered blocking state
[322114.498506] virbr0: port 6(vif18.0-emu) entered disabled state
[322114.498554] device vif18.0-emu entered promiscuous mode
[322114.500771] virbr0: port 6(vif18.0-emu) entered blocking state
[322114.500773] virbr0: port 6(vif18.0-emu) entered listening state
[322116.652046] virbr0: port 6(vif18.0-emu) entered learning state
[322118.785163] virbr0: port 6(vif18.0-emu) entered forwarding state
[322118.785171] virbr0: topology change detected, propagating
[322122.487548] virbr0: port 6(vif18.0-emu) entered disabled state
[322122.488745] device vif18.0-emu left promiscuous mode
[322122.488747] virbr0: port 6(vif18.0-emu) entered disabled state
[322124.457864] vif vif-18-0 vif18.0: Guest Rx ready
[322124.457877] IPv6: ADDRCONF(NETDEV_CHANGE): vif18.0: link becomes ready
[322124.457932] virbr0: port 4(vif18.0) entered blocking state
[322124.457933] virbr0: port 4(vif18.0) entered listening state
[322126.464792] virbr0: port 4(vif18.0) entered learning state
[322128.601352] virbr0: port 4(vif18.0) entered forwarding state
[322128.601353] virbr0: topology change detected, propagating
[322128.979569] virbr0: port 6(vif19.0) entered blocking state
[322128.979587] virbr0: port 6(vif19.0) entered disabled state
[322128.979642] device vif19.0 entered promiscuous mode
[322129.104664] virbr0: port 7(vif19.0-emu) entered blocking state
[322129.104691] virbr0: port 7(vif19.0-emu) entered disabled state
[322129.104746] device vif19.0-emu entered promiscuous mode
[322129.107639] virbr0: port 7(vif19.0-emu) entered blocking state
[322129.107642] virbr0: port 7(vif19.0-emu) entered listening state
[322131.157884] virbr0: port 7(vif19.0-emu) entered learning state
[322133.291134] virbr0: port 7(vif19.0-emu) entered forwarding state
[322133.291147] virbr0: topology change detected, propagating
[322157.464138] virbr0: port 7(vif19.0-emu) entered disabled state
[322157.464725] device vif19.0-emu left promiscuous mode
[322157.464728] virbr0: port 7(vif19.0-emu) entered disabled state
[322162.606191] vif vif-19-0 vif19.0: Guest Rx ready
[322162.606208] IPv6: ADDRCONF(NETDEV_CHANGE): vif19.0: link becomes ready
[322162.606289] virbr0: port 6(vif19.0) entered blocking state
[322162.606291] virbr0: port 6(vif19.0) entered listening state
[322164.649583] virbr0: port 6(vif19.0) entered learning state
[322166.782812] virbr0: port 6(vif19.0) entered forwarding state
[322166.782826] virbr0: topology change detected, propagating
[322236.468787] virbr0: port 6(vif19.0) entered disabled state
[322236.561926] device vif19.0 left promiscuous mode
[322236.561949] virbr0: port 6(vif19.0) entered disabled state
[322248.788149] virbr0: port 6(vif20.0) entered blocking state
[322248.788166] virbr0: port 6(vif20.0) entered disabled state
[322248.788235] device vif20.0 entered promiscuous mode
[322248.895406] virbr0: port 7(vif20.0-emu) entered blocking state
[322248.895428] virbr0: port 7(vif20.0-emu) entered disabled state
[322248.895491] device vif20.0-emu entered promiscuous mode
[322248.897879] virbr0: port 7(vif20.0-emu) entered blocking state
[322248.897880] virbr0: port 7(vif20.0-emu) entered listening state
[322251.045408] virbr0: port 7(vif20.0-emu) entered learning state
[322253.178600] virbr0: port 7(vif20.0-emu) entered forwarding state
[322253.178608] virbr0: topology change detected, propagating
[322256.105263] virbr1: port 2(vif7.0) entered disabled state
[322256.168676] virbr1: port 2(vif7.0) entered disabled state
[322256.169740] device vif7.0 left promiscuous mode
[322256.169743] virbr1: port 2(vif7.0) entered disabled state
[322257.930973] virbr0: port 7(vif20.0-emu) entered disabled state
[322257.931498] device vif20.0-emu left promiscuous mode
[322257.931499] virbr0: port 7(vif20.0-emu) entered disabled state
[322262.827871] vif vif-20-0 vif20.0: Guest Rx ready
[322262.827885] IPv6: ADDRCONF(NETDEV_CHANGE): vif20.0: link becomes ready
[322262.827933] virbr0: port 6(vif20.0) entered blocking state
[322262.827934] virbr0: port 6(vif20.0) entered listening state
[322264.911385] virbr0: port 6(vif20.0) entered learning state
[322267.044583] virbr0: port 6(vif20.0) entered forwarding state
[322267.044623] virbr0: topology change detected, propagating
[322312.266901] virbr1: port 2(vif21.0) entered blocking state
[322312.266924] virbr1: port 2(vif21.0) entered disabled state
[322312.266987] device vif21.0 entered promiscuous mode
[322312.372761] virbr1: port 3(vif21.0-emu) entered blocking state
[322312.372790] virbr1: port 3(vif21.0-emu) entered disabled state
[322312.372864] device vif21.0-emu entered promiscuous mode
[322312.375409] virbr1: port 3(vif21.0-emu) entered blocking state
[322312.375410] virbr1: port 3(vif21.0-emu) entered listening state
[322314.402225] virbr1: port 3(vif21.0-emu) entered learning state
[322316.535391] virbr1: port 3(vif21.0-emu) entered forwarding state
[322316.535403] virbr1: topology change detected, propagating
[322328.154524] virbr1: port 3(vif21.0-emu) entered disabled state
[322328.155560] device vif21.0-emu left promiscuous mode
[322328.155563] virbr1: port 3(vif21.0-emu) entered disabled state
[322335.640586] vif vif-21-0 vif21.0: Guest Rx ready
[322335.640599] IPv6: ADDRCONF(NETDEV_CHANGE): vif21.0: link becomes ready
[322335.640660] virbr1: port 2(vif21.0) entered blocking state
[322335.640662] virbr1: port 2(vif21.0) entered listening state
[322337.654427] virbr1: port 2(vif21.0) entered learning state
[322339.787618] virbr1: port 2(vif21.0) entered forwarding state
[322339.787657] virbr1: topology change detected, propagating
[322348.284913] virbr1: port 2(vif21.0) entered disabled state
[322348.362373] virbr1: port 2(vif21.0) entered disabled state
[322348.363305] device vif21.0 left promiscuous mode
[322348.363307] virbr1: port 2(vif21.0) entered disabled state
[322357.583396] virbr1: port 2(vif22.0) entered blocking state
[322357.583419] virbr1: port 2(vif22.0) entered disabled state
[322357.583481] device vif22.0 entered promiscuous mode
[322357.693326] virbr1: port 3(vif22.0-emu) entered blocking state
[322357.693356] virbr1: port 3(vif22.0-emu) entered disabled state
[322357.693414] device vif22.0-emu entered promiscuous mode
[322357.695800] virbr1: port 3(vif22.0-emu) entered blocking state
[322357.695801] virbr1: port 3(vif22.0-emu) entered listening state
[322359.839908] virbr1: port 3(vif22.0-emu) entered learning state
[322361.973136] virbr1: port 3(vif22.0-emu) entered forwarding state
[322361.973160] virbr1: topology change detected, propagating
[322395.518165] virbr1: port 3(vif22.0-emu) entered disabled state
[322395.518673] device vif22.0-emu left promiscuous mode
[322395.518677] virbr1: port 3(vif22.0-emu) entered disabled state
[322402.298228] virbr1: port 2(vif22.0) entered disabled state
[322402.298920] device vif22.0 left promiscuous mode
[322402.298923] virbr1: port 2(vif22.0) entered disabled state
[322404.994397] virbr1: port 2(vif23.0) entered blocking state
[322404.994424] virbr1: port 2(vif23.0) entered disabled state
[322404.994489] device vif23.0 entered promiscuous mode
[322405.102582] virbr1: port 3(vif23.0-emu) entered blocking state
[322405.102608] virbr1: port 3(vif23.0-emu) entered disabled state
[322405.102662] device vif23.0-emu entered promiscuous mode
[322405.104967] virbr1: port 3(vif23.0-emu) entered blocking state
[322405.104968] virbr1: port 3(vif23.0-emu) entered listening state
[322407.197678] virbr1: port 3(vif23.0-emu) entered learning state
[322409.330820] virbr1: port 3(vif23.0-emu) entered forwarding state
[322409.330831] virbr1: topology change detected, propagating
[322420.269322] virbr1: port 3(vif23.0-emu) entered disabled state
[322420.269988] device vif23.0-emu left promiscuous mode
[322420.269990] virbr1: port 3(vif23.0-emu) entered disabled state
[322427.331937] vif vif-23-0 vif23.0: Guest Rx ready
[322427.331950] IPv6: ADDRCONF(NETDEV_CHANGE): vif23.0: link becomes ready
[322427.331997] virbr1: port 2(vif23.0) entered blocking state
[322427.331998] virbr1: port 2(vif23.0) entered listening state
[322429.383250] virbr1: port 2(vif23.0) entered learning state
[322431.516452] virbr1: port 2(vif23.0) entered forwarding state
[322431.516491] virbr1: topology change detected, propagating
[322465.168377] virbr1: port 2(vif23.0) entered disabled state
[322465.259742] virbr1: port 2(vif23.0) entered disabled state
[322465.261041] device vif23.0 left promiscuous mode
[322465.261044] virbr1: port 2(vif23.0) entered disabled state
[322494.662819] virbr1: port 2(vif24.0) entered blocking state
[322494.662842] virbr1: port 2(vif24.0) entered disabled state
[322494.662902] device vif24.0 entered promiscuous mode
[322494.770513] virbr1: port 3(vif24.0-emu) entered blocking state
[322494.770532] virbr1: port 3(vif24.0-emu) entered disabled state
[322494.770578] device vif24.0-emu entered promiscuous mode
[322494.772943] virbr1: port 3(vif24.0-emu) entered blocking state
[322494.772944] virbr1: port 3(vif24.0-emu) entered listening state
[322496.793229] virbr1: port 3(vif24.0-emu) entered learning state
[322498.926407] virbr1: port 3(vif24.0-emu) entered forwarding state
[322498.926419] virbr1: topology change detected, propagating
[322510.251932] virbr1: port 3(vif24.0-emu) entered disabled state
[322510.252569] device vif24.0-emu left promiscuous mode
[322510.252571] virbr1: port 3(vif24.0-emu) entered disabled state
[322517.717143] vif vif-24-0 vif24.0: Guest Rx ready
[322517.717156] IPv6: ADDRCONF(NETDEV_CHANGE): vif24.0: link becomes ready
[322517.717203] virbr1: port 2(vif24.0) entered blocking state
[322517.717204] virbr1: port 2(vif24.0) entered listening state
[322519.832117] virbr1: port 2(vif24.0) entered learning state
[322521.965359] virbr1: port 2(vif24.0) entered forwarding state
[322521.965423] virbr1: topology change detected, propagating
[322853.183897] virbr1: port 1(vif6.0) entered disabled state
[322853.399533] device vif6.0 left promiscuous mode
[322853.399555] virbr1: port 1(vif6.0) entered disabled state
[322856.450137] virbr1: port 1(vif25.0) entered blocking state
[322856.450166] virbr1: port 1(vif25.0) entered disabled state
[322856.450257] device vif25.0 entered promiscuous mode
[322856.557284] virbr1: port 3(vif25.0-emu) entered blocking state
[322856.557308] virbr1: port 3(vif25.0-emu) entered disabled state
[322856.557357] device vif25.0-emu entered promiscuous mode
[322856.559771] virbr1: port 3(vif25.0-emu) entered blocking state
[322856.559772] virbr1: port 3(vif25.0-emu) entered listening state
[322858.588632] virbr1: port 3(vif25.0-emu) entered learning state
[322860.721841] virbr1: port 3(vif25.0-emu) entered forwarding state
[322860.721856] virbr1: topology change detected, propagating
[322878.181191] virbr1: port 3(vif25.0-emu) entered disabled state
[322878.181693] device vif25.0-emu left promiscuous mode
[322878.181698] virbr1: port 3(vif25.0-emu) entered disabled state
[322885.762623] vif vif-25-0 vif25.0: Guest Rx ready
[322885.762637] IPv6: ADDRCONF(NETDEV_CHANGE): vif25.0: link becomes ready
[322885.762700] virbr1: port 1(vif25.0) entered blocking state
[322885.762701] virbr1: port 1(vif25.0) entered listening state
[322887.813799] virbr1: port 1(vif25.0) entered learning state
[322889.947043] virbr1: port 1(vif25.0) entered forwarding state
[322889.947045] virbr1: topology change detected, propagating
[356205.807407] virbr0: port 3(vif2.0) entered disabled state
[356205.923254] virbr0: port 3(vif2.0) entered disabled state
[356205.924689] device vif2.0 left promiscuous mode
[356205.924692] virbr0: port 3(vif2.0) entered disabled state
[356266.802181] virbr0: port 3(vif26.0) entered blocking state
[356266.802204] virbr0: port 3(vif26.0) entered disabled state
[356266.802276] device vif26.0 entered promiscuous mode
[356266.909445] virbr0: port 7(vif26.0-emu) entered blocking state
[356266.909468] virbr0: port 7(vif26.0-emu) entered disabled state
[356266.909555] device vif26.0-emu entered promiscuous mode
[356266.912054] virbr0: port 7(vif26.0-emu) entered blocking state
[356266.912056] virbr0: port 7(vif26.0-emu) entered listening state
[356268.986573] virbr0: port 7(vif26.0-emu) entered learning state
[356271.119825] virbr0: port 7(vif26.0-emu) entered forwarding state
[356271.119827] virbr0: topology change detected, propagating
[356302.358470] virbr0: port 7(vif26.0-emu) entered disabled state
[356302.361754] device vif26.0-emu left promiscuous mode
[356302.361759] virbr0: port 7(vif26.0-emu) entered disabled state
[356308.407574] vif vif-26-0 vif26.0: Guest Rx ready
[356308.407593] IPv6: ADDRCONF(NETDEV_CHANGE): vif26.0: link becomes ready
[356308.407659] virbr0: port 3(vif26.0) entered blocking state
[356308.407660] virbr0: port 3(vif26.0) entered listening state
[356310.584511] virbr0: port 3(vif26.0) entered learning state
[356312.717820] virbr0: port 3(vif26.0) entered forwarding state
[356312.717822] virbr0: topology change detected, propagating
[357568.788313] virbr0: port 5(vif3.0) entered disabled state
[357568.997017] virbr0: port 5(vif3.0) entered disabled state
[357568.997917] device vif3.0 left promiscuous mode
[357568.997920] virbr0: port 5(vif3.0) entered disabled state
[357600.762826] virbr0: port 5(vif27.0) entered blocking state
[357600.762852] virbr0: port 5(vif27.0) entered disabled state
[357600.762901] device vif27.0 entered promiscuous mode
[357600.872196] virbr0: port 7(vif27.0-emu) entered blocking state
[357600.872219] virbr0: port 7(vif27.0-emu) entered disabled state
[357600.872295] device vif27.0-emu entered promiscuous mode
[357600.874818] virbr0: port 7(vif27.0-emu) entered blocking state
[357600.874820] virbr0: port 7(vif27.0-emu) entered listening state
[357602.893682] virbr0: port 7(vif27.0-emu) entered learning state
[357605.026913] virbr0: port 7(vif27.0-emu) entered forwarding state
[357605.026915] virbr0: topology change detected, propagating
[357620.943125] virbr0: port 7(vif27.0-emu) entered disabled state
[357620.943889] device vif27.0-emu left promiscuous mode
[357620.943894] virbr0: port 7(vif27.0-emu) entered disabled state
[357623.039386] vif vif-27-0 vif27.0: Guest Rx ready
[357623.039410] IPv6: ADDRCONF(NETDEV_CHANGE): vif27.0: link becomes ready
[357623.039495] virbr0: port 5(vif27.0) entered blocking state
[357623.039497] virbr0: port 5(vif27.0) entered listening state
[357625.079248] virbr0: port 5(vif27.0) entered learning state
[357627.212486] virbr0: port 5(vif27.0) entered forwarding state
[357627.212488] virbr0: topology change detected, propagating
[358300.798487] virbr0: port 9(vif5.0) entered disabled state
[358301.016183] virbr0: port 9(vif5.0) entered disabled state
[358301.017609] device vif5.0 left promiscuous mode
[358301.017613] virbr0: port 9(vif5.0) entered disabled state
[358326.936266] virbr0: port 7(vif28.0) entered blocking state
[358326.936290] virbr0: port 7(vif28.0) entered disabled state
[358326.936339] device vif28.0 entered promiscuous mode
[358327.047393] virbr0: port 8(vif28.0-emu) entered blocking state
[358327.047418] virbr0: port 8(vif28.0-emu) entered disabled state
[358327.047467] device vif28.0-emu entered promiscuous mode
[358327.050024] virbr0: port 8(vif28.0-emu) entered blocking state
[358327.050026] virbr0: port 8(vif28.0-emu) entered listening state
[358329.257674] virbr0: port 8(vif28.0-emu) entered learning state
[358331.390898] virbr0: port 8(vif28.0-emu) entered forwarding state
[358331.390900] virbr0: topology change detected, propagating
[358346.127044] virbr0: port 8(vif28.0-emu) entered disabled state
[358346.130420] device vif28.0-emu left promiscuous mode
[358346.130429] virbr0: port 8(vif28.0-emu) entered disabled state
[358348.661989] vif vif-28-0 vif28.0: Guest Rx ready
[358348.662006] IPv6: ADDRCONF(NETDEV_CHANGE): vif28.0: link becomes ready
[358348.662066] virbr0: port 7(vif28.0) entered blocking state
[358348.662067] virbr0: port 7(vif28.0) entered listening state
[358350.803281] virbr0: port 7(vif28.0) entered learning state
[358352.939834] virbr0: port 7(vif28.0) entered forwarding state
[358352.939837] virbr0: topology change detected, propagating
[358788.846991] virbr0: port 2(vif14.0) entered disabled state
[358789.053450] virbr0: port 2(vif14.0) entered disabled state
[358789.054556] device vif14.0 left promiscuous mode
[358789.054558] virbr0: port 2(vif14.0) entered disabled state
[358814.474801] virbr0: port 2(vif29.0) entered blocking state
[358814.474831] virbr0: port 2(vif29.0) entered disabled state
[358814.474909] device vif29.0 entered promiscuous mode
[358814.583245] virbr0: port 8(vif29.0-emu) entered blocking state
[358814.583271] virbr0: port 8(vif29.0-emu) entered disabled state
[358814.583337] device vif29.0-emu entered promiscuous mode
[358814.585904] virbr0: port 8(vif29.0-emu) entered blocking state
[358814.585906] virbr0: port 8(vif29.0-emu) entered listening state
[358816.700175] virbr0: port 8(vif29.0-emu) entered learning state
[358818.833401] virbr0: port 8(vif29.0-emu) entered forwarding state
[358818.833402] virbr0: topology change detected, propagating
[358834.788687] virbr0: port 8(vif29.0-emu) entered disabled state
[358834.790784] device vif29.0-emu left promiscuous mode
[358834.790788] virbr0: port 8(vif29.0-emu) entered disabled state
[358845.709780] vif vif-29-0 vif29.0: Guest Rx ready
[358845.709798] IPv6: ADDRCONF(NETDEV_CHANGE): vif29.0: link becomes ready
[358845.709867] virbr0: port 2(vif29.0) entered blocking state
[358845.709869] virbr0: port 2(vif29.0) entered listening state
[358847.848634] virbr0: port 2(vif29.0) entered learning state
[358849.981859] virbr0: port 2(vif29.0) entered forwarding state
[358849.981861] virbr0: topology change detected, propagating
[359279.607795] virbr0: port 1(vif16.0) entered disabled state
[359279.907497] virbr0: port 1(vif16.0) entered disabled state
[359279.908794] device vif16.0 left promiscuous mode
[359279.908797] virbr0: port 1(vif16.0) entered disabled state
[359390.034038] virbr0: port 1(vif30.0) entered blocking state
[359390.034061] virbr0: port 1(vif30.0) entered disabled state
[359390.034128] device vif30.0 entered promiscuous mode
[359390.145626] virbr0: port 8(vif30.0-emu) entered blocking state
[359390.145643] virbr0: port 8(vif30.0-emu) entered disabled state
[359390.145689] device vif30.0-emu entered promiscuous mode
[359390.148559] virbr0: port 8(vif30.0-emu) entered blocking state
[359390.148560] virbr0: port 8(vif30.0-emu) entered listening state
[359392.248315] virbr0: port 8(vif30.0-emu) entered learning state
[359394.378207] virbr0: port 8(vif30.0-emu) entered forwarding state
[359394.378209] virbr0: topology change detected, propagating
[359410.047197] virbr0: port 8(vif30.0-emu) entered disabled state
[359410.051025] device vif30.0-emu left promiscuous mode
[359410.051031] virbr0: port 8(vif30.0-emu) entered disabled state
[359417.553783] vif vif-30-0 vif30.0: Guest Rx ready
[359417.553800] IPv6: ADDRCONF(NETDEV_CHANGE): vif30.0: link becomes ready
[359417.553855] virbr0: port 1(vif30.0) entered blocking state
[359417.553856] virbr0: port 1(vif30.0) entered listening state
[359419.766952] virbr0: port 1(vif30.0) entered learning state
[359421.896843] virbr0: port 1(vif30.0) entered forwarding state
[359421.896845] virbr0: topology change detected, propagating
[361276.426400] virbr0: port 4(vif18.0) entered disabled state
[361276.701201] virbr0: port 4(vif18.0) entered disabled state
[361276.702254] device vif18.0 left promiscuous mode
[361276.702261] virbr0: port 4(vif18.0) entered disabled state
[361339.487869] virbr0: port 4(vif31.0) entered blocking state
[361339.487894] virbr0: port 4(vif31.0) entered disabled state
[361339.487956] device vif31.0 entered promiscuous mode
[361339.598380] virbr0: port 8(vif31.0-emu) entered blocking state
[361339.598403] virbr0: port 8(vif31.0-emu) entered disabled state
[361339.598474] device vif31.0-emu entered promiscuous mode
[361339.600929] virbr0: port 8(vif31.0-emu) entered blocking state
[361339.600931] virbr0: port 8(vif31.0-emu) entered listening state
[361341.800161] virbr0: port 8(vif31.0-emu) entered learning state
[361343.933393] virbr0: port 8(vif31.0-emu) entered forwarding state
[361343.933395] virbr0: topology change detected, propagating
[361351.330500] virbr0: port 8(vif31.0-emu) entered disabled state
[361351.332161] device vif31.0-emu left promiscuous mode
[361351.332163] virbr0: port 8(vif31.0-emu) entered disabled state
[361355.175488] vif vif-31-0 vif31.0: Guest Rx ready
[361355.175504] IPv6: ADDRCONF(NETDEV_CHANGE): vif31.0: link becomes ready
[361355.175561] virbr0: port 4(vif31.0) entered blocking state
[361355.175563] virbr0: port 4(vif31.0) entered listening state
[361357.376044] virbr0: port 4(vif31.0) entered learning state
[361359.505984] virbr0: port 4(vif31.0) entered forwarding state
[361359.505986] virbr0: topology change detected, propagating
[362331.018208] virbr0: port 6(vif20.0) entered disabled state
[362331.106411] virbr0: port 6(vif20.0) entered disabled state
[362331.107453] device vif20.0 left promiscuous mode
[362331.107455] virbr0: port 6(vif20.0) entered disabled state
[362343.584618] virbr0: port 6(vif32.0) entered blocking state
[362343.584640] virbr0: port 6(vif32.0) entered disabled state
[362343.584689] device vif32.0 entered promiscuous mode
[362343.692671] virbr0: port 8(vif32.0-emu) entered blocking state
[362343.692703] virbr0: port 8(vif32.0-emu) entered disabled state
[362343.692768] device vif32.0-emu entered promiscuous mode
[362343.695185] virbr0: port 8(vif32.0-emu) entered blocking state
[362343.695186] virbr0: port 8(vif32.0-emu) entered listening state
[362345.699754] virbr0: port 8(vif32.0-emu) entered learning state
[362347.829649] virbr0: port 8(vif32.0-emu) entered forwarding state
[362347.829651] virbr0: topology change detected, propagating
[362356.680187] virbr0: port 8(vif32.0-emu) entered disabled state
[362356.681065] device vif32.0-emu left promiscuous mode
[362356.681074] virbr0: port 8(vif32.0-emu) entered disabled state
[362362.655799] vif vif-32-0 vif32.0: Guest Rx ready
[362362.655812] IPv6: ADDRCONF(NETDEV_CHANGE): vif32.0: link becomes ready
[362362.655869] virbr0: port 6(vif32.0) entered blocking state
[362362.655871] virbr0: port 6(vif32.0) entered listening state
[362364.685468] virbr0: port 6(vif32.0) entered learning state
[362366.815365] virbr0: port 6(vif32.0) entered forwarding state
[362366.815367] virbr0: topology change detected, propagating
[362453.896580] virbr1: port 2(vif24.0) entered disabled state
[362453.978059] virbr1: port 2(vif24.0) entered disabled state
[362453.979303] device vif24.0 left promiscuous mode
[362453.979306] virbr1: port 2(vif24.0) entered disabled state
[362468.695060] virbr1: port 2(vif33.0) entered blocking state
[362468.695083] virbr1: port 2(vif33.0) entered disabled state
[362468.695142] device vif33.0 entered promiscuous mode
[362468.804561] virbr1: port 3(vif33.0-emu) entered blocking state
[362468.804580] virbr1: port 3(vif33.0-emu) entered disabled state
[362468.804637] device vif33.0-emu entered promiscuous mode
[362468.807009] virbr1: port 3(vif33.0-emu) entered blocking state
[362468.807011] virbr1: port 3(vif33.0-emu) entered listening state
[362470.916820] virbr1: port 3(vif33.0-emu) entered learning state
[362473.053379] virbr1: port 3(vif33.0-emu) entered forwarding state
[362473.053381] virbr1: topology change detected, propagating
[362487.810978] virbr1: port 3(vif33.0-emu) entered disabled state
[362487.812278] device vif33.0-emu left promiscuous mode
[362487.812280] virbr1: port 3(vif33.0-emu) entered disabled state
[362499.716164] vif vif-33-0 vif33.0: Guest Rx ready
[362499.716176] IPv6: ADDRCONF(NETDEV_CHANGE): vif33.0: link becomes ready
[362499.716233] virbr1: port 2(vif33.0) entered blocking state
[362499.716234] virbr1: port 2(vif33.0) entered listening state
[362501.851942] virbr1: port 2(vif33.0) entered learning state
[362503.981834] virbr1: port 2(vif33.0) entered forwarding state
[362503.981835] virbr1: topology change detected, propagating
[362763.603019] virbr1: port 1(vif25.0) entered disabled state
[362763.775919] virbr1: port 1(vif25.0) entered disabled state
[362763.776970] device vif25.0 left promiscuous mode
[362763.776972] virbr1: port 1(vif25.0) entered disabled state
[362817.202937] virbr1: port 1(vif34.0) entered blocking state
[362817.202960] virbr1: port 1(vif34.0) entered disabled state
[362817.203040] device vif34.0 entered promiscuous mode
[362817.313441] virbr1: port 3(vif34.0-emu) entered blocking state
[362817.313464] virbr1: port 3(vif34.0-emu) entered disabled state
[362817.313516] device vif34.0-emu entered promiscuous mode
[362817.316018] virbr1: port 3(vif34.0-emu) entered blocking state
[362817.316020] virbr1: port 3(vif34.0-emu) entered listening state
[362819.486057] virbr1: port 3(vif34.0-emu) entered learning state
[362821.619278] virbr1: port 3(vif34.0-emu) entered forwarding state
[362821.619288] virbr1: topology change detected, propagating
[362838.008907] virbr1: port 3(vif34.0-emu) entered disabled state
[362838.009418] device vif34.0-emu left promiscuous mode
[362838.009420] virbr1: port 3(vif34.0-emu) entered disabled state
[362845.416577] vif vif-34-0 vif34.0: Guest Rx ready
[362845.416591] IPv6: ADDRCONF(NETDEV_CHANGE): vif34.0: link becomes ready
[362845.416644] virbr1: port 1(vif34.0) entered blocking state
[362845.416645] virbr1: port 1(vif34.0) entered listening state
[362847.431316] virbr1: port 1(vif34.0) entered learning state
[362849.564554] virbr1: port 1(vif34.0) entered forwarding state
[362849.564556] virbr1: topology change detected, propagating
[379331.868682] virbr1: port 1(vif34.0) entered disabled state
[379332.084594] device vif34.0 left promiscuous mode
[379332.084618] virbr1: port 1(vif34.0) entered disabled state
[379335.149637] virbr1: port 1(vif35.0) entered blocking state
[379335.149669] virbr1: port 1(vif35.0) entered disabled state
[379335.149751] device vif35.0 entered promiscuous mode
[379335.259147] virbr1: port 3(vif35.0-emu) entered blocking state
[379335.259172] virbr1: port 3(vif35.0-emu) entered disabled state
[379335.259235] device vif35.0-emu entered promiscuous mode
[379335.261699] virbr1: port 3(vif35.0-emu) entered blocking state
[379335.261701] virbr1: port 3(vif35.0-emu) entered listening state
[379337.281580] virbr1: port 3(vif35.0-emu) entered learning state
[379339.414752] virbr1: port 3(vif35.0-emu) entered forwarding state
[379339.414762] virbr1: topology change detected, propagating
[379357.164972] virbr1: port 3(vif35.0-emu) entered disabled state
[379357.165510] device vif35.0-emu left promiscuous mode
[379357.165512] virbr1: port 3(vif35.0-emu) entered disabled state
[379364.959382] vif vif-35-0 vif35.0: Guest Rx ready
[379364.959394] IPv6: ADDRCONF(NETDEV_CHANGE): vif35.0: link becomes ready
[379364.959438] virbr1: port 1(vif35.0) entered blocking state
[379364.959439] virbr1: port 1(vif35.0) entered listening state
[379367.146745] virbr1: port 1(vif35.0) entered learning state
[379369.279940] virbr1: port 1(vif35.0) entered forwarding state
[379369.279953] virbr1: topology change detected, propagating
[379530.676748] virbr1: port 1(vif35.0) entered disabled state
[379530.845480] virbr1: port 1(vif35.0) entered disabled state
[379530.846491] device vif35.0 left promiscuous mode
[379530.846494] virbr1: port 1(vif35.0) entered disabled state
[379533.838207] virbr1: port 1(vif36.0) entered blocking state
[379533.838232] virbr1: port 1(vif36.0) entered disabled state
[379533.838285] device vif36.0 entered promiscuous mode
[379533.948274] virbr1: port 3(vif36.0-emu) entered blocking state
[379533.948306] virbr1: port 3(vif36.0-emu) entered disabled state
[379533.948389] device vif36.0-emu entered promiscuous mode
[379533.950960] virbr1: port 3(vif36.0-emu) entered blocking state
[379533.950961] virbr1: port 3(vif36.0-emu) entered listening state
[379536.098342] virbr1: port 3(vif36.0-emu) entered learning state
[379538.231583] virbr1: port 3(vif36.0-emu) entered forwarding state
[379538.231593] virbr1: topology change detected, propagating
[379554.953285] virbr1: port 3(vif36.0-emu) entered disabled state
[379554.953817] device vif36.0-emu left promiscuous mode
[379554.953819] virbr1: port 3(vif36.0-emu) entered disabled state
[379562.753884] vif vif-36-0 vif36.0: Guest Rx ready
[379562.753898] IPv6: ADDRCONF(NETDEV_CHANGE): vif36.0: link becomes ready
[379562.753940] virbr1: port 1(vif36.0) entered blocking state
[379562.753941] virbr1: port 1(vif36.0) entered listening state
[379564.896915] virbr1: port 1(vif36.0) entered learning state
[379567.030148] virbr1: port 1(vif36.0) entered forwarding state
[379567.030158] virbr1: topology change detected, propagating
[406015.121413] virbr1: port 1(vif36.0) entered disabled state
[406015.367992] device vif36.0 left promiscuous mode
[406015.368013] virbr1: port 1(vif36.0) entered disabled state
[406431.886202] virbr1: port 1(vif37.0) entered blocking state
[406431.886271] virbr1: port 1(vif37.0) entered disabled state
[406431.886382] device vif37.0 entered promiscuous mode
[406432.199945] virbr1: port 3(vif37.0-emu) entered blocking state
[406432.200013] virbr1: port 3(vif37.0-emu) entered disabled state
[406432.200257] device vif37.0-emu entered promiscuous mode
[406432.204492] virbr1: port 3(vif37.0-emu) entered blocking state
[406432.204494] virbr1: port 3(vif37.0-emu) entered listening state
[406434.394092] virbr1: port 3(vif37.0-emu) entered learning state
[406436.527330] virbr1: port 3(vif37.0-emu) entered forwarding state
[406436.527332] virbr1: topology change detected, propagating
[406465.205725] virbr1: port 3(vif37.0-emu) entered disabled state
[406465.212908] device vif37.0-emu left promiscuous mode
[406465.212917] virbr1: port 3(vif37.0-emu) entered disabled state
[406479.108252] vif vif-37-0 vif37.0: Guest Rx ready
[406479.108274] IPv6: ADDRCONF(NETDEV_CHANGE): vif37.0: link becomes ready
[406479.108353] virbr1: port 1(vif37.0) entered blocking state
[406479.108354] virbr1: port 1(vif37.0) entered listening state
[406481.111988] virbr1: port 1(vif37.0) entered learning state
[406483.245225] virbr1: port 1(vif37.0) entered forwarding state
[406483.245227] virbr1: topology change detected, propagating
[410716.802619] virbr1: port 1(vif37.0) entered disabled state
[410716.992325] device vif37.0 left promiscuous mode
[410716.992350] virbr1: port 1(vif37.0) entered disabled state
[410720.009688] virbr1: port 1(vif38.0) entered blocking state
[410720.009716] virbr1: port 1(vif38.0) entered disabled state
[410720.009776] device vif38.0 entered promiscuous mode
[410720.122385] virbr1: port 3(vif38.0-emu) entered blocking state
[410720.122408] virbr1: port 3(vif38.0-emu) entered disabled state
[410720.122469] device vif38.0-emu entered promiscuous mode
[410720.125148] virbr1: port 3(vif38.0-emu) entered blocking state
[410720.125149] virbr1: port 3(vif38.0-emu) entered listening state
[410722.179810] virbr1: port 3(vif38.0-emu) entered learning state
[410724.313026] virbr1: port 3(vif38.0-emu) entered forwarding state
[410724.313036] virbr1: topology change detected, propagating
[410742.271976] virbr1: port 3(vif38.0-emu) entered disabled state
[410742.273044] device vif38.0-emu left promiscuous mode
[410742.273047] virbr1: port 3(vif38.0-emu) entered disabled state
[410749.831551] vif vif-38-0 vif38.0: Guest Rx ready
[410749.831568] IPv6: ADDRCONF(NETDEV_CHANGE): vif38.0: link becomes ready
[410749.831618] virbr1: port 1(vif38.0) entered blocking state
[410749.831619] virbr1: port 1(vif38.0) entered listening state
[410751.831583] virbr1: port 1(vif38.0) entered learning state
[410753.964804] virbr1: port 1(vif38.0) entered forwarding state
[410753.964816] virbr1: topology change detected, propagating
[427446.355808] virbr0: port 7(vif28.0) entered disabled state
[427446.526252] device vif28.0 left promiscuous mode
[427446.526277] virbr0: port 7(vif28.0) entered disabled state
[427449.263548] virbr0: port 7(vif39.0) entered blocking state
[427449.263568] virbr0: port 7(vif39.0) entered disabled state
[427449.263618] device vif39.0 entered promiscuous mode
[427449.370589] virbr0: port 8(vif39.0-emu) entered blocking state
[427449.370612] virbr0: port 8(vif39.0-emu) entered disabled state
[427449.370664] device vif39.0-emu entered promiscuous mode
[427449.373125] virbr0: port 8(vif39.0-emu) entered blocking state
[427449.373126] virbr0: port 8(vif39.0-emu) entered listening state
[427451.378075] virbr0: port 8(vif39.0-emu) entered learning state
[427453.511229] virbr0: port 8(vif39.0-emu) entered forwarding state
[427453.511231] virbr0: topology change detected, propagating
[427457.355676] virbr0: port 8(vif39.0-emu) entered disabled state
[427457.357885] device vif39.0-emu left promiscuous mode
[427457.357888] virbr0: port 8(vif39.0-emu) entered disabled state
[427458.889667] vif vif-39-0 vif39.0: Guest Rx ready
[427458.889681] IPv6: ADDRCONF(NETDEV_CHANGE): vif39.0: link becomes ready
[427458.889740] virbr0: port 7(vif39.0) entered blocking state
[427458.889741] virbr0: port 7(vif39.0) entered listening state
[427460.977546] virbr0: port 7(vif39.0) entered learning state
[427463.110760] virbr0: port 7(vif39.0) entered forwarding state
[427463.110761] virbr0: topology change detected, propagating
[616552.067245] virbr0: port 3(vif26.0) entered disabled state
[616552.458505] device vif26.0 left promiscuous mode
[616552.458529] virbr0: port 3(vif26.0) entered disabled state
[616554.944915] virbr0: port 3(vif40.0) entered blocking state
[616554.944938] virbr0: port 3(vif40.0) entered disabled state
[616554.944987] device vif40.0 entered promiscuous mode
[616555.054766] virbr0: port 8(vif40.0-emu) entered blocking state
[616555.054783] virbr0: port 8(vif40.0-emu) entered disabled state
[616555.054832] device vif40.0-emu entered promiscuous mode
[616555.057198] virbr0: port 8(vif40.0-emu) entered blocking state
[616555.057199] virbr0: port 8(vif40.0-emu) entered listening state
[616557.100622] virbr0: port 8(vif40.0-emu) entered learning state
[616559.233735] virbr0: port 8(vif40.0-emu) entered forwarding state
[616559.233749] virbr0: topology change detected, propagating
[616569.446099] virbr0: port 8(vif40.0-emu) entered disabled state
[616569.446724] device vif40.0-emu left promiscuous mode
[616569.446727] virbr0: port 8(vif40.0-emu) entered disabled state
[616571.900808] vif vif-40-0 vif40.0: Guest Rx ready
[616571.900826] IPv6: ADDRCONF(NETDEV_CHANGE): vif40.0: link becomes ready
[616571.900885] virbr0: port 3(vif40.0) entered blocking state
[616571.900887] virbr0: port 3(vif40.0) entered listening state
[616573.952990] virbr0: port 3(vif40.0) entered learning state
[616576.086312] virbr0: port 3(vif40.0) entered forwarding state
[616576.086353] virbr0: topology change detected, propagating
[643447.350963] virbr0: port 7(vif39.0) entered disabled state
[643447.563738] virbr0: port 7(vif39.0) entered disabled state
[643447.564752] device vif39.0 left promiscuous mode
[643447.564754] virbr0: port 7(vif39.0) entered disabled state
[643484.627687] virbr0: port 7(vif41.0) entered blocking state
[643484.627712] virbr0: port 7(vif41.0) entered disabled state
[643484.627783] device vif41.0 entered promiscuous mode
[643484.735575] virbr0: port 8(vif41.0-emu) entered blocking state
[643484.735600] virbr0: port 8(vif41.0-emu) entered disabled state
[643484.735651] device vif41.0-emu entered promiscuous mode
[643484.737962] virbr0: port 8(vif41.0-emu) entered blocking state
[643484.737964] virbr0: port 8(vif41.0-emu) entered listening state
[643486.749928] virbr0: port 8(vif41.0-emu) entered learning state
[643488.883156] virbr0: port 8(vif41.0-emu) entered forwarding state
[643488.883166] virbr0: topology change detected, propagating
[643492.885794] virbr0: port 8(vif41.0-emu) entered disabled state
[643492.888089] device vif41.0-emu left promiscuous mode
[643492.888091] virbr0: port 8(vif41.0-emu) entered disabled state
[643494.338182] vif vif-41-0 vif41.0: Guest Rx ready
[643494.338195] IPv6: ADDRCONF(NETDEV_CHANGE): vif41.0: link becomes ready
[643494.338238] virbr0: port 7(vif41.0) entered blocking state
[643494.338240] virbr0: port 7(vif41.0) entered listening state
[643496.349399] virbr0: port 7(vif41.0) entered learning state
[643498.482635] virbr0: port 7(vif41.0) entered forwarding state
[643498.482637] virbr0: topology change detected, propagating
[643781.923426] virbr0: port 7(vif41.0) entered disabled state
[643782.123704] device vif41.0 left promiscuous mode
[643782.123727] virbr0: port 7(vif41.0) entered disabled state
[643970.262376] virbr0: port 7(vif42.0) entered blocking state
[643970.262407] virbr0: port 7(vif42.0) entered disabled state
[643970.262491] device vif42.0 entered promiscuous mode
[643970.369717] virbr0: port 8(vif42.0-emu) entered blocking state
[643970.369719] virbr0: port 8(vif42.0-emu) entered disabled state
[643970.369768] device vif42.0-emu entered promiscuous mode
[643970.372058] virbr0: port 8(vif42.0-emu) entered blocking state
[643970.372061] virbr0: port 8(vif42.0-emu) entered listening state
[643972.485909] virbr0: port 8(vif42.0-emu) entered learning state
[643974.619041] virbr0: port 8(vif42.0-emu) entered forwarding state
[643974.619042] virbr0: topology change detected, propagating
[643978.188583] virbr0: port 8(vif42.0-emu) entered disabled state
[643978.189159] device vif42.0-emu left promiscuous mode
[643978.189161] virbr0: port 8(vif42.0-emu) entered disabled state
[643979.691183] vif vif-42-0 vif42.0: Guest Rx ready
[643979.691196] IPv6: ADDRCONF(NETDEV_CHANGE): vif42.0: link becomes ready
[643979.691252] virbr0: port 7(vif42.0) entered blocking state
[643979.691253] virbr0: port 7(vif42.0) entered listening state
[643981.872001] virbr0: port 7(vif42.0) entered learning state
[643984.005245] virbr0: port 7(vif42.0) entered forwarding state
[643984.005263] virbr0: topology change detected, propagating

[-- Attachment #4: domx-dmesg.txt --]
[-- Type: text/plain, Size: 39316 bytes --]

[    0.000000] Linux version 5.10.6-arch1-1 (linux@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.35.1) #1 SMP PREEMPT Sat, 09 Jan 2021 18:22:35 +0000
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=09fe54db-a964-4cb1-a896-434ac69e7056 rw quiet ipv6.disable=1 audit=0
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000efffefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000effff000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fc000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000010effffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Xen HVM domU, BIOS 4.14.0 11/14/2020
[    0.000000] Hypervisor detected: Xen HVM
[    0.000000] Xen version 4.14.
[    0.000000] Xen Platform PCI: I/O protocol version 1
[    0.000000] Netfront and the Xen platform PCI driver have been compiled for this kernel: unplug emulated NICs.
[    0.000000] Blkfront and the Xen platform PCI driver have been compiled for this kernel: unplug emulated disks.
               You might have to change the root device
               from /dev/hd[a-d] to /dev/xvd[a-d]
               in your root= kernel command line option
[    0.000025] HVMOP_pagetable_dying not supported
[    0.000510] tsc: Detected 3408.138 MHz processor
[    0.002907] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.002919] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.002934] last_pfn = 0x10f000 max_arch_pfn = 0x400000000
[    0.003134] MTRR default type: write-back
[    0.003137] MTRR fixed ranges enabled:
[    0.003142]   00000-9FFFF write-back
[    0.003145]   A0000-BFFFF write-combining
[    0.003148]   C0000-FFFFF write-back
[    0.003151] MTRR variable ranges enabled:
[    0.003156]   0 base 00F0000000 mask 7FF0000000 uncachable
[    0.003159]   1 disabled
[    0.003161]   2 disabled
[    0.003163]   3 disabled
[    0.003165]   4 disabled
[    0.003167]   5 disabled
[    0.003169]   6 disabled
[    0.003171]   7 disabled
[    0.003203] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.003255] last_pfn = 0xeffff max_arch_pfn = 0x400000000
[    0.026906] found SMP MP-table at [mem 0x000f5d20-0x000f5d2f]
[    0.026953] check: Scanning 1 areas for low memory corruption
[    0.027085] Using GB pages for direct mapping
[    0.027152] RAMDISK: [mem 0x37149000-0x3789bfff]
[    0.027209] ACPI: Early table checksum verification disabled
[    0.027212] ACPI: RSDP 0x00000000000F5C70 000024 (v02 Xen   )
[    0.027215] ACPI: XSDT 0x00000000FC00A8D0 000054 (v01 Xen    HVM      00000000 HVML 00000000)
[    0.027219] ACPI: FACP 0x00000000FC00A5F0 0000F4 (v04 Xen    HVM      00000000 HVML 00000000)
[    0.027223] ACPI: DSDT 0x00000000FC0012C0 0092A3 (v02 Xen    HVM      00000000 INTL 20200925)
[    0.027226] ACPI: FACS 0x00000000FC001280 000040
[    0.027228] ACPI: FACS 0x00000000FC001280 000040
[    0.027230] ACPI: APIC 0x00000000FC00A6F0 000070 (v02 Xen    HVM      00000000 HVML 00000000)
[    0.027233] ACPI: HPET 0x00000000FC00A7E0 000038 (v01 Xen    HVM      00000000 HVML 00000000)
[    0.027235] ACPI: WAET 0x00000000FC00A820 000028 (v01 Xen    HVM      00000000 HVML 00000000)
[    0.027238] ACPI: SSDT 0x00000000FC00A850 000031 (v02 Xen    HVM      00000000 INTL 20200925)
[    0.027240] ACPI: SSDT 0x00000000FC00A890 000031 (v02 Xen    HVM      00000000 INTL 20200925)
[    0.027246] ACPI: Local APIC address 0xfee00000
[    0.028045] No NUMA configuration found
[    0.028045] Faking a node at [mem 0x0000000000000000-0x000000010effffff]
[    0.028047] NODE_DATA(0) allocated [mem 0x10effc000-0x10effffff]
[    0.032409] Zone ranges:
[    0.032409]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.032410]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.032411]   Normal   [mem 0x0000000100000000-0x000000010effffff]
[    0.032412]   Device   empty
[    0.032413] Movable zone start for each node
[    0.032413] Early memory node ranges
[    0.032413]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.032414]   node   0: [mem 0x0000000000100000-0x00000000efffefff]
[    0.032415]   node   0: [mem 0x0000000100000000-0x000000010effffff]
[    0.032432] Zeroed struct page in unavailable ranges: 4195 pages
[    0.032433] Initmem setup node 0 [mem 0x0000000000001000-0x000000010effffff]
[    0.032434] On node 0 totalpages: 1044381
[    0.032434]   DMA zone: 64 pages used for memmap
[    0.032435]   DMA zone: 21 pages reserved
[    0.032435]   DMA zone: 3998 pages, LIFO batch:0
[    0.032450]   DMA32 zone: 15296 pages used for memmap
[    0.032451]   DMA32 zone: 978943 pages, LIFO batch:63
[    0.036479]   Normal zone: 960 pages used for memmap
[    0.036479]   Normal zone: 61440 pages, LIFO batch:15
[    0.038520] ACPI: PM-Timer IO Port: 0xb008
[    0.038522] ACPI: Local APIC address 0xfee00000
[    0.038568] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-47
[    0.038570] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.038571] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 low level)
[    0.038571] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 low level)
[    0.038572] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 low level)
[    0.038573] ACPI: IRQ0 used by override.
[    0.038574] ACPI: IRQ5 used by override.
[    0.038574] ACPI: IRQ9 used by override.
[    0.038574] ACPI: IRQ10 used by override.
[    0.038575] ACPI: IRQ11 used by override.
[    0.038576] Using ACPI (MADT) for SMP configuration information
[    0.038577] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.038579] TSC deadline timer available
[    0.038585] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[    0.038591] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.038591] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.038592] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]
[    0.038592] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[    0.038593] PM: hibernation: Registered nosave memory: [mem 0xeffff000-0xefffffff]
[    0.038593] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfbffffff]
[    0.038594] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xffffffff]
[    0.038595] [mem 0xf0000000-0xfbffffff] available for PCI devices
[    0.038596] Booting paravirtualized kernel on Xen HVM
[    0.038597] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.041755] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:2 nr_node_ids:1
[    0.041832] percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u1048576
[    0.041835] pcpu-alloc: s192512 r8192 d28672 u1048576 alloc=1*2097152
[    0.041835] pcpu-alloc: [0] 0 1 
[    0.041848] xen: PV spinlocks enabled
[    0.041850] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.041852] Built 1 zonelists, mobility grouping on.  Total pages: 1028040
[    0.041852] Policy zone: Normal
[    0.041853] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=09fe54db-a964-4cb1-a896-434ac69e7056 rw quiet ipv6.disable=1 audit=0
[    0.041888] audit: disabled (until reboot)
[    0.042001] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.042059] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.042098] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
[    0.049739] Memory: 3992600K/4177524K available (14344K kernel code, 2040K rwdata, 8856K rodata, 1716K init, 4288K bss, 184664K reserved, 0K cma-reserved)
[    0.049746] random: get_random_u64 called from __kmem_cache_create+0x26/0x520 with crng_init=0
[    0.049813] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.049822] Kernel/User page tables isolation: enabled
[    0.049834] ftrace: allocating 41846 entries in 164 pages
[    0.058981] ftrace: allocated 164 pages with 3 groups
[    0.059040] rcu: Preemptible hierarchical RCU implementation.
[    0.059041] rcu: 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.059041] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=2.
[    0.059042] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.059042] 	Trampoline variant of Tasks RCU enabled.
[    0.059043] 	Rude variant of Tasks RCU enabled.
[    0.059043] 	Tracing variant of Tasks RCU enabled.
[    0.059044] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.059044] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.061153] NR_IRQS: 20736, nr_irqs: 512, preallocated irqs: 16
[    0.061173] xen:events: Using FIFO-based ABI
[    0.061177] xen:events: Xen HVM callback vector for event delivery is enabled
[    0.061424] Console: colour dummy device 80x25
[    0.061431] printk: console [tty0] enabled
[    0.061449] ACPI: Core revision 20200925
[    0.061561] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 30580167144 ns
[    0.061624] APIC: Switch to symmetric I/O mode setup
[    0.062302] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.065405] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.080669] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x31205602f35, max_idle_ns: 440795243820 ns
[    0.080672] Calibrating delay loop (skipped), value calculated using timer frequency.. 6819.28 BogoMIPS (lpj=11360460)
[    0.080673] pid_max: default: 32768 minimum: 301
[    0.080689] LSM: Security Framework initializing
[    0.080692] Yama: becoming mindful.
[    0.080706] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.080710] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.080951] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.080951] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.080953] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.080954] Spectre V2 : Mitigation: Full generic retpoline
[    0.080954] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.080955] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.080956] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.080956] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
[    0.080957] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.080958] TAA: Mitigation: Clear CPU buffers
[    0.080958] SRBDS: Unknown: Dependent on hypervisor status
[    0.080959] MDS: Mitigation: Clear CPU buffers
[    0.081107] Freeing SMP alternatives memory: 36K
[    0.081601] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.081603] Xen: using vcpuop timer interface
[    0.081608] installing Xen timer for CPU 0
[    0.081659] smpboot: CPU0: Intel(R) Xeon(R) E-2236 CPU @ 3.40GHz (family: 0x6, model: 0x9e, stepping: 0xa)
[    0.081697] cpu 0 spinlock event irq 52
[    0.081753] Performance Events: unsupported p6 CPU model 158 no PMU driver, software events only.
[    0.081773] rcu: Hierarchical SRCU implementation.
[    0.082018] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.082051] smp: Bringing up secondary CPUs ...
[    0.082111] installing Xen timer for CPU 1
[    0.082150] x86: Booting SMP configuration:
[    0.082151] .... node  #0, CPUs:      #1
[    0.083064] cpu 1 spinlock event irq 57
[    0.083064] smp: Brought up 1 node, 2 CPUs
[    0.083064] smpboot: Max logical packages: 1
[    0.083064] smpboot: Total of 2 processors activated (13638.57 BogoMIPS)
[    0.083064] devtmpfs: initialized
[    0.083064] x86/mm: Memory block size: 128MB
[    0.083064] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.083064] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.083064] pinctrl core: initialized pinctrl subsystem
[    0.083064] PM: RTC time: 09:58:36, date: 2021-01-13
[    0.083064] NET: Registered protocol family 16
[    0.083064] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[    0.083064] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.083064] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.083064] xenbus: xs_reset_watches failed: -38
[    0.083064] thermal_sys: Registered thermal governor 'fair_share'
[    0.083064] thermal_sys: Registered thermal governor 'bang_bang'
[    0.083064] thermal_sys: Registered thermal governor 'step_wise'
[    0.083064] thermal_sys: Registered thermal governor 'user_space'
[    0.083064] thermal_sys: Registered thermal governor 'power_allocator'
[    0.083064] cpuidle: using governor ladder
[    0.083064] cpuidle: using governor menu
[    0.083064] ACPI: bus type PCI registered
[    0.083064] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.083064] PCI: Using configuration type 1 for base access
[    0.084517] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.084517] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.084517] ACPI: Added _OSI(Module Device)
[    0.084517] ACPI: Added _OSI(Processor Device)
[    0.084517] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.084517] ACPI: Added _OSI(Processor Aggregator Device)
[    0.084517] ACPI: Added _OSI(Linux-Dell-Video)
[    0.084517] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.084517] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.090566] ACPI: 3 ACPI AML tables successfully acquired and loaded
[    0.091105] xen: --> pirq=16 -> irq=9 (gsi=9)
[    0.092954] ACPI: Interpreter enabled
[    0.092963] ACPI: (supports S0 S3 S4 S5)
[    0.092963] ACPI: Using IOAPIC for interrupt routing
[    0.092974] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.093271] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.099427] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.099431] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.099438] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.099842] acpiphp: Slot [3] registered
[    0.099898] acpiphp: Slot [4] registered
[    0.099929] acpiphp: Slot [5] registered
[    0.099960] acpiphp: Slot [6] registered
[    0.099991] acpiphp: Slot [7] registered
[    0.100023] acpiphp: Slot [8] registered
[    0.100054] acpiphp: Slot [9] registered
[    0.100087] acpiphp: Slot [10] registered
[    0.100118] acpiphp: Slot [11] registered
[    0.100149] acpiphp: Slot [12] registered
[    0.100179] acpiphp: Slot [13] registered
[    0.100210] acpiphp: Slot [14] registered
[    0.100242] acpiphp: Slot [15] registered
[    0.100273] acpiphp: Slot [16] registered
[    0.100304] acpiphp: Slot [17] registered
[    0.100334] acpiphp: Slot [18] registered
[    0.100365] acpiphp: Slot [19] registered
[    0.100396] acpiphp: Slot [20] registered
[    0.100427] acpiphp: Slot [21] registered
[    0.100458] acpiphp: Slot [22] registered
[    0.100488] acpiphp: Slot [23] registered
[    0.100519] acpiphp: Slot [24] registered
[    0.100549] acpiphp: Slot [25] registered
[    0.100580] acpiphp: Slot [26] registered
[    0.100610] acpiphp: Slot [27] registered
[    0.100642] acpiphp: Slot [28] registered
[    0.100684] acpiphp: Slot [29] registered
[    0.100716] acpiphp: Slot [30] registered
[    0.100746] acpiphp: Slot [31] registered
[    0.100775] PCI host bridge to bus 0000:00
[    0.100776] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.100777] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.100778] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.100778] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfbffffff window]
[    0.100779] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.100964] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[    0.103607] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[    0.106401] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
[    0.107959] pci 0000:00:01.1: reg 0x20: [io  0xc200-0xc20f]
[    0.108548] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.108549] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.108549] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.108550] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.109252] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
[    0.111335] pci 0000:00:01.3: quirk: [io  0xb000-0xb03f] claimed by PIIX4 ACPI
[    0.111381] pci 0000:00:01.3: quirk: [io  0xb100-0xb10f] claimed by PIIX4 SMB
[    0.112610] pci 0000:00:02.0: [5853:0001] type 00 class 0xff8000
[    0.113618] pci 0000:00:02.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.114400] pci 0000:00:02.0: reg 0x14: [mem 0xf0000000-0xf0ffffff pref]
[    0.119787] pci 0000:00:03.0: [1234:1111] type 00 class 0x030000
[    0.120668] pci 0000:00:03.0: reg 0x10: [mem 0xf1000000-0xf1ffffff pref]
[    0.121745] pci 0000:00:03.0: reg 0x18: [mem 0xf2050000-0xf2050fff]
[    0.124009] pci 0000:00:03.0: reg 0x30: [mem 0xf2040000-0xf204ffff pref]
[    0.124156] pci 0000:00:03.0: BAR 0: assigned to efifb
[    0.132850] ACPI: PCI Interrupt Link [LNKA] (IRQs *5 10 11)
[    0.133151] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
[    0.133447] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
[    0.133748] ACPI: PCI Interrupt Link [LNKD] (IRQs *5 10 11)
[    0.135755] xen:balloon: Initialising balloon driver
[    0.137396] random: fast init done
[    0.140769] iommu: Default domain type: Translated 
[    0.140798] pci 0000:00:03.0: vgaarb: setting as boot VGA device
[    0.140798] pci 0000:00:03.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.140799] pci 0000:00:03.0: vgaarb: bridge control possible
[    0.140799] vgaarb: loaded
[    0.140911] SCSI subsystem initialized
[    0.140946] libata version 3.00 loaded.
[    0.140949] ACPI: bus type USB registered
[    0.140958] usbcore: registered new interface driver usbfs
[    0.140961] usbcore: registered new interface driver hub
[    0.141061] usbcore: registered new device driver usb
[    0.141061] pps_core: LinuxPPS API ver. 1 registered
[    0.141061] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.141061] PTP clock support registered
[    0.141061] EDAC MC: Ver: 3.0.0
[    0.151805] NetLabel: Initializing
[    0.151805] NetLabel:  domain hash size = 128
[    0.151805] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.151805] NetLabel:  unlabeled traffic allowed by default
[    0.151805] PCI: Using ACPI for IRQ routing
[    0.151805] PCI: pci_cache_line_size set to 64 bytes
[    0.151805] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.151805] e820: reserve RAM buffer [mem 0xeffff000-0xefffffff]
[    0.151805] e820: reserve RAM buffer [mem 0x10f000000-0x10fffffff]
[    0.151805] hpet: 3 channels of 0 reserved for per-cpu timers
[    0.151805] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.151805] hpet0: 3 comparators, 64-bit 62.500000 MHz counter
[    0.155057] clocksource: Switched to clocksource xen
[    0.160316] VFS: Disk quotas dquot_6.6.0
[    0.160325] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.160361] pnp: PnP ACPI init
[    0.160403] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.160406] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.160451] system 00:01: [io  0x08a0-0x08a3] has been reserved
[    0.160452] system 00:01: [io  0x0cc0-0x0ccf] has been reserved
[    0.160453] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    0.160455] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.160474] xen: --> pirq=17 -> irq=8 (gsi=8)
[    0.160481] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.160499] xen: --> pirq=18 -> irq=12 (gsi=12)
[    0.160505] pnp 00:03: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.160521] xen: --> pirq=19 -> irq=1 (gsi=1)
[    0.160529] pnp 00:04: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.160584] xen: --> pirq=20 -> irq=6 (gsi=6)
[    0.160585] pnp 00:05: [dma 2]
[    0.160606] pnp 00:05: Plug and Play ACPI device, IDs PNP0700 (active)
[    0.160645] system 00:06: [io  0xae00-0xae0f] has been reserved
[    0.160646] system 00:06: [io  0xb044-0xb047] has been reserved
[    0.160648] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.161937] pnp: PnP ACPI: found 7 devices
[    0.169175] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.169217] NET: Registered protocol family 2
[    0.169340] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    0.169356] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.169409] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    0.169446] TCP: Hash tables configured (established 32768 bind 32768)
[    0.169475] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[    0.169489] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    0.169498] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    0.169527] NET: Registered protocol family 1
[    0.169530] NET: Registered protocol family 44
[    0.169536] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.169537] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.169538] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.169539] pci_bus 0000:00: resource 7 [mem 0xf0000000-0xfbffffff window]
[    0.169642] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.169702] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.169770] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[    0.170169] pci 0000:00:03.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.170228] PCI: CLS 0 bytes, default 64
[    0.170254] Trying to unpack rootfs image as initramfs...
[    0.247862] Freeing initrd memory: 7500K
[    0.247867] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.247868] software IO TLB: mapped [mem 0x00000000ebfff000-0x00000000effff000] (64MB)
[    0.247897] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31205602f35, max_idle_ns: 440795243820 ns
[    0.248212] check: Scanning for low memory corruption every 60 seconds
[    0.248358] Initialise system trusted keyrings
[    0.248374] Key type blacklist registered
[    0.248429] workingset: timestamp_bits=41 max_order=20 bucket_order=0
[    0.248990] zbud: loaded
[    0.253954] Key type asymmetric registered
[    0.253955] Asymmetric key parser 'x509' registered
[    0.253959] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.253992] io scheduler mq-deadline registered
[    0.253993] io scheduler kyber registered
[    0.254020] io scheduler bfq registered
[    0.254105] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.254155] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.254168] efifb: probing for efifb
[    0.254174] efifb: No BGRT, not showing boot graphics
[    0.254174] efifb: framebuffer at 0xf1000000, using 1408k, total 1408k
[    0.254175] efifb: mode is 800x600x24, linelength=2400, pages=1
[    0.254175] efifb: scrolling: redraw
[    0.254176] efifb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[    0.254223] fbcon: Deferring console take-over
[    0.254224] fb0: EFI VGA frame buffer device
[    0.254228] intel_idle: Please enable MWAIT in BIOS SETUP
[    0.254308] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.254326] ACPI: Power Button [PWRF]
[    0.254348] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[    0.254356] ACPI: Sleep Button [SLPF]
[    0.254828] xen: --> pirq=21 -> irq=24 (gsi=24)
[    0.254985] xen:grant_table: Grant tables using version 1 layout
[    0.254999] Grant table initialized
[    0.255304] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.256578] Non-volatile memory driver v1.3
[    0.256579] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    0.256580] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[    0.256897] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.256899] ehci-pci: EHCI PCI platform driver
[    0.256902] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.256903] ohci-pci: OHCI PCI platform driver
[    0.256906] uhci_hcd: USB Universal Host Controller Interface driver
[    0.256922] usbcore: registered new interface driver usbserial_generic
[    0.256923] usbserial: USB Serial support registered for generic
[    0.256936] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.259325] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.259328] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.260878] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    0.260935] rtc_cmos 00:02: registered as rtc0
[    0.260973] rtc_cmos 00:02: setting system clock to 2021-01-13T09:58:36 UTC (1610531916)
[    0.260981] rtc_cmos 00:02: alarms up to one day, 114 bytes nvram, hpet irqs
[    0.260996] intel_pstate: CPU model not supported
[    0.268349] ledtrig-cpu: registered to indicate activity on CPUs
[    0.268380] hid: raw HID events driver (C) Jiri Kosina
[    0.268432] intel_pmc_core intel_pmc_core.0:  initialized
[    0.268452] drop_monitor: Initializing network drop monitor service
[    0.268486] Initializing XFRM netlink socket
[    0.268488] IPv6: Loaded, but administratively disabled, reboot required to enable
[    0.268489] NET: Registered protocol family 17
[    0.268597] IPI shorthand broadcast: enabled
[    0.268602] sched_clock: Marking stable (269199930, -622403)->(271749829, -3172302)
[    0.268675] registered taskstats version 1
[    0.268681] Loading compiled-in X.509 certificates
[    0.270705] Loaded X.509 cert 'Build time autogenerated kernel key: bcbe8f1ff1356ce37dc2c08c896b36c417b2f5e4'
[    0.270768] zswap: loaded using pool lz4/z3fold
[    0.270996] Key type ._fscrypt registered
[    0.270996] Key type .fscrypt registered
[    0.270997] Key type fscrypt-provisioning registered
[    0.271203] xenbus_probe_frontend: Device with no driver: device/vbd/51712
[    0.271204] xenbus_probe_frontend: Device with no driver: device/vkbd/0
[    0.271204] xenbus_probe_frontend: Device with no driver: device/vif/0
[    0.271271] PM:   Magic number: 5:341:980
[    0.271302] memory memory27: hash matches
[    0.271346] RAS: Correctable Errors collector initialized.
[    0.271923] Freeing unused decrypted memory: 2036K
[    0.272067] Freeing unused kernel image (initmem) memory: 1716K
[    0.294037] Write protecting the kernel read-only data: 26624k
[    0.294449] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    0.294663] Freeing unused kernel image (rodata/data gap) memory: 1384K
[    0.336540] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.336543] rodata_test: all tests were successful
[    0.336544] x86/mm: Checking user space page tables
[    0.368873] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.368878] Run /init as init process
[    0.368879]   with arguments:
[    0.368879]     /init
[    0.368879]   with environment:
[    0.368880]     HOME=/
[    0.368880]     TERM=linux
[    0.368881]     BOOT_IMAGE=/boot/vmlinuz-linux
[    0.377748] fbcon: Taking over console
[    0.377787] Console: switching to colour frame buffer device 100x37
[    0.429878] ata_piix 0000:00:01.1: version 2.13
[    0.429972] ata_piix 0000:00:01.1: enabling device (0000 -> 0001)
[    0.440712] Invalid max_queues (4), will use default max: 2.
[    0.452399] FDC 0 is a S82078B
[    0.455936] scsi host0: ata_piix
[    0.456027] scsi host1: ata_piix
[    0.456045] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc200 irq 14
[    0.456046] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc208 irq 15
[    0.465052] blkfront: xvda: flush diskcache: enabled; persistent grants: disabled; indirect descriptors: disabled;
[    0.477969]  xvda: xvda1 xvda2
[    0.681931] EXT4-fs (xvda1): mounted filesystem with ordered data mode. Opts: (null)
[    0.878594] systemd[1]: systemd 247.2-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    0.878632] systemd[1]: Detected virtualization xen.
[    0.878635] systemd[1]: Detected architecture x86-64.
[    0.901441] systemd[1]: Set hostname to <gateway16>.
[    1.058373] systemd[1]: Queued start job for default target Graphical Interface.
[    1.061584] systemd[1]: Created slice system-getty.slice.
[    1.061753] systemd[1]: Created slice system-modprobe.slice.
[    1.061899] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    1.062055] systemd[1]: Created slice User and Session Slice.
[    1.062094] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    1.062123] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    1.062209] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    1.062234] systemd[1]: Reached target Local Encrypted Volumes.
[    1.062256] systemd[1]: Reached target Paths.
[    1.062267] systemd[1]: Reached target Remote File Systems.
[    1.062276] systemd[1]: Reached target Slices.
[    1.062326] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    1.062382] systemd[1]: Listening on LVM2 metadata daemon socket.
[    1.062423] systemd[1]: Listening on LVM2 poll daemon socket.
[    1.063043] systemd[1]: Listening on Process Core Dump Socket.
[    1.065216] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[    1.065290] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.065357] systemd[1]: Listening on Journal Socket.
[    1.065446] systemd[1]: Listening on Network Service Netlink Socket.
[    1.065749] systemd[1]: Listening on udev Control Socket.
[    1.065800] systemd[1]: Listening on udev Kernel Socket.
[    1.066255] systemd[1]: Mounting Huge Pages File System...
[    1.066747] systemd[1]: Mounting POSIX Message Queue File System...
[    1.067237] systemd[1]: Mounting Kernel Debug File System...
[    1.067746] systemd[1]: Mounting Kernel Trace File System...
[    1.068312] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    1.068803] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    1.069274] systemd[1]: Starting Load Kernel Module configfs...
[    1.069750] systemd[1]: Starting Load Kernel Module drm...
[    1.070219] systemd[1]: Starting Load Kernel Module fuse...
[    1.072415] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    1.072452] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    1.073392] systemd[1]: Starting Journal Service...
[    1.074282] systemd[1]: Condition check resulted in Load Kernel Modules being skipped.
[    1.074937] systemd[1]: Starting Remount Root and Kernel File Systems...
[    1.074970] systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
[    1.075409] systemd[1]: Starting Apply Kernel Variables...
[    1.075868] systemd[1]: Starting Coldplug All udev Devices...
[    1.076790] systemd[1]: Mounted Huge Pages File System.
[    1.076848] systemd[1]: Mounted POSIX Message Queue File System.
[    1.076893] systemd[1]: Mounted Kernel Debug File System.
[    1.076937] systemd[1]: Mounted Kernel Trace File System.
[    1.077171] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    1.081865] Linux agpgart interface v0.103
[    1.087255] EXT4-fs (xvda1): re-mounted. Opts: data=ordered
[    1.094626] fuse: init (API version 7.32)
[    1.120830] systemd[1]: Started Journal Service.
[    1.142550] random: lvm: uninitialized urandom read (4 bytes read)
[    1.317401] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    1.334574] random: crng init done
[    1.334604] xen_netfront: Initialising Xen virtual ethernet driver
[    1.366134] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[    1.408988] xen_netfront: backend supports XDP headroom
[    1.414049] Adding 2223100k swap on /dev/xvda2.  Priority:-2 extents:1 across:2223100k SSFS
[    1.441886] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    1.441887] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    1.441888] RAPL PMU: hw unit of domain package 2^-14 Joules
[    1.441888] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    1.441888] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    1.441917] mousedev: PS/2 mouse device common for all mice
[    1.443376] input: Xen Virtual Keyboard as /devices/virtual/input/input6
[    1.444342] input: Xen Virtual Pointer as /devices/virtual/input/input7
[    1.480535] cryptd: max_cpu_qlen set to 1000
[    1.481873] checking generic (f1000000 160000) vs hw (f1000000 1000000)
[    1.481874] fb0: switching to bochsdrmfb from EFI VGA
[    1.483085] Console: switching to colour dummy device 80x25
[    1.483102] bochs-drm 0000:00:03.0: vgaarb: deactivate vga console
[    1.483507] [drm] Found bochs VGA, ID 0xb0c0.
[    1.483509] [drm] Framebuffer size 16384 kB @ 0xf1000000, mmio @ 0xf2050000.
[    1.492634] AVX2 version of gcm_enc/dec engaged.
[    1.492636] AES CTR mode by8 optimization enabled
[    1.492681] [TTM] Zone  kernel: Available graphics memory: 1995592 KiB
[    1.492682] [TTM] Initializing pool allocator
[    1.492686] [TTM] Initializing DMA pool allocator
[    1.493440] [drm] Initialized bochs-drm 1.0.0 20130925 for 0000:00:03.0 on minor 0
[    1.494097] fbcon: bochs-drmdrmfb (fb0) is primary device
[    1.496128] Console: switching to colour frame buffer device 128x48
[    1.500367] bochs-drm 0000:00:03.0: [drm] fb0: bochs-drmdrmfb frame buffer device
[    1.574729] intel_rapl_common: Found RAPL domain package
[    1.574732] intel_rapl_common: Found RAPL domain core
[    1.574733] intel_rapl_common: Found RAPL domain uncore
[    1.574735] intel_rapl_common: Found RAPL domain dram
[    2.129298] process '11.2.0/xe/bin/oracle' started with executable stack
[ 2313.951133] ------------[ cut here ]------------
[ 2313.951138] WARNING: CPU: 0 PID: 1991 at block/blk-lib.c:51 __blkdev_issue_discard+0x245/0x2a0
[ 2313.951138] Modules linked in: intel_rapl_msr intel_rapl_common crct10dif_pclmul crc32_pclmul ghash_clmulni_intel aesni_intel crypto_simd bochs_drm cryptd drm_vram_helper glue_helper drm_ttm_helper joydev ttm drm_kms_helper rapl mousedev xen_kbdfront cec syscopyarea sysfillrect sysimgblt fb_sys_fops xen_netfront pcspkr intel_agp intel_gtt mac_hid drm fuse agpgart bpf_preload ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 ata_generic pata_acpi xen_blkfront crc32c_intel serio_raw ata_piix floppy
[ 2313.951159] CPU: 0 PID: 1991 Comm: fstrim Not tainted 5.10.6-arch1-1 #1
[ 2313.951160] Hardware name: Xen HVM domU, BIOS 4.14.0 11/14/2020
[ 2313.951161] RIP: 0010:__blkdev_issue_discard+0x245/0x2a0
[ 2313.951162] Code: 48 8b 44 24 48 65 48 2b 04 25 28 00 00 00 75 6c 8b 44 24 1c 48 83 c4 50 5b 5d 41 5c 41 5d 41 5e 41 5f c3 0f 0b e9 f9 fe ff ff <0f> 0b 48 8d 74 24 28 4c 89 ef e8 ac c2 00 00 48 c7 c6 e0 a1 c6 89
[ 2313.951163] RSP: 0018:ffffb053022c3b70 EFLAGS: 00010246
[ 2313.951164] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000c40
[ 2313.951164] RDX: 00000000000000c0 RSI: 0000000000012240 RDI: ffff9dfc822930c0
[ 2313.951165] RBP: 00000000000000c0 R08: 0000000000000000 R09: ffffb053022c3bf8
[ 2313.951165] R10: 0000000000000001 R11: 0000000000002000 R12: 0000000000012240
[ 2313.951166] R13: ffff9dfc822930c0 R14: ffff9dfc83ffbf80 R15: 0000000000000000
[ 2313.951167] FS:  00007fbaa0aea580(0000) GS:ffff9dfc8ac00000(0000) knlGS:0000000000000000
[ 2313.951168] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 2313.951168] CR2: 000055f3bf49d448 CR3: 0000000053556002 CR4: 00000000003706f0
[ 2313.951170] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[ 2313.951171] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[ 2313.951171] Call Trace:
[ 2313.951175]  blkdev_issue_discard+0x86/0xe0
[ 2313.951189]  ext4_trim_fs+0x518/0x930 [ext4]
[ 2313.951192]  ? mntput_no_expire+0x4a/0x260
[ 2313.951201]  __ext4_ioctl+0xfee/0x1b10 [ext4]
[ 2313.951211]  ext4_ioctl+0x2a/0x40 [ext4]
[ 2313.951212]  __x64_sys_ioctl+0x83/0xb0
[ 2313.951215]  do_syscall_64+0x33/0x40
[ 2313.951217]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 2313.951218] RIP: 0033:0x7fbaa0c5ff6b
[ 2313.951219] Code: 89 d8 49 8d 3c 1c 48 f7 d8 49 39 c4 72 b5 e8 1c ff ff ff 85 c0 78 ba 4c 89 e0 5b 5d 41 5c c3 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d d5 ae 0c 00 f7 d8 64 89 01 48
[ 2313.951220] RSP: 002b:00007fff69055a58 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 2313.951221] RAX: ffffffffffffffda RBX: 00007fff69055b30 RCX: 00007fbaa0c5ff6b
[ 2313.951221] RDX: 00007fff69055a70 RSI: 00000000c0185879 RDI: 0000000000000003
[ 2313.951222] RBP: 000055f3bf49c440 R08: 000055f3bf49c440 R09: 00007fff69057e87
[ 2313.951222] R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000003
[ 2313.951222] R13: 00007fff69057e86 R14: 0000000000000000 R15: ffffffff00000000
[ 2313.951224] ---[ end trace 18ce9d2a5473a9a8 ]---
[ 2313.951225] xvda1: Error: discard_granularity is 0.
[ 2313.951230] xvda1: Error: discard_granularity is 0.
[ 2313.951233] xvda1: Error: discard_granularity is 0.
[ 2313.951236] xvda1: Error: discard_granularity is 0.
[ 2313.951240] xvda1: Error: discard_granularity is 0.
[ 2313.951243] xvda1: Error: discard_granularity is 0.
[ 2313.951246] xvda1: Error: discard_granularity is 0.
[ 2313.951249] xvda1: Error: discard_granularity is 0.
[ 2313.951253] xvda1: Error: discard_granularity is 0.
[ 2313.951256] xvda1: Error: discard_granularity is 0.

[-- Attachment #5: domx-libvirt.xml --]
[-- Type: text/xml, Size: 1446 bytes --]

<domain type='xen' id='42'>
  <name>gateway</name>
  <uuid>265c2967-6fef-4d9a-9b8d-a5eb42e94973</uuid>
  <title>Primavera Gateway Linux v17.10</title>
  <memory unit='KiB'>4194304</memory>
  <currentMemory unit='KiB'>4194304</currentMemory>
  <vcpu placement='static'>2</vcpu>
  <os>
    <type arch='x86_64' machine='xenfv'>hvm</type>
    <loader type='rom'>/usr/lib/xen/boot/hvmloader</loader>
    <boot dev='hd'/>
    <bootmenu enable='no'/>
  </os>
  <features>
    <acpi/>
    <apic/>
    <pae/>
  </features>
  <clock offset='utc'/>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>restart</on_crash>
  <devices>
    <disk type='file' device='disk'>
      <driver name='qemu' type='raw'/>
      <source file='/dev/nvme0n1p2'/>
      <target dev='xvda' bus='xen'/>
    </disk>
    <controller type='xenbus' index='0'/>
    <interface type='network'>
      <mac address='00:16:3e:51:8a:e9'/>
      <source network='default' portid='7d2ed503-8d1c-42f7-a4a9-ffe212048444' bridge='virbr0'/>
      <target dev='vif42.0-emu'/>
    </interface>
    <input type='mouse' bus='ps2'/>
    <input type='keyboard' bus='ps2'/>
    <graphics type='vnc' port='5904' autoport='yes' listen='127.0.0.1' keymap='en-us'>
      <listen type='address' address='127.0.0.1'/>
    </graphics>
    <video>
      <model type='xen' vram='16384' heads='1' primary='yes'/>
    </video>
    <memballoon model='xen'/>
  </devices>
</domain>


^ permalink raw reply	[relevance 3%]

Results 1-200 of ~3000   | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2021-01-13 10:43  3% Xen VM call trace on fstrim: Error: discard_granularity is 0 Arthur Borsboom
2021-01-18 20:15     Problems with APIC on versions 4.9 and later (4.8 works) Claudemir Todo Bom
2021-01-19  9:07     ` Jan Beulich
2021-01-19 19:47  3%   ` Claudemir Todo Bom
     [not found]       ` <CANyqHYcifnCgd5C5vbYoi4CTtoMX5+jzGqHfs6JZ+e=d2Y_dmg@mail.gmail.com>
2021-01-20  8:50         ` Jan Beulich
2021-01-20 15:13           ` Jürgen Groß
2021-01-22 23:36             ` Claudemir Todo Bom
2021-01-25  9:38               ` Jan Beulich
2021-01-25 19:37                 ` Claudemir Todo Bom
2021-01-26 11:48                   ` Jan Beulich
     [not found]                     ` <CANyqHYeDR_NUKzPtbfLiUzxAUzerKepbU4B-_6=U-7Y6uy8gpQ@mail.gmail.com>
2021-01-28  9:47                       ` Jan Beulich
2021-01-28  9:49                         ` Jan Beulich
2021-01-28 13:08                           ` Claudemir Todo Bom
2021-01-29 16:24                             ` Jan Beulich
2021-01-29 19:31  3%                           ` Claudemir Todo Bom
2021-02-01 12:47                                 ` Jan Beulich
2021-02-01 14:46  3%                               ` Claudemir Todo Bom
2021-02-01 15:09                                     ` Jan Beulich
2021-02-01 15:26  3%                                   ` Claudemir Todo Bom
2021-01-26 11:58 10% [PATCH v1] mm/memory_hotplug: MEMHP_MERGE_RESOURCE -> MHP_MERGE_RESOURCE David Hildenbrand
2021-01-26 12:27  0% ` Miaohe Lin
2021-01-26 14:41  0% ` Michael S. Tsirkin
2021-02-03  5:36  0% ` Pankaj Gupta
2021-03-17 11:03     [PATCH 0/2] xen/x86: alternative fix for XSA-369 Roger Pau Monne
2021-03-17 11:04  6% ` [PATCH 1/2] xen/x86: make XEN_BALLOON_MEMORY_HOTPLUG_LIMIT depend on MEMORY_HOTPLUG Roger Pau Monne
2021-03-24 12:24     [PATCH v2 0/2] xen/x86: alternative fix for XSA-369 Roger Pau Monne
2021-03-24 12:24  6% ` [PATCH v2 1/2] xen/x86: make XEN_BALLOON_MEMORY_HOTPLUG_LIMIT depend on MEMORY_HOTPLUG Roger Pau Monne
2021-05-23  7:02     [PATCH -next] xen/pcpu: Use DEVICE_ATTR_RW macro YueHaibing
2021-05-24 12:48  5% ` Boris Ostrovsky
2021-05-25  6:17  0%   ` YueHaibing
2021-05-26  9:20     [PATCH -next 1/3] powerpc/rtas: Replaced simple_strtoull() with kstrtoull() Chen Huang
2021-05-26  9:20 18% ` [PATCH -next 2/3] xen: balloon: " Chen Huang
2021-05-27 14:10  5%   ` David Laight
2021-05-27 14:37  5%     ` Dan Carpenter
2021-05-26 14:10 12% [PATCH -next] xen: Use DEVICE_ATTR_*() macro YueHaibing
2021-06-15  9:13  2% [BUG] xen net scatter-gather hang Håkon Alstadheim
2021-07-07  7:01  5% [GIT PULL] xen: branch for v5.14-rc1 Juergen Gross
2021-08-27 12:32 30% [PATCH] xen/balloon: use a kernel thread instead a workqueue Juergen Gross
2021-09-08 14:47  5% ` Boris Ostrovsky
2021-09-08 15:11  5%   ` Juergen Gross
2021-09-08 16:05  5%     ` Boris Ostrovsky
2021-09-07 12:03     [PATCH 00/12] swiotlb-xen: fixes and adjustments Jan Beulich
2021-09-07 12:13     ` [PATCH 12/12] swiotlb-xen: this is PV-only on x86 Jan Beulich
2021-09-08  7:14       ` Christoph Hellwig
2021-09-10 23:48         ` Stefano Stabellini
2021-09-13  7:51           ` Jan Beulich
2021-09-13 20:49  5%         ` Stefano Stabellini
2021-09-17 11:35  6% [GIT PULL] xen: branch for v5.15-rc2 Juergen Gross
2021-09-20 10:03 19% [PATCH] xen/balloon: fix balloon kthread freezing Juergen Gross
2021-09-20 19:29  6% ` Boris Ostrovsky
     [not found]     <20210923033853.1421193-1-sashal@kernel.org>
2021-09-23  3:38 30% ` [PATCH AUTOSEL 5.4 07/19] xen/balloon: use a kernel thread instead a workqueue Sasha Levin
     [not found]     <20210923033929.1421446-1-sashal@kernel.org>
2021-09-23  3:39 30% ` [PATCH AUTOSEL 4.19 05/15] " Sasha Levin
     [not found]     <20210923033959.1421662-1-sashal@kernel.org>
2021-09-23  3:39 30% ` [PATCH AUTOSEL 4.14 04/13] " Sasha Levin
2021-09-25 14:31  7% [GIT PULL] xen: branch for v5.15-rc3 Juergen Gross
2021-10-03  4:47 11% xen-balloon thread using 100% of CPU, regression in 5.4.150 Marek Marczykowski-Górecki
2021-10-04  5:31  5% ` Juergen Gross
2021-10-04  9:14 11%   ` Marek Marczykowski-Górecki
2021-10-05  8:05 30%     ` Juergen Gross
2021-10-05 13:31  5%       ` Marek Marczykowski-Górecki
2021-10-05 13:33  5%       ` Jason Andryuk
2021-10-03  9:52 11% xen-balloon and 5.10.70 Henrik Riomar
2021-10-04  9:54     [RFC 0/1] tag IOMMU-protected devices in Dom0 fdt Roman Skakun
2021-10-04  9:54  5% ` [RFC PATCH] dma-mapping: don't set swiotlb-xen fops for IOMMU-protected devices Roman Skakun
2021-10-05 13:34 18% [PATCH] xen/balloon: fix cancelled balloon action Juergen Gross
2021-10-06  1:11  6% ` Boris Ostrovsky
2021-10-08 14:19  7% [GIT PULL] xen: branch for v5.15-rc5 Juergen Gross
2021-10-21 11:53 22% Tentative fix for "out of PoD memory" issue Juergen Gross
2021-10-21 13:54 14% ` Marek Marczykowski-Górecki
2021-10-26 16:05     [PATCH V2 0/4] xen: Add support of extended regions (safe ranges) on Arm Oleksandr Tyshchenko
2021-10-26 16:05  6% ` [PATCH V2 3/4] xen/unpopulated-alloc: Add mechanism to use Xen resource Oleksandr Tyshchenko
2021-10-28 16:37  0%   ` Stefano Stabellini
2021-11-09 18:34  0%     ` Oleksandr
2021-11-19  0:59  0%       ` Stefano Stabellini
2021-11-19 18:18  0%         ` Oleksandr
2021-11-20  2:19  0%           ` Stefano Stabellini
2021-11-23 16:46 14%             ` Oleksandr
2021-11-23 21:25  0%               ` Stefano Stabellini
2021-11-24  9:33  0%                 ` Oleksandr
2021-11-24  5:16  0%               ` Juergen Gross
2021-11-24  9:37  0%                 ` Oleksandr
2021-10-28 10:59 17% [PATCH] xen/balloon: add late_initcall_sync() for initial ballooning done Juergen Gross
2021-10-28 18:13  5% ` Boris Ostrovsky
2021-10-28 20:16  5% ` Marek Marczykowski-Górecki
2021-10-29  4:48  5%   ` Juergen Gross
2021-10-29  9:57  5%     ` Marek Marczykowski-Górecki
2021-10-29 10:22  5%       ` Juergen Gross
2021-10-29 10:32  5%         ` Marek Marczykowski-Górecki
2021-10-29  7:49 16% [PATCH v2] " Juergen Gross
2021-10-29 14:20 24% [PATCH v3] " Juergen Gross
2021-10-29 21:46  5% ` Boris Ostrovsky
2021-10-29 22:18  5%   ` Marek Marczykowski-Górecki
2021-10-29 23:44  5%     ` Boris Ostrovsky
2021-11-01  7:21  5%       ` Juergen Gross
2021-11-01  7:15  5%   ` Juergen Gross
2021-10-29 14:22 25% [PATCH] xen/balloon: rename alloc/free_xenballooned_pages Juergen Gross
2021-10-30 10:27 10% ` kernel test robot
2021-11-02  9:19 21% [PATCH v4] xen/balloon: add late_initcall_sync() for initial ballooning done Juergen Gross
2021-11-04  1:55  5% ` Boris Ostrovsky
2021-11-04 15:55 11%   ` Boris Ostrovsky
2021-11-04 16:21  5%     ` Juergen Gross
2021-11-04 16:34  5%       ` Boris Ostrovsky
2021-11-04 16:44  5%         ` Juergen Gross
2021-11-04 17:05  5%           ` Boris Ostrovsky
2021-11-04 16:23  5%     ` Marek Marczykowski-Górecki
2021-11-05 12:18  5% ` Boris Ostrovsky
2021-11-02  9:22 25% [PATCH v2] xen/balloon: rename alloc/free_xenballooned_pages Juergen Gross
2021-11-04  1:48  5% ` Boris Ostrovsky
2021-11-05 12:18  5% ` Boris Ostrovsky
2021-11-08 11:14 18% [PATCH] xen/balloon: fix unused-variable warning Arnd Bergmann
2021-11-08 16:24  5% ` Juergen Gross
2021-11-09 13:30  5% ` Boris Ostrovsky
2021-11-09 14:28  7% [GIT PULL] xen: branch for v5.16-rc1 Juergen Gross
2021-11-24 20:53  6% [PATCH V3 0/6] xen: Add support of extended regions (safe ranges) on Arm Oleksandr Tyshchenko
2021-11-24 20:53 23% ` [PATCH V3 3/6] xen/balloon: Bring alloc(free)_xenballooned_pages helpers back Oleksandr Tyshchenko
2021-11-24 23:36  5%   ` Stefano Stabellini
2021-11-24 20:53 11% ` [PATCH V3 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource Oleksandr Tyshchenko
2021-11-25  1:03  0%   ` Stefano Stabellini
2021-11-25 14:01  0%     ` Oleksandr
2021-12-09 20:05  6% [PATCH V4 0/6] xen: Add support of extended regions (safe ranges) on Arm Oleksandr Tyshchenko
2021-12-09 20:05 23% ` [PATCH V4 3/6] xen/balloon: Bring alloc(free)_xenballooned_pages helpers back Oleksandr Tyshchenko
2021-12-09 20:05 11% ` [PATCH V4 4/6] xen/unpopulated-alloc: Add mechanism to use Xen resource Oleksandr Tyshchenko
2021-12-10  1:19  0%   ` Stefano Stabellini
2021-12-16 22:02  5% ` [PATCH V4 0/6] xen: Add support of extended regions (safe ranges) on Arm Oleksandr
2022-01-07 11:31  0% ` Juergen Gross
2022-01-12 15:50  7% [GIT PULL] xen: branch for v5.17-rc1 Juergen Gross
2022-02-28  3:15 12% [PATCH] xen: use time_is_before_eq_jiffies() instead of open coding it Qing Wang
2022-03-28  9:25  5% [GIT PULL] xen: branch for v5.18-rc1 Juergen Gross
2022-03-31  3:51  6% Increasing domain memory beyond initial maxmem Marek Marczykowski-Górecki
2022-03-31  6:41  0% ` Juergen Gross
2022-03-31 12:01  0%   ` Marek Marczykowski-Górecki
2022-03-31 12:22  0%     ` Juergen Gross
2022-03-31 12:36           ` Marek Marczykowski-Górecki
2022-04-05 11:03 18%         ` Juergen Gross
2022-04-05 16:24  4%           ` Marek Marczykowski-Górecki
2022-04-06  5:13  0%             ` Juergen Gross
2022-04-06 12:58  0%               ` Marek Marczykowski-Górecki
2022-04-06 13:32 15% [PATCH] xen/balloon: fix page onlining when populating new zone Juergen Gross
2022-04-06 23:31 11% ` kernel test robot
2022-04-07  2:06 11% ` kernel test robot
2022-04-07  5:09 11% ` kernel test robot
2022-04-07  8:23  5% ` David Hildenbrand
2022-04-07  8:50  5%   ` Juergen Gross
2022-04-07  9:00  5%     ` David Hildenbrand
2022-04-08 23:16  5%       ` Wei Yang
2022-04-07  9:32     [PATCH] mm, page_alloc: fix build_zonerefs_node() Juergen Gross
2022-04-07 10:34     ` Michal Hocko
2022-04-07 10:45       ` Juergen Gross
2022-04-07 11:07         ` Michal Hocko
2022-04-07 11:17  4%       ` Juergen Gross
2022-04-07 11:40  0%         ` Michal Hocko
2022-04-07 11:58  0%           ` David Hildenbrand
2022-04-07 12:32  0%         ` Mel Gorman
2022-04-07 12:49  0%           ` Juergen Gross
2022-04-07  9:38 22% [PATCH] xen/balloon: don't use PV mode extra memory for zone device allocations Juergen Gross
2022-04-07 20:04  5% ` Boris Ostrovsky
2022-04-09 21:21  5% ` Boris Ostrovsky
2022-04-13 13:04  3% xen-swiotlb issue when NVMe driver is enabled in Dom0 on ARM Rahul Singh
2022-04-13 21:24     ` Stefano Stabellini
2022-04-14 17:44  2%   ` Rahul Singh
2022-04-14 20:39         ` Stefano Stabellini
2022-04-15  6:37           ` Christoph Hellwig
2022-04-15 17:40             ` Stefano Stabellini
2022-04-17  9:42               ` Rahul Singh
2022-04-18 20:04                 ` Stefano Stabellini
2022-04-19 13:36  2%               ` Rahul Singh
2022-04-20  2:36                     ` Stefano Stabellini
2022-04-20 11:05  2%                   ` Rahul Singh
2022-04-17  8:16  6% [GIT PULL] xen: branch for v5.18-rc3 Juergen Gross
     [not found]     <20220427154111.529975-1-kuba@kernel.org>
2022-04-27 15:40  4% ` [PATCH net-next 01/14] eth: remove copies of the NAPI_POLL_WEIGHT define Jakub Kicinski
     [not found]     <20220428212323.104417-1-kuba@kernel.org>
2022-04-28 21:23  4% ` [PATCH net-next v2 01/15] " Jakub Kicinski
2022-07-11 18:38  3% Xen on rk3399 Brad Churchwell
2022-07-18 23:04     Ryzen 6000 (Mobile) Dylanger Daly
2022-07-19  9:34     ` Andrew Cooper
2022-07-20  0:33       ` Dylanger Daly
2022-07-20  8:11         ` Jan Beulich
2022-07-20  8:13           ` Jan Beulich
2022-08-15 11:07             ` Dylanger Daly
2022-08-15 12:03               ` Andrew Cooper
2022-08-15 15:39                 ` Dylanger Daly
2022-08-15 16:19                   ` Jan Beulich
2022-08-15 16:54  2%                 ` Dylanger Daly
2022-07-27  1:19  3% [BUG] Xen causes a host hang by using xen-hptool cpu-offline Gao, Ruifeng
2022-08-10  5:07     [PATCH 0/4] update the xen config fragments Lukas Bulwahn
2022-08-10  5:07  5% ` [PATCH 2/4] xen: remove XEN_SCRUB_PAGES in xen.config Lukas Bulwahn
2022-08-12  8:41  0%   ` Juergen Gross
2022-08-14  8:38  0%   ` Juergen Gross
2022-08-18  6:18  3% USB passthrough fails with 64GB drive but works fine with 8GB drive A Sudheer
2022-09-16 13:09     [BUG] problems with NICs pass through to OpenBSD guest Roger Pau Monné
2022-09-16 13:35     ` Roger Pau Monné
2022-09-16 15:08       ` Adam Szewczyk
2022-09-19  9:21         ` Roger Pau Monné
2022-09-20  7:41           ` Adam Szewczyk
2022-09-20  8:12  4%         ` Adam Szewczyk
2022-12-09  6:15     [BUG]Add PCIE devie to SMMUv3 fail sisyphean
2022-12-09  9:50     ` Rahul Singh
2022-12-12  5:49       ` sisyphean
2022-12-12 16:30         ` Rahul Singh
2022-12-13  1:18  3%       ` sisyphean
2023-01-10 14:20     Xenalyze on ARM ( NXP S32G3 with Cortex-A53) El Mesdadi Youssef ESK UILD7
2023-01-11 17:41     ` Julien Grall
2023-01-13 12:56       ` AW: " El Mesdadi Youssef ESK UILD7
2023-01-17 14:37         ` Julien Grall
2023-02-07  9:35  4%       ` AW: AW: Xenstore failed to start / " El Mesdadi Youssef ESK UILD7
2023-02-11  0:56  0%         ` Stefano Stabellini
2023-03-02 20:46  5% [PATCH 0/7] sysctl: slowly deprecate register_sysctl_table() Luis Chamberlain
2023-03-02 20:46 18% ` [PATCH 7/7] xen: simplify sysctl registration for balloon Luis Chamberlain
2023-03-12 12:01     [RFC PATCH 0/5] Add Xen PVH dom0 support for GPU Huang Rui
2023-03-12 12:01  6% ` [RFC PATCH 5/5] xen/privcmd: add IOCTL_PRIVCMD_GSI_FROM_IRQ Huang Rui
2023-04-18  8:43     xen cache colors in ARM Oleg Nikitenko
2023-04-18 11:26     ` Oleg Nikitenko
2023-04-18 17:44       ` Stefano Stabellini
2023-04-19  7:03         ` Oleg Nikitenko
2023-04-19  7:37           ` Michal Orzel
2023-04-19  8:25             ` Oleg Nikitenko
2023-04-19  9:36               ` Oleg Nikitenko
2023-04-19 20:05                 ` Stefano Stabellini
2023-04-20  8:56                   ` Oleg Nikitenko
2023-04-20  8:57                     ` Oleg Nikitenko
2023-04-21  8:04                       ` Oleg Nikitenko
2023-04-21  8:16                         ` Michal Orzel
2023-04-21 12:49                           ` Oleg Nikitenko
2023-04-21 12:52                             ` Michal Orzel
2023-04-24 12:03                               ` Oleg Nikitenko
2023-04-24 20:39                                 ` Stefano Stabellini
2023-04-25  7:33  4%                               ` Oleg Nikitenko
2023-04-25 18:20  0%                                 ` Stefano Stabellini
2023-04-27  6:46  0%                                   ` Oleg Nikitenko
2023-04-27 21:51  0%                                     ` Stefano Stabellini
2023-05-05  8:28  0%                                       ` Oleg Nikitenko
2023-05-05  8:34  0%                                         ` Michal Orzel
2023-05-05  8:48  0%                                           ` Oleg Nikitenko
2023-05-09  6:58  0%                                             ` Oleg Nikitenko
2023-05-09 19:49  0%                                               ` Stefano Stabellini
2023-05-11 10:02  0%                                                 ` Oleg Nikitenko
2023-05-11 10:15  0%                                                   ` Michal Orzel
2023-05-11 10:32  0%                                                     ` Oleg Nikitenko
2023-05-15  8:51  0%                                                       ` Oleg Nikitenko
2023-05-15  8:57  0%                                                         ` Michal Orzel
2023-05-16 12:15  0%                                                           ` Oleg Nikitenko
2023-05-16 14:40  0%                                                             ` Michal Orzel
2023-05-16 15:14  0%                                                               ` Oleg Nikitenko
2023-05-16 18:00  0%                                                                 ` Michal Orzel
2023-05-19 13:38  0%                                                                   ` Oleg Nikitenko
2023-05-20  5:36  6% Removing Linux memory hotplug limitations Demi Marie Obenour
2023-05-31  7:49  3% HVM performance once again Marek Marczykowski-Górecki
     [not found]     <20230621091000.424843-1-j.granados@samsung.com>
     [not found]     ` <CGME20230621091037eucas1p188e11d8064526a5a0549217d5a419647@eucas1p1.samsung.com>
2023-06-21  9:09 10%   ` [PATCH 08/11] sysctl: Add size to register_sysctl_init Joel Granados
     [not found]     ` <CGME20230621094824eucas1p154c97eead5f2de6bceca6359304b775c@eucas1p1.samsung.com>
2023-06-21  9:48  2%   ` [PATCH 09/11] sysctl: Remove the end element in sysctl table arrays Joel Granados
2023-09-28 13:21  3% [PATCH 00/15] sysctl: Remove sentinel elements from drivers Joel Granados via B4 Relay
2023-09-28 13:21 11% ` [PATCH 03/15] xen: Remove now superfluous sentinel element from ctl_table array Joel Granados via B4 Relay
2023-09-28 16:31  0% ` [PATCH 00/15] sysctl: Remove sentinel elements from drivers Christophe Leroy
2023-10-02  8:47  0%   ` Joel Granados
2023-10-02  8:55  3% [PATCH v2 " Joel Granados via B4 Relay
2023-10-02  8:55 11% ` [PATCH v2 03/15] xen: Remove now superfluous sentinel element from ctl_table array Joel Granados via B4 Relay
2023-10-02 12:27  0% ` [PATCH v2 00/15] sysctl: Remove sentinel elements from drivers Christophe Leroy
2023-10-03  8:47  0%   ` Joel Granados
2023-10-05 14:08  6% [PATCH] xen-netback: use default TX queue size for vifs Roger Pau Monne
2023-11-12 20:28     Faking the number of CPUs for dom0 with dom0_max_vcpus Jimmy Lee
2023-11-13  8:00     ` Jan Beulich
2023-11-13 21:40  4%   ` Jimmy Lee
2023-11-24 10:31     [RFC KERNEL PATCH v2 0/3] Support device passthrough when dom0 is PVH on Xen Jiqian Chen
2023-11-24 10:31  5% ` [RFC KERNEL PATCH v2 3/3] xen/privcmd: Add new syscall to get gsi from irq Jiqian Chen
2023-12-03  9:56  5% [BUG]i2c_hid_acpi broken with 4.17.2 on Framework Laptop 13 AMD Sébastien Chaumat
2023-12-05 16:19     ` Sébastien Chaumat
2023-12-05 20:31       ` Sébastien Chaumat
2023-12-06  7:15         ` Jan Beulich
2023-12-11  9:18           ` Sébastien Chaumat
2023-12-11 11:09             ` Sébastien Chaumat
2023-12-11 11:27               ` Jan Beulich
2023-12-18 16:21                 ` Sébastien Chaumat
2023-12-19 13:15                   ` Jan Beulich
2023-12-19 15:15                     ` Sébastien Chaumat
2023-12-19 19:03                       ` Sébastien Chaumat
2023-12-19 23:06                         ` Sébastien Chaumat
2023-12-19 23:11                           ` Sébastien Chaumat
2023-12-19 23:50                             ` Sébastien Chaumat
2023-12-20  0:23                               ` Sébastien Chaumat
2023-12-20 10:06                                 ` Jan Beulich
2023-12-20 16:34  3%                               ` Sébastien Chaumat
2023-12-28 11:28  3% xenpm cpufrequency settings don't work flamv3421
2024-01-11  8:37     E820 memory allocation issue on Threadripper platforms Jan Beulich
2024-01-11 10:13     ` Juergen Gross
2024-01-16  0:22       ` Patrick Plenefisch
2024-01-16  9:33         ` Jan Beulich
2024-01-17  6:12           ` Patrick Plenefisch
2024-01-17  8:46             ` Jan Beulich
2024-01-18  6:23               ` Patrick Plenefisch
2024-01-18  8:27                 ` Roger Pau Monné
2024-01-18  8:34                   ` Patrick Plenefisch
2024-01-18  9:46                     ` Roger Pau Monné
2024-01-18 12:41                       ` ACPI VFCT table too short on PVH dom0 (was: Re: E820 memory allocation issue on Threadripper platforms) Roger Pau Monné
2024-01-19  7:44  1%                     ` Patrick Plenefisch
2024-01-19 11:06  5%                       ` Roger Pau Monné
2024-01-21  1:33  0%                         ` Patrick Plenefisch
2024-01-24  1:27  0%                           ` Patrick Plenefisch
2024-02-03 18:53  6% [PATCH 0/2] drivers: xen: struct bus_type cleanup Ricardo B. Marliere
2024-02-03 18:53 18% ` [PATCH 2/2] xen: balloon: make balloon_subsys const Ricardo B. Marliere
2024-02-15 15:24  6% [GIT PULL] xen: branch for v6.8-rc5 Juergen Gross
2024-02-20 17:43 11% [PATCH RFC] x86/xen: attempt to inflate the memory balloon on PVH Roger Pau Monne
2024-02-23  1:16  0% ` Stefano Stabellini
2024-03-05 15:50  0%   ` Roger Pau Monné
2024-03-07  1:50  0%     ` Stefano Stabellini
2024-03-19  7:10  6% [GIT PULL] xen: branch for v6.9-rc1 Juergen Gross
     [not found]     <20240403171656.335224-1-sashal@kernel.org>
2024-04-03 17:16 11% ` [PATCH AUTOSEL 6.8 18/28] x86/xen: attempt to inflate the memory balloon on PVH Sasha Levin
     [not found]     <20240403171815.342668-1-sashal@kernel.org>
2024-04-03 17:17 11% ` [PATCH AUTOSEL 6.6 13/20] " Sasha Levin
     [not found]     <20240403171909.345570-1-sashal@kernel.org>
2024-04-03 17:18 11% ` [PATCH AUTOSEL 6.1 11/15] " Sasha Levin
2024-04-29 15:50  7% [PATCH] xen/x86: add extra pages to unpopulated-alloc if available Roger Pau Monne

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).